From 92e1970651c39bdd040e6a908af34668092127a0 Mon Sep 17 00:00:00 2001 From: Matilde Park Date: Thu, 5 Dec 2019 02:49:21 -0500 Subject: [PATCH] /me, /group views, render sigil, render root ident --- pkg/arvo/app/contacts/js/index.js | 4064 ++++++++++++++++- .../contacts/src/js/components/contacts.js | 2 +- .../contacts/src/js/components/groups.js | 33 +- .../contacts/src/js/components/lib/card.js | 13 + .../src/js/components/lib/groups-item.js | 5 +- .../src/js/components/lib/icons/sigil.js | 13 +- .../contacts/src/js/components/root.js | 32 +- .../contacts/src/js/components/skeleton.js | 4 +- pkg/interface/contacts/src/js/lib/util.js | 5 + 9 files changed, 4093 insertions(+), 78 deletions(-) create mode 100644 pkg/interface/contacts/src/js/components/lib/card.js diff --git a/pkg/arvo/app/contacts/js/index.js b/pkg/arvo/app/contacts/js/index.js index b0e8678ca..11ca4eadd 100644 --- a/pkg/arvo/app/contacts/js/index.js +++ b/pkg/arvo/app/contacts/js/index.js @@ -49764,6 +49764,11 @@ return str.slice(0,-1); } + function uxToHex(ux) { + let value = ux.substr(2).replace('.', '').padStart(6, '0'); + return value; + } + class InitialReducer { reduce(json, state) { let data = lodash.get(json, 'group-initial', false); @@ -58806,20 +58811,3908 @@ lyrtesmudnytbyrsenwegfyrmurtelreptegpecnelnevfes\ class GroupsItem extends react_1 { render() { const { props } = this; - console.log(props.group); return ( react.createElement(Link, { - to: "~contacts/group" + props.link, __self: this, __source: {fileName: _jsxFileName$3, lineNumber: 11}} - , react.createElement('div', { className: "w-100 v-mid f9 pl4" , __self: this, __source: {fileName: _jsxFileName$3, lineNumber: 13}} - , react.createElement('p', { class: "mono", __self: this, __source: {fileName: _jsxFileName$3, lineNumber: 14}}, props.name) + to: "/~contacts" + props.link, __self: this, __source: {fileName: _jsxFileName$3, lineNumber: 10}} + , react.createElement('div', { className: "w-100 v-mid f9 pl4" , __self: this, __source: {fileName: _jsxFileName$3, lineNumber: 12}} + , react.createElement('p', {__self: this, __source: {fileName: _jsxFileName$3, lineNumber: 13}}, props.name) ) ) ) } } - const _jsxFileName$4 = "/Users/matilde/git/tlon/urbit/pkg/interface/contacts/src/js/components/groups.js"; + var dist = createCommonjsModule(function (module, exports) { + + Object.defineProperty(exports, '__esModule', { value: true }); + + function _defineProperty(obj, key, value) { + if (key in obj) { + Object.defineProperty(obj, key, { + value: value, + enumerable: true, + configurable: true, + writable: true + }); + } else { + obj[key] = value; + } + + return obj; + } + + function ownKeys(object, enumerableOnly) { + var keys = Object.keys(object); + + if (Object.getOwnPropertySymbols) { + keys.push.apply(keys, Object.getOwnPropertySymbols(object)); + } + + if (enumerableOnly) keys = keys.filter(function (sym) { + return Object.getOwnPropertyDescriptor(object, sym).enumerable; + }); + return keys; + } + + function _objectSpread2(target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i] != null ? arguments[i] : {}; + + if (i % 2) { + ownKeys(source, true).forEach(function (key) { + _defineProperty(target, key, source[key]); + }); + } else if (Object.getOwnPropertyDescriptors) { + Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); + } else { + ownKeys(source).forEach(function (key) { + Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); + }); + } + } + + return target; + } + + /** + * @ignore + * @type {RegExp} + */ + var matrixRegex = /^matrix\(\s*([0-9_+-.e]+)\s*,\s*([0-9_+-.e]+)\s*,\s*([0-9_+-.e]+)\s*,\s*([0-9_+-.e]+)\s*,\s*([0-9_+-.e]+)\s*,\s*([0-9_+-.e]+)\s*\)$/i; + + /** + * Parse a string matrix formatted as matrix(a,b,c,d,e,f) + * @param string String with a matrix + * @returns {{a: number, b: number, c: number, e: number, d: number, f: number}} Affine matrix + */ + function fromString(string) { + var parsed = string.match(matrixRegex); + if (parsed === null || parsed.length < 7) throw new Error("'" + string + "' is not a matrix"); + return { + a: parseFloat(parsed[1]), + b: parseFloat(parsed[2]), + c: parseFloat(parsed[3]), + d: parseFloat(parsed[4]), + e: parseFloat(parsed[5]), + f: parseFloat(parsed[6]) + }; + } + + /** + * Identity matrix + * @returns {{a: number, b: number, c: number, e: number, d: number, f: number}} Affine matrix + */ + function identity() { + return { + a: 1, + c: 0, + e: 0, + b: 0, + d: 1, + f: 0 + }; + } + + function isUndefined(val) { + return typeof val === 'undefined'; + } + + /** + * Calculate a translate matrix + * @param tx Translation on axis x + * @param [ty = 0] Translation on axis y + * @returns {{a: number, b: number, c: number, e: number, d: number, f: number}} Affine matrix + */ + function translate(tx) { + var ty = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; + + return { + a: 1, + c: 0, + e: tx, + b: 0, + d: 1, + f: ty + }; + } + + function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } } + + function _toArray(arr) { return Array.isArray(arr) ? arr : Array.from(arr); } + + /** + * Merge multiple matrices into one + * @param matrices {...object} list of matrices + * @returns {{a: number, b: number, c: number, e: number, d: number, f: number}} Affine matrix + */ + function transform() { + for (var _len = arguments.length, matrices = Array(_len), _key = 0; _key < _len; _key++) { + matrices[_key] = arguments[_key]; + } + + matrices = Array.isArray(matrices[0]) ? matrices[0] : matrices; + + var multiply = function multiply(m1, m2) { + return { + a: m1.a * m2.a + m1.c * m2.b, + c: m1.a * m2.c + m1.c * m2.d, + e: m1.a * m2.e + m1.c * m2.f + m1.e, + b: m1.b * m2.a + m1.d * m2.b, + d: m1.b * m2.c + m1.d * m2.d, + f: m1.b * m2.e + m1.d * m2.f + m1.f + }; + }; + + switch (matrices.length) { + case 0: + throw new Error('no matrices provided'); + + case 1: + return matrices[0]; + + case 2: + return multiply(matrices[0], matrices[1]); + + default: + var _matrices = matrices, + _matrices2 = _toArray(_matrices), + m1 = _matrices2[0], + m2 = _matrices2[1], + rest = _matrices2.slice(2); + + var m = multiply(m1, m2); + return transform.apply(undefined, [m].concat(_toConsumableArray(rest))); + } + } + + /** + * Calculate a scaling matrix + * @param sx Scaling on axis x + * @param [sy = sx] Scaling on axis y (default sx) + * @returns {{a: number, b: number, c: number, e: number, d: number, f: number}} Affine matrix + */ + function scale(sx) { + var sy = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : undefined; + + if (isUndefined(sy)) sy = sx; + return { + a: sx, + c: 0, + e: 0, + b: 0, + d: sy, + f: 0 + }; + } + + /** + * Serialize the matrix to a string that can be used with CSS or SVG + * @param matrix Affine matrix + * @returns {string} String that contains a matrix formatted as matrix(a,b,c,d,e,f) + */ + + /** + * Serialize the matrix to a string that can be used with CSS or SVG + * @param matrix Affine matrix + * @returns {string} String that contains a matrix formatted as matrix(a,b,c,d,e,f) + */ + function toSVG(matrix) { + return toString(matrix); + } + + /** + * Serialize the matrix to a string that can be used with CSS or SVG + * @param matrix Affine matrix + * @returns {string} String that contains a matrix formatted as matrix(a,b,c,d,e,f) + */ + function toString(matrix) { + return "matrix(" + matrix.a + "," + matrix.b + "," + matrix.c + "," + matrix.d + "," + matrix.e + "," + matrix.f + ")"; + } + + function createCommonjsModule(fn, module) { + return module = { exports: {} }, fn(module, module.exports), module.exports; + } + + var renameKeys = createCommonjsModule(function (module) { + (function() { + + function rename(obj, fn) { + if (typeof fn !== 'function') { + return obj; + } + + var res = {}; + for (var key in obj) { + if (Object.prototype.hasOwnProperty.call(obj, key)) { + res[fn(key, obj[key]) || key] = obj[key]; + } + } + return res; + } + + if ( module.exports) { + module.exports = rename; + } else { + { + window.rename = rename; + } + } + })(); + }); + + var eventemitter3 = createCommonjsModule(function (module) { + + var has = Object.prototype.hasOwnProperty + , prefix = '~'; + + /** + * Constructor to create a storage for our `EE` objects. + * An `Events` instance is a plain object whose properties are event names. + * + * @constructor + * @api private + */ + function Events() {} + + // + // We try to not inherit from `Object.prototype`. In some engines creating an + // instance in this way is faster than calling `Object.create(null)` directly. + // If `Object.create(null)` is not supported we prefix the event names with a + // character to make sure that the built-in object properties are not + // overridden or used as an attack vector. + // + if (Object.create) { + Events.prototype = Object.create(null); + + // + // This hack is needed because the `__proto__` property is still inherited in + // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5. + // + if (!new Events().__proto__) prefix = false; + } + + /** + * Representation of a single event listener. + * + * @param {Function} fn The listener function. + * @param {Mixed} context The context to invoke the listener with. + * @param {Boolean} [once=false] Specify if the listener is a one-time listener. + * @constructor + * @api private + */ + function EE(fn, context, once) { + this.fn = fn; + this.context = context; + this.once = once || false; + } + + /** + * Minimal `EventEmitter` interface that is molded against the Node.js + * `EventEmitter` interface. + * + * @constructor + * @api public + */ + function EventEmitter() { + this._events = new Events(); + this._eventsCount = 0; + } + + /** + * Return an array listing the events for which the emitter has registered + * listeners. + * + * @returns {Array} + * @api public + */ + EventEmitter.prototype.eventNames = function eventNames() { + var names = [] + , events + , name; + + if (this._eventsCount === 0) return names; + + for (name in (events = this._events)) { + if (has.call(events, name)) names.push(prefix ? name.slice(1) : name); + } + + if (Object.getOwnPropertySymbols) { + return names.concat(Object.getOwnPropertySymbols(events)); + } + + return names; + }; + + /** + * Return the listeners registered for a given event. + * + * @param {String|Symbol} event The event name. + * @param {Boolean} exists Only check if there are listeners. + * @returns {Array|Boolean} + * @api public + */ + EventEmitter.prototype.listeners = function listeners(event, exists) { + var evt = prefix ? prefix + event : event + , available = this._events[evt]; + + if (exists) return !!available; + if (!available) return []; + if (available.fn) return [available.fn]; + + for (var i = 0, l = available.length, ee = new Array(l); i < l; i++) { + ee[i] = available[i].fn; + } + + return ee; + }; + + /** + * Calls each of the listeners registered for a given event. + * + * @param {String|Symbol} event The event name. + * @returns {Boolean} `true` if the event had listeners, else `false`. + * @api public + */ + EventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return false; + + var listeners = this._events[evt] + , len = arguments.length + , args + , i; + + if (listeners.fn) { + if (listeners.once) this.removeListener(event, listeners.fn, undefined, true); + + switch (len) { + case 1: return listeners.fn.call(listeners.context), true; + case 2: return listeners.fn.call(listeners.context, a1), true; + case 3: return listeners.fn.call(listeners.context, a1, a2), true; + case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true; + case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true; + case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true; + } + + for (i = 1, args = new Array(len -1); i < len; i++) { + args[i - 1] = arguments[i]; + } + + listeners.fn.apply(listeners.context, args); + } else { + var length = listeners.length + , j; + + for (i = 0; i < length; i++) { + if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true); + + switch (len) { + case 1: listeners[i].fn.call(listeners[i].context); break; + case 2: listeners[i].fn.call(listeners[i].context, a1); break; + case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break; + case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break; + default: + if (!args) for (j = 1, args = new Array(len -1); j < len; j++) { + args[j - 1] = arguments[j]; + } + + listeners[i].fn.apply(listeners[i].context, args); + } + } + } + + return true; + }; + + /** + * Add a listener for a given event. + * + * @param {String|Symbol} event The event name. + * @param {Function} fn The listener function. + * @param {Mixed} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @api public + */ + EventEmitter.prototype.on = function on(event, fn, context) { + var listener = new EE(fn, context || this) + , evt = prefix ? prefix + event : event; + + if (!this._events[evt]) this._events[evt] = listener, this._eventsCount++; + else if (!this._events[evt].fn) this._events[evt].push(listener); + else this._events[evt] = [this._events[evt], listener]; + + return this; + }; + + /** + * Add a one-time listener for a given event. + * + * @param {String|Symbol} event The event name. + * @param {Function} fn The listener function. + * @param {Mixed} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @api public + */ + EventEmitter.prototype.once = function once(event, fn, context) { + var listener = new EE(fn, context || this, true) + , evt = prefix ? prefix + event : event; + + if (!this._events[evt]) this._events[evt] = listener, this._eventsCount++; + else if (!this._events[evt].fn) this._events[evt].push(listener); + else this._events[evt] = [this._events[evt], listener]; + + return this; + }; + + /** + * Remove the listeners of a given event. + * + * @param {String|Symbol} event The event name. + * @param {Function} fn Only remove the listeners that match this function. + * @param {Mixed} context Only remove the listeners that have this context. + * @param {Boolean} once Only remove one-time listeners. + * @returns {EventEmitter} `this`. + * @api public + */ + EventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return this; + if (!fn) { + if (--this._eventsCount === 0) this._events = new Events(); + else delete this._events[evt]; + return this; + } + + var listeners = this._events[evt]; + + if (listeners.fn) { + if ( + listeners.fn === fn + && (!once || listeners.once) + && (!context || listeners.context === context) + ) { + if (--this._eventsCount === 0) this._events = new Events(); + else delete this._events[evt]; + } + } else { + for (var i = 0, events = [], length = listeners.length; i < length; i++) { + if ( + listeners[i].fn !== fn + || (once && !listeners[i].once) + || (context && listeners[i].context !== context) + ) { + events.push(listeners[i]); + } + } + + // + // Reset the array, or remove it completely if we have no more listeners. + // + if (events.length) this._events[evt] = events.length === 1 ? events[0] : events; + else if (--this._eventsCount === 0) this._events = new Events(); + else delete this._events[evt]; + } + + return this; + }; + + /** + * Remove all listeners, or those of the specified event. + * + * @param {String|Symbol} [event] The event name. + * @returns {EventEmitter} `this`. + * @api public + */ + EventEmitter.prototype.removeAllListeners = function removeAllListeners(event) { + var evt; + + if (event) { + evt = prefix ? prefix + event : event; + if (this._events[evt]) { + if (--this._eventsCount === 0) this._events = new Events(); + else delete this._events[evt]; + } + } else { + this._events = new Events(); + this._eventsCount = 0; + } + + return this; + }; + + // + // Alias methods names because people roll like that. + // + EventEmitter.prototype.off = EventEmitter.prototype.removeListener; + EventEmitter.prototype.addListener = EventEmitter.prototype.on; + + // + // This function doesn't apply anymore. + // + EventEmitter.prototype.setMaxListeners = function setMaxListeners() { + return this; + }; + + // + // Expose the prefix. + // + EventEmitter.prefixed = prefix; + + // + // Allow `EventEmitter` to be imported as module namespace. + // + EventEmitter.EventEmitter = EventEmitter; + + // + // Expose the module. + // + { + module.exports = EventEmitter; + } + }); + + var escapeText = function escapeText(text) { + if (text) { + var str = String(text); + return /[&<>]/.test(str) ? "/, ']]]]>'), "]]>") : str; + } + + return ''; + }; + var escapeAttr = function escapeAttr(attr) { + return String(attr).replace(/&/g, '&').replace(/'/g, ''').replace(/"/g, '"').replace(//g, '>'); + }; + + var stringify = function stringify(ast) { + var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, + _ref$transformAttr = _ref.transformAttr, + transformAttr = _ref$transformAttr === void 0 ? function (key, value, escape) { + return "".concat(key, "=\"").concat(escape(value), "\""); + } : _ref$transformAttr, + _ref$selfClose = _ref.selfClose, + selfClose = _ref$selfClose === void 0 ? true : _ref$selfClose; + + if (Array.isArray(ast)) { + return ast.map(function (ast) { + return stringify(ast, { + transformAttr: transformAttr, + selfClose: selfClose + }); + }).join(''); + } + + if (ast.type === 'text') { + return escapeText(ast.value); + } + + var attributes = ''; + + for (var attr in ast.attributes) { + var attrStr = transformAttr(attr, ast.attributes[attr], escapeAttr, ast.name); + attributes += attrStr ? " ".concat(attrStr) : ''; + } + + return ast.children.length || !selfClose ? "<".concat(ast.name).concat(attributes, ">").concat(stringify(ast.children, { + transformAttr: transformAttr, + selfClose: selfClose + }), "") : "<".concat(ast.name).concat(attributes, "/>"); + }; + + const stringRenderer = ast => { + if (ast.attributes.style !== undefined) delete ast.attributes.style; + return stringify(ast); + }; + + /* + object-assign + (c) Sindre Sorhus + @license MIT + */ + /* eslint-disable no-unused-vars */ + var getOwnPropertySymbols = Object.getOwnPropertySymbols; + var hasOwnProperty = Object.prototype.hasOwnProperty; + var propIsEnumerable = Object.prototype.propertyIsEnumerable; + + function toObject(val) { + if (val === null || val === undefined) { + throw new TypeError('Object.assign cannot be called with null or undefined'); + } + + return Object(val); + } + + function shouldUseNative() { + try { + if (!Object.assign) { + return false; + } + + // Detect buggy property enumeration order in older V8 versions. + + // https://bugs.chromium.org/p/v8/issues/detail?id=4118 + var test1 = new String('abc'); // eslint-disable-line no-new-wrappers + test1[5] = 'de'; + if (Object.getOwnPropertyNames(test1)[0] === '5') { + return false; + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test2 = {}; + for (var i = 0; i < 10; i++) { + test2['_' + String.fromCharCode(i)] = i; + } + var order2 = Object.getOwnPropertyNames(test2).map(function (n) { + return test2[n]; + }); + if (order2.join('') !== '0123456789') { + return false; + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test3 = {}; + 'abcdefghijklmnopqrst'.split('').forEach(function (letter) { + test3[letter] = letter; + }); + if (Object.keys(Object.assign({}, test3)).join('') !== + 'abcdefghijklmnopqrst') { + return false; + } + + return true; + } catch (err) { + // We don't expect any of the above to throw, but better to be safe. + return false; + } + } + + var objectAssign = shouldUseNative() ? Object.assign : function (target, source) { + var from; + var to = toObject(target); + var symbols; + + for (var s = 1; s < arguments.length; s++) { + from = Object(arguments[s]); + + for (var key in from) { + if (hasOwnProperty.call(from, key)) { + to[key] = from[key]; + } + } + + if (getOwnPropertySymbols) { + symbols = getOwnPropertySymbols(from); + for (var i = 0; i < symbols.length; i++) { + if (propIsEnumerable.call(from, symbols[i])) { + to[symbols[i]] = from[symbols[i]]; + } + } + } + } + + return to; + }; + + function ca(a,b,d,c,e,g,h,f){if(!a){a=void 0;if(void 0===b)a=Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var l=[d,c,e,g,h,f],m=0;a=Error(b.replace(/%s/g,function(){return l[m++]}));a.name="Invariant Violation";}a.framesToPop=1;throw a;}} + function B(a){for(var b=arguments.length-1,d="https://reactjs.org/docs/error-decoder.html?invariant="+a,c=0;c 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { + args[_key - 1] = arguments[_key]; + } + + var argIndex = 0; + var message = 'Warning: ' + format.replace(/%s/g, function () { + return args[argIndex++]; + }); + if (typeof console !== 'undefined') { + console.warn(message); + } + try { + // --- Welcome to debugging React --- + // This error was thrown as a convenience so that you can use this stack + // to find the callsite that caused this warning to fire. + throw new Error(message); + } catch (x) {} + }; + + lowPriorityWarning = function (condition, format) { + if (format === undefined) { + throw new Error('`lowPriorityWarning(condition, format, ...args)` requires a warning ' + 'message argument'); + } + if (!condition) { + for (var _len2 = arguments.length, args = Array(_len2 > 2 ? _len2 - 2 : 0), _key2 = 2; _key2 < _len2; _key2++) { + args[_key2 - 2] = arguments[_key2]; + } + + printWarning.apply(undefined, [format].concat(args)); + } + }; + } + + var lowPriorityWarning$1 = lowPriorityWarning; + + /** + * Similar to invariant but only logs a warning if the condition is not met. + * This can be used to log issues in development environments in critical + * paths. Removing the logging code for production environments will keep the + * same logic and follow the same code paths. + */ + + var warningWithoutStack = function () {}; + + { + warningWithoutStack = function (condition, format) { + for (var _len = arguments.length, args = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) { + args[_key - 2] = arguments[_key]; + } + + if (format === undefined) { + throw new Error('`warningWithoutStack(condition, format, ...args)` requires a warning ' + 'message argument'); + } + if (args.length > 8) { + // Check before the condition to catch violations early. + throw new Error('warningWithoutStack() currently supports at most 8 arguments.'); + } + if (condition) { + return; + } + if (typeof console !== 'undefined') { + var argsWithFormat = args.map(function (item) { + return '' + item; + }); + argsWithFormat.unshift('Warning: ' + format); + + // We intentionally don't use spread (or .apply) directly because it + // breaks IE9: https://github.com/facebook/react/issues/13610 + Function.prototype.apply.call(console.error, console, argsWithFormat); + } + try { + // --- Welcome to debugging React --- + // This error was thrown as a convenience so that you can use this stack + // to find the callsite that caused this warning to fire. + var argIndex = 0; + var message = 'Warning: ' + format.replace(/%s/g, function () { + return args[argIndex++]; + }); + throw new Error(message); + } catch (x) {} + }; + } + + var warningWithoutStack$1 = warningWithoutStack; + + var didWarnStateUpdateForUnmountedComponent = {}; + + function warnNoop(publicInstance, callerName) { + { + var _constructor = publicInstance.constructor; + var componentName = _constructor && (_constructor.displayName || _constructor.name) || 'ReactClass'; + var warningKey = componentName + '.' + callerName; + if (didWarnStateUpdateForUnmountedComponent[warningKey]) { + return; + } + warningWithoutStack$1(false, "Can't call %s on a component that is not yet mounted. " + 'This is a no-op, but it might indicate a bug in your application. ' + 'Instead, assign to `this.state` directly or define a `state = {};` ' + 'class property with the desired state in the %s component.', callerName, componentName); + didWarnStateUpdateForUnmountedComponent[warningKey] = true; + } + } + + /** + * This is the abstract API for an update queue. + */ + var ReactNoopUpdateQueue = { + /** + * Checks whether or not this composite component is mounted. + * @param {ReactClass} publicInstance The instance we want to test. + * @return {boolean} True if mounted, false otherwise. + * @protected + * @final + */ + isMounted: function (publicInstance) { + return false; + }, + + /** + * Forces an update. This should only be invoked when it is known with + * certainty that we are **not** in a DOM transaction. + * + * You may want to call this when you know that some deeper aspect of the + * component's state has changed but `setState` was not called. + * + * This will not invoke `shouldComponentUpdate`, but it will invoke + * `componentWillUpdate` and `componentDidUpdate`. + * + * @param {ReactClass} publicInstance The instance that should rerender. + * @param {?function} callback Called after component is updated. + * @param {?string} callerName name of the calling function in the public API. + * @internal + */ + enqueueForceUpdate: function (publicInstance, callback, callerName) { + warnNoop(publicInstance, 'forceUpdate'); + }, + + /** + * Replaces all of the state. Always use this or `setState` to mutate state. + * You should treat `this.state` as immutable. + * + * There is no guarantee that `this.state` will be immediately updated, so + * accessing `this.state` after calling this method may return the old value. + * + * @param {ReactClass} publicInstance The instance that should rerender. + * @param {object} completeState Next state. + * @param {?function} callback Called after component is updated. + * @param {?string} callerName name of the calling function in the public API. + * @internal + */ + enqueueReplaceState: function (publicInstance, completeState, callback, callerName) { + warnNoop(publicInstance, 'replaceState'); + }, + + /** + * Sets a subset of the state. This only exists because _pendingState is + * internal. This provides a merging strategy that is not available to deep + * properties which is confusing. TODO: Expose pendingState or don't use it + * during the merge. + * + * @param {ReactClass} publicInstance The instance that should rerender. + * @param {object} partialState Next partial state to be merged with state. + * @param {?function} callback Called after component is updated. + * @param {?string} Name of the calling function in the public API. + * @internal + */ + enqueueSetState: function (publicInstance, partialState, callback, callerName) { + warnNoop(publicInstance, 'setState'); + } + }; + + var emptyObject = {}; + { + Object.freeze(emptyObject); + } + + /** + * Base class helpers for the updating state of a component. + */ + function Component(props, context, updater) { + this.props = props; + this.context = context; + // If a component has string refs, we will assign a different object later. + this.refs = emptyObject; + // We initialize the default updater but the real one gets injected by the + // renderer. + this.updater = updater || ReactNoopUpdateQueue; + } + + Component.prototype.isReactComponent = {}; + + /** + * Sets a subset of the state. Always use this to mutate + * state. You should treat `this.state` as immutable. + * + * There is no guarantee that `this.state` will be immediately updated, so + * accessing `this.state` after calling this method may return the old value. + * + * There is no guarantee that calls to `setState` will run synchronously, + * as they may eventually be batched together. You can provide an optional + * callback that will be executed when the call to setState is actually + * completed. + * + * When a function is provided to setState, it will be called at some point in + * the future (not synchronously). It will be called with the up to date + * component arguments (state, props, context). These values can be different + * from this.* because your function may be called after receiveProps but before + * shouldComponentUpdate, and this new state, props, and context will not yet be + * assigned to this. + * + * @param {object|function} partialState Next partial state or function to + * produce next partial state to be merged with current state. + * @param {?function} callback Called after state is updated. + * @final + * @protected + */ + Component.prototype.setState = function (partialState, callback) { + !(typeof partialState === 'object' || typeof partialState === 'function' || partialState == null) ? invariant(false, 'setState(...): takes an object of state variables to update or a function which returns an object of state variables.') : void 0; + this.updater.enqueueSetState(this, partialState, callback, 'setState'); + }; + + /** + * Forces an update. This should only be invoked when it is known with + * certainty that we are **not** in a DOM transaction. + * + * You may want to call this when you know that some deeper aspect of the + * component's state has changed but `setState` was not called. + * + * This will not invoke `shouldComponentUpdate`, but it will invoke + * `componentWillUpdate` and `componentDidUpdate`. + * + * @param {?function} callback Called after update is complete. + * @final + * @protected + */ + Component.prototype.forceUpdate = function (callback) { + this.updater.enqueueForceUpdate(this, callback, 'forceUpdate'); + }; + + /** + * Deprecated APIs. These APIs used to exist on classic React classes but since + * we would like to deprecate them, we're not going to move them over to this + * modern base class. Instead, we define a getter that warns if it's accessed. + */ + { + var deprecatedAPIs = { + isMounted: ['isMounted', 'Instead, make sure to clean up subscriptions and pending requests in ' + 'componentWillUnmount to prevent memory leaks.'], + replaceState: ['replaceState', 'Refactor your code to use setState instead (see ' + 'https://github.com/facebook/react/issues/3236).'] + }; + var defineDeprecationWarning = function (methodName, info) { + Object.defineProperty(Component.prototype, methodName, { + get: function () { + lowPriorityWarning$1(false, '%s(...) is deprecated in plain JavaScript React classes. %s', info[0], info[1]); + return undefined; + } + }); + }; + for (var fnName in deprecatedAPIs) { + if (deprecatedAPIs.hasOwnProperty(fnName)) { + defineDeprecationWarning(fnName, deprecatedAPIs[fnName]); + } + } + } + + function ComponentDummy() {} + ComponentDummy.prototype = Component.prototype; + + /** + * Convenience component with default shallow equality check for sCU. + */ + function PureComponent(props, context, updater) { + this.props = props; + this.context = context; + // If a component has string refs, we will assign a different object later. + this.refs = emptyObject; + this.updater = updater || ReactNoopUpdateQueue; + } + + var pureComponentPrototype = PureComponent.prototype = new ComponentDummy(); + pureComponentPrototype.constructor = PureComponent; + // Avoid an extra prototype jump for these methods. + _assign(pureComponentPrototype, Component.prototype); + pureComponentPrototype.isPureReactComponent = true; + + // an immutable object with a single mutable value + function createRef() { + var refObject = { + current: null + }; + { + Object.seal(refObject); + } + return refObject; + } + + /** + * Keeps track of the current dispatcher. + */ + var ReactCurrentDispatcher = { + /** + * @internal + * @type {ReactComponent} + */ + current: null + }; + + /** + * Keeps track of the current owner. + * + * The current owner is the component who should own any components that are + * currently being constructed. + */ + var ReactCurrentOwner = { + /** + * @internal + * @type {ReactComponent} + */ + current: null + }; + + var BEFORE_SLASH_RE = /^(.*)[\\\/]/; + + var describeComponentFrame = function (name, source, ownerName) { + var sourceInfo = ''; + if (source) { + var path = source.fileName; + var fileName = path.replace(BEFORE_SLASH_RE, ''); + { + // In DEV, include code for a common special case: + // prefer "folder/index.js" instead of just "index.js". + if (/^index\./.test(fileName)) { + var match = path.match(BEFORE_SLASH_RE); + if (match) { + var pathBeforeSlash = match[1]; + if (pathBeforeSlash) { + var folderName = pathBeforeSlash.replace(BEFORE_SLASH_RE, ''); + fileName = folderName + '/' + fileName; + } + } + } + } + sourceInfo = ' (at ' + fileName + ':' + source.lineNumber + ')'; + } else if (ownerName) { + sourceInfo = ' (created by ' + ownerName + ')'; + } + return '\n in ' + (name || 'Unknown') + sourceInfo; + }; + + var Resolved = 1; + + + function refineResolvedLazyComponent(lazyComponent) { + return lazyComponent._status === Resolved ? lazyComponent._result : null; + } + + function getWrappedName(outerType, innerType, wrapperName) { + var functionName = innerType.displayName || innerType.name || ''; + return outerType.displayName || (functionName !== '' ? wrapperName + '(' + functionName + ')' : wrapperName); + } + + function getComponentName(type) { + if (type == null) { + // Host root, text node or just invalid type. + return null; + } + { + if (typeof type.tag === 'number') { + warningWithoutStack$1(false, 'Received an unexpected object in getComponentName(). ' + 'This is likely a bug in React. Please file an issue.'); + } + } + if (typeof type === 'function') { + return type.displayName || type.name || null; + } + if (typeof type === 'string') { + return type; + } + switch (type) { + case REACT_CONCURRENT_MODE_TYPE: + return 'ConcurrentMode'; + case REACT_FRAGMENT_TYPE: + return 'Fragment'; + case REACT_PORTAL_TYPE: + return 'Portal'; + case REACT_PROFILER_TYPE: + return 'Profiler'; + case REACT_STRICT_MODE_TYPE: + return 'StrictMode'; + case REACT_SUSPENSE_TYPE: + return 'Suspense'; + } + if (typeof type === 'object') { + switch (type.$$typeof) { + case REACT_CONTEXT_TYPE: + return 'Context.Consumer'; + case REACT_PROVIDER_TYPE: + return 'Context.Provider'; + case REACT_FORWARD_REF_TYPE: + return getWrappedName(type, type.render, 'ForwardRef'); + case REACT_MEMO_TYPE: + return getComponentName(type.type); + case REACT_LAZY_TYPE: + { + var thenable = type; + var resolvedThenable = refineResolvedLazyComponent(thenable); + if (resolvedThenable) { + return getComponentName(resolvedThenable); + } + } + } + } + return null; + } + + var ReactDebugCurrentFrame = {}; + + var currentlyValidatingElement = null; + + function setCurrentlyValidatingElement(element) { + { + currentlyValidatingElement = element; + } + } + + { + // Stack implementation injected by the current renderer. + ReactDebugCurrentFrame.getCurrentStack = null; + + ReactDebugCurrentFrame.getStackAddendum = function () { + var stack = ''; + + // Add an extra top frame while an element is being validated + if (currentlyValidatingElement) { + var name = getComponentName(currentlyValidatingElement.type); + var owner = currentlyValidatingElement._owner; + stack += describeComponentFrame(name, currentlyValidatingElement._source, owner && getComponentName(owner.type)); + } + + // Delegate to the injected renderer-specific implementation + var impl = ReactDebugCurrentFrame.getCurrentStack; + if (impl) { + stack += impl() || ''; + } + + return stack; + }; + } + + var ReactSharedInternals = { + ReactCurrentDispatcher: ReactCurrentDispatcher, + ReactCurrentOwner: ReactCurrentOwner, + // Used by renderers to avoid bundling object-assign twice in UMD bundles: + assign: _assign + }; + + { + _assign(ReactSharedInternals, { + // These should not be included in production. + ReactDebugCurrentFrame: ReactDebugCurrentFrame, + // Shim for React DOM 16.0.0 which still destructured (but not used) this. + // TODO: remove in React 17.0. + ReactComponentTreeHook: {} + }); + } + + /** + * Similar to invariant but only logs a warning if the condition is not met. + * This can be used to log issues in development environments in critical + * paths. Removing the logging code for production environments will keep the + * same logic and follow the same code paths. + */ + + var warning = warningWithoutStack$1; + + { + warning = function (condition, format) { + if (condition) { + return; + } + var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame; + var stack = ReactDebugCurrentFrame.getStackAddendum(); + // eslint-disable-next-line react-internal/warning-and-invariant-args + + for (var _len = arguments.length, args = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) { + args[_key - 2] = arguments[_key]; + } + + warningWithoutStack$1.apply(undefined, [false, format + '%s'].concat(args, [stack])); + }; + } + + var warning$1 = warning; + + var hasOwnProperty = Object.prototype.hasOwnProperty; + + var RESERVED_PROPS = { + key: true, + ref: true, + __self: true, + __source: true + }; + + var specialPropKeyWarningShown = void 0; + var specialPropRefWarningShown = void 0; + + function hasValidRef(config) { + { + if (hasOwnProperty.call(config, 'ref')) { + var getter = Object.getOwnPropertyDescriptor(config, 'ref').get; + if (getter && getter.isReactWarning) { + return false; + } + } + } + return config.ref !== undefined; + } + + function hasValidKey(config) { + { + if (hasOwnProperty.call(config, 'key')) { + var getter = Object.getOwnPropertyDescriptor(config, 'key').get; + if (getter && getter.isReactWarning) { + return false; + } + } + } + return config.key !== undefined; + } + + function defineKeyPropWarningGetter(props, displayName) { + var warnAboutAccessingKey = function () { + if (!specialPropKeyWarningShown) { + specialPropKeyWarningShown = true; + warningWithoutStack$1(false, '%s: `key` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://fb.me/react-special-props)', displayName); + } + }; + warnAboutAccessingKey.isReactWarning = true; + Object.defineProperty(props, 'key', { + get: warnAboutAccessingKey, + configurable: true + }); + } + + function defineRefPropWarningGetter(props, displayName) { + var warnAboutAccessingRef = function () { + if (!specialPropRefWarningShown) { + specialPropRefWarningShown = true; + warningWithoutStack$1(false, '%s: `ref` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://fb.me/react-special-props)', displayName); + } + }; + warnAboutAccessingRef.isReactWarning = true; + Object.defineProperty(props, 'ref', { + get: warnAboutAccessingRef, + configurable: true + }); + } + + /** + * Factory method to create a new React element. This no longer adheres to + * the class pattern, so do not use new to call it. Also, no instanceof check + * will work. Instead test $$typeof field against Symbol.for('react.element') to check + * if something is a React Element. + * + * @param {*} type + * @param {*} key + * @param {string|object} ref + * @param {*} self A *temporary* helper to detect places where `this` is + * different from the `owner` when React.createElement is called, so that we + * can warn. We want to get rid of owner and replace string `ref`s with arrow + * functions, and as long as `this` and owner are the same, there will be no + * change in behavior. + * @param {*} source An annotation object (added by a transpiler or otherwise) + * indicating filename, line number, and/or other information. + * @param {*} owner + * @param {*} props + * @internal + */ + var ReactElement = function (type, key, ref, self, source, owner, props) { + var element = { + // This tag allows us to uniquely identify this as a React Element + $$typeof: REACT_ELEMENT_TYPE, + + // Built-in properties that belong on the element + type: type, + key: key, + ref: ref, + props: props, + + // Record the component responsible for creating this element. + _owner: owner + }; + + { + // The validation flag is currently mutative. We put it on + // an external backing store so that we can freeze the whole object. + // This can be replaced with a WeakMap once they are implemented in + // commonly used development environments. + element._store = {}; + + // To make comparing ReactElements easier for testing purposes, we make + // the validation flag non-enumerable (where possible, which should + // include every environment we run tests in), so the test framework + // ignores it. + Object.defineProperty(element._store, 'validated', { + configurable: false, + enumerable: false, + writable: true, + value: false + }); + // self and source are DEV only properties. + Object.defineProperty(element, '_self', { + configurable: false, + enumerable: false, + writable: false, + value: self + }); + // Two elements created in two different places should be considered + // equal for testing purposes and therefore we hide it from enumeration. + Object.defineProperty(element, '_source', { + configurable: false, + enumerable: false, + writable: false, + value: source + }); + if (Object.freeze) { + Object.freeze(element.props); + Object.freeze(element); + } + } + + return element; + }; + + /** + * Create and return a new ReactElement of the given type. + * See https://reactjs.org/docs/react-api.html#createelement + */ + function createElement(type, config, children) { + var propName = void 0; + + // Reserved names are extracted + var props = {}; + + var key = null; + var ref = null; + var self = null; + var source = null; + + if (config != null) { + if (hasValidRef(config)) { + ref = config.ref; + } + if (hasValidKey(config)) { + key = '' + config.key; + } + + self = config.__self === undefined ? null : config.__self; + source = config.__source === undefined ? null : config.__source; + // Remaining properties are added to a new props object + for (propName in config) { + if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) { + props[propName] = config[propName]; + } + } + } + + // Children can be more than one argument, and those are transferred onto + // the newly allocated props object. + var childrenLength = arguments.length - 2; + if (childrenLength === 1) { + props.children = children; + } else if (childrenLength > 1) { + var childArray = Array(childrenLength); + for (var i = 0; i < childrenLength; i++) { + childArray[i] = arguments[i + 2]; + } + { + if (Object.freeze) { + Object.freeze(childArray); + } + } + props.children = childArray; + } + + // Resolve default props + if (type && type.defaultProps) { + var defaultProps = type.defaultProps; + for (propName in defaultProps) { + if (props[propName] === undefined) { + props[propName] = defaultProps[propName]; + } + } + } + { + if (key || ref) { + var displayName = typeof type === 'function' ? type.displayName || type.name || 'Unknown' : type; + if (key) { + defineKeyPropWarningGetter(props, displayName); + } + if (ref) { + defineRefPropWarningGetter(props, displayName); + } + } + } + return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props); + } + + /** + * Return a function that produces ReactElements of a given type. + * See https://reactjs.org/docs/react-api.html#createfactory + */ + + + function cloneAndReplaceKey(oldElement, newKey) { + var newElement = ReactElement(oldElement.type, newKey, oldElement.ref, oldElement._self, oldElement._source, oldElement._owner, oldElement.props); + + return newElement; + } + + /** + * Clone and return a new ReactElement using element as the starting point. + * See https://reactjs.org/docs/react-api.html#cloneelement + */ + function cloneElement(element, config, children) { + !!(element === null || element === undefined) ? invariant(false, 'React.cloneElement(...): The argument must be a React element, but you passed %s.', element) : void 0; + + var propName = void 0; + + // Original props are copied + var props = _assign({}, element.props); + + // Reserved names are extracted + var key = element.key; + var ref = element.ref; + // Self is preserved since the owner is preserved. + var self = element._self; + // Source is preserved since cloneElement is unlikely to be targeted by a + // transpiler, and the original source is probably a better indicator of the + // true owner. + var source = element._source; + + // Owner will be preserved, unless ref is overridden + var owner = element._owner; + + if (config != null) { + if (hasValidRef(config)) { + // Silently steal the ref from the parent. + ref = config.ref; + owner = ReactCurrentOwner.current; + } + if (hasValidKey(config)) { + key = '' + config.key; + } + + // Remaining properties override existing props + var defaultProps = void 0; + if (element.type && element.type.defaultProps) { + defaultProps = element.type.defaultProps; + } + for (propName in config) { + if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) { + if (config[propName] === undefined && defaultProps !== undefined) { + // Resolve default props + props[propName] = defaultProps[propName]; + } else { + props[propName] = config[propName]; + } + } + } + } + + // Children can be more than one argument, and those are transferred onto + // the newly allocated props object. + var childrenLength = arguments.length - 2; + if (childrenLength === 1) { + props.children = children; + } else if (childrenLength > 1) { + var childArray = Array(childrenLength); + for (var i = 0; i < childrenLength; i++) { + childArray[i] = arguments[i + 2]; + } + props.children = childArray; + } + + return ReactElement(element.type, key, ref, self, source, owner, props); + } + + /** + * Verifies the object is a ReactElement. + * See https://reactjs.org/docs/react-api.html#isvalidelement + * @param {?object} object + * @return {boolean} True if `object` is a ReactElement. + * @final + */ + function isValidElement(object) { + return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE; + } + + var SEPARATOR = '.'; + var SUBSEPARATOR = ':'; + + /** + * Escape and wrap key so it is safe to use as a reactid + * + * @param {string} key to be escaped. + * @return {string} the escaped key. + */ + function escape(key) { + var escapeRegex = /[=:]/g; + var escaperLookup = { + '=': '=0', + ':': '=2' + }; + var escapedString = ('' + key).replace(escapeRegex, function (match) { + return escaperLookup[match]; + }); + + return '$' + escapedString; + } + + /** + * TODO: Test that a single child and an array with one item have the same key + * pattern. + */ + + var didWarnAboutMaps = false; + + var userProvidedKeyEscapeRegex = /\/+/g; + function escapeUserProvidedKey(text) { + return ('' + text).replace(userProvidedKeyEscapeRegex, '$&/'); + } + + var POOL_SIZE = 10; + var traverseContextPool = []; + function getPooledTraverseContext(mapResult, keyPrefix, mapFunction, mapContext) { + if (traverseContextPool.length) { + var traverseContext = traverseContextPool.pop(); + traverseContext.result = mapResult; + traverseContext.keyPrefix = keyPrefix; + traverseContext.func = mapFunction; + traverseContext.context = mapContext; + traverseContext.count = 0; + return traverseContext; + } else { + return { + result: mapResult, + keyPrefix: keyPrefix, + func: mapFunction, + context: mapContext, + count: 0 + }; + } + } + + function releaseTraverseContext(traverseContext) { + traverseContext.result = null; + traverseContext.keyPrefix = null; + traverseContext.func = null; + traverseContext.context = null; + traverseContext.count = 0; + if (traverseContextPool.length < POOL_SIZE) { + traverseContextPool.push(traverseContext); + } + } + + /** + * @param {?*} children Children tree container. + * @param {!string} nameSoFar Name of the key path so far. + * @param {!function} callback Callback to invoke with each child found. + * @param {?*} traverseContext Used to pass information throughout the traversal + * process. + * @return {!number} The number of children in this subtree. + */ + function traverseAllChildrenImpl(children, nameSoFar, callback, traverseContext) { + var type = typeof children; + + if (type === 'undefined' || type === 'boolean') { + // All of the above are perceived as null. + children = null; + } + + var invokeCallback = false; + + if (children === null) { + invokeCallback = true; + } else { + switch (type) { + case 'string': + case 'number': + invokeCallback = true; + break; + case 'object': + switch (children.$$typeof) { + case REACT_ELEMENT_TYPE: + case REACT_PORTAL_TYPE: + invokeCallback = true; + } + } + } + + if (invokeCallback) { + callback(traverseContext, children, + // If it's the only child, treat the name as if it was wrapped in an array + // so that it's consistent if the number of children grows. + nameSoFar === '' ? SEPARATOR + getComponentKey(children, 0) : nameSoFar); + return 1; + } + + var child = void 0; + var nextName = void 0; + var subtreeCount = 0; // Count of children found in the current subtree. + var nextNamePrefix = nameSoFar === '' ? SEPARATOR : nameSoFar + SUBSEPARATOR; + + if (Array.isArray(children)) { + for (var i = 0; i < children.length; i++) { + child = children[i]; + nextName = nextNamePrefix + getComponentKey(child, i); + subtreeCount += traverseAllChildrenImpl(child, nextName, callback, traverseContext); + } + } else { + var iteratorFn = getIteratorFn(children); + if (typeof iteratorFn === 'function') { + { + // Warn about using Maps as children + if (iteratorFn === children.entries) { + !didWarnAboutMaps ? warning$1(false, 'Using Maps as children is unsupported and will likely yield ' + 'unexpected results. Convert it to a sequence/iterable of keyed ' + 'ReactElements instead.') : void 0; + didWarnAboutMaps = true; + } + } + + var iterator = iteratorFn.call(children); + var step = void 0; + var ii = 0; + while (!(step = iterator.next()).done) { + child = step.value; + nextName = nextNamePrefix + getComponentKey(child, ii++); + subtreeCount += traverseAllChildrenImpl(child, nextName, callback, traverseContext); + } + } else if (type === 'object') { + var addendum = ''; + { + addendum = ' If you meant to render a collection of children, use an array ' + 'instead.' + ReactDebugCurrentFrame.getStackAddendum(); + } + var childrenString = '' + children; + invariant(false, 'Objects are not valid as a React child (found: %s).%s', childrenString === '[object Object]' ? 'object with keys {' + Object.keys(children).join(', ') + '}' : childrenString, addendum); + } + } + + return subtreeCount; + } + + /** + * Traverses children that are typically specified as `props.children`, but + * might also be specified through attributes: + * + * - `traverseAllChildren(this.props.children, ...)` + * - `traverseAllChildren(this.props.leftPanelChildren, ...)` + * + * The `traverseContext` is an optional argument that is passed through the + * entire traversal. It can be used to store accumulations or anything else that + * the callback might find relevant. + * + * @param {?*} children Children tree object. + * @param {!function} callback To invoke upon traversing each child. + * @param {?*} traverseContext Context for traversal. + * @return {!number} The number of children in this subtree. + */ + function traverseAllChildren(children, callback, traverseContext) { + if (children == null) { + return 0; + } + + return traverseAllChildrenImpl(children, '', callback, traverseContext); + } + + /** + * Generate a key string that identifies a component within a set. + * + * @param {*} component A component that could contain a manual key. + * @param {number} index Index that is used if a manual key is not provided. + * @return {string} + */ + function getComponentKey(component, index) { + // Do some typechecking here since we call this blindly. We want to ensure + // that we don't block potential future ES APIs. + if (typeof component === 'object' && component !== null && component.key != null) { + // Explicit key + return escape(component.key); + } + // Implicit key determined by the index in the set + return index.toString(36); + } + + function forEachSingleChild(bookKeeping, child, name) { + var func = bookKeeping.func, + context = bookKeeping.context; + + func.call(context, child, bookKeeping.count++); + } + + /** + * Iterates through children that are typically specified as `props.children`. + * + * See https://reactjs.org/docs/react-api.html#reactchildrenforeach + * + * The provided forEachFunc(child, index) will be called for each + * leaf child. + * + * @param {?*} children Children tree container. + * @param {function(*, int)} forEachFunc + * @param {*} forEachContext Context for forEachContext. + */ + function forEachChildren(children, forEachFunc, forEachContext) { + if (children == null) { + return children; + } + var traverseContext = getPooledTraverseContext(null, null, forEachFunc, forEachContext); + traverseAllChildren(children, forEachSingleChild, traverseContext); + releaseTraverseContext(traverseContext); + } + + function mapSingleChildIntoContext(bookKeeping, child, childKey) { + var result = bookKeeping.result, + keyPrefix = bookKeeping.keyPrefix, + func = bookKeeping.func, + context = bookKeeping.context; + + + var mappedChild = func.call(context, child, bookKeeping.count++); + if (Array.isArray(mappedChild)) { + mapIntoWithKeyPrefixInternal(mappedChild, result, childKey, function (c) { + return c; + }); + } else if (mappedChild != null) { + if (isValidElement(mappedChild)) { + mappedChild = cloneAndReplaceKey(mappedChild, + // Keep both the (mapped) and old keys if they differ, just as + // traverseAllChildren used to do for objects as children + keyPrefix + (mappedChild.key && (!child || child.key !== mappedChild.key) ? escapeUserProvidedKey(mappedChild.key) + '/' : '') + childKey); + } + result.push(mappedChild); + } + } + + function mapIntoWithKeyPrefixInternal(children, array, prefix, func, context) { + var escapedPrefix = ''; + if (prefix != null) { + escapedPrefix = escapeUserProvidedKey(prefix) + '/'; + } + var traverseContext = getPooledTraverseContext(array, escapedPrefix, func, context); + traverseAllChildren(children, mapSingleChildIntoContext, traverseContext); + releaseTraverseContext(traverseContext); + } + + /** + * Maps children that are typically specified as `props.children`. + * + * See https://reactjs.org/docs/react-api.html#reactchildrenmap + * + * The provided mapFunction(child, key, index) will be called for each + * leaf child. + * + * @param {?*} children Children tree container. + * @param {function(*, int)} func The map function. + * @param {*} context Context for mapFunction. + * @return {object} Object containing the ordered map of results. + */ + function mapChildren(children, func, context) { + if (children == null) { + return children; + } + var result = []; + mapIntoWithKeyPrefixInternal(children, result, null, func, context); + return result; + } + + /** + * Count the number of children that are typically specified as + * `props.children`. + * + * See https://reactjs.org/docs/react-api.html#reactchildrencount + * + * @param {?*} children Children tree container. + * @return {number} The number of children. + */ + function countChildren(children) { + return traverseAllChildren(children, function () { + return null; + }, null); + } + + /** + * Flatten a children object (typically specified as `props.children`) and + * return an array with appropriately re-keyed children. + * + * See https://reactjs.org/docs/react-api.html#reactchildrentoarray + */ + function toArray(children) { + var result = []; + mapIntoWithKeyPrefixInternal(children, result, null, function (child) { + return child; + }); + return result; + } + + /** + * Returns the first child in a collection of children and verifies that there + * is only one child in the collection. + * + * See https://reactjs.org/docs/react-api.html#reactchildrenonly + * + * The current implementation of this function assumes that a single child gets + * passed without a wrapper, but the purpose of this helper function is to + * abstract away the particular structure of children. + * + * @param {?object} children Child collection structure. + * @return {ReactElement} The first and only `ReactElement` contained in the + * structure. + */ + function onlyChild(children) { + !isValidElement(children) ? invariant(false, 'React.Children.only expected to receive a single React element child.') : void 0; + return children; + } + + function createContext(defaultValue, calculateChangedBits) { + if (calculateChangedBits === undefined) { + calculateChangedBits = null; + } else { + { + !(calculateChangedBits === null || typeof calculateChangedBits === 'function') ? warningWithoutStack$1(false, 'createContext: Expected the optional second argument to be a ' + 'function. Instead received: %s', calculateChangedBits) : void 0; + } + } + + var context = { + $$typeof: REACT_CONTEXT_TYPE, + _calculateChangedBits: calculateChangedBits, + // As a workaround to support multiple concurrent renderers, we categorize + // some renderers as primary and others as secondary. We only expect + // there to be two concurrent renderers at most: React Native (primary) and + // Fabric (secondary); React DOM (primary) and React ART (secondary). + // Secondary renderers store their context values on separate fields. + _currentValue: defaultValue, + _currentValue2: defaultValue, + // Used to track how many concurrent renderers this context currently + // supports within in a single renderer. Such as parallel server rendering. + _threadCount: 0, + // These are circular + Provider: null, + Consumer: null + }; + + context.Provider = { + $$typeof: REACT_PROVIDER_TYPE, + _context: context + }; + + var hasWarnedAboutUsingNestedContextConsumers = false; + var hasWarnedAboutUsingConsumerProvider = false; + + { + // A separate object, but proxies back to the original context object for + // backwards compatibility. It has a different $$typeof, so we can properly + // warn for the incorrect usage of Context as a Consumer. + var Consumer = { + $$typeof: REACT_CONTEXT_TYPE, + _context: context, + _calculateChangedBits: context._calculateChangedBits + }; + // $FlowFixMe: Flow complains about not setting a value, which is intentional here + Object.defineProperties(Consumer, { + Provider: { + get: function () { + if (!hasWarnedAboutUsingConsumerProvider) { + hasWarnedAboutUsingConsumerProvider = true; + warning$1(false, 'Rendering is not supported and will be removed in ' + 'a future major release. Did you mean to render instead?'); + } + return context.Provider; + }, + set: function (_Provider) { + context.Provider = _Provider; + } + }, + _currentValue: { + get: function () { + return context._currentValue; + }, + set: function (_currentValue) { + context._currentValue = _currentValue; + } + }, + _currentValue2: { + get: function () { + return context._currentValue2; + }, + set: function (_currentValue2) { + context._currentValue2 = _currentValue2; + } + }, + _threadCount: { + get: function () { + return context._threadCount; + }, + set: function (_threadCount) { + context._threadCount = _threadCount; + } + }, + Consumer: { + get: function () { + if (!hasWarnedAboutUsingNestedContextConsumers) { + hasWarnedAboutUsingNestedContextConsumers = true; + warning$1(false, 'Rendering is not supported and will be removed in ' + 'a future major release. Did you mean to render instead?'); + } + return context.Consumer; + } + } + }); + // $FlowFixMe: Flow complains about missing properties because it doesn't understand defineProperty + context.Consumer = Consumer; + } + + { + context._currentRenderer = null; + context._currentRenderer2 = null; + } + + return context; + } + + function lazy(ctor) { + var lazyType = { + $$typeof: REACT_LAZY_TYPE, + _ctor: ctor, + // React uses these fields to store the result. + _status: -1, + _result: null + }; + + { + // In production, this would just set it on the object. + var defaultProps = void 0; + var propTypes = void 0; + Object.defineProperties(lazyType, { + defaultProps: { + configurable: true, + get: function () { + return defaultProps; + }, + set: function (newDefaultProps) { + warning$1(false, 'React.lazy(...): It is not supported to assign `defaultProps` to ' + 'a lazy component import. Either specify them where the component ' + 'is defined, or create a wrapping component around it.'); + defaultProps = newDefaultProps; + // Match production behavior more closely: + Object.defineProperty(lazyType, 'defaultProps', { + enumerable: true + }); + } + }, + propTypes: { + configurable: true, + get: function () { + return propTypes; + }, + set: function (newPropTypes) { + warning$1(false, 'React.lazy(...): It is not supported to assign `propTypes` to ' + 'a lazy component import. Either specify them where the component ' + 'is defined, or create a wrapping component around it.'); + propTypes = newPropTypes; + // Match production behavior more closely: + Object.defineProperty(lazyType, 'propTypes', { + enumerable: true + }); + } + } + }); + } + + return lazyType; + } + + function forwardRef(render) { + { + if (render != null && render.$$typeof === REACT_MEMO_TYPE) { + warningWithoutStack$1(false, 'forwardRef requires a render function but received a `memo` ' + 'component. Instead of forwardRef(memo(...)), use ' + 'memo(forwardRef(...)).'); + } else if (typeof render !== 'function') { + warningWithoutStack$1(false, 'forwardRef requires a render function but was given %s.', render === null ? 'null' : typeof render); + } else { + !( + // Do not warn for 0 arguments because it could be due to usage of the 'arguments' object + render.length === 0 || render.length === 2) ? warningWithoutStack$1(false, 'forwardRef render functions accept exactly two parameters: props and ref. %s', render.length === 1 ? 'Did you forget to use the ref parameter?' : 'Any additional parameter will be undefined.') : void 0; + } + + if (render != null) { + !(render.defaultProps == null && render.propTypes == null) ? warningWithoutStack$1(false, 'forwardRef render functions do not support propTypes or defaultProps. ' + 'Did you accidentally pass a React component?') : void 0; + } + } + + return { + $$typeof: REACT_FORWARD_REF_TYPE, + render: render + }; + } + + function isValidElementType(type) { + return typeof type === 'string' || typeof type === 'function' || + // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill. + type === REACT_FRAGMENT_TYPE || type === REACT_CONCURRENT_MODE_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || typeof type === 'object' && type !== null && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE); + } + + function memo(type, compare) { + { + if (!isValidElementType(type)) { + warningWithoutStack$1(false, 'memo: The first argument must be a component. Instead ' + 'received: %s', type === null ? 'null' : typeof type); + } + } + return { + $$typeof: REACT_MEMO_TYPE, + type: type, + compare: compare === undefined ? null : compare + }; + } + + function resolveDispatcher() { + var dispatcher = ReactCurrentDispatcher.current; + !(dispatcher !== null) ? invariant(false, 'Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://fb.me/react-invalid-hook-call for tips about how to debug and fix this problem.') : void 0; + return dispatcher; + } + + function useContext(Context, unstable_observedBits) { + var dispatcher = resolveDispatcher(); + { + !(unstable_observedBits === undefined) ? warning$1(false, 'useContext() second argument is reserved for future ' + 'use in React. Passing it is not supported. ' + 'You passed: %s.%s', unstable_observedBits, typeof unstable_observedBits === 'number' && Array.isArray(arguments[2]) ? '\n\nDid you call array.map(useContext)? ' + 'Calling Hooks inside a loop is not supported. ' + 'Learn more at https://fb.me/rules-of-hooks' : '') : void 0; + + // TODO: add a more generic warning for invalid values. + if (Context._context !== undefined) { + var realContext = Context._context; + // Don't deduplicate because this legitimately causes bugs + // and nobody should be using this in existing code. + if (realContext.Consumer === Context) { + warning$1(false, 'Calling useContext(Context.Consumer) is not supported, may cause bugs, and will be ' + 'removed in a future major release. Did you mean to call useContext(Context) instead?'); + } else if (realContext.Provider === Context) { + warning$1(false, 'Calling useContext(Context.Provider) is not supported. ' + 'Did you mean to call useContext(Context) instead?'); + } + } + } + return dispatcher.useContext(Context, unstable_observedBits); + } + + function useState(initialState) { + var dispatcher = resolveDispatcher(); + return dispatcher.useState(initialState); + } + + function useReducer(reducer, initialArg, init) { + var dispatcher = resolveDispatcher(); + return dispatcher.useReducer(reducer, initialArg, init); + } + + function useRef(initialValue) { + var dispatcher = resolveDispatcher(); + return dispatcher.useRef(initialValue); + } + + function useEffect(create, inputs) { + var dispatcher = resolveDispatcher(); + return dispatcher.useEffect(create, inputs); + } + + function useLayoutEffect(create, inputs) { + var dispatcher = resolveDispatcher(); + return dispatcher.useLayoutEffect(create, inputs); + } + + function useCallback(callback, inputs) { + var dispatcher = resolveDispatcher(); + return dispatcher.useCallback(callback, inputs); + } + + function useMemo(create, inputs) { + var dispatcher = resolveDispatcher(); + return dispatcher.useMemo(create, inputs); + } + + function useImperativeHandle(ref, create, inputs) { + var dispatcher = resolveDispatcher(); + return dispatcher.useImperativeHandle(ref, create, inputs); + } + + function useDebugValue(value, formatterFn) { + { + var dispatcher = resolveDispatcher(); + return dispatcher.useDebugValue(value, formatterFn); + } + } + + /** + * ReactElementValidator provides a wrapper around a element factory + * which validates the props passed to the element. This is intended to be + * used only in DEV and could be replaced by a static type checker for languages + * that support it. + */ + + var propTypesMisspellWarningShown = void 0; + + { + propTypesMisspellWarningShown = false; + } + + function getDeclarationErrorAddendum() { + if (ReactCurrentOwner.current) { + var name = getComponentName(ReactCurrentOwner.current.type); + if (name) { + return '\n\nCheck the render method of `' + name + '`.'; + } + } + return ''; + } + + function getSourceInfoErrorAddendum(elementProps) { + if (elementProps !== null && elementProps !== undefined && elementProps.__source !== undefined) { + var source = elementProps.__source; + var fileName = source.fileName.replace(/^.*[\\\/]/, ''); + var lineNumber = source.lineNumber; + return '\n\nCheck your code at ' + fileName + ':' + lineNumber + '.'; + } + return ''; + } + + /** + * Warn if there's no key explicitly set on dynamic arrays of children or + * object keys are not valid. This allows us to keep track of children between + * updates. + */ + var ownerHasKeyUseWarning = {}; + + function getCurrentComponentErrorInfo(parentType) { + var info = getDeclarationErrorAddendum(); + + if (!info) { + var parentName = typeof parentType === 'string' ? parentType : parentType.displayName || parentType.name; + if (parentName) { + info = '\n\nCheck the top-level render call using <' + parentName + '>.'; + } + } + return info; + } + + /** + * Warn if the element doesn't have an explicit key assigned to it. + * This element is in an array. The array could grow and shrink or be + * reordered. All children that haven't already been validated are required to + * have a "key" property assigned to it. Error statuses are cached so a warning + * will only be shown once. + * + * @internal + * @param {ReactElement} element Element that requires a key. + * @param {*} parentType element's parent's type. + */ + function validateExplicitKey(element, parentType) { + if (!element._store || element._store.validated || element.key != null) { + return; + } + element._store.validated = true; + + var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType); + if (ownerHasKeyUseWarning[currentComponentErrorInfo]) { + return; + } + ownerHasKeyUseWarning[currentComponentErrorInfo] = true; + + // Usually the current owner is the offender, but if it accepts children as a + // property, it may be the creator of the child that's responsible for + // assigning it a key. + var childOwner = ''; + if (element && element._owner && element._owner !== ReactCurrentOwner.current) { + // Give the component that originally created this child. + childOwner = ' It was passed a child from ' + getComponentName(element._owner.type) + '.'; + } + + setCurrentlyValidatingElement(element); + { + warning$1(false, 'Each child in a list should have a unique "key" prop.' + '%s%s See https://fb.me/react-warning-keys for more information.', currentComponentErrorInfo, childOwner); + } + setCurrentlyValidatingElement(null); + } + + /** + * Ensure that every element either is passed in a static location, in an + * array with an explicit keys property defined, or in an object literal + * with valid key property. + * + * @internal + * @param {ReactNode} node Statically passed child of any type. + * @param {*} parentType node's parent's type. + */ + function validateChildKeys(node, parentType) { + if (typeof node !== 'object') { + return; + } + if (Array.isArray(node)) { + for (var i = 0; i < node.length; i++) { + var child = node[i]; + if (isValidElement(child)) { + validateExplicitKey(child, parentType); + } + } + } else if (isValidElement(node)) { + // This element was passed in a valid location. + if (node._store) { + node._store.validated = true; + } + } else if (node) { + var iteratorFn = getIteratorFn(node); + if (typeof iteratorFn === 'function') { + // Entry iterators used to provide implicit keys, + // but now we print a separate warning for them later. + if (iteratorFn !== node.entries) { + var iterator = iteratorFn.call(node); + var step = void 0; + while (!(step = iterator.next()).done) { + if (isValidElement(step.value)) { + validateExplicitKey(step.value, parentType); + } + } + } + } + } + } + + /** + * Given an element, validate that its props follow the propTypes definition, + * provided by the type. + * + * @param {ReactElement} element + */ + function validatePropTypes(element) { + var type = element.type; + if (type === null || type === undefined || typeof type === 'string') { + return; + } + var name = getComponentName(type); + var propTypes = void 0; + if (typeof type === 'function') { + propTypes = type.propTypes; + } else if (typeof type === 'object' && (type.$$typeof === REACT_FORWARD_REF_TYPE || + // Note: Memo only checks outer props here. + // Inner props are checked in the reconciler. + type.$$typeof === REACT_MEMO_TYPE)) { + propTypes = type.propTypes; + } else { + return; + } + if (propTypes) { + setCurrentlyValidatingElement(element); + checkPropTypes(propTypes, element.props, 'prop', name, ReactDebugCurrentFrame.getStackAddendum); + setCurrentlyValidatingElement(null); + } else if (type.PropTypes !== undefined && !propTypesMisspellWarningShown) { + propTypesMisspellWarningShown = true; + warningWithoutStack$1(false, 'Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?', name || 'Unknown'); + } + if (typeof type.getDefaultProps === 'function') { + !type.getDefaultProps.isReactClassApproved ? warningWithoutStack$1(false, 'getDefaultProps is only used on classic React.createClass ' + 'definitions. Use a static property named `defaultProps` instead.') : void 0; + } + } + + /** + * Given a fragment, validate that it can only be provided with fragment props + * @param {ReactElement} fragment + */ + function validateFragmentProps(fragment) { + setCurrentlyValidatingElement(fragment); + + var keys = Object.keys(fragment.props); + for (var i = 0; i < keys.length; i++) { + var key = keys[i]; + if (key !== 'children' && key !== 'key') { + warning$1(false, 'Invalid prop `%s` supplied to `React.Fragment`. ' + 'React.Fragment can only have `key` and `children` props.', key); + break; + } + } + + if (fragment.ref !== null) { + warning$1(false, 'Invalid attribute `ref` supplied to `React.Fragment`.'); + } + + setCurrentlyValidatingElement(null); + } + + function createElementWithValidation(type, props, children) { + var validType = isValidElementType(type); + + // We warn in this case but don't throw. We expect the element creation to + // succeed and there will likely be errors in render. + if (!validType) { + var info = ''; + if (type === undefined || typeof type === 'object' && type !== null && Object.keys(type).length === 0) { + info += ' You likely forgot to export your component from the file ' + "it's defined in, or you might have mixed up default and named imports."; + } + + var sourceInfo = getSourceInfoErrorAddendum(props); + if (sourceInfo) { + info += sourceInfo; + } else { + info += getDeclarationErrorAddendum(); + } + + var typeString = void 0; + if (type === null) { + typeString = 'null'; + } else if (Array.isArray(type)) { + typeString = 'array'; + } else if (type !== undefined && type.$$typeof === REACT_ELEMENT_TYPE) { + typeString = '<' + (getComponentName(type.type) || 'Unknown') + ' />'; + info = ' Did you accidentally export a JSX literal instead of a component?'; + } else { + typeString = typeof type; + } + + warning$1(false, 'React.createElement: type is invalid -- expected a string (for ' + 'built-in components) or a class/function (for composite ' + 'components) but got: %s.%s', typeString, info); + } + + var element = createElement.apply(this, arguments); + + // The result can be nullish if a mock or a custom function is used. + // TODO: Drop this when these are no longer allowed as the type argument. + if (element == null) { + return element; + } + + // Skip key warning if the type isn't valid since our key validation logic + // doesn't expect a non-string/function type and can throw confusing errors. + // We don't want exception behavior to differ between dev and prod. + // (Rendering will throw with a helpful message and as soon as the type is + // fixed, the key warnings will appear.) + if (validType) { + for (var i = 2; i < arguments.length; i++) { + validateChildKeys(arguments[i], type); + } + } + + if (type === REACT_FRAGMENT_TYPE) { + validateFragmentProps(element); + } else { + validatePropTypes(element); + } + + return element; + } + + function createFactoryWithValidation(type) { + var validatedFactory = createElementWithValidation.bind(null, type); + validatedFactory.type = type; + // Legacy hook: remove it + { + Object.defineProperty(validatedFactory, 'type', { + enumerable: false, + get: function () { + lowPriorityWarning$1(false, 'Factory.type is deprecated. Access the class directly ' + 'before passing it to createFactory.'); + Object.defineProperty(this, 'type', { + value: type + }); + return type; + } + }); + } + + return validatedFactory; + } + + function cloneElementWithValidation(element, props, children) { + var newElement = cloneElement.apply(this, arguments); + for (var i = 2; i < arguments.length; i++) { + validateChildKeys(arguments[i], newElement.type); + } + validatePropTypes(newElement); + return newElement; + } + + var React = { + Children: { + map: mapChildren, + forEach: forEachChildren, + count: countChildren, + toArray: toArray, + only: onlyChild + }, + + createRef: createRef, + Component: Component, + PureComponent: PureComponent, + + createContext: createContext, + forwardRef: forwardRef, + lazy: lazy, + memo: memo, + + useCallback: useCallback, + useContext: useContext, + useEffect: useEffect, + useImperativeHandle: useImperativeHandle, + useDebugValue: useDebugValue, + useLayoutEffect: useLayoutEffect, + useMemo: useMemo, + useReducer: useReducer, + useRef: useRef, + useState: useState, + + Fragment: REACT_FRAGMENT_TYPE, + StrictMode: REACT_STRICT_MODE_TYPE, + Suspense: REACT_SUSPENSE_TYPE, + + createElement: createElementWithValidation, + cloneElement: cloneElementWithValidation, + createFactory: createFactoryWithValidation, + isValidElement: isValidElement, + + version: ReactVersion, + + unstable_ConcurrentMode: REACT_CONCURRENT_MODE_TYPE, + unstable_Profiler: REACT_PROFILER_TYPE, + + __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED: ReactSharedInternals + }; + + + + var React$2 = Object.freeze({ + default: React + }); + + var React$3 = ( React$2 && React ) || React$2; + + // TODO: decide on the top-level export form. + // This is hacky but makes it work with both Rollup and Jest. + var react = React$3.default || React$3; + + module.exports = react; + })(); + } + }); + + var react = createCommonjsModule(function (module) { + + { + module.exports = react_development; + } + }); + var react_1 = react.Component; + + const toCamelCase = s => s.replace(/-([a-z])/g, g => g[1].toUpperCase()); + + const attributesToProps = o => Object.entries(o).reduce((a, [k, v]) => { + if (k === 'class') k = 'className'; + return _objectSpread2({}, a, { + [`${toCamelCase(k)}`]: v + }); + }, {}); + + const reactRenderer = (node, i) => { + if (i === undefined) i = ''; + return react.createElement(node.name, _objectSpread2({}, attributesToProps(node.attributes), { + key: `${i}` + }), node.children.map((child, j) => reactRenderer(child, `${i}:${j}`))); + }; + + const bac = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}]}; + const bal = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"32.0072","x2":"32.7071","y2":"127.3","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64.0072","x2":"64.7071","y2":"127.3","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"96.0072","x2":"96.7071","y2":"127.3","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const ban = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0C128 70.6924 70.6924 128 -1.52588e-05 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const bar = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const bat = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0C128 35.3462 99.3462 64 64 64C28.6538 64 0 35.3462 0 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const bec = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00280762 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}]}; + const bel = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]}]}; + const ben = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"8","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const bep = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C92.6538 64 64 92.6538 64 128","stroke":0,"fill":"none"},"children":[]}]}; + const ber = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 0L96 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const bes = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 128C64 92.6538 35.3462 64 0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00280762 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const bet = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"16.0036","y1":"15.9965","x2":"48.0036","y2":"47.9965","stroke":0,"fill":"none"},"children":[]}]}; + const bex = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"16.0036","y1":"15.9965","x2":"48.0036","y2":"47.9965","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const bic = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96C74.9807 96 32 53.0193 32 -4.19629e-06","stroke":0,"fill":"none"},"children":[]}]}]}; + const bid = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0C32 70.6925 74.9807 128 128 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]}]}]}; + const bil = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0035","y1":"79.9965","x2":"112.004","y2":"111.997","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const bin = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]}]}; + const bis = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64","x2":"-8.87604e-09","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"96","x2":"-8.87604e-09","y2":"96","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"32","x2":"-8.87604e-09","y2":"32","stroke":0,"fill":"none"},"children":[]}]}; + const bit = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const bol = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"48","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64","x2":"-4.37114e-08","y2":"64","stroke":0,"fill":"none"},"children":[]}]}; + const bon = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 128C92.6538 128 64 99.3462 64 64C64 28.6538 92.6538 4.215e-07 128 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const bor = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 128C4.63574e-06 92.6489 14.3309 60.6449 37.5 37.4807","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 128C32 101.492 42.7436 77.4939 60.1138 60.1217","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 128C64 110.328 71.1626 94.3287 82.7432 82.7471","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M95.6284 128C95.6284 119.164 99.2097 111.164 105 105.374","stroke":0,"fill":"none"},"children":[]}]}]}]}; + const bos = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const bot = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"32","y1":"2.18557e-08","x2":"32","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const bud = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M16 64C16 90.5097 37.4903 112 64 112","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const bur = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M7.37542e-06 -3.56072e-06C1.19529e-06 70.6924 57.3075 128 128 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const bus = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 128C32 110.327 17.6731 96 0 96","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const byl = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00280762 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M22.1288 22.6299C16.0075 28.7511 8.0234 31.874 0.00134547 31.9986M44.7562 45.2573C32.3866 57.6269 16.2133 63.8747 0.00134277 64.0005M67.3836 67.8847C48.7656 86.5027 24.403 95.8749 0.00134412 96.0012","stroke":0,"fill":"none"},"children":[]}]}]}; + const byn = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C128 35.3511 113.669 67.3551 90.5 90.5193","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 0C96 26.5077 85.2564 50.5061 67.8862 67.8783","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0C64 17.6721 56.8374 33.6713 45.2568 45.2529","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32.3716 0C32.3716 8.83603 28.7903 16.8356 23 22.6264","stroke":0,"fill":"none"},"children":[]}]}]}; + const byr = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00280762 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"48","cy":"80","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"48","cy":"80","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const byt = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"48","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0L32 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const dab = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"y1":"-0.5","x2":"45.2548","y2":"-0.5","transform":"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.6499)","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}; + const dac = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L-5.96046e-08 64","stroke":0,"fill":"none"},"children":[]}]}]}; + const dal = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"63.29","y2":"63.2929","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"32.0072","x2":"32.7071","y2":"127.3","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64.0072","x2":"64.7071","y2":"127.3","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"96.0072","x2":"96.7071","y2":"127.3","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const dan = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"96","y1":"2.18557e-08","x2":"96","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}]}; + const dap = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0035","y1":"79.9964","x2":"112.004","y2":"111.996","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const dar = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"path","value":"","attributes":{"d":"M86.6274 86.6274C99.1242 74.1307 99.1242 53.8694 86.6274 41.3726C74.1306 28.8758 53.8694 28.8758 41.3726 41.3726","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M75.3137 75.3137C81.5621 69.0653 81.5621 58.9347 75.3137 52.6863C69.0653 46.4379 58.9347 46.4379 52.6863 52.6863","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M97.9411 97.9411C116.686 79.1959 116.686 48.804 97.9411 30.0589C79.196 11.3137 48.804 11.3137 30.0589 30.0589","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const das = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const dat = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 128C92.6538 128 64 99.3462 64 64C64 28.6538 92.6538 -1.54503e-06 128 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const dav = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 64C96 46.3269 81.6731 32 64 32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const deb = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 -6.35781e-07C64 35.3462 35.3462 64 0 64","stroke":0,"fill":"none"},"children":[]}]}; + const dec = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"112","cy":"16","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"112","cy":"16","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}; + const def = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 128L128 0","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 94L94 0","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 64L64 0","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 32L32 0","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}]}; + const deg = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 128C64 92.6538 35.3462 64 0 64","stroke":0,"fill":"none"},"children":[]}]}]}; + const del = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const dem = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 -6.35781e-07C64 35.3462 35.3462 64 0 64","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const den = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M1.52575e-06 96C53.0193 96 96 53.0193 96 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00280762 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const dep = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M32 128C32 101.492 42.7436 77.4939 60.1138 60.1216","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 128C64 110.328 71.1626 94.3287 82.7432 82.7471","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M95.6284 128C95.6284 119.164 99.2097 111.164 105 105.374","stroke":0,"fill":"none"},"children":[]}]}]}]}; + const der = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 64L5.59506e-06 0L128 1.11901e-05V64C128 99.3462 99.3462 128 64 128C28.6538 128 -4.6351e-06 99.3462 0 64Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 128L96 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const des = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 0L96 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const det = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"15.9964","y1":"111.996","x2":"47.9964","y2":"79.9964","stroke":0,"fill":"none"},"children":[]}]}; + const dev = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"96.5","y1":"3.07317e-08","x2":"96.5","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"32.5","y1":"3.07317e-08","x2":"32.5","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const dex = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const dib = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"8.74228e-08","y1":"64","x2":"128","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"5.25874e-08","y1":"32","x2":"128","y2":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const dif = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M60.1244 67.3837C41.5063 48.7657 32.1342 24.4031 32.0079 0.00145601M82.7518 44.7563C70.3822 32.3867 64.1344 16.2134 64.0086 0.00145196M105.379 22.1289C99.258 16.0077 96.1351 8.02351 96.0105 0.00145196","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"16","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"16","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}]}; + const dig = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64.5","y1":"-0.5","x2":"64.5","y2":"127.5","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"16.0035","y1":"15.9965","x2":"48.0035","y2":"47.9965","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}]}; + const dil = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0036","y1":"79.9964","x2":"112.004","y2":"111.996","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const din = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"96","y1":"2.18557e-08","x2":"96","y2":"128","stroke":0,"fill":"none"},"children":[]}]}; + const dir = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 64C96 81.6731 81.6731 96 64 96","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"16.0035","y1":"15.9965","x2":"48.0035","y2":"47.9965","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}; + const dis = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.0029152 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const div = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-4.19629e-06 96C70.6924 96 128 53.0193 128 5.59506e-06","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-2.79753e-06 64C70.6924 64 128 35.3462 128 5.59506e-06","stroke":0,"fill":"none"},"children":[]}]}]}; + const doc = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M127.997 0L-0.00291443 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M86.6274 41.3726C74.1306 28.8758 53.8694 28.8758 41.3726 41.3726C28.8758 53.8694 28.8758 74.1306 41.3726 86.6274","stroke":0,"fill":"none"},"children":[]}]}]}; + const dol = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-4.19629e-06 16C26.5097 16 48 37.4903 48 64C48 90.5097 26.5097 112 0 112","stroke":0,"fill":"none"},"children":[]}]}]}; + const don = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-3.8147e-06 128C-7.24632e-07 92.6538 28.6538 64 64 64C99.3462 64 128 92.6538 128 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const dop = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 112C90.5097 112 112 90.5097 112 64C112 37.4903 90.5097 16 64 16","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const dor = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"y1":"63.5","x2":"128","y2":"63.5","stroke":0,"fill":"none"},"children":[]}]}; + const dos = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M86.6274 86.6274C99.1242 74.1306 99.1242 53.8693 86.6274 41.3725C74.1306 28.8758 53.8694 28.8758 41.3726 41.3725","stroke":0,"fill":"none"},"children":[]}]}]}; + const dot = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const dov = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.701724 31.9914C25.6281 31.9914 49.4822 42.5913 66.8261 59.7565M-0.701723 63.9914C16.7916 63.9914 32.6456 71.0098 44.1982 82.3844M-0.701722 95.9914C7.955 95.9914 15.8089 99.4288 21.5694 105.013","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 0C35.3511 0 67.3551 14.3309 90.5193 37.5","stroke":0,"fill":"none"},"children":[]}]}]}; + const doz = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 128L0 0","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M30.0589 30.0589C48.804 11.3137 79.196 11.3137 97.9411 30.0589C116.686 48.804 116.686 79.196 97.9411 97.9411","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M52.6863 52.6863C58.9347 46.4379 69.0653 46.4379 75.3137 52.6863C81.5621 58.9347 81.5621 69.0653 75.3137 75.3137","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M41.3726 41.3726C53.8694 28.8758 74.1306 28.8758 86.6274 41.3726C99.1242 53.8694 99.1242 74.1306 86.6274 86.6274","stroke":0,"fill":"none"},"children":[]}]}]}; + const duc = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32L0 32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const dul = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 16C90.5097 16 112 37.4903 112 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 64L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const dun = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M112 64C112 37.4903 90.5097 16 64 16","stroke":0,"fill":"none"},"children":[]}]}; + const dur = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 64L5.59506e-06 0L128 1.11901e-05V64C128 99.3462 99.3462 128 64 128C28.6538 128 -4.6351e-06 99.3462 0 64Z","fill":1},"children":[]}]}; + const dus = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 -3.05151e-06C32 53.0193 74.9807 96 128 96","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const dut = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const dux = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-2.79795e-06 -3.55988e-06C70.6924 -4.40288e-06 128 57.3075 128 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const dyl = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M2.03434e-06 128C70.6924 128 128 70.6925 128 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const dyn = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32L0 32","stroke":0,"fill":"none"},"children":[]}]}]}; + const dyr = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const dys = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-3.8147e-06 1.11901e-05C-7.24633e-07 35.3462 28.6538 64 64 64C99.3462 64 128 35.3462 128 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const dyt = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const fab = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}]}; + const fad = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const fal = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 128L128 0","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C35.3511 0 67.3551 14.3309 90.5193 37.5","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 32C26.5077 32 50.5061 42.7436 67.8783 60.1138","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 64C17.6721 64 33.6713 71.1626 45.2529 82.7432","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 95.6284C8.83603 95.6284 16.8356 99.2097 22.6264 105","stroke":0,"fill":"none"},"children":[]}]}]}]}; + const fam = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64","x2":"-4.37114e-08","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const fan = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const fas = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const feb = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M7.37542e-06 -3.56072e-06C1.19529e-06 70.6924 57.3075 128 128 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const fed = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32L0 32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const fel = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"y1":"-0.5","x2":"45.2548","y2":"-0.5","transform":"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.6499)","stroke":0,"fill":"none"},"children":[]}]}; + const fen = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00280762 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 128C4.63574e-06 92.6489 14.3309 60.6449 37.5 37.4807","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 128C32 101.492 42.7436 77.4939 60.1138 60.1217","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 128C64 110.328 71.1626 94.3287 82.7432 82.7471","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M95.6284 128C95.6284 119.164 99.2097 111.164 105 105.374","stroke":0,"fill":"none"},"children":[]}]}]}]}; + const fep = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const fer = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const fes = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0L32 128","stroke":0,"fill":"none"},"children":[]}]}; + const fet = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const fex = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"y1":"-0.5","x2":"45.2548","y2":"-0.5","transform":"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.6499 47.6499)","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const fid = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00291443 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const fig = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}]}; + const fil = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64","x2":"-4.37114e-08","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"32","y1":"2.18557e-08","x2":"32","y2":"128","stroke":0,"fill":"none"},"children":[]}]}; + const fin = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"98","y1":"2.18557e-08","x2":"98","y2":"128","stroke":0,"fill":"none"},"children":[]}]}; + const fip = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const fir = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"y1":"-0.5","x2":"45.2548","y2":"-0.5","transform":"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.6499)","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0036","y1":"79.9965","x2":"112.004","y2":"111.997","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"16.0035","y1":"15.9965","x2":"48.0035","y2":"47.9965","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const fit = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const fod = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const fog = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M86.6274 86.6274C99.1242 74.1306 99.1242 53.8694 86.6274 41.3726C74.1306 28.8758 53.8694 28.8758 41.3726 41.3726","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}]}; + const fol = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64","x2":"-4.37114e-08","y2":"64","stroke":0,"fill":"none"},"children":[]}]}; + const fon = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const fop = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M16 64C16 90.5097 37.4903 112 64 112","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const fos = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 0C96 53.0193 53.0193 96 0 96","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0C64 35.3462 35.3462 64 0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0C32 17.6731 17.6731 32 0 32","stroke":0,"fill":"none"},"children":[]}]}]}; + const fot = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"15.9964","y1":"111.997","x2":"47.9964","y2":"79.9965","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const ful = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 96C81.6731 96 96 81.6731 96 64C96 46.3269 81.6731 32 64 32","stroke":0,"fill":"none"},"children":[]}]}; + const fun = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"15.9964","y1":"111.997","x2":"47.9964","y2":"79.9965","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00280762 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const fur = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M86.8823 41.6275C74.3855 29.1307 54.1242 29.1307 41.6274 41.6275C29.1307 54.1243 29.1307 74.3855 41.6274 86.8823","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}]}; + const fus = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 128C32 110.327 17.6731 96 0 96","stroke":0,"fill":"none"},"children":[]}]}]}; + const fyl = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M22.1288 22.6299C16.0075 28.7511 8.0234 31.874 0.00134547 31.9986M44.7562 45.2573C32.3866 57.6269 16.2133 63.8747 0.00134277 64.0005M67.3836 67.8847C48.7656 86.5027 24.403 95.8749 0.00134412 96.0012","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00280762 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const fyn = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const fyr = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00268555 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"y1":"-0.5","x2":"45.2548","y2":"-0.5","transform":"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.6499 47.6499)","stroke":0,"fill":"none"},"children":[]}]}]}; + const hab = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M60.1244 67.3837C41.5063 48.7657 32.1342 24.4031 32.0079 0.00145601M82.7518 44.7563C70.3822 32.3867 64.1344 16.2134 64.0086 0.00145196M105.379 22.1289C99.258 16.0077 96.1351 8.02351 96.0105 0.00145196","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}]}; + const hac = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const had = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const hal = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64.5","y1":"-0.5","x2":"64.5","y2":"127.5","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M16 64C16 90.5097 37.4903 112 64 112","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M112 64C112 37.4903 90.5097 16 64 16","stroke":0,"fill":"none"},"children":[]}]}]}; + const han = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]}]}; + const hap = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"48","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const har = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}; + const has$1 = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const hat = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"16","r":"8","fill":1,"stroke":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48 32C48 40.8366 40.8366 48 32 48C23.1634 48 16 40.8366 16 32C16 23.1634 23.1634 16 32 16C40.8366 16 48 23.1634 48 32ZM32 40C36.4183 40 40 36.4183 40 32C40 27.5817 36.4183 24 32 24C27.5817 24 24 27.5817 24 32C24 36.4183 27.5817 40 32 40Z","fill":0},"children":[]}]}]}; + const hav = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"96","y1":"2.18557e-08","x2":"96","y2":"128","stroke":0,"fill":"none"},"children":[]}]}; + const heb = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M2.03434e-06 128C70.6924 128 128 70.6925 128 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const hec = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const hep = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.00285417","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const hes = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0L32 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48 96C48 104.837 40.8366 112 32 112C23.1634 112 16 104.837 16 96C16 87.1634 23.1634 80 32 80C40.8366 80 48 87.1634 48 96ZM32 104C36.4183 104 40 100.418 40 96C40 91.5817 36.4183 88 32 88C27.5817 88 24 91.5817 24 96C24 100.418 27.5817 104 32 104Z","fill":0},"children":[]}]}]}; + const het = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 128L96 0","stroke":0,"fill":"none"},"children":[]}]}; + const hex = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}]}; + const hid = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M2.03434e-06 128C70.6924 128 128 70.6925 128 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M1.52575e-06 96C53.0193 96 96 53.0193 96 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M1.01717e-06 64C35.3462 64 64 35.3462 64 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M5.08584e-07 32C17.6731 32 32 17.6731 32 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const hil = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"8.74228e-08","y1":"64","x2":"128","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]}]}; + const hin = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"32","y1":"2.18557e-08","x2":"32","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48 64C48 72.8366 40.8366 80 32 80C23.1634 80 16 72.8366 16 64C16 55.1634 23.1634 48 32 48C40.8366 48 48 55.1634 48 64ZM32 72C36.4183 72 40 68.4183 40 64C40 59.5817 36.4183 56 32 56C27.5817 56 24 59.5817 24 64C24 68.4183 27.5817 72 32 72Z","fill":0},"children":[]}]}; + const hob = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64","x2":"-4.37114e-08","y2":"64","stroke":0,"fill":"none"},"children":[]}]}; + const hoc = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"y1":"-0.5","x2":"45.2548","y2":"-0.5","transform":"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.6499)","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const hod = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0L32 128","stroke":0,"fill":"none"},"children":[]}]}; + const hol = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64","x2":"-4.37114e-08","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const hop = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 96C81.6731 96 96 81.6731 96 64C96 46.3269 81.6731 32 64 32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const hos = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0036","y1":"79.9965","x2":"112.004","y2":"111.997","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"16.0036","y1":"15.9965","x2":"48.0036","y2":"47.9965","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"48","cy":"48","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"48","cy":"48","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"80","cy":"47","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"80","cy":"47","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"80","cy":"81","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"80","cy":"81","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"48","cy":"80","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"48","cy":"80","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const hul = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"48","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"48","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const hus = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 96C46.3269 96 32 81.6731 32 64","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const hut = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"48","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const lab = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"y1":"-0.5","x2":"45.2548","y2":"-0.5","transform":"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.6499)","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"15.9964","y1":"111.997","x2":"47.9964","y2":"79.9965","stroke":0,"fill":"none"},"children":[]}]}]}; + const lac = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 -9.40976e-06C64 70.6924 92.6538 128 128 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 -7.63193e-07C32 70.6924 74.9807 128 128 128","stroke":0,"fill":"none"},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]}]}]}]}; + const lad = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"95.35","y1":"32.7071","x2":"32.0571","y2":"96","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const lag = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 112C90.5097 112 112 90.5097 112 64","stroke":0,"fill":"none"},"children":[]}]}; + const lan = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"32","y1":"2.18557e-08","x2":"32","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}; + const lap = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M112 64C112 37.4903 90.5097 16 64 16","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"112","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"112","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const lar = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"2.78181e-08","y1":"64","x2":"128","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const las = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"48","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const lat = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M2.03434e-06 128C70.6924 128 128 70.6925 128 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M1.52575e-06 96C53.0193 96 96 53.0193 96 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M1.01717e-06 64C35.3462 64 64 35.3462 64 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M5.08584e-07 32C17.6731 32 32 17.6731 32 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const lav = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C92.6489 128 60.6449 113.669 37.4807 90.5","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96C101.492 96 77.4939 85.2564 60.1217 67.8862","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C110.328 64 94.3287 56.8374 82.7471 45.2568","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32.3716C119.164 32.3716 111.164 28.7903 105.374 23","stroke":0,"fill":"none"},"children":[]}]}]}]}; + const leb = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-1.64036e-05 32C53.0193 32 96 74.9807 96 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const lec = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const led = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const leg = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M7.63192e-07 32C17.6731 32 32 46.3269 32 64C32 81.6731 17.6731 96 0 96","stroke":0,"fill":"none"},"children":[]}]}; + const len = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"48","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const lep = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96C110.327 96 96 110.327 96 128","stroke":0,"fill":"none"},"children":[]}]}; + const ler = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0L32 128","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const lev = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const lex = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"15.9965","y1":"111.997","x2":"47.9965","y2":"79.9965","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}]}; + const lib = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C92.6538 64 64 92.6538 64 128","stroke":0,"fill":"none"},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]}]}]}]}; + const lid = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"16.0036","y1":"15.9965","x2":"48.0036","y2":"47.9965","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const lig = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"48","stroke":0,"fill":"none"},"children":[]}]}; + const lin = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"128","x2":"64","y2":"-6.55671e-08","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"80","cy":"64","r":"8","fill":0},"children":[]}]}; + const lis = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-4.70488e-06 64C35.3462 64 64 35.3462 64 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const lit = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00286865 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C128 35.3511 113.669 67.3551 90.5 90.5193","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 0C96 26.5077 85.2564 50.5061 67.8862 67.8783","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0C64 17.6721 56.8374 33.6713 45.2568 45.2529","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32.3716 0C32.3716 8.83603 28.7903 16.8356 23 22.6264","stroke":0,"fill":"none"},"children":[]}]}]}]}; + const liv = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-5.21346e-06 32C70.6924 32 128 17.6731 128 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M3.4331e-06 96C70.6924 96 128 53.0193 128 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const loc = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96C74.9807 96 32 53.0193 32 -4.19629e-06","stroke":0,"fill":"none"},"children":[]}]}]}; + const lod = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M16 64C16 90.5097 37.4903 112 64 112","stroke":0,"fill":"none"},"children":[]}]}; + const lom = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const lon = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M2.03434e-06 128C70.6924 128 128 70.6925 128 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M1.52575e-06 96C53.0193 96 96 53.0193 96 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M1.01717e-06 64C35.3462 64 64 35.3462 64 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M5.08584e-07 32C17.6731 32 32 17.6731 32 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const lop = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64","x2":"-8.87604e-09","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"32","x2":"-8.87604e-09","y2":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const lor = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]}]}; + const los = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const luc = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64","x2":"-8.87604e-09","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96L0 96","stroke":0,"fill":"none"},"children":[]}]}]}; + const lud = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0L32 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 0L96 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const lug = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 -7.62939e-06L64 -2.03434e-06C99.3462 1.05573e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]}]}; + const lun = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]}]}; + const lup = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 -7.62939e-06L64 -2.03434e-06C99.3462 1.05573e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 16C90.5097 16 112 37.4903 112 64C112 90.5097 90.5097 112 64 112","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64","x2":"-8.87604e-09","y2":"64","stroke":0,"fill":"none"},"children":[]}]}; + const lur = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 0L96 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0L32 128","stroke":0,"fill":"none"},"children":[]}]}; + const lus = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const lut = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const lux = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const lyd = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00280762 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const lyn = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0L32 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const lyr = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00268555 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"80","cy":"48","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"80","cy":"48","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const lys = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const lyt = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0035","y1":"79.9965","x2":"112.003","y2":"111.997","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}]}; + const lyx = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const mac = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}; + const mag = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const mal = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0035","y1":"79.9964","x2":"112.004","y2":"111.996","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}; + const map = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0036","y1":"79.9965","x2":"112.004","y2":"111.997","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const mar = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.0029152 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 64L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M86.6274 86.6274C99.1242 74.1307 99.1242 53.8694 86.6274 41.3726C74.1306 28.8758 53.8694 28.8758 41.3726 41.3726","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M75.3137 75.3137C81.5621 69.0653 81.5621 58.9347 75.3137 52.6863C69.0653 46.4379 58.9347 46.4379 52.6863 52.6863","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M97.9411 97.9411C116.686 79.1959 116.686 48.804 97.9411 30.0589C79.196 11.3137 48.804 11.3137 30.0589 30.0589","stroke":0,"fill":"none"},"children":[]}]}]}; + const mas = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const mat = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32C110.327 32 96 17.6731 96 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const meb = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 -3.05151e-06C32 53.0193 74.9807 96 128 96","stroke":0,"fill":"none"},"children":[]}]}]}; + const mec = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0035","y1":"79.9965","x2":"112.003","y2":"111.997","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const med = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const meg = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C92.6538 64 64 92.6538 64 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const mel = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"15.9964","y1":"111.997","x2":"47.9964","y2":"79.9965","stroke":0,"fill":"none"},"children":[]}]}; + const mep = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96L0 96","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32L0 32","stroke":0,"fill":"none"},"children":[]}]}]}; + const mer = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0L32 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const mes = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00280762 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"15.9964","y1":"111.996","x2":"47.9964","y2":"79.9964","stroke":0,"fill":"none"},"children":[]}]}]}; + const met = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 128L32 0","stroke":0,"fill":"none"},"children":[]}]}; + const mev = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}; + const mex = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}]}; + const mic = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-2.09815e-06 80C26.5097 80 48 101.49 48 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const mid = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64","x2":"-4.37114e-08","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C92.6538 64 64 92.6538 64 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const mig = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0036","y1":"79.9965","x2":"112.004","y2":"111.997","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}; + const mil = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64","x2":"-4.37114e-08","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"32","x2":"-4.37114e-08","y2":"32","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"96","x2":"-4.37114e-08","y2":"96","stroke":0,"fill":"none"},"children":[]}]}; + const min = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const mip = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 128C92.6538 128 64 99.3462 64 64C64 28.6538 92.6538 4.215e-07 128 0","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}]}; + const mir = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"16.0036","y1":"15.9964","x2":"48.0036","y2":"47.9964","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 64C96 46.3269 81.6731 32 64 32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}; + const mis = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C92.6538 64 64 92.6538 64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00286865 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const mit = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const moc = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96L0 96","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32L0 32","stroke":0,"fill":"none"},"children":[]}]}]}; + const mod = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 96L128 96","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"16.0035","y1":"15.9965","x2":"48.0035","y2":"47.9965","stroke":0,"fill":"none"},"children":[]}]}; + const mog = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}]}; + const mol = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64","x2":"-4.37114e-08","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M112 64C112 90.5097 90.5097 112 64 112C37.4903 112 16 90.5097 16 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M112 0C112 26.5097 90.5097 48 64 48C37.4903 48 16 26.5097 16 0","stroke":0,"fill":"none"},"children":[]}]}; + const mon = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const mop = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const mor = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"16.0035","y1":"15.9964","x2":"48.0035","y2":"47.9964","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"15.9964","y1":"111.996","x2":"47.9964","y2":"79.9964","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const mos = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const mot = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96C110.327 96 96 81.6731 96 64C96 46.3269 110.327 32 128 32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const mud = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"80","cy":"80","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"80","cy":"80","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const mug = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 96C81.6731 96 96 81.6731 96 64C96 46.3269 81.6731 32 64 32","stroke":0,"fill":"none"},"children":[]}]}; + const mul = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0035","y1":"79.9964","x2":"112.003","y2":"111.996","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M112 64C112 37.4903 90.5097 16 64 16","stroke":0,"fill":"none"},"children":[]}]}; + const mun = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C92.6538 64 64 35.3462 64 0","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const mur = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const mus = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 128C96 74.9807 53.0193 32 0 32","stroke":0,"fill":"none"},"children":[]}]}]}; + const mut = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const myl = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"16.0035","y1":"15.9965","x2":"48.0035","y2":"47.9965","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"16","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"16","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const myn = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 1.52638e-06C57.3076 -7.74381e-06 9.2702e-06 57.3075 0 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32C74.9807 32 32 74.9807 32 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C92.6538 64 64 92.6538 64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96C110.327 96 96 110.327 96 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const myr = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const nac = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}; + const nal = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M2.82114e-06 110C60.7513 110 110 60.7513 110 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-5.09828e-06 73C40.3168 73 73 40.3168 73 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-6.63647e-07 37C20.4345 37 37 20.4345 37 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const nam = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"8.74228e-08","y1":"64","x2":"128","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"112","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"112","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const nap = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const nar = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"8","stroke":0,"fill":"none"},"children":[]}]}; + const nat = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-1.52588e-05 128C-9.07866e-06 57.3075 57.3076 1.44926e-06 128 7.62939e-06","stroke":0,"fill":"none"},"children":[]}]}]}; + const nav = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 96C101.492 96 77.4939 85.2564 60.1217 67.8862","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C110.328 64 94.3287 56.8374 82.7471 45.2568","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32.3716C119.164 32.3716 111.164 28.7903 105.374 23","stroke":0,"fill":"none"},"children":[]}]}]}]}; + const neb = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32C74.9807 32 32 74.9807 32 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const nec = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]}]}; + const ned = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const nel = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00268555 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 1.90735e-06C96 53.0193 53.0193 96 0 96","stroke":0,"fill":"none"},"children":[]}]}]}; + const nem = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C92.6538 64 64 92.6538 64 128","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const nep = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 128C57.3076 128 3.09007e-06 70.6925 0 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96C74.9807 96 32 53.0193 32 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C92.6538 64 64 35.3462 64 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32C110.327 32 96 17.6731 96 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const ner = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"15.9965","y1":"111.997","x2":"47.9965","y2":"79.9965","stroke":0,"fill":"none"},"children":[]}]}]}; + const nes = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const net = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 64L64 128","stroke":0,"fill":"none"},"children":[]}]}; + const nev = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const nex = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 -7.62939e-06L64 -2.03434e-06C99.3462 1.05573e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0035","y1":"79.9964","x2":"112.003","y2":"111.996","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const nib = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96L0 96","stroke":0,"fill":"none"},"children":[]}]}]}; + const nid = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 128C92.6538 128 64 70.6925 64 7.63192e-07","stroke":0,"fill":"none"},"children":[]}]}]}; + const nil = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64","x2":"-8.87604e-09","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"32","x2":"-8.87604e-09","y2":"32","stroke":0,"fill":"none"},"children":[]}]}; + const nim = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]}]}; + const nis = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32C74.9807 32 32 74.9807 32 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00285435 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const noc = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const nod = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const nol = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64","x2":"1.51277e-05","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const nom = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const nop = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"y1":"-0.5","x2":"45.2548","y2":"-0.5","transform":"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.65)","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const nor = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 96C46.3269 96 32 81.6731 32 64","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const nos = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const nov = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M2.03434e-06 128C70.6924 128 128 70.6925 128 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M1.52575e-06 96C53.0193 96 96 53.0193 96 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M1.01717e-06 64C35.3462 64 64 35.3462 64 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M5.08584e-07 32C17.6731 32 32 17.6731 32 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const nub = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]}]}]}; + const nul = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const num = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const nup = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 -7.62939e-06L64 -2.03434e-06C99.3462 1.05573e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 16C90.5097 16 112 37.4903 112 64C112 90.5097 90.5097 112 64 112","stroke":0,"fill":"none"},"children":[]}]}; + const nus = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00280762 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M0.000105172 128C35.3582 128 67.3679 113.664 90.5332 90.4863","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"31","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"31","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const nut = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0035","y1":"79.9964","x2":"112.003","y2":"111.996","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"y1":"-0.5","x2":"45.2548","y2":"-0.5","transform":"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.6499 47.6499)","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const nux = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96L0 96","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32L0 32","stroke":0,"fill":"none"},"children":[]}]}]}; + const nyd = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}]}; + const nyl = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 128C4.63574e-06 92.6489 14.3309 60.6449 37.5 37.4807","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 128C32 101.492 42.7436 77.4939 60.1138 60.1217","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 128C64 110.328 71.1626 94.3287 82.7432 82.7471","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M95.6284 128C95.6284 119.164 99.2097 111.164 105 105.374","stroke":0,"fill":"none"},"children":[]}]}]}]}; + const nym = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 0L96 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0L32 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const nyr = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00268555 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M95.9984 0C95.9984 26.3298 85.3985 50.1839 68.2332 67.5278M63.9983 0C63.9983 17.4933 56.9799 33.3473 45.6054 44.8999M31.9983 0C31.9983 8.65672 28.5609 16.5106 22.9766 22.2711","stroke":0,"fill":"none"},"children":[]}]}]}; + const nys = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const nyt = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 32C81.6731 32 96 46.3269 96 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 16C90.5097 16 112 37.4903 112 64","stroke":0,"fill":"none"},"children":[]}]}]}; + const nyx = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}]}; + const pac = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const pad = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const pag = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"15.9964","y1":"111.997","x2":"47.9964","y2":"79.9965","stroke":0,"fill":"none"},"children":[]}]}; + const pal = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 96C101.492 96 77.4939 85.2564 60.1217 67.8862","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C110.328 64 94.3287 56.8374 82.7471 45.2568","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32.3716C119.164 32.3716 111.164 28.7903 105.374 23","stroke":0,"fill":"none"},"children":[]}]}]}]}; + const pan = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M41.3726 86.6274C28.8758 74.1306 28.8758 53.8693 41.3726 41.3725C53.8694 28.8758 74.1306 28.8758 86.6274 41.3725","stroke":0,"fill":"none"},"children":[]}]}]}; + const par = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.693 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}]}; + const pas = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0L32 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 0L96 128","stroke":0,"fill":"none"},"children":[]}]}; + const pat = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 -2.67054e-06C32 53.0193 74.9807 96 128 96","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 -1.78036e-06C64 35.3462 92.6538 64 128 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 -8.9018e-07C96 17.6731 110.327 32 128 32","stroke":0,"fill":"none"},"children":[]}]}]}; + const pec = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const ped = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const peg = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 0C96 17.6731 81.6731 32 64 32C46.3269 32 32 17.6731 32 0","stroke":0,"fill":"none"},"children":[]}]}; + const pel = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M112 64C112 37.4903 90.5097 16 64 16","stroke":0,"fill":"none"},"children":[]}]}; + const pem = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00280762 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 128C64 92.6538 35.3462 64 0 64","stroke":0,"fill":"none"},"children":[]}]}]}; + const pen = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 0C96 17.6731 81.6731 32 64 32C46.3269 32 32 17.6731 32 0","stroke":0,"fill":"none"},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const per = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 64L5.59506e-06 0L128 1.11901e-05V64C128 99.3462 99.3462 128 64 128C28.6538 128 -4.6351e-06 99.3462 0 64Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]}]}; + const pes = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 112C90.5097 112 112 90.5097 112 64","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.00285417","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const pet = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0035","y1":"79.9964","x2":"112.003","y2":"111.996","stroke":0,"fill":"none"},"children":[]}]}; + const pex = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const pic = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 128C96 74.9807 53.0193 32 0 32","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 128C64 92.6538 35.3462 64 0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 128C32 110.327 17.6731 96 0 96","stroke":0,"fill":"none"},"children":[]}]}]}; + const pid = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}]}; + const pil = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const pin = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0L32 128","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const pit = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}]}; + const poc = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64.5","y1":"-0.5","x2":"64.5","y2":"127.5","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"96.5","y1":"-0.5","x2":"96.5","y2":"127.5","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"32.5","y1":"-0.5","x2":"32.5","y2":"127.5","stroke":0,"fill":"none"},"children":[]}]}]}; + const pod = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"96","x2":"-8.87604e-09","y2":"96","stroke":0,"fill":"none"},"children":[]}]}; + const pol = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"48","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"32","x2":"-8.87604e-09","y2":"32","stroke":0,"fill":"none"},"children":[]}]}; + const pon = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]}]}; + const pos = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const pub = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0L32 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const pun = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M112 64C112 37.4903 90.5097 16 64 16","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 64C96 46.3269 81.6731 32 64 32","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M80 64C80 55.1634 72.8366 48 64 48","stroke":0,"fill":"none"},"children":[]}]}; + const pur = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M3.73284e-05 64C17.6633 64 33.6554 56.8445 45.2356 45.2741","stroke":0,"fill":"none"},"children":[]}]}]}; + const put = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const pyl = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-5.59506e-06 128C35.3462 128 64 99.3462 64 64C64 28.6538 35.3462 1.54503e-06 0 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const pyx = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const rab = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"15.9965","y1":"111.997","x2":"47.9964","y2":"79.9965","stroke":0,"fill":"none"},"children":[]}]}]}; + const rac = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}; + const rad = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const rag = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"16.0036","y1":"15.9965","x2":"48.0036","y2":"47.9965","stroke":0,"fill":"none"},"children":[]}]}; + const ral = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}; + const ram = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const ran = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00291443 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}]}; + const rap = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"-1.29797e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const rav = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32L0 32","stroke":0,"fill":"none"},"children":[]}]}]}; + const reb = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 -9.40976e-06C57.3075 -6.31969e-06 -3.09007e-06 57.3075 0 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const rec = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const red = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const ref = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}]}; + const reg = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96C110.327 96 96 81.6731 96 64C96 46.3269 110.327 32 128 32","stroke":0,"fill":"none"},"children":[]}]}]}; + const rel = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96L0 96","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32L0 32","stroke":0,"fill":"none"},"children":[]}]}]}; + const rem = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C92.6538 64 64 35.3462 64 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const ren = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0035","y1":"79.9965","x2":"112.003","y2":"111.997","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}; + const rep = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 128C32 74.9807 74.9807 32 128 32","stroke":0,"fill":"none"},"children":[]}]}]}; + const res = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0035","y1":"79.9965","x2":"112.003","y2":"111.997","stroke":0,"fill":"none"},"children":[]}]}; + const ret = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]}]}]}; + const rev = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"15.9965","y1":"111.997","x2":"53.9965","y2":"73.9965","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const rex = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}]}; + const rib = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"8.74228e-08","y1":"64","x2":"128","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]}]}]}; + const ric = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 128C96 74.9807 53.0193 32 0 32","stroke":0,"fill":"none"},"children":[]}]}; + const rid = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 0L96 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const rig = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const ril = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.693 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const rin = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"32","y1":"2.18557e-08","x2":"32","y2":"128","stroke":0,"fill":"none"},"children":[]}]}; + const rip = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 64C96 46.3269 81.6731 32 64 32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const ris = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C128 35.3511 113.669 67.3551 90.5 90.5193","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 0C96 26.5077 85.2564 50.5061 67.8862 67.8783","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0C64 17.6721 56.8374 33.6713 45.2568 45.2529","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32.3716 0C32.3716 8.83603 28.7903 16.8356 23 22.6264","stroke":0,"fill":"none"},"children":[]}]}]}]}; + const rit = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}]}; + const riv = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"48","stroke":0,"fill":"none"},"children":[]}]}; + const roc = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"112","cy":"16","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"112","cy":"16","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}; + const rol = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 16C90.5097 16 112 37.4903 112 64C112 90.5097 90.5097 112 64 112","stroke":0,"fill":"none"},"children":[]}]}]}; + const ron = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0C128 70.6924 70.6925 128 0 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const rop = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M112 64C112 37.4903 90.5097 16 64 16","stroke":0,"fill":"none"},"children":[]}]}]}; + const ros = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const rov = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C128 35.3511 113.669 67.3551 90.5 90.5193","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 0C96 26.5077 85.2564 50.5061 67.8862 67.8783","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0C64 17.6721 56.8374 33.6713 45.2568 45.2529","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32.3716 0C32.3716 8.83603 28.7903 16.8356 23 22.6264","stroke":0,"fill":"none"},"children":[]}]}]}]}; + const ruc = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32L0 32","stroke":0,"fill":"none"},"children":[]}]}]}; + const rud = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0L32 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const rul = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0035","y1":"79.9964","x2":"112.003","y2":"111.996","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const rum = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M5.08584e-07 32C17.6731 32 32 17.6731 32 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const run = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 0L96 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0L32 128","stroke":0,"fill":"none"},"children":[]}]}; + const rup = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 112C90.5097 112 112 90.5097 112 64C112 37.4903 90.5097 16 64 16","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]}]}]}; + const rus = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 128C64 92.6538 35.3462 64 0 64","stroke":0,"fill":"none"},"children":[]}]}]}; + const rut = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const rux = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 64C32 81.6731 46.3269 96 64 96","stroke":0,"fill":"none"},"children":[]}]}]}; + const ryc = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96L0 96","stroke":0,"fill":"none"},"children":[]}]}]}; + const ryd = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00280762 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 64C96 81.6731 81.6731 96 64 96","stroke":0,"fill":"none"},"children":[]}]}]}; + const ryg = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-2.79795e-06 -3.55988e-06C70.6924 -4.40288e-06 128 57.3075 128 128","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"16.0035","y1":"15.9965","x2":"48.0035","y2":"47.9965","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const ryl = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C92.6489 128 60.6449 113.669 37.4807 90.5","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96C101.492 96 77.4939 85.2564 60.1217 67.8862","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C110.328 64 94.3287 56.8374 82.7471 45.2568","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32.3716C119.164 32.3716 111.164 28.7903 105.374 23","stroke":0,"fill":"none"},"children":[]}]}]}]}; + const rym = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96L0 96","stroke":0,"fill":"none"},"children":[]}]}]}; + const ryn = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 128C57.3075 128 -3.09007e-06 70.6925 0 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const ryp = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const rys = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M1.52575e-06 96C53.0193 96 96 53.0193 96 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const ryt = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 -7.62939e-06L64 -2.03434e-06C99.3462 1.05573e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"48","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const ryx = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}]}; + const sab = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"y1":"-0.5","x2":"45.2548","y2":"-0.5","transform":"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.65)","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}]}; + const sal = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 128L128 0","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.701724 31.9914C25.6281 31.9914 49.4822 42.5913 66.8261 59.7565M-0.701723 63.9914C16.7916 63.9914 32.6456 71.0098 44.1982 82.3844M-0.701722 95.9914C7.955 95.9914 15.8089 99.4288 21.5694 105.013","stroke":0,"fill":"none"},"children":[]}]}]}; + const sam = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"48","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}]}; + const san = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const sap = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64","x2":"-4.37114e-08","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"64","r":"8","fill":0},"children":[]}]}; + const sar = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"48","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"48","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]}]}; + const sat = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 0 0 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const sav = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 64C96 46.3269 81.6731 32 64 32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const seb = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C92.6538 64 64 35.3462 64 0","stroke":0,"fill":"none"},"children":[]}]}; + const sec = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const sed = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const sef = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}; + const seg = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 128C32 110.327 46.3269 96 64 96C81.6731 96 96 110.327 96 128","stroke":0,"fill":"none"},"children":[]}]}; + const sel = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"8","stroke":0,"fill":"none"},"children":[]}]}; + const sem = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M1.01717e-06 64C35.3462 64 64 35.3462 64 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const sen = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 128C96 110.327 81.6731 96 64 96C46.3269 96 32 110.327 32 128","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const sep = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 128L64 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 128L32 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 128L96 0","stroke":0,"fill":"none"},"children":[]}]}; + const ser = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 64L5.59506e-06 0L128 1.11901e-05V64C128 99.3462 99.3462 128 64 128C28.6538 128 -4.6351e-06 99.3462 0 64Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0L32 128","stroke":0,"fill":"none"},"children":[]}]}; + const set = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 64L128 64","stroke":0,"fill":"none"},"children":[]}]}; + const sev = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"48","stroke":0,"fill":"none"},"children":[]}]}; + const sib = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 9.40976e-06C64 35.3462 92.6538 64 128 64","stroke":0,"fill":"none"},"children":[]}]}]}; + const sic = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const sid = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 128C110.327 128 96 113.673 96 96C96 78.3269 110.327 64 128 64","stroke":0,"fill":"none"},"children":[]}]}]}; + const sig = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const sil = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"16.0036","y1":"15.9965","x2":"48.0036","y2":"47.9965","stroke":0,"fill":"none"},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const sim = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0L32 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const sip = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M16 64C16 37.4903 37.4903 16 64 16","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const sit = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const siv = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96L0 96","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const soc = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"16","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"16","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}; + const sog = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 96C81.6731 96 96 81.6731 96 64C96 46.3269 81.6731 32 64 32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}]}; + const sol = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L-5.96046e-08 64","stroke":0,"fill":"none"},"children":[]}]}]}; + const som = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const son = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"127.553","y1":"128.224","x2":"63.5528","y2":"0.223598","stroke":0,"fill":"none"},"children":[]}]}]}; + const sop = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const sor = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C128 35.3511 113.669 67.3551 90.5 90.5193","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 0C96 26.5077 85.2564 50.5061 67.8862 67.8783","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0C64 17.6721 56.8374 33.6713 45.2568 45.2529","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32.3716 0C32.3716 8.83603 28.7903 16.8356 23 22.6264","stroke":0,"fill":"none"},"children":[]}]}]}]}; + const sov = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 128L128 0","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C92.6489 128 60.6449 113.669 37.4807 90.5","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96C101.492 96 77.4939 85.2564 60.1217 67.8862","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C110.328 64 94.3287 56.8374 82.7471 45.2568","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32.3716C119.164 32.3716 111.164 28.7903 105.374 23","stroke":0,"fill":"none"},"children":[]}]}]}]}; + const sub = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const sud = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64","x2":"-8.87604e-09","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}]}; + const sug = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"80","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"80","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const sul = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 96C46.3269 96 32 81.6731 32 64C32 46.3269 46.3269 32 64 32","stroke":0,"fill":"none"},"children":[]}]}; + const sum = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M1.01717e-06 64C35.3462 64 64 35.3462 64 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const sun = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"80","cy":"80","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"80","cy":"80","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"80","cy":"48","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"80","cy":"48","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"48","cy":"48","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"48","cy":"48","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"48","cy":"80","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"48","cy":"80","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const sup = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 112C90.5097 112 112 90.5097 112 64C112 37.4903 90.5097 16 64 16","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const sur = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M3.73284e-05 64.0001C17.6633 64.0001 33.6554 56.8446 45.2356 45.2742","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M0.000105172 128C35.3582 128 67.3679 113.664 90.5332 90.4863","stroke":0,"fill":"none"},"children":[]}]}]}; + const sut = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const syd = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 16C37.4903 16 16 37.4903 16 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const syl = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const sym = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"96.5","y1":"3.07317e-08","x2":"96.5","y2":"128","stroke":0,"fill":"none"},"children":[]}]}; + const syn = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C35.3511 0 67.3551 14.3309 90.5193 37.5","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 32C26.5077 32 50.5061 42.7436 67.8783 60.1138","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 64C17.6721 64 33.6713 71.1626 45.2529 82.7432","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 95.6284C8.83603 95.6284 16.8356 99.2097 22.6264 105","stroke":0,"fill":"none"},"children":[]}]}]}]}; + const syp = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00280762 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M1.01717e-06 64C35.3462 64 64 35.3462 64 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const syr = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const syt = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"48","stroke":0,"fill":"none"},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const syx = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 128C4.63574e-06 92.6488 14.3309 60.6449 37.5 37.4807","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 128C32 101.492 42.7436 77.4939 60.1138 60.1216","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 128C64 110.328 71.1626 94.3287 82.7432 82.7471","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M95.6284 128C95.6284 119.164 99.2097 111.164 105 105.374","stroke":0,"fill":"none"},"children":[]}]},{"name":"path","value":"","attributes":{"d":"M-0.00280762 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const tab = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"8","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}]}; + const tac = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const tad = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const tag = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0036","y1":"79.9964","x2":"112.004","y2":"111.996","stroke":0,"fill":"none"},"children":[]}]}; + const tal = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"0.5","y1":"-0.5","x2":"181.5","y2":"-0.5","transform":"matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 128C96 74.9807 53.0193 32 0 32","stroke":0,"fill":"none"},"children":[]}]}]}; + const tam = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"96","x2":"-8.87604e-09","y2":"96","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"32","x2":"-8.87604e-09","y2":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const tan = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 128C96 74.9807 53.0193 32 0 32","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 128C64 92.6538 35.3462 64 0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M48 128C48 101.49 26.5097 80 0 80","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 128C32 110.327 17.6731 96 0 96","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M16 128C16 119.163 8.83656 112 0 112","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3075 70.6925 0 0 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const tap = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"48","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64","x2":"-8.87604e-09","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 32C81.6731 32 96 46.3269 96 64C96 81.6731 81.6731 96 64 96","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const tar = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"48","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const tas = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 32C81.6731 32 96 46.3269 96 64C96 81.6731 81.6731 96 64 96","stroke":0,"fill":"none"},"children":[]}]}]}; + const teb = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M1.52575e-06 96C53.0193 96 96 53.0193 96 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const tec = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0035","y1":"79.9965","x2":"112.003","y2":"111.997","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const ted = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const teg = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 80C119.163 80 112 72.8366 112 64C112 55.1634 119.163 48 128 48","stroke":0,"fill":"none"},"children":[]}]}]}; + const tel = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"15","cy":"112","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"15","cy":"112","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 0L127.986 127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0L128 96","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L128 64","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 0L128 32","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const tem = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C92.6538 64 64 92.6538 64 128","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.00285417","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const ten = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"48","cy":"48","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"48","cy":"48","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"80","cy":"48","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"80","cy":"48","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"80","cy":"80","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"80","cy":"80","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"48","cy":"80","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"48","cy":"80","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const tep = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M1.14479e-06 96C53.0193 96 96 53.0193 96 0","stroke":0,"fill":"none"},"children":[]}]}; + const ter = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 64L5.59506e-06 0L128 1.11901e-05V64C128 99.3462 99.3462 128 64 128C28.6538 128 -4.6351e-06 99.3462 0 64Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"96.5","y1":"3.07317e-08","x2":"96.5","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M1.01717e-06 64C35.3462 64 64 35.3462 64 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const tes = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]}]}]}; + const tev = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]}]}; + const tex = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"15.9965","y1":"111.997","x2":"47.9965","y2":"79.9965","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const tic = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32C110.327 32 96 17.6731 96 -1.39876e-06","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const tid = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"96","y1":"2.18557e-08","x2":"96","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M112 32C112 40.8366 104.837 48 96 48C87.1634 48 80 40.8366 80 32C80 23.1634 87.1634 16 96 16C104.837 16 112 23.1634 112 32ZM96 40C100.418 40 104 36.4183 104 32C104 27.5817 100.418 24 96 24C91.5817 24 88 27.5817 88 32C88 36.4183 91.5817 40 96 40Z","fill":0},"children":[]}]}; + const til = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0036","y1":"79.9965","x2":"112.004","y2":"111.997","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const tim = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00291443 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const tin = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"32","y1":"2.18557e-08","x2":"32","y2":"128","stroke":0,"fill":"none"},"children":[]}]}; + const tip = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}]}; + const tir = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]}]}]}; + const tob = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96L0 96","stroke":0,"fill":"none"},"children":[]}]}]}; + const toc = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"96","x2":"-8.87604e-09","y2":"96","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}; + const tod = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const tog = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 96C46.3269 96 32 81.6731 32 64","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]},{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const tol = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"128","y1":"64","x2":"-4.37114e-08","y2":"64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M16 128C16 101.49 37.4903 80 64 80C90.5097 80 112 101.49 112 128","stroke":0,"fill":"none"},"children":[]}]}; + const tom = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const ton = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32C74.9807 32 32 74.9807 32 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C92.6538 64 64 92.6538 64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96C110.327 96 96 110.327 96 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const top = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"16","stroke":0,"fill":"none"},"children":[]}]}]}; + const tor = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const tuc = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96L0 96","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const tud = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const tug = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32L0 32","stroke":0,"fill":"none"},"children":[]}]}]}; + const tul = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const tun = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"48","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const tus = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const tux = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const tyc = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const tyd = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00280762 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"y1":"-0.5","x2":"45.2548","y2":"-0.5","transform":"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.6499)","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"15.9964","y1":"111.997","x2":"47.9964","y2":"79.9965","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const tyl = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M7.37542e-06 -3.56072e-06C1.19529e-06 70.6924 57.3075 128 128 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const tyn = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 -2.28831e-06C57.3076 -3.13131e-06 8.42999e-07 57.3075 0 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const typ = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M96 1.90735e-06C96 53.0193 53.0193 96 0 96","stroke":0,"fill":"none"},"children":[]}]}]}; + const tyr = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 0L128 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C92.6538 64 64 35.3462 64 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 64C35.3462 64 64 92.6538 64 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const tyv = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M256 0L128 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const wac = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"11.5","fill":0,"stroke":0},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"112","r":"9","fill":1,"stroke":1,"stroke-width":"2"},"children":[]}]}]}; + const wal = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64.5","y1":"-0.5","x2":"64.5","y2":"127.5","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"32","y1":"2.18557e-08","x2":"32","y2":"128","stroke":0,"fill":"none"},"children":[]}]}]}; + const wan = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]}]}; + const wat = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const web = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3075 70.6925 0 0 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const wed = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const weg = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M79.5254 0C79.5254 8.83656 72.3619 16 63.5254 16C54.6888 16 47.5254 8.83656 47.5254 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const wel = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32C74.9807 32 32 74.9807 32 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64C92.6538 64 64 92.6538 64 128","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96C110.327 96 96 110.327 96 128","stroke":0,"fill":"none"},"children":[]}]}; + const wen = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M1.01717e-06 64C35.3462 64 64 35.3462 64 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]}]}]}; + const wep = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const wer = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 64L5.59506e-06 0L128 1.11901e-05V64C128 99.3462 99.3462 128 64 128C28.6538 128 -4.6351e-06 99.3462 0 64Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 0L32 128","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const wes = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"80.0035","y1":"79.9965","x2":"112.003","y2":"111.997","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"112","cy":"112","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"112","cy":"112","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const wet = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 64H0","stroke":0,"fill":"none"},"children":[]}]}; + const wex = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const wic = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z","fill":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}; + const wid = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"48.0035","y1":"80.0036","x2":"16.0035","y2":"112.004","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z","fill":0},"children":[]}]}; + const win = {"name":"g","value":"","attributes":{},"children":[{"name":"rect","value":"","attributes":{"width":"128","height":"128","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]}]}; + const wis = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0 0C0 70.6925 57.3075 128 128 128V0H0Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 64L0 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 32L0 32","stroke":0,"fill":"none"},"children":[]}]}]}; + const wit = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"64","y1":"2.18557e-08","x2":"64","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"32","y1":"2.18557e-08","x2":"32","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"96","y1":"2.18557e-08","x2":"96","y2":"128","stroke":0,"fill":"none"},"children":[]}]}; + const wol = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M0 64L128 64","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 96C110.327 96 96 81.6731 96 64C96 46.3269 110.327 32 128 32","stroke":0,"fill":"none"},"children":[]}]}]}; + const wor = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"y1":"-0.5","x2":"45.2548","y2":"-0.5","transform":"matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.65)","stroke":0,"fill":"none"},"children":[]},{"name":"line","value":"","attributes":{"x1":"-0.0029152","x2":"127.983","y2":"127.986","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 96C46.3269 96 32 81.6731 32 64","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const wyc = {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]}]}; + const wyd = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M32 64C32 46.3269 46.3269 32 64 32","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const wyl = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-3.8147e-06 128C-7.24633e-07 92.6538 28.6538 64 64 64C99.3462 64 128 92.6538 128 128","stroke":0,"fill":"none"},"children":[]}]}]}; + const wyn = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M1.52575e-06 96C53.0193 96 96 53.0193 96 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M1.01717e-06 64C35.3462 64 64 35.3462 64 0","stroke":0,"fill":"none"},"children":[]},{"name":"path","value":"","attributes":{"d":"M5.08584e-07 32C17.6731 32 32 17.6731 32 0","stroke":0,"fill":"none"},"children":[]}]}]}; + const wyt = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M128 0L0 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"48","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"16","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const wyx = {"name":"g","value":"","attributes":{},"children":[{"name":"g","value":"","attributes":{"fill":"none"},"children":[{"name":"path","value":"","attributes":{"d":"M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M-0.00292969 0L127.997 128","stroke":0,"stroke-linecap":"square","fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"96","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"32","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"96","cy":"32","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}]}; + const zod = {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]}]}; + var index = { + bac: bac, + bal: bal, + ban: ban, + bar: bar, + bat: bat, + bec: bec, + bel: bel, + ben: ben, + bep: bep, + ber: ber, + bes: bes, + bet: bet, + bex: bex, + bic: bic, + bid: bid, + bil: bil, + bin: bin, + bis: bis, + bit: bit, + bol: bol, + bon: bon, + bor: bor, + bos: bos, + bot: bot, + bud: bud, + bur: bur, + bus: bus, + byl: byl, + byn: byn, + byr: byr, + byt: byt, + dab: dab, + dac: dac, + dal: dal, + dan: dan, + dap: dap, + dar: dar, + das: das, + dat: dat, + dav: dav, + deb: deb, + dec: dec, + def: def, + deg: deg, + del: del, + dem: dem, + den: den, + dep: dep, + der: der, + des: des, + det: det, + dev: dev, + dex: dex, + dib: dib, + dif: dif, + dig: dig, + dil: dil, + din: din, + dir: dir, + dis: dis, + div: div, + doc: doc, + dol: dol, + don: don, + dop: dop, + dor: dor, + dos: dos, + dot: dot, + dov: dov, + doz: doz, + duc: duc, + dul: dul, + dun: dun, + dur: dur, + dus: dus, + dut: dut, + dux: dux, + dyl: dyl, + dyn: dyn, + dyr: dyr, + dys: dys, + dyt: dyt, + fab: fab, + fad: fad, + fal: fal, + fam: fam, + fan: fan, + fas: fas, + feb: feb, + fed: fed, + fel: fel, + fen: fen, + fep: fep, + fer: fer, + fes: fes, + fet: fet, + fex: fex, + fid: fid, + fig: fig, + fil: fil, + fin: fin, + fip: fip, + fir: fir, + fit: fit, + fod: fod, + fog: fog, + fol: fol, + fon: fon, + fop: fop, + fos: fos, + fot: fot, + ful: ful, + fun: fun, + fur: fur, + fus: fus, + fyl: fyl, + fyn: fyn, + fyr: fyr, + hab: hab, + hac: hac, + had: had, + hal: hal, + han: han, + hap: hap, + har: har, + has: has$1, + hat: hat, + hav: hav, + heb: heb, + hec: hec, + hep: hep, + hes: hes, + het: het, + hex: hex, + hid: hid, + hil: hil, + hin: hin, + hob: hob, + hoc: hoc, + hod: hod, + hol: hol, + hop: hop, + hos: hos, + hul: hul, + hus: hus, + hut: hut, + lab: lab, + lac: lac, + lad: lad, + lag: lag, + lan: lan, + lap: lap, + lar: lar, + las: las, + lat: lat, + lav: lav, + leb: leb, + lec: lec, + led: led, + leg: leg, + len: len, + lep: lep, + ler: ler, + lev: lev, + lex: lex, + lib: lib, + lid: lid, + lig: lig, + lin: lin, + lis: lis, + lit: lit, + liv: liv, + loc: loc, + lod: lod, + lom: lom, + lon: lon, + lop: lop, + lor: lor, + los: los, + luc: luc, + lud: lud, + lug: lug, + lun: lun, + lup: lup, + lur: lur, + lus: lus, + lut: lut, + lux: lux, + lyd: lyd, + lyn: lyn, + lyr: lyr, + lys: lys, + lyt: lyt, + lyx: lyx, + mac: mac, + mag: mag, + mal: mal, + map: map, + mar: mar, + mas: mas, + mat: mat, + meb: meb, + mec: mec, + med: med, + meg: meg, + mel: mel, + mep: mep, + mer: mer, + mes: mes, + met: met, + mev: mev, + mex: mex, + mic: mic, + mid: mid, + mig: mig, + mil: mil, + min: min, + mip: mip, + mir: mir, + mis: mis, + mit: mit, + moc: moc, + mod: mod, + mog: mog, + mol: mol, + mon: mon, + mop: mop, + mor: mor, + mos: mos, + mot: mot, + mud: mud, + mug: mug, + mul: mul, + mun: mun, + mur: mur, + mus: mus, + mut: mut, + myl: myl, + myn: myn, + myr: myr, + nac: nac, + nal: nal, + nam: nam, + nap: nap, + nar: nar, + nat: nat, + nav: nav, + neb: neb, + nec: nec, + ned: ned, + nel: nel, + nem: nem, + nep: nep, + ner: ner, + nes: nes, + net: net, + nev: nev, + nex: nex, + nib: nib, + nid: nid, + nil: nil, + nim: nim, + nis: nis, + noc: noc, + nod: nod, + nol: nol, + nom: nom, + nop: nop, + nor: nor, + nos: nos, + nov: nov, + nub: nub, + nul: nul, + num: num, + nup: nup, + nus: nus, + nut: nut, + nux: nux, + nyd: nyd, + nyl: nyl, + nym: nym, + nyr: nyr, + nys: nys, + nyt: nyt, + nyx: nyx, + pac: pac, + pad: pad, + pag: pag, + pal: pal, + pan: pan, + par: par, + pas: pas, + pat: pat, + pec: pec, + ped: ped, + peg: peg, + pel: pel, + pem: pem, + pen: pen, + per: per, + pes: pes, + pet: pet, + pex: pex, + pic: pic, + pid: pid, + pil: pil, + pin: pin, + pit: pit, + poc: poc, + pod: pod, + pol: pol, + pon: pon, + pos: pos, + pub: pub, + pun: pun, + pur: pur, + put: put, + pyl: pyl, + pyx: pyx, + rab: rab, + rac: rac, + rad: rad, + rag: rag, + ral: ral, + ram: ram, + ran: ran, + rap: rap, + rav: rav, + reb: reb, + rec: rec, + red: red, + ref: ref, + reg: reg, + rel: rel, + rem: rem, + ren: ren, + rep: rep, + res: res, + ret: ret, + rev: rev, + rex: rex, + rib: rib, + ric: ric, + rid: rid, + rig: rig, + ril: ril, + rin: rin, + rip: rip, + ris: ris, + rit: rit, + riv: riv, + roc: roc, + rol: rol, + ron: ron, + rop: rop, + ros: ros, + rov: rov, + ruc: ruc, + rud: rud, + rul: rul, + rum: rum, + run: run, + rup: rup, + rus: rus, + rut: rut, + rux: rux, + ryc: ryc, + ryd: ryd, + ryg: ryg, + ryl: ryl, + rym: rym, + ryn: ryn, + ryp: ryp, + rys: rys, + ryt: ryt, + ryx: ryx, + sab: sab, + sal: sal, + sam: sam, + san: san, + sap: sap, + sar: sar, + sat: sat, + sav: sav, + seb: seb, + sec: sec, + sed: sed, + sef: sef, + seg: seg, + sel: sel, + sem: sem, + sen: sen, + sep: sep, + ser: ser, + set: set, + sev: sev, + sib: sib, + sic: sic, + sid: sid, + sig: sig, + sil: sil, + sim: sim, + sip: sip, + sit: sit, + siv: siv, + soc: soc, + sog: sog, + sol: sol, + som: som, + son: son, + sop: sop, + sor: sor, + sov: sov, + sub: sub, + sud: sud, + sug: sug, + sul: sul, + sum: sum, + sun: sun, + sup: sup, + sur: sur, + sut: sut, + syd: syd, + syl: syl, + sym: sym, + syn: syn, + syp: syp, + syr: syr, + syt: syt, + syx: syx, + tab: tab, + tac: tac, + tad: tad, + tag: tag, + tal: tal, + tam: tam, + tan: tan, + tap: tap, + tar: tar, + tas: tas, + teb: teb, + tec: tec, + ted: ted, + teg: teg, + tel: tel, + tem: tem, + ten: ten, + tep: tep, + ter: ter, + tes: tes, + tev: tev, + tex: tex, + tic: tic, + tid: tid, + til: til, + tim: tim, + tin: tin, + tip: tip, + tir: tir, + tob: tob, + toc: toc, + tod: tod, + tog: tog, + tol: tol, + tom: tom, + ton: ton, + top: top, + tor: tor, + tuc: tuc, + tud: tud, + tug: tug, + tul: tul, + tun: tun, + tus: tus, + tux: tux, + tyc: tyc, + tyd: tyd, + tyl: tyl, + tyn: tyn, + typ: typ, + tyr: tyr, + tyv: tyv, + wac: wac, + wal: wal, + wan: wan, + wat: wat, + web: web, + wed: wed, + weg: weg, + wel: wel, + wen: wen, + wep: wep, + wer: wer, + wes: wes, + wet: wet, + wex: wex, + wic: wic, + wid: wid, + win: win, + wis: wis, + wit: wit, + wol: wol, + wor: wor, + wyc: wyc, + wyd: wyd, + wyl: wyl, + wyn: wyn, + wyt: wyt, + wyx: wyx, + zod: zod, + "for": {"name":"g","value":"","attributes":{},"children":[{"name":"path","value":"","attributes":{"d":"M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z","fill":1},"children":[]},{"name":"line","value":"","attributes":{"x1":"96","y1":"2.18557e-08","x2":"96","y2":"128","stroke":0,"fill":"none"},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"11.5","fill":1,"stroke":1},"children":[]},{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"9","fill":0,"stroke":0,"stroke-width":"2"},"children":[]}]}, + "let": {"name":"g","value":"","attributes":{},"children":[{"name":"circle","value":"","attributes":{"cx":"64","cy":"64","r":"64","fill":1},"children":[]},{"name":"path","value":"","attributes":{"d":"M64 0L64 128","stroke":0,"fill":"none"},"children":[]}]} + }; + + const UNIT = 128; + const MARGIN_RATIO = 0.1; + const BG = 0; + + class ConfigError extends Error {} // apply color preference + + + const paint = (node, colors, strokeWidth) => { + if (node.attributes.fill !== undefined && node.attributes.fill !== 'none') { + node.attributes.fill = colors[node.attributes.fill]; + } + + if (node.attributes.stroke !== undefined && node.attributes.stroke !== 'none') { + node.attributes.stroke = colors[node.attributes.stroke]; + node.attributes['stroke-width'] = strokeWidth + 'px'; + node.attributes['stroke-linecap'] = 'square'; + } + + return { + name: node.name, + attributes: node.attributes, + children: node.children.map(n => paint(n, colors, strokeWidth)) + }; + }; // perform transformations + + + const transformations = (symbols, grid, scaleFactor) => { + return symbols.map((symbol, i) => { + const x = grid[i][0]; + const y = grid[i][1]; + let affineMatrix; // If the symbols has no transformations, generate affine matrix + + if (symbol.attributes === undefined) { + affineMatrix = transform(translate(x, y), scale(scaleFactor, scaleFactor)); + symbol.attributes = {}; + } else { + let existingTransformation = symbol.attributes.transform === undefined ? identity() : fromString(symbol.attributes.transform); + affineMatrix = transform(translate(x, y), scale(scaleFactor, scaleFactor), existingTransformation); + } + + symbol.attributes.transform = toSVG(affineMatrix); + return symbol; + }); + }; //============================================================================== + // Main function + // + + + const sigil = params => { + // Set default values from config + const colors = params.colors === undefined ? ['#000', '#fff'] : params.colors; + params.attributes = params.attributes === undefined ? {} : params.attributes; // + // params.background = params.background === undefined + // ? true + // : params.background + + params.full = params.full === undefined ? false : params.full; + params.style = params.style === undefined ? {} : params.style; + params.class = params.class === undefined ? '' : params.class; + params.size = params.size === undefined ? params.height : params.size; + params.width = params.width === undefined ? params.size : params.width; + params.height = params.height === undefined ? params.size : params.height; + const sw = params.size / 128 + 0.33; // get phonemes as array from patp input + + let phonemes = params.patp.replace(/[\^~-]/g, '').match(/.{1,3}/g); + + if (params.iconMode === true) { + phonemes = [phonemes[0]]; + } + + if (phonemes.length !== 1 && phonemes.length !== 2 && phonemes.length !== 4) { + throw new ConfigError(`sigil.js cannot render @p of length ${phonemes.length}. Only lengths of 1 (galaxy), 2 (star), and 4 (planet) are supported at this time.`); + } // get symbols and clone them. + + + const symbols = phonemes.map(phoneme => { + const ast = index[phoneme]; + + if (ast !== undefined) { + return JSON.parse(JSON.stringify(ast)); + } else { + throw new ConfigError(`@p is invalid. Recieved '${params.patp}'`); + } + }); + const ss = params.size; + const ma = params.margin = params.margin === undefined ? MARGIN_RATIO * ss : params.margin; + const sz = (ss - ma * 2 - sw) / 2; + const grids = { + '4': [[ma, ma], // 1st Quartile + [ma + sz + sw, ma], // 2nd Quartile + [ma, ma + sz + sw], // 3rd Quartile + [ma + sz + sw, ma + sz + sw] // 4th Quartile + ], + '2': [[ma, ss - ss / 2 - sz / 2], // Left half + [ma + sz + sw, ss - ss / 2 - sz / 2]], + '2-f': [[ma, ma], // [x,y] Left half + [ma + sz * 2 + sw, ma]], + '1': [[ss - ss / 2 - sz / 2, ss - ss / 2 - sz / 2]], + '1-f': [[ma, ma]] + }; + const gridKey = params.full === true ? `${symbols.length}-f` : symbols.length; + const grid = grids[gridKey]; + const scaleFactor = params.full === true ? sz / UNIT * 2 : sz / UNIT; // apply the transformations + + const arranged = transformations(symbols, grid, scaleFactor); + + if (params.style.width === undefined) { + params.style.width = `${params.width}px`; + } + + if (params.style.height === undefined) { + params.style.height = `${params.height}px`; + } // wrap symbols in SVG tag and add background rect. Also merge in values from the params including class and attributes. + // const children = params.background === true + // ? [ + // { + // name: 'rect', + // attributes: { + // fill: BG, + // width: `${params.width}px`, + // height: `${params.height}px`, + // x: 0, + // y: 0, + // }, + // children: [], + // }, + // ...arranged, + // ] + // : arranged + + + const wrapped = { + name: 'svg', + attributes: _objectSpread2({ + style: _objectSpread2({ + // prevent bottom margin on svg tag + display: 'block' + }, params.style), + viewBox: `0 0 ${params.width} ${params.height}`, + version: '1.1', + xmlns: "http://www.w3.org/2000/svg", + class: params.class + }, params.attributes), + children: [{ + name: 'rect', + attributes: { + fill: BG, + width: `${params.width}px`, + height: `${params.height}px`, + x: 0, + y: 0 + }, + children: [] + }, ...arranged] // apply color + + }; + const resultAST = paint(wrapped, colors, sw / scaleFactor); + return params.renderer === undefined ? resultAST : params.renderer(resultAST); + }; + + exports.reactRenderer = reactRenderer; + exports.sigil = sigil; + exports.stringRenderer = stringRenderer; + }); + + unwrapExports(dist); + var dist_1 = dist.reactRenderer; + var dist_2 = dist.sigil; + var dist_3 = dist.stringRenderer; + + const _jsxFileName$4 = "/Users/matilde/git/tlon/urbit/pkg/interface/contacts/src/js/components/lib/icons/sigil.js"; + + class Sigil extends react_1 { + render() { + const { props } = this; + + if (props.ship.length > 14) { + return ( + react.createElement('div', { className: "bg-black", style: {width: props.size, height: props.size}, __self: this, __source: {fileName: _jsxFileName$4, lineNumber: 11}} + ) + ); + } else { + return ( + react.createElement('div', { className: "dib", style: { flexBasis: 32, backgroundColor: props.color }, __self: this, __source: {fileName: _jsxFileName$4, lineNumber: 16}} + , dist_2({ + patp: props.ship, + renderer: dist_1, + size: props.size, + colors: [props.color, "white"] + }) + ) + ); + } + } + } + + const _jsxFileName$5 = "/Users/matilde/git/tlon/urbit/pkg/interface/contacts/src/js/components/groups.js"; class Groups extends react_1 { // drawer to the left @@ -58827,31 +62720,52 @@ lyrtesmudnytbyrsenwegfyrmurtelreptegpecnelnevfes\ const { props, state } = this; console.log(props.contacts); + let rootIdentity = Object.keys(props.contacts) + .filter((path) => { + return (path === "/~/default") + }).map((path) => { + let ourCard = props.contacts[path][window.ship]; + let color = uxToHex(ourCard.color); + return ( + react.createElement(Link, { to: "/~contacts/me", __self: this, __source: {fileName: _jsxFileName$5, lineNumber: 22}} + , react.createElement('div', { class: "w-100 pl4 f9" , __self: this, __source: {fileName: _jsxFileName$5, lineNumber: 23}} + , react.createElement(Sigil, { ship: window.ship, color: color, size: 32, __self: this, __source: {fileName: _jsxFileName$5, lineNumber: 24}}) + , react.createElement('p', { className: "w-70 dib v-mid ml2 nowrap pb6" , __self: this, __source: {fileName: _jsxFileName$5, lineNumber: 25}}, "~", window.ship) + ) + ) + ) + }); + let groupItems = Object.keys(props.contacts) + .filter((path) => { + return (!path.startsWith("/~/") || path === "/~/default") + }) .map((path) => { let name = path.substr(1); - (name[1] === '/') - ? name = '~' + window.ship + name.substr(1) - : null; + let nameSeparator = name.indexOf("/"); + (name.indexOf("/" === 1)) + ? name = name.substr(2) + : name = name.substr(nameSeparator); return ( react.createElement(GroupsItem, { key: path, link: path, name: name, - contacts: props.contacts[path], __self: this, __source: {fileName: _jsxFileName$4, lineNumber: 20}}) + contacts: props.contacts[path], __self: this, __source: {fileName: _jsxFileName$5, lineNumber: 42}}) ) }); return ( - react.createElement('div', { className: "br b--gray4 h-100 flex-basis-100-s flex-basis-300-ns relative" , __self: this, __source: {fileName: _jsxFileName$4, lineNumber: 29}} - , react.createElement('h2', { className: "f9 pa4 gray2 c-default" , __self: this, __source: {fileName: _jsxFileName$4, lineNumber: 30}}, "Your Root Identity" ) - , react.createElement('h2', { className: "f9 pa4 gray2 c-default" , __self: this, __source: {fileName: _jsxFileName$4, lineNumber: 31}}, "Your Groups" ) + react.createElement('div', { className: "br b--gray4 h-100 flex-basis-100-s flex-basis-300-ns flex-shrink-0 relative" , __self: this, __source: {fileName: _jsxFileName$5, lineNumber: 51}} + , react.createElement('h2', { className: "f9 pa4 gray2 c-default" , __self: this, __source: {fileName: _jsxFileName$5, lineNumber: 52}}, "Your Root Identity" ) + , rootIdentity + , react.createElement('h2', { className: "f9 pt3 pr4 pb4 pl4 gray2 c-default" , __self: this, __source: {fileName: _jsxFileName$5, lineNumber: 54}}, "Your Groups" ) , groupItems , react.createElement('div', { className: "dt bt b--gray4 absolute w-100" , - style: { bottom: 0, height: 48 }, __self: this, __source: {fileName: _jsxFileName$4, lineNumber: 33}} - , react.createElement(Link, { to: "/~contacts/new", className: "dtc v-mid" , __self: this, __source: {fileName: _jsxFileName$4, lineNumber: 36}} - , react.createElement('p', { className: "f9 pl4 black bn" , __self: this, __source: {fileName: _jsxFileName$4, lineNumber: 37}}, "Create New Group" ) + style: { bottom: 0, height: 48 }, __self: this, __source: {fileName: _jsxFileName$5, lineNumber: 56}} + , react.createElement(Link, { to: "/~contacts/new", className: "dtc v-mid" , __self: this, __source: {fileName: _jsxFileName$5, lineNumber: 59}} + , react.createElement('p', { className: "f9 pl4 black bn" , __self: this, __source: {fileName: _jsxFileName$5, lineNumber: 60}}, "Create New Group" ) ) ) ) @@ -58859,26 +62773,26 @@ lyrtesmudnytbyrsenwegfyrmurtelreptegpecnelnevfes\ } } - const _jsxFileName$5 = "/Users/matilde/git/tlon/urbit/pkg/interface/contacts/src/js/components/skeleton.js"; + const _jsxFileName$6 = "/Users/matilde/git/tlon/urbit/pkg/interface/contacts/src/js/components/skeleton.js"; class Skeleton extends react_1 { render() { let rightPanelClasses = - this.props.activeDrawer === "rightPanel" ? "db" : "dn db-ns"; + this.props.activeDrawer === "groups" ? "dn db-ns" : "db"; return ( - react.createElement('div', { className: "h-100 w-100" , __self: this, __source: {fileName: _jsxFileName$5, lineNumber: 13}} - , react.createElement(HeaderBar, { spinner: this.props.spinner, __self: this, __source: {fileName: _jsxFileName$5, lineNumber: 14}} ) + react.createElement('div', { className: "h-100 w-100" , __self: this, __source: {fileName: _jsxFileName$6, lineNumber: 13}} + , react.createElement(HeaderBar, { spinner: this.props.spinner, __self: this, __source: {fileName: _jsxFileName$6, lineNumber: 14}} ) , react.createElement('div', { className: "cf w-100 flex" , style: { height: "calc(100% - 48px)" - }, __self: this, __source: {fileName: _jsxFileName$5, lineNumber: 15}} - , react.createElement(Groups, { contacts: this.props.contacts, __self: this, __source: {fileName: _jsxFileName$5, lineNumber: 20}}) + }, __self: this, __source: {fileName: _jsxFileName$6, lineNumber: 15}} + , react.createElement(Groups, { contacts: this.props.contacts, __self: this, __source: {fileName: _jsxFileName$6, lineNumber: 20}}) , react.createElement('div', { - className: "h-100 w-100 " + rightPanelClasses, + className: "h-100 w-100 flex " + rightPanelClasses, style: { flexGrow: 1 - }, __self: this, __source: {fileName: _jsxFileName$5, lineNumber: 21}} + }, __self: this, __source: {fileName: _jsxFileName$6, lineNumber: 21}} , this.props.children ) ) @@ -58887,7 +62801,7 @@ lyrtesmudnytbyrsenwegfyrmurtelreptegpecnelnevfes\ } } - const _jsxFileName$6 = "/Users/matilde/git/tlon/urbit/pkg/interface/contacts/src/js/components/lib/new.js"; + const _jsxFileName$7 = "/Users/matilde/git/tlon/urbit/pkg/interface/contacts/src/js/components/lib/new.js"; class NewScreen extends react_1 { constructor(props) { super(props); @@ -58923,11 +62837,11 @@ lyrtesmudnytbyrsenwegfyrmurtelreptegpecnelnevfes\ render() { return ( - react.createElement('div', { className: "h-100 w-100 flex flex-column overflow-y-scroll" , __self: this, __source: {fileName: _jsxFileName$6, lineNumber: 40}} - , react.createElement('div', { className: "w-100 w-50-l w-50-xl mb4" , __self: this, __source: {fileName: _jsxFileName$6, lineNumber: 41}} - , react.createElement('h2', { className: "f8 pl3 pt4" , __self: this, __source: {fileName: _jsxFileName$6, lineNumber: 42}}, "Create New Group" ) - , react.createElement('h2', { className: "f8 pl3 pt6" , __self: this, __source: {fileName: _jsxFileName$6, lineNumber: 43}}, "Group Name" ) - , react.createElement('p', { className: "f9 pl3 gray2 lh-copy" , __self: this, __source: {fileName: _jsxFileName$6, lineNumber: 44}}, "Alphanumeric characters only" ) + react.createElement('div', { className: "h-100 w-100 flex flex-column overflow-y-scroll" , __self: this, __source: {fileName: _jsxFileName$7, lineNumber: 40}} + , react.createElement('div', { className: "w-100 w-50-l w-50-xl mb4" , __self: this, __source: {fileName: _jsxFileName$7, lineNumber: 41}} + , react.createElement('h2', { className: "f8 pl3 pt4" , __self: this, __source: {fileName: _jsxFileName$7, lineNumber: 42}}, "Create New Group" ) + , react.createElement('h2', { className: "f8 pl3 pt6" , __self: this, __source: {fileName: _jsxFileName$7, lineNumber: 43}}, "Group Name" ) + , react.createElement('p', { className: "f9 pl3 gray2 lh-copy" , __self: this, __source: {fileName: _jsxFileName$7, lineNumber: 44}}, "Alphanumeric characters only" ) , react.createElement('textarea', { className: "f7 ba b--gray3 w-100 pa3 ml3 mt2" , rows: 1, @@ -58936,7 +62850,7 @@ lyrtesmudnytbyrsenwegfyrmurtelreptegpecnelnevfes\ resize: "none", height: 48, paddingTop: 14 - }, __self: this, __source: {fileName: _jsxFileName$6, lineNumber: 45}} + }, __self: this, __source: {fileName: _jsxFileName$7, lineNumber: 45}} ) /*

Group Avatar

@@ -58952,11 +62866,11 @@ lyrtesmudnytbyrsenwegfyrmurtelreptegpecnelnevfes\ paddingTop: 14 }} /> */ - , react.createElement('h2', { className: "f8 pl3 pt6" , __self: this, __source: {fileName: _jsxFileName$6, lineNumber: 69}}, "Add Group Members" ) - , react.createElement('p', { className: "f9 pl3 gray2 lh-copy" , __self: this, __source: {fileName: _jsxFileName$6, lineNumber: 70}}, "Search for ships to invite to your group" + , react.createElement('h2', { className: "f8 pl3 pt6" , __self: this, __source: {fileName: _jsxFileName$7, lineNumber: 69}}, "Add Group Members" ) + , react.createElement('p', { className: "f9 pl3 gray2 lh-copy" , __self: this, __source: {fileName: _jsxFileName$7, lineNumber: 70}}, "Search for ships to invite to your group" ) - , react.createElement('div', { className: "relative", __self: this, __source: {fileName: _jsxFileName$6, lineNumber: 73}} + , react.createElement('div', { className: "relative", __self: this, __source: {fileName: _jsxFileName$7, lineNumber: 73}} , react.createElement('textarea', { className: "f8 ba b--gray3 w-100 pa3 pl7 ml3 mt2 mb7" , rows: 1, @@ -58965,20 +62879,20 @@ lyrtesmudnytbyrsenwegfyrmurtelreptegpecnelnevfes\ resize: "none", height: 48, paddingTop: 15 - }, __self: this, __source: {fileName: _jsxFileName$6, lineNumber: 74}} + }, __self: this, __source: {fileName: _jsxFileName$7, lineNumber: 74}} ) , react.createElement('span', { className: "f5 gray3 absolute" , style: {transform: "rotate(-45deg)", left: 21, - top: 18}, __self: this, __source: {fileName: _jsxFileName$6, lineNumber: 84}}, "⚲" + top: 18}, __self: this, __source: {fileName: _jsxFileName$7, lineNumber: 84}}, "⚲" ) ) - , react.createElement('button', { className: "ml3 f8 ba pa2 b--green2 green2" , __self: this, __source: {fileName: _jsxFileName$6, lineNumber: 91}}, "Start Group" + , react.createElement('button', { className: "ml3 f8 ba pa2 b--green2 green2" , __self: this, __source: {fileName: _jsxFileName$7, lineNumber: 91}}, "Start Group" ) - , react.createElement(Link, { to: "/~contacts", __self: this, __source: {fileName: _jsxFileName$6, lineNumber: 94}} - , react.createElement('button', { className: "f8 ml3 ba pa2 b--black" , __self: this, __source: {fileName: _jsxFileName$6, lineNumber: 95}}, "Cancel") + , react.createElement(Link, { to: "/~contacts", __self: this, __source: {fileName: _jsxFileName$7, lineNumber: 94}} + , react.createElement('button', { className: "f8 ml3 ba pa2 b--black" , __self: this, __source: {fileName: _jsxFileName$7, lineNumber: 95}}, "Cancel") ) ) ) @@ -58986,18 +62900,29 @@ lyrtesmudnytbyrsenwegfyrmurtelreptegpecnelnevfes\ } } - const _jsxFileName$7 = "/Users/matilde/git/tlon/urbit/pkg/interface/contacts/src/js/components/contacts.js"; + const _jsxFileName$8 = "/Users/matilde/git/tlon/urbit/pkg/interface/contacts/src/js/components/contacts.js"; class Contacts extends react_1 { render() { return ( - react.createElement('div', {__self: this, __source: {fileName: _jsxFileName$7, lineNumber: 6}} - , react.createElement('p', {__self: this, __source: {fileName: _jsxFileName$7, lineNumber: 7}}, "Hey.") + react.createElement('div', { class: "br b--gray4 h-100 flex-shrink-0 flex-basis-100-s flex-basis-300-ns relative" , __self: this, __source: {fileName: _jsxFileName$8, lineNumber: 6}} + , react.createElement('p', {__self: this, __source: {fileName: _jsxFileName$8, lineNumber: 7}}, "Hey.") ) ) } } - const _jsxFileName$8 = "/Users/matilde/git/tlon/urbit/pkg/interface/contacts/src/js/components/root.js"; + const _jsxFileName$9 = "/Users/matilde/git/tlon/urbit/pkg/interface/contacts/src/js/components/lib/card.js"; + class ContactCard extends react_1 { + render() { + return ( + react.createElement('div', {__self: this, __source: {fileName: _jsxFileName$9, lineNumber: 6}} + + ) + ) + } + } + + const _jsxFileName$a = "/Users/matilde/git/tlon/urbit/pkg/interface/contacts/src/js/components/root.js"; class Root extends react_1 { constructor(props) { @@ -59018,39 +62943,66 @@ lyrtesmudnytbyrsenwegfyrmurtelreptegpecnelnevfes\ const { props, state } = this; return ( - react.createElement(BrowserRouter, {__self: this, __source: {fileName: _jsxFileName$8, lineNumber: 33}} - , react.createElement('div', { className: "h-100 w-100" , __self: this, __source: {fileName: _jsxFileName$8, lineNumber: 34}} + react.createElement(BrowserRouter, {__self: this, __source: {fileName: _jsxFileName$a, lineNumber: 34}} + , react.createElement('div', { className: "h-100 w-100" , __self: this, __source: {fileName: _jsxFileName$a, lineNumber: 35}} , react.createElement(Route, { exact: true, path: "/~contacts", render: (props) => { return ( - react.createElement(Skeleton, { activeDrawer: "groups", contacts: state.contacts, __self: this, __source: {fileName: _jsxFileName$8, lineNumber: 38}} - , react.createElement('div', { className: "h-100 w-100 overflow-x-hidden bg-gray0 dn db-ns" , __self: this, __source: {fileName: _jsxFileName$8, lineNumber: 39}}) + react.createElement(Skeleton, { activeDrawer: "groups", contacts: state.contacts, __self: this, __source: {fileName: _jsxFileName$a, lineNumber: 39}} + , react.createElement('div', { className: "h-100 w-100 overflow-x-hidden bg-gray0 dn db-ns" , __self: this, __source: {fileName: _jsxFileName$a, lineNumber: 40}}) ) ); - }, __self: this, __source: {fileName: _jsxFileName$8, lineNumber: 35}} ) + }, __self: this, __source: {fileName: _jsxFileName$a, lineNumber: 36}} ) , react.createElement(Route, { exact: true, path: "/~contacts/new", render: (props) => { return ( react.createElement(Skeleton, { spinner: state.spinner, contacts: state.contacts, - activeDrawer: "rightPanel", __self: this, __source: {fileName: _jsxFileName$8, lineNumber: 46}} - , react.createElement(NewScreen, {__self: this, __source: {fileName: _jsxFileName$8, lineNumber: 50}} ) + activeDrawer: "rightPanel", __self: this, __source: {fileName: _jsxFileName$a, lineNumber: 47}} + , react.createElement(NewScreen, {__self: this, __source: {fileName: _jsxFileName$a, lineNumber: 51}} ) ) ); - }, __self: this, __source: {fileName: _jsxFileName$8, lineNumber: 43}} ) - , react.createElement(Route, { exact: true, path: "/~contacts/group/:group", + }, __self: this, __source: {fileName: _jsxFileName$a, lineNumber: 44}} ) + , react.createElement(Route, { exact: true, path: "/~contacts/:ship/:group", render: (props) => { return( react.createElement(Skeleton, { spinner: state.spinner, contacts: state.contacts, - activeDrawer: "contacts", __self: this, __source: {fileName: _jsxFileName$8, lineNumber: 57}} + activeDrawer: "contacts", __self: this, __source: {fileName: _jsxFileName$a, lineNumber: 58}} , react.createElement(Contacts, { - contacts: state.contacts, __self: this, __source: {fileName: _jsxFileName$8, lineNumber: 61}} ) + contacts: state.contacts, __self: this, __source: {fileName: _jsxFileName$a, lineNumber: 62}} ) + , react.createElement('div', { className: "h-100 w-100 overflow-x-hidden bg-gray0 dn db-ns" , __self: this, __source: {fileName: _jsxFileName$a, lineNumber: 64}}) ) ) - }, __self: this, __source: {fileName: _jsxFileName$8, lineNumber: 54}} + }, __self: this, __source: {fileName: _jsxFileName$a, lineNumber: 55}} + ) + , react.createElement(Route, { exact: true, path: "/~contacts/:ship/:group/:contact", + render: (props) => { + return( + react.createElement(Skeleton, { + spinner: state.spinner, + contacts: state.contacts, + activeDrawer: "rightPanel", __self: this, __source: {fileName: _jsxFileName$a, lineNumber: 72}} + , react.createElement(Contacts, { + contacts: state.contacts, __self: this, __source: {fileName: _jsxFileName$a, lineNumber: 76}} ) + , react.createElement(ContactCard, {__self: this, __source: {fileName: _jsxFileName$a, lineNumber: 78}}) + ) + ) + }, __self: this, __source: {fileName: _jsxFileName$a, lineNumber: 69}} + ) + , react.createElement(Route, { exact: true, path: "/~contacts/me", + render: (props) => { + return( + react.createElement(Skeleton, { + spinner: state.spinner, + contacts: state.contacts, + activeDrawer: "rightPanel", __self: this, __source: {fileName: _jsxFileName$a, lineNumber: 86}} + , react.createElement(ContactCard, {__self: this, __source: {fileName: _jsxFileName$a, lineNumber: 90}}) + ) + ) + }, __self: this, __source: {fileName: _jsxFileName$a, lineNumber: 83}} ) ) ) @@ -59058,7 +63010,7 @@ lyrtesmudnytbyrsenwegfyrmurtelreptegpecnelnevfes\ } } - const _jsxFileName$9 = "/Users/matilde/git/tlon/urbit/pkg/interface/contacts/src/index.js"; + const _jsxFileName$b = "/Users/matilde/git/tlon/urbit/pkg/interface/contacts/src/index.js"; api.setAuthTokens({ ship: window.ship }); @@ -59066,7 +63018,7 @@ lyrtesmudnytbyrsenwegfyrmurtelreptegpecnelnevfes\ subscription.start(); reactDom.render(( - react.createElement(Root, {__self: undefined, __source: {fileName: _jsxFileName$9, lineNumber: 15}} ) + react.createElement(Root, {__self: undefined, __source: {fileName: _jsxFileName$b, lineNumber: 15}} ) ), document.querySelectorAll("#root")[0]); })); diff --git a/pkg/interface/contacts/src/js/components/contacts.js b/pkg/interface/contacts/src/js/components/contacts.js index 9bbcea545..1a6241535 100644 --- a/pkg/interface/contacts/src/js/components/contacts.js +++ b/pkg/interface/contacts/src/js/components/contacts.js @@ -3,7 +3,7 @@ import React, { Component } from 'react' export class Contacts extends Component { render() { return ( -

+

Hey.

) diff --git a/pkg/interface/contacts/src/js/components/groups.js b/pkg/interface/contacts/src/js/components/groups.js index feaf5a9d8..8cb136ec1 100644 --- a/pkg/interface/contacts/src/js/components/groups.js +++ b/pkg/interface/contacts/src/js/components/groups.js @@ -2,6 +2,8 @@ import React, { Component } from 'react'; import { Route, Link } from 'react-router-dom'; import { GroupsItem } from './lib/groups-item'; +import { Sigil } from './lib/icons/sigil'; +import { uxToHex } from '../lib/util'; export class Groups extends Component { // drawer to the left @@ -10,12 +12,32 @@ export class Groups extends Component { const { props, state } = this; console.log(props.contacts); + let rootIdentity = Object.keys(props.contacts) + .filter((path) => { + return (path === "/~/default") + }).map((path) => { + let ourCard = props.contacts[path][window.ship]; + let color = uxToHex(ourCard.color); + return ( + +
+ +

~{window.ship}

+
+ + ) + }); + let groupItems = Object.keys(props.contacts) + .filter((path) => { + return (!path.startsWith("/~/") || path === "/~/default") + }) .map((path) => { let name = path.substr(1); - (name[1] === '/') - ? name = '~' + window.ship + name.substr(1) - : null; + let nameSeparator = name.indexOf("/"); + (name.indexOf("/" === 1)) + ? name = name.substr(2) + : name = name.substr(nameSeparator); return ( +

Your Root Identity

-

Your Groups

+ {rootIdentity} +

Your Groups

{groupItems}
+ +
+ ) + } +} + +export default ContactCard diff --git a/pkg/interface/contacts/src/js/components/lib/groups-item.js b/pkg/interface/contacts/src/js/components/lib/groups-item.js index 952612c52..9f68e4842 100644 --- a/pkg/interface/contacts/src/js/components/lib/groups-item.js +++ b/pkg/interface/contacts/src/js/components/lib/groups-item.js @@ -5,13 +5,12 @@ import { Route, Link } from 'react-router-dom'; export class GroupsItem extends Component { render() { const { props } = this; - console.log(props.group) return ( + to={"/~contacts" + props.link}>
-

{props.name}

+

{props.name}

) diff --git a/pkg/interface/contacts/src/js/components/lib/icons/sigil.js b/pkg/interface/contacts/src/js/components/lib/icons/sigil.js index 25c88ff23..6caa27e45 100644 --- a/pkg/interface/contacts/src/js/components/lib/icons/sigil.js +++ b/pkg/interface/contacts/src/js/components/lib/icons/sigil.js @@ -13,20 +13,15 @@ export class Sigil extends Component { ); } else { return ( -
- { - sigil({ +
+ {sigil({ patp: props.ship, renderer: reactRenderer, size: props.size, - colors: ['black', 'white'], - }) - } + colors: [props.color, "white"] + })}
); } } } - diff --git a/pkg/interface/contacts/src/js/components/root.js b/pkg/interface/contacts/src/js/components/root.js index 4ea14f803..848eb5925 100644 --- a/pkg/interface/contacts/src/js/components/root.js +++ b/pkg/interface/contacts/src/js/components/root.js @@ -8,7 +8,8 @@ import { subscription } from '/subscription'; import { store } from '/store'; import { Skeleton } from '/components/skeleton'; import { NewScreen } from '/components/lib/new'; -import { Contacts } from '/components/contacts.js'; +import { Contacts } from '/components/contacts'; +import { ContactCard } from '/components/lib/card' export class Root extends Component { @@ -51,7 +52,7 @@ export class Root extends Component { ); }} /> - { return( +
+
+ ) + }} + /> + { + return( + + + + + ) + }} + /> + { + return( + + ) }} diff --git a/pkg/interface/contacts/src/js/components/skeleton.js b/pkg/interface/contacts/src/js/components/skeleton.js index 6b270b238..9ec452cbe 100644 --- a/pkg/interface/contacts/src/js/components/skeleton.js +++ b/pkg/interface/contacts/src/js/components/skeleton.js @@ -7,7 +7,7 @@ import { Groups } from './groups'; export class Skeleton extends Component { render() { let rightPanelClasses = - this.props.activeDrawer === "rightPanel" ? "db" : "dn db-ns"; + this.props.activeDrawer === "groups" ? "dn db-ns" : "db"; return (
@@ -19,7 +19,7 @@ export class Skeleton extends Component { }}>
diff --git a/pkg/interface/contacts/src/js/lib/util.js b/pkg/interface/contacts/src/js/lib/util.js index f2b0ecd0f..90bd53b58 100644 --- a/pkg/interface/contacts/src/js/lib/util.js +++ b/pkg/interface/contacts/src/js/lib/util.js @@ -61,3 +61,8 @@ export function dateToDa(d, mil) { export function deSig(ship) { return ship.replace('~', ''); } + +export function uxToHex(ux) { + let value = ux.substr(2).replace('.', '').padStart(6, '0'); + return value; +} \ No newline at end of file