sharedui2 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- package/build/favicon.ico +0 -0
- package/build/logo192.png +0 -0
- package/build/logo512.png +0 -0
- package/build/manifest.json +25 -0
- package/build/robots.txt +3 -0
- package/package.json +1 -1
- package/craco.config.js +0 -52
- package/dist/shared.js.LICENSE.txt +0 -9
- package/dist/shared.js.map +0 -1
- package/src/App.js +0 -20
- package/src/App.less +0 -38
- package/src/App.test.js +0 -23
- package/src/assets/citrix-animation.gif +0 -0
- package/src/assets/citrix.svg +0 -30
- package/src/assets/close-btn.svg +0 -9
- package/src/assets/error.svg +0 -10
- package/src/assets/fonts/PublicSans-ExtraLight.woff +0 -0
- package/src/assets/fonts/PublicSans-ExtraLight.woff2 +0 -0
- package/src/assets/fonts/PublicSans-ExtraLightItalic.woff +0 -0
- package/src/assets/fonts/PublicSans-ExtraLightItalic.woff2 +0 -0
- package/src/assets/fonts/PublicSans-Italic.woff +0 -0
- package/src/assets/fonts/PublicSans-Italic.woff2 +0 -0
- package/src/assets/fonts/PublicSans-Light.woff +0 -0
- package/src/assets/fonts/PublicSans-Light.woff2 +0 -0
- package/src/assets/fonts/PublicSans-LightItalic.woff +0 -0
- package/src/assets/fonts/PublicSans-LightItalic.woff2 +0 -0
- package/src/assets/fonts/PublicSans-Medium.woff +0 -0
- package/src/assets/fonts/PublicSans-Medium.woff2 +0 -0
- package/src/assets/fonts/PublicSans-MediumItalic.woff +0 -0
- package/src/assets/fonts/PublicSans-MediumItalic.woff2 +0 -0
- package/src/assets/fonts/PublicSans-Regular.woff +0 -0
- package/src/assets/fonts/PublicSans-Regular.woff2 +0 -0
- package/src/assets/fonts/PublicSans-SemiBold.woff +0 -0
- package/src/assets/fonts/PublicSans-SemiBold.woff2 +0 -0
- package/src/assets/fonts/PublicSans-SemiBoldItalic.woff +0 -0
- package/src/assets/fonts/PublicSans-SemiBoldItalic.woff2 +0 -0
- package/src/assets/globe.svg +0 -44
- package/src/assets/rebranded/close-btn.svg +0 -11
- package/src/assets/rebranded/error.svg +0 -13
- package/src/assets/rebranded/globe.svg +0 -21
- package/src/assets/rebranded/success.svg +0 -12
- package/src/assets/rebranded/workspaceVertical.svg +0 -12
- package/src/assets/spinner-dark.svg +0 -6
- package/src/assets/spinner-light.svg +0 -6
- package/src/assets/success.svg +0 -10
- package/src/assets/workspaceHorizontal.svg +0 -44
- package/src/assets/workspaceVertical.svg +0 -42
- package/src/components/ws-button/index.js +0 -4
- package/src/components/ws-button/ws-button.component.jsx +0 -48
- package/src/components/ws-button/ws-button.component.less +0 -100
- package/src/components/ws-button/ws-button.component.test.js +0 -11
- package/src/components/ws-button/ws-buttons.component.jsx +0 -60
- package/src/components/ws-button/ws-buttons.component.test.js +0 -18
- package/src/index.js +0 -18
- package/src/index.less +0 -13
- package/src/logo.svg +0 -1
- package/src/main.js +0 -1
- package/src/reportWebVitals.js +0 -13
- package/src/setupTests.js +0 -5
- package/webpack.config.js +0 -15
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,25 @@
|
|
1
|
+
{
|
2
|
+
"short_name": "React App",
|
3
|
+
"name": "Create React App Sample",
|
4
|
+
"icons": [
|
5
|
+
{
|
6
|
+
"src": "favicon.ico",
|
7
|
+
"sizes": "64x64 32x32 24x24 16x16",
|
8
|
+
"type": "image/x-icon"
|
9
|
+
},
|
10
|
+
{
|
11
|
+
"src": "logo192.png",
|
12
|
+
"type": "image/png",
|
13
|
+
"sizes": "192x192"
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"src": "logo512.png",
|
17
|
+
"type": "image/png",
|
18
|
+
"sizes": "512x512"
|
19
|
+
}
|
20
|
+
],
|
21
|
+
"start_url": ".",
|
22
|
+
"display": "standalone",
|
23
|
+
"theme_color": "#000000",
|
24
|
+
"background_color": "#ffffff"
|
25
|
+
}
|
package/build/robots.txt
ADDED
package/package.json
CHANGED
package/craco.config.js
DELETED
@@ -1,52 +0,0 @@
|
|
1
|
-
const path = require("path");
|
2
|
-
|
3
|
-
module.exports = {
|
4
|
-
webpack: {
|
5
|
-
configure: (webpackConfig) => {
|
6
|
-
// Set the entry point to the specific component
|
7
|
-
webpackConfig.entry = path.resolve(__dirname, "src/components/ws-button/ws-button.component.jsx");
|
8
|
-
|
9
|
-
|
10
|
-
// Set the output to a library format (e.g., UMD or ES Modules)
|
11
|
-
webpackConfig.output = {
|
12
|
-
path: path.resolve(__dirname, "dist"), // Output directory
|
13
|
-
filename: "ws-button.component.jsx", // Output file
|
14
|
-
library: "SharedLibrary", // Library name
|
15
|
-
libraryTarget: "umd", // Export as UMD module
|
16
|
-
globalObject: "this", // Ensure compatibility with Node.js
|
17
|
-
};
|
18
|
-
|
19
|
-
// Ensure React is treated as an external dependency (if required)
|
20
|
-
webpackConfig.externals = {
|
21
|
-
react: "React",
|
22
|
-
"react-dom": "ReactDOM",
|
23
|
-
};
|
24
|
-
|
25
|
-
// Add Less support
|
26
|
-
const rules = webpackConfig.module.rules.find(rule => Array.isArray(rule.oneOf)).oneOf;
|
27
|
-
|
28
|
-
rules.unshift({
|
29
|
-
test: /\.less$/,
|
30
|
-
use: [
|
31
|
-
{
|
32
|
-
loader: require.resolve('style-loader')
|
33
|
-
},
|
34
|
-
{
|
35
|
-
loader: require.resolve('css-loader')
|
36
|
-
},
|
37
|
-
{
|
38
|
-
loader: require.resolve('less-loader'),
|
39
|
-
options: {
|
40
|
-
lessOptions: {
|
41
|
-
javascriptEnabled: true, // Allows JS inside Less
|
42
|
-
},
|
43
|
-
},
|
44
|
-
},
|
45
|
-
],
|
46
|
-
});
|
47
|
-
|
48
|
-
return webpackConfig;
|
49
|
-
},
|
50
|
-
},
|
51
|
-
};
|
52
|
-
|
package/dist/shared.js.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"shared.js","mappings":"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","sources":["webpack://SharedLibrary/webpack/universalModuleDefinition","webpack://SharedLibrary/./node_modules/css-loader/dist/runtime/api.js","webpack://SharedLibrary/./node_modules/css-loader/dist/runtime/getUrl.js","webpack://SharedLibrary/./node_modules/css-loader/dist/runtime/sourceMaps.js","webpack://SharedLibrary/./node_modules/react/cjs/react-jsx-runtime.production.min.js","webpack://SharedLibrary/./node_modules/react/jsx-runtime.js","webpack://SharedLibrary/./src/components/ws-button/ws-button.component.less","webpack://SharedLibrary/./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","webpack://SharedLibrary/./node_modules/style-loader/dist/runtime/insertBySelector.js","webpack://SharedLibrary/./node_modules/style-loader/dist/runtime/insertStyleElement.js","webpack://SharedLibrary/./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js","webpack://SharedLibrary/./node_modules/style-loader/dist/runtime/styleDomAPI.js","webpack://SharedLibrary/./node_modules/style-loader/dist/runtime/styleTagTransform.js","webpack://SharedLibrary/external umd \"React\"","webpack://SharedLibrary/webpack/bootstrap","webpack://SharedLibrary/webpack/runtime/compat get default export","webpack://SharedLibrary/webpack/runtime/define property getters","webpack://SharedLibrary/webpack/runtime/global","webpack://SharedLibrary/webpack/runtime/hasOwnProperty shorthand","webpack://SharedLibrary/webpack/runtime/make namespace object","webpack://SharedLibrary/webpack/runtime/publicPath","webpack://SharedLibrary/webpack/runtime/jsonp chunk loading","webpack://SharedLibrary/webpack/runtime/nonce","webpack://SharedLibrary/./src/components/ws-button/ws-button.component.less?e069","webpack://SharedLibrary/./src/components/ws-button/ws-button.component.jsx"],"sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory(require(\"React\"));\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([\"React\"], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"SharedLibrary\"] = factory(require(\"React\"));\n\telse\n\t\troot[\"SharedLibrary\"] = factory(root[\"React\"]);\n})(this, (__WEBPACK_EXTERNAL_MODULE__883__) => {\nreturn ","\"use strict\";\n\n/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n*/\nmodule.exports = function (cssWithMappingToString) {\n var list = [];\n\n // return the list of modules as css string\n list.toString = function toString() {\n return this.map(function (item) {\n var content = \"\";\n var needLayer = typeof item[5] !== \"undefined\";\n if (item[4]) {\n content += \"@supports (\".concat(item[4], \") {\");\n }\n if (item[2]) {\n content += \"@media \".concat(item[2], \" {\");\n }\n if (needLayer) {\n content += \"@layer\".concat(item[5].length > 0 ? \" \".concat(item[5]) : \"\", \" {\");\n }\n content += cssWithMappingToString(item);\n if (needLayer) {\n content += \"}\";\n }\n if (item[2]) {\n content += \"}\";\n }\n if (item[4]) {\n content += \"}\";\n }\n return content;\n }).join(\"\");\n };\n\n // import a list of modules into the list\n list.i = function i(modules, media, dedupe, supports, layer) {\n if (typeof modules === \"string\") {\n modules = [[null, modules, undefined]];\n }\n var alreadyImportedModules = {};\n if (dedupe) {\n for (var k = 0; k < this.length; k++) {\n var id = this[k][0];\n if (id != null) {\n alreadyImportedModules[id] = true;\n }\n }\n }\n for (var _k = 0; _k < modules.length; _k++) {\n var item = [].concat(modules[_k]);\n if (dedupe && alreadyImportedModules[item[0]]) {\n continue;\n }\n if (typeof layer !== \"undefined\") {\n if (typeof item[5] === \"undefined\") {\n item[5] = layer;\n } else {\n item[1] = \"@layer\".concat(item[5].length > 0 ? \" \".concat(item[5]) : \"\", \" {\").concat(item[1], \"}\");\n item[5] = layer;\n }\n }\n if (media) {\n if (!item[2]) {\n item[2] = media;\n } else {\n item[1] = \"@media \".concat(item[2], \" {\").concat(item[1], \"}\");\n item[2] = media;\n }\n }\n if (supports) {\n if (!item[4]) {\n item[4] = \"\".concat(supports);\n } else {\n item[1] = \"@supports (\".concat(item[4], \") {\").concat(item[1], \"}\");\n item[4] = supports;\n }\n }\n list.push(item);\n }\n };\n return list;\n};","\"use strict\";\n\nmodule.exports = function (url, options) {\n if (!options) {\n options = {};\n }\n if (!url) {\n return url;\n }\n url = String(url.__esModule ? url.default : url);\n\n // If url is already wrapped in quotes, remove them\n if (/^['\"].*['\"]$/.test(url)) {\n url = url.slice(1, -1);\n }\n if (options.hash) {\n url += options.hash;\n }\n\n // Should url be wrapped?\n // See https://drafts.csswg.org/css-values-3/#urls\n if (/[\"'() \\t\\n]|(%20)/.test(url) || options.needQuotes) {\n return \"\\\"\".concat(url.replace(/\"/g, '\\\\\"').replace(/\\n/g, \"\\\\n\"), \"\\\"\");\n }\n return url;\n};","\"use strict\";\n\nmodule.exports = function (item) {\n var content = item[1];\n var cssMapping = item[3];\n if (!cssMapping) {\n return content;\n }\n if (typeof btoa === \"function\") {\n var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(cssMapping))));\n var data = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(base64);\n var sourceMapping = \"/*# \".concat(data, \" */\");\n return [content].concat([sourceMapping]).join(\"\\n\");\n }\n return [content].join(\"\\n\");\n};","/**\n * @license React\n * react-jsx-runtime.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';var f=require(\"react\"),k=Symbol.for(\"react.element\"),l=Symbol.for(\"react.fragment\"),m=Object.prototype.hasOwnProperty,n=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,p={key:!0,ref:!0,__self:!0,__source:!0};\nfunction q(c,a,g){var b,d={},e=null,h=null;void 0!==g&&(e=\"\"+g);void 0!==a.key&&(e=\"\"+a.key);void 0!==a.ref&&(h=a.ref);for(b in a)m.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:k,type:c,key:e,ref:h,props:d,_owner:n.current}}exports.Fragment=l;exports.jsx=q;exports.jsxs=q;\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.min.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../node_modules/css-loader/dist/runtime/api.js\";\nimport ___CSS_LOADER_GET_URL_IMPORT___ from \"../../../node_modules/css-loader/dist/runtime/getUrl.js\";\nvar ___CSS_LOADER_URL_IMPORT_0___ = new URL(\"../../assets/spinner-light.svg\", import.meta.url);\nvar ___CSS_LOADER_URL_IMPORT_1___ = new URL(\"../../assets/spinner-dark.svg\", import.meta.url);\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\nvar ___CSS_LOADER_URL_REPLACEMENT_0___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_0___);\nvar ___CSS_LOADER_URL_REPLACEMENT_1___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_1___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.ws-button {\n cursor: pointer;\n display: inline-block;\n font-size: 16px;\n font-weight: 600;\n text-align: center;\n transition: background-color 0.1s ease, border 0.1s ease, color 0.1s ease;\n user-select: none;\n width: 100%;\n}\n.ws-button-default {\n border-radius: 20px;\n height: 40px;\n}\n.ws-button-baby {\n border-radius: 12px;\n height: 24px;\n}\n.ws-button-loading {\n background-color: #05758a;\n border: none;\n}\n.ws-button-loading-content-light {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_0___});\n background-repeat: no-repeat;\n display: block;\n height: 20px;\n margin: 0 auto;\n width: 20px;\n}\n.ws-button-loading-content-dark {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_1___});\n background-repeat: no-repeat;\n display: block;\n height: 20px;\n margin: 0 auto;\n width: 20px;\n}\n.ws-button:focus {\n outline: none;\n}\n.ws-button-primary,\n.ws-button-primary-loading {\n background-color: #05758a;\n border: none;\n color: #ffffff;\n}\n.ws-button-primary-loading {\n cursor: none;\n}\n.ws-button-primary:hover {\n background-color: #005463;\n}\n.ws-button-primary.disabled,\n.ws-button-primary[disabled] {\n background-color: #82bac4;\n border: none;\n cursor: none;\n}\n.ws-button-secondary,\n.ws-button-secondary-loading {\n background-color: #ffffff;\n border: 2px solid #05758a;\n color: #05758a;\n}\n.ws-button-secondary-loading {\n cursor: none;\n}\n.ws-button-secondary:hover {\n border: 2px solid #005463;\n color: #005463;\n}\n.ws-button-secondary.disabled,\n.ws-button-secondary[disabled] {\n background-color: #ffffff;\n border: 2px solid #82bac4;\n color: #82bac4;\n cursor: none;\n}\n`, \"\",{\"version\":3,\"sources\":[\"webpack://./src/components/ws-button/ws-button.component.less\"],\"names\":[],\"mappings\":\"AAIA;EACI,eAAA;EACA,qBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;EACA,yEAAA;EACA,iBAAA;EACA,WAAA;AAHJ;AAKI;EACI,mBAAA;EACA,YAAA;AAHR;AAMI;EACI,mBAAA;EACA,YAAA;AAJR;AAOI;EACI,yBAAA;EACA,YAAA;AALR;AAQI;EACI,yDAAA;EACA,4BAAA;EACA,cAAA;EACA,YAAA;EACA,cAAA;EACA,WAAA;AANR;AAUI;EACI,yDAAA;EACA,4BAAA;EACA,cAAA;EACA,YAAA;EACA,cAAA;EACA,WAAA;AARR;AAYA;EACI,aAAA;AAVJ;AAcA;;EAEI,yBAAA;EACA,YAAA;EACA,cAAA;AAZJ;AAeA;EACI,YAAA;AAbJ;AAgBA;EACI,yBAAA;AAdJ;AAiBA;;EAEI,yBAAA;EACA,YAAA;EACA,YAAA;AAfJ;AAmBA;;EAEI,yBAAA;EACA,yBAAA;EACA,cAAA;AAjBJ;AAoBA;EACI,YAAA;AAlBJ;AAqBA;EACI,yBAAA;EACA,cAAA;AAnBJ;AAsBA;;EAEI,yBAAA;EACA,yBAAA;EACA,cAAA;EACA,YAAA;AApBJ\",\"sourcesContent\":[\"// Copyright © 2024. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary.\\n\\n@import (reference) '../../../theme.less';\\n\\n.ws-button {\\n cursor: pointer;\\n display: inline-block;\\n font-size: 16px;\\n font-weight: 600;\\n text-align: center;\\n transition: background-color 0.1s ease, border 0.1s ease, color 0.1s ease;\\n user-select: none;\\n width: 100%;\\n\\n &-default {\\n border-radius: 20px;\\n height: 40px;\\n }\\n\\n &-baby {\\n border-radius: 12px;\\n height: 24px;\\n }\\n\\n &-loading {\\n background-color: @ws-button-primary-background-color;\\n border: none;\\n }\\n\\n &-loading-content-light {\\n background-image: url('../../assets/spinner-light.svg');\\n background-repeat: no-repeat;\\n display: block;\\n height: 20px;\\n margin: 0 auto;\\n width: 20px;\\n \\n }\\n\\n &-loading-content-dark {\\n background-image: url('../../assets/spinner-dark.svg');\\n background-repeat: no-repeat;\\n display: block;\\n height: 20px;\\n margin: 0 auto;\\n width: 20px;\\n }\\n}\\n\\n.ws-button:focus {\\n outline: none;\\n}\\n\\n// primary button\\n.ws-button-primary, \\n.ws-button-primary-loading {\\n background-color: @ws-button-primary-background-color;\\n border: none;\\n color: @ws-button-primary-text-color;\\n}\\n\\n.ws-button-primary-loading {\\n cursor: none;\\n}\\n\\n.ws-button-primary:hover {\\n background-color: @ws-button-primary-background-color-hover;\\n}\\n\\n.ws-button-primary.disabled, \\n.ws-button-primary[disabled] {\\n background-color: @ws-button-primary-background-color-disabled;\\n border: none;\\n cursor: none;\\n}\\n\\n// secondary button\\n.ws-button-secondary,\\n.ws-button-secondary-loading {\\n background-color: @ws-button-secondary-background-color;\\n border: 2px solid @ws-button-secondary-border-color;\\n color: @ws-button-secondary-text-color;\\n}\\n\\n.ws-button-secondary-loading {\\n cursor: none;\\n}\\n\\n.ws-button-secondary:hover {\\n border: 2px solid @ws-button-secondary-border-hover;\\n color: @ws-button-secondary-text-color-hover;\\n}\\n\\n.ws-button-secondary.disabled, \\n.ws-button-secondary[disabled] {\\n background-color: @ws-button-secondary-background-color-disabled;\\n border: 2px solid @ws-button-secondary-border-hover-disabled;\\n color: @ws-button-secondary-text-color-disabled;\\n cursor: none;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","\"use strict\";\n\nvar stylesInDOM = [];\nfunction getIndexByIdentifier(identifier) {\n var result = -1;\n for (var i = 0; i < stylesInDOM.length; i++) {\n if (stylesInDOM[i].identifier === identifier) {\n result = i;\n break;\n }\n }\n return result;\n}\nfunction modulesToDom(list, options) {\n var idCountMap = {};\n var identifiers = [];\n for (var i = 0; i < list.length; i++) {\n var item = list[i];\n var id = options.base ? item[0] + options.base : item[0];\n var count = idCountMap[id] || 0;\n var identifier = \"\".concat(id, \" \").concat(count);\n idCountMap[id] = count + 1;\n var indexByIdentifier = getIndexByIdentifier(identifier);\n var obj = {\n css: item[1],\n media: item[2],\n sourceMap: item[3],\n supports: item[4],\n layer: item[5]\n };\n if (indexByIdentifier !== -1) {\n stylesInDOM[indexByIdentifier].references++;\n stylesInDOM[indexByIdentifier].updater(obj);\n } else {\n var updater = addElementStyle(obj, options);\n options.byIndex = i;\n stylesInDOM.splice(i, 0, {\n identifier: identifier,\n updater: updater,\n references: 1\n });\n }\n identifiers.push(identifier);\n }\n return identifiers;\n}\nfunction addElementStyle(obj, options) {\n var api = options.domAPI(options);\n api.update(obj);\n var updater = function updater(newObj) {\n if (newObj) {\n if (newObj.css === obj.css && newObj.media === obj.media && newObj.sourceMap === obj.sourceMap && newObj.supports === obj.supports && newObj.layer === obj.layer) {\n return;\n }\n api.update(obj = newObj);\n } else {\n api.remove();\n }\n };\n return updater;\n}\nmodule.exports = function (list, options) {\n options = options || {};\n list = list || [];\n var lastIdentifiers = modulesToDom(list, options);\n return function update(newList) {\n newList = newList || [];\n for (var i = 0; i < lastIdentifiers.length; i++) {\n var identifier = lastIdentifiers[i];\n var index = getIndexByIdentifier(identifier);\n stylesInDOM[index].references--;\n }\n var newLastIdentifiers = modulesToDom(newList, options);\n for (var _i = 0; _i < lastIdentifiers.length; _i++) {\n var _identifier = lastIdentifiers[_i];\n var _index = getIndexByIdentifier(_identifier);\n if (stylesInDOM[_index].references === 0) {\n stylesInDOM[_index].updater();\n stylesInDOM.splice(_index, 1);\n }\n }\n lastIdentifiers = newLastIdentifiers;\n };\n};","\"use strict\";\n\nvar memo = {};\n\n/* istanbul ignore next */\nfunction getTarget(target) {\n if (typeof memo[target] === \"undefined\") {\n var styleTarget = document.querySelector(target);\n\n // Special case to return head of iframe instead of iframe itself\n if (window.HTMLIFrameElement && styleTarget instanceof window.HTMLIFrameElement) {\n try {\n // This will throw an exception if access to iframe is blocked\n // due to cross-origin restrictions\n styleTarget = styleTarget.contentDocument.head;\n } catch (e) {\n // istanbul ignore next\n styleTarget = null;\n }\n }\n memo[target] = styleTarget;\n }\n return memo[target];\n}\n\n/* istanbul ignore next */\nfunction insertBySelector(insert, style) {\n var target = getTarget(insert);\n if (!target) {\n throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");\n }\n target.appendChild(style);\n}\nmodule.exports = insertBySelector;","\"use strict\";\n\n/* istanbul ignore next */\nfunction insertStyleElement(options) {\n var element = document.createElement(\"style\");\n options.setAttributes(element, options.attributes);\n options.insert(element, options.options);\n return element;\n}\nmodule.exports = insertStyleElement;","\"use strict\";\n\n/* istanbul ignore next */\nfunction setAttributesWithoutAttributes(styleElement) {\n var nonce = typeof __webpack_nonce__ !== \"undefined\" ? __webpack_nonce__ : null;\n if (nonce) {\n styleElement.setAttribute(\"nonce\", nonce);\n }\n}\nmodule.exports = setAttributesWithoutAttributes;","\"use strict\";\n\n/* istanbul ignore next */\nfunction apply(styleElement, options, obj) {\n var css = \"\";\n if (obj.supports) {\n css += \"@supports (\".concat(obj.supports, \") {\");\n }\n if (obj.media) {\n css += \"@media \".concat(obj.media, \" {\");\n }\n var needLayer = typeof obj.layer !== \"undefined\";\n if (needLayer) {\n css += \"@layer\".concat(obj.layer.length > 0 ? \" \".concat(obj.layer) : \"\", \" {\");\n }\n css += obj.css;\n if (needLayer) {\n css += \"}\";\n }\n if (obj.media) {\n css += \"}\";\n }\n if (obj.supports) {\n css += \"}\";\n }\n var sourceMap = obj.sourceMap;\n if (sourceMap && typeof btoa !== \"undefined\") {\n css += \"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))), \" */\");\n }\n\n // For old IE\n /* istanbul ignore if */\n options.styleTagTransform(css, styleElement, options.options);\n}\nfunction removeStyleElement(styleElement) {\n // istanbul ignore if\n if (styleElement.parentNode === null) {\n return false;\n }\n styleElement.parentNode.removeChild(styleElement);\n}\n\n/* istanbul ignore next */\nfunction domAPI(options) {\n if (typeof document === \"undefined\") {\n return {\n update: function update() {},\n remove: function remove() {}\n };\n }\n var styleElement = options.insertStyleElement(options);\n return {\n update: function update(obj) {\n apply(styleElement, options, obj);\n },\n remove: function remove() {\n removeStyleElement(styleElement);\n }\n };\n}\nmodule.exports = domAPI;","\"use strict\";\n\n/* istanbul ignore next */\nfunction styleTagTransform(css, styleElement) {\n if (styleElement.styleSheet) {\n styleElement.styleSheet.cssText = css;\n } else {\n while (styleElement.firstChild) {\n styleElement.removeChild(styleElement.firstChild);\n }\n styleElement.appendChild(document.createTextNode(css));\n }\n}\nmodule.exports = styleTagTransform;","module.exports = __WEBPACK_EXTERNAL_MODULE__883__;","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","var scriptUrl;\nif (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + \"\";\nvar document = __webpack_require__.g.document;\nif (!scriptUrl && document) {\n\tif (document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT')\n\t\tscriptUrl = document.currentScript.src;\n\tif (!scriptUrl) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tif(scripts.length) {\n\t\t\tvar i = scripts.length - 1;\n\t\t\twhile (i > -1 && (!scriptUrl || !/^http(s?):/.test(scriptUrl))) scriptUrl = scripts[i--].src;\n\t\t}\n\t}\n}\n// When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration\n// or pass an empty string (\"\") and set the __webpack_public_path__ variable from your code to use your own logic.\nif (!scriptUrl) throw new Error(\"Automatic publicPath is not supported in this browser\");\nscriptUrl = scriptUrl.replace(/#.*$/, \"\").replace(/\\?.*$/, \"\").replace(/\\/[^\\/]+$/, \"/\");\n__webpack_require__.p = scriptUrl;","__webpack_require__.b = document.baseURI || self.location.href;\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t792: 0\n};\n\n// no chunk on demand loading\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n// no on chunks loaded\n\n// no jsonp function","__webpack_require__.nc = undefined;","\n import API from \"!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/less-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./ws-button.component.less\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/less-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./ws-button.component.less\";\n export default content && content.locals ? content.locals : undefined;\n","// Copyright © 2024. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary.\r\n\r\n// Dependencies\r\nimport React from 'react';\r\nimport './ws-button.component.less';\r\n\r\nfunction WsButton({id, children, disabled, isLoading, name, onClick, size, tabIndex, type, value, variant }) {\r\n const classes = ['ws-button'];\r\n if (!size || size === 'default') {\r\n classes.push('ws-button-default');\r\n } else if (size === 'baby') {\r\n classes.push('ws-button-baby');\r\n }\r\n let loading = null;\r\n if (isLoading) {\r\n classes.push('ws-button-loading');\r\n if (variant === 'primary') {\r\n loading = <div className='ws-button-loading-content-light' />;\r\n } else if (variant === 'secondary') {\r\n loading = <div className='ws-button-loading-content-dark' />;\r\n }\r\n if (variant === 'primary') {\r\n classes.push('ws-button-primary-loading');\r\n } else if (variant === 'secondary') {\r\n classes.push('ws-button-secondary-loading');\r\n }\r\n } else {\r\n if (variant === 'primary') {\r\n classes.push('ws-button-primary');\r\n } else if (variant === 'secondary') {\r\n classes.push('ws-button-secondary');\r\n }\r\n }\r\n return (\r\n <button data-testid=\"ws-button.component\" className={classes.join(' ')}\r\n disabled={disabled}\r\n id={id}\r\n name={name}\r\n onClick={onClick}\r\n tabIndex={tabIndex}\r\n type={type}\r\n value={value}>\r\n {loading ? loading : children}\r\n </button>\r\n );\r\n}\r\n\r\nexport default WsButton;"],"names":["root","factory","exports","module","require","define","amd","this","__WEBPACK_EXTERNAL_MODULE__883__","cssWithMappingToString","list","toString","map","item","content","needLayer","concat","length","join","i","modules","media","dedupe","supports","layer","undefined","alreadyImportedModules","k","id","_k","push","url","options","String","__esModule","default","test","slice","hash","needQuotes","replace","cssMapping","btoa","base64","unescape","encodeURIComponent","JSON","stringify","data","sourceMapping","f","Symbol","for","l","m","Object","prototype","hasOwnProperty","n","__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED","ReactCurrentOwner","p","key","ref","__self","__source","q","c","a","g","b","d","e","h","call","defaultProps","$$typeof","type","props","_owner","current","jsx","___CSS_LOADER_URL_IMPORT_0___","URL","___CSS_LOADER_URL_IMPORT_1___","___CSS_LOADER_EXPORT___","___CSS_LOADER_URL_REPLACEMENT_0___","___CSS_LOADER_URL_REPLACEMENT_1___","stylesInDOM","getIndexByIdentifier","identifier","result","modulesToDom","idCountMap","identifiers","base","count","indexByIdentifier","obj","css","sourceMap","references","updater","addElementStyle","byIndex","splice","api","domAPI","update","newObj","remove","lastIdentifiers","newList","index","newLastIdentifiers","_i","_index","memo","insert","style","target","styleTarget","document","querySelector","window","HTMLIFrameElement","contentDocument","head","getTarget","Error","appendChild","element","createElement","setAttributes","attributes","styleElement","nonce","setAttribute","insertStyleElement","styleTagTransform","apply","parentNode","removeChild","removeStyleElement","styleSheet","cssText","firstChild","createTextNode","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","__webpack_modules__","getter","definition","o","defineProperty","enumerable","get","globalThis","Function","prop","r","toStringTag","value","scriptUrl","importScripts","location","currentScript","tagName","toUpperCase","src","scripts","getElementsByTagName","baseURI","self","href","nc","locals","_ref","children","disabled","isLoading","name","onClick","size","tabIndex","variant","classes","loading","_jsx","className"],"sourceRoot":""}
|
package/src/App.js
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
// Copyright © 2024. Cloud Software Group, Inc. All Rights Reserved. Confidential & Proprietary.
|
2
|
-
|
3
|
-
import { Routes, Route } from 'react-router-dom';
|
4
|
-
import Buttons from './components/ws-button/ws-buttons.component.jsx';
|
5
|
-
|
6
|
-
// Component for Home page
|
7
|
-
function Home() {
|
8
|
-
return <h2>Home Page</h2>;
|
9
|
-
}
|
10
|
-
|
11
|
-
function App() {
|
12
|
-
return (
|
13
|
-
<Routes>
|
14
|
-
<Route path="/" element={<Home />} />
|
15
|
-
<Route path="/buttons" element={<Buttons />} />
|
16
|
-
</Routes>
|
17
|
-
);
|
18
|
-
}
|
19
|
-
|
20
|
-
export default App;
|
package/src/App.less
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
.App {
|
2
|
-
text-align: center;
|
3
|
-
}
|
4
|
-
|
5
|
-
.App-logo {
|
6
|
-
height: 40vmin;
|
7
|
-
pointer-events: none;
|
8
|
-
}
|
9
|
-
|
10
|
-
@media (prefers-reduced-motion: no-preference) {
|
11
|
-
.App-logo {
|
12
|
-
animation: App-logo-spin infinite 20s linear;
|
13
|
-
}
|
14
|
-
}
|
15
|
-
|
16
|
-
.App-header {
|
17
|
-
background-color: #282c34;
|
18
|
-
min-height: 100vh;
|
19
|
-
display: flex;
|
20
|
-
flex-direction: column;
|
21
|
-
align-items: center;
|
22
|
-
justify-content: center;
|
23
|
-
font-size: calc(10px + 2vmin);
|
24
|
-
color: white;
|
25
|
-
}
|
26
|
-
|
27
|
-
.App-link {
|
28
|
-
color: red;
|
29
|
-
}
|
30
|
-
|
31
|
-
@keyframes App-logo-spin {
|
32
|
-
from {
|
33
|
-
transform: rotate(0deg);
|
34
|
-
}
|
35
|
-
to {
|
36
|
-
transform: rotate(360deg);
|
37
|
-
}
|
38
|
-
}
|
package/src/App.test.js
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
import { render, screen } from '@testing-library/react';
|
2
|
-
import { MemoryRouter } from 'react-router-dom';
|
3
|
-
import App from './App';
|
4
|
-
|
5
|
-
test('renders Home page on default route ("/")', () => {
|
6
|
-
render(
|
7
|
-
<MemoryRouter initialEntries={['/']}>
|
8
|
-
<App />
|
9
|
-
</MemoryRouter>
|
10
|
-
);
|
11
|
-
expect(screen.getByText('Home Page')).toBeInTheDocument();
|
12
|
-
});
|
13
|
-
|
14
|
-
|
15
|
-
test('renders buttons route', () => {
|
16
|
-
render(
|
17
|
-
<MemoryRouter initialEntries={['/buttons']}>
|
18
|
-
<App />
|
19
|
-
</MemoryRouter>
|
20
|
-
);
|
21
|
-
const buttons = screen.getByTestId('buttons.component');
|
22
|
-
expect(buttons).toBeInTheDocument();
|
23
|
-
});
|
Binary file
|
package/src/assets/citrix.svg
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<svg width="209px" height="71px" viewBox="0 0 209 71" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
3
|
-
<title>Citrix-Wordmark-000000-20200225</title>
|
4
|
-
<defs>
|
5
|
-
<polygon id="path-1" points="0.0002 0.7184 48.6282 0.7184 48.6282 55 0.0002 55"></polygon>
|
6
|
-
<polygon id="path-3" points="0.3122 0.078 21.4772 0.078 21.4772 70.2098 0.3122 70.2098"></polygon>
|
7
|
-
</defs>
|
8
|
-
<g id="Citrix-Wordmark-000000-20200225" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
9
|
-
<g id="Group-3" transform="translate(0.000000, 15.922100)">
|
10
|
-
<mask id="mask-2" fill="white">
|
11
|
-
<use xlink:href="#path-1"></use>
|
12
|
-
</mask>
|
13
|
-
<g id="Clip-2"></g>
|
14
|
-
<path d="M0.0002,27.8704 C0.0002,11.8634 10.7402,0.7184 26.0382,0.7184 C36.3702,0.7184 44.7802,5.8874 48.1212,13.8884 C48.5292,14.6964 48.6282,15.4064 48.6282,16.2184 C48.6282,18.0414 47.2092,19.2584 45.3862,19.2584 C43.9682,19.2584 42.7552,18.4464 42.1452,16.8254 C39.5132,10.3414 33.5372,6.5924 26.0382,6.5924 C14.5882,6.5924 6.5872,15.3074 6.5872,27.8704 C6.5872,40.3314 14.4892,49.0424 26.0382,49.0424 C33.5372,49.0424 39.2082,45.3954 42.2482,37.7984 C42.8542,36.2764 43.8692,35.3644 45.3862,35.3644 C47.2092,35.3644 48.6282,36.7834 48.6282,38.6064 C48.6282,39.3164 48.5292,39.8234 48.2242,40.7344 C44.9822,49.4464 36.6752,55.0184 26.0382,55.0184 C10.6372,55.0184 0.0002,43.8744 0.0002,27.8704" id="Fill-1" fill="#000000" mask="url(#mask-2)"></path>
|
15
|
-
</g>
|
16
|
-
<g id="Group-6" transform="translate(80.000000, -0.077900)">
|
17
|
-
<mask id="mask-4" fill="white">
|
18
|
-
<use xlink:href="#path-3"></use>
|
19
|
-
</mask>
|
20
|
-
<g id="Clip-5"></g>
|
21
|
-
<path d="M6.8972,66.5638 C6.8972,68.7918 5.6802,70.2098 3.5562,70.2098 C1.4282,70.2098 0.3142,68.7918 0.3142,66.5638 L0.3122,3.7278 C0.3122,1.3978 1.5292,0.0778 3.6572,0.0778 C5.7852,0.0778 6.8992,1.3978 6.8992,3.7278 L6.8992,18.0348 L18.2352,18.0348 C20.2602,18.0348 21.4772,19.1478 21.4772,20.9708 C21.4772,22.7978 20.2602,23.9118 18.2352,23.9118 L6.8992,23.9118 L6.8972,66.5638 Z" id="Fill-4" fill="#000000" mask="url(#mask-4)"></path>
|
22
|
-
</g>
|
23
|
-
<path d="M137.6413,21.5035 C137.6413,23.3265 136.3223,24.6425 134.4003,24.6425 C133.6903,24.6425 132.9813,24.4405 131.9663,23.9335 C130.4483,23.2235 128.8283,22.8195 126.6993,22.8195 C119.7073,22.8195 115.1503,28.8995 115.1503,36.5995 L115.1503,66.4855 C115.1503,68.8125 114.0373,70.1325 111.9083,70.1325 C109.7803,70.1325 108.5633,68.8125 108.5633,66.4855 L108.5633,21.0995 C108.5633,18.7695 109.7803,17.4495 111.9083,17.4495 C114.0373,17.4495 115.1503,18.7695 115.1503,21.0995 L115.1503,22.4155 C117.9883,18.6665 122.4423,16.6405 127.4093,16.6405 C131.2563,16.6405 133.9913,17.4495 135.9173,18.6665 C137.0313,19.3755 137.6413,20.2875 137.6413,21.5035" id="Fill-7" fill="#000000"></path>
|
24
|
-
<path d="M144.323,21.0997 C144.323,18.7687 145.536,17.4497 147.665,17.4497 C149.793,17.4497 150.906,18.7687 150.906,21.0997 L150.906,66.4857 C150.906,68.7137 149.689,70.1327 147.565,70.1327 C145.437,70.1327 144.323,68.7137 144.323,66.4857 L144.323,21.0997 Z" id="Fill-9" fill="#000000"></path>
|
25
|
-
<path d="M60.1965,21.0997 C60.1965,18.7687 61.4095,17.4497 63.5375,17.4497 C65.6655,17.4497 66.7795,18.7687 66.7795,21.0997 L66.7795,66.4857 C66.7795,68.7137 65.5625,70.1327 63.4385,70.1327 C61.3105,70.1327 60.1965,68.7137 60.1965,66.4857 L60.1965,21.0997 Z" id="Fill-11" fill="#000000"></path>
|
26
|
-
<path d="M68.6623,5.1744 C68.6623,8.0314 66.3453,10.3484 63.4883,10.3484 C60.6303,10.3484 58.3133,8.0314 58.3133,5.1744 C58.3133,2.3164 60.6303,0.0004 63.4883,0.0004 C66.3453,0.0004 68.6623,2.3164 68.6623,5.1744" id="Fill-13" fill="#000000"></path>
|
27
|
-
<path d="M185.1433,47.8433 L167.2113,68.8123 C166.5023,69.7283 165.5903,70.1323 164.5763,70.1323 C162.7523,70.1323 161.4373,68.7133 161.4373,67.0923 C161.4373,66.3833 161.6393,65.5713 162.3493,64.7623 L181.0903,43.5883 L163.0583,22.9223 C162.3493,22.1103 161.9453,21.4003 161.9453,20.4893 C161.9453,18.8683 163.2603,17.4493 165.1863,17.4493 C166.1973,17.4493 166.9073,17.8573 167.7193,18.7693 L185.1433,39.2313 L202.5673,18.7693 C203.3793,17.8573 204.0893,17.4493 205.1003,17.4493 C207.0263,17.4493 208.3413,18.8683 208.3413,20.4893 C208.3413,21.4003 207.9373,22.1103 207.2283,22.9223 L189.1963,43.5883 L207.9373,64.7623 C208.6473,65.5713 208.8493,66.3833 208.8493,67.0923 C208.8493,68.7133 207.5333,70.1323 205.7103,70.1323 C204.6963,70.1323 203.7843,69.7283 203.0753,68.8123 L185.1433,47.8433 Z" id="Fill-15" fill="#000000"></path>
|
28
|
-
<path d="M190.3171,5.1744 C190.3171,8.0314 188.0011,10.3484 185.1431,10.3484 C182.2861,10.3484 179.9681,8.0314 179.9681,5.1744 C179.9681,2.3164 182.2861,0.0004 185.1431,0.0004 C188.0011,0.0004 190.3171,2.3164 190.3171,5.1744" id="Fill-19" fill="#000000"></path>
|
29
|
-
</g>
|
30
|
-
</svg>
|
package/src/assets/close-btn.svg
DELETED
@@ -1,9 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3
|
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4
|
-
viewBox="0 0 52 52" style="enable-background:new 0 0 52 52;" xml:space="preserve">
|
5
|
-
<g>
|
6
|
-
<polygon style="fill-rule:evenodd;clip-rule:evenodd;fill:#485164;" points="47.4,0.2 26.2,21.5 4.9,0.2 0.2,4.9 21.4,26.2
|
7
|
-
0.2,47.5 4.9,52.2 26.2,30.9 47.4,52.2 52.2,47.5 30.9,26.2 52.2,4.9 "/>
|
8
|
-
</g>
|
9
|
-
</svg>
|
package/src/assets/error.svg
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
3
|
-
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
|
4
|
-
<title>01 - Icons/Toasts/24/Error</title>
|
5
|
-
<desc>Created with Sketch.</desc>
|
6
|
-
<defs></defs>
|
7
|
-
<g id="01---Icons/Toasts/24/Error" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
8
|
-
<path d="M0.763077917,21.537434 L11.1134152,1.69928762 C11.3688833,1.20964033 11.9729187,1.01980063 12.462566,1.27526878 C12.643953,1.36990545 12.7919482,1.51790067 12.8865848,1.69928762 L23.2369221,21.537434 C23.4923902,22.0270813 23.3025505,22.6311167 22.8129032,22.8865848 C22.6700988,22.9610915 22.5114098,23 22.3503372,23 L1.64966276,23 C1.09737801,23 0.649662763,22.5522847 0.649662763,22 C0.649662763,21.8389275 0.688571245,21.6802384 0.763077917,21.537434 Z M22.0634384,21.6359773 L12.2224833,2.43411378 C12.1595103,2.31123964 12.0088514,2.26268017 11.8859773,2.32565317 C11.839352,2.34954864 11.8014122,2.38748847 11.7775167,2.43411378 L1.93656163,21.6359773 C1.87358864,21.7588514 1.92214811,21.9095103 2.04502225,21.9724833 C2.08030981,21.9905682 2.11939303,22 2.15904495,22 L21.8409551,22 C21.9790262,22 22.0909551,21.8880712 22.0909551,21.75 C22.0909551,21.7103481 22.0815232,21.6712649 22.0634384,21.6359773 Z M12,19.75 C11.5857864,19.75 11.25,19.4142136 11.25,19 C11.25,18.5857864 11.5857864,18.25 12,18.25 C12.4142136,18.25 12.75,18.5857864 12.75,19 C12.75,19.4142136 12.4142136,19.75 12,19.75 Z M11.5,16.4903342 L11.5,8.50966585 C11.5,8.22247314 11.7238576,8 12,8 C12.2680664,8 12.5,8.22818517 12.5,8.50966585 L12.5,16.4903342 C12.5,16.7775269 12.2761424,17 12,17 C11.7319336,17 11.5,16.7718148 11.5,16.4903342 Z" id="Combined-Shape" fill="#D50032" fill-rule="nonzero"></path>
|
9
|
-
</g>
|
10
|
-
</svg>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
package/src/assets/globe.svg
DELETED
@@ -1,44 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
3
|
-
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
|
4
|
-
<title>Globe</title>
|
5
|
-
<desc>Created with Sketch.</desc>
|
6
|
-
<defs></defs>
|
7
|
-
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
8
|
-
<g id="WSX33_PushNotificationOTP_Default" transform="translate(-597.000000, -1087.000000)" fill="#2071C5" fill-rule="nonzero">
|
9
|
-
<g id="01a---Employee-Sign-In-Copy" transform="translate(70.000000, 244.000000)">
|
10
|
-
<g id="Group-4" transform="translate(527.000000, 842.000000)">
|
11
|
-
<g id="Globe" transform="translate(0.000000, 1.000000)">
|
12
|
-
<g id="Layer_1_1_" transform="translate(0.888889, 0.888889)">
|
13
|
-
<path d="M13.0123457,6.93333333 C12.9283951,7.02222222 12.8444444,7.02222222 12.8444444,7.02222222 C12.7604938,7.02222222 12.7604938,7.02222222 12.7604938,7.02222222 C12.6765432,7.02222222 12.7604938,7.02222222 12.6765432,7.02222222 L12.5925926,7.02222222 C12.5925926,7.02222222 12.5925926,7.02222222 12.508642,7.02222222 C12.4246914,7.02222222 12.508642,7.02222222 12.508642,7.02222222 L12.508642,6.93333333 C12.508642,6.93333333 12.508642,6.84444444 12.508642,6.84444444 C12.508642,6.84444444 12.508642,6.84444444 12.4246914,6.75555556 C12.4246914,6.66666667 12.3407407,6.66666667 12.2567901,6.66666667 C12.1728395,6.66666667 12.2567901,6.66666667 12.1728395,6.57777778 C12.0888889,6.48888889 12.1728395,6.57777778 12.1728395,6.48888889 C12.1728395,6.48888889 12.1728395,6.48888889 12.1728395,6.4 C12.1728395,6.4 12.0888889,6.4 12.0888889,6.4 C12.0049383,6.31111111 12.0888889,6.4 12.0049383,6.31111111 C12.0049383,6.31111111 12.0049383,6.22222222 12.0049383,6.22222222 C12.0049383,6.22222222 11.9209877,6.04444444 11.9209877,6.04444444 C11.9209877,5.95555556 11.837037,6.04444444 11.9209877,6.04444444 C11.9209877,6.04444444 11.9209877,6.04444444 11.9209877,6.04444444 C11.9209877,6.04444444 11.9209877,5.95555556 11.9209877,5.95555556 C11.9209877,5.86666667 11.837037,5.77777778 11.837037,5.77777778 C11.7530864,5.68888889 11.837037,5.77777778 11.837037,5.68888889 C11.837037,5.68888889 11.5851852,5.51111111 11.5851852,5.51111111 C11.5851852,5.51111111 11.5851852,5.42222222 11.5851852,5.42222222 L11.6691358,5.51111111 C11.6691358,5.51111111 11.6691358,5.51111111 11.7530864,5.6 C11.837037,5.68888889 11.7530864,5.6 11.7530864,5.51111111 C11.7530864,5.51111111 11.7530864,5.42222222 11.7530864,5.42222222 C11.7530864,5.33333333 11.7530864,5.33333333 11.6691358,5.24444444 L11.5012346,5.24444444 C11.5012346,5.24444444 11.5012346,5.24444444 11.417284,5.24444444 C11.3333333,5.24444444 11.3333333,5.24444444 11.2493827,5.33333333 C11.1654321,5.33333333 11.0814815,5.24444444 11.0814815,5.24444444 L10.9135802,5.24444444 L10.8296296,5.24444444 C10.8296296,5.24444444 10.745679,5.24444444 10.745679,5.24444444 L10.6617284,5.15555556 C10.6617284,5.15555556 10.5777778,5.15555556 10.5777778,5.15555556 C10.5777778,5.15555556 10.4938272,5.15555556 10.4938272,5.24444444 C10.4938272,5.24444444 10.4938272,5.33333333 10.4938272,5.33333333 C10.4938272,5.33333333 10.4938272,5.33333333 10.4098765,5.33333333 C10.3259259,5.33333333 10.3259259,5.33333333 10.2419753,5.33333333 C10.1580247,5.33333333 10.2419753,5.33333333 10.2419753,5.24444444 C10.1580247,5.15555556 10.1580247,5.24444444 10.0740741,5.24444444 C10.0740741,5.24444444 10.0740741,5.24444444 9.99012346,5.15555556 C9.99012346,5.15555556 9.99012346,5.06666667 9.90617284,5.06666667 L9.7382716,5.06666667 L9.65432099,5.06666667 C9.65432099,5.06666667 9.65432099,5.06666667 9.65432099,5.06666667 C9.65432099,5.06666667 9.65432099,5.06666667 9.57037037,5.06666667 C9.57037037,5.06666667 9.57037037,5.06666667 9.57037037,4.97777778 C9.57037037,4.97777778 9.57037037,4.88888889 9.65432099,4.88888889 C9.7382716,4.88888889 9.65432099,4.8 9.65432099,4.8 C9.65432099,4.8 9.65432099,4.71111111 9.65432099,4.71111111 L9.57037037,4.71111111 L9.48641975,4.71111111 L9.2345679,4.71111111 L9.06666667,4.71111111 L8.89876543,4.71111111 C8.89876543,4.71111111 8.81481481,4.71111111 8.81481481,4.71111111 C8.81481481,4.71111111 8.81481481,4.71111111 8.7308642,4.71111111 C8.7308642,4.71111111 8.64691358,4.71111111 8.64691358,4.71111111 C8.56296296,4.71111111 8.64691358,4.71111111 8.64691358,4.71111111 L8.56296296,4.71111111 L8.39506173,4.71111111 C8.39506173,4.71111111 8.31111111,4.71111111 8.31111111,4.71111111 C8.31111111,4.71111111 8.22716049,4.62222222 8.22716049,4.62222222 C8.14320988,4.62222222 8.22716049,4.62222222 8.22716049,4.62222222 L8.22716049,4.71111111 C8.22716049,4.71111111 8.22716049,4.8 8.22716049,4.8 C8.22716049,4.8 8.14320988,4.8 8.14320988,4.88888889 C8.14320988,4.97777778 8.05925926,4.88888889 8.05925926,4.88888889 C8.05925926,4.88888889 7.97530864,4.88888889 7.97530864,4.88888889 C7.97530864,4.97777778 7.89135802,4.97777778 7.89135802,4.97777778 C7.89135802,4.97777778 7.89135802,4.97777778 7.89135802,5.06666667 C7.89135802,5.06666667 7.89135802,5.15555556 7.89135802,5.15555556 L7.89135802,5.33333333 C7.89135802,5.33333333 7.80740741,5.33333333 7.80740741,5.42222222 C7.80740741,5.51111111 7.72345679,5.42222222 7.72345679,5.42222222 C7.72345679,5.42222222 7.63950617,5.42222222 7.63950617,5.51111111 C7.63950617,5.51111111 7.55555556,5.51111111 7.55555556,5.51111111 C7.55555556,5.51111111 7.3037037,5.42222222 7.21975309,5.51111111 C7.13580247,5.51111111 7.13580247,5.6 7.05185185,5.68888889 L6.96790123,5.77777778 C6.96790123,5.77777778 6.96790123,5.86666667 6.88395062,5.86666667 C6.88395062,5.86666667 6.8,5.95555556 6.8,5.95555556 C6.8,5.95555556 6.8,5.95555556 6.8,6.04444444 C6.8,6.13333333 6.8,6.04444444 6.8,6.13333333 C6.8,6.22222222 6.8,6.13333333 6.8,6.13333333 C6.88395062,6.13333333 6.8,6.22222222 6.8,6.22222222 C6.8,6.22222222 6.8,6.22222222 6.8,6.31111111 C6.8,6.4 6.8,6.4 6.8,6.4 C6.8,6.4 6.8,6.4 6.8,6.48888889 L6.71604938,6.57777778 C6.71604938,6.57777778 6.71604938,6.57777778 6.71604938,6.66666667 L6.71604938,6.75555556 C6.71604938,6.75555556 6.71604938,6.75555556 6.71604938,6.84444444 C6.71604938,6.93333333 6.71604938,6.84444444 6.71604938,6.84444444 L6.8,6.93333333 L6.88395062,6.93333333 C6.88395062,6.93333333 6.88395062,7.02222222 6.96790123,7.02222222 C6.96790123,7.02222222 6.96790123,7.11111111 7.05185185,7.11111111 C7.05185185,7.11111111 7.05185185,7.37777778 7.13580247,7.37777778 C7.13580247,7.37777778 7.13580247,7.46666667 7.13580247,7.46666667 L7.13580247,7.55555556 C7.13580247,7.55555556 7.21975309,7.64444444 7.21975309,7.64444444 L7.3037037,7.73333333 L7.38765432,7.82222222 L7.55555556,7.91111111 L7.72345679,8 C7.80740741,8 7.80740741,8 7.80740741,8 L7.89135802,8 L7.97530864,8 C7.97530864,8 8.05925926,8 8.14320988,8 L8.31111111,8 C8.39506173,8 8.31111111,8 8.39506173,8 L8.47901235,8 L8.56296296,8 L8.64691358,8 C8.64691358,8 8.7308642,8 8.7308642,8 C8.7308642,8 8.7308642,8 8.81481481,8 L8.89876543,8 L9.06666667,8 C9.15061728,8 9.15061728,8 9.15061728,8.08888889 C9.2345679,8.17777778 9.15061728,8.08888889 9.15061728,8.17777778 C9.15061728,8.26666667 9.15061728,8.26666667 9.2345679,8.17777778 L9.40246914,8.17777778 C9.40246914,8.17777778 9.48641975,8.17777778 9.48641975,8.17777778 L9.48641975,8.26666667 C9.48641975,8.26666667 9.57037037,8.35555556 9.57037037,8.35555556 C9.57037037,8.35555556 9.57037037,8.44444444 9.57037037,8.44444444 L9.57037037,8.53333333 C9.57037037,8.53333333 9.48641975,8.62222222 9.48641975,8.71111111 C9.48641975,8.8 9.57037037,8.88888889 9.65432099,8.97777778 L9.7382716,8.97777778 C9.7382716,8.97777778 9.7382716,8.97777778 9.82222222,9.06666667 C9.82222222,9.06666667 9.82222222,9.15555556 9.82222222,9.15555556 C9.82222222,9.24444444 9.82222222,9.24444444 9.82222222,9.33333333 C9.82222222,9.42222222 9.90617284,9.42222222 9.90617284,9.42222222 C9.90617284,9.42222222 9.90617284,9.6 9.90617284,9.6 C9.90617284,9.6 9.90617284,9.77777778 9.90617284,9.86666667 C9.82222222,10.0444444 9.7382716,10.1333333 9.7382716,10.3111111 L9.7382716,10.4 C9.7382716,10.5777778 9.82222222,10.7555556 9.90617284,10.9333333 C9.90617284,11.0222222 9.90617284,11.2 9.90617284,11.2888889 C9.90617284,11.3777778 9.99012346,11.4666667 9.99012346,11.5555556 C9.99012346,11.6444444 9.99012346,11.7333333 10.0740741,11.8222222 C10.1580247,11.9111111 10.0740741,12 10.0740741,12.1777778 C10.1580247,12.3555556 10.2419753,12.2666667 10.3259259,12.1777778 C10.4098765,12.0888889 10.4938272,12.1777778 10.4938272,12.1777778 C10.4938272,12.1777778 10.6617284,12.0888889 10.745679,12.0888889 C10.8296296,12.0888889 10.8296296,12 10.9135802,11.9111111 C10.9975309,11.9111111 11.0814815,11.8222222 11.0814815,11.6444444 C11.0814815,11.5555556 11.1654321,11.4666667 11.2493827,11.3777778 C11.3333333,11.2888889 11.3333333,11.2888889 11.3333333,11.2 C11.3333333,11.1111111 11.5012346,11.0222222 11.5012346,11.0222222 C11.5012346,11.0222222 11.5851852,10.9333333 11.5851852,10.8444444 C11.5851852,10.7555556 11.5851852,10.6666667 11.5851852,10.5777778 C11.5012346,10.4888889 11.5851852,10.4888889 11.6691358,10.4888889 L11.7530864,10.4 C11.7530864,10.4 11.837037,10.3111111 11.837037,10.3111111 C11.837037,10.3111111 11.9209877,10.2222222 12.0049383,10.2222222 C12.0888889,10.2222222 12.0888889,10.1333333 12.1728395,10.1333333 C12.1728395,10.0444444 12.1728395,10.0444444 12.1728395,10.0444444 C12.1728395,9.95555556 12.1728395,9.95555556 12.1728395,9.86666667 C12.1728395,9.77777778 12.1728395,9.77777778 12.1728395,9.68888889 L12.1728395,9.6 C12.1728395,9.51111111 12.1728395,9.51111111 12.1728395,9.42222222 C12.1728395,9.33333333 12.1728395,9.33333333 12.1728395,9.24444444 C12.1728395,9.15555556 12.1728395,9.15555556 12.1728395,9.06666667 C12.1728395,8.97777778 12.1728395,9.06666667 12.2567901,8.97777778 C12.2567901,8.88888889 12.2567901,8.88888889 12.2567901,8.88888889 C12.2567901,8.88888889 12.2567901,8.8 12.2567901,8.8 C12.2567901,8.8 12.3407407,8.71111111 12.3407407,8.71111111 L12.4246914,8.62222222 C12.4246914,8.62222222 12.508642,8.53333333 12.508642,8.53333333 C12.508642,8.53333333 12.5925926,8.44444444 12.5925926,8.44444444 C12.5925926,8.44444444 12.6765432,8.44444444 12.6765432,8.44444444 C12.6765432,8.35555556 12.7604938,8.35555556 12.7604938,8.35555556 C12.7604938,8.35555556 12.8444444,8.26666667 12.8444444,8.26666667 C12.8444444,8.17777778 12.9283951,8.08888889 12.9283951,8.08888889 C13.0123457,8 13.0123457,7.73333333 13.0123457,7.73333333 C13.0123457,7.64444444 13.0123457,7.73333333 13.0123457,7.73333333" id="Shape"></path>
|
14
|
-
<path d="M2.09876543,2.66666667 C2.18271605,2.57777778 2.18271605,2.57777778 2.26666667,2.48888889 L2.09876543,2.48888889 L2.01481481,2.57777778 C2.01481481,2.57777778 2.01481481,2.66666667 2.01481481,2.66666667 C2.01481481,2.66666667 1.9308642,2.75555556 1.9308642,2.75555556 C1.9308642,2.75555556 1.84691358,2.84444444 1.84691358,2.84444444 L1.84691358,2.93333333 L1.9308642,2.93333333 L1.9308642,2.84444444 L2.01481481,2.84444444 L2.01481481,2.66666667 L2.09876543,2.66666667" id="Shape"></path>
|
15
|
-
<path d="M3.19012346,2.75555556 C3.19012346,2.75555556 3.27407407,2.75555556 3.27407407,2.75555556 C3.27407407,2.75555556 3.27407407,2.75555556 3.35802469,2.75555556 C3.44197531,2.75555556 3.35802469,2.66666667 3.44197531,2.66666667 C3.52592593,2.57777778 3.52592593,2.57777778 3.44197531,2.57777778 C3.35802469,2.57777778 3.35802469,2.57777778 3.27407407,2.57777778 C3.19012346,2.57777778 3.10617284,2.66666667 3.10617284,2.57777778 C3.10617284,2.48888889 3.19012346,2.48888889 3.19012346,2.48888889 C3.19012346,2.48888889 3.27407407,2.4 3.19012346,2.4 C3.10617284,2.4 3.02222222,2.4 3.02222222,2.4 C3.10617284,2.4 2.9382716,2.4 2.9382716,2.4 L2.9382716,2.31111111 C2.9382716,2.31111111 2.85432099,2.31111111 2.85432099,2.31111111 C2.85432099,2.31111111 2.77037037,2.31111111 2.77037037,2.31111111 C2.77037037,2.31111111 2.77037037,2.22222222 2.77037037,2.22222222 C2.68641975,2.22222222 2.68641975,2.22222222 2.60246914,2.22222222 C2.51851852,2.22222222 2.60246914,2.31111111 2.60246914,2.31111111 C2.60246914,2.31111111 2.68641975,2.31111111 2.68641975,2.31111111 L2.60246914,2.31111111 L2.51851852,2.4 L2.51851852,2.31111111 L2.51851852,2.22222222 L2.4345679,2.31111111 L2.35061728,2.31111111 L2.26666667,2.4 L2.26666667,2.31111111 L2.18271605,2.4 L2.18271605,2.57777778 L2.09876543,2.48888889 C2.09876543,2.48888889 2.09876543,2.4 2.09876543,2.4 L2.01481481,2.31111111 L1.9308642,2.4 L2.01481481,2.48888889 L2.01481481,2.57777778 L2.09876543,2.57777778 L2.01481481,2.66666667 L2.09876543,2.66666667 C2.18271605,2.66666667 2.26666667,2.66666667 2.26666667,2.57777778 L2.4345679,2.48888889 L2.4345679,2.4 C2.4345679,2.4 2.51851852,2.4 2.60246914,2.4 C2.60246914,2.4 2.68641975,2.4 2.68641975,2.48888889 C2.68641975,2.57777778 2.68641975,2.57777778 2.60246914,2.57777778 C2.60246914,2.57777778 2.51851852,2.66666667 2.51851852,2.66666667 C2.51851852,2.66666667 2.51851852,2.66666667 2.51851852,2.75555556 C2.51851852,2.75555556 2.4345679,2.75555556 2.4345679,2.75555556 L2.35061728,2.84444444 C2.35061728,2.84444444 2.26666667,2.93333333 2.35061728,2.93333333 C2.4345679,2.93333333 2.35061728,2.93333333 2.4345679,2.93333333 C2.51851852,2.84444444 2.60246914,2.84444444 2.60246914,2.93333333 C2.60246914,3.02222222 2.68641975,3.02222222 2.77037037,3.02222222 C2.77037037,3.02222222 2.85432099,3.02222222 2.85432099,3.02222222 C2.85432099,3.02222222 2.9382716,3.02222222 2.85432099,2.93333333 C2.77037037,2.84444444 2.85432099,2.93333333 2.85432099,2.93333333 C2.85432099,2.93333333 2.9382716,3.02222222 2.9382716,2.93333333 C2.9382716,2.84444444 3.02222222,2.84444444 2.9382716,2.75555556 C2.85432099,2.66666667 2.85432099,2.66666667 2.85432099,2.66666667 C2.85432099,2.66666667 3.10617284,2.75555556 3.19012346,2.75555556" id="Shape"></path>
|
16
|
-
<path d="M3.44197531,4 L3.35802469,4 C3.35802469,4 3.27407407,4.08888889 3.27407407,4.08888889 C3.27407407,4.17777778 3.27407407,4.17777778 3.19012346,4.17777778 L3.10617284,4.44444444 L3.19012346,4.35555556 C3.27407407,4.35555556 3.27407407,4.26666667 3.35802469,4.26666667 L3.44197531,4.26666667 C3.44197531,4.26666667 3.44197531,4.26666667 3.52592593,4.26666667 C3.52592593,4.26666667 3.52592593,4.26666667 3.52592593,4.17777778 L3.52592593,4 C3.52592593,4 3.44197531,4 3.44197531,4 L3.35802469,4 L3.44197531,4 L3.27407407,4.08888889 C3.35802469,4.08888889 3.52592593,3.91111111 3.44197531,4" id="Shape"></path>
|
17
|
-
<polyline id="Shape" points="1.9308642 2.22222222 1.9308642 2.22222222 1.9308642 2.22222222 2.01481481 2.22222222 2.01481481 2.13333333 1.9308642 2.13333333 1.84691358 2.13333333 1.76296296 2.22222222 1.9308642 2.22222222 1.9308642 2.22222222"></polyline>
|
18
|
-
<path d="M1.9308642,2.48888889 L2.01481481,2.31111111 L1.9308642,2.31111111 C1.9308642,2.4 1.9308642,2.48888889 1.9308642,2.48888889 C1.9308642,2.4 1.9308642,2.31111111 1.9308642,2.31111111 L1.9308642,2.48888889" id="Shape"></path>
|
19
|
-
<path d="M1.67901235,2.84444444 C1.67901235,2.84444444 1.67901235,2.93333333 1.67901235,2.84444444 C1.76296296,2.84444444 1.76296296,2.84444444 1.76296296,2.84444444 L1.84691358,2.75555556 L1.84691358,2.66666667 C1.84691358,2.66666667 1.9308642,2.57777778 1.84691358,2.57777778 C1.84691358,2.57777778 1.76296296,2.66666667 1.76296296,2.66666667 L1.67901235,2.66666667 L1.67901235,2.75555556 C1.67901235,2.75555556 1.59506173,2.84444444 1.67901235,2.84444444" id="Shape"></path>
|
20
|
-
<path d="M6.38024691,0.0888888889 C6.2962963,0.0888888889 6.21234568,0.177777778 6.12839506,0.177777778 L5.96049383,0.266666667 C5.96049383,0.266666667 6.04444444,0.177777778 5.96049383,0.177777778 L5.87654321,0.177777778 L5.70864198,0.177777778 L5.62469136,0.177777778 L5.54074074,0.177777778 L5.45679012,0.177777778 L5.37283951,0.177777778 L5.20493827,0.177777778 L5.12098765,0.177777778 L5.03703704,0.177777778 L4.95308642,0.177777778 L4.95308642,0.266666667 L5.03703704,0.266666667 L5.03703704,0.355555556 L4.78518519,0.355555556 L4.70123457,0.355555556 L4.70123457,0.444444444 L4.61728395,0.444444444 C4.61728395,0.444444444 4.70123457,0.444444444 4.53333333,0.444444444 L4.28148148,0.533333333 C4.11358025,0.622222222 4.02962963,0.888888889 4.11358025,1.06666667 L4.02962963,1.15555556 C4.02962963,1.15555556 3.69382716,1.42222222 3.77777778,1.33333333 C3.8617284,1.33333333 3.8617284,1.33333333 3.77777778,1.42222222 C3.69382716,1.51111111 3.60987654,1.6 3.52592593,1.6 C3.44197531,1.6 3.35802469,1.77777778 3.44197531,1.68888889 L3.69382716,1.6 C3.69382716,1.6 3.44197531,1.77777778 3.52592593,1.77777778 C3.60987654,1.77777778 3.60987654,1.77777778 3.69382716,1.77777778 C3.77777778,1.77777778 3.77777778,1.68888889 3.8617284,1.68888889 C3.94567901,1.68888889 3.94567901,1.68888889 4.02962963,1.77777778 C4.02962963,1.86666667 4.11358025,1.86666667 4.02962963,1.95555556 C4.02962963,1.95555556 3.94567901,2.04444444 3.94567901,2.04444444 C3.94567901,2.04444444 3.94567901,2.13333333 4.02962963,2.04444444 C4.11358025,1.95555556 4.19753086,1.95555556 4.19753086,1.95555556 C4.19753086,1.95555556 4.19753086,2.04444444 4.28148148,2.04444444 C4.28148148,2.04444444 4.19753086,2.04444444 4.11358025,2.04444444 C4.11358025,2.04444444 4.02962963,2.13333333 4.11358025,2.13333333 C4.19753086,2.13333333 4.19753086,2.13333333 4.28148148,2.13333333 C4.28148148,2.13333333 4.28148148,2.22222222 4.28148148,2.22222222 L4.11358025,2.31111111 C4.02962963,2.31111111 3.94567901,2.4 3.94567901,2.48888889 C3.94567901,2.57777778 3.94567901,2.57777778 4.02962963,2.66666667 C4.11358025,2.75555556 4.02962963,2.84444444 4.11358025,2.84444444 C4.11358025,2.84444444 4.19753086,2.93333333 4.19753086,2.84444444 C4.19753086,2.84444444 4.28148148,2.84444444 4.28148148,2.84444444 C4.28148148,2.84444444 4.28148148,2.84444444 4.3654321,2.84444444 C4.44938272,2.84444444 4.44938272,2.84444444 4.44938272,2.84444444 L4.53333333,2.75555556 C4.53333333,2.66666667 4.61728395,2.57777778 4.61728395,2.57777778 C4.61728395,2.57777778 4.61728395,2.48888889 4.61728395,2.48888889 C4.61728395,2.48888889 4.61728395,2.48888889 4.70123457,2.4 C4.78518519,2.31111111 4.8691358,2.31111111 4.8691358,2.22222222 C4.8691358,2.22222222 4.8691358,2.13333333 4.8691358,2.13333333 C4.8691358,2.13333333 4.8691358,2.04444444 4.95308642,2.04444444 C5.03703704,2.04444444 4.95308642,2.04444444 5.12098765,1.95555556 C5.20493827,1.86666667 5.20493827,1.86666667 5.28888889,1.77777778 C5.37283951,1.68888889 5.28888889,1.68888889 5.37283951,1.68888889 L5.54074074,1.6 C5.62469136,1.51111111 5.70864198,1.51111111 5.70864198,1.51111111 C5.70864198,1.51111111 5.87654321,1.42222222 6.04444444,1.33333333 L6.12839506,1.24444444 L5.87654321,1.33333333 C5.79259259,1.33333333 5.87654321,1.24444444 5.87654321,1.24444444 C5.87654321,1.24444444 5.96049383,1.15555556 5.96049383,1.24444444 C5.96049383,1.33333333 5.96049383,1.33333333 6.04444444,1.24444444 C6.12839506,1.15555556 6.12839506,1.15555556 6.12839506,1.15555556 L6.04444444,1.06666667 C6.04444444,1.06666667 6.04444444,1.06666667 5.96049383,1.06666667 C5.87654321,1.06666667 5.87654321,1.06666667 5.87654321,1.06666667 L6.04444444,0.977777778 L6.12839506,0.888888889 L6.21234568,0.888888889 C6.21234568,0.888888889 6.21234568,0.888888889 6.12839506,0.888888889 C6.12839506,0.888888889 6.21234568,0.888888889 6.21234568,0.8 C6.2962963,0.711111111 6.2962963,0.711111111 6.21234568,0.711111111 C6.12839506,0.711111111 6.21234568,0.622222222 6.21234568,0.622222222 C6.21234568,0.622222222 6.21234568,0.533333333 6.12839506,0.622222222 C6.04444444,0.711111111 5.96049383,0.622222222 6.04444444,0.622222222 C6.12839506,0.622222222 6.21234568,0.533333333 6.21234568,0.533333333 L6.12839506,0.533333333 C6.12839506,0.533333333 6.12839506,0.533333333 6.2962963,0.444444444 C6.46419753,0.355555556 6.46419753,0.266666667 6.46419753,0.266666667 L6.54814815,0.177777778 C6.63209877,0.177777778 6.63209877,0.0888888889 6.63209877,0 C6.54814815,0.0888888889 6.54814815,0.0888888889 6.38024691,0.0888888889" id="Shape"></path>
|
21
|
-
<path d="M6.2962963,1.33333333 C6.21234568,1.33333333 6.21234568,1.33333333 6.21234568,1.33333333 C6.21234568,1.33333333 6.12839506,1.33333333 6.12839506,1.42222222 C6.12839506,1.42222222 6.04444444,1.51111111 6.04444444,1.51111111 C6.04444444,1.51111111 6.04444444,1.51111111 5.96049383,1.51111111 C5.87654321,1.51111111 5.79259259,1.6 5.79259259,1.68888889 C5.79259259,1.68888889 5.87654321,1.68888889 5.96049383,1.6 C6.04444444,1.51111111 5.96049383,1.6 5.96049383,1.6 L5.87654321,1.68888889 L5.96049383,1.68888889 L5.87654321,1.77777778 C5.87654321,1.77777778 5.96049383,1.77777778 5.96049383,1.77777778 C6.04444444,1.77777778 6.04444444,1.77777778 6.12839506,1.77777778 C6.12839506,1.77777778 6.21234568,1.77777778 6.21234568,1.68888889 C6.2962963,1.6 6.2962963,1.51111111 6.38024691,1.51111111 C6.46419753,1.51111111 6.46419753,1.42222222 6.46419753,1.33333333 C6.54814815,1.33333333 6.38024691,1.33333333 6.2962963,1.33333333" id="Shape"></path>
|
22
|
-
<path d="M2.01481481,2.48888889 C2.09876543,2.48888889 2.09876543,2.48888889 2.18271605,2.48888889 C2.18271605,2.48888889 2.18271605,2.4 2.18271605,2.4 L2.01481481,2.48888889" id="Shape"></path>
|
23
|
-
<path d="M2.35061728,6.93333333 C2.26666667,6.93333333 2.18271605,6.84444444 2.09876543,6.84444444 C1.9308642,6.84444444 1.9308642,6.84444444 1.9308642,6.84444444 C1.9308642,6.84444444 1.9308642,6.84444444 1.84691358,6.84444444 C1.76296296,6.84444444 1.76296296,6.93333333 1.76296296,6.93333333 C1.76296296,6.93333333 1.84691358,6.84444444 1.84691358,6.84444444 C1.84691358,6.84444444 1.84691358,6.84444444 1.9308642,6.84444444 C1.9308642,6.84444444 2.01481481,6.84444444 2.01481481,6.84444444 L2.09876543,6.84444444 C2.09876543,6.84444444 2.09876543,6.84444444 2.09876543,6.93333333 C2.09876543,7.02222222 2.18271605,6.93333333 2.18271605,6.93333333 C2.18271605,6.93333333 2.26666667,6.93333333 2.35061728,6.93333333" id="Shape"></path>
|
24
|
-
<path d="M6.04444444,8.53333333 C5.96049383,8.44444444 6.04444444,8.44444444 5.96049383,8.44444444 C5.87654321,8.44444444 5.87654321,8.44444444 5.79259259,8.44444444 C5.70864198,8.44444444 5.62469136,8.35555556 5.62469136,8.35555556 C5.54074074,8.35555556 5.54074074,8.26666667 5.45679012,8.26666667 L5.37283951,8.26666667 C5.28888889,8.26666667 5.28888889,8.26666667 5.28888889,8.26666667 C5.28888889,8.26666667 5.20493827,8.17777778 5.12098765,8.26666667 C5.12098765,8.26666667 5.12098765,8.17777778 5.12098765,8.17777778 C5.12098765,8.17777778 5.12098765,8.17777778 5.03703704,8.08888889 L4.8691358,8.08888889 C4.8691358,8.08888889 4.78518519,8.08888889 4.78518519,8.08888889 C4.78518519,8.08888889 4.78518519,8.08888889 4.78518519,8 C4.78518519,8 4.70123457,8 4.70123457,8 L4.53333333,8 C4.53333333,8 4.44938272,8 4.53333333,7.91111111 C4.61728395,7.82222222 4.61728395,7.91111111 4.53333333,7.82222222 C4.44938272,7.73333333 4.53333333,7.82222222 4.44938272,7.82222222 C4.3654321,7.82222222 4.3654321,7.82222222 4.3654321,7.73333333 L4.28148148,7.64444444 C4.19753086,7.64444444 4.11358025,7.55555556 4.11358025,7.55555556 L3.94567901,7.55555556 L3.8617284,7.55555556 C3.8617284,7.55555556 3.77777778,7.46666667 3.77777778,7.55555556 C3.77777778,7.64444444 3.69382716,7.46666667 3.60987654,7.46666667 C3.60987654,7.46666667 3.52592593,7.46666667 3.52592593,7.46666667 C3.52592593,7.46666667 3.60987654,7.37777778 3.52592593,7.37777778 C3.44197531,7.37777778 3.52592593,7.37777778 3.44197531,7.37777778 C3.35802469,7.37777778 3.35802469,7.37777778 3.35802469,7.37777778 C3.44197531,7.37777778 3.35802469,7.37777778 3.35802469,7.37777778 L3.19012346,7.37777778 C3.19012346,7.37777778 3.19012346,7.37777778 3.19012346,7.37777778 C3.19012346,7.37777778 3.10617284,7.37777778 3.10617284,7.37777778 C3.02222222,7.37777778 3.10617284,7.37777778 3.02222222,7.37777778 L2.9382716,7.37777778 C2.9382716,7.37777778 2.85432099,7.46666667 2.85432099,7.46666667 C2.85432099,7.46666667 2.9382716,7.55555556 2.9382716,7.55555556 C2.9382716,7.55555556 2.85432099,7.55555556 2.85432099,7.55555556 C2.85432099,7.55555556 2.85432099,7.46666667 2.85432099,7.46666667 C2.85432099,7.46666667 2.85432099,7.46666667 2.77037037,7.55555556 C2.68641975,7.55555556 2.77037037,7.55555556 2.68641975,7.64444444 C2.60246914,7.64444444 2.68641975,7.64444444 2.68641975,7.64444444 C2.68641975,7.64444444 2.68641975,7.55555556 2.68641975,7.64444444 C2.68641975,7.73333333 2.60246914,7.64444444 2.60246914,7.73333333 L2.60246914,7.82222222 C2.60246914,7.82222222 2.51851852,7.82222222 2.51851852,7.91111111 C2.51851852,7.91111111 2.51851852,8 2.51851852,8 C2.51851852,8 2.51851852,7.91111111 2.51851852,7.91111111 C2.51851852,7.91111111 2.4345679,7.91111111 2.4345679,7.91111111 C2.4345679,7.91111111 2.4345679,8 2.35061728,8 C2.35061728,8 2.35061728,8 2.26666667,8 C2.18271605,8 2.18271605,8 2.18271605,7.91111111 L2.09876543,7.91111111 L1.84691358,7.91111111 L1.76296296,7.91111111 C1.76296296,7.91111111 1.76296296,8 1.84691358,8 C1.9308642,8 1.9308642,8 1.9308642,8 C1.9308642,8 2.01481481,8 2.01481481,8 C2.01481481,8 2.09876543,8 2.09876543,8 C2.09876543,8 2.18271605,8 2.18271605,8 C2.18271605,8 2.18271605,8 2.18271605,7.91111111 C2.18271605,7.82222222 2.26666667,7.91111111 2.26666667,7.91111111 C2.26666667,7.91111111 2.26666667,8 2.26666667,8 C2.26666667,8 2.26666667,8 2.35061728,8.08888889 C2.4345679,8.08888889 2.4345679,8.26666667 2.4345679,8.35555556 C2.4345679,8.35555556 2.4345679,8.44444444 2.4345679,8.44444444 C2.4345679,8.44444444 2.35061728,8.44444444 2.4345679,8.53333333 C2.51851852,8.62222222 2.4345679,8.53333333 2.4345679,8.53333333 C2.4345679,8.53333333 2.4345679,8.62222222 2.4345679,8.62222222 C2.4345679,8.62222222 2.35061728,8.62222222 2.4345679,8.71111111 C2.51851852,8.8 2.4345679,8.8 2.4345679,8.8 C2.4345679,8.8 2.4345679,8.8 2.4345679,8.88888889 C2.4345679,8.97777778 2.4345679,8.97777778 2.51851852,8.97777778 C2.60246914,8.97777778 2.51851852,8.97777778 2.51851852,9.06666667 C2.51851852,9.15555556 2.51851852,9.06666667 2.51851852,9.06666667 C2.51851852,9.06666667 2.51851852,9.15555556 2.51851852,9.24444444 C2.51851852,9.33333333 2.51851852,9.33333333 2.51851852,9.33333333 C2.60246914,9.33333333 2.60246914,9.33333333 2.68641975,9.42222222 C2.77037037,9.51111111 2.77037037,9.51111111 2.85432099,9.6 C2.85432099,9.68888889 2.9382716,9.68888889 3.02222222,9.77777778 L3.10617284,9.86666667 C3.10617284,9.95555556 3.19012346,9.95555556 3.19012346,9.95555556 L3.35802469,10.0444444 C3.44197531,10.0444444 3.44197531,10.0444444 3.52592593,10.0444444 C3.60987654,10.0444444 3.60987654,10.1333333 3.60987654,10.1333333 C3.69382716,10.3111111 3.77777778,10.4888889 3.77777778,10.5777778 C3.77777778,10.6666667 3.94567901,11.1111111 3.94567901,11.1111111 C3.94567901,11.1111111 4.02962963,11.2888889 4.02962963,11.2888889 C4.02962963,11.2888889 4.02962963,11.3777778 4.11358025,11.3777778 C4.11358025,11.3777778 4.11358025,11.4666667 4.19753086,11.4666667 L4.28148148,11.7333333 L4.3654321,12 C4.3654321,12 4.28148148,12 4.3654321,12.0888889 C4.44938272,12.1777778 4.53333333,12.1777778 4.53333333,12.2666667 C4.53333333,12.3555556 4.53333333,12.3555556 4.53333333,12.4444444 C4.53333333,12.5333333 4.61728395,12.5333333 4.61728395,12.5333333 C4.61728395,12.5333333 4.61728395,12.6222222 4.61728395,12.6222222 C4.70123457,12.7111111 4.70123457,12.7111111 4.70123457,12.7111111 C4.70123457,12.7111111 4.70123457,12.6222222 4.61728395,12.5333333 C4.53333333,12.4444444 4.61728395,12.4444444 4.61728395,12.4444444 C4.61728395,12.4444444 4.70123457,12.5333333 4.70123457,12.5333333 L4.78518519,12.7111111 C4.78518519,12.7111111 4.78518519,12.8 4.78518519,12.8 L4.78518519,12.8888889 C4.78518519,12.8888889 4.78518519,12.8888889 4.78518519,12.8888889 C4.78518519,12.8888889 4.78518519,12.9777778 4.78518519,12.9777778 L4.8691358,12.9777778 C4.8691358,12.9777778 4.95308642,12.9777778 4.95308642,12.9777778 C4.95308642,12.9777778 4.95308642,13.0666667 4.95308642,13.0666667 C4.95308642,13.0666667 4.95308642,13.1555556 4.95308642,13.1555556 C4.95308642,13.1555556 5.03703704,13.2444444 5.03703704,13.2444444 C5.03703704,13.2444444 5.12098765,13.3333333 5.12098765,13.3333333 C5.12098765,13.3333333 5.20493827,13.4222222 5.20493827,13.4222222 C5.20493827,13.4222222 5.28888889,13.4222222 5.28888889,13.4222222 L5.37283951,13.4222222 C5.37283951,13.4222222 5.45679012,13.5111111 5.45679012,13.5111111 C5.45679012,13.5111111 5.54074074,13.5111111 5.54074074,13.5111111 L5.62469136,13.5111111 L5.70864198,13.5111111 L5.79259259,13.5111111 L5.87654321,13.5111111 L5.96049383,13.4222222 C5.87654321,13.5111111 5.70864198,13.5111111 5.62469136,13.4222222 C5.45679012,13.3333333 5.54074074,13.3333333 5.45679012,13.2444444 C5.37283951,13.1555556 5.28888889,13.1555556 5.37283951,13.1555556 C5.45679012,13.1555556 5.45679012,13.1555556 5.37283951,13.0666667 C5.28888889,12.9777778 5.37283951,12.9777778 5.37283951,12.9777778 C5.37283951,12.9777778 5.45679012,12.9777778 5.37283951,12.8888889 C5.28888889,12.8 5.28888889,12.8 5.28888889,12.8 C5.20493827,12.8 5.20493827,12.8 5.20493827,12.7111111 C5.20493827,12.6222222 5.12098765,12.6222222 5.20493827,12.5333333 C5.20493827,12.5333333 5.20493827,12.4444444 5.20493827,12.4444444 C5.20493827,12.4444444 5.12098765,12.4444444 5.20493827,12.3555556 C5.28888889,12.2666667 5.28888889,12.2666667 5.20493827,12.2666667 C5.12098765,12.2666667 5.03703704,12.2666667 5.03703704,12.2666667 C5.03703704,12.2666667 4.8691358,12.1777778 4.95308642,12.1777778 C5.03703704,12.1777778 5.12098765,12.1777778 5.12098765,12.1777778 C5.12098765,12.1777778 5.12098765,12.0888889 5.12098765,12.0888889 C5.12098765,12.0888889 4.95308642,12 5.03703704,12 C5.03703704,12 5.28888889,12 5.28888889,11.9111111 C5.28888889,11.8222222 5.28888889,11.8222222 5.28888889,11.7333333 C5.28888889,11.6444444 5.28888889,11.7333333 5.20493827,11.6444444 C5.12098765,11.5555556 5.28888889,11.5555556 5.20493827,11.5555556 C5.12098765,11.5555556 5.03703704,11.5555556 5.03703704,11.4666667 C5.03703704,11.3777778 5.03703704,11.4666667 5.03703704,11.4666667 L5.12098765,11.4666667 C5.20493827,11.4666667 5.20493827,11.5555556 5.28888889,11.4666667 C5.37283951,11.3777778 5.37283951,11.4666667 5.45679012,11.3777778 L5.70864198,11.3777778 C5.70864198,11.2888889 5.70864198,11.2 5.70864198,11.1111111 C5.70864198,11.0222222 5.70864198,11.0222222 5.70864198,10.9333333 C5.70864198,10.9333333 5.70864198,11.0222222 5.70864198,11.0222222 C5.70864198,11.1111111 5.70864198,11.0222222 5.70864198,10.9333333 C5.70864198,10.8444444 5.70864198,10.8444444 5.70864198,10.7555556 C5.70864198,10.6666667 5.79259259,10.6666667 5.70864198,10.6666667 C5.62469136,10.5777778 5.54074074,10.5777778 5.62469136,10.4888889 C5.62469136,10.4 5.70864198,10.3111111 5.70864198,10.3111111 C5.70864198,10.3111111 5.79259259,10.1333333 5.87654321,10.2222222 C5.96049383,10.2222222 6.04444444,10.2222222 6.04444444,10.2222222 C6.04444444,10.2222222 5.96049383,10.1333333 6.04444444,10.1333333 C6.12839506,10.1333333 6.12839506,10.1333333 6.12839506,10.1333333 L6.12839506,10.0444444 C6.12839506,10.0444444 6.12839506,9.95555556 6.12839506,9.95555556 L6.12839506,9.86666667 C6.12839506,9.77777778 6.12839506,9.86666667 6.12839506,9.77777778 C6.12839506,9.68888889 6.04444444,9.42222222 5.96049383,9.33333333 C5.96049383,9.24444444 5.96049383,9.33333333 6.04444444,9.33333333 C6.12839506,9.33333333 6.04444444,9.33333333 6.04444444,9.24444444 C6.04444444,9.15555556 6.04444444,9.15555556 6.04444444,9.15555556 C6.04444444,9.15555556 6.04444444,9.06666667 6.12839506,9.06666667 C6.21234568,8.97777778 6.21234568,8.97777778 6.21234568,8.88888889 C6.21234568,8.8 6.12839506,8.71111111 6.12839506,8.71111111" id="Shape"></path>
|
25
|
-
<path d="M12.8444444,9.15555556 C12.7604938,9.06666667 12.7604938,9.15555556 12.8444444,9.15555556 C12.7604938,9.15555556 12.7604938,9.24444444 12.7604938,9.24444444 C12.7604938,9.24444444 12.7604938,9.24444444 12.6765432,9.33333333 C12.5925926,9.42222222 12.5925926,9.42222222 12.5925926,9.42222222 C12.5925926,9.51111111 12.508642,9.42222222 12.4246914,9.51111111 C12.3407407,9.6 12.3407407,9.6 12.3407407,9.6 C12.3407407,9.68888889 12.3407407,9.68888889 12.3407407,9.68888889 C12.3407407,9.77777778 12.3407407,9.77777778 12.3407407,9.86666667 C12.3407407,9.95555556 12.3407407,9.86666667 12.2567901,9.95555556 C12.1728395,10.0444444 12.1728395,10.0444444 12.1728395,10.0444444 C12.1728395,10.1333333 12.1728395,10.1333333 12.1728395,10.1333333 C12.1728395,10.1333333 12.1728395,10.2222222 12.1728395,10.2222222 C12.1728395,10.3111111 12.1728395,10.2222222 12.2567901,10.3111111 C12.3407407,10.4 12.3407407,10.3111111 12.4246914,10.3111111 C12.4246914,10.3111111 12.508642,10.2222222 12.508642,10.2222222 L12.7604938,9.51111111 C12.7604938,9.42222222 12.7604938,9.42222222 12.7604938,9.42222222 C12.7604938,9.42222222 12.7604938,9.42222222 12.7604938,9.42222222 C12.7604938,9.42222222 12.7604938,9.42222222 12.7604938,9.33333333 C12.7604938,9.24444444 12.8444444,9.33333333 12.8444444,9.33333333 C12.8444444,9.33333333 12.8444444,9.24444444 12.8444444,9.15555556 C12.8444444,9.24444444 12.8444444,9.24444444 12.8444444,9.15555556" id="Shape"></path>
|
26
|
-
<path d="M1.25925926,2.75555556 C1.25925926,2.75555556 1.34320988,2.75555556 1.25925926,2.75555556 C1.17530864,2.75555556 1.17530864,2.75555556 1.25925926,2.75555556 L1.34320988,2.75555556 C1.34320988,2.75555556 1.42716049,2.75555556 1.42716049,2.75555556 L1.59506173,2.66666667 L1.67901235,2.57777778 L1.59506173,2.57777778 C1.59506173,2.57777778 1.59506173,2.48888889 1.59506173,2.57777778 C1.59506173,2.66666667 1.51111111,2.66666667 1.51111111,2.66666667 C1.51111111,2.66666667 1.42716049,2.66666667 1.42716049,2.66666667 L1.51111111,2.66666667 L1.34320988,2.66666667 C1.34320988,2.66666667 1.25925926,2.66666667 1.25925926,2.66666667 C1.25925926,2.57777778 1.25925926,2.57777778 1.25925926,2.57777778 C1.25925926,2.57777778 1.25925926,2.57777778 1.25925926,2.57777778 L1.17530864,2.66666667 L1.25925926,2.75555556 L1.17530864,2.75555556 C1.17530864,2.75555556 1.17530864,2.75555556 1.25925926,2.75555556 L1.17530864,2.75555556 C1.17530864,2.75555556 1.17530864,2.75555556 1.25925926,2.75555556" id="Shape"></path>
|
27
|
-
<polyline id="Shape" points="14.2716049 5.95555556 14.2716049 5.95555556 14.2716049 6.04444444 14.2716049 5.95555556"></polyline>
|
28
|
-
<path d="M1.76296296,7.82222222 C1.84691358,7.82222222 1.84691358,7.82222222 1.84691358,7.82222222 C1.84691358,7.82222222 1.84691358,7.73333333 1.84691358,7.73333333 C1.84691358,7.73333333 1.84691358,7.64444444 1.84691358,7.64444444 C1.84691358,7.64444444 1.84691358,7.64444444 1.84691358,7.55555556 C1.84691358,7.55555556 1.84691358,7.55555556 1.84691358,7.46666667 C1.84691358,7.46666667 1.84691358,7.46666667 1.76296296,7.46666667 C1.67901235,7.46666667 1.67901235,7.55555556 1.67901235,7.55555556 C1.67901235,7.55555556 1.67901235,7.55555556 1.67901235,7.55555556 C1.67901235,7.46666667 1.67901235,7.55555556 1.67901235,7.46666667 C1.67901235,7.37777778 1.67901235,7.46666667 1.67901235,7.37777778 C1.67901235,7.37777778 1.67901235,7.37777778 1.67901235,7.28888889 C1.67901235,7.28888889 1.67901235,7.2 1.67901235,7.2 C1.67901235,7.2 1.67901235,7.11111111 1.67901235,7.11111111 C1.67901235,7.11111111 1.42716049,7.2 1.42716049,7.2 C1.42716049,7.2 1.42716049,7.28888889 1.42716049,7.28888889 C1.42716049,7.28888889 1.42716049,7.37777778 1.42716049,7.37777778 C1.42716049,7.37777778 1.42716049,7.37777778 1.42716049,7.37777778 C1.42716049,7.37777778 1.34320988,7.37777778 1.34320988,7.46666667 C1.34320988,7.55555556 1.34320988,7.46666667 1.25925926,7.46666667 C1.17530864,7.46666667 1.25925926,7.46666667 1.17530864,7.46666667 C1.09135802,7.46666667 1.09135802,7.46666667 1.09135802,7.37777778 C1.09135802,7.28888889 1.09135802,7.2 1.09135802,7.11111111 C1.09135802,7.02222222 1.09135802,7.02222222 1.09135802,7.02222222 C1.09135802,7.02222222 1.09135802,6.93333333 1.09135802,6.93333333 C1.09135802,6.93333333 1.09135802,6.84444444 1.09135802,6.84444444 C1.09135802,6.84444444 1.09135802,6.84444444 1.17530864,6.75555556 C1.25925926,6.66666667 1.17530864,6.75555556 1.25925926,6.66666667 L1.34320988,6.66666667 C1.34320988,6.66666667 1.34320988,6.66666667 1.42716049,6.66666667 C1.51111111,6.66666667 1.51111111,6.66666667 1.51111111,6.66666667 C1.51111111,6.66666667 1.51111111,6.66666667 1.51111111,6.57777778 C1.51111111,6.57777778 1.51111111,6.57777778 1.59506173,6.57777778 C1.67901235,6.57777778 1.67901235,6.48888889 1.76296296,6.57777778 C1.84691358,6.66666667 1.84691358,6.66666667 1.84691358,6.57777778 C1.84691358,6.48888889 1.84691358,6.48888889 1.84691358,6.57777778 C1.84691358,6.66666667 1.9308642,6.57777778 1.9308642,6.66666667 C1.9308642,6.75555556 1.9308642,6.66666667 1.9308642,6.75555556 C1.9308642,6.84444444 1.9308642,6.84444444 2.01481481,6.84444444 C2.01481481,6.84444444 2.09876543,6.93333333 2.09876543,6.84444444 C2.09876543,6.75555556 2.09876543,6.84444444 2.09876543,6.75555556 C2.09876543,6.66666667 2.09876543,6.66666667 2.01481481,6.57777778 C2.01481481,6.48888889 2.01481481,6.48888889 2.01481481,6.4 C2.01481481,6.31111111 2.09876543,6.31111111 2.09876543,6.22222222 C2.18271605,6.22222222 2.18271605,6.22222222 2.18271605,6.13333333 C2.18271605,6.04444444 2.18271605,6.04444444 2.18271605,6.04444444 C2.18271605,6.04444444 2.18271605,6.04444444 2.18271605,6.04444444 C2.18271605,6.04444444 2.26666667,6.04444444 2.18271605,5.95555556 L2.18271605,5.86666667 C2.18271605,5.86666667 2.18271605,5.77777778 2.18271605,5.86666667 C2.18271605,6.04444444 2.18271605,6.04444444 2.26666667,5.95555556 C2.35061728,5.86666667 2.26666667,5.86666667 2.26666667,5.86666667 C2.26666667,5.86666667 2.35061728,5.77777778 2.35061728,5.68888889 C2.35061728,5.6 2.35061728,5.68888889 2.4345679,5.6 C2.51851852,5.51111111 2.51851852,5.51111111 2.51851852,5.51111111 L2.60246914,5.51111111 C2.60246914,5.51111111 2.60246914,5.51111111 2.60246914,5.42222222 C2.60246914,5.33333333 2.60246914,5.33333333 2.68641975,5.24444444 C2.77037037,5.24444444 2.68641975,5.15555556 2.77037037,5.15555556 C2.77037037,5.15555556 2.77037037,5.15555556 2.77037037,5.15555556 L2.85432099,5.06666667 C2.85432099,5.06666667 2.77037037,5.15555556 2.77037037,5.15555556 C2.77037037,5.24444444 2.77037037,5.24444444 2.85432099,5.24444444 C2.9382716,5.15555556 2.85432099,5.15555556 2.9382716,5.15555556 C3.02222222,5.15555556 3.02222222,5.06666667 3.02222222,5.06666667 C3.10617284,4.88888889 3.19012346,4.71111111 3.19012346,4.53333333 C3.19012346,4.53333333 3.27407407,4.44444444 3.27407407,4.44444444 C3.27407407,4.44444444 3.27407407,4.35555556 3.27407407,4.44444444 C3.27407407,4.53333333 3.27407407,4.35555556 3.27407407,4.35555556 C3.27407407,4.35555556 3.19012346,4.35555556 3.19012346,4.35555556 C3.19012346,4.35555556 3.19012346,4.35555556 3.19012346,4.44444444 C3.19012346,4.44444444 3.10617284,4.44444444 3.10617284,4.44444444 L3.02222222,4.44444444 C3.02222222,4.44444444 3.02222222,4.35555556 3.02222222,4.35555556 C3.02222222,4.35555556 3.02222222,4.35555556 3.02222222,4.26666667 C3.02222222,4.26666667 3.10617284,4.17777778 3.02222222,4.17777778 C2.9382716,4.17777778 2.9382716,4.17777778 2.85432099,4.26666667 C2.77037037,4.35555556 2.77037037,4.35555556 2.77037037,4.35555556 C2.77037037,4.35555556 2.68641975,4.44444444 2.68641975,4.44444444 L2.68641975,4.53333333 L2.77037037,4.44444444 C2.77037037,4.44444444 2.77037037,4.35555556 2.85432099,4.35555556 L2.85432099,4.26666667 L2.9382716,4.26666667 C2.9382716,4.26666667 2.9382716,4.17777778 2.9382716,4.17777778 L3.10617284,4.08888889 L3.27407407,4 L3.35802469,4 C3.35802469,4 3.35802469,4 3.44197531,3.91111111 C3.44197531,3.82222222 3.52592593,3.82222222 3.52592593,3.82222222 C3.60987654,3.73333333 3.69382716,3.73333333 3.69382716,3.73333333 C3.69382716,3.73333333 3.69382716,3.64444444 3.69382716,3.64444444 C3.69382716,3.64444444 3.60987654,3.64444444 3.60987654,3.64444444 C3.60987654,3.64444444 3.60987654,3.64444444 3.52592593,3.64444444 C3.44197531,3.64444444 3.44197531,3.73333333 3.44197531,3.73333333 C3.44197531,3.73333333 3.35802469,3.73333333 3.44197531,3.73333333 L3.52592593,3.64444444 L3.60987654,3.55555556 C3.60987654,3.55555556 3.60987654,3.55555556 3.52592593,3.55555556 C3.44197531,3.55555556 3.44197531,3.55555556 3.44197531,3.46666667 C3.44197531,3.37777778 3.44197531,3.46666667 3.44197531,3.37777778 C3.44197531,3.28888889 3.44197531,3.2 3.35802469,3.11111111 C3.35802469,3.11111111 3.27407407,3.2 3.27407407,3.2 C3.19012346,3.28888889 3.19012346,3.28888889 3.19012346,3.28888889 C3.19012346,3.28888889 3.19012346,3.37777778 3.19012346,3.28888889 C3.19012346,3.2 3.19012346,3.28888889 3.19012346,3.28888889 C3.19012346,3.28888889 3.10617284,3.28888889 3.19012346,3.2 C3.27407407,3.11111111 3.27407407,3.11111111 3.19012346,3.11111111 C3.10617284,3.11111111 3.19012346,3.11111111 3.10617284,3.11111111 C3.02222222,3.11111111 3.10617284,3.11111111 3.02222222,3.11111111 C2.9382716,3.11111111 2.9382716,3.11111111 2.9382716,3.11111111 C2.9382716,3.11111111 2.85432099,3.2 2.85432099,3.2 C2.85432099,3.2 2.77037037,3.2 2.77037037,3.28888889 C2.77037037,3.37777778 2.77037037,3.37777778 2.77037037,3.37777778 C2.77037037,3.37777778 2.77037037,3.46666667 2.77037037,3.46666667 C2.77037037,3.46666667 2.68641975,3.55555556 2.68641975,3.64444444 C2.77037037,3.64444444 2.77037037,3.64444444 2.77037037,3.73333333 C2.77037037,3.82222222 2.77037037,3.91111111 2.51851852,4 C2.51851852,4.08888889 2.51851852,4.08888889 2.51851852,4.17777778 C2.51851852,4.17777778 2.51851852,4.26666667 2.51851852,4.26666667 C2.51851852,4.26666667 2.51851852,4.35555556 2.4345679,4.35555556 C2.35061728,4.35555556 2.4345679,4.35555556 2.35061728,4.35555556 C2.26666667,4.35555556 2.35061728,4.35555556 2.35061728,4.26666667 C2.35061728,4.17777778 2.35061728,4.26666667 2.35061728,4.17777778 C2.35061728,4.08888889 2.35061728,4.17777778 2.35061728,4.08888889 C2.35061728,4 2.35061728,4 2.35061728,4 L2.18271605,4.08888889 C2.18271605,4.08888889 2.09876543,4.08888889 2.09876543,4.08888889 C2.01481481,4.08888889 2.01481481,4 1.9308642,4.08888889 L1.84691358,4.17777778 C1.84691358,4.17777778 1.84691358,4.08888889 1.84691358,4.08888889 C1.84691358,4 1.76296296,4.08888889 1.76296296,4.08888889 C1.76296296,4.08888889 1.84691358,3.73333333 2.01481481,3.64444444 C2.01481481,3.64444444 2.09876543,3.55555556 2.01481481,3.55555556 C1.9308642,3.55555556 2.01481481,3.55555556 2.09876543,3.46666667 C2.18271605,3.37777778 2.09876543,3.46666667 2.18271605,3.46666667 C2.26666667,3.46666667 2.18271605,3.46666667 2.26666667,3.46666667 C2.35061728,3.46666667 2.35061728,3.37777778 2.35061728,3.37777778 C2.35061728,3.37777778 2.26666667,3.37777778 2.26666667,3.37777778 L2.18271605,3.37777778 L2.26666667,3.37777778 L2.35061728,3.37777778 C2.35061728,3.37777778 2.35061728,3.28888889 2.35061728,3.28888889 C2.35061728,3.28888889 2.35061728,3.28888889 2.4345679,3.28888889 C2.51851852,3.28888889 2.4345679,3.28888889 2.51851852,3.28888889 C2.60246914,3.28888889 2.51851852,3.28888889 2.60246914,3.2 C2.68641975,3.11111111 2.68641975,3.11111111 2.68641975,3.11111111 C2.68641975,3.11111111 2.60246914,3.11111111 2.68641975,3.02222222 C2.77037037,2.93333333 2.77037037,2.93333333 2.77037037,2.93333333 C2.77037037,2.93333333 2.68641975,2.93333333 2.68641975,2.93333333 C2.68641975,2.93333333 2.68641975,2.93333333 2.60246914,2.93333333 C2.51851852,2.93333333 2.60246914,3.02222222 2.51851852,3.02222222 C2.4345679,3.02222222 2.51851852,3.02222222 2.4345679,3.11111111 C2.35061728,3.2 2.35061728,3.2 2.35061728,3.2 C2.35061728,3.2 2.35061728,3.2 2.35061728,3.2 C2.35061728,3.2 2.26666667,3.2 2.35061728,3.11111111 C2.4345679,3.02222222 2.4345679,2.75555556 2.4345679,2.66666667 C2.4345679,2.66666667 2.35061728,2.57777778 2.35061728,2.66666667 C2.35061728,2.75555556 2.26666667,2.75555556 2.26666667,2.75555556 C2.26666667,2.75555556 2.26666667,2.66666667 2.26666667,2.66666667 C2.26666667,2.66666667 2.18271605,2.75555556 2.18271605,2.75555556 C2.18271605,2.75555556 2.09876543,2.84444444 2.09876543,2.84444444 L2.01481481,2.93333333 L2.01481481,3.02222222 C2.01481481,3.02222222 2.01481481,3.11111111 2.01481481,3.02222222 C2.01481481,2.93333333 2.01481481,2.93333333 1.9308642,2.93333333 L1.67901235,2.93333333 L1.59506173,2.93333333 L1.34320988,3.02222222 C1.34320988,3.02222222 1.25925926,3.02222222 1.25925926,3.02222222 C1.17530864,3.02222222 1.17530864,3.02222222 1.17530864,3.11111111 C1.17530864,3.2 1.17530864,3.2 1.17530864,3.2 C1.17530864,3.2 1.17530864,3.28888889 1.17530864,3.28888889 C1.17530864,3.28888889 1.17530864,3.28888889 1.17530864,3.2 C1.17530864,3.11111111 1.17530864,3.2 1.09135802,3.2 L0.839506173,3.28888889 C0.839506173,3.28888889 0.839506173,3.28888889 0.839506173,3.2 C0.839506173,3.2 0.92345679,3.11111111 0.839506173,3.11111111 C0.755555556,3.11111111 0.755555556,3.2 0.755555556,3.11111111 C0.251851852,4.08888889 0,5.24444444 0,6.31111111 L0,6.4 C0,6.4 0,6.48888889 0,6.48888889 C0,6.48888889 0,6.57777778 0.0839506173,6.57777778 C0.167901235,6.57777778 0.167901235,6.57777778 0.167901235,6.57777778 C0.167901235,6.57777778 0.251851852,6.66666667 0.251851852,6.66666667 C0.251851852,6.66666667 0.251851852,6.66666667 0.251851852,6.75555556 C0.251851852,6.75555556 0.251851852,6.75555556 0.335802469,6.84444444 C0.419753086,6.93333333 0.503703704,6.93333333 0.503703704,7.02222222 C0.503703704,7.11111111 0.503703704,7.11111111 0.503703704,7.11111111 C0.503703704,7.11111111 0.503703704,7.2 0.503703704,7.2 C0.503703704,7.2 0.671604938,7.28888889 0.671604938,7.28888889 L0.755555556,7.28888889 L0.92345679,7.37777778 C1.00740741,7.37777778 0.92345679,7.37777778 1.00740741,7.37777778 C1.09135802,7.37777778 1.09135802,7.37777778 1.09135802,7.37777778 C1.09135802,7.37777778 1.09135802,7.28888889 1.17530864,7.28888889 C1.25925926,7.28888889 1.25925926,7.37777778 1.25925926,7.37777778 L1.34320988,7.37777778 L1.42716049,7.37777778 L1.51111111,7.37777778 C1.59506173,7.37777778 1.51111111,7.37777778 1.59506173,7.37777778 C1.59506173,7.37777778 1.59506173,7.37777778 1.59506173,7.46666667 L1.76296296,7.82222222" id="Shape"></path>
|
29
|
-
<path d="M14.2716049,5.95555556 C14.1037037,4.26666667 13.3481481,2.75555556 12.2567901,1.51111111 C12.2567901,1.51111111 12.2567901,1.51111111 12.1728395,1.6 L12.0049383,1.6 L11.9209877,1.6 C11.9209877,1.6 11.9209877,1.51111111 11.9209877,1.51111111 C11.9209877,1.51111111 11.837037,1.51111111 11.837037,1.51111111 L11.7530864,1.51111111 C11.7530864,1.51111111 11.6691358,1.51111111 11.6691358,1.51111111 C11.6691358,1.51111111 11.5851852,1.6 11.5851852,1.6 L11.5851852,1.68888889 C11.5851852,1.68888889 11.5012346,1.68888889 11.417284,1.68888889 C11.417284,1.68888889 11.3333333,1.6 11.417284,1.6 C11.5012346,1.6 11.417284,1.51111111 11.3333333,1.51111111 C11.2493827,1.51111111 11.2493827,1.51111111 11.2493827,1.6 C11.2493827,1.68888889 11.3333333,1.68888889 11.3333333,1.77777778 C11.3333333,1.77777778 11.3333333,1.77777778 11.3333333,1.77777778 C11.3333333,1.77777778 11.2493827,1.77777778 11.2493827,1.77777778 C11.1654321,1.77777778 11.1654321,1.77777778 11.0814815,1.86666667 C11.0814815,1.86666667 11.1654321,1.95555556 11.0814815,1.95555556 C10.9975309,1.95555556 10.9975309,1.95555556 10.9135802,1.95555556 C10.8296296,1.95555556 10.8296296,1.95555556 10.9135802,2.04444444 C10.9975309,2.13333333 10.9975309,2.13333333 10.9135802,2.13333333 C10.9135802,2.13333333 10.8296296,2.04444444 10.8296296,2.04444444 L10.745679,2.04444444 C10.745679,2.04444444 10.745679,2.04444444 10.745679,1.95555556 C10.745679,1.95555556 10.745679,1.86666667 10.745679,1.86666667 C10.745679,1.86666667 10.6617284,1.86666667 10.6617284,1.77777778 C10.5777778,1.77777778 10.6617284,1.77777778 10.6617284,1.77777778 C10.745679,1.77777778 10.8296296,1.86666667 10.9135802,1.86666667 C10.9975309,1.86666667 11.1654321,1.86666667 11.1654321,1.77777778 C11.1654321,1.68888889 11.0814815,1.68888889 11.0814815,1.68888889 C10.9975309,1.68888889 10.9975309,1.68888889 10.9135802,1.6 C10.8296296,1.51111111 10.745679,1.51111111 10.745679,1.51111111 C10.6617284,1.51111111 10.6617284,1.51111111 10.6617284,1.51111111 C10.6617284,1.51111111 10.5777778,1.51111111 10.5777778,1.51111111 C10.5777778,1.51111111 10.4938272,1.42222222 10.5777778,1.42222222 L10.4938272,1.42222222 C10.4938272,1.42222222 10.4098765,1.42222222 10.4098765,1.42222222 L10.4098765,1.33333333 L10.3259259,1.33333333 L10.2419753,1.42222222 C10.2419753,1.42222222 10.2419753,1.33333333 10.2419753,1.33333333 L10.1580247,1.42222222 L10.1580247,1.33333333 C10.1580247,1.33333333 10.0740741,1.33333333 10.0740741,1.33333333 C9.99012346,1.33333333 9.99012346,1.42222222 9.99012346,1.42222222 C9.99012346,1.42222222 9.99012346,1.42222222 9.90617284,1.42222222 L9.7382716,1.42222222 C9.7382716,1.42222222 9.7382716,1.42222222 9.65432099,1.42222222 C9.57037037,1.42222222 9.57037037,1.42222222 9.57037037,1.42222222 C9.57037037,1.42222222 9.48641975,1.42222222 9.48641975,1.51111111 C9.48641975,1.6 9.48641975,1.6 9.48641975,1.6 C9.48641975,1.6 9.40246914,1.6 9.40246914,1.6 C9.40246914,1.6 9.40246914,1.6 9.40246914,1.68888889 C9.40246914,1.77777778 9.40246914,1.77777778 9.31851852,1.77777778 C9.31851852,1.77777778 9.31851852,1.77777778 9.2345679,1.86666667 L9.2345679,1.95555556 L9.2345679,1.77777778 C9.2345679,1.77777778 9.15061728,1.86666667 9.15061728,1.86666667 C9.15061728,1.86666667 9.15061728,1.95555556 9.06666667,1.95555556 L8.89876543,1.95555556 C8.89876543,1.95555556 8.89876543,2.04444444 8.89876543,2.04444444 L9.2345679,2.04444444 L9.15061728,2.04444444 C9.15061728,2.04444444 9.15061728,2.04444444 9.15061728,2.13333333 L9.15061728,2.22222222 L9.2345679,2.22222222 L9.15061728,2.31111111 L9.2345679,2.4 C9.2345679,2.4 9.2345679,2.48888889 9.31851852,2.4 C9.40246914,2.31111111 9.40246914,2.31111111 9.48641975,2.31111111 C9.48641975,2.31111111 9.57037037,2.22222222 9.57037037,2.22222222 C9.57037037,2.31111111 9.57037037,2.31111111 9.65432099,2.31111111 C9.7382716,2.31111111 9.57037037,2.31111111 9.65432099,2.4 C9.7382716,2.48888889 9.7382716,2.4 9.7382716,2.48888889 C9.7382716,2.48888889 9.7382716,2.57777778 9.7382716,2.57777778 C9.7382716,2.57777778 9.7382716,2.66666667 9.82222222,2.66666667 C9.82222222,2.66666667 9.90617284,2.66666667 9.90617284,2.66666667 C9.90617284,2.66666667 9.99012346,2.66666667 9.99012346,2.57777778 C9.99012346,2.48888889 9.99012346,2.48888889 9.99012346,2.4 C9.99012346,2.4 10.1580247,2.31111111 10.1580247,2.31111111 C10.1580247,2.22222222 10.0740741,2.22222222 9.99012346,2.13333333 C9.99012346,2.04444444 10.0740741,1.95555556 10.1580247,1.95555556 L10.2419753,1.86666667 C10.2419753,1.86666667 10.1580247,1.86666667 10.2419753,1.77777778 C10.3259259,1.77777778 10.2419753,1.68888889 10.3259259,1.68888889 L10.4098765,1.68888889 C10.4098765,1.68888889 10.4938272,1.68888889 10.4938272,1.68888889 C10.4938272,1.68888889 10.4938272,1.77777778 10.4938272,1.77777778 C10.4098765,1.77777778 10.4098765,1.86666667 10.3259259,1.86666667 C10.3259259,1.86666667 10.2419753,1.86666667 10.2419753,1.95555556 L10.3259259,2.13333333 C10.3259259,2.13333333 10.4098765,2.13333333 10.4098765,2.22222222 L10.6617284,2.22222222 L10.745679,2.22222222 L10.8296296,2.22222222 L10.745679,2.22222222 L10.4938272,2.22222222 C10.4938272,2.22222222 10.3259259,2.31111111 10.4098765,2.31111111 L10.4938272,2.31111111 C10.5777778,2.4 10.5777778,2.4 10.4938272,2.4 C10.4938272,2.4 10.4938272,2.4 10.4098765,2.4 C10.4098765,2.4 10.3259259,2.31111111 10.2419753,2.31111111 C10.1580247,2.31111111 10.1580247,2.31111111 10.2419753,2.4 C10.3259259,2.48888889 10.2419753,2.4 10.2419753,2.48888889 C10.2419753,2.57777778 10.2419753,2.48888889 10.2419753,2.57777778 C10.2419753,2.57777778 10.2419753,2.57777778 10.2419753,2.57777778 C10.2419753,2.57777778 10.1580247,2.57777778 10.2419753,2.57777778 C10.3259259,2.57777778 10.1580247,2.57777778 10.1580247,2.57777778 L10.0740741,2.66666667 L9.90617284,2.66666667 L9.7382716,2.66666667 C9.7382716,2.66666667 9.65432099,2.57777778 9.65432099,2.66666667 C9.65432099,2.66666667 9.57037037,2.66666667 9.57037037,2.66666667 C9.57037037,2.66666667 9.48641975,2.66666667 9.48641975,2.66666667 C9.48641975,2.66666667 9.40246914,2.66666667 9.40246914,2.57777778 C9.40246914,2.48888889 9.40246914,2.57777778 9.48641975,2.48888889 C9.57037037,2.48888889 9.57037037,2.48888889 9.48641975,2.4 C9.40246914,2.31111111 9.40246914,2.4 9.40246914,2.4 C9.40246914,2.4 9.48641975,2.31111111 9.40246914,2.31111111 C9.40246914,2.31111111 9.31851852,2.31111111 9.31851852,2.31111111 L9.2345679,2.31111111 C9.2345679,2.31111111 9.2345679,2.4 9.2345679,2.4 C9.2345679,2.4 9.31851852,2.48888889 9.31851852,2.48888889 L9.31851852,2.66666667 C9.31851852,2.66666667 9.31851852,2.66666667 9.2345679,2.66666667 C9.15061728,2.66666667 9.06666667,2.66666667 9.06666667,2.75555556 C9.06666667,2.84444444 9.06666667,2.84444444 8.98271605,2.84444444 C8.89876543,2.84444444 8.89876543,2.84444444 8.89876543,2.93333333 L8.81481481,2.93333333 C8.81481481,2.93333333 8.7308642,2.93333333 8.7308642,2.93333333 C8.7308642,2.93333333 8.81481481,2.93333333 8.81481481,2.84444444 C8.81481481,2.75555556 8.81481481,2.75555556 8.81481481,2.75555556 C8.81481481,2.75555556 8.7308642,2.75555556 8.7308642,2.75555556 C8.7308642,2.75555556 8.7308642,2.75555556 8.7308642,2.66666667 C8.7308642,2.57777778 8.7308642,2.57777778 8.64691358,2.57777778 C8.64691358,2.57777778 8.56296296,2.57777778 8.56296296,2.57777778 C8.56296296,2.57777778 8.56296296,2.48888889 8.56296296,2.48888889 C8.56296296,2.48888889 8.56296296,2.48888889 8.56296296,2.48888889 C8.47901235,2.48888889 8.47901235,2.48888889 8.47901235,2.48888889 L8.56296296,2.48888889 C8.64691358,2.48888889 8.64691358,2.4 8.64691358,2.4 L8.56296296,2.4 C8.56296296,2.4 8.47901235,2.4 8.47901235,2.4 C8.47901235,2.4 8.47901235,2.4 8.47901235,2.31111111 L8.56296296,2.31111111 L8.39506173,2.31111111 C8.39506173,2.31111111 8.39506173,2.4 8.31111111,2.4 C8.31111111,2.4 8.22716049,2.48888889 8.31111111,2.48888889 C8.31111111,2.48888889 8.39506173,2.48888889 8.39506173,2.48888889 C8.39506173,2.48888889 8.31111111,2.48888889 8.39506173,2.48888889 C8.47901235,2.48888889 8.47901235,2.48888889 8.47901235,2.48888889 L8.39506173,2.48888889 L8.47901235,2.48888889 C8.47901235,2.48888889 8.39506173,2.57777778 8.39506173,2.57777778 L8.47901235,2.57777778 C8.47901235,2.57777778 8.47901235,2.57777778 8.47901235,2.57777778 C8.47901235,2.57777778 8.47901235,2.66666667 8.47901235,2.66666667 C8.47901235,2.66666667 8.56296296,2.66666667 8.47901235,2.75555556 C8.39506173,2.84444444 8.39506173,2.75555556 8.39506173,2.75555556 C8.39506173,2.75555556 8.47901235,2.84444444 8.39506173,2.84444444 C8.31111111,2.84444444 8.31111111,2.84444444 8.31111111,2.84444444 C8.31111111,2.84444444 8.31111111,2.84444444 8.39506173,2.93333333 C8.47901235,2.93333333 8.47901235,3.02222222 8.56296296,2.93333333 C8.56296296,2.93333333 8.47901235,3.02222222 8.47901235,3.02222222 C8.39506173,3.02222222 8.39506173,3.02222222 8.31111111,3.11111111 C8.31111111,3.11111111 8.39506173,3.11111111 8.47901235,3.11111111 C8.56296296,3.11111111 8.56296296,3.11111111 8.56296296,3.11111111 L8.89876543,3.11111111 C8.89876543,3.11111111 8.89876543,3.2 8.89876543,3.2 C8.89876543,3.2 8.89876543,3.2 8.89876543,3.2 C8.89876543,3.2 8.81481481,3.2 8.81481481,3.2 C8.81481481,3.11111111 8.7308642,3.2 8.81481481,3.2 C8.89876543,3.2 8.81481481,3.28888889 8.81481481,3.28888889 L8.7308642,3.28888889 C8.7308642,3.28888889 8.64691358,3.28888889 8.56296296,3.28888889 C8.56296296,3.28888889 8.56296296,3.37777778 8.56296296,3.37777778 C8.56296296,3.37777778 8.64691358,3.37777778 8.64691358,3.37777778 C8.7308642,3.37777778 8.7308642,3.46666667 8.81481481,3.46666667 C8.81481481,3.46666667 8.81481481,3.55555556 8.81481481,3.55555556 C8.81481481,3.55555556 8.81481481,3.73333333 8.81481481,3.73333333 L8.7308642,3.73333333 L8.64691358,3.73333333 L8.14320988,3.64444444 C8.14320988,3.64444444 7.97530864,3.64444444 7.97530864,3.73333333 C7.97530864,3.73333333 7.97530864,3.82222222 7.97530864,3.82222222 C7.97530864,3.91111111 7.89135802,3.91111111 7.89135802,4 C7.89135802,4.08888889 7.89135802,4.08888889 7.89135802,4.08888889 C7.89135802,4.08888889 7.89135802,4.26666667 7.89135802,4.26666667 C7.89135802,4.26666667 7.89135802,4.26666667 7.97530864,4.26666667 C8.05925926,4.26666667 8.05925926,4.26666667 8.05925926,4.26666667 C8.14320988,4.26666667 8.22716049,4.35555556 8.14320988,4.44444444 C8.05925926,4.53333333 8.05925926,4.62222222 7.97530864,4.53333333 C7.97530864,4.62222222 7.97530864,4.62222222 8.05925926,4.62222222 C8.14320988,4.62222222 8.05925926,4.53333333 8.14320988,4.53333333 L8.39506173,4.53333333 C8.39506173,4.53333333 8.47901235,4.44444444 8.47901235,4.44444444 C8.47901235,4.44444444 8.47901235,4.35555556 8.56296296,4.35555556 C8.64691358,4.35555556 8.56296296,4.26666667 8.56296296,4.17777778 C8.56296296,4.08888889 8.64691358,4.08888889 8.7308642,4.08888889 C8.7308642,4.08888889 8.81481481,4.08888889 8.81481481,4.08888889 L8.81481481,4 C8.81481481,4 8.81481481,3.91111111 8.89876543,3.91111111 C8.98271605,3.91111111 9.06666667,4 9.15061728,4 C9.15061728,4 9.2345679,4 9.2345679,3.91111111 C9.2345679,3.91111111 9.2345679,3.82222222 9.31851852,3.91111111 C9.40246914,4 9.48641975,3.91111111 9.48641975,4 C9.48641975,4.08888889 9.48641975,4 9.57037037,4.08888889 C9.65432099,4.08888889 9.7382716,4.17777778 9.82222222,4.17777778 C9.90617284,4.17777778 9.90617284,4.17777778 9.99012346,4.26666667 C10.0740741,4.35555556 10.1580247,4.44444444 10.0740741,4.44444444 C9.99012346,4.44444444 10.0740741,4.53333333 9.99012346,4.53333333 L9.82222222,4.53333333 C9.82222222,4.53333333 9.82222222,4.62222222 9.82222222,4.62222222 C9.90617284,4.62222222 9.99012346,4.71111111 9.99012346,4.71111111 L9.99012346,4.62222222 C9.99012346,4.62222222 10.0740741,4.62222222 10.0740741,4.62222222 C10.0740741,4.62222222 10.0740741,4.53333333 10.1580247,4.53333333 C10.2419753,4.53333333 10.1580247,4.44444444 10.0740741,4.44444444 C9.99012346,4.44444444 10.0740741,4.35555556 10.1580247,4.44444444 C10.2419753,4.53333333 10.2419753,4.44444444 10.1580247,4.35555556 C10.0740741,4.35555556 10.0740741,4.26666667 9.99012346,4.26666667 C9.99012346,4.26666667 9.99012346,4.26666667 9.99012346,4.17777778 L9.90617284,4.17777778 L9.90617284,4.08888889 C9.90617284,4.08888889 9.90617284,4.08888889 9.82222222,4 L9.7382716,3.91111111 L9.7382716,3.82222222 C9.7382716,3.82222222 9.7382716,3.82222222 9.82222222,3.82222222 C9.82222222,3.82222222 9.90617284,3.91111111 9.90617284,3.91111111 C9.90617284,3.91111111 9.90617284,4 9.99012346,4 C10.0740741,4 10.0740741,4.08888889 10.0740741,4.08888889 L10.1580247,4.08888889 L10.2419753,4.17777778 C10.2419753,4.17777778 10.2419753,4.26666667 10.2419753,4.26666667 C10.2419753,4.26666667 10.2419753,4.35555556 10.3259259,4.35555556 C10.3259259,4.35555556 10.3259259,4.35555556 10.3259259,4.35555556 C10.3259259,4.35555556 10.3259259,4.44444444 10.3259259,4.44444444 L10.3259259,4.53333333 L10.4098765,4.53333333 L10.4938272,4.53333333 L10.4938272,4.44444444 L10.5777778,4.44444444 L10.6617284,4.44444444 L10.5777778,4.35555556 L10.5777778,4.26666667 C10.5777778,4.26666667 10.5777778,4.17777778 10.5777778,4.26666667 C10.5777778,4.35555556 10.5777778,4.26666667 10.6617284,4.26666667 C10.745679,4.26666667 10.6617284,4.26666667 10.6617284,4.26666667 C10.6617284,4.26666667 10.745679,4.26666667 10.745679,4.26666667 C10.745679,4.26666667 10.8296296,4.26666667 10.8296296,4.35555556 C10.8296296,4.35555556 10.8296296,4.35555556 10.8296296,4.44444444 C10.8296296,4.44444444 10.8296296,4.53333333 10.8296296,4.53333333 C10.8296296,4.53333333 10.8296296,4.62222222 10.9135802,4.62222222 C10.9135802,4.62222222 10.9135802,4.62222222 10.9975309,4.62222222 L10.9975309,4.71111111 L11.0814815,4.71111111 C11.0814815,4.71111111 11.0814815,4.71111111 11.1654321,4.71111111 C11.1654321,4.71111111 11.2493827,4.71111111 11.2493827,4.71111111 C11.3333333,4.8 11.2493827,4.8 11.3333333,4.8 C11.417284,4.8 11.3333333,4.71111111 11.417284,4.71111111 L11.5012346,4.71111111 C11.5012346,4.71111111 11.5012346,4.88888889 11.5012346,4.88888889 C11.5012346,4.88888889 11.5012346,4.97777778 11.5012346,4.97777778 C11.5012346,4.97777778 11.417284,4.97777778 11.417284,5.06666667 C11.417284,5.15555556 11.417284,5.15555556 11.417284,5.15555556 C11.417284,5.24444444 11.417284,5.33333333 11.417284,5.33333333 C11.417284,5.33333333 11.417284,5.42222222 11.417284,5.42222222 C11.417284,5.51111111 11.5012346,5.51111111 11.5012346,5.6 C11.5851852,5.68888889 11.5851852,5.77777778 11.5851852,5.77777778 C11.6691358,5.86666667 11.6691358,5.77777778 11.7530864,5.95555556 C11.7530864,6.13333333 11.7530864,6.13333333 11.837037,6.13333333 C11.9209877,6.22222222 11.9209877,6.13333333 12.0049383,6.31111111 C12.0888889,6.4 12.0888889,6.4 12.1728395,6.48888889 C12.1728395,6.48888889 12.1728395,6.48888889 12.1728395,6.57777778 C12.1728395,6.66666667 12.1728395,6.66666667 12.1728395,6.75555556 C12.1728395,6.84444444 12.1728395,6.84444444 12.1728395,6.84444444 C12.1728395,6.84444444 12.1728395,6.93333333 12.2567901,6.84444444 C12.3407407,6.75555556 12.2567901,6.75555556 12.3407407,6.75555556 C12.4246914,6.75555556 12.508642,6.75555556 12.508642,6.75555556 C12.508642,6.75555556 12.508642,6.66666667 12.5925926,6.66666667 C12.6765432,6.66666667 12.6765432,6.66666667 12.6765432,6.57777778 C12.7604938,6.48888889 12.7604938,6.57777778 12.7604938,6.48888889 C12.7604938,6.4 12.7604938,6.4 12.8444444,6.4 L13.0123457,6.4 C13.0123457,6.4 12.9283951,6.31111111 13.0123457,6.31111111 C13.0962963,6.31111111 13.0962963,6.31111111 13.0962963,6.31111111 L13.1802469,6.22222222 C13.1802469,6.22222222 13.1802469,6.22222222 13.2641975,6.13333333 C13.2641975,6.13333333 13.2641975,6.04444444 13.2641975,6.04444444 C13.2641975,6.04444444 13.2641975,5.95555556 13.1802469,5.95555556 C13.1802469,5.95555556 13.0962963,5.95555556 13.0962963,5.95555556 C13.0962963,5.95555556 13.0123457,5.95555556 13.0123457,5.86666667 C13.0123457,5.86666667 13.0123457,5.77777778 13.0123457,5.77777778 C13.0123457,5.86666667 12.9283951,5.86666667 12.8444444,5.95555556 C12.8444444,5.95555556 12.6765432,5.95555556 12.6765432,5.95555556 C12.5925926,5.95555556 12.5925926,5.86666667 12.508642,5.77777778 C12.508642,5.68888889 12.508642,5.68888889 12.4246914,5.68888889 C12.4246914,5.68888889 12.3407407,5.6 12.3407407,5.51111111 C12.3407407,5.51111111 12.3407407,5.51111111 12.3407407,5.42222222 C12.3407407,5.42222222 12.4246914,5.24444444 12.508642,5.33333333 C12.508642,5.42222222 12.5925926,5.51111111 12.6765432,5.51111111 C12.6765432,5.6 12.7604938,5.6 12.7604938,5.6 C12.8444444,5.6 12.9283951,5.51111111 12.9283951,5.6 C12.9283951,5.6 12.9283951,5.68888889 13.0123457,5.77777778 C13.0962963,5.86666667 13.1802469,5.86666667 13.2641975,5.86666667 L13.5160494,5.86666667 C13.6839506,5.86666667 13.6839506,5.86666667 13.6839506,5.86666667 C13.6839506,5.95555556 13.6839506,5.95555556 13.7679012,5.95555556 C13.7679012,5.95555556 13.7679012,6.04444444 13.9358025,6.04444444" id="Shape"></path>
|
30
|
-
<path d="M9.40246914,4.08888889 C9.48641975,4.08888889 9.48641975,4.08888889 9.40246914,4.08888889 C9.48641975,3.91111111 9.40246914,4 9.40246914,4.08888889 C9.40246914,4.08888889 9.40246914,4.08888889 9.40246914,4.08888889" id="Shape"></path>
|
31
|
-
<path d="M0.167901235,7.28888889 C0.167901235,7.28888889 0.167901235,7.2 0.0839506173,7.2 C0.0839506173,7.11111111 0,7.11111111 0,7.11111111 L0,7.02222222 C0,7.11111111 0,7.11111111 0,7.2 L0,7.28888889 C0,7.28888889 0,7.37777778 0,7.37777778 L0.167901235,7.28888889 C0.0839506173,7.28888889 0.167901235,7.46666667 0.167901235,7.28888889 C0.167901235,7.28888889 0.167901235,7.2 0.167901235,7.28888889 C0.0839506173,7.2 0.0839506173,7.2 0.167901235,7.28888889" id="Shape"></path>
|
32
|
-
<path d="M2.26666667,2.31111111 C2.26666667,2.31111111 2.26666667,2.4 2.26666667,2.4 L2.35061728,2.31111111 L2.51851852,2.22222222 L2.68641975,2.22222222 C2.68641975,2.22222222 2.77037037,2.13333333 2.85432099,2.13333333 C2.85432099,2.13333333 2.9382716,2.04444444 2.9382716,2.04444444 L2.85432099,2.13333333 C2.85432099,2.13333333 2.68641975,2.22222222 2.60246914,2.31111111 C2.51851852,2.4 2.60246914,2.22222222 2.60246914,2.22222222 L2.77037037,2.13333333 L2.85432099,2.04444444 L3.02222222,1.95555556 C3.02222222,1.95555556 3.10617284,1.95555556 3.10617284,1.95555556 C3.10617284,1.95555556 3.10617284,1.86666667 3.10617284,1.86666667 L3.19012346,1.77777778 L3.35802469,1.68888889 L3.27407407,1.68888889 C3.27407407,1.68888889 3.27407407,1.6 3.27407407,1.51111111 C3.35802469,1.42222222 3.44197531,1.42222222 3.52592593,1.42222222 L3.60987654,1.33333333 C3.60987654,1.33333333 3.69382716,1.24444444 3.69382716,1.15555556 C3.69382716,1.15555556 3.77777778,1.06666667 3.8617284,1.06666667 L4.11358025,0.977777778 L4.19753086,0.888888889 C4.11358025,0.888888889 4.11358025,0.888888889 4.02962963,0.888888889 L3.8617284,0.977777778 L3.69382716,1.06666667 L3.52592593,1.15555556 L3.35802469,1.24444444 C3.27407407,1.24444444 3.19012346,1.33333333 3.10617284,1.42222222 C3.02222222,1.51111111 2.9382716,1.51111111 2.85432099,1.51111111 C2.85432099,1.51111111 2.77037037,1.6 2.77037037,1.6 L2.77037037,1.68888889 L2.77037037,1.77777778 C2.77037037,1.77777778 2.77037037,1.77777778 2.68641975,1.77777778 C2.60246914,1.77777778 2.60246914,1.77777778 2.60246914,1.77777778 L2.51851852,1.77777778 L2.4345679,1.95555556 L2.35061728,2.04444444 L2.35061728,2.13333333 C2.35061728,2.13333333 2.4345679,2.13333333 2.4345679,2.13333333 L2.51851852,2.04444444 L2.60246914,1.95555556 L2.68641975,1.95555556 L2.60246914,1.95555556 C2.60246914,1.95555556 2.60246914,2.04444444 2.51851852,2.04444444 L2.4345679,2.04444444 C2.4345679,2.04444444 2.4345679,2.04444444 2.35061728,2.13333333 C2.26666667,2.13333333 2.26666667,2.13333333 2.18271605,2.13333333 L2.26666667,2.31111111 C2.26666667,2.22222222 2.26666667,2.31111111 2.26666667,2.31111111" id="Shape"></path>
|
33
|
-
<path d="M9.40246914,4.17777778 L9.40246914,4.35555556 C9.40246914,4.26666667 9.40246914,4.26666667 9.40246914,4.17777778" id="Shape"></path>
|
34
|
-
<path d="M0.92345679,3.37777778 L1.09135802,3.37777778 C1.17530864,3.37777778 1.25925926,3.28888889 1.25925926,3.28888889 C1.25925926,3.28888889 1.25925926,3.28888889 1.34320988,3.28888889 C1.42716049,3.28888889 1.42716049,3.28888889 1.51111111,3.2 C1.59506173,3.11111111 1.51111111,3.11111111 1.51111111,3.11111111 C1.59506173,3.11111111 1.59506173,3.11111111 1.59506173,3.02222222 C1.59506173,3.02222222 1.42716049,3.02222222 1.42716049,2.93333333 C1.42716049,2.84444444 1.51111111,2.75555556 1.51111111,2.66666667 L1.42716049,2.66666667 L1.42716049,2.75555556 C1.42716049,2.75555556 1.42716049,2.75555556 1.34320988,2.75555556 C1.25925926,2.75555556 1.25925926,2.84444444 1.25925926,2.93333333 L1.34320988,2.93333333 C1.34320988,2.93333333 1.34320988,2.93333333 1.34320988,2.93333333 C1.34320988,3.02222222 1.34320988,2.84444444 1.34320988,2.93333333 C1.34320988,3.02222222 1.25925926,2.93333333 1.25925926,2.93333333 C1.17530864,2.93333333 1.25925926,2.93333333 1.17530864,2.93333333 C1.09135802,2.93333333 1.09135802,2.93333333 1.00740741,3.02222222 C0.92345679,3.02222222 0.92345679,3.02222222 0.92345679,3.11111111 C0.92345679,3.2 1.00740741,3.2 0.92345679,3.2 C0.839506173,3.2 0.839506173,3.2 0.839506173,3.2 L1.09135802,3.2 L0.92345679,3.2 C0.92345679,3.28888889 0.839506173,3.28888889 0.92345679,3.37777778 C0.839506173,3.46666667 0.92345679,3.37777778 0.92345679,3.37777778" id="Shape"></path>
|
35
|
-
<path d="M7.89135802,3.02222222 C7.97530864,3.02222222 7.97530864,3.02222222 7.97530864,3.02222222 L8.14320988,3.02222222 C8.22716049,3.02222222 8.14320988,2.93333333 8.14320988,2.84444444 C8.14320988,2.75555556 8.14320988,2.84444444 8.14320988,2.84444444 C8.14320988,2.84444444 8.05925926,2.75555556 8.22716049,2.75555556 C8.39506173,2.75555556 8.22716049,2.66666667 8.22716049,2.66666667 C8.22716049,2.66666667 8.22716049,2.66666667 8.14320988,2.66666667 C8.05925926,2.66666667 8.05925926,2.75555556 8.05925926,2.75555556 C8.05925926,2.75555556 8.05925926,2.75555556 7.97530864,2.75555556 C7.89135802,2.75555556 7.89135802,2.75555556 7.89135802,2.84444444 C7.89135802,2.93333333 7.89135802,2.84444444 7.97530864,2.93333333 C8.05925926,3.02222222 7.97530864,2.93333333 7.97530864,2.93333333 C7.89135802,2.84444444 7.89135802,2.84444444 7.89135802,3.02222222 C7.89135802,2.93333333 7.89135802,2.93333333 7.89135802,3.02222222" id="Shape"></path>
|
36
|
-
<path d="M9.40246914,0.533333333 C9.48641975,0.533333333 9.48641975,0.444444444 9.48641975,0.444444444 C9.48641975,0.444444444 9.48641975,0.533333333 9.48641975,0.533333333 C9.31851852,0.533333333 9.31851852,0.533333333 9.48641975,0.622222222 C9.65432099,0.711111111 9.57037037,0.622222222 9.65432099,0.622222222 C9.7382716,0.622222222 9.65432099,0.622222222 9.7382716,0.533333333 C9.82222222,0.444444444 9.7382716,0.444444444 9.82222222,0.444444444 C9.90617284,0.444444444 9.90617284,0.533333333 9.90617284,0.533333333 C9.99012346,0.533333333 9.99012346,0.533333333 10.0740741,0.533333333 C10.1580247,0.533333333 10.1580247,0.533333333 10.1580247,0.533333333 C10.0740741,0.533333333 10.0740741,0.533333333 9.99012346,0.444444444 C9.90617284,0.355555556 9.82222222,0.355555556 9.7382716,0.355555556 L9.90617284,0.355555556 C9.99012346,0.355555556 9.99012346,0.355555556 10.0740741,0.355555556 C10.1580247,0.355555556 10.0740741,0.266666667 10.0740741,0.266666667 L9.65432099,0.266666667 C9.57037037,0.266666667 9.57037037,0.266666667 9.40246914,0.266666667 L9.2345679,0.266666667 C9.15061728,0.266666667 9.15061728,0.266666667 9.15061728,0.355555556 C9.2345679,0.533333333 9.31851852,0.533333333 9.40246914,0.533333333" id="Shape"></path>
|
37
|
-
</g>
|
38
|
-
<path d="M8,15.1752577 C11.9627854,15.1752577 15.1752577,11.9627854 15.1752577,8 C15.1752577,4.03721458 11.9627854,0.824742268 8,0.824742268 C4.03721458,0.824742268 0.824742268,4.03721458 0.824742268,8 C0.824742268,11.9627854 4.03721458,15.1752577 8,15.1752577 Z M8,16 C3.581722,16 0,12.418278 0,8 C0,3.581722 3.581722,2.27373675e-13 8,2.27373675e-13 C12.418278,2.27373675e-13 16,3.581722 16,8 C16,12.418278 12.418278,16 8,16 Z" id="Oval"></path>
|
39
|
-
</g>
|
40
|
-
</g>
|
41
|
-
</g>
|
42
|
-
</g>
|
43
|
-
</g>
|
44
|
-
</svg>
|