@everymatrix/lottery-program-wof 1.34.0 → 1.34.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"lottery-program-wof.js","sources":["../../../node_modules/svelte/internal/index.mjs","../src/images/gift.svg","../../../node_modules/tslib/tslib.es6.js","../src/message.ts","../../../node_modules/svelte/store/index.mjs","../../../node_modules/deepmerge/dist/cjs.js","../../../node_modules/@formatjs/icu-messageformat-parser/lib/error.js","../../../node_modules/@formatjs/icu-messageformat-parser/lib/types.js","../../../node_modules/@formatjs/icu-messageformat-parser/lib/regex.generated.js","../../../node_modules/@formatjs/icu-skeleton-parser/lib/date-time.js","../../../node_modules/@formatjs/icu-skeleton-parser/lib/regex.generated.js","../../../node_modules/@formatjs/icu-skeleton-parser/lib/number.js","../../../node_modules/@formatjs/icu-messageformat-parser/lib/time-data.generated.js","../../../node_modules/@formatjs/icu-messageformat-parser/lib/date-time-pattern-generator.js","../../../node_modules/@formatjs/icu-messageformat-parser/lib/parser.js","../../../node_modules/@formatjs/icu-messageformat-parser/lib/index.js","../../../node_modules/@formatjs/fast-memoize/lib/index.js","../../../node_modules/intl-messageformat/lib/src/error.js","../../../node_modules/intl-messageformat/lib/src/formatters.js","../../../node_modules/intl-messageformat/lib/src/core.js","../../../node_modules/svelte-i18n/dist/runtime.esm.js","../src/translations.js","../src/i18n.ts","../src/util.ts","../src/widget.ts","../src/private.message.svelte","../src/types.ts","../src/private.tabs.svelte","../src/calc.ts","../src/types.business.ts","../src/images/Thankyou_1.svg","../src/business.partition.ts","../src/business.ts","../src/private.loader.svelte","../src/private.outcomes.svelte","../src/themes.ts","../src/class.spinner.util.ts","../src/class.spinner.ts","../src/calc.point.ts","../src/class.svgcalc.ts","../src/class.process.ts","../src/images/theme.bg.halo.svg","../src/images/theme.bg.blackring.svg","../src/images/themeCenter1.svg","../src/images/themeCenter2.svg","../src/images/themePartitionLight.svg","../src/images/themePointerArea.svg","../src/images/theme1Bg3.svg","../src/images/theme2Bg3.svg","../src/images/theme2Arrow.svg","../src/images/theme3Bg1.svg","../src/images/theme3Bg2.svg","../src/images/theme3Arrow.svg","../src/images/theme7Bg1.svg","../src/images/theme7Bg2.svg","../src/images/theme7Bg3.svg","../src/images/theme2Center.svg","../src/images/theme3Center.svg","../src/images/theme7Center.svg","../src/images/theme7Light.svg","../src/images/theme7Arrow.svg","../src/images/themeShadow.svg","../src/themes.image.center.ts","../src/private.item.svg.svelte","../src/private.item.svelte","../src/LotteryProgramWof.svelte","../src/index.ts"],"sourcesContent":["function noop() { }\nconst identity = x => x;\nfunction assign(tar, src) {\n // @ts-ignore\n for (const k in src)\n tar[k] = src[k];\n return tar;\n}\n// Adapted from https://github.com/then/is-promise/blob/master/index.js\n// Distributed under MIT License https://github.com/then/is-promise/blob/master/LICENSE\nfunction is_promise(value) {\n return !!value && (typeof value === 'object' || typeof value === 'function') && typeof value.then === 'function';\n}\nfunction add_location(element, file, line, column, char) {\n element.__svelte_meta = {\n loc: { file, line, column, char }\n };\n}\nfunction run(fn) {\n return fn();\n}\nfunction blank_object() {\n return Object.create(null);\n}\nfunction run_all(fns) {\n fns.forEach(run);\n}\nfunction is_function(thing) {\n return typeof thing === 'function';\n}\nfunction safe_not_equal(a, b) {\n return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function');\n}\nlet src_url_equal_anchor;\nfunction src_url_equal(element_src, url) {\n if (!src_url_equal_anchor) {\n src_url_equal_anchor = document.createElement('a');\n }\n src_url_equal_anchor.href = url;\n return element_src === src_url_equal_anchor.href;\n}\nfunction not_equal(a, b) {\n return a != a ? b == b : a !== b;\n}\nfunction is_empty(obj) {\n return Object.keys(obj).length === 0;\n}\nfunction validate_store(store, name) {\n if (store != null && typeof store.subscribe !== 'function') {\n throw new Error(`'${name}' is not a store with a 'subscribe' method`);\n }\n}\nfunction subscribe(store, ...callbacks) {\n if (store == null) {\n return noop;\n }\n const unsub = store.subscribe(...callbacks);\n return unsub.unsubscribe ? () => unsub.unsubscribe() : unsub;\n}\nfunction get_store_value(store) {\n let value;\n subscribe(store, _ => value = _)();\n return value;\n}\nfunction component_subscribe(component, store, callback) {\n component.$$.on_destroy.push(subscribe(store, callback));\n}\nfunction create_slot(definition, ctx, $$scope, fn) {\n if (definition) {\n const slot_ctx = get_slot_context(definition, ctx, $$scope, fn);\n return definition[0](slot_ctx);\n }\n}\nfunction get_slot_context(definition, ctx, $$scope, fn) {\n return definition[1] && fn\n ? assign($$scope.ctx.slice(), definition[1](fn(ctx)))\n : $$scope.ctx;\n}\nfunction get_slot_changes(definition, $$scope, dirty, fn) {\n if (definition[2] && fn) {\n const lets = definition[2](fn(dirty));\n if ($$scope.dirty === undefined) {\n return lets;\n }\n if (typeof lets === 'object') {\n const merged = [];\n const len = Math.max($$scope.dirty.length, lets.length);\n for (let i = 0; i < len; i += 1) {\n merged[i] = $$scope.dirty[i] | lets[i];\n }\n return merged;\n }\n return $$scope.dirty | lets;\n }\n return $$scope.dirty;\n}\nfunction update_slot_base(slot, slot_definition, ctx, $$scope, slot_changes, get_slot_context_fn) {\n if (slot_changes) {\n const slot_context = get_slot_context(slot_definition, ctx, $$scope, get_slot_context_fn);\n slot.p(slot_context, slot_changes);\n }\n}\nfunction update_slot(slot, slot_definition, ctx, $$scope, dirty, get_slot_changes_fn, get_slot_context_fn) {\n const slot_changes = get_slot_changes(slot_definition, $$scope, dirty, get_slot_changes_fn);\n update_slot_base(slot, slot_definition, ctx, $$scope, slot_changes, get_slot_context_fn);\n}\nfunction get_all_dirty_from_scope($$scope) {\n if ($$scope.ctx.length > 32) {\n const dirty = [];\n const length = $$scope.ctx.length / 32;\n for (let i = 0; i < length; i++) {\n dirty[i] = -1;\n }\n return dirty;\n }\n return -1;\n}\nfunction exclude_internal_props(props) {\n const result = {};\n for (const k in props)\n if (k[0] !== '$')\n result[k] = props[k];\n return result;\n}\nfunction compute_rest_props(props, keys) {\n const rest = {};\n keys = new Set(keys);\n for (const k in props)\n if (!keys.has(k) && k[0] !== '$')\n rest[k] = props[k];\n return rest;\n}\nfunction compute_slots(slots) {\n const result = {};\n for (const key in slots) {\n result[key] = true;\n }\n return result;\n}\nfunction once(fn) {\n let ran = false;\n return function (...args) {\n if (ran)\n return;\n ran = true;\n fn.call(this, ...args);\n };\n}\nfunction null_to_empty(value) {\n return value == null ? '' : value;\n}\nfunction set_store_value(store, ret, value) {\n store.set(value);\n return ret;\n}\nconst has_prop = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop);\nfunction action_destroyer(action_result) {\n return action_result && is_function(action_result.destroy) ? action_result.destroy : noop;\n}\nfunction split_css_unit(value) {\n const split = typeof value === 'string' && value.match(/^\\s*(-?[\\d.]+)([^\\s]*)\\s*$/);\n return split ? [parseFloat(split[1]), split[2] || 'px'] : [value, 'px'];\n}\nconst contenteditable_truthy_values = ['', true, 1, 'true', 'contenteditable'];\n\nconst is_client = typeof window !== 'undefined';\nlet now = is_client\n ? () => window.performance.now()\n : () => Date.now();\nlet raf = is_client ? cb => requestAnimationFrame(cb) : noop;\n// used internally for testing\nfunction set_now(fn) {\n now = fn;\n}\nfunction set_raf(fn) {\n raf = fn;\n}\n\nconst tasks = new Set();\nfunction run_tasks(now) {\n tasks.forEach(task => {\n if (!task.c(now)) {\n tasks.delete(task);\n task.f();\n }\n });\n if (tasks.size !== 0)\n raf(run_tasks);\n}\n/**\n * For testing purposes only!\n */\nfunction clear_loops() {\n tasks.clear();\n}\n/**\n * Creates a new task that runs on each raf frame\n * until it returns a falsy value or is aborted\n */\nfunction loop(callback) {\n let task;\n if (tasks.size === 0)\n raf(run_tasks);\n return {\n promise: new Promise(fulfill => {\n tasks.add(task = { c: callback, f: fulfill });\n }),\n abort() {\n tasks.delete(task);\n }\n };\n}\n\nconst globals = (typeof window !== 'undefined'\n ? window\n : typeof globalThis !== 'undefined'\n ? globalThis\n : global);\n\n/**\n * Resize observer singleton.\n * One listener per element only!\n * https://groups.google.com/a/chromium.org/g/blink-dev/c/z6ienONUb5A/m/F5-VcUZtBAAJ\n */\nclass ResizeObserverSingleton {\n constructor(options) {\n this.options = options;\n this._listeners = 'WeakMap' in globals ? new WeakMap() : undefined;\n }\n observe(element, listener) {\n this._listeners.set(element, listener);\n this._getObserver().observe(element, this.options);\n return () => {\n this._listeners.delete(element);\n this._observer.unobserve(element); // this line can probably be removed\n };\n }\n _getObserver() {\n var _a;\n return (_a = this._observer) !== null && _a !== void 0 ? _a : (this._observer = new ResizeObserver((entries) => {\n var _a;\n for (const entry of entries) {\n ResizeObserverSingleton.entries.set(entry.target, entry);\n (_a = this._listeners.get(entry.target)) === null || _a === void 0 ? void 0 : _a(entry);\n }\n }));\n }\n}\n// Needs to be written like this to pass the tree-shake-test\nResizeObserverSingleton.entries = 'WeakMap' in globals ? new WeakMap() : undefined;\n\n// Track which nodes are claimed during hydration. Unclaimed nodes can then be removed from the DOM\n// at the end of hydration without touching the remaining nodes.\nlet is_hydrating = false;\nfunction start_hydrating() {\n is_hydrating = true;\n}\nfunction end_hydrating() {\n is_hydrating = false;\n}\nfunction upper_bound(low, high, key, value) {\n // Return first index of value larger than input value in the range [low, high)\n while (low < high) {\n const mid = low + ((high - low) >> 1);\n if (key(mid) <= value) {\n low = mid + 1;\n }\n else {\n high = mid;\n }\n }\n return low;\n}\nfunction init_hydrate(target) {\n if (target.hydrate_init)\n return;\n target.hydrate_init = true;\n // We know that all children have claim_order values since the unclaimed have been detached if target is not <head>\n let children = target.childNodes;\n // If target is <head>, there may be children without claim_order\n if (target.nodeName === 'HEAD') {\n const myChildren = [];\n for (let i = 0; i < children.length; i++) {\n const node = children[i];\n if (node.claim_order !== undefined) {\n myChildren.push(node);\n }\n }\n children = myChildren;\n }\n /*\n * Reorder claimed children optimally.\n * We can reorder claimed children optimally by finding the longest subsequence of\n * nodes that are already claimed in order and only moving the rest. The longest\n * subsequence of nodes that are claimed in order can be found by\n * computing the longest increasing subsequence of .claim_order values.\n *\n * This algorithm is optimal in generating the least amount of reorder operations\n * possible.\n *\n * Proof:\n * We know that, given a set of reordering operations, the nodes that do not move\n * always form an increasing subsequence, since they do not move among each other\n * meaning that they must be already ordered among each other. Thus, the maximal\n * set of nodes that do not move form a longest increasing subsequence.\n */\n // Compute longest increasing subsequence\n // m: subsequence length j => index k of smallest value that ends an increasing subsequence of length j\n const m = new Int32Array(children.length + 1);\n // Predecessor indices + 1\n const p = new Int32Array(children.length);\n m[0] = -1;\n let longest = 0;\n for (let i = 0; i < children.length; i++) {\n const current = children[i].claim_order;\n // Find the largest subsequence length such that it ends in a value less than our current value\n // upper_bound returns first greater value, so we subtract one\n // with fast path for when we are on the current longest subsequence\n const seqLen = ((longest > 0 && children[m[longest]].claim_order <= current) ? longest + 1 : upper_bound(1, longest, idx => children[m[idx]].claim_order, current)) - 1;\n p[i] = m[seqLen] + 1;\n const newLen = seqLen + 1;\n // We can guarantee that current is the smallest value. Otherwise, we would have generated a longer sequence.\n m[newLen] = i;\n longest = Math.max(newLen, longest);\n }\n // The longest increasing subsequence of nodes (initially reversed)\n const lis = [];\n // The rest of the nodes, nodes that will be moved\n const toMove = [];\n let last = children.length - 1;\n for (let cur = m[longest] + 1; cur != 0; cur = p[cur - 1]) {\n lis.push(children[cur - 1]);\n for (; last >= cur; last--) {\n toMove.push(children[last]);\n }\n last--;\n }\n for (; last >= 0; last--) {\n toMove.push(children[last]);\n }\n lis.reverse();\n // We sort the nodes being moved to guarantee that their insertion order matches the claim order\n toMove.sort((a, b) => a.claim_order - b.claim_order);\n // Finally, we move the nodes\n for (let i = 0, j = 0; i < toMove.length; i++) {\n while (j < lis.length && toMove[i].claim_order >= lis[j].claim_order) {\n j++;\n }\n const anchor = j < lis.length ? lis[j] : null;\n target.insertBefore(toMove[i], anchor);\n }\n}\nfunction append(target, node) {\n target.appendChild(node);\n}\nfunction append_styles(target, style_sheet_id, styles) {\n const append_styles_to = get_root_for_style(target);\n if (!append_styles_to.getElementById(style_sheet_id)) {\n const style = element('style');\n style.id = style_sheet_id;\n style.textContent = styles;\n append_stylesheet(append_styles_to, style);\n }\n}\nfunction get_root_for_style(node) {\n if (!node)\n return document;\n const root = node.getRootNode ? node.getRootNode() : node.ownerDocument;\n if (root && root.host) {\n return root;\n }\n return node.ownerDocument;\n}\nfunction append_empty_stylesheet(node) {\n const style_element = element('style');\n append_stylesheet(get_root_for_style(node), style_element);\n return style_element.sheet;\n}\nfunction append_stylesheet(node, style) {\n append(node.head || node, style);\n return style.sheet;\n}\nfunction append_hydration(target, node) {\n if (is_hydrating) {\n init_hydrate(target);\n if ((target.actual_end_child === undefined) || ((target.actual_end_child !== null) && (target.actual_end_child.parentNode !== target))) {\n target.actual_end_child = target.firstChild;\n }\n // Skip nodes of undefined ordering\n while ((target.actual_end_child !== null) && (target.actual_end_child.claim_order === undefined)) {\n target.actual_end_child = target.actual_end_child.nextSibling;\n }\n if (node !== target.actual_end_child) {\n // We only insert if the ordering of this node should be modified or the parent node is not target\n if (node.claim_order !== undefined || node.parentNode !== target) {\n target.insertBefore(node, target.actual_end_child);\n }\n }\n else {\n target.actual_end_child = node.nextSibling;\n }\n }\n else if (node.parentNode !== target || node.nextSibling !== null) {\n target.appendChild(node);\n }\n}\nfunction insert(target, node, anchor) {\n target.insertBefore(node, anchor || null);\n}\nfunction insert_hydration(target, node, anchor) {\n if (is_hydrating && !anchor) {\n append_hydration(target, node);\n }\n else if (node.parentNode !== target || node.nextSibling != anchor) {\n target.insertBefore(node, anchor || null);\n }\n}\nfunction detach(node) {\n if (node.parentNode) {\n node.parentNode.removeChild(node);\n }\n}\nfunction destroy_each(iterations, detaching) {\n for (let i = 0; i < iterations.length; i += 1) {\n if (iterations[i])\n iterations[i].d(detaching);\n }\n}\nfunction element(name) {\n return document.createElement(name);\n}\nfunction element_is(name, is) {\n return document.createElement(name, { is });\n}\nfunction object_without_properties(obj, exclude) {\n const target = {};\n for (const k in obj) {\n if (has_prop(obj, k)\n // @ts-ignore\n && exclude.indexOf(k) === -1) {\n // @ts-ignore\n target[k] = obj[k];\n }\n }\n return target;\n}\nfunction svg_element(name) {\n return document.createElementNS('http://www.w3.org/2000/svg', name);\n}\nfunction text(data) {\n return document.createTextNode(data);\n}\nfunction space() {\n return text(' ');\n}\nfunction empty() {\n return text('');\n}\nfunction comment(content) {\n return document.createComment(content);\n}\nfunction listen(node, event, handler, options) {\n node.addEventListener(event, handler, options);\n return () => node.removeEventListener(event, handler, options);\n}\nfunction prevent_default(fn) {\n return function (event) {\n event.preventDefault();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction stop_propagation(fn) {\n return function (event) {\n event.stopPropagation();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction stop_immediate_propagation(fn) {\n return function (event) {\n event.stopImmediatePropagation();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction self(fn) {\n return function (event) {\n // @ts-ignore\n if (event.target === this)\n fn.call(this, event);\n };\n}\nfunction trusted(fn) {\n return function (event) {\n // @ts-ignore\n if (event.isTrusted)\n fn.call(this, event);\n };\n}\nfunction attr(node, attribute, value) {\n if (value == null)\n node.removeAttribute(attribute);\n else if (node.getAttribute(attribute) !== value)\n node.setAttribute(attribute, value);\n}\n/**\n * List of attributes that should always be set through the attr method,\n * because updating them through the property setter doesn't work reliably.\n * In the example of `width`/`height`, the problem is that the setter only\n * accepts numeric values, but the attribute can also be set to a string like `50%`.\n * If this list becomes too big, rethink this approach.\n */\nconst always_set_through_set_attribute = ['width', 'height'];\nfunction set_attributes(node, attributes) {\n // @ts-ignore\n const descriptors = Object.getOwnPropertyDescriptors(node.__proto__);\n for (const key in attributes) {\n if (attributes[key] == null) {\n node.removeAttribute(key);\n }\n else if (key === 'style') {\n node.style.cssText = attributes[key];\n }\n else if (key === '__value') {\n node.value = node[key] = attributes[key];\n }\n else if (descriptors[key] && descriptors[key].set && always_set_through_set_attribute.indexOf(key) === -1) {\n node[key] = attributes[key];\n }\n else {\n attr(node, key, attributes[key]);\n }\n }\n}\nfunction set_svg_attributes(node, attributes) {\n for (const key in attributes) {\n attr(node, key, attributes[key]);\n }\n}\nfunction set_custom_element_data_map(node, data_map) {\n Object.keys(data_map).forEach((key) => {\n set_custom_element_data(node, key, data_map[key]);\n });\n}\nfunction set_custom_element_data(node, prop, value) {\n if (prop in node) {\n node[prop] = typeof node[prop] === 'boolean' && value === '' ? true : value;\n }\n else {\n attr(node, prop, value);\n }\n}\nfunction set_dynamic_element_data(tag) {\n return (/-/.test(tag)) ? set_custom_element_data_map : set_attributes;\n}\nfunction xlink_attr(node, attribute, value) {\n node.setAttributeNS('http://www.w3.org/1999/xlink', attribute, value);\n}\nfunction get_binding_group_value(group, __value, checked) {\n const value = new Set();\n for (let i = 0; i < group.length; i += 1) {\n if (group[i].checked)\n value.add(group[i].__value);\n }\n if (!checked) {\n value.delete(__value);\n }\n return Array.from(value);\n}\nfunction init_binding_group(group) {\n let _inputs;\n return {\n /* push */ p(...inputs) {\n _inputs = inputs;\n _inputs.forEach(input => group.push(input));\n },\n /* remove */ r() {\n _inputs.forEach(input => group.splice(group.indexOf(input), 1));\n }\n };\n}\nfunction init_binding_group_dynamic(group, indexes) {\n let _group = get_binding_group(group);\n let _inputs;\n function get_binding_group(group) {\n for (let i = 0; i < indexes.length; i++) {\n group = group[indexes[i]] = group[indexes[i]] || [];\n }\n return group;\n }\n function push() {\n _inputs.forEach(input => _group.push(input));\n }\n function remove() {\n _inputs.forEach(input => _group.splice(_group.indexOf(input), 1));\n }\n return {\n /* update */ u(new_indexes) {\n indexes = new_indexes;\n const new_group = get_binding_group(group);\n if (new_group !== _group) {\n remove();\n _group = new_group;\n push();\n }\n },\n /* push */ p(...inputs) {\n _inputs = inputs;\n push();\n },\n /* remove */ r: remove\n };\n}\nfunction to_number(value) {\n return value === '' ? null : +value;\n}\nfunction time_ranges_to_array(ranges) {\n const array = [];\n for (let i = 0; i < ranges.length; i += 1) {\n array.push({ start: ranges.start(i), end: ranges.end(i) });\n }\n return array;\n}\nfunction children(element) {\n return Array.from(element.childNodes);\n}\nfunction init_claim_info(nodes) {\n if (nodes.claim_info === undefined) {\n nodes.claim_info = { last_index: 0, total_claimed: 0 };\n }\n}\nfunction claim_node(nodes, predicate, processNode, createNode, dontUpdateLastIndex = false) {\n // Try to find nodes in an order such that we lengthen the longest increasing subsequence\n init_claim_info(nodes);\n const resultNode = (() => {\n // We first try to find an element after the previous one\n for (let i = nodes.claim_info.last_index; i < nodes.length; i++) {\n const node = nodes[i];\n if (predicate(node)) {\n const replacement = processNode(node);\n if (replacement === undefined) {\n nodes.splice(i, 1);\n }\n else {\n nodes[i] = replacement;\n }\n if (!dontUpdateLastIndex) {\n nodes.claim_info.last_index = i;\n }\n return node;\n }\n }\n // Otherwise, we try to find one before\n // We iterate in reverse so that we don't go too far back\n for (let i = nodes.claim_info.last_index - 1; i >= 0; i--) {\n const node = nodes[i];\n if (predicate(node)) {\n const replacement = processNode(node);\n if (replacement === undefined) {\n nodes.splice(i, 1);\n }\n else {\n nodes[i] = replacement;\n }\n if (!dontUpdateLastIndex) {\n nodes.claim_info.last_index = i;\n }\n else if (replacement === undefined) {\n // Since we spliced before the last_index, we decrease it\n nodes.claim_info.last_index--;\n }\n return node;\n }\n }\n // If we can't find any matching node, we create a new one\n return createNode();\n })();\n resultNode.claim_order = nodes.claim_info.total_claimed;\n nodes.claim_info.total_claimed += 1;\n return resultNode;\n}\nfunction claim_element_base(nodes, name, attributes, create_element) {\n return claim_node(nodes, (node) => node.nodeName === name, (node) => {\n const remove = [];\n for (let j = 0; j < node.attributes.length; j++) {\n const attribute = node.attributes[j];\n if (!attributes[attribute.name]) {\n remove.push(attribute.name);\n }\n }\n remove.forEach(v => node.removeAttribute(v));\n return undefined;\n }, () => create_element(name));\n}\nfunction claim_element(nodes, name, attributes) {\n return claim_element_base(nodes, name, attributes, element);\n}\nfunction claim_svg_element(nodes, name, attributes) {\n return claim_element_base(nodes, name, attributes, svg_element);\n}\nfunction claim_text(nodes, data) {\n return claim_node(nodes, (node) => node.nodeType === 3, (node) => {\n const dataStr = '' + data;\n if (node.data.startsWith(dataStr)) {\n if (node.data.length !== dataStr.length) {\n return node.splitText(dataStr.length);\n }\n }\n else {\n node.data = dataStr;\n }\n }, () => text(data), true // Text nodes should not update last index since it is likely not worth it to eliminate an increasing subsequence of actual elements\n );\n}\nfunction claim_space(nodes) {\n return claim_text(nodes, ' ');\n}\nfunction claim_comment(nodes, data) {\n return claim_node(nodes, (node) => node.nodeType === 8, (node) => {\n node.data = '' + data;\n return undefined;\n }, () => comment(data), true);\n}\nfunction find_comment(nodes, text, start) {\n for (let i = start; i < nodes.length; i += 1) {\n const node = nodes[i];\n if (node.nodeType === 8 /* comment node */ && node.textContent.trim() === text) {\n return i;\n }\n }\n return nodes.length;\n}\nfunction claim_html_tag(nodes, is_svg) {\n // find html opening tag\n const start_index = find_comment(nodes, 'HTML_TAG_START', 0);\n const end_index = find_comment(nodes, 'HTML_TAG_END', start_index);\n if (start_index === end_index) {\n return new HtmlTagHydration(undefined, is_svg);\n }\n init_claim_info(nodes);\n const html_tag_nodes = nodes.splice(start_index, end_index - start_index + 1);\n detach(html_tag_nodes[0]);\n detach(html_tag_nodes[html_tag_nodes.length - 1]);\n const claimed_nodes = html_tag_nodes.slice(1, html_tag_nodes.length - 1);\n for (const n of claimed_nodes) {\n n.claim_order = nodes.claim_info.total_claimed;\n nodes.claim_info.total_claimed += 1;\n }\n return new HtmlTagHydration(claimed_nodes, is_svg);\n}\nfunction set_data(text, data) {\n data = '' + data;\n if (text.data === data)\n return;\n text.data = data;\n}\nfunction set_data_contenteditable(text, data) {\n data = '' + data;\n if (text.wholeText === data)\n return;\n text.data = data;\n}\nfunction set_data_maybe_contenteditable(text, data, attr_value) {\n if (~contenteditable_truthy_values.indexOf(attr_value)) {\n set_data_contenteditable(text, data);\n }\n else {\n set_data(text, data);\n }\n}\nfunction set_input_value(input, value) {\n input.value = value == null ? '' : value;\n}\nfunction set_input_type(input, type) {\n try {\n input.type = type;\n }\n catch (e) {\n // do nothing\n }\n}\nfunction set_style(node, key, value, important) {\n if (value == null) {\n node.style.removeProperty(key);\n }\n else {\n node.style.setProperty(key, value, important ? 'important' : '');\n }\n}\nfunction select_option(select, value, mounting) {\n for (let i = 0; i < select.options.length; i += 1) {\n const option = select.options[i];\n if (option.__value === value) {\n option.selected = true;\n return;\n }\n }\n if (!mounting || value !== undefined) {\n select.selectedIndex = -1; // no option should be selected\n }\n}\nfunction select_options(select, value) {\n for (let i = 0; i < select.options.length; i += 1) {\n const option = select.options[i];\n option.selected = ~value.indexOf(option.__value);\n }\n}\nfunction select_value(select) {\n const selected_option = select.querySelector(':checked');\n return selected_option && selected_option.__value;\n}\nfunction select_multiple_value(select) {\n return [].map.call(select.querySelectorAll(':checked'), option => option.__value);\n}\n// unfortunately this can't be a constant as that wouldn't be tree-shakeable\n// so we cache the result instead\nlet crossorigin;\nfunction is_crossorigin() {\n if (crossorigin === undefined) {\n crossorigin = false;\n try {\n if (typeof window !== 'undefined' && window.parent) {\n void window.parent.document;\n }\n }\n catch (error) {\n crossorigin = true;\n }\n }\n return crossorigin;\n}\nfunction add_iframe_resize_listener(node, fn) {\n const computed_style = getComputedStyle(node);\n if (computed_style.position === 'static') {\n node.style.position = 'relative';\n }\n const iframe = element('iframe');\n iframe.setAttribute('style', 'display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; ' +\n 'overflow: hidden; border: 0; opacity: 0; pointer-events: none; z-index: -1;');\n iframe.setAttribute('aria-hidden', 'true');\n iframe.tabIndex = -1;\n const crossorigin = is_crossorigin();\n let unsubscribe;\n if (crossorigin) {\n iframe.src = \"data:text/html,<script>onresize=function(){parent.postMessage(0,'*')}</script>\";\n unsubscribe = listen(window, 'message', (event) => {\n if (event.source === iframe.contentWindow)\n fn();\n });\n }\n else {\n iframe.src = 'about:blank';\n iframe.onload = () => {\n unsubscribe = listen(iframe.contentWindow, 'resize', fn);\n // make sure an initial resize event is fired _after_ the iframe is loaded (which is asynchronous)\n // see https://github.com/sveltejs/svelte/issues/4233\n fn();\n };\n }\n append(node, iframe);\n return () => {\n if (crossorigin) {\n unsubscribe();\n }\n else if (unsubscribe && iframe.contentWindow) {\n unsubscribe();\n }\n detach(iframe);\n };\n}\nconst resize_observer_content_box = /* @__PURE__ */ new ResizeObserverSingleton({ box: 'content-box' });\nconst resize_observer_border_box = /* @__PURE__ */ new ResizeObserverSingleton({ box: 'border-box' });\nconst resize_observer_device_pixel_content_box = /* @__PURE__ */ new ResizeObserverSingleton({ box: 'device-pixel-content-box' });\nfunction toggle_class(element, name, toggle) {\n element.classList[toggle ? 'add' : 'remove'](name);\n}\nfunction custom_event(type, detail, { bubbles = false, cancelable = false } = {}) {\n const e = document.createEvent('CustomEvent');\n e.initCustomEvent(type, bubbles, cancelable, detail);\n return e;\n}\nfunction query_selector_all(selector, parent = document.body) {\n return Array.from(parent.querySelectorAll(selector));\n}\nfunction head_selector(nodeId, head) {\n const result = [];\n let started = 0;\n for (const node of head.childNodes) {\n if (node.nodeType === 8 /* comment node */) {\n const comment = node.textContent.trim();\n if (comment === `HEAD_${nodeId}_END`) {\n started -= 1;\n result.push(node);\n }\n else if (comment === `HEAD_${nodeId}_START`) {\n started += 1;\n result.push(node);\n }\n }\n else if (started > 0) {\n result.push(node);\n }\n }\n return result;\n}\nclass HtmlTag {\n constructor(is_svg = false) {\n this.is_svg = false;\n this.is_svg = is_svg;\n this.e = this.n = null;\n }\n c(html) {\n this.h(html);\n }\n m(html, target, anchor = null) {\n if (!this.e) {\n if (this.is_svg)\n this.e = svg_element(target.nodeName);\n /** #7364 target for <template> may be provided as #document-fragment(11) */\n else\n this.e = element((target.nodeType === 11 ? 'TEMPLATE' : target.nodeName));\n this.t = target.tagName !== 'TEMPLATE' ? target : target.content;\n this.c(html);\n }\n this.i(anchor);\n }\n h(html) {\n this.e.innerHTML = html;\n this.n = Array.from(this.e.nodeName === 'TEMPLATE' ? this.e.content.childNodes : this.e.childNodes);\n }\n i(anchor) {\n for (let i = 0; i < this.n.length; i += 1) {\n insert(this.t, this.n[i], anchor);\n }\n }\n p(html) {\n this.d();\n this.h(html);\n this.i(this.a);\n }\n d() {\n this.n.forEach(detach);\n }\n}\nclass HtmlTagHydration extends HtmlTag {\n constructor(claimed_nodes, is_svg = false) {\n super(is_svg);\n this.e = this.n = null;\n this.l = claimed_nodes;\n }\n c(html) {\n if (this.l) {\n this.n = this.l;\n }\n else {\n super.c(html);\n }\n }\n i(anchor) {\n for (let i = 0; i < this.n.length; i += 1) {\n insert_hydration(this.t, this.n[i], anchor);\n }\n }\n}\nfunction attribute_to_object(attributes) {\n const result = {};\n for (const attribute of attributes) {\n result[attribute.name] = attribute.value;\n }\n return result;\n}\nfunction get_custom_elements_slots(element) {\n const result = {};\n element.childNodes.forEach((node) => {\n result[node.slot || 'default'] = true;\n });\n return result;\n}\nfunction construct_svelte_component(component, props) {\n return new component(props);\n}\n\n// we need to store the information for multiple documents because a Svelte application could also contain iframes\n// https://github.com/sveltejs/svelte/issues/3624\nconst managed_styles = new Map();\nlet active = 0;\n// https://github.com/darkskyapp/string-hash/blob/master/index.js\nfunction hash(str) {\n let hash = 5381;\n let i = str.length;\n while (i--)\n hash = ((hash << 5) - hash) ^ str.charCodeAt(i);\n return hash >>> 0;\n}\nfunction create_style_information(doc, node) {\n const info = { stylesheet: append_empty_stylesheet(node), rules: {} };\n managed_styles.set(doc, info);\n return info;\n}\nfunction create_rule(node, a, b, duration, delay, ease, fn, uid = 0) {\n const step = 16.666 / duration;\n let keyframes = '{\\n';\n for (let p = 0; p <= 1; p += step) {\n const t = a + (b - a) * ease(p);\n keyframes += p * 100 + `%{${fn(t, 1 - t)}}\\n`;\n }\n const rule = keyframes + `100% {${fn(b, 1 - b)}}\\n}`;\n const name = `__svelte_${hash(rule)}_${uid}`;\n const doc = get_root_for_style(node);\n const { stylesheet, rules } = managed_styles.get(doc) || create_style_information(doc, node);\n if (!rules[name]) {\n rules[name] = true;\n stylesheet.insertRule(`@keyframes ${name} ${rule}`, stylesheet.cssRules.length);\n }\n const animation = node.style.animation || '';\n node.style.animation = `${animation ? `${animation}, ` : ''}${name} ${duration}ms linear ${delay}ms 1 both`;\n active += 1;\n return name;\n}\nfunction delete_rule(node, name) {\n const previous = (node.style.animation || '').split(', ');\n const next = previous.filter(name\n ? anim => anim.indexOf(name) < 0 // remove specific animation\n : anim => anim.indexOf('__svelte') === -1 // remove all Svelte animations\n );\n const deleted = previous.length - next.length;\n if (deleted) {\n node.style.animation = next.join(', ');\n active -= deleted;\n if (!active)\n clear_rules();\n }\n}\nfunction clear_rules() {\n raf(() => {\n if (active)\n return;\n managed_styles.forEach(info => {\n const { ownerNode } = info.stylesheet;\n // there is no ownerNode if it runs on jsdom.\n if (ownerNode)\n detach(ownerNode);\n });\n managed_styles.clear();\n });\n}\n\nfunction create_animation(node, from, fn, params) {\n if (!from)\n return noop;\n const to = node.getBoundingClientRect();\n if (from.left === to.left && from.right === to.right && from.top === to.top && from.bottom === to.bottom)\n return noop;\n const { delay = 0, duration = 300, easing = identity, \n // @ts-ignore todo: should this be separated from destructuring? Or start/end added to public api and documentation?\n start: start_time = now() + delay, \n // @ts-ignore todo:\n end = start_time + duration, tick = noop, css } = fn(node, { from, to }, params);\n let running = true;\n let started = false;\n let name;\n function start() {\n if (css) {\n name = create_rule(node, 0, 1, duration, delay, easing, css);\n }\n if (!delay) {\n started = true;\n }\n }\n function stop() {\n if (css)\n delete_rule(node, name);\n running = false;\n }\n loop(now => {\n if (!started && now >= start_time) {\n started = true;\n }\n if (started && now >= end) {\n tick(1, 0);\n stop();\n }\n if (!running) {\n return false;\n }\n if (started) {\n const p = now - start_time;\n const t = 0 + 1 * easing(p / duration);\n tick(t, 1 - t);\n }\n return true;\n });\n start();\n tick(0, 1);\n return stop;\n}\nfunction fix_position(node) {\n const style = getComputedStyle(node);\n if (style.position !== 'absolute' && style.position !== 'fixed') {\n const { width, height } = style;\n const a = node.getBoundingClientRect();\n node.style.position = 'absolute';\n node.style.width = width;\n node.style.height = height;\n add_transform(node, a);\n }\n}\nfunction add_transform(node, a) {\n const b = node.getBoundingClientRect();\n if (a.left !== b.left || a.top !== b.top) {\n const style = getComputedStyle(node);\n const transform = style.transform === 'none' ? '' : style.transform;\n node.style.transform = `${transform} translate(${a.left - b.left}px, ${a.top - b.top}px)`;\n }\n}\n\nlet current_component;\nfunction set_current_component(component) {\n current_component = component;\n}\nfunction get_current_component() {\n if (!current_component)\n throw new Error('Function called outside component initialization');\n return current_component;\n}\n/**\n * Schedules a callback to run immediately before the component is updated after any state change.\n *\n * The first time the callback runs will be before the initial `onMount`\n *\n * https://svelte.dev/docs#run-time-svelte-beforeupdate\n */\nfunction beforeUpdate(fn) {\n get_current_component().$$.before_update.push(fn);\n}\n/**\n * The `onMount` function schedules a callback to run as soon as the component has been mounted to the DOM.\n * It must be called during the component's initialisation (but doesn't need to live *inside* the component;\n * it can be called from an external module).\n *\n * `onMount` does not run inside a [server-side component](/docs#run-time-server-side-component-api).\n *\n * https://svelte.dev/docs#run-time-svelte-onmount\n */\nfunction onMount(fn) {\n get_current_component().$$.on_mount.push(fn);\n}\n/**\n * Schedules a callback to run immediately after the component has been updated.\n *\n * The first time the callback runs will be after the initial `onMount`\n */\nfunction afterUpdate(fn) {\n get_current_component().$$.after_update.push(fn);\n}\n/**\n * Schedules a callback to run immediately before the component is unmounted.\n *\n * Out of `onMount`, `beforeUpdate`, `afterUpdate` and `onDestroy`, this is the\n * only one that runs inside a server-side component.\n *\n * https://svelte.dev/docs#run-time-svelte-ondestroy\n */\nfunction onDestroy(fn) {\n get_current_component().$$.on_destroy.push(fn);\n}\n/**\n * Creates an event dispatcher that can be used to dispatch [component events](/docs#template-syntax-component-directives-on-eventname).\n * Event dispatchers are functions that can take two arguments: `name` and `detail`.\n *\n * Component events created with `createEventDispatcher` create a\n * [CustomEvent](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent).\n * These events do not [bubble](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks/Events#Event_bubbling_and_capture).\n * The `detail` argument corresponds to the [CustomEvent.detail](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/detail)\n * property and can contain any type of data.\n *\n * https://svelte.dev/docs#run-time-svelte-createeventdispatcher\n */\nfunction createEventDispatcher() {\n const component = get_current_component();\n return (type, detail, { cancelable = false } = {}) => {\n const callbacks = component.$$.callbacks[type];\n if (callbacks) {\n // TODO are there situations where events could be dispatched\n // in a server (non-DOM) environment?\n const event = custom_event(type, detail, { cancelable });\n callbacks.slice().forEach(fn => {\n fn.call(component, event);\n });\n return !event.defaultPrevented;\n }\n return true;\n };\n}\n/**\n * Associates an arbitrary `context` object with the current component and the specified `key`\n * and returns that object. The context is then available to children of the component\n * (including slotted content) with `getContext`.\n *\n * Like lifecycle functions, this must be called during component initialisation.\n *\n * https://svelte.dev/docs#run-time-svelte-setcontext\n */\nfunction setContext(key, context) {\n get_current_component().$$.context.set(key, context);\n return context;\n}\n/**\n * Retrieves the context that belongs to the closest parent component with the specified `key`.\n * Must be called during component initialisation.\n *\n * https://svelte.dev/docs#run-time-svelte-getcontext\n */\nfunction getContext(key) {\n return get_current_component().$$.context.get(key);\n}\n/**\n * Retrieves the whole context map that belongs to the closest parent component.\n * Must be called during component initialisation. Useful, for example, if you\n * programmatically create a component and want to pass the existing context to it.\n *\n * https://svelte.dev/docs#run-time-svelte-getallcontexts\n */\nfunction getAllContexts() {\n return get_current_component().$$.context;\n}\n/**\n * Checks whether a given `key` has been set in the context of a parent component.\n * Must be called during component initialisation.\n *\n * https://svelte.dev/docs#run-time-svelte-hascontext\n */\nfunction hasContext(key) {\n return get_current_component().$$.context.has(key);\n}\n// TODO figure out if we still want to support\n// shorthand events, or if we want to implement\n// a real bubbling mechanism\nfunction bubble(component, event) {\n const callbacks = component.$$.callbacks[event.type];\n if (callbacks) {\n // @ts-ignore\n callbacks.slice().forEach(fn => fn.call(this, event));\n }\n}\n\nconst dirty_components = [];\nconst intros = { enabled: false };\nconst binding_callbacks = [];\nlet render_callbacks = [];\nconst flush_callbacks = [];\nconst resolved_promise = /* @__PURE__ */ Promise.resolve();\nlet update_scheduled = false;\nfunction schedule_update() {\n if (!update_scheduled) {\n update_scheduled = true;\n resolved_promise.then(flush);\n }\n}\nfunction tick() {\n schedule_update();\n return resolved_promise;\n}\nfunction add_render_callback(fn) {\n render_callbacks.push(fn);\n}\nfunction add_flush_callback(fn) {\n flush_callbacks.push(fn);\n}\n// flush() calls callbacks in this order:\n// 1. All beforeUpdate callbacks, in order: parents before children\n// 2. All bind:this callbacks, in reverse order: children before parents.\n// 3. All afterUpdate callbacks, in order: parents before children. EXCEPT\n// for afterUpdates called during the initial onMount, which are called in\n// reverse order: children before parents.\n// Since callbacks might update component values, which could trigger another\n// call to flush(), the following steps guard against this:\n// 1. During beforeUpdate, any updated components will be added to the\n// dirty_components array and will cause a reentrant call to flush(). Because\n// the flush index is kept outside the function, the reentrant call will pick\n// up where the earlier call left off and go through all dirty components. The\n// current_component value is saved and restored so that the reentrant call will\n// not interfere with the \"parent\" flush() call.\n// 2. bind:this callbacks cannot trigger new flush() calls.\n// 3. During afterUpdate, any updated components will NOT have their afterUpdate\n// callback called a second time; the seen_callbacks set, outside the flush()\n// function, guarantees this behavior.\nconst seen_callbacks = new Set();\nlet flushidx = 0; // Do *not* move this inside the flush() function\nfunction flush() {\n // Do not reenter flush while dirty components are updated, as this can\n // result in an infinite loop. Instead, let the inner flush handle it.\n // Reentrancy is ok afterwards for bindings etc.\n if (flushidx !== 0) {\n return;\n }\n const saved_component = current_component;\n do {\n // first, call beforeUpdate functions\n // and update components\n try {\n while (flushidx < dirty_components.length) {\n const component = dirty_components[flushidx];\n flushidx++;\n set_current_component(component);\n update(component.$$);\n }\n }\n catch (e) {\n // reset dirty state to not end up in a deadlocked state and then rethrow\n dirty_components.length = 0;\n flushidx = 0;\n throw e;\n }\n set_current_component(null);\n dirty_components.length = 0;\n flushidx = 0;\n while (binding_callbacks.length)\n binding_callbacks.pop()();\n // then, once components are updated, call\n // afterUpdate functions. This may cause\n // subsequent updates...\n for (let i = 0; i < render_callbacks.length; i += 1) {\n const callback = render_callbacks[i];\n if (!seen_callbacks.has(callback)) {\n // ...so guard against infinite loops\n seen_callbacks.add(callback);\n callback();\n }\n }\n render_callbacks.length = 0;\n } while (dirty_components.length);\n while (flush_callbacks.length) {\n flush_callbacks.pop()();\n }\n update_scheduled = false;\n seen_callbacks.clear();\n set_current_component(saved_component);\n}\nfunction update($$) {\n if ($$.fragment !== null) {\n $$.update();\n run_all($$.before_update);\n const dirty = $$.dirty;\n $$.dirty = [-1];\n $$.fragment && $$.fragment.p($$.ctx, dirty);\n $$.after_update.forEach(add_render_callback);\n }\n}\n/**\n * Useful for example to execute remaining `afterUpdate` callbacks before executing `destroy`.\n */\nfunction flush_render_callbacks(fns) {\n const filtered = [];\n const targets = [];\n render_callbacks.forEach((c) => fns.indexOf(c) === -1 ? filtered.push(c) : targets.push(c));\n targets.forEach((c) => c());\n render_callbacks = filtered;\n}\n\nlet promise;\nfunction wait() {\n if (!promise) {\n promise = Promise.resolve();\n promise.then(() => {\n promise = null;\n });\n }\n return promise;\n}\nfunction dispatch(node, direction, kind) {\n node.dispatchEvent(custom_event(`${direction ? 'intro' : 'outro'}${kind}`));\n}\nconst outroing = new Set();\nlet outros;\nfunction group_outros() {\n outros = {\n r: 0,\n c: [],\n p: outros // parent group\n };\n}\nfunction check_outros() {\n if (!outros.r) {\n run_all(outros.c);\n }\n outros = outros.p;\n}\nfunction transition_in(block, local) {\n if (block && block.i) {\n outroing.delete(block);\n block.i(local);\n }\n}\nfunction transition_out(block, local, detach, callback) {\n if (block && block.o) {\n if (outroing.has(block))\n return;\n outroing.add(block);\n outros.c.push(() => {\n outroing.delete(block);\n if (callback) {\n if (detach)\n block.d(1);\n callback();\n }\n });\n block.o(local);\n }\n else if (callback) {\n callback();\n }\n}\nconst null_transition = { duration: 0 };\nfunction create_in_transition(node, fn, params) {\n const options = { direction: 'in' };\n let config = fn(node, params, options);\n let running = false;\n let animation_name;\n let task;\n let uid = 0;\n function cleanup() {\n if (animation_name)\n delete_rule(node, animation_name);\n }\n function go() {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n if (css)\n animation_name = create_rule(node, 0, 1, duration, delay, easing, css, uid++);\n tick(0, 1);\n const start_time = now() + delay;\n const end_time = start_time + duration;\n if (task)\n task.abort();\n running = true;\n add_render_callback(() => dispatch(node, true, 'start'));\n task = loop(now => {\n if (running) {\n if (now >= end_time) {\n tick(1, 0);\n dispatch(node, true, 'end');\n cleanup();\n return running = false;\n }\n if (now >= start_time) {\n const t = easing((now - start_time) / duration);\n tick(t, 1 - t);\n }\n }\n return running;\n });\n }\n let started = false;\n return {\n start() {\n if (started)\n return;\n started = true;\n delete_rule(node);\n if (is_function(config)) {\n config = config(options);\n wait().then(go);\n }\n else {\n go();\n }\n },\n invalidate() {\n started = false;\n },\n end() {\n if (running) {\n cleanup();\n running = false;\n }\n }\n };\n}\nfunction create_out_transition(node, fn, params) {\n const options = { direction: 'out' };\n let config = fn(node, params, options);\n let running = true;\n let animation_name;\n const group = outros;\n group.r += 1;\n function go() {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n if (css)\n animation_name = create_rule(node, 1, 0, duration, delay, easing, css);\n const start_time = now() + delay;\n const end_time = start_time + duration;\n add_render_callback(() => dispatch(node, false, 'start'));\n loop(now => {\n if (running) {\n if (now >= end_time) {\n tick(0, 1);\n dispatch(node, false, 'end');\n if (!--group.r) {\n // this will result in `end()` being called,\n // so we don't need to clean up here\n run_all(group.c);\n }\n return false;\n }\n if (now >= start_time) {\n const t = easing((now - start_time) / duration);\n tick(1 - t, t);\n }\n }\n return running;\n });\n }\n if (is_function(config)) {\n wait().then(() => {\n // @ts-ignore\n config = config(options);\n go();\n });\n }\n else {\n go();\n }\n return {\n end(reset) {\n if (reset && config.tick) {\n config.tick(1, 0);\n }\n if (running) {\n if (animation_name)\n delete_rule(node, animation_name);\n running = false;\n }\n }\n };\n}\nfunction create_bidirectional_transition(node, fn, params, intro) {\n const options = { direction: 'both' };\n let config = fn(node, params, options);\n let t = intro ? 0 : 1;\n let running_program = null;\n let pending_program = null;\n let animation_name = null;\n function clear_animation() {\n if (animation_name)\n delete_rule(node, animation_name);\n }\n function init(program, duration) {\n const d = (program.b - t);\n duration *= Math.abs(d);\n return {\n a: t,\n b: program.b,\n d,\n duration,\n start: program.start,\n end: program.start + duration,\n group: program.group\n };\n }\n function go(b) {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n const program = {\n start: now() + delay,\n b\n };\n if (!b) {\n // @ts-ignore todo: improve typings\n program.group = outros;\n outros.r += 1;\n }\n if (running_program || pending_program) {\n pending_program = program;\n }\n else {\n // if this is an intro, and there's a delay, we need to do\n // an initial tick and/or apply CSS animation immediately\n if (css) {\n clear_animation();\n animation_name = create_rule(node, t, b, duration, delay, easing, css);\n }\n if (b)\n tick(0, 1);\n running_program = init(program, duration);\n add_render_callback(() => dispatch(node, b, 'start'));\n loop(now => {\n if (pending_program && now > pending_program.start) {\n running_program = init(pending_program, duration);\n pending_program = null;\n dispatch(node, running_program.b, 'start');\n if (css) {\n clear_animation();\n animation_name = create_rule(node, t, running_program.b, running_program.duration, 0, easing, config.css);\n }\n }\n if (running_program) {\n if (now >= running_program.end) {\n tick(t = running_program.b, 1 - t);\n dispatch(node, running_program.b, 'end');\n if (!pending_program) {\n // we're done\n if (running_program.b) {\n // intro — we can tidy up immediately\n clear_animation();\n }\n else {\n // outro — needs to be coordinated\n if (!--running_program.group.r)\n run_all(running_program.group.c);\n }\n }\n running_program = null;\n }\n else if (now >= running_program.start) {\n const p = now - running_program.start;\n t = running_program.a + running_program.d * easing(p / running_program.duration);\n tick(t, 1 - t);\n }\n }\n return !!(running_program || pending_program);\n });\n }\n }\n return {\n run(b) {\n if (is_function(config)) {\n wait().then(() => {\n // @ts-ignore\n config = config(options);\n go(b);\n });\n }\n else {\n go(b);\n }\n },\n end() {\n clear_animation();\n running_program = pending_program = null;\n }\n };\n}\n\nfunction handle_promise(promise, info) {\n const token = info.token = {};\n function update(type, index, key, value) {\n if (info.token !== token)\n return;\n info.resolved = value;\n let child_ctx = info.ctx;\n if (key !== undefined) {\n child_ctx = child_ctx.slice();\n child_ctx[key] = value;\n }\n const block = type && (info.current = type)(child_ctx);\n let needs_flush = false;\n if (info.block) {\n if (info.blocks) {\n info.blocks.forEach((block, i) => {\n if (i !== index && block) {\n group_outros();\n transition_out(block, 1, 1, () => {\n if (info.blocks[i] === block) {\n info.blocks[i] = null;\n }\n });\n check_outros();\n }\n });\n }\n else {\n info.block.d(1);\n }\n block.c();\n transition_in(block, 1);\n block.m(info.mount(), info.anchor);\n needs_flush = true;\n }\n info.block = block;\n if (info.blocks)\n info.blocks[index] = block;\n if (needs_flush) {\n flush();\n }\n }\n if (is_promise(promise)) {\n const current_component = get_current_component();\n promise.then(value => {\n set_current_component(current_component);\n update(info.then, 1, info.value, value);\n set_current_component(null);\n }, error => {\n set_current_component(current_component);\n update(info.catch, 2, info.error, error);\n set_current_component(null);\n if (!info.hasCatch) {\n throw error;\n }\n });\n // if we previously had a then/catch block, destroy it\n if (info.current !== info.pending) {\n update(info.pending, 0);\n return true;\n }\n }\n else {\n if (info.current !== info.then) {\n update(info.then, 1, info.value, promise);\n return true;\n }\n info.resolved = promise;\n }\n}\nfunction update_await_block_branch(info, ctx, dirty) {\n const child_ctx = ctx.slice();\n const { resolved } = info;\n if (info.current === info.then) {\n child_ctx[info.value] = resolved;\n }\n if (info.current === info.catch) {\n child_ctx[info.error] = resolved;\n }\n info.block.p(child_ctx, dirty);\n}\n\nfunction destroy_block(block, lookup) {\n block.d(1);\n lookup.delete(block.key);\n}\nfunction outro_and_destroy_block(block, lookup) {\n transition_out(block, 1, 1, () => {\n lookup.delete(block.key);\n });\n}\nfunction fix_and_destroy_block(block, lookup) {\n block.f();\n destroy_block(block, lookup);\n}\nfunction fix_and_outro_and_destroy_block(block, lookup) {\n block.f();\n outro_and_destroy_block(block, lookup);\n}\nfunction update_keyed_each(old_blocks, dirty, get_key, dynamic, ctx, list, lookup, node, destroy, create_each_block, next, get_context) {\n let o = old_blocks.length;\n let n = list.length;\n let i = o;\n const old_indexes = {};\n while (i--)\n old_indexes[old_blocks[i].key] = i;\n const new_blocks = [];\n const new_lookup = new Map();\n const deltas = new Map();\n const updates = [];\n i = n;\n while (i--) {\n const child_ctx = get_context(ctx, list, i);\n const key = get_key(child_ctx);\n let block = lookup.get(key);\n if (!block) {\n block = create_each_block(key, child_ctx);\n block.c();\n }\n else if (dynamic) {\n // defer updates until all the DOM shuffling is done\n updates.push(() => block.p(child_ctx, dirty));\n }\n new_lookup.set(key, new_blocks[i] = block);\n if (key in old_indexes)\n deltas.set(key, Math.abs(i - old_indexes[key]));\n }\n const will_move = new Set();\n const did_move = new Set();\n function insert(block) {\n transition_in(block, 1);\n block.m(node, next);\n lookup.set(block.key, block);\n next = block.first;\n n--;\n }\n while (o && n) {\n const new_block = new_blocks[n - 1];\n const old_block = old_blocks[o - 1];\n const new_key = new_block.key;\n const old_key = old_block.key;\n if (new_block === old_block) {\n // do nothing\n next = new_block.first;\n o--;\n n--;\n }\n else if (!new_lookup.has(old_key)) {\n // remove old block\n destroy(old_block, lookup);\n o--;\n }\n else if (!lookup.has(new_key) || will_move.has(new_key)) {\n insert(new_block);\n }\n else if (did_move.has(old_key)) {\n o--;\n }\n else if (deltas.get(new_key) > deltas.get(old_key)) {\n did_move.add(new_key);\n insert(new_block);\n }\n else {\n will_move.add(old_key);\n o--;\n }\n }\n while (o--) {\n const old_block = old_blocks[o];\n if (!new_lookup.has(old_block.key))\n destroy(old_block, lookup);\n }\n while (n)\n insert(new_blocks[n - 1]);\n run_all(updates);\n return new_blocks;\n}\nfunction validate_each_keys(ctx, list, get_context, get_key) {\n const keys = new Set();\n for (let i = 0; i < list.length; i++) {\n const key = get_key(get_context(ctx, list, i));\n if (keys.has(key)) {\n throw new Error('Cannot have duplicate keys in a keyed each');\n }\n keys.add(key);\n }\n}\n\nfunction get_spread_update(levels, updates) {\n const update = {};\n const to_null_out = {};\n const accounted_for = { $$scope: 1 };\n let i = levels.length;\n while (i--) {\n const o = levels[i];\n const n = updates[i];\n if (n) {\n for (const key in o) {\n if (!(key in n))\n to_null_out[key] = 1;\n }\n for (const key in n) {\n if (!accounted_for[key]) {\n update[key] = n[key];\n accounted_for[key] = 1;\n }\n }\n levels[i] = n;\n }\n else {\n for (const key in o) {\n accounted_for[key] = 1;\n }\n }\n }\n for (const key in to_null_out) {\n if (!(key in update))\n update[key] = undefined;\n }\n return update;\n}\nfunction get_spread_object(spread_props) {\n return typeof spread_props === 'object' && spread_props !== null ? spread_props : {};\n}\n\nconst _boolean_attributes = [\n 'allowfullscreen',\n 'allowpaymentrequest',\n 'async',\n 'autofocus',\n 'autoplay',\n 'checked',\n 'controls',\n 'default',\n 'defer',\n 'disabled',\n 'formnovalidate',\n 'hidden',\n 'inert',\n 'ismap',\n 'loop',\n 'multiple',\n 'muted',\n 'nomodule',\n 'novalidate',\n 'open',\n 'playsinline',\n 'readonly',\n 'required',\n 'reversed',\n 'selected'\n];\n/**\n * List of HTML boolean attributes (e.g. `<input disabled>`).\n * Source: https://html.spec.whatwg.org/multipage/indices.html\n */\nconst boolean_attributes = new Set([..._boolean_attributes]);\n\n/** regex of all html void element names */\nconst void_element_names = /^(?:area|base|br|col|command|embed|hr|img|input|keygen|link|meta|param|source|track|wbr)$/;\nfunction is_void(name) {\n return void_element_names.test(name) || name.toLowerCase() === '!doctype';\n}\n\nconst invalid_attribute_name_character = /[\\s'\">/=\\u{FDD0}-\\u{FDEF}\\u{FFFE}\\u{FFFF}\\u{1FFFE}\\u{1FFFF}\\u{2FFFE}\\u{2FFFF}\\u{3FFFE}\\u{3FFFF}\\u{4FFFE}\\u{4FFFF}\\u{5FFFE}\\u{5FFFF}\\u{6FFFE}\\u{6FFFF}\\u{7FFFE}\\u{7FFFF}\\u{8FFFE}\\u{8FFFF}\\u{9FFFE}\\u{9FFFF}\\u{AFFFE}\\u{AFFFF}\\u{BFFFE}\\u{BFFFF}\\u{CFFFE}\\u{CFFFF}\\u{DFFFE}\\u{DFFFF}\\u{EFFFE}\\u{EFFFF}\\u{FFFFE}\\u{FFFFF}\\u{10FFFE}\\u{10FFFF}]/u;\n// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n// https://infra.spec.whatwg.org/#noncharacter\nfunction spread(args, attrs_to_add) {\n const attributes = Object.assign({}, ...args);\n if (attrs_to_add) {\n const classes_to_add = attrs_to_add.classes;\n const styles_to_add = attrs_to_add.styles;\n if (classes_to_add) {\n if (attributes.class == null) {\n attributes.class = classes_to_add;\n }\n else {\n attributes.class += ' ' + classes_to_add;\n }\n }\n if (styles_to_add) {\n if (attributes.style == null) {\n attributes.style = style_object_to_string(styles_to_add);\n }\n else {\n attributes.style = style_object_to_string(merge_ssr_styles(attributes.style, styles_to_add));\n }\n }\n }\n let str = '';\n Object.keys(attributes).forEach(name => {\n if (invalid_attribute_name_character.test(name))\n return;\n const value = attributes[name];\n if (value === true)\n str += ' ' + name;\n else if (boolean_attributes.has(name.toLowerCase())) {\n if (value)\n str += ' ' + name;\n }\n else if (value != null) {\n str += ` ${name}=\"${value}\"`;\n }\n });\n return str;\n}\nfunction merge_ssr_styles(style_attribute, style_directive) {\n const style_object = {};\n for (const individual_style of style_attribute.split(';')) {\n const colon_index = individual_style.indexOf(':');\n const name = individual_style.slice(0, colon_index).trim();\n const value = individual_style.slice(colon_index + 1).trim();\n if (!name)\n continue;\n style_object[name] = value;\n }\n for (const name in style_directive) {\n const value = style_directive[name];\n if (value) {\n style_object[name] = value;\n }\n else {\n delete style_object[name];\n }\n }\n return style_object;\n}\nconst ATTR_REGEX = /[&\"]/g;\nconst CONTENT_REGEX = /[&<]/g;\n/**\n * Note: this method is performance sensitive and has been optimized\n * https://github.com/sveltejs/svelte/pull/5701\n */\nfunction escape(value, is_attr = false) {\n const str = String(value);\n const pattern = is_attr ? ATTR_REGEX : CONTENT_REGEX;\n pattern.lastIndex = 0;\n let escaped = '';\n let last = 0;\n while (pattern.test(str)) {\n const i = pattern.lastIndex - 1;\n const ch = str[i];\n escaped += str.substring(last, i) + (ch === '&' ? '&amp;' : (ch === '\"' ? '&quot;' : '&lt;'));\n last = i + 1;\n }\n return escaped + str.substring(last);\n}\nfunction escape_attribute_value(value) {\n // keep booleans, null, and undefined for the sake of `spread`\n const should_escape = typeof value === 'string' || (value && typeof value === 'object');\n return should_escape ? escape(value, true) : value;\n}\nfunction escape_object(obj) {\n const result = {};\n for (const key in obj) {\n result[key] = escape_attribute_value(obj[key]);\n }\n return result;\n}\nfunction each(items, fn) {\n let str = '';\n for (let i = 0; i < items.length; i += 1) {\n str += fn(items[i], i);\n }\n return str;\n}\nconst missing_component = {\n $$render: () => ''\n};\nfunction validate_component(component, name) {\n if (!component || !component.$$render) {\n if (name === 'svelte:component')\n name += ' this={...}';\n throw new Error(`<${name}> is not a valid SSR component. You may need to review your build config to ensure that dependencies are compiled, rather than imported as pre-compiled modules. Otherwise you may need to fix a <${name}>.`);\n }\n return component;\n}\nfunction debug(file, line, column, values) {\n console.log(`{@debug} ${file ? file + ' ' : ''}(${line}:${column})`); // eslint-disable-line no-console\n console.log(values); // eslint-disable-line no-console\n return '';\n}\nlet on_destroy;\nfunction create_ssr_component(fn) {\n function $$render(result, props, bindings, slots, context) {\n const parent_component = current_component;\n const $$ = {\n on_destroy,\n context: new Map(context || (parent_component ? parent_component.$$.context : [])),\n // these will be immediately discarded\n on_mount: [],\n before_update: [],\n after_update: [],\n callbacks: blank_object()\n };\n set_current_component({ $$ });\n const html = fn(result, props, bindings, slots);\n set_current_component(parent_component);\n return html;\n }\n return {\n render: (props = {}, { $$slots = {}, context = new Map() } = {}) => {\n on_destroy = [];\n const result = { title: '', head: '', css: new Set() };\n const html = $$render(result, props, {}, $$slots, context);\n run_all(on_destroy);\n return {\n html,\n css: {\n code: Array.from(result.css).map(css => css.code).join('\\n'),\n map: null // TODO\n },\n head: result.title + result.head\n };\n },\n $$render\n };\n}\nfunction add_attribute(name, value, boolean) {\n if (value == null || (boolean && !value))\n return '';\n const assignment = (boolean && value === true) ? '' : `=\"${escape(value, true)}\"`;\n return ` ${name}${assignment}`;\n}\nfunction add_classes(classes) {\n return classes ? ` class=\"${classes}\"` : '';\n}\nfunction style_object_to_string(style_object) {\n return Object.keys(style_object)\n .filter(key => style_object[key])\n .map(key => `${key}: ${escape_attribute_value(style_object[key])};`)\n .join(' ');\n}\nfunction add_styles(style_object) {\n const styles = style_object_to_string(style_object);\n return styles ? ` style=\"${styles}\"` : '';\n}\n\nfunction bind(component, name, callback) {\n const index = component.$$.props[name];\n if (index !== undefined) {\n component.$$.bound[index] = callback;\n callback(component.$$.ctx[index]);\n }\n}\nfunction create_component(block) {\n block && block.c();\n}\nfunction claim_component(block, parent_nodes) {\n block && block.l(parent_nodes);\n}\nfunction mount_component(component, target, anchor, customElement) {\n const { fragment, after_update } = component.$$;\n fragment && fragment.m(target, anchor);\n if (!customElement) {\n // onMount happens before the initial afterUpdate\n add_render_callback(() => {\n const new_on_destroy = component.$$.on_mount.map(run).filter(is_function);\n // if the component was destroyed immediately\n // it will update the `$$.on_destroy` reference to `null`.\n // the destructured on_destroy may still reference to the old array\n if (component.$$.on_destroy) {\n component.$$.on_destroy.push(...new_on_destroy);\n }\n else {\n // Edge case - component was destroyed immediately,\n // most likely as a result of a binding initialising\n run_all(new_on_destroy);\n }\n component.$$.on_mount = [];\n });\n }\n after_update.forEach(add_render_callback);\n}\nfunction destroy_component(component, detaching) {\n const $$ = component.$$;\n if ($$.fragment !== null) {\n flush_render_callbacks($$.after_update);\n run_all($$.on_destroy);\n $$.fragment && $$.fragment.d(detaching);\n // TODO null out other refs, including component.$$ (but need to\n // preserve final state?)\n $$.on_destroy = $$.fragment = null;\n $$.ctx = [];\n }\n}\nfunction make_dirty(component, i) {\n if (component.$$.dirty[0] === -1) {\n dirty_components.push(component);\n schedule_update();\n component.$$.dirty.fill(0);\n }\n component.$$.dirty[(i / 31) | 0] |= (1 << (i % 31));\n}\nfunction init(component, options, instance, create_fragment, not_equal, props, append_styles, dirty = [-1]) {\n const parent_component = current_component;\n set_current_component(component);\n const $$ = component.$$ = {\n fragment: null,\n ctx: [],\n // state\n props,\n update: noop,\n not_equal,\n bound: blank_object(),\n // lifecycle\n on_mount: [],\n on_destroy: [],\n on_disconnect: [],\n before_update: [],\n after_update: [],\n context: new Map(options.context || (parent_component ? parent_component.$$.context : [])),\n // everything else\n callbacks: blank_object(),\n dirty,\n skip_bound: false,\n root: options.target || parent_component.$$.root\n };\n append_styles && append_styles($$.root);\n let ready = false;\n $$.ctx = instance\n ? instance(component, options.props || {}, (i, ret, ...rest) => {\n const value = rest.length ? rest[0] : ret;\n if ($$.ctx && not_equal($$.ctx[i], $$.ctx[i] = value)) {\n if (!$$.skip_bound && $$.bound[i])\n $$.bound[i](value);\n if (ready)\n make_dirty(component, i);\n }\n return ret;\n })\n : [];\n $$.update();\n ready = true;\n run_all($$.before_update);\n // `false` as a special case of no DOM component\n $$.fragment = create_fragment ? create_fragment($$.ctx) : false;\n if (options.target) {\n if (options.hydrate) {\n start_hydrating();\n const nodes = children(options.target);\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n $$.fragment && $$.fragment.l(nodes);\n nodes.forEach(detach);\n }\n else {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n $$.fragment && $$.fragment.c();\n }\n if (options.intro)\n transition_in(component.$$.fragment);\n mount_component(component, options.target, options.anchor, options.customElement);\n end_hydrating();\n flush();\n }\n set_current_component(parent_component);\n}\nlet SvelteElement;\nif (typeof HTMLElement === 'function') {\n SvelteElement = class extends HTMLElement {\n constructor() {\n super();\n this.attachShadow({ mode: 'open' });\n }\n connectedCallback() {\n const { on_mount } = this.$$;\n this.$$.on_disconnect = on_mount.map(run).filter(is_function);\n // @ts-ignore todo: improve typings\n for (const key in this.$$.slotted) {\n // @ts-ignore todo: improve typings\n this.appendChild(this.$$.slotted[key]);\n }\n }\n attributeChangedCallback(attr, _oldValue, newValue) {\n this[attr] = newValue;\n }\n disconnectedCallback() {\n run_all(this.$$.on_disconnect);\n }\n $destroy() {\n destroy_component(this, 1);\n this.$destroy = noop;\n }\n $on(type, callback) {\n // TODO should this delegate to addEventListener?\n if (!is_function(callback)) {\n return noop;\n }\n const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));\n callbacks.push(callback);\n return () => {\n const index = callbacks.indexOf(callback);\n if (index !== -1)\n callbacks.splice(index, 1);\n };\n }\n $set($$props) {\n if (this.$$set && !is_empty($$props)) {\n this.$$.skip_bound = true;\n this.$$set($$props);\n this.$$.skip_bound = false;\n }\n }\n };\n}\n/**\n * Base class for Svelte components. Used when dev=false.\n */\nclass SvelteComponent {\n $destroy() {\n destroy_component(this, 1);\n this.$destroy = noop;\n }\n $on(type, callback) {\n if (!is_function(callback)) {\n return noop;\n }\n const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));\n callbacks.push(callback);\n return () => {\n const index = callbacks.indexOf(callback);\n if (index !== -1)\n callbacks.splice(index, 1);\n };\n }\n $set($$props) {\n if (this.$$set && !is_empty($$props)) {\n this.$$.skip_bound = true;\n this.$$set($$props);\n this.$$.skip_bound = false;\n }\n }\n}\n\nfunction dispatch_dev(type, detail) {\n document.dispatchEvent(custom_event(type, Object.assign({ version: '3.59.2' }, detail), { bubbles: true }));\n}\nfunction append_dev(target, node) {\n dispatch_dev('SvelteDOMInsert', { target, node });\n append(target, node);\n}\nfunction append_hydration_dev(target, node) {\n dispatch_dev('SvelteDOMInsert', { target, node });\n append_hydration(target, node);\n}\nfunction insert_dev(target, node, anchor) {\n dispatch_dev('SvelteDOMInsert', { target, node, anchor });\n insert(target, node, anchor);\n}\nfunction insert_hydration_dev(target, node, anchor) {\n dispatch_dev('SvelteDOMInsert', { target, node, anchor });\n insert_hydration(target, node, anchor);\n}\nfunction detach_dev(node) {\n dispatch_dev('SvelteDOMRemove', { node });\n detach(node);\n}\nfunction detach_between_dev(before, after) {\n while (before.nextSibling && before.nextSibling !== after) {\n detach_dev(before.nextSibling);\n }\n}\nfunction detach_before_dev(after) {\n while (after.previousSibling) {\n detach_dev(after.previousSibling);\n }\n}\nfunction detach_after_dev(before) {\n while (before.nextSibling) {\n detach_dev(before.nextSibling);\n }\n}\nfunction listen_dev(node, event, handler, options, has_prevent_default, has_stop_propagation, has_stop_immediate_propagation) {\n const modifiers = options === true ? ['capture'] : options ? Array.from(Object.keys(options)) : [];\n if (has_prevent_default)\n modifiers.push('preventDefault');\n if (has_stop_propagation)\n modifiers.push('stopPropagation');\n if (has_stop_immediate_propagation)\n modifiers.push('stopImmediatePropagation');\n dispatch_dev('SvelteDOMAddEventListener', { node, event, handler, modifiers });\n const dispose = listen(node, event, handler, options);\n return () => {\n dispatch_dev('SvelteDOMRemoveEventListener', { node, event, handler, modifiers });\n dispose();\n };\n}\nfunction attr_dev(node, attribute, value) {\n attr(node, attribute, value);\n if (value == null)\n dispatch_dev('SvelteDOMRemoveAttribute', { node, attribute });\n else\n dispatch_dev('SvelteDOMSetAttribute', { node, attribute, value });\n}\nfunction prop_dev(node, property, value) {\n node[property] = value;\n dispatch_dev('SvelteDOMSetProperty', { node, property, value });\n}\nfunction dataset_dev(node, property, value) {\n node.dataset[property] = value;\n dispatch_dev('SvelteDOMSetDataset', { node, property, value });\n}\nfunction set_data_dev(text, data) {\n data = '' + data;\n if (text.data === data)\n return;\n dispatch_dev('SvelteDOMSetData', { node: text, data });\n text.data = data;\n}\nfunction set_data_contenteditable_dev(text, data) {\n data = '' + data;\n if (text.wholeText === data)\n return;\n dispatch_dev('SvelteDOMSetData', { node: text, data });\n text.data = data;\n}\nfunction set_data_maybe_contenteditable_dev(text, data, attr_value) {\n if (~contenteditable_truthy_values.indexOf(attr_value)) {\n set_data_contenteditable_dev(text, data);\n }\n else {\n set_data_dev(text, data);\n }\n}\nfunction validate_each_argument(arg) {\n if (typeof arg !== 'string' && !(arg && typeof arg === 'object' && 'length' in arg)) {\n let msg = '{#each} only iterates over array-like objects.';\n if (typeof Symbol === 'function' && arg && Symbol.iterator in arg) {\n msg += ' You can use a spread to convert this iterable into an array.';\n }\n throw new Error(msg);\n }\n}\nfunction validate_slots(name, slot, keys) {\n for (const slot_key of Object.keys(slot)) {\n if (!~keys.indexOf(slot_key)) {\n console.warn(`<${name}> received an unexpected slot \"${slot_key}\".`);\n }\n }\n}\nfunction validate_dynamic_element(tag) {\n const is_string = typeof tag === 'string';\n if (tag && !is_string) {\n throw new Error('<svelte:element> expects \"this\" attribute to be a string.');\n }\n}\nfunction validate_void_dynamic_element(tag) {\n if (tag && is_void(tag)) {\n console.warn(`<svelte:element this=\"${tag}\"> is self-closing and cannot have content.`);\n }\n}\nfunction construct_svelte_component_dev(component, props) {\n const error_message = 'this={...} of <svelte:component> should specify a Svelte component.';\n try {\n const instance = new component(props);\n if (!instance.$$ || !instance.$set || !instance.$on || !instance.$destroy) {\n throw new Error(error_message);\n }\n return instance;\n }\n catch (err) {\n const { message } = err;\n if (typeof message === 'string' && message.indexOf('is not a constructor') !== -1) {\n throw new Error(error_message);\n }\n else {\n throw err;\n }\n }\n}\n/**\n * Base class for Svelte components with some minor dev-enhancements. Used when dev=true.\n */\nclass SvelteComponentDev extends SvelteComponent {\n constructor(options) {\n if (!options || (!options.target && !options.$$inline)) {\n throw new Error(\"'target' is a required option\");\n }\n super();\n }\n $destroy() {\n super.$destroy();\n this.$destroy = () => {\n console.warn('Component was already destroyed'); // eslint-disable-line no-console\n };\n }\n $capture_state() { }\n $inject_state() { }\n}\n/**\n * Base class to create strongly typed Svelte components.\n * This only exists for typing purposes and should be used in `.d.ts` files.\n *\n * ### Example:\n *\n * You have component library on npm called `component-library`, from which\n * you export a component called `MyComponent`. For Svelte+TypeScript users,\n * you want to provide typings. Therefore you create a `index.d.ts`:\n * ```ts\n * import { SvelteComponentTyped } from \"svelte\";\n * export class MyComponent extends SvelteComponentTyped<{foo: string}> {}\n * ```\n * Typing this makes it possible for IDEs like VS Code with the Svelte extension\n * to provide intellisense and to use the component like this in a Svelte file\n * with TypeScript:\n * ```svelte\n * <script lang=\"ts\">\n * \timport { MyComponent } from \"component-library\";\n * </script>\n * <MyComponent foo={'bar'} />\n * ```\n *\n * #### Why not make this part of `SvelteComponent(Dev)`?\n * Because\n * ```ts\n * class ASubclassOfSvelteComponent extends SvelteComponent<{foo: string}> {}\n * const component: typeof SvelteComponent = ASubclassOfSvelteComponent;\n * ```\n * will throw a type error, so we need to separate the more strictly typed class.\n */\nclass SvelteComponentTyped extends SvelteComponentDev {\n constructor(options) {\n super(options);\n }\n}\nfunction loop_guard(timeout) {\n const start = Date.now();\n return () => {\n if (Date.now() - start > timeout) {\n throw new Error('Infinite loop detected');\n }\n };\n}\n\nexport { HtmlTag, HtmlTagHydration, ResizeObserverSingleton, SvelteComponent, SvelteComponentDev, SvelteComponentTyped, SvelteElement, action_destroyer, add_attribute, add_classes, add_flush_callback, add_iframe_resize_listener, add_location, add_render_callback, add_styles, add_transform, afterUpdate, append, append_dev, append_empty_stylesheet, append_hydration, append_hydration_dev, append_styles, assign, attr, attr_dev, attribute_to_object, beforeUpdate, bind, binding_callbacks, blank_object, bubble, check_outros, children, claim_comment, claim_component, claim_element, claim_html_tag, claim_space, claim_svg_element, claim_text, clear_loops, comment, component_subscribe, compute_rest_props, compute_slots, construct_svelte_component, construct_svelte_component_dev, contenteditable_truthy_values, createEventDispatcher, create_animation, create_bidirectional_transition, create_component, create_in_transition, create_out_transition, create_slot, create_ssr_component, current_component, custom_event, dataset_dev, debug, destroy_block, destroy_component, destroy_each, detach, detach_after_dev, detach_before_dev, detach_between_dev, detach_dev, dirty_components, dispatch_dev, each, element, element_is, empty, end_hydrating, escape, escape_attribute_value, escape_object, exclude_internal_props, fix_and_destroy_block, fix_and_outro_and_destroy_block, fix_position, flush, flush_render_callbacks, getAllContexts, getContext, get_all_dirty_from_scope, get_binding_group_value, get_current_component, get_custom_elements_slots, get_root_for_style, get_slot_changes, get_spread_object, get_spread_update, get_store_value, globals, group_outros, handle_promise, hasContext, has_prop, head_selector, identity, init, init_binding_group, init_binding_group_dynamic, insert, insert_dev, insert_hydration, insert_hydration_dev, intros, invalid_attribute_name_character, is_client, is_crossorigin, is_empty, is_function, is_promise, is_void, listen, listen_dev, loop, loop_guard, merge_ssr_styles, missing_component, mount_component, noop, not_equal, now, null_to_empty, object_without_properties, onDestroy, onMount, once, outro_and_destroy_block, prevent_default, prop_dev, query_selector_all, raf, resize_observer_border_box, resize_observer_content_box, resize_observer_device_pixel_content_box, run, run_all, safe_not_equal, schedule_update, select_multiple_value, select_option, select_options, select_value, self, setContext, set_attributes, set_current_component, set_custom_element_data, set_custom_element_data_map, set_data, set_data_contenteditable, set_data_contenteditable_dev, set_data_dev, set_data_maybe_contenteditable, set_data_maybe_contenteditable_dev, set_dynamic_element_data, set_input_type, set_input_value, set_now, set_raf, set_store_value, set_style, set_svg_attributes, space, split_css_unit, spread, src_url_equal, start_hydrating, stop_immediate_propagation, stop_propagation, subscribe, svg_element, text, tick, time_ranges_to_array, to_number, toggle_class, transition_in, transition_out, trusted, update_await_block_branch, update_keyed_each, update_slot, update_slot_base, validate_component, validate_dynamic_element, validate_each_argument, validate_each_keys, validate_slots, validate_store, validate_void_dynamic_element, xlink_attr };\n","var img = \"data:image/svg+xml,%3csvg width='136' height='69' viewBox='0 0 136 69' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cellipse cx='68' cy='56' rx='68' ry='13' fill='url(%23paint0_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' d='M78.0091 51.4975C85.0458 45.3466 85.0458 35.3741 78.0091 29.2232C70.9725 23.0723 59.5638 23.0723 52.5271 29.2232C45.4905 35.3741 45.4905 45.3466 52.5271 51.4975C59.5638 57.6484 70.9725 57.6484 78.0091 51.4975Z' fill='url(%23paint1_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M61.1533 60.3968V42.7813L46.2261 35.5039L46.4996 51.8202L61.1533 60.3968Z' fill='url(%23paint2_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M61.1533 42.7814V60.3969L87.9805 55.3036L88.3543 38.4214L61.1533 42.7814Z' fill='url(%23paint3_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M49.3264 45.1001C48.9981 44.7096 48.5878 44.032 48.4419 43.3784C48.3598 43.0277 48.3598 42.7567 48.4327 42.5893C48.606 42.1589 49.1349 42.4299 49.3081 43.0755C49.4632 42.6053 49.992 42.8763 50.1835 43.506C50.2565 43.7451 50.2656 44.0241 50.1835 44.303C50.0468 44.8132 49.6455 45.0603 49.3355 45.1081L49.3264 45.1001ZM52.2808 46.6863C51.9617 46.2878 51.5513 45.6103 51.3963 44.9407C51.3142 44.59 51.3234 44.303 51.3872 44.1357C51.5605 43.6893 52.0893 43.9683 52.2626 44.6219C52.4176 44.1357 52.9465 44.4146 53.138 45.0523C53.2109 45.2914 53.2109 45.5863 53.138 45.8574C53.0012 46.3755 52.6 46.6305 52.2808 46.6783V46.6863ZM55.2353 48.2725C54.9161 47.874 54.5058 47.1885 54.3599 46.511C54.2778 46.1523 54.2869 45.8653 54.3599 45.6979C54.5331 45.2436 55.062 45.5226 55.2353 46.1842C55.3994 45.69 55.9283 45.9689 56.1107 46.6146C56.1836 46.8617 56.1836 47.1486 56.1107 47.4356C55.9739 47.9696 55.5635 48.2247 55.2535 48.2805L55.2353 48.2725ZM58.1897 49.8587C57.8706 49.4522 57.4602 48.7587 57.3143 48.0732C57.2414 47.7066 57.2414 47.4196 57.3143 47.2443C57.4876 46.782 58.0165 47.0609 58.1897 47.7305C58.3539 47.2363 58.8827 47.5073 59.0651 48.1609C59.129 48.408 59.1381 48.7029 59.0651 48.9899C58.9283 49.5239 58.518 49.7949 58.1988 49.8587H58.1897ZM47.9039 48.8942C47.5847 48.4957 47.1744 47.8182 47.0193 47.1566C46.9373 46.8139 46.9373 46.5428 47.0102 46.3755C47.1835 45.945 47.7033 46.24 47.8765 46.8776C48.0315 46.4153 48.5604 46.7023 48.7428 47.332C48.8157 47.5711 48.8248 47.8501 48.7428 48.1131C48.606 48.6153 48.2139 48.8464 47.8947 48.8863L47.9039 48.8942ZM50.8492 50.5522C50.53 50.1457 50.1197 49.4602 49.9647 48.7906C49.8826 48.4399 49.8826 48.1609 49.9556 47.9935C50.1288 47.5551 50.6577 47.8501 50.8218 48.5037C50.9769 48.0334 51.5057 48.3203 51.6881 48.958C51.7611 49.1971 51.7611 49.4841 51.6881 49.7551C51.5513 50.2652 51.1501 50.5043 50.8401 50.5522H50.8492ZM53.7945 52.2101C53.4754 51.8036 53.065 51.1101 52.9191 50.4326C52.8371 50.0739 52.8462 49.7949 52.91 49.6276C53.0833 49.1812 53.6122 49.4681 53.7854 50.1297C53.9404 49.6515 54.4693 49.9384 54.6517 50.584C54.7246 50.8311 54.7246 51.1181 54.6517 51.3971C54.5149 51.9152 54.1137 52.1702 53.7945 52.2101ZM56.7399 53.868C56.4207 53.4535 56.0104 52.7521 55.8645 52.0666C55.7915 51.7079 55.7915 51.421 55.8645 51.2536C56.0377 50.7993 56.5666 51.0862 56.7307 51.7558C56.8949 51.2616 57.4146 51.5485 57.597 52.2101C57.6608 52.4572 57.67 52.7521 57.597 53.0311C57.4602 53.5651 57.059 53.8122 56.7399 53.868ZM59.6852 55.526C59.366 55.1115 58.9648 54.4021 58.8189 53.7086C58.746 53.342 58.746 53.055 58.8189 52.8796C59.0013 52.4173 59.5211 52.7043 59.6852 53.3818C59.8493 52.8796 60.3782 53.1666 60.5515 53.8361C60.6153 54.0912 60.6244 54.3861 60.5515 54.6731C60.4056 55.2071 60.0043 55.4702 59.6852 55.526ZM47.7762 39.7437C47.4479 39.3611 47.0376 38.6996 46.8826 38.0539C46.8005 37.7112 46.8005 37.4402 46.8643 37.2728C47.0376 36.8424 47.5665 37.0974 47.7397 37.7351C47.8947 37.2568 48.4327 37.5199 48.6151 38.1416C48.6881 38.3807 48.6972 38.6597 48.6151 38.9307C48.4783 39.4408 48.0771 39.6879 47.758 39.7437H47.7762ZM50.7489 41.2582C50.4206 40.8756 50.0103 40.206 49.8553 39.5445C49.7732 39.2017 49.7823 38.9148 49.8461 38.7474C50.0194 38.301 50.5483 38.5641 50.7215 39.2097C50.8766 38.7235 51.4146 38.9865 51.5969 39.6162C51.6699 39.8553 51.679 40.1423 51.5969 40.4133C51.4601 40.9314 51.0589 41.1865 50.7398 41.2502L50.7489 41.2582ZM53.7216 42.7726C53.3933 42.39 52.983 41.7125 52.8371 41.043C52.755 40.6923 52.7641 40.4053 52.8279 40.2379C53.0012 39.7836 53.5392 40.0466 53.7125 40.7002C53.8766 40.206 54.4055 40.4771 54.5879 41.1067C54.6608 41.3538 54.6608 41.6408 54.5879 41.9198C54.4511 42.4458 54.0407 42.7089 53.7216 42.7726ZM56.6943 44.2871C56.3751 43.8965 55.9557 43.211 55.8098 42.5335C55.7277 42.1748 55.7368 41.8879 55.8098 41.7125C55.983 41.2502 56.521 41.5133 56.6851 42.1748C56.8493 41.6727 57.3782 41.9357 57.5605 42.5813C57.6335 42.8284 57.6335 43.1234 57.5605 43.4023C57.4146 43.9364 57.0134 44.2074 56.6943 44.2791V44.2871ZM59.667 45.8016C59.3478 45.403 58.9375 44.7175 58.7916 44.032C58.7186 43.6654 58.7186 43.3784 58.7916 43.1951C58.9739 42.7248 59.5028 42.9879 59.667 43.6574C59.8311 43.1473 60.36 43.4103 60.5423 44.0639C60.6153 44.311 60.6153 44.6139 60.5423 44.9009C60.3964 45.4429 59.9861 45.7298 59.667 45.7936V45.8016ZM46.3628 43.5378C46.682 43.49 47.0741 43.2509 47.2108 42.7567C47.2838 42.4857 47.2747 42.2067 47.2108 41.9756C47.0285 41.3618 46.4905 41.0828 46.3354 41.5451C46.3446 42.2067 46.3537 42.8763 46.3719 43.5458L46.3628 43.5378ZM47.3476 51.0942C47.1652 50.4645 46.6364 50.1616 46.4813 50.6239C46.4813 51.0304 46.4905 51.4369 46.4996 51.8355C46.7276 51.963 46.9555 52.0985 47.1744 52.234C47.2473 52.1384 47.3111 52.0188 47.3476 51.8753C47.4206 51.6123 47.4115 51.3333 47.3476 51.0942ZM60.287 49.6515C60.4329 50.3449 60.8341 51.0464 61.1624 51.4529V49.3007C60.9983 48.6232 60.4603 48.3442 60.287 48.8145C60.2232 48.9899 60.2141 49.2848 60.287 49.6594V49.6515ZM61.1624 59.0969C60.9983 58.4034 60.4694 58.1085 60.2961 58.5628C60.2323 58.7382 60.2232 59.0331 60.2961 59.4077C60.3326 59.607 60.3964 59.8143 60.4785 60.0056C60.7065 60.1411 60.9344 60.2686 61.1624 60.4041V59.0889V59.0969ZM50.293 53.5811C50.3659 53.3101 50.3568 53.0311 50.293 52.784C50.1106 52.1463 49.5817 51.8434 49.4267 52.3137C49.2534 51.6601 48.7337 51.3652 48.5604 51.7876C48.4966 51.955 48.4966 52.226 48.5695 52.5768C48.6151 52.7681 48.6789 52.9673 48.7519 53.1507C49.2078 53.4137 49.6638 53.6847 50.1106 53.9477C50.1835 53.8521 50.2474 53.7325 50.2838 53.5811H50.293ZM51.4875 53.4854C51.4237 53.6528 51.4237 53.9318 51.4966 54.2825C51.5422 54.4818 51.606 54.6731 51.679 54.8644C52.1349 55.1274 52.5817 55.3984 53.0377 55.6615C53.1106 55.5578 53.1745 55.4383 53.2109 55.2868C53.2839 55.0158 53.2748 54.7289 53.2109 54.4818C53.0286 53.8361 52.4997 53.5333 52.3447 54.0115C52.1714 53.3499 51.6516 53.047 51.4784 53.4854H51.4875ZM54.4237 55.1832C54.3599 55.3586 54.3599 55.6376 54.4237 55.9962C54.4693 56.1955 54.5331 56.3948 54.6061 56.5861C55.062 56.8491 55.518 57.1201 55.9648 57.3832C56.0377 57.2795 56.1016 57.152 56.138 57.0006C56.211 56.7216 56.2019 56.4346 56.138 56.1796C55.9557 55.526 55.4359 55.2231 55.2718 55.7093C55.1076 55.0397 54.5787 54.7368 54.4055 55.1832H54.4237ZM57.3599 56.881C57.2961 57.0564 57.287 57.3433 57.3599 57.71C57.4055 57.9092 57.4694 58.1085 57.5423 58.3078C57.9982 58.5708 58.4451 58.8418 58.901 59.1049C58.9739 59.0012 59.0378 58.8737 59.0834 58.7223C59.1563 58.4433 59.1563 58.1484 59.0834 57.8853C58.901 57.2317 58.3812 56.9209 58.2171 57.415C58.0529 56.7375 57.5241 56.4346 57.3508 56.889L57.3599 56.881Z' fill='url(%23paint4_radial_4318_875)'/%3e%3cpath opacity='0.75' fill-rule='evenodd' clip-rule='evenodd' d='M63.8704 46.0815C63.2776 45.946 62.539 45.5793 62.2746 45.0054C62.1378 44.7025 62.1469 44.3997 62.2746 44.1685C62.6029 43.5468 63.5786 43.3953 63.8795 43.9373C64.1804 43.2917 65.147 43.1403 65.4752 43.6504C65.6029 43.8417 65.6029 44.1366 65.4752 44.4873C65.2108 45.1489 64.4631 45.7547 63.8795 46.0895L63.8704 46.0815ZM69.296 45.1808C68.7124 45.0453 67.9646 44.6866 67.7093 44.1127C67.5725 43.8098 67.5817 43.5149 67.7093 43.2837C68.0376 42.67 69.0133 42.5106 69.3142 43.0526C69.6151 42.4149 70.5908 42.2555 70.91 42.7656C71.0285 42.9569 71.0376 43.2519 70.9009 43.5946C70.6364 44.2482 69.8796 44.862 69.296 45.1888V45.1808ZM74.7216 44.2721C74.138 44.1366 73.3994 43.7859 73.1349 43.22C72.9982 42.925 73.0073 42.6301 73.1349 42.399C73.4723 41.7932 74.4389 41.6338 74.7398 42.1599C75.0499 41.5302 76.0164 41.3707 76.3356 41.8729C76.4541 42.0642 76.4632 42.3511 76.3265 42.6939C76.0529 43.3475 75.3052 43.9453 74.7216 44.2721ZM80.1472 43.3714C79.5636 43.2439 78.825 42.8932 78.5697 42.3272C78.4329 42.0323 78.4511 41.7374 78.5697 41.5142C78.9071 40.9084 79.8736 40.749 80.1746 41.2751C80.4846 40.6454 81.4603 40.4939 81.7794 40.9881C81.898 41.1794 81.9071 41.4664 81.7612 41.8012C81.4876 42.4468 80.7399 43.0446 80.1472 43.3714ZM85.5637 42.4707C84.9801 42.3432 84.2506 41.9925 83.9953 41.4425C83.8585 41.1476 83.8767 40.8606 83.9953 40.6295C84.3327 40.0316 85.2992 39.8722 85.591 40.3983C85.9102 39.7766 86.8768 39.6251 87.1959 40.1114C87.3145 40.2947 87.3145 40.5816 87.1777 40.9164C86.9041 41.562 86.1473 42.1519 85.5546 42.4707H85.5637ZM66.5604 50.4973C65.9768 50.3618 65.2382 50.0111 64.9737 49.4372C64.8369 49.1343 64.8461 48.8394 64.9737 48.6003C65.302 47.9865 66.2686 47.8191 66.5695 48.3532C66.8795 47.7075 67.837 47.5481 68.1653 48.0503C68.2929 48.2416 68.2929 48.5365 68.1653 48.8872C67.9008 49.5488 67.1531 50.1626 66.5695 50.4973H66.5604ZM71.9586 49.5488C71.375 49.4213 70.6455 49.0706 70.3811 48.4967C70.2443 48.1938 70.2534 47.8988 70.3811 47.6677C70.7094 47.0539 71.6851 46.8865 71.9769 47.4206C72.2869 46.7829 73.2535 46.6235 73.5726 47.1177C73.6912 47.309 73.7003 47.5959 73.5635 47.9467C73.2991 48.6003 72.5513 49.2061 71.9586 49.5408V49.5488ZM77.366 48.6082C76.7824 48.4807 76.0529 48.13 75.7976 47.572C75.6608 47.2691 75.6699 46.9822 75.7976 46.751C76.135 46.1453 77.1016 45.9779 77.3934 46.5039C77.7034 45.8743 78.67 45.7069 78.9891 46.2011C79.1077 46.3844 79.1168 46.6793 78.9709 47.022C78.6973 47.6677 77.9496 48.2735 77.366 48.6082ZM82.7643 47.6597C82.1807 47.5322 81.4512 47.1894 81.205 46.6315C81.0682 46.3366 81.0864 46.0496 81.205 45.8185C81.5423 45.2127 82.5089 45.0533 82.8007 45.5714C83.1108 44.9417 84.0773 44.7822 84.3965 45.2685C84.515 45.4518 84.5242 45.7387 84.3783 46.0815C84.1047 46.7271 83.357 47.3249 82.7643 47.6517V47.6597ZM63.8521 55.8457C63.2685 55.7182 62.5299 55.3675 62.2746 54.7936C62.1378 54.4907 62.1469 54.1958 62.2746 53.9567C62.6029 53.3349 63.5603 53.1596 63.8612 53.7016C64.1622 53.056 65.1196 52.8886 65.4479 53.3907C65.5755 53.582 65.5755 53.877 65.4479 54.2277C65.1834 54.8972 64.4448 55.511 63.8612 55.8537L63.8521 55.8457ZM69.2321 54.8574C68.6485 54.7298 67.9099 54.3791 67.6546 53.8132C67.5178 53.5103 67.5269 53.2154 67.6546 52.9842C67.9829 52.3705 68.9495 52.1951 69.2413 52.7292C69.5422 52.0915 70.5088 51.9161 70.8279 52.4183C70.9465 52.6096 70.9556 52.8965 70.8188 53.2473C70.5543 53.9088 69.8157 54.5226 69.2321 54.8653V54.8574ZM74.6122 53.869C74.0286 53.7414 73.2991 53.3987 73.0437 52.8328C72.907 52.5379 72.9161 52.2429 73.0437 52.0118C73.372 51.398 74.3386 51.2306 74.6304 51.7567C74.9313 51.127 75.8979 50.9517 76.217 51.4459C76.3356 51.6292 76.3447 51.9241 76.1988 52.2668C75.9344 52.9205 75.1866 53.5342 74.603 53.869H74.6122ZM79.9922 52.8806C79.4086 52.761 78.6882 52.4183 78.4329 51.8603C78.2961 51.5654 78.3143 51.2785 78.4329 51.0473C78.7703 50.4336 79.7277 50.2662 80.0195 50.7843C80.3296 50.1546 81.287 49.9792 81.6062 50.4734C81.7247 50.6567 81.7247 50.9437 81.5879 51.2864C81.3235 51.9321 80.5667 52.5458 79.9831 52.8806H79.9922ZM85.3722 51.8922C84.7977 51.7727 84.0682 51.4299 83.822 50.8799C83.6944 50.585 83.7035 50.2981 83.822 50.0749C84.1594 49.4691 85.1169 49.3017 85.4087 49.8198C85.7187 49.1901 86.6853 49.0227 86.9953 49.5089C87.1139 49.6923 87.1139 49.9792 86.9771 50.314C86.7035 50.9596 85.9558 51.5654 85.3631 51.9002L85.3722 51.8922ZM62.7396 58.7392C62.4205 58.237 61.4539 58.4123 61.1621 59.066V60.3811C61.5724 60.3014 61.9919 60.2217 62.4022 60.142C62.539 59.9667 62.6576 59.7754 62.7305 59.5841C62.8673 59.2333 62.8582 58.9384 62.7305 58.7392H62.7396ZM61.1621 51.4219C61.7457 51.0872 62.4843 50.4654 62.7488 49.8039C62.8855 49.4531 62.8764 49.1582 62.7488 48.959C62.4205 48.4568 61.4539 48.6162 61.1621 49.2618V51.414V51.4219ZM86.6215 44.8779C86.4938 45.1091 86.4756 45.396 86.6123 45.683C86.8585 46.2329 87.588 46.5757 88.1716 46.6952C88.1899 46.0098 88.199 45.3163 88.2172 44.6308C87.9254 44.1127 86.9588 44.2801 86.6215 44.8779ZM88.0075 54.0284C87.7157 53.5183 86.7582 53.6936 86.4208 54.2994C86.2932 54.5306 86.2749 54.8175 86.4117 55.1045C86.4847 55.2639 86.6032 55.3994 86.7309 55.5189C87.1412 55.4392 87.5607 55.3595 87.9801 55.2798C87.9801 54.8653 87.9984 54.4429 88.0075 54.0204V54.0284ZM64.9464 58.3247C64.8187 58.5638 64.8096 58.8587 64.9464 59.1616C65.0193 59.329 65.1379 59.4725 65.2746 59.6C66.1044 59.4406 66.9342 59.2891 67.764 59.1297C67.9008 58.9544 68.0194 58.7631 68.0923 58.5718C68.2291 58.221 68.2291 57.9261 68.1014 57.7348C67.7823 57.2406 66.8248 57.416 66.5148 58.0616C66.223 57.5276 65.2564 57.7109 64.9372 58.3326L64.9464 58.3247ZM70.3173 57.3124C70.1896 57.5515 70.1805 57.8464 70.3173 58.1413C70.3902 58.3008 70.5088 58.4522 70.6455 58.5718C71.4753 58.4123 72.3051 58.2529 73.1349 58.0935C73.2808 57.9182 73.3903 57.7348 73.4723 57.5435C73.6091 57.1928 73.6091 56.9059 73.4814 56.7146C73.1623 56.2204 72.2048 56.4037 71.8948 57.0414C71.603 56.5153 70.6364 56.6907 70.3081 57.3044L70.3173 57.3124ZM75.6882 56.3081C75.5605 56.5472 75.5514 56.8341 75.6882 57.129C75.7611 57.2885 75.8797 57.4319 76.0164 57.5515C76.8462 57.3921 77.676 57.2406 78.5058 57.0812C78.6517 56.9059 78.7612 56.7225 78.8432 56.5312C78.9891 56.1805 78.98 55.9015 78.8615 55.7102C78.5423 55.224 77.5848 55.3994 77.2748 56.037C76.983 55.511 76.0256 55.6943 75.6973 56.3001L75.6882 56.3081ZM81.0591 55.3037C80.9314 55.5349 80.9223 55.8218 81.0591 56.1168C81.132 56.2762 81.2506 56.4196 81.3782 56.5392C82.208 56.3798 83.0378 56.2204 83.8676 56.061C84.0135 55.8856 84.1229 55.7023 84.205 55.5189C84.3509 55.1762 84.3509 54.8892 84.2232 54.7059C83.9132 54.2277 82.9466 54.3951 82.6366 55.0327C82.3448 54.5146 81.3873 54.69 81.0499 55.3037H81.0591Z' fill='url(%23paint5_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:multiply' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M49.0619 52.8959C47.3293 51.772 46.7275 50.9669 46.4722 49.7314L46.4995 51.8118L61.1532 60.3884V58.0131C60.8523 58.6667 59.8128 58.7305 58.9556 58.4037C56.2747 57.3755 51.4601 54.4502 49.0528 52.8879L49.0619 52.8959Z' fill='url(%23paint6_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:multiply' fill-rule='evenodd' clip-rule='evenodd' d='M61.1533 58.0215V60.3968L87.9805 55.3034L88.0534 51.8521C87.6522 53.231 86.8589 54.0201 84.5883 54.9128C80.2296 56.6345 71.0744 58.4599 66.3145 58.9062C63.9528 59.1294 61.5181 59.0896 61.1533 58.0215Z' fill='url(%23paint7_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:multiply' opacity='0.4' fill-rule='evenodd' clip-rule='evenodd' d='M46.2534 37.2098L46.2261 35.4961L61.1533 42.7735V45.89C60.1503 42.9408 49.1076 36.5004 46.2534 37.2098Z' fill='url(%23paint8_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:multiply' opacity='0.75' fill-rule='evenodd' clip-rule='evenodd' d='M61.1533 45.898C63.7065 41.9126 82.719 38.9714 88.327 39.8641L88.3543 38.4214L61.1533 42.7814V45.89V45.898Z' fill='url(%23paint9_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M61.0713 42.7802L88.254 38.4122L72.1596 31.5015L46.2261 35.5028L61.0713 42.7802Z' fill='url(%23paint10_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M72.0869 41.0111L88.3546 38.4206L72.1599 31.502L72.0869 31.8925V41.0111Z' fill='url(%23paint11_radial_4318_875)'/%3e%3cpath d='M72.0863 31.8927L86.9315 38.2375L61.1439 42.3823L47.4203 35.6868L72.0954 31.8927M72.1684 31.4941L46.2349 35.4955L61.0892 42.7888L88.3631 38.4208L72.1593 31.5021L72.1684 31.4941Z' fill='%23FF80DB'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M96.7708 7H37.4082L47.3293 35.687L61.0529 42.3825L86.8497 38.2376L96.7708 7Z' fill='url(%23paint12_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M84.4515 7H49.7275L54.3689 39.1224L60.9891 42.3506L80.1566 39.3137L84.4515 7Z' fill='url(%23paint13_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' d='M80.7105 52.2677C88.235 45.6904 88.235 35.0264 80.7105 28.4491C73.186 21.8717 60.9863 21.8717 53.4618 28.4491C45.9372 35.0264 45.9372 45.6904 53.4618 52.2677C60.9863 58.8451 73.186 58.8451 80.7105 52.2677Z' fill='url(%23paint14_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M52.3447 7H41.9585L50.0194 37.0022L56.6304 40.1985L52.3447 7Z' fill='url(%23paint15_linear_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M73.9192 7H81.5606L77.5758 39.7282L71.2383 40.7484L73.9192 7Z' fill='url(%23paint16_linear_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M65.6303 7H56.4478L58.8095 41.2825L60.9889 42.3506L64.4266 41.8086L65.6303 7Z' fill='url(%23paint17_linear_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M91.8104 7H88.09L81.5884 39.0825L83.0291 38.8514L91.8104 7Z' fill='url(%23paint18_linear_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M95.5399 17.4663L85.3999 38.4694L86.8498 38.2383L95.5399 17.4663Z' fill='url(%23paint19_linear_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.35' fill-rule='evenodd' clip-rule='evenodd' d='M38.6392 14.9155L48.9341 36.4686L47.3293 35.6875L38.6392 14.9155Z' fill='url(%23paint20_linear_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.15' fill-rule='evenodd' clip-rule='evenodd' d='M57.9891 27.7228C60.0499 38.6827 60.0499 47.8093 57.9891 48.1042C55.9282 48.3991 52.5908 39.7587 50.53 28.7989C48.4692 17.839 48.4692 8.71241 50.53 8.41749C52.5908 8.12257 55.9282 16.7629 57.9891 27.7228Z' fill='url(%23paint21_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M83.2934 34.7615C85.2448 24.3995 85.3907 15.7989 83.6217 15.5439C81.8527 15.2888 78.8344 23.4828 76.8921 33.8369C74.9407 44.199 74.7948 52.7995 76.5638 53.0546C78.3329 53.3096 81.3511 45.1156 83.2934 34.7615Z' fill='url(%23paint22_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.25' fill-rule='evenodd' clip-rule='evenodd' d='M51.9067 32.5692C55.0253 41.8073 56.5755 49.555 55.3718 49.8579C54.1681 50.1687 50.6757 42.9232 47.5571 33.6851C44.4385 24.4469 42.8883 16.6993 44.092 16.3964C45.2957 16.0855 48.7881 23.331 51.9067 32.5692Z' fill='url(%23paint23_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M76.6913 36.6731C75.4785 46.9236 73.4815 55.1415 72.2414 55.0299C71.0013 54.9183 70.9739 46.5171 72.1867 36.2666C73.3995 26.0161 75.3965 17.7982 76.6366 17.9098C77.8767 18.0214 77.9041 26.4226 76.6913 36.6731Z' fill='url(%23paint24_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M62.6851 40.5893C62.0377 40.9639 61.1623 40.8045 60.7337 40.2306C60.3051 39.6647 60.4875 38.8995 61.1441 38.5249C61.7915 38.1502 62.6669 38.3096 63.0955 38.8835C63.524 39.4495 63.3417 40.2147 62.6851 40.5893Z' fill='url(%23paint25_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.8' fill-rule='evenodd' clip-rule='evenodd' d='M69.0864 39.3705C68.594 39.6494 67.9374 39.5299 67.6091 39.0994C67.29 38.669 67.4268 38.0951 67.9192 37.8082C68.4116 37.5292 69.0681 37.6488 69.3964 38.0792C69.7156 38.5096 69.5788 39.0835 69.0864 39.3705Z' fill='url(%23paint26_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.8' fill-rule='evenodd' clip-rule='evenodd' d='M60.1319 27.0627C59.7306 27.2939 59.1835 27.1982 58.9191 26.8395C58.6546 26.4888 58.7641 26.0106 59.1744 25.7794C59.5756 25.5483 60.1227 25.6439 60.3872 26.0026C60.6516 26.3533 60.5422 26.8316 60.1319 27.0627Z' fill='url(%23paint27_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.8' fill-rule='evenodd' clip-rule='evenodd' d='M72.6884 31.1122C72.196 31.3911 71.5395 31.2716 71.2112 30.8411C70.892 30.4107 71.0288 29.8368 71.5212 29.5499C72.0136 29.2709 72.6702 29.3905 72.9984 29.8209C73.3176 30.2513 73.1808 30.8252 72.6884 31.1122Z' fill='url(%23paint28_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M67.3629 26.7907C66.8887 27.0617 66.2413 26.9501 65.9312 26.5277C65.6212 26.1132 65.7489 25.5472 66.2322 25.2762C66.7063 25.0052 67.3538 25.1168 67.6638 25.5393C67.9738 25.9538 67.8462 26.5197 67.3629 26.7907Z' fill='url(%23paint29_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M66.8707 36.7157C65.7218 37.3773 64.1716 37.0903 63.4147 36.086C62.6579 35.0817 62.9862 33.7266 64.1351 33.0651C65.2841 32.4035 66.8343 32.6904 67.5911 33.6948C68.348 34.6991 68.0197 36.0541 66.8707 36.7157Z' fill='url(%23paint30_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M73.5729 35.503C72.7248 35.9893 71.585 35.782 71.0196 35.0407C70.4634 34.2994 70.7005 33.3031 71.5485 32.8089C72.3965 32.3227 73.5364 32.5299 74.0926 33.2712C74.6489 34.0125 74.4118 35.0088 73.5637 35.503H73.5729Z' fill='url(%23paint31_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M77.7221 27.8189C77.1111 28.1696 76.2905 28.0182 75.8892 27.4842C75.488 26.9501 75.6613 26.2327 76.2722 25.882C76.8832 25.5313 77.7039 25.6827 78.1051 26.2168C78.5063 26.7508 78.333 27.4682 77.7221 27.8189Z' fill='url(%23paint32_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.75' fill-rule='evenodd' clip-rule='evenodd' d='M53.0194 35.7984C52.0073 36.3802 50.6395 36.1331 49.9738 35.2484C49.3081 34.3636 49.5908 33.168 50.603 32.5861C51.6152 32.0043 52.983 32.2514 53.6486 33.1361C54.3143 34.0209 54.0316 35.2165 53.0194 35.7984Z' fill='url(%23paint33_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.75' fill-rule='evenodd' clip-rule='evenodd' d='M76.1535 32.0693C76.7826 31.7106 77.6216 31.8621 78.041 32.412C78.4514 32.962 78.2781 33.6954 77.6489 34.062C77.0197 34.4207 76.1808 34.2692 75.7613 33.7193C75.351 33.1693 75.5243 32.436 76.1535 32.0693Z' fill='url(%23paint34_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M65.7493 33.9739C65.3024 34.2289 64.7097 34.1173 64.4179 33.7347C64.1261 33.3521 64.2538 32.8261 64.6915 32.571C65.1383 32.3159 65.731 32.4275 66.0228 32.8101C66.3146 33.2007 66.187 33.7188 65.7493 33.9739Z' fill='url(%23paint35_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M69.2779 31.9486C68.6305 32.3233 67.7551 32.1639 67.3356 31.5979C66.9162 31.032 67.0894 30.2668 67.7368 29.9001C68.3843 29.5335 69.2597 29.6849 69.6791 30.2509C70.1077 30.8168 69.9253 31.582 69.2779 31.9486Z' fill='url(%23paint36_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M82.491 36.7473C82.0441 37.0024 81.4514 36.8908 81.1596 36.5082C80.8678 36.1256 80.9955 35.5995 81.4332 35.3444C81.88 35.0894 82.4727 35.201 82.7645 35.5836C83.0563 35.9662 82.9287 36.4922 82.491 36.7473Z' fill='url(%23paint37_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M63.588 30.7374C62.7947 31.1917 61.7369 31.0004 61.2263 30.307C60.7065 29.6135 60.9253 28.6889 61.7187 28.2425C62.512 27.7882 63.5698 27.9795 64.0804 28.673C64.6002 29.3664 64.3813 30.291 63.588 30.7374Z' fill='url(%23paint38_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M67.7005 38.9539C67.4998 39.0655 67.2354 39.0177 67.1077 38.8423C66.9801 38.6669 67.0348 38.4358 67.2354 38.3242C67.436 38.2126 67.7005 38.2604 67.8281 38.4358C67.9558 38.6111 67.9011 38.8423 67.7005 38.9539Z' fill='url(%23paint39_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M74.5032 37.4329C74.3026 37.5445 74.0381 37.4967 73.9105 37.3213C73.7828 37.1459 73.8375 36.9148 74.0381 36.8032C74.2387 36.6916 74.5032 36.7394 74.6308 36.9148C74.7585 37.0901 74.7038 37.3213 74.5032 37.4329Z' fill='url(%23paint40_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M76.6644 33.7015C76.9379 33.5421 77.3118 33.6138 77.4942 33.8529C77.6765 34.0921 77.5945 34.4189 77.3209 34.5783C77.0474 34.7377 76.6735 34.666 76.4911 34.4268C76.3087 34.1877 76.3908 33.8609 76.6644 33.7015Z' fill='url(%23paint41_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M68.22 30.2757C68.0194 30.3873 67.7549 30.3394 67.6273 30.1641C67.4996 29.9887 67.5543 29.7576 67.7549 29.646C67.9555 29.5344 68.22 29.5822 68.3476 29.7576C68.4753 29.9329 68.4206 30.1641 68.22 30.2757Z' fill='url(%23paint42_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M64.8736 22.7265C65.0742 22.6149 65.3386 22.6628 65.4663 22.8381C65.594 23.0135 65.5392 23.2446 65.3386 23.3562C65.138 23.4678 64.8736 23.42 64.7459 23.2446C64.6183 23.0693 64.673 22.8381 64.8736 22.7265Z' fill='url(%23paint43_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M56.8674 31.9256C56.6668 32.0372 56.4024 31.9893 56.2747 31.814C56.1471 31.6386 56.2018 31.4075 56.4024 31.2959C56.603 31.1843 56.8674 31.2321 56.9951 31.4075C57.1228 31.5828 57.0681 31.814 56.8674 31.9256Z' fill='url(%23paint44_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M68.448 19.3466C68.0742 19.5618 67.5635 19.4742 67.3173 19.1394C67.0711 18.8046 67.1714 18.3662 67.5544 18.151C67.9283 17.9358 68.4389 18.0235 68.6851 18.3583C68.9313 18.6851 68.831 19.1314 68.448 19.3466Z' fill='url(%23paint45_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M55.5908 28.6157C54.9525 28.9824 54.0862 28.823 53.6668 28.265C53.2473 27.7071 53.4297 26.9498 54.068 26.5832C54.7063 26.2165 55.5726 26.3759 55.992 26.9339C56.4115 27.4918 56.2291 28.2491 55.5908 28.6157Z' fill='url(%23paint46_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.75' fill-rule='evenodd' clip-rule='evenodd' d='M55.6912 29.4761C55.2626 29.7232 54.679 29.6195 54.3963 29.2369C54.1137 28.8543 54.2322 28.3522 54.6699 28.1051C55.1076 27.858 55.6821 27.9616 55.9647 28.3442C56.2474 28.7188 56.1289 29.229 55.6912 29.4761Z' fill='url(%23paint47_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M72.1505 24.8868C71.8131 25.0781 71.3572 24.9984 71.1384 24.7035C70.9195 24.4086 71.0107 24.01 71.3481 23.8187C71.6855 23.6274 72.1414 23.7071 72.3603 24.002C72.5791 24.297 72.4879 24.6955 72.1505 24.8868Z' fill='url(%23paint48_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M77.9681 30.6413C77.7401 30.7689 77.4301 30.7131 77.2842 30.5138C77.1383 30.3145 77.2021 30.0435 77.4301 29.916C77.6581 29.7884 77.9681 29.8442 78.114 30.0435C78.2599 30.2428 78.1961 30.5138 77.9681 30.6413Z' fill='url(%23paint49_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M54.2231 34.3479C53.603 34.7066 52.7732 34.5551 52.3629 34.0131C51.9525 33.4711 52.1258 32.7458 52.7459 32.3871C53.3659 32.0284 54.1957 32.1798 54.6061 32.7219C55.0164 33.2639 54.8432 33.9892 54.2231 34.3479Z' fill='url(%23paint50_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M64.2534 30.0515C63.9251 30.2428 63.4783 30.1631 63.2595 29.8682C63.0406 29.5813 63.1318 29.1907 63.4692 28.9994C63.7975 28.8081 64.2443 28.8878 64.4631 29.1827C64.682 29.4776 64.5908 29.8602 64.2534 30.0515Z' fill='url(%23paint51_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M71.5758 35.6075C71.1837 35.8307 70.6548 35.7351 70.3995 35.3923C70.1442 35.0496 70.2536 34.5873 70.6457 34.3641C71.0378 34.1409 71.5667 34.2366 71.822 34.5793C72.0773 34.9221 71.9679 35.3844 71.5758 35.6075Z' fill='url(%23paint52_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M70.044 29.0071C69.7431 29.1825 69.3418 29.1027 69.1412 28.8397C68.9406 28.5767 69.0318 28.226 69.3327 28.0506C69.6336 27.8752 70.0349 27.9549 70.2355 28.218C70.4361 28.481 70.3449 28.8317 70.044 29.0071Z' fill='url(%23paint53_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M82.9013 35.7669C82.6734 35.8944 82.3724 35.8386 82.2265 35.6473C82.0806 35.456 82.1445 35.185 82.3633 35.0575C82.5913 34.9299 82.8922 34.9857 83.0381 35.177C83.184 35.3683 83.1202 35.6393 82.9013 35.7669Z' fill='url(%23paint54_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.75' fill-rule='evenodd' clip-rule='evenodd' d='M58.9101 33.9971C57.8979 34.579 56.5301 34.3319 55.8644 33.4471C55.1988 32.5624 55.4814 31.3667 56.4936 30.7849C57.5058 30.203 58.8736 30.4501 59.5393 31.3349C60.2049 32.2196 59.9222 33.4152 58.9101 33.9971Z' fill='url(%23paint55_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M58.9738 31.4231C58.6 31.6383 58.1075 31.5427 57.8613 31.2239C57.6151 30.8971 57.7246 30.4666 58.0893 30.2514C58.4632 30.0362 58.9556 30.1319 59.2018 30.4507C59.448 30.7775 59.3386 31.2079 58.9738 31.4231Z' fill='url(%23paint56_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:multiply' fill-rule='evenodd' clip-rule='evenodd' d='M54.7157 56.7614L57.7796 41.2103L56.7218 40.7002L50.5576 54.2825L54.7157 56.7614Z' fill='url(%23paint57_linear_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M47.1106 26.3838L53.594 33.709L41.2017 57.741L35.7031 48.8615L47.1106 26.3838Z' fill='url(%23paint58_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M53.5937 33.7095L60.5057 35.9413L53.5299 28.4647L47.1104 26.3843L53.5937 33.7095Z' fill='url(%23paint59_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M60.5059 35.9403L53.5939 33.7085L41.2017 57.7405L48.1501 59.8368L60.5059 35.9403Z' fill='url(%23paint60_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M36.624 50.1853C36.8064 49.9302 36.9432 49.6512 37.0252 49.4041C37.2258 48.7745 37.0252 48.4556 36.6878 48.91C36.9067 48.2643 36.7061 47.9455 36.3778 48.3679C36.2501 48.5274 36.1134 48.7904 35.9857 49.1411C35.9766 49.181 35.9583 49.2128 35.9492 49.2447C36.1589 49.5795 36.3687 49.9223 36.5784 50.257C36.5966 50.2331 36.6149 50.2092 36.6331 50.1853H36.624ZM37.472 50.1295C37.3444 50.2889 37.1985 50.5599 37.0708 50.9186C37.0617 50.9505 37.0435 50.9903 37.0343 51.0143C37.2441 51.349 37.4538 51.6918 37.6635 52.0265C37.6818 52.0106 37.7 51.9787 37.7182 51.9628C37.9097 51.6918 38.0465 51.4128 38.1195 51.1657C38.3201 50.528 38.1195 50.2092 37.7821 50.6715C38.01 50.0179 37.8094 49.6991 37.472 50.1215V50.1295ZM38.5754 51.891C38.4477 52.0505 38.3018 52.3294 38.1742 52.6881C38.1559 52.728 38.1468 52.7599 38.1377 52.7917C38.3474 53.1265 38.5572 53.4693 38.7669 53.804C38.7851 53.7881 38.8034 53.7562 38.8216 53.7323C39.0131 53.4613 39.1499 53.1823 39.2319 52.9352C39.4417 52.2896 39.2411 51.9707 38.8946 52.441C39.1225 51.7794 38.9219 51.4686 38.5845 51.899L38.5754 51.891ZM39.6788 53.6526C39.5511 53.82 39.4052 54.099 39.2684 54.4576C39.2593 54.4895 39.2411 54.5294 39.2319 54.5613C39.4417 54.896 39.6514 55.2388 39.8611 55.5736C39.8794 55.5496 39.8976 55.5257 39.9158 55.5018C40.1073 55.2308 40.2532 54.9439 40.3353 54.6968C40.545 54.0432 40.3535 53.7323 39.9979 54.2026C40.235 53.533 40.0344 53.2142 39.6879 53.6526H39.6788ZM40.7821 55.4141C40.6545 55.5815 40.4994 55.8685 40.3627 56.2351C40.3535 56.267 40.3353 56.3069 40.3262 56.3388C40.5359 56.6735 40.7456 57.0163 40.9554 57.3511C40.9736 57.3271 40.9918 57.3032 41.0101 57.2793C41.2016 57.0003 41.3475 56.7134 41.4387 56.4583C41.6575 55.7967 41.4569 55.4859 41.0922 55.9721C41.3292 55.2946 41.1377 54.9837 40.7821 55.4221V55.4141ZM43.0344 54.1468C43.3992 53.4454 43.7639 52.736 44.1287 52.0345C44.3658 51.357 44.1651 51.0541 43.8004 51.5084C43.6636 51.6758 43.5177 51.9628 43.3809 52.3294C43.1256 53.0149 43.0344 53.7323 43.0344 54.1468ZM41.9037 52.4171C42.1408 52.3773 42.542 52.1381 42.9068 51.62C43.0983 51.3411 43.2442 51.0541 43.3262 50.807C43.536 50.1534 43.3262 49.8505 42.9706 50.3367C43.2077 49.6672 42.998 49.3643 42.6514 49.8027C42.5147 49.9701 42.3688 50.257 42.232 50.6157C41.9767 51.2932 41.8946 52.0026 41.8946 52.4171H41.9037ZM40.773 50.6875C41.0101 50.6476 41.4113 50.4164 41.7669 49.9063C41.9584 49.6353 42.1043 49.3484 42.1773 49.1013C42.387 48.4556 42.1773 48.1527 41.8216 48.631C42.0496 47.9694 41.8399 47.6665 41.5025 48.1049C41.3748 48.2723 41.2289 48.5513 41.0922 48.902C40.8459 49.5795 40.7639 50.2809 40.7639 50.6954L40.773 50.6875ZM39.6423 48.9578C39.8794 48.9259 40.2715 48.6947 40.6271 48.1926C40.8186 47.9295 40.9554 47.6426 41.0374 47.3955C41.2381 46.7578 41.0374 46.4549 40.6909 46.9173C40.9098 46.2636 40.7092 45.9608 40.3627 46.3912C40.235 46.5506 40.0891 46.8296 39.9614 47.1803C39.7152 47.8498 39.6423 48.5433 39.6514 48.9498L39.6423 48.9578ZM39.4873 46.4789C39.6696 46.2158 39.8155 45.9368 39.8885 45.6977C40.0891 45.068 39.8885 44.7651 39.542 45.2274C39.7608 44.5818 39.542 44.2789 39.2137 44.7014C39.086 44.8608 38.9401 45.1318 38.8216 45.4825C38.5845 46.1441 38.5116 46.8296 38.5207 47.2361C38.7578 47.2042 39.1408 46.989 39.4873 46.4868V46.4789ZM38.3474 44.7651C38.5298 44.5021 38.6666 44.2311 38.7395 43.992C38.931 43.3623 38.7395 43.0673 38.393 43.5137C38.0556 44.1753 37.7274 44.8369 37.39 45.4905C37.6179 45.4586 38.0009 45.2513 38.3474 44.7572V44.7651ZM40.5359 40.1022C40.2988 40.7558 40.235 41.4333 40.2532 41.8319C40.4903 41.792 40.8824 41.5688 41.2289 41.0746C41.4113 40.8116 41.5572 40.5326 41.6302 40.2935C41.8216 39.6718 41.6119 39.3769 41.2654 39.8392C41.4751 39.1935 41.2654 38.9066 40.928 39.329C40.8004 39.4884 40.6545 39.7595 40.5359 40.1022ZM41.7122 41.7522C41.4751 42.4058 41.4022 43.0913 41.4204 43.4978C41.6575 43.4579 42.0496 43.2268 42.4052 42.7246C42.5967 42.4616 42.7335 42.1746 42.8156 41.9355C43.0162 41.3058 42.7973 41.0188 42.4508 41.4812C42.6697 40.8355 42.4508 40.5406 42.1134 40.971C41.9858 41.1304 41.8399 41.4094 41.7122 41.7601V41.7522ZM42.8885 43.4021C42.6423 44.0717 42.5694 44.7572 42.5785 45.1637C42.8247 45.1238 43.2168 44.8847 43.5816 44.3746C43.773 44.1036 43.9189 43.8246 43.9919 43.5775C44.1925 42.9398 43.9919 42.6449 43.6271 43.1231C43.8551 42.4695 43.6271 42.1746 43.2898 42.613C43.153 42.7804 43.0162 43.0594 42.8885 43.4101V43.4021ZM44.0648 45.0521C43.8186 45.7296 43.7366 46.4231 43.7457 46.8296C43.9919 46.7817 44.3931 46.5426 44.7579 46.0245C44.9494 45.7455 45.0953 45.4586 45.1773 45.2115C45.387 44.5659 45.1773 44.2789 44.8126 44.7572C45.0405 44.0956 44.8217 43.8007 44.4752 44.247C44.3384 44.4144 44.1925 44.7014 44.0648 45.0521ZM45.6606 45.881C45.5238 46.0564 45.3779 46.3354 45.2411 46.702C44.9858 47.3875 44.9038 48.081 44.9129 48.4955C45.1591 48.4476 45.5694 48.2006 45.9342 47.6745C46.1257 47.3955 46.2807 47.1006 46.3627 46.8535C46.5725 46.1999 46.3627 45.9129 45.998 46.3991C46.226 45.7296 46.0162 45.4426 45.6697 45.889L45.6606 45.881ZM47.9768 44.518C48.3415 43.8166 48.7062 43.1072 49.071 42.4058C49.299 41.7362 49.0801 41.4572 48.7245 41.9116C48.5877 42.0869 48.4327 42.3739 48.305 42.7326C48.0497 43.4181 47.9676 44.1115 47.9859 44.518H47.9768ZM46.764 42.9159C47.0102 42.8601 47.4296 42.605 47.7944 42.079C47.995 41.8 48.1318 41.5051 48.2138 41.258C48.4236 40.6123 48.2047 40.3334 47.84 40.8196C48.0679 40.158 47.84 39.871 47.4935 40.3254C47.3567 40.5007 47.2108 40.7797 47.074 41.1384C46.8278 41.8159 46.7548 42.5014 46.764 42.9079V42.9159ZM46.5725 40.4928C46.764 40.2138 46.9099 39.9348 46.9828 39.6877C47.1834 39.0501 46.9646 38.7631 46.609 39.2493C46.8369 38.5957 46.609 38.3088 46.2624 38.7551C46.1348 38.9225 45.9889 39.2015 45.8612 39.5522C45.615 40.2218 45.5421 40.9073 45.5603 41.3058C45.8065 41.25 46.2168 41.0029 46.5725 40.4848V40.4928ZM45.3597 38.9066C45.5512 38.6356 45.688 38.3566 45.77 38.1095C45.9706 37.4798 45.7518 37.2008 45.3962 37.6711C45.615 37.0255 45.3962 36.7385 45.0497 37.1769C44.922 37.3443 44.7761 37.6153 44.6484 37.966C44.4113 38.6276 44.3384 39.3051 44.3566 39.7037C44.6028 39.6558 45.0041 39.4167 45.3597 38.9066ZM44.1378 37.3204C44.3202 37.0573 44.4661 36.7784 44.539 36.5392C44.7396 35.9175 44.5117 35.6385 44.1651 36.1008C44.3749 35.4632 44.1651 35.1762 43.8186 35.6067C43.691 35.774 43.5451 36.0451 43.4265 36.3878C43.1894 37.0334 43.1256 37.711 43.1439 38.1095C43.3901 38.0617 43.7822 37.8305 44.1378 37.3204ZM42.9159 35.7342C43.0983 35.4712 43.235 35.2001 43.308 34.961C43.4995 34.3473 43.2806 34.0683 42.9341 34.5226C42.5967 35.1842 42.2593 35.8458 41.9311 36.5074C42.1682 36.4595 42.5694 36.2284 42.9159 35.7422V35.7342ZM45.0953 31.0872C44.8673 31.7328 44.8126 32.3944 44.8308 32.777C45.077 32.7212 45.4782 32.4821 45.8339 31.9799C46.0162 31.7169 46.1621 31.4379 46.2351 31.1988C46.4266 30.585 46.1986 30.314 45.8521 30.7763C46.0618 30.1466 45.8339 29.8756 45.4965 30.3061C45.3688 30.4655 45.2229 30.7365 45.1044 31.0792L45.0953 31.0872ZM46.7457 31.8285C46.6181 31.9959 46.4722 32.2669 46.3445 32.6096C46.1074 33.2632 46.0527 33.9328 46.0709 34.3234C46.3172 34.2676 46.7184 34.0205 47.0831 33.5103C47.2746 33.2393 47.4205 32.9603 47.4935 32.7212C47.685 32.0995 47.457 31.8285 47.1014 32.3067C47.3111 31.6611 47.0922 31.3901 46.7457 31.8285ZM48.0132 33.3429C47.8764 33.5183 47.7305 33.7893 47.6029 34.14C47.3658 34.8016 47.302 35.4712 47.3202 35.8617C47.5664 35.8059 47.9768 35.5509 48.3415 35.0328C48.533 34.7618 48.6789 34.4748 48.7518 34.2357C48.9524 33.606 48.7245 33.335 48.3597 33.8132C48.5786 33.1676 48.3597 32.8966 48.0041 33.335L48.0132 33.3429ZM49.2716 34.8574C49.1348 35.0328 48.9889 35.3117 48.8613 35.6625C48.6151 36.332 48.5512 37.0095 48.5695 37.4081C48.8248 37.3443 49.2351 37.0813 49.5999 36.5632C49.7914 36.2842 49.9373 35.9972 50.0193 35.7581C50.2199 35.1204 50.0011 34.8494 49.6364 35.3357C49.8643 34.682 49.6364 34.411 49.2807 34.8654L49.2716 34.8574ZM50.5391 36.3719C50.4023 36.5472 50.2473 36.8342 50.1196 37.1929C49.8734 37.8704 49.8005 38.5559 49.8096 38.9544C50.0649 38.8906 50.4844 38.6276 50.8583 38.0936C51.0589 37.8146 51.2048 37.5197 51.2777 37.2726C51.4874 36.6269 51.2595 36.3559 50.8856 36.8501C51.1136 36.1885 50.8856 35.9175 50.53 36.3719H50.5391ZM52.9191 34.9132C53.1288 34.5067 53.3385 34.1002 53.5574 33.6857C53.4297 33.5502 53.3112 33.4067 53.1835 33.2712C52.9647 33.9168 52.9008 34.5465 52.9191 34.9212V34.9132ZM51.6333 33.4306C51.8795 33.3669 52.2716 33.1198 52.6273 32.6335C52.3811 32.3546 52.1349 32.0756 51.8887 31.7966C51.6698 32.4343 51.6151 33.056 51.6333 33.4306ZM50.3476 31.9481C50.5938 31.8843 50.9768 31.6452 51.3324 31.1669C51.0862 30.8879 50.84 30.609 50.5938 30.33C50.3841 30.9597 50.3294 31.5814 50.3476 31.9481ZM49.0619 30.4655C49.299 30.4097 49.6819 30.1706 50.0376 29.7003C49.7914 29.4213 49.5452 29.1423 49.299 28.8633C49.0892 29.4851 49.0436 30.0988 49.0619 30.4655ZM47.7761 28.9829C48.0132 28.9271 48.3962 28.696 48.7427 28.2337C48.4965 27.9547 48.2503 27.6757 48.0041 27.3967C47.8035 28.0105 47.7579 28.6242 47.7761 28.9829ZM46.4904 27.5003C46.7275 27.4445 47.1014 27.2214 47.4479 26.767C47.3202 26.6315 47.2017 26.488 47.074 26.3525C46.8825 26.7351 46.6819 27.1177 46.4904 27.5003Z' fill='url(%23paint61_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M42.688 57.1347C42.46 57.3101 42.305 57.597 42.2686 57.9637C42.2686 58.0036 42.2686 58.0354 42.2686 58.0673C42.7336 58.2108 43.2078 58.3543 43.6819 58.4898C44.1561 58.6333 44.6212 58.7767 45.0953 58.9122C45.1227 58.8883 45.1592 58.8644 45.1774 58.8405C45.4692 58.5535 45.6151 58.2666 45.606 58.0195C45.5878 57.3739 44.7124 57.1108 44.1288 57.613C44.1561 56.9434 43.2716 56.6804 42.688 57.1427V57.1347ZM47.7215 58.6572C47.5027 58.8325 47.3385 59.1195 47.3021 59.4782C47.3021 59.51 47.3021 59.5499 47.3021 59.5818C47.5847 59.6695 47.8765 59.7571 48.1592 59.8368C48.3872 59.4064 48.606 58.968 48.834 58.5296C48.5331 58.3622 48.0772 58.3782 47.7306 58.6492L47.7215 58.6572ZM47.986 55.6681C48.6425 55.5964 49.5635 55.3333 50.1106 54.7993C50.4024 54.5203 50.5483 54.2254 50.5392 53.9783C50.521 53.3327 49.6456 53.0616 49.0711 53.5638C49.0984 52.8943 48.2139 52.6312 47.6303 53.0856C47.4115 53.2609 47.2474 53.5479 47.2109 53.9066C47.1379 54.592 47.5665 55.2696 47.986 55.6681ZM43.0436 54.1616C43.7002 54.0899 44.6212 53.8189 45.1774 53.2848C45.4692 53.0059 45.6151 52.7109 45.606 52.4638C45.5878 51.8182 44.7124 51.5472 44.1379 52.0494C43.7731 52.7588 43.4084 53.4602 43.0436 54.1616ZM47.6395 47.5299C47.4115 47.7053 47.2565 47.9922 47.22 48.3589C47.147 49.0444 47.5756 49.7298 47.986 50.1284C48.6425 50.0567 49.5635 49.7936 50.1106 49.2596C50.4024 48.9806 50.5483 48.6857 50.5392 48.4386C50.521 47.7929 49.6456 47.5219 49.0711 48.0161C49.0984 47.3466 48.2139 47.0756 47.6303 47.5379L47.6395 47.5299ZM52.6638 49.0922C52.4359 49.2675 52.2809 49.5545 52.2444 49.9132C52.1988 50.3675 52.372 50.8218 52.6183 51.1965C53.0012 50.4632 53.3842 49.7139 53.7672 48.9806C53.4663 48.8052 53.0104 48.8212 52.6638 49.0922ZM52.9283 46.0952C53.5848 46.0234 54.5058 45.7683 55.0529 45.2343C55.3447 44.9553 55.4906 44.6604 55.4815 44.4133C55.4633 43.7677 54.5879 43.4887 54.0134 43.9829C54.0408 43.3133 53.1654 43.0344 52.5727 43.4967C52.3447 43.672 52.1897 43.959 52.1532 44.3177C52.0802 45.0031 52.5088 45.6886 52.9192 46.0872L52.9283 46.0952ZM48.0042 44.5488C48.6516 44.485 49.5726 44.222 50.1289 43.688C50.4207 43.409 50.5665 43.1141 50.5574 42.867C50.5483 42.2134 49.6729 41.9424 49.0893 42.4365C48.7246 43.138 48.3598 43.8474 48.0042 44.5488ZM52.6 37.9251C52.3812 38.1004 52.217 38.3874 52.1806 38.754C52.1076 39.4395 52.5362 40.133 52.9465 40.5315C53.594 40.4678 54.5149 40.2047 55.0712 39.6786C55.363 39.3997 55.5089 39.1047 55.4998 38.8576C55.4815 38.204 54.6152 37.9251 54.0408 38.4272C54.0681 37.7577 53.1927 37.4787 52.6091 37.933L52.6 37.9251ZM57.6062 39.5272C57.3873 39.7026 57.2323 39.9895 57.1867 40.3482C57.132 40.8105 57.3144 41.2648 57.5606 41.6395C57.9436 40.8982 58.3265 40.1569 58.7095 39.4156C58.4086 39.2402 57.9527 39.2562 57.6062 39.5272ZM57.8706 36.5222C58.4907 36.4584 59.3478 36.2273 59.9132 35.749C59.4481 35.5976 58.974 35.4461 58.5089 35.2947C58.0439 35.1432 57.5697 34.9918 57.1046 34.8404C57.0773 35.494 57.4876 36.1396 57.8706 36.5222ZM52.9556 34.936C53.5757 34.8802 54.4329 34.6411 54.9891 34.1628C54.5241 34.0114 54.0499 33.8599 53.5848 33.7085C53.3751 34.123 53.1654 34.5295 52.9556 34.936Z' fill='url(%23paint62_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M52.0436 28.2018C51.5329 28.0822 51.2593 28.138 51.1864 28.2337C51.5511 28.4648 52.1986 28.8155 52.846 29.0786C53.1925 29.2141 53.4661 29.3018 53.6393 29.3336C54.0861 29.4133 53.8399 29.1503 53.2016 28.8873C53.6849 28.9829 53.4296 28.7199 52.8186 28.4568C52.5816 28.3612 52.308 28.2655 52.0344 28.2018H52.0436ZM54.2047 29.9474C53.9676 29.8438 53.6849 29.7561 53.4114 29.6923C52.8916 29.5728 52.6089 29.6286 52.5268 29.7162C52.9007 29.9474 53.5481 30.3061 54.2047 30.5691C54.5512 30.7126 54.8339 30.8003 55.0162 30.8322C55.4722 30.9198 55.226 30.6488 54.5785 30.3858C55.071 30.4814 54.8156 30.2184 54.1956 29.9554L54.2047 29.9474ZM55.5816 31.4379C55.3445 31.3343 55.0527 31.2387 54.77 31.1749C54.2412 31.0553 53.9494 31.1032 53.8673 31.1908C54.2412 31.43 54.8977 31.7807 55.5725 32.0517C55.9281 32.1952 56.2108 32.2828 56.3932 32.3147C56.8582 32.4024 56.612 32.1314 55.9555 31.8684C56.457 31.972 56.2017 31.701 55.5816 31.4379ZM56.9585 32.9285C56.7123 32.8249 56.4205 32.7292 56.1378 32.6654C55.5998 32.5379 55.308 32.5937 55.2169 32.6734C55.5907 32.9125 56.2564 33.2633 56.9403 33.5343C57.305 33.6777 57.5877 33.7734 57.7701 33.8053C58.2443 33.8929 57.9981 33.6299 57.3324 33.3589C57.843 33.4625 57.5877 33.1995 56.9585 32.9285ZM58.3354 34.419C58.0892 34.3154 57.7974 34.2198 57.5056 34.148C56.9585 34.0205 56.6576 34.0683 56.5664 34.148C56.9494 34.3871 57.6242 34.7458 58.3081 35.0168C58.6728 35.1603 58.9646 35.256 59.1561 35.2878C59.6394 35.3835 59.3932 35.1125 58.7184 34.8415C59.2291 34.9531 58.9829 34.6821 58.3446 34.4111L58.3354 34.419ZM54.4874 34.0045C55.0071 34.1161 54.77 33.8531 54.1317 33.5821C53.8855 33.4785 53.5846 33.3828 53.2928 33.3111C53.2655 33.3111 53.2381 33.2951 53.2107 33.2951C53.3384 33.4386 53.4569 33.5741 53.5846 33.7096C53.8855 33.8053 54.1864 33.9089 54.4965 34.0045H54.4874ZM52.7548 32.7053C53.1104 32.8488 53.4114 32.9444 53.5937 32.9763C54.077 33.072 53.8399 32.8089 53.1834 32.5299C53.694 32.6415 53.4569 32.3705 52.8278 32.1075C52.5907 32.0039 52.2898 31.9082 52.0071 31.8444C51.9797 31.8444 51.9524 31.8285 51.925 31.8285C52.1712 32.1075 52.4174 32.3865 52.6636 32.6654C52.7001 32.6814 52.7275 32.6894 52.7639 32.7053H52.7548ZM51.46 31.2387C51.8156 31.3821 52.1074 31.4698 52.2806 31.5097C52.7548 31.5974 52.5177 31.3343 51.8612 31.0633C52.3718 31.1669 52.1347 30.9039 51.5056 30.6409C51.2685 30.5372 50.9767 30.4416 50.694 30.3778C50.6666 30.3778 50.6393 30.3619 50.6119 30.3619C50.8581 30.6409 51.1043 30.9198 51.3505 31.1988C51.387 31.2148 51.4144 31.2227 51.4508 31.2387H51.46ZM50.1651 29.772C50.5116 29.9155 50.8034 30.0032 50.9767 30.0351C51.4417 30.1228 51.2046 29.8597 50.5663 29.5887C51.0587 29.6923 50.8308 29.4293 50.2107 29.1663C49.9736 29.0626 49.6909 28.975 49.4083 28.9112C49.3809 28.9112 49.3535 28.9032 49.3262 28.8952C49.5724 29.1742 49.8186 29.4532 50.0648 29.7322C50.1013 29.7481 50.1286 29.7641 50.1651 29.772ZM48.8703 28.3054C49.2168 28.4409 49.4994 28.5366 49.6727 28.5684C50.1286 28.6561 49.8915 28.3931 49.2624 28.13C49.7456 28.2257 49.5177 27.9706 48.9067 27.7076C48.6788 27.6119 48.387 27.5163 48.1134 27.4525C48.086 27.4525 48.0587 27.4446 48.0313 27.4366C48.2775 27.7156 48.5237 27.9945 48.77 28.2735C48.8064 28.2895 48.8338 28.2974 48.8703 28.3134V28.3054ZM47.5754 26.8388C47.9128 26.9743 48.1955 27.062 48.3687 27.0938C48.8155 27.1735 48.5785 26.9105 47.9584 26.6475C47.6757 26.5518 47.393 26.4641 47.1104 26.3765C47.238 26.5199 47.3566 26.6554 47.4842 26.7989C47.5207 26.8149 47.548 26.8228 47.5845 26.8388H47.5754Z' fill='white'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.2' fill-rule='evenodd' clip-rule='evenodd' d='M47.1108 26.3843L53.5942 33.7095L41.2019 57.7415L40.29 56.2669C41.4937 56.6734 51.5516 38.1731 51.4969 34.3152C51.4513 30.6646 48.6154 27.7871 47.3297 27.6038C46.5728 27.4922 46.2901 28.0183 46.2901 28.0183L47.1108 26.3922V26.3843Z' fill='url(%23paint63_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:multiply' opacity='0.3' fill-rule='evenodd' clip-rule='evenodd' d='M42.0679 57.9973C48.4692 59.8386 61.5271 37.4964 57.0499 34.8262L60.5058 35.9421L48.15 59.8386L42.0679 57.9973Z' fill='url(%23paint64_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' d='M47.4916 29.7098C52.0993 25.1312 52.0993 17.7077 47.4916 13.1291C42.8838 8.55041 35.4132 8.55041 30.8055 13.1291C26.1977 17.7077 26.1977 25.1312 30.8055 29.7098C35.4132 34.2885 42.8838 34.2885 47.4916 29.7098Z' fill='url(%23paint65_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' d='M99.0385 19.4814C104.41 19.4814 108.764 15.1547 108.764 9.81738C108.764 4.48007 104.41 0.15332 99.0385 0.15332C93.6672 0.15332 89.313 4.48007 89.313 9.81738C89.313 15.1547 93.6672 19.4814 99.0385 19.4814Z' fill='url(%23paint66_radial_4318_875)'/%3e%3cpath d='M90.0004 21.7916C88.9465 20.3688 88.7976 18.1036 89.4047 16.4758C89.6453 15.8384 93.059 16.0205 93.4026 16.4644C93.7577 16.9084 93.5859 17.6369 93.8952 18.4337C94.3534 19.6061 96.8392 18.7069 95.6249 17.2613C94.9605 16.4644 94.0441 15.9295 93.1964 15.3831C91.123 14.0513 90.4013 12.1276 91.0658 10.2722C91.6385 8.67856 93.0704 7.23293 94.72 6.53858C97.1599 5.5255 101.845 6.43613 102.739 9.14526C103.208 10.5795 103.14 12.4804 102.12 13.3C100.196 14.8708 96.885 13.4366 97.6754 11.3877C97.7441 11.2169 98.1336 11.1031 98.0305 10.9551C97.4348 10.0673 94.972 11.2966 96.1175 12.8105C96.7819 13.687 97.9045 14.4041 98.9813 15.2009C100.803 16.5327 101.879 19.4012 99.1646 21.7461C96.4153 24.1137 91.8791 24.3414 89.9775 21.7916H90.0004ZM75.7387 15.9636C75.8532 14.3245 76.9758 4.11402 77.835 3.23754C78.1672 2.89606 81.787 3.23754 81.8672 4.05711C82.062 5.9922 81.031 11.6723 80.5384 14.7456C80.3093 16.2026 80.6644 16.7263 81.1455 16.897C81.6152 17.0677 82.1994 16.8742 82.6233 15.5424C82.9211 14.609 84.101 4.37583 84.6394 4.11402C85.235 3.82945 88.832 4.262 88.6716 5.84422C88.2821 9.69164 87.7437 13.1634 87.0908 16.9653C86.1744 22.3039 79.7595 22.4291 76.9529 19.7313C76.1052 18.9232 75.6356 17.7279 75.7616 15.9522L75.7387 15.9636ZM61.6946 20.4143C61.4311 20.2436 60.5147 4.94497 61.7862 3.76116C62.8401 2.78223 65.5321 2.52042 66.437 3.82945C67.3535 5.16125 68.0866 8.81515 68.625 10.5567C68.6708 8.02973 68.7854 7.39229 68.6937 4.97912C68.6135 2.72531 72.1074 2.16755 72.9436 3.59041C73.2987 4.1937 73.3904 4.89944 73.4362 5.61656C73.5851 8.14356 73.2071 19.0825 71.9585 20.3119C71.3742 20.881 68.4761 20.6989 68.1324 20.0956C67.1931 18.4565 66.9525 16.1685 66.2652 14.6773C66.185 15.8612 66.4027 19.6972 66.2652 20.0728C66.0017 20.7558 62.3704 20.8469 61.706 20.4143H61.6946ZM54.031 15.827C54.2945 14.0285 54.2143 11.5243 53.7332 9.88514C52.9428 7.17602 51.4422 8.07527 51.2474 10.5681C51.1214 12.1959 51.4193 14.37 51.992 16.0091C52.8626 18.502 53.6645 18.3426 54.031 15.827ZM48.0858 17.9898C46.253 14.4155 46.104 8.31431 48.1316 5.49135C49.5062 3.59041 54.1914 3.15786 55.8524 4.86529C58.3268 7.40368 59.1744 13.0268 58.3268 16.3392C56.7918 22.3039 50.8121 23.2828 48.0858 17.9784V17.9898ZM39.3455 10.6592C38.9445 10.3405 38.2572 10.5681 37.547 10.8413C37.8219 11.9796 38.0854 13.1293 38.3603 14.2676C39.9182 13.596 40.6514 11.695 39.3455 10.6592ZM41.6021 18.4565C41.1439 17.3978 39.9411 17.5003 39.0018 17.7393L39.6433 20.3574C40.4795 20.3915 42.1978 19.8452 41.6021 18.4565ZM37.3752 24.182C34.855 24.33 32.5983 10.0331 32.6327 9.73717C32.7244 8.96313 33.1826 8.31431 33.7897 7.88176C35.5423 6.65241 38.578 6.0605 40.6628 6.54996C43.0684 7.1191 45.0158 10.0331 44.6263 12.4349C44.4659 13.4821 43.8703 14.4497 42.8164 15.3375C43.8817 15.4172 44.8096 15.8953 45.3022 16.5214C46.4821 18.0125 46.4362 20.2322 45.1647 21.655C43.435 23.6015 39.8037 24.0341 37.3752 24.182Z' fill='url(%23paint67_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M98.0647 11.5925C97.9731 11.8543 97.9502 12.1275 98.0533 12.3893C98.2824 13.004 98.9926 13.3796 99.5997 13.5048C100.39 13.6755 101.249 13.5048 101.879 12.9926C102.59 12.412 102.681 11.2055 102.601 10.3745C102.567 10.0103 102.486 9.63462 102.372 9.28175C102.326 9.14516 102.269 9.00856 102.2 8.88335C101.055 6.73199 96.9994 6.04901 94.9031 6.9255C93.4024 7.55155 92.0278 8.88335 91.478 10.4087C91.3061 10.8867 91.2259 11.399 91.2832 11.9112C91.4092 13.2658 92.3486 14.3244 93.4483 15.0415C94.3532 15.622 95.2696 16.1684 95.9684 16.9993C96.3464 17.4433 96.5412 18.0238 96.2548 18.5702C95.7393 19.5605 93.9752 19.7198 93.5284 18.5702C93.3795 18.1945 93.3223 17.8303 93.2764 17.4319C93.2535 17.2384 93.2306 16.931 93.1275 16.7603L93.1046 16.7262C92.9901 16.6579 92.6578 16.5896 92.5433 16.5668C92.1767 16.4985 91.7987 16.4757 91.4207 16.4643C91.0541 16.4643 90.6761 16.4643 90.3095 16.5099C90.2064 16.5213 89.8857 16.5782 89.7826 16.6465C89.2327 18.1376 89.3702 20.2321 90.3324 21.5297C90.5386 21.8029 90.7792 22.0533 91.0656 22.2696C92.1309 23.0778 93.5628 23.2941 94.8687 23.1575C96.335 22.9981 97.8012 22.3948 98.9239 21.4273C99.8975 20.5849 100.573 19.4694 100.39 18.1376C100.253 17.1018 99.5997 16.1342 98.7635 15.5196C97.7783 14.8024 96.5412 14.0284 95.808 13.0381C95.4529 12.56 95.3155 11.9909 95.5446 11.4331C95.682 11.103 95.9226 10.8298 96.2204 10.6249C96.839 10.1924 97.9043 9.98749 98.3969 10.716C98.4656 10.8071 98.4885 10.9209 98.4771 11.0347C98.4542 11.2851 98.2938 11.4103 98.1105 11.5356C98.0991 11.5356 98.0876 11.5583 98.0647 11.5697V11.5925ZM84.8798 4.47818C84.8225 4.62615 84.7537 4.88796 84.7308 4.99041C84.6277 5.41157 84.5476 5.8555 84.4674 6.27667C84.2497 7.48326 84.0664 8.70122 83.8946 9.90781C83.7113 11.1258 83.551 12.3551 83.3677 13.5731C83.2989 14.017 83.2302 14.461 83.1615 14.9049C83.1157 15.1439 83.0813 15.4399 83.0011 15.6789C82.8522 16.157 82.6116 16.7034 82.2336 17.0335C81.9358 17.2953 81.5807 17.4205 81.1912 17.3408C81.1224 17.3294 81.0652 17.3067 80.9964 17.2839C79.9311 16.9083 79.9769 15.5879 80.1259 14.6772C80.3779 13.1405 80.6413 11.6039 80.8819 10.0672C81.0652 8.90612 81.237 7.73368 81.3516 6.56124C81.3974 6.08316 81.4432 5.60508 81.4661 5.127C81.4776 4.7969 81.489 4.44403 81.4661 4.12531C81.3974 4.03424 81.0766 3.90903 80.985 3.87488C80.6299 3.74967 80.2404 3.66999 79.8624 3.61308C79.4844 3.55616 79.0949 3.52201 78.7054 3.52201C78.5794 3.52201 78.2586 3.52201 78.1212 3.56755C78.0295 3.70414 77.9264 4.04563 77.8921 4.15946C77.7546 4.62615 77.6401 5.11562 77.5484 5.60508C77.2735 6.95964 77.0788 8.32559 76.884 9.69153C76.7007 10.9892 76.5404 12.2868 76.4029 13.5845C76.3113 14.3813 76.2196 15.1895 76.1623 15.9976C76.0707 17.2611 76.2769 18.536 77.2277 19.458C78.2243 20.4142 79.6676 20.9492 81.0423 21.0516C82.0961 21.1313 83.1844 20.972 84.1237 20.5053C85.5785 19.7881 86.4033 18.4905 86.6668 16.9197C87.2968 13.2316 87.8696 9.55494 88.2476 5.82136C88.2476 5.74168 88.2476 5.662 88.2247 5.58232C88.0529 5.09285 87.1708 4.78551 86.7126 4.6603C86.3117 4.55786 85.8993 4.48956 85.4869 4.46679C85.3723 4.46679 85.063 4.45541 84.8912 4.47818H84.8798ZM62.0381 20.1296C62.2213 20.1865 62.4963 20.2207 62.6223 20.2321C63.0576 20.2776 63.5043 20.2776 63.9396 20.2662C64.3749 20.2548 64.8331 20.2093 65.257 20.1182C65.383 20.0955 65.761 20.0044 65.8756 19.9134C65.887 19.8337 65.887 19.7199 65.887 19.6516C65.887 19.4353 65.887 19.219 65.887 19.0027C65.887 18.4108 65.8641 17.8189 65.8526 17.227C65.8526 16.7375 65.8297 16.2481 65.8297 15.77C65.8297 15.4057 65.8297 15.0187 65.8412 14.6545L65.9443 13.0153L66.6202 14.5065C66.8493 15.0073 67.0096 15.5423 67.1585 16.0773C67.3189 16.6465 67.4678 17.2156 67.6282 17.7848C67.8344 18.5019 68.0864 19.2418 68.453 19.8906C68.5332 19.9817 68.8539 20.0727 68.957 20.0955C69.3007 20.1865 69.6787 20.2207 70.0338 20.2435C70.3889 20.2548 70.7555 20.2435 71.0991 20.1979C71.2251 20.1752 71.5344 20.1182 71.6261 20.0272C71.9697 19.6857 72.2561 18.0238 72.3248 17.5457C72.5769 15.9863 72.7029 14.3699 72.806 12.7877C72.8976 11.3648 72.9549 9.94196 72.9892 8.53048C73.0007 7.96134 73.0122 7.39219 73.0007 6.82305C73.0007 6.43603 73.0007 6.03763 72.9663 5.65061C72.932 5.02455 72.8518 4.35296 72.531 3.80659C72.1645 3.18053 71.1221 3.15776 70.5035 3.31712C69.6901 3.52201 69.0143 4.07978 69.0487 4.97902C69.083 5.87827 69.0945 6.77752 69.0716 7.68815C69.0487 8.65569 69.0028 9.61185 68.9914 10.5794L68.9456 13.1519L68.1895 10.6932C68.0406 10.2038 67.9031 9.70292 67.7771 9.21345C67.6282 8.62154 67.4678 8.04102 67.3075 7.44911C67.1242 6.7889 66.9294 6.11731 66.7003 5.47987C66.54 5.02455 66.3223 4.47818 66.0474 4.07978C65.3028 2.98702 62.8858 3.27159 62.0266 4.07978C61.9121 4.1936 61.809 4.71722 61.7746 4.87658C61.66 5.49125 61.6142 6.12869 61.5799 6.75475C61.4768 8.5191 61.4882 10.3176 61.534 12.0819C61.5799 13.8918 61.6486 15.7017 61.7746 17.5116C61.8204 18.149 61.8662 18.7751 61.9235 19.4125C61.9464 19.6174 61.9693 19.8109 61.9922 20.0158C61.9922 20.05 61.9922 20.1069 62.0152 20.1524L62.0381 20.1296ZM48.4522 17.8075C48.9562 18.7978 49.6664 19.7085 50.6058 20.3231C51.3618 20.8126 52.2324 21.0744 53.1374 21.0403C54.2142 20.9833 55.1993 20.5053 55.9783 19.7654C56.9749 18.832 57.5934 17.5457 57.9256 16.2481C58.3724 14.5065 58.2922 12.3779 57.9715 10.6135C57.6393 8.76952 56.8947 6.52709 55.5544 5.14977C54.0767 3.63584 49.6893 4.03424 48.4636 5.73029C47.1577 7.54017 46.9516 10.5566 47.1234 12.6966C47.2608 14.404 47.6618 16.2708 48.4522 17.7961V17.8075ZM54.4318 15.8838C54.3402 16.5326 54.0996 18.1149 53.229 18.1945C52.347 18.2856 51.82 16.7603 51.6024 16.1342C51.0296 14.4837 50.7089 12.2754 50.8349 10.5339C50.8807 9.91919 51.0182 9.23622 51.3045 8.68984C51.5336 8.25729 51.9002 7.84751 52.4157 7.81336C53.3894 7.75644 53.8934 9.01994 54.1111 9.75983C54.6265 11.5242 54.6838 14.0626 54.4203 15.8838H54.4318ZM33.0449 9.74845C33.0449 9.81675 33.0564 9.89643 33.0678 9.96472C33.0907 10.1355 33.1137 10.3176 33.148 10.4883C33.2397 11.0575 33.3313 11.6266 33.4344 12.1958C33.7322 13.8349 34.0644 15.4627 34.4654 17.079C34.683 17.9441 34.9121 18.8092 35.1756 19.6629C35.4047 20.4028 35.6567 21.1541 35.966 21.8712C36.1722 22.3607 36.4471 22.9298 36.7793 23.351C36.8939 23.499 37.1459 23.7722 37.3521 23.7608C39.6775 23.6242 43.2286 23.2144 44.8552 21.3817C45.9893 20.1069 46.0237 18.1149 44.9698 16.7717C44.4658 16.1342 43.5608 15.7928 42.7704 15.7358L41.7738 15.6675L42.5413 15.0187C43.3661 14.3244 44.0419 13.4479 44.2138 12.3665C44.5689 10.1696 42.736 7.46049 40.5595 6.93688C39.4828 6.68645 38.2227 6.75475 37.1459 6.97103C36.0806 7.17592 34.9121 7.5857 34.0301 8.21176C33.5146 8.57601 33.1251 9.12239 33.0449 9.74845ZM38.8985 17.3294C40.0441 17.0335 41.4301 16.9993 41.98 18.2856C42.1747 18.7409 42.2091 19.2304 41.9571 19.6857C41.5447 20.4142 40.4335 20.7898 39.6317 20.7557H39.3224L39.2536 20.4484C39.036 19.5719 38.8298 18.7068 38.6122 17.8303L38.5205 17.4319L38.91 17.3294H38.8985ZM37.9707 14.3471C37.6957 13.2088 37.4323 12.0592 37.1573 10.9209L37.0772 10.568L37.4094 10.4428C38.0508 10.1924 38.9902 9.82813 39.6088 10.3176C40.0555 10.6705 40.3419 11.1372 40.4221 11.6949C40.5939 12.9584 39.6546 14.1309 38.532 14.6203L38.0852 14.8138L37.9707 14.3357V14.3471Z' fill='url(%23paint68_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M98.2938 11.7525C98.248 11.9346 98.2365 12.1167 98.2938 12.2875C98.4771 12.8111 99.13 13.1184 99.634 13.2323C100.344 13.3802 101.123 13.2323 101.685 12.7769C102.303 12.2647 102.383 11.1378 102.303 10.3979C102.269 10.0451 102.2 9.70357 102.085 9.36208C102.04 9.23687 101.994 9.12304 101.937 9.00921C100.871 6.99444 96.9535 6.357 94.9832 7.17657C93.5628 7.76848 92.234 9.05474 91.707 10.5004C91.5467 10.9443 91.4779 11.411 91.5238 11.8777C91.6383 13.1412 92.5318 14.1315 93.5742 14.8031L93.7232 14.9055C95.7966 15.4975 97.7783 16.169 99.6226 16.8862C99.3477 16.4422 98.9926 16.0552 98.5802 15.7479C97.5492 14.9966 96.3349 14.2453 95.5675 13.2095C95.1551 12.6631 95.0061 11.9801 95.2696 11.3313C95.43 10.9557 95.7049 10.637 96.0371 10.3979C96.7817 9.87431 98.0189 9.69218 98.6031 10.5573C98.7062 10.7053 98.752 10.876 98.7291 11.0467C98.7062 11.3655 98.5229 11.5476 98.2823 11.7183L98.2938 11.7525ZM78.2815 3.80724C78.2243 3.94383 78.167 4.13734 78.1326 4.23979C77.9952 4.70648 77.8921 5.18456 77.8004 5.65126C77.5255 6.99444 77.3308 8.36039 77.136 9.72633C77.0329 10.4548 76.9413 11.172 76.8496 11.9005C77.9952 12.0029 79.1178 12.1167 80.2404 12.242C80.3664 11.5021 80.4809 10.7736 80.5955 10.0337C80.7788 8.87262 80.9391 7.71156 81.0652 6.53913C81.111 6.07243 81.1568 5.59435 81.1797 5.11627C81.1912 4.8317 81.2026 4.54712 81.1797 4.26255C81.0881 4.20564 80.9277 4.14872 80.8704 4.12596C80.5268 4.00075 80.1602 3.93245 79.8051 3.87553C79.4385 3.81862 79.0605 3.78447 78.6825 3.78447C78.5794 3.78447 78.4075 3.78447 78.2815 3.79585V3.80724ZM86.976 13.3006C87.3655 10.8077 87.7092 8.30347 87.9612 5.79924C87.9612 5.75371 87.9612 5.71956 87.9497 5.67403C87.8123 5.29839 86.976 5.01382 86.6324 4.92276C86.2544 4.82031 85.8534 4.75202 85.464 4.72925C85.3609 4.72925 85.2119 4.71787 85.0859 4.72925C85.0516 4.84308 85.0287 4.95691 85.0057 5.05935C84.9026 5.48052 84.8225 5.91307 84.7423 6.33424C84.5246 7.54082 84.3413 8.74741 84.1695 9.95399C84.0321 10.876 83.906 11.8094 83.7686 12.7428C84.8568 12.9135 85.9336 13.107 86.976 13.3119V13.3006ZM72.6341 11.6273C72.6914 10.5914 72.7258 9.55559 72.7487 8.50837C72.7601 7.93922 72.7716 7.38146 72.7601 6.81232C72.7601 6.4253 72.7601 6.03828 72.7258 5.65126C72.6914 5.08212 72.6227 4.4333 72.3248 3.93245C72.027 3.4316 71.0877 3.44298 70.6065 3.5682C69.9307 3.73894 69.3236 4.19425 69.3579 4.94552C69.3923 5.85615 69.4037 6.7554 69.3808 7.66603C69.3579 8.63358 69.3121 9.58974 69.3007 10.5573V11.5134C70.4118 11.5248 71.5344 11.559 72.6341 11.6159V11.6273ZM68.1895 11.5248L67.9489 10.7622C67.8 10.2727 67.6626 9.77186 67.5365 9.27102C67.3876 8.67911 67.2273 8.09858 67.0669 7.50667C66.8836 6.84647 66.7003 6.19764 66.4712 5.54882C66.3108 5.10488 66.1161 4.60404 65.8526 4.21702C65.4632 3.64788 64.5353 3.57958 63.9167 3.63649C63.3898 3.69341 62.6681 3.87553 62.2557 4.25117C62.187 4.365 62.0953 4.77478 62.0724 4.91138C61.9579 5.51467 61.912 6.14073 61.8777 6.7554C61.7746 8.39454 61.786 10.0451 61.8204 11.6956C63.7907 11.5817 65.7839 11.5248 67.8229 11.5248C67.9489 11.5248 68.0635 11.5248 68.1895 11.5248ZM57.8798 11.9915C57.834 11.5362 57.7767 11.0923 57.6965 10.6711C57.3758 8.87262 56.6541 6.6871 55.3482 5.35531C53.9965 3.9666 49.8039 4.34223 48.6813 5.90169C47.4212 7.65465 47.2265 10.6028 47.3868 12.6859C47.4097 12.9705 47.4441 13.255 47.4785 13.5396C48.5094 13.3233 49.5519 13.1298 50.6172 12.9477C50.5256 12.1395 50.4912 11.3199 50.5599 10.5231C50.6057 9.86293 50.7547 9.15719 51.0639 8.57666C51.3389 8.06443 51.7856 7.59774 52.4042 7.5522C52.6104 7.54082 52.8166 7.57497 53.0113 7.65465C53.7674 7.97337 54.1798 8.96368 54.386 9.69218C54.6265 10.5231 54.7525 11.4338 54.8213 12.3216C55.8293 12.1964 56.8488 12.0826 57.8798 11.9801V11.9915ZM33.3198 9.77187C33.3198 9.82878 33.3313 9.88569 33.3427 9.94261C33.3656 10.1134 33.3886 10.2955 33.4229 10.4662C33.5146 11.0354 33.6062 11.6045 33.7093 12.1623C34.0071 13.79 34.3393 15.4178 34.7288 17.0341C34.7632 17.1594 34.7861 17.2732 34.8205 17.3984C37.1573 16.4195 39.7004 15.543 42.4267 14.7803C43.1713 14.1315 43.7899 13.3347 43.9503 12.3444C44.2825 10.2841 42.5413 7.71156 40.5022 7.23348C39.4598 6.98306 38.2456 7.06274 37.2031 7.26763C36.1722 7.47252 35.0496 7.85954 34.1904 8.46283C33.7437 8.78155 33.4115 9.23687 33.3313 9.78325L33.3198 9.77187ZM37.6957 14.4388C37.4208 13.3006 37.1573 12.1509 36.8824 11.0126L36.7449 10.4321L37.3062 10.2158C37.5812 10.1134 37.8561 9.99952 38.1425 9.93122C38.6923 9.79463 39.2994 9.76048 39.7691 10.1361C40.2617 10.5345 40.5939 11.0695 40.6855 11.6956C40.8803 13.0843 39.8722 14.3705 38.635 14.9055L37.879 15.2356L37.6957 14.4388Z' fill='url(%23paint69_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M48.3264 11.4222C48.7159 10.2498 49.3803 8.04151 50.2051 6.45929C50.4227 6.04951 50.7664 5.54866 50.984 5.13888C51.0184 5.07058 51.0184 4.94537 50.9496 4.91122C50.6174 4.69495 49.2543 5.50313 48.945 5.856C47.9255 6.99429 47.5589 9.63511 47.7193 11.1604C47.8224 12.1166 47.9598 12.5605 48.3379 11.4336L48.3264 11.4222Z' fill='url(%23paint70_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M91.9934 10.534C91.7528 11.1714 91.7528 11.8885 91.9934 12.0137C92.1538 12.1048 92.4287 11.843 92.864 11.2625C94.0095 9.74853 94.9374 8.98588 96.6442 8.06387C97.0566 7.83621 97.5148 7.72238 97.9272 7.49473C97.9959 7.46058 98.0647 7.35813 98.0303 7.28983C97.9845 7.18739 97.8585 7.11909 97.7554 7.09632C95.2009 6.67516 92.864 8.21185 91.9934 10.5453V10.534Z' fill='url(%23paint71_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M62.4392 4.36438C62.3361 4.48959 62.2673 4.64895 62.2444 4.81969C61.9695 6.42468 61.9351 8.21179 61.9695 9.85092C61.9695 10.4314 62.2559 10.6933 62.4162 10.0217C62.7828 8.39391 62.8974 6.73201 63.3785 5.09288C63.5389 4.55788 63.8023 4.38714 63.9742 4.17087C64.1116 4.01151 64.0429 3.80661 63.7909 3.82938C63.4129 3.86353 62.7026 4.06842 62.4506 4.37576L62.4392 4.36438Z' fill='url(%23paint72_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M69.8391 4.17053C69.736 4.29574 69.6673 4.4551 69.6443 4.62584C69.5298 5.26328 69.5871 5.93487 69.5871 6.60646C69.5871 7.61954 69.5642 8.644 69.5871 9.64569C69.5871 10.2262 69.8735 10.488 70.0338 9.81644C70.4004 8.18868 70.2973 6.53817 70.7784 4.89903C70.9388 4.36404 71.2023 4.19329 71.3741 3.97702C71.5115 3.81766 71.4428 3.61277 71.1908 3.63553C70.8128 3.66968 70.1026 3.87457 69.8505 4.18191L69.8391 4.17053Z' fill='url(%23paint73_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M78.545 4.05725C78.4305 4.14832 78.3503 4.28491 78.293 4.44427C77.8234 5.95819 77.5828 7.72254 77.3995 9.38444C77.3423 9.96497 77.5714 10.3292 77.8005 9.70316C78.3503 8.20062 78.6711 6.58425 79.3355 5.11586C79.5531 4.63778 79.828 4.5581 80.0228 4.41012C80.1717 4.29629 80.1373 4.06864 79.8968 4.00034C79.5302 3.90928 78.82 3.86375 78.545 4.06864V4.05725Z' fill='url(%23paint74_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M85.4185 5.03667C85.2925 5.11635 85.2238 5.26432 85.1665 5.42368C84.6968 6.93761 84.5594 8.77025 84.3761 10.4208C84.3188 11.0013 84.5479 11.3655 84.777 10.7395C85.3269 9.23695 85.556 7.56367 86.2089 6.08389C86.3922 5.67411 86.6671 5.66272 86.8962 5.56028C87.0681 5.49198 87.1024 5.26432 86.8848 5.12773C86.564 4.9456 85.7736 4.80901 85.4071 5.02528L85.4185 5.03667Z' fill='url(%23paint75_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M33.595 9.39549C33.5377 9.54346 33.4919 9.71421 33.5148 9.88495C33.6294 11.5127 34.0303 13.2429 34.4541 14.8365C34.6031 15.3943 34.9353 15.5764 34.9238 14.8934C34.8894 13.2315 34.6031 11.581 34.6718 9.87357C34.6947 9.31581 34.8322 8.86049 34.9467 8.61007C35.0384 8.42794 34.9238 8.23443 34.6832 8.3255C34.3281 8.45071 33.8126 8.83773 33.5835 9.39549H33.595Z' fill='url(%23paint76_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M38.8068 10.2039C38.8068 12.7081 36.7563 14.7456 34.2362 14.7456C31.716 14.7456 29.6655 12.7081 29.6655 10.2039C29.6655 7.69965 31.716 5.66211 34.2362 5.66211C36.7563 5.66211 38.8068 7.69965 38.8068 10.2039Z' fill='url(%23paint77_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M53.6644 5.95862C53.6644 7.96201 52.0378 9.57838 50.0217 9.57838C48.0055 9.57838 46.3789 7.96201 46.3789 5.95862C46.3789 3.95524 48.0055 2.33887 50.0217 2.33887C52.0378 2.33887 53.6644 3.95524 53.6644 5.95862Z' fill='url(%23paint78_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' d='M63.0004 7.63223C64.62 7.63223 65.9329 6.32758 65.9329 4.71822C65.9329 3.10885 64.62 1.8042 63.0004 1.8042C61.3808 1.8042 60.0679 3.10885 60.0679 4.71822C60.0679 6.32758 61.3808 7.63223 63.0004 7.63223Z' fill='url(%23paint79_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M88.6488 5.66255C88.6488 7.27892 87.3314 8.57657 85.7162 8.57657C84.101 8.57657 82.7837 7.26754 82.7837 5.66255C82.7837 4.05757 84.101 2.74854 85.7162 2.74854C87.3314 2.74854 88.6488 4.05757 88.6488 5.66255Z' fill='url(%23paint80_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M99.4279 8.0184C99.4279 10.2836 97.5721 12.1276 95.2926 12.1276C93.013 12.1276 91.1572 10.2836 91.1572 8.0184C91.1572 5.75321 93.013 3.90918 95.2926 3.90918C97.5721 3.90918 99.4279 5.75321 99.4279 8.0184Z' fill='url(%23paint81_radial_4318_875)'/%3e%3cdefs%3e%3cradialGradient id='paint0_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(68 56.4483) rotate(90) scale(10.7586 56.2759)'%3e%3cstop stop-color='%2313317C' stop-opacity='0.68849'/%3e%3cstop offset='0.26875' stop-color='%2313317C' stop-opacity='0.230931'/%3e%3cstop offset='0.544792' stop-color='%2313317C' stop-opacity='0.120518'/%3e%3cstop offset='1' stop-color='%2313317C' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint1_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(65.268 40.3631) scale(18.0185 15.7503)'%3e%3cstop stop-color='%23E6007E'/%3e%3cstop offset='0.07' stop-color='%23CD0070'/%3e%3cstop offset='0.26' stop-color='%238F004E'/%3e%3cstop offset='0.44' stop-color='%235C0032'/%3e%3cstop offset='0.61' stop-color='%2334001C'/%3e%3cstop offset='0.77' stop-color='%2317000C'/%3e%3cstop offset='0.9' stop-color='%23060003'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint2_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(46.5635 39.4734) scale(28.8241 25.1958)'%3e%3cstop stop-color='%23FF78D2'/%3e%3cstop offset='1' stop-color='%23FC51A7'/%3e%3c/radialGradient%3e%3cradialGradient id='paint3_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(55.1076 31.0245) scale(48.2743 42.1975)'%3e%3cstop stop-color='%23F74FA9'/%3e%3cstop offset='1' stop-color='%23940066'/%3e%3c/radialGradient%3e%3cradialGradient id='paint4_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(47.8674 37.5358) scale(48.5752 42.4606)'%3e%3cstop stop-color='white'/%3e%3cstop offset='1' stop-color='%23FFBAF6'/%3e%3c/radialGradient%3e%3cradialGradient id='paint5_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(68.1653 43.0606) scale(23.2891 20.3575)'%3e%3cstop stop-color='white'/%3e%3cstop offset='1' stop-color='%23FFBAF6'/%3e%3c/radialGradient%3e%3cradialGradient id='paint6_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(59.9405 46.2243) scale(17.2434 15.0728)'%3e%3cstop offset='0.54' stop-color='white'/%3e%3cstop offset='0.58' stop-color='%23F9F4FA'/%3e%3cstop offset='0.66' stop-color='%23E9D9EE'/%3e%3cstop offset='0.76' stop-color='%23D0ADDA'/%3e%3cstop offset='0.87' stop-color='%23AD6FBF'/%3e%3cstop offset='1' stop-color='%2382239D'/%3e%3c/radialGradient%3e%3cradialGradient id='paint7_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(64.7461 37.13) scale(35.116 30.6956)'%3e%3cstop offset='0.54' stop-color='white'/%3e%3cstop offset='0.58' stop-color='%23F9F4FA'/%3e%3cstop offset='0.66' stop-color='%23E9D9EE'/%3e%3cstop offset='0.76' stop-color='%23D0ADDA'/%3e%3cstop offset='0.87' stop-color='%23AD6FBF'/%3e%3cstop offset='1' stop-color='%2382239D'/%3e%3c/radialGradient%3e%3cradialGradient id='paint8_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(42.8066 56.6666) scale(27.2284 23.8009)'%3e%3cstop offset='0.54' stop-color='white'/%3e%3cstop offset='0.58' stop-color='%23F9F4F7'/%3e%3cstop offset='0.66' stop-color='%23EAD9E3'/%3e%3cstop offset='0.75' stop-color='%23D1ADC3'/%3e%3cstop offset='0.87' stop-color='%23AE6F96'/%3e%3cstop offset='1' stop-color='%2382205C'/%3e%3c/radialGradient%3e%3cradialGradient id='paint9_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(77.7493 55.0884) scale(23.2982 20.3654)'%3e%3cstop offset='0.54' stop-color='white'/%3e%3cstop offset='0.58' stop-color='%23F9F4F7'/%3e%3cstop offset='0.66' stop-color='%23EAD9E3'/%3e%3cstop offset='0.75' stop-color='%23D1ADC3'/%3e%3cstop offset='0.87' stop-color='%23AE6F96'/%3e%3cstop offset='1' stop-color='%2382205C'/%3e%3c/radialGradient%3e%3cradialGradient id='paint10_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(57.0682 47.7699) scale(36.4838 31.8912)'%3e%3cstop stop-color='%23940066'/%3e%3cstop offset='1' stop-color='%23F74FA9'/%3e%3c/radialGradient%3e%3cradialGradient id='paint11_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(76.2906 45.2197) scale(25.8241 22.5734)'%3e%3cstop stop-color='%23FC51A7'/%3e%3cstop offset='1' stop-color='%23FF78D2'/%3e%3c/radialGradient%3e%3cradialGradient id='paint12_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(67.3539 50.8873) scale(49.6785 43.425)'%3e%3cstop stop-color='%23FFE906'/%3e%3cstop offset='0.09' stop-color='%23D6C405'/%3e%3cstop offset='0.22' stop-color='%239E9003'/%3e%3cstop offset='0.35' stop-color='%236E6402'/%3e%3cstop offset='0.49' stop-color='%23464001'/%3e%3cstop offset='0.62' stop-color='%23272400'/%3e%3cstop offset='0.74' stop-color='%23111000'/%3e%3cstop offset='0.86' stop-color='%23040400'/%3e%3cstop offset='0.97'/%3e%3c/radialGradient%3e%3cradialGradient id='paint13_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(66.6883 41.7129) scale(39.648 34.6571)'%3e%3cstop stop-color='%23FFE906'/%3e%3cstop offset='0.03' stop-color='%23F1DC05'/%3e%3cstop offset='0.18' stop-color='%23B2A304'/%3e%3cstop offset='0.34' stop-color='%237C7102'/%3e%3cstop offset='0.48' stop-color='%234F4801'/%3e%3cstop offset='0.62' stop-color='%232C2901'/%3e%3cstop offset='0.75' stop-color='%23141200'/%3e%3cstop offset='0.88' stop-color='%23050400'/%3e%3cstop offset='0.97'/%3e%3c/radialGradient%3e%3cradialGradient id='paint14_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(67.085 40.3555) scale(19.2678 16.8423)'%3e%3cstop stop-color='%23FFED00'/%3e%3cstop offset='0.13' stop-color='%23CDBE00'/%3e%3cstop offset='0.31' stop-color='%238F8500'/%3e%3cstop offset='0.48' stop-color='%235C5500'/%3e%3cstop offset='0.64' stop-color='%23343000'/%3e%3cstop offset='0.78' stop-color='%23171500'/%3e%3cstop offset='0.91' stop-color='%23060500'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3clinearGradient id='paint15_linear_4318_875' x1='49.299' y1='53.9162' x2='49.299' y2='10.3637' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFE906'/%3e%3cstop offset='0.04' stop-color='%23ECD805'/%3e%3cstop offset='0.19' stop-color='%23AE9F04'/%3e%3cstop offset='0.34' stop-color='%23796F02'/%3e%3cstop offset='0.48' stop-color='%234D4701'/%3e%3cstop offset='0.62' stop-color='%232B2801'/%3e%3cstop offset='0.75' stop-color='%23131200'/%3e%3cstop offset='0.87' stop-color='%23050400'/%3e%3cstop offset='0.97'/%3e%3c/linearGradient%3e%3clinearGradient id='paint16_linear_4318_875' x1='76.3994' y1='54.6894' x2='76.3994' y2='10.4195' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFE906'/%3e%3cstop offset='0.03' stop-color='%23F1DC05'/%3e%3cstop offset='0.18' stop-color='%23B2A304'/%3e%3cstop offset='0.34' stop-color='%237C7102'/%3e%3cstop offset='0.48' stop-color='%234F4801'/%3e%3cstop offset='0.62' stop-color='%232C2901'/%3e%3cstop offset='0.75' stop-color='%23141200'/%3e%3cstop offset='0.88' stop-color='%23050400'/%3e%3cstop offset='0.97'/%3e%3c/linearGradient%3e%3clinearGradient id='paint17_linear_4318_875' x1='61.0344' y1='56.9611' x2='61.0344' y2='10.5869' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFE906'/%3e%3cstop offset='0.07' stop-color='%23CFBD04'/%3e%3cstop offset='0.16' stop-color='%239F9103'/%3e%3cstop offset='0.25' stop-color='%23746A02'/%3e%3cstop offset='0.35' stop-color='%23504901'/%3e%3cstop offset='0.45' stop-color='%23332E01'/%3e%3cstop offset='0.56' stop-color='%231C1A00'/%3e%3cstop offset='0.67' stop-color='%230C0B00'/%3e%3cstop offset='0.8' stop-color='%23020200'/%3e%3cstop offset='0.97'/%3e%3c/linearGradient%3e%3clinearGradient id='paint18_linear_4318_875' x1='86.6948' y1='52.346' x2='86.6948' y2='10.2521' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFE906'/%3e%3cstop offset='0.09' stop-color='%23D6C405'/%3e%3cstop offset='0.22' stop-color='%239E9003'/%3e%3cstop offset='0.35' stop-color='%236E6402'/%3e%3cstop offset='0.49' stop-color='%23464001'/%3e%3cstop offset='0.62' stop-color='%23272400'/%3e%3cstop offset='0.74' stop-color='%23111000'/%3e%3cstop offset='0.86' stop-color='%23040400'/%3e%3cstop offset='0.97'/%3e%3c/linearGradient%3e%3clinearGradient id='paint19_linear_4318_875' x1='90.4699' y1='47.1496' x2='90.4699' y2='19.5945' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFE906'/%3e%3cstop offset='0.09' stop-color='%23D6C405'/%3e%3cstop offset='0.22' stop-color='%239E9003'/%3e%3cstop offset='0.35' stop-color='%236E6402'/%3e%3cstop offset='0.49' stop-color='%23464001'/%3e%3cstop offset='0.62' stop-color='%23272400'/%3e%3cstop offset='0.74' stop-color='%23111000'/%3e%3cstop offset='0.86' stop-color='%23040400'/%3e%3cstop offset='0.97'/%3e%3c/linearGradient%3e%3clinearGradient id='paint20_linear_4318_875' x1='43.7821' y1='45.38' x2='43.7821' y2='17.0995' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFE906'/%3e%3cstop offset='0.09' stop-color='%23D6C405'/%3e%3cstop offset='0.22' stop-color='%239E9003'/%3e%3cstop offset='0.35' stop-color='%236E6402'/%3e%3cstop offset='0.49' stop-color='%23464001'/%3e%3cstop offset='0.62' stop-color='%23272400'/%3e%3cstop offset='0.74' stop-color='%23111000'/%3e%3cstop offset='0.86' stop-color='%23040400'/%3e%3cstop offset='0.97'/%3e%3c/linearGradient%3e%3cradialGradient id='paint21_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(54.2466 28.2653) rotate(-8.19011) scale(3.77245 20.1749)'%3e%3cstop stop-color='%23FFCC00'/%3e%3cstop offset='0.08' stop-color='%23D9AD00'/%3e%3cstop offset='0.22' stop-color='%23A08000'/%3e%3cstop offset='0.36' stop-color='%236F5900'/%3e%3cstop offset='0.5' stop-color='%23473900'/%3e%3cstop offset='0.63' stop-color='%23282000'/%3e%3cstop offset='0.76' stop-color='%23110E00'/%3e%3cstop offset='0.89' stop-color='%23040300'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint22_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(80.1034 34.3325) rotate(8.19011) scale(3.24067 19.0412)'%3e%3cstop stop-color='%23FFCC00'/%3e%3cstop offset='0.08' stop-color='%23D9AD00'/%3e%3cstop offset='0.22' stop-color='%23A08000'/%3e%3cstop offset='0.36' stop-color='%236F5900'/%3e%3cstop offset='0.5' stop-color='%23473900'/%3e%3cstop offset='0.63' stop-color='%23282000'/%3e%3cstop offset='0.76' stop-color='%23110E00'/%3e%3cstop offset='0.89' stop-color='%23040300'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint23_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(49.8976 33.1073) rotate(-14.4453) scale(2.24905 17.6326)'%3e%3cstop stop-color='%23FFCC00'/%3e%3cstop offset='0.08' stop-color='%23D9AD00'/%3e%3cstop offset='0.22' stop-color='%23A08000'/%3e%3cstop offset='0.36' stop-color='%236F5900'/%3e%3cstop offset='0.5' stop-color='%23473900'/%3e%3cstop offset='0.63' stop-color='%23282000'/%3e%3cstop offset='0.76' stop-color='%23110E00'/%3e%3cstop offset='0.89' stop-color='%23040300'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint24_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(74.6701 36.5011) rotate(5.17037) scale(2.26771 18.6799)'%3e%3cstop stop-color='%23FFCC00'/%3e%3cstop offset='0.08' stop-color='%23D9AD00'/%3e%3cstop offset='0.22' stop-color='%23A08000'/%3e%3cstop offset='0.36' stop-color='%236F5900'/%3e%3cstop offset='0.5' stop-color='%23473900'/%3e%3cstop offset='0.63' stop-color='%23282000'/%3e%3cstop offset='0.76' stop-color='%23110E00'/%3e%3cstop offset='0.89' stop-color='%23040300'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint25_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(61.9057 39.5629) rotate(53.1494) scale(1.28315 1.34338)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint26_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(68.4979 38.5995) rotate(53.1494) scale(0.974862 1.02062)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint27_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(59.6489 26.4282) rotate(53.1494) scale(0.799887 0.83743)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint28_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(72.1022 30.3316) rotate(53.1494) scale(0.974862 1.02062)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint29_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(66.7947 26.0418) rotate(53.1494) scale(0.941534 0.985725)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint30_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(65.4996 34.9037) rotate(53.1494) scale(2.27468 2.38144)'%3e%3cstop offset='0.03' stop-color='%23FF4A84'/%3e%3cstop offset='0.16' stop-color='%23FB4782'/%3e%3cstop offset='0.28' stop-color='%23F13F7C'/%3e%3cstop offset='0.38' stop-color='%23DF3373'/%3e%3cstop offset='0.48' stop-color='%23C62165'/%3e%3cstop offset='0.58' stop-color='%23A60A54'/%3e%3cstop offset='0.62' stop-color='%2399004D'/%3e%3cstop offset='0.64' stop-color='%238A0045'/%3e%3cstop offset='0.71' stop-color='%2359002D'/%3e%3cstop offset='0.78' stop-color='%23320019'/%3e%3cstop offset='0.85' stop-color='%2316000B'/%3e%3cstop offset='0.91' stop-color='%23050003'/%3e%3cstop offset='0.95'/%3e%3c/radialGradient%3e%3cradialGradient id='paint31_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(72.5525 34.1606) rotate(53.1494) scale(1.6831 1.76209)'%3e%3cstop offset='0.03' stop-color='%23FF4A84'/%3e%3cstop offset='0.16' stop-color='%23FB4782'/%3e%3cstop offset='0.28' stop-color='%23F13F7C'/%3e%3cstop offset='0.38' stop-color='%23DF3373'/%3e%3cstop offset='0.48' stop-color='%23C62165'/%3e%3cstop offset='0.58' stop-color='%23A60A54'/%3e%3cstop offset='0.62' stop-color='%2399004D'/%3e%3cstop offset='0.64' stop-color='%238A0045'/%3e%3cstop offset='0.71' stop-color='%2359002D'/%3e%3cstop offset='0.78' stop-color='%23320019'/%3e%3cstop offset='0.85' stop-color='%2316000B'/%3e%3cstop offset='0.91' stop-color='%23050003'/%3e%3cstop offset='0.95'/%3e%3c/radialGradient%3e%3cradialGradient id='paint32_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(76.9877 26.8561) rotate(53.1494) scale(1.2165 1.27359)'%3e%3cstop offset='0.03' stop-color='%23FF4A84'/%3e%3cstop offset='0.16' stop-color='%23FB4782'/%3e%3cstop offset='0.28' stop-color='%23F13F7C'/%3e%3cstop offset='0.38' stop-color='%23DF3373'/%3e%3cstop offset='0.48' stop-color='%23C62165'/%3e%3cstop offset='0.58' stop-color='%23A60A54'/%3e%3cstop offset='0.62' stop-color='%2399004D'/%3e%3cstop offset='0.64' stop-color='%238A0045'/%3e%3cstop offset='0.71' stop-color='%2359002D'/%3e%3cstop offset='0.78' stop-color='%23320019'/%3e%3cstop offset='0.85' stop-color='%2316000B'/%3e%3cstop offset='0.91' stop-color='%23050003'/%3e%3cstop offset='0.95'/%3e%3c/radialGradient%3e%3cradialGradient id='paint33_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(51.8031 34.1989) rotate(53.1494) scale(2.00805 2.1023)'%3e%3cstop offset='0.03' stop-color='%23FF4A84'/%3e%3cstop offset='0.16' stop-color='%23FB4782'/%3e%3cstop offset='0.28' stop-color='%23F13F7C'/%3e%3cstop offset='0.38' stop-color='%23DF3373'/%3e%3cstop offset='0.48' stop-color='%23C62165'/%3e%3cstop offset='0.58' stop-color='%23A60A54'/%3e%3cstop offset='0.62' stop-color='%2399004D'/%3e%3cstop offset='0.64' stop-color='%238A0045'/%3e%3cstop offset='0.71' stop-color='%2359002D'/%3e%3cstop offset='0.78' stop-color='%23320019'/%3e%3cstop offset='0.85' stop-color='%2316000B'/%3e%3cstop offset='0.91' stop-color='%23050003'/%3e%3cstop offset='0.95'/%3e%3c/radialGradient%3e%3cradialGradient id='paint34_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(76.8915 33.0645) rotate(-126.851) scale(1.24149 1.29976)'%3e%3cstop offset='0.03' stop-color='%23FF4A84'/%3e%3cstop offset='0.16' stop-color='%23FB4782'/%3e%3cstop offset='0.28' stop-color='%23F13F7C'/%3e%3cstop offset='0.38' stop-color='%23DF3373'/%3e%3cstop offset='0.48' stop-color='%23C62165'/%3e%3cstop offset='0.58' stop-color='%23A60A54'/%3e%3cstop offset='0.62' stop-color='%2399004D'/%3e%3cstop offset='0.64' stop-color='%238A0045'/%3e%3cstop offset='0.71' stop-color='%2359002D'/%3e%3cstop offset='0.78' stop-color='%23320019'/%3e%3cstop offset='0.85' stop-color='%2316000B'/%3e%3cstop offset='0.91' stop-color='%23050003'/%3e%3cstop offset='0.95'/%3e%3c/radialGradient%3e%3cradialGradient id='paint35_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(65.2162 33.2747) rotate(53.1494) scale(0.874877 0.91594)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint36_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(68.5026 30.9249) rotate(53.1494) scale(1.28315 1.34338)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint37_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(81.9563 36.0469) rotate(53.1494) scale(0.874876 0.915939)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint38_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(62.6458 29.4958) rotate(53.1494) scale(1.55811 1.63124)'%3e%3cstop offset='0.03' stop-color='%23FF9100'/%3e%3cstop offset='0.22' stop-color='%23FF8D00'/%3e%3cstop offset='0.38' stop-color='%23FF8300'/%3e%3cstop offset='0.53' stop-color='%23FF7100'/%3e%3cstop offset='0.67' stop-color='%23FF5800'/%3e%3cstop offset='0.8' stop-color='%239C2900'/%3e%3cstop offset='0.81' stop-color='%23611E00'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint39_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(67.453 38.6431) rotate(53.1494) scale(0.391612 0.409992)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint40_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(74.263 37.1271) rotate(53.1494) scale(0.391612 0.409992)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint41_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(76.9857 34.1333) rotate(-126.851) scale(0.54159 0.56701)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint42_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(67.9802 29.9671) rotate(53.1494) scale(0.391612 0.409992)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint43_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(65.094 23.0388) rotate(-126.851) scale(0.391612 0.409992)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint44_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(56.6221 31.6117) rotate(53.1494) scale(0.391611 0.409992)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint45_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(67.9922 18.7531) rotate(53.1494) scale(0.741562 0.776367)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint46_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(54.8177 27.6022) rotate(53.1494) scale(1.26649 1.32593)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint47_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(55.1785 28.7959) rotate(53.1494) scale(0.84988 0.88977)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint48_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(71.7474 24.3599) rotate(53.1494) scale(0.666572 0.697858)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint49_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(77.697 30.2908) rotate(53.1494) scale(0.449936 0.471054)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint50_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(53.4825 33.3708) rotate(53.1494) scale(1.22483 1.28231)'%3e%3cstop offset='0.03' stop-color='%23FF4A84'/%3e%3cstop offset='0.16' stop-color='%23FB4782'/%3e%3cstop offset='0.28' stop-color='%23F13F7C'/%3e%3cstop offset='0.38' stop-color='%23DF3373'/%3e%3cstop offset='0.48' stop-color='%23C62165'/%3e%3cstop offset='0.58' stop-color='%23A60A54'/%3e%3cstop offset='0.62' stop-color='%2399004D'/%3e%3cstop offset='0.64' stop-color='%238A0045'/%3e%3cstop offset='0.71' stop-color='%2359002D'/%3e%3cstop offset='0.78' stop-color='%23320019'/%3e%3cstop offset='0.85' stop-color='%2316000B'/%3e%3cstop offset='0.91' stop-color='%23050003'/%3e%3cstop offset='0.95'/%3e%3c/radialGradient%3e%3cradialGradient id='paint51_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(63.8541 29.537) rotate(53.1494) scale(0.65824 0.689135)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint52_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(71.1032 34.9914) rotate(53.1494) scale(0.77489 0.81126)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint53_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(69.683 28.5431) rotate(53.1494) scale(0.591583 0.61935)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint54_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(82.6323 35.4216) rotate(53.1494) scale(0.449936 0.471054)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint55_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(57.7049 32.4011) rotate(53.1494) scale(2.00805 2.1023)'%3e%3cstop offset='0.03' stop-color='%23FF4A84'/%3e%3cstop offset='0.16' stop-color='%23FB4782'/%3e%3cstop offset='0.28' stop-color='%23F13F7C'/%3e%3cstop offset='0.38' stop-color='%23DF3373'/%3e%3cstop offset='0.48' stop-color='%23C62165'/%3e%3cstop offset='0.58' stop-color='%23A60A54'/%3e%3cstop offset='0.62' stop-color='%2399004D'/%3e%3cstop offset='0.64' stop-color='%238A0045'/%3e%3cstop offset='0.71' stop-color='%2359002D'/%3e%3cstop offset='0.78' stop-color='%23320019'/%3e%3cstop offset='0.85' stop-color='%2316000B'/%3e%3cstop offset='0.91' stop-color='%23050003'/%3e%3cstop offset='0.95'/%3e%3c/radialGradient%3e%3cradialGradient id='paint56_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(58.531 30.8422) rotate(53.1494) scale(0.73323 0.767644)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3clinearGradient id='paint57_linear_4318_875' x1='54.1686' y1='56.7614' x2='54.1686' y2='40.7002' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23EBB6CA'/%3e%3cstop offset='1' stop-color='%236E1259'/%3e%3c/linearGradient%3e%3cradialGradient id='paint58_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(37.9646 27.3881) scale(41.2438 36.052)'%3e%3cstop stop-color='%23FF69CD'/%3e%3cstop offset='1' stop-color='%23ED288B'/%3e%3c/radialGradient%3e%3cradialGradient id='paint59_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(60.9069 28.8712) scale(17.7541 15.5192)'%3e%3cstop stop-color='%23FF78D2'/%3e%3cstop offset='1' stop-color='%23FC51A7'/%3e%3c/radialGradient%3e%3cradialGradient id='paint60_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(31.6726 31.4448) scale(41.0705 35.9006)'%3e%3cstop stop-color='%23F74FA9'/%3e%3cstop offset='1' stop-color='%23940066'/%3e%3c/radialGradient%3e%3cradialGradient id='paint61_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(44.2016 29.1901) scale(29.198 25.5226)'%3e%3cstop stop-color='white'/%3e%3cstop offset='1' stop-color='%23FFBAF6'/%3e%3c/radialGradient%3e%3cradialGradient id='paint62_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(24.3048 34.8643) scale(38.2984 33.4774)'%3e%3cstop stop-color='white'/%3e%3cstop offset='1' stop-color='%23FFBAF6'/%3e%3c/radialGradient%3e%3cradialGradient id='paint63_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(28.6728 37.5115) scale(31.9245 27.9058)'%3e%3cstop/%3e%3cstop offset='1' stop-color='%23FFD9E2'/%3e%3c/radialGradient%3e%3cradialGradient id='paint64_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(46.5543 44.3513) scale(34.8425 30.4565)'%3e%3cstop stop-color='%238A1F1F'/%3e%3cstop offset='1' stop-color='%234A2121'/%3e%3c/radialGradient%3e%3cradialGradient id='paint65_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(39.1456 21.4195) scale(11.7989 11.7244)'%3e%3cstop stop-color='%23FFA200'/%3e%3cstop offset='0.07' stop-color='%23E18F00'/%3e%3cstop offset='0.21' stop-color='%23A66900'/%3e%3cstop offset='0.36' stop-color='%23734900'/%3e%3cstop offset='0.5' stop-color='%234A2F00'/%3e%3cstop offset='0.64' stop-color='%23291A00'/%3e%3cstop offset='0.77' stop-color='%23120B00'/%3e%3cstop offset='0.89' stop-color='%23040300'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint66_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(99.0385 9.81738) scale(9.72548 9.66406)'%3e%3cstop stop-color='%23FFA200'/%3e%3cstop offset='0.07' stop-color='%23E18F00'/%3e%3cstop offset='0.21' stop-color='%23A66900'/%3e%3cstop offset='0.36' stop-color='%23734900'/%3e%3cstop offset='0.5' stop-color='%234A2F00'/%3e%3cstop offset='0.64' stop-color='%23291A00'/%3e%3cstop offset='0.77' stop-color='%23120B00'/%3e%3cstop offset='0.89' stop-color='%23040300'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint67_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(68.5677 97.0438) scale(96.4414 95.8325)'%3e%3cstop offset='0.78' stop-color='%23FCEA10'/%3e%3cstop offset='1' stop-color='%23FF6633'/%3e%3c/radialGradient%3e%3cradialGradient id='paint68_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(63.6762 124.556) scale(122.113 121.341)'%3e%3cstop offset='0.85' stop-color='%23FF3C00'/%3e%3cstop offset='1' stop-color='%23B5008E'/%3e%3c/radialGradient%3e%3cradialGradient id='paint69_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(65.7724 168.381) scale(165.975 164.927)'%3e%3cstop offset='0.91'/%3e%3cstop offset='0.92' stop-color='%23060003'/%3e%3cstop offset='0.93' stop-color='%2318030F'/%3e%3cstop offset='0.94' stop-color='%23360721'/%3e%3cstop offset='0.96' stop-color='%23600D3A'/%3e%3cstop offset='0.97' stop-color='%2395155B'/%3e%3cstop offset='0.99' stop-color='%23D51E82'/%3e%3cstop offset='1' stop-color='%23FF249C'/%3e%3c/radialGradient%3e%3cradialGradient id='paint70_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(46.9976 3.62496) scale(11.1917 11.1211)'%3e%3cstop stop-color='%23FFD621'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint71_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(94.6167 3.6587) scale(12.0738 11.9976)'%3e%3cstop stop-color='%23FFD621'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint72_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(61.3509 2.24716) scale(11.0772 11.0072)'%3e%3cstop stop-color='%23FFD621'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint73_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(69.484 2.8615) scale(9.17561 9.11769)'%3e%3cstop stop-color='%23FFD621'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint74_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(77.537 3.02141) scale(9.27873 9.22013)'%3e%3cstop stop-color='%23FFD621'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint75_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(85.2009 3.23817) scale(9.25581 9.19736)'%3e%3cstop stop-color='%23FFD621'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint76_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(32.5068 7.97263) scale(9.72548 9.66406)'%3e%3cstop stop-color='%23FFD621'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint77_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(34.2362 10.2039) scale(4.57063 4.54177)'%3e%3cstop stop-color='%23E94E1B'/%3e%3cstop offset='0.02' stop-color='%23E14B1A'/%3e%3cstop offset='0.17' stop-color='%23A63713'/%3e%3cstop offset='0.32' stop-color='%2373260D'/%3e%3cstop offset='0.47' stop-color='%234A1808'/%3e%3cstop offset='0.62' stop-color='%23290D04'/%3e%3cstop offset='0.76' stop-color='%23120602'/%3e%3cstop offset='0.89' stop-color='%23040100'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint78_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(50.0217 5.95862) scale(3.64276 3.61976)'%3e%3cstop stop-color='%23E94E1B'/%3e%3cstop offset='0.02' stop-color='%23E14B1A'/%3e%3cstop offset='0.17' stop-color='%23A63713'/%3e%3cstop offset='0.32' stop-color='%2373260D'/%3e%3cstop offset='0.47' stop-color='%234A1808'/%3e%3cstop offset='0.62' stop-color='%23290D04'/%3e%3cstop offset='0.76' stop-color='%23120602'/%3e%3cstop offset='0.89' stop-color='%23040100'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint79_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(63.0004 4.71822) scale(2.93253 2.91402)'%3e%3cstop stop-color='%23E94E1B'/%3e%3cstop offset='0.02' stop-color='%23E14B1A'/%3e%3cstop offset='0.17' stop-color='%23A63713'/%3e%3cstop offset='0.32' stop-color='%2373260D'/%3e%3cstop offset='0.47' stop-color='%234A1808'/%3e%3cstop offset='0.62' stop-color='%23290D04'/%3e%3cstop offset='0.76' stop-color='%23120602'/%3e%3cstop offset='0.89' stop-color='%23040100'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint80_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(85.7162 5.66255) scale(2.93253 2.91402)'%3e%3cstop stop-color='%23E94E1B'/%3e%3cstop offset='0.02' stop-color='%23E14B1A'/%3e%3cstop offset='0.17' stop-color='%23A63713'/%3e%3cstop offset='0.32' stop-color='%2373260D'/%3e%3cstop offset='0.47' stop-color='%234A1808'/%3e%3cstop offset='0.62' stop-color='%23290D04'/%3e%3cstop offset='0.76' stop-color='%23120602'/%3e%3cstop offset='0.89' stop-color='%23040100'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint81_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(95.2926 8.0184) scale(4.13533 4.10922)'%3e%3cstop stop-color='%23E94E1B'/%3e%3cstop offset='0.02' stop-color='%23E14B1A'/%3e%3cstop offset='0.17' stop-color='%23A63713'/%3e%3cstop offset='0.32' stop-color='%2373260D'/%3e%3cstop offset='0.47' stop-color='%234A1808'/%3e%3cstop offset='0.62' stop-color='%23290D04'/%3e%3cstop offset='0.76' stop-color='%23120602'/%3e%3cstop offset='0.89' stop-color='%23040100'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nexport function __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nexport function __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nexport function __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nexport function __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nexport function __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nexport function __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nexport function __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\nexport default {\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n};\r\n","import { onMount } from \"svelte\"\n\nexport const _postMessage = (message) => window.postMessage(message, window.location.href);\n\nconst composeMessageHandler = (listeners) => {\n const handler = e => {\n Object.keys(listeners).map(key => {\n if (e.data && e.data.type == key) {\n const {type, ...restData} = e.data\n listeners[key](restData)\n }\n })\n }\n\n return handler\n}\n\nexport const onMountMessageLifeCycle = (messageRegisters) => {\n \n const messageHandler = composeMessageHandler(messageRegisters)\n\n onMount(() => {\n window.addEventListener('message', messageHandler);\n return () => {\n window.removeEventListener('message', messageHandler);\n }\n })\n}","import { noop, safe_not_equal, subscribe, run_all, is_function } from '../internal/index.mjs';\nexport { get_store_value as get } from '../internal/index.mjs';\n\nconst subscriber_queue = [];\n/**\n * Creates a `Readable` store that allows reading by subscription.\n * @param value initial value\n * @param {StartStopNotifier} [start]\n */\nfunction readable(value, start) {\n return {\n subscribe: writable(value, start).subscribe\n };\n}\n/**\n * Create a `Writable` store that allows both updating and reading by subscription.\n * @param {*=}value initial value\n * @param {StartStopNotifier=} start\n */\nfunction writable(value, start = noop) {\n let stop;\n const subscribers = new Set();\n function set(new_value) {\n if (safe_not_equal(value, new_value)) {\n value = new_value;\n if (stop) { // store is ready\n const run_queue = !subscriber_queue.length;\n for (const subscriber of subscribers) {\n subscriber[1]();\n subscriber_queue.push(subscriber, value);\n }\n if (run_queue) {\n for (let i = 0; i < subscriber_queue.length; i += 2) {\n subscriber_queue[i][0](subscriber_queue[i + 1]);\n }\n subscriber_queue.length = 0;\n }\n }\n }\n }\n function update(fn) {\n set(fn(value));\n }\n function subscribe(run, invalidate = noop) {\n const subscriber = [run, invalidate];\n subscribers.add(subscriber);\n if (subscribers.size === 1) {\n stop = start(set) || noop;\n }\n run(value);\n return () => {\n subscribers.delete(subscriber);\n if (subscribers.size === 0 && stop) {\n stop();\n stop = null;\n }\n };\n }\n return { set, update, subscribe };\n}\nfunction derived(stores, fn, initial_value) {\n const single = !Array.isArray(stores);\n const stores_array = single\n ? [stores]\n : stores;\n const auto = fn.length < 2;\n return readable(initial_value, (set) => {\n let started = false;\n const values = [];\n let pending = 0;\n let cleanup = noop;\n const sync = () => {\n if (pending) {\n return;\n }\n cleanup();\n const result = fn(single ? values[0] : values, set);\n if (auto) {\n set(result);\n }\n else {\n cleanup = is_function(result) ? result : noop;\n }\n };\n const unsubscribers = stores_array.map((store, i) => subscribe(store, (value) => {\n values[i] = value;\n pending &= ~(1 << i);\n if (started) {\n sync();\n }\n }, () => {\n pending |= (1 << i);\n }));\n started = true;\n sync();\n return function stop() {\n run_all(unsubscribers);\n cleanup();\n // We need to set this to false because callbacks can still happen despite having unsubscribed:\n // Callbacks might already be placed in the queue which doesn't know it should no longer\n // invoke this derived store.\n started = false;\n };\n });\n}\n/**\n * Takes a store and returns a new one derived from the old one that is readable.\n *\n * @param store - store to make readonly\n */\nfunction readonly(store) {\n return {\n subscribe: store.subscribe.bind(store)\n };\n}\n\nexport { derived, readable, readonly, writable };\n","'use strict';\n\nvar isMergeableObject = function isMergeableObject(value) {\n\treturn isNonNullObject(value)\n\t\t&& !isSpecial(value)\n};\n\nfunction isNonNullObject(value) {\n\treturn !!value && typeof value === 'object'\n}\n\nfunction isSpecial(value) {\n\tvar stringValue = Object.prototype.toString.call(value);\n\n\treturn stringValue === '[object RegExp]'\n\t\t|| stringValue === '[object Date]'\n\t\t|| isReactElement(value)\n}\n\n// see https://github.com/facebook/react/blob/b5ac963fb791d1298e7f396236383bc955f916c1/src/isomorphic/classic/element/ReactElement.js#L21-L25\nvar canUseSymbol = typeof Symbol === 'function' && Symbol.for;\nvar REACT_ELEMENT_TYPE = canUseSymbol ? Symbol.for('react.element') : 0xeac7;\n\nfunction isReactElement(value) {\n\treturn value.$$typeof === REACT_ELEMENT_TYPE\n}\n\nfunction emptyTarget(val) {\n\treturn Array.isArray(val) ? [] : {}\n}\n\nfunction cloneUnlessOtherwiseSpecified(value, options) {\n\treturn (options.clone !== false && options.isMergeableObject(value))\n\t\t? deepmerge(emptyTarget(value), value, options)\n\t\t: value\n}\n\nfunction defaultArrayMerge(target, source, options) {\n\treturn target.concat(source).map(function(element) {\n\t\treturn cloneUnlessOtherwiseSpecified(element, options)\n\t})\n}\n\nfunction getMergeFunction(key, options) {\n\tif (!options.customMerge) {\n\t\treturn deepmerge\n\t}\n\tvar customMerge = options.customMerge(key);\n\treturn typeof customMerge === 'function' ? customMerge : deepmerge\n}\n\nfunction getEnumerableOwnPropertySymbols(target) {\n\treturn Object.getOwnPropertySymbols\n\t\t? Object.getOwnPropertySymbols(target).filter(function(symbol) {\n\t\t\treturn Object.propertyIsEnumerable.call(target, symbol)\n\t\t})\n\t\t: []\n}\n\nfunction getKeys(target) {\n\treturn Object.keys(target).concat(getEnumerableOwnPropertySymbols(target))\n}\n\nfunction propertyIsOnObject(object, property) {\n\ttry {\n\t\treturn property in object\n\t} catch(_) {\n\t\treturn false\n\t}\n}\n\n// Protects from prototype poisoning and unexpected merging up the prototype chain.\nfunction propertyIsUnsafe(target, key) {\n\treturn propertyIsOnObject(target, key) // Properties are safe to merge if they don't exist in the target yet,\n\t\t&& !(Object.hasOwnProperty.call(target, key) // unsafe if they exist up the prototype chain,\n\t\t\t&& Object.propertyIsEnumerable.call(target, key)) // and also unsafe if they're nonenumerable.\n}\n\nfunction mergeObject(target, source, options) {\n\tvar destination = {};\n\tif (options.isMergeableObject(target)) {\n\t\tgetKeys(target).forEach(function(key) {\n\t\t\tdestination[key] = cloneUnlessOtherwiseSpecified(target[key], options);\n\t\t});\n\t}\n\tgetKeys(source).forEach(function(key) {\n\t\tif (propertyIsUnsafe(target, key)) {\n\t\t\treturn\n\t\t}\n\n\t\tif (propertyIsOnObject(target, key) && options.isMergeableObject(source[key])) {\n\t\t\tdestination[key] = getMergeFunction(key, options)(target[key], source[key], options);\n\t\t} else {\n\t\t\tdestination[key] = cloneUnlessOtherwiseSpecified(source[key], options);\n\t\t}\n\t});\n\treturn destination\n}\n\nfunction deepmerge(target, source, options) {\n\toptions = options || {};\n\toptions.arrayMerge = options.arrayMerge || defaultArrayMerge;\n\toptions.isMergeableObject = options.isMergeableObject || isMergeableObject;\n\t// cloneUnlessOtherwiseSpecified is added to `options` so that custom arrayMerge()\n\t// implementations can use it. The caller may not replace it.\n\toptions.cloneUnlessOtherwiseSpecified = cloneUnlessOtherwiseSpecified;\n\n\tvar sourceIsArray = Array.isArray(source);\n\tvar targetIsArray = Array.isArray(target);\n\tvar sourceAndTargetTypesMatch = sourceIsArray === targetIsArray;\n\n\tif (!sourceAndTargetTypesMatch) {\n\t\treturn cloneUnlessOtherwiseSpecified(source, options)\n\t} else if (sourceIsArray) {\n\t\treturn options.arrayMerge(target, source, options)\n\t} else {\n\t\treturn mergeObject(target, source, options)\n\t}\n}\n\ndeepmerge.all = function deepmergeAll(array, options) {\n\tif (!Array.isArray(array)) {\n\t\tthrow new Error('first argument should be an array')\n\t}\n\n\treturn array.reduce(function(prev, next) {\n\t\treturn deepmerge(prev, next, options)\n\t}, {})\n};\n\nvar deepmerge_1 = deepmerge;\n\nmodule.exports = deepmerge_1;\n","export var ErrorKind;\n(function (ErrorKind) {\n /** Argument is unclosed (e.g. `{0`) */\n ErrorKind[ErrorKind[\"EXPECT_ARGUMENT_CLOSING_BRACE\"] = 1] = \"EXPECT_ARGUMENT_CLOSING_BRACE\";\n /** Argument is empty (e.g. `{}`). */\n ErrorKind[ErrorKind[\"EMPTY_ARGUMENT\"] = 2] = \"EMPTY_ARGUMENT\";\n /** Argument is malformed (e.g. `{foo!}``) */\n ErrorKind[ErrorKind[\"MALFORMED_ARGUMENT\"] = 3] = \"MALFORMED_ARGUMENT\";\n /** Expect an argument type (e.g. `{foo,}`) */\n ErrorKind[ErrorKind[\"EXPECT_ARGUMENT_TYPE\"] = 4] = \"EXPECT_ARGUMENT_TYPE\";\n /** Unsupported argument type (e.g. `{foo,foo}`) */\n ErrorKind[ErrorKind[\"INVALID_ARGUMENT_TYPE\"] = 5] = \"INVALID_ARGUMENT_TYPE\";\n /** Expect an argument style (e.g. `{foo, number, }`) */\n ErrorKind[ErrorKind[\"EXPECT_ARGUMENT_STYLE\"] = 6] = \"EXPECT_ARGUMENT_STYLE\";\n /** The number skeleton is invalid. */\n ErrorKind[ErrorKind[\"INVALID_NUMBER_SKELETON\"] = 7] = \"INVALID_NUMBER_SKELETON\";\n /** The date time skeleton is invalid. */\n ErrorKind[ErrorKind[\"INVALID_DATE_TIME_SKELETON\"] = 8] = \"INVALID_DATE_TIME_SKELETON\";\n /** Exepct a number skeleton following the `::` (e.g. `{foo, number, ::}`) */\n ErrorKind[ErrorKind[\"EXPECT_NUMBER_SKELETON\"] = 9] = \"EXPECT_NUMBER_SKELETON\";\n /** Exepct a date time skeleton following the `::` (e.g. `{foo, date, ::}`) */\n ErrorKind[ErrorKind[\"EXPECT_DATE_TIME_SKELETON\"] = 10] = \"EXPECT_DATE_TIME_SKELETON\";\n /** Unmatched apostrophes in the argument style (e.g. `{foo, number, 'test`) */\n ErrorKind[ErrorKind[\"UNCLOSED_QUOTE_IN_ARGUMENT_STYLE\"] = 11] = \"UNCLOSED_QUOTE_IN_ARGUMENT_STYLE\";\n /** Missing select argument options (e.g. `{foo, select}`) */\n ErrorKind[ErrorKind[\"EXPECT_SELECT_ARGUMENT_OPTIONS\"] = 12] = \"EXPECT_SELECT_ARGUMENT_OPTIONS\";\n /** Expecting an offset value in `plural` or `selectordinal` argument (e.g `{foo, plural, offset}`) */\n ErrorKind[ErrorKind[\"EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE\"] = 13] = \"EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE\";\n /** Offset value in `plural` or `selectordinal` is invalid (e.g. `{foo, plural, offset: x}`) */\n ErrorKind[ErrorKind[\"INVALID_PLURAL_ARGUMENT_OFFSET_VALUE\"] = 14] = \"INVALID_PLURAL_ARGUMENT_OFFSET_VALUE\";\n /** Expecting a selector in `select` argument (e.g `{foo, select}`) */\n ErrorKind[ErrorKind[\"EXPECT_SELECT_ARGUMENT_SELECTOR\"] = 15] = \"EXPECT_SELECT_ARGUMENT_SELECTOR\";\n /** Expecting a selector in `plural` or `selectordinal` argument (e.g `{foo, plural}`) */\n ErrorKind[ErrorKind[\"EXPECT_PLURAL_ARGUMENT_SELECTOR\"] = 16] = \"EXPECT_PLURAL_ARGUMENT_SELECTOR\";\n /** Expecting a message fragment after the `select` selector (e.g. `{foo, select, apple}`) */\n ErrorKind[ErrorKind[\"EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT\"] = 17] = \"EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT\";\n /**\n * Expecting a message fragment after the `plural` or `selectordinal` selector\n * (e.g. `{foo, plural, one}`)\n */\n ErrorKind[ErrorKind[\"EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT\"] = 18] = \"EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT\";\n /** Selector in `plural` or `selectordinal` is malformed (e.g. `{foo, plural, =x {#}}`) */\n ErrorKind[ErrorKind[\"INVALID_PLURAL_ARGUMENT_SELECTOR\"] = 19] = \"INVALID_PLURAL_ARGUMENT_SELECTOR\";\n /**\n * Duplicate selectors in `plural` or `selectordinal` argument.\n * (e.g. {foo, plural, one {#} one {#}})\n */\n ErrorKind[ErrorKind[\"DUPLICATE_PLURAL_ARGUMENT_SELECTOR\"] = 20] = \"DUPLICATE_PLURAL_ARGUMENT_SELECTOR\";\n /** Duplicate selectors in `select` argument.\n * (e.g. {foo, select, apple {apple} apple {apple}})\n */\n ErrorKind[ErrorKind[\"DUPLICATE_SELECT_ARGUMENT_SELECTOR\"] = 21] = \"DUPLICATE_SELECT_ARGUMENT_SELECTOR\";\n /** Plural or select argument option must have `other` clause. */\n ErrorKind[ErrorKind[\"MISSING_OTHER_CLAUSE\"] = 22] = \"MISSING_OTHER_CLAUSE\";\n /** The tag is malformed. (e.g. `<bold!>foo</bold!>) */\n ErrorKind[ErrorKind[\"INVALID_TAG\"] = 23] = \"INVALID_TAG\";\n /** The tag name is invalid. (e.g. `<123>foo</123>`) */\n ErrorKind[ErrorKind[\"INVALID_TAG_NAME\"] = 25] = \"INVALID_TAG_NAME\";\n /** The closing tag does not match the opening tag. (e.g. `<bold>foo</italic>`) */\n ErrorKind[ErrorKind[\"UNMATCHED_CLOSING_TAG\"] = 26] = \"UNMATCHED_CLOSING_TAG\";\n /** The opening tag has unmatched closing tag. (e.g. `<bold>foo`) */\n ErrorKind[ErrorKind[\"UNCLOSED_TAG\"] = 27] = \"UNCLOSED_TAG\";\n})(ErrorKind || (ErrorKind = {}));\n","export var TYPE;\n(function (TYPE) {\n /**\n * Raw text\n */\n TYPE[TYPE[\"literal\"] = 0] = \"literal\";\n /**\n * Variable w/o any format, e.g `var` in `this is a {var}`\n */\n TYPE[TYPE[\"argument\"] = 1] = \"argument\";\n /**\n * Variable w/ number format\n */\n TYPE[TYPE[\"number\"] = 2] = \"number\";\n /**\n * Variable w/ date format\n */\n TYPE[TYPE[\"date\"] = 3] = \"date\";\n /**\n * Variable w/ time format\n */\n TYPE[TYPE[\"time\"] = 4] = \"time\";\n /**\n * Variable w/ select format\n */\n TYPE[TYPE[\"select\"] = 5] = \"select\";\n /**\n * Variable w/ plural format\n */\n TYPE[TYPE[\"plural\"] = 6] = \"plural\";\n /**\n * Only possible within plural argument.\n * This is the `#` symbol that will be substituted with the count.\n */\n TYPE[TYPE[\"pound\"] = 7] = \"pound\";\n /**\n * XML-like tag\n */\n TYPE[TYPE[\"tag\"] = 8] = \"tag\";\n})(TYPE || (TYPE = {}));\nexport var SKELETON_TYPE;\n(function (SKELETON_TYPE) {\n SKELETON_TYPE[SKELETON_TYPE[\"number\"] = 0] = \"number\";\n SKELETON_TYPE[SKELETON_TYPE[\"dateTime\"] = 1] = \"dateTime\";\n})(SKELETON_TYPE || (SKELETON_TYPE = {}));\n/**\n * Type Guards\n */\nexport function isLiteralElement(el) {\n return el.type === TYPE.literal;\n}\nexport function isArgumentElement(el) {\n return el.type === TYPE.argument;\n}\nexport function isNumberElement(el) {\n return el.type === TYPE.number;\n}\nexport function isDateElement(el) {\n return el.type === TYPE.date;\n}\nexport function isTimeElement(el) {\n return el.type === TYPE.time;\n}\nexport function isSelectElement(el) {\n return el.type === TYPE.select;\n}\nexport function isPluralElement(el) {\n return el.type === TYPE.plural;\n}\nexport function isPoundElement(el) {\n return el.type === TYPE.pound;\n}\nexport function isTagElement(el) {\n return el.type === TYPE.tag;\n}\nexport function isNumberSkeleton(el) {\n return !!(el && typeof el === 'object' && el.type === SKELETON_TYPE.number);\n}\nexport function isDateTimeSkeleton(el) {\n return !!(el && typeof el === 'object' && el.type === SKELETON_TYPE.dateTime);\n}\nexport function createLiteralElement(value) {\n return {\n type: TYPE.literal,\n value: value,\n };\n}\nexport function createNumberElement(value, style) {\n return {\n type: TYPE.number,\n value: value,\n style: style,\n };\n}\n","// @generated from regex-gen.ts\nexport var SPACE_SEPARATOR_REGEX = /[ \\xA0\\u1680\\u2000-\\u200A\\u202F\\u205F\\u3000]/;\nexport var WHITE_SPACE_REGEX = /[\\t-\\r \\x85\\u200E\\u200F\\u2028\\u2029]/;\n","/**\n * https://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table\n * Credit: https://github.com/caridy/intl-datetimeformat-pattern/blob/master/index.js\n * with some tweaks\n */\nvar DATE_TIME_REGEX = /(?:[Eec]{1,6}|G{1,5}|[Qq]{1,5}|(?:[yYur]+|U{1,5})|[ML]{1,5}|d{1,2}|D{1,3}|F{1}|[abB]{1,5}|[hkHK]{1,2}|w{1,2}|W{1}|m{1,2}|s{1,2}|[zZOvVxX]{1,4})(?=([^']*'[^']*')*[^']*$)/g;\n/**\n * Parse Date time skeleton into Intl.DateTimeFormatOptions\n * Ref: https://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table\n * @public\n * @param skeleton skeleton string\n */\nexport function parseDateTimeSkeleton(skeleton) {\n var result = {};\n skeleton.replace(DATE_TIME_REGEX, function (match) {\n var len = match.length;\n switch (match[0]) {\n // Era\n case 'G':\n result.era = len === 4 ? 'long' : len === 5 ? 'narrow' : 'short';\n break;\n // Year\n case 'y':\n result.year = len === 2 ? '2-digit' : 'numeric';\n break;\n case 'Y':\n case 'u':\n case 'U':\n case 'r':\n throw new RangeError('`Y/u/U/r` (year) patterns are not supported, use `y` instead');\n // Quarter\n case 'q':\n case 'Q':\n throw new RangeError('`q/Q` (quarter) patterns are not supported');\n // Month\n case 'M':\n case 'L':\n result.month = ['numeric', '2-digit', 'short', 'long', 'narrow'][len - 1];\n break;\n // Week\n case 'w':\n case 'W':\n throw new RangeError('`w/W` (week) patterns are not supported');\n case 'd':\n result.day = ['numeric', '2-digit'][len - 1];\n break;\n case 'D':\n case 'F':\n case 'g':\n throw new RangeError('`D/F/g` (day) patterns are not supported, use `d` instead');\n // Weekday\n case 'E':\n result.weekday = len === 4 ? 'short' : len === 5 ? 'narrow' : 'short';\n break;\n case 'e':\n if (len < 4) {\n throw new RangeError('`e..eee` (weekday) patterns are not supported');\n }\n result.weekday = ['short', 'long', 'narrow', 'short'][len - 4];\n break;\n case 'c':\n if (len < 4) {\n throw new RangeError('`c..ccc` (weekday) patterns are not supported');\n }\n result.weekday = ['short', 'long', 'narrow', 'short'][len - 4];\n break;\n // Period\n case 'a': // AM, PM\n result.hour12 = true;\n break;\n case 'b': // am, pm, noon, midnight\n case 'B': // flexible day periods\n throw new RangeError('`b/B` (period) patterns are not supported, use `a` instead');\n // Hour\n case 'h':\n result.hourCycle = 'h12';\n result.hour = ['numeric', '2-digit'][len - 1];\n break;\n case 'H':\n result.hourCycle = 'h23';\n result.hour = ['numeric', '2-digit'][len - 1];\n break;\n case 'K':\n result.hourCycle = 'h11';\n result.hour = ['numeric', '2-digit'][len - 1];\n break;\n case 'k':\n result.hourCycle = 'h24';\n result.hour = ['numeric', '2-digit'][len - 1];\n break;\n case 'j':\n case 'J':\n case 'C':\n throw new RangeError('`j/J/C` (hour) patterns are not supported, use `h/H/K/k` instead');\n // Minute\n case 'm':\n result.minute = ['numeric', '2-digit'][len - 1];\n break;\n // Second\n case 's':\n result.second = ['numeric', '2-digit'][len - 1];\n break;\n case 'S':\n case 'A':\n throw new RangeError('`S/A` (second) patterns are not supported, use `s` instead');\n // Zone\n case 'z': // 1..3, 4: specific non-location format\n result.timeZoneName = len < 4 ? 'short' : 'long';\n break;\n case 'Z': // 1..3, 4, 5: The ISO8601 varios formats\n case 'O': // 1, 4: miliseconds in day short, long\n case 'v': // 1, 4: generic non-location format\n case 'V': // 1, 2, 3, 4: time zone ID or city\n case 'X': // 1, 2, 3, 4: The ISO8601 varios formats\n case 'x': // 1, 2, 3, 4: The ISO8601 varios formats\n throw new RangeError('`Z/O/v/V/X/x` (timeZone) patterns are not supported, use `z` instead');\n }\n return '';\n });\n return result;\n}\n","// @generated from regex-gen.ts\nexport var WHITE_SPACE_REGEX = /[\\t-\\r \\x85\\u200E\\u200F\\u2028\\u2029]/i;\n","import { __assign } from \"tslib\";\nimport { WHITE_SPACE_REGEX } from './regex.generated';\nexport function parseNumberSkeletonFromString(skeleton) {\n if (skeleton.length === 0) {\n throw new Error('Number skeleton cannot be empty');\n }\n // Parse the skeleton\n var stringTokens = skeleton\n .split(WHITE_SPACE_REGEX)\n .filter(function (x) { return x.length > 0; });\n var tokens = [];\n for (var _i = 0, stringTokens_1 = stringTokens; _i < stringTokens_1.length; _i++) {\n var stringToken = stringTokens_1[_i];\n var stemAndOptions = stringToken.split('/');\n if (stemAndOptions.length === 0) {\n throw new Error('Invalid number skeleton');\n }\n var stem = stemAndOptions[0], options = stemAndOptions.slice(1);\n for (var _a = 0, options_1 = options; _a < options_1.length; _a++) {\n var option = options_1[_a];\n if (option.length === 0) {\n throw new Error('Invalid number skeleton');\n }\n }\n tokens.push({ stem: stem, options: options });\n }\n return tokens;\n}\nfunction icuUnitToEcma(unit) {\n return unit.replace(/^(.*?)-/, '');\n}\nvar FRACTION_PRECISION_REGEX = /^\\.(?:(0+)(\\*)?|(#+)|(0+)(#+))$/g;\nvar SIGNIFICANT_PRECISION_REGEX = /^(@+)?(\\+|#+)?[rs]?$/g;\nvar INTEGER_WIDTH_REGEX = /(\\*)(0+)|(#+)(0+)|(0+)/g;\nvar CONCISE_INTEGER_WIDTH_REGEX = /^(0+)$/;\nfunction parseSignificantPrecision(str) {\n var result = {};\n if (str[str.length - 1] === 'r') {\n result.roundingPriority = 'morePrecision';\n }\n else if (str[str.length - 1] === 's') {\n result.roundingPriority = 'lessPrecision';\n }\n str.replace(SIGNIFICANT_PRECISION_REGEX, function (_, g1, g2) {\n // @@@ case\n if (typeof g2 !== 'string') {\n result.minimumSignificantDigits = g1.length;\n result.maximumSignificantDigits = g1.length;\n }\n // @@@+ case\n else if (g2 === '+') {\n result.minimumSignificantDigits = g1.length;\n }\n // .### case\n else if (g1[0] === '#') {\n result.maximumSignificantDigits = g1.length;\n }\n // .@@## or .@@@ case\n else {\n result.minimumSignificantDigits = g1.length;\n result.maximumSignificantDigits =\n g1.length + (typeof g2 === 'string' ? g2.length : 0);\n }\n return '';\n });\n return result;\n}\nfunction parseSign(str) {\n switch (str) {\n case 'sign-auto':\n return {\n signDisplay: 'auto',\n };\n case 'sign-accounting':\n case '()':\n return {\n currencySign: 'accounting',\n };\n case 'sign-always':\n case '+!':\n return {\n signDisplay: 'always',\n };\n case 'sign-accounting-always':\n case '()!':\n return {\n signDisplay: 'always',\n currencySign: 'accounting',\n };\n case 'sign-except-zero':\n case '+?':\n return {\n signDisplay: 'exceptZero',\n };\n case 'sign-accounting-except-zero':\n case '()?':\n return {\n signDisplay: 'exceptZero',\n currencySign: 'accounting',\n };\n case 'sign-never':\n case '+_':\n return {\n signDisplay: 'never',\n };\n }\n}\nfunction parseConciseScientificAndEngineeringStem(stem) {\n // Engineering\n var result;\n if (stem[0] === 'E' && stem[1] === 'E') {\n result = {\n notation: 'engineering',\n };\n stem = stem.slice(2);\n }\n else if (stem[0] === 'E') {\n result = {\n notation: 'scientific',\n };\n stem = stem.slice(1);\n }\n if (result) {\n var signDisplay = stem.slice(0, 2);\n if (signDisplay === '+!') {\n result.signDisplay = 'always';\n stem = stem.slice(2);\n }\n else if (signDisplay === '+?') {\n result.signDisplay = 'exceptZero';\n stem = stem.slice(2);\n }\n if (!CONCISE_INTEGER_WIDTH_REGEX.test(stem)) {\n throw new Error('Malformed concise eng/scientific notation');\n }\n result.minimumIntegerDigits = stem.length;\n }\n return result;\n}\nfunction parseNotationOptions(opt) {\n var result = {};\n var signOpts = parseSign(opt);\n if (signOpts) {\n return signOpts;\n }\n return result;\n}\n/**\n * https://github.com/unicode-org/icu/blob/master/docs/userguide/format_parse/numbers/skeletons.md#skeleton-stems-and-options\n */\nexport function parseNumberSkeleton(tokens) {\n var result = {};\n for (var _i = 0, tokens_1 = tokens; _i < tokens_1.length; _i++) {\n var token = tokens_1[_i];\n switch (token.stem) {\n case 'percent':\n case '%':\n result.style = 'percent';\n continue;\n case '%x100':\n result.style = 'percent';\n result.scale = 100;\n continue;\n case 'currency':\n result.style = 'currency';\n result.currency = token.options[0];\n continue;\n case 'group-off':\n case ',_':\n result.useGrouping = false;\n continue;\n case 'precision-integer':\n case '.':\n result.maximumFractionDigits = 0;\n continue;\n case 'measure-unit':\n case 'unit':\n result.style = 'unit';\n result.unit = icuUnitToEcma(token.options[0]);\n continue;\n case 'compact-short':\n case 'K':\n result.notation = 'compact';\n result.compactDisplay = 'short';\n continue;\n case 'compact-long':\n case 'KK':\n result.notation = 'compact';\n result.compactDisplay = 'long';\n continue;\n case 'scientific':\n result = __assign(__assign(__assign({}, result), { notation: 'scientific' }), token.options.reduce(function (all, opt) { return (__assign(__assign({}, all), parseNotationOptions(opt))); }, {}));\n continue;\n case 'engineering':\n result = __assign(__assign(__assign({}, result), { notation: 'engineering' }), token.options.reduce(function (all, opt) { return (__assign(__assign({}, all), parseNotationOptions(opt))); }, {}));\n continue;\n case 'notation-simple':\n result.notation = 'standard';\n continue;\n // https://github.com/unicode-org/icu/blob/master/icu4c/source/i18n/unicode/unumberformatter.h\n case 'unit-width-narrow':\n result.currencyDisplay = 'narrowSymbol';\n result.unitDisplay = 'narrow';\n continue;\n case 'unit-width-short':\n result.currencyDisplay = 'code';\n result.unitDisplay = 'short';\n continue;\n case 'unit-width-full-name':\n result.currencyDisplay = 'name';\n result.unitDisplay = 'long';\n continue;\n case 'unit-width-iso-code':\n result.currencyDisplay = 'symbol';\n continue;\n case 'scale':\n result.scale = parseFloat(token.options[0]);\n continue;\n // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#integer-width\n case 'integer-width':\n if (token.options.length > 1) {\n throw new RangeError('integer-width stems only accept a single optional option');\n }\n token.options[0].replace(INTEGER_WIDTH_REGEX, function (_, g1, g2, g3, g4, g5) {\n if (g1) {\n result.minimumIntegerDigits = g2.length;\n }\n else if (g3 && g4) {\n throw new Error('We currently do not support maximum integer digits');\n }\n else if (g5) {\n throw new Error('We currently do not support exact integer digits');\n }\n return '';\n });\n continue;\n }\n // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#integer-width\n if (CONCISE_INTEGER_WIDTH_REGEX.test(token.stem)) {\n result.minimumIntegerDigits = token.stem.length;\n continue;\n }\n if (FRACTION_PRECISION_REGEX.test(token.stem)) {\n // Precision\n // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#fraction-precision\n // precision-integer case\n if (token.options.length > 1) {\n throw new RangeError('Fraction-precision stems only accept a single optional option');\n }\n token.stem.replace(FRACTION_PRECISION_REGEX, function (_, g1, g2, g3, g4, g5) {\n // .000* case (before ICU67 it was .000+)\n if (g2 === '*') {\n result.minimumFractionDigits = g1.length;\n }\n // .### case\n else if (g3 && g3[0] === '#') {\n result.maximumFractionDigits = g3.length;\n }\n // .00## case\n else if (g4 && g5) {\n result.minimumFractionDigits = g4.length;\n result.maximumFractionDigits = g4.length + g5.length;\n }\n else {\n result.minimumFractionDigits = g1.length;\n result.maximumFractionDigits = g1.length;\n }\n return '';\n });\n var opt = token.options[0];\n // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#trailing-zero-display\n if (opt === 'w') {\n result = __assign(__assign({}, result), { trailingZeroDisplay: 'stripIfInteger' });\n }\n else if (opt) {\n result = __assign(__assign({}, result), parseSignificantPrecision(opt));\n }\n continue;\n }\n // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#significant-digits-precision\n if (SIGNIFICANT_PRECISION_REGEX.test(token.stem)) {\n result = __assign(__assign({}, result), parseSignificantPrecision(token.stem));\n continue;\n }\n var signOpts = parseSign(token.stem);\n if (signOpts) {\n result = __assign(__assign({}, result), signOpts);\n }\n var conciseScientificAndEngineeringOpts = parseConciseScientificAndEngineeringStem(token.stem);\n if (conciseScientificAndEngineeringOpts) {\n result = __assign(__assign({}, result), conciseScientificAndEngineeringOpts);\n }\n }\n return result;\n}\n","// @generated from time-data-gen.ts\n// prettier-ignore \nexport var timeData = {\n \"AX\": [\n \"H\"\n ],\n \"BQ\": [\n \"H\"\n ],\n \"CP\": [\n \"H\"\n ],\n \"CZ\": [\n \"H\"\n ],\n \"DK\": [\n \"H\"\n ],\n \"FI\": [\n \"H\"\n ],\n \"ID\": [\n \"H\"\n ],\n \"IS\": [\n \"H\"\n ],\n \"ML\": [\n \"H\"\n ],\n \"NE\": [\n \"H\"\n ],\n \"RU\": [\n \"H\"\n ],\n \"SE\": [\n \"H\"\n ],\n \"SJ\": [\n \"H\"\n ],\n \"SK\": [\n \"H\"\n ],\n \"AS\": [\n \"h\",\n \"H\"\n ],\n \"BT\": [\n \"h\",\n \"H\"\n ],\n \"DJ\": [\n \"h\",\n \"H\"\n ],\n \"ER\": [\n \"h\",\n \"H\"\n ],\n \"GH\": [\n \"h\",\n \"H\"\n ],\n \"IN\": [\n \"h\",\n \"H\"\n ],\n \"LS\": [\n \"h\",\n \"H\"\n ],\n \"PG\": [\n \"h\",\n \"H\"\n ],\n \"PW\": [\n \"h\",\n \"H\"\n ],\n \"SO\": [\n \"h\",\n \"H\"\n ],\n \"TO\": [\n \"h\",\n \"H\"\n ],\n \"VU\": [\n \"h\",\n \"H\"\n ],\n \"WS\": [\n \"h\",\n \"H\"\n ],\n \"001\": [\n \"H\",\n \"h\"\n ],\n \"AL\": [\n \"h\",\n \"H\",\n \"hB\"\n ],\n \"TD\": [\n \"h\",\n \"H\",\n \"hB\"\n ],\n \"ca-ES\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"CF\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"CM\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"fr-CA\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"gl-ES\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"it-CH\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"it-IT\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"LU\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"NP\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"PF\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"SC\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"SM\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"SN\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"TF\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"VA\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"CY\": [\n \"h\",\n \"H\",\n \"hb\",\n \"hB\"\n ],\n \"GR\": [\n \"h\",\n \"H\",\n \"hb\",\n \"hB\"\n ],\n \"CO\": [\n \"h\",\n \"H\",\n \"hB\",\n \"hb\"\n ],\n \"DO\": [\n \"h\",\n \"H\",\n \"hB\",\n \"hb\"\n ],\n \"KP\": [\n \"h\",\n \"H\",\n \"hB\",\n \"hb\"\n ],\n \"KR\": [\n \"h\",\n \"H\",\n \"hB\",\n \"hb\"\n ],\n \"NA\": [\n \"h\",\n \"H\",\n \"hB\",\n \"hb\"\n ],\n \"PA\": [\n \"h\",\n \"H\",\n \"hB\",\n \"hb\"\n ],\n \"PR\": [\n \"h\",\n \"H\",\n \"hB\",\n \"hb\"\n ],\n \"VE\": [\n \"h\",\n \"H\",\n \"hB\",\n \"hb\"\n ],\n \"AC\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"AI\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"BW\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"BZ\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"CC\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"CK\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"CX\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"DG\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"FK\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"GB\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"GG\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"GI\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"IE\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"IM\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"IO\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"JE\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"LT\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"MK\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"MN\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"MS\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"NF\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"NG\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"NR\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"NU\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"PN\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"SH\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"SX\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"TA\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"ZA\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"af-ZA\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"AR\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"CL\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"CR\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"CU\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"EA\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"es-BO\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"es-BR\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"es-EC\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"es-ES\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"es-GQ\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"es-PE\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"GT\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"HN\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"IC\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"KG\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"KM\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"LK\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"MA\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"MX\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"NI\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"PY\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"SV\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"UY\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"JP\": [\n \"H\",\n \"h\",\n \"K\"\n ],\n \"AD\": [\n \"H\",\n \"hB\"\n ],\n \"AM\": [\n \"H\",\n \"hB\"\n ],\n \"AO\": [\n \"H\",\n \"hB\"\n ],\n \"AT\": [\n \"H\",\n \"hB\"\n ],\n \"AW\": [\n \"H\",\n \"hB\"\n ],\n \"BE\": [\n \"H\",\n \"hB\"\n ],\n \"BF\": [\n \"H\",\n \"hB\"\n ],\n \"BJ\": [\n \"H\",\n \"hB\"\n ],\n \"BL\": [\n \"H\",\n \"hB\"\n ],\n \"BR\": [\n \"H\",\n \"hB\"\n ],\n \"CG\": [\n \"H\",\n \"hB\"\n ],\n \"CI\": [\n \"H\",\n \"hB\"\n ],\n \"CV\": [\n \"H\",\n \"hB\"\n ],\n \"DE\": [\n \"H\",\n \"hB\"\n ],\n \"EE\": [\n \"H\",\n \"hB\"\n ],\n \"FR\": [\n \"H\",\n \"hB\"\n ],\n \"GA\": [\n \"H\",\n \"hB\"\n ],\n \"GF\": [\n \"H\",\n \"hB\"\n ],\n \"GN\": [\n \"H\",\n \"hB\"\n ],\n \"GP\": [\n \"H\",\n \"hB\"\n ],\n \"GW\": [\n \"H\",\n \"hB\"\n ],\n \"HR\": [\n \"H\",\n \"hB\"\n ],\n \"IL\": [\n \"H\",\n \"hB\"\n ],\n \"IT\": [\n \"H\",\n \"hB\"\n ],\n \"KZ\": [\n \"H\",\n \"hB\"\n ],\n \"MC\": [\n \"H\",\n \"hB\"\n ],\n \"MD\": [\n \"H\",\n \"hB\"\n ],\n \"MF\": [\n \"H\",\n \"hB\"\n ],\n \"MQ\": [\n \"H\",\n \"hB\"\n ],\n \"MZ\": [\n \"H\",\n \"hB\"\n ],\n \"NC\": [\n \"H\",\n \"hB\"\n ],\n \"NL\": [\n \"H\",\n \"hB\"\n ],\n \"PM\": [\n \"H\",\n \"hB\"\n ],\n \"PT\": [\n \"H\",\n \"hB\"\n ],\n \"RE\": [\n \"H\",\n \"hB\"\n ],\n \"RO\": [\n \"H\",\n \"hB\"\n ],\n \"SI\": [\n \"H\",\n \"hB\"\n ],\n \"SR\": [\n \"H\",\n \"hB\"\n ],\n \"ST\": [\n \"H\",\n \"hB\"\n ],\n \"TG\": [\n \"H\",\n \"hB\"\n ],\n \"TR\": [\n \"H\",\n \"hB\"\n ],\n \"WF\": [\n \"H\",\n \"hB\"\n ],\n \"YT\": [\n \"H\",\n \"hB\"\n ],\n \"BD\": [\n \"h\",\n \"hB\",\n \"H\"\n ],\n \"PK\": [\n \"h\",\n \"hB\",\n \"H\"\n ],\n \"AZ\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"BA\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"BG\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"CH\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"GE\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"LI\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"ME\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"RS\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"UA\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"UZ\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"XK\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"AG\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"AU\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"BB\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"BM\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"BS\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"CA\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"DM\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"en-001\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"FJ\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"FM\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"GD\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"GM\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"GU\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"GY\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"JM\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"KI\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"KN\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"KY\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"LC\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"LR\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"MH\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"MP\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"MW\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"NZ\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"SB\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"SG\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"SL\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"SS\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"SZ\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"TC\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"TT\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"UM\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"US\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"VC\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"VG\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"VI\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"ZM\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"BO\": [\n \"H\",\n \"hB\",\n \"h\",\n \"hb\"\n ],\n \"EC\": [\n \"H\",\n \"hB\",\n \"h\",\n \"hb\"\n ],\n \"ES\": [\n \"H\",\n \"hB\",\n \"h\",\n \"hb\"\n ],\n \"GQ\": [\n \"H\",\n \"hB\",\n \"h\",\n \"hb\"\n ],\n \"PE\": [\n \"H\",\n \"hB\",\n \"h\",\n \"hb\"\n ],\n \"AE\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"ar-001\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"BH\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"DZ\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"EG\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"EH\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"HK\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"IQ\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"JO\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"KW\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"LB\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"LY\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"MO\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"MR\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"OM\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"PH\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"PS\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"QA\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"SA\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"SD\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"SY\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"TN\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"YE\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"AF\": [\n \"H\",\n \"hb\",\n \"hB\",\n \"h\"\n ],\n \"LA\": [\n \"H\",\n \"hb\",\n \"hB\",\n \"h\"\n ],\n \"CN\": [\n \"H\",\n \"hB\",\n \"hb\",\n \"h\"\n ],\n \"LV\": [\n \"H\",\n \"hB\",\n \"hb\",\n \"h\"\n ],\n \"TL\": [\n \"H\",\n \"hB\",\n \"hb\",\n \"h\"\n ],\n \"zu-ZA\": [\n \"H\",\n \"hB\",\n \"hb\",\n \"h\"\n ],\n \"CD\": [\n \"hB\",\n \"H\"\n ],\n \"IR\": [\n \"hB\",\n \"H\"\n ],\n \"hi-IN\": [\n \"hB\",\n \"h\",\n \"H\"\n ],\n \"kn-IN\": [\n \"hB\",\n \"h\",\n \"H\"\n ],\n \"ml-IN\": [\n \"hB\",\n \"h\",\n \"H\"\n ],\n \"te-IN\": [\n \"hB\",\n \"h\",\n \"H\"\n ],\n \"KH\": [\n \"hB\",\n \"h\",\n \"H\",\n \"hb\"\n ],\n \"ta-IN\": [\n \"hB\",\n \"h\",\n \"hb\",\n \"H\"\n ],\n \"BN\": [\n \"hb\",\n \"hB\",\n \"h\",\n \"H\"\n ],\n \"MY\": [\n \"hb\",\n \"hB\",\n \"h\",\n \"H\"\n ],\n \"ET\": [\n \"hB\",\n \"hb\",\n \"h\",\n \"H\"\n ],\n \"gu-IN\": [\n \"hB\",\n \"hb\",\n \"h\",\n \"H\"\n ],\n \"mr-IN\": [\n \"hB\",\n \"hb\",\n \"h\",\n \"H\"\n ],\n \"pa-IN\": [\n \"hB\",\n \"hb\",\n \"h\",\n \"H\"\n ],\n \"TW\": [\n \"hB\",\n \"hb\",\n \"h\",\n \"H\"\n ],\n \"KE\": [\n \"hB\",\n \"hb\",\n \"H\",\n \"h\"\n ],\n \"MM\": [\n \"hB\",\n \"hb\",\n \"H\",\n \"h\"\n ],\n \"TZ\": [\n \"hB\",\n \"hb\",\n \"H\",\n \"h\"\n ],\n \"UG\": [\n \"hB\",\n \"hb\",\n \"H\",\n \"h\"\n ]\n};\n","import { timeData } from './time-data.generated';\n/**\n * Returns the best matching date time pattern if a date time skeleton\n * pattern is provided with a locale. Follows the Unicode specification:\n * https://www.unicode.org/reports/tr35/tr35-dates.html#table-mapping-requested-time-skeletons-to-patterns\n * @param skeleton date time skeleton pattern that possibly includes j, J or C\n * @param locale\n */\nexport function getBestPattern(skeleton, locale) {\n var skeletonCopy = '';\n for (var patternPos = 0; patternPos < skeleton.length; patternPos++) {\n var patternChar = skeleton.charAt(patternPos);\n if (patternChar === 'j') {\n var extraLength = 0;\n while (patternPos + 1 < skeleton.length &&\n skeleton.charAt(patternPos + 1) === patternChar) {\n extraLength++;\n patternPos++;\n }\n var hourLen = 1 + (extraLength & 1);\n var dayPeriodLen = extraLength < 2 ? 1 : 3 + (extraLength >> 1);\n var dayPeriodChar = 'a';\n var hourChar = getDefaultHourSymbolFromLocale(locale);\n if (hourChar == 'H' || hourChar == 'k') {\n dayPeriodLen = 0;\n }\n while (dayPeriodLen-- > 0) {\n skeletonCopy += dayPeriodChar;\n }\n while (hourLen-- > 0) {\n skeletonCopy = hourChar + skeletonCopy;\n }\n }\n else if (patternChar === 'J') {\n skeletonCopy += 'H';\n }\n else {\n skeletonCopy += patternChar;\n }\n }\n return skeletonCopy;\n}\n/**\n * Maps the [hour cycle type](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/hourCycle)\n * of the given `locale` to the corresponding time pattern.\n * @param locale\n */\nfunction getDefaultHourSymbolFromLocale(locale) {\n var hourCycle = locale.hourCycle;\n if (hourCycle === undefined &&\n // @ts-ignore hourCycle(s) is not identified yet\n locale.hourCycles &&\n // @ts-ignore\n locale.hourCycles.length) {\n // @ts-ignore\n hourCycle = locale.hourCycles[0];\n }\n if (hourCycle) {\n switch (hourCycle) {\n case 'h24':\n return 'k';\n case 'h23':\n return 'H';\n case 'h12':\n return 'h';\n case 'h11':\n return 'K';\n default:\n throw new Error('Invalid hourCycle');\n }\n }\n // TODO: Once hourCycle is fully supported remove the following with data generation\n var languageTag = locale.language;\n var regionTag;\n if (languageTag !== 'root') {\n regionTag = locale.maximize().region;\n }\n var hourCycles = timeData[regionTag || ''] ||\n timeData[languageTag || ''] ||\n timeData[\"\".concat(languageTag, \"-001\")] ||\n timeData['001'];\n return hourCycles[0];\n}\n","var _a;\nimport { __assign } from \"tslib\";\nimport { ErrorKind } from './error';\nimport { SKELETON_TYPE, TYPE, } from './types';\nimport { SPACE_SEPARATOR_REGEX } from './regex.generated';\nimport { parseNumberSkeleton, parseNumberSkeletonFromString, parseDateTimeSkeleton, } from '@formatjs/icu-skeleton-parser';\nimport { getBestPattern } from './date-time-pattern-generator';\nvar SPACE_SEPARATOR_START_REGEX = new RegExp(\"^\".concat(SPACE_SEPARATOR_REGEX.source, \"*\"));\nvar SPACE_SEPARATOR_END_REGEX = new RegExp(\"\".concat(SPACE_SEPARATOR_REGEX.source, \"*$\"));\nfunction createLocation(start, end) {\n return { start: start, end: end };\n}\n// #region Ponyfills\n// Consolidate these variables up top for easier toggling during debugging\nvar hasNativeStartsWith = !!String.prototype.startsWith;\nvar hasNativeFromCodePoint = !!String.fromCodePoint;\nvar hasNativeFromEntries = !!Object.fromEntries;\nvar hasNativeCodePointAt = !!String.prototype.codePointAt;\nvar hasTrimStart = !!String.prototype.trimStart;\nvar hasTrimEnd = !!String.prototype.trimEnd;\nvar hasNativeIsSafeInteger = !!Number.isSafeInteger;\nvar isSafeInteger = hasNativeIsSafeInteger\n ? Number.isSafeInteger\n : function (n) {\n return (typeof n === 'number' &&\n isFinite(n) &&\n Math.floor(n) === n &&\n Math.abs(n) <= 0x1fffffffffffff);\n };\n// IE11 does not support y and u.\nvar REGEX_SUPPORTS_U_AND_Y = true;\ntry {\n var re = RE('([^\\\\p{White_Space}\\\\p{Pattern_Syntax}]*)', 'yu');\n /**\n * legacy Edge or Xbox One browser\n * Unicode flag support: supported\n * Pattern_Syntax support: not supported\n * See https://github.com/formatjs/formatjs/issues/2822\n */\n REGEX_SUPPORTS_U_AND_Y = ((_a = re.exec('a')) === null || _a === void 0 ? void 0 : _a[0]) === 'a';\n}\ncatch (_) {\n REGEX_SUPPORTS_U_AND_Y = false;\n}\nvar startsWith = hasNativeStartsWith\n ? // Native\n function startsWith(s, search, position) {\n return s.startsWith(search, position);\n }\n : // For IE11\n function startsWith(s, search, position) {\n return s.slice(position, position + search.length) === search;\n };\nvar fromCodePoint = hasNativeFromCodePoint\n ? String.fromCodePoint\n : // IE11\n function fromCodePoint() {\n var codePoints = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n codePoints[_i] = arguments[_i];\n }\n var elements = '';\n var length = codePoints.length;\n var i = 0;\n var code;\n while (length > i) {\n code = codePoints[i++];\n if (code > 0x10ffff)\n throw RangeError(code + ' is not a valid code point');\n elements +=\n code < 0x10000\n ? String.fromCharCode(code)\n : String.fromCharCode(((code -= 0x10000) >> 10) + 0xd800, (code % 0x400) + 0xdc00);\n }\n return elements;\n };\nvar fromEntries = \n// native\nhasNativeFromEntries\n ? Object.fromEntries\n : // Ponyfill\n function fromEntries(entries) {\n var obj = {};\n for (var _i = 0, entries_1 = entries; _i < entries_1.length; _i++) {\n var _a = entries_1[_i], k = _a[0], v = _a[1];\n obj[k] = v;\n }\n return obj;\n };\nvar codePointAt = hasNativeCodePointAt\n ? // Native\n function codePointAt(s, index) {\n return s.codePointAt(index);\n }\n : // IE 11\n function codePointAt(s, index) {\n var size = s.length;\n if (index < 0 || index >= size) {\n return undefined;\n }\n var first = s.charCodeAt(index);\n var second;\n return first < 0xd800 ||\n first > 0xdbff ||\n index + 1 === size ||\n (second = s.charCodeAt(index + 1)) < 0xdc00 ||\n second > 0xdfff\n ? first\n : ((first - 0xd800) << 10) + (second - 0xdc00) + 0x10000;\n };\nvar trimStart = hasTrimStart\n ? // Native\n function trimStart(s) {\n return s.trimStart();\n }\n : // Ponyfill\n function trimStart(s) {\n return s.replace(SPACE_SEPARATOR_START_REGEX, '');\n };\nvar trimEnd = hasTrimEnd\n ? // Native\n function trimEnd(s) {\n return s.trimEnd();\n }\n : // Ponyfill\n function trimEnd(s) {\n return s.replace(SPACE_SEPARATOR_END_REGEX, '');\n };\n// Prevent minifier to translate new RegExp to literal form that might cause syntax error on IE11.\nfunction RE(s, flag) {\n return new RegExp(s, flag);\n}\n// #endregion\nvar matchIdentifierAtIndex;\nif (REGEX_SUPPORTS_U_AND_Y) {\n // Native\n var IDENTIFIER_PREFIX_RE_1 = RE('([^\\\\p{White_Space}\\\\p{Pattern_Syntax}]*)', 'yu');\n matchIdentifierAtIndex = function matchIdentifierAtIndex(s, index) {\n var _a;\n IDENTIFIER_PREFIX_RE_1.lastIndex = index;\n var match = IDENTIFIER_PREFIX_RE_1.exec(s);\n return (_a = match[1]) !== null && _a !== void 0 ? _a : '';\n };\n}\nelse {\n // IE11\n matchIdentifierAtIndex = function matchIdentifierAtIndex(s, index) {\n var match = [];\n while (true) {\n var c = codePointAt(s, index);\n if (c === undefined || _isWhiteSpace(c) || _isPatternSyntax(c)) {\n break;\n }\n match.push(c);\n index += c >= 0x10000 ? 2 : 1;\n }\n return fromCodePoint.apply(void 0, match);\n };\n}\nvar Parser = /** @class */ (function () {\n function Parser(message, options) {\n if (options === void 0) { options = {}; }\n this.message = message;\n this.position = { offset: 0, line: 1, column: 1 };\n this.ignoreTag = !!options.ignoreTag;\n this.locale = options.locale;\n this.requiresOtherClause = !!options.requiresOtherClause;\n this.shouldParseSkeletons = !!options.shouldParseSkeletons;\n }\n Parser.prototype.parse = function () {\n if (this.offset() !== 0) {\n throw Error('parser can only be used once');\n }\n return this.parseMessage(0, '', false);\n };\n Parser.prototype.parseMessage = function (nestingLevel, parentArgType, expectingCloseTag) {\n var elements = [];\n while (!this.isEOF()) {\n var char = this.char();\n if (char === 123 /* `{` */) {\n var result = this.parseArgument(nestingLevel, expectingCloseTag);\n if (result.err) {\n return result;\n }\n elements.push(result.val);\n }\n else if (char === 125 /* `}` */ && nestingLevel > 0) {\n break;\n }\n else if (char === 35 /* `#` */ &&\n (parentArgType === 'plural' || parentArgType === 'selectordinal')) {\n var position = this.clonePosition();\n this.bump();\n elements.push({\n type: TYPE.pound,\n location: createLocation(position, this.clonePosition()),\n });\n }\n else if (char === 60 /* `<` */ &&\n !this.ignoreTag &&\n this.peek() === 47 // char code for '/'\n ) {\n if (expectingCloseTag) {\n break;\n }\n else {\n return this.error(ErrorKind.UNMATCHED_CLOSING_TAG, createLocation(this.clonePosition(), this.clonePosition()));\n }\n }\n else if (char === 60 /* `<` */ &&\n !this.ignoreTag &&\n _isAlpha(this.peek() || 0)) {\n var result = this.parseTag(nestingLevel, parentArgType);\n if (result.err) {\n return result;\n }\n elements.push(result.val);\n }\n else {\n var result = this.parseLiteral(nestingLevel, parentArgType);\n if (result.err) {\n return result;\n }\n elements.push(result.val);\n }\n }\n return { val: elements, err: null };\n };\n /**\n * A tag name must start with an ASCII lower/upper case letter. The grammar is based on the\n * [custom element name][] except that a dash is NOT always mandatory and uppercase letters\n * are accepted:\n *\n * ```\n * tag ::= \"<\" tagName (whitespace)* \"/>\" | \"<\" tagName (whitespace)* \">\" message \"</\" tagName (whitespace)* \">\"\n * tagName ::= [a-z] (PENChar)*\n * PENChar ::=\n * \"-\" | \".\" | [0-9] | \"_\" | [a-z] | [A-Z] | #xB7 | [#xC0-#xD6] | [#xD8-#xF6] | [#xF8-#x37D] |\n * [#x37F-#x1FFF] | [#x200C-#x200D] | [#x203F-#x2040] | [#x2070-#x218F] | [#x2C00-#x2FEF] |\n * [#x3001-#xD7FF] | [#xF900-#xFDCF] | [#xFDF0-#xFFFD] | [#x10000-#xEFFFF]\n * ```\n *\n * [custom element name]: https://html.spec.whatwg.org/multipage/custom-elements.html#valid-custom-element-name\n * NOTE: We're a bit more lax here since HTML technically does not allow uppercase HTML element but we do\n * since other tag-based engines like React allow it\n */\n Parser.prototype.parseTag = function (nestingLevel, parentArgType) {\n var startPosition = this.clonePosition();\n this.bump(); // `<`\n var tagName = this.parseTagName();\n this.bumpSpace();\n if (this.bumpIf('/>')) {\n // Self closing tag\n return {\n val: {\n type: TYPE.literal,\n value: \"<\".concat(tagName, \"/>\"),\n location: createLocation(startPosition, this.clonePosition()),\n },\n err: null,\n };\n }\n else if (this.bumpIf('>')) {\n var childrenResult = this.parseMessage(nestingLevel + 1, parentArgType, true);\n if (childrenResult.err) {\n return childrenResult;\n }\n var children = childrenResult.val;\n // Expecting a close tag\n var endTagStartPosition = this.clonePosition();\n if (this.bumpIf('</')) {\n if (this.isEOF() || !_isAlpha(this.char())) {\n return this.error(ErrorKind.INVALID_TAG, createLocation(endTagStartPosition, this.clonePosition()));\n }\n var closingTagNameStartPosition = this.clonePosition();\n var closingTagName = this.parseTagName();\n if (tagName !== closingTagName) {\n return this.error(ErrorKind.UNMATCHED_CLOSING_TAG, createLocation(closingTagNameStartPosition, this.clonePosition()));\n }\n this.bumpSpace();\n if (!this.bumpIf('>')) {\n return this.error(ErrorKind.INVALID_TAG, createLocation(endTagStartPosition, this.clonePosition()));\n }\n return {\n val: {\n type: TYPE.tag,\n value: tagName,\n children: children,\n location: createLocation(startPosition, this.clonePosition()),\n },\n err: null,\n };\n }\n else {\n return this.error(ErrorKind.UNCLOSED_TAG, createLocation(startPosition, this.clonePosition()));\n }\n }\n else {\n return this.error(ErrorKind.INVALID_TAG, createLocation(startPosition, this.clonePosition()));\n }\n };\n /**\n * This method assumes that the caller has peeked ahead for the first tag character.\n */\n Parser.prototype.parseTagName = function () {\n var startOffset = this.offset();\n this.bump(); // the first tag name character\n while (!this.isEOF() && _isPotentialElementNameChar(this.char())) {\n this.bump();\n }\n return this.message.slice(startOffset, this.offset());\n };\n Parser.prototype.parseLiteral = function (nestingLevel, parentArgType) {\n var start = this.clonePosition();\n var value = '';\n while (true) {\n var parseQuoteResult = this.tryParseQuote(parentArgType);\n if (parseQuoteResult) {\n value += parseQuoteResult;\n continue;\n }\n var parseUnquotedResult = this.tryParseUnquoted(nestingLevel, parentArgType);\n if (parseUnquotedResult) {\n value += parseUnquotedResult;\n continue;\n }\n var parseLeftAngleResult = this.tryParseLeftAngleBracket();\n if (parseLeftAngleResult) {\n value += parseLeftAngleResult;\n continue;\n }\n break;\n }\n var location = createLocation(start, this.clonePosition());\n return {\n val: { type: TYPE.literal, value: value, location: location },\n err: null,\n };\n };\n Parser.prototype.tryParseLeftAngleBracket = function () {\n if (!this.isEOF() &&\n this.char() === 60 /* `<` */ &&\n (this.ignoreTag ||\n // If at the opening tag or closing tag position, bail.\n !_isAlphaOrSlash(this.peek() || 0))) {\n this.bump(); // `<`\n return '<';\n }\n return null;\n };\n /**\n * Starting with ICU 4.8, an ASCII apostrophe only starts quoted text if it immediately precedes\n * a character that requires quoting (that is, \"only where needed\"), and works the same in\n * nested messages as on the top level of the pattern. The new behavior is otherwise compatible.\n */\n Parser.prototype.tryParseQuote = function (parentArgType) {\n if (this.isEOF() || this.char() !== 39 /* `'` */) {\n return null;\n }\n // Parse escaped char following the apostrophe, or early return if there is no escaped char.\n // Check if is valid escaped character\n switch (this.peek()) {\n case 39 /* `'` */:\n // double quote, should return as a single quote.\n this.bump();\n this.bump();\n return \"'\";\n // '{', '<', '>', '}'\n case 123:\n case 60:\n case 62:\n case 125:\n break;\n case 35: // '#'\n if (parentArgType === 'plural' || parentArgType === 'selectordinal') {\n break;\n }\n return null;\n default:\n return null;\n }\n this.bump(); // apostrophe\n var codePoints = [this.char()]; // escaped char\n this.bump();\n // read chars until the optional closing apostrophe is found\n while (!this.isEOF()) {\n var ch = this.char();\n if (ch === 39 /* `'` */) {\n if (this.peek() === 39 /* `'` */) {\n codePoints.push(39);\n // Bump one more time because we need to skip 2 characters.\n this.bump();\n }\n else {\n // Optional closing apostrophe.\n this.bump();\n break;\n }\n }\n else {\n codePoints.push(ch);\n }\n this.bump();\n }\n return fromCodePoint.apply(void 0, codePoints);\n };\n Parser.prototype.tryParseUnquoted = function (nestingLevel, parentArgType) {\n if (this.isEOF()) {\n return null;\n }\n var ch = this.char();\n if (ch === 60 /* `<` */ ||\n ch === 123 /* `{` */ ||\n (ch === 35 /* `#` */ &&\n (parentArgType === 'plural' || parentArgType === 'selectordinal')) ||\n (ch === 125 /* `}` */ && nestingLevel > 0)) {\n return null;\n }\n else {\n this.bump();\n return fromCodePoint(ch);\n }\n };\n Parser.prototype.parseArgument = function (nestingLevel, expectingCloseTag) {\n var openingBracePosition = this.clonePosition();\n this.bump(); // `{`\n this.bumpSpace();\n if (this.isEOF()) {\n return this.error(ErrorKind.EXPECT_ARGUMENT_CLOSING_BRACE, createLocation(openingBracePosition, this.clonePosition()));\n }\n if (this.char() === 125 /* `}` */) {\n this.bump();\n return this.error(ErrorKind.EMPTY_ARGUMENT, createLocation(openingBracePosition, this.clonePosition()));\n }\n // argument name\n var value = this.parseIdentifierIfPossible().value;\n if (!value) {\n return this.error(ErrorKind.MALFORMED_ARGUMENT, createLocation(openingBracePosition, this.clonePosition()));\n }\n this.bumpSpace();\n if (this.isEOF()) {\n return this.error(ErrorKind.EXPECT_ARGUMENT_CLOSING_BRACE, createLocation(openingBracePosition, this.clonePosition()));\n }\n switch (this.char()) {\n // Simple argument: `{name}`\n case 125 /* `}` */: {\n this.bump(); // `}`\n return {\n val: {\n type: TYPE.argument,\n // value does not include the opening and closing braces.\n value: value,\n location: createLocation(openingBracePosition, this.clonePosition()),\n },\n err: null,\n };\n }\n // Argument with options: `{name, format, ...}`\n case 44 /* `,` */: {\n this.bump(); // `,`\n this.bumpSpace();\n if (this.isEOF()) {\n return this.error(ErrorKind.EXPECT_ARGUMENT_CLOSING_BRACE, createLocation(openingBracePosition, this.clonePosition()));\n }\n return this.parseArgumentOptions(nestingLevel, expectingCloseTag, value, openingBracePosition);\n }\n default:\n return this.error(ErrorKind.MALFORMED_ARGUMENT, createLocation(openingBracePosition, this.clonePosition()));\n }\n };\n /**\n * Advance the parser until the end of the identifier, if it is currently on\n * an identifier character. Return an empty string otherwise.\n */\n Parser.prototype.parseIdentifierIfPossible = function () {\n var startingPosition = this.clonePosition();\n var startOffset = this.offset();\n var value = matchIdentifierAtIndex(this.message, startOffset);\n var endOffset = startOffset + value.length;\n this.bumpTo(endOffset);\n var endPosition = this.clonePosition();\n var location = createLocation(startingPosition, endPosition);\n return { value: value, location: location };\n };\n Parser.prototype.parseArgumentOptions = function (nestingLevel, expectingCloseTag, value, openingBracePosition) {\n var _a;\n // Parse this range:\n // {name, type, style}\n // ^---^\n var typeStartPosition = this.clonePosition();\n var argType = this.parseIdentifierIfPossible().value;\n var typeEndPosition = this.clonePosition();\n switch (argType) {\n case '':\n // Expecting a style string number, date, time, plural, selectordinal, or select.\n return this.error(ErrorKind.EXPECT_ARGUMENT_TYPE, createLocation(typeStartPosition, typeEndPosition));\n case 'number':\n case 'date':\n case 'time': {\n // Parse this range:\n // {name, number, style}\n // ^-------^\n this.bumpSpace();\n var styleAndLocation = null;\n if (this.bumpIf(',')) {\n this.bumpSpace();\n var styleStartPosition = this.clonePosition();\n var result = this.parseSimpleArgStyleIfPossible();\n if (result.err) {\n return result;\n }\n var style = trimEnd(result.val);\n if (style.length === 0) {\n return this.error(ErrorKind.EXPECT_ARGUMENT_STYLE, createLocation(this.clonePosition(), this.clonePosition()));\n }\n var styleLocation = createLocation(styleStartPosition, this.clonePosition());\n styleAndLocation = { style: style, styleLocation: styleLocation };\n }\n var argCloseResult = this.tryParseArgumentClose(openingBracePosition);\n if (argCloseResult.err) {\n return argCloseResult;\n }\n var location_1 = createLocation(openingBracePosition, this.clonePosition());\n // Extract style or skeleton\n if (styleAndLocation && startsWith(styleAndLocation === null || styleAndLocation === void 0 ? void 0 : styleAndLocation.style, '::', 0)) {\n // Skeleton starts with `::`.\n var skeleton = trimStart(styleAndLocation.style.slice(2));\n if (argType === 'number') {\n var result = this.parseNumberSkeletonFromString(skeleton, styleAndLocation.styleLocation);\n if (result.err) {\n return result;\n }\n return {\n val: { type: TYPE.number, value: value, location: location_1, style: result.val },\n err: null,\n };\n }\n else {\n if (skeleton.length === 0) {\n return this.error(ErrorKind.EXPECT_DATE_TIME_SKELETON, location_1);\n }\n var dateTimePattern = skeleton;\n // Get \"best match\" pattern only if locale is passed, if not, let it\n // pass as-is where `parseDateTimeSkeleton()` will throw an error\n // for unsupported patterns.\n if (this.locale) {\n dateTimePattern = getBestPattern(skeleton, this.locale);\n }\n var style = {\n type: SKELETON_TYPE.dateTime,\n pattern: dateTimePattern,\n location: styleAndLocation.styleLocation,\n parsedOptions: this.shouldParseSkeletons\n ? parseDateTimeSkeleton(dateTimePattern)\n : {},\n };\n var type = argType === 'date' ? TYPE.date : TYPE.time;\n return {\n val: { type: type, value: value, location: location_1, style: style },\n err: null,\n };\n }\n }\n // Regular style or no style.\n return {\n val: {\n type: argType === 'number'\n ? TYPE.number\n : argType === 'date'\n ? TYPE.date\n : TYPE.time,\n value: value,\n location: location_1,\n style: (_a = styleAndLocation === null || styleAndLocation === void 0 ? void 0 : styleAndLocation.style) !== null && _a !== void 0 ? _a : null,\n },\n err: null,\n };\n }\n case 'plural':\n case 'selectordinal':\n case 'select': {\n // Parse this range:\n // {name, plural, options}\n // ^---------^\n var typeEndPosition_1 = this.clonePosition();\n this.bumpSpace();\n if (!this.bumpIf(',')) {\n return this.error(ErrorKind.EXPECT_SELECT_ARGUMENT_OPTIONS, createLocation(typeEndPosition_1, __assign({}, typeEndPosition_1)));\n }\n this.bumpSpace();\n // Parse offset:\n // {name, plural, offset:1, options}\n // ^-----^\n //\n // or the first option:\n //\n // {name, plural, one {...} other {...}}\n // ^--^\n var identifierAndLocation = this.parseIdentifierIfPossible();\n var pluralOffset = 0;\n if (argType !== 'select' && identifierAndLocation.value === 'offset') {\n if (!this.bumpIf(':')) {\n return this.error(ErrorKind.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE, createLocation(this.clonePosition(), this.clonePosition()));\n }\n this.bumpSpace();\n var result = this.tryParseDecimalInteger(ErrorKind.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE, ErrorKind.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE);\n if (result.err) {\n return result;\n }\n // Parse another identifier for option parsing\n this.bumpSpace();\n identifierAndLocation = this.parseIdentifierIfPossible();\n pluralOffset = result.val;\n }\n var optionsResult = this.tryParsePluralOrSelectOptions(nestingLevel, argType, expectingCloseTag, identifierAndLocation);\n if (optionsResult.err) {\n return optionsResult;\n }\n var argCloseResult = this.tryParseArgumentClose(openingBracePosition);\n if (argCloseResult.err) {\n return argCloseResult;\n }\n var location_2 = createLocation(openingBracePosition, this.clonePosition());\n if (argType === 'select') {\n return {\n val: {\n type: TYPE.select,\n value: value,\n options: fromEntries(optionsResult.val),\n location: location_2,\n },\n err: null,\n };\n }\n else {\n return {\n val: {\n type: TYPE.plural,\n value: value,\n options: fromEntries(optionsResult.val),\n offset: pluralOffset,\n pluralType: argType === 'plural' ? 'cardinal' : 'ordinal',\n location: location_2,\n },\n err: null,\n };\n }\n }\n default:\n return this.error(ErrorKind.INVALID_ARGUMENT_TYPE, createLocation(typeStartPosition, typeEndPosition));\n }\n };\n Parser.prototype.tryParseArgumentClose = function (openingBracePosition) {\n // Parse: {value, number, ::currency/GBP }\n //\n if (this.isEOF() || this.char() !== 125 /* `}` */) {\n return this.error(ErrorKind.EXPECT_ARGUMENT_CLOSING_BRACE, createLocation(openingBracePosition, this.clonePosition()));\n }\n this.bump(); // `}`\n return { val: true, err: null };\n };\n /**\n * See: https://github.com/unicode-org/icu/blob/af7ed1f6d2298013dc303628438ec4abe1f16479/icu4c/source/common/messagepattern.cpp#L659\n */\n Parser.prototype.parseSimpleArgStyleIfPossible = function () {\n var nestedBraces = 0;\n var startPosition = this.clonePosition();\n while (!this.isEOF()) {\n var ch = this.char();\n switch (ch) {\n case 39 /* `'` */: {\n // Treat apostrophe as quoting but include it in the style part.\n // Find the end of the quoted literal text.\n this.bump();\n var apostrophePosition = this.clonePosition();\n if (!this.bumpUntil(\"'\")) {\n return this.error(ErrorKind.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE, createLocation(apostrophePosition, this.clonePosition()));\n }\n this.bump();\n break;\n }\n case 123 /* `{` */: {\n nestedBraces += 1;\n this.bump();\n break;\n }\n case 125 /* `}` */: {\n if (nestedBraces > 0) {\n nestedBraces -= 1;\n }\n else {\n return {\n val: this.message.slice(startPosition.offset, this.offset()),\n err: null,\n };\n }\n break;\n }\n default:\n this.bump();\n break;\n }\n }\n return {\n val: this.message.slice(startPosition.offset, this.offset()),\n err: null,\n };\n };\n Parser.prototype.parseNumberSkeletonFromString = function (skeleton, location) {\n var tokens = [];\n try {\n tokens = parseNumberSkeletonFromString(skeleton);\n }\n catch (e) {\n return this.error(ErrorKind.INVALID_NUMBER_SKELETON, location);\n }\n return {\n val: {\n type: SKELETON_TYPE.number,\n tokens: tokens,\n location: location,\n parsedOptions: this.shouldParseSkeletons\n ? parseNumberSkeleton(tokens)\n : {},\n },\n err: null,\n };\n };\n /**\n * @param nesting_level The current nesting level of messages.\n * This can be positive when parsing message fragment in select or plural argument options.\n * @param parent_arg_type The parent argument's type.\n * @param parsed_first_identifier If provided, this is the first identifier-like selector of\n * the argument. It is a by-product of a previous parsing attempt.\n * @param expecting_close_tag If true, this message is directly or indirectly nested inside\n * between a pair of opening and closing tags. The nested message will not parse beyond\n * the closing tag boundary.\n */\n Parser.prototype.tryParsePluralOrSelectOptions = function (nestingLevel, parentArgType, expectCloseTag, parsedFirstIdentifier) {\n var _a;\n var hasOtherClause = false;\n var options = [];\n var parsedSelectors = new Set();\n var selector = parsedFirstIdentifier.value, selectorLocation = parsedFirstIdentifier.location;\n // Parse:\n // one {one apple}\n // ^--^\n while (true) {\n if (selector.length === 0) {\n var startPosition = this.clonePosition();\n if (parentArgType !== 'select' && this.bumpIf('=')) {\n // Try parse `={number}` selector\n var result = this.tryParseDecimalInteger(ErrorKind.EXPECT_PLURAL_ARGUMENT_SELECTOR, ErrorKind.INVALID_PLURAL_ARGUMENT_SELECTOR);\n if (result.err) {\n return result;\n }\n selectorLocation = createLocation(startPosition, this.clonePosition());\n selector = this.message.slice(startPosition.offset, this.offset());\n }\n else {\n break;\n }\n }\n // Duplicate selector clauses\n if (parsedSelectors.has(selector)) {\n return this.error(parentArgType === 'select'\n ? ErrorKind.DUPLICATE_SELECT_ARGUMENT_SELECTOR\n : ErrorKind.DUPLICATE_PLURAL_ARGUMENT_SELECTOR, selectorLocation);\n }\n if (selector === 'other') {\n hasOtherClause = true;\n }\n // Parse:\n // one {one apple}\n // ^----------^\n this.bumpSpace();\n var openingBracePosition = this.clonePosition();\n if (!this.bumpIf('{')) {\n return this.error(parentArgType === 'select'\n ? ErrorKind.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT\n : ErrorKind.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT, createLocation(this.clonePosition(), this.clonePosition()));\n }\n var fragmentResult = this.parseMessage(nestingLevel + 1, parentArgType, expectCloseTag);\n if (fragmentResult.err) {\n return fragmentResult;\n }\n var argCloseResult = this.tryParseArgumentClose(openingBracePosition);\n if (argCloseResult.err) {\n return argCloseResult;\n }\n options.push([\n selector,\n {\n value: fragmentResult.val,\n location: createLocation(openingBracePosition, this.clonePosition()),\n },\n ]);\n // Keep track of the existing selectors\n parsedSelectors.add(selector);\n // Prep next selector clause.\n this.bumpSpace();\n (_a = this.parseIdentifierIfPossible(), selector = _a.value, selectorLocation = _a.location);\n }\n if (options.length === 0) {\n return this.error(parentArgType === 'select'\n ? ErrorKind.EXPECT_SELECT_ARGUMENT_SELECTOR\n : ErrorKind.EXPECT_PLURAL_ARGUMENT_SELECTOR, createLocation(this.clonePosition(), this.clonePosition()));\n }\n if (this.requiresOtherClause && !hasOtherClause) {\n return this.error(ErrorKind.MISSING_OTHER_CLAUSE, createLocation(this.clonePosition(), this.clonePosition()));\n }\n return { val: options, err: null };\n };\n Parser.prototype.tryParseDecimalInteger = function (expectNumberError, invalidNumberError) {\n var sign = 1;\n var startingPosition = this.clonePosition();\n if (this.bumpIf('+')) {\n }\n else if (this.bumpIf('-')) {\n sign = -1;\n }\n var hasDigits = false;\n var decimal = 0;\n while (!this.isEOF()) {\n var ch = this.char();\n if (ch >= 48 /* `0` */ && ch <= 57 /* `9` */) {\n hasDigits = true;\n decimal = decimal * 10 + (ch - 48);\n this.bump();\n }\n else {\n break;\n }\n }\n var location = createLocation(startingPosition, this.clonePosition());\n if (!hasDigits) {\n return this.error(expectNumberError, location);\n }\n decimal *= sign;\n if (!isSafeInteger(decimal)) {\n return this.error(invalidNumberError, location);\n }\n return { val: decimal, err: null };\n };\n Parser.prototype.offset = function () {\n return this.position.offset;\n };\n Parser.prototype.isEOF = function () {\n return this.offset() === this.message.length;\n };\n Parser.prototype.clonePosition = function () {\n // This is much faster than `Object.assign` or spread.\n return {\n offset: this.position.offset,\n line: this.position.line,\n column: this.position.column,\n };\n };\n /**\n * Return the code point at the current position of the parser.\n * Throws if the index is out of bound.\n */\n Parser.prototype.char = function () {\n var offset = this.position.offset;\n if (offset >= this.message.length) {\n throw Error('out of bound');\n }\n var code = codePointAt(this.message, offset);\n if (code === undefined) {\n throw Error(\"Offset \".concat(offset, \" is at invalid UTF-16 code unit boundary\"));\n }\n return code;\n };\n Parser.prototype.error = function (kind, location) {\n return {\n val: null,\n err: {\n kind: kind,\n message: this.message,\n location: location,\n },\n };\n };\n /** Bump the parser to the next UTF-16 code unit. */\n Parser.prototype.bump = function () {\n if (this.isEOF()) {\n return;\n }\n var code = this.char();\n if (code === 10 /* '\\n' */) {\n this.position.line += 1;\n this.position.column = 1;\n this.position.offset += 1;\n }\n else {\n this.position.column += 1;\n // 0 ~ 0x10000 -> unicode BMP, otherwise skip the surrogate pair.\n this.position.offset += code < 0x10000 ? 1 : 2;\n }\n };\n /**\n * If the substring starting at the current position of the parser has\n * the given prefix, then bump the parser to the character immediately\n * following the prefix and return true. Otherwise, don't bump the parser\n * and return false.\n */\n Parser.prototype.bumpIf = function (prefix) {\n if (startsWith(this.message, prefix, this.offset())) {\n for (var i = 0; i < prefix.length; i++) {\n this.bump();\n }\n return true;\n }\n return false;\n };\n /**\n * Bump the parser until the pattern character is found and return `true`.\n * Otherwise bump to the end of the file and return `false`.\n */\n Parser.prototype.bumpUntil = function (pattern) {\n var currentOffset = this.offset();\n var index = this.message.indexOf(pattern, currentOffset);\n if (index >= 0) {\n this.bumpTo(index);\n return true;\n }\n else {\n this.bumpTo(this.message.length);\n return false;\n }\n };\n /**\n * Bump the parser to the target offset.\n * If target offset is beyond the end of the input, bump the parser to the end of the input.\n */\n Parser.prototype.bumpTo = function (targetOffset) {\n if (this.offset() > targetOffset) {\n throw Error(\"targetOffset \".concat(targetOffset, \" must be greater than or equal to the current offset \").concat(this.offset()));\n }\n targetOffset = Math.min(targetOffset, this.message.length);\n while (true) {\n var offset = this.offset();\n if (offset === targetOffset) {\n break;\n }\n if (offset > targetOffset) {\n throw Error(\"targetOffset \".concat(targetOffset, \" is at invalid UTF-16 code unit boundary\"));\n }\n this.bump();\n if (this.isEOF()) {\n break;\n }\n }\n };\n /** advance the parser through all whitespace to the next non-whitespace code unit. */\n Parser.prototype.bumpSpace = function () {\n while (!this.isEOF() && _isWhiteSpace(this.char())) {\n this.bump();\n }\n };\n /**\n * Peek at the *next* Unicode codepoint in the input without advancing the parser.\n * If the input has been exhausted, then this returns null.\n */\n Parser.prototype.peek = function () {\n if (this.isEOF()) {\n return null;\n }\n var code = this.char();\n var offset = this.offset();\n var nextCode = this.message.charCodeAt(offset + (code >= 0x10000 ? 2 : 1));\n return nextCode !== null && nextCode !== void 0 ? nextCode : null;\n };\n return Parser;\n}());\nexport { Parser };\n/**\n * This check if codepoint is alphabet (lower & uppercase)\n * @param codepoint\n * @returns\n */\nfunction _isAlpha(codepoint) {\n return ((codepoint >= 97 && codepoint <= 122) ||\n (codepoint >= 65 && codepoint <= 90));\n}\nfunction _isAlphaOrSlash(codepoint) {\n return _isAlpha(codepoint) || codepoint === 47; /* '/' */\n}\n/** See `parseTag` function docs. */\nfunction _isPotentialElementNameChar(c) {\n return (c === 45 /* '-' */ ||\n c === 46 /* '.' */ ||\n (c >= 48 && c <= 57) /* 0..9 */ ||\n c === 95 /* '_' */ ||\n (c >= 97 && c <= 122) /** a..z */ ||\n (c >= 65 && c <= 90) /* A..Z */ ||\n c == 0xb7 ||\n (c >= 0xc0 && c <= 0xd6) ||\n (c >= 0xd8 && c <= 0xf6) ||\n (c >= 0xf8 && c <= 0x37d) ||\n (c >= 0x37f && c <= 0x1fff) ||\n (c >= 0x200c && c <= 0x200d) ||\n (c >= 0x203f && c <= 0x2040) ||\n (c >= 0x2070 && c <= 0x218f) ||\n (c >= 0x2c00 && c <= 0x2fef) ||\n (c >= 0x3001 && c <= 0xd7ff) ||\n (c >= 0xf900 && c <= 0xfdcf) ||\n (c >= 0xfdf0 && c <= 0xfffd) ||\n (c >= 0x10000 && c <= 0xeffff));\n}\n/**\n * Code point equivalent of regex `\\p{White_Space}`.\n * From: https://www.unicode.org/Public/UCD/latest/ucd/PropList.txt\n */\nfunction _isWhiteSpace(c) {\n return ((c >= 0x0009 && c <= 0x000d) ||\n c === 0x0020 ||\n c === 0x0085 ||\n (c >= 0x200e && c <= 0x200f) ||\n c === 0x2028 ||\n c === 0x2029);\n}\n/**\n * Code point equivalent of regex `\\p{Pattern_Syntax}`.\n * See https://www.unicode.org/Public/UCD/latest/ucd/PropList.txt\n */\nfunction _isPatternSyntax(c) {\n return ((c >= 0x0021 && c <= 0x0023) ||\n c === 0x0024 ||\n (c >= 0x0025 && c <= 0x0027) ||\n c === 0x0028 ||\n c === 0x0029 ||\n c === 0x002a ||\n c === 0x002b ||\n c === 0x002c ||\n c === 0x002d ||\n (c >= 0x002e && c <= 0x002f) ||\n (c >= 0x003a && c <= 0x003b) ||\n (c >= 0x003c && c <= 0x003e) ||\n (c >= 0x003f && c <= 0x0040) ||\n c === 0x005b ||\n c === 0x005c ||\n c === 0x005d ||\n c === 0x005e ||\n c === 0x0060 ||\n c === 0x007b ||\n c === 0x007c ||\n c === 0x007d ||\n c === 0x007e ||\n c === 0x00a1 ||\n (c >= 0x00a2 && c <= 0x00a5) ||\n c === 0x00a6 ||\n c === 0x00a7 ||\n c === 0x00a9 ||\n c === 0x00ab ||\n c === 0x00ac ||\n c === 0x00ae ||\n c === 0x00b0 ||\n c === 0x00b1 ||\n c === 0x00b6 ||\n c === 0x00bb ||\n c === 0x00bf ||\n c === 0x00d7 ||\n c === 0x00f7 ||\n (c >= 0x2010 && c <= 0x2015) ||\n (c >= 0x2016 && c <= 0x2017) ||\n c === 0x2018 ||\n c === 0x2019 ||\n c === 0x201a ||\n (c >= 0x201b && c <= 0x201c) ||\n c === 0x201d ||\n c === 0x201e ||\n c === 0x201f ||\n (c >= 0x2020 && c <= 0x2027) ||\n (c >= 0x2030 && c <= 0x2038) ||\n c === 0x2039 ||\n c === 0x203a ||\n (c >= 0x203b && c <= 0x203e) ||\n (c >= 0x2041 && c <= 0x2043) ||\n c === 0x2044 ||\n c === 0x2045 ||\n c === 0x2046 ||\n (c >= 0x2047 && c <= 0x2051) ||\n c === 0x2052 ||\n c === 0x2053 ||\n (c >= 0x2055 && c <= 0x205e) ||\n (c >= 0x2190 && c <= 0x2194) ||\n (c >= 0x2195 && c <= 0x2199) ||\n (c >= 0x219a && c <= 0x219b) ||\n (c >= 0x219c && c <= 0x219f) ||\n c === 0x21a0 ||\n (c >= 0x21a1 && c <= 0x21a2) ||\n c === 0x21a3 ||\n (c >= 0x21a4 && c <= 0x21a5) ||\n c === 0x21a6 ||\n (c >= 0x21a7 && c <= 0x21ad) ||\n c === 0x21ae ||\n (c >= 0x21af && c <= 0x21cd) ||\n (c >= 0x21ce && c <= 0x21cf) ||\n (c >= 0x21d0 && c <= 0x21d1) ||\n c === 0x21d2 ||\n c === 0x21d3 ||\n c === 0x21d4 ||\n (c >= 0x21d5 && c <= 0x21f3) ||\n (c >= 0x21f4 && c <= 0x22ff) ||\n (c >= 0x2300 && c <= 0x2307) ||\n c === 0x2308 ||\n c === 0x2309 ||\n c === 0x230a ||\n c === 0x230b ||\n (c >= 0x230c && c <= 0x231f) ||\n (c >= 0x2320 && c <= 0x2321) ||\n (c >= 0x2322 && c <= 0x2328) ||\n c === 0x2329 ||\n c === 0x232a ||\n (c >= 0x232b && c <= 0x237b) ||\n c === 0x237c ||\n (c >= 0x237d && c <= 0x239a) ||\n (c >= 0x239b && c <= 0x23b3) ||\n (c >= 0x23b4 && c <= 0x23db) ||\n (c >= 0x23dc && c <= 0x23e1) ||\n (c >= 0x23e2 && c <= 0x2426) ||\n (c >= 0x2427 && c <= 0x243f) ||\n (c >= 0x2440 && c <= 0x244a) ||\n (c >= 0x244b && c <= 0x245f) ||\n (c >= 0x2500 && c <= 0x25b6) ||\n c === 0x25b7 ||\n (c >= 0x25b8 && c <= 0x25c0) ||\n c === 0x25c1 ||\n (c >= 0x25c2 && c <= 0x25f7) ||\n (c >= 0x25f8 && c <= 0x25ff) ||\n (c >= 0x2600 && c <= 0x266e) ||\n c === 0x266f ||\n (c >= 0x2670 && c <= 0x2767) ||\n c === 0x2768 ||\n c === 0x2769 ||\n c === 0x276a ||\n c === 0x276b ||\n c === 0x276c ||\n c === 0x276d ||\n c === 0x276e ||\n c === 0x276f ||\n c === 0x2770 ||\n c === 0x2771 ||\n c === 0x2772 ||\n c === 0x2773 ||\n c === 0x2774 ||\n c === 0x2775 ||\n (c >= 0x2794 && c <= 0x27bf) ||\n (c >= 0x27c0 && c <= 0x27c4) ||\n c === 0x27c5 ||\n c === 0x27c6 ||\n (c >= 0x27c7 && c <= 0x27e5) ||\n c === 0x27e6 ||\n c === 0x27e7 ||\n c === 0x27e8 ||\n c === 0x27e9 ||\n c === 0x27ea ||\n c === 0x27eb ||\n c === 0x27ec ||\n c === 0x27ed ||\n c === 0x27ee ||\n c === 0x27ef ||\n (c >= 0x27f0 && c <= 0x27ff) ||\n (c >= 0x2800 && c <= 0x28ff) ||\n (c >= 0x2900 && c <= 0x2982) ||\n c === 0x2983 ||\n c === 0x2984 ||\n c === 0x2985 ||\n c === 0x2986 ||\n c === 0x2987 ||\n c === 0x2988 ||\n c === 0x2989 ||\n c === 0x298a ||\n c === 0x298b ||\n c === 0x298c ||\n c === 0x298d ||\n c === 0x298e ||\n c === 0x298f ||\n c === 0x2990 ||\n c === 0x2991 ||\n c === 0x2992 ||\n c === 0x2993 ||\n c === 0x2994 ||\n c === 0x2995 ||\n c === 0x2996 ||\n c === 0x2997 ||\n c === 0x2998 ||\n (c >= 0x2999 && c <= 0x29d7) ||\n c === 0x29d8 ||\n c === 0x29d9 ||\n c === 0x29da ||\n c === 0x29db ||\n (c >= 0x29dc && c <= 0x29fb) ||\n c === 0x29fc ||\n c === 0x29fd ||\n (c >= 0x29fe && c <= 0x2aff) ||\n (c >= 0x2b00 && c <= 0x2b2f) ||\n (c >= 0x2b30 && c <= 0x2b44) ||\n (c >= 0x2b45 && c <= 0x2b46) ||\n (c >= 0x2b47 && c <= 0x2b4c) ||\n (c >= 0x2b4d && c <= 0x2b73) ||\n (c >= 0x2b74 && c <= 0x2b75) ||\n (c >= 0x2b76 && c <= 0x2b95) ||\n c === 0x2b96 ||\n (c >= 0x2b97 && c <= 0x2bff) ||\n (c >= 0x2e00 && c <= 0x2e01) ||\n c === 0x2e02 ||\n c === 0x2e03 ||\n c === 0x2e04 ||\n c === 0x2e05 ||\n (c >= 0x2e06 && c <= 0x2e08) ||\n c === 0x2e09 ||\n c === 0x2e0a ||\n c === 0x2e0b ||\n c === 0x2e0c ||\n c === 0x2e0d ||\n (c >= 0x2e0e && c <= 0x2e16) ||\n c === 0x2e17 ||\n (c >= 0x2e18 && c <= 0x2e19) ||\n c === 0x2e1a ||\n c === 0x2e1b ||\n c === 0x2e1c ||\n c === 0x2e1d ||\n (c >= 0x2e1e && c <= 0x2e1f) ||\n c === 0x2e20 ||\n c === 0x2e21 ||\n c === 0x2e22 ||\n c === 0x2e23 ||\n c === 0x2e24 ||\n c === 0x2e25 ||\n c === 0x2e26 ||\n c === 0x2e27 ||\n c === 0x2e28 ||\n c === 0x2e29 ||\n (c >= 0x2e2a && c <= 0x2e2e) ||\n c === 0x2e2f ||\n (c >= 0x2e30 && c <= 0x2e39) ||\n (c >= 0x2e3a && c <= 0x2e3b) ||\n (c >= 0x2e3c && c <= 0x2e3f) ||\n c === 0x2e40 ||\n c === 0x2e41 ||\n c === 0x2e42 ||\n (c >= 0x2e43 && c <= 0x2e4f) ||\n (c >= 0x2e50 && c <= 0x2e51) ||\n c === 0x2e52 ||\n (c >= 0x2e53 && c <= 0x2e7f) ||\n (c >= 0x3001 && c <= 0x3003) ||\n c === 0x3008 ||\n c === 0x3009 ||\n c === 0x300a ||\n c === 0x300b ||\n c === 0x300c ||\n c === 0x300d ||\n c === 0x300e ||\n c === 0x300f ||\n c === 0x3010 ||\n c === 0x3011 ||\n (c >= 0x3012 && c <= 0x3013) ||\n c === 0x3014 ||\n c === 0x3015 ||\n c === 0x3016 ||\n c === 0x3017 ||\n c === 0x3018 ||\n c === 0x3019 ||\n c === 0x301a ||\n c === 0x301b ||\n c === 0x301c ||\n c === 0x301d ||\n (c >= 0x301e && c <= 0x301f) ||\n c === 0x3020 ||\n c === 0x3030 ||\n c === 0xfd3e ||\n c === 0xfd3f ||\n (c >= 0xfe45 && c <= 0xfe46));\n}\n","import { __assign } from \"tslib\";\nimport { ErrorKind } from './error';\nimport { Parser } from './parser';\nimport { isDateElement, isDateTimeSkeleton, isNumberElement, isNumberSkeleton, isPluralElement, isSelectElement, isTagElement, isTimeElement, } from './types';\nfunction pruneLocation(els) {\n els.forEach(function (el) {\n delete el.location;\n if (isSelectElement(el) || isPluralElement(el)) {\n for (var k in el.options) {\n delete el.options[k].location;\n pruneLocation(el.options[k].value);\n }\n }\n else if (isNumberElement(el) && isNumberSkeleton(el.style)) {\n delete el.style.location;\n }\n else if ((isDateElement(el) || isTimeElement(el)) &&\n isDateTimeSkeleton(el.style)) {\n delete el.style.location;\n }\n else if (isTagElement(el)) {\n pruneLocation(el.children);\n }\n });\n}\nexport function parse(message, opts) {\n if (opts === void 0) { opts = {}; }\n opts = __assign({ shouldParseSkeletons: true, requiresOtherClause: true }, opts);\n var result = new Parser(message, opts).parse();\n if (result.err) {\n var error = SyntaxError(ErrorKind[result.err.kind]);\n // @ts-expect-error Assign to error object\n error.location = result.err.location;\n // @ts-expect-error Assign to error object\n error.originalMessage = result.err.message;\n throw error;\n }\n if (!(opts === null || opts === void 0 ? void 0 : opts.captureLocation)) {\n pruneLocation(result.val);\n }\n return result.val;\n}\nexport * from './types';\n","//\n// Main\n//\nexport default function memoize(fn, options) {\n var cache = options && options.cache ? options.cache : cacheDefault;\n var serializer = options && options.serializer ? options.serializer : serializerDefault;\n var strategy = options && options.strategy ? options.strategy : strategyDefault;\n return strategy(fn, {\n cache: cache,\n serializer: serializer,\n });\n}\n//\n// Strategy\n//\nfunction isPrimitive(value) {\n return (value == null || typeof value === 'number' || typeof value === 'boolean'); // || typeof value === \"string\" 'unsafe' primitive for our needs\n}\nfunction monadic(fn, cache, serializer, arg) {\n var cacheKey = isPrimitive(arg) ? arg : serializer(arg);\n var computedValue = cache.get(cacheKey);\n if (typeof computedValue === 'undefined') {\n computedValue = fn.call(this, arg);\n cache.set(cacheKey, computedValue);\n }\n return computedValue;\n}\nfunction variadic(fn, cache, serializer) {\n var args = Array.prototype.slice.call(arguments, 3);\n var cacheKey = serializer(args);\n var computedValue = cache.get(cacheKey);\n if (typeof computedValue === 'undefined') {\n computedValue = fn.apply(this, args);\n cache.set(cacheKey, computedValue);\n }\n return computedValue;\n}\nfunction assemble(fn, context, strategy, cache, serialize) {\n return strategy.bind(context, fn, cache, serialize);\n}\nfunction strategyDefault(fn, options) {\n var strategy = fn.length === 1 ? monadic : variadic;\n return assemble(fn, this, strategy, options.cache.create(), options.serializer);\n}\nfunction strategyVariadic(fn, options) {\n return assemble(fn, this, variadic, options.cache.create(), options.serializer);\n}\nfunction strategyMonadic(fn, options) {\n return assemble(fn, this, monadic, options.cache.create(), options.serializer);\n}\n//\n// Serializer\n//\nvar serializerDefault = function () {\n return JSON.stringify(arguments);\n};\n//\n// Cache\n//\nfunction ObjectWithoutPrototypeCache() {\n this.cache = Object.create(null);\n}\nObjectWithoutPrototypeCache.prototype.get = function (key) {\n return this.cache[key];\n};\nObjectWithoutPrototypeCache.prototype.set = function (key, value) {\n this.cache[key] = value;\n};\nvar cacheDefault = {\n create: function create() {\n // @ts-ignore\n return new ObjectWithoutPrototypeCache();\n },\n};\nexport var strategies = {\n variadic: strategyVariadic,\n monadic: strategyMonadic,\n};\n","import { __extends } from \"tslib\";\nexport var ErrorCode;\n(function (ErrorCode) {\n // When we have a placeholder but no value to format\n ErrorCode[\"MISSING_VALUE\"] = \"MISSING_VALUE\";\n // When value supplied is invalid\n ErrorCode[\"INVALID_VALUE\"] = \"INVALID_VALUE\";\n // When we need specific Intl API but it's not available\n ErrorCode[\"MISSING_INTL_API\"] = \"MISSING_INTL_API\";\n})(ErrorCode || (ErrorCode = {}));\nvar FormatError = /** @class */ (function (_super) {\n __extends(FormatError, _super);\n function FormatError(msg, code, originalMessage) {\n var _this = _super.call(this, msg) || this;\n _this.code = code;\n _this.originalMessage = originalMessage;\n return _this;\n }\n FormatError.prototype.toString = function () {\n return \"[formatjs Error: \".concat(this.code, \"] \").concat(this.message);\n };\n return FormatError;\n}(Error));\nexport { FormatError };\nvar InvalidValueError = /** @class */ (function (_super) {\n __extends(InvalidValueError, _super);\n function InvalidValueError(variableId, value, options, originalMessage) {\n return _super.call(this, \"Invalid values for \\\"\".concat(variableId, \"\\\": \\\"\").concat(value, \"\\\". Options are \\\"\").concat(Object.keys(options).join('\", \"'), \"\\\"\"), ErrorCode.INVALID_VALUE, originalMessage) || this;\n }\n return InvalidValueError;\n}(FormatError));\nexport { InvalidValueError };\nvar InvalidValueTypeError = /** @class */ (function (_super) {\n __extends(InvalidValueTypeError, _super);\n function InvalidValueTypeError(value, type, originalMessage) {\n return _super.call(this, \"Value for \\\"\".concat(value, \"\\\" must be of type \").concat(type), ErrorCode.INVALID_VALUE, originalMessage) || this;\n }\n return InvalidValueTypeError;\n}(FormatError));\nexport { InvalidValueTypeError };\nvar MissingValueError = /** @class */ (function (_super) {\n __extends(MissingValueError, _super);\n function MissingValueError(variableId, originalMessage) {\n return _super.call(this, \"The intl string context variable \\\"\".concat(variableId, \"\\\" was not provided to the string \\\"\").concat(originalMessage, \"\\\"\"), ErrorCode.MISSING_VALUE, originalMessage) || this;\n }\n return MissingValueError;\n}(FormatError));\nexport { MissingValueError };\n","import { isArgumentElement, isDateElement, isDateTimeSkeleton, isLiteralElement, isNumberElement, isNumberSkeleton, isPluralElement, isPoundElement, isSelectElement, isTimeElement, isTagElement, } from '@formatjs/icu-messageformat-parser';\nimport { MissingValueError, InvalidValueError, ErrorCode, FormatError, InvalidValueTypeError, } from './error';\nexport var PART_TYPE;\n(function (PART_TYPE) {\n PART_TYPE[PART_TYPE[\"literal\"] = 0] = \"literal\";\n PART_TYPE[PART_TYPE[\"object\"] = 1] = \"object\";\n})(PART_TYPE || (PART_TYPE = {}));\nfunction mergeLiteral(parts) {\n if (parts.length < 2) {\n return parts;\n }\n return parts.reduce(function (all, part) {\n var lastPart = all[all.length - 1];\n if (!lastPart ||\n lastPart.type !== PART_TYPE.literal ||\n part.type !== PART_TYPE.literal) {\n all.push(part);\n }\n else {\n lastPart.value += part.value;\n }\n return all;\n }, []);\n}\nexport function isFormatXMLElementFn(el) {\n return typeof el === 'function';\n}\n// TODO(skeleton): add skeleton support\nexport function formatToParts(els, locales, formatters, formats, values, currentPluralValue, \n// For debugging\noriginalMessage) {\n // Hot path for straight simple msg translations\n if (els.length === 1 && isLiteralElement(els[0])) {\n return [\n {\n type: PART_TYPE.literal,\n value: els[0].value,\n },\n ];\n }\n var result = [];\n for (var _i = 0, els_1 = els; _i < els_1.length; _i++) {\n var el = els_1[_i];\n // Exit early for string parts.\n if (isLiteralElement(el)) {\n result.push({\n type: PART_TYPE.literal,\n value: el.value,\n });\n continue;\n }\n // TODO: should this part be literal type?\n // Replace `#` in plural rules with the actual numeric value.\n if (isPoundElement(el)) {\n if (typeof currentPluralValue === 'number') {\n result.push({\n type: PART_TYPE.literal,\n value: formatters.getNumberFormat(locales).format(currentPluralValue),\n });\n }\n continue;\n }\n var varName = el.value;\n // Enforce that all required values are provided by the caller.\n if (!(values && varName in values)) {\n throw new MissingValueError(varName, originalMessage);\n }\n var value = values[varName];\n if (isArgumentElement(el)) {\n if (!value || typeof value === 'string' || typeof value === 'number') {\n value =\n typeof value === 'string' || typeof value === 'number'\n ? String(value)\n : '';\n }\n result.push({\n type: typeof value === 'string' ? PART_TYPE.literal : PART_TYPE.object,\n value: value,\n });\n continue;\n }\n // Recursively format plural and select parts' option — which can be a\n // nested pattern structure. The choosing of the option to use is\n // abstracted-by and delegated-to the part helper object.\n if (isDateElement(el)) {\n var style = typeof el.style === 'string'\n ? formats.date[el.style]\n : isDateTimeSkeleton(el.style)\n ? el.style.parsedOptions\n : undefined;\n result.push({\n type: PART_TYPE.literal,\n value: formatters\n .getDateTimeFormat(locales, style)\n .format(value),\n });\n continue;\n }\n if (isTimeElement(el)) {\n var style = typeof el.style === 'string'\n ? formats.time[el.style]\n : isDateTimeSkeleton(el.style)\n ? el.style.parsedOptions\n : formats.time.medium;\n result.push({\n type: PART_TYPE.literal,\n value: formatters\n .getDateTimeFormat(locales, style)\n .format(value),\n });\n continue;\n }\n if (isNumberElement(el)) {\n var style = typeof el.style === 'string'\n ? formats.number[el.style]\n : isNumberSkeleton(el.style)\n ? el.style.parsedOptions\n : undefined;\n if (style && style.scale) {\n value =\n value *\n (style.scale || 1);\n }\n result.push({\n type: PART_TYPE.literal,\n value: formatters\n .getNumberFormat(locales, style)\n .format(value),\n });\n continue;\n }\n if (isTagElement(el)) {\n var children = el.children, value_1 = el.value;\n var formatFn = values[value_1];\n if (!isFormatXMLElementFn(formatFn)) {\n throw new InvalidValueTypeError(value_1, 'function', originalMessage);\n }\n var parts = formatToParts(children, locales, formatters, formats, values, currentPluralValue);\n var chunks = formatFn(parts.map(function (p) { return p.value; }));\n if (!Array.isArray(chunks)) {\n chunks = [chunks];\n }\n result.push.apply(result, chunks.map(function (c) {\n return {\n type: typeof c === 'string' ? PART_TYPE.literal : PART_TYPE.object,\n value: c,\n };\n }));\n }\n if (isSelectElement(el)) {\n var opt = el.options[value] || el.options.other;\n if (!opt) {\n throw new InvalidValueError(el.value, value, Object.keys(el.options), originalMessage);\n }\n result.push.apply(result, formatToParts(opt.value, locales, formatters, formats, values));\n continue;\n }\n if (isPluralElement(el)) {\n var opt = el.options[\"=\".concat(value)];\n if (!opt) {\n if (!Intl.PluralRules) {\n throw new FormatError(\"Intl.PluralRules is not available in this environment.\\nTry polyfilling it using \\\"@formatjs/intl-pluralrules\\\"\\n\", ErrorCode.MISSING_INTL_API, originalMessage);\n }\n var rule = formatters\n .getPluralRules(locales, { type: el.pluralType })\n .select(value - (el.offset || 0));\n opt = el.options[rule] || el.options.other;\n }\n if (!opt) {\n throw new InvalidValueError(el.value, value, Object.keys(el.options), originalMessage);\n }\n result.push.apply(result, formatToParts(opt.value, locales, formatters, formats, values, value - (el.offset || 0)));\n continue;\n }\n }\n return mergeLiteral(result);\n}\n","/*\nCopyright (c) 2014, Yahoo! Inc. All rights reserved.\nCopyrights licensed under the New BSD License.\nSee the accompanying LICENSE file for terms.\n*/\nimport { __assign, __spreadArray } from \"tslib\";\nimport { parse } from '@formatjs/icu-messageformat-parser';\nimport memoize, { strategies } from '@formatjs/fast-memoize';\nimport { formatToParts, PART_TYPE, } from './formatters';\n// -- MessageFormat --------------------------------------------------------\nfunction mergeConfig(c1, c2) {\n if (!c2) {\n return c1;\n }\n return __assign(__assign(__assign({}, (c1 || {})), (c2 || {})), Object.keys(c1).reduce(function (all, k) {\n all[k] = __assign(__assign({}, c1[k]), (c2[k] || {}));\n return all;\n }, {}));\n}\nfunction mergeConfigs(defaultConfig, configs) {\n if (!configs) {\n return defaultConfig;\n }\n return Object.keys(defaultConfig).reduce(function (all, k) {\n all[k] = mergeConfig(defaultConfig[k], configs[k]);\n return all;\n }, __assign({}, defaultConfig));\n}\nfunction createFastMemoizeCache(store) {\n return {\n create: function () {\n return {\n get: function (key) {\n return store[key];\n },\n set: function (key, value) {\n store[key] = value;\n },\n };\n },\n };\n}\nfunction createDefaultFormatters(cache) {\n if (cache === void 0) { cache = {\n number: {},\n dateTime: {},\n pluralRules: {},\n }; }\n return {\n getNumberFormat: memoize(function () {\n var _a;\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n return new ((_a = Intl.NumberFormat).bind.apply(_a, __spreadArray([void 0], args, false)))();\n }, {\n cache: createFastMemoizeCache(cache.number),\n strategy: strategies.variadic,\n }),\n getDateTimeFormat: memoize(function () {\n var _a;\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n return new ((_a = Intl.DateTimeFormat).bind.apply(_a, __spreadArray([void 0], args, false)))();\n }, {\n cache: createFastMemoizeCache(cache.dateTime),\n strategy: strategies.variadic,\n }),\n getPluralRules: memoize(function () {\n var _a;\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n return new ((_a = Intl.PluralRules).bind.apply(_a, __spreadArray([void 0], args, false)))();\n }, {\n cache: createFastMemoizeCache(cache.pluralRules),\n strategy: strategies.variadic,\n }),\n };\n}\nvar IntlMessageFormat = /** @class */ (function () {\n function IntlMessageFormat(message, locales, overrideFormats, opts) {\n var _this = this;\n if (locales === void 0) { locales = IntlMessageFormat.defaultLocale; }\n this.formatterCache = {\n number: {},\n dateTime: {},\n pluralRules: {},\n };\n this.format = function (values) {\n var parts = _this.formatToParts(values);\n // Hot path for straight simple msg translations\n if (parts.length === 1) {\n return parts[0].value;\n }\n var result = parts.reduce(function (all, part) {\n if (!all.length ||\n part.type !== PART_TYPE.literal ||\n typeof all[all.length - 1] !== 'string') {\n all.push(part.value);\n }\n else {\n all[all.length - 1] += part.value;\n }\n return all;\n }, []);\n if (result.length <= 1) {\n return result[0] || '';\n }\n return result;\n };\n this.formatToParts = function (values) {\n return formatToParts(_this.ast, _this.locales, _this.formatters, _this.formats, values, undefined, _this.message);\n };\n this.resolvedOptions = function () { return ({\n locale: _this.resolvedLocale.toString(),\n }); };\n this.getAst = function () { return _this.ast; };\n // Defined first because it's used to build the format pattern.\n this.locales = locales;\n this.resolvedLocale = IntlMessageFormat.resolveLocale(locales);\n if (typeof message === 'string') {\n this.message = message;\n if (!IntlMessageFormat.__parse) {\n throw new TypeError('IntlMessageFormat.__parse must be set to process `message` of type `string`');\n }\n // Parse string messages into an AST.\n this.ast = IntlMessageFormat.__parse(message, {\n ignoreTag: opts === null || opts === void 0 ? void 0 : opts.ignoreTag,\n locale: this.resolvedLocale,\n });\n }\n else {\n this.ast = message;\n }\n if (!Array.isArray(this.ast)) {\n throw new TypeError('A message must be provided as a String or AST.');\n }\n // Creates a new object with the specified `formats` merged with the default\n // formats.\n this.formats = mergeConfigs(IntlMessageFormat.formats, overrideFormats);\n this.formatters =\n (opts && opts.formatters) || createDefaultFormatters(this.formatterCache);\n }\n Object.defineProperty(IntlMessageFormat, \"defaultLocale\", {\n get: function () {\n if (!IntlMessageFormat.memoizedDefaultLocale) {\n IntlMessageFormat.memoizedDefaultLocale =\n new Intl.NumberFormat().resolvedOptions().locale;\n }\n return IntlMessageFormat.memoizedDefaultLocale;\n },\n enumerable: false,\n configurable: true\n });\n IntlMessageFormat.memoizedDefaultLocale = null;\n IntlMessageFormat.resolveLocale = function (locales) {\n var supportedLocales = Intl.NumberFormat.supportedLocalesOf(locales);\n if (supportedLocales.length > 0) {\n return new Intl.Locale(supportedLocales[0]);\n }\n return new Intl.Locale(typeof locales === 'string' ? locales : locales[0]);\n };\n IntlMessageFormat.__parse = parse;\n // Default format options used as the prototype of the `formats` provided to the\n // constructor. These are used when constructing the internal Intl.NumberFormat\n // and Intl.DateTimeFormat instances.\n IntlMessageFormat.formats = {\n number: {\n integer: {\n maximumFractionDigits: 0,\n },\n currency: {\n style: 'currency',\n },\n percent: {\n style: 'percent',\n },\n },\n date: {\n short: {\n month: 'numeric',\n day: 'numeric',\n year: '2-digit',\n },\n medium: {\n month: 'short',\n day: 'numeric',\n year: 'numeric',\n },\n long: {\n month: 'long',\n day: 'numeric',\n year: 'numeric',\n },\n full: {\n weekday: 'long',\n month: 'long',\n day: 'numeric',\n year: 'numeric',\n },\n },\n time: {\n short: {\n hour: 'numeric',\n minute: 'numeric',\n },\n medium: {\n hour: 'numeric',\n minute: 'numeric',\n second: 'numeric',\n },\n long: {\n hour: 'numeric',\n minute: 'numeric',\n second: 'numeric',\n timeZoneName: 'short',\n },\n full: {\n hour: 'numeric',\n minute: 'numeric',\n second: 'numeric',\n timeZoneName: 'short',\n },\n },\n };\n return IntlMessageFormat;\n}());\nexport { IntlMessageFormat };\n","import { writable, derived } from 'svelte/store';\nimport deepmerge from 'deepmerge';\nimport { IntlMessageFormat } from 'intl-messageformat';\n\nfunction delve(obj, fullKey) {\n if (fullKey == null)\n return void 0;\n if (fullKey in obj) {\n return obj[fullKey];\n }\n const keys = fullKey.split(\".\");\n let result = obj;\n for (let p = 0; p < keys.length; p++) {\n if (typeof result === \"object\") {\n if (p > 0) {\n const partialKey = keys.slice(p, keys.length).join(\".\");\n if (partialKey in result) {\n result = result[partialKey];\n break;\n }\n }\n result = result[keys[p]];\n } else {\n result = void 0;\n }\n }\n return result;\n}\n\nconst lookupCache = {};\nconst addToCache = (path, locale, message) => {\n if (!message)\n return message;\n if (!(locale in lookupCache))\n lookupCache[locale] = {};\n if (!(path in lookupCache[locale]))\n lookupCache[locale][path] = message;\n return message;\n};\nconst lookup = (path, refLocale) => {\n if (refLocale == null)\n return void 0;\n if (refLocale in lookupCache && path in lookupCache[refLocale]) {\n return lookupCache[refLocale][path];\n }\n const locales = getPossibleLocales(refLocale);\n for (let i = 0; i < locales.length; i++) {\n const locale = locales[i];\n const message = getMessageFromDictionary(locale, path);\n if (message) {\n return addToCache(path, refLocale, message);\n }\n }\n return void 0;\n};\n\nlet dictionary;\nconst $dictionary = writable({});\nfunction getLocaleDictionary(locale) {\n return dictionary[locale] || null;\n}\nfunction hasLocaleDictionary(locale) {\n return locale in dictionary;\n}\nfunction getMessageFromDictionary(locale, id) {\n if (!hasLocaleDictionary(locale)) {\n return null;\n }\n const localeDictionary = getLocaleDictionary(locale);\n const match = delve(localeDictionary, id);\n return match;\n}\nfunction getClosestAvailableLocale(refLocale) {\n if (refLocale == null)\n return void 0;\n const relatedLocales = getPossibleLocales(refLocale);\n for (let i = 0; i < relatedLocales.length; i++) {\n const locale = relatedLocales[i];\n if (hasLocaleDictionary(locale)) {\n return locale;\n }\n }\n return void 0;\n}\nfunction addMessages(locale, ...partials) {\n delete lookupCache[locale];\n $dictionary.update((d) => {\n d[locale] = deepmerge.all([d[locale] || {}, ...partials]);\n return d;\n });\n}\nconst $locales = derived(\n [$dictionary],\n ([dictionary2]) => Object.keys(dictionary2)\n);\n$dictionary.subscribe((newDictionary) => dictionary = newDictionary);\n\nconst queue = {};\nfunction createLocaleQueue(locale) {\n queue[locale] = /* @__PURE__ */ new Set();\n}\nfunction removeLoaderFromQueue(locale, loader) {\n queue[locale].delete(loader);\n if (queue[locale].size === 0) {\n delete queue[locale];\n }\n}\nfunction getLocaleQueue(locale) {\n return queue[locale];\n}\nfunction getLocalesQueues(locale) {\n return getPossibleLocales(locale).map((localeItem) => {\n const localeQueue = getLocaleQueue(localeItem);\n return [localeItem, localeQueue ? [...localeQueue] : []];\n }).filter(([, localeQueue]) => localeQueue.length > 0);\n}\nfunction hasLocaleQueue(locale) {\n if (locale == null)\n return false;\n return getPossibleLocales(locale).some(\n (localeQueue) => {\n var _a;\n return (_a = getLocaleQueue(localeQueue)) == null ? void 0 : _a.size;\n }\n );\n}\nfunction loadLocaleQueue(locale, localeQueue) {\n const allLoadersPromise = Promise.all(\n localeQueue.map((loader) => {\n removeLoaderFromQueue(locale, loader);\n return loader().then((partial) => partial.default || partial);\n })\n );\n return allLoadersPromise.then((partials) => addMessages(locale, ...partials));\n}\nconst activeFlushes = {};\nfunction flush(locale) {\n if (!hasLocaleQueue(locale)) {\n if (locale in activeFlushes) {\n return activeFlushes[locale];\n }\n return Promise.resolve();\n }\n const queues = getLocalesQueues(locale);\n activeFlushes[locale] = Promise.all(\n queues.map(\n ([localeName, localeQueue]) => loadLocaleQueue(localeName, localeQueue)\n )\n ).then(() => {\n if (hasLocaleQueue(locale)) {\n return flush(locale);\n }\n delete activeFlushes[locale];\n });\n return activeFlushes[locale];\n}\nfunction registerLocaleLoader(locale, loader) {\n if (!getLocaleQueue(locale))\n createLocaleQueue(locale);\n const localeQueue = getLocaleQueue(locale);\n if (getLocaleQueue(locale).has(loader))\n return;\n if (!hasLocaleDictionary(locale)) {\n $dictionary.update((d) => {\n d[locale] = {};\n return d;\n });\n }\n localeQueue.add(loader);\n}\n\nvar __getOwnPropSymbols$2 = Object.getOwnPropertySymbols;\nvar __hasOwnProp$2 = Object.prototype.hasOwnProperty;\nvar __propIsEnum$2 = Object.prototype.propertyIsEnumerable;\nvar __objRest$1 = (source, exclude) => {\n var target = {};\n for (var prop in source)\n if (__hasOwnProp$2.call(source, prop) && exclude.indexOf(prop) < 0)\n target[prop] = source[prop];\n if (source != null && __getOwnPropSymbols$2)\n for (var prop of __getOwnPropSymbols$2(source)) {\n if (exclude.indexOf(prop) < 0 && __propIsEnum$2.call(source, prop))\n target[prop] = source[prop];\n }\n return target;\n};\nconst defaultFormats = {\n number: {\n scientific: { notation: \"scientific\" },\n engineering: { notation: \"engineering\" },\n compactLong: { notation: \"compact\", compactDisplay: \"long\" },\n compactShort: { notation: \"compact\", compactDisplay: \"short\" }\n },\n date: {\n short: { month: \"numeric\", day: \"numeric\", year: \"2-digit\" },\n medium: { month: \"short\", day: \"numeric\", year: \"numeric\" },\n long: { month: \"long\", day: \"numeric\", year: \"numeric\" },\n full: { weekday: \"long\", month: \"long\", day: \"numeric\", year: \"numeric\" }\n },\n time: {\n short: { hour: \"numeric\", minute: \"numeric\" },\n medium: { hour: \"numeric\", minute: \"numeric\", second: \"numeric\" },\n long: {\n hour: \"numeric\",\n minute: \"numeric\",\n second: \"numeric\",\n timeZoneName: \"short\"\n },\n full: {\n hour: \"numeric\",\n minute: \"numeric\",\n second: \"numeric\",\n timeZoneName: \"short\"\n }\n }\n};\nfunction defaultMissingKeyHandler({ locale, id }) {\n console.warn(\n `[svelte-i18n] The message \"${id}\" was not found in \"${getPossibleLocales(\n locale\n ).join('\", \"')}\".${hasLocaleQueue(getCurrentLocale()) ? `\n\nNote: there are at least one loader still registered to this locale that wasn't executed.` : \"\"}`\n );\n}\nconst defaultOptions = {\n fallbackLocale: null,\n loadingDelay: 200,\n formats: defaultFormats,\n warnOnMissingMessages: true,\n handleMissingMessage: void 0,\n ignoreTag: true\n};\nconst options = defaultOptions;\nfunction getOptions() {\n return options;\n}\nfunction init(opts) {\n const _a = opts, { formats } = _a, rest = __objRest$1(_a, [\"formats\"]);\n let initialLocale = opts.fallbackLocale;\n if (opts.initialLocale) {\n try {\n if (IntlMessageFormat.resolveLocale(opts.initialLocale)) {\n initialLocale = opts.initialLocale;\n }\n } catch (e) {\n console.warn(\n `[svelte-i18n] The initial locale \"${opts.initialLocale}\" is not a valid locale.`\n );\n }\n }\n if (rest.warnOnMissingMessages) {\n delete rest.warnOnMissingMessages;\n if (rest.handleMissingMessage == null) {\n rest.handleMissingMessage = defaultMissingKeyHandler;\n } else {\n console.warn(\n '[svelte-i18n] The \"warnOnMissingMessages\" option is deprecated. Please use the \"handleMissingMessage\" option instead.'\n );\n }\n }\n Object.assign(options, rest, { initialLocale });\n if (formats) {\n if (\"number\" in formats) {\n Object.assign(options.formats.number, formats.number);\n }\n if (\"date\" in formats) {\n Object.assign(options.formats.date, formats.date);\n }\n if (\"time\" in formats) {\n Object.assign(options.formats.time, formats.time);\n }\n }\n return $locale.set(initialLocale);\n}\n\nconst $isLoading = writable(false);\n\nvar __defProp$1 = Object.defineProperty;\nvar __defProps = Object.defineProperties;\nvar __getOwnPropDescs = Object.getOwnPropertyDescriptors;\nvar __getOwnPropSymbols$1 = Object.getOwnPropertySymbols;\nvar __hasOwnProp$1 = Object.prototype.hasOwnProperty;\nvar __propIsEnum$1 = Object.prototype.propertyIsEnumerable;\nvar __defNormalProp$1 = (obj, key, value) => key in obj ? __defProp$1(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;\nvar __spreadValues$1 = (a, b) => {\n for (var prop in b || (b = {}))\n if (__hasOwnProp$1.call(b, prop))\n __defNormalProp$1(a, prop, b[prop]);\n if (__getOwnPropSymbols$1)\n for (var prop of __getOwnPropSymbols$1(b)) {\n if (__propIsEnum$1.call(b, prop))\n __defNormalProp$1(a, prop, b[prop]);\n }\n return a;\n};\nvar __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));\nlet current;\nconst internalLocale = writable(null);\nfunction getSubLocales(refLocale) {\n return refLocale.split(\"-\").map((_, i, arr) => arr.slice(0, i + 1).join(\"-\")).reverse();\n}\nfunction getPossibleLocales(refLocale, fallbackLocale = getOptions().fallbackLocale) {\n const locales = getSubLocales(refLocale);\n if (fallbackLocale) {\n return [.../* @__PURE__ */ new Set([...locales, ...getSubLocales(fallbackLocale)])];\n }\n return locales;\n}\nfunction getCurrentLocale() {\n return current != null ? current : void 0;\n}\ninternalLocale.subscribe((newLocale) => {\n current = newLocale != null ? newLocale : void 0;\n if (typeof window !== \"undefined\" && newLocale != null) {\n document.documentElement.setAttribute(\"lang\", newLocale);\n }\n});\nconst set = (newLocale) => {\n if (newLocale && getClosestAvailableLocale(newLocale) && hasLocaleQueue(newLocale)) {\n const { loadingDelay } = getOptions();\n let loadingTimer;\n if (typeof window !== \"undefined\" && getCurrentLocale() != null && loadingDelay) {\n loadingTimer = window.setTimeout(\n () => $isLoading.set(true),\n loadingDelay\n );\n } else {\n $isLoading.set(true);\n }\n return flush(newLocale).then(() => {\n internalLocale.set(newLocale);\n }).finally(() => {\n clearTimeout(loadingTimer);\n $isLoading.set(false);\n });\n }\n return internalLocale.set(newLocale);\n};\nconst $locale = __spreadProps(__spreadValues$1({}, internalLocale), {\n set\n});\n\nconst getFromQueryString = (queryString, key) => {\n const keyVal = queryString.split(\"&\").find((i) => i.indexOf(`${key}=`) === 0);\n if (keyVal) {\n return keyVal.split(\"=\").pop();\n }\n return null;\n};\nconst getFirstMatch = (base, pattern) => {\n const match = pattern.exec(base);\n if (!match)\n return null;\n return match[1] || null;\n};\nconst getLocaleFromHostname = (hostname) => {\n if (typeof window === \"undefined\")\n return null;\n return getFirstMatch(window.location.hostname, hostname);\n};\nconst getLocaleFromPathname = (pathname) => {\n if (typeof window === \"undefined\")\n return null;\n return getFirstMatch(window.location.pathname, pathname);\n};\nconst getLocaleFromNavigator = () => {\n if (typeof window === \"undefined\")\n return null;\n return window.navigator.language || window.navigator.languages[0];\n};\nconst getLocaleFromQueryString = (search) => {\n if (typeof window === \"undefined\")\n return null;\n return getFromQueryString(window.location.search.substr(1), search);\n};\nconst getLocaleFromHash = (hash) => {\n if (typeof window === \"undefined\")\n return null;\n return getFromQueryString(window.location.hash.substr(1), hash);\n};\n\nconst monadicMemoize = (fn) => {\n const cache = /* @__PURE__ */ Object.create(null);\n const memoizedFn = (arg) => {\n const cacheKey = JSON.stringify(arg);\n if (cacheKey in cache) {\n return cache[cacheKey];\n }\n return cache[cacheKey] = fn(arg);\n };\n return memoizedFn;\n};\n\nvar __defProp = Object.defineProperty;\nvar __getOwnPropSymbols = Object.getOwnPropertySymbols;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __propIsEnum = Object.prototype.propertyIsEnumerable;\nvar __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;\nvar __spreadValues = (a, b) => {\n for (var prop in b || (b = {}))\n if (__hasOwnProp.call(b, prop))\n __defNormalProp(a, prop, b[prop]);\n if (__getOwnPropSymbols)\n for (var prop of __getOwnPropSymbols(b)) {\n if (__propIsEnum.call(b, prop))\n __defNormalProp(a, prop, b[prop]);\n }\n return a;\n};\nvar __objRest = (source, exclude) => {\n var target = {};\n for (var prop in source)\n if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)\n target[prop] = source[prop];\n if (source != null && __getOwnPropSymbols)\n for (var prop of __getOwnPropSymbols(source)) {\n if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))\n target[prop] = source[prop];\n }\n return target;\n};\nconst getIntlFormatterOptions = (type, name) => {\n const { formats } = getOptions();\n if (type in formats && name in formats[type]) {\n return formats[type][name];\n }\n throw new Error(`[svelte-i18n] Unknown \"${name}\" ${type} format.`);\n};\nconst createNumberFormatter = monadicMemoize(\n (_a) => {\n var _b = _a, { locale, format } = _b, options = __objRest(_b, [\"locale\", \"format\"]);\n if (locale == null) {\n throw new Error('[svelte-i18n] A \"locale\" must be set to format numbers');\n }\n if (format) {\n options = getIntlFormatterOptions(\"number\", format);\n }\n return new Intl.NumberFormat(locale, options);\n }\n);\nconst createDateFormatter = monadicMemoize(\n (_c) => {\n var _d = _c, { locale, format } = _d, options = __objRest(_d, [\"locale\", \"format\"]);\n if (locale == null) {\n throw new Error('[svelte-i18n] A \"locale\" must be set to format dates');\n }\n if (format) {\n options = getIntlFormatterOptions(\"date\", format);\n } else if (Object.keys(options).length === 0) {\n options = getIntlFormatterOptions(\"date\", \"short\");\n }\n return new Intl.DateTimeFormat(locale, options);\n }\n);\nconst createTimeFormatter = monadicMemoize(\n (_e) => {\n var _f = _e, { locale, format } = _f, options = __objRest(_f, [\"locale\", \"format\"]);\n if (locale == null) {\n throw new Error(\n '[svelte-i18n] A \"locale\" must be set to format time values'\n );\n }\n if (format) {\n options = getIntlFormatterOptions(\"time\", format);\n } else if (Object.keys(options).length === 0) {\n options = getIntlFormatterOptions(\"time\", \"short\");\n }\n return new Intl.DateTimeFormat(locale, options);\n }\n);\nconst getNumberFormatter = (_g = {}) => {\n var _h = _g, {\n locale = getCurrentLocale()\n } = _h, args = __objRest(_h, [\n \"locale\"\n ]);\n return createNumberFormatter(__spreadValues({ locale }, args));\n};\nconst getDateFormatter = (_i = {}) => {\n var _j = _i, {\n locale = getCurrentLocale()\n } = _j, args = __objRest(_j, [\n \"locale\"\n ]);\n return createDateFormatter(__spreadValues({ locale }, args));\n};\nconst getTimeFormatter = (_k = {}) => {\n var _l = _k, {\n locale = getCurrentLocale()\n } = _l, args = __objRest(_l, [\n \"locale\"\n ]);\n return createTimeFormatter(__spreadValues({ locale }, args));\n};\nconst getMessageFormatter = monadicMemoize(\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n (message, locale = getCurrentLocale()) => new IntlMessageFormat(message, locale, getOptions().formats, {\n ignoreTag: getOptions().ignoreTag\n })\n);\n\nconst formatMessage = (id, options = {}) => {\n var _a, _b, _c, _d;\n let messageObj = options;\n if (typeof id === \"object\") {\n messageObj = id;\n id = messageObj.id;\n }\n const {\n values,\n locale = getCurrentLocale(),\n default: defaultValue\n } = messageObj;\n if (locale == null) {\n throw new Error(\n \"[svelte-i18n] Cannot format a message without first setting the initial locale.\"\n );\n }\n let message = lookup(id, locale);\n if (!message) {\n message = (_d = (_c = (_b = (_a = getOptions()).handleMissingMessage) == null ? void 0 : _b.call(_a, { locale, id, defaultValue })) != null ? _c : defaultValue) != null ? _d : id;\n } else if (typeof message !== \"string\") {\n console.warn(\n `[svelte-i18n] Message with id \"${id}\" must be of type \"string\", found: \"${typeof message}\". Gettin its value through the \"$format\" method is deprecated; use the \"json\" method instead.`\n );\n return message;\n }\n if (!values) {\n return message;\n }\n let result = message;\n try {\n result = getMessageFormatter(message, locale).format(values);\n } catch (e) {\n if (e instanceof Error) {\n console.warn(\n `[svelte-i18n] Message \"${id}\" has syntax error:`,\n e.message\n );\n }\n }\n return result;\n};\nconst formatTime = (t, options) => {\n return getTimeFormatter(options).format(t);\n};\nconst formatDate = (d, options) => {\n return getDateFormatter(options).format(d);\n};\nconst formatNumber = (n, options) => {\n return getNumberFormatter(options).format(n);\n};\nconst getJSON = (id, locale = getCurrentLocale()) => {\n return lookup(id, locale);\n};\nconst $format = derived([$locale, $dictionary], () => formatMessage);\nconst $formatTime = derived([$locale], () => formatTime);\nconst $formatDate = derived([$locale], () => formatDate);\nconst $formatNumber = derived([$locale], () => formatNumber);\nconst $getJSON = derived([$locale, $dictionary], () => getJSON);\n\nfunction unwrapFunctionStore(store) {\n let localReference;\n const cancel = store.subscribe((value) => localReference = value);\n const fn = (...args) => localReference(...args);\n fn.freeze = cancel;\n return fn;\n}\n\nfunction defineMessages(i) {\n return i;\n}\nfunction waitLocale(locale) {\n return flush(locale || getCurrentLocale() || getOptions().initialLocale);\n}\n\nexport { $format as _, addMessages, $formatDate as date, defineMessages, $dictionary as dictionary, $format as format, getDateFormatter, getLocaleFromHash, getLocaleFromHostname, getLocaleFromNavigator, getLocaleFromPathname, getLocaleFromQueryString, getMessageFormatter, getNumberFormatter, getTimeFormatter, init, $isLoading as isLoading, $getJSON as json, $locale as locale, $locales as locales, $formatNumber as number, registerLocaleLoader as register, $format as t, $formatTime as time, unwrapFunctionStore, waitLocale };\n","export const TRANSLATIONS = {\n \"en\": {\n \"wof\": {\n \"NoContent\": \"You don't have any lottery programs available now.\",\n \"NoNext\": \"You don't have any spins available. Please check <a href=\\\"javascript:void(0)\\\">Terms and Conditions</a>\",\n \"NoHistories\": \"No histories\",\n \"Program\": \"Program\",\n \"History\": \"History\",\n \"ActiveTickets\": \"Active Tickets\",\n \"ImplicitTickets\": \"Implicit Tickets\",\n \"RemainingTimes\": \"Remaining Times\",\n \"Retry\": \"Network is a bit busy now, please click OK to re-spin\",\n \"ShowNext\": \"The Wheel will be available on<br /> <strong>{startTime}</strong> <br />Please wait till it is open.\",\n \"DrawFailed\": \"The prize assignment may be failed, please contact customer support for more details\",\n \"Timeout\": \"Network is a bit busy now, please try again later.\",\n \"ErrorNetwork\": \"You are offline, please check your network settings\",\n \"ErrorJSON\": \"Unexpected Data Response, please contact customer support\",\n \"Congratulation\": \"Congratulations! You won a {prize}!\",\n \"OK\": \"OK\",\n \"Rewards\": \"Rewards\",\n \"Status\": \"Status\",\n \"Time\": \"Time\",\n \"Loss\": \"OOPs! You are close to a prize!\"\n }\n },\n \"hr\": {\n \"wof\": {\n \"NoContent\": \"Nemate nijedan dostupan lutrijski program.\",\n \"NoNext\": \"Nemate dostupnih okretaja. Molimo provjerite <a href=\\\"javascript:void(0)\\\">Uvjeti i odredbe</a>\",\n \"NoHistories\": \"Nema povijesti\",\n \"Program\": \"Program\",\n \"History\": \"Povijest\",\n \"ActiveTickets\": \"Aktivne Karte\",\n \"ImplicitTickets\": \"Implicitne Karte\",\n \"RemainingTimes\": \"Preostalo Vrijeme\",\n \"Retry\": \"Mreža je trenutno zauzeta, molimo kliknite OK za ponovno okretanje\",\n \"ShowNext\": \"Kolo će biti dostupno<br /> <strong>{startTime}</strong> <br />Molimo pričekajte da se otvori.\",\n \"DrawFailed\": \"Dodjela nagrada možda nije uspjela, molimo kontaktirajte korisničku podršku za više detalja\",\n \"Timeout\": \"Mreža je trenutno zauzeta, molimo pokušajte kasnije.\",\n \"ErrorNetwork\": \"Niste povezani, molimo provjerite postavke mreže\",\n \"ErrorJSON\": \"Neočekivan odgovor podataka, molimo kontaktirajte korisničku podršku\",\n \"Congratulation\": \"Čestitamo! Osvojili ste {prize}!\",\n \"OK\": \"OK\",\n \"Rewards\": \"Nagrade\",\n \"Status\": \"Status\",\n \"Time\": \"Vrijeme\",\n \"Loss\": \"OOPs! Blizu ste nagrade!\"\n }\n },\n \"zh\": {\n \"wof\": {\n \"NoContent\": \"You don't have any lottery programs available now.\",\n \"NoNext\": \"You don't have any spins available. Please check <a href=\\\"javascript:void(0)\\\">Terms and Conditions</a>\",\n \"NoHistories\": \"No histories\",\n \"Program\": \"Program\",\n \"History\": \"History\",\n \"ActiveTickets\": \"Active Tickets\",\n \"ImplicitTickets\": \"Implicit Tickets\",\n \"RemainingTimes\": \"Remaining Times\",\n \"Retry\": \"Network is a bit busy now, please click OK to re-spin\",\n \"ShowNext\": \"The Wheel will be available on<br /> <strong>{startTime}</strong> <br />Please wait till it is open.\",\n \"DrawFailed\": \"The prize assignment may be failed, please contact customer support for more details\",\n \"Timeout\": \"Network is a bit busy now, please try again later.\",\n \"ErrorNetwork\": \"You are offline, please check your network settings\",\n \"ErrorJSON\": \"Unexpected Data Response, please contact customer support\",\n \"Congratulation\": \"Congratulations! You won a {prize}!\",\n \"OK\": \"OK\",\n \"Rewards\": \"Rewards\",\n \"Status\": \"Status\",\n \"Time\": \"Time\",\n \"Loss\": \"OOPs! You are close to a prize!\"\n }\n },\n \"fr\": {\n \"wof\": {\n \"NoContent\": \"You don't have any lottery programs available now.\",\n \"NoNext\": \"You don't have any spins available. Please check <a href=\\\"javascript:void(0)\\\">Terms and Conditions</a>\",\n \"NoHistories\": \"No histories\",\n \"Program\": \"Program\",\n \"History\": \"History\",\n \"ActiveTickets\": \"Active Tickets\",\n \"ImplicitTickets\": \"Implicit Tickets\",\n \"RemainingTimes\": \"Remaining Times\",\n \"Retry\": \"Network is a bit busy now, please click OK to re-spin\",\n \"ShowNext\": \"The Wheel will be available on<br /> <strong>{startTime}</strong> <br />Please wait till it is open.\",\n \"DrawFailed\": \"The prize assignment may be failed, please contact customer support for more details\",\n \"Timeout\": \"Network is a bit busy now, please try again later.\",\n \"ErrorNetwork\": \"You are offline, please check your network settings\",\n \"ErrorJSON\": \"Unexpected Data Response, please contact customer support\",\n \"Congratulation\": \"Congratulations! You won a {prize}!\",\n \"OK\": \"OK\",\n \"Rewards\": \"Rewards\",\n \"Status\": \"Status\",\n \"Time\": \"Time\",\n \"Loss\": \"OOPs! You are close to a prize!\"\n }\n },\n \"ro\": {\n \"wof\": {\n \"NoContent\": \"You don't have any lottery programs available now.\",\n \"NoNext\": \"You don't have any spins available. Please check <a href=\\\"javascript:void(0)\\\">Terms and Conditions</a>\",\n \"NoHistories\": \"No histories\",\n \"Program\": \"Program\",\n \"History\": \"History\",\n \"ActiveTickets\": \"Active Tickets\",\n \"ImplicitTickets\": \"Implicit Tickets\",\n \"RemainingTimes\": \"Remaining Times\",\n \"Retry\": \"Network is a bit busy now, please click OK to re-spin\",\n \"ShowNext\": \"The Wheel will be available on<br /> <strong>{startTime}</strong> <br />Please wait till it is open.\",\n \"DrawFailed\": \"The prize assignment may be failed, please contact customer support for more details\",\n \"Timeout\": \"Network is a bit busy now, please try again later.\",\n \"ErrorNetwork\": \"You are offline, please check your network settings\",\n \"ErrorJSON\": \"Unexpected Data Response, please contact customer support\",\n \"Congratulation\": \"Congratulations! You won a {prize}!\",\n \"OK\": \"OK\",\n \"Rewards\": \"Rewards\",\n \"Status\": \"Status\",\n \"Time\": \"Time\",\n \"Loss\": \"OOPs! You are close to a prize!\"\n }\n },\n \"es\": {\n \"wof\": {\n \"NoContent\": \"You don't have any lottery programs available now.\",\n \"NoNext\": \"You don't have any spins available. Please check <a href=\\\"javascript:void(0)\\\">Terms and Conditions</a>\",\n \"NoHistories\": \"No histories\",\n \"Program\": \"Program\",\n \"History\": \"History\",\n \"ActiveTickets\": \"Active Tickets\",\n \"ImplicitTickets\": \"Implicit Tickets\",\n \"RemainingTimes\": \"Remaining Times\",\n \"Retry\": \"Network is a bit busy now, please click OK to re-spin\",\n \"ShowNext\": \"The Wheel will be available on<br /> <strong>{startTime}</strong> <br />Please wait till it is open.\",\n \"DrawFailed\": \"The prize assignment may be failed, please contact customer support for more details\",\n \"Timeout\": \"Network is a bit busy now, please try again later.\",\n \"ErrorNetwork\": \"You are offline, please check your network settings\",\n \"ErrorJSON\": \"Unexpected Data Response, please contact customer support\",\n \"Congratulation\": \"Congratulations! You won a {prize}!\",\n \"OK\": \"OK\",\n \"Rewards\": \"Rewards\",\n \"Status\": \"Status\",\n \"Time\": \"Time\",\n \"Loss\": \"OOPs! You are close to a prize!\"\n }\n },\n \"pt\": {\n \"wof\": {\n \"NoContent\": \"You don't have any lottery programs available now.\",\n \"NoNext\": \"You don't have any spins available. Please check <a href=\\\"javascript:void(0)\\\">Terms and Conditions</a>\",\n \"NoHistories\": \"No histories\",\n \"Program\": \"Program\",\n \"History\": \"History\",\n \"ActiveTickets\": \"Active Tickets\",\n \"ImplicitTickets\": \"Implicit Tickets\",\n \"RemainingTimes\": \"Remaining Times\",\n \"Retry\": \"Network is a bit busy now, please click OK to re-spin\",\n \"ShowNext\": \"The Wheel will be available on<br /> <strong>{startTime}</strong> <br />Please wait till it is open.\",\n \"DrawFailed\": \"The prize assignment may be failed, please contact customer support for more details\",\n \"Timeout\": \"Network is a bit busy now, please try again later.\",\n \"ErrorNetwork\": \"You are offline, please check your network settings\",\n \"ErrorJSON\": \"Unexpected Data Response, please contact customer support\",\n \"Congratulation\": \"Congratulations! You won a {prize}!\",\n \"OK\": \"OK\",\n \"Rewards\": \"Rewards\",\n \"Status\": \"Status\",\n \"Time\": \"Time\",\n \"Loss\": \"OOPs! You are close to a prize!\"\n }\n },\n \"de\": {\n \"wof\": {\n \"NoContent\": \"You don't have any lottery programs available now.\",\n \"NoNext\": \"You don't have any spins available. Please check <a href=\\\"javascript:void(0)\\\">Terms and Conditions</a>\",\n \"NoHistories\": \"No histories\",\n \"Program\": \"Program\",\n \"History\": \"History\",\n \"ActiveTickets\": \"Active Tickets\",\n \"ImplicitTickets\": \"Implicit Tickets\",\n \"RemainingTimes\": \"Remaining Times\",\n \"Retry\": \"Network is a bit busy now, please click OK to re-spin\",\n \"ShowNext\": \"The Wheel will be available on<br /> <strong>{startTime}</strong> <br />Please wait till it is open.\",\n \"DrawFailed\": \"The prize assignment may be failed, please contact customer support for more details\",\n \"Timeout\": \"Network is a bit busy now, please try again later.\",\n \"ErrorNetwork\": \"You are offline, please check your network settings\",\n \"ErrorJSON\": \"Unexpected Data Response, please contact customer support\",\n \"Congratulation\": \"Congratulations! You won a {prize}!\",\n \"OK\": \"OK\",\n \"Rewards\": \"Rewards\",\n \"Status\": \"Status\",\n \"Time\": \"Time\",\n \"Loss\": \"OOPs! You are close to a prize!\"\n }\n }\n}","import {\n dictionary,\n locale,\n addMessages,\n _\n} from 'svelte-i18n';\n\nimport { TRANSLATIONS } from './translations';\n\nfunction setupI18n({ withLocale: _locale, translations }) {\n locale.subscribe((data) => {\n if (data == null) {\n dictionary.set(translations);\n locale.set(_locale);\n }\n }); // maybe we will need this to make sure that the i18n is set up only once\n /*dictionary.set(translations);\n locale.set(_locale);*/\n}\n\nfunction addNewMessages(lang, dict) {\n addMessages(lang, dict);\n}\n\nfunction setLocale(_locale) {\n locale.set(_locale);\n}\n\nconst setLocaleWhenInit = () => {\n \n setupI18n({ withLocale: 'en', translations: {}});\n\n Object.keys(TRANSLATIONS).forEach((item) => {\n addNewMessages(item, TRANSLATIONS[item]);\n });\n}\n\nexport { _, setupI18n, addNewMessages, setLocale, setLocaleWhenInit };","export const imageLoader = (src: string) => {\n return new Promise((resolve, reject) => {\n let img = new Image()\n img.onload = () => resolve(img)\n img.onerror = reject\n img.src = src\n })\n}\n\nexport const clamp = (num: number, min: number, max?: number) => {\n if(max){\n return Math.min(Math.max(num, min), max)\n }else{\n return Math.max(num, min)\n }\n}\n\nexport const imageLoaderSvg = (src: string) => {\n return new Promise((resolve, reject) => {\n let img = document.createElementNS(\"http://www.w3.org/2000/svg\", \"image\")\n img.onload = () => resolve(img)\n img.onerror = () => resolve(img) //reject\n img.href.baseVal = src\n })\n}\n\nconst cvtCaseFromCamelToKebab = (text: string) => \n text\n .split(/(?=[A-Z])/)\n .map(s => s.toLocaleLowerCase())\n .join('-')\n\nexport const setProps = <T extends Element>(element: T, props: any) => {\n Object.keys(props).map(_key => {\n element.setAttribute(cvtCaseFromCamelToKebab(_key), props[_key])\n })\n}\n\nexport const setPropsSVG = <T extends SVGElement>(element: T, props: any) => {\n Object.keys(props).map(_key => {\n element.setAttributeNS(\"http://www.w3.org/2000/svg\", cvtCaseFromCamelToKebab(_key), props[_key])\n })\n}\n\nexport const delay = (time: number) => new Promise(res => setTimeout(res, time * 1000));\n\ntype MapObjectValueToTuple<T extends Object> = T[keyof T][]\n\nexport const mapObjectValueToTuple = \n <T>(object: T): MapObjectValueToTuple<T> => \n Object.keys(object).map(key => object[key])\n\ninterface fetcherArgs {\n path: string, \n params?: Object, \n options?: RequestInit\n}\n\nexport const fetcher = async (config: fetcherArgs) => {\n\n const { path, params = {}, options = {} } = config\n\n const url = new URL(path)\n\n Object.keys(params).map(_key => {\n url.searchParams.append(_key, params[_key])\n })\n\n return await fetchBase(url, options)\n}\n\n\nexport const fetchBase = async (input: RequestInfo | URL, init: RequestInit = {}): Promise<Response> => {\n \n let res: any \n try {\n res = await fetch(input, init)\n res = await res.text()\n res = JSON.parse(res)\n } catch (e) {\n throw new Error(e.message)\n }\n\n return res\n}\n\nexport const isSafari = () => {\n var isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent);\n return isSafari;\n}","import { addNewMessages } from \"./i18n\";\nimport { fetchBase, fetcher } from \"./util\";\n\nexport const setTranslation = (translations) => {\n Object.keys(translations).forEach((item:any):void => {\n addNewMessages(item, translations[item]);\n });\n}\n\nexport const setTranslationUrl = async (translationurl) => {\n\n const res = await fetchBase(translationurl)\n\n setTranslation(res)\n}\n\nexport const setClientStyling = (container, clientstyling) => {\n let sheet = document.createElement('style');\n sheet.innerHTML = clientstyling;\n container.appendChild(sheet);\n}\n\nexport const setClientStylingURL = async (clientstylingurl, callback) => {\n const res = await fetch(clientstylingurl)\n const clientstyling = await res.text()\n callback(clientstyling)\n}","<svelte:options tag={'lottery-program-wof-private-message-panel'} />\n\n<script lang=\"ts\">\n // @ts-ignore\n import giftSvg from './images/gift.svg'\n import { onMountMessageLifeCycle, _postMessage } from './message';\n import { _ } from './i18n';\n import { setClientStyling } from './widget';\n\n export let r = 0\n export let size = 0\n export let id: string = undefined\n export let clientstyling:string = ''\n export let giftimagesrc: string = ''\n \n let rootContainer: HTMLElement\n $: clientstyling && rootContainer && setClientStyling(rootContainer, clientstyling);\n\n let topOffset: number = 0\n\n let isShown: boolean = false\n let mode: string = ''\n let modeValue: any\n let isOptionsReady: boolean = false\n\n onMountMessageLifeCycle({\n 'wof-private-options-ready': (data) => {\n if(data.id !== id) return;\n isOptionsReady = true\n },\n 'wof-private-message-open': (data) => {\n if(data.id !== id) return;\n\n mode = data.mode\n modeValue = data.modeValue\n\n isShown = true\n }\n })\n\n const _postMessageScoped = (props) => _postMessage({ ...props, id })\n \n const eventButton = () => {\n switch(mode){\n case 'timeout':\n isShown = false\n _postMessageScoped({ type: 'wof-private-message-retry' })\n break\n default:\n isShown = false\n _postMessageScoped({ type: 'wof-private-message-close' })\n break\n }\n }\n\n const getTimeString = (_d) => {\n const d: Date = new Date(_d)\n \n return [\n [\n d.toLocaleString('en-us', {year: 'numeric'}),\n d.toLocaleString('en-us', {month: '2-digit'}),\n d.toLocaleString('en-us', {day: '2-digit'}),\n ].join('-'),\n d.toLocaleString('en-GB', { hour: 'numeric', minute: 'numeric', second: 'numeric' }),\n ].join(' ')\n }\n\n const errorCodeMap = {\n ErrorNetwork: 'N0001',\n ErrorJSON: 'N0002',\n Retry: 'N0003',\n Timeout: 'N0004',\n }\n\n const setObserver = () => {\n const resizeObserver = new ResizeObserver(entries => {\n entries.map(entry => {\n if(entry.target === rootContainer) {\n topOffset = entry.target.clientHeight / 2\n }\n })\n })\n resizeObserver.observe(rootContainer)\n }\n\n $: rootContainer && setObserver()\n\n $: width = r * 2\n $: left = size / 2 - width / 2\n $: top = size / 2 - topOffset\n\n $: startTime = modeValue?.startTime && getTimeString(modeValue?.startTime)\n\n $: prizeSrc = modeValue?.prizeSrc || giftimagesrc || giftSvg\n\n const handlerTC = () => _postMessage({ type: \"OnTCClicked\", WofProgramID: id })\n\n let holderTC: HTMLElement\n const bindEventTC = () => {\n holderTC.querySelector('a').addEventListener('click', handlerTC)\n }\n\n $: holderTC && bindEventTC()\n</script>\n\n\n{#if isShown && isOptionsReady}\n<div \n bind:this={rootContainer}\n class=\"MessagePanel\" \n style={[\n `top: ${top}px`,\n `left: ${left}px`,\n `width: ${width}px`,\n isShown ? 'opacity: 1' : '',\n ].join(';')}\n>\n\n {#if mode === 'normal' || mode === 'init-failed' || mode === 'timeout'}\n <p>{$_(`wof.${modeValue}`)}</p>\n {/if}\n\n {#if mode === 'show-next'}\n <p>{@html $_('wof.ShowNext', {values: { startTime }})}</p>\n {/if}\n\n {#if mode === 'NoNext'}\n <p bind:this={holderTC}>{@html $_(`wof.NoNext`)}</p>\n {/if}\n\n {#if mode === 'gift'}\n <p>\n <img src={prizeSrc} alt=\"\" class=\"GiftImage\">\n </p>\n {#if modeValue.prizeText}\n {@html modeValue.prizeText}\n {:else}\n {@html $_('wof.Congratulation', {values: { prize: modeValue.prize }})}\n {/if}\n <p>\n\n </p>\n {/if}\n\n {#if mode === 'nogift'}\n <p>\n <img src={modeValue.image} alt=\"\" class=\"GiftImage\">\n </p>\n <p>{@html $_('wof.Loss')}</p>\n {/if}\n\n \n {#if errorCodeMap[modeValue]}\n <p class=\"ErrorCode\">\n Errorcode: {errorCodeMap[modeValue]}\n </p>\n {/if}\n\n {#if !['init-failed', 'show-next', 'NoNext'].includes(mode)}\n <div>\n <button\n class=\"MessagePanelButton\"\n on:click={eventButton}\n >\n {$_('wof.OK')}\n </button>\n </div>\n {/if}\n</div>\n{/if}\n\n<style lang=\"scss\">\n\n :host {\n font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n position: absolute;\n width: 100%;\n }\n\n *,\n *::before,\n *::after {\n margin: 0;\n padding: 0;\n list-style: none;\n text-decoration: none;\n outline: none;\n box-sizing: border-box;\n }\n $outlineColor: rgb(150, 54, 88);\n $outlineWidth: 2px;\n\n .GiftImage {\n max-width: 80%;\n height: 100px;\n }\n\n .MessagePanel {\n position: absolute;\n background-color: #FFFFFF;\n color: #000000;\n padding: 15px 30px;\n border-radius: 8px;\n text-align: center;\n font-size: 16px;\n opacity: .3;\n \n // border: 3px solid rgb(80, 80, 80);\n box-shadow: 0 0 1px #a1a1a1;\n\n // transform: translateX(-50%);\n transition: margin-top opacity .3s ease-out;\n }\n\n .MessagePanelButton { \n padding: 4px 24px;\n margin-top: 40px;\n font-size: 16px;\n line-height: 24px;\n color: #FFFFFF;\n background: #FF0000;\n border-radius: 5px;\n font-weight: 700;\n border: 0;\n box-shadow: 0 0 3px #ff0000;\n cursor: pointer;\n }\n\n .ErrorCode {\n color: #b50000;\n margin-top: 10px;\n font-size: 14px;\n font-weight: 500;\n }\n</style>","declare global {\n namespace svelte.JSX {\n interface SVGProps<T> {\n part?: string\n }\n }\n}\n\nexport interface Point {\n x: number;\n y: number;\n}\n\nexport enum PointerMode {\n Arrow = \"Arrow\",\n Partition = \"Partition\",\n}\n\nexport enum ArrowMode {\n DownFromTop = \"DownFromTop\",\n UpFromCenter = \"UpFromCenter\",\n DownFromCenter = \"DownFromCenter\",\n UpFromBottom = \"UpFromBottom\",\n}\n\nexport enum Api {\n lotteries = 'lotteries',\n outcome = 'outcome',\n draw = 'draw',\n}\n\nexport interface ApiConfigs {\n [Api.lotteries]: {\n session?: string\n },\n [Api.outcome]: {\n session?: string\n id: string\n },\n [Api.draw]: {\n session?: string\n id: string\n guid: string\n },\n \n}\n\nexport enum Lang { \n en = 'en',\n fr = 'fr',\n de = 'de',\n tr = 'tr'\n}\n\ntype StringWithLang = {\n [key in Lang]: string\n}\n\nexport interface Partition {\n name: StringWithLang\n image1: StringWithLang\n image2: StringWithLang\n image3: StringWithLang\n}\n\n\nexport enum Tab {\n Program = 'Program',\n History = 'History'\n}\n\nexport enum ContentDirection {\n clockwise = 1,\n anticlockwise = -1,\n outward = 0,\n}\n\n\n\n","<svelte:options tag={'lottery-program-wof-private-tabs'} />\n\n<script lang=\"ts\">\n import { _postMessage } from \"./message\";\n import { Lang, Tab } from \"./types\";\n import { _ } from './i18n';\n import { setClientStyling } from \"./widget\";\n\n // properties\n export let lang: Lang = Lang.en\n export let endpoint: string = ''\n export let session: string = ''\n export let clientstyling:string = ''\n export let isshowhistory: string = 'true'\n \n let rootContainer: HTMLElement\n $: clientstyling && rootContainer && setClientStyling(rootContainer, clientstyling);\n\n let tab: Tab = Tab.Program;\n\n const onTabClick = (_tab) => {\n switch(_tab){\n case Tab.Program: \n break;\n case Tab.History:\n _postMessage({type: 'wof-private-message-outcomes'})\n break;\n }\n\n tab = _tab\n }\n</script>\n{#if isshowhistory === 'true'}\n<section class=\"TabBar\" bind:this={rootContainer}>\n <ul>\n {#each Object.keys(Tab) as _tab, i}\n <li\n class:active={_tab === tab}\n class=\"TabItem\"\n on:click={() => onTabClick(_tab)}\n >\n <span>\n {$_(`wof.${_tab}`)}\n </span>\n </li>\n {/each}\n </ul>\n</section>\n{/if}\n\n{#each Object.keys(Tab) as _tab}\n {#if tab === _tab}\n <slot name={`tab-${_tab}`} />\n {/if}\n{/each}\n\n\n<style lang=\"scss\">\n\n :host {\n font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n width: 100%;\n }\n\n *,\n *::before,\n *::after {\n margin: 0;\n padding: 0;\n list-style: none;\n text-decoration: none;\n outline: none;\n box-sizing: border-box;\n }\n\n .TabBar {\n width: 100%;\n display: flex;\n align-items: center;\n flex-direction: column;\n padding: 20px 0;\n\n ul {\n max-width: 600px;\n width: 100%;\n\n li {\n color: #FFFFFF;\n display: inline-block;\n }\n }\n\n ul {\n border-bottom: 3px #ccc solid;\n\n li {\n padding: 6px 10px;\n cursor: pointer;\n &.active {\n border-bottom: 3px #d46666 solid;\n margin-bottom: -6px;\n }\n }\n }\n }\n</style>","export const convertDegToArc = (deg: number) => deg * Math.PI / 180\nexport const convertArcToDeg = (arc: number) => arc * 180 / Math.PI % 360\n\nexport const getArcDelta = (n: number) => 2 * Math.PI / n\n\nexport const findIndex = (deg: number, n: number) =>\n Math.floor(\n (360 - deg % 360) / convertArcToDeg(getArcDelta(n))\n )\n\nexport const findDeg = (index: number, n: number) => {\n const degDelta = convertArcToDeg(getArcDelta(n))\n return (index) * degDelta\n}\n\nexport const createSVGElement = (tag: string) => {\n const xmlns = \"http://www.w3.org/2000/svg\";\n return document.createElementNS(xmlns, tag);\n}\n\nexport const ratioGoldenMean = (times: number) => Math.pow(0.618, times)\n\n\nconst randomDirection = () => Math.random() > 0.5 ? 1 : -1\n\nexport const randomInSection = (number: number) => {\n return 360 / number / 2 * (1 - 0.2) * Math.random() * randomDirection()\n}","import type { \n LotteryProgramDraw,\n LotteryProgramILotteryProgramForPlayer, \n LotteryProgramIQueryLotteryProgramForPlayerResult \n} from \"./api\";\n\n\nexport type LotteryProgramForPlayer = LotteryProgramILotteryProgramForPlayer\n\nexport enum CurrentInfo {\n ActiveTickets = 'ActiveTickets',\n ImplicitTickets = 'ImplicitTickets',\n RemainingTimes = 'RemainingTimes',\n}\n\nexport type ApiLotteriesResult = LotteryProgramIQueryLotteryProgramForPlayerResult\n\nexport interface ApiDrawResult {\n item?: LotteryProgramDraw;\n}","var img = \"data:image/svg+xml,%3c%3fxml version='1.0' encoding='utf-8'%3f%3e%3c!-- Generator: Adobe Illustrator 27.2.0%2c SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3e%3csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 160 160' style='enable-background:new 0 0 160 160%3b' xml:space='preserve'%3e%3cstyle type='text/css'%3e .st0%7bfill:%233F1719%3b%7d .st1%7bfill:%23FFBD39%3b%7d .st2%7bfill:url(%23SVGID_1_)%3b%7d .st3%7bfill:white%3b%7d .st4%7bfill:%23FF7B7B%3b%7d .st5%7bfill:%23260813%3b%7d .st6%7bfill:none%3bstroke:%23260813%3bstroke-width:2.839%3bstroke-linecap:round%3bstroke-linejoin:round%3bstroke-miterlimit:10%3b%7d .st7%7bfill:%2381CFF4%3b%7d .st8%7bfill:%2364BDEB%3b%7d .st9%7bfill:%23A1D9F7%3b%7d%3c/style%3e%3cg%3e %3cg%3e %3cpath class='st0' d='M39.49%2c152.29c-2.45%2c0-4.51-0.55-6.1-1.65c-6.77-4.65-5.91-19.53-2.16-43.68c0.28-1.81%2c0.59-3.78%2c0.75-5.04 c-0.91-0.94-2.45-2.42-3.84-3.77c-14.3-13.8-26.88-26.97-23.66-36.4c2.96-8.67%2c18.19-12.32%2c41.82-15.4 c1.35-0.18%2c2.81-0.37%2c3.87-0.52c0.47-0.94%2c1.1-2.24%2c1.68-3.44C62.4%2c20.53%2c70.79%2c6.97%2c79.96%2c6.97c9.95%2c0%2c19.1%2c17.09%2c27.61%2c34.59 c0.76%2c1.56%2c1.58%2c3.26%2c2.15%2c4.35c1.21%2c0.24%2c3.06%2c0.57%2c4.76%2c0.87c24.27%2c4.33%2c37.97%2c7.95%2c40.84%2c14.68 c2.35%2c5.52-0.76%2c13.04-23.91%2c36.88c-1.29%2c1.33-2.71%2c2.79-3.56%2c3.71c0.13%2c1.49%2c0.46%2c4.1%2c0.76%2c6.48 c3.06%2c24.27%2c3.62%2c37.41-1.78%2c41.88c-1.49%2c1.23-3.5%2c1.86-5.97%2c1.86c-7.9%2c0-21.77-6.4-35.31-12.96c-2.03-0.98-4.27-2.07-5.58-2.65 c-1.23%2c0.57-3.26%2c1.59-5.12%2c2.52C61.62%2c145.81%2c47.98%2c152.29%2c39.49%2c152.29z'/%3e %3cpath class='st1' d='M79.96%2c13.58c10.31%2c0%2c24.52%2c36.14%2c26.1%2c37.12c1.57%2c0.98%2c39.75%2c5.6%2c42.91%2c13.02 c3.17%2c7.42-26.21%2c34.28-26.93%2c36.11c-0.73%2c1.83%2c6.61%2c40.02%2c0.57%2c45.02c-6.04%2c5-40.55-14.55-42.65-14.56 c-2.11-0.01-35.22%2c19.66-42.65%2c14.56c-7.43-5.1%2c1.11-42.95%2c0.57-45.02c-0.54-2.07-30.29-26.28-26.93-36.11 c3.36-9.83%2c41.54-12%2c42.91-13.02C55.23%2c49.67%2c69.65%2c13.58%2c79.96%2c13.58z'/%3e %3clinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='48.8123' y1='50.1816' x2='122.3169' y2='138.4779'%3e %3cstop offset='0.043' style='stop-color:%23FFF466'/%3e %3cstop offset='0.0753' style='stop-color:%23FFF466'/%3e %3cstop offset='0.3152' style='stop-color:%23FFEC5F'/%3e %3cstop offset='0.6922' style='stop-color:%23FFD54D'/%3e %3cstop offset='0.8602' style='stop-color:%23FFC943'/%3e %3c/linearGradient%3e %3cpath class='st2' d='M79.96%2c19.97c9.31%2c0%2c21.52%2c33.89%2c22.95%2c34.78c1.42%2c0.89%2c36.53%2c3.8%2c39.39%2c10.51 c2.86%2c6.71-24.3%2c30.34-24.95%2c31.99c-0.66%2c1.65%2c6.6%2c36.77%2c1.14%2c41.29c-5.45%2c4.52-36.62-13.76-38.52-13.77 c-1.9-0.01-31.81%2c18.38-38.52%2c13.77c-6.71-4.61%2c2.26-38.79%2c1.77-40.66c-0.48-1.87-28.61-23.74-25.58-32.62 c3.03-8.88%2c38.78-9.59%2c40.01-10.51C58.87%2c53.83%2c70.64%2c19.97%2c79.96%2c19.97z'/%3e %3cpath class='st3' d='M24.04%2c66.49c-0.67-6.52%2c20.71-10.35%2c21.65-2.73C46.64%2c71.39%2c24.96%2c75.37%2c24.04%2c66.49z'/%3e %3cpath class='st3' d='M51.17%2c61.62c-0.16-4.19%2c6.23-4.45%2c6.56-1.01C58.1%2c64.47%2c51.32%2c65.54%2c51.17%2c61.62z'/%3e %3c/g%3e %3cg%3e %3cpath class='st4' d='M115.44%2c85.85c0%2c1.15-0.93%2c2.09-2.09%2c2.09c-1.15%2c0-2.09-0.94-2.09-2.09c0-1.15%2c0.93-2.09%2c2.09-2.09 C114.51%2c83.76%2c115.44%2c84.69%2c115.44%2c85.85z'/%3e %3cpath class='st4' d='M48.13%2c85.85c0%2c1.15%2c0.93%2c2.09%2c2.09%2c2.09c1.15%2c0%2c2.09-0.94%2c2.09-2.09c0-1.15-0.93-2.09-2.09-2.09 C49.07%2c83.76%2c48.13%2c84.69%2c48.13%2c85.85z'/%3e %3cpath class='st5' d='M113.98%2c80.29c0%2c4.22-3.42%2c7.65-7.64%2c7.65c-4.22%2c0-7.65-3.42-7.65-7.65s3.42-7.65%2c7.65-7.65 C110.56%2c72.65%2c113.98%2c76.07%2c113.98%2c80.29z'/%3e %3cg%3e %3cpath class='st6' d='M88.61%2c93.46c-0.36-3.99-3.11-6.67-6.83-6.67c-3.72%2c0-6.46%2c2.68-6.83%2c6.67'/%3e %3c/g%3e %3cg%3e %3cg%3e %3cpath class='st3' d='M109.05%2c78.88c0%2c1.89-1.53%2c3.42-3.42%2c3.42c-1.89%2c0-3.42-1.53-3.42-3.42c0-1.89%2c1.53-3.42%2c3.42-3.42 C107.52%2c75.46%2c109.05%2c76.99%2c109.05%2c78.88z'/%3e %3c/g%3e %3cpath class='st3' d='M107.52%2c83.71c0%2c0.84%2c0.68%2c1.52%2c1.52%2c1.52c0.84%2c0%2c1.52-0.68%2c1.52-1.52c0-0.84-0.68-1.52-1.52-1.52 C108.21%2c82.19%2c107.52%2c82.87%2c107.52%2c83.71z'/%3e %3c/g%3e %3cpath class='st5' d='M49.59%2c80.29c0%2c4.22%2c3.42%2c7.65%2c7.64%2c7.65c4.22%2c0%2c7.65-3.42%2c7.65-7.65s-3.42-7.65-7.65-7.65 C53.01%2c72.65%2c49.59%2c76.07%2c49.59%2c80.29z'/%3e %3cg%3e %3cg%3e %3cpath class='st3' d='M54.52%2c78.88c0%2c1.89%2c1.53%2c3.42%2c3.42%2c3.42c1.89%2c0%2c3.42-1.53%2c3.42-3.42c0-1.89-1.53-3.42-3.42-3.42 C56.05%2c75.46%2c54.52%2c76.99%2c54.52%2c78.88z'/%3e %3c/g%3e %3cpath class='st3' d='M56.05%2c83.71c0%2c0.84-0.68%2c1.52-1.52%2c1.52c-0.84%2c0-1.52-0.68-1.52-1.52c0-0.84%2c0.68-1.52%2c1.52-1.52 C55.36%2c82.19%2c56.05%2c82.87%2c56.05%2c83.71z'/%3e %3c/g%3e %3cline class='st6' x1='102.21' y1='70.03' x2='115.44' y2='76.59'/%3e %3cline class='st6' x1='61.36' y1='70.03' x2='48.13' y2='76.59'/%3e %3c/g%3e %3cpath class='st7' d='M28%2c102.98c0.03-0.17%2c0.07-0.35%2c0.1-0.52c0.03-0.14%2c0.06-0.27%2c0.09-0.41c0.04-0.17%2c0.08-0.33%2c0.13-0.5 c0.04-0.14%2c0.07-0.28%2c0.11-0.41c0.05-0.16%2c0.1-0.32%2c0.15-0.48c0.04-0.14%2c0.09-0.28%2c0.13-0.42c0.05-0.15%2c0.11-0.31%2c0.16-0.46 c0.05-0.14%2c0.1-0.28%2c0.15-0.42c0.05-0.13%2c0.11-0.27%2c0.16-0.4c0.13-0.31%2c0.26-0.63%2c0.4-0.94c0.05-0.11%2c0.1-0.22%2c0.15-0.33 c0.08-0.17%2c0.17-0.34%2c0.25-0.52c0.05-0.1%2c0.1-0.21%2c0.16-0.31c0.09-0.17%2c0.18-0.34%2c0.28-0.52c0.05-0.1%2c0.11-0.2%2c0.16-0.3 c0.1-0.17%2c0.2-0.35%2c0.3-0.52c0.03-0.05%2c0.05-0.09%2c0.08-0.14c0.03-0.05%2c0.06-0.09%2c0.08-0.13c0.11-0.18%2c0.22-0.35%2c0.33-0.53 c0.05-0.08%2c0.1-0.16%2c0.15-0.24c0.12-0.18%2c0.24-0.36%2c0.36-0.54c0.04-0.06%2c0.08-0.11%2c0.12-0.17c0.14-0.2%2c0.28-0.39%2c0.42-0.59 c0%2c0.01-0.01%2c0.02-0.01%2c0.03c0.37-0.51%2c0.75-1.01%2c1.15-1.49c1.51-1.82%2c3.2-3.46%2c5-4.99c0.89-0.76%2c4.34-4.3%2c5.52-4.03 c1.31%2c0.3-0.1%2c5.13%2c4.13%2c12.25c2.58%2c4.33%2c5.21%2c9.02%2c5.06%2c14.05c0%2c0%2c0%2c0%2c0%2c0l0%2c0.1c-0.15%2c4.09-2.48%2c8.03-5.98%2c10.16 c-0.12%2c0.07-0.24%2c0.15-0.36%2c0.22c-1.65%2c0.93-3.51%2c1.44-5.4%2c1.54c-2.34%2c0.13-4.71-0.38-6.76-1.52c-4.62-2.58-7.19-8.06-7.11-13.36 c0-0.31%2c0.02-0.63%2c0.04-0.94c0.01-0.11%2c0.02-0.21%2c0.03-0.31c0.02-0.21%2c0.04-0.41%2c0.06-0.62c0.01-0.13%2c0.03-0.25%2c0.05-0.37 c0.03-0.18%2c0.05-0.37%2c0.08-0.55C27.95%2c103.25%2c27.97%2c103.12%2c28%2c102.98z'/%3e %3cpath class='st8' d='M31.37%2c94.74c0.05-0.08%2c0.1-0.16%2c0.15-0.24c0.12-0.18%2c0.24-0.36%2c0.36-0.54c0.04-0.06%2c0.08-0.11%2c0.12-0.17 c0.14-0.2%2c0.28-0.39%2c0.42-0.59c0%2c0.01-0.01%2c0.02-0.01%2c0.03c-1.41%2c3.04-2.23%2c6.36-2.35%2c9.71c-0.11%2c2.9%2c0.31%2c5.9%2c1.78%2c8.4 c2.9%2c4.95%2c9.85%2c6.85%2c15.05%2c4.45c2.9-1.34%2c5.12-3.84%2c6.38-6.77c0%2c0%2c0%2c0%2c0%2c0l0%2c0.1c-0.15%2c4.09-2.48%2c8.03-5.98%2c10.16 c-0.12%2c0.07-0.24%2c0.15-0.36%2c0.22c-1.65%2c0.93-3.51%2c1.44-5.4%2c1.54c-2.34%2c0.13-4.71-0.38-6.76-1.52c-4.62-2.58-7.19-8.06-7.11-13.36 c0-0.31%2c0.02-0.63%2c0.04-0.94c0.01-0.11%2c0.02-0.21%2c0.03-0.31c0.02-0.21%2c0.04-0.41%2c0.06-0.62c0.01-0.13%2c0.03-0.25%2c0.05-0.37 c0.03-0.18%2c0.05-0.37%2c0.08-0.55c0.02-0.13%2c0.05-0.27%2c0.07-0.4c0.03-0.17%2c0.07-0.35%2c0.1-0.52c0.03-0.14%2c0.06-0.27%2c0.09-0.41 c0.04-0.17%2c0.08-0.33%2c0.13-0.5c0.04-0.14%2c0.07-0.28%2c0.11-0.41c0.05-0.16%2c0.1-0.32%2c0.15-0.48c0.04-0.14%2c0.09-0.28%2c0.13-0.42 c0.05-0.15%2c0.11-0.31%2c0.16-0.46c0.05-0.14%2c0.1-0.28%2c0.15-0.42c0.05-0.13%2c0.11-0.27%2c0.16-0.4c0.13-0.31%2c0.26-0.63%2c0.4-0.94 c0.05-0.11%2c0.1-0.22%2c0.15-0.33c0.08-0.17%2c0.17-0.34%2c0.25-0.52c0.05-0.1%2c0.1-0.21%2c0.16-0.31c0.09-0.17%2c0.18-0.34%2c0.28-0.52 c0.05-0.1%2c0.11-0.2%2c0.16-0.3c0.1-0.17%2c0.2-0.35%2c0.3-0.52c0.03-0.05%2c0.05-0.09%2c0.08-0.14c0.03-0.05%2c0.06-0.09%2c0.08-0.13 C31.15%2c95.09%2c31.26%2c94.92%2c31.37%2c94.74z'/%3e %3cpath class='st9' d='M45.18%2c113.51c-2.16%2c1.24-5.09%2c0.82-6.93-0.85c-1.84-1.67-2.56-4.42-1.94-6.83c0.47-1.84%2c1.7-3.5%2c3.36-4.42 c2.38-1.32%2c6.67-1.24%2c8.12%2c1.44c0.47%2c0.87%2c0.65%2c1.87%2c0.73%2c2.85C48.73%2c108.68%2c47.77%2c112.02%2c45.18%2c113.51z'/%3e%3c/g%3e%3c/svg%3e\";\n export default img;","import type { WheelOfFortunePartition } from './api'\n\n// @ts-ignore\nimport Thankyou1Svg from './images/Thankyou_1.svg'\n// @ts-ignore\nimport Thankyou2Svg from './images/Thankyou_2.svg'\n// @ts-ignore\nimport Thankyou3Svg from './images/Thankyou_3.svg'\n// @ts-ignore\nimport Thankyou4Svg from './images/Thankyou_4.svg'\nimport type { Lang } from './types'\nimport type { LotteryProgramForPlayer } from './types.business'\nimport { imageLoaderSvg, isSafari } from './util'\n\nexport interface Option {\n image: SVGElement | string,\n name: string,\n prizeText: string,\n prizeImage: string\n}\n\nconst optionCompliment = {\n image: Thankyou1Svg,\n name: 'Thank you',\n prizeText: '',\n prizeImage: '',\n}\n\nconst getSumProbability = (partitions) => {\n let probabilityAll = 0\n partitions.map(partition => {\n probabilityAll += Number(partition.probability)\n })\n return probabilityAll\n}\n\nconst getOptionsFromPartitions = (partitions: WheelOfFortunePartition[], lang: Lang): Option[] => {\n const options = partitions.map(_partition => {\n const option = {}\n Object.keys(_partition).map((_key) => {\n if(\n typeof _partition[_key] === 'object' && \n (_partition[_key] as Object).hasOwnProperty('*')\n ){\n const targetKey = _key === 'image1' ? 'image' : _key\n option[targetKey] = _partition[_key][lang] || _partition[_key]['*']\n }\n })\n\n return option as Option\n })\n\n if(getSumProbability(partitions) < 1){\n options.push(optionCompliment)\n }\n\n return options\n}\n\nconst preloadImage = async (src: string) => {\n if(!src) return {}\n\n return { \n image: await imageLoaderSvg(src) as SVGImageElement\n }\n}\n\nexport const getOptions = async (bonus: LotteryProgramForPlayer, lang: Lang) => {\n\n const { partitions } = bonus.program.wheelOfFortune\n\n let options: Option[] = getOptionsFromPartitions(partitions, lang)\n\n if(isSafari()){\n options = options.map(option => {\n if(option.image){\n let img = document.createElementNS(\"http://www.w3.org/2000/svg\", \"image\")\n img.href.baseVal = option.image as string\n \n return {\n ...option,\n image: img\n }\n }else{\n return option\n }\n })\n }else{\n options = await Promise.all(\n options.map(async o => ({\n ...o, \n ...(await preloadImage(o.image as string))\n }))\n )\n }\n\n return options\n}","import { findDeg } from './calc';\nimport { _postMessage } from './message';\nimport { Api, ApiConfigs, PointerMode } from './types';\nimport type { LotteryProgramForPlayer, ApiDrawResult, ApiLotteriesResult } from './types.business';\nimport { CurrentInfo } from './types.business';\nimport { fetcher } from './util';\nimport { _ } from './i18n';\n\nexport * from './business.partition'\nimport type { Option } from './business.partition'\n\nconst fetcherApi = async <T extends Api>(api: Api, endpoint: string, config: ApiConfigs[T]) => {\n\n const { session } = config\n\n const options = {\n headers: {\n 'Content-Type': 'application/json',\n 'accept': 'text/plain',\n \n ...(session ? {'x-SessionId': session} : {})\n },\n }\n\n const getArgs = {\n [Api.lotteries]: () => {\n\n const { } = config || {} as ApiConfigs[Api.lotteries]\n\n return {\n path: '/wof/lotteries', \n params: {\n },\n options,\n }\n },\n [Api.outcome]: () => {\n \n const { id } = config as ApiConfigs[Api.outcome]\n\n return {\n path: `/wof/outcome/${id}`,\n params: {\n },\n options,\n }\n },\n [Api.draw]: () => {\n \n const { id, guid } = config as ApiConfigs[Api.draw]\n\n return {\n path: `/wof/draw/${id}`,\n params: {\n },\n options: {\n ...options,\n method: 'PUT',\n\t\t\t\t\tbody: JSON.stringify({\n\t\t\t\t\t\tguid\n\t\t\t\t\t})\n }\n }\n }\n }\n\n const args = getArgs[api]()\n \n args.path = endpoint + `/v1` + args.path\n\n return await fetcher(args)\n}\n\nexport const setMessage = (id: string, entry: string | object) => {\n const _postMessageScoped = (props) => _postMessage({ ...props, id })\n switch(typeof entry) {\n case 'string': \n _postMessageScoped({ type: 'wof-private-message-open', mode: 'normal', modeValue: entry })\n break;\n case 'object': \n _postMessageScoped({ type: 'wof-private-message-open', ...(entry as object) })\n break;\n }\n}\n\nexport const getCurrentInfo = (\n lotteryProgramForPlayer: LotteryProgramForPlayer, \n key: CurrentInfo\n) => {\n\n const { current } = lotteryProgramForPlayer\n\n switch (key) {\n case CurrentInfo.ActiveTickets:\n return current.activeTickets\n\n case CurrentInfo.ImplicitTickets:\n const { \n maxImplicitTickets: max, \n usedImplicitTickets: used,\n } = current\n\n return `${max - used}/${max}`\n\n case CurrentInfo.RemainingTimes:\n return current.remainingTimes\n }\n}\n\nexport const api = {\n lotteries: \n async (endpoint: string, session: string) => {\n\n const data = await fetcherApi(Api.lotteries, endpoint, { session }) as ApiLotteriesResult\n\n const lotteryProgramForPlayers = data.items as LotteryProgramForPlayer[] || []\n\n return lotteryProgramForPlayers\n },\n draw: \n async (endpoint: string, session: string, id: string, guid, options: Option[]) => {\n\n let data = await fetcherApi(Api.draw, endpoint, { id, session, guid }) as ApiDrawResult\n \n let index = data.item?.result?.wheelOfFortunePartitionIndex\n \n const getOptionAndImageSrc = (_index: number) => {\n const option = options[_index]\n return {\n option, \n imageSrc: (option?.image as SVGAElement)?.href?.baseVal\n } as const\n }\n\n let message: any\n if(!index){\n index = options.length - 1\n \n const { imageSrc } = getOptionAndImageSrc(index)\n message = {\n mode: 'nogift',\n modeValue: {\n image: imageSrc\n }\n }\n }else{\n const { imageSrc, option } = getOptionAndImageSrc(index)\n message = {\n mode: 'gift',\n modeValue: {\n prize: option.name || 'prize',\n prizeText: option.prizeText,\n prizeSrc: option.prizeImage || imageSrc\n }\n }\n }\n \n return {\n data,\n message, index\n }\n },\n\n outcome: \n async (endpoint: string, session: string, id: string) => {\n return await fetcherApi(Api.outcome, endpoint, { session, id })\n },\n}\n\nexport const getSpinContainerSelector = (pointerMode: PointerMode) => {\n switch(pointerMode){\n case PointerMode.Arrow: return 'g.PartitionsContainer'\n case PointerMode.Partition: return '.PointerArea > div'\n }\n}\n\nexport const findDegWithPointerMode = (index: number, length: number, pointerMode: PointerMode) => {\n switch(pointerMode){\n case PointerMode.Arrow: \n return findDeg(length - index, length) // + randomInSection(length)\n case PointerMode.Partition:\n return findDeg(index, length)\n }\n}\n\nexport const isBonusInvalid = (bonus) => bonus?.current.remainingTimes == 0 && !bonus?.next","<svelte:options tag={'wof-loader'} />\n<div class=\"lds-ellipsis\"><div></div><div></div><div></div><div></div></div>\n<style lang=\"scss\">\n\n .lds-ellipsis {\n display: inline-block;\n position: relative;\n width: 80px;\n height: 80px;\n }\n .lds-ellipsis div {\n position: absolute;\n top: 33px;\n width: 13px;\n height: 13px;\n border-radius: 50%;\n background: #fff;\n animation-timing-function: cubic-bezier(0, 1, 1, 0);\n }\n .lds-ellipsis div:nth-child(1) {\n left: 8px;\n animation: lds-ellipsis1 0.6s infinite;\n }\n .lds-ellipsis div:nth-child(2) {\n left: 8px;\n animation: lds-ellipsis2 0.6s infinite;\n }\n .lds-ellipsis div:nth-child(3) {\n left: 32px;\n animation: lds-ellipsis2 0.6s infinite;\n }\n .lds-ellipsis div:nth-child(4) {\n left: 56px;\n animation: lds-ellipsis3 0.6s infinite;\n }\n @keyframes lds-ellipsis1 {\n 0% {\n transform: scale(0);\n }\n 100% {\n transform: scale(1);\n }\n }\n @keyframes lds-ellipsis3 {\n 0% {\n transform: scale(1);\n }\n 100% {\n transform: scale(0);\n }\n }\n @keyframes lds-ellipsis2 {\n 0% {\n transform: translate(0, 0);\n }\n 100% {\n transform: translate(24px, 0);\n }\n }\n\n</style>","<svelte:options tag={'lottery-program-wof-private-outcomes'} />\n\n<script lang=\"ts\">\n import type { WheelOfFortunePartition } from \"./api\";\n import { api } from \"./business\";\n import { onMountMessageLifeCycle } from \"./message\";\n import type { LotteryProgramForPlayer } from \"./types.business\";\n import { _ } from './i18n';\n import './private.loader.svelte'\n import { Lang } from \"./types\";\n import { setClientStyling } from \"./widget\";\n\n // properties\n export let lang: Lang = Lang.en\n export let endpoint: string = ''\n export let session: string = ''\n export let clientstyling:string = ''\n export let id: string = ''\n \n let rootContainer: HTMLElement\n $: clientstyling && rootContainer && setClientStyling(rootContainer, clientstyling);\n\n interface RenderReady {\n id: string,\n }\n\n interface PartitionsR extends RenderReady {\n partitions: WheelOfFortunePartition[]\n }\n \n interface outcomesItemR extends RenderReady {\n outcomes: any[]\n isLoading: boolean\n }\n\n let bonuses: LotteryProgramForPlayer[] \n let ids: string[] = []\n let partitionsList: PartitionsR[] = []\n let outcomesList: outcomesItemR[] = [];\n \n const getName = (objectI18n: any) => objectI18n?.name['*']\n\n const getPrize = (outcome, id) => {\n const partitions = partitionsList.filter(partitionsItem => partitionsItem.id === id)[0].partitions\n const index = outcome.draw.result?.wheelOfFortunePartitionIndex\n \n return !index ? 'Loss' : getName(partitions[index])\n }\n\n const eventShowOutcome = async () => {\n\n outcomesList = []\n ids.map(id => {\n outcomesList.push({\n id,\n outcomes: [],\n isLoading: true,\n })\n })\n\n ids.map(async id => {\n const result = await api.outcome(endpoint, session, id)\n const outcomes = result.items\n outcomesList = outcomesList.map(o => {\n if(o.id === id){\n return {\n ...o,\n outcomes,\n isLoading: false,\n }\n }else{\n return o\n }\n })\n })\n }\n\n const updateData = () => {\n ids = \n bonuses.map(l => l.program.id)\n\n partitionsList = \n bonuses.map(bonus => ({\n id: bonus.program.id,\n partitions: bonus.program.wheelOfFortune.partitions,\n }))\n }\n\n $: bonuses && updateData()\n\n onMountMessageLifeCycle({\n 'wof-private-bonuses-outcomes': (data) => {\n bonuses = data.bonuses\n },\n 'wof-private-message-outcomes': () => {\n eventShowOutcome()\n }\n })\n\n</script>\n\n<div class=\"Outcomes\" bind:this={rootContainer}>\n <div class=\"TableContainer\">\n <table>\n {#each outcomesList as outcomesItem}\n {#if outcomesItem.isLoading}\n <wof-loader />\n {:else}\n {#if !outcomesItem.outcomes || outcomesItem.outcomes.length === 0}\n <div class=\"OutcomeNoContent\">{$_('wof.NoHistories')}</div>\n {:else}\n <div>\n <tr>{getName(bonuses.filter(l => l.program.id === outcomesItem.id)[0].program)}</tr>\n </div>\n <thead>\n <tr>\n <th>{$_('wof.Rewards')}</th>\n <th>{$_('wof.Status')}</th>\n <th>{$_('wof.Time')}</th>\n </tr>\n </thead>\n <tbody style={outcomesItem.outcomes.length <= 5 ? 'overflow: hidden;' : ''}>\n {#each outcomesItem.outcomes as outcome}\n <tr>\n <td>{@html getPrize(outcome, outcomesItem.id)}</td>\n <td>{outcome.draw.state}</td>\n <td>{(new Date(outcome.draw.time).toLocaleString(undefined, { timeZone: Intl.DateTimeFormat().resolvedOptions().timeZone }))}</td>\n </tr>\n {/each}\n </tbody>\n {/if}\n {/if}\n {/each}\n </table>\n </div>\n</div>\n\n<style lang=\"scss\">\n\n :host {\n font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n width: 100%;\n }\n\n *,\n *::before,\n *::after {\n margin: 0;\n padding: 0;\n list-style: none;\n text-decoration: none;\n outline: none;\n box-sizing: border-box;\n }\n\n .Outcomes {\n \n width: 80%;\n margin: 30px auto;\n }\n\n .OutcomeTitle {\n color: #FFF;\n font-weight: 700;\n padding: 20px 0;\n }\n .OutcomeNoContent {\n color: #FFF;\n font-weight: 700;\n padding: 20px 20px;\n }\n\n // .TableContainer tbody {\n // max-height: 300px;\n // overflow-y: auto;\n // }\n\n table {\n \n color: #FFFFFF;\n width: 100%;\n text-align: center;\n tr {\n margin-top: 10px;\n line-height: normal;\n }\n\n }\n\n table tbody {\n display: block;\n max-height: 300px;\n overflow-y: scroll;\n margin: 30px 0;\n }\n\n table thead, table tbody tr {\n display: table;\n width: 100%;\n table-layout: fixed;\n }\n\n</style>","import { PointerMode } from \"./types\"\n\nconst sizeSchema1 = {\n radius : 247,\n rRingInner: 253,\n rRingOuter: 294,\n rBg1: 300,\n}\n\nconst sizeSchema2 = {\n radius : 247,\n rRingInner: 259,\n rRingOuter: 280,\n rBg1: 286,\n}\nconst sizeSchema3 = {\n radius : 247,\n rRingInner: 275,\n rRingOuter: 280,\n rBg1: 286,\n}\n\nexport const themes = [\n {\n size: sizeSchema1,\n pointerMode: PointerMode.Partition,\n },\n {\n size: sizeSchema2,\n pointerMode: PointerMode.Arrow,\n },\n {\n size: sizeSchema1,\n pointerMode: PointerMode.Arrow,\n },\n {\n size: sizeSchema1,\n pointerMode: PointerMode.Partition,\n },\n {\n size: sizeSchema1,\n pointerMode: PointerMode.Arrow,\n },\n {\n size: sizeSchema2,\n pointerMode: PointerMode.Arrow,\n },\n {\n size: sizeSchema3,\n pointerMode: PointerMode.Arrow,\n },\n]\n","\nexport enum SpinStep {\n launch = 'launch',\n loop = 'loop',\n halt = 'halt',\n}\n\nexport enum Easing {\n quad = 'quad',\n cubic = 'cubic',\n quart = 'quart',\n quint = 'quint',\n // \n expo = 'expo',\n sine = 'sine',\n circ = 'circ',\n}\n\nexport const easing = {\n in: {\n quad: (x: number) => Math.pow(x, 2),\n cubic: (x: number) => Math.pow(x, 3),\n quart: (x: number) => Math.pow(x, 4),\n quint: (x: number) => Math.pow(x, 5),\n //\n sine: (x: number) => 1 - Math.cos((x * Math.PI) / 2),\n expo: (x: number) => x === 0 ? 0 : Math.pow(2, 10 * x - 10),\n circ: (x: number) => 1 - Math.sqrt(1 - Math.pow(x, 2)),\n },\n out: {\n quad: (x: number) => 1 - Math.pow(1 - x, 2),\n cubic: (x: number) => 1 - Math.pow(1 - x, 3),\n quart: (x: number) => 1 - Math.pow(1 - x, 4),\n quint: (x: number) => 1 - Math.pow(1 - x, 5),\n //\n sine: (x: number) => Math.sin((x * Math.PI) / 2),\n expo: (x: number) => x === 1 ? 1 : 1 - Math.pow(2, -10 * x),\n circ: (x: number) => Math.sqrt(1 - Math.pow(x - 1, 2)),\n }\n}\n\nexport const easingGrad = {\n quad: 2,\n cubic: 3,\n quart: 4,\n quint: 5,\n sine: Math.PI / 2,\n expo: Math.LN2,\n circ: Infinity,\n}\n\nexport const easingGradX = {\n in: {\n quad: (x: number) => 2 * x,\n cubic: (x: number) => 3 * x ** 2,\n quart: (x: number) => 4 * x ** 3,\n quint: (x: number) => 5 * x ** 4,\n sine: (x: number) => Math.PI / 2 * Math.sin(Math.PI / 2 * x),\n expo: (x: number) => Math.LN2 * 10 * 2 ** (10 * x - 10),\n circ: (x: number) => -1 / 2 * (1 - x ** 2) ** (- 1 / 2),\n },\n out: {\n cubic: (x: number) => 3 * x ** 2 - 6 * x + 3,\n }\n}\n\nexport const params = [\n // basic\n {\n launchTurns: 5,\n launchSpeed: 0.2,\n loopSpeed: 15,\n haltTurns: 2,\n haltSpeed: 0.16,\n },\n // faster\n {\n launchTurns: 2,\n launchSpeed: 0.5,\n loopSpeed: 20,\n haltTurns: 2,\n haltSpeed: 0.22,\n },\n // faster with more turns\n {\n launchTurns: 6,\n launchSpeed: 1.38,\n loopSpeed: 45,\n haltTurns: 6,\n haltSpeed: 0.50,\n },\n]","import { easing, easingGrad, params, SpinStep, Easing, easingGradX } from \"./class.spinner.util\";\n\nexport class Spinner {\n\n deg: number = 0\n fps: number;\n // spinable: boolean = true\n degTarget: number = undefined\n step: SpinStep = undefined\n tick\n cb\n easingType: Easing = Easing.cubic\n shouldHalt\n\n param = params[2]\n\n constructor(inits){\n this.tick = inits.tick\n }\n\n public launch(){\n this.shouldHalt = undefined\n this.step = SpinStep.launch\n this.ticker()\n }\n\n public halt = (deg, cb = () => {}) => {\n this.shouldHalt = () => {\n this.step = SpinStep.halt\n this.cb = () => {\n cb()\n this.setDeg(deg, 0)\n }\n this.degTarget = deg + 360 * this.param.haltTurns\n this.continueRepeat()\n }\n }\n\n private continueRepeat = () => setTimeout(() => this.ticker(), 30)\n private ticker = () => {\n \n const linkSpeed = this.param.loopSpeed\n\n const easingDuration = (deg: number) => \n 33 * easingGrad[this.easingType] * deg / this.param.loopSpeed\n\n const animations = {\n launch: () => {\n const degTar = 360 * this.param.launchTurns - this.deg\n const t = easingDuration(degTar)\n \n this.animateF(t, this.deg, degTar, easing.in[this.easingType], easingGradX.in[this.easingType])\n },\n halt: () => {\n const t = easingDuration(this.degTarget)\n this.animateF(t, 0, this.degTarget, easing.out[this.easingType], easingGradX.out[this.easingType])\n },\n loop: () => {\n this.setDeg((this.deg + linkSpeed) % 360, easingGrad[this.easingType])\n this.continueRepeat()\n }\n }\n\n const stepSwitcher = {\n [SpinStep.launch]: () => {\n this.cb = () => {\n this.step = SpinStep.loop\n this.setDeg(linkSpeed, easingGrad[this.easingType])\n this.continueRepeat()\n }\n animations.launch()\n },\n [SpinStep.loop]: () => {\n if(this.shouldHalt && this.deg === 0){\n this.shouldHalt()\n }else{\n animations.loop()\n }\n },\n [SpinStep.halt]: () => {\n if(this.deg === 360 - linkSpeed){\n animations.halt()\n }else{\n animations.loop()\n }\n }\n }\n\n stepSwitcher[this.step]()\n \n // switch(this.step){\n // case SpinStep.launch:\n \n // break\n // case SpinStep.loop:\n \n // if(this.shouldHalt && this.deg === 0){\n // this.shouldHalt()\n // }else{\n \n // this.setDeg((this.deg + linkSpeed) % 360, easingGrad[this.easingType])\n // this.continueRepeat()\n // }\n // break\n // case SpinStep.halt:\n \n // if(this.deg === 360 - linkSpeed){\n \n // const t = 30 * easingGrad[this.easingType] * this.degTarget / this.param.loopSpeed\n // this.animate(t, 0, this.degTarget, easing.out[this.easingType], easingGradX.out[this.easingType])\n // }else{\n // this.setDeg((this.deg + linkSpeed) % 360, easingGrad[this.easingType])\n // this.continueRepeat()\n // }\n // break\n // }\n }\n\n private setDeg = (deg, speed) => {\n this.deg = deg\n this.tick(deg, speed)\n }\n\n animateF = (duration: number, startAngle, target: number, easing, _easingGrad) => {\n let start = null\n\n const step = () => {\n let timestamp = new Date().getTime()\n if(!start){\n start = timestamp\n }\n const progress = timestamp - start\n \n const translation = target * easing(progress / duration) + startAngle;\n const speedCur = Math.abs(_easingGrad(progress / duration))\n //const speedRealCur = target / duration * Math.abs(_easingGrad(progress / duration)) * 33\n \n this.setDeg(translation, speedCur)\n\n if (progress < duration) {\n setTimeout(() => step(), 30)\n }else{\n this.cb()\n }\n }\n step()\n }\n\n animate = (duration: number, startAngle, target: number, easing, _easingGrad) => {\n\n let animationId = null;\n window.cancelAnimationFrame(animationId);\n let start = null;\n\n const step = (timestamp) => {\n \n if (!start) {\n start = timestamp;\n }\n \n const progress = timestamp - start;\n const translation = target * easing(progress / duration) + startAngle;\n const speedCur = Math.abs(_easingGrad(progress / duration))\n \n this.setDeg(translation, speedCur)\n \n if (progress < duration) {\n animationId = window.requestAnimationFrame(step);\n }else{\n this.cb()\n }\n }\n \n animationId = window.requestAnimationFrame(step);\n }\n}","import type { Point } from \"./types\"\n\nexport const getSymmetricalPointFromScalar = \n (length: number): Point => ({\n x: length,\n y: length\n })\n\nexport const getPointOnCircle = \n (radius: number, angle: number, center: number): Point => {\n\n const centerPoint: Point = getSymmetricalPointFromScalar(center)\n\n return {\n x: centerPoint.x + radius * Math.cos(angle),\n y: centerPoint.y + radius * Math.sin(angle)\n }\n }\n\nexport const getPoint = \n (num: number, length: number, r: number, rCenter: number): Point => {\n\n const arc = 360 / length;\n const psai = Math.PI / 180 * (-90 + arc * (num - 1/2))\n\n const rCenterPoint = getSymmetricalPointFromScalar(rCenter)\n const rPoint = getSymmetricalPointFromScalar(r)\n\n return {\n x: rCenterPoint.x + rPoint.x * Math.cos(psai),\n y: rCenterPoint.y + rPoint.y * Math.sin(psai)\n }\n }\n\nexport const getPointWithNext = \n (num: number, length: number, r1: number, r2: number) => {\n\n const getPointx = (num: number) => getPoint(num, length, r1, r2)\n \n return {\n point: getPointx(num),\n pointNext: getPointx(num + 1)\n }\n }\n\nexport const getTrianglePointsY = \n (height: number, isPointUp: boolean, yBase: number) => {\n return {\n y1: yBase,\n y2: isPointUp ? yBase - height : yBase + height,\n y3: yBase\n }\n }\n\nexport const getTwoPointsOfLineGradient = (radius, index, length, angle) => ({\n x1: radius,\n y1: radius,\n x2: radius * (1 + Math.cos(2 * Math.PI / length * index + angle)),\n y2: radius * (1 + Math.sin(2 * Math.PI / length * index + angle)),\n})\n\n\nexport const pointPlus = (point1: Point, point2: Point): Point => ({\n x: point1.x + point2.x,\n y: point1.y + point2.y\n})\n\n","import { getPointOnCircle, getPointWithNext, getSymmetricalPointFromScalar, getTwoPointsOfLineGradient, pointPlus } from \"./calc.point\"\nimport { ArrowMode, Point, PointerMode, ContentDirection } from \"./types\"\nimport { mapObjectValueToTuple } from \"./util\"\n\nimport { findDegWithPointerMode } from \"./business\"\nimport { themes } from \"./themes\"\n\nenum RotateDirection {\n clockwise = 1,\n anticlockwise = -1,\n}\n\nexport class SvgCalc {\n arrowmode: ArrowMode.DownFromTop\n radius\n center\n length\n ratio\n theme\n themeIndex\n options\n contentdirection: keyof typeof ContentDirection\n\n constructor({\n size,\n radius,\n options,\n themeIndex,\n contentdirection,\n }){\n this.contentdirection = contentdirection || 'anticlockwise'\n // size\n this.center = size / 2\n this.ratio = size / 375\n // options\n this.options = options\n this.length = options.length\n // theme\n this.themeIndex = themeIndex\n this.theme = themes[themeIndex]\n //\n this.radius = radius\n }\n\n get sizeImage () {\n const getSize = (length) => this.ratio * 48 * 5 / length\n\n if(this.length <= 3) return getSize(4)\n\n switch(this.length){\n case 8: \n case 7: return this.ratio * 24\n case 6: return this.ratio * 36\n case 5: return this.ratio * 48\n case 4: return this.ratio * 56\n default: return getSize(this.length)\n }\n }\n\n getSizeImageByPartition(index) {\n if(this.options[index].name){\n return this.sizeImage / 2\n }else{\n return this.sizeImage\n }\n }\n\n getSvgImageProps (index, partitionDivisor: string | number = 1.25){\n const sizeImage = this.getSizeImageByPartition(index)\n\n let baseRadius\n if(this.options[index].name){\n baseRadius = this.radius - sizeImage / 2 - 3 * this.ratio\n }else{\n baseRadius = (this.radius - sizeImage / 2) / Number(partitionDivisor) - 3 * this.ratio;\n }\n\n return {\n ...this.getPropsForPartitionInfo(index, this.getOffsetImage(sizeImage), baseRadius, ContentDirection.outward),\n width: sizeImage,\n height: sizeImage,\n }\n }\n\n getSvgTextProps(index) {\n const sizeImage = this.getSizeImageByPartition(index)\n\n let baseRadius\n if(this.options[index].image){\n baseRadius = this.radius - sizeImage - 6 * this.ratio\n }else{\n baseRadius = this.radius - 6 * this.ratio\n }\n\n return {\n ...this.getPropsForPartitionInfo(index, this.offsetText, baseRadius),\n }\n }\n\n getSvgTextPropsAdjustedByImage(index) {\n const props = this.getSvgTextProps(index)\n const size = this.options[index].image ? 80 : 100\n\n const objectSize = {\n width: size,\n height: size,\n }\n \n return {\n ...props,\n ...objectSize,\n x: this.contentdirection === 'clockwise' ? props.x : props.x - objectSize.width,\n y: props.y - objectSize.height / 2,\n }\n }\n \n get offsetText (){\n return {\n center: 0,\n position: {\n x: 0, //option.name.length * 4,\n y: 0\n },\n \n transform: {\n x: 0,\n y: 0,\n }\n }\n }\n\n getOffsetImage (sizeImage) {\n \n return {\n center: 0,\n position: {\n x: -1 * sizeImage / 2,\n y: -1 * sizeImage / 2,\n },\n transform: {\n x: 0,\n y: 0,\n },\n }\n }\n\n get direction () {\n return RotateDirection.clockwise\n }\n\n getAngleSelf (index, contentDirection?: ContentDirection) {\n const baseAngle = 360 * index / this.length * this.direction\n const fixerAngle = 90 * (contentDirection !== undefined ? contentDirection : ContentDirection[this.contentdirection])\n const resultAngle = baseAngle + fixerAngle\n return resultAngle\n }\n\n getPartitionPositions (index, baseRadius, offset) {\n \n const angle = \n this.angleTransform(this.arrowmode) +\n this.direction * index * 2 * Math.PI / this.length\n\n const point = getPointOnCircle(baseRadius || this.radius - 9 * this.ratio, angle, this.center + offset.center)\n \n const transformOrigin: Point = pointPlus(point, offset.transform)\n const pointResult = pointPlus(point, offset.position)\n return {\n transformOrigin,\n point: pointResult,\n }\n }\n\n getPropsForPartitionInfo (\n index: number, \n offset: any,\n baseRadius?: number,\n contentDirection?: ContentDirection\n ) {\n \n const { point, transformOrigin } = this.getPartitionPositions(index, baseRadius, offset)\n const getTransformOriginString = \n (vector: Point) => \n Object.keys(vector).map(axis => `${vector[axis]}px`).join(' ')\n \n return {\n ...point,\n style: [\n `font-size: ${13 * this.ratio}px`,\n `transform: rotate(${this.getAngleSelf(index, contentDirection)}deg)`,\n `transform-origin: ${getTransformOriginString(transformOrigin)}`,\n ].join(';')\n }\n }\n\n getPartitionDraw(\n index: number,\n ){\n\n const rPoint = getSymmetricalPointFromScalar(this.center)\n const rRingInnerPoint = getSymmetricalPointFromScalar(this.radius)\n\n const { point, pointNext } = getPointWithNext(index, this.length, this.radius, this.center)\n\n const ds = [\n `M`, ...mapObjectValueToTuple(rPoint),\n `L`, ...mapObjectValueToTuple(point),\n `A`, \n ...mapObjectValueToTuple(rRingInnerPoint),\n `0 0 1`,\n ...mapObjectValueToTuple(pointNext),\n `Z`,\n ]\n\n return {\n d: ds.join(' ')\n }\n }\n\n getDeg(index?: number){\n return findDegWithPointerMode(index || this.length - 1, this.length, this.theme.pointerMode)\n }\n\n getSpinnerProps(){\n const centerPoint = getSymmetricalPointFromScalar(this.center)\n return {\n // transform: `rotate(${convertArcToDeg(0)})`, //arcStart\n \"transform-origin\": `${centerPoint.x} ${centerPoint.y}`,\n }\n }\n \n private angleTransform = (arrowmode) => {\n switch(this.theme.pointerMode){\n case PointerMode.Arrow:\n switch(arrowmode){\n case ArrowMode.DownFromTop:\n case ArrowMode.UpFromCenter:\n return - Math.PI / 2\n\n case ArrowMode.DownFromCenter:\n case ArrowMode.UpFromBottom: \n return Math.PI / 2\n }\n\n case PointerMode.Partition:\n return - Math.PI / 2\n }\n }\n}\n","import { _postMessage } from \"./message\"\nimport { setMessage } from './business';\n\nexport class Process {\n\n id: string\n halter: Function\n afterSuccess: Function\n afterSetMessage: Function\n fetcher: Function\n \n private guid: string\n private isDrawn: boolean = false\n private drawnIndex: number;\n private retryingTimes: number = 0\n private retryingMaxTimes: number = 4\n\n constructor(params){\n this.id = params.id\n this.afterSetMessage = params.afterSetMessage\n this.halter = params.halter\n this.afterSuccess = params.afterSuccess\n this.fetcher = params.fetcher\n }\n\n handleHaltProcess(index, message, fn: Function = () => {}){\n _postMessage({ id: this.id, type: 'wof-private-message-spin-before' })\n\n const cb = () => {\n setTimeout(() => {\n _postMessage({ id: this.id, type: 'wof-private-message-spin-after' })\n fn()\n this.setMessage(message)\n }, 1000)\n }\n\n // spinner.halt(calc.getDeg(index), cb)\n this.halter(index, cb)\n }\n\n getRetryingPeriod() {\n if(this.retryingTimes === 1){\n return 5 * 1000\n }else{\n return 10 * 1000\n }\n }\n\n drawInit() {\n this.retryingTimes = 0\n this.guid = undefined\n this.isDrawn = false\n }\n \n async drawer (guid?: string){\n if(guid) this.guid = guid\n if(!this.guid) throw new Error('GUID NOT FOUND')\n\n if(this.retryingTimes >= this.retryingMaxTimes){\n\n if(this.isDrawn){\n this.handleHaltProcess(this.drawnIndex, 'DrawFailed')\n }else{\n this.handleHaltProcess(undefined, 'Timeout')\n }\n\n this.drawInit()\n\n return;\n }\n this.retryingTimes += 1\n\n let isFetchCompleted = false\n let isTimeouted = false\n \n setTimeout(() => {\n if(!isFetchCompleted){\n isTimeouted = true\n this.setMessage({\n mode: 'timeout',\n modeValue: 'Retry'\n })\n }\n }, this.getRetryingPeriod())\n\n try {\n\n const { data, message, index: _index } = await this.fetcher(this.guid)\n this.drawnIndex = _index\n \n isFetchCompleted = true\n\n if(!data.success) throw new Error()\n switch(data.item.state) {\n case 'fulfilled':\n this.isDrawn = true\n break\n case 'drawn':\n this.isDrawn = true\n throw new Error()\n }\n\n if(isTimeouted) return;\n\n this.handleHaltProcess(this.drawnIndex, message, this.afterSuccess)\n this.drawInit()\n\n } catch (e) {\n if(e.message === \"Failed to fetch\"){\n isFetchCompleted = true\n this.handleHaltProcess(undefined, 'ErrorNetwork')\n return\n }\n\n if(e.message.includes(\"is not valid JSON\")){\n isFetchCompleted = true\n this.handleHaltProcess(undefined, 'ErrorJSON')\n return\n }\n\n if(isTimeouted) return;\n this.drawer()\n }\n }\n\n setMessage(entry: string | object) {\n setMessage(this.id, entry)\n this.afterSetMessage()\n }\n}","var img = \"data:image/svg+xml,%3csvg width='375' height='400' viewBox='0 0 375 400' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_4318_310)'%3e%3cpath d='M337 199.999C337 282.839 269.855 349.999 187 349.999C104.145 349.999 37 282.839 37 199.999C37 117.158 100.302 53.9152 179.817 50.1611C182.197 50.0577 184.606 49.9985 187 49.9985C189.394 49.9985 191.803 50.0429 194.183 50.1611C273.683 53.9152 337 119.552 337 199.984V199.999Z' fill='url(%23paint0_linear_4318_310)'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_4318_310' x='-13' y='-0.00146484' width='400' height='400' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='25'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 0.972917 0 0 0 0 0.729167 0 0 0 0.5 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_4318_310'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_4318_310' result='shape'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_4318_310' x1='114.86' y1='324.947' x2='267.254' y2='60.9799' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFB915'/%3e%3cstop offset='0.24' stop-color='%23BF8500'/%3e%3cstop offset='0.41' stop-color='%23FFE26A'/%3e%3cstop offset='0.46' stop-color='%23FFDD63'/%3e%3cstop offset='0.53' stop-color='%23FFCF51'/%3e%3cstop offset='0.58' stop-color='%23FFC13F'/%3e%3cstop offset='0.82' stop-color='%23FFB915'/%3e%3cstop offset='1' stop-color='%23FFF100'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='294' height='294' viewBox='0 0 294 294' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M147 0.0581055C65.8444 0.0581055 0.0595703 65.8429 0.0595703 146.999C0.0595703 228.154 65.8444 293.954 147 293.954C228.156 293.954 293.956 228.154 293.956 146.999C293.956 65.8429 228.156 0.0581055 147 0.0581055ZM147 270.75C78.6584 270.75 23.2491 215.355 23.2491 146.999C23.2491 78.6422 78.6584 23.2476 147 23.2476C215.342 23.2476 270.751 78.657 270.751 146.999C270.751 215.34 215.357 270.75 147 270.75Z' fill='url(%23paint0_linear_4318_345)'/%3e%3cdefs%3e%3clinearGradient id='paint0_linear_4318_345' x1='246.941' y1='47.0578' x2='35.8266' y2='258.172' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23000604'/%3e%3cstop offset='0.4' stop-color='%23303030'/%3e%3cstop offset='1' stop-color='%23000604'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='122' height='122' viewBox='0 0 122 122' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_321_83)'%3e%3cpath d='M60.9995 29.999C43.8758 29.999 29.9995 43.8754 29.9995 60.999C29.9995 78.1227 43.8758 91.999 60.9995 91.999C78.1232 91.999 91.9995 78.1227 91.9995 60.999C91.9995 43.8754 78.1232 29.999 60.9995 29.999Z' fill='url(%23paint0_linear_321_83)'/%3e%3c/g%3e%3cg filter='url(%23filter1_f_321_83)'%3e%3cpath d='M42.9866 67.179C42.3386 67.179 41.7446 67.107 41.2046 66.963C40.6766 66.819 40.2266 66.627 39.8546 66.387V63.975C40.2146 64.167 40.5626 64.335 40.8986 64.479C41.2466 64.623 41.5946 64.737 41.9426 64.821C42.2906 64.893 42.6446 64.929 43.0046 64.929C43.3046 64.929 43.5806 64.905 43.8326 64.857C44.0846 64.797 44.3006 64.707 44.4806 64.587C44.6726 64.467 44.8226 64.323 44.9306 64.155C45.0386 63.975 45.0926 63.765 45.0926 63.525C45.0926 63.189 45.0266 62.907 44.8946 62.679C44.7626 62.451 44.5826 62.241 44.3546 62.049C44.1266 61.857 43.8566 61.653 43.5446 61.437C43.1846 61.173 42.8366 60.879 42.5006 60.555C42.1646 60.231 41.8886 59.853 41.6726 59.421C41.4566 58.977 41.3486 58.461 41.3486 57.873C41.3486 57.297 41.4506 56.775 41.6546 56.307C41.8586 55.827 42.1526 55.413 42.5366 55.065C42.9326 54.717 43.4006 54.447 43.9406 54.255C44.4806 54.063 45.0866 53.967 45.7586 53.967C46.4306 53.967 47.0486 54.039 47.6126 54.183C48.1766 54.327 48.7226 54.543 49.2506 54.831L48.2966 56.883C47.8406 56.667 47.4026 56.505 46.9826 56.397C46.5746 56.289 46.1666 56.235 45.7586 56.235C45.5186 56.235 45.2966 56.271 45.0926 56.343C44.9006 56.403 44.7266 56.499 44.5706 56.631C44.4266 56.751 44.3126 56.901 44.2286 57.081C44.1446 57.261 44.1026 57.459 44.1026 57.675C44.1026 57.975 44.1626 58.233 44.2826 58.449C44.4146 58.665 44.5946 58.869 44.8226 59.061C45.0626 59.241 45.3506 59.445 45.6866 59.673C46.1666 59.985 46.5626 60.321 46.8746 60.681C47.1866 61.029 47.4206 61.413 47.5766 61.833C47.7326 62.241 47.8106 62.697 47.8106 63.201C47.8106 63.873 47.6846 64.461 47.4326 64.965C47.1806 65.457 46.8326 65.871 46.3886 66.207C45.9446 66.531 45.4286 66.777 44.8406 66.945C44.2646 67.101 43.6466 67.179 42.9866 67.179ZM49.5076 66.999L52.2256 54.147H55.8076C56.8516 54.147 57.6856 54.303 58.3096 54.615C58.9456 54.927 59.4016 55.365 59.6776 55.929C59.9656 56.493 60.1096 57.147 60.1096 57.891C60.1096 58.659 59.9656 59.325 59.6776 59.889C59.4016 60.453 59.0116 60.927 58.5076 61.311C58.0036 61.683 57.4096 61.965 56.7256 62.157C56.0416 62.337 55.3036 62.427 54.5116 62.427H53.1436L52.1896 66.999H49.5076ZM54.7276 60.195C55.2676 60.195 55.7356 60.111 56.1316 59.943C56.5396 59.763 56.8516 59.505 57.0676 59.169C57.2956 58.833 57.4096 58.431 57.4096 57.963C57.4096 57.423 57.2656 57.027 56.9776 56.775C56.6896 56.511 56.2636 56.379 55.6996 56.379H54.4396L53.6296 60.195H54.7276ZM59.5039 66.999L59.8279 65.451L61.4659 64.731L63.2299 56.415L61.8979 55.695L62.2219 54.147H67.9099L67.5859 55.695L65.9119 56.415L64.1479 64.731L65.5159 65.451L65.1919 66.999H59.5039ZM67.3845 66.999L70.1025 54.147H73.2345L76.2225 63.615H76.2945C76.3305 63.423 76.3665 63.189 76.4025 62.913C76.4505 62.637 76.4985 62.343 76.5465 62.031C76.6065 61.707 76.6665 61.389 76.7265 61.077C76.7865 60.765 76.8405 60.483 76.8885 60.231L78.1845 54.147H80.5965L77.8785 66.999H74.8725L71.7405 57.279H71.6505C71.6385 57.351 71.6145 57.525 71.5785 57.801C71.5425 58.065 71.4945 58.383 71.4345 58.755C71.3865 59.127 71.3265 59.511 71.2545 59.907C71.1945 60.291 71.1345 60.639 71.0745 60.951L69.7965 66.999H67.3845Z' fill='%23FFF8BA'/%3e%3c/g%3e%3cpath d='M42.9866 67.179C42.3386 67.179 41.7446 67.107 41.2046 66.963C40.6766 66.819 40.2266 66.627 39.8546 66.387V63.975C40.2146 64.167 40.5626 64.335 40.8986 64.479C41.2466 64.623 41.5946 64.737 41.9426 64.821C42.2906 64.893 42.6446 64.929 43.0046 64.929C43.3046 64.929 43.5806 64.905 43.8326 64.857C44.0846 64.797 44.3006 64.707 44.4806 64.587C44.6726 64.467 44.8226 64.323 44.9306 64.155C45.0386 63.975 45.0926 63.765 45.0926 63.525C45.0926 63.189 45.0266 62.907 44.8946 62.679C44.7626 62.451 44.5826 62.241 44.3546 62.049C44.1266 61.857 43.8566 61.653 43.5446 61.437C43.1846 61.173 42.8366 60.879 42.5006 60.555C42.1646 60.231 41.8886 59.853 41.6726 59.421C41.4566 58.977 41.3486 58.461 41.3486 57.873C41.3486 57.297 41.4506 56.775 41.6546 56.307C41.8586 55.827 42.1526 55.413 42.5366 55.065C42.9326 54.717 43.4006 54.447 43.9406 54.255C44.4806 54.063 45.0866 53.967 45.7586 53.967C46.4306 53.967 47.0486 54.039 47.6126 54.183C48.1766 54.327 48.7226 54.543 49.2506 54.831L48.2966 56.883C47.8406 56.667 47.4026 56.505 46.9826 56.397C46.5746 56.289 46.1666 56.235 45.7586 56.235C45.5186 56.235 45.2966 56.271 45.0926 56.343C44.9006 56.403 44.7266 56.499 44.5706 56.631C44.4266 56.751 44.3126 56.901 44.2286 57.081C44.1446 57.261 44.1026 57.459 44.1026 57.675C44.1026 57.975 44.1626 58.233 44.2826 58.449C44.4146 58.665 44.5946 58.869 44.8226 59.061C45.0626 59.241 45.3506 59.445 45.6866 59.673C46.1666 59.985 46.5626 60.321 46.8746 60.681C47.1866 61.029 47.4206 61.413 47.5766 61.833C47.7326 62.241 47.8106 62.697 47.8106 63.201C47.8106 63.873 47.6846 64.461 47.4326 64.965C47.1806 65.457 46.8326 65.871 46.3886 66.207C45.9446 66.531 45.4286 66.777 44.8406 66.945C44.2646 67.101 43.6466 67.179 42.9866 67.179ZM49.5076 66.999L52.2256 54.147H55.8076C56.8516 54.147 57.6856 54.303 58.3096 54.615C58.9456 54.927 59.4016 55.365 59.6776 55.929C59.9656 56.493 60.1096 57.147 60.1096 57.891C60.1096 58.659 59.9656 59.325 59.6776 59.889C59.4016 60.453 59.0116 60.927 58.5076 61.311C58.0036 61.683 57.4096 61.965 56.7256 62.157C56.0416 62.337 55.3036 62.427 54.5116 62.427H53.1436L52.1896 66.999H49.5076ZM54.7276 60.195C55.2676 60.195 55.7356 60.111 56.1316 59.943C56.5396 59.763 56.8516 59.505 57.0676 59.169C57.2956 58.833 57.4096 58.431 57.4096 57.963C57.4096 57.423 57.2656 57.027 56.9776 56.775C56.6896 56.511 56.2636 56.379 55.6996 56.379H54.4396L53.6296 60.195H54.7276ZM59.5039 66.999L59.8279 65.451L61.4659 64.731L63.2299 56.415L61.8979 55.695L62.2219 54.147H67.9099L67.5859 55.695L65.9119 56.415L64.1479 64.731L65.5159 65.451L65.1919 66.999H59.5039ZM67.3845 66.999L70.1025 54.147H73.2345L76.2225 63.615H76.2945C76.3305 63.423 76.3665 63.189 76.4025 62.913C76.4505 62.637 76.4985 62.343 76.5465 62.031C76.6065 61.707 76.6665 61.389 76.7265 61.077C76.7865 60.765 76.8405 60.483 76.8885 60.231L78.1845 54.147H80.5965L77.8785 66.999H74.8725L71.7405 57.279H71.6505C71.6385 57.351 71.6145 57.525 71.5785 57.801C71.5425 58.065 71.4945 58.383 71.4345 58.755C71.3865 59.127 71.3265 59.511 71.2545 59.907C71.1945 60.291 71.1345 60.639 71.0745 60.951L69.7965 66.999H67.3845Z' fill='white'/%3e%3cg filter='url(%23filter2_d_321_83)'%3e%3cpath d='M83.3025 35.3267L78.3808 35.977C86.2141 41.4307 91.4018 50.4464 91.4905 60.7183C91.6383 77.5525 78.1148 91.3125 61.2806 91.4603C57.0388 91.5046 52.9744 90.6622 49.2942 89.1251L50.9939 85.0311L43.6336 85.9917L38.7119 86.6421L46.2496 96.5002L47.9493 92.3914C52.0581 94.1059 56.5807 95.037 61.325 94.9926C80.1101 94.8301 95.1855 79.4739 95.0229 60.6888C94.9342 50.5498 90.4116 41.4898 83.3173 35.3267H83.3025Z' fill='url(%23paint1_linear_321_83)'/%3e%3c/g%3e%3cg filter='url(%23filter3_d_321_83)'%3e%3cpath d='M75.7797 25.4835L74.0653 29.5923C69.9565 27.8779 65.4339 26.9467 60.7043 26.9911C41.9192 27.1537 26.8291 42.5098 27.0064 61.2949C27.0951 71.4339 31.6177 80.4791 38.6972 86.6423L43.6189 85.992C35.7856 80.5382 30.6127 71.5226 30.524 61.2506C30.3762 44.4164 43.8997 30.6565 60.7339 30.5087C64.9757 30.4643 69.0254 31.3068 72.7203 32.8439L71.0206 36.9379L78.381 35.9772L83.3026 35.3269H83.3174L75.7797 25.4688V25.4835Z' fill='url(%23paint2_linear_321_83)'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_321_83' x='-0.000488281' y='-0.000976562' width='122' height='122' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='15'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_321_83'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_321_83' result='shape'/%3e%3c/filter%3e%3cfilter id='filter1_f_321_83' x='33.8545' y='47.9668' width='52.7422' height='25.2124' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='3' result='effect1_foregroundBlur_321_83'/%3e%3c/filter%3e%3cfilter id='filter2_d_321_83' x='28.7119' y='25.3267' width='76.3125' height='81.1733' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='5'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_321_83'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_321_83' result='shape'/%3e%3c/filter%3e%3cfilter id='filter3_d_321_83' x='17.0049' y='15.4688' width='76.3125' height='81.1733' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='5'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_321_83'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_321_83' result='shape'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_321_83' x1='86.7076' y1='35.306' x2='24.1663' y2='97.8472' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.28' stop-color='%23303030'/%3e%3cstop offset='1' stop-color='%23000604'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_321_83' x1='88.8306' y1='39.4421' x2='57.2832' y2='95.2084' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFB915'/%3e%3cstop offset='0.24' stop-color='%23BF8500'/%3e%3cstop offset='0.41' stop-color='%23FFE26A'/%3e%3cstop offset='0.46' stop-color='%23FFDD63'/%3e%3cstop offset='0.53' stop-color='%23FFCF51'/%3e%3cstop offset='0.58' stop-color='%23FFC13F'/%3e%3cstop offset='0.82' stop-color='%23FFB915'/%3e%3cstop offset='1' stop-color='%23FFF100'/%3e%3c/linearGradient%3e%3clinearGradient id='paint2_linear_321_83' x1='34.448' y1='80.3064' x2='64.3802' y2='27.3922' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFB915'/%3e%3cstop offset='0.24' stop-color='%23BF8500'/%3e%3cstop offset='0.41' stop-color='%23FFE26A'/%3e%3cstop offset='0.46' stop-color='%23FFDD63'/%3e%3cstop offset='0.53' stop-color='%23FFCF51'/%3e%3cstop offset='0.58' stop-color='%23FFC13F'/%3e%3cstop offset='0.82' stop-color='%23FFB915'/%3e%3cstop offset='1' stop-color='%23FFF100'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='120' height='120' viewBox='0 0 120 120' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M59.9219 6.00049L73.7783 30.0005H46.0655L59.9219 6.00049Z' fill='url(%23paint0_linear_321_83)'/%3e%3cg filter='url(%23filter0_d_321_83)'%3e%3cpath d='M59.9142 30C43.4507 30 30.1094 43.3414 30.1094 59.8049C30.1094 76.2684 43.4507 89.6097 59.9142 89.6097C76.3777 89.6097 89.7191 76.2684 89.7191 59.8049C89.7191 43.3414 76.3777 30 59.9142 30Z' fill='url(%23paint1_linear_321_83)'/%3e%3c/g%3e%3cg filter='url(%23filter1_f_321_83)'%3e%3cpath d='M41.9085 66.18C41.2605 66.18 40.6665 66.108 40.1265 65.964C39.5985 65.82 39.1485 65.628 38.7765 65.388V62.976C39.1365 63.168 39.4845 63.336 39.8205 63.48C40.1685 63.624 40.5165 63.738 40.8645 63.822C41.2125 63.894 41.5665 63.93 41.9265 63.93C42.2265 63.93 42.5025 63.906 42.7545 63.858C43.0065 63.798 43.2225 63.708 43.4025 63.588C43.5945 63.468 43.7445 63.324 43.8525 63.156C43.9605 62.976 44.0145 62.766 44.0145 62.526C44.0145 62.19 43.9485 61.908 43.8165 61.68C43.6845 61.452 43.5045 61.242 43.2765 61.05C43.0485 60.858 42.7785 60.654 42.4665 60.438C42.1065 60.174 41.7585 59.88 41.4225 59.556C41.0865 59.232 40.8105 58.854 40.5945 58.422C40.3785 57.978 40.2705 57.462 40.2705 56.874C40.2705 56.298 40.3725 55.776 40.5765 55.308C40.7805 54.828 41.0745 54.414 41.4585 54.066C41.8545 53.718 42.3225 53.448 42.8625 53.256C43.4025 53.064 44.0085 52.968 44.6805 52.968C45.3525 52.968 45.9705 53.04 46.5345 53.184C47.0985 53.328 47.6445 53.544 48.1725 53.832L47.2185 55.884C46.7625 55.668 46.3245 55.506 45.9045 55.398C45.4965 55.29 45.0885 55.236 44.6805 55.236C44.4405 55.236 44.2185 55.272 44.0145 55.344C43.8225 55.404 43.6485 55.5 43.4925 55.632C43.3485 55.752 43.2345 55.902 43.1505 56.082C43.0665 56.262 43.0245 56.46 43.0245 56.676C43.0245 56.976 43.0845 57.234 43.2045 57.45C43.3365 57.666 43.5165 57.87 43.7445 58.062C43.9845 58.242 44.2725 58.446 44.6085 58.674C45.0885 58.986 45.4845 59.322 45.7965 59.682C46.1085 60.03 46.3425 60.414 46.4985 60.834C46.6545 61.242 46.7325 61.698 46.7325 62.202C46.7325 62.874 46.6065 63.462 46.3545 63.966C46.1025 64.458 45.7545 64.872 45.3105 65.208C44.8665 65.532 44.3505 65.778 43.7625 65.946C43.1865 66.102 42.5685 66.18 41.9085 66.18ZM48.4294 66L51.1474 53.148H54.7294C55.7734 53.148 56.6074 53.304 57.2314 53.616C57.8674 53.928 58.3234 54.366 58.5994 54.93C58.8874 55.494 59.0314 56.148 59.0314 56.892C59.0314 57.66 58.8874 58.326 58.5994 58.89C58.3234 59.454 57.9334 59.928 57.4294 60.312C56.9254 60.684 56.3314 60.966 55.6474 61.158C54.9634 61.338 54.2254 61.428 53.4334 61.428H52.0654L51.1114 66H48.4294ZM53.6494 59.196C54.1894 59.196 54.6574 59.112 55.0534 58.944C55.4614 58.764 55.7734 58.506 55.9894 58.17C56.2174 57.834 56.3314 57.432 56.3314 56.964C56.3314 56.424 56.1874 56.028 55.8994 55.776C55.6114 55.512 55.1854 55.38 54.6214 55.38H53.3614L52.5514 59.196H53.6494ZM58.4258 66L58.7498 64.452L60.3878 63.732L62.1518 55.416L60.8198 54.696L61.1438 53.148H66.8318L66.5078 54.696L64.8338 55.416L63.0698 63.732L64.4378 64.452L64.1138 66H58.4258ZM66.3064 66L69.0244 53.148H72.1564L75.1444 62.616H75.2164C75.2524 62.424 75.2884 62.19 75.3244 61.914C75.3724 61.638 75.4204 61.344 75.4684 61.032C75.5284 60.708 75.5884 60.39 75.6484 60.078C75.7084 59.766 75.7624 59.484 75.8104 59.232L77.1064 53.148H79.5184L76.8004 66H73.7944L70.6624 56.28H70.5724C70.5604 56.352 70.5364 56.526 70.5004 56.802C70.4644 57.066 70.4164 57.384 70.3564 57.756C70.3084 58.128 70.2484 58.512 70.1764 58.908C70.1164 59.292 70.0564 59.64 69.9964 59.952L68.7184 66H66.3064Z' fill='%23FFF8BA'/%3e%3c/g%3e%3cpath d='M41.9085 66.18C41.2605 66.18 40.6665 66.108 40.1265 65.964C39.5985 65.82 39.1485 65.628 38.7765 65.388V62.976C39.1365 63.168 39.4845 63.336 39.8205 63.48C40.1685 63.624 40.5165 63.738 40.8645 63.822C41.2125 63.894 41.5665 63.93 41.9265 63.93C42.2265 63.93 42.5025 63.906 42.7545 63.858C43.0065 63.798 43.2225 63.708 43.4025 63.588C43.5945 63.468 43.7445 63.324 43.8525 63.156C43.9605 62.976 44.0145 62.766 44.0145 62.526C44.0145 62.19 43.9485 61.908 43.8165 61.68C43.6845 61.452 43.5045 61.242 43.2765 61.05C43.0485 60.858 42.7785 60.654 42.4665 60.438C42.1065 60.174 41.7585 59.88 41.4225 59.556C41.0865 59.232 40.8105 58.854 40.5945 58.422C40.3785 57.978 40.2705 57.462 40.2705 56.874C40.2705 56.298 40.3725 55.776 40.5765 55.308C40.7805 54.828 41.0745 54.414 41.4585 54.066C41.8545 53.718 42.3225 53.448 42.8625 53.256C43.4025 53.064 44.0085 52.968 44.6805 52.968C45.3525 52.968 45.9705 53.04 46.5345 53.184C47.0985 53.328 47.6445 53.544 48.1725 53.832L47.2185 55.884C46.7625 55.668 46.3245 55.506 45.9045 55.398C45.4965 55.29 45.0885 55.236 44.6805 55.236C44.4405 55.236 44.2185 55.272 44.0145 55.344C43.8225 55.404 43.6485 55.5 43.4925 55.632C43.3485 55.752 43.2345 55.902 43.1505 56.082C43.0665 56.262 43.0245 56.46 43.0245 56.676C43.0245 56.976 43.0845 57.234 43.2045 57.45C43.3365 57.666 43.5165 57.87 43.7445 58.062C43.9845 58.242 44.2725 58.446 44.6085 58.674C45.0885 58.986 45.4845 59.322 45.7965 59.682C46.1085 60.03 46.3425 60.414 46.4985 60.834C46.6545 61.242 46.7325 61.698 46.7325 62.202C46.7325 62.874 46.6065 63.462 46.3545 63.966C46.1025 64.458 45.7545 64.872 45.3105 65.208C44.8665 65.532 44.3505 65.778 43.7625 65.946C43.1865 66.102 42.5685 66.18 41.9085 66.18ZM48.4294 66L51.1474 53.148H54.7294C55.7734 53.148 56.6074 53.304 57.2314 53.616C57.8674 53.928 58.3234 54.366 58.5994 54.93C58.8874 55.494 59.0314 56.148 59.0314 56.892C59.0314 57.66 58.8874 58.326 58.5994 58.89C58.3234 59.454 57.9334 59.928 57.4294 60.312C56.9254 60.684 56.3314 60.966 55.6474 61.158C54.9634 61.338 54.2254 61.428 53.4334 61.428H52.0654L51.1114 66H48.4294ZM53.6494 59.196C54.1894 59.196 54.6574 59.112 55.0534 58.944C55.4614 58.764 55.7734 58.506 55.9894 58.17C56.2174 57.834 56.3314 57.432 56.3314 56.964C56.3314 56.424 56.1874 56.028 55.8994 55.776C55.6114 55.512 55.1854 55.38 54.6214 55.38H53.3614L52.5514 59.196H53.6494ZM58.4258 66L58.7498 64.452L60.3878 63.732L62.1518 55.416L60.8198 54.696L61.1438 53.148H66.8318L66.5078 54.696L64.8338 55.416L63.0698 63.732L64.4378 64.452L64.1138 66H58.4258ZM66.3064 66L69.0244 53.148H72.1564L75.1444 62.616H75.2164C75.2524 62.424 75.2884 62.19 75.3244 61.914C75.3724 61.638 75.4204 61.344 75.4684 61.032C75.5284 60.708 75.5884 60.39 75.6484 60.078C75.7084 59.766 75.7624 59.484 75.8104 59.232L77.1064 53.148H79.5184L76.8004 66H73.7944L70.6624 56.28H70.5724C70.5604 56.352 70.5364 56.526 70.5004 56.802C70.4644 57.066 70.4164 57.384 70.3564 57.756C70.3084 58.128 70.2484 58.512 70.1764 58.908C70.1164 59.292 70.0564 59.64 69.9964 59.952L68.7184 66H66.3064Z' fill='white'/%3e%3cg filter='url(%23filter2_d_321_83)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M66.0115 26.5482L59.9215 16L53.8332 26.5453C38.0637 29.4087 26.1094 43.2083 26.1094 59.8049C26.1094 78.4775 41.2416 93.6097 59.9142 93.6097C78.5869 93.6097 93.7191 78.4775 93.7191 59.8049C93.7191 43.214 81.7729 29.4181 66.0115 26.5482ZM59.9142 30C43.4507 30 30.1094 43.3414 30.1094 59.8049C30.1094 76.2684 43.4507 89.6097 59.9142 89.6097C76.3777 89.6097 89.7191 76.2684 89.7191 59.8049C89.7191 43.3414 76.3777 30 59.9142 30Z' fill='url(%23paint2_linear_321_83)'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_321_83' x='0.109375' y='0' width='119.61' height='119.61' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='15'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_321_83'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_321_83' result='shape'/%3e%3c/filter%3e%3cfilter id='filter1_f_321_83' x='32.7764' y='46.9678' width='52.7422' height='25.2124' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='3' result='effect1_foregroundBlur_321_83'/%3e%3c/filter%3e%3cfilter id='filter2_d_321_83' x='16.1094' y='6' width='87.6099' height='97.6099' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='5'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_321_83'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_321_83' result='shape'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_321_83' x1='52.6786' y1='39.0152' x2='67.1729' y2='5.19525' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.0604165' stop-color='%23FFB915'/%3e%3cstop offset='0.2375' stop-color='%23C48A02'/%3e%3cstop offset='0.477083' stop-color='%23FFE067'/%3e%3cstop offset='0.721875' stop-color='%23FFB915'/%3e%3cstop offset='1' stop-color='%23FFF100'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_321_83' x1='84.6312' y1='35.0879' x2='24.5011' y2='95.2325' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.28' stop-color='%23303030'/%3e%3cstop offset='1' stop-color='%23000604'/%3e%3c/linearGradient%3e%3clinearGradient id='paint2_linear_321_83' x1='44.6107' y1='96.0708' x2='83.0673' y2='17.9006' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.0604165' stop-color='%23FFB915'/%3e%3cstop offset='0.2375' stop-color='%23C48A02'/%3e%3cstop offset='0.477083' stop-color='%23FFE067'/%3e%3cstop offset='0.721875' stop-color='%23FFB915'/%3e%3cstop offset='1' stop-color='%23FFF100'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1.13725 6.59296C-1.06246 11.7081 1.3605 17.6636 6.54907 19.8949C11.7376 22.1261 17.727 19.7883 19.9267 14.6732C22.1264 9.55803 19.7035 3.60256 14.5149 1.37127C9.32636 -0.860015 3.33697 1.47782 1.13725 6.59296Z' fill='url(%23paint0_radial_4318_413)'/%3e%3cdefs%3e%3cradialGradient id='paint0_radial_4318_413' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(10.4878 10.6315) rotate(-156.73) scale(10.1906 10.0463)'%3e%3cstop offset='0.3' stop-color='white'/%3e%3cstop offset='0.3099' stop-color='%23FFFCDB'/%3e%3cstop offset='0.3232' stop-color='%23FFF9B2'/%3e%3cstop offset='0.3381' stop-color='%23FFF68C'/%3e%3cstop offset='0.3543' stop-color='%23FFF36C'/%3e%3cstop offset='0.3722' stop-color='%23FFF150'/%3e%3cstop offset='0.3925' stop-color='%23FFEF3A'/%3e%3cstop offset='0.4161' stop-color='%23FFEE29'/%3e%3cstop offset='0.4453' stop-color='%23FFED1E'/%3e%3cstop offset='0.4863' stop-color='%23FFEC17'/%3e%3cstop offset='0.6' stop-color='%23FFEC15'/%3e%3cstop offset='1' stop-color='%23FFEC15' stop-opacity='0'/%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='168' height='197' viewBox='0 0 168 197' fill='none' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cg style='mix-blend-mode:screen' opacity='0.41'%3e%3crect x='40.5713' y='46.3091' width='88.5275' height='107.038' fill='url(%23pattern0)'/%3e%3c/g%3e%3cg style='mix-blend-mode:color-dodge'%3e%3crect x='40.5713' y='46.3091' width='88.5275' height='107.038' fill='url(%23pattern1)'/%3e%3c/g%3e%3cg filter='url(%23filter0_f_4318_340)'%3e%3cpath d='M149.978 33.9845C130.034 23.738 107.649 18 84 18C60.3511 18 37.9664 23.738 18.022 33.9845C20.1463 32.904 22.3058 31.8607 24.4653 30.8733L84 179L143.535 30.8733C145.694 31.8607 147.854 32.8853 149.978 33.9845Z' fill='url(%23paint0_radial_4318_340)'/%3e%3c/g%3e%3cg filter='url(%23filter1_f_4318_340)'%3e%3cpath d='M149.978 33.9845C130.034 23.738 107.649 18 84 18C60.3511 18 37.9664 23.738 18.022 33.9845C20.1463 32.904 22.3058 31.8607 24.4653 30.8733L84 179L143.535 30.8733C145.694 31.8607 147.854 32.8853 149.978 33.9845Z' fill='url(%23paint1_radial_4318_340)'/%3e%3c/g%3e%3cdefs%3e%3cpattern id='pattern0' patternContentUnits='objectBoundingBox' width='1' height='1'%3e%3cuse xlink:href='%23image0_4318_340' transform='matrix(0.00345457 0 0 0.00285714 -0.0320035 0)'/%3e%3c/pattern%3e%3cpattern id='pattern1' patternContentUnits='objectBoundingBox' width='1' height='1'%3e%3cuse xlink:href='%23image0_4318_340' transform='matrix(0.00345457 0 0 0.00285714 -0.0320035 0)'/%3e%3c/pattern%3e%3cfilter id='filter0_f_4318_340' x='0.0219727' y='0' width='167.956' height='197' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='9' result='effect1_foregroundBlur_4318_340'/%3e%3c/filter%3e%3cfilter id='filter1_f_4318_340' x='0.0219727' y='0' width='167.956' height='197' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='9' result='effect1_foregroundBlur_4318_340'/%3e%3c/filter%3e%3cradialGradient id='paint0_radial_4318_340' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(84 154.231) rotate(-90) scale(122.077 115.044)'%3e%3cstop stop-color='%23FFF8BA' stop-opacity='0.7'/%3e%3cstop offset='0.294792' stop-color='%23FFF8BA' stop-opacity='0.384271'/%3e%3cstop offset='1' stop-color='%23FFF8BA' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint1_radial_4318_340' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(84 154.231) rotate(-90) scale(100.846 95.0365)'%3e%3cstop stop-color='%23FFB82F' stop-opacity='0.7'/%3e%3cstop offset='0.305208' stop-color='%23FFB82F' stop-opacity='0.384271'/%3e%3cstop offset='0.523958' stop-color='%23FFB82F' stop-opacity='0.165346'/%3e%3cstop offset='1' stop-color='%23FFB82F' stop-opacity='0'/%3e%3c/radialGradient%3e%3cimage id='image0_4318_340' width='308' height='350' xlink:href='data:image/png%3bbase64%2ciVBORw0KGgoAAAANSUhEUgAAATQAAAFeCAYAAAAL7uOjAAAACXBIWXMAACxKAAAsSgF3enRNAAAgAElEQVR4nOy9T6xtT3YetFZdM4gUKRGMGOFImdOZMXMPGUEzACwrAmfCCIUeMHAQilqRRQyE0ECEIisSbYSwgxRoEzsIIaAtJYoSBHRHSCgIS21ZEbYI0JYtx4r77ULn7FprfetP1d7n3HPfu%2b/eV7/fu%2becvWtX1d676qtv/alV3HunL%2blLem5i5p988EP8P3vvf/3Li/mSbklfAO0NJ2b%2bUSL60XGH%2bP0PE9FX4M4vx/%2bJN/AkfiX8/v7lX%2b/9G5%2boPV/SR05fAO0zT8wsg/UrA6gu//7J13xXzESXbseXL9cEfTB0x4/UO3%2bLiL47vn9//Luk71zb0Pt3Pk4zvqTnpi%2bA9hkkZv4WMKzPgknx4clljoM0%2buzHBz8Bvh9cPr8wv9eXvgDaK0nM/O3Brn7sES3aMYNJ3u8hfEwzPAd46tKkx1UELabH9M6aAa7KFhZ5Y/q1we4uYPf1hzT9S7opfQG0j5iY%2bZtDNLz8%2b0MvUbPCDz8WiO5NqRXsIO1kqUUfnXTbx/XmvhfmnmPXw3ek7w193tce1sQvKaUvgPbgNKx9X3lJ4OLyRwaHGct4FtTddXF9kcO2Rbqvh56XR%2b8uv5Z8b02/8oXRPS59AbQ7EzN/NQDXQxXxGafOIwn7P2HIfTrmlknjrC3PR5/bezWyRmFn/tRxmZ7BMYj8N6bvDYPEBei%2bdU8B7zV9AbSTiZm//lLgRYQWvzuurQss4ezUtY9KdcPurnfdU58HgudGQUa286PHrr1jxIkx4gJy3/lidZ2nL4A2SaDveoiSHtNZkXF6zcEBb0QEufNh6HV7QVX7BXI7/F2mG7vqrQB4aU8HlhXbXJfXq4%2bTRoVn6%2bQE4L59XxFvL30BtJGGlfErt7pFVGqguwHrfGHH5dA5hnZb6c9MwBqfk04D4C03ny4pZM6ivDMgd74pz2JxV4B777q4dwtoA8C%2b%2bhylPQt6XL1E9ejt5VCiVeeumbaLfaZbX/GDkW0GYyhlnyEz96YzAIjsjCgzNH/1WYCrdXHnb2m0vN/1Kt8lwL0bQHsEgLny6HmuEZU7QyRot7qGKXCw/91PDQMuvj0wcaxleYdFyvewvKs7u3U/h2hzgAOjwrwJ5/zi2IHxs91HfvE9uIy8WUAb3vVfe1G3iQKEUp7DE8BfTiFa4Z4RfjhGdNI14q50Ao9WQmY1H5RNvav9c8g5c8kF2LDtaVJYusYBMzvNym53/n2G68jFAfjbb5G9vRlAG0r8r35M94lzeq/lwVAsF7PxosiQIQEZilJ3pocIwSU7O3NXp7VOt1ySm6DXjCfVq3OxmgKpIP99ImpxZo6NOf/9FtTvvBX29tkC2nCjuADYP/vQcudfcr6EaLcJa5Hp3XZRPFyLm68hMVMNZ4sm9vTlTLoDAMsTfYAIZ%2biaAhzN0Kw4tAY4ry%2brEe2FwI2Go%2b%2bFvX3zvss/bfpsAI2ZLxbIn/zYLGzeHst3s9jpMhQi54kLqywJOHgUOXvFN2DeffCY27Iu9b6%2beD/4eb2UY2eLmo4Ark9AaH5ZTdvOWFBPQfjzXEO%2b9TmB26sGNGb%2b2tCDffWRUSbuATCXM4DZ%2bQqrUxzG/R3QUYibXjC%2b9x0/n%2bWtVgcsbSqnBuz9fVfBizMi7qGNQg1L5R4nQBQdXCnun2FwwTbxPHC7FQTLdAW3wd6%2bf8f1HyW9OkADEHu4Qp918eDtAzXrum7xtFhwk1tFxJnI6cRWDxrPfsW8/HnqwvpZPdBicchC/NkdbPzx7tCLy%2buOAG7F8gp%2b538mHVx9U1NwCyJp/XTfNri9CkAbC7q/9mh9mK%2bDnq/ijuADIuPNUl0FZMd69foIO4jdv70CFdp6ORfP27hUnD8OAIkjiBlzu04EZXXxwGBn0bBwsrkrBmctmlobDpnbGV3biWau0qsSSz8poA3fsBcDMa2Hjkf4QjJyByJTuws3SmCsNHJndXlwtbuEB0OLNOBxKVQ3veE7pPtzaclgzvftfqxAg3x1jZnhndO5%2bdNHDKq2DMyA7fzwfhi4ffNTLqj/6ID2kv5hZX3%2bjz9eZl7mcOUlZf7x5UQRBgt2tbhw0tQIrAv285HS0WL76SSzYETP7qnZDpAYEi57PWKGHgMjqM0aUAAcR3CaU6uyTVPWlsXQc%2bkh4PaLQyT9qOD20QCNmX/wMUBszrQK2DimZflsBWYHQudafPU/zvOzOSOLtT/HD21W7/RocTreY8x6d%2bseBX4FsNV5sHTf%2bihyFraGutBJPmcpnZQxvdskslbln03PspLS8HO7ANujdwUr04sCGjN//6Vj4K8xqWBlN8o%2bufwsPt0jeDoGs7RKHsAaV8BG3np65hU/kNFFUXpaVWz0CbHvWeB3wM7w2NFE4IfNWuRMbY%2bvVwEoipsTS%2bkZcEsAXF9/7nneIrou04uvUHg4oL2EXmzJWs4pcQpGtcgzPXknmCVWUinv1xaBWYuXQPaR00zMTNPKBO9uZVVHV50qbwJsGfysxAgyUf82H1LHABdBLZewBjdt5wPWkrpaH897XkTf9jBAeymRMkl0JwFsWs4ZXVp5cgFmN2GaFy/x2G16r2MwU/DkI%2bXODRUfZJ2BV5kHd0m5sRveDH4OoCa6rDPCeQU%2bE1CbW0pD3lm5NdFLdWNxPf84x3mXrC/3nwfj2889SiR9FqAx83dfeg9Idoh2H/WICuhpKQcnOAIZ4Zitet6EsUS9XgLpcyIncwYxikD2kVNkabX%2bMPJUS8e98X7wS29oAWyIRrPqamZ2AB/jNC9cRuRYIdWW98YBBLv/kvIvWue%2bZghz8vGJ8m5Ov01Ef633/uP3FnAXoH0sBT85QLvzev/nBMHLBxF/7rZQTsTLDGZhe7cFyMZHUwGZHMPh8SI4twCp6WQyYR9n0zGbghzBw/gQ2FJZ1t6eBn7BzM6gEWVjgpdDvRL0qMgYz%2b0I/A/B7YzY%2bjLARmPv0/%2bm9/4Tt1x0GtCY%2bTsvEY56WSfdLIcV1xMl2DlAtRnOLcHsBLGK%2bSOXueVW2YFEBWLh2U2VkI9L8X215Q2s9Y%2bb%2b%2bVHzb04aFixBjasYSYtrkCtzl%2b2pGZlB8g6A7YMaEVhZ1lbP2sbz4j2AuD2D4novyWi//JI57YENGb%2bxlgQ/tF3634OmGW8qgDNPPzP1FJbJWfgdLKcqe6sRsfMyI6BzM/xuZaHpFHfFMCqd/CgVAJfvGGenJoBWyrS0y4kUTcBGxZbiqt2rGeClhoWLikNCkvN1xLc7nHXeHHWJuliUPj2sJh%2bF0%2bUgDacX//ll2vPcbpF1Fzm4goMTjpaHOrMIpjhyMmKrcTIymzHzmhRtFwBma2yvrF73SjqK5jBZLEqe53jtuVDdQnWnI7HZsrtyfNJR0%2bAWlY1Tco%2bALXUjhWwLUCtLvWozXpzdzz%2bjwZsNFxBvibA9iNydCwK/8ZLK/nPpFlXP82ogmxZAsnyuknuIzC7NvCodbVomZT7q2KivmoBZDrJ37r06%2bz5M%2byr3crPwjuKTIU9olTgh12AUVRldsCWno8LtdFdO65XDKamTbiWz9YOtnr1Y/SJyN72ouxmjATG59T1MWfMG9frx9CXFnI55xLHiQpy/O5Xt4GS3Hx3xb8QsF2kx3/h4vPae//Bpea/RET/IhH9wZep7/ZUiZtHM/7sYCVmHhdI5aCqwcz/ngNuLV7OrJSZoN3GyBIgFL3pIeJfFSn3kIFVPmsrFnOQTuSplhNtUm9BVvB7ZHHz3zScYddNOrKO9imKBBE5grq7j3NoFNnY7FjOf2M6rZN7VvoTl9v9XSL6Ay9f1/lUiZt6aEnR8gmGP%2bWsDwemzDC0Z%2b12Uber0pPF21QoWpSHAOjvZ//VfOZio5RjGLsZ6I4YWOVzd/fgmF/Vt%2bkpd30FkhsO3qJxp0GNMiJVuBTPrFw%2bcnt7OF4B2qS86SFDswRok5d10/v7OID2z/NQrr14xItbUunL5BDNnZkmf12SRI81aUW%2bcz5kBbDCdZml0Qkgm7GvCsg%2bQgBuXi9AX62AKOarOj1EVBkDKYFdbVHcwltE8ZTC7yWo%2baqwRj1Wg9qyJGjzMaj50uZU65ClTa47bq3P9RGWjf/jPzJEzk8OaJUYldOSnuXyEvu5AczidXUh6SQzKDpOiZcTS2VqSATlNSPz2ZhKa/bSr2LWnhVYL64IeVCsO6qcj4YMDMK8%2bGDU1faDxuKMIaM4Gh/JFdTAwom/FfDGO%2bcCBthUaEnXdj3czUdQ4o/29AytXJvSWZRm0ohde1awKek5DthOU2RsS71B6PG7fN7q9pPpsk3fb/xI7/2XmPn3iegfefEqQyqksIM8d4DQLesvy8Nci0xxgLK/JJZxRrw8AnVhaQmHCkbGzVd4FM7n1rRmYBwUzY1S7mpOwNTz9VMelIBvr58pjiUez8WzNptULFKGA8kZqF2gR/KFF8xAlwBzrhmdm/MwKnQAGi2lpxLKW%2b98DGrWOranyN1j4roqD10TYFu0clboo9K391u6zDTM/wsR/bGXrhFvb36wgLCTMkomCpHVUAlwdTk24m4Cs6q8pLw/5z/Wi3NHomUEMrn0uXS/vkd4UhNEnz3r2PLcvKMGF/Ioz05V%2biE7vtK9CXuTd3HNuhBB09DtWoo7diR%2bxmbi%2bSR2uls8LxPWwSTPxkI7I8Lmm3ghWPut3vsfJnDb%2bE9fGtDWIFYfqMAsDfRFjUtmVn9dcMIzYMYOPM4tHs9AVn1f%2bnm1gnUGKyyXpvmqpuOU34u/vlHlvRIAeZwvpfNuRyIR8MKXUKFSxgJ3ATug5WEdzUqO4HblPGxM7JJ1K9nalR2kexHmxqhnK1w9mFD8DLCo8QVY76YDNUOWhsK8Y100QZoJeJXgXD1kyX1Ewm6VdG9L39ZWiW6F1z3%2b7nQPkLkjBaAt05SZZUDjgxLRupmAK1y6CtszZ2VriyU9g5FVk8Bjkty7f3r1aoeKNcvX/LDO2MF6%2bhLKdgN0cxeeY2wACAHcouvHRtnlw35kfVrl5lGxN3lhibVFphYexjI8eNHII4aWS1ml2TNNjb%2bhzNPpn%2bu9m8hJO6D9fSL6xx5Xx55mIscRNM3Y2XFFdJqdrXRp7DO6VtwEZiX7usH1guw5pCoqZjYBtBtJWNUA/b4CsRmA2c/qxiGd6OU9D/VpOWtgowUY1IwtGldKEdQy5%2bMTN48ZFsXcq9UF4VS%2bl3B%2bvn/B2RDgxZmVuHp2NcZt6dd67z8qV%2bDY%2bc%2beV25OOpAcuvDh6DrFwuK/5dUnwYyfD2asV3MNZmxGBn9sv9KJZAxlyfELiDXe/2HLWP5ZyVqENrrd%2bc%2b/N6zH/RfeSTir9%2b7PhdKrdzspt03%2bxXfJet/jmHv%2b4z6Y3D893sSQIM/Zv9dIkP29cG2djkybedofb56HyuEl72rCkmdzzHyILNMUoCZj9hwqTNO38YRby/losZP9n9uuK67l9KW%2bGi87ZGb1Vzd469%2bkAyHkmDOTquNM3C9KyC0YWRmSyN3r8Ho9erOLZ5oAfXHN7NmmFkYaunSKrTgV1jdf%2b7kVMuExa7NcMQzQIWM7WCtaMbgoglIMu12EKJqxtFxvaH84NhU7Yzp16JbNVWay%2btnrNf0xXKD%2begHtEMxYX366lnBA%2bwEW5svpLBijYpxS8JfLtW7UkxHlGZxWujJ/3I41/X0UH79KM3HcA3jIE24kvb051qU0be0J4KsG81lgk26F0JBArWM5/vx%2bKD9tBLYlyGG5eKgEsUqULAB1CWAzQJvMgks92D27Rc2B7UQZ3%2bu9fwUP/EjI8IsPdbK9EczOMzOOB8rTt4PZhIWldq7BzIkXVUunSv%2bivjtYmYIZnHMOv/ek6pkeARjhdSFVsdpcWZPGNruEKQ5EcXDdj6CltemPThu2qYOPG2/jgW9a9nWbEka2JpMbbqdCCmzSFwQOVEcNt6nfwSHX3e01gweUCC/7b/hrhc4falmOX8xuJU7KOmL7rpwzCepYN71KKTZaZGiX3Vj%2b/dPFHaRbGZrPmuDHZaj5mc93DuBCLXf4ndVhp29V/D8WyPaxwqrjOd/B6qRtQX1S8W0KYHDi7BRXM5d4wFOqTFRuY232c9PjTpBbsbeCsVGwhk7ZWWRlBUurRU%2b4x%2bL5nBYx4fccVzL9KvhgeEa3pvNl9F44B0UdwCPFzshczuWn2VBJgDYr5Dwzi8gkHxWQTZhZecwuPgSzipXRrvhftXfKyKA50t5Hrezk6EQGX/MqKnaEIS0p0jA%2beLTuemc6ZMc/C3Crq%2bvVUk8vki5dJsLSMgGeACQ9tSsIeIUYeaxLcyXW2%2btVz2ABcuUjikemlzxgk%2bJzC9kvS52%2bFg9GkZNGwLRnR6i9gZhZ/pMZVmA2QRd3LIFHUeCx31kuDMWNqrBb3DHkMhVjToKZa28E4SmlrdpV3Gs414pc%2bFGyNAe45Yzl0rXJkU24/N2V1d1zGldItm7ioR4fX/Be%2bhBXr6d7U3F0Bx2Z7ISt2eSHEbyvy5nYBrcsB7vkadocWxNqtwNcOjrgxnsuVoBgWDfJ69l5Xh51JobaDGCey/xzOl3at6uDFUP7JhH9a89tVsW2bs2f8Yjzz%2b7z3MPODkXKAgVXXv/3sjIUM5chlKBEPMZBzDaGRmN452XPuYLZOQRJV%2bni0rgOFovjxHruTVumeomV6LceDxVsYBxQkXTJ1pCdZdHvWnqwOyAzM3YWRdDIJqORIN5TuP8ojlb3fJKl%2bcMvzdBOLZHSpU4xzUJwPxt0bwa0W8GsKPo2IwACx%2brYDLzmxzgUco9LxjwGW8XIAMwQ2PEZtBt7WACqCGLzt7pe27pyQq5SHKyir5zthXEW3DKwUTn4t3IAb76MlSXUjgRg8wPXART8wWYfu27U4OXbCuVWgOYvK35mtEpP%2b%2bUBbbqPZyVyPjAd99wb%2bvZBOc9lZrNj1QCcsTMrpIzMU%2bmzuGZjGRi85XLGyvK9WDlRhXr07KesM%2bSolz2JKNjKiq76OCM8hexiYlVVwAzYLqrHq3AII1aK2A8NMUyeCVaHVsdxvo38ahm9Dra98Xy5ib6ZJRRDFrEHkqtY17qL8HEVa4WZgazIZGs11QIaonJwCN%2bNz92uL1/J5FjIsP65TiPzTdfgezhO052fZgzt2UEfzzC0GQvLh1bsrHb2nDOKGct4jqgZRKsIaBNWVvuWIUiswu5UVlxSNibf9Z6mITfiU8C2FNnjvcYrL9XzPIJZCwVPx9xmFEq1CoKCkxm86subVpI4hj8eWUXBkAiNByCGrq2N0U%2btJ1%2b6HkRQZwFN7ahYGwdmk5laDkE%2bY2lcPAx3d%2bncjKEVRSzS6WgcbqlTTCVDu1gPHmPtXM3r86MV46jBrC7rEMxOsZNb9GaYyVwlZNZPdS3XYFZc7ZiRoVsFgiy2aVvIgvNYj3M9mBxtrbgX1/aD89DxNWcTUIxPSphqBraKtcm7QNaGz6/LcWVgwpgyQxLjwYWTXUB7u4JVC%2byMSraGTO1SyLWNeNPohgXGgtwOHiyxj/fCxXaiwNTw1AFl4uNQmifoF2ucNSre7wNSaQzQ2me6iOcA2oqdzSb9e9hZJb6VVxzqzsixmRrM/EXIxmKeRuaWcBuYSdsaHLM2zYHewEx%2b8Vgf6H3Xzr/SeUBI1kE5nUyO3v3k/FL5wsZCtpD9UayN3WEApZKtmX%2bZ1211l%2blo8XjferjOL3hfMzM9VdZH8X7SbR/sRVAytHw%2bP%2bF7InacZmh/pPf%2b/dnJlQ7te8/b0u4kmIUzt7CzqogzYHamrbfmkbOtOCYn1kAWlPpnGRl5IBNG6EGZQecya%2bD8LrkVoi/%2bvgPAajibUFS86oqlA9iMztll3bnLLlnblecF1iZN7X1Eve3IknYI2CerftWvbdc8oNsKgbgZtqbby%2b4l6FzLHCcw5ppNQ1mftrczMDG3FZ6/PrK2apJzR26bAw/Tsrhz9XxvBWa0ArTLGqnniZ2Zn3Ts2z139DOwckN107SybN6qN5PfjsFFdnMCzKxghiML/zcKQObOet0ZfD2djkGsLuw0iLnrbcgddWzNCcBGBODGbcR8rIEtspsmwCZAIgAHPm08nAGvXazP7kkciSX0N4/rt6C%2bRBGUPZgOoKRegJr0jQ4iMDai3N%2bTwm9O4mK49K5UXi7tO6VP6wfnNX3zKMNU5CS6X%2bycdfiKaazZWeJbnnUU5Z1Z3jRzmr0HzMx5HoFj5Gri%2bxUGgWs43OP4IyqpXPcCyNh4Sg1mk41SUpLQRPGez7zTFYD5L1wMPCo6tR8sK1EniKOYtq0cLJX/FlUxzqJIBysBoie/7vVpTXJuHnbPsHJgC3eyEj9R/F25ctwQDLLqF5Vf2uw9UHqK9UtdAtqdS51iOnLbeMiqgRdPPYLXPJXEYnLhKSNAuiiCzi1gZozBQFZurwIzY3ZrMBOdXNHwBODYztsBTCfmsEyqWrtK4D5BO6kqH23FguBjztrksjaipG2RtVnpY2%2bN66dYYh1b6%2bj%2b0ok3Cc09rh/Mp43VA56ttSGqutptiMvD2aBhNcUyFt/HaoYZEATalETRsLIBHuQ4NF898InSL56pdgloF/PoS4XmXs7mcGRC5g5Ku68N/sx6jSbNFpgju/KnQklRnERmVjDRCZBV7XCBJXnX3q8YGk%2buTecPQAyjHdbLvNwd5bKasYp%2bLWM/rywlLAPbscR2d9Jf%2blwCuLVmNSZwY/1UXZZaRz3w8gDsS3COtEWdBI/s41oFBYvAISKnLW1j5EQj%2b35S3fXY70sgeScQOe4l%2bKrpV2xXfFG53Fz%2b0fWAkGfQ4xzCTH3PXM1HYsitgMZUd/x8eAJohWgyy4hZU%2b6T4qYdi8Ea7xA1Wy5POm66X9cQjIqBujmeipdyTNpl6jsAzNGedovy7ASA6WfcKm9S0Ex/6DrWiV7mRMGZKDQTbzoKf6HeoW/D8Ynim24%2bLIAiYt8wlwZpzolrPf3uIG4WKwyK1QTx3vv4XomdtRhqjcurG4L%2byhVVy5TuiqU4eWbVwPOWOsX0QisFFrP85Lw/fAOYVWXeDGZhoJ4FM0zZk3YATQ%2bDnqf3WS1XSveRwkdjAVZSU3C1nEeYMV0/Kt%2bDGDl/Py2fS82tHKJNA8Ugh8m4Q6fcjW102pTLxpjiYNI1tQEkmMyQQKSbCMizUBFUuSAwk11zL3zR7bykfmJdWmNMzd5E4lS7zIqrCcZ5FYPHXqDYlriv58pAIP2nq7w67xm8DAzqr8ulPJSdLX3PMJ3YO/uc7OpTpWSc/7qNP5yv86iSAt8mYGZf4i5Mx22ywX8FFwWNfSC0UYydowBmrG3iCNTh2D42Wwlm5s4x/0fxXJN/toeBuJEw%2bYwX0dYi/PvC5P7w6sZDX8j4kNsAQ3zKo0yXb%2bTkUXiI0eYmIA5VwENrjmnLKQ/GuIeA12%2bCKqDhcamTQ3U4gTZnEJd/Ukrcw6AcIOy/x3XAs3XBdtSjXOzn6Uw1JmZj5fHp0LqpbThj%2bbpF7JSXPT1nmfLxkGnOAPLsfmjdrJY6udN5YblVJ7M7Xo5g4XUwdlq0I9HBFQaZGyQUnFa9l351zOocgzSAWG5LnRymTLVc%2bLyKudCBfjF0HPZgyV7sceJfajDovjoehQMxuoV8qyUoZ350Bsfg%2biFjZYuip2vERARFC%2bj1/%2bgMPF8iJSImgejpxM74XaupRU/XbjxePhwvMucsM9HzYeLmcqlTTC8kcvZqKBznmU0TBymDWy4nglk6OK27aMsUzKo6OLWiWMJp5aDIGcXL6RrKc2BGjOJZUUpcwuTmiCMAK26qFeyoG2shlfAA5Fn1/6PNqDciL85yEEfHmQ02DubN6jajf/cWUqBLF5FUQe3K1noCC6/EN1fariKo9xWT2GhNDAVXUU%2bsClBqWCJlNextW5IPBh81uWglelJEmrjMy59zorbLYt9S61Yz6Dkwo1vYGd3A0L5DRD92qkA6y9Dsy%2bHx4jxmZf/lFDvDZkbRzLUgDtrE3mbsrDmqL9%2bYivuYgFmr6sPSwIjQYhvitbLuj7orjAu2a1/PszC8wdk0ks%2bt%2b15HhlKyDUk1ayM8c4K14bnLuLB6bAG6GQasVWXonsCCIkvbr6nDfFdMTRiZZ2hQB9Zz8LtmaK7GOUsL5/SuZztnTVna43zPMJ1iaL33r95m7awZmh49Q%2bDuSZ2SaHcEZhVNm4JZvAIHfwSzkUGGbWZlXueySrH9ru0M7h4zMGsGTZU5xQ6tlfkliKU1neHXZFYypXvIi2u2G3CAsRTg2nWgK/YZayNhbtZ4OVOzNlLm1skmmAtd69fJaRuSKTufNWGVsvjdR4MNoA06//2MmLCPmVoJ/4OFzUIMxd8le5vNK6npt%2b4cdpT3eEK7R3//wvHQjtNpXKvYWTxZFbaSbBd1nGFmKk66Ar2fBYuYt2ClBkTo8Q/lQwOV9Un7wq1je65NbF4/N%2buUHNp9JEbS5Ly0p4c8mZ3qLSbpRiY9WxTUTVEOIiqCWyWSdnYUz/zamrG2eC8Yo4xEjBzlpk05tfFdDJ6KETR86tAB11k6nUesAWZO/qAsiTLxMl/EM/AK509BSpVOXXh36ZhOWze11nPLYa6D7rtnFqszTXounqcJQMCXycSeAS1alMIFFUOIuq6Z6BmNAB7MrF5nRXKRMjgwsyAqAzhJzarGKpZSxZuciZk7kEF9zmgyZ2g8Y3AnQcxdsMNDYqXCV4WNkQITiFSFHOjERPm2pSP21xVxIJJ2f07EO/x%2brQqccXOE2T7KC6IgGgrCkik7RmbWQHFO2hAicmzYtthWrCeWI%2b0KDyg/r/MGAhQ5c/YDw8B6M5TTvmeYTjO05y9WTyVKlz/P0ooUhro/MkfFdGQ1YItKylK8T5t3lk0krQAzFCUj8GNV6Ch7DsyAfRVvMAmadwKYNlfrweklUEp4IHivuz6fx4AH0YnmrI3JjAvaq1zQ2tqQoGfEEMGwGmEsFN9dtZjaBdQuKw22PpYxNeris0bes7%2bPhf7o2HQAACAASURBVO1XFoXUbTwHWzKFy5dkIpwxNXuuKO52eehVoFZ9zLeKiysDwTw9EBzoHnZGLyFyXh%2bg/anPw%2b/ngFksL0JkVfYU44ICPe5o5EinY2QIZm2eT/6wK3EpZqbVBMEnyQFoMGZEMDM22F0%2bTZUTL9STn2XY2yBmKMVxPG1vrUdVzpgEbJ3kZjoiuQo2DiaiUiTFUNoJ3Jjc3ps8gKcz0iRolRonWVVeuEwKQS3AF819WAWhDtCg4X1Je0Jd7CNxMHFibgpwZfjucwnBMbKzssRVNVHy9unUUqeYbgW0hyxWfy4rm6V1mZEOIKgU%2bfTnWsS11Nz5AtMcG8PBWfAYx8wwlE9spRNtGwXx24PZLtaFuy3DgFdPo9icJTwYhvOxk%2brVcI0OenycKKLpcfPk3wg9%2bfez6GOFTql9w3dn4q8p3EEpL/XxADayWGjimc/kAULa7ndHZ9Op%2bceTHgqHE308qWSAEFZHpODvn2GdSlHcibXQ4gJsK15XMr0paCG03wSfF9%2bz75zPbukmQDu7WH1B0EKmk%2bA2y1CCSwU2k0PhmsTOFnozQkAchxqWBi4Vqa14fSVyskFiGconsDEBM7x3GaxN4nqJ6KuWwxrEPEvzzyU/xAFixbN2FtE4R%2bi13b3/De5jj2lGTuzcTzclBT2CWw/BFZt825Xz%2br0wJBBEw/Ad3LO0nc2BT1gPoKZhvWFR%2btVqOT4J9uwkA0sCwLKUNFIHCUDoNHqsQC0/gsmVk7IjpJ5Od7Gza5vOGgX0gpN6NKY4EqrzxYCpWBOcm7Elp3%2baIFdSRxX6J7cqgENZga1FcVOXxsintLGgPDxyeBAjU5hHR9niBlh0Ts6SaUyx4X0XqOObZYhVuhHGeyqzrAAMfkG2PH7rXcxLBTJuVFIepzyoVr5tbAr7y/9bxzDcJmjhkNlwMxcXQ220bNyTgIz5lUEhsIjdFPfd1RUNBPZYChCOKwkqY4S7KAK8f5h4HBfMu5r9h7t%2bfq5%2br7f6nmE6s5Yzpl87k%2blwlpgTqWPGNqtPvk9mk2kzDFWufxXMQsayrRHMXLngz0QUwAxFQQGKtrOKyuvfGQIKMLOWezBrdn/gEK/r/XisvpQ1iwnA4V%2bzZZBwH%2bM/OdHsWbVxHywLN9tOf1sqA3%2bwruZ06yybtcO9k7H%2bsuE6Urc%2b0jPN69pUX6GbhOA1heVwyCyhCQ1yI7OWibGaCJo9N2yJmwwZ24WN8tdwnPRWww7H3GyM3A0lvpnPSL/ynItvNgqcFTtXDyc%2b/Ac8BF9%2bRe8m7CyKVSUzLNeKyu/FnCBZui%2bbq45ak6iyOHI6M7tY7sGBGQ7Kq2FBRKOq3bldbvAuTji/NXW%2bs6z%2bubIzdu4iITAP6DwNZkbdG1P8v4JIug/UNpjfpgpwyWC6/u7emmp5RA3STSxlkggXYp3clf/oq3bdoWqzdhhYsOnu4NhVLEQlW5UtJHWw5QOyAOGVgDu6U%2bMVJF3a6bTIfqNoWeW/W9wkukPkJHqM2JlmROh4Kffs3CmRM573eXAWZhA7cXLP%2biYss7lNN3SGbbF8JlEtu9lecdFcC6ZuGdA2PhIzm5UfZ//4cEtwjU88XBb96yJziHVMinGCyy4STvQuCGz58vtFUgx3reIeiQC4i54Ey4%2boe7DA69VfDLzpiuVKrqUifkLI7NSOtNwqLFw/qCf6oRWPdHq8kzdDHomc4as7n99Peme/13v/AzHbLelet43nWztLanY/V8PiYtFL5jMbaBMwi4iKoJ2kAwRLOQOig34FK2a5wBy%2be50ZO8ARnyq1fGpbWwZ0qsllZY1M99TicaVO9WPSgx6ccSzJliKyH%2beF8WAZytr6iGkmIIjPM%2birImsTCynenkRCuWDQhb1uqrznwcq2fXen1oe7hqcn%2bIuV3e0%2banJumBz2tgF57dIWZH/poVXcwWrV%2b1DXkBye27G7pTx6O7k5RS/Pp7/83ALu0aHRWae3Qz1agvXblF95hUBgM5OLD2Ezjbh8yrlCRI98cZ9QMDNUk9%2bGNefATHVK1X6YBZhZao6NsrDH8OZVAxV93eCpcluAmSsLr/MProVDrPq35u75EtOtge5NnpnoD0W/11DnNjLw0NtpDLfRmMZtMFhkwKn5Zcq81gpwfWI2SYOKEXpF2Rnb4pdeEr2bYQ9REzXlExlaGB1n7n%2bZZ6Xxv6GYPT1L3LzWcY/ISfR8sbNiNul3uGyqx5r4d%2bnRxDZk8NsAYjQCOAaE94xlmltEAjYAtFa1SX83FU1X3v/apds%2bDe5BCJGZ2Re5smJnkV3RCUZGFAIOxm/IHGNCFwy5fiyJVNeHgpWIqBbFoF0kpXQ8XEgUxVIVz%2bJQt1BFKuL1KPKhCLmHyI6ilrTXi5hwnWOOYMWNVs9FVI4qZPcyEocTNaMOLQiF4SG62GnuVj14pbcwxbbC0pnFzf%2bv9/6PpktvTPcyNHqYtVPS4XQxP8fld47GQTm6GLxhxp20r7Rg6cyJYIblBCho58BMUxOGAjRgAmZ2GUR65WFhVAsiW8RXK864gzCchuckR1MzYiJ7THYtshBsNkTU5SsT84xO75Obq7mRRdDFp%2bomRABYeAxgWQx3w2FSYjbrLEsfamoVbqO905Qd%2bsIhtrYFq6dO0qmr%2b57kH/aZVPbAopijgXquvlmug9L/w1OFH6TnANqNa63C7UwA7OwrmpWcI3PWSerBmGOuAQEls1NskSaN1xld3SLqMD0VMzWnWTvh2l4wM2V/bG1nYItHYiUDwDggExCL4asJQCxFCDExEcE46fTapG5mB27qagKhwRFq2Socri3IcD3YTvufPjd3g%2b5Ag0xSp38vcYUHotrIC4Qxxs7wdW%2bpGPwq9Ud3I4TvotCqyOWZe8ZmnUrfs288ouS7RU6i54mdeIzDwfoFzC2c1vmKBd5VGdAJCRYo71iDOhHOdZH5ZPnycuhsLNf5T6FFE0ZOKWq6heZrIwApa4Q1pSFeGiejSdyMJZyDdqfZD9sWru%2bcYbs71Q%2bPY/NAf5U1T4d9EJ9URd4hGGOsHMTRaxu17P1LtC7SyNOT6AeiYffiJop7u3HDWzw7tMU73e51oGjZC7E3PbPN191L6%2bZMxMyiqJeo5k61/vnmB%2b6ffQwPngDtV3vvf5QekJ7D0Ois2Al38pjsC4NAzDc/JmB2lA9mOqbMQBxC2nevO2N3KxUTq46tbqYiuE5P3BSr/DXN5u0pG9PdUUyknLEcB4RD8X7dqCX4udmx5hgqkyn3K/WAKff39jW4xnQKaDTI1yC4i%2bOu3QupEGjA7x%2buiYEN3hdMIAVL0/a2BrmtGVaf41nh%2bmBwqFJ6ZicyPScVDLHuxJJOjfmfflTzngtoD7J2FuyM8AEVvmnTMo5POx0XsiJkZwBisQR2ORDTvO4ML%2bMxqA9dNKSzU/AoBxBvaulbu2g0uE7EvV0PlYFsr2wCYjQHMWnPFZAC1TNwsUXyKj1enwUHfdiwWla6z2ZW1im4wXtBMLRj8K4YdFnNcrTwHlTPqc%2by%2bZDrsqqj2XvUT8nnduFadFLXQHmGRb6Jcl/LCF9jEathcgv0TUwzh1eF3L/fe3%2b2dVPSswCt9/712y5YHEb6fXeD5qdqZauciwd4etb1N/kzeYqrzjF10RBwUuoIoCRZQ34o1fToeL/NFOqE40ZBrInNoAaxlieaJi4TzGAkMCW7GhzSlnWchhoDoCA30etc1d59BMEN69S8ct8CbAygzKDzOwVqDhHDW0YrUGZq3GBNGFrFYSIs%2byhaiAPIoZRS5TcxvdJf18npo6kYU9iekwVm0d%2blvz2/%2bPb0XIZ2Sd87k2nxXO64epKmz/XEvNOYYhf1bKOZTxO%2byjTg8pfMaCZg5qLkZmaG37PeLNQxuT/mGsQY81UgBkzMfLk4AJlXtrNrh/cXM0xiQUiTdAMHa5zBzTEwuNk2mBCCG0u94uoWwLAENWmdA7WwN4Nbbla/a3y/9kzX/TlOHnJnUTd4fgyFVt0ynG6hd6n4UxX9zLnWnEuPALTTdPEZ5ocbc3l9TO5kZ2stZsBJGayzLV4JS6ya%2bK0dgFmTGd6DmTmUTowA6gZigSBl0O/upKwUje8BMfP/MGbRsvVSyjcV12BEIMea1dSA7VZwS89exUtHTIOuzY7bSnvTvaGYv4NUM1KJoIYMCURtFefJ2B9JG1Q5D22JRmdQ1SGL87o97F11v4xOHovcD0rBJw9%2bHBgDfrf3/kuPbMmzAa33ftO%2beZJuebyrvKfKgfGmPmTkRYMqmSNhka/fcBN83KX8bMiLc5bOMDMdkKIzUjYCvmZFYyoQuz6vhhE8PBMzUuRFP7OGslmDBaCB5dXghosIDNwq1kZEibUBBA9/MgOfFplVAWp8BtSEu1WWcve%2bcJLysBSvuHl8VO9xMiF7BxF/NB2ZOsuGeu5jK3/1rqsW6REMjc6G/Jhaag6Se1ZBBAtf6pQUA/Z99R6WbNtNqYGfYEYUOdj4RjquJyAEDujNdICFWZtgtQHu7akOq7KigUDVBRZAbHaDpUR2V8CWAOAExBqCGImf2hAvLw1oe2gfC1Hkilawwt3fPbhlMDVwawPc2lIkFQOInWteoXji5ed3P%2b9%2b/vUbAyQEtcDSKA7GxMpSDp/AfUNXKjg0ep7T7PpsAY7H7OxChn78oFE3p0cB2jmx806Z89lkedFpheLrOHM9iAd4mK5ERYHowOiUuzSABq5Hje4NYKbUB%2bfuAsxgMVQxwoAF%2bJFdgNjIqWIfsrQIYvaMHKtDcsYuy9BO2X%2bERYiIOgE3zOjATR9UW4uk7J%2bQgn3w9RPlv4n4ze4F3z9HpX4butZ9Lap6roT22DNqWufUSEBQJwKcdVh90Kn9rjvE3nE8qvhcNk03Du/fvC37ufQQQLvH7DqfNJ5p6ZxWNlI5rea3ll66dDiCzoLAE1PxZFONzveKc5kzI8D4O2UNCNDOOrc/ixrECBhNDWLmYSEsbYh9DQapwJYMaL0fQSdQ4A09lfxHUG0FbqUxgUGfp3fS9B6dLjXsmEUJ1Oy9OFATVpdAzfRf6CBt78IfkLIgyK3/jCASSKRnacew1Be/jlN0qp2Vf/dofZirBqZHMTQ6s8vxuVtf67XuSqGDuQHuqz5ufHVx6svBqRSmVR2zyCRksXlgZj7u2ihZmFyztpihgXWXdNMXeREnDmhjYx7ECIDMMTG0YzZ/jsGKOVq5M0czrKoYqUwKrBNH4IbyV2uGjYCOg4nZ8%2bJC1I0sEhbV%2bueCt60WG3yv8vzw3XumVo0w1b81LMejmRsFjr3FfmH9KrI0z0jte09/6VBZthyT0S/jWNzceu8/tSry3vRIQDuJuLci%2bjl4Q6ZztsoZL9tTS6fWGOiVIUzkxB9rXhxgNzCzWFacr2NoIXVSZW3P9XBrwTI4Y2MZxBCc2CDL/NzE8kkGGgZ37gBpCQOgKnBL5SBra570OdbWxJFZHGjZifcN2rg3pan1U26dgyFF7ln97MASKRZZF3I9sSs0SgUaNpnI3ZK50I8PRxLuEIVg6YBzlm6jFTeO6r97W/bz6WGA1nu/rBr4rTuutL/RufZAmTl7JU7MKEQBlw78z1R/BuU40CnYGS%2b6g9tN/C5m1jwzk3aoor%2bpbsYtyxE2oPTJt7JmYwZiBCBm3MuOm3gEui%2bEQgUSIF/hSwVuDFo3E/PMTshshWaRlLRSvCPUQzW4TwS10INAV0UUa7B66kky6bTg4qhnwzYVRYWfB6DE/qy7KzyXvtOBF/yzxc2fuPfCo/RIhkZHS6Hqx48dinyOImuex4qHul4Rcjj7pLMOsU5YNvFSGD0rV5FViyrrcOmegU1pngkwmQbdRMJjNmbSn4GYAmSzK4yB0QDTpoaR1jDM0PCZC%2bVFI4OAGzmwNNaGbIv1OduLSeDmlnvBhiu8K/Dt9cLyMHieTAH8QIGPdiRvkUaxk03lEMR/lmAFfiYu%2bgc6fFTQeV/isoyTpd0ubv7D3vt372zqYXo0oN3lk%2bZTDXiWeji8fvD6MDF2V4U/7kCGC43Rb0esHGfZlOqKrqGDpIGFC2Zk2CiYgbV5aPI3YAPGJ9Sh2FpK3Xr4GMREvApsTP6ZsGkNubKLZr5epqgfP4bzLxOKrgHcrEkAo75uef4cRVJhbxgeSAkcK8BWcODa6txlYBKSdwUOv2idlPpc2Xofe7qF0xgwZimjQX1Vsn4fh8py6pz%2bOmeqOwWCf%2b1MpnvTQwFtIO80AsdjrJcnHlo10XXK%2bz0eLEZ3CvQQKdX6GF7gyzLUgSVNXoU0BTNy36MRAOpRHRGImsA4UN/tBmcBYnQAYuSFTbsRAQ1wb0CdlmdLeGEA0VG6GkHZvrQJuKFI6pCq%2bffjJgNka2hQ0UcsYIh7MQBwu/cFy6GqrhnUJqFn1ImLIg66vU6g8O798871Ho2kNF4n4uaNS53%2bxJlM96ZHMzQ6ZmnHNz3Tod1LqV0qe928dcauyE93E6dc12HYdzQYMj53AWYcvmszkJmF3skuA4zskQEPVSAmS310NAQQswCRAsY0nFr3zObc6oEMG4ke/rYSwbM2AtYWDKnA2gK4iSGBwVLayImAHmiNrZnV0b%2bhvbqmom%2bc/BDJcFUFN5iozAoBYGmfLHra1uLrTN899MrfrLhLE%2b2MpaWJ01eeRko8cPtSp9/ovf8gFvvI9HBAO1wKNYH9ThnALEdtaL4pzYNi1IxODwCj0X4MyngFkubyocgZ2Zk418qALEgAsDR2wOJaqqcC91E9kDAmb41roNh3ICZAxgcgNsADYxCZCwosj5IWaTTb/OhjZA5tSgC3Jq2GtjhwAwup4U3Te3IiKIKDOj%2bPSwXU2HRe3gIq4MiQHxhQekWgXQxuGmnjZGi89AHDnJnYOZno7579F25TzxexXsT3DNNLMDQ645N2f7r9TUXBUphMnHEZel1D5T08pbjpCc7piTXFn0A9DcxsoI353YFZjsc1wFKNnU07fkP9kIqa1lKxlOqgjiDGNYgxwN9e8V65W3vJBloDIq76tN0ggEAgxwWi7BFH1qZPQStRKPXt1/sD/zYENbtte9agMpiCGr5DBTWrMhkJsNU4gUJHagpy0C2CwsszLPg16fox6DTKNIdiZ2JsVTnFhfNDenXhe/anptkflF4K0ObWzgORL6WJAiG/FCpmF%2bkd5pK9fknzxxFZlEO1TA5GuwY4oTFABkKoil3r2TFCXxd2%2biy%2bmvjSIK6XDHIbUMasuNSLMcCHhkJUg0ChD2PgSxz3AZU2BPGokYIbJgE2sVwq5gJrEzgRYPNLyFiDLhKsRjBSyTpxyFSk%2bjAFNW140Q/sWVlwR2gvG1CoyLsY%2bt6xNtS1miAnB8vy0EOg9BY4ogr12eky6czm/s6y%2bAelZ%2b0psErMfJGV/1CVJVkA5eWHg34Mc/FSyLoYghoCDUQQVSZBgaE5vy%2bxtkFndCFlwG9M8kcFM5jl9z4uZTUtQ6ymUm9kiSiyeSOAMTMpwXRBo4woasoyIL2%2bHiU2DhzFCePCZ2YA16SH6eM%2b49Keyw1tE7vZBhsCQxJtRLyqE/ldzYu4%2bHvcfykeyobt465HtU2bLk/q48vmtoLbXP7rOd17YLO9AjbYW0B0TH3fxV22zNs/OuxBIN%2b77jOwqX4KtrzTtuz3J%2bXSKMvps2DrPBzv/vtoc/yEZ1numh7q8aDm3tUf6b1/v3rlj0wvxdBoxtJWs8ARtE6vPSR9fqi6UCvoRCTzNTrTymcAs6OkeBXYlLGzCMzkGImkFpoXMWOWvLhTzMbSNhApxRVCZElPqExsFAbSYFJBVnAVMxm2pxOFPMb6n8Vgc6ytuWfILoik3d7wCBmiYgviKDu9m2njFt1kdayYLJUN7rV5l4pgmGBQEcQk4dJsJBT9DgxI06bizNIneaY3HBtVFjPPWP/%2bnY8BZvSSgNZ7/8nyOHk%2bWtoB4ooBPDzSiVfhMgcMSeVMWP/8CbGd9%2bAn6h5kZcYSiaxzE4o8DhGknNzSvRwQ%2bBAQmmxGQqqcd3qbZoPDeBiDSOn3GpCzrEuoAAjFsMAWY1%2bALD4mXIfJ1b9ZcMlGarX0QGLAFi2lTXVtnv3HCBwqgipo5GdG2vYBxsFIUInVsZ3C5FO/KjqwCwk1z%2bbSBoOiFyF6YgEFv52wM3/98XhbIP8LxD2bpZdkaHQ2PPc9qQa3LG5KKmV91yOjUstbN0vLJqiF0XJlPdO7TMBYk8nbgxlPjABNwIjU10yPE4qUTo0NKnFba0gg8h6xMcEhD6uiJ7PH18ZqAHySu4OtZVLLIkaKxcX6RLqqoN7DYBgSEMylfvbv0q8zRVCzCCCEoMYAavIuOYBaJPNxVyv3BVgaVZ/hmsjL42uM1s5ZyqrWlDjUWqab2IKkaJlwou2LLXWK6aUB7WqmPWcHqJwyjtZxTouZ53cX5sw8sW7mskx3dqoDdJ/PgNB6bXQL0eMHzAz9m7Q0aFuLY0V2bzpiY1bZzvzaOSAjXJmgazNHGWCNJAEiDHwZwK1RAW4SNBJ20WrkLaR%2bAT0yS6gbXwbDRAUPMfYb3XJPKoEd7ZGR6WXxnY%2bJhxnembv5WqCcOa/GoJZYDzYiW1wLuA2deeJFdSrBZb9%2bXwn3pRcFNPFJK83Kp8TOcC5lPEOEGToSfsJstaDVaT4bMzA%2bOcfzwDCg7IkQcEDkS729IO6lNbRoJ0bWGFTQ6W7ILJ3W4VnbkUBs0LbWGujKrBG4NwJGpyW1jgrz8a4WCB4O3FpmbdaMwdwoTzb7LYH7Bwejky6ot/eu7WfgsGAp1ei6ZCI8wzFNsPkvKs6la7u%2bEzdIgQnOjY9kpBvTJ/af8SARgErScEDAevw0y4vlO83Wphn/mbMlPCK9NEO7pJ%2bje1laOTtwyl%2bdjmCVs0Gnn4qbk2qHzUhmZtIZuvIjMsWwHEoPnU3PgiKt2/QD2UIUNVuWUSpR0yyRfvclfBKk/mPRy3%2b4eDQGMBhgAn5bwgCljc6FTPReZKARwY0R3KIRpHl9GzIMdP3gkq0J9CJz9aAm74LAmCEFRKY2Oy7MFzId9n2ufjUTl2eXux3e%2byWOSyFxTGo516DimlUxCtDajhddiF6lFwc0MQ6cZ2k%2bo5sl4ufJl7TMjsrqJG6ClckVMA3wkir2nmKRnXEJZpBbwUyPTkTNhoxilNuc3syU4F6/QwBiTC2jrYmWiNEFI8O1TgoIDURchmMKn9JGA/InMp0g44J2uG8W0IR3Fn3aXNwyEkuoZ2tiodzDE3F40%2bjaA%2byP4Xm7iQfBq2VGF/pGfIfSZrvXOFGtkz5H7TdwXbFS5rjUgjAg2wjMsvAA%2bx9PNfyB6WMwNFotWM8JiPkNk8q0tMmaSzOMO0HgXOsqhQSACoE%2bhYJexTow2wYhAcwaWBtLIwAwEBf5Fvp/1pspSRp17H%2bEjeX75BLgGlQjLE9Gu7RzZ19tiNtqQzVl%2byhbCjMmZ6yNYWDvxoumx4ngHANjlXbFVQgA4AhA1T1rcErwLZR2545gx9GK3oClOUtnYzD2yOJ/4FCJyqn32KS9UCl%2bcJXP0sLNfFVdrr16jN4Y8E%2bfKemR6WMB2lWXdovYKV97%2bEwzw6xMUPDiS45cq4P4WBThv7vBFCyb7oJqlgRH3KIs%2b43XwuuJjsAgGlmtzQATgZTN2kks4lkStFWccxt8CEgJ%2b9FlS1IPiMgIZMpswf9K2idLjWQlqYAbuoYIuJg71xARm2bCd1n5s%2bFN4KJ5qV1ZWqAvKiwDk4THV/SlyIywX%2bCEuf%2bVSVakFO2L3aZZu4lFin1IEo6PcrI6SLzIGQ7JfUV93EttgnKUPgqgPcs4cFh4dfDglWmHg2ENsoV68YO7hnYZteD5IpG04cyJoBr7SWJmhHqj5kpJg0qbKxZLU/Y3ZAVsLgQ7FpgFUko2pbsHfFa2WHQTWLe5676EkdkCctV5ocwoy4TASqDLz0FpZliJwRzjek0vcmIwSRKRM4mg8Cx0AjAW6/zSlAWKv1vzkTScbWi/zvVhfGk9Sx3JKOX9QkKMtkLR4XRoYGVwFu/VWJicWyuxi3xlevgWdWfSx2JoJMaBc8nMLJllFSb3lMZMiHNo92xpT9gdF/oOTNt%2btVqywBkKgajR%2bulGqRXFHPnCo9wG4k%2bjZgMbBtYgf25lATp6OhcGZWpe8W4sSxggu/Y2BTh0VTC2pxFmBYiEDWlx5obBEp7RrXAnADZYJcD2flBkR9cPN2E0zz5nIqg60Y4yXfBG1TsutPIendyzZTih%2bjc5V/h1%2bJ54okrNxFZMYI4xZQF2InxOGRqyQIuBI2MBjAGXhejfmd3CS6aPBmjLlQPJKc8%2bTcrs7lPSGoTghSEKybq88YonKpUiwRKX09fUKa5WdOVx%2bRX7r7vmTFO84NMzG0Mxdgy6JxcKGxT%2bLLsaRSBjwv9IB7Jf4C4uIlK3usA6YCMXogjFYBR3xTqqllG5YWCdcpHzWwOgRztnZGqn%2bA0CqhJ%2bABrILe%2bwpetiTWv6k6EmHGG2tZ2Efb8u/lx3LmKe1emvnyruBdLHZGg0NQ708muZ0muvPDdMuaVimHzieZnHTXVhGiwGcROBZEnjJ0ucVNmti85xNybc7IS8qFnpzdQgMMoR5gXLmpT5aMy1wR3EzwrcPtB1Qn2wyEQ81Ffx8NiXQagWSwWycdeyskFCjbOttxSQuorCzcRTAmBDg4ECm4Iew3HStqvvGFhFr6d1Zyt7f/Le1YjjjImO14NIT17sBGZubFtaGtQVlWQxUg8HcWK7Lm7f5YE0mffgtgElJFVOmdhfExoVv6RWp6/eGPBj68pfLn1UQOu9/%2bipfItfMeEMOGVNi%2bnHgGVZi9VRldFsMC%2bLKBiVLMVh%2bQE%2baDrOIBBgctxVRQ4MItVNwWcAcwW7AGSmlzKGIaKUipBCnAogMwdYaS%2bIW3CMpO0j4m1rnqUk1gb6NmTKCCAKtMMqigwUdYQW5FLEeHF3MSdaVBvmt875lKgDMAAAIABJREFUW3ofgwmjNDFzm5x1mxjDLbQEI7Ysk%2bt3onMj%2bKzXb2LZ0R43%2bySiv3/coJdLH5uhUbXV3XpG4Zx3xpwPJhTHtBadqG5FFje5WlIS1mxWbZCszel%2bjJk5ix0qvaHNusGIOqVaGzHigyzWlkFNQ6c0DjgXC7e2UskZ6wJ0M1rg0IpABqChD3zov0ApL98R3IydAbBBvDYxJKi9VNahgssHuntQC75lWLZ7P1FcKzpAimgE8MCoU9oUuNDgY%2b%2bvqp%2bUOdtvm5CcKB3cgKbtPUjpksMyVs5PLv387a15XPoUgFYHf%2bTy6zTNyRi7z1g2uZnJRys4TEVe6%2bcQvzQuBBd9D4geprA3Z6z9pwcz1bUIGwJGGWd3DoOojRkcFcZmARzMRELgAJCpGMnNQIoFaK2gFoEMREthe%2bJ/25qhpDELz%2bLkLgTY4gIIrUnZGavDsN02u3uShnHRZxhkU30VYgwIjsnC%2bPAdtmr1xniXuF5UF8XDon5lgS6ogLQLWrpkabASxPdA90nV0aOJXZLTXxOwuakx4E8elPii6aMD2tQ4MNWj3aAcLV/O5I2xDaaY7cQ71mSzqg8ciBmnniXC40GsQ8aHOiIn5Ojo88Bp/l1SAew9CR61KqahB76IfOAMKxgkoXOIAMisFAMyFS3HfpzAvq4w0RhWNJDporSNHthINj1hPw6j3xju%2bMRhoPolVmyWWrk3BRkB%2bAgudgfSAgV%2bVRX494YTTRRXORyr%2bpoLAwTWRAEX24Csj%2bWkWY/mjjpdG7p5wLgrOmnpeLsejv/T8uxHSJ%2bCodE0rFDv7sGvxMpS9q8LXR7vuJF5zKKmdlYxyTp07JRuhMGJyeYgBIwlXqeV%2b5lXDl%2bZQROgMTBjaGNrCBSjnGaOrcYmPRCqY4c6uyKQNQUyEvwDXZoAmYWvHtZQ3DRFRdhmYCzXO2DDXaNAz4ZAFdw9dD9Q8F/TySKYhNVQ4Khb4nDFSwPGJK9Jz3uu5KN6FGuPCJ4L6tqciOmZn75jucdSj3bGhMnzn1FhVpVbGwP%2bqaqmj5k%2bCaD13r9SHqc0kUzNzDMUMp/GI6fASMlMma6Mp6pP78Gfw5nadWsBGAC3BgulSUSpYNFE0ZAU%2b3KgQisBsAd0fdoWOSj1wG7mCmRqXTTFPjtGpkWAuMTWfqApqtcDURCP6TpLAaEGvnXsaY7Ts7GJooyGA%2bN0jq1h5Axc10nwBiTGmvjKqdEA/OdI2Jzet7wTC9luOi%2bwXibmb3V5tUiDs/gcI%2bj61HO08rvSUio5p5b5pMYASZ%2bKoVFlHHDJhfmZAdjK/jRSEQk15kXzd847s55i/tvYGVak4pcel/sO0V%2bVbQx3BwFecVOQQSuLr51YJY9CjglTE6URD4CD/S7l3hUdMpA1IgAyYXnit%2bbL8GKjIVBcInVtB7h6SP1oUCDy0UCcq8cANV11AJONxjITC2jLhpJury69r%2bsbBxHPqUlQNExlhIkIwWzzfcGv7fSdpeJh%2b7OPSpo5PFVOtXg26cfwrlCPlq/%2bpMYASZ8S0Or9O/Utntt8flyUvnYBBvAxs0/2P%2bVC2DTDat%2bCv4%2b16jIYnD5t8t21Uh1NbZDhvbdwHGf/xtFFw/Ro2OXVaBD0ZiqmkAE9twhiWeGvWAEMh9XNQoDM/bRNf3VPTtZNicVHTaPPophJYjRppuebsDViv7C%2biaIdgE1C/aq0yv7%2by3ekr4PTORTxXAAAxuepuUtyNa2XF7lmk2rPJ1dsq5qw6YTb2oG4%2bcmNAZI%2bGaD13r8xOXFLKW5WdJfrKoPoKd31OhNPZXYksySiYMLWudPnYRvBuokOmc4Kp6f340H1olQrSh8gJZMaKHz7UdQUcc5EsVAWez2ZqddAbFNH1VYCGcMeABhOXK2F7O9b9wyI7SBjgsLWUJfpxFC1iBpLNFAjs4S6%2bQDeg%2b6aZWF%2bbT0s6ilHfexBFte6Cmga64LIG0oXgT02nd7SxBnVJxm7oJ7jjmhlTI6Vn%2bd8zz65MUDSp2RoVG1I3OMXWP5kGfxTRgzk8FknFuOiZa4UthQ70LQ0ABwDwvrpggwtUhaB7ghkM/XWV3CyQSHhsCmIms1GrIJZAzBrCM7iYtBg/WS8d4xmi4wMmyrOsSgqqmsCkxIl0Ue1cL0wtibxN8T1gXThuzDFGthYxVBBupKt6aMRNpUj3SEAyUvAPAZYgaWBikBeoxmUYKKU/GNG7bCdnwNJt2pFBe/Y6yad0WHdPLmxtDIC4HgLfk%2bvxBgg6ZMCWu/9a/FYjgkF%2bQMfSzoLl7e63qdt6Aqu/0S5WujsqhaZj5TstQlWMJ2dc0I/rtQuMEYIWGmYap3SvaiZCjuRcADhpiPG0sjETUMzz8g0v7lVoI%2bV2w1KDSRsz0p980DxTUZePABZfnVtAarqfdh8A/G9KHMEEqWbuTTvl4csjSAMt1RuMc8ic4fnv%2bgHmlwIqBbuJxU1PZbcL86suZzN/hWOjb8FO/uNo2o%2bZvrUDI3i%2bk71jxl/3eeMpeGjPtGJnIGSveNp6gh9V7I6FhasZdqpbShYxx/oqGsb3VgEXVeIEJHuwBkOQi4Z2GjdzLgJ5n5zW5BjTrxUUcpEuBkjQ2KJQGbkqznQV8uiE7lh5QCcRFBT4wGL4SC7esDTB/9AiOqh1lzPnnKKYbR9smeO1lOpDcrs7mOwTFYjjvnthUlw2q5NmV2EK7bb9X3jTCrGUZ%2bjWkzfOlvNx0ivAdCcLs2/F0/304/ijRkTzk8/vnN0zVCICvozV40zCIGogCC8BNTAJl3nA5jjfI8qapItd2ImZQ8ygNX3is3nTK2A6rsUfNbI2I%2bAnYSqRuuk%2boMpsKFoFYCMzZcNRUeSst1uTeBgC%2b4k3vdN6gPDQQC2uNwKLZ8Dh%2b1%2b3XvIL23mDsEOT4J%2bFv0KFbBIffFSHyrBj%2bOO45Y3xiLPg8L69ITlYZ8vAzukb8tB9sPe%2b58qGvvJ0icHtN77tw5dODQzfsrW%2buusR8c0TfpBCUyLTBxm5ZQRWJK5TkAOYSxqXUS/KwJ2QT4SLQlDgiU5ojtrcF7%2bEzADzw2MTOGXPQbHVgcsTa2wDsiQcQ3AuVz/BPeOwEbYGXXFgp1oDKaD4OohinXUvRlba%2bqA7ETGBkxJ3TZkMmA1sFhZlWOr90vDedCkUQAQMUaJmgN7CfQ/v/FO3c8c9ARVh7RNy4CT501uOWdB1P7G6eI%2bUnoNDO2SviXvIlomDbuiEIppHHNUfE6406taTEbTUlRZbQMF%2by8X19pgQGWxecWbEcAPBnF5sA1QKC1AV3YpbUJDgLTX%2bafZwvVmldu2ckTKyKgEMnZAxghkqgfaKVPcQQp3sxIw0fDeKIq2oGNrhauHNgyiaIhlEqgwc0ugVqVK7JdrEFDRWDAeLzC/FovIyekCtBaCle3LdL3EPIuuqccJP6TqyEI3Fo6UUJh04J86vQpA671/3Ulzq88Y9LEEuDXwlfIEsj2Z4aSjCcYwKo3tGCn7qa7D2GBafMHOGJiZiEwQeYN9neoSob4epuhGgQqXyai3QIhSS9byURRsnqIABXHbYEWEbiuHQNbMR8xYVlPg2o0NLYX2tmeS9/HMhggANhSlNMaaMSwHpgErnOuKvXz/bLUt9uDMmNzC8/alqdgJTBGP4XtgK1mPgy1xj6TQizm7YGj%2bk63rXw1hViq7jDelX%2b%2b9/%2bCeC18yvRaGRsmFI5qHs1VAwa2akGrSJYhS%2b2gI29jLshXmM7XHrDIOh/QSuJVr6RsCK87MwUCQBpHviAqmgHJo7cMAkBr%2bR3wgmomXChTN6rXF42JhBKYHOzaJPo%2bGjq3po4ZNVaRYBPbWXADG5v%2bUhgNji6BTcmIoMF4UzZTB%2buVN5MROEYcN1bQcpzM0libAnHT5S%2bcwewiVi2/2c%2bT48sN5PAYPhUh9L6dtuAnStJyfPX3JR0yvCdDcyoGluTjoHzhedagoWC2AWzvwqHh1Yxfwg8CCCuIs6pc67R%2b7W0FTYGljYTeBqCkMUAaXGQNIRS207qn1ki97YMr0buDQUPQMjIwAyORZkLYRgIzzxitmHIC9Pke5CGxNiRqAGnnWJc9IQYlAd0UmEquuUNhUfG0dO9CWDrH%2bCOGn0ShQ9acz3aNBUXAN25cyv96i9lWzr8fLZkPBL3FaB3kItjAaGwj/9PLePlF6NYA2NlXQKBxRJHK/2b/CqQGgR7JlgFf2Nzf72eYZOnDLVM9yOquDu0YLN8HkWZMKIq0AuDDhN8AhfUpxYKOvrhNm4uoFsZSK46s948jITGcmgIxsCIAM/L0u5T9BaAwHcg332mS/S5OynyCCovW1EkHRxYPtGaX5InluNG03ZmT4olMZ27tLClQCK7MvBFLXfsn%2bz0hzhLm2IOhfssqmp1UxWzdEZissHJgk35y/cpD7k6XXxNAIWdrSONDBYkTFuy9eTspSvcAOwepaOpUqMHEIjkDAvSqxMh0sTViUHUa9NY4ZjqMN9TbJ6mkDTQc1SJTqq2V0yxiaDN2CkcnWdI0KRsZ2j8x%2bkbi4l7CDb7Pmqe8c6NdYJVlja9ESPGYGDaEtF4IbrgM1XVWBOjBltPaQLbS6vR%2bZBIwdjer1OWQ92rQnOKdaS2oJ3QJMXU8wzMh2s9MaZ2PDkcBjNNvbJMa3/hMnbvCTpFcFaNGF48g4UMgAwyRu09DeWeX9CwC0EqBIBiIVe35NOgbO3hS6hg1aY13C%2bGxTD8jtaYiJmiN8j4marGWqs24QNXURuDLAZkuXYIWAiH4Y6lrQxzMyWGRO5ow8BzK/jqE1cEhuspmJ1qYiLrijKbA5r34xKkRg0wfu/dZw/4BpCiwtvUekM0GNFdd4VinPQQgjYe8D7SZ%2bcxffwTh%2bdSN5FtYBn0LcUyCPJy0spv999Sg/dXptDI1SFI6VcSCCWSxJmN3mX/FUg6b9p34sErnVQMzcFNQnCaybu%2bXRCR5F8exnf12z6Hrooq11ijsEVYWgk6WxD3NRYDimLg9E47cBkACkWyXQbONfyc/NWz55ALFbfRXFbCLdOcquUZ7rxLUGg7vZvuyBDeMNZ4AitQx7KsPKAqUCc/CVXNN%2bFd83qh/sxq0R3fKlh3GG/IEEc03DOrrR3G9TK4DytQx/zZ850YJPll49oC2NA4Q9WnRdBG89vH0X2nhSu5vxwPVC1RYIjqYovgRGRm%2bQmShxTZiv7wpZUUfD7SgTkkXf4tNlItrMEMDmRa8szcDSWQdLTgIpiEWVNBU7kfEHLs43AAY7Biow3eXKgZgtAxhsDYwRAEK6c3qTtpsFU1cKgM8YBbEzvr3VANnGyx9C4GC9CanC7z5cJ3wWPgKbQgIIxa6tYUfX52Y6/dyQen639/4Li1Z%2b8vTqAG34tvxcXI0iXTnR90OEqiqJc6n5f%2byB%2borzi86gQ7cgVdHEry4Bo7DOQT9z%2bb9LvDTJs38GI1dqRAsnzj%2bRBgVAPWqlhNUFjOKeABzou8iAxFtXAx%2bMTC2AGhE5UCNCYIZWQ/1oDVXtmcSssxeiXxT8IrhDuCR4GNZehiMjOu107WfZaXLgzz6QUXCkX/qo8%2bpZb/KbwHCScRplsPs8k1z/0aT6V5NeI0MjXN85Mw5E/ZkqUsXnJi4tgaSRIKBzS6dGhTW%2bZbd5MboxAJqhKKEbgCS3A6kR9CAi1snJwIpOvaTiVo%2bkE73TZuIUglmDdhI6FcMsE5fUGz3C3%2bwBQ775lU8J1IytBQfmGH9sXp1xd7RQxqckKy/wvtm/E9SjaZlxAli6A%2bkd%2brIU7MFQwsJIQztVIKnf7M70uzvgLJwn0jWc0RhMvXfUSV%2bCOP7UqUI%2bYXqVgNZ7/37v9CvrTPZx1tLpD6/iq8ioEv1JhDek8Bi1FoaRm/GmE3W6IY4ni6lfxeBUhrXJl4KDwd2asioHES7qKqkxAKuLgRllVYMAu7mLCP%2bSKLdYnxg5kK21dMu42YmW2BowJXPvIAA1An2nAkH1ItwLssnTREmoObBIDYU%2bOKG4sEio76bP2DZtyeLf5po1lQRmL/wEF8%2b9CJY9ic4N1k4VJf7Nw0peQXqtDO2SviH9qGJpCmTLlznbKuVY13DMbyx5Ua9YUAwOo24xdiVuBvahAwejaRAMVo6rAkSpbzKoc1kgW2RNTMmSxuicKmCGTwQspHofILcx5KOh4zPWBIgWBdUAag30ZY5lIRgEYwGyQ1yg7lmfrSRQsDWUHsBkFlmJUiIMVVfv6nIymey6bjHXQSm/CUMagBGZUl/Nq9gT9H6s55c72K1SsK/ddC3Rv3pT7k%2bUXi2gXRxte7dYadE4QG4IhVyqC8tvrI/O5zcY9nSv790vvfA5xEn0WDjSwAfqVBm2Ltk5hcYLCqscOVBNHK%2buCweJWCJhU1sGMBPGFcGMAcxs%2bZVErBUwMybJyKE8thXGAk4RZdFYYI67nqnhCgMvqto7wgmIAQRPPbhlBuD/PS5tkzYW1w5R0cTDoUPDDM4YxXq8K0Bh399s0gcLZ9V6HU9oGc3GgL/Xe//u0VN5Dek1MzRCluZYQnql64TvW0BQBwaWhp2fMpjMVgtsYuGEirYBjCODfniDw%2bYsnPgBnM7YErCy/bSPyEqhsx6Jm2Kha/pcyKaIFtlWBjPc7UmbZVTJvkpMMwAUBpo2A7W9jiJMdrwP9kuamhxLbRXmGtkfPiXrC46puoc7eh3UKYBei5ysLj%2bCqmI0YXjI8rWRufuwq2Ec6UE9cSRwxAeIKbtyViqcekOjV5heNaBdHG173x1tndtGCDpQv9BzTCXl5/j7eDaO1sXrsaBD03S07I/tmlRzuk/fU4V1uR0/S3FT9hKonxGKmSQELnQVBDN2LQE9VjDL6gBWbPOgxvDDXdqiCAo6PWVqPqyGA2f9Oyru9kxssgAADjHExEggx1pYDYKRPkpaHftGOMX4dM10m9JmjGmtAq6rda6cidW5YJWOnf1%2b7/3PHVT1atJrZ2jkZgdPYtxbFd8eC5wnASCzE0ZMbqbbDTqFkp70tx4z82WGz%2bYHrHygMpviDkJATRzjEB2Qinc1SONyHETZyM4ieGmlABySt%2bFOI2T7DQjLEGU/N1OKyyWyFtR2PDcdVQVqbopIvmreNUJBDI40ysu59olBpsNNZwoOg1r7VHSViHPQAMPmQBh1XMfT5wai4rWn8YYn5wn7urala1O787PsugFLj4zO3fOhhPNfH97QK0qfBaA54wBq0%2bAFz5KBlfec70PcmxkXVAdxsXbhwIlEDtOkLy%2bZlkPTIAoV5UUCSc6qF44dJOVXrYFlcxS/VP6TgThU7uOOeT8uXHfpQG2wPwYQMz1bS24dkVWmqK7u8aDyn1xkDiYICtBIVxUwrgCQZWSqk/Mbo0hJ0pc2dcXvrg215t/PzqhD05k59pzZTOZLtFQ4Ct%2bR/vXnXPyx06sHtIujbe/0c/abQIl5ML8oKygO%2b1rcdyfKMsR4F78cyaW6sQ79eMzqm%2bnLUL/r27zr3rB2Gy%2bmJyNgUjy1bgoMrK2b%2btlg9cPWbwYzEylxCbiwSw5D3rgMRVBjY0zZAop1Q2lh3ZDunSnWZAgj7orF2SAGuVxNVHJCo7RcjEqs7I%2bTNXdSxKIObNqmk2mRETpnzDPzSsErDFsthL2uXOgdJJ1rrv/14kK1KPLVpc%2bBoREaBzSBUh9DurhUaDf1chcqBkYVg3UyhZKpoxqcfYh7UEe/UX/WA7JZTQt9S1k3%2b0E5U2ZnJiPrRuEpVGBmZ8EDX34NFtQymLEsqifcTzODGlofNeIvrpuklkS8BgvbvfgpD0E%2bnc9GeKZB8S5Zcd1qmYJBScjUeBluehCdAlinJVCAqP2cYy3EjGPOy%2bxqy3uwcMIaZrzclXMuvep1m1X6LABtONpCRFvO%2bjOqsatHtYjOfpufrVyH2XTHsCqVupIFDZx6w0EnU/HPtTizsr2upqBS1XeYlMR5EZdmzCxYBUmV4mFXqARmzlfjukGKrncUEAPlPunYt6Vf0VjgmF9e4a34JXehIqwo%2bGModJgR4mbEYhFt4br0uMO7XzKwoxQ6cmJpQOXiJG5zoq9NfOSwv5nOTfp9Yme/3Xv/9tlmv5b0uTA0Ql3aepYBJal%2bt8zTjhXBkUTEjFNicEkYvy4%2bZGg1k5lXf6hRACI0yE5KxMnNwN/L0MlMezeIm9IeEDcFCVTcZAkhZCDVcAMSKdUZFlCZLzzDt0VtGqCYZ8U0g2zcio6IdA8FL5JZfG9kNuQ2XGFddM7QDi2hxecTnh0SKZqnDnliyCddoN7R0xWV/OZDZv%2bGqqFXrjx%2bYsZ7RZbp%2bzEirZ9ut%2b6BbHZZkT4bVw1Mnw2gDUfb/41Av68WHCVYZunMStdjpq3dqhedTE%2bI02J3F6R6Fzo0bEjeryV3TrEqUlCA63DFjllYN6eeAJc2TxQvCcwalg06tFGJNlH2AQWvVgs7ZOOSEqjBLUem1ryDbMCiIcIZnDdHG1GHZkBuz6y5e8Ww5sI4kQleWY2wd%2b7eZUPL8SKn7Q42yh4TGcOSKbt3b%2bLOtoRuz7MEJBA/q7NBh1bWQfT7RPTnq9Jfe/qcGNol/Xv%2bJ2oYejquLM0BiG3vJMtR9g7aQy/AOT9zp9SbTsgUzoE2tjrJMNFqmG7ZRA4wiJ21burgphPWTJXEgs5sHMWotfEudB1kA2AF37HI1HzwSAG1lrz%2bqUVjgV/2egE1nSs2ePYjOkbuLtIn4Bjo0q6PWdqpjBD0cxS%2biki97jVFmk27YeIWETKufypBKnjPVsYAvxD9f3iNOzqdSZ8VoI2Itv9XOp6%2bRB%2bjk4pQEDv3zg8LiiXhTzTtxTTruageCxYqFbEYdNlx7Wba0QmcaW%2bwbjYCeZA0rqNjN7bJsbCy7FPmQ2CztkMU29d2PNmjYrxXATWPVhrt1i0nQ8dcEOebRgXxb2LbjD3h%2blSAaZsQEGRRrvOvXUHYvXX5uVM2faU82bci63r1ioG3ng2mMqaO3lCWTNjOVSn6aZopFVUsI736qBqz9LkxtEv6d0iovzIwWIvWuwczeKFb9zyOCUU4YAbSrXTmwquCDRHYP%2brQKIhMMgRRhyZe58jEkm2Bw%2bDDfLDIvGgZgEbxFIPYpiY3Ld8venwKqA44N/IbW9HIEmRAtz/bJjDpjAnK%2btizNWyWLGw3y7bcMbtWebGTUgggBS15J%2bH9yzkJESUPLysgzNK5M8/huiH7o7aGN7gvZRL9m3YKWygvu7jvyaSFjH2Je6XPPgNDaUv4HUr9u5/Lus0qfXaA1nu/KCv/QToefnVgaVGX3hUQN7Bsmy/ZTugnM6HToflddyodmh0ye2rSoYHG%2bOrfhPsiOJb2AOtmsDQ2MEZIcmxPwAx0RLjjEl2tlxCQEl1b3HrI5pgnzUCNMqipYWAAgbp5qCkTlw75%2b7HItPbQYiBJfKCRn7EyVXZlXOoWS/kWLInXY33LL9r1Q9nu3FjTpj1pPJHGOkFfczOKnVB0Cv8TbiCkhVB7ST8zOf1ZpM%2bRodExS6tns3lCXVz%2bFpNyoIXIWUoVRa5gE/N8Q0Z8lzjPG6rLgB0pL4GNhEljiznrJpn4psXEnaAAzFq4z3jLT7bqGxT9pnzXp4WrsgKoGb4yPTHKlqHNEdSwA0NP1nPIOHHNp7BzcMAVhuh80AY4i//gVSE/Tm3XmTC6khg7xnu3FDuCTXL7kx2RMcSlYut242XKujP9rt4YwcrpJu00Tn5rqHU%2b2/S5Alp46Nil2I14BQChUH30mNBJbAK1l45As1KXVYcra%2bSuv83oJj5O3Gwsqxf/0OXtN7JDl7DH1td%2bB3VTM8DIwGxAvaZghmJmoDqo9EfOo2IY3jMgURz7T64eMBwYttnqA9CPqbKe/Q5Mbr1qei4QqonQAXZ/0huW4xbY2uY2kl/uH11loBHB76%2bZPhMlTU2%2bn7R0XtoUDkgfj/07X2rHTSL4LF01MH2WgDaWY8BmpzbTeQMALpHKcueOcVt2OLx%2bZxMHHLg13%2bmDDsbpTVCHprH4vd5uB5GNiFxR%2bqFWNhxLdtKByTIFQJB75AH7fbMMT0mHVoMZ3i7qzfa8u4z6hBZT3fV9XAP6pOZ%2b81XMbbB2UpifMygk4dAca9VfEC2VCChphmLpFno5q%2bYOERjukUIZJ41EpRGriJ3GjcNEgMDO4f5vTFENsqcvgPYJ03XRbIf1lX4BOhoH0oubJrOLbvViOlhh0LdZfUGHJm2Teb/j8OlJqnB8c6U/K5INz9zdVRcETqI6OMA1I1Cspc5s30/T9mhogBZ%2b1VED9tlc2cpopC7XFvuthhDGsd0cSyNheEGNbyuj/FNBJnlZasSHUY5DsILCdeNMsiCjA2SN6mmb9vj%2bxfKn8d30trmlyaE2Wjj1lLox/dXP1VUD02cLaIOlfQ%2bO6F%2b3JyWwLNNPxF2pKRkPdJOMGN6qdNso%2bvOkg29HGcY5ZDyenZkynxhdK2Bf0BBFglR/1uXmjInAPT%2b5ReejHZ7AmM7MMQXIwgBMcD/ozR9BjQOoYTISJ0Ds9wOdP8YiNmwI2piS7MwVmLYPzT12etLntqvy95UCcA1Wizt%2bAZuVR7B10pUD%2b2ZP3hZffZULJay3W8N5kGwFDU73n6cjbUyfM0O7pK/ThKVVYmZ62d0zN9M/235iHVw3cNabw1FxxnlrGgeUuvZt69jNxC6Y30l2tmxSEocNKJDprAwAlc4My1f9mRW%2btx2kNXCrG%2bGzQTQcobtV/ARx84kosSsuWZpX1Bv4gV5NwwIZ6CcQE%2b3rTncgAsZYd%2bue6Vm53z9PxndcZBACp3eNIupsJQA4jhNYXUGUGNfjTE%2b/flmJc7L1rzp91oA2XsKvwxH/F4M94j9OFGK/Ynhdy3%2bRzzfYVDYtfQptmDE556MlIKYdHF%2bHU7Dsv7Z8CtNa3CQf9VXXpIojrJ6R6GRKKS4D3ouZsFO6OAIPnZlTmQHb0WCPuGYzfkpj3eYxlp5Ag46arxvLAAAgAElEQVR%2barKiIIqeHKycoZb6GcJz0K%2bwNtWVj%2bUV5Mw5yTrd2bBmbn3%2bMiFvDwaqrXfohZmdHUzj1aE/vW7E55M%2bd4ZG8jJmLI2CyKmm7A09fiaxp2IC3Y3XM%2bWItXVx4xyux0tZDJbMamjBB4ks4GB011iLm1I8fG9QEweCpnqrhk0aY9uYGkOTkZk9yXpFa6E6FQuoybWJqY0y1G8NUPKJyIOaN4Aaq4Mw2XbPAJQsUTTkQDPXjUxoTfStvJSX3vvkekMnRFepSaJejF2hJBhBKqXb2uUNCdZxG1Qu6OEf0e997q4amD57QBsv47fhiPubuFMydvqtxRDYEigxn35ks%2b41WfIeroPlQIXjK1YQ1zOW%2bWB04soDplaPgwhmKEqChl6ZHrcAZgD8blmWWXlFF4hWPNnBibEhuiTLwArFT3TpEPdaZFEtbuBsleX7rsyPgTnml5GZvHv0jeF5k6oWQIh1vVTANrcikPaqgRvokaNMOm/mv10e/UzTW2BoFPcd6P6LDRw2tQg50PFkXSUBXAwwnCm7c249mpmrZFDbQrvMClj4XTXFizKdETfNyIBi39gHgD1Fc2BGHswYF5p7AqUgZp%2bF7Ci7zwdH38TMxPUlPWbRi/nrtTWqe/PvqLkSwrmGP32F2h2Stz/ebK6lVu33wiBVyKuhBRK7TOGPTUvcO5VohVN5r5UvlH06P%2b/0VgDtz4/daVJ/EwV/Dwp%2bXaMZFK3UAWAabljr%2b92u0zqSU9EM6heRN44DwWfdGwQmfGEc/QbrptQDDTfCBv5wCkz23wrM7BQylj2emnNoZb%2bxiS5el7aw/eYISs7oAPq5ZmXthBnKFCwTXSfLkwsPWlmbvJPjFMVQfHmrPScQSEThaCGDhLMBDWa2vqklXQxHIV%2bXa9epQ792Jv%2b9/L/yuYXYPkpvAtCG/8x/DkfUINDjfGQ5SgqPA7CyQE0m42OyhmWJi9umE63T9W2bzbrbCJimLOjkAIztMhASvRN6qXtwRT%2bvJmJ2w7A5rGLm3q5mwF8tMeKL7qvpGqMWIts%2bASA0DQsk0UF8mxLZc/fkblTh4vDdOAMR6%2bSgxg99LuhqMlgmALy4duBi80ZeZbDvQtbHxirDcr5tttRpbMrjfd06QGOdpBv5ndnncuZIf%2bHgyXx26a0wtEv6BiXjABgCThYS1xT7k%2bOzGiO9ArUciTR0tzqJ1XEEB7z8RgCOeri1uDmcacU9w4VEEqPBQIyG6yoFlHB5EemAN2dbU%2ba762Ap0ZVbPSG5YR8%2bm3kHvHRPTU0faskEvWGDDeqQ%2bam5BMP9i85NF7LLfXl25UkrsDDwWEFxG%2b8hpgiTW4r0GeorgFcXreukF6WMwgF8/OwLyaQT/epbcdXA9GYAbVDnvwFHDMgCAxIfHP%2bCN7iycMTtNkAEMOPsf0QEMLEM6mZMRMSuzEIsFhotrJs2SHFt5kibWc5s8f6uE5I1pgyDrAazfUXAU2jgk2IJOzAT3RwDy0JgbLh13gXzWjPNF0apxVGPi%2bGj1RNgkGRxvkpyi7dzSnPgd3xQ38TNq/axv0nBPPpNVNOhWC%2b3h%2bt9wTvjdFO1%2bt6Pcv/0iaI%2bu/SWGNol/XECluapuu8dyaDlfNamBi%2bXUjTclNfC2thAD5t79Nm1UgIBfMUfnp0tXyYGbtSvoKsCUKIZmAWPg4s49gSD0liajyWm98G2/ydbIcX9spYn%2bjt08/COxuwWsz8Vk0xeD8sArrg4PSagxKCfVc0XuKY02bkJKFxXCIRiCCdKidEXlzjJShb/L3YRZ8oCNySLPjtlZ//gLblqYHpTgDZY2t%2bz3xU7C%2bwLYa/7C6sF7ZLK%2bX5FAo6m1uLahlWyHaOTL06tm8i6hmxjIXP2vE8DvcStI4uZ0UWkZV0bMDPcJADZJRMsKRtHmotnJm02EZIjqBHo08SiCSdFPGWPzbbSodWbE%2bd3kem320/0ROrkwubZXhPR1wywL03BW5AqNhM3Xbfqp5gZSfitt5jeGkOjuNPzef2Z9ChW0SlZr1InPhY5vSBbW/2ra8UtQXRato2ajeSldRPRCnyhWmwzyIGybdtSzBwMaSpmauNFN0a6gYkYEYQFOh%2b04FDXwFgQXToQsIRdykoEZIvC5qYvB2K/ieUR64JHoJOAXlerzaCa7gwGCoJNjAt2xoX9hvj%2bq85bsbUOfaxP/7uC3jfqUj//9OYArff%2bCyNQnaNo0doZO4R0RBQBNjFFDopn6%2bScMf7uxNrHOb0KmdlxdUxkZyhuzghDhcH7ZwiDBL5bDsxciPD97BOM0CRmgkyqv3GzEA2pzbrESXECmRqRUzK5uaWK0CEnileCIPuEy6M2nKdM34WsiZnMUslWjhOm5R518%2bVm7kIjV2RSVUqRNZZ2TckmQSELIKz%2bEf38UZGfc3qLDO2S/qJ9ZWI3C0KHrMS8qKkNaRcdurmggbKtEitN8jI3T3ZDCFoapvwWXpDUeQZGV6GCjJiYb1xDw4KU0EIHCWKqfbdNebVuFl2h13GhMy6PNugWeOMMGjOecD0mOKIlgwG8WbjVlHx0YP8kOfxQ8XskdWB1/oebznmb7iRmLhQiHtJwzbg6Z0uw7eGysfWgQ3NGgOHiocGoelKGePei9ytu0lsFtN77ZdeaH%2b4zdvCwxk4BEWzFf0c7lxEzt1rgWv4QT2OAwaVexl1fd7q9CWNYrsBRB/LauslkqMOg59IQPwHokHU8BR3avhGx3qnTmT0R9qRxHMFM6xltESBVfZ0tamdgipKe3OYnVhl%2bR/qa%2bSremU0suCN8NRRUqS7sLb6IdIF8bGNViTu8TBFMpwmC0XaC6BrBij8xBvzPn/MGKGfSW2Vol/TLKjYuzN5qeVp5/YNh4RpYFKPcHoCYMblqFWeVgO2ItypGwxD9GYJLKmWu3FFmhHozZE4tumUYY7KlWcjMgphZgJm5m4RlXqGpAtQ8rnGGAhSEEciYNOTQcHdToG%2byibAu6q%2bfeHfNCN8CS/Om5pGPDbmaWj9ZXXNghZarQ1Y6sFrMh6J/g7A/wv4AsD70wS5D%2bKsT6c050sb0lgHtJ2lsDK5m8cr/TI6puTuq8Qlgz%2bs1uqNuUfYpdD80dhYf5n6MBCvrFzEMtXCrBo4O516YtZzdIda7wFF8HVCJpdEAM18O%2bt49TcVMMjB7ModesttVZHxSXzIIzw2gBk1x0C2loYOvcq/pQwJgRusv2cRBUC6D/xoDGtvr3ZmrrI2Vd30VIze0SJJzjhX2JqsENAD7MERNdxyDuxARNcgcK2PA//1WXTUwvVlAG8uh/nY6XuQVZ0Y5F%2bNNWWJzg0jTbuyGFlp77/tt%2bCaBlr9wK7kwwO3q5Lo5M70taWkOiPwXGZe4OkBi8wsTg8XoJOCBmxcD28LewbY2cxczW2Z5yswE8QKIDeUdI9FB8jPah0ytNc/MnOMtQflCO1n2RJAdsCRgZHo76jfmVQVhvWmYSmIp2%2banuy0p9ucMiuMDKGognUK7qk9IAG3rqiIpHmdM//H81NtJb5mhXdKPL3UKwNBmAmG0jW7qwJi7aVLqog5lBOEj8SkqAjcIZu1LepgchikKbAY5oE0X/Rk7vZAldsxiTxpOe1zxpKSIQzBIiPxahOmmCTOjAFxPAi%2bg9hK3kScsLjA1bKWLc4ZGArj%2bOclLs9BQZzXHtHlrqbDtSNjhOYR5IjVZ91lQ9m6GrWv4oUJ94aMqR53a1ZH2zbpqYHrTgDYcbX81Ha9%2bd9yUougwqWzrRFELc1dicSp1KOLcBEQTxYBMp14gkzdFjKaKWyaPO9yGGOSMCmHZkDKtQsy0qBfe/YOBETLBQnU2sRq3hSNgant5LejQYHG7A8DNTxTjxTLI9rvaCuO3eborVkooYKdg450ID%2bdhZLkaS5qr7mrQcRugxPcRTMd9WJ5s82t0wTCraae4%2bDwnqSsYnr69vOgNpbfO0Oi6E3ThjxNXDeRlTGBy7z5CaBXPao%2beQGaG6pwE1qZK4qYLzxvbBiLVzN0YXU6KAIOFuPnkAEen%2bV1HJ2xthN2ROGisoX%2bA8Sg72NMTGAi8mLmzLwE7x04awbKgoH%2bLonM1%2bMslSZYT3Tcud/T0JABJIzgmXi260iqumZXLEfmBjTpGBcEsrB9t6l6xqavGRgTsaWf56MIxS946L6IlRuaIK2C8H5pe828sKnlT6c0DWu/9L3Wi3ynVpKgnU035uA7LEERz%2bq%2b4Nw%2bbJZI8GFz/VSY2zVrbKRmzGflRkVB3gAriJmQMIk4lnnlEfIIoGQpmwtJ0fO8ZWZmYri0KYNY0DLhUj3Wzipy2Z6kYCoSloTtHZmke1DLybclhuMmE4iie%2bPyJVTS/i0Z2bwMrFLjwhcH%2bUGPysmiVccJKHtIhuT4IDG6eC9pnZ/7WW4t5tkrvgaFd0n9yxNK6iFwbMLORouYk%2bqXtaS5yVpqXZSqKYrZVPFWVIlBxOgnhr8kr02X5kUm2uIO7gdmT6NQYwAzgUUQ6XLj%2bNNwupHwBIIbIubJ5sGuxMjhrsIJqcPT1wSGBYTZxFjax1YTrnurDPRewdBoAKFvLbQpuA6zVKhnmOi1/4roLxE/cMXD/G/XddZ7UuY0hPgwYsaCDE/1UcXNvNr0LQOu9/8lO9MMlS9NoG3id7ZdIGHhx5NucBbKbJk2VclhY0QH7Lp5sxSJj4YMbhPcR%2bSZa7CSxnINt2gR0XHDGEcnWXKp2vdxTAEjFQlhxEGvE0EByYd67E5mhWUp5tOGJGPRwVh8yNQM175/25MoOD5HUhG1PXfRqkm0L0f1VJbq/ravfIeyi7kujXazcdkHzqn/bNp0QRdS8HhMRczhti0U7zVE9qU%2bdjanjfSzEzaEp%2bc23GPNsld4LQ7ukX16xtDS9htSpQ3jZuNxkH1Hqwzt0aAiRsAZcNEpDpBo7j4chKbYBXaZkwqshoxM3J68SxVon8hmgYF6MJiFMRE8%2bNeKnYQ0NzEzZHIBZg0XkxiEHODSx3sJKBfTzioYJaGMENdXnKWNjuwFhayxRaJvThEV/NGHC7Mqv%2bXcHkVn5IGztF16Bie71K3IJ9wFNkTU2q/%2bgsHfFzug9AVrv/WtGyjNLE6ulsa4NLEoGYoolzKqwV3eGqN1mFM0szdXAA7rm0qtmi5ZHfwnQpWJgYZTWrtixh8XtI7LHDljm4d%2bSmCnPwQpHNxCMY3ZJF2W9uITIBUzeIKIGCmBqDRxvnacIALjqDtXwMX5v8KFKe7zz2j69v3a7d/8QPXXqg0azGgM2KKNKWTvr6pYcG8T16/K8TF/XYdUGuniQLd97szHPVuk9MbRL%2bt6MpVkH946RalkC/Yn0nMoj7QiLjs6nHDbax2oCrnJlcZMZDAjNGAhYKdHlQcJwq54toTP8GsDEFTMj8w%2bz5VSSn6/AJuE6TARmt5LARbQA6TWCWojN4ZajyaoLdfhodn97FU2NGvoAFKTFeZqEVmEtg437iCs6SfFyxtLnRgyTq1gsh1VUHWij1mKy0sWJmmaBf9OL0GfpvQHav1QfFpUxg2Wy1sqM%2bReigvolLqCYukqoMMbctzgz6%2bBnG2zo1%2blf1Aln2grxJCX/EPPOj%2bo5UeybmNmWYCbe/AhmFv9rv8AceEEQbSDyIrjqvTremW5JxdiRvxd4rEucoGzV64mPGgGoD9ChsBeALHnbcLNf0IsN7Zu6aGwAPlu3zVGkPPgA5j2mS3CYpaLf2NUp6u27Y2f03gCt9/53rorS0vLIbs3nhh0JN06RGPJFz7oOAKeEHkDJst5PdgqCOGJRdACWeNm6TLgV/ote6DHqh34ybJY2dEzK1dAtghQHNBijDO6L3kyCRaKYuWRm4zcuVXpqEgrI6sdIIAQ6LD0mTA3EKWzfBRltc2F4BldLCo8JaDMrJFCnbagPtvHmafimiVpi2/zThIft788elpJp5cBs7DNOk7qVHeSRFytdSI0UIVVi6uZZ28%2b/J1cNTO%2bNoV3Sn45mbhE5Z3oPFQ1AFLAzPjmu1MysL8zOo6O1BBcvX%2bnFZoCKs3zVSJa4YWjdhFGncb1ASY56F/Q9Izus7hlYk56TKLpyBhePswczB8BswPbExqowHtsTsigNOQSudQ1XEeSncb1/tUziHqOgEwyrGbwlQCJg2NNQO/bwP5NJTecv0Nf10DOQpfexn6ZsWm3xqTazmG%2bVxV2WznlRswNjhCt%2bNnWSd5LeHaD13n%2b2d/q9uEpA9Wjdq0CSgh7X85U0Db67IB0dcbBMtuyJdDG5TPtxfZ/ohZx1Exuu%2buONAgZfw92gYXdvcxfFzr5aFKybVwCRfQAUBDMTU7EVwQz3KXDsEtiX1WSOsMCG0PqJQK1%2bbs0suAwLxi8yP3O8z%2bodoEIARM6ooxv%2baLhMidBlY/zGVSa6WgDEzWghR4vmVujIcLmTV8%2bJ9dPl/1vvzVUD03tkaJf0HyBDQ1DTzvHBd0gicMAVc7qj%2bpvOmpJMW7YpZlxn6O7H1jSx9zD3kSG8MLofAnGz%2bXwNxDlCVwstG9w12PRmT4WYGZkZzZiZui80dRMRzvfUrC1P6kVroKbiMbBGuXlkVRgIU1xJzNJpk4JskCfGD0Njv1lwtCDjvasYLpsl6/sxlw0KLhtOpC/M12Jl7u4deNur9q24WAUMAvAY/mKq5B2ldwlol4i2GvvRrXrCKKPh%2b2ZOHuLBvWHAf%2bcCAJZR0J3ZJr8%2begIXL0KOmZB0WcTsAU7zgVOqeb2DM20zkHhqNnIZmBWBVZTBIZedmNncTuIunM/THMyU8WjdA9TgLtQSCkOZKyMBs4ItETl5NrKXiglHlszuDcrb6ypmxmvVo193WCJbv7kK4jn6l05KbbheCEZt5jIk37cPkc3ZJLxtmcn13n/zPbpqYHqvDO2S/nv95ixIlTwIj2l0zGnXhQF7joZZRgsf5NslbWoyeYt1kwE%2bMfZ%2b%2bOYkre4b5b0zLnDUtTzz7zLSp2ADzIz1HIDZqN/Et/GvwYL5ZnsGqEvHgFDn6qEBFG1CwPtUNxVkqJdrn%2bT8PIZc39D5ol8XCPBwipa8u//hyCUuFqCH5fDa67dL/j0D29rEAgHxzuS5IgBvUIa5lLiqfqZuwftJ7xnQ/hXRqor%2bAl0xvKn9g3VCMragvWnoVq4qlIK1xTRRoUGJAK0iOSFlmwLluI7hZ6E3Ul1UHyzEKZrAedZu14MCAzOTkEcRzNiDmUTdtTJhmIMZkxEZIvrUD2vcW2Qy5aPJv93Gx0QdfrDulA881cv916T7u27iyjEYPBh7dn0%2bhG4fDfgAETSOkgPYoGMbjrTfPCzkjad3C2gXs3Yn%2bt5OuFBJbqIKKs61u7mxX1gcOVwIHZuU2%2bE%2bPn34LNnZDQcJDIZt10rvn1SNc/aHOTQRxuIVd4fS/Lp%2bEEbxbGiVsFKR0SOCqiq3mAOj5IZNZzjeG%2biY5Pk679a0xVOoKujjwi9haeOHjxpb7T/h9KL5zjnc76Zio22oImLkB3WyzdXout8c8uq/yLnfX3rPDO2S/k0DM2NFlZ6FHDYcWSxl8LEuala9k9Odtfmgx9RtwGxTuAn5Zz%2b986XeTTzG8ebz7Y37uS9hsfVaewar53DsZVmzaUYC1UGip78IvBIIEiXRwTRN38jaCBONeZ9URryyvpmIuAreE3l5Em%2b7f9aiE6TITMNDlj6pG/6EiXekdxGR9ii9a0Drvf9SJ/p/O4idcWnJh24zqYY2JjMM9EAExMS%2bw1hP6OI9Ocw7zTfM51dR8gSWHd5zcaDDFyUfbuRCNwFxszyPvxmvobPwPS73oJDazZD1KFVMR51rx8mtm04fAgLI3gS4akOSEnHEGeHd4Lqh/os8tj7sBo5oQY9wuaFrCLh/FJ//3Xt1pI3pvTO0S/qz17%2b9J/jpACQKerLFGEQkFcenTSNmdVD0RobkvwbpNJgmOkmpsGm7oShcx91a3BkCg7CxjpEz6dAYQgnpJjANmcO5tFTvWUv3j2jxBDrjTRm2YD1q3tNyMDwbRVfH0sCQgM9lXLNBGOxtgz1aAXIslJQkeCGKS/gu7diHi052g/LVT63X8ficSoQqdvZv5ef8PtO7B7Te%2b58jot9TXVrPBgIzHFhcqw0Y3PXf9uFqZt8%2bfKAPuhu2AJHfIXsbsy6FWFbXcrVsL%2bqgLq8PR4E9nUScwFKi6GTMbEvn1GUs1rYgak6kpDY5hzol%2b%2b1BVOQ8geQo2Pmkun5fgtVnEdI93ARSaV/A33D83nDxpupBq%2bcQQnaLEUBdhYB/l%2bzb97XJ5//xnh1pY3r3gDbSX7avWSvi/oL%2bIure9K%2bsh%2bEuihJnrbw6UsKqAJJwMC34q8FqAVksbWsymzKwazrAtQhTbjD3eDyXWRkcnyqQw2MMYmbRPhzs0dFXcqAeTa%2bKi/EbQmRLkX2do6s8zxDtw9gll9d5%2b4S9uMiy0Rqua3lHhg8fxioDZF16bRY3tw%2bbAin6RAaC9mfTY3vH6Qug7enr06Av3fe3rofNDNmtt6lORpgZFFN%2bx6NRNIFe7LzEo5J/IwkbM9YgjrhmV6eqkT9GcRBndJYjgDseWJ6pP4PEba1Hc/dV6NGwNjkmeqhN1zuNNZHiQoFRaEeY9d494yJhxuMBb7hkCZcVOXGw%2b7JlV31sl2gHurjziHuPvWurg0zkhICOhfMs/vt/3rsjbUxfAG3vND/ovf9N9dTuU09sWCRM2tlpWMQ2XTdp%2bhQTFQyjrmuSYa3fJrIpduYhlaK4KdvMnfFZ2is//v0B82we1Zm9uLlK5/RnUDZWkr86fVlPV43j3YDYXOG8CZYj8zOjpmNksgvWtvWoqqvFbWxiYaCIpBJ/yF0JyBECb7jMW0FT%2bgvl0XecvgCapT8u30KIx/w9%2bABprCo4bmICUKo%2bK9mnDpdsygXIKZ432d0W68OQk0GMRGfP/UAgpCg3bfViUzz0dFJ/JrutlyVFNws9x7AsStZP2qUNWWincK%2bB56aHvOktxj0ut60m6YVkbu8X3Dk0Vp4si9MIKaZHdU6xKnpu%2bvw1ZppjZ0VfIvo9Inr3jrQxfQG0ka6Otr3/WuGBDe4bIiJsKlK6uGmEERnMUbKobXoki50q3OhRDpffxo6c9sylIljHXp/%2biah1XtyU40lPhT%2bjE36gSs6RNNGoaZVBRDfYxN2eDFJFqbnXx90eeGwaRj/BkvZHw7og/8MBUEY1wq7ikCAIcPdiXd/73H91kSwOH8A7S18Azad9U4mILsCwKMyWaBjYRDcyFTttxr2C44azfNcdhDA0jda5dXUVEJYlQQptdO3Jvo5orzBaLOrGWKokJj%2byDUP6Zeu2QlzFFaybd82Xo/55VakVnQ4ZVhrZWeCMte7LwtDZg60eRuda1kjbuM8o6f2OvSTENWfbRfJNtrEb7hxXNQH4JmIIH%2bfKA7qzeMMuYC3nrjbLDxnezebBt6QvgAap9/4LvfffwdhVWy/XzWX3jk02x9gKsZMc%2bMUxuxX%2b/92JMamlzlCxwVTuQhj1sdcoiscajdWMFyio9cIw4EiRpIqMzSyck452pEdj25zTMbtoGKAesbSbPjAsa5NtAdXrfjwEUcjHhFFHaOx0bzGCJGD3WKfK%2b/4NGhROX8NGHz5suqQJQ07hJLZH19iKCRD6Hn1xpF2lL4CW0797PeL0ZKbzMMOBdFB0ihwd90O/ihm//8MfWmTSacoiYBQ7bWNjMEoUMOO%2bodUyKqV5D/Losl/%2bpQGdo3X4M%2bdTto4e69GS42yhdVc7gCtHYqL5OG/KWMF94%2bimTC%2b2Uzb0Qdtwp6ewFyeNncOiuKnMDGYQDRopUwu4dqCoCZPVF0faSfoCaCH13v8MEf0Qj/b0pTYQmIP4vrCYMWZWOeNu5o6hm2zIRrRD5lGx04ANxbI2LH1ONw7OmzG/DpBCpPwQoDRZ6pJ23yJsyG9UbeHmJ1hO1KPhz00BeOitHA1L2adqtG0Li%2byHLoxh8X8pDrLpKDvFSYKdD1rDvdmNtFmVwWAhz6bjfQmTLRbsW8AAgv0W6Fe/ONLO0xdAK1Lv/ZdxV/S%2bRXFTQEF0J6R6kw6iJfoigUEyiEGSwELpxEGfEhCVvgTnkuxOFC2Fs6RFF71mYQfIKejRME9TLX6%2bsVtutbXuz7NXvjcJ3a1PHMXyInVzq5ErlKFtsBRK1AAwkX1Q3ZvpSTdYn/kBWH9UcfTU5/pPL2773acvgFanr9vRLAzu%2bnAAHbcOdMRFI1Kz/cXjeyV2gvmgPCeOlyVVDOkGPHNAFpYfWpr4YN2TslOtWARDDQ7h8JBF27ic6DBpsBPtemZoIH6KsYAGkOn6zGEQuGo10YlWwCQ8OmxjHEgfruy7js2h/UQnKFAruJUEoKvd3Uq%2bONIepC%2bAVqThwvG90tE2sbXBylSxTKpv%2bf/b%2b/ZfWbKrvLWrql/nnHvnzh2P7RkjgTwTAZElY0dIjhw0UfIHJPyUXyJBQpREESFRQiABggwhgRAjRooUWcRRjBBESRSwFYgiRRA5tmWMI8wQsA14zNhmHja%2bM/d1Ht1de69o773W2mvvqu5z7sx9nD53r6u%2b3V1dVV1dp/rr9fjWt7CsDG4IO9NgDQ47x2RqmC4Sj8VaRzmaMn7cDD26OJDvGzL3RaeXxigbkSN2hktnEGpuPjad%2bm/0UJWNH6ZoFYKha4VabkkDg%2baJMaHZKY8Oh/vJnqPsfPD38outtaOsEqRWKUOPZRVUQD0y7Uqdtw9uPIHVglVA22x/n1/Z9Muc8rq6cpmHnQPRwS3qG1nY6VIYK6FOERpi%2bZvPqqgUEJU5nFJ%2bW2twMSO9MRtgpyRh5bl4ya8ldW1d4WxGwA2030VRZjpH4wdRhJHKe2sgv5qNLFd5KJPWbZoxbDe57HXJzRO5bJR/hJSJauPvTaSB%2bOKQVzsOogUBNO3mNIZzWYGprKo755ZVYvt0q4C2wRDxY37ohChfyMWVRpFlnDGV5wBWIyWvzHtRvSdyY0kAACAASURBVB1XIN1yBOH/krrBEJCTa3XyOA/PsrVM3gHAICLemDG5k6MrpbxspC5g8tX5CCWUHIkgszAt4ZdyETfk0caQbuy0IiiSMy2Is4Sd8PjGSM%2bhxqKLEiqdYKgwwpLcMr3TJLnunirdY1p3OmPA3QEZKbvsLEDWqAuPf7USaU%2b3Cmjb7UfDq4OWptRMzL%2bqIbFrYwI4/jJjCD1sb7M3KOWE9K%2b9y375oxnlzaDk21g7g9cbrRuOW/kN49yeFnrM9prbHV8wg52clkfLPSrIxtyNJ/ga9b9%2bpWyGH5u1yeYcisw5i3o6/cPFfy%2bRkHIpxeCSBJShv5m1wxQFSKcJV8XzzyPP6HMnPYHwyvefcqYfehteBdXyCywMJcaTO654Ck8pApAHNsc8DvVFlKsYcby1MjEwIKuZnlbp3GDDyqo6BChezNyuplh8tpanwWE1JRVBrcVjEsq%2brgxgdeGgDFeLE2gkcgfHSrEZoRhF11/3cGbhqy6IlDULxZ%2bVOQ3WURdB%2brlJiX8FYJJnBbleRIGjuK6Czh7ic5VIezargHa6/VJaYxhAcGVK7jhMgHQlx4vTQt8PxQAH%2bTRWR%2bXuGZHnoC8CD9QA9g6iqOSwhjqGcpg/yj5O/tooV63Y7VkunrPKbhsdi45A6OBNB0XR4miQc3meq2fijw15gUze3XpsSoBWnysBKMdcNuAKpDoak3Yiv0zcSQLyo8Revg4xOQIAoX6Efamqe7VtVgHtdPvHZf0sz4Xww3TFZ8xvJxMdxVzW6cnaXJgqmZzwUXk0XV9w%2bX/pfRXbHF2SMhJlCeZI0eAPrsC69CHS/iHPj/HzDOS2KdRquQxTvp4ebM2jjVjWpIXaQ9PrqiHL/H%2bTJB2RQu0IQlw6GAHOEQ9NHtOxy/Gr%2bQTSNschJtNLVIoh9%2bGKXCY9Im/vWiXSnt0qoJ1ipJX2cR1uZsMvskSu7uMsXJyk25PFk9ov2lRNzSqVkHtT/Nowg3TnxrMF2uHoSXkPY0beofiyn/buY6%2brTBeonHx2EvDMF6wvxLBTS9Dh0gQY5ERX1tCeOihQYtW4NxWpJl07xz8%2brIUXl1n5IUlhpbx/ti/VoC75usQ/82mKmju7c6uAdjZTFI4hBKF%2bXLRCZYUDuuDPKtA4aE4XeY4RK4AkAU9DvYtphdCyE3I/SnFjIxBtaHcqX9/A9WCQyyPKtM1ouDgKqLyA1iVkEK/VuQwEjXxWqQunTR03oscwVM%2bAiBE%2beUjcpgTqLdUn4%2bDVOTfe1jGWpHBOhlKD6hEGVKp3STdtWYm0d2YV0M5giPi7iPiVTVppiRSLMseRW2KAvnZyYavWGK3c4VBVy5xmbGIWtoAA6EjnwZYRTUWL9GiBgENh4epybHtHDt%2bGOPQMfqNpcoAbuzjLHKRRD1B5iZy/Cp6TUYGqKgC4klCr3iXiDZ9/VhV2khZg%2bMmGDhtIg4MzL94p0NL5OF2KSUfhErhVAcc7tApoZ7cfCGsW%2bSaJKjB5aJL0ZZIt6hXTdkZtpxNzOACgtILj0JYEJAPvydEADhz7co7ZoKa5xZrCQ9H/A5iE2tlawFveYfTLgdkwL3a2UDYBRkoAGtQDUUY2LHOF7HsF3ocJnizLBvGAGt5j7yxN/nJE1VBnV7fJ8g%2bSSkdID3CSBQocNpVaq0TaO7QKaGe0TCvNOen7c5RctjKlJwIMl/D9BbrubeCoBdZ4eN1mYWd65ErMk3ssFxSmGwmkHYse6%2borQPIGBZw2hEul6ZanTQobPLJuLGLUF1ubNh9pVM/YY%2bMHY0zmkDKNLR5LI4%2bb9ECc3mybDSaFGeGnUUYOk4fmnIVmqC8ezKk/lnhxPIeCZrhiCWrK%2b3eI/70Sae/cKqDdmf3HjWtjitD4cpbQECF5UopzNuzrhExOCCQUTXk49ug4NAxmzv6XHNeYHe/xlH2PPd5mo56VOsAteTTBB/autnhpeeVYLUNm4YNMzUQlgpl9fla4UMGk5ONGTouamEeTpZygpKMfKiTVFT1EJ97ps68KEtwoL6FmWPn7znCmq5V/n3pCzm6I%2bH0DrbQiH5KWpYnbOXFDZUw29HWi7BGhZNxuU%2bY4iw1yb0JoBWkIF9MR46bU2BkqnLypU59b5oS6IojNkInvDanX5u%2budWybDCDSqol9kaSzmfxqnXJrGfRyJkzuMSsPj9ubWP7HWVXF5K11ZTTToUuiBpxH7XlAdTzG36pE2tdnFdDu0BDx11Pl0g28LP6VTdLWamCKo/Yo50LuxQ3yZ%2bnpUJQ7vSp0ANVbOlbiM%2bUXvAABvRJTIvhWAtPYhbLNYeOGdMlFFUA6xkXLdlrwQ7ZdqAIlSWBYXkh5K26F2mylQKPJ30AGPQP3YI6VZvi9qRuAq6ky99OhtL%2bJ7BQRaNUPyg9uOcxqW6wC2p3b39m4RRl2Zm1LlM8qN8FURdNyQuycITLNgGJMp1nqirtkIy0kVu14ojcGzlXDGXaTKKTCmg/fn3HFxmG0eSeUjXJ3jYRrnOfSoGoGIegYoSPtYDjVPOXNtIfWZpQUjWhDVREt0AhlSKv6NX1/rsPMXRY6Dvd8JiLtuC%2btjz95jOH%2bpUqkff1WAe0OzY%2b6Q8TnTx9KDMJtgiyyKbyykbBz3DfTzeswEpuRBekaSdIlsUnasWXfT7NFaQ07tj/Zr3q8rUNgQxUx26AEo7IwoHDSDd6leE%2bTtklg1sh0J3Y/uXsiFQV0UUb30jJ1xYkXLnMEAmHXCliFcNM/L4oqWdUbKAfKnjqHmw5EwKDInf3LkTNY7YxWAe312XfzVmNVSRh8XVQBwMXqmCvDzsKyPFq2t5E3c%2bUCsjHPqVjN8jIJkSWaTRW4N3SVbOzKHLiA/FSnz5qRz5CaLpLSq3Va/43bvVJoyE6q3p%2bVcXQozWiS7xyftazmsQ697YSJ6q8mKQilQAtqGY8jjGTf24j47850WquNWgW012G%2bFcqX1Af6aKrszoRMdMkDEAJtBiomC1W4GR1d%2biIOk9MjpFp2fjaFfwO0VRwOtXwMXpvwnmdT2AhhHozopI1caY1eiGklvZ3D8jNh3lROD1uW2ylAUjxoCtN7pdtfHnrZnTYALOfiOcYk5x3C9zLclKJQ8sbzw1JVTcxO%2bn8YnqVqd2IV0F6//ULYkn9xlWKC6KNxSOK5aLYfb%2b0kK6tpvG9QuRunhnE4YfZj8LLO2k6l31G%2bsCZHwxwXaNlYcn5jhVPl2gpUE1bGCBAOLsYBOGu9/RyXLTCthddN7d8mO7KcF6LfUx/vGBMmtq5Z4RwGvTuXAEy7z6KYwT9M0h0Vf6yi4GemfOur5%2b8rP3G1O7MKaK/TPIUDEftMKy3TR0PRuOJSfWCV930MdXpL1c5%2b0AY4kpFJXdEbaBeSUdtCKQvrqEx8xLDtGf2muEKGyXhab1P%2brLCy6qqB0A2y9OwdDj9R6YzFAoeeR8qE3wEZJaug6rOpi8VyphVncPiph5Ya3BWvTH70SONME2llAlRQSK5E2jdoFdDemP1a2rqI6cZaokRSCEc9NJVGTiTPERXbYC5NReeQx1JnwlbjSFPen9LuYeq3mvw95qK8Hjsbzqn1kpeII2XL/GkaLtJCQZoTlFQ5tOwvhDJxXnu%2bgxXp4HtHHRcu/2uIPLtj2Sf6KzrUDlv0FA2/pqanp7/837wLZ/uhtwpob8z%2bQbn1GNE2k9rONNSGseY4HOXlf4f5l0WscB5Sqm24V5ECQmKeZcXX/FttdHsPhY4DT%2bssRh0CeZhX5tGMPBwOoivfNP1wWNADaVIPrYyMKUi1WHi2sh0LnDOFhooH8WVMLW42L%2bjw31Ka2iF1J%2biURN9bXQTg22cqkfbuWAW0N2BE4fhcppU2HG4R3iDpznOxwEm1s/xygHaeUN0PCgpDoDIbn5Q4pUQmUb3fls03XyypQMDy/5yhylJoxQ6N%2bgzl6xwuprux6eJGFrdFEi6Edk4NAS4P2fAu88BZZIG8x0pA7rsAuEiTzp5RHl3ukaP8iLlEooXUTTBiP7rx1Fa7I6uA9sbtx3kPo1ppCGoCUCEXNIgilc68CBTqsFPJ1rA7oFJs2/JnpaX3djlyFvMudY4tS7dtKwiYPMEOI1S0lNhS4WEhdFsiYNqH8nHpNNiMSwZRBcSMh7xG7Ua3Ksn5FRYtDR7e4IkiCxGUKsWF18zToRylBQoi7df9RKfxd6h2p1YB7Q2aV%2bEAxFeHWmmKe6bBSlXACjYC3WfBavZyUkstdLg2wJhW4BjN17k0R9OQ55OGmJgRLn2yAc92a0/R9pf0pnbzqmpXYx5aoadmmtglAEOgVHWRjCVn2ENTk0/CgJsQYsb8pOWey4w6o9qudBVWOGsUajpF8Ul/hX99ykeudgdWAe0uGAL8%2b7CXTOtKgRvJCvmL%2bswu1AYRRq3a4EBNa/dhLI/RIw5cU3x5s4dF%2bxAqX43lhpjDBRml4Q7yZ2coCJR1W4GqUpyjfE%2bimbT8RDNmKf9lXfpQGigtE2NZRlsUYnk0XeRY9OE8Fh6qMQmK1GfgRyLXxGPvXOw6YMAriLRHiPj%2b009ktbNaBbS7Yz%2bFiHacwsEVzfiF8dQND2x93wedtPA4eAF2GIOy6TyatiLpXwSLkuBHCa04RFPaaGf8%2bK58dGZghpwwS6xbzQbThYHR8DDDKlUhdpGDx%2bPo0sfKP58DpkdEkDEFIpkGMlKu4d0z0EHqzUw5UdbDU/M2OY2QJQ4h98zyvMB/vZOzWO10q4B2F4z4Q79R7kkqnqjL/AA64NCKNdL/SRQB3V3gVJ4r61Pn%2bZ8sAX7WPBqmENZXOtMscGLQq9ans5J2M4WNkZanzXk0MjfA6PiQqp/ohgRcDkF5LkI8X9TGxHpAmkIxdioUZYPXk8omVUxTRdJJuI8CmloqCMk7i2mBQKh2iWit/vqujqe7%2b1YB7e7Z3873NOSNcRUsvXw6%2bmgahYCf7tEZMUOcJ16DJW845xQkqRUBlb24bf5aI4eRtzwJoVZRxoaFgg2fq/wIYyHqKaEtnx8%2bJU6OUSnajino6rdoaBKUyv%2bL%2bgn9Whgp8%2bR7YgFP9uiAQY07F%2bSzphCebp%2bsRNq7bxXQ7pJ5HpGncWwKO9NFzQNSYshiibbhW2GCNPdADjvRGkIPYQAj/mqZrFSX82HH/rTKk9jyWm4qDtOVzdEK54bNzXCl0kNrsp0OBW4H4/OM3pxhmfZD3qVBtQbtD1X459RAE%2bDJ9%2bDb1IhO40DCTeb%2bIUSZpqRvlgArnVcipLiySJSdgr%2b37bRVe31WAe3u2g%2bXeyvDzrzvc%2bS9DeRAqJvawwpO9utkdgD/%2bjuSpKG5jvmRZHfAOCNI6VuPRtqE6KC28tvGbOBtbcijSXFCc9bKfiu9CyOfA5uYJ2wgIV4AKcOdE8kjigNM0hnME/mJhKylgBA0%2bKHkwvS5FNFG5qJRx8A6VDVtqIwqigbff9FPEjvDWax2h1YB7S4aIv4i0CAVXZ4XD81xUlhLq6JwzgC2R6EscsNVTfXCRkueQZrz5r/wacPTywJ38yIZ5r84v6/HiuQqaDl%2bJlfN0Ai60APq8p5PzPZvMkmfvAMhV%2bmIw23Sj0n6m0Xcj8DInp0CvFCg0KPtRhUy2QY/fNXujlVAu8uGLAEjFI64/9JDYwmb8Ase2mli2NnzRKiB%2b4ZDtNMFhlK%2baCTnznvZnH7bkJPTJFjQO9XVyU0FgSYLGUf3H0LFoYeWOGXx8zXlMTayBuWwiBc8Uog1ur1TLWfV3%2bBoWSfVTC6yWO6RDZO9onwQog6BDSB7tpxLs9QFYhWR1op3diNwF6vdE6uAdvftfZI3cYrvRPkyu7bCMcv9ifwbmHIvLMutYyVdAhw7fpN2Z7Q3mH/JN3fiKGtyVBzI7Wy4gkbxa2Tk22BJk3tuACPYTi9yvpFHyzVN/haDPgOTAFCWNsmT6rX6BYkDbLIkdUahKFDnwNpKRVN3fij7wMadVnvDVgHtLhtVrv43ZIXMVOb3%2bNML%2b9ymwoCwx2EUDhJHNPVgZk3qpxiOgCaQZxS8I0NKG0ptg%2bbsnm4jFU75GEY/iRZSaKwCOWJjn6noCqXjS/tEOo9pMvrw3DiWJM9uxM1z0QM0jVETsHLj2aos%2b2ML%2bfXUj1sUHlC8sx4R/%2bldv%2biqiVVAuzf24%2bV8AeEgaSFI7cFRa03fO%2bhtn08M0Ak2YE9NJaaVlHQoCKCVUAldqgSWIaH3TjaUDlT9kI0uFR11bqpwbprkBOnwt1mj9qP3wblDR9ywRIUp94/UUO4ylY0YKyYum959H7TpYjdH%2bDvw38PG5%2bFchtCXATUp3hpjUh6NB944lTtNx/drUO2eWgW0e2B%2bao8x5rW0Z03EpN7OLPel9VXVVjyiLlMNLI9XDzUeNwk29QxMwzQQkrnOcm5mM1iJ3dmlowuUo4CVfaJoZqzuYWK%2bLp8gxZLYKneXd7nnOyKiMoeUHrCYTMx7NTByUunvx5y3%2bBvFPyTcq%2bmydAFgynKOyU1Vu7tWAe0eGSL%2bCGwIO%2bX6zjyvzeEjqv3wvhxLcqtcjhQ%2bmRJScseSSzH%2bJgMbZKFGbVNBgKkZebCYzw04S8hcFgsTYdYkFj%2bKklmsGo90uYeEvnho6eRYpnjIjwtrnPBBphwoyz8JlxBp6HBalag2AyLt5z1P8Qwft9obsApo985%2bCRGXun8vhZ2aZ8a/8C5WxVjVgWc/CmETU18i5MWBbaAw6tiNZNnLWkOycWbaqQobG/hspdslXDS1gaTGRvaPWTEjZdz1JmXtwUCqWAqnjM6K9FnSuk4VBsL8AG4yl/2a2Auqp1QRwFlNpB2e5qKTpNq9sApo98ioOCA6VwMPjZa6U3JKeSV0hLoxXDGzZrCOFp/Md5luqdE7RbwIeFqsSGYGD/Rryo8z2SFt3qvJH7IskIATpiHLlvstfSJeV4kZ7JRnHFj/qLwu0UHTYKQLDyB5UEcSTuu1FVqGo4E4jqTQFZH2FT8pbOtJq3ZXrALavbWfAMjboACSxr1MC%2bJm50z9Xo1J0xVKGbHmVDM70QzoS%2blIJtrLFlmFoEPgTH7fRqUPOZpNVIwtFU7txlBIinonmK/mRsi0Yzy69NlpHXnjVJtEyhHq9KNjEi4DYqhwmixxzyCuFTkCWNKUJsuijxDPbeyZjS39xiTKbhHVV82z%2b2QV0O6hIeLvIMJzAMnLcWGEmaVQ08m95FosVduIaCvhi9O5NJdhkISLXHRgPX2FUYJXGrfCePEmVDsFClyamyecLMwZWRqEBvmzZiyXprZFhVLFKhtbpVSFld9T7waI6JoHn37FHKSNWoRUDPDUmQD81B4VvCq00KOVdid9CCzPDaTIYZV3Zq1qcUqPV4j47L27yqppq4B27%2b3ZvEk9ugu95TF2LggJaupFKqPRsWWVtrKYUK4wbobdEF8NbOKEp1TlTFXNcU8sZ2WdJX/Gq3DVNIWhZtgJIE9yasjY/vz/zL5Al6qIyFJB%2bly4nHqCaVH0YD0IGmL6Fx/cEGhmVBmSJPJ/Ix9q8vSmjEg7zJ39wulnqtrdsgpo99gQ8UPGwDGMVDx1tVNaosZG1snqTkKnbK2z6JVJWMbqEsNVNtVZzTCEOtvbsWUcCxXy8csj24%2bl64KzZFzKvTVGSYU3OW0DkkdXamOyp5wG23D%2bjE6lE3IGgZUjlVuWV0vFGCQ9J96XcxmR1r/6/Xd25qq9EauAdh8MEX6O30VATc8cUKGnLQi2ccK2mi2gw0wdId7pxxjHzFFrsuTYGW1sdR4cvG0Pm5JnoFSIkKeYJ6Z%2bSsAznYVkuPlkM8clJPL7sH6vibOkUMKT0Tn8bCjHFjXl4pFbyk1iJg80SqT9dNU8u79WAe3%2bmISdimiZJaK3VTtRte3IEkmoDcSxt1RBt6HYgNwRjUOxM14pYzhWzgQwqJ6yt6XrBy4VCFDcICf1E0fzErKP0ajHGBn93E0A6txEJdoU7Erw25QhJ9VrVHXaP171fQQuqyS4VZagOIWVqnGfrQLafTAv/miM%2bRQUHprTHPKs2glb/RgnI%2b5YjjvRFXryVHxSm3N0TPwsM24J4zYTR4b95EphI/SAUuQHcbRSIxuZwttSU8%2b14CNz0VQPPTbpeSoiNLIzpDaHRvW/6mJDwiWa4KS2Fq6YYz4aSTGNFHpL7xmJAMfVac7dsZQQV5kp3PxK1Ty7/1YB7T4ZIn4gC0uYYMtflmzqkKUKGtIQFd10zdo4gmq5bW2UTKiRIG7Ew1NWXiDcWH5aAKqzWQaKHUneUI7qTJYkgHgWZqrOFrqLYoFmQcvW1iUeGQGTEJtp6HMKPak9TAGpNKO7pKih/6YFIP7AGT9WtbtoFdDuk/niAAAcAg1BCSPtIH0LUttSujfFV51H1kFoLG%2bh5WplmPJNvDVSi2gkVa7COrKwvGmo2tmQ4oaBltU2miiz0bzBqyMCWQF9kpDaQFnb0C0gyX3kpvC4gRNeGFeQnVQigTTUGg4ZMTWqp%2bR9mq08KIo4Gj6MAKt1H4FOiQn0RKS1Q0Xao6p59mCsAtr9tfczuDAPqhfOko3egbOZCkcGRUytCAROd4bGp2icHjJMEmtOTc2nN9z4bMtWIytK76SgGElwt%2bV6Y%2b%2bTLtMAKDYm%2bZPXmobHlGGjk15NaXmX/w2fipHWhkjHIMqfE8mSmNeTEFoHt5n929POUbV7YxXQ7q99yBiTiKtjNzU/0lo1x9PFHA5qwMhixC0AZdRXT2KtPOBEfVMhYVaNPQXSthYEaI3klTk1wSqZy9ZOB51SfUmkLX1iymdxYUB1CDCR1oNgTz8YQV6JqqTB65JKpxPVDFDn2SoJIp6kzl5ZPyTS%2bo1/auuJqnbPrALafTRfHHAOP1IWw5IWfmqJiqqpI8x%2bXt8BqaWCAKDWWOvD5G8Ha8rD2ZBzK/R4tuTbCkbXyOt32CEQduOyvFki6Ka4ssm2b%2bSeZZZ4iR%2bQ0pC7i8W7tiaF2RymMg4a0whBTcBVpsVES96eC8NOGPhE1UMVC2CYO/v1StV4cFYB7f7bs%2bylyQQooWZAonSQjTIwcHvuH0vE5OVmuBhVDmmzNSIFJCHilh7ORi3Mws9G5fVGG502L4giio7kyFkxNgGkw9wzA1UB1WKPSES1CE4J8LIBKzwt3Wm/NZGfy0lQikgLlarxYK0C2n02L/6IiF%2bRcK6sdrok78zhDYc6tu9jdY2%2bZKgpFy5V74QGAukecVsOLH2Zx1uf8mVnyaUNKpuQc8JK/iwONk6FAfGIJP%2bI9HkMqV7wyYw6ZlbakJRENo8DZO4Yk3Jtmoge8peYAmsJJakxnf82DlNnQHHwf%2bC98DOcnmr3yCqgPRj7UcPjzPk7ofoAeYAtsH%2bg5GyyXFgBWzFEdTk64PBhVvFkXtgpNYKzXih5QaCAPtOoxQWTVrZwsshpSolTU5UApJqZIC7x2NgLDOvy3AZMg0%2bcbKFamDA98Ljb97FLg%2bkZNgs3cz6hstrm9ICtAtoDME/hQMTbyUOj75LTxIHhLDb%2b0iENtuVBw86NUA6g2E7tjFNGxM6InpCq4pUeWNn5dNb82eDiYs9L0KBYM%2bDqMIdmFGo0XFpoghC3lBlM4RWGENSXKZt4oMZwh4LJ3jrQQHj/DVDjeR8KCKHSLFPUuRiQVDUKqsZtRPxVqPZArQLag7Ofkd5NFyttkcLRB7Xa0GfYW1j3fbyt6bF/3boB7GABEgKUTuWSigHFMghZhaXsdZROXiDJbxkBxaAn%2bbOxdTk6Lj20cj9jIai6UiWiziSDcl0z5qhxBdORRJCjfk2XyQU5oYMEjbOG264i8iNrpg06ETL7sY0np9p9swpoD84ihQOGsaBTuTWQcBQlB4TkOTBvjakGTDvomYrgAdH6Sp2D1Zq%2b2LSPQDcQ5VUK6VwEm7J4ED26QmCNrZzwRKA6emGxhzbyUrnMqP3GnJXSjEMnBYKyOZzbmZwMWzBZiBj2HQAqxqZoMr4KnT/Kp7EENwEgUzT6wjtDdD0AfPAcXmMPnVVAe0BGFI6f5y%2bF8Jos9QRaJM%2bBVCMUXUDL4UheWqpvqWIqPYeq7IkD1cd0C1BAqhRp5EiaZJSFw5joDVub4l%2bPqf1wNZLDc3ksMzX5%2bCCNmOPqo1VqHPJpKDynJL%2buUDBFgxvPUefNWHstL3zy232kUjXOh1VAe7D2bDMWmmH2jaZ7%2bha5pKUvq6sHkiKnCihmTdjbBxM7/V0N44wgtAYxhW2Uz1sew5Z1BlWJkXuV5iIgNoE7lkJaCjAbmnruW7ioSR4oTGQOX/w8BMo8iYnOR/qh4KE0uSovisIJT3ji2QWDJnSoxYDzYxXQHqB5iW7n8BPpCBINAMkLQkgkW0fFAMlFUdiZmtn5y8bDhyO4heqgI2/vdNJZ1gnErT5YyHAnc%2bPPxt6m5GqM3JvBRcn0lJzqm1JlCGhonQ2fLUWUecmXzy0GBeFewvSe%2bzRVF0AagDI4C5%2bpVI3zYxXQHry9H2moicuqZpi13PCoNCZ9gvK2smQ4gHQESCcBp/2ZB%2bZk3PBoYcAqPptQGs5kuhMAR/w2kPfdtsyVrhKTLVQ4DWEeJiTlWWAXMuUVI/UCg/flqDDQWwX8JAfU25Gu2KJTgz22sH8ruTP/0j8659fXQ2Xdw34CHrQh4oeNMS%2biMW%2bTQSrUwmSMCxI5vfdc%2bjQ5l72N%2bWxa9nbH0MpEgGB6RAAX/yVuGgk7eXKRl0r0CX%2bjBL5D%2bOaa8KqJMmeAg3dS5tKk8tzp2tQ2NQQ1v0w%2bYe6CZZY01fjOgM7re6VfK/wwE/aKVAFF9ugo9AwTmzABpa6whknsmOYNsCgA38hueKL0%2bb7CHi6rHtr5sB9Bys/k3lmSenb6RoAHrJ3mG6%2bVhpqWyeF5lUK6PSPTP64Yv9TWqYKDK/NwusypOjGbLSXNLTb0NiFrapfXMebRhLahxDSabOOGJSEJ%2bBLFw1L3AFM7epEHonATbZRFdy6T2%2bb5nYjwQ%2bfytxSeYQAAIABJREFUanqIrQLaOTAi2h6mI1FxDulxoa5WlrFQtlmZT1LgFnJF%2bRCWsaAQ2VvCkjoyLEAA5uGaeFlbUnXbQs4SbBlARFxRUzYUuIvXqfpcoydL3QHFtHQO8YOKifoE0iLFn5HHB0q1Uyq%2bKz8df/OnrPYgrALa%2bbH3R37ZMJeGqD2ExL9aW0uDhKMNKo3SRZCmGZWlRfmyjhBsM4bHdlKpgG96KvXWgY1ddJT%2bSus7UJ%2bNgspmBL8NKdmWO9WN6i4BkmibmVT11J8b1UfhbgxQRZmUV8RfrFSN82cV0M6PPcuTtzH7crEqBMpEo9QFABJ2OiLZ9iQj3bOkECTSKdM51uu8Wuc25qkQLA/Ws5vPE27gog3kj7bQNXR71fhFKU1PRaN88rgghJF%2bcLCVhnLuCOVQNZxTS16soWHBFG46IiYjh5s2DzNR3QPAj5/ni%2blhtQpo58T8r70n2qajoW%2b7iHMBhZ8opFI93zPPoSPxsrTLET0SqxqyORQFJqBSnk74VcxBs2knZyt4YnDpNvVybrynl1y%2bp4zwa7M%2bTI54m%2bDNxZF/QOtwZ0WUajKYFEwkZ9a75I6qUJUn3rH3yiCWZgfgJypV43xaBbTzZe/bROHIRBwx8t79l3IQdqK6d4V3h9HT0p0DUDhMGiQtt1G2BrpOTzsvrGF1i3K4nBmV496YQxuZL5qazuOOWrW/wD8DyIBbB708F4tluLkrHw3kAKXPAaLocUhxhYUzE5H2/ef/Uno4rQLaOTL/q4%2bI/0NCTkXhCKqpfQyNgiR372C9XouYIYedqKqjvRBtqfXHoZpFAPI1ToLW8XlD/ZseQ7ysdWwh0lvklnrNnTwRD3HENvZyjjVNyKsqv6e34YOFvMIZT0tUtTXBQzMhFEWHsg/ufbU63OQfDVt6ZhH8mqa55qk2u3mFXXyrgHb%2b7N%2bMUzhs1oLD8yC91E3w0rjSR/5FUeoTFyjmkoZAk3VbAVf4UJUttxBs3bBv/WyhaVp5QNco3g/VLIGsgODf2ya0Fcltzj9CmtAUmvl7pmiojthBuIkxh%2bZUixlnAJz7iTv5aNXur1VAO2dGirafS0eVZ9Wl%2bdylcKssDiC36jgsQJBzQhgKA7ZAoSRfzT3b5GmxA7ShxJntZas2%2bIb7Yh0EFRaL7HbM9VkEonB4IFMV2pBDs%2bB6zpFR6O7zZCYy0UKIKuGmS3k2AGpyJw%2bWcooWU07RRu7Z0quk7Mq19DBaBbTzaT8djkplvxGSegYQd0pAqkAGeWYgU7BlVQqHidPGlVOn8uPs1Vlu7T5771M6gjH0o0W6qsp7diUwAoNbmriOLGXEQNvE3FoMHVNZJDarYxyIYkycPSDk2LhWHCjsqCoawZ3H3UkTvyoYQDwPv1ypGufbKqCdQ/NEW%2bfcV5OsEJKWWRIh5LDT0rwBHXYiEUmRc28idBgnQPmhucmcIjaQJj9VU0WDCIGkjey4V9WoLNcZJDlEsVZpPI7O4zSgxyXTPlQyn4%2bpeBOWEkqimVpIk6qbEn6nvtWgTkuyTSwIaUXzLKz90zt%2baV14q4B2fu0DgyPT%2bZxEIcheSsKPukKKwpbnHfR2SMPQswvYG0oqrVg4XanBPdNEUwQPLL2ujK5hxium2ecFzoKpQmbcyoO7URLcfCyW2PwhRAytW6l6K5px3K5PFWBWDubQXHTPlHeGiJ/y6ijn/qp5yK0C2vm1ZxHxWFfiYpWzpypnD/3ae1vrlDwv9M6ySJFAh2WF8gonARLNGhBwBMXHgnysJ0CJVmmZbmPKQKuYkSJKso0OOdWbDEJTRSxh1VmX8miGJzbRuLyoe5YqlXy8eqgwh56pG4O6NTBRZ%2bhHY/gDU%2b3cWQW0c2o%2bV4OI/0UfnYOUM4sdOdEDW63WgcLh5w44HHpG4YtJuTfek/8Sr8rCgPbQpIgQQzsOdVkGPA/08qb3jb4XbSQ8XQ45nQ45VWs5pr0Nh7ckOe7A%2bKcJTYGu0ltFb7EB%2bP3zNc1o0IVfXzwZTLAXPhoQVcMc%2bjTALl9PD4tVQDvf9j7Jk2kKR6ajr5kZLC2t5g04FnyMJNuYFwJSlXAJGKRvNIVcRoZegpbMScAyMkxlQ3o/27BRGw%2b3V8%2b5ysi5Q5s04pDCznBuesnak%2bySSbBqRoaxUKO698iaphGyLR%2bDU%2b1OJPBYibQ7YhXQzrFFoi38r3SE4j5J8puLA9ncAMxBJ%2bqdpRgUU%2b1wYNLzCdELQ63Dnx9FfliSR2s2a6GlQmTxuhPum6Md2Sx8bsSFa8VjM4NKqiMgcyKG6YqOc5D%2bVr7wrU1hJRdSUG0TAK9SNXbGKqCdf/tX4Qh1ngzTFxMwVeN89W7V2wHNIq0P1BeZT8hF5VsFAUMwg8BRPxvKZOvZnFuMBgrHvJzNtx9x6iSElSEpJlA%2bvHe1JlVa0QkJbV0xt7imUNOfizD%2bz8Zl69AJECPvXrWSoQKyJNNN58S5j9S%2bzd2xCmjn3DzR1jn3Moc/PLgjfQmL4SeYk2xlIIjk3JickRBEg5UVD01hjEtN7bKoeJaY/m50jbhDPReguPQGYSEIADtWlcWkElLOHfCf0w9N8R5VY0xoKjDNEGXlfAkPDTNqjFU0DzoP1TvbIauAthv2Q5InYwKoTX2dodIpGveJX8V5JqAeTl1QCEWB3sJyFQfvgqKA8OxOZvOGVxU%2bnUqzPWWFpgw5R65CDdBYhLzlipQKDPNHZcK5ZTJt4hZb1UGRqp88EcoNW7sQXqx9m7tlFdB2wIhoe8yyPjqBz90CnizrhwmvwpT1dSSD6o%2bWOomkiACpiUD2Z7i0aTiJZGDSNtB2I0UBbS6VA/Q4vOwYVOc4mkR4Q1Gh5GPTFUcjMwF4Z1EWHKVDAEk6KFYx43BlH1KuQ3Wzl8HL7OGFxzz3NBsabIXOQWF7HR68Y1YBbXcsY6kjoOj7p5AzrxyiCjtRJcrRjblbJoSBcVgvjRQ3Rmj0eAYPraH/OdwbiDGiIuMOSG256apqy2ExNaevRbyRuGYy6TxWcLkokI38E8VaJF04Dt3HvbPw0RGf3eUL5mG0Cmi7Yx8CwIzsKRQLoms4TYMwWhTIZYOGhTmvKBbcrK0thKYqhN1mplG8MtyQQsPoaYWLDpusijlG2eDZAT17pQxkBsnTjBQN8QR5fii3ijmUbdmbc%2byFuZQvc9RCpb0zL7ZZ%2bzZ3zyqg7Yj5Sptz%2bJ8EkJgYqhrO/Zc1dhI4WK36RJoVgEm0D9Wzrrw6zG8mtjsxWGwzLOdpjpoqPxRDhfPdc79VTPCHHnNF09Drsvosc/RkqrwqUPQ811S1gW3yzvw%2b6G1qMWAHrQLabtnPGZlZmYYNo1MVz0LIH9FKmJWGggD1L8ZBKz73Jkoc%2bnQIXeIMlYDByPSRDfRoT6PXzt05PTMheHX%2b1qDok4WqrXGU4mNVR6O6DSJa9uTReYAP8zrDzIVc0NEW3pn3%2bJzDL9V5m7tpFdB2yPyXzFr3hzLYI3DPole2pJ5OlCb04TRwJL1G63gYL3sp6XXgrgJH2vyIxU6K%2b8K24p51A2dxm/lBy0gC/86l/k/Dx2QgtDL169jjumZJ8tD3akMe0D9mUVsjYW8cIBylhvLhwU28r7mzHbUKaLtnP6m7AEB5ULGfk6qda0/JWMe8EXKrU5prh9QShZhG1KlsW94XQL2gWntNr0FzSshRoktq9MpqUpg5CmiKG1foCon3RUNQgmTSmqYemNj5EJrTadK5pUb1WBxIg0%2bS25lPxAq6aCA6bjXc3FGrgLZ79mEEiBSObOCuk2EoZckO0SplVyXYaMYmofPmTngdrNLhQWQVdPlHtP1dtvEG5VpN2XWJ3yZOYMqORfBsBMRCgl%2bqmdFd8%2bv0eko8JiqH97TCuVEHozsD4pQrpnHEcwgRKD9SiwG7axXQdsziuDv3c%2bGodX%2biUCuUrpe074CMqOupyudDVKAp5ODKHFZ6YJ0CHR1%2bjijlRuNS51gVgeEl%2bmmN2gSKTbgjwnJvZWPEv2vUijKLykSqRwAyEWWELH8m4%2buKaVqGpkGZpnpnu24V0HbTnk0UDqW6ocatWe5nXPXS9%2bkw6Yf55oDlqodVyL/1cLLspWMAMuaFA03oEOdOTSoZNDttqSKUVU5QOTVHE4utS2KSjeKfQaP70bXvRVOaaPiJb3/iTgrDx8ql2sZIWMp5s0Aojg37X6qdAbttFdB20IjC8Snhk%2bmRd2qQSrT4iBn1/LrPO4UoizBMIkWmPzgpmWbQZHjIyGCW5pYezrQ18dCKXtER7NOcudC6FQCaQmvqMmBv01GxAYmHtrY22wdPm%2bd8IFeEw1AV6hBw8Xn1znbcKqDtrn3AAIeS0TNZr1aZgqvV09UZtEiix5Hihoy0LCLEHBgRNKXtlHz%2bZiNPy8XkXaJsjEiWCf2XOwJC80LMj0WlXif6ZzzgxANbVAuJ23uFX2v7yM/rab6AeLB9pmTb1GLAhbAKaDtqQUHVwGGW6AaAVb%2bOt7WnM/ShEuirnZxTQx12yjCVkZmb3FepkvYSSeJIUYBzYjiSEGNzbiTkbLJ2LZAugdh%2b5b0xr3PG7aVGreOQQscmVji9Z7kMVd54k%2bom%2b2cy0s/F1izOnQXOmq0yQRfAKqDtsFnrPshNTAxWrLMPJUmW1SYYyKiqp72w0jx4tK0JX/5GqboSDsT8lkl5rNOdNBVyZm1aIEeQabmZKKHmaKJ55M/p6QNOVT9Rabmh9JEGQVpMHQacN8tlgoLV3NkFsApou23PBoVWl1Q3QNQ0uA0ol8TmdYwh1j2Rc30Id6KkhBrlShme%2bjSobOau1YZaqTLtvTUbLz6mjcTezbSsDIsbSvS3lNdjwA7nhAGSmtWBPDT/WZ11Spk2AOGNOjPgYlgFtB22WBxwnwifQHUJOJearyNtwYZBKhx2OhkwrAV/hHlKemkgswhia1U6T5uoZhs1/Nma%2bFKcMKU4YgX2ZaTaNg1IMeo1/5nWxI3zj1UsGsGN8mfhdaUd52jOQpy3EMm0fW%2brd3ZBrALa7tsHY9Keaf%2bYglCma6jiAE%2bK4pQ88ni7nGImj5ALBFJNpVdKB4z1zUYASkw02oYDUoYWZYhaqon67oC1Q/EmQ%2boNWeEIY96M5LdXYbITd0KkKnDImzUmxcxgaqvTBbMKaLtvHzbG3GbJHJ8UF5ItFwL4I2pdMzQpf%2bY2DUfCzA9LQKlWkt7wJnlokMWsysa0NZrBG6ehyRBUdS1PnxLMjh5YyJ/5KejIlc2YP2uoVd3nz5CS/iGnWISaEAYuuy/VAcIXxyqg7bj5zgFr3X8DLkBi9FbWodrZw2plU7XTV/4cSjcBTxEH0MUBkJ7ORKaNaxnCqVQUUMUHzeuATXQ0l/TSTFo2DDmTB9kYHvLCAIu0nAALqfuB6Bh%2blTWFmEEI0sWQk0Ug%2bbG/p11V7%2bwCWQW0i2EfEjVaDueEjlG0QhkQDyUm0jF%2b%2bddxSpIuDABBUGLUq3M1UkXl5dtMh5ybUm2eshEKECqs1PK3MQSN%2bUFW1bUyWLgXfglXQMMcAT3LlLkn8XPV/NkFsgpoF8BIu%2bsrwhHjboD01U1IQxOgZDCxRiBFtJUZw1QUAPEAQe8ts%2b2i2pBmdpblytJ4VJ9F6eU0AkQmAZQHLO99BpVZJ54kT7cKfaosDWSK4kIUh/xo5Z5dLKuAdnHsl9n7QtXY7aQSSFOeKMdGHIyYS5PipMm8MEfVT6GEgJ7xycUGJeiY9XCOQF6TvxQlvlP3AvdxosK7MB3dpmqt9yR5alXgwJXeI8bPYahI4Wjaeqp2OvLawuuVqnHBrALaxbFnfcWOVSYcEzQ0rigXiiuAMuYutCJF7lc07gGlsXZMfbDRI%2bIeUI%2bETQgPTaxHqkbygTmSDPJTPimZNqrJoeaMagzMwdSFAcJBQQNlbLuQb9c9zQvAOOEpDRGON1PDzQtpFdAuiPnQqbfuOaNyZBJ%2bEtE278TELHzkYep62lLuZCEVBQx5QGkdR0PRw7bsXrnxsDKqcHNNcrgOk3g9EFnpv3QiPAkQvTivqGFCpRbB9bEhnfNnliqjvVL2taoYQA34VffsAloFtItlH/JfdD942FGzdgi5egq3lKRQoHh4RVuX5lPGyqAP62iyFFUcdZM4DroF8mT92brUEw8N1SJI/hMYXxEIo/DSjd/IEeNfBqRA6mX1/7dt5LA1Iq8dd87UlLbqnl1Y6x72E3DBzHPSfhaISQ9Ajds%2bHPRf/rZVxYD45fdeTfjyNw20Xs2ijV7MweU9eOLxx6FpDRzM5zCfz2A66ejWwHQygfV6BR01eXvwCH2fJgKGp1Us9mbQdq0KB214eHj7hFR0Ab72p9fg6PAkgaLWdlMqu8wb8/tomFvG94Aia%2bRD6TX1dvJMUqca6jF6mTer7tnFtApoF8h82DmddM%2b1bfNOUeBAlppuY3VQ/cmffPJJuLS/D3uLaQgFPfgc3b4FaC0sj0/gK19%2bCaazDmYEZJNJA4vZBOaTuKybNNA1LbQtj5yLHZr%2buQe01nNmW0OJecrDoaN8HFAezEl%2b7Mknnwh5MdNNwK57uHW0hMPjY3jhhT%2bhfFn0DVfLdRSnXK1h6ekmq8g5C%2b/DnLMw0amP4WcfPc%2bepqevLf7Kw36tXFSrgHbBbN3bD3dd%2b85EcI0eymNvugqPXb0K3aSF1fIEbl2/Di%2b9%2bBIsZlOYTidwsJjCYjGF/ekM9g%2bmsDefwLybwHTawmw2ga5rYT7tYD5pYNJ1sD%2bbQDsxMG3byMr3gDhpAjB2bZzA3rQR0Lxb1nvQ8hSLUGCI99g7WFoA66c2oYXD61%2bH476H42UfQOvwpIfDkzjN6vKVy9B0swCUh0cn8Opr1%2bHLf/KSTIEPVUykXk0aT8dSQU4XA2I3QfXOLqgZxLPkPKrtihljvm0y6T6zt7cPb3nz4%2bHre/36dbDrNcw9SM2nsDeZwN5iAovFDC4t5hG89iawP53Cwd4cLntg25/CtJ0ED21vNoHZtIPptIF528F0NoGFfz4xMGkbmERRsjDwKXhm3kNr26CC4UGNebrBS/Ke2trB0ifvPYkXMeTsvAfm75crB0frJRwdr%2bFw1cPR0RqOl2s4Wq3h8HgNt4%2bP4fDI3/t1VvDYm98EDXRweHwEL774Cty4fSvkCNekiRb329O4Pwtt297q%2b/5yvaAvplUP7QLZM888843vete7vvfLX/4yXrt2zRwe3oLFNILRfDaFhQ8ZO4D9hYG9eQN7EwPziYNHL82Ch%2bZzX5dmPmfWhNv%2brINLe/MAZLPpBBazLoacIQxtYTZpYNZ20E7a2EhOgNa11BvV0jwAUlp0wROLebBVHykhEXRi6Ombzo9OVnCybOBw3sHRsoejeQeHJw0cLRu4YRCmzQQmDULXIExbgBvXvg4nJyu4cXQCJ8sVXH30Ksz29uDk%2bASe/%2bIL2Th3n%2buz1v7Gw36dXGSrgHYB7Du%2b4zv%2bwssvv/yhF1988e3L5YnxIZ8HHw9QCx8yLiawF/JfTQCyy/szONjzXtYUDhYzWEwd7E8gLDvYm8LBfgd78ylc3pvA5YMOZj7EnM9gNu9gb%2bJBroPJbBbBaj5hJUiATjV5enetVU3qa4DGOZiGWZoOFjbI6wK4qZ9FFxj/y6WD26sWDo9XcHzSws2THpYnDdw%2baeF4tQxgfPOoCcA892DWWWiwiYoc2MLMdHD71nX4%2bp9%2bLXh1Pux84m1PhpDzpZdegeXyxOfharh5ga0C2g6b98hefPHFX3/%2b%2beefahoDDGQhDGwbmHZNzHvNWtibTmBvL%2bbK9mcNHExbuOSBa9HC5T0PXjPYX3RwaX8Kl/YmcOlgCpcXswBs%2b8Ez6%2bDSwQSgmwLsdQCLGcB0CjBnT6wFmDCgtXRvEjHIKZauT5x5x8mP0ltHbaBuvYZuhbB/MgF3NIVbxydweNwHADs8OYGbRwizBmHWQQCz2QRhNjMBqG8emZDbO5w10HYIk87BJIS9CF//2itwsopFhCeeeBIee%2byxv1QpGxfXag5tR%2b3bv/3bf/L3fu/3fpA9sknXJCCbJEBbzCchTNzzoDafhBBy3997oPIemPfW5hO4%2bugBXNmfw8HeDB45mAdv6E1XL8PBvIPOx3Z70%2biNLTygTQDmU4D9aQQv%2bV1s1E2rNPI11tN9QDduM4%2bLVzYC3fEK4NbKz9gDODyB24druHG0hFtHK7h5uAqVz1ev34abR2u4eXgCNw5XcO3GIRwdL%2bHW8RqOTtahkHDr6BiOjy3cXi1hedLD0aqPg2R6B91kik899dT/efTRR3/kYx/72Mcf9mvpIln10HbQ3v3ud3/wM5/5zPf4kNLnsiZdC5PWBFqFrzrOQiWyhZnPfXUGDgKYdXCw18L%2b3OfIDDx2eQp7iw4uLzp4ZH8ClxYNXN0z8Mg%2bwKP7AFcuzWC6jwBzALiyANibQ0C5gxlA50FqTpfPhE4gycvGOFN6AuJj7pPSwIZ0b%2bNuOguwZwEutQCXO4DbLcBhAwe3lnBw3MLRDQPXO4Rr3jNrFjBtMRQtDPTQNdPgnXkg9x7cpPOH6KDr1tAdIxx1BroTE3N169DTav7oDz//zLq3H3v66aeff%2bKJJ767AtvFsApoO2beM2MwmwYw8yAWv8xTD2xdXO6Bbu49tFkLi5kJ995Lu%2bRvPvScGdifNqEI8MisgcszC1dmDq4uGnjTAQJcMhFYDqYAl1uAgwZCHBcAbEpANaXnnbpBAWhtGr0ORgGZAjTx1k7iLvx7HXgGrgE48MC2gr1pD3tTB/MJwqLrYdLMgsM4byy8NgG41fmihIPOuFA0mICDSYdw26fyAvj5DgoLy87BirohVn0Df/LlF5764z/%2b4sfe8Y53fPSxxx77ro9%2b9KNfetivsV22Cmg7ZD5n5sNMD2YeyDoKMTnc9EAWvZQmVSE91WLiqRcd7E%2b7CGxTD3oQvLPHL3dwZb%2bFKwdTePzSBC55D%2bnSBOBKB3CpA3h0ArDPYeWM7lt6vKD7ibqUPGjtFd6aCi9hpUJOq0DNFeI%2bCOA9xH0DcNgCTFcArYWrXQ/7kw7mMIVF52AxmQWPbNbGSurEUP6scWCOY/%2bp74A46bzSSAPTMAzGwKp10PXssTn4wz/43DOLvYMvvOc97/knv/mbv1lFH3fUKqDtkN26deufn5ycGA9gbeNZ%2brHdiHNoni7h82ZyC%2bDWwWzaBoqDB735xMBi4r2yFi55aoYPRbsGrsxMqF4GALk6i6B2dQqwmBBgaU%2bMwcx7aJ7StU8gdomAq6PXgECNQ059fwwAS7rxYwbAToWzS4D9mwDzWRzz1PUw6ybwDWBh6tu1sIXGdqHg4Fyknvi2KnAdEWkdNDChc%2bSgbfpw3pZrB11jYdXY2KrVGFidHHb/99O/9bPvfve73/Hbv/3bf%2bthv9520Sqg7ZCtVqunm8ZIL6N/3PoeyvCFjAAX%2bWAR3HyfpQ9BJ96ja3xlMAJeALnOwN4UYa9xcHkW8/swt7FyOVkD7DUA017lyGYq3PS3q3TrCMz2FYhNz3BSH4khZqwIEKC9BgA3PHQTuPFMgxlA2wM86nup5gDGV0mn8Gb0jVwOJqTWa8KYqhX0fQvOtlE%2bqW9Dd4A/F%2b26D%2bfruO3DD4G/Nat4Hg2dO89V%2b3%2b/%2b9z3fMu3fMuf%2b/znP/%2buh/2a2zWrgLZD1rbta3y0LPPDMj5SUwxfzvh6eAxxIlPTNkGWpw3Txl1QgHXUqO5aDx9xVia0lLgPhUoOCV0kkoXLxZJXNqfX5gR0MwV%2bZ7U5ref3eUSfYk6A%2bArtzxG4megUhtRbG2WKVgau9gb6tYHVGqBft7Bed7CeO%2bpfdeC8h9msZQSeMT0Y00EDVs5hY2x%2bLg3A81/4o2/z%2bcpPf/rT/%2bxhv%2b52yap80A7Z5cuXf4bFD0WZtpxNwnLZyGPrSBiR1GB7Um71IZdv7Pbyr/3KD09ZA9w8TrfeizU68qLWBF5rAh2%2bb1Re7E7BTFtL4SqD2SUKaZf0viq3NvOVV%2b%2bJ9QBt1BI/mEPoHJi3Nnihe52JucNwox7UacwxzruoFhKrw0Yqwpr20rXRw/3s7//%2bD/q85UN1ke24VQ9th8xTCzzN4Esv/PFTceo5hl5IL2DYOQO9M9D5HkmvOtFE5Ym%2bMaF/ctlb6EJ41YI59hI8PbRHJiTMPQXMe2q%2bunngY1O/4ks3AVZzgEdnAPPbBCwLynet6aTtEwjtqdBz73WcUEdh5hHdTmg/HiwP6T1tBLijdcS24Lz14XOuVxja473uWetvHqRWMbyetDaE3H3rqS0I1lM4bAO2RZjYNmwf8pDWgPPr%2bdfRgG0aWPcr4/OWAFDzaTtiFdB2zN72trf95Rs3bnzu5o3XFo2Jcyl9XmhtXMij%2bYodixt6GoMPq9q1DctCJbTv4WSJMPVf3GMI26JdhnFv65WDqysHV1ZraI/XACdLgJtzgEeOAd66R0DmPajrBDTf4ElqBEaWAG%2bf/EUGu/aUE%2bxoXysFZh7AngeA2/ScQtLVEuD2McAKAa6vAhl3tYwV1J701RywZBKIugbnHEOuMYTuBkxvwhi8kIck/TbfWdBaAz2H69Y3M6yeftivuV2yCmg7Zp4n9cwzz3zrZz/72c/duvGaRxCVT4u5oJhH6ME08c/bcD8lhZ%2b9wzCF3PdOHi8t3Jq3cNS3cP14CreWXofME3FXcOV4AdMbPcD1FuC1JcClGwCPHlAF4ZjyXJfo9hKBmKZyzAgAl6ry6ejGubklAeWKwMuD2DUCN86trQBuLAFuLSOQLfvQB%2bqWcejLzcN1UNg4Wdug7BEGqoRZnTwRnsPvpLq7zTgfedpwqmrnzyqg7aAxqH3hC1/4na//6Ve9i0QS1JxXa4KQI2IPdtJSG2UTQlEXuowaWK4RTtYIK%2bwCg/5waWF/buHm7RXcuDSBKwsbWoguLTrYO%2big627D9KADmN4EeLQDeGQaw9FLrypPbE6ANqfbjG49eWGPEFxosu1KAdosdW2UAAAGJklEQVTX4nJ3CNCQR7g%2bBji0AK8eAbx0AtbLCd1awbGXGTrqQ3vTjWMPwmu4sezh9nG8%2bdfD5wtzRzGq2PpwnMbfWVK3jfMFIuQ5i6Jqy/nJxWLxyYf9etslq72cO27vfOc7f%2bX5L/zRX0G3NkKuDcTahpRm4%2bM5dw9MW3nuG7o5aR56PacN7E/b0LC%2bN/E8tRYOPKBNGziYtLBYdLC/14Lx280bmC06mPhO8UUT26I8u3VGHQW%2bPco3rYf7Jo1bD1rZQFOEqWrhkcZjXr%2bO7pNXf7y9BjjuAU56cCuE9fEaTk4sLI/iQOTbN9Zw7L2zlYXbJxZuL%2bPt6LiHw5WNgLf0g5P7MDz5xBNqw/R4F577gojPK67Ccxc8vVUfSbZLUsC9/Mijxy%2b/8rXXkxSs9oCsemg7bs8999x3surGV778wlOhUGAb6J1PaiPMen/fhqbsZZjLGYFtOXVwMonM%2bfnKwtGyDVJDN7sG9k5amHW%2b77OFxWQNi2kDe9P43LdLebDzSrbTeRv4bF4vbeKf%2b/tZE6S5A5h5cOtIdYOlhSSg4/gXI6j5%2b6UL4NZ7wcclRmltnyfzgNMjrE6i3PbR2sLhCgNgHS6jN3a8dnB4EkHqKNw7OA5AFsFstQHM/LK1l%2bjuoxfnw1V/Dttuim9/6s/8jYf9%2bto1qx7aBTKvi/bKKy9/6CtfeuGpCXULcMN6pCgkj80vCwq0XewBDd0EnYlKtF1sevctVAt/PzXRo5t60DPJuws0iCjd49cPbPyJCYAWKoe%2bv7KN09JN6GoYnmsbmCMx5OtXMSz0IaKX5V6vMVJMvJfVY7gFkPJg5UHLInlfFpYrhON1BDIPWAG4gseFweM66fvweBVCUS8qiQRoyTPr6X6%2b2O%2b/%2bVv/7F//%2bMc/8Z8f9mtq16wC2gU077Fdu3bt5195%2bcX3Hh/d7nQoyo8nnREuVgA0aZmKwCZ9oZPohXVtG9qmZm0LnW%2bf6iIg%2bu6EWRt5XxPqMfX3Hd3HgSmxwthSlt13MgANBfZemqVZm5ErB6Fg4cHF30fPku49CHnPyoNUHwEveFu0PHhbpHzrPbJVAMEIZGuaHL%2bi3k3/uvfKeBmr5n7T25/%2bnTe96c1/tTap76ZVQLvg9p73vOcfvnrt2vd%2b7asvvd32Mc82mWjtNAa1hpQ74vOuTT2hXpqI15t4QAs9oxHkpm0Erym1EoV2qyZSIvzyhqqsTQMCaKr9XAjBOkkfaqChUhk9NH9ve59awwBEnlfnCcIeqLw350EtgCCBWAC13hGIRSDzHtm6T%2bElL2Ov7PE3v%2bX6W59824998pO1MX2XrQLaQ2Qe3G7euPFdN66/%2bs2exxZY8QRYLfd9ekCbxGWh4b1JTe8dAxo1xU%2bIUe9voae0bYInxs8Dl8sQ34umrjcjvSmeM4ZEq6DxA6HKGCc3UQjqIlF4zY8d57zo3jkBqABcNJszAhvSZHUUkUf/us%2bTvfmtT3zxsTc9/sM1vLwYVgHtITWfbzs6Ovzuw9u3/uJrr177xuOjw66jULEjOW8PYPFxSwAWSagMhAG0eDkDGpNYW5p13sR5nYZIrZu4XXwZBjIHjd7z/Zjsufn70AHhp7zb%2bNyDVxgs7CJYeUAMgBe8MRuAsKfZn5aAz4PcE2/7hleuXLn6a4u9/X9RQ8uLZRXQqgXzebfj46O/uzw5%2bfO3bl5/543r1x/p%2b5WJ3liSKmppQnpLQMehZAAwPT09DB6mRnnyzgwB2yZDl4ivjntWXcy1eY5d4NHRVHUPXIFDZuPszZ4mpYcw1UUAC72rDuHxt7zl%2bmJx8ML%2bwcH//NSnfqs2m19gq4BWbaN5kFsul9%2b5PDl5Zr1efdPR0e1vOj48PDg6ut1xSNlm4SWI15aBmImVTl6HTT%2bWJnv21Bw34buwzFI7UyTBDsmxPpT0YOfBa3/v4IXJdPrCdDb/aM2JPVxWAa3a67L3vve9f81a%2b4Tt1%2b9YrVdPe/C6ceP6Ow31kV5/7bVHVqulyYHNpLaiEU9NPDR%2bTmx99tbe/Ja3XkdqZXrk8pXn/OrzxeKTxpivTqezX6nhY7UKaNXui7G3x%2b91Wi6tbduXP/GJmqivdgcGAP8fzzchVv1ccdkAAAAASUVORK5CYII='/%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='254' height='254' viewBox='0 0 254 254' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M127 0.29126C57.0325 0.29126 0.292969 57.0308 0.292969 126.998C0.292969 196.966 57.0325 253.705 127 253.705C196.968 253.705 253.707 196.981 253.707 126.998C253.707 57.0161 196.982 0.29126 127 0.29126ZM127 250.749C58.6583 250.749 3.24892 195.355 3.24892 126.998C3.24892 58.6418 58.6583 3.24722 127 3.24722C195.342 3.24722 250.751 58.6566 250.751 126.998C250.751 195.34 195.357 250.749 127 250.749Z' fill='url(%23paint0_linear_4318_346)'/%3e%3cdefs%3e%3clinearGradient id='paint0_linear_4318_346' x1='67.5262' y1='229.999' x2='184.789' y2='26.8949' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFB915'/%3e%3cstop offset='0.24' stop-color='%23BF8500'/%3e%3cstop offset='0.41' stop-color='%23FFE26A'/%3e%3cstop offset='0.46' stop-color='%23FFDD63'/%3e%3cstop offset='0.53' stop-color='%23FFCF51'/%3e%3cstop offset='0.58' stop-color='%23FFC13F'/%3e%3cstop offset='0.82' stop-color='%23FFB915'/%3e%3cstop offset='1' stop-color='%23FFF100'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='256' height='256' viewBox='0 0 256 256' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M128 0C57.3186 0 0 57.3186 0 128C0 198.681 57.3186 256 128 256C198.681 256 256 198.696 256 128C256 57.3036 198.696 0 128 0ZM128 253.014C58.9609 253.014 2.98612 197.054 2.98612 128C2.98612 58.946 58.9609 2.98612 128 2.98612C197.039 2.98612 253.014 58.9609 253.014 128C253.014 197.039 197.054 253.014 128 253.014Z' fill='url(%23paint0_linear_4318_393)'/%3e%3cdefs%3e%3clinearGradient id='paint0_linear_4318_393' x1='182' y1='4.5' x2='77.5' y2='256' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.00312487' stop-color='%23454545'/%3e%3cstop offset='0.310417'/%3e%3cstop offset='0.628125' stop-color='%23575757'/%3e%3cstop offset='1'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='42' height='46' viewBox='0 0 42 46' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_4318_419)'%3e%3cpath d='M21 38.0002L8.00962 8.00025L33.9904 8.00025L21 38.0002Z' fill='url(%23paint0_linear_4318_419)'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_4318_419' x='0.00976562' y='0.000244141' width='41.9805' height='46' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='4'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_4318_419'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_4318_419' result='shape'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_4318_419' x1='27.7905' y1='-3.26818' x2='6.23495' y2='34.4541' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.0604165' stop-color='%23FFB915'/%3e%3cstop offset='0.2375' stop-color='%23C48A02'/%3e%3cstop offset='0.477083' stop-color='%23FFE067'/%3e%3cstop offset='0.721875' stop-color='%23FFB915'/%3e%3cstop offset='1' stop-color='%23FFF100'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='375' height='448' viewBox='0 0 375 448' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_f_4318_428)'%3e%3cpath d='M316.736 130.359C368.446 202.009 352.29 302.026 280.641 353.736C208.991 405.446 108.965 389.278 57.255 317.628C5.54512 245.979 20.8168 151.771 87.2449 98.8859C89.2446 97.3096 91.2838 95.7618 93.3591 94.264C95.4345 92.7662 97.5369 91.3059 99.6719 89.9172C170.779 43.5421 266.511 60.794 316.723 130.368L316.736 130.359Z' fill='url(%23paint0_linear_4318_428)' fill-opacity='0.6'/%3e%3c/g%3e%3cpath d='M347 223.992C347 312.353 275.368 384 187.008 384C98.6473 384 27 312.353 27 223.992C27 135.632 94.5153 68.1783 179.33 64.1696C181.874 64.0617 184.433 64 186.992 64C189.552 64 192.111 64.0463 194.655 64.1696C279.454 68.1783 346.985 138.191 346.985 223.992H347Z' fill='url(%23paint1_linear_4318_428)'/%3e%3cdefs%3e%3cfilter id='filter0_f_4318_428' x='-23.6641' y='13.991' width='420.672' height='420.013' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='25' result='effect1_foregroundBlur_4318_428'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_4318_428' x1='211.555' y1='72.0877' x2='159.674' y2='392.99' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FEDC31'/%3e%3cstop offset='0.09' stop-color='%23FDC347'/%3e%3cstop offset='0.27' stop-color='%23FC8682'/%3e%3cstop offset='0.52' stop-color='%23FA2CD7'/%3e%3cstop offset='0.76' stop-color='%23987CDB'/%3e%3cstop offset='1' stop-color='%2333D0E0'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_4318_428' x1='295.812' y1='115.188' x2='65.9458' y2='345.039' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FEDC31'/%3e%3cstop offset='0.09' stop-color='%23FDC347'/%3e%3cstop offset='0.27' stop-color='%23FC8682'/%3e%3cstop offset='0.52' stop-color='%23FA2CD7'/%3e%3cstop offset='0.76' stop-color='%23987CDB'/%3e%3cstop offset='1' stop-color='%2333D0E0'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='316' height='316' viewBox='0 0 316 316' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M157.992 315.518C244.991 315.518 315.518 244.991 315.518 157.992C315.518 70.9933 244.991 0.466797 157.992 0.466797C70.9933 0.466797 0.466797 70.9933 0.466797 157.992C0.466797 244.991 70.9933 315.518 157.992 315.518Z' fill='url(%23paint0_linear_4318_432)'/%3e%3cpath d='M157.992 293.809C233.002 293.809 293.809 233.002 293.809 157.992C293.809 82.9826 233.002 22.1753 157.992 22.1753C82.9826 22.1753 22.1753 82.9826 22.1753 157.992C22.1753 233.002 82.9826 293.809 157.992 293.809Z' fill='url(%23paint1_linear_4318_432)'/%3e%3cdefs%3e%3clinearGradient id='paint0_linear_4318_432' x1='265.132' y1='50.8681' x2='38.8113' y2='277.173' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23000604'/%3e%3cstop offset='0.4' stop-color='%23303030'/%3e%3cstop offset='1' stop-color='%23000604'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_4318_432' x1='67.8587' y1='67.8587' x2='245.597' y2='245.597' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FEDC31'/%3e%3cstop offset='0.09' stop-color='%23FDC347'/%3e%3cstop offset='0.27' stop-color='%23FC8682'/%3e%3cstop offset='0.52' stop-color='%23FA2CD7'/%3e%3cstop offset='0.76' stop-color='%23987CDB'/%3e%3cstop offset='1' stop-color='%2333D0E0'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='48' height='63' viewBox='0 0 48 63' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_4318_464)'%3e%3cpath d='M24 55L8 29.0689L18.6577 29.0689L16.35 8L24 8L31.65 8L29.3423 29.0689L40 29.0689L24 55Z' fill='url(%23paint0_linear_4318_464)'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_4318_464' x='0' y='0' width='48' height='63' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='4'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_4318_464'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_4318_464' result='shape'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_4318_464' x1='23.9916' y1='8.77629' x2='23.9916' y2='47.4768' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FEDC31'/%3e%3cstop offset='0.09' stop-color='%23FDC347'/%3e%3cstop offset='0.27' stop-color='%23FC8682'/%3e%3cstop offset='0.52' stop-color='%23FA2CD7'/%3e%3cstop offset='0.76' stop-color='%23987CDB'/%3e%3cstop offset='1' stop-color='%2333D0E0'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='460' height='488' viewBox='0 0 460 488' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_f_1499_5517)'%3e%3cpath d='M435.467 271.947C435.467 159.867 344.679 69 232.674 69C176.014 69 124.796 92.2638 88 129.745C124.002 97.0716 171.778 77.1634 224.203 77.1634C336.208 77.1634 426.996 168.031 426.996 280.111C426.996 335.498 404.819 385.696 368.876 422.313C409.78 385.185 435.467 331.574 435.467 271.947Z' fill='url(%23paint0_linear_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cg filter='url(%23filter1_f_1499_5517)'%3e%3cpath d='M363.683 137.249C291.999 61.8647 172.818 58.8146 97.4846 130.451C59.3758 166.689 39.806 215.094 39.0295 263.837C42.3468 218.836 61.7482 174.889 97.0082 141.359C172.342 69.7231 291.522 72.7732 363.207 148.157C398.631 185.411 415.82 233.357 415.065 280.974C418.83 229.841 401.819 177.353 363.683 137.249Z' fill='url(%23paint1_linear_1499_5517)' fill-opacity='0.8'/%3e%3c/g%3e%3cg filter='url(%23filter2_f_1499_5517)'%3e%3cpath d='M26.471 267.202C26.471 211.815 48.6485 161.618 84.5914 125C43.6875 162.138 18 215.749 18 275.366C18 387.456 108.798 478.313 220.794 478.313C277.453 478.313 328.672 455.049 365.467 417.568C329.466 450.242 281.689 470.16 229.265 470.16C117.26 470.16 26.471 379.292 26.471 267.212V267.202Z' fill='url(%23paint2_linear_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cg filter='url(%23filter3_f_1499_5517)'%3e%3ccircle cx='219' cy='282.994' r='200.5' stroke='url(%23paint3_radial_1499_5517)' stroke-opacity='0.88'/%3e%3c/g%3e%3cg filter='url(%23filter4_f_1499_5517)'%3e%3ccircle cx='214.5' cy='267.5' r='196' stroke='url(%23paint4_radial_1499_5517)' stroke-opacity='0.88'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter5_f_1499_5517)'%3e%3ccircle cx='41.5' cy='140.5' r='6.5' fill='url(%23paint5_linear_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter6_f_1499_5517)'%3e%3ccircle cx='356.78' cy='132.78' r='6.5' transform='rotate(-92.5281 356.78 132.78)' fill='url(%23paint6_linear_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter7_f_1499_5517)'%3e%3ccircle cx='92.5' cy='404.5' r='6.5' fill='url(%23paint7_linear_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter8_f_1499_5517)'%3e%3ccircle cx='379.348' cy='390.687' r='6.5' transform='rotate(-77.4712 379.348 390.687)' fill='url(%23paint8_linear_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter9_f_1499_5517)'%3e%3ccircle cx='428.5' cy='366.5' r='6.5' fill='url(%23paint9_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter10_f_1499_5517)'%3e%3ccircle cx='91.5' cy='428.5' r='6.5' fill='url(%23paint10_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter11_f_1499_5517)'%3e%3ccircle cx='360.755' cy='425.755' r='6.5' transform='rotate(-77.4712 360.755 425.755)' fill='url(%23paint11_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter12_f_1499_5517)'%3e%3ccircle cx='62.5' cy='440.5' r='6.5' fill='url(%23paint12_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter13_f_1499_5517)'%3e%3ccircle cx='35.5' cy='250.5' r='6.5' fill='url(%23paint13_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter14_f_1499_5517)'%3e%3ccircle cx='24.5' cy='199.5' r='6.5' fill='url(%23paint14_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter15_f_1499_5517)'%3e%3ccircle cx='87.5' cy='138.5' r='6.5' fill='url(%23paint15_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter16_f_1499_5517)'%3e%3ccircle cx='339.78' cy='111.78' r='6.5' transform='rotate(-92.5281 339.78 111.78)' fill='url(%23paint16_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter17_f_1499_5517)'%3e%3ccircle cx='52' cy='163' r='4' fill='url(%23paint17_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter18_f_1499_5517)'%3e%3ccircle cx='299.172' cy='92.1727' r='4' transform='rotate(-92.5281 299.172 92.1727)' fill='url(%23paint18_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter19_f_1499_5517)'%3e%3ccircle cx='73' cy='143' r='4' fill='url(%23paint19_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter20_f_1499_5517)'%3e%3ccircle cx='373.172' cy='125.173' r='4' transform='rotate(-92.5281 373.172 125.173)' fill='url(%23paint20_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter21_f_1499_5517)'%3e%3ccircle cx='60' cy='134' r='4' fill='url(%23paint21_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter22_f_1499_5517)'%3e%3ccircle cx='341.172' cy='96.1727' r='4' transform='rotate(-92.5281 341.172 96.1727)' fill='url(%23paint22_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter23_f_1499_5517)'%3e%3ccircle cx='69' cy='155' r='4' fill='url(%23paint23_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter24_f_1499_5517)'%3e%3ccircle cx='373.172' cy='105.173' r='4' transform='rotate(-92.5281 373.172 105.173)' fill='url(%23paint24_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter25_f_1499_5517)'%3e%3ccircle cx='73' cy='398' r='4' fill='url(%23paint25_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter26_f_1499_5517)'%3e%3ccircle cx='368.772' cy='408.312' r='4' transform='rotate(-77.4712 368.772 408.312)' fill='url(%23paint26_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter27_f_1499_5517)'%3e%3ccircle cx='63' cy='371' r='4' fill='url(%23paint27_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter28_f_1499_5517)'%3e%3ccircle cx='85' cy='407' r='4' fill='url(%23paint28_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter29_f_1499_5517)'%3e%3ccircle cx='380.161' cy='398.55' r='4' transform='rotate(-77.4712 380.161 398.55)' fill='url(%23paint29_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter30_f_1499_5517)'%3e%3ccircle cx='95' cy='425' r='4' fill='url(%23paint30_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter31_f_1499_5517)'%3e%3ccircle cx='395.772' cy='385.773' r='4' transform='rotate(-77.4712 395.772 385.773)' fill='url(%23paint31_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter32_f_1499_5517)'%3e%3ccircle cx='77' cy='422' r='4' fill='url(%23paint32_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter33_f_1499_5517)'%3e%3ccircle cx='387.772' cy='417.773' r='4' transform='rotate(-77.4712 387.772 417.773)' fill='url(%23paint33_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter34_f_1499_5517)'%3e%3ccircle cx='85' cy='447' r='4' fill='url(%23paint34_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter35_f_1499_5517)'%3e%3ccircle cx='115' cy='437' r='4' fill='url(%23paint35_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter36_f_1499_5517)'%3e%3ccircle cx='415.955' cy='375.773' r='4' transform='rotate(-77.4712 415.955 375.773)' fill='url(%23paint36_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter37_f_1499_5517)'%3e%3ccircle cx='46' cy='109' r='4' fill='url(%23paint37_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter38_f_1499_5517)'%3e%3ccircle cx='101' cy='121' r='4' fill='url(%23paint38_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter39_f_1499_5517)'%3e%3ccircle cx='319.939' cy='104.096' r='4' transform='rotate(-92.5281 319.939 104.096)' fill='url(%23paint39_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter40_f_1499_5517)'%3e%3ccircle cx='46' cy='197' r='4' fill='url(%23paint40_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter41_f_1499_5517)'%3e%3ccircle cx='398.29' cy='155.69' r='4' transform='rotate(-92.5281 398.29 155.69)' fill='url(%23paint41_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter42_f_1499_5517)'%3e%3ccircle cx='129' cy='78' r='4' fill='url(%23paint42_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter43_f_1499_5517)'%3e%3ccircle cx='116.5' cy='94.5' r='6.5' fill='url(%23paint43_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter44_f_1499_5517)'%3e%3ccircle cx='316.78' cy='89.7802' r='6.5' transform='rotate(-92.5281 316.78 89.7802)' fill='url(%23paint44_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter45_f_1499_5517)'%3e%3ccircle cx='158.5' cy='88.5' r='6.5' fill='url(%23paint45_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter46_f_1499_5517)'%3e%3ccircle cx='164.5' cy='57.5' r='6.5' fill='url(%23paint46_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter47_f_1499_5517)'%3e%3ccircle cx='331.5' cy='75.5' r='6.5' fill='url(%23paint47_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter48_f_1499_5517)'%3e%3ccircle cx='355.5' cy='108.5' r='6.5' fill='url(%23paint48_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter49_f_1499_5517)'%3e%3ccircle cx='81.5' cy='104.5' r='6.5' fill='url(%23paint49_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter50_f_1499_5517)'%3e%3ccircle cx='114.5' cy='457.5' r='6.5' fill='url(%23paint50_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter51_f_1499_5517)'%3e%3ccircle cx='55.5' cy='408.5' r='6.5' fill='url(%23paint51_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter52_f_1499_5517)'%3e%3ccircle cx='407.5' cy='166.5' r='6.5' fill='url(%23paint52_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter53_f_1499_5517)'%3e%3ccircle cx='400.5' cy='406.5' r='6.5' fill='url(%23paint53_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter54_f_1499_5517)'%3e%3ccircle cx='407.5' cy='368.5' r='6.5' fill='url(%23paint54_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter55_f_1499_5517)'%3e%3ccircle cx='422.5' cy='318.5' r='6.5' fill='url(%23paint55_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter56_f_1499_5517)'%3e%3ccircle cx='422.5' cy='213.5' r='6.5' fill='url(%23paint56_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter57_f_1499_5517)'%3e%3ccircle cx='18' cy='164' r='5' fill='url(%23paint57_radial_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter58_f_1499_5517)'%3e%3ccircle cx='408' cy='337' r='12' fill='url(%23paint58_radial_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter59_f_1499_5517)'%3e%3ccircle cx='61' cy='182' r='14' fill='url(%23paint59_radial_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter60_f_1499_5517)'%3e%3ccircle cx='67' cy='358' r='19' fill='url(%23paint60_radial_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_f_1499_5517' x='79' y='60' width='365.467' height='371.313' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='4.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter1_f_1499_5517' x='30.0294' y='69.6553' width='394.547' height='220.319' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='4.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter2_f_1499_5517' x='9' y='116' width='365.467' height='371.313' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='4.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter3_f_1499_5517' x='14' y='77.9937' width='410' height='410' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter4_f_1499_5517' x='14' y='67' width='401' height='401' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter5_f_1499_5517' x='29' y='128' width='25' height='25' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='3' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter6_f_1499_5517' x='344.28' y='120.28' width='25.0002' height='25' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='3' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter7_f_1499_5517' x='80' y='392' width='25' height='25' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='3' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter8_f_1499_5517' x='366.847' y='378.186' width='25.0027' height='25.0029' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='3' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter9_f_1499_5517' x='417' y='355' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter10_f_1499_5517' x='80' y='417' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter11_f_1499_5517' x='349.254' y='414.254' width='23.0027' height='23.0029' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter12_f_1499_5517' x='51' y='429' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter13_f_1499_5517' x='24' y='239' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter14_f_1499_5517' x='13' y='188' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter15_f_1499_5517' x='76' y='127' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter16_f_1499_5517' x='328.28' y='100.28' width='23.0002' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter17_f_1499_5517' x='46' y='157' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter18_f_1499_5517' x='293.172' y='86.1724' width='12.0002' height='12.0005' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter19_f_1499_5517' x='67' y='137' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter20_f_1499_5517' x='367.172' y='119.172' width='12.0002' height='12.0005' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter21_f_1499_5517' x='54' y='128' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter22_f_1499_5517' x='335.172' y='90.1724' width='12.0002' height='12.0005' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter23_f_1499_5517' x='63' y='149' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter24_f_1499_5517' x='367.172' y='99.1724' width='12.0002' height='12.0005' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter25_f_1499_5517' x='67' y='392' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter26_f_1499_5517' x='362.772' y='402.311' width='12.0017' height='12.002' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter27_f_1499_5517' x='57' y='365' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter28_f_1499_5517' x='79' y='401' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter29_f_1499_5517' x='374.161' y='392.549' width='12.0017' height='12.002' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter30_f_1499_5517' x='89' y='419' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter31_f_1499_5517' x='389.772' y='379.771' width='12.0017' height='12.002' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter32_f_1499_5517' x='71' y='416' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter33_f_1499_5517' x='381.772' y='411.771' width='12.0017' height='12.002' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter34_f_1499_5517' x='79' y='441' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter35_f_1499_5517' x='109' y='431' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter36_f_1499_5517' x='409.954' y='369.771' width='12.0017' height='12.002' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter37_f_1499_5517' x='40' y='103' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter38_f_1499_5517' x='95' y='115' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter39_f_1499_5517' x='313.938' y='98.0957' width='12.0002' height='12.0005' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter40_f_1499_5517' x='40' y='191' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter41_f_1499_5517' x='392.29' y='149.69' width='12.0002' height='12.0005' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter42_f_1499_5517' x='123' y='72' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter43_f_1499_5517' x='105' y='83' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter44_f_1499_5517' x='305.28' y='78.2803' width='23.0002' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter45_f_1499_5517' x='147' y='77' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter46_f_1499_5517' x='153' y='46' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter47_f_1499_5517' x='320' y='64' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter48_f_1499_5517' x='344' y='97' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter49_f_1499_5517' x='70' y='93' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter50_f_1499_5517' x='103' y='446' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter51_f_1499_5517' x='44' y='397' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter52_f_1499_5517' x='396' y='155' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter53_f_1499_5517' x='389' y='395' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter54_f_1499_5517' x='396' y='357' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter55_f_1499_5517' x='411' y='307' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter56_f_1499_5517' x='411' y='202' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter57_f_1499_5517' x='10' y='156' width='16' height='16' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter58_f_1499_5517' x='393' y='322' width='30' height='30' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter59_f_1499_5517' x='44' y='165' width='34' height='34' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter60_f_1499_5517' x='45' y='336' width='44' height='44' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_1499_5517' x1='261.734' y1='69' x2='261.734' y2='422.313' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFA933'/%3e%3cstop offset='1' stop-color='%23FFE871' stop-opacity='0.88'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_1499_5517' x1='117.03' y1='111.865' x2='343.002' y2='349.5' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFA933'/%3e%3cstop offset='1' stop-color='%23FFE871' stop-opacity='0.88'/%3e%3c/linearGradient%3e%3clinearGradient id='paint2_linear_1499_5517' x1='191.734' y1='125' x2='191.734' y2='478.313' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFA933'/%3e%3cstop offset='1' stop-color='%23FFE871' stop-opacity='0.88'/%3e%3c/linearGradient%3e%3cradialGradient id='paint3_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(336.926 354.131) rotate(46.4441) scale(80.3737)'%3e%3cstop offset='0.255208' stop-color='%23FFE871' stop-opacity='0'/%3e%3cstop offset='0.395833' stop-color='%23FFE871'/%3e%3cstop offset='0.833333' stop-color='%23FFA933'/%3e%3c/radialGradient%3e%3cradialGradient id='paint4_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(329.786 337.045) rotate(46.4441) scale(78.5743)'%3e%3cstop offset='0.255208' stop-color='%23FFE871' stop-opacity='0'/%3e%3cstop offset='0.395833' stop-color='%23FFE871'/%3e%3cstop offset='0.833333' stop-color='%23FFA933'/%3e%3c/radialGradient%3e%3clinearGradient id='paint5_linear_1499_5517' x1='41.5' y1='134' x2='41.5' y2='147' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.25' stop-color='%23FFA933'/%3e%3cstop offset='1' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3c/linearGradient%3e%3clinearGradient id='paint6_linear_1499_5517' x1='356.78' y1='126.28' x2='356.78' y2='139.28' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.25' stop-color='%23FFA933'/%3e%3cstop offset='1' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3c/linearGradient%3e%3clinearGradient id='paint7_linear_1499_5517' x1='92.5' y1='398' x2='92.5' y2='411' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.25' stop-color='%23FFA933'/%3e%3cstop offset='1' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3c/linearGradient%3e%3clinearGradient id='paint8_linear_1499_5517' x1='379.348' y1='384.187' x2='379.348' y2='397.187' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.25' stop-color='%23FFA933'/%3e%3cstop offset='1' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3c/linearGradient%3e%3cradialGradient id='paint9_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(428.5 366.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint10_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(91.5 428.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint11_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(360.755 425.755) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint12_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(62.5 440.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint13_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(35.5 250.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint14_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(24.5 199.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint15_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(87.5 138.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint16_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(339.78 111.78) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint17_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(52 163) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint18_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(299.172 92.1727) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint19_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(73 143) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint20_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(373.172 125.173) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint21_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(60 134) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint22_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(341.172 96.1727) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint23_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(69 155) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint24_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(373.172 105.173) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint25_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(73 398) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint26_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(368.772 408.312) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint27_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(63 371) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint28_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(85 407) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint29_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(380.161 398.55) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint30_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(95 425) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint31_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(395.772 385.773) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint32_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(77 422) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint33_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(387.772 417.773) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint34_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(85 447) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint35_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(115 437) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint36_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(415.955 375.773) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint37_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(46 109) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint38_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(101 121) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint39_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(319.939 104.096) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint40_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(46 197) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint41_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(398.29 155.69) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint42_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(129 78) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint43_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(116.5 94.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint44_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(316.78 89.7802) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint45_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(158.5 88.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint46_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(164.5 57.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint47_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(331.5 75.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint48_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(355.5 108.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint49_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(81.5 104.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint50_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(114.5 457.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint51_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(55.5 408.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint52_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(407.5 166.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint53_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(400.5 406.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint54_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(407.5 368.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint55_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(422.5 318.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint56_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(422.5 213.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint57_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(18 164) rotate(90) scale(5)'%3e%3cstop stop-color='%23FFA933' stop-opacity='0'/%3e%3cstop offset='0.135417' stop-color='%23FFFCEE' stop-opacity='0.88'/%3e%3c/radialGradient%3e%3cradialGradient id='paint58_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(408 337) rotate(90) scale(12)'%3e%3cstop stop-color='%23FFA933' stop-opacity='0'/%3e%3cstop offset='0.135417' stop-color='%23FFFCEE' stop-opacity='0.88'/%3e%3c/radialGradient%3e%3cradialGradient id='paint59_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(61 182) rotate(90) scale(14)'%3e%3cstop stop-color='%23FFA933' stop-opacity='0'/%3e%3cstop offset='0.135417' stop-color='%23FFFCEE' stop-opacity='0.88'/%3e%3c/radialGradient%3e%3cradialGradient id='paint60_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(67 358) rotate(90) scale(19)'%3e%3cstop stop-color='%23FFA933' stop-opacity='0'/%3e%3cstop offset='0.135417' stop-color='%23FFFCEE' stop-opacity='0.88'/%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='230' height='69' viewBox='0 0 230 69' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_1499_5450)'%3e%3cpath d='M31.81 2.38379C31.81 2.38379 23.47 29.7338 6.29004 39.4438H223.32C223.32 39.4438 200.91 27.3338 195.3 2.38379H31.81Z' fill='url(%23paint0_linear_1499_5450)'/%3e%3cpath d='M223.32 39.4438H6.29004V58.8638H223.32V39.4438Z' fill='url(%23paint1_linear_1499_5450)'/%3e%3cg style='mix-blend-mode:overlay' filter='url(%23filter1_f_1499_5450)'%3e%3cpath d='M117 40.9937C169.467 40.9937 212 40.0982 212 38.9937C212 37.8891 169.467 36.9937 117 36.9937C64.5329 36.9937 22 37.8891 22 38.9937C22 40.0982 64.5329 40.9937 117 40.9937Z' fill='white'/%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_1499_5450' x='0.290039' y='0.383789' width='229.03' height='68.48' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset dy='4'/%3e%3cfeGaussianBlur stdDeviation='3'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.45 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1499_5450'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_1499_5450' result='shape'/%3e%3c/filter%3e%3cfilter id='filter1_f_1499_5450' x='18' y='32.9937' width='198' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2' result='effect1_foregroundBlur_1499_5450'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_1499_5450' x1='114.81' y1='39.4438' x2='114.81' y2='2.38379' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.18' stop-color='%23414042'/%3e%3cstop offset='0.36' stop-color='%232B2828'/%3e%3cstop offset='0.47' stop-color='%23231F1F'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_1499_5450' x1='6.29004' y1='49.1538' x2='223.32' y2='49.1538' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23231F1F'/%3e%3cstop offset='0.07' stop-color='%23333132'/%3e%3cstop offset='0.14' stop-color='%233D3C3E'/%3e%3cstop offset='0.21' stop-color='%23414042'/%3e%3cstop offset='0.77' stop-color='%23414042'/%3e%3cstop offset='0.91' stop-color='%232B2828'/%3e%3cstop offset='1' stop-color='%23231F1F'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='387' height='388' viewBox='0 0 387 388' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_1499_5393)'%3e%3cpath d='M193.5 379.094C297.053 379.094 381 295.147 381 191.594C381 88.0404 297.053 4.09375 193.5 4.09375C89.9466 4.09375 6 88.0404 6 191.594C6 295.147 89.9466 379.094 193.5 379.094Z' fill='url(%23paint0_linear_1499_5393)'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_1499_5393' x='0' y='0.09375' width='387' height='387' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset dy='2'/%3e%3cfeGaussianBlur stdDeviation='3'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.65 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1499_5393'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_1499_5393' result='shape'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_1499_5393' x1='128.85' y1='32.0238' x2='269.7' y2='379.674' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23231F1F'/%3e%3cstop offset='0.09' stop-color='%23282525'/%3e%3cstop offset='0.21' stop-color='%23383638'/%3e%3cstop offset='0.27' stop-color='%23414042'/%3e%3cstop offset='0.72' stop-color='%23414042'/%3e%3cstop offset='0.87' stop-color='%232B2828'/%3e%3cstop offset='0.96' stop-color='%23231F1F'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='120' height='120' viewBox='0 0 120 120' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_321_83)'%3e%3cpath d='M59.9924 30C43.5289 30 30.1875 43.3414 30.1875 59.8049C30.1875 76.2684 43.5289 89.6097 59.9924 89.6097C76.4559 89.6097 89.7972 76.2684 89.7972 59.8049C89.7972 43.3414 76.4559 30 59.9924 30Z' fill='url(%23paint0_linear_321_83)'/%3e%3c/g%3e%3cpath d='M41.9866 66.1805C41.3386 66.1805 40.7446 66.1085 40.2046 65.9645C39.6766 65.8205 39.2266 65.6285 38.8546 65.3885V62.9765C39.2146 63.1685 39.5626 63.3365 39.8986 63.4805C40.2466 63.6245 40.5946 63.7385 40.9426 63.8225C41.2906 63.8945 41.6446 63.9305 42.0046 63.9305C42.3046 63.9305 42.5806 63.9065 42.8326 63.8585C43.0846 63.7985 43.3006 63.7085 43.4806 63.5885C43.6726 63.4685 43.8226 63.3245 43.9306 63.1565C44.0386 62.9765 44.0926 62.7665 44.0926 62.5265C44.0926 62.1905 44.0266 61.9085 43.8946 61.6805C43.7626 61.4525 43.5826 61.2425 43.3546 61.0505C43.1266 60.8585 42.8566 60.6545 42.5446 60.4385C42.1846 60.1745 41.8366 59.8805 41.5006 59.5565C41.1646 59.2325 40.8886 58.8545 40.6726 58.4225C40.4566 57.9785 40.3486 57.4625 40.3486 56.8745C40.3486 56.2985 40.4506 55.7765 40.6546 55.3085C40.8586 54.8285 41.1526 54.4145 41.5366 54.0665C41.9326 53.7185 42.4006 53.4485 42.9406 53.2565C43.4806 53.0645 44.0866 52.9685 44.7586 52.9685C45.4306 52.9685 46.0486 53.0405 46.6126 53.1845C47.1766 53.3285 47.7226 53.5445 48.2506 53.8325L47.2966 55.8845C46.8406 55.6685 46.4026 55.5065 45.9826 55.3985C45.5746 55.2905 45.1666 55.2365 44.7586 55.2365C44.5186 55.2365 44.2966 55.2725 44.0926 55.3445C43.9006 55.4045 43.7266 55.5005 43.5706 55.6325C43.4266 55.7525 43.3126 55.9025 43.2286 56.0825C43.1446 56.2625 43.1026 56.4605 43.1026 56.6765C43.1026 56.9765 43.1626 57.2345 43.2826 57.4505C43.4146 57.6665 43.5946 57.8705 43.8226 58.0625C44.0626 58.2425 44.3506 58.4465 44.6866 58.6745C45.1666 58.9865 45.5626 59.3225 45.8746 59.6825C46.1866 60.0305 46.4206 60.4145 46.5766 60.8345C46.7326 61.2425 46.8106 61.6985 46.8106 62.2025C46.8106 62.8745 46.6846 63.4625 46.4326 63.9665C46.1806 64.4585 45.8326 64.8725 45.3886 65.2085C44.9446 65.5325 44.4286 65.7785 43.8406 65.9465C43.2646 66.1025 42.6466 66.1805 41.9866 66.1805ZM48.5076 66.0005L51.2256 53.1485H54.8076C55.8516 53.1485 56.6856 53.3045 57.3096 53.6165C57.9456 53.9285 58.4016 54.3665 58.6776 54.9305C58.9656 55.4945 59.1096 56.1485 59.1096 56.8925C59.1096 57.6605 58.9656 58.3265 58.6776 58.8905C58.4016 59.4545 58.0116 59.9285 57.5076 60.3125C57.0036 60.6845 56.4096 60.9665 55.7256 61.1585C55.0416 61.3385 54.3036 61.4285 53.5116 61.4285H52.1436L51.1896 66.0005H48.5076ZM53.7276 59.1965C54.2676 59.1965 54.7356 59.1125 55.1316 58.9445C55.5396 58.7645 55.8516 58.5065 56.0676 58.1705C56.2956 57.8345 56.4096 57.4325 56.4096 56.9645C56.4096 56.4245 56.2656 56.0285 55.9776 55.7765C55.6896 55.5125 55.2636 55.3805 54.6996 55.3805H53.4396L52.6296 59.1965H53.7276ZM58.5039 66.0005L58.8279 64.4525L60.4659 63.7325L62.2299 55.4165L60.8979 54.6965L61.2219 53.1485H66.9099L66.5859 54.6965L64.9119 55.4165L63.1479 63.7325L64.5159 64.4525L64.1919 66.0005H58.5039ZM66.3845 66.0005L69.1025 53.1485H72.2345L75.2225 62.6165H75.2945C75.3305 62.4245 75.3665 62.1905 75.4025 61.9145C75.4505 61.6385 75.4985 61.3445 75.5465 61.0325C75.6065 60.7085 75.6665 60.3905 75.7265 60.0785C75.7865 59.7665 75.8405 59.4845 75.8885 59.2325L77.1845 53.1485H79.5965L76.8785 66.0005H73.8725L70.7405 56.2805H70.6505C70.6385 56.3525 70.6145 56.5265 70.5785 56.8025C70.5425 57.0665 70.4945 57.3845 70.4345 57.7565C70.3865 58.1285 70.3265 58.5125 70.2545 58.9085C70.1945 59.2925 70.1345 59.6405 70.0745 59.9525L68.7965 66.0005H66.3845Z' fill='url(%23paint1_linear_321_83)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M93.7972 59.8053C93.7972 47.716 87.4542 37.1107 77.914 31.1353L72.866 24.5679L71.2409 27.9164C67.7221 26.6755 63.9362 26.0005 59.9924 26.0005C41.3197 26.0005 26.1875 41.1327 26.1875 59.8053C26.1875 70.7672 31.4025 80.5089 39.4874 86.6852L46.2741 94.5956L47.6632 91.2922C51.483 92.7887 55.6416 93.6102 59.9924 93.6102C78.665 93.6102 93.7972 78.478 93.7972 59.8053ZM49.2147 87.6027C52.557 88.8991 56.1915 89.6102 59.9924 89.6102C76.4559 89.6102 89.7972 76.2688 89.7972 59.8053C89.7972 49.1301 84.1879 39.7675 75.7552 34.5037L67.9996 34.5954L69.4813 31.5422C66.5009 30.5423 63.31 30.0005 59.9924 30.0005C43.5289 30.0005 30.1875 43.3418 30.1875 59.8053C30.1875 70.2587 35.5661 79.4534 43.7073 84.7734L50.5947 84.3211L49.2147 87.6027Z' fill='url(%23paint2_linear_321_83)'/%3e%3cdefs%3e%3cfilter id='filter0_d_321_83' x='0.1875' y='0' width='119.61' height='119.61' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='15'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_321_83'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_321_83' result='shape'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_321_83' x1='48.9996' y1='102.5' x2='74.9996' y2='24.5' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.0604165' stop-color='%23FFB915'/%3e%3cstop offset='0.2375' stop-color='%23C48A02'/%3e%3cstop offset='0.477083' stop-color='%23FFE067'/%3e%3cstop offset='0.721875' stop-color='%23FFB915'/%3e%3cstop offset='1' stop-color='%23FFF100'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_321_83' x1='71.1177' y1='48.4796' x2='64.6579' y2='74.2794' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23170C06'/%3e%3cstop offset='0.33125' stop-color='%23575757'/%3e%3cstop offset='1' stop-color='%23170C06'/%3e%3c/linearGradient%3e%3clinearGradient id='paint2_linear_321_83' x1='79.4996' y1='28.7109' x2='51.378' y2='93.2576' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23170C06'/%3e%3cstop offset='0.33125' stop-color='%23575757'/%3e%3cstop offset='1' stop-color='%23170C06'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='116' height='116' viewBox='0 0 116 116' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_321_83)'%3e%3cpath d='M57.992 26.2002C40.431 26.2002 26.2002 40.431 26.2002 57.992C26.2002 75.5531 40.431 89.7839 57.992 89.7839C75.5531 89.7839 89.7839 75.5531 89.7839 57.992C89.7839 40.431 75.5531 26.2002 57.992 26.2002Z' fill='url(%23paint0_linear_321_83)'/%3e%3c/g%3e%3cpath d='M57.992 26.2002C40.431 26.2002 26.2002 40.431 26.2002 57.992C26.2002 75.5531 40.431 89.7839 57.992 89.7839C75.5531 89.7839 89.7839 75.5531 89.7839 57.992C89.7839 40.431 75.5531 26.2002 57.992 26.2002Z' fill='url(%23paint1_linear_321_83)'/%3e%3cg filter='url(%23filter1_f_321_83)'%3e%3cpath d='M43.4785 55.512C43.6865 54.728 43.7905 54.072 43.7905 53.544C43.7905 53.016 43.6465 52.584 43.3585 52.248C43.0705 51.896 42.6945 51.72 42.2305 51.72C41.7825 51.72 41.4065 51.944 41.1025 52.392C40.7985 52.84 40.6465 53.352 40.6465 53.928C40.6465 55.048 41.2865 56.008 42.5665 56.808C43.8465 57.64 44.7185 58.24 45.1825 58.608C45.6465 58.976 45.9745 59.312 46.1665 59.616C46.6465 60.4 46.8865 61.208 46.8865 62.04C46.8865 63.48 46.3985 64.632 45.4225 65.496C44.4625 66.344 43.3745 66.768 42.1585 66.768C40.7185 66.768 39.5105 66.16 38.5345 64.944C37.8305 64.064 37.1825 62.968 36.5905 61.656L38.9185 60.528C39.2865 61.488 39.7425 62.304 40.2865 62.976C40.8465 63.632 41.4385 63.96 42.0625 63.96C42.4625 63.96 42.8225 63.832 43.1425 63.576C43.4625 63.32 43.6225 62.936 43.6225 62.424C43.6225 61.896 43.4225 61.408 43.0225 60.96C42.6225 60.512 42.0865 60.056 41.4145 59.592C40.7425 59.128 40.2225 58.752 39.8545 58.464C39.4865 58.16 39.0785 57.776 38.6305 57.312C37.7825 56.416 37.3585 55.272 37.3585 53.88C37.3585 52.472 37.8465 51.296 38.8225 50.352C39.7985 49.392 40.9585 48.912 42.3025 48.912C43.6465 48.912 44.7745 49.432 45.6865 50.472C46.6145 51.512 47.0785 52.584 47.0785 53.688C47.0785 54.776 46.8705 55.712 46.4545 56.496L43.4785 55.512ZM49.2771 66.408C49.2131 64.6 49.1811 62.432 49.1811 59.904C49.1811 57.36 49.2611 53.968 49.4211 49.728C50.7651 49.232 52.1411 48.984 53.5491 48.984C54.9731 48.984 56.2371 49.512 57.3411 50.568C58.4611 51.608 59.0211 52.928 59.0211 54.528C59.0211 56.112 58.4131 57.488 57.1971 58.656C55.9971 59.808 54.4211 60.656 52.4691 61.2C52.4691 62.992 52.4931 64.832 52.5411 66.72L49.2771 66.408ZM54.8451 56.952C55.4371 56.264 55.7331 55.496 55.7331 54.648C55.7331 53.8 55.5091 53.112 55.0611 52.584C54.6291 52.056 54.1411 51.792 53.5971 51.792C53.4531 51.792 53.1251 51.832 52.6131 51.912C52.5331 54.168 52.4851 56.352 52.4691 58.464C53.4771 58.144 54.2691 57.64 54.8451 56.952ZM64.3693 49.392C64.2253 51.92 64.1533 54.768 64.1533 57.936C64.1533 61.104 64.2573 63.992 64.4653 66.6L61.2253 66.312C61.0173 63.048 60.9133 60.104 60.9133 57.48C60.9133 54.84 60.9853 52.048 61.1293 49.104L64.3693 49.392ZM77.7148 49.104L77.7388 60.264C77.7388 62.104 77.6748 64.08 77.5468 66.192L74.8588 65.928C72.7948 61.24 71.1068 57.728 69.7948 55.392C69.8108 57.76 69.8188 61.536 69.8188 66.72L67.0108 66.408C66.9628 65.416 66.9388 64.456 66.9388 63.528C66.9388 59.656 67.1548 55.144 67.5868 49.992L70.7788 50.304C72.3628 54.672 73.7868 57.992 75.0508 60.264C74.9548 55.432 74.8428 51.624 74.7148 48.84L77.7148 49.104Z' fill='white'/%3e%3c/g%3e%3cpath d='M43.4785 55.512C43.6865 54.728 43.7905 54.072 43.7905 53.544C43.7905 53.016 43.6465 52.584 43.3585 52.248C43.0705 51.896 42.6945 51.72 42.2305 51.72C41.7825 51.72 41.4065 51.944 41.1025 52.392C40.7985 52.84 40.6465 53.352 40.6465 53.928C40.6465 55.048 41.2865 56.008 42.5665 56.808C43.8465 57.64 44.7185 58.24 45.1825 58.608C45.6465 58.976 45.9745 59.312 46.1665 59.616C46.6465 60.4 46.8865 61.208 46.8865 62.04C46.8865 63.48 46.3985 64.632 45.4225 65.496C44.4625 66.344 43.3745 66.768 42.1585 66.768C40.7185 66.768 39.5105 66.16 38.5345 64.944C37.8305 64.064 37.1825 62.968 36.5905 61.656L38.9185 60.528C39.2865 61.488 39.7425 62.304 40.2865 62.976C40.8465 63.632 41.4385 63.96 42.0625 63.96C42.4625 63.96 42.8225 63.832 43.1425 63.576C43.4625 63.32 43.6225 62.936 43.6225 62.424C43.6225 61.896 43.4225 61.408 43.0225 60.96C42.6225 60.512 42.0865 60.056 41.4145 59.592C40.7425 59.128 40.2225 58.752 39.8545 58.464C39.4865 58.16 39.0785 57.776 38.6305 57.312C37.7825 56.416 37.3585 55.272 37.3585 53.88C37.3585 52.472 37.8465 51.296 38.8225 50.352C39.7985 49.392 40.9585 48.912 42.3025 48.912C43.6465 48.912 44.7745 49.432 45.6865 50.472C46.6145 51.512 47.0785 52.584 47.0785 53.688C47.0785 54.776 46.8705 55.712 46.4545 56.496L43.4785 55.512ZM49.2771 66.408C49.2131 64.6 49.1811 62.432 49.1811 59.904C49.1811 57.36 49.2611 53.968 49.4211 49.728C50.7651 49.232 52.1411 48.984 53.5491 48.984C54.9731 48.984 56.2371 49.512 57.3411 50.568C58.4611 51.608 59.0211 52.928 59.0211 54.528C59.0211 56.112 58.4131 57.488 57.1971 58.656C55.9971 59.808 54.4211 60.656 52.4691 61.2C52.4691 62.992 52.4931 64.832 52.5411 66.72L49.2771 66.408ZM54.8451 56.952C55.4371 56.264 55.7331 55.496 55.7331 54.648C55.7331 53.8 55.5091 53.112 55.0611 52.584C54.6291 52.056 54.1411 51.792 53.5971 51.792C53.4531 51.792 53.1251 51.832 52.6131 51.912C52.5331 54.168 52.4851 56.352 52.4691 58.464C53.4771 58.144 54.2691 57.64 54.8451 56.952ZM64.3693 49.392C64.2253 51.92 64.1533 54.768 64.1533 57.936C64.1533 61.104 64.2573 63.992 64.4653 66.6L61.2253 66.312C61.0173 63.048 60.9133 60.104 60.9133 57.48C60.9133 54.84 60.9853 52.048 61.1293 49.104L64.3693 49.392ZM77.7148 49.104L77.7388 60.264C77.7388 62.104 77.6748 64.08 77.5468 66.192L74.8588 65.928C72.7948 61.24 71.1068 57.728 69.7948 55.392C69.8108 57.76 69.8188 61.536 69.8188 66.72L67.0108 66.408C66.9628 65.416 66.9388 64.456 66.9388 63.528C66.9388 59.656 67.1548 55.144 67.5868 49.992L70.7788 50.304C72.3628 54.672 73.7868 57.992 75.0508 60.264C74.9548 55.432 74.8428 51.624 74.7148 48.84L77.7148 49.104Z' fill='white'/%3e%3cg filter='url(%23filter2_d_321_83)'%3e%3cpath d='M73.7341 21.0813L71.9148 25.3521C67.644 23.5328 62.9415 22.5152 57.9924 22.5152C38.3961 22.5152 22.5156 38.3957 22.5156 57.992C22.5156 68.5687 27.141 78.0507 34.48 84.5417L39.6296 83.9096C31.5043 78.1433 26.2005 68.692 26.2005 57.9765C26.2005 40.4155 40.4313 26.1847 57.9924 26.1847C62.4173 26.1847 66.6419 27.0943 70.4655 28.7287L68.6616 32.984L76.3398 32.0435L81.4894 31.4114H81.5048L73.7341 21.0659V21.0813Z' fill='url(%23paint2_linear_321_83)'/%3e%3c/g%3e%3cg filter='url(%23filter3_d_321_83)'%3e%3cpath d='M81.4892 31.4272L76.3396 32.0594C84.4648 37.8257 89.784 47.2769 89.784 57.9924C89.784 75.5535 75.5532 89.7843 57.9922 89.7843C53.5672 89.7843 49.3427 88.8746 45.5036 87.2403L47.3075 82.9849L39.614 83.9254L34.4644 84.5576L42.235 94.903L44.0543 90.6323C48.3251 92.4516 53.043 93.4692 57.9768 93.4692C77.573 93.4692 93.4535 77.5886 93.4535 57.9924C93.4535 47.4157 88.8281 37.9336 81.4737 31.4272H81.4892Z' fill='url(%23paint3_linear_321_83)'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_321_83' x='0.200195' y='0.200195' width='115.583' height='115.583' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='13'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_321_83'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_321_83' result='shape'/%3e%3c/filter%3e%3cfilter id='filter1_f_321_83' x='32.5903' y='44.8398' width='49.1484' height='25.9282' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2' result='effect1_foregroundBlur_321_83'/%3e%3c/filter%3e%3cfilter id='filter2_d_321_83' x='12.5156' y='11.0659' width='78.9893' height='83.4756' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='5'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_321_83'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_321_83' result='shape'/%3e%3c/filter%3e%3cfilter id='filter3_d_321_83' x='14.4644' y='11.4272' width='98.9893' height='103.476' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='10'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_321_83'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_321_83' result='shape'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_321_83' x1='84.3568' y1='31.6273' x2='20.218' y2='95.7815' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.28' stop-color='%23303030'/%3e%3cstop offset='1' stop-color='%23000604'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_321_83' x1='84.3568' y1='31.6273' x2='20.218' y2='95.7815' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.28' stop-color='%23303030'/%3e%3cstop offset='1' stop-color='%23000604'/%3e%3c/linearGradient%3e%3clinearGradient id='paint2_linear_321_83' x1='52.0256' y1='22.1298' x2='52.0256' y2='74.4275' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23F8DA36'/%3e%3cstop offset='0.09' stop-color='%23F8C14C'/%3e%3cstop offset='0.28' stop-color='%23F88485'/%3e%3cstop offset='0.52' stop-color='%23FA2CD7'/%3e%3cstop offset='0.76' stop-color='%23987CDB'/%3e%3cstop offset='1' stop-color='%2333D0E0'/%3e%3c/linearGradient%3e%3clinearGradient id='paint3_linear_321_83' x1='63.9743' y1='93.8546' x2='63.9743' y2='41.5877' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FEDC31'/%3e%3cstop offset='0.09' stop-color='%23FDC347'/%3e%3cstop offset='0.27' stop-color='%23FC8682'/%3e%3cstop offset='0.52' stop-color='%23FA2CD7'/%3e%3cstop offset='0.76' stop-color='%23987CDB'/%3e%3cstop offset='1' stop-color='%2333D0E0'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='105' height='106' viewBox='0 0 105 106' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_0_1)'%3e%3cpath d='M52.5 95.0938C75.9721 95.0938 95 76.0658 95 52.5938C95 29.1216 75.9721 10.0938 52.5 10.0938C29.0279 10.0938 10 29.1216 10 52.5938C10 76.0658 29.0279 95.0938 52.5 95.0938Z' fill='url(%23paint0_linear_0_1)'/%3e%3cpath d='M91.9301 52.5936C91.9301 74.3736 74.2801 92.0236 52.5001 92.0236C30.7201 92.0236 13.0701 74.3736 13.0701 52.5936C13.0701 30.8136 30.7201 13.1636 52.5001 13.1636C74.2801 13.1636 91.9301 30.8136 91.9301 52.5936Z' fill='url(%23paint1_linear_0_1)'/%3e%3cg filter='url(%23filter1_f_0_1)'%3e%3cpath d='M84.09 52.5934C84.09 70.0434 69.95 58.2134 52.5 58.2134C35.05 58.2134 20.91 70.0334 20.91 52.5934C20.91 35.1534 35.05 21.0034 52.5 21.0034C69.95 21.0034 84.09 35.1434 84.09 52.5934Z' fill='url(%23paint2_linear_0_1)'/%3e%3c/g%3e%3c/g%3e%3cg filter='url(%23filter2_d_0_1)' style='filter: drop-shadow(0px 0px 5px %23EBBD38)%3b'%3e%3cpath d='M49 59.2737C48.29 60.6237 47.39 61.7537 46.32 62.6637C45.25 63.5737 44.03 64.2537 42.66 64.7037C41.29 65.1537 39.8 65.3837 38.2 65.3837C36.42 65.3837 34.84 65.0837 33.46 64.4937C32.08 63.9037 30.94 63.0437 30.05 61.9337C29.16 60.8237 28.55 59.4737 28.2 57.8937C27.86 56.3137 27.85 54.5437 28.17 52.5937C28.48 50.7137 29.07 48.9937 29.95 47.4337C30.83 45.8737 31.91 44.5237 33.2 43.3837C34.48 42.2537 35.91 41.3737 37.5 40.7437C39.08 40.1137 40.72 39.8037 42.41 39.8037C44.19 39.8037 45.74 40.1537 47.06 40.8637C48.38 41.5637 49.63 42.6937 50.39 44.1737C51.31 45.9637 48.37 47.8537 47.18 46.4537C45.99 45.0537 44.12 43.6637 41.85 43.6637C40.64 43.6637 39.5 43.8837 38.43 44.3237C37.36 44.7637 36.4 45.3737 35.57 46.1637C34.73 46.9537 34.03 47.8937 33.45 48.9937C32.87 50.0937 32.48 51.2937 32.28 52.6037C32.06 53.9137 32.05 55.1237 32.26 56.2337C32.46 57.3337 32.86 58.2837 33.44 59.0837C34.02 59.8837 34.78 60.5037 35.71 60.9637C36.64 61.4137 37.72 61.6437 38.95 61.6437C39.84 61.6437 40.7 61.5337 41.53 61.3137C42.36 61.0937 43.12 60.7437 43.8 60.2737C44.48 59.7937 45.06 59.1837 45.54 58.4437C46.01 57.7037 46.34 56.7937 46.51 55.7337H41.09C39.77 55.7337 39.39 52.1237 41.68 52.1237H50.95L50.53 54.5837C50.24 56.3637 49.74 57.9337 49.02 59.2937L49 59.2737Z' fill='white' stroke='white' stroke-width='0.97' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M76.87 52.5937C76.58 54.3937 75.98 56.0737 75.07 57.6237C74.16 59.1837 73.05 60.5337 71.75 61.6837C70.45 62.8337 69 63.7337 67.42 64.3937C65.84 65.0537 64.23 65.3837 62.6 65.3837C60.97 65.3837 59.47 65.0537 58.11 64.4137C56.75 63.7737 55.61 62.8637 54.69 61.7137C53.77 60.5637 53.12 59.2137 52.72 57.6537C52.33 56.0937 52.28 54.4137 52.57 52.5937C52.77 51.3737 53.11 50.2137 53.59 49.1137C54.07 48.0137 54.65 46.9837 55.34 46.0437C56.03 45.0937 56.81 44.2437 57.68 43.4737C58.55 42.7037 59.47 42.0537 60.46 41.5137C61.44 40.9737 62.47 40.5537 63.55 40.2537C64.63 39.9537 65.71 39.8037 66.81 39.8037C68.47 39.8037 69.99 40.1237 71.36 40.7737C72.73 41.4237 73.88 42.3137 74.8 43.4637C75.72 44.6137 76.38 45.9537 76.77 47.5137C77.16 49.0737 77.2 50.7637 76.89 52.5937H76.87ZM72.8 52.5937C73 51.3737 72.98 50.2237 72.73 49.1437C72.48 48.0637 72.06 47.1237 71.46 46.3137C70.86 45.5037 70.11 44.8737 69.2 44.4037C68.29 43.9337 67.27 43.7037 66.13 43.7037C64.99 43.7037 63.87 43.9337 62.82 44.3937C61.76 44.8537 60.81 45.4937 59.96 46.2937C59.11 47.1037 58.39 48.0437 57.81 49.1237C57.23 50.2037 56.84 51.3637 56.65 52.5937C56.45 53.8137 56.46 54.9637 56.69 56.0337C56.92 57.1037 57.33 58.0437 57.92 58.8637C58.51 59.6737 59.26 60.3237 60.16 60.7837C61.06 61.2537 62.08 61.4837 63.22 61.4837C64.36 61.4837 65.41 61.2537 66.48 60.7837C67.54 60.3137 68.51 59.6737 69.38 58.8637C70.25 58.0537 70.98 57.1037 71.59 56.0337C72.19 54.9637 72.6 53.8137 72.8 52.5937Z' fill='white' stroke='white' stroke-width='0.97' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_0_1' x='0' y='0.09375' width='105' height='105' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='5'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_0_1'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_0_1' result='shape'/%3e%3c/filter%3e%3cfilter id='filter1_f_0_1' x='18.91' y='19.0034' width='67.1801' height='45.1284' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_0_1'/%3e%3c/filter%3e%3cfilter id='filter2_d_0_1' x='22.4523' y='34.3188' width='60.1287' height='36.5498' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='2.5'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0.921569 0 0 0 0 0.741176 0 0 0 0 0.219608 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_0_1'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_0_1' result='shape'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_0_1' x1='24.97' y1='25.0738' x2='89.38' y2='89.4738' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23E2CE86'/%3e%3cstop offset='0.04' stop-color='%23C0A865'/%3e%3cstop offset='0.09' stop-color='%239E8143'/%3e%3cstop offset='0.13' stop-color='%2385652B'/%3e%3cstop offset='0.17' stop-color='%2376541C'/%3e%3cstop offset='0.2' stop-color='%23714E17'/%3e%3cstop offset='0.24' stop-color='%2375531B'/%3e%3cstop offset='0.28' stop-color='%23836329'/%3e%3cstop offset='0.33' stop-color='%23997D40'/%3e%3cstop offset='0.38' stop-color='%23B9A15F'/%3e%3cstop offset='0.43' stop-color='%23E0D087'/%3e%3cstop offset='0.47' stop-color='%23FFF3A6'/%3e%3cstop offset='0.64' stop-color='%23AF9450'/%3e%3cstop offset='0.73' stop-color='%23866324'/%3e%3cstop offset='0.78' stop-color='%239F813F'/%3e%3cstop offset='0.88' stop-color='%23D3BE76'/%3e%3cstop offset='0.96' stop-color='%23F2E498'/%3e%3cstop offset='1' stop-color='%23FFF3A6'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_0_1' x1='52.5001' y1='92.0236' x2='52.5001' y2='13.1636' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%232D2D2D'/%3e%3cstop offset='1' stop-color='%23020202'/%3e%3c/linearGradient%3e%3clinearGradient id='paint2_linear_0_1' x1='52.5' y1='62.1334' x2='52.5' y2='21.0034' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.03' stop-color='%232D2D2D' stop-opacity='0'/%3e%3cstop offset='0.2' stop-color='%235F5F5F' stop-opacity='0.13'/%3e%3cstop offset='0.44' stop-color='%239D9E9E' stop-opacity='0.29'/%3e%3cstop offset='0.66' stop-color='%23CBCCCC' stop-opacity='0.4'/%3e%3cstop offset='0.86' stop-color='%23E7E8E8' stop-opacity='0.48'/%3e%3cstop offset='1' stop-color='%23F1F2F2' stop-opacity='0.5'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='217' height='217' viewBox='0 0 217 217' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter0_f_1499_5459)'%3e%3ccircle cx='108.5' cy='108.5' r='80.5' fill='url(%23paint0_radial_1499_5459)'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_f_1499_5459' x='0' y='0' width='217' height='217' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='14' result='effect1_foregroundBlur_1499_5459'/%3e%3c/filter%3e%3cradialGradient id='paint0_radial_1499_5459' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(108.5 108.5) rotate(92.4366) scale(62.5938)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.85'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.75'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='61' height='74' viewBox='0 0 61 74' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_1499_5437)'%3e%3cpath d='M45.6501 42.3636C48.4901 37.8236 50.1501 34.7036 50.1501 30.0036C50.1501 19.3336 41.4601 10.6836 30.7301 10.6836C20.0001 10.6836 11.3101 19.3336 11.3101 30.0036C11.3101 34.3336 12.7601 38.3136 15.1701 41.5336L30.6601 63.9936L45.6501 42.3636Z' fill='%23591709'/%3e%3cpath d='M44.49 41.6737C47.33 37.1337 48.99 34.0137 48.99 29.3137C48.99 18.6437 40.3 9.99365 29.57 9.99365C18.84 9.99365 10.15 18.6437 10.15 29.3137C10.15 33.6437 11.6 37.6237 14.01 40.8437L29.5 63.3037L44.49 41.6737Z' fill='url(%23paint0_linear_1499_5437)'/%3e%3cpath d='M41.96 41.3639C44.48 37.3839 46.53 33.6039 46.53 29.4239C46.53 19.9239 38.93 12.2339 29.56 12.2339C20.19 12.2339 12.59 19.9339 12.59 29.4239C12.59 33.2739 13.93 36.6339 15.97 39.6839L29.5 59.6739L41.95 41.3639H41.96Z' fill='%23821513'/%3e%3cpath d='M39.77 38.8438C41.47 36.1537 43.1 32.9338 43.1 29.4937C43.1 21.6737 37.04 15.3438 29.56 15.3438C22.08 15.3438 16.02 21.6837 16.02 29.4937C16.02 32.6637 16.92 35.3138 18.71 37.9438L29.51 54.3938L39.76 38.8438H39.77Z' fill='url(%23paint1_linear_1499_5437)'/%3e%3cpath d='M29.5601 39.9438C35.9113 39.9438 41.0601 34.7951 41.0601 28.4438C41.0601 22.0926 35.9113 16.9438 29.5601 16.9438C23.2088 16.9438 18.0601 22.0926 18.0601 28.4438C18.0601 34.7951 23.2088 39.9438 29.5601 39.9438Z' fill='url(%23paint2_radial_1499_5437)'/%3e%3cg filter='url(%23filter1_f_1499_5437)'%3e%3cpath d='M38.0601 20.7534C38.8501 22.3034 39.3001 24.0534 39.3001 25.9034C39.3001 32.2234 34.1501 37.3434 27.8001 37.3434C24.4301 37.3434 21.4101 35.8934 19.3101 33.5934C21.2101 37.3234 25.0801 39.8834 29.5701 39.8834C35.9201 39.8834 41.0701 34.7634 41.0701 28.4434C41.0701 25.4734 39.9301 22.7834 38.0701 20.7534H38.0601Z' fill='%23B87B02'/%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_1499_5437' x='0.150024' y='-0.00634766' width='60' height='74' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='5'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1499_5437'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_1499_5437' result='shape'/%3e%3c/filter%3e%3cfilter id='filter1_f_1499_5437' x='16.3101' y='17.7534' width='27.76' height='25.1299' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1.5' result='effect1_foregroundBlur_1499_5437'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_1499_5437' x1='14.2' y1='17.2837' x2='44.86' y2='47.9437' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23EFE19D'/%3e%3cstop offset='0.15' stop-color='%23CC9F4A'/%3e%3cstop offset='0.32' stop-color='%23E9D68E'/%3e%3cstop offset='0.35' stop-color='%23E2C979'/%3e%3cstop offset='0.4' stop-color='%23DAB95D'/%3e%3cstop offset='0.44' stop-color='%23D5AF4C'/%3e%3cstop offset='0.47' stop-color='%23D4AC46'/%3e%3cstop offset='0.6' stop-color='%23D0A647'/%3e%3cstop offset='0.62' stop-color='%23CFA548'/%3e%3cstop offset='0.7' stop-color='%23DFC16E'/%3e%3cstop offset='0.81' stop-color='%23F4E69F'/%3e%3cstop offset='0.84' stop-color='%23EEDD94'/%3e%3cstop offset='0.94' stop-color='%23DDC06E'/%3e%3cstop offset='1' stop-color='%23D7B660'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_1499_5437' x1='17.69' y1='42.3438' x2='42.19' y2='23.2738' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23EFE19D'/%3e%3cstop offset='0.04' stop-color='%23E9D58A'/%3e%3cstop offset='0.1' stop-color='%23DDBF65'/%3e%3cstop offset='0.15' stop-color='%23D6B14E'/%3e%3cstop offset='0.19' stop-color='%23D4AC46'/%3e%3cstop offset='0.24' stop-color='%23D8B453'/%3e%3cstop offset='0.34' stop-color='%23E2C978'/%3e%3cstop offset='0.4' stop-color='%23E9D68E'/%3e%3cstop offset='0.53' stop-color='%23DAB965'/%3e%3cstop offset='0.64' stop-color='%23CFA548'/%3e%3cstop offset='0.73' stop-color='%23DFC16E'/%3e%3cstop offset='0.85' stop-color='%23F4E69F'/%3e%3cstop offset='0.88' stop-color='%23EEDD94'/%3e%3cstop offset='0.96' stop-color='%23DDC06E'/%3e%3cstop offset='1' stop-color='%23D7B660'/%3e%3c/linearGradient%3e%3cradialGradient id='paint2_radial_1499_5437' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(27 23.4937) rotate(56.3099) scale(14.4222)'%3e%3cstop offset='0.180892' stop-color='%23F9F3D0'/%3e%3cstop offset='0.73' stop-color='%23DDB02A'/%3e%3cstop offset='0.96' stop-color='%23CC9F4A'/%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='250' height='250' viewBox='0 0 250 250' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3ccircle cx='125' cy='125' r='125' fill='url(%23paint0_radial_4318_321)' /%3e %3cdefs%3e %3cradialGradient id='paint0_radial_4318_321' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(125 125) scale(125 125)' %3e %3cstop offset='0.81' stop-color='white'/%3e %3cstop offset='0.87' stop-color='%23FCFCFD'/%3e %3cstop offset='0.91' stop-color='%23F3F4F6'/%3e %3cstop offset='0.94' stop-color='%23E9ECF0'/%3e %3cstop offset='0.97' stop-color='%23B9C3CE'/%3e %3cstop offset='1' stop-color='%23899BAD'/%3e %3c/radialGradient%3e %3c/defs%3e%3c/svg%3e\";\n export default img;","// @ts-nocheck\nimport themeBgHalo from './images/theme.bg.halo.svg'\nimport themeBgBlackRing from './images/theme.bg.blackring.svg'\nimport themeCenter1 from './images/themeCenter1.svg'\nimport themeCenter2 from './images/themeCenter2.svg'\nimport themePartitionLight from './images/themePartitionLight.svg'\nimport themePointerArea from './images/themePointerArea.svg'\n\nimport theme1Bg3 from './images/theme1Bg3.svg'\nimport theme2Bg3 from './images/theme2Bg3.svg'\nimport theme2Arrow from './images/theme2Arrow.svg'\n\nimport theme3Bg1 from './images/theme3Bg1.svg'\nimport theme3Bg2 from './images/theme3Bg2.svg'\nimport theme3Arrow from './images/theme3Arrow.svg'\n\nimport theme7Bg1 from './images/theme7Bg1.svg'\nimport theme7Bg2 from './images/theme7Bg2.svg'\nimport theme7Bg3 from './images/theme7Bg3.svg'\n\nimport theme2Center from './images/theme2Center.svg'\nimport theme3Center from './images/theme3Center.svg'\nimport theme7Center from './images/theme7Center.svg'\nimport theme7Light from './images/theme7Light.svg'\nimport theme7Arrow from './images/theme7Arrow.svg'\n\nimport themeShadow from './images/themeShadow.svg'\n\nconst defineBottom = () => `\n --img-theme-BgBlackRing: url(\"${themeBgBlackRing}\");\n --img-theme-BgHalo: url(\"${themeBgHalo}\");\n --img-theme1-bg3: url(\"${theme1Bg3}\");\n --img-theme2-bg3: url(\"${theme2Bg3}\");\n --img-theme3-bg2: url(\"${theme3Bg2}\");\n --img-theme3-bg1: url(\"${theme3Bg1}\");\n\n --img-theme7-bg3: url(\"${theme7Bg3}\");\n --img-theme7-bg2: url(\"${theme7Bg2}\");\n --img-theme7-bg1: url(\"${theme7Bg1}\");\n\n`\n\nconst defineMiddle = () => `\n --img-theme-center1: url(\"${themeCenter1}\");\n --img-theme2-center: url(\"${theme2Center}\");\n --img-theme2-arrow: url(\"${theme2Arrow}\");\n --img-theme3-center: url(\"${theme3Center}\");\n --img-theme3-arrow: url(\"${theme3Arrow}\");\n --img-theme7-arrow: url(\"${theme7Arrow}\");\n --img-theme-center2: url(\"${themeCenter2}\");\n --img-theme7-center: url(\"${theme7Center}\");\n`\n\nconst defineTop = () => `\n --img-theme-shadow: url(\"${themeShadow}\");\n --img-theme7-light: url(\"${theme7Light}\");\n`\n \nexport const defines = () => \n [\n defineBottom(),\n defineMiddle(),\n defineTop(),\n ` \n --img-theme-partition-light: url(\"${themePartitionLight}\");\n --img-theme-pointer-area: url(\"${themePointerArea}\");\n `\n ].join(' ')\n","<svelte:options tag={'lottery-program-wof-private-item-svg'} />\n\n<script lang=\"ts\">\n\n // types\n import { PointerMode, Lang, ContentDirection } from './types';\n import { getOptions, getSpinContainerSelector, Option } from './business';\n import { api } from './business';\n import { onMountMessageLifeCycle, _postMessage } from './message';\n import type { LotteryProgramForPlayer } from './types.business';\n import { themes } from './themes';\n import { isSafari, setProps } from './util';\n import { Spinner } from './class.spinner';\n import { SvgCalc } from './class.svgcalc';\n import { Process } from './class.process';\n import { _ } from './i18n';\n import { setClientStyling } from './widget';\n import { defines } from './themes.image.center';\n\n // properties common\n export let lang: Lang = Lang.en\n export let endpoint: string = ''\n export let session: string = ''\n export let clientstyling:string = ''\n export let contentdirection: keyof typeof ContentDirection = 'anticlockwise'\n export let partitiondivisor: string = ''\n\n let rootContainer: HTMLElement\n $: clientstyling && rootContainer && setClientStyling(rootContainer, clientstyling);\n\n // properties\n export let id: string = undefined\n export let size: string = ''\n export let radius: string = ''\n\n let isPartitionsCustomableReady: boolean = false\n // temp way to make sure transform-origin effects on safari\n const handleSafariIssue = (trigger) => {\n trigger(-1)\n setTimeout(() => {\n trigger(1)\n isPartitionsCustomableReady = true\n }, 100)\n }\n\n let bonus: LotteryProgramForPlayer\n const updateOptions = async () => {\n if(!options.length){\n options = await getOptions(bonus, lang)\n\n _postMessage({ type: 'wof-private-options-ready', id })\n\n const trigger = (amount: number) => size = String(Number(size) + amount)\n handleSafariIssue(trigger)\n }\n }\n $: bonus && lang && updateOptions()\n\n let options: Option[] = []\n\n // binds\n let svg: SVGElement;\n let spinContainer\n\n let spinner = new Spinner({\n tick: (deg, _speed) => {\n setProps(spinContainer, {\n style: [\n `transform: rotate(${deg}deg)`,\n `height: ${size}px`,\n `width: ${size}px`,\n ].join(';'), //mix-blend-mode: screen; background-blend-mode: screen;\n })\n speed = _speed * 0.5\n }\n })\n\n // states\n let spinable = true;\n let isSpinning = false;\n let isShowPrizeArea = false;\n let messageShown: boolean = false;\n let shownFirstCheck = false\n\n let speed: number = 0\n\n $: themeIndex = bonus?.program?.metadata?.template || 0\n $: theme = themes[themeIndex] || themes[0]\n $: calc = new SvgCalc({\n size,\n radius,\n options,\n themeIndex,\n contentdirection,\n })\n $: options && updateCalcOptions()\n $: (contentdirection || !contentdirection) && updateCalcContentDirection()\n\n $: bonus && runFirstCheck()\n\n const updateCalcOptions = () => {\n calc.options = options\n }\n const updateCalcContentDirection = () => {\n calc.contentdirection = contentdirection || 'anticlockwise'\n setImageProps()\n }\n\n const setImageProps = () => {\n if(!rootContainer) return;\n\n for ( let index = 0; index <= options.length; index++ ) {\n const image = rootContainer.querySelector(`.PartitionImage.PartitionImage${index} image`)\n if(image) {\n setProps(image, calc.getSvgImageProps(index, partitiondivisor))\n }\n }\n }\n\n const runFirstCheck = () => {\n if(shownFirstCheck) return;\n shownFirstCheck = true\n updateSpinable()\n }\n\n const updateSpinable = () => {\n const isSpinable = !!bonus.current && bonus.current.remainingTimes > 0\n\n if(isSpinable){\n spinable = true\n }else{\n spinable = false;\n\n if(bonus.next){\n process.setMessage({\n mode: 'show-next',\n modeValue: bonus.next\n })\n }else{\n process.setMessage({\n mode: 'NoNext',\n })\n }\n }\n }\n\n $: process = new Process({\n id,\n afterSetMessage: () => messageShown = true,\n halter: (index, cb) => {\n const targetIndex = index >= 0 ? index : options.length - 1\n spinner.halt(calc.getDeg(targetIndex), cb)\n },\n afterSuccess: () => isShowPrizeArea = true,\n fetcher: async (guid) => await api.draw(endpoint, session, id, guid, options)\n })\n\n // events\n const eventSpin = async () => {\n updateSpinable();\n if(!spinable) return;\n if(isSpinning) return;\n\n isSpinning = true\n isShowPrizeArea = false\n\n spinContainer = svg.querySelector(getSpinContainerSelector(theme.pointerMode))\n\n spinner.launch()\n process.drawer(`userid-${id}-${new Date().getTime()}`)\n }\n onMountMessageLifeCycle({\n 'wof-private-bonuses': (data) => {\n bonus = data.bonuses.find(_bonus => _bonus.program.id === id)\n },\n 'wof-private-bonus': (data) => {\n if(data.id !== id) return;\n bonus = data.bonus\n },\n 'wof-private-message-close': (data) => {\n if(data.id !== id) return;\n\n isSpinning = false\n setTimeout(() => updateSpinable(), 1)\n messageShown = false\n },\n 'wof-private-message-retry': (data) => {\n if(data.id !== id) return;\n\n messageShown = false\n process.drawer()\n }\n })\n\n const renderImage = (node: SVGElement, index) => {\n const image = options[index].image as SVGImageElement\n setProps(image, calc.getSvgImageProps(index))\n node.innerHTML = null\n node.appendChild(image)\n }\n\n\n $: optionFilter = theme.pointerMode === PointerMode.Arrow && speed > 0.3 ? `blur(${speed}px)` : null\n $: sizeProps = { height: size, width: size}\n $: foreignObjectAgentProps = {\n style: Object.keys(sizeProps).map(key => `${key}: ${sizeProps[key]}px`).join(';')\n } \n</script>\n\n<div\n class={`WheelContainer theme${Number(themeIndex) + 1}`}\n bind:this={rootContainer}\n style={`${defines()} --length: ${options.length}; --radius: ${radius}; --ratio: ${Number(size) / 480}; --size: ${size}`}\n>\n {#if Number(size) && options.length}\n <svg\n bind:this={svg}\n width={size}\n height={size}\n on:click={() => isSafari() && eventSpin()}\n style:opacity={messageShown ? '.3': ''}\n >\n <foreignObject {...sizeProps} class=\"Bottom Customable\">\n <div {...foreignObjectAgentProps} />\n </foreignObject>\n\n <g class=\"PartitionsContainer\" {...calc.getSpinnerProps()}>\n <g class=\"PartitionsBackgrounds\">\n {#each options as option, index}\n <foreignObject\n clip-path={`url(#clip${index})`}\n class=\"PartitionBackground Customable\"\n style={`--index: ${index}`}\n width={size}\n height={size}\n >\n <div {...foreignObjectAgentProps} />\n </foreignObject>\n {/each}\n </g>\n <g class=\"PartitionsBackgroundStrokes\">\n {#each options as option, index}\n <path\n class=\"PartitionBackgroundStroke\"\n {...calc.getPartitionDraw(index)}\n width={size}\n height={size}\n />\n {/each}\n </g>\n\n <g class=\"Partitions\" style:filter={optionFilter}>\n {#each options as option,index}\n\n {#if option.image}\n <g\n class={`PartitionImage PartitionImage${index}`}\n use:renderImage={index}\n />\n {/if}\n\n {#if option.name}\n <foreignObject\n class=\"PartitionText\"\n {...calc.getSvgTextPropsAdjustedByImage(index)}\n >\n <div class=\"PartitionTextEntityContainer\">\n <p class={`PartitionTextEntity${calc.contentdirection === 'clockwise' ? '' : ' Anticlockwise'}`}>{@html option.name}</p>\n </div>\n </foreignObject>\n {/if}\n\n {/each}\n </g>\n\n </g>\n\n <g class=\"PartitionsCustomable1\" class:active={isPartitionsCustomableReady}>\n {#each options as option,index}\n <foreignObject\n class=\"Partition1 Customable\"\n style={`--index: ${index}`}\n {...sizeProps}\n >\n <div {...foreignObjectAgentProps} />\n </foreignObject>\n {/each}\n </g>\n <g class=\"PartitionsCustomable2\" class:active={isPartitionsCustomableReady}>\n {#each options as option,index}\n <foreignObject\n class=\"Partition2 Customable\"\n style={`--index: ${index}`}\n {...sizeProps}\n >\n <div {...foreignObjectAgentProps} />\n </foreignObject>\n {/each}\n </g>\n\n {#if theme.pointerMode === PointerMode.Partition}\n <g class=\"PointerContainer\" {...calc.getSpinnerProps()}>\n\n <foreignObject class=\"PointerArea Customable\" {...sizeProps}>\n <div {...foreignObjectAgentProps} />\n </foreignObject>\n\n <path\n class=\"PointerPartitionFrame\"\n class:active={isShowPrizeArea}\n {...calc.getPartitionDraw(0)}\n />\n </g>\n {/if}\n\n <foreignObject class=\"Middle Customable\" {...sizeProps}>\n <div {...foreignObjectAgentProps} />\n </foreignObject>\n <foreignObject class=\"Top Customable\" {...sizeProps}>\n <div {...foreignObjectAgentProps} />\n </foreignObject>\n\n <g\n class=\"Center\"\n class:spinning={isSpinning}\n on:click={() => isSafari() || eventSpin()}\n >\n <foreignObject\n x={Number(size)/2 - 100/2}\n y={Number(size)/2 - 100/2}\n width={100}\n height={100}\n />\n </g>\n\n <!-- defs -->\n <g>\n {#each options as option, index}\n <clipPath {...{id: `clip${index}`}}>\n <path {...calc.getPartitionDraw(index)} />\n </clipPath>\n {/each}\n </g>\n </svg>\n {/if}\n</div>\n\n<style lang=\"scss\">\n @import './private.item.svg.scss';\n\n g.Center {\n &.spinning {\n cursor: not-allowed;\n }\n }\n</style>\n","<svelte:options tag={'lottery-program-wof-private-item'} />\n\n<script lang=\"ts\">\n import './private.message.svelte'\n import './private.tabs.svelte'\n import './private.outcomes.svelte'\n import './private.item.svg.svelte'\n\n // types\n import { ContentDirection, Lang } from './types';\n import { getCurrentInfo, isBonusInvalid } from './business';\n import { api } from './business';\n import { onMountMessageLifeCycle, _postMessage } from './message';\n import { CurrentInfo, LotteryProgramForPlayer } from './types.business';\n import { _ } from './i18n';\n import { setClientStyling } from './widget';\n\n // properties common\n export let lang: Lang = Lang.en\n export let endpoint: string = ''\n export let session: string = ''\n export let clientstyling:string = ''\n export let currentinfo: string = CurrentInfo.RemainingTimes\n export let giftimagesrc: string = ''\n export let contentdirection: keyof typeof ContentDirection = 'anticlockwise'\n export let size: string = '480'\n \n // properties\n export let id: string = ''\n\n let rootContainer: HTMLElement\n $: clientstyling && rootContainer && setClientStyling(rootContainer, clientstyling);\n\n $: commonProps = {\n endpoint,\n lang,\n session,\n clientstyling,\n }\n\n let bonus: LotteryProgramForPlayer\n let bonusNew: LotteryProgramForPlayer\n let currentInfoKeys: CurrentInfo[]\n let isOptionsReady: boolean = false\n let checkableValid: boolean = true\n\n const refetcher = async () => {\n const LotteryProgramsForPlayer = await api.lotteries(endpoint, session)\n return LotteryProgramsForPlayer.filter(l => l.program.id === id)[0]\n }\n \n onMountMessageLifeCycle({\n 'wof-private-options-ready': (data) => {\n if(data.id !== id) return;\n isOptionsReady = true\n },\n 'wof-private-bonuses': (data) => {\n const bonusFound = data.bonuses.find(l => l.program.id === id)\n if(bonusFound){\n bonus = bonusFound\n }\n },\n 'wof-private-message-spin-after': (data) => {\n if(data.id !== id) return;\n if(!bonusNew) return;\n bonus = bonusNew\n _postMessage({type: 'wof-private-bonus', bonus: bonusNew, id })\n },\n\n 'wof-private-message-spin-before': async (data) => {\n if(data.id !== id) return;\n checkableValid = false\n bonusNew = await refetcher()\n },\n\n 'wof-private-message-close': (data) => {\n if(data.id !== id) return;\n _postMessage({type: 'wof-private-checking', bonus, id })\n setTimeout(() => {\n checkableValid = true\n }, 1000);\n },\n })\n\n // reactives\n $: _size = Number(size) || 480\n $: radius = 0.62 * _size / 2;\n \n // @ts-ignore\n $: currentInfoKeys = currentinfo ? currentinfo.split(',') : [CurrentInfo.RemainingTimes]\n</script>\n\n<div \n class=\"LotteryItem\" \n class:Invalid={isBonusInvalid(bonus) && checkableValid}\n bind:this={rootContainer}\n>\n <lottery-program-wof-private-item-svg {...{ \n ...commonProps,\n id,\n size: _size,\n radius,\n contentdirection,\n }} />\n\n <lottery-program-wof-private-message-panel {...{\n ...commonProps,\n id,\n size: _size,\n r: radius,\n giftimagesrc,\n }} />\n \n {#if bonus?.current && isOptionsReady}\n <div class=\"Current\">\n {#each currentInfoKeys as CurrentInfoKey}\n <p class={CurrentInfoKey}>\n {$_(`wof.${CurrentInfoKey}`)}: {getCurrentInfo(bonus, CurrentInfoKey)}\n </p>\n {/each}\n </div>\n {/if}\n\n</div>\n\n<style lang=\"scss\">\n @mixin FortuneContainer {\n width: 100%;\n display: flex;\n align-items: center;\n flex-direction: column;\n }\n\n lottery-program-wof-private-message-panel {\n position: absolute;\n top: 0;\n }\n\n\n\n *,\n *::before,\n *::after {\n margin: 0;\n padding: 0;\n list-style: none;\n text-decoration: none;\n outline: none;\n box-sizing: border-box;\n }\n\n $outlineColor: rgb(150, 54, 88);\n $outlineWidth: 2px;\n\n .LotteryItem {\n @include FortuneContainer;\n margin: 20px 0;\n\n position: relative;\n max-width: 600px;\n justify-content: space-around;\n min-height: 200px;\n\n &.Invalid { \n display: none;\n }\n }\n\n .Current {\n color: #FFFFFF;\n }\n</style>","<svelte:options tag={null} />\n\n<script lang=\"ts\">\n import './private.message.svelte'\n import './private.tabs.svelte'\n import './private.outcomes.svelte'\n import './private.item.svelte'\n import './private.loader.svelte'\n\n import { onMount } from 'svelte';\n import { _, setLocale, setLocaleWhenInit } from './i18n';\n\n // types\n import { ContentDirection, Lang } from './types';\n import { api, isBonusInvalid } from './business';\n\n import { _postMessage, onMountMessageLifeCycle } from './message';\n import { CurrentInfo, LotteryProgramForPlayer } from './types.business';\n import { setClientStyling, setClientStylingURL, setTranslationUrl } from './widget';\n\n // properties\n export let lang: Lang = Lang.en\n export let endpoint: string = ''\n export let session: string = ''\n export let clientstyling: string = ''\n export let clientstylingurl: string = ''\n export let translationurl: string = ''\n export let programid: string = ''\n export let loginevent: string = ''\n export let loginurl: string = ''\n export let currentinfo: CurrentInfo = CurrentInfo.RemainingTimes\n export let giftimagesrc: string = ''\n export let isshowhistory: string = 'true'\n export let contentdirection: keyof typeof ContentDirection = 'anticlockwise'\n \n let rootContainer: HTMLElement\n $: clientstyling && rootContainer && setClientStyling(rootContainer, clientstyling);\n $: clientstylingurl && rootContainer && setClientStylingURL(clientstylingurl, (_clientstyling) => clientstyling = _clientstyling);\n $: translationurl && setTranslationUrl(translationurl);\n\n $: commonProps = {\n endpoint,\n lang,\n session,\n clientstyling,\n }\n\n let isMounted = false\n $: isMounted && init()\n onMount(() => {\n isMounted = true\n return () => isMounted = false\n })\n\n setLocaleWhenInit()\n\n let bonuses: LotteryProgramForPlayer[] = []\n let loading: boolean = true;\n\n $: hasSession = session && session !== 'false'\n\n const init = async () => {\n loading = true\n if(!hasSession) {\n loginAction(loginevent, loginurl)\n return;\n }\n \n if(!isMounted || !lang || !session || !endpoint) return;\n \n loading = true\n await fetcher()\n loading = false\n }\n\n const fetcher = async () => {\n const _bonuses = await api.lotteries(endpoint, session)\n \n _postMessage({ type: 'wof-private-bonuses-outcomes', bonuses: _bonuses })\n\n bonuses = \n _bonuses\n .map(_bonus => {\n if(!isBonusInvalid(_bonus)){\n return _bonus\n }\n })\n .filter(_bonus => _bonus)\n \n _postMessage({ type: 'WofStatus', avaliable: bonuses.length > 0 })\n _postMessage({ type: 'wof-private-bonuses', bonuses })\n }\n\n const loginAction = (loginevent, loginurl) => {\n if (loginevent) {\n window.postMessage({ type: loginevent, transition: 'Login' }, window.location.href);\n }\n \n if (loginurl) {\n window.location = loginurl;\n }\n }\n\n const setLangReactive = () => {\n setLocale(lang)\n init()\n }\n\n onMountMessageLifeCycle({\n 'wof-private-checking': (data) => {\n if(isBonusInvalid(data.bonus)){\n bonuses = bonuses.map(_bonus => {\n if(_bonus.program.id === data.id){\n return {..._bonus, hidden: true}\n }else{\n return _bonus\n }\n })\n }\n\n let hidden = true\n bonuses.map(_bonus => {\n if(_bonus.hidden !== true){\n hidden = false\n }\n })\n\n if(hidden){\n bonuses = []\n }\n }\n })\n\n $: session && init()\n $: endpoint && init()\n $: lang && setLangReactive()\n\n</script>\n\n<div class=\"WofContainer\" bind:this={rootContainer}>\n <lottery-program-wof-private-tabs {...commonProps} {isshowhistory}>\n <div slot=\"tab-Program\">\n <div class=\"CommonContainer\">\n {#if loading}\n <wof-loader />\n {:else}\n {#if bonuses.length}\n {#each bonuses as bonus}\n <lottery-program-wof-private-item {...{\n ...commonProps,\n id: bonus.program.id,\n currentinfo,\n giftimagesrc,\n contentdirection,\n }} />\n {/each}\n {:else}\n <div class=\"NoContent\">\n <p>{$_('wof.NoContent')}</p>\n </div>\n {/if}\n {/if}\n </div>\n </div>\n <div slot=\"tab-History\">\n <lottery-program-wof-private-outcomes {...{\n ...commonProps,\n id: bonuses.find(_bonus => _bonus.program.id === programid)?.program.id,\n }} />\n </div>\n </lottery-program-wof-private-tabs>\n</div>\n\n\n<style lang=\"scss\">\n\n lottery-program-wof-private-item {\n display: inline-block;\n }\n\n *,\n *::before,\n *::after {\n margin: 0;\n padding: 0;\n list-style: none;\n text-decoration: none;\n outline: none;\n box-sizing: border-box;\n }\n\n .WofContainer {\n display: flex;\n align-items: center;\n flex-direction: column;\n padding: 20px 0;\n background: var(--emfe-w-color-contrast, #07072A);\n }\n\n .NoContent {\n color: rgb(255, 255, 255);\n min-height: 300px;\n display: flex;\n justify-content: center;\n align-items: center;\n font-size: 16px;\n }\n \n .CommonContainer {\n display: flex;\n flex-wrap: wrap;\n justify-content: center;\n }\n</style>","import LotteryProgramWof from './LotteryProgramWof.svelte';\n// @ts-ignore\n!customElements.get('lottery-program-wof') && customElements.define('lottery-program-wof', LotteryProgramWof);\nexport default LotteryProgramWof;\n"],"names":["flush","img","deepmerge","getOptions","locale","dictionary","create_if_block_3","create_if_block_2","create_if_block","giftSvg","create_if_block_1","Thankyou1Svg","themeBgBlackRing","themeBgHalo","theme1Bg3","theme2Bg3","theme3Bg2","theme3Bg1","theme7Bg3","theme7Bg2","theme7Bg1","themeCenter1","theme2Center","theme2Arrow","theme3Center","theme3Arrow","theme7Arrow","themeCenter2","theme7Center","themeShadow","theme7Light","themePartitionLight","themePointerArea"],"mappings":"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KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,KAAK,EAAE;IACX,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,QAAQ,EAAE;IACd,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,QAAQ,EAAE;IACd,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,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C,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM;IACvC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,M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"}
1
+ {"version":3,"file":"lottery-program-wof.js","sources":["../node_modules/svelte/internal/index.mjs","../src/images/gift.svg","../../../node_modules/tslib/tslib.es6.js","../src/message.ts","../node_modules/svelte/store/index.mjs","../../../node_modules/deepmerge/dist/cjs.js","../../../node_modules/@formatjs/icu-messageformat-parser/lib/error.js","../../../node_modules/@formatjs/icu-messageformat-parser/lib/types.js","../../../node_modules/@formatjs/icu-messageformat-parser/lib/regex.generated.js","../../../node_modules/@formatjs/icu-skeleton-parser/lib/date-time.js","../../../node_modules/@formatjs/icu-skeleton-parser/lib/regex.generated.js","../../../node_modules/@formatjs/icu-skeleton-parser/lib/number.js","../../../node_modules/@formatjs/icu-messageformat-parser/lib/time-data.generated.js","../../../node_modules/@formatjs/icu-messageformat-parser/lib/date-time-pattern-generator.js","../../../node_modules/@formatjs/icu-messageformat-parser/lib/parser.js","../../../node_modules/@formatjs/icu-messageformat-parser/lib/index.js","../../../node_modules/@formatjs/fast-memoize/lib/index.js","../../../node_modules/intl-messageformat/lib/src/error.js","../../../node_modules/intl-messageformat/lib/src/formatters.js","../../../node_modules/intl-messageformat/lib/src/core.js","../../../node_modules/svelte-i18n/dist/runtime.esm.js","../src/translations.js","../src/i18n.ts","../src/util.ts","../src/widget.ts","../src/private.message.svelte","../src/types.ts","../src/private.tabs.svelte","../src/calc.ts","../src/types.business.ts","../src/images/Thankyou_1.svg","../src/business.partition.ts","../src/business.ts","../src/private.loader.svelte","../src/private.outcomes.svelte","../src/themes.ts","../src/class.spinner.util.ts","../src/class.spinner.ts","../src/calc.point.ts","../src/class.svgcalc.ts","../src/class.process.ts","../src/images/theme.bg.halo.svg","../src/images/theme.bg.blackring.svg","../src/images/themeCenter1.svg","../src/images/themeCenter2.svg","../src/images/themePartitionLight.svg","../src/images/themePointerArea.svg","../src/images/theme1Bg3.svg","../src/images/theme2Bg3.svg","../src/images/theme2Arrow.svg","../src/images/theme3Bg1.svg","../src/images/theme3Bg2.svg","../src/images/theme3Arrow.svg","../src/images/theme7Bg1.svg","../src/images/theme7Bg2.svg","../src/images/theme7Bg3.svg","../src/images/theme2Center.svg","../src/images/theme3Center.svg","../src/images/theme7Center.svg","../src/images/theme7Light.svg","../src/images/theme7Arrow.svg","../src/images/themeShadow.svg","../src/themes.image.center.ts","../src/private.item.svg.svelte","../src/private.item.svelte","../src/LotteryProgramWof.svelte","../src/index.ts"],"sourcesContent":["function noop() { }\nconst identity = x => x;\nfunction assign(tar, src) {\n // @ts-ignore\n for (const k in src)\n tar[k] = src[k];\n return tar;\n}\n// Adapted from https://github.com/then/is-promise/blob/master/index.js\n// Distributed under MIT License https://github.com/then/is-promise/blob/master/LICENSE\nfunction is_promise(value) {\n return !!value && (typeof value === 'object' || typeof value === 'function') && typeof value.then === 'function';\n}\nfunction add_location(element, file, line, column, char) {\n element.__svelte_meta = {\n loc: { file, line, column, char }\n };\n}\nfunction run(fn) {\n return fn();\n}\nfunction blank_object() {\n return Object.create(null);\n}\nfunction run_all(fns) {\n fns.forEach(run);\n}\nfunction is_function(thing) {\n return typeof thing === 'function';\n}\nfunction safe_not_equal(a, b) {\n return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function');\n}\nlet src_url_equal_anchor;\nfunction src_url_equal(element_src, url) {\n if (!src_url_equal_anchor) {\n src_url_equal_anchor = document.createElement('a');\n }\n src_url_equal_anchor.href = url;\n return element_src === src_url_equal_anchor.href;\n}\nfunction not_equal(a, b) {\n return a != a ? b == b : a !== b;\n}\nfunction is_empty(obj) {\n return Object.keys(obj).length === 0;\n}\nfunction validate_store(store, name) {\n if (store != null && typeof store.subscribe !== 'function') {\n throw new Error(`'${name}' is not a store with a 'subscribe' method`);\n }\n}\nfunction subscribe(store, ...callbacks) {\n if (store == null) {\n return noop;\n }\n const unsub = store.subscribe(...callbacks);\n return unsub.unsubscribe ? () => unsub.unsubscribe() : unsub;\n}\nfunction get_store_value(store) {\n let value;\n subscribe(store, _ => value = _)();\n return value;\n}\nfunction component_subscribe(component, store, callback) {\n component.$$.on_destroy.push(subscribe(store, callback));\n}\nfunction create_slot(definition, ctx, $$scope, fn) {\n if (definition) {\n const slot_ctx = get_slot_context(definition, ctx, $$scope, fn);\n return definition[0](slot_ctx);\n }\n}\nfunction get_slot_context(definition, ctx, $$scope, fn) {\n return definition[1] && fn\n ? assign($$scope.ctx.slice(), definition[1](fn(ctx)))\n : $$scope.ctx;\n}\nfunction get_slot_changes(definition, $$scope, dirty, fn) {\n if (definition[2] && fn) {\n const lets = definition[2](fn(dirty));\n if ($$scope.dirty === undefined) {\n return lets;\n }\n if (typeof lets === 'object') {\n const merged = [];\n const len = Math.max($$scope.dirty.length, lets.length);\n for (let i = 0; i < len; i += 1) {\n merged[i] = $$scope.dirty[i] | lets[i];\n }\n return merged;\n }\n return $$scope.dirty | lets;\n }\n return $$scope.dirty;\n}\nfunction update_slot_base(slot, slot_definition, ctx, $$scope, slot_changes, get_slot_context_fn) {\n if (slot_changes) {\n const slot_context = get_slot_context(slot_definition, ctx, $$scope, get_slot_context_fn);\n slot.p(slot_context, slot_changes);\n }\n}\nfunction update_slot(slot, slot_definition, ctx, $$scope, dirty, get_slot_changes_fn, get_slot_context_fn) {\n const slot_changes = get_slot_changes(slot_definition, $$scope, dirty, get_slot_changes_fn);\n update_slot_base(slot, slot_definition, ctx, $$scope, slot_changes, get_slot_context_fn);\n}\nfunction get_all_dirty_from_scope($$scope) {\n if ($$scope.ctx.length > 32) {\n const dirty = [];\n const length = $$scope.ctx.length / 32;\n for (let i = 0; i < length; i++) {\n dirty[i] = -1;\n }\n return dirty;\n }\n return -1;\n}\nfunction exclude_internal_props(props) {\n const result = {};\n for (const k in props)\n if (k[0] !== '$')\n result[k] = props[k];\n return result;\n}\nfunction compute_rest_props(props, keys) {\n const rest = {};\n keys = new Set(keys);\n for (const k in props)\n if (!keys.has(k) && k[0] !== '$')\n rest[k] = props[k];\n return rest;\n}\nfunction compute_slots(slots) {\n const result = {};\n for (const key in slots) {\n result[key] = true;\n }\n return result;\n}\nfunction once(fn) {\n let ran = false;\n return function (...args) {\n if (ran)\n return;\n ran = true;\n fn.call(this, ...args);\n };\n}\nfunction null_to_empty(value) {\n return value == null ? '' : value;\n}\nfunction set_store_value(store, ret, value) {\n store.set(value);\n return ret;\n}\nconst has_prop = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop);\nfunction action_destroyer(action_result) {\n return action_result && is_function(action_result.destroy) ? action_result.destroy : noop;\n}\nfunction split_css_unit(value) {\n const split = typeof value === 'string' && value.match(/^\\s*(-?[\\d.]+)([^\\s]*)\\s*$/);\n return split ? [parseFloat(split[1]), split[2] || 'px'] : [value, 'px'];\n}\nconst contenteditable_truthy_values = ['', true, 1, 'true', 'contenteditable'];\n\nconst is_client = typeof window !== 'undefined';\nlet now = is_client\n ? () => window.performance.now()\n : () => Date.now();\nlet raf = is_client ? cb => requestAnimationFrame(cb) : noop;\n// used internally for testing\nfunction set_now(fn) {\n now = fn;\n}\nfunction set_raf(fn) {\n raf = fn;\n}\n\nconst tasks = new Set();\nfunction run_tasks(now) {\n tasks.forEach(task => {\n if (!task.c(now)) {\n tasks.delete(task);\n task.f();\n }\n });\n if (tasks.size !== 0)\n raf(run_tasks);\n}\n/**\n * For testing purposes only!\n */\nfunction clear_loops() {\n tasks.clear();\n}\n/**\n * Creates a new task that runs on each raf frame\n * until it returns a falsy value or is aborted\n */\nfunction loop(callback) {\n let task;\n if (tasks.size === 0)\n raf(run_tasks);\n return {\n promise: new Promise(fulfill => {\n tasks.add(task = { c: callback, f: fulfill });\n }),\n abort() {\n tasks.delete(task);\n }\n };\n}\n\nconst globals = (typeof window !== 'undefined'\n ? window\n : typeof globalThis !== 'undefined'\n ? globalThis\n : global);\n\n/**\n * Resize observer singleton.\n * One listener per element only!\n * https://groups.google.com/a/chromium.org/g/blink-dev/c/z6ienONUb5A/m/F5-VcUZtBAAJ\n */\nclass ResizeObserverSingleton {\n constructor(options) {\n this.options = options;\n this._listeners = 'WeakMap' in globals ? new WeakMap() : undefined;\n }\n observe(element, listener) {\n this._listeners.set(element, listener);\n this._getObserver().observe(element, this.options);\n return () => {\n this._listeners.delete(element);\n this._observer.unobserve(element); // this line can probably be removed\n };\n }\n _getObserver() {\n var _a;\n return (_a = this._observer) !== null && _a !== void 0 ? _a : (this._observer = new ResizeObserver((entries) => {\n var _a;\n for (const entry of entries) {\n ResizeObserverSingleton.entries.set(entry.target, entry);\n (_a = this._listeners.get(entry.target)) === null || _a === void 0 ? void 0 : _a(entry);\n }\n }));\n }\n}\n// Needs to be written like this to pass the tree-shake-test\nResizeObserverSingleton.entries = 'WeakMap' in globals ? new WeakMap() : undefined;\n\n// Track which nodes are claimed during hydration. Unclaimed nodes can then be removed from the DOM\n// at the end of hydration without touching the remaining nodes.\nlet is_hydrating = false;\nfunction start_hydrating() {\n is_hydrating = true;\n}\nfunction end_hydrating() {\n is_hydrating = false;\n}\nfunction upper_bound(low, high, key, value) {\n // Return first index of value larger than input value in the range [low, high)\n while (low < high) {\n const mid = low + ((high - low) >> 1);\n if (key(mid) <= value) {\n low = mid + 1;\n }\n else {\n high = mid;\n }\n }\n return low;\n}\nfunction init_hydrate(target) {\n if (target.hydrate_init)\n return;\n target.hydrate_init = true;\n // We know that all children have claim_order values since the unclaimed have been detached if target is not <head>\n let children = target.childNodes;\n // If target is <head>, there may be children without claim_order\n if (target.nodeName === 'HEAD') {\n const myChildren = [];\n for (let i = 0; i < children.length; i++) {\n const node = children[i];\n if (node.claim_order !== undefined) {\n myChildren.push(node);\n }\n }\n children = myChildren;\n }\n /*\n * Reorder claimed children optimally.\n * We can reorder claimed children optimally by finding the longest subsequence of\n * nodes that are already claimed in order and only moving the rest. The longest\n * subsequence of nodes that are claimed in order can be found by\n * computing the longest increasing subsequence of .claim_order values.\n *\n * This algorithm is optimal in generating the least amount of reorder operations\n * possible.\n *\n * Proof:\n * We know that, given a set of reordering operations, the nodes that do not move\n * always form an increasing subsequence, since they do not move among each other\n * meaning that they must be already ordered among each other. Thus, the maximal\n * set of nodes that do not move form a longest increasing subsequence.\n */\n // Compute longest increasing subsequence\n // m: subsequence length j => index k of smallest value that ends an increasing subsequence of length j\n const m = new Int32Array(children.length + 1);\n // Predecessor indices + 1\n const p = new Int32Array(children.length);\n m[0] = -1;\n let longest = 0;\n for (let i = 0; i < children.length; i++) {\n const current = children[i].claim_order;\n // Find the largest subsequence length such that it ends in a value less than our current value\n // upper_bound returns first greater value, so we subtract one\n // with fast path for when we are on the current longest subsequence\n const seqLen = ((longest > 0 && children[m[longest]].claim_order <= current) ? longest + 1 : upper_bound(1, longest, idx => children[m[idx]].claim_order, current)) - 1;\n p[i] = m[seqLen] + 1;\n const newLen = seqLen + 1;\n // We can guarantee that current is the smallest value. Otherwise, we would have generated a longer sequence.\n m[newLen] = i;\n longest = Math.max(newLen, longest);\n }\n // The longest increasing subsequence of nodes (initially reversed)\n const lis = [];\n // The rest of the nodes, nodes that will be moved\n const toMove = [];\n let last = children.length - 1;\n for (let cur = m[longest] + 1; cur != 0; cur = p[cur - 1]) {\n lis.push(children[cur - 1]);\n for (; last >= cur; last--) {\n toMove.push(children[last]);\n }\n last--;\n }\n for (; last >= 0; last--) {\n toMove.push(children[last]);\n }\n lis.reverse();\n // We sort the nodes being moved to guarantee that their insertion order matches the claim order\n toMove.sort((a, b) => a.claim_order - b.claim_order);\n // Finally, we move the nodes\n for (let i = 0, j = 0; i < toMove.length; i++) {\n while (j < lis.length && toMove[i].claim_order >= lis[j].claim_order) {\n j++;\n }\n const anchor = j < lis.length ? lis[j] : null;\n target.insertBefore(toMove[i], anchor);\n }\n}\nfunction append(target, node) {\n target.appendChild(node);\n}\nfunction append_styles(target, style_sheet_id, styles) {\n const append_styles_to = get_root_for_style(target);\n if (!append_styles_to.getElementById(style_sheet_id)) {\n const style = element('style');\n style.id = style_sheet_id;\n style.textContent = styles;\n append_stylesheet(append_styles_to, style);\n }\n}\nfunction get_root_for_style(node) {\n if (!node)\n return document;\n const root = node.getRootNode ? node.getRootNode() : node.ownerDocument;\n if (root && root.host) {\n return root;\n }\n return node.ownerDocument;\n}\nfunction append_empty_stylesheet(node) {\n const style_element = element('style');\n append_stylesheet(get_root_for_style(node), style_element);\n return style_element.sheet;\n}\nfunction append_stylesheet(node, style) {\n append(node.head || node, style);\n return style.sheet;\n}\nfunction append_hydration(target, node) {\n if (is_hydrating) {\n init_hydrate(target);\n if ((target.actual_end_child === undefined) || ((target.actual_end_child !== null) && (target.actual_end_child.parentNode !== target))) {\n target.actual_end_child = target.firstChild;\n }\n // Skip nodes of undefined ordering\n while ((target.actual_end_child !== null) && (target.actual_end_child.claim_order === undefined)) {\n target.actual_end_child = target.actual_end_child.nextSibling;\n }\n if (node !== target.actual_end_child) {\n // We only insert if the ordering of this node should be modified or the parent node is not target\n if (node.claim_order !== undefined || node.parentNode !== target) {\n target.insertBefore(node, target.actual_end_child);\n }\n }\n else {\n target.actual_end_child = node.nextSibling;\n }\n }\n else if (node.parentNode !== target || node.nextSibling !== null) {\n target.appendChild(node);\n }\n}\nfunction insert(target, node, anchor) {\n target.insertBefore(node, anchor || null);\n}\nfunction insert_hydration(target, node, anchor) {\n if (is_hydrating && !anchor) {\n append_hydration(target, node);\n }\n else if (node.parentNode !== target || node.nextSibling != anchor) {\n target.insertBefore(node, anchor || null);\n }\n}\nfunction detach(node) {\n if (node.parentNode) {\n node.parentNode.removeChild(node);\n }\n}\nfunction destroy_each(iterations, detaching) {\n for (let i = 0; i < iterations.length; i += 1) {\n if (iterations[i])\n iterations[i].d(detaching);\n }\n}\nfunction element(name) {\n return document.createElement(name);\n}\nfunction element_is(name, is) {\n return document.createElement(name, { is });\n}\nfunction object_without_properties(obj, exclude) {\n const target = {};\n for (const k in obj) {\n if (has_prop(obj, k)\n // @ts-ignore\n && exclude.indexOf(k) === -1) {\n // @ts-ignore\n target[k] = obj[k];\n }\n }\n return target;\n}\nfunction svg_element(name) {\n return document.createElementNS('http://www.w3.org/2000/svg', name);\n}\nfunction text(data) {\n return document.createTextNode(data);\n}\nfunction space() {\n return text(' ');\n}\nfunction empty() {\n return text('');\n}\nfunction comment(content) {\n return document.createComment(content);\n}\nfunction listen(node, event, handler, options) {\n node.addEventListener(event, handler, options);\n return () => node.removeEventListener(event, handler, options);\n}\nfunction prevent_default(fn) {\n return function (event) {\n event.preventDefault();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction stop_propagation(fn) {\n return function (event) {\n event.stopPropagation();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction stop_immediate_propagation(fn) {\n return function (event) {\n event.stopImmediatePropagation();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction self(fn) {\n return function (event) {\n // @ts-ignore\n if (event.target === this)\n fn.call(this, event);\n };\n}\nfunction trusted(fn) {\n return function (event) {\n // @ts-ignore\n if (event.isTrusted)\n fn.call(this, event);\n };\n}\nfunction attr(node, attribute, value) {\n if (value == null)\n node.removeAttribute(attribute);\n else if (node.getAttribute(attribute) !== value)\n node.setAttribute(attribute, value);\n}\n/**\n * List of attributes that should always be set through the attr method,\n * because updating them through the property setter doesn't work reliably.\n * In the example of `width`/`height`, the problem is that the setter only\n * accepts numeric values, but the attribute can also be set to a string like `50%`.\n * If this list becomes too big, rethink this approach.\n */\nconst always_set_through_set_attribute = ['width', 'height'];\nfunction set_attributes(node, attributes) {\n // @ts-ignore\n const descriptors = Object.getOwnPropertyDescriptors(node.__proto__);\n for (const key in attributes) {\n if (attributes[key] == null) {\n node.removeAttribute(key);\n }\n else if (key === 'style') {\n node.style.cssText = attributes[key];\n }\n else if (key === '__value') {\n node.value = node[key] = attributes[key];\n }\n else if (descriptors[key] && descriptors[key].set && always_set_through_set_attribute.indexOf(key) === -1) {\n node[key] = attributes[key];\n }\n else {\n attr(node, key, attributes[key]);\n }\n }\n}\nfunction set_svg_attributes(node, attributes) {\n for (const key in attributes) {\n attr(node, key, attributes[key]);\n }\n}\nfunction set_custom_element_data_map(node, data_map) {\n Object.keys(data_map).forEach((key) => {\n set_custom_element_data(node, key, data_map[key]);\n });\n}\nfunction set_custom_element_data(node, prop, value) {\n if (prop in node) {\n node[prop] = typeof node[prop] === 'boolean' && value === '' ? true : value;\n }\n else {\n attr(node, prop, value);\n }\n}\nfunction set_dynamic_element_data(tag) {\n return (/-/.test(tag)) ? set_custom_element_data_map : set_attributes;\n}\nfunction xlink_attr(node, attribute, value) {\n node.setAttributeNS('http://www.w3.org/1999/xlink', attribute, value);\n}\nfunction get_binding_group_value(group, __value, checked) {\n const value = new Set();\n for (let i = 0; i < group.length; i += 1) {\n if (group[i].checked)\n value.add(group[i].__value);\n }\n if (!checked) {\n value.delete(__value);\n }\n return Array.from(value);\n}\nfunction init_binding_group(group) {\n let _inputs;\n return {\n /* push */ p(...inputs) {\n _inputs = inputs;\n _inputs.forEach(input => group.push(input));\n },\n /* remove */ r() {\n _inputs.forEach(input => group.splice(group.indexOf(input), 1));\n }\n };\n}\nfunction init_binding_group_dynamic(group, indexes) {\n let _group = get_binding_group(group);\n let _inputs;\n function get_binding_group(group) {\n for (let i = 0; i < indexes.length; i++) {\n group = group[indexes[i]] = group[indexes[i]] || [];\n }\n return group;\n }\n function push() {\n _inputs.forEach(input => _group.push(input));\n }\n function remove() {\n _inputs.forEach(input => _group.splice(_group.indexOf(input), 1));\n }\n return {\n /* update */ u(new_indexes) {\n indexes = new_indexes;\n const new_group = get_binding_group(group);\n if (new_group !== _group) {\n remove();\n _group = new_group;\n push();\n }\n },\n /* push */ p(...inputs) {\n _inputs = inputs;\n push();\n },\n /* remove */ r: remove\n };\n}\nfunction to_number(value) {\n return value === '' ? null : +value;\n}\nfunction time_ranges_to_array(ranges) {\n const array = [];\n for (let i = 0; i < ranges.length; i += 1) {\n array.push({ start: ranges.start(i), end: ranges.end(i) });\n }\n return array;\n}\nfunction children(element) {\n return Array.from(element.childNodes);\n}\nfunction init_claim_info(nodes) {\n if (nodes.claim_info === undefined) {\n nodes.claim_info = { last_index: 0, total_claimed: 0 };\n }\n}\nfunction claim_node(nodes, predicate, processNode, createNode, dontUpdateLastIndex = false) {\n // Try to find nodes in an order such that we lengthen the longest increasing subsequence\n init_claim_info(nodes);\n const resultNode = (() => {\n // We first try to find an element after the previous one\n for (let i = nodes.claim_info.last_index; i < nodes.length; i++) {\n const node = nodes[i];\n if (predicate(node)) {\n const replacement = processNode(node);\n if (replacement === undefined) {\n nodes.splice(i, 1);\n }\n else {\n nodes[i] = replacement;\n }\n if (!dontUpdateLastIndex) {\n nodes.claim_info.last_index = i;\n }\n return node;\n }\n }\n // Otherwise, we try to find one before\n // We iterate in reverse so that we don't go too far back\n for (let i = nodes.claim_info.last_index - 1; i >= 0; i--) {\n const node = nodes[i];\n if (predicate(node)) {\n const replacement = processNode(node);\n if (replacement === undefined) {\n nodes.splice(i, 1);\n }\n else {\n nodes[i] = replacement;\n }\n if (!dontUpdateLastIndex) {\n nodes.claim_info.last_index = i;\n }\n else if (replacement === undefined) {\n // Since we spliced before the last_index, we decrease it\n nodes.claim_info.last_index--;\n }\n return node;\n }\n }\n // If we can't find any matching node, we create a new one\n return createNode();\n })();\n resultNode.claim_order = nodes.claim_info.total_claimed;\n nodes.claim_info.total_claimed += 1;\n return resultNode;\n}\nfunction claim_element_base(nodes, name, attributes, create_element) {\n return claim_node(nodes, (node) => node.nodeName === name, (node) => {\n const remove = [];\n for (let j = 0; j < node.attributes.length; j++) {\n const attribute = node.attributes[j];\n if (!attributes[attribute.name]) {\n remove.push(attribute.name);\n }\n }\n remove.forEach(v => node.removeAttribute(v));\n return undefined;\n }, () => create_element(name));\n}\nfunction claim_element(nodes, name, attributes) {\n return claim_element_base(nodes, name, attributes, element);\n}\nfunction claim_svg_element(nodes, name, attributes) {\n return claim_element_base(nodes, name, attributes, svg_element);\n}\nfunction claim_text(nodes, data) {\n return claim_node(nodes, (node) => node.nodeType === 3, (node) => {\n const dataStr = '' + data;\n if (node.data.startsWith(dataStr)) {\n if (node.data.length !== dataStr.length) {\n return node.splitText(dataStr.length);\n }\n }\n else {\n node.data = dataStr;\n }\n }, () => text(data), true // Text nodes should not update last index since it is likely not worth it to eliminate an increasing subsequence of actual elements\n );\n}\nfunction claim_space(nodes) {\n return claim_text(nodes, ' ');\n}\nfunction claim_comment(nodes, data) {\n return claim_node(nodes, (node) => node.nodeType === 8, (node) => {\n node.data = '' + data;\n return undefined;\n }, () => comment(data), true);\n}\nfunction find_comment(nodes, text, start) {\n for (let i = start; i < nodes.length; i += 1) {\n const node = nodes[i];\n if (node.nodeType === 8 /* comment node */ && node.textContent.trim() === text) {\n return i;\n }\n }\n return nodes.length;\n}\nfunction claim_html_tag(nodes, is_svg) {\n // find html opening tag\n const start_index = find_comment(nodes, 'HTML_TAG_START', 0);\n const end_index = find_comment(nodes, 'HTML_TAG_END', start_index);\n if (start_index === end_index) {\n return new HtmlTagHydration(undefined, is_svg);\n }\n init_claim_info(nodes);\n const html_tag_nodes = nodes.splice(start_index, end_index - start_index + 1);\n detach(html_tag_nodes[0]);\n detach(html_tag_nodes[html_tag_nodes.length - 1]);\n const claimed_nodes = html_tag_nodes.slice(1, html_tag_nodes.length - 1);\n for (const n of claimed_nodes) {\n n.claim_order = nodes.claim_info.total_claimed;\n nodes.claim_info.total_claimed += 1;\n }\n return new HtmlTagHydration(claimed_nodes, is_svg);\n}\nfunction set_data(text, data) {\n data = '' + data;\n if (text.data === data)\n return;\n text.data = data;\n}\nfunction set_data_contenteditable(text, data) {\n data = '' + data;\n if (text.wholeText === data)\n return;\n text.data = data;\n}\nfunction set_data_maybe_contenteditable(text, data, attr_value) {\n if (~contenteditable_truthy_values.indexOf(attr_value)) {\n set_data_contenteditable(text, data);\n }\n else {\n set_data(text, data);\n }\n}\nfunction set_input_value(input, value) {\n input.value = value == null ? '' : value;\n}\nfunction set_input_type(input, type) {\n try {\n input.type = type;\n }\n catch (e) {\n // do nothing\n }\n}\nfunction set_style(node, key, value, important) {\n if (value == null) {\n node.style.removeProperty(key);\n }\n else {\n node.style.setProperty(key, value, important ? 'important' : '');\n }\n}\nfunction select_option(select, value, mounting) {\n for (let i = 0; i < select.options.length; i += 1) {\n const option = select.options[i];\n if (option.__value === value) {\n option.selected = true;\n return;\n }\n }\n if (!mounting || value !== undefined) {\n select.selectedIndex = -1; // no option should be selected\n }\n}\nfunction select_options(select, value) {\n for (let i = 0; i < select.options.length; i += 1) {\n const option = select.options[i];\n option.selected = ~value.indexOf(option.__value);\n }\n}\nfunction select_value(select) {\n const selected_option = select.querySelector(':checked');\n return selected_option && selected_option.__value;\n}\nfunction select_multiple_value(select) {\n return [].map.call(select.querySelectorAll(':checked'), option => option.__value);\n}\n// unfortunately this can't be a constant as that wouldn't be tree-shakeable\n// so we cache the result instead\nlet crossorigin;\nfunction is_crossorigin() {\n if (crossorigin === undefined) {\n crossorigin = false;\n try {\n if (typeof window !== 'undefined' && window.parent) {\n void window.parent.document;\n }\n }\n catch (error) {\n crossorigin = true;\n }\n }\n return crossorigin;\n}\nfunction add_iframe_resize_listener(node, fn) {\n const computed_style = getComputedStyle(node);\n if (computed_style.position === 'static') {\n node.style.position = 'relative';\n }\n const iframe = element('iframe');\n iframe.setAttribute('style', 'display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; ' +\n 'overflow: hidden; border: 0; opacity: 0; pointer-events: none; z-index: -1;');\n iframe.setAttribute('aria-hidden', 'true');\n iframe.tabIndex = -1;\n const crossorigin = is_crossorigin();\n let unsubscribe;\n if (crossorigin) {\n iframe.src = \"data:text/html,<script>onresize=function(){parent.postMessage(0,'*')}</script>\";\n unsubscribe = listen(window, 'message', (event) => {\n if (event.source === iframe.contentWindow)\n fn();\n });\n }\n else {\n iframe.src = 'about:blank';\n iframe.onload = () => {\n unsubscribe = listen(iframe.contentWindow, 'resize', fn);\n // make sure an initial resize event is fired _after_ the iframe is loaded (which is asynchronous)\n // see https://github.com/sveltejs/svelte/issues/4233\n fn();\n };\n }\n append(node, iframe);\n return () => {\n if (crossorigin) {\n unsubscribe();\n }\n else if (unsubscribe && iframe.contentWindow) {\n unsubscribe();\n }\n detach(iframe);\n };\n}\nconst resize_observer_content_box = /* @__PURE__ */ new ResizeObserverSingleton({ box: 'content-box' });\nconst resize_observer_border_box = /* @__PURE__ */ new ResizeObserverSingleton({ box: 'border-box' });\nconst resize_observer_device_pixel_content_box = /* @__PURE__ */ new ResizeObserverSingleton({ box: 'device-pixel-content-box' });\nfunction toggle_class(element, name, toggle) {\n element.classList[toggle ? 'add' : 'remove'](name);\n}\nfunction custom_event(type, detail, { bubbles = false, cancelable = false } = {}) {\n const e = document.createEvent('CustomEvent');\n e.initCustomEvent(type, bubbles, cancelable, detail);\n return e;\n}\nfunction query_selector_all(selector, parent = document.body) {\n return Array.from(parent.querySelectorAll(selector));\n}\nfunction head_selector(nodeId, head) {\n const result = [];\n let started = 0;\n for (const node of head.childNodes) {\n if (node.nodeType === 8 /* comment node */) {\n const comment = node.textContent.trim();\n if (comment === `HEAD_${nodeId}_END`) {\n started -= 1;\n result.push(node);\n }\n else if (comment === `HEAD_${nodeId}_START`) {\n started += 1;\n result.push(node);\n }\n }\n else if (started > 0) {\n result.push(node);\n }\n }\n return result;\n}\nclass HtmlTag {\n constructor(is_svg = false) {\n this.is_svg = false;\n this.is_svg = is_svg;\n this.e = this.n = null;\n }\n c(html) {\n this.h(html);\n }\n m(html, target, anchor = null) {\n if (!this.e) {\n if (this.is_svg)\n this.e = svg_element(target.nodeName);\n /** #7364 target for <template> may be provided as #document-fragment(11) */\n else\n this.e = element((target.nodeType === 11 ? 'TEMPLATE' : target.nodeName));\n this.t = target.tagName !== 'TEMPLATE' ? target : target.content;\n this.c(html);\n }\n this.i(anchor);\n }\n h(html) {\n this.e.innerHTML = html;\n this.n = Array.from(this.e.nodeName === 'TEMPLATE' ? this.e.content.childNodes : this.e.childNodes);\n }\n i(anchor) {\n for (let i = 0; i < this.n.length; i += 1) {\n insert(this.t, this.n[i], anchor);\n }\n }\n p(html) {\n this.d();\n this.h(html);\n this.i(this.a);\n }\n d() {\n this.n.forEach(detach);\n }\n}\nclass HtmlTagHydration extends HtmlTag {\n constructor(claimed_nodes, is_svg = false) {\n super(is_svg);\n this.e = this.n = null;\n this.l = claimed_nodes;\n }\n c(html) {\n if (this.l) {\n this.n = this.l;\n }\n else {\n super.c(html);\n }\n }\n i(anchor) {\n for (let i = 0; i < this.n.length; i += 1) {\n insert_hydration(this.t, this.n[i], anchor);\n }\n }\n}\nfunction attribute_to_object(attributes) {\n const result = {};\n for (const attribute of attributes) {\n result[attribute.name] = attribute.value;\n }\n return result;\n}\nfunction get_custom_elements_slots(element) {\n const result = {};\n element.childNodes.forEach((node) => {\n result[node.slot || 'default'] = true;\n });\n return result;\n}\nfunction construct_svelte_component(component, props) {\n return new component(props);\n}\n\n// we need to store the information for multiple documents because a Svelte application could also contain iframes\n// https://github.com/sveltejs/svelte/issues/3624\nconst managed_styles = new Map();\nlet active = 0;\n// https://github.com/darkskyapp/string-hash/blob/master/index.js\nfunction hash(str) {\n let hash = 5381;\n let i = str.length;\n while (i--)\n hash = ((hash << 5) - hash) ^ str.charCodeAt(i);\n return hash >>> 0;\n}\nfunction create_style_information(doc, node) {\n const info = { stylesheet: append_empty_stylesheet(node), rules: {} };\n managed_styles.set(doc, info);\n return info;\n}\nfunction create_rule(node, a, b, duration, delay, ease, fn, uid = 0) {\n const step = 16.666 / duration;\n let keyframes = '{\\n';\n for (let p = 0; p <= 1; p += step) {\n const t = a + (b - a) * ease(p);\n keyframes += p * 100 + `%{${fn(t, 1 - t)}}\\n`;\n }\n const rule = keyframes + `100% {${fn(b, 1 - b)}}\\n}`;\n const name = `__svelte_${hash(rule)}_${uid}`;\n const doc = get_root_for_style(node);\n const { stylesheet, rules } = managed_styles.get(doc) || create_style_information(doc, node);\n if (!rules[name]) {\n rules[name] = true;\n stylesheet.insertRule(`@keyframes ${name} ${rule}`, stylesheet.cssRules.length);\n }\n const animation = node.style.animation || '';\n node.style.animation = `${animation ? `${animation}, ` : ''}${name} ${duration}ms linear ${delay}ms 1 both`;\n active += 1;\n return name;\n}\nfunction delete_rule(node, name) {\n const previous = (node.style.animation || '').split(', ');\n const next = previous.filter(name\n ? anim => anim.indexOf(name) < 0 // remove specific animation\n : anim => anim.indexOf('__svelte') === -1 // remove all Svelte animations\n );\n const deleted = previous.length - next.length;\n if (deleted) {\n node.style.animation = next.join(', ');\n active -= deleted;\n if (!active)\n clear_rules();\n }\n}\nfunction clear_rules() {\n raf(() => {\n if (active)\n return;\n managed_styles.forEach(info => {\n const { ownerNode } = info.stylesheet;\n // there is no ownerNode if it runs on jsdom.\n if (ownerNode)\n detach(ownerNode);\n });\n managed_styles.clear();\n });\n}\n\nfunction create_animation(node, from, fn, params) {\n if (!from)\n return noop;\n const to = node.getBoundingClientRect();\n if (from.left === to.left && from.right === to.right && from.top === to.top && from.bottom === to.bottom)\n return noop;\n const { delay = 0, duration = 300, easing = identity, \n // @ts-ignore todo: should this be separated from destructuring? Or start/end added to public api and documentation?\n start: start_time = now() + delay, \n // @ts-ignore todo:\n end = start_time + duration, tick = noop, css } = fn(node, { from, to }, params);\n let running = true;\n let started = false;\n let name;\n function start() {\n if (css) {\n name = create_rule(node, 0, 1, duration, delay, easing, css);\n }\n if (!delay) {\n started = true;\n }\n }\n function stop() {\n if (css)\n delete_rule(node, name);\n running = false;\n }\n loop(now => {\n if (!started && now >= start_time) {\n started = true;\n }\n if (started && now >= end) {\n tick(1, 0);\n stop();\n }\n if (!running) {\n return false;\n }\n if (started) {\n const p = now - start_time;\n const t = 0 + 1 * easing(p / duration);\n tick(t, 1 - t);\n }\n return true;\n });\n start();\n tick(0, 1);\n return stop;\n}\nfunction fix_position(node) {\n const style = getComputedStyle(node);\n if (style.position !== 'absolute' && style.position !== 'fixed') {\n const { width, height } = style;\n const a = node.getBoundingClientRect();\n node.style.position = 'absolute';\n node.style.width = width;\n node.style.height = height;\n add_transform(node, a);\n }\n}\nfunction add_transform(node, a) {\n const b = node.getBoundingClientRect();\n if (a.left !== b.left || a.top !== b.top) {\n const style = getComputedStyle(node);\n const transform = style.transform === 'none' ? '' : style.transform;\n node.style.transform = `${transform} translate(${a.left - b.left}px, ${a.top - b.top}px)`;\n }\n}\n\nlet current_component;\nfunction set_current_component(component) {\n current_component = component;\n}\nfunction get_current_component() {\n if (!current_component)\n throw new Error('Function called outside component initialization');\n return current_component;\n}\n/**\n * Schedules a callback to run immediately before the component is updated after any state change.\n *\n * The first time the callback runs will be before the initial `onMount`\n *\n * https://svelte.dev/docs#run-time-svelte-beforeupdate\n */\nfunction beforeUpdate(fn) {\n get_current_component().$$.before_update.push(fn);\n}\n/**\n * The `onMount` function schedules a callback to run as soon as the component has been mounted to the DOM.\n * It must be called during the component's initialisation (but doesn't need to live *inside* the component;\n * it can be called from an external module).\n *\n * `onMount` does not run inside a [server-side component](/docs#run-time-server-side-component-api).\n *\n * https://svelte.dev/docs#run-time-svelte-onmount\n */\nfunction onMount(fn) {\n get_current_component().$$.on_mount.push(fn);\n}\n/**\n * Schedules a callback to run immediately after the component has been updated.\n *\n * The first time the callback runs will be after the initial `onMount`\n */\nfunction afterUpdate(fn) {\n get_current_component().$$.after_update.push(fn);\n}\n/**\n * Schedules a callback to run immediately before the component is unmounted.\n *\n * Out of `onMount`, `beforeUpdate`, `afterUpdate` and `onDestroy`, this is the\n * only one that runs inside a server-side component.\n *\n * https://svelte.dev/docs#run-time-svelte-ondestroy\n */\nfunction onDestroy(fn) {\n get_current_component().$$.on_destroy.push(fn);\n}\n/**\n * Creates an event dispatcher that can be used to dispatch [component events](/docs#template-syntax-component-directives-on-eventname).\n * Event dispatchers are functions that can take two arguments: `name` and `detail`.\n *\n * Component events created with `createEventDispatcher` create a\n * [CustomEvent](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent).\n * These events do not [bubble](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks/Events#Event_bubbling_and_capture).\n * The `detail` argument corresponds to the [CustomEvent.detail](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/detail)\n * property and can contain any type of data.\n *\n * https://svelte.dev/docs#run-time-svelte-createeventdispatcher\n */\nfunction createEventDispatcher() {\n const component = get_current_component();\n return (type, detail, { cancelable = false } = {}) => {\n const callbacks = component.$$.callbacks[type];\n if (callbacks) {\n // TODO are there situations where events could be dispatched\n // in a server (non-DOM) environment?\n const event = custom_event(type, detail, { cancelable });\n callbacks.slice().forEach(fn => {\n fn.call(component, event);\n });\n return !event.defaultPrevented;\n }\n return true;\n };\n}\n/**\n * Associates an arbitrary `context` object with the current component and the specified `key`\n * and returns that object. The context is then available to children of the component\n * (including slotted content) with `getContext`.\n *\n * Like lifecycle functions, this must be called during component initialisation.\n *\n * https://svelte.dev/docs#run-time-svelte-setcontext\n */\nfunction setContext(key, context) {\n get_current_component().$$.context.set(key, context);\n return context;\n}\n/**\n * Retrieves the context that belongs to the closest parent component with the specified `key`.\n * Must be called during component initialisation.\n *\n * https://svelte.dev/docs#run-time-svelte-getcontext\n */\nfunction getContext(key) {\n return get_current_component().$$.context.get(key);\n}\n/**\n * Retrieves the whole context map that belongs to the closest parent component.\n * Must be called during component initialisation. Useful, for example, if you\n * programmatically create a component and want to pass the existing context to it.\n *\n * https://svelte.dev/docs#run-time-svelte-getallcontexts\n */\nfunction getAllContexts() {\n return get_current_component().$$.context;\n}\n/**\n * Checks whether a given `key` has been set in the context of a parent component.\n * Must be called during component initialisation.\n *\n * https://svelte.dev/docs#run-time-svelte-hascontext\n */\nfunction hasContext(key) {\n return get_current_component().$$.context.has(key);\n}\n// TODO figure out if we still want to support\n// shorthand events, or if we want to implement\n// a real bubbling mechanism\nfunction bubble(component, event) {\n const callbacks = component.$$.callbacks[event.type];\n if (callbacks) {\n // @ts-ignore\n callbacks.slice().forEach(fn => fn.call(this, event));\n }\n}\n\nconst dirty_components = [];\nconst intros = { enabled: false };\nconst binding_callbacks = [];\nlet render_callbacks = [];\nconst flush_callbacks = [];\nconst resolved_promise = /* @__PURE__ */ Promise.resolve();\nlet update_scheduled = false;\nfunction schedule_update() {\n if (!update_scheduled) {\n update_scheduled = true;\n resolved_promise.then(flush);\n }\n}\nfunction tick() {\n schedule_update();\n return resolved_promise;\n}\nfunction add_render_callback(fn) {\n render_callbacks.push(fn);\n}\nfunction add_flush_callback(fn) {\n flush_callbacks.push(fn);\n}\n// flush() calls callbacks in this order:\n// 1. All beforeUpdate callbacks, in order: parents before children\n// 2. All bind:this callbacks, in reverse order: children before parents.\n// 3. All afterUpdate callbacks, in order: parents before children. EXCEPT\n// for afterUpdates called during the initial onMount, which are called in\n// reverse order: children before parents.\n// Since callbacks might update component values, which could trigger another\n// call to flush(), the following steps guard against this:\n// 1. During beforeUpdate, any updated components will be added to the\n// dirty_components array and will cause a reentrant call to flush(). Because\n// the flush index is kept outside the function, the reentrant call will pick\n// up where the earlier call left off and go through all dirty components. The\n// current_component value is saved and restored so that the reentrant call will\n// not interfere with the \"parent\" flush() call.\n// 2. bind:this callbacks cannot trigger new flush() calls.\n// 3. During afterUpdate, any updated components will NOT have their afterUpdate\n// callback called a second time; the seen_callbacks set, outside the flush()\n// function, guarantees this behavior.\nconst seen_callbacks = new Set();\nlet flushidx = 0; // Do *not* move this inside the flush() function\nfunction flush() {\n // Do not reenter flush while dirty components are updated, as this can\n // result in an infinite loop. Instead, let the inner flush handle it.\n // Reentrancy is ok afterwards for bindings etc.\n if (flushidx !== 0) {\n return;\n }\n const saved_component = current_component;\n do {\n // first, call beforeUpdate functions\n // and update components\n try {\n while (flushidx < dirty_components.length) {\n const component = dirty_components[flushidx];\n flushidx++;\n set_current_component(component);\n update(component.$$);\n }\n }\n catch (e) {\n // reset dirty state to not end up in a deadlocked state and then rethrow\n dirty_components.length = 0;\n flushidx = 0;\n throw e;\n }\n set_current_component(null);\n dirty_components.length = 0;\n flushidx = 0;\n while (binding_callbacks.length)\n binding_callbacks.pop()();\n // then, once components are updated, call\n // afterUpdate functions. This may cause\n // subsequent updates...\n for (let i = 0; i < render_callbacks.length; i += 1) {\n const callback = render_callbacks[i];\n if (!seen_callbacks.has(callback)) {\n // ...so guard against infinite loops\n seen_callbacks.add(callback);\n callback();\n }\n }\n render_callbacks.length = 0;\n } while (dirty_components.length);\n while (flush_callbacks.length) {\n flush_callbacks.pop()();\n }\n update_scheduled = false;\n seen_callbacks.clear();\n set_current_component(saved_component);\n}\nfunction update($$) {\n if ($$.fragment !== null) {\n $$.update();\n run_all($$.before_update);\n const dirty = $$.dirty;\n $$.dirty = [-1];\n $$.fragment && $$.fragment.p($$.ctx, dirty);\n $$.after_update.forEach(add_render_callback);\n }\n}\n/**\n * Useful for example to execute remaining `afterUpdate` callbacks before executing `destroy`.\n */\nfunction flush_render_callbacks(fns) {\n const filtered = [];\n const targets = [];\n render_callbacks.forEach((c) => fns.indexOf(c) === -1 ? filtered.push(c) : targets.push(c));\n targets.forEach((c) => c());\n render_callbacks = filtered;\n}\n\nlet promise;\nfunction wait() {\n if (!promise) {\n promise = Promise.resolve();\n promise.then(() => {\n promise = null;\n });\n }\n return promise;\n}\nfunction dispatch(node, direction, kind) {\n node.dispatchEvent(custom_event(`${direction ? 'intro' : 'outro'}${kind}`));\n}\nconst outroing = new Set();\nlet outros;\nfunction group_outros() {\n outros = {\n r: 0,\n c: [],\n p: outros // parent group\n };\n}\nfunction check_outros() {\n if (!outros.r) {\n run_all(outros.c);\n }\n outros = outros.p;\n}\nfunction transition_in(block, local) {\n if (block && block.i) {\n outroing.delete(block);\n block.i(local);\n }\n}\nfunction transition_out(block, local, detach, callback) {\n if (block && block.o) {\n if (outroing.has(block))\n return;\n outroing.add(block);\n outros.c.push(() => {\n outroing.delete(block);\n if (callback) {\n if (detach)\n block.d(1);\n callback();\n }\n });\n block.o(local);\n }\n else if (callback) {\n callback();\n }\n}\nconst null_transition = { duration: 0 };\nfunction create_in_transition(node, fn, params) {\n const options = { direction: 'in' };\n let config = fn(node, params, options);\n let running = false;\n let animation_name;\n let task;\n let uid = 0;\n function cleanup() {\n if (animation_name)\n delete_rule(node, animation_name);\n }\n function go() {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n if (css)\n animation_name = create_rule(node, 0, 1, duration, delay, easing, css, uid++);\n tick(0, 1);\n const start_time = now() + delay;\n const end_time = start_time + duration;\n if (task)\n task.abort();\n running = true;\n add_render_callback(() => dispatch(node, true, 'start'));\n task = loop(now => {\n if (running) {\n if (now >= end_time) {\n tick(1, 0);\n dispatch(node, true, 'end');\n cleanup();\n return running = false;\n }\n if (now >= start_time) {\n const t = easing((now - start_time) / duration);\n tick(t, 1 - t);\n }\n }\n return running;\n });\n }\n let started = false;\n return {\n start() {\n if (started)\n return;\n started = true;\n delete_rule(node);\n if (is_function(config)) {\n config = config(options);\n wait().then(go);\n }\n else {\n go();\n }\n },\n invalidate() {\n started = false;\n },\n end() {\n if (running) {\n cleanup();\n running = false;\n }\n }\n };\n}\nfunction create_out_transition(node, fn, params) {\n const options = { direction: 'out' };\n let config = fn(node, params, options);\n let running = true;\n let animation_name;\n const group = outros;\n group.r += 1;\n function go() {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n if (css)\n animation_name = create_rule(node, 1, 0, duration, delay, easing, css);\n const start_time = now() + delay;\n const end_time = start_time + duration;\n add_render_callback(() => dispatch(node, false, 'start'));\n loop(now => {\n if (running) {\n if (now >= end_time) {\n tick(0, 1);\n dispatch(node, false, 'end');\n if (!--group.r) {\n // this will result in `end()` being called,\n // so we don't need to clean up here\n run_all(group.c);\n }\n return false;\n }\n if (now >= start_time) {\n const t = easing((now - start_time) / duration);\n tick(1 - t, t);\n }\n }\n return running;\n });\n }\n if (is_function(config)) {\n wait().then(() => {\n // @ts-ignore\n config = config(options);\n go();\n });\n }\n else {\n go();\n }\n return {\n end(reset) {\n if (reset && config.tick) {\n config.tick(1, 0);\n }\n if (running) {\n if (animation_name)\n delete_rule(node, animation_name);\n running = false;\n }\n }\n };\n}\nfunction create_bidirectional_transition(node, fn, params, intro) {\n const options = { direction: 'both' };\n let config = fn(node, params, options);\n let t = intro ? 0 : 1;\n let running_program = null;\n let pending_program = null;\n let animation_name = null;\n function clear_animation() {\n if (animation_name)\n delete_rule(node, animation_name);\n }\n function init(program, duration) {\n const d = (program.b - t);\n duration *= Math.abs(d);\n return {\n a: t,\n b: program.b,\n d,\n duration,\n start: program.start,\n end: program.start + duration,\n group: program.group\n };\n }\n function go(b) {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n const program = {\n start: now() + delay,\n b\n };\n if (!b) {\n // @ts-ignore todo: improve typings\n program.group = outros;\n outros.r += 1;\n }\n if (running_program || pending_program) {\n pending_program = program;\n }\n else {\n // if this is an intro, and there's a delay, we need to do\n // an initial tick and/or apply CSS animation immediately\n if (css) {\n clear_animation();\n animation_name = create_rule(node, t, b, duration, delay, easing, css);\n }\n if (b)\n tick(0, 1);\n running_program = init(program, duration);\n add_render_callback(() => dispatch(node, b, 'start'));\n loop(now => {\n if (pending_program && now > pending_program.start) {\n running_program = init(pending_program, duration);\n pending_program = null;\n dispatch(node, running_program.b, 'start');\n if (css) {\n clear_animation();\n animation_name = create_rule(node, t, running_program.b, running_program.duration, 0, easing, config.css);\n }\n }\n if (running_program) {\n if (now >= running_program.end) {\n tick(t = running_program.b, 1 - t);\n dispatch(node, running_program.b, 'end');\n if (!pending_program) {\n // we're done\n if (running_program.b) {\n // intro — we can tidy up immediately\n clear_animation();\n }\n else {\n // outro — needs to be coordinated\n if (!--running_program.group.r)\n run_all(running_program.group.c);\n }\n }\n running_program = null;\n }\n else if (now >= running_program.start) {\n const p = now - running_program.start;\n t = running_program.a + running_program.d * easing(p / running_program.duration);\n tick(t, 1 - t);\n }\n }\n return !!(running_program || pending_program);\n });\n }\n }\n return {\n run(b) {\n if (is_function(config)) {\n wait().then(() => {\n // @ts-ignore\n config = config(options);\n go(b);\n });\n }\n else {\n go(b);\n }\n },\n end() {\n clear_animation();\n running_program = pending_program = null;\n }\n };\n}\n\nfunction handle_promise(promise, info) {\n const token = info.token = {};\n function update(type, index, key, value) {\n if (info.token !== token)\n return;\n info.resolved = value;\n let child_ctx = info.ctx;\n if (key !== undefined) {\n child_ctx = child_ctx.slice();\n child_ctx[key] = value;\n }\n const block = type && (info.current = type)(child_ctx);\n let needs_flush = false;\n if (info.block) {\n if (info.blocks) {\n info.blocks.forEach((block, i) => {\n if (i !== index && block) {\n group_outros();\n transition_out(block, 1, 1, () => {\n if (info.blocks[i] === block) {\n info.blocks[i] = null;\n }\n });\n check_outros();\n }\n });\n }\n else {\n info.block.d(1);\n }\n block.c();\n transition_in(block, 1);\n block.m(info.mount(), info.anchor);\n needs_flush = true;\n }\n info.block = block;\n if (info.blocks)\n info.blocks[index] = block;\n if (needs_flush) {\n flush();\n }\n }\n if (is_promise(promise)) {\n const current_component = get_current_component();\n promise.then(value => {\n set_current_component(current_component);\n update(info.then, 1, info.value, value);\n set_current_component(null);\n }, error => {\n set_current_component(current_component);\n update(info.catch, 2, info.error, error);\n set_current_component(null);\n if (!info.hasCatch) {\n throw error;\n }\n });\n // if we previously had a then/catch block, destroy it\n if (info.current !== info.pending) {\n update(info.pending, 0);\n return true;\n }\n }\n else {\n if (info.current !== info.then) {\n update(info.then, 1, info.value, promise);\n return true;\n }\n info.resolved = promise;\n }\n}\nfunction update_await_block_branch(info, ctx, dirty) {\n const child_ctx = ctx.slice();\n const { resolved } = info;\n if (info.current === info.then) {\n child_ctx[info.value] = resolved;\n }\n if (info.current === info.catch) {\n child_ctx[info.error] = resolved;\n }\n info.block.p(child_ctx, dirty);\n}\n\nfunction destroy_block(block, lookup) {\n block.d(1);\n lookup.delete(block.key);\n}\nfunction outro_and_destroy_block(block, lookup) {\n transition_out(block, 1, 1, () => {\n lookup.delete(block.key);\n });\n}\nfunction fix_and_destroy_block(block, lookup) {\n block.f();\n destroy_block(block, lookup);\n}\nfunction fix_and_outro_and_destroy_block(block, lookup) {\n block.f();\n outro_and_destroy_block(block, lookup);\n}\nfunction update_keyed_each(old_blocks, dirty, get_key, dynamic, ctx, list, lookup, node, destroy, create_each_block, next, get_context) {\n let o = old_blocks.length;\n let n = list.length;\n let i = o;\n const old_indexes = {};\n while (i--)\n old_indexes[old_blocks[i].key] = i;\n const new_blocks = [];\n const new_lookup = new Map();\n const deltas = new Map();\n const updates = [];\n i = n;\n while (i--) {\n const child_ctx = get_context(ctx, list, i);\n const key = get_key(child_ctx);\n let block = lookup.get(key);\n if (!block) {\n block = create_each_block(key, child_ctx);\n block.c();\n }\n else if (dynamic) {\n // defer updates until all the DOM shuffling is done\n updates.push(() => block.p(child_ctx, dirty));\n }\n new_lookup.set(key, new_blocks[i] = block);\n if (key in old_indexes)\n deltas.set(key, Math.abs(i - old_indexes[key]));\n }\n const will_move = new Set();\n const did_move = new Set();\n function insert(block) {\n transition_in(block, 1);\n block.m(node, next);\n lookup.set(block.key, block);\n next = block.first;\n n--;\n }\n while (o && n) {\n const new_block = new_blocks[n - 1];\n const old_block = old_blocks[o - 1];\n const new_key = new_block.key;\n const old_key = old_block.key;\n if (new_block === old_block) {\n // do nothing\n next = new_block.first;\n o--;\n n--;\n }\n else if (!new_lookup.has(old_key)) {\n // remove old block\n destroy(old_block, lookup);\n o--;\n }\n else if (!lookup.has(new_key) || will_move.has(new_key)) {\n insert(new_block);\n }\n else if (did_move.has(old_key)) {\n o--;\n }\n else if (deltas.get(new_key) > deltas.get(old_key)) {\n did_move.add(new_key);\n insert(new_block);\n }\n else {\n will_move.add(old_key);\n o--;\n }\n }\n while (o--) {\n const old_block = old_blocks[o];\n if (!new_lookup.has(old_block.key))\n destroy(old_block, lookup);\n }\n while (n)\n insert(new_blocks[n - 1]);\n run_all(updates);\n return new_blocks;\n}\nfunction validate_each_keys(ctx, list, get_context, get_key) {\n const keys = new Set();\n for (let i = 0; i < list.length; i++) {\n const key = get_key(get_context(ctx, list, i));\n if (keys.has(key)) {\n throw new Error('Cannot have duplicate keys in a keyed each');\n }\n keys.add(key);\n }\n}\n\nfunction get_spread_update(levels, updates) {\n const update = {};\n const to_null_out = {};\n const accounted_for = { $$scope: 1 };\n let i = levels.length;\n while (i--) {\n const o = levels[i];\n const n = updates[i];\n if (n) {\n for (const key in o) {\n if (!(key in n))\n to_null_out[key] = 1;\n }\n for (const key in n) {\n if (!accounted_for[key]) {\n update[key] = n[key];\n accounted_for[key] = 1;\n }\n }\n levels[i] = n;\n }\n else {\n for (const key in o) {\n accounted_for[key] = 1;\n }\n }\n }\n for (const key in to_null_out) {\n if (!(key in update))\n update[key] = undefined;\n }\n return update;\n}\nfunction get_spread_object(spread_props) {\n return typeof spread_props === 'object' && spread_props !== null ? spread_props : {};\n}\n\nconst _boolean_attributes = [\n 'allowfullscreen',\n 'allowpaymentrequest',\n 'async',\n 'autofocus',\n 'autoplay',\n 'checked',\n 'controls',\n 'default',\n 'defer',\n 'disabled',\n 'formnovalidate',\n 'hidden',\n 'inert',\n 'ismap',\n 'loop',\n 'multiple',\n 'muted',\n 'nomodule',\n 'novalidate',\n 'open',\n 'playsinline',\n 'readonly',\n 'required',\n 'reversed',\n 'selected'\n];\n/**\n * List of HTML boolean attributes (e.g. `<input disabled>`).\n * Source: https://html.spec.whatwg.org/multipage/indices.html\n */\nconst boolean_attributes = new Set([..._boolean_attributes]);\n\n/** regex of all html void element names */\nconst void_element_names = /^(?:area|base|br|col|command|embed|hr|img|input|keygen|link|meta|param|source|track|wbr)$/;\nfunction is_void(name) {\n return void_element_names.test(name) || name.toLowerCase() === '!doctype';\n}\n\nconst invalid_attribute_name_character = /[\\s'\">/=\\u{FDD0}-\\u{FDEF}\\u{FFFE}\\u{FFFF}\\u{1FFFE}\\u{1FFFF}\\u{2FFFE}\\u{2FFFF}\\u{3FFFE}\\u{3FFFF}\\u{4FFFE}\\u{4FFFF}\\u{5FFFE}\\u{5FFFF}\\u{6FFFE}\\u{6FFFF}\\u{7FFFE}\\u{7FFFF}\\u{8FFFE}\\u{8FFFF}\\u{9FFFE}\\u{9FFFF}\\u{AFFFE}\\u{AFFFF}\\u{BFFFE}\\u{BFFFF}\\u{CFFFE}\\u{CFFFF}\\u{DFFFE}\\u{DFFFF}\\u{EFFFE}\\u{EFFFF}\\u{FFFFE}\\u{FFFFF}\\u{10FFFE}\\u{10FFFF}]/u;\n// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n// https://infra.spec.whatwg.org/#noncharacter\nfunction spread(args, attrs_to_add) {\n const attributes = Object.assign({}, ...args);\n if (attrs_to_add) {\n const classes_to_add = attrs_to_add.classes;\n const styles_to_add = attrs_to_add.styles;\n if (classes_to_add) {\n if (attributes.class == null) {\n attributes.class = classes_to_add;\n }\n else {\n attributes.class += ' ' + classes_to_add;\n }\n }\n if (styles_to_add) {\n if (attributes.style == null) {\n attributes.style = style_object_to_string(styles_to_add);\n }\n else {\n attributes.style = style_object_to_string(merge_ssr_styles(attributes.style, styles_to_add));\n }\n }\n }\n let str = '';\n Object.keys(attributes).forEach(name => {\n if (invalid_attribute_name_character.test(name))\n return;\n const value = attributes[name];\n if (value === true)\n str += ' ' + name;\n else if (boolean_attributes.has(name.toLowerCase())) {\n if (value)\n str += ' ' + name;\n }\n else if (value != null) {\n str += ` ${name}=\"${value}\"`;\n }\n });\n return str;\n}\nfunction merge_ssr_styles(style_attribute, style_directive) {\n const style_object = {};\n for (const individual_style of style_attribute.split(';')) {\n const colon_index = individual_style.indexOf(':');\n const name = individual_style.slice(0, colon_index).trim();\n const value = individual_style.slice(colon_index + 1).trim();\n if (!name)\n continue;\n style_object[name] = value;\n }\n for (const name in style_directive) {\n const value = style_directive[name];\n if (value) {\n style_object[name] = value;\n }\n else {\n delete style_object[name];\n }\n }\n return style_object;\n}\nconst ATTR_REGEX = /[&\"]/g;\nconst CONTENT_REGEX = /[&<]/g;\n/**\n * Note: this method is performance sensitive and has been optimized\n * https://github.com/sveltejs/svelte/pull/5701\n */\nfunction escape(value, is_attr = false) {\n const str = String(value);\n const pattern = is_attr ? ATTR_REGEX : CONTENT_REGEX;\n pattern.lastIndex = 0;\n let escaped = '';\n let last = 0;\n while (pattern.test(str)) {\n const i = pattern.lastIndex - 1;\n const ch = str[i];\n escaped += str.substring(last, i) + (ch === '&' ? '&amp;' : (ch === '\"' ? '&quot;' : '&lt;'));\n last = i + 1;\n }\n return escaped + str.substring(last);\n}\nfunction escape_attribute_value(value) {\n // keep booleans, null, and undefined for the sake of `spread`\n const should_escape = typeof value === 'string' || (value && typeof value === 'object');\n return should_escape ? escape(value, true) : value;\n}\nfunction escape_object(obj) {\n const result = {};\n for (const key in obj) {\n result[key] = escape_attribute_value(obj[key]);\n }\n return result;\n}\nfunction each(items, fn) {\n let str = '';\n for (let i = 0; i < items.length; i += 1) {\n str += fn(items[i], i);\n }\n return str;\n}\nconst missing_component = {\n $$render: () => ''\n};\nfunction validate_component(component, name) {\n if (!component || !component.$$render) {\n if (name === 'svelte:component')\n name += ' this={...}';\n throw new Error(`<${name}> is not a valid SSR component. You may need to review your build config to ensure that dependencies are compiled, rather than imported as pre-compiled modules. Otherwise you may need to fix a <${name}>.`);\n }\n return component;\n}\nfunction debug(file, line, column, values) {\n console.log(`{@debug} ${file ? file + ' ' : ''}(${line}:${column})`); // eslint-disable-line no-console\n console.log(values); // eslint-disable-line no-console\n return '';\n}\nlet on_destroy;\nfunction create_ssr_component(fn) {\n function $$render(result, props, bindings, slots, context) {\n const parent_component = current_component;\n const $$ = {\n on_destroy,\n context: new Map(context || (parent_component ? parent_component.$$.context : [])),\n // these will be immediately discarded\n on_mount: [],\n before_update: [],\n after_update: [],\n callbacks: blank_object()\n };\n set_current_component({ $$ });\n const html = fn(result, props, bindings, slots);\n set_current_component(parent_component);\n return html;\n }\n return {\n render: (props = {}, { $$slots = {}, context = new Map() } = {}) => {\n on_destroy = [];\n const result = { title: '', head: '', css: new Set() };\n const html = $$render(result, props, {}, $$slots, context);\n run_all(on_destroy);\n return {\n html,\n css: {\n code: Array.from(result.css).map(css => css.code).join('\\n'),\n map: null // TODO\n },\n head: result.title + result.head\n };\n },\n $$render\n };\n}\nfunction add_attribute(name, value, boolean) {\n if (value == null || (boolean && !value))\n return '';\n const assignment = (boolean && value === true) ? '' : `=\"${escape(value, true)}\"`;\n return ` ${name}${assignment}`;\n}\nfunction add_classes(classes) {\n return classes ? ` class=\"${classes}\"` : '';\n}\nfunction style_object_to_string(style_object) {\n return Object.keys(style_object)\n .filter(key => style_object[key])\n .map(key => `${key}: ${escape_attribute_value(style_object[key])};`)\n .join(' ');\n}\nfunction add_styles(style_object) {\n const styles = style_object_to_string(style_object);\n return styles ? ` style=\"${styles}\"` : '';\n}\n\nfunction bind(component, name, callback) {\n const index = component.$$.props[name];\n if (index !== undefined) {\n component.$$.bound[index] = callback;\n callback(component.$$.ctx[index]);\n }\n}\nfunction create_component(block) {\n block && block.c();\n}\nfunction claim_component(block, parent_nodes) {\n block && block.l(parent_nodes);\n}\nfunction mount_component(component, target, anchor, customElement) {\n const { fragment, after_update } = component.$$;\n fragment && fragment.m(target, anchor);\n if (!customElement) {\n // onMount happens before the initial afterUpdate\n add_render_callback(() => {\n const new_on_destroy = component.$$.on_mount.map(run).filter(is_function);\n // if the component was destroyed immediately\n // it will update the `$$.on_destroy` reference to `null`.\n // the destructured on_destroy may still reference to the old array\n if (component.$$.on_destroy) {\n component.$$.on_destroy.push(...new_on_destroy);\n }\n else {\n // Edge case - component was destroyed immediately,\n // most likely as a result of a binding initialising\n run_all(new_on_destroy);\n }\n component.$$.on_mount = [];\n });\n }\n after_update.forEach(add_render_callback);\n}\nfunction destroy_component(component, detaching) {\n const $$ = component.$$;\n if ($$.fragment !== null) {\n flush_render_callbacks($$.after_update);\n run_all($$.on_destroy);\n $$.fragment && $$.fragment.d(detaching);\n // TODO null out other refs, including component.$$ (but need to\n // preserve final state?)\n $$.on_destroy = $$.fragment = null;\n $$.ctx = [];\n }\n}\nfunction make_dirty(component, i) {\n if (component.$$.dirty[0] === -1) {\n dirty_components.push(component);\n schedule_update();\n component.$$.dirty.fill(0);\n }\n component.$$.dirty[(i / 31) | 0] |= (1 << (i % 31));\n}\nfunction init(component, options, instance, create_fragment, not_equal, props, append_styles, dirty = [-1]) {\n const parent_component = current_component;\n set_current_component(component);\n const $$ = component.$$ = {\n fragment: null,\n ctx: [],\n // state\n props,\n update: noop,\n not_equal,\n bound: blank_object(),\n // lifecycle\n on_mount: [],\n on_destroy: [],\n on_disconnect: [],\n before_update: [],\n after_update: [],\n context: new Map(options.context || (parent_component ? parent_component.$$.context : [])),\n // everything else\n callbacks: blank_object(),\n dirty,\n skip_bound: false,\n root: options.target || parent_component.$$.root\n };\n append_styles && append_styles($$.root);\n let ready = false;\n $$.ctx = instance\n ? instance(component, options.props || {}, (i, ret, ...rest) => {\n const value = rest.length ? rest[0] : ret;\n if ($$.ctx && not_equal($$.ctx[i], $$.ctx[i] = value)) {\n if (!$$.skip_bound && $$.bound[i])\n $$.bound[i](value);\n if (ready)\n make_dirty(component, i);\n }\n return ret;\n })\n : [];\n $$.update();\n ready = true;\n run_all($$.before_update);\n // `false` as a special case of no DOM component\n $$.fragment = create_fragment ? create_fragment($$.ctx) : false;\n if (options.target) {\n if (options.hydrate) {\n start_hydrating();\n const nodes = children(options.target);\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n $$.fragment && $$.fragment.l(nodes);\n nodes.forEach(detach);\n }\n else {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n $$.fragment && $$.fragment.c();\n }\n if (options.intro)\n transition_in(component.$$.fragment);\n mount_component(component, options.target, options.anchor, options.customElement);\n end_hydrating();\n flush();\n }\n set_current_component(parent_component);\n}\nlet SvelteElement;\nif (typeof HTMLElement === 'function') {\n SvelteElement = class extends HTMLElement {\n constructor() {\n super();\n this.attachShadow({ mode: 'open' });\n }\n connectedCallback() {\n const { on_mount } = this.$$;\n this.$$.on_disconnect = on_mount.map(run).filter(is_function);\n // @ts-ignore todo: improve typings\n for (const key in this.$$.slotted) {\n // @ts-ignore todo: improve typings\n this.appendChild(this.$$.slotted[key]);\n }\n }\n attributeChangedCallback(attr, _oldValue, newValue) {\n this[attr] = newValue;\n }\n disconnectedCallback() {\n run_all(this.$$.on_disconnect);\n }\n $destroy() {\n destroy_component(this, 1);\n this.$destroy = noop;\n }\n $on(type, callback) {\n // TODO should this delegate to addEventListener?\n if (!is_function(callback)) {\n return noop;\n }\n const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));\n callbacks.push(callback);\n return () => {\n const index = callbacks.indexOf(callback);\n if (index !== -1)\n callbacks.splice(index, 1);\n };\n }\n $set($$props) {\n if (this.$$set && !is_empty($$props)) {\n this.$$.skip_bound = true;\n this.$$set($$props);\n this.$$.skip_bound = false;\n }\n }\n };\n}\n/**\n * Base class for Svelte components. Used when dev=false.\n */\nclass SvelteComponent {\n $destroy() {\n destroy_component(this, 1);\n this.$destroy = noop;\n }\n $on(type, callback) {\n if (!is_function(callback)) {\n return noop;\n }\n const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));\n callbacks.push(callback);\n return () => {\n const index = callbacks.indexOf(callback);\n if (index !== -1)\n callbacks.splice(index, 1);\n };\n }\n $set($$props) {\n if (this.$$set && !is_empty($$props)) {\n this.$$.skip_bound = true;\n this.$$set($$props);\n this.$$.skip_bound = false;\n }\n }\n}\n\nfunction dispatch_dev(type, detail) {\n document.dispatchEvent(custom_event(type, Object.assign({ version: '3.59.2' }, detail), { bubbles: true }));\n}\nfunction append_dev(target, node) {\n dispatch_dev('SvelteDOMInsert', { target, node });\n append(target, node);\n}\nfunction append_hydration_dev(target, node) {\n dispatch_dev('SvelteDOMInsert', { target, node });\n append_hydration(target, node);\n}\nfunction insert_dev(target, node, anchor) {\n dispatch_dev('SvelteDOMInsert', { target, node, anchor });\n insert(target, node, anchor);\n}\nfunction insert_hydration_dev(target, node, anchor) {\n dispatch_dev('SvelteDOMInsert', { target, node, anchor });\n insert_hydration(target, node, anchor);\n}\nfunction detach_dev(node) {\n dispatch_dev('SvelteDOMRemove', { node });\n detach(node);\n}\nfunction detach_between_dev(before, after) {\n while (before.nextSibling && before.nextSibling !== after) {\n detach_dev(before.nextSibling);\n }\n}\nfunction detach_before_dev(after) {\n while (after.previousSibling) {\n detach_dev(after.previousSibling);\n }\n}\nfunction detach_after_dev(before) {\n while (before.nextSibling) {\n detach_dev(before.nextSibling);\n }\n}\nfunction listen_dev(node, event, handler, options, has_prevent_default, has_stop_propagation, has_stop_immediate_propagation) {\n const modifiers = options === true ? ['capture'] : options ? Array.from(Object.keys(options)) : [];\n if (has_prevent_default)\n modifiers.push('preventDefault');\n if (has_stop_propagation)\n modifiers.push('stopPropagation');\n if (has_stop_immediate_propagation)\n modifiers.push('stopImmediatePropagation');\n dispatch_dev('SvelteDOMAddEventListener', { node, event, handler, modifiers });\n const dispose = listen(node, event, handler, options);\n return () => {\n dispatch_dev('SvelteDOMRemoveEventListener', { node, event, handler, modifiers });\n dispose();\n };\n}\nfunction attr_dev(node, attribute, value) {\n attr(node, attribute, value);\n if (value == null)\n dispatch_dev('SvelteDOMRemoveAttribute', { node, attribute });\n else\n dispatch_dev('SvelteDOMSetAttribute', { node, attribute, value });\n}\nfunction prop_dev(node, property, value) {\n node[property] = value;\n dispatch_dev('SvelteDOMSetProperty', { node, property, value });\n}\nfunction dataset_dev(node, property, value) {\n node.dataset[property] = value;\n dispatch_dev('SvelteDOMSetDataset', { node, property, value });\n}\nfunction set_data_dev(text, data) {\n data = '' + data;\n if (text.data === data)\n return;\n dispatch_dev('SvelteDOMSetData', { node: text, data });\n text.data = data;\n}\nfunction set_data_contenteditable_dev(text, data) {\n data = '' + data;\n if (text.wholeText === data)\n return;\n dispatch_dev('SvelteDOMSetData', { node: text, data });\n text.data = data;\n}\nfunction set_data_maybe_contenteditable_dev(text, data, attr_value) {\n if (~contenteditable_truthy_values.indexOf(attr_value)) {\n set_data_contenteditable_dev(text, data);\n }\n else {\n set_data_dev(text, data);\n }\n}\nfunction validate_each_argument(arg) {\n if (typeof arg !== 'string' && !(arg && typeof arg === 'object' && 'length' in arg)) {\n let msg = '{#each} only iterates over array-like objects.';\n if (typeof Symbol === 'function' && arg && Symbol.iterator in arg) {\n msg += ' You can use a spread to convert this iterable into an array.';\n }\n throw new Error(msg);\n }\n}\nfunction validate_slots(name, slot, keys) {\n for (const slot_key of Object.keys(slot)) {\n if (!~keys.indexOf(slot_key)) {\n console.warn(`<${name}> received an unexpected slot \"${slot_key}\".`);\n }\n }\n}\nfunction validate_dynamic_element(tag) {\n const is_string = typeof tag === 'string';\n if (tag && !is_string) {\n throw new Error('<svelte:element> expects \"this\" attribute to be a string.');\n }\n}\nfunction validate_void_dynamic_element(tag) {\n if (tag && is_void(tag)) {\n console.warn(`<svelte:element this=\"${tag}\"> is self-closing and cannot have content.`);\n }\n}\nfunction construct_svelte_component_dev(component, props) {\n const error_message = 'this={...} of <svelte:component> should specify a Svelte component.';\n try {\n const instance = new component(props);\n if (!instance.$$ || !instance.$set || !instance.$on || !instance.$destroy) {\n throw new Error(error_message);\n }\n return instance;\n }\n catch (err) {\n const { message } = err;\n if (typeof message === 'string' && message.indexOf('is not a constructor') !== -1) {\n throw new Error(error_message);\n }\n else {\n throw err;\n }\n }\n}\n/**\n * Base class for Svelte components with some minor dev-enhancements. Used when dev=true.\n */\nclass SvelteComponentDev extends SvelteComponent {\n constructor(options) {\n if (!options || (!options.target && !options.$$inline)) {\n throw new Error(\"'target' is a required option\");\n }\n super();\n }\n $destroy() {\n super.$destroy();\n this.$destroy = () => {\n console.warn('Component was already destroyed'); // eslint-disable-line no-console\n };\n }\n $capture_state() { }\n $inject_state() { }\n}\n/**\n * Base class to create strongly typed Svelte components.\n * This only exists for typing purposes and should be used in `.d.ts` files.\n *\n * ### Example:\n *\n * You have component library on npm called `component-library`, from which\n * you export a component called `MyComponent`. For Svelte+TypeScript users,\n * you want to provide typings. Therefore you create a `index.d.ts`:\n * ```ts\n * import { SvelteComponentTyped } from \"svelte\";\n * export class MyComponent extends SvelteComponentTyped<{foo: string}> {}\n * ```\n * Typing this makes it possible for IDEs like VS Code with the Svelte extension\n * to provide intellisense and to use the component like this in a Svelte file\n * with TypeScript:\n * ```svelte\n * <script lang=\"ts\">\n * \timport { MyComponent } from \"component-library\";\n * </script>\n * <MyComponent foo={'bar'} />\n * ```\n *\n * #### Why not make this part of `SvelteComponent(Dev)`?\n * Because\n * ```ts\n * class ASubclassOfSvelteComponent extends SvelteComponent<{foo: string}> {}\n * const component: typeof SvelteComponent = ASubclassOfSvelteComponent;\n * ```\n * will throw a type error, so we need to separate the more strictly typed class.\n */\nclass SvelteComponentTyped extends SvelteComponentDev {\n constructor(options) {\n super(options);\n }\n}\nfunction loop_guard(timeout) {\n const start = Date.now();\n return () => {\n if (Date.now() - start > timeout) {\n throw new Error('Infinite loop detected');\n }\n };\n}\n\nexport { HtmlTag, HtmlTagHydration, ResizeObserverSingleton, SvelteComponent, SvelteComponentDev, SvelteComponentTyped, SvelteElement, action_destroyer, add_attribute, add_classes, add_flush_callback, add_iframe_resize_listener, add_location, add_render_callback, add_styles, add_transform, afterUpdate, append, append_dev, append_empty_stylesheet, append_hydration, append_hydration_dev, append_styles, assign, attr, attr_dev, attribute_to_object, beforeUpdate, bind, binding_callbacks, blank_object, bubble, check_outros, children, claim_comment, claim_component, claim_element, claim_html_tag, claim_space, claim_svg_element, claim_text, clear_loops, comment, component_subscribe, compute_rest_props, compute_slots, construct_svelte_component, construct_svelte_component_dev, contenteditable_truthy_values, createEventDispatcher, create_animation, create_bidirectional_transition, create_component, create_in_transition, create_out_transition, create_slot, create_ssr_component, current_component, custom_event, dataset_dev, debug, destroy_block, destroy_component, destroy_each, detach, detach_after_dev, detach_before_dev, detach_between_dev, detach_dev, dirty_components, dispatch_dev, each, element, element_is, empty, end_hydrating, escape, escape_attribute_value, escape_object, exclude_internal_props, fix_and_destroy_block, fix_and_outro_and_destroy_block, fix_position, flush, flush_render_callbacks, getAllContexts, getContext, get_all_dirty_from_scope, get_binding_group_value, get_current_component, get_custom_elements_slots, get_root_for_style, get_slot_changes, get_spread_object, get_spread_update, get_store_value, globals, group_outros, handle_promise, hasContext, has_prop, head_selector, identity, init, init_binding_group, init_binding_group_dynamic, insert, insert_dev, insert_hydration, insert_hydration_dev, intros, invalid_attribute_name_character, is_client, is_crossorigin, is_empty, is_function, is_promise, is_void, listen, listen_dev, loop, loop_guard, merge_ssr_styles, missing_component, mount_component, noop, not_equal, now, null_to_empty, object_without_properties, onDestroy, onMount, once, outro_and_destroy_block, prevent_default, prop_dev, query_selector_all, raf, resize_observer_border_box, resize_observer_content_box, resize_observer_device_pixel_content_box, run, run_all, safe_not_equal, schedule_update, select_multiple_value, select_option, select_options, select_value, self, setContext, set_attributes, set_current_component, set_custom_element_data, set_custom_element_data_map, set_data, set_data_contenteditable, set_data_contenteditable_dev, set_data_dev, set_data_maybe_contenteditable, set_data_maybe_contenteditable_dev, set_dynamic_element_data, set_input_type, set_input_value, set_now, set_raf, set_store_value, set_style, set_svg_attributes, space, split_css_unit, spread, src_url_equal, start_hydrating, stop_immediate_propagation, stop_propagation, subscribe, svg_element, text, tick, time_ranges_to_array, to_number, toggle_class, transition_in, transition_out, trusted, update_await_block_branch, update_keyed_each, update_slot, update_slot_base, validate_component, validate_dynamic_element, validate_each_argument, validate_each_keys, validate_slots, validate_store, validate_void_dynamic_element, xlink_attr };\n","var img = \"data:image/svg+xml,%3csvg width='136' height='69' viewBox='0 0 136 69' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cellipse cx='68' cy='56' rx='68' ry='13' fill='url(%23paint0_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' d='M78.0091 51.4975C85.0458 45.3466 85.0458 35.3741 78.0091 29.2232C70.9725 23.0723 59.5638 23.0723 52.5271 29.2232C45.4905 35.3741 45.4905 45.3466 52.5271 51.4975C59.5638 57.6484 70.9725 57.6484 78.0091 51.4975Z' fill='url(%23paint1_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M61.1533 60.3968V42.7813L46.2261 35.5039L46.4996 51.8202L61.1533 60.3968Z' fill='url(%23paint2_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M61.1533 42.7814V60.3969L87.9805 55.3036L88.3543 38.4214L61.1533 42.7814Z' fill='url(%23paint3_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M49.3264 45.1001C48.9981 44.7096 48.5878 44.032 48.4419 43.3784C48.3598 43.0277 48.3598 42.7567 48.4327 42.5893C48.606 42.1589 49.1349 42.4299 49.3081 43.0755C49.4632 42.6053 49.992 42.8763 50.1835 43.506C50.2565 43.7451 50.2656 44.0241 50.1835 44.303C50.0468 44.8132 49.6455 45.0603 49.3355 45.1081L49.3264 45.1001ZM52.2808 46.6863C51.9617 46.2878 51.5513 45.6103 51.3963 44.9407C51.3142 44.59 51.3234 44.303 51.3872 44.1357C51.5605 43.6893 52.0893 43.9683 52.2626 44.6219C52.4176 44.1357 52.9465 44.4146 53.138 45.0523C53.2109 45.2914 53.2109 45.5863 53.138 45.8574C53.0012 46.3755 52.6 46.6305 52.2808 46.6783V46.6863ZM55.2353 48.2725C54.9161 47.874 54.5058 47.1885 54.3599 46.511C54.2778 46.1523 54.2869 45.8653 54.3599 45.6979C54.5331 45.2436 55.062 45.5226 55.2353 46.1842C55.3994 45.69 55.9283 45.9689 56.1107 46.6146C56.1836 46.8617 56.1836 47.1486 56.1107 47.4356C55.9739 47.9696 55.5635 48.2247 55.2535 48.2805L55.2353 48.2725ZM58.1897 49.8587C57.8706 49.4522 57.4602 48.7587 57.3143 48.0732C57.2414 47.7066 57.2414 47.4196 57.3143 47.2443C57.4876 46.782 58.0165 47.0609 58.1897 47.7305C58.3539 47.2363 58.8827 47.5073 59.0651 48.1609C59.129 48.408 59.1381 48.7029 59.0651 48.9899C58.9283 49.5239 58.518 49.7949 58.1988 49.8587H58.1897ZM47.9039 48.8942C47.5847 48.4957 47.1744 47.8182 47.0193 47.1566C46.9373 46.8139 46.9373 46.5428 47.0102 46.3755C47.1835 45.945 47.7033 46.24 47.8765 46.8776C48.0315 46.4153 48.5604 46.7023 48.7428 47.332C48.8157 47.5711 48.8248 47.8501 48.7428 48.1131C48.606 48.6153 48.2139 48.8464 47.8947 48.8863L47.9039 48.8942ZM50.8492 50.5522C50.53 50.1457 50.1197 49.4602 49.9647 48.7906C49.8826 48.4399 49.8826 48.1609 49.9556 47.9935C50.1288 47.5551 50.6577 47.8501 50.8218 48.5037C50.9769 48.0334 51.5057 48.3203 51.6881 48.958C51.7611 49.1971 51.7611 49.4841 51.6881 49.7551C51.5513 50.2652 51.1501 50.5043 50.8401 50.5522H50.8492ZM53.7945 52.2101C53.4754 51.8036 53.065 51.1101 52.9191 50.4326C52.8371 50.0739 52.8462 49.7949 52.91 49.6276C53.0833 49.1812 53.6122 49.4681 53.7854 50.1297C53.9404 49.6515 54.4693 49.9384 54.6517 50.584C54.7246 50.8311 54.7246 51.1181 54.6517 51.3971C54.5149 51.9152 54.1137 52.1702 53.7945 52.2101ZM56.7399 53.868C56.4207 53.4535 56.0104 52.7521 55.8645 52.0666C55.7915 51.7079 55.7915 51.421 55.8645 51.2536C56.0377 50.7993 56.5666 51.0862 56.7307 51.7558C56.8949 51.2616 57.4146 51.5485 57.597 52.2101C57.6608 52.4572 57.67 52.7521 57.597 53.0311C57.4602 53.5651 57.059 53.8122 56.7399 53.868ZM59.6852 55.526C59.366 55.1115 58.9648 54.4021 58.8189 53.7086C58.746 53.342 58.746 53.055 58.8189 52.8796C59.0013 52.4173 59.5211 52.7043 59.6852 53.3818C59.8493 52.8796 60.3782 53.1666 60.5515 53.8361C60.6153 54.0912 60.6244 54.3861 60.5515 54.6731C60.4056 55.2071 60.0043 55.4702 59.6852 55.526ZM47.7762 39.7437C47.4479 39.3611 47.0376 38.6996 46.8826 38.0539C46.8005 37.7112 46.8005 37.4402 46.8643 37.2728C47.0376 36.8424 47.5665 37.0974 47.7397 37.7351C47.8947 37.2568 48.4327 37.5199 48.6151 38.1416C48.6881 38.3807 48.6972 38.6597 48.6151 38.9307C48.4783 39.4408 48.0771 39.6879 47.758 39.7437H47.7762ZM50.7489 41.2582C50.4206 40.8756 50.0103 40.206 49.8553 39.5445C49.7732 39.2017 49.7823 38.9148 49.8461 38.7474C50.0194 38.301 50.5483 38.5641 50.7215 39.2097C50.8766 38.7235 51.4146 38.9865 51.5969 39.6162C51.6699 39.8553 51.679 40.1423 51.5969 40.4133C51.4601 40.9314 51.0589 41.1865 50.7398 41.2502L50.7489 41.2582ZM53.7216 42.7726C53.3933 42.39 52.983 41.7125 52.8371 41.043C52.755 40.6923 52.7641 40.4053 52.8279 40.2379C53.0012 39.7836 53.5392 40.0466 53.7125 40.7002C53.8766 40.206 54.4055 40.4771 54.5879 41.1067C54.6608 41.3538 54.6608 41.6408 54.5879 41.9198C54.4511 42.4458 54.0407 42.7089 53.7216 42.7726ZM56.6943 44.2871C56.3751 43.8965 55.9557 43.211 55.8098 42.5335C55.7277 42.1748 55.7368 41.8879 55.8098 41.7125C55.983 41.2502 56.521 41.5133 56.6851 42.1748C56.8493 41.6727 57.3782 41.9357 57.5605 42.5813C57.6335 42.8284 57.6335 43.1234 57.5605 43.4023C57.4146 43.9364 57.0134 44.2074 56.6943 44.2791V44.2871ZM59.667 45.8016C59.3478 45.403 58.9375 44.7175 58.7916 44.032C58.7186 43.6654 58.7186 43.3784 58.7916 43.1951C58.9739 42.7248 59.5028 42.9879 59.667 43.6574C59.8311 43.1473 60.36 43.4103 60.5423 44.0639C60.6153 44.311 60.6153 44.6139 60.5423 44.9009C60.3964 45.4429 59.9861 45.7298 59.667 45.7936V45.8016ZM46.3628 43.5378C46.682 43.49 47.0741 43.2509 47.2108 42.7567C47.2838 42.4857 47.2747 42.2067 47.2108 41.9756C47.0285 41.3618 46.4905 41.0828 46.3354 41.5451C46.3446 42.2067 46.3537 42.8763 46.3719 43.5458L46.3628 43.5378ZM47.3476 51.0942C47.1652 50.4645 46.6364 50.1616 46.4813 50.6239C46.4813 51.0304 46.4905 51.4369 46.4996 51.8355C46.7276 51.963 46.9555 52.0985 47.1744 52.234C47.2473 52.1384 47.3111 52.0188 47.3476 51.8753C47.4206 51.6123 47.4115 51.3333 47.3476 51.0942ZM60.287 49.6515C60.4329 50.3449 60.8341 51.0464 61.1624 51.4529V49.3007C60.9983 48.6232 60.4603 48.3442 60.287 48.8145C60.2232 48.9899 60.2141 49.2848 60.287 49.6594V49.6515ZM61.1624 59.0969C60.9983 58.4034 60.4694 58.1085 60.2961 58.5628C60.2323 58.7382 60.2232 59.0331 60.2961 59.4077C60.3326 59.607 60.3964 59.8143 60.4785 60.0056C60.7065 60.1411 60.9344 60.2686 61.1624 60.4041V59.0889V59.0969ZM50.293 53.5811C50.3659 53.3101 50.3568 53.0311 50.293 52.784C50.1106 52.1463 49.5817 51.8434 49.4267 52.3137C49.2534 51.6601 48.7337 51.3652 48.5604 51.7876C48.4966 51.955 48.4966 52.226 48.5695 52.5768C48.6151 52.7681 48.6789 52.9673 48.7519 53.1507C49.2078 53.4137 49.6638 53.6847 50.1106 53.9477C50.1835 53.8521 50.2474 53.7325 50.2838 53.5811H50.293ZM51.4875 53.4854C51.4237 53.6528 51.4237 53.9318 51.4966 54.2825C51.5422 54.4818 51.606 54.6731 51.679 54.8644C52.1349 55.1274 52.5817 55.3984 53.0377 55.6615C53.1106 55.5578 53.1745 55.4383 53.2109 55.2868C53.2839 55.0158 53.2748 54.7289 53.2109 54.4818C53.0286 53.8361 52.4997 53.5333 52.3447 54.0115C52.1714 53.3499 51.6516 53.047 51.4784 53.4854H51.4875ZM54.4237 55.1832C54.3599 55.3586 54.3599 55.6376 54.4237 55.9962C54.4693 56.1955 54.5331 56.3948 54.6061 56.5861C55.062 56.8491 55.518 57.1201 55.9648 57.3832C56.0377 57.2795 56.1016 57.152 56.138 57.0006C56.211 56.7216 56.2019 56.4346 56.138 56.1796C55.9557 55.526 55.4359 55.2231 55.2718 55.7093C55.1076 55.0397 54.5787 54.7368 54.4055 55.1832H54.4237ZM57.3599 56.881C57.2961 57.0564 57.287 57.3433 57.3599 57.71C57.4055 57.9092 57.4694 58.1085 57.5423 58.3078C57.9982 58.5708 58.4451 58.8418 58.901 59.1049C58.9739 59.0012 59.0378 58.8737 59.0834 58.7223C59.1563 58.4433 59.1563 58.1484 59.0834 57.8853C58.901 57.2317 58.3812 56.9209 58.2171 57.415C58.0529 56.7375 57.5241 56.4346 57.3508 56.889L57.3599 56.881Z' fill='url(%23paint4_radial_4318_875)'/%3e%3cpath opacity='0.75' fill-rule='evenodd' clip-rule='evenodd' d='M63.8704 46.0815C63.2776 45.946 62.539 45.5793 62.2746 45.0054C62.1378 44.7025 62.1469 44.3997 62.2746 44.1685C62.6029 43.5468 63.5786 43.3953 63.8795 43.9373C64.1804 43.2917 65.147 43.1403 65.4752 43.6504C65.6029 43.8417 65.6029 44.1366 65.4752 44.4873C65.2108 45.1489 64.4631 45.7547 63.8795 46.0895L63.8704 46.0815ZM69.296 45.1808C68.7124 45.0453 67.9646 44.6866 67.7093 44.1127C67.5725 43.8098 67.5817 43.5149 67.7093 43.2837C68.0376 42.67 69.0133 42.5106 69.3142 43.0526C69.6151 42.4149 70.5908 42.2555 70.91 42.7656C71.0285 42.9569 71.0376 43.2519 70.9009 43.5946C70.6364 44.2482 69.8796 44.862 69.296 45.1888V45.1808ZM74.7216 44.2721C74.138 44.1366 73.3994 43.7859 73.1349 43.22C72.9982 42.925 73.0073 42.6301 73.1349 42.399C73.4723 41.7932 74.4389 41.6338 74.7398 42.1599C75.0499 41.5302 76.0164 41.3707 76.3356 41.8729C76.4541 42.0642 76.4632 42.3511 76.3265 42.6939C76.0529 43.3475 75.3052 43.9453 74.7216 44.2721ZM80.1472 43.3714C79.5636 43.2439 78.825 42.8932 78.5697 42.3272C78.4329 42.0323 78.4511 41.7374 78.5697 41.5142C78.9071 40.9084 79.8736 40.749 80.1746 41.2751C80.4846 40.6454 81.4603 40.4939 81.7794 40.9881C81.898 41.1794 81.9071 41.4664 81.7612 41.8012C81.4876 42.4468 80.7399 43.0446 80.1472 43.3714ZM85.5637 42.4707C84.9801 42.3432 84.2506 41.9925 83.9953 41.4425C83.8585 41.1476 83.8767 40.8606 83.9953 40.6295C84.3327 40.0316 85.2992 39.8722 85.591 40.3983C85.9102 39.7766 86.8768 39.6251 87.1959 40.1114C87.3145 40.2947 87.3145 40.5816 87.1777 40.9164C86.9041 41.562 86.1473 42.1519 85.5546 42.4707H85.5637ZM66.5604 50.4973C65.9768 50.3618 65.2382 50.0111 64.9737 49.4372C64.8369 49.1343 64.8461 48.8394 64.9737 48.6003C65.302 47.9865 66.2686 47.8191 66.5695 48.3532C66.8795 47.7075 67.837 47.5481 68.1653 48.0503C68.2929 48.2416 68.2929 48.5365 68.1653 48.8872C67.9008 49.5488 67.1531 50.1626 66.5695 50.4973H66.5604ZM71.9586 49.5488C71.375 49.4213 70.6455 49.0706 70.3811 48.4967C70.2443 48.1938 70.2534 47.8988 70.3811 47.6677C70.7094 47.0539 71.6851 46.8865 71.9769 47.4206C72.2869 46.7829 73.2535 46.6235 73.5726 47.1177C73.6912 47.309 73.7003 47.5959 73.5635 47.9467C73.2991 48.6003 72.5513 49.2061 71.9586 49.5408V49.5488ZM77.366 48.6082C76.7824 48.4807 76.0529 48.13 75.7976 47.572C75.6608 47.2691 75.6699 46.9822 75.7976 46.751C76.135 46.1453 77.1016 45.9779 77.3934 46.5039C77.7034 45.8743 78.67 45.7069 78.9891 46.2011C79.1077 46.3844 79.1168 46.6793 78.9709 47.022C78.6973 47.6677 77.9496 48.2735 77.366 48.6082ZM82.7643 47.6597C82.1807 47.5322 81.4512 47.1894 81.205 46.6315C81.0682 46.3366 81.0864 46.0496 81.205 45.8185C81.5423 45.2127 82.5089 45.0533 82.8007 45.5714C83.1108 44.9417 84.0773 44.7822 84.3965 45.2685C84.515 45.4518 84.5242 45.7387 84.3783 46.0815C84.1047 46.7271 83.357 47.3249 82.7643 47.6517V47.6597ZM63.8521 55.8457C63.2685 55.7182 62.5299 55.3675 62.2746 54.7936C62.1378 54.4907 62.1469 54.1958 62.2746 53.9567C62.6029 53.3349 63.5603 53.1596 63.8612 53.7016C64.1622 53.056 65.1196 52.8886 65.4479 53.3907C65.5755 53.582 65.5755 53.877 65.4479 54.2277C65.1834 54.8972 64.4448 55.511 63.8612 55.8537L63.8521 55.8457ZM69.2321 54.8574C68.6485 54.7298 67.9099 54.3791 67.6546 53.8132C67.5178 53.5103 67.5269 53.2154 67.6546 52.9842C67.9829 52.3705 68.9495 52.1951 69.2413 52.7292C69.5422 52.0915 70.5088 51.9161 70.8279 52.4183C70.9465 52.6096 70.9556 52.8965 70.8188 53.2473C70.5543 53.9088 69.8157 54.5226 69.2321 54.8653V54.8574ZM74.6122 53.869C74.0286 53.7414 73.2991 53.3987 73.0437 52.8328C72.907 52.5379 72.9161 52.2429 73.0437 52.0118C73.372 51.398 74.3386 51.2306 74.6304 51.7567C74.9313 51.127 75.8979 50.9517 76.217 51.4459C76.3356 51.6292 76.3447 51.9241 76.1988 52.2668C75.9344 52.9205 75.1866 53.5342 74.603 53.869H74.6122ZM79.9922 52.8806C79.4086 52.761 78.6882 52.4183 78.4329 51.8603C78.2961 51.5654 78.3143 51.2785 78.4329 51.0473C78.7703 50.4336 79.7277 50.2662 80.0195 50.7843C80.3296 50.1546 81.287 49.9792 81.6062 50.4734C81.7247 50.6567 81.7247 50.9437 81.5879 51.2864C81.3235 51.9321 80.5667 52.5458 79.9831 52.8806H79.9922ZM85.3722 51.8922C84.7977 51.7727 84.0682 51.4299 83.822 50.8799C83.6944 50.585 83.7035 50.2981 83.822 50.0749C84.1594 49.4691 85.1169 49.3017 85.4087 49.8198C85.7187 49.1901 86.6853 49.0227 86.9953 49.5089C87.1139 49.6923 87.1139 49.9792 86.9771 50.314C86.7035 50.9596 85.9558 51.5654 85.3631 51.9002L85.3722 51.8922ZM62.7396 58.7392C62.4205 58.237 61.4539 58.4123 61.1621 59.066V60.3811C61.5724 60.3014 61.9919 60.2217 62.4022 60.142C62.539 59.9667 62.6576 59.7754 62.7305 59.5841C62.8673 59.2333 62.8582 58.9384 62.7305 58.7392H62.7396ZM61.1621 51.4219C61.7457 51.0872 62.4843 50.4654 62.7488 49.8039C62.8855 49.4531 62.8764 49.1582 62.7488 48.959C62.4205 48.4568 61.4539 48.6162 61.1621 49.2618V51.414V51.4219ZM86.6215 44.8779C86.4938 45.1091 86.4756 45.396 86.6123 45.683C86.8585 46.2329 87.588 46.5757 88.1716 46.6952C88.1899 46.0098 88.199 45.3163 88.2172 44.6308C87.9254 44.1127 86.9588 44.2801 86.6215 44.8779ZM88.0075 54.0284C87.7157 53.5183 86.7582 53.6936 86.4208 54.2994C86.2932 54.5306 86.2749 54.8175 86.4117 55.1045C86.4847 55.2639 86.6032 55.3994 86.7309 55.5189C87.1412 55.4392 87.5607 55.3595 87.9801 55.2798C87.9801 54.8653 87.9984 54.4429 88.0075 54.0204V54.0284ZM64.9464 58.3247C64.8187 58.5638 64.8096 58.8587 64.9464 59.1616C65.0193 59.329 65.1379 59.4725 65.2746 59.6C66.1044 59.4406 66.9342 59.2891 67.764 59.1297C67.9008 58.9544 68.0194 58.7631 68.0923 58.5718C68.2291 58.221 68.2291 57.9261 68.1014 57.7348C67.7823 57.2406 66.8248 57.416 66.5148 58.0616C66.223 57.5276 65.2564 57.7109 64.9372 58.3326L64.9464 58.3247ZM70.3173 57.3124C70.1896 57.5515 70.1805 57.8464 70.3173 58.1413C70.3902 58.3008 70.5088 58.4522 70.6455 58.5718C71.4753 58.4123 72.3051 58.2529 73.1349 58.0935C73.2808 57.9182 73.3903 57.7348 73.4723 57.5435C73.6091 57.1928 73.6091 56.9059 73.4814 56.7146C73.1623 56.2204 72.2048 56.4037 71.8948 57.0414C71.603 56.5153 70.6364 56.6907 70.3081 57.3044L70.3173 57.3124ZM75.6882 56.3081C75.5605 56.5472 75.5514 56.8341 75.6882 57.129C75.7611 57.2885 75.8797 57.4319 76.0164 57.5515C76.8462 57.3921 77.676 57.2406 78.5058 57.0812C78.6517 56.9059 78.7612 56.7225 78.8432 56.5312C78.9891 56.1805 78.98 55.9015 78.8615 55.7102C78.5423 55.224 77.5848 55.3994 77.2748 56.037C76.983 55.511 76.0256 55.6943 75.6973 56.3001L75.6882 56.3081ZM81.0591 55.3037C80.9314 55.5349 80.9223 55.8218 81.0591 56.1168C81.132 56.2762 81.2506 56.4196 81.3782 56.5392C82.208 56.3798 83.0378 56.2204 83.8676 56.061C84.0135 55.8856 84.1229 55.7023 84.205 55.5189C84.3509 55.1762 84.3509 54.8892 84.2232 54.7059C83.9132 54.2277 82.9466 54.3951 82.6366 55.0327C82.3448 54.5146 81.3873 54.69 81.0499 55.3037H81.0591Z' fill='url(%23paint5_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:multiply' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M49.0619 52.8959C47.3293 51.772 46.7275 50.9669 46.4722 49.7314L46.4995 51.8118L61.1532 60.3884V58.0131C60.8523 58.6667 59.8128 58.7305 58.9556 58.4037C56.2747 57.3755 51.4601 54.4502 49.0528 52.8879L49.0619 52.8959Z' fill='url(%23paint6_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:multiply' fill-rule='evenodd' clip-rule='evenodd' d='M61.1533 58.0215V60.3968L87.9805 55.3034L88.0534 51.8521C87.6522 53.231 86.8589 54.0201 84.5883 54.9128C80.2296 56.6345 71.0744 58.4599 66.3145 58.9062C63.9528 59.1294 61.5181 59.0896 61.1533 58.0215Z' fill='url(%23paint7_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:multiply' opacity='0.4' fill-rule='evenodd' clip-rule='evenodd' d='M46.2534 37.2098L46.2261 35.4961L61.1533 42.7735V45.89C60.1503 42.9408 49.1076 36.5004 46.2534 37.2098Z' fill='url(%23paint8_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:multiply' opacity='0.75' fill-rule='evenodd' clip-rule='evenodd' d='M61.1533 45.898C63.7065 41.9126 82.719 38.9714 88.327 39.8641L88.3543 38.4214L61.1533 42.7814V45.89V45.898Z' fill='url(%23paint9_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M61.0713 42.7802L88.254 38.4122L72.1596 31.5015L46.2261 35.5028L61.0713 42.7802Z' fill='url(%23paint10_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M72.0869 41.0111L88.3546 38.4206L72.1599 31.502L72.0869 31.8925V41.0111Z' fill='url(%23paint11_radial_4318_875)'/%3e%3cpath d='M72.0863 31.8927L86.9315 38.2375L61.1439 42.3823L47.4203 35.6868L72.0954 31.8927M72.1684 31.4941L46.2349 35.4955L61.0892 42.7888L88.3631 38.4208L72.1593 31.5021L72.1684 31.4941Z' fill='%23FF80DB'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M96.7708 7H37.4082L47.3293 35.687L61.0529 42.3825L86.8497 38.2376L96.7708 7Z' fill='url(%23paint12_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M84.4515 7H49.7275L54.3689 39.1224L60.9891 42.3506L80.1566 39.3137L84.4515 7Z' fill='url(%23paint13_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' d='M80.7105 52.2677C88.235 45.6904 88.235 35.0264 80.7105 28.4491C73.186 21.8717 60.9863 21.8717 53.4618 28.4491C45.9372 35.0264 45.9372 45.6904 53.4618 52.2677C60.9863 58.8451 73.186 58.8451 80.7105 52.2677Z' fill='url(%23paint14_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M52.3447 7H41.9585L50.0194 37.0022L56.6304 40.1985L52.3447 7Z' fill='url(%23paint15_linear_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M73.9192 7H81.5606L77.5758 39.7282L71.2383 40.7484L73.9192 7Z' fill='url(%23paint16_linear_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M65.6303 7H56.4478L58.8095 41.2825L60.9889 42.3506L64.4266 41.8086L65.6303 7Z' fill='url(%23paint17_linear_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M91.8104 7H88.09L81.5884 39.0825L83.0291 38.8514L91.8104 7Z' fill='url(%23paint18_linear_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M95.5399 17.4663L85.3999 38.4694L86.8498 38.2383L95.5399 17.4663Z' fill='url(%23paint19_linear_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.35' fill-rule='evenodd' clip-rule='evenodd' d='M38.6392 14.9155L48.9341 36.4686L47.3293 35.6875L38.6392 14.9155Z' fill='url(%23paint20_linear_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.15' fill-rule='evenodd' clip-rule='evenodd' d='M57.9891 27.7228C60.0499 38.6827 60.0499 47.8093 57.9891 48.1042C55.9282 48.3991 52.5908 39.7587 50.53 28.7989C48.4692 17.839 48.4692 8.71241 50.53 8.41749C52.5908 8.12257 55.9282 16.7629 57.9891 27.7228Z' fill='url(%23paint21_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M83.2934 34.7615C85.2448 24.3995 85.3907 15.7989 83.6217 15.5439C81.8527 15.2888 78.8344 23.4828 76.8921 33.8369C74.9407 44.199 74.7948 52.7995 76.5638 53.0546C78.3329 53.3096 81.3511 45.1156 83.2934 34.7615Z' fill='url(%23paint22_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.25' fill-rule='evenodd' clip-rule='evenodd' d='M51.9067 32.5692C55.0253 41.8073 56.5755 49.555 55.3718 49.8579C54.1681 50.1687 50.6757 42.9232 47.5571 33.6851C44.4385 24.4469 42.8883 16.6993 44.092 16.3964C45.2957 16.0855 48.7881 23.331 51.9067 32.5692Z' fill='url(%23paint23_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M76.6913 36.6731C75.4785 46.9236 73.4815 55.1415 72.2414 55.0299C71.0013 54.9183 70.9739 46.5171 72.1867 36.2666C73.3995 26.0161 75.3965 17.7982 76.6366 17.9098C77.8767 18.0214 77.9041 26.4226 76.6913 36.6731Z' fill='url(%23paint24_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M62.6851 40.5893C62.0377 40.9639 61.1623 40.8045 60.7337 40.2306C60.3051 39.6647 60.4875 38.8995 61.1441 38.5249C61.7915 38.1502 62.6669 38.3096 63.0955 38.8835C63.524 39.4495 63.3417 40.2147 62.6851 40.5893Z' fill='url(%23paint25_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.8' fill-rule='evenodd' clip-rule='evenodd' d='M69.0864 39.3705C68.594 39.6494 67.9374 39.5299 67.6091 39.0994C67.29 38.669 67.4268 38.0951 67.9192 37.8082C68.4116 37.5292 69.0681 37.6488 69.3964 38.0792C69.7156 38.5096 69.5788 39.0835 69.0864 39.3705Z' fill='url(%23paint26_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.8' fill-rule='evenodd' clip-rule='evenodd' d='M60.1319 27.0627C59.7306 27.2939 59.1835 27.1982 58.9191 26.8395C58.6546 26.4888 58.7641 26.0106 59.1744 25.7794C59.5756 25.5483 60.1227 25.6439 60.3872 26.0026C60.6516 26.3533 60.5422 26.8316 60.1319 27.0627Z' fill='url(%23paint27_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.8' fill-rule='evenodd' clip-rule='evenodd' d='M72.6884 31.1122C72.196 31.3911 71.5395 31.2716 71.2112 30.8411C70.892 30.4107 71.0288 29.8368 71.5212 29.5499C72.0136 29.2709 72.6702 29.3905 72.9984 29.8209C73.3176 30.2513 73.1808 30.8252 72.6884 31.1122Z' fill='url(%23paint28_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M67.3629 26.7907C66.8887 27.0617 66.2413 26.9501 65.9312 26.5277C65.6212 26.1132 65.7489 25.5472 66.2322 25.2762C66.7063 25.0052 67.3538 25.1168 67.6638 25.5393C67.9738 25.9538 67.8462 26.5197 67.3629 26.7907Z' fill='url(%23paint29_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M66.8707 36.7157C65.7218 37.3773 64.1716 37.0903 63.4147 36.086C62.6579 35.0817 62.9862 33.7266 64.1351 33.0651C65.2841 32.4035 66.8343 32.6904 67.5911 33.6948C68.348 34.6991 68.0197 36.0541 66.8707 36.7157Z' fill='url(%23paint30_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M73.5729 35.503C72.7248 35.9893 71.585 35.782 71.0196 35.0407C70.4634 34.2994 70.7005 33.3031 71.5485 32.8089C72.3965 32.3227 73.5364 32.5299 74.0926 33.2712C74.6489 34.0125 74.4118 35.0088 73.5637 35.503H73.5729Z' fill='url(%23paint31_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M77.7221 27.8189C77.1111 28.1696 76.2905 28.0182 75.8892 27.4842C75.488 26.9501 75.6613 26.2327 76.2722 25.882C76.8832 25.5313 77.7039 25.6827 78.1051 26.2168C78.5063 26.7508 78.333 27.4682 77.7221 27.8189Z' fill='url(%23paint32_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.75' fill-rule='evenodd' clip-rule='evenodd' d='M53.0194 35.7984C52.0073 36.3802 50.6395 36.1331 49.9738 35.2484C49.3081 34.3636 49.5908 33.168 50.603 32.5861C51.6152 32.0043 52.983 32.2514 53.6486 33.1361C54.3143 34.0209 54.0316 35.2165 53.0194 35.7984Z' fill='url(%23paint33_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.75' fill-rule='evenodd' clip-rule='evenodd' d='M76.1535 32.0693C76.7826 31.7106 77.6216 31.8621 78.041 32.412C78.4514 32.962 78.2781 33.6954 77.6489 34.062C77.0197 34.4207 76.1808 34.2692 75.7613 33.7193C75.351 33.1693 75.5243 32.436 76.1535 32.0693Z' fill='url(%23paint34_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M65.7493 33.9739C65.3024 34.2289 64.7097 34.1173 64.4179 33.7347C64.1261 33.3521 64.2538 32.8261 64.6915 32.571C65.1383 32.3159 65.731 32.4275 66.0228 32.8101C66.3146 33.2007 66.187 33.7188 65.7493 33.9739Z' fill='url(%23paint35_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M69.2779 31.9486C68.6305 32.3233 67.7551 32.1639 67.3356 31.5979C66.9162 31.032 67.0894 30.2668 67.7368 29.9001C68.3843 29.5335 69.2597 29.6849 69.6791 30.2509C70.1077 30.8168 69.9253 31.582 69.2779 31.9486Z' fill='url(%23paint36_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M82.491 36.7473C82.0441 37.0024 81.4514 36.8908 81.1596 36.5082C80.8678 36.1256 80.9955 35.5995 81.4332 35.3444C81.88 35.0894 82.4727 35.201 82.7645 35.5836C83.0563 35.9662 82.9287 36.4922 82.491 36.7473Z' fill='url(%23paint37_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M63.588 30.7374C62.7947 31.1917 61.7369 31.0004 61.2263 30.307C60.7065 29.6135 60.9253 28.6889 61.7187 28.2425C62.512 27.7882 63.5698 27.9795 64.0804 28.673C64.6002 29.3664 64.3813 30.291 63.588 30.7374Z' fill='url(%23paint38_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M67.7005 38.9539C67.4998 39.0655 67.2354 39.0177 67.1077 38.8423C66.9801 38.6669 67.0348 38.4358 67.2354 38.3242C67.436 38.2126 67.7005 38.2604 67.8281 38.4358C67.9558 38.6111 67.9011 38.8423 67.7005 38.9539Z' fill='url(%23paint39_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M74.5032 37.4329C74.3026 37.5445 74.0381 37.4967 73.9105 37.3213C73.7828 37.1459 73.8375 36.9148 74.0381 36.8032C74.2387 36.6916 74.5032 36.7394 74.6308 36.9148C74.7585 37.0901 74.7038 37.3213 74.5032 37.4329Z' fill='url(%23paint40_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M76.6644 33.7015C76.9379 33.5421 77.3118 33.6138 77.4942 33.8529C77.6765 34.0921 77.5945 34.4189 77.3209 34.5783C77.0474 34.7377 76.6735 34.666 76.4911 34.4268C76.3087 34.1877 76.3908 33.8609 76.6644 33.7015Z' fill='url(%23paint41_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M68.22 30.2757C68.0194 30.3873 67.7549 30.3394 67.6273 30.1641C67.4996 29.9887 67.5543 29.7576 67.7549 29.646C67.9555 29.5344 68.22 29.5822 68.3476 29.7576C68.4753 29.9329 68.4206 30.1641 68.22 30.2757Z' fill='url(%23paint42_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M64.8736 22.7265C65.0742 22.6149 65.3386 22.6628 65.4663 22.8381C65.594 23.0135 65.5392 23.2446 65.3386 23.3562C65.138 23.4678 64.8736 23.42 64.7459 23.2446C64.6183 23.0693 64.673 22.8381 64.8736 22.7265Z' fill='url(%23paint43_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M56.8674 31.9256C56.6668 32.0372 56.4024 31.9893 56.2747 31.814C56.1471 31.6386 56.2018 31.4075 56.4024 31.2959C56.603 31.1843 56.8674 31.2321 56.9951 31.4075C57.1228 31.5828 57.0681 31.814 56.8674 31.9256Z' fill='url(%23paint44_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M68.448 19.3466C68.0742 19.5618 67.5635 19.4742 67.3173 19.1394C67.0711 18.8046 67.1714 18.3662 67.5544 18.151C67.9283 17.9358 68.4389 18.0235 68.6851 18.3583C68.9313 18.6851 68.831 19.1314 68.448 19.3466Z' fill='url(%23paint45_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M55.5908 28.6157C54.9525 28.9824 54.0862 28.823 53.6668 28.265C53.2473 27.7071 53.4297 26.9498 54.068 26.5832C54.7063 26.2165 55.5726 26.3759 55.992 26.9339C56.4115 27.4918 56.2291 28.2491 55.5908 28.6157Z' fill='url(%23paint46_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.75' fill-rule='evenodd' clip-rule='evenodd' d='M55.6912 29.4761C55.2626 29.7232 54.679 29.6195 54.3963 29.2369C54.1137 28.8543 54.2322 28.3522 54.6699 28.1051C55.1076 27.858 55.6821 27.9616 55.9647 28.3442C56.2474 28.7188 56.1289 29.229 55.6912 29.4761Z' fill='url(%23paint47_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M72.1505 24.8868C71.8131 25.0781 71.3572 24.9984 71.1384 24.7035C70.9195 24.4086 71.0107 24.01 71.3481 23.8187C71.6855 23.6274 72.1414 23.7071 72.3603 24.002C72.5791 24.297 72.4879 24.6955 72.1505 24.8868Z' fill='url(%23paint48_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M77.9681 30.6413C77.7401 30.7689 77.4301 30.7131 77.2842 30.5138C77.1383 30.3145 77.2021 30.0435 77.4301 29.916C77.6581 29.7884 77.9681 29.8442 78.114 30.0435C78.2599 30.2428 78.1961 30.5138 77.9681 30.6413Z' fill='url(%23paint49_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M54.2231 34.3479C53.603 34.7066 52.7732 34.5551 52.3629 34.0131C51.9525 33.4711 52.1258 32.7458 52.7459 32.3871C53.3659 32.0284 54.1957 32.1798 54.6061 32.7219C55.0164 33.2639 54.8432 33.9892 54.2231 34.3479Z' fill='url(%23paint50_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M64.2534 30.0515C63.9251 30.2428 63.4783 30.1631 63.2595 29.8682C63.0406 29.5813 63.1318 29.1907 63.4692 28.9994C63.7975 28.8081 64.2443 28.8878 64.4631 29.1827C64.682 29.4776 64.5908 29.8602 64.2534 30.0515Z' fill='url(%23paint51_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M71.5758 35.6075C71.1837 35.8307 70.6548 35.7351 70.3995 35.3923C70.1442 35.0496 70.2536 34.5873 70.6457 34.3641C71.0378 34.1409 71.5667 34.2366 71.822 34.5793C72.0773 34.9221 71.9679 35.3844 71.5758 35.6075Z' fill='url(%23paint52_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M70.044 29.0071C69.7431 29.1825 69.3418 29.1027 69.1412 28.8397C68.9406 28.5767 69.0318 28.226 69.3327 28.0506C69.6336 27.8752 70.0349 27.9549 70.2355 28.218C70.4361 28.481 70.3449 28.8317 70.044 29.0071Z' fill='url(%23paint53_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.5' fill-rule='evenodd' clip-rule='evenodd' d='M82.9013 35.7669C82.6734 35.8944 82.3724 35.8386 82.2265 35.6473C82.0806 35.456 82.1445 35.185 82.3633 35.0575C82.5913 34.9299 82.8922 34.9857 83.0381 35.177C83.184 35.3683 83.1202 35.6393 82.9013 35.7669Z' fill='url(%23paint54_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.75' fill-rule='evenodd' clip-rule='evenodd' d='M58.9101 33.9971C57.8979 34.579 56.5301 34.3319 55.8644 33.4471C55.1988 32.5624 55.4814 31.3667 56.4936 30.7849C57.5058 30.203 58.8736 30.4501 59.5393 31.3349C60.2049 32.2196 59.9222 33.4152 58.9101 33.9971Z' fill='url(%23paint55_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M58.9738 31.4231C58.6 31.6383 58.1075 31.5427 57.8613 31.2239C57.6151 30.8971 57.7246 30.4666 58.0893 30.2514C58.4632 30.0362 58.9556 30.1319 59.2018 30.4507C59.448 30.7775 59.3386 31.2079 58.9738 31.4231Z' fill='url(%23paint56_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:multiply' fill-rule='evenodd' clip-rule='evenodd' d='M54.7157 56.7614L57.7796 41.2103L56.7218 40.7002L50.5576 54.2825L54.7157 56.7614Z' fill='url(%23paint57_linear_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M47.1106 26.3838L53.594 33.709L41.2017 57.741L35.7031 48.8615L47.1106 26.3838Z' fill='url(%23paint58_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M53.5937 33.7095L60.5057 35.9413L53.5299 28.4647L47.1104 26.3843L53.5937 33.7095Z' fill='url(%23paint59_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M60.5059 35.9403L53.5939 33.7085L41.2017 57.7405L48.1501 59.8368L60.5059 35.9403Z' fill='url(%23paint60_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M36.624 50.1853C36.8064 49.9302 36.9432 49.6512 37.0252 49.4041C37.2258 48.7745 37.0252 48.4556 36.6878 48.91C36.9067 48.2643 36.7061 47.9455 36.3778 48.3679C36.2501 48.5274 36.1134 48.7904 35.9857 49.1411C35.9766 49.181 35.9583 49.2128 35.9492 49.2447C36.1589 49.5795 36.3687 49.9223 36.5784 50.257C36.5966 50.2331 36.6149 50.2092 36.6331 50.1853H36.624ZM37.472 50.1295C37.3444 50.2889 37.1985 50.5599 37.0708 50.9186C37.0617 50.9505 37.0435 50.9903 37.0343 51.0143C37.2441 51.349 37.4538 51.6918 37.6635 52.0265C37.6818 52.0106 37.7 51.9787 37.7182 51.9628C37.9097 51.6918 38.0465 51.4128 38.1195 51.1657C38.3201 50.528 38.1195 50.2092 37.7821 50.6715C38.01 50.0179 37.8094 49.6991 37.472 50.1215V50.1295ZM38.5754 51.891C38.4477 52.0505 38.3018 52.3294 38.1742 52.6881C38.1559 52.728 38.1468 52.7599 38.1377 52.7917C38.3474 53.1265 38.5572 53.4693 38.7669 53.804C38.7851 53.7881 38.8034 53.7562 38.8216 53.7323C39.0131 53.4613 39.1499 53.1823 39.2319 52.9352C39.4417 52.2896 39.2411 51.9707 38.8946 52.441C39.1225 51.7794 38.9219 51.4686 38.5845 51.899L38.5754 51.891ZM39.6788 53.6526C39.5511 53.82 39.4052 54.099 39.2684 54.4576C39.2593 54.4895 39.2411 54.5294 39.2319 54.5613C39.4417 54.896 39.6514 55.2388 39.8611 55.5736C39.8794 55.5496 39.8976 55.5257 39.9158 55.5018C40.1073 55.2308 40.2532 54.9439 40.3353 54.6968C40.545 54.0432 40.3535 53.7323 39.9979 54.2026C40.235 53.533 40.0344 53.2142 39.6879 53.6526H39.6788ZM40.7821 55.4141C40.6545 55.5815 40.4994 55.8685 40.3627 56.2351C40.3535 56.267 40.3353 56.3069 40.3262 56.3388C40.5359 56.6735 40.7456 57.0163 40.9554 57.3511C40.9736 57.3271 40.9918 57.3032 41.0101 57.2793C41.2016 57.0003 41.3475 56.7134 41.4387 56.4583C41.6575 55.7967 41.4569 55.4859 41.0922 55.9721C41.3292 55.2946 41.1377 54.9837 40.7821 55.4221V55.4141ZM43.0344 54.1468C43.3992 53.4454 43.7639 52.736 44.1287 52.0345C44.3658 51.357 44.1651 51.0541 43.8004 51.5084C43.6636 51.6758 43.5177 51.9628 43.3809 52.3294C43.1256 53.0149 43.0344 53.7323 43.0344 54.1468ZM41.9037 52.4171C42.1408 52.3773 42.542 52.1381 42.9068 51.62C43.0983 51.3411 43.2442 51.0541 43.3262 50.807C43.536 50.1534 43.3262 49.8505 42.9706 50.3367C43.2077 49.6672 42.998 49.3643 42.6514 49.8027C42.5147 49.9701 42.3688 50.257 42.232 50.6157C41.9767 51.2932 41.8946 52.0026 41.8946 52.4171H41.9037ZM40.773 50.6875C41.0101 50.6476 41.4113 50.4164 41.7669 49.9063C41.9584 49.6353 42.1043 49.3484 42.1773 49.1013C42.387 48.4556 42.1773 48.1527 41.8216 48.631C42.0496 47.9694 41.8399 47.6665 41.5025 48.1049C41.3748 48.2723 41.2289 48.5513 41.0922 48.902C40.8459 49.5795 40.7639 50.2809 40.7639 50.6954L40.773 50.6875ZM39.6423 48.9578C39.8794 48.9259 40.2715 48.6947 40.6271 48.1926C40.8186 47.9295 40.9554 47.6426 41.0374 47.3955C41.2381 46.7578 41.0374 46.4549 40.6909 46.9173C40.9098 46.2636 40.7092 45.9608 40.3627 46.3912C40.235 46.5506 40.0891 46.8296 39.9614 47.1803C39.7152 47.8498 39.6423 48.5433 39.6514 48.9498L39.6423 48.9578ZM39.4873 46.4789C39.6696 46.2158 39.8155 45.9368 39.8885 45.6977C40.0891 45.068 39.8885 44.7651 39.542 45.2274C39.7608 44.5818 39.542 44.2789 39.2137 44.7014C39.086 44.8608 38.9401 45.1318 38.8216 45.4825C38.5845 46.1441 38.5116 46.8296 38.5207 47.2361C38.7578 47.2042 39.1408 46.989 39.4873 46.4868V46.4789ZM38.3474 44.7651C38.5298 44.5021 38.6666 44.2311 38.7395 43.992C38.931 43.3623 38.7395 43.0673 38.393 43.5137C38.0556 44.1753 37.7274 44.8369 37.39 45.4905C37.6179 45.4586 38.0009 45.2513 38.3474 44.7572V44.7651ZM40.5359 40.1022C40.2988 40.7558 40.235 41.4333 40.2532 41.8319C40.4903 41.792 40.8824 41.5688 41.2289 41.0746C41.4113 40.8116 41.5572 40.5326 41.6302 40.2935C41.8216 39.6718 41.6119 39.3769 41.2654 39.8392C41.4751 39.1935 41.2654 38.9066 40.928 39.329C40.8004 39.4884 40.6545 39.7595 40.5359 40.1022ZM41.7122 41.7522C41.4751 42.4058 41.4022 43.0913 41.4204 43.4978C41.6575 43.4579 42.0496 43.2268 42.4052 42.7246C42.5967 42.4616 42.7335 42.1746 42.8156 41.9355C43.0162 41.3058 42.7973 41.0188 42.4508 41.4812C42.6697 40.8355 42.4508 40.5406 42.1134 40.971C41.9858 41.1304 41.8399 41.4094 41.7122 41.7601V41.7522ZM42.8885 43.4021C42.6423 44.0717 42.5694 44.7572 42.5785 45.1637C42.8247 45.1238 43.2168 44.8847 43.5816 44.3746C43.773 44.1036 43.9189 43.8246 43.9919 43.5775C44.1925 42.9398 43.9919 42.6449 43.6271 43.1231C43.8551 42.4695 43.6271 42.1746 43.2898 42.613C43.153 42.7804 43.0162 43.0594 42.8885 43.4101V43.4021ZM44.0648 45.0521C43.8186 45.7296 43.7366 46.4231 43.7457 46.8296C43.9919 46.7817 44.3931 46.5426 44.7579 46.0245C44.9494 45.7455 45.0953 45.4586 45.1773 45.2115C45.387 44.5659 45.1773 44.2789 44.8126 44.7572C45.0405 44.0956 44.8217 43.8007 44.4752 44.247C44.3384 44.4144 44.1925 44.7014 44.0648 45.0521ZM45.6606 45.881C45.5238 46.0564 45.3779 46.3354 45.2411 46.702C44.9858 47.3875 44.9038 48.081 44.9129 48.4955C45.1591 48.4476 45.5694 48.2006 45.9342 47.6745C46.1257 47.3955 46.2807 47.1006 46.3627 46.8535C46.5725 46.1999 46.3627 45.9129 45.998 46.3991C46.226 45.7296 46.0162 45.4426 45.6697 45.889L45.6606 45.881ZM47.9768 44.518C48.3415 43.8166 48.7062 43.1072 49.071 42.4058C49.299 41.7362 49.0801 41.4572 48.7245 41.9116C48.5877 42.0869 48.4327 42.3739 48.305 42.7326C48.0497 43.4181 47.9676 44.1115 47.9859 44.518H47.9768ZM46.764 42.9159C47.0102 42.8601 47.4296 42.605 47.7944 42.079C47.995 41.8 48.1318 41.5051 48.2138 41.258C48.4236 40.6123 48.2047 40.3334 47.84 40.8196C48.0679 40.158 47.84 39.871 47.4935 40.3254C47.3567 40.5007 47.2108 40.7797 47.074 41.1384C46.8278 41.8159 46.7548 42.5014 46.764 42.9079V42.9159ZM46.5725 40.4928C46.764 40.2138 46.9099 39.9348 46.9828 39.6877C47.1834 39.0501 46.9646 38.7631 46.609 39.2493C46.8369 38.5957 46.609 38.3088 46.2624 38.7551C46.1348 38.9225 45.9889 39.2015 45.8612 39.5522C45.615 40.2218 45.5421 40.9073 45.5603 41.3058C45.8065 41.25 46.2168 41.0029 46.5725 40.4848V40.4928ZM45.3597 38.9066C45.5512 38.6356 45.688 38.3566 45.77 38.1095C45.9706 37.4798 45.7518 37.2008 45.3962 37.6711C45.615 37.0255 45.3962 36.7385 45.0497 37.1769C44.922 37.3443 44.7761 37.6153 44.6484 37.966C44.4113 38.6276 44.3384 39.3051 44.3566 39.7037C44.6028 39.6558 45.0041 39.4167 45.3597 38.9066ZM44.1378 37.3204C44.3202 37.0573 44.4661 36.7784 44.539 36.5392C44.7396 35.9175 44.5117 35.6385 44.1651 36.1008C44.3749 35.4632 44.1651 35.1762 43.8186 35.6067C43.691 35.774 43.5451 36.0451 43.4265 36.3878C43.1894 37.0334 43.1256 37.711 43.1439 38.1095C43.3901 38.0617 43.7822 37.8305 44.1378 37.3204ZM42.9159 35.7342C43.0983 35.4712 43.235 35.2001 43.308 34.961C43.4995 34.3473 43.2806 34.0683 42.9341 34.5226C42.5967 35.1842 42.2593 35.8458 41.9311 36.5074C42.1682 36.4595 42.5694 36.2284 42.9159 35.7422V35.7342ZM45.0953 31.0872C44.8673 31.7328 44.8126 32.3944 44.8308 32.777C45.077 32.7212 45.4782 32.4821 45.8339 31.9799C46.0162 31.7169 46.1621 31.4379 46.2351 31.1988C46.4266 30.585 46.1986 30.314 45.8521 30.7763C46.0618 30.1466 45.8339 29.8756 45.4965 30.3061C45.3688 30.4655 45.2229 30.7365 45.1044 31.0792L45.0953 31.0872ZM46.7457 31.8285C46.6181 31.9959 46.4722 32.2669 46.3445 32.6096C46.1074 33.2632 46.0527 33.9328 46.0709 34.3234C46.3172 34.2676 46.7184 34.0205 47.0831 33.5103C47.2746 33.2393 47.4205 32.9603 47.4935 32.7212C47.685 32.0995 47.457 31.8285 47.1014 32.3067C47.3111 31.6611 47.0922 31.3901 46.7457 31.8285ZM48.0132 33.3429C47.8764 33.5183 47.7305 33.7893 47.6029 34.14C47.3658 34.8016 47.302 35.4712 47.3202 35.8617C47.5664 35.8059 47.9768 35.5509 48.3415 35.0328C48.533 34.7618 48.6789 34.4748 48.7518 34.2357C48.9524 33.606 48.7245 33.335 48.3597 33.8132C48.5786 33.1676 48.3597 32.8966 48.0041 33.335L48.0132 33.3429ZM49.2716 34.8574C49.1348 35.0328 48.9889 35.3117 48.8613 35.6625C48.6151 36.332 48.5512 37.0095 48.5695 37.4081C48.8248 37.3443 49.2351 37.0813 49.5999 36.5632C49.7914 36.2842 49.9373 35.9972 50.0193 35.7581C50.2199 35.1204 50.0011 34.8494 49.6364 35.3357C49.8643 34.682 49.6364 34.411 49.2807 34.8654L49.2716 34.8574ZM50.5391 36.3719C50.4023 36.5472 50.2473 36.8342 50.1196 37.1929C49.8734 37.8704 49.8005 38.5559 49.8096 38.9544C50.0649 38.8906 50.4844 38.6276 50.8583 38.0936C51.0589 37.8146 51.2048 37.5197 51.2777 37.2726C51.4874 36.6269 51.2595 36.3559 50.8856 36.8501C51.1136 36.1885 50.8856 35.9175 50.53 36.3719H50.5391ZM52.9191 34.9132C53.1288 34.5067 53.3385 34.1002 53.5574 33.6857C53.4297 33.5502 53.3112 33.4067 53.1835 33.2712C52.9647 33.9168 52.9008 34.5465 52.9191 34.9212V34.9132ZM51.6333 33.4306C51.8795 33.3669 52.2716 33.1198 52.6273 32.6335C52.3811 32.3546 52.1349 32.0756 51.8887 31.7966C51.6698 32.4343 51.6151 33.056 51.6333 33.4306ZM50.3476 31.9481C50.5938 31.8843 50.9768 31.6452 51.3324 31.1669C51.0862 30.8879 50.84 30.609 50.5938 30.33C50.3841 30.9597 50.3294 31.5814 50.3476 31.9481ZM49.0619 30.4655C49.299 30.4097 49.6819 30.1706 50.0376 29.7003C49.7914 29.4213 49.5452 29.1423 49.299 28.8633C49.0892 29.4851 49.0436 30.0988 49.0619 30.4655ZM47.7761 28.9829C48.0132 28.9271 48.3962 28.696 48.7427 28.2337C48.4965 27.9547 48.2503 27.6757 48.0041 27.3967C47.8035 28.0105 47.7579 28.6242 47.7761 28.9829ZM46.4904 27.5003C46.7275 27.4445 47.1014 27.2214 47.4479 26.767C47.3202 26.6315 47.2017 26.488 47.074 26.3525C46.8825 26.7351 46.6819 27.1177 46.4904 27.5003Z' fill='url(%23paint61_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M42.688 57.1347C42.46 57.3101 42.305 57.597 42.2686 57.9637C42.2686 58.0036 42.2686 58.0354 42.2686 58.0673C42.7336 58.2108 43.2078 58.3543 43.6819 58.4898C44.1561 58.6333 44.6212 58.7767 45.0953 58.9122C45.1227 58.8883 45.1592 58.8644 45.1774 58.8405C45.4692 58.5535 45.6151 58.2666 45.606 58.0195C45.5878 57.3739 44.7124 57.1108 44.1288 57.613C44.1561 56.9434 43.2716 56.6804 42.688 57.1427V57.1347ZM47.7215 58.6572C47.5027 58.8325 47.3385 59.1195 47.3021 59.4782C47.3021 59.51 47.3021 59.5499 47.3021 59.5818C47.5847 59.6695 47.8765 59.7571 48.1592 59.8368C48.3872 59.4064 48.606 58.968 48.834 58.5296C48.5331 58.3622 48.0772 58.3782 47.7306 58.6492L47.7215 58.6572ZM47.986 55.6681C48.6425 55.5964 49.5635 55.3333 50.1106 54.7993C50.4024 54.5203 50.5483 54.2254 50.5392 53.9783C50.521 53.3327 49.6456 53.0616 49.0711 53.5638C49.0984 52.8943 48.2139 52.6312 47.6303 53.0856C47.4115 53.2609 47.2474 53.5479 47.2109 53.9066C47.1379 54.592 47.5665 55.2696 47.986 55.6681ZM43.0436 54.1616C43.7002 54.0899 44.6212 53.8189 45.1774 53.2848C45.4692 53.0059 45.6151 52.7109 45.606 52.4638C45.5878 51.8182 44.7124 51.5472 44.1379 52.0494C43.7731 52.7588 43.4084 53.4602 43.0436 54.1616ZM47.6395 47.5299C47.4115 47.7053 47.2565 47.9922 47.22 48.3589C47.147 49.0444 47.5756 49.7298 47.986 50.1284C48.6425 50.0567 49.5635 49.7936 50.1106 49.2596C50.4024 48.9806 50.5483 48.6857 50.5392 48.4386C50.521 47.7929 49.6456 47.5219 49.0711 48.0161C49.0984 47.3466 48.2139 47.0756 47.6303 47.5379L47.6395 47.5299ZM52.6638 49.0922C52.4359 49.2675 52.2809 49.5545 52.2444 49.9132C52.1988 50.3675 52.372 50.8218 52.6183 51.1965C53.0012 50.4632 53.3842 49.7139 53.7672 48.9806C53.4663 48.8052 53.0104 48.8212 52.6638 49.0922ZM52.9283 46.0952C53.5848 46.0234 54.5058 45.7683 55.0529 45.2343C55.3447 44.9553 55.4906 44.6604 55.4815 44.4133C55.4633 43.7677 54.5879 43.4887 54.0134 43.9829C54.0408 43.3133 53.1654 43.0344 52.5727 43.4967C52.3447 43.672 52.1897 43.959 52.1532 44.3177C52.0802 45.0031 52.5088 45.6886 52.9192 46.0872L52.9283 46.0952ZM48.0042 44.5488C48.6516 44.485 49.5726 44.222 50.1289 43.688C50.4207 43.409 50.5665 43.1141 50.5574 42.867C50.5483 42.2134 49.6729 41.9424 49.0893 42.4365C48.7246 43.138 48.3598 43.8474 48.0042 44.5488ZM52.6 37.9251C52.3812 38.1004 52.217 38.3874 52.1806 38.754C52.1076 39.4395 52.5362 40.133 52.9465 40.5315C53.594 40.4678 54.5149 40.2047 55.0712 39.6786C55.363 39.3997 55.5089 39.1047 55.4998 38.8576C55.4815 38.204 54.6152 37.9251 54.0408 38.4272C54.0681 37.7577 53.1927 37.4787 52.6091 37.933L52.6 37.9251ZM57.6062 39.5272C57.3873 39.7026 57.2323 39.9895 57.1867 40.3482C57.132 40.8105 57.3144 41.2648 57.5606 41.6395C57.9436 40.8982 58.3265 40.1569 58.7095 39.4156C58.4086 39.2402 57.9527 39.2562 57.6062 39.5272ZM57.8706 36.5222C58.4907 36.4584 59.3478 36.2273 59.9132 35.749C59.4481 35.5976 58.974 35.4461 58.5089 35.2947C58.0439 35.1432 57.5697 34.9918 57.1046 34.8404C57.0773 35.494 57.4876 36.1396 57.8706 36.5222ZM52.9556 34.936C53.5757 34.8802 54.4329 34.6411 54.9891 34.1628C54.5241 34.0114 54.0499 33.8599 53.5848 33.7085C53.3751 34.123 53.1654 34.5295 52.9556 34.936Z' fill='url(%23paint62_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M52.0436 28.2018C51.5329 28.0822 51.2593 28.138 51.1864 28.2337C51.5511 28.4648 52.1986 28.8155 52.846 29.0786C53.1925 29.2141 53.4661 29.3018 53.6393 29.3336C54.0861 29.4133 53.8399 29.1503 53.2016 28.8873C53.6849 28.9829 53.4296 28.7199 52.8186 28.4568C52.5816 28.3612 52.308 28.2655 52.0344 28.2018H52.0436ZM54.2047 29.9474C53.9676 29.8438 53.6849 29.7561 53.4114 29.6923C52.8916 29.5728 52.6089 29.6286 52.5268 29.7162C52.9007 29.9474 53.5481 30.3061 54.2047 30.5691C54.5512 30.7126 54.8339 30.8003 55.0162 30.8322C55.4722 30.9198 55.226 30.6488 54.5785 30.3858C55.071 30.4814 54.8156 30.2184 54.1956 29.9554L54.2047 29.9474ZM55.5816 31.4379C55.3445 31.3343 55.0527 31.2387 54.77 31.1749C54.2412 31.0553 53.9494 31.1032 53.8673 31.1908C54.2412 31.43 54.8977 31.7807 55.5725 32.0517C55.9281 32.1952 56.2108 32.2828 56.3932 32.3147C56.8582 32.4024 56.612 32.1314 55.9555 31.8684C56.457 31.972 56.2017 31.701 55.5816 31.4379ZM56.9585 32.9285C56.7123 32.8249 56.4205 32.7292 56.1378 32.6654C55.5998 32.5379 55.308 32.5937 55.2169 32.6734C55.5907 32.9125 56.2564 33.2633 56.9403 33.5343C57.305 33.6777 57.5877 33.7734 57.7701 33.8053C58.2443 33.8929 57.9981 33.6299 57.3324 33.3589C57.843 33.4625 57.5877 33.1995 56.9585 32.9285ZM58.3354 34.419C58.0892 34.3154 57.7974 34.2198 57.5056 34.148C56.9585 34.0205 56.6576 34.0683 56.5664 34.148C56.9494 34.3871 57.6242 34.7458 58.3081 35.0168C58.6728 35.1603 58.9646 35.256 59.1561 35.2878C59.6394 35.3835 59.3932 35.1125 58.7184 34.8415C59.2291 34.9531 58.9829 34.6821 58.3446 34.4111L58.3354 34.419ZM54.4874 34.0045C55.0071 34.1161 54.77 33.8531 54.1317 33.5821C53.8855 33.4785 53.5846 33.3828 53.2928 33.3111C53.2655 33.3111 53.2381 33.2951 53.2107 33.2951C53.3384 33.4386 53.4569 33.5741 53.5846 33.7096C53.8855 33.8053 54.1864 33.9089 54.4965 34.0045H54.4874ZM52.7548 32.7053C53.1104 32.8488 53.4114 32.9444 53.5937 32.9763C54.077 33.072 53.8399 32.8089 53.1834 32.5299C53.694 32.6415 53.4569 32.3705 52.8278 32.1075C52.5907 32.0039 52.2898 31.9082 52.0071 31.8444C51.9797 31.8444 51.9524 31.8285 51.925 31.8285C52.1712 32.1075 52.4174 32.3865 52.6636 32.6654C52.7001 32.6814 52.7275 32.6894 52.7639 32.7053H52.7548ZM51.46 31.2387C51.8156 31.3821 52.1074 31.4698 52.2806 31.5097C52.7548 31.5974 52.5177 31.3343 51.8612 31.0633C52.3718 31.1669 52.1347 30.9039 51.5056 30.6409C51.2685 30.5372 50.9767 30.4416 50.694 30.3778C50.6666 30.3778 50.6393 30.3619 50.6119 30.3619C50.8581 30.6409 51.1043 30.9198 51.3505 31.1988C51.387 31.2148 51.4144 31.2227 51.4508 31.2387H51.46ZM50.1651 29.772C50.5116 29.9155 50.8034 30.0032 50.9767 30.0351C51.4417 30.1228 51.2046 29.8597 50.5663 29.5887C51.0587 29.6923 50.8308 29.4293 50.2107 29.1663C49.9736 29.0626 49.6909 28.975 49.4083 28.9112C49.3809 28.9112 49.3535 28.9032 49.3262 28.8952C49.5724 29.1742 49.8186 29.4532 50.0648 29.7322C50.1013 29.7481 50.1286 29.7641 50.1651 29.772ZM48.8703 28.3054C49.2168 28.4409 49.4994 28.5366 49.6727 28.5684C50.1286 28.6561 49.8915 28.3931 49.2624 28.13C49.7456 28.2257 49.5177 27.9706 48.9067 27.7076C48.6788 27.6119 48.387 27.5163 48.1134 27.4525C48.086 27.4525 48.0587 27.4446 48.0313 27.4366C48.2775 27.7156 48.5237 27.9945 48.77 28.2735C48.8064 28.2895 48.8338 28.2974 48.8703 28.3134V28.3054ZM47.5754 26.8388C47.9128 26.9743 48.1955 27.062 48.3687 27.0938C48.8155 27.1735 48.5785 26.9105 47.9584 26.6475C47.6757 26.5518 47.393 26.4641 47.1104 26.3765C47.238 26.5199 47.3566 26.6554 47.4842 26.7989C47.5207 26.8149 47.548 26.8228 47.5845 26.8388H47.5754Z' fill='white'/%3e%3cpath style='mix-blend-mode:screen' opacity='0.2' fill-rule='evenodd' clip-rule='evenodd' d='M47.1108 26.3843L53.5942 33.7095L41.2019 57.7415L40.29 56.2669C41.4937 56.6734 51.5516 38.1731 51.4969 34.3152C51.4513 30.6646 48.6154 27.7871 47.3297 27.6038C46.5728 27.4922 46.2901 28.0183 46.2901 28.0183L47.1108 26.3922V26.3843Z' fill='url(%23paint63_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:multiply' opacity='0.3' fill-rule='evenodd' clip-rule='evenodd' d='M42.0679 57.9973C48.4692 59.8386 61.5271 37.4964 57.0499 34.8262L60.5058 35.9421L48.15 59.8386L42.0679 57.9973Z' fill='url(%23paint64_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' d='M47.4916 29.7098C52.0993 25.1312 52.0993 17.7077 47.4916 13.1291C42.8838 8.55041 35.4132 8.55041 30.8055 13.1291C26.1977 17.7077 26.1977 25.1312 30.8055 29.7098C35.4132 34.2885 42.8838 34.2885 47.4916 29.7098Z' fill='url(%23paint65_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' d='M99.0385 19.4814C104.41 19.4814 108.764 15.1547 108.764 9.81738C108.764 4.48007 104.41 0.15332 99.0385 0.15332C93.6672 0.15332 89.313 4.48007 89.313 9.81738C89.313 15.1547 93.6672 19.4814 99.0385 19.4814Z' fill='url(%23paint66_radial_4318_875)'/%3e%3cpath d='M90.0004 21.7916C88.9465 20.3688 88.7976 18.1036 89.4047 16.4758C89.6453 15.8384 93.059 16.0205 93.4026 16.4644C93.7577 16.9084 93.5859 17.6369 93.8952 18.4337C94.3534 19.6061 96.8392 18.7069 95.6249 17.2613C94.9605 16.4644 94.0441 15.9295 93.1964 15.3831C91.123 14.0513 90.4013 12.1276 91.0658 10.2722C91.6385 8.67856 93.0704 7.23293 94.72 6.53858C97.1599 5.5255 101.845 6.43613 102.739 9.14526C103.208 10.5795 103.14 12.4804 102.12 13.3C100.196 14.8708 96.885 13.4366 97.6754 11.3877C97.7441 11.2169 98.1336 11.1031 98.0305 10.9551C97.4348 10.0673 94.972 11.2966 96.1175 12.8105C96.7819 13.687 97.9045 14.4041 98.9813 15.2009C100.803 16.5327 101.879 19.4012 99.1646 21.7461C96.4153 24.1137 91.8791 24.3414 89.9775 21.7916H90.0004ZM75.7387 15.9636C75.8532 14.3245 76.9758 4.11402 77.835 3.23754C78.1672 2.89606 81.787 3.23754 81.8672 4.05711C82.062 5.9922 81.031 11.6723 80.5384 14.7456C80.3093 16.2026 80.6644 16.7263 81.1455 16.897C81.6152 17.0677 82.1994 16.8742 82.6233 15.5424C82.9211 14.609 84.101 4.37583 84.6394 4.11402C85.235 3.82945 88.832 4.262 88.6716 5.84422C88.2821 9.69164 87.7437 13.1634 87.0908 16.9653C86.1744 22.3039 79.7595 22.4291 76.9529 19.7313C76.1052 18.9232 75.6356 17.7279 75.7616 15.9522L75.7387 15.9636ZM61.6946 20.4143C61.4311 20.2436 60.5147 4.94497 61.7862 3.76116C62.8401 2.78223 65.5321 2.52042 66.437 3.82945C67.3535 5.16125 68.0866 8.81515 68.625 10.5567C68.6708 8.02973 68.7854 7.39229 68.6937 4.97912C68.6135 2.72531 72.1074 2.16755 72.9436 3.59041C73.2987 4.1937 73.3904 4.89944 73.4362 5.61656C73.5851 8.14356 73.2071 19.0825 71.9585 20.3119C71.3742 20.881 68.4761 20.6989 68.1324 20.0956C67.1931 18.4565 66.9525 16.1685 66.2652 14.6773C66.185 15.8612 66.4027 19.6972 66.2652 20.0728C66.0017 20.7558 62.3704 20.8469 61.706 20.4143H61.6946ZM54.031 15.827C54.2945 14.0285 54.2143 11.5243 53.7332 9.88514C52.9428 7.17602 51.4422 8.07527 51.2474 10.5681C51.1214 12.1959 51.4193 14.37 51.992 16.0091C52.8626 18.502 53.6645 18.3426 54.031 15.827ZM48.0858 17.9898C46.253 14.4155 46.104 8.31431 48.1316 5.49135C49.5062 3.59041 54.1914 3.15786 55.8524 4.86529C58.3268 7.40368 59.1744 13.0268 58.3268 16.3392C56.7918 22.3039 50.8121 23.2828 48.0858 17.9784V17.9898ZM39.3455 10.6592C38.9445 10.3405 38.2572 10.5681 37.547 10.8413C37.8219 11.9796 38.0854 13.1293 38.3603 14.2676C39.9182 13.596 40.6514 11.695 39.3455 10.6592ZM41.6021 18.4565C41.1439 17.3978 39.9411 17.5003 39.0018 17.7393L39.6433 20.3574C40.4795 20.3915 42.1978 19.8452 41.6021 18.4565ZM37.3752 24.182C34.855 24.33 32.5983 10.0331 32.6327 9.73717C32.7244 8.96313 33.1826 8.31431 33.7897 7.88176C35.5423 6.65241 38.578 6.0605 40.6628 6.54996C43.0684 7.1191 45.0158 10.0331 44.6263 12.4349C44.4659 13.4821 43.8703 14.4497 42.8164 15.3375C43.8817 15.4172 44.8096 15.8953 45.3022 16.5214C46.4821 18.0125 46.4362 20.2322 45.1647 21.655C43.435 23.6015 39.8037 24.0341 37.3752 24.182Z' fill='url(%23paint67_radial_4318_875)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M98.0647 11.5925C97.9731 11.8543 97.9502 12.1275 98.0533 12.3893C98.2824 13.004 98.9926 13.3796 99.5997 13.5048C100.39 13.6755 101.249 13.5048 101.879 12.9926C102.59 12.412 102.681 11.2055 102.601 10.3745C102.567 10.0103 102.486 9.63462 102.372 9.28175C102.326 9.14516 102.269 9.00856 102.2 8.88335C101.055 6.73199 96.9994 6.04901 94.9031 6.9255C93.4024 7.55155 92.0278 8.88335 91.478 10.4087C91.3061 10.8867 91.2259 11.399 91.2832 11.9112C91.4092 13.2658 92.3486 14.3244 93.4483 15.0415C94.3532 15.622 95.2696 16.1684 95.9684 16.9993C96.3464 17.4433 96.5412 18.0238 96.2548 18.5702C95.7393 19.5605 93.9752 19.7198 93.5284 18.5702C93.3795 18.1945 93.3223 17.8303 93.2764 17.4319C93.2535 17.2384 93.2306 16.931 93.1275 16.7603L93.1046 16.7262C92.9901 16.6579 92.6578 16.5896 92.5433 16.5668C92.1767 16.4985 91.7987 16.4757 91.4207 16.4643C91.0541 16.4643 90.6761 16.4643 90.3095 16.5099C90.2064 16.5213 89.8857 16.5782 89.7826 16.6465C89.2327 18.1376 89.3702 20.2321 90.3324 21.5297C90.5386 21.8029 90.7792 22.0533 91.0656 22.2696C92.1309 23.0778 93.5628 23.2941 94.8687 23.1575C96.335 22.9981 97.8012 22.3948 98.9239 21.4273C99.8975 20.5849 100.573 19.4694 100.39 18.1376C100.253 17.1018 99.5997 16.1342 98.7635 15.5196C97.7783 14.8024 96.5412 14.0284 95.808 13.0381C95.4529 12.56 95.3155 11.9909 95.5446 11.4331C95.682 11.103 95.9226 10.8298 96.2204 10.6249C96.839 10.1924 97.9043 9.98749 98.3969 10.716C98.4656 10.8071 98.4885 10.9209 98.4771 11.0347C98.4542 11.2851 98.2938 11.4103 98.1105 11.5356C98.0991 11.5356 98.0876 11.5583 98.0647 11.5697V11.5925ZM84.8798 4.47818C84.8225 4.62615 84.7537 4.88796 84.7308 4.99041C84.6277 5.41157 84.5476 5.8555 84.4674 6.27667C84.2497 7.48326 84.0664 8.70122 83.8946 9.90781C83.7113 11.1258 83.551 12.3551 83.3677 13.5731C83.2989 14.017 83.2302 14.461 83.1615 14.9049C83.1157 15.1439 83.0813 15.4399 83.0011 15.6789C82.8522 16.157 82.6116 16.7034 82.2336 17.0335C81.9358 17.2953 81.5807 17.4205 81.1912 17.3408C81.1224 17.3294 81.0652 17.3067 80.9964 17.2839C79.9311 16.9083 79.9769 15.5879 80.1259 14.6772C80.3779 13.1405 80.6413 11.6039 80.8819 10.0672C81.0652 8.90612 81.237 7.73368 81.3516 6.56124C81.3974 6.08316 81.4432 5.60508 81.4661 5.127C81.4776 4.7969 81.489 4.44403 81.4661 4.12531C81.3974 4.03424 81.0766 3.90903 80.985 3.87488C80.6299 3.74967 80.2404 3.66999 79.8624 3.61308C79.4844 3.55616 79.0949 3.52201 78.7054 3.52201C78.5794 3.52201 78.2586 3.52201 78.1212 3.56755C78.0295 3.70414 77.9264 4.04563 77.8921 4.15946C77.7546 4.62615 77.6401 5.11562 77.5484 5.60508C77.2735 6.95964 77.0788 8.32559 76.884 9.69153C76.7007 10.9892 76.5404 12.2868 76.4029 13.5845C76.3113 14.3813 76.2196 15.1895 76.1623 15.9976C76.0707 17.2611 76.2769 18.536 77.2277 19.458C78.2243 20.4142 79.6676 20.9492 81.0423 21.0516C82.0961 21.1313 83.1844 20.972 84.1237 20.5053C85.5785 19.7881 86.4033 18.4905 86.6668 16.9197C87.2968 13.2316 87.8696 9.55494 88.2476 5.82136C88.2476 5.74168 88.2476 5.662 88.2247 5.58232C88.0529 5.09285 87.1708 4.78551 86.7126 4.6603C86.3117 4.55786 85.8993 4.48956 85.4869 4.46679C85.3723 4.46679 85.063 4.45541 84.8912 4.47818H84.8798ZM62.0381 20.1296C62.2213 20.1865 62.4963 20.2207 62.6223 20.2321C63.0576 20.2776 63.5043 20.2776 63.9396 20.2662C64.3749 20.2548 64.8331 20.2093 65.257 20.1182C65.383 20.0955 65.761 20.0044 65.8756 19.9134C65.887 19.8337 65.887 19.7199 65.887 19.6516C65.887 19.4353 65.887 19.219 65.887 19.0027C65.887 18.4108 65.8641 17.8189 65.8526 17.227C65.8526 16.7375 65.8297 16.2481 65.8297 15.77C65.8297 15.4057 65.8297 15.0187 65.8412 14.6545L65.9443 13.0153L66.6202 14.5065C66.8493 15.0073 67.0096 15.5423 67.1585 16.0773C67.3189 16.6465 67.4678 17.2156 67.6282 17.7848C67.8344 18.5019 68.0864 19.2418 68.453 19.8906C68.5332 19.9817 68.8539 20.0727 68.957 20.0955C69.3007 20.1865 69.6787 20.2207 70.0338 20.2435C70.3889 20.2548 70.7555 20.2435 71.0991 20.1979C71.2251 20.1752 71.5344 20.1182 71.6261 20.0272C71.9697 19.6857 72.2561 18.0238 72.3248 17.5457C72.5769 15.9863 72.7029 14.3699 72.806 12.7877C72.8976 11.3648 72.9549 9.94196 72.9892 8.53048C73.0007 7.96134 73.0122 7.39219 73.0007 6.82305C73.0007 6.43603 73.0007 6.03763 72.9663 5.65061C72.932 5.02455 72.8518 4.35296 72.531 3.80659C72.1645 3.18053 71.1221 3.15776 70.5035 3.31712C69.6901 3.52201 69.0143 4.07978 69.0487 4.97902C69.083 5.87827 69.0945 6.77752 69.0716 7.68815C69.0487 8.65569 69.0028 9.61185 68.9914 10.5794L68.9456 13.1519L68.1895 10.6932C68.0406 10.2038 67.9031 9.70292 67.7771 9.21345C67.6282 8.62154 67.4678 8.04102 67.3075 7.44911C67.1242 6.7889 66.9294 6.11731 66.7003 5.47987C66.54 5.02455 66.3223 4.47818 66.0474 4.07978C65.3028 2.98702 62.8858 3.27159 62.0266 4.07978C61.9121 4.1936 61.809 4.71722 61.7746 4.87658C61.66 5.49125 61.6142 6.12869 61.5799 6.75475C61.4768 8.5191 61.4882 10.3176 61.534 12.0819C61.5799 13.8918 61.6486 15.7017 61.7746 17.5116C61.8204 18.149 61.8662 18.7751 61.9235 19.4125C61.9464 19.6174 61.9693 19.8109 61.9922 20.0158C61.9922 20.05 61.9922 20.1069 62.0152 20.1524L62.0381 20.1296ZM48.4522 17.8075C48.9562 18.7978 49.6664 19.7085 50.6058 20.3231C51.3618 20.8126 52.2324 21.0744 53.1374 21.0403C54.2142 20.9833 55.1993 20.5053 55.9783 19.7654C56.9749 18.832 57.5934 17.5457 57.9256 16.2481C58.3724 14.5065 58.2922 12.3779 57.9715 10.6135C57.6393 8.76952 56.8947 6.52709 55.5544 5.14977C54.0767 3.63584 49.6893 4.03424 48.4636 5.73029C47.1577 7.54017 46.9516 10.5566 47.1234 12.6966C47.2608 14.404 47.6618 16.2708 48.4522 17.7961V17.8075ZM54.4318 15.8838C54.3402 16.5326 54.0996 18.1149 53.229 18.1945C52.347 18.2856 51.82 16.7603 51.6024 16.1342C51.0296 14.4837 50.7089 12.2754 50.8349 10.5339C50.8807 9.91919 51.0182 9.23622 51.3045 8.68984C51.5336 8.25729 51.9002 7.84751 52.4157 7.81336C53.3894 7.75644 53.8934 9.01994 54.1111 9.75983C54.6265 11.5242 54.6838 14.0626 54.4203 15.8838H54.4318ZM33.0449 9.74845C33.0449 9.81675 33.0564 9.89643 33.0678 9.96472C33.0907 10.1355 33.1137 10.3176 33.148 10.4883C33.2397 11.0575 33.3313 11.6266 33.4344 12.1958C33.7322 13.8349 34.0644 15.4627 34.4654 17.079C34.683 17.9441 34.9121 18.8092 35.1756 19.6629C35.4047 20.4028 35.6567 21.1541 35.966 21.8712C36.1722 22.3607 36.4471 22.9298 36.7793 23.351C36.8939 23.499 37.1459 23.7722 37.3521 23.7608C39.6775 23.6242 43.2286 23.2144 44.8552 21.3817C45.9893 20.1069 46.0237 18.1149 44.9698 16.7717C44.4658 16.1342 43.5608 15.7928 42.7704 15.7358L41.7738 15.6675L42.5413 15.0187C43.3661 14.3244 44.0419 13.4479 44.2138 12.3665C44.5689 10.1696 42.736 7.46049 40.5595 6.93688C39.4828 6.68645 38.2227 6.75475 37.1459 6.97103C36.0806 7.17592 34.9121 7.5857 34.0301 8.21176C33.5146 8.57601 33.1251 9.12239 33.0449 9.74845ZM38.8985 17.3294C40.0441 17.0335 41.4301 16.9993 41.98 18.2856C42.1747 18.7409 42.2091 19.2304 41.9571 19.6857C41.5447 20.4142 40.4335 20.7898 39.6317 20.7557H39.3224L39.2536 20.4484C39.036 19.5719 38.8298 18.7068 38.6122 17.8303L38.5205 17.4319L38.91 17.3294H38.8985ZM37.9707 14.3471C37.6957 13.2088 37.4323 12.0592 37.1573 10.9209L37.0772 10.568L37.4094 10.4428C38.0508 10.1924 38.9902 9.82813 39.6088 10.3176C40.0555 10.6705 40.3419 11.1372 40.4221 11.6949C40.5939 12.9584 39.6546 14.1309 38.532 14.6203L38.0852 14.8138L37.9707 14.3357V14.3471Z' fill='url(%23paint68_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M98.2938 11.7525C98.248 11.9346 98.2365 12.1167 98.2938 12.2875C98.4771 12.8111 99.13 13.1184 99.634 13.2323C100.344 13.3802 101.123 13.2323 101.685 12.7769C102.303 12.2647 102.383 11.1378 102.303 10.3979C102.269 10.0451 102.2 9.70357 102.085 9.36208C102.04 9.23687 101.994 9.12304 101.937 9.00921C100.871 6.99444 96.9535 6.357 94.9832 7.17657C93.5628 7.76848 92.234 9.05474 91.707 10.5004C91.5467 10.9443 91.4779 11.411 91.5238 11.8777C91.6383 13.1412 92.5318 14.1315 93.5742 14.8031L93.7232 14.9055C95.7966 15.4975 97.7783 16.169 99.6226 16.8862C99.3477 16.4422 98.9926 16.0552 98.5802 15.7479C97.5492 14.9966 96.3349 14.2453 95.5675 13.2095C95.1551 12.6631 95.0061 11.9801 95.2696 11.3313C95.43 10.9557 95.7049 10.637 96.0371 10.3979C96.7817 9.87431 98.0189 9.69218 98.6031 10.5573C98.7062 10.7053 98.752 10.876 98.7291 11.0467C98.7062 11.3655 98.5229 11.5476 98.2823 11.7183L98.2938 11.7525ZM78.2815 3.80724C78.2243 3.94383 78.167 4.13734 78.1326 4.23979C77.9952 4.70648 77.8921 5.18456 77.8004 5.65126C77.5255 6.99444 77.3308 8.36039 77.136 9.72633C77.0329 10.4548 76.9413 11.172 76.8496 11.9005C77.9952 12.0029 79.1178 12.1167 80.2404 12.242C80.3664 11.5021 80.4809 10.7736 80.5955 10.0337C80.7788 8.87262 80.9391 7.71156 81.0652 6.53913C81.111 6.07243 81.1568 5.59435 81.1797 5.11627C81.1912 4.8317 81.2026 4.54712 81.1797 4.26255C81.0881 4.20564 80.9277 4.14872 80.8704 4.12596C80.5268 4.00075 80.1602 3.93245 79.8051 3.87553C79.4385 3.81862 79.0605 3.78447 78.6825 3.78447C78.5794 3.78447 78.4075 3.78447 78.2815 3.79585V3.80724ZM86.976 13.3006C87.3655 10.8077 87.7092 8.30347 87.9612 5.79924C87.9612 5.75371 87.9612 5.71956 87.9497 5.67403C87.8123 5.29839 86.976 5.01382 86.6324 4.92276C86.2544 4.82031 85.8534 4.75202 85.464 4.72925C85.3609 4.72925 85.2119 4.71787 85.0859 4.72925C85.0516 4.84308 85.0287 4.95691 85.0057 5.05935C84.9026 5.48052 84.8225 5.91307 84.7423 6.33424C84.5246 7.54082 84.3413 8.74741 84.1695 9.95399C84.0321 10.876 83.906 11.8094 83.7686 12.7428C84.8568 12.9135 85.9336 13.107 86.976 13.3119V13.3006ZM72.6341 11.6273C72.6914 10.5914 72.7258 9.55559 72.7487 8.50837C72.7601 7.93922 72.7716 7.38146 72.7601 6.81232C72.7601 6.4253 72.7601 6.03828 72.7258 5.65126C72.6914 5.08212 72.6227 4.4333 72.3248 3.93245C72.027 3.4316 71.0877 3.44298 70.6065 3.5682C69.9307 3.73894 69.3236 4.19425 69.3579 4.94552C69.3923 5.85615 69.4037 6.7554 69.3808 7.66603C69.3579 8.63358 69.3121 9.58974 69.3007 10.5573V11.5134C70.4118 11.5248 71.5344 11.559 72.6341 11.6159V11.6273ZM68.1895 11.5248L67.9489 10.7622C67.8 10.2727 67.6626 9.77186 67.5365 9.27102C67.3876 8.67911 67.2273 8.09858 67.0669 7.50667C66.8836 6.84647 66.7003 6.19764 66.4712 5.54882C66.3108 5.10488 66.1161 4.60404 65.8526 4.21702C65.4632 3.64788 64.5353 3.57958 63.9167 3.63649C63.3898 3.69341 62.6681 3.87553 62.2557 4.25117C62.187 4.365 62.0953 4.77478 62.0724 4.91138C61.9579 5.51467 61.912 6.14073 61.8777 6.7554C61.7746 8.39454 61.786 10.0451 61.8204 11.6956C63.7907 11.5817 65.7839 11.5248 67.8229 11.5248C67.9489 11.5248 68.0635 11.5248 68.1895 11.5248ZM57.8798 11.9915C57.834 11.5362 57.7767 11.0923 57.6965 10.6711C57.3758 8.87262 56.6541 6.6871 55.3482 5.35531C53.9965 3.9666 49.8039 4.34223 48.6813 5.90169C47.4212 7.65465 47.2265 10.6028 47.3868 12.6859C47.4097 12.9705 47.4441 13.255 47.4785 13.5396C48.5094 13.3233 49.5519 13.1298 50.6172 12.9477C50.5256 12.1395 50.4912 11.3199 50.5599 10.5231C50.6057 9.86293 50.7547 9.15719 51.0639 8.57666C51.3389 8.06443 51.7856 7.59774 52.4042 7.5522C52.6104 7.54082 52.8166 7.57497 53.0113 7.65465C53.7674 7.97337 54.1798 8.96368 54.386 9.69218C54.6265 10.5231 54.7525 11.4338 54.8213 12.3216C55.8293 12.1964 56.8488 12.0826 57.8798 11.9801V11.9915ZM33.3198 9.77187C33.3198 9.82878 33.3313 9.88569 33.3427 9.94261C33.3656 10.1134 33.3886 10.2955 33.4229 10.4662C33.5146 11.0354 33.6062 11.6045 33.7093 12.1623C34.0071 13.79 34.3393 15.4178 34.7288 17.0341C34.7632 17.1594 34.7861 17.2732 34.8205 17.3984C37.1573 16.4195 39.7004 15.543 42.4267 14.7803C43.1713 14.1315 43.7899 13.3347 43.9503 12.3444C44.2825 10.2841 42.5413 7.71156 40.5022 7.23348C39.4598 6.98306 38.2456 7.06274 37.2031 7.26763C36.1722 7.47252 35.0496 7.85954 34.1904 8.46283C33.7437 8.78155 33.4115 9.23687 33.3313 9.78325L33.3198 9.77187ZM37.6957 14.4388C37.4208 13.3006 37.1573 12.1509 36.8824 11.0126L36.7449 10.4321L37.3062 10.2158C37.5812 10.1134 37.8561 9.99952 38.1425 9.93122C38.6923 9.79463 39.2994 9.76048 39.7691 10.1361C40.2617 10.5345 40.5939 11.0695 40.6855 11.6956C40.8803 13.0843 39.8722 14.3705 38.635 14.9055L37.879 15.2356L37.6957 14.4388Z' fill='url(%23paint69_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M48.3264 11.4222C48.7159 10.2498 49.3803 8.04151 50.2051 6.45929C50.4227 6.04951 50.7664 5.54866 50.984 5.13888C51.0184 5.07058 51.0184 4.94537 50.9496 4.91122C50.6174 4.69495 49.2543 5.50313 48.945 5.856C47.9255 6.99429 47.5589 9.63511 47.7193 11.1604C47.8224 12.1166 47.9598 12.5605 48.3379 11.4336L48.3264 11.4222Z' fill='url(%23paint70_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M91.9934 10.534C91.7528 11.1714 91.7528 11.8885 91.9934 12.0137C92.1538 12.1048 92.4287 11.843 92.864 11.2625C94.0095 9.74853 94.9374 8.98588 96.6442 8.06387C97.0566 7.83621 97.5148 7.72238 97.9272 7.49473C97.9959 7.46058 98.0647 7.35813 98.0303 7.28983C97.9845 7.18739 97.8585 7.11909 97.7554 7.09632C95.2009 6.67516 92.864 8.21185 91.9934 10.5453V10.534Z' fill='url(%23paint71_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M62.4392 4.36438C62.3361 4.48959 62.2673 4.64895 62.2444 4.81969C61.9695 6.42468 61.9351 8.21179 61.9695 9.85092C61.9695 10.4314 62.2559 10.6933 62.4162 10.0217C62.7828 8.39391 62.8974 6.73201 63.3785 5.09288C63.5389 4.55788 63.8023 4.38714 63.9742 4.17087C64.1116 4.01151 64.0429 3.80661 63.7909 3.82938C63.4129 3.86353 62.7026 4.06842 62.4506 4.37576L62.4392 4.36438Z' fill='url(%23paint72_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M69.8391 4.17053C69.736 4.29574 69.6673 4.4551 69.6443 4.62584C69.5298 5.26328 69.5871 5.93487 69.5871 6.60646C69.5871 7.61954 69.5642 8.644 69.5871 9.64569C69.5871 10.2262 69.8735 10.488 70.0338 9.81644C70.4004 8.18868 70.2973 6.53817 70.7784 4.89903C70.9388 4.36404 71.2023 4.19329 71.3741 3.97702C71.5115 3.81766 71.4428 3.61277 71.1908 3.63553C70.8128 3.66968 70.1026 3.87457 69.8505 4.18191L69.8391 4.17053Z' fill='url(%23paint73_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M78.545 4.05725C78.4305 4.14832 78.3503 4.28491 78.293 4.44427C77.8234 5.95819 77.5828 7.72254 77.3995 9.38444C77.3423 9.96497 77.5714 10.3292 77.8005 9.70316C78.3503 8.20062 78.6711 6.58425 79.3355 5.11586C79.5531 4.63778 79.828 4.5581 80.0228 4.41012C80.1717 4.29629 80.1373 4.06864 79.8968 4.00034C79.5302 3.90928 78.82 3.86375 78.545 4.06864V4.05725Z' fill='url(%23paint74_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M85.4185 5.03667C85.2925 5.11635 85.2238 5.26432 85.1665 5.42368C84.6968 6.93761 84.5594 8.77025 84.3761 10.4208C84.3188 11.0013 84.5479 11.3655 84.777 10.7395C85.3269 9.23695 85.556 7.56367 86.2089 6.08389C86.3922 5.67411 86.6671 5.66272 86.8962 5.56028C87.0681 5.49198 87.1024 5.26432 86.8848 5.12773C86.564 4.9456 85.7736 4.80901 85.4071 5.02528L85.4185 5.03667Z' fill='url(%23paint75_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M33.595 9.39549C33.5377 9.54346 33.4919 9.71421 33.5148 9.88495C33.6294 11.5127 34.0303 13.2429 34.4541 14.8365C34.6031 15.3943 34.9353 15.5764 34.9238 14.8934C34.8894 13.2315 34.6031 11.581 34.6718 9.87357C34.6947 9.31581 34.8322 8.86049 34.9467 8.61007C35.0384 8.42794 34.9238 8.23443 34.6832 8.3255C34.3281 8.45071 33.8126 8.83773 33.5835 9.39549H33.595Z' fill='url(%23paint76_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M38.8068 10.2039C38.8068 12.7081 36.7563 14.7456 34.2362 14.7456C31.716 14.7456 29.6655 12.7081 29.6655 10.2039C29.6655 7.69965 31.716 5.66211 34.2362 5.66211C36.7563 5.66211 38.8068 7.69965 38.8068 10.2039Z' fill='url(%23paint77_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M53.6644 5.95862C53.6644 7.96201 52.0378 9.57838 50.0217 9.57838C48.0055 9.57838 46.3789 7.96201 46.3789 5.95862C46.3789 3.95524 48.0055 2.33887 50.0217 2.33887C52.0378 2.33887 53.6644 3.95524 53.6644 5.95862Z' fill='url(%23paint78_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' d='M63.0004 7.63223C64.62 7.63223 65.9329 6.32758 65.9329 4.71822C65.9329 3.10885 64.62 1.8042 63.0004 1.8042C61.3808 1.8042 60.0679 3.10885 60.0679 4.71822C60.0679 6.32758 61.3808 7.63223 63.0004 7.63223Z' fill='url(%23paint79_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M88.6488 5.66255C88.6488 7.27892 87.3314 8.57657 85.7162 8.57657C84.101 8.57657 82.7837 7.26754 82.7837 5.66255C82.7837 4.05757 84.101 2.74854 85.7162 2.74854C87.3314 2.74854 88.6488 4.05757 88.6488 5.66255Z' fill='url(%23paint80_radial_4318_875)'/%3e%3cpath style='mix-blend-mode:screen' fill-rule='evenodd' clip-rule='evenodd' d='M99.4279 8.0184C99.4279 10.2836 97.5721 12.1276 95.2926 12.1276C93.013 12.1276 91.1572 10.2836 91.1572 8.0184C91.1572 5.75321 93.013 3.90918 95.2926 3.90918C97.5721 3.90918 99.4279 5.75321 99.4279 8.0184Z' fill='url(%23paint81_radial_4318_875)'/%3e%3cdefs%3e%3cradialGradient id='paint0_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(68 56.4483) rotate(90) scale(10.7586 56.2759)'%3e%3cstop stop-color='%2313317C' stop-opacity='0.68849'/%3e%3cstop offset='0.26875' stop-color='%2313317C' stop-opacity='0.230931'/%3e%3cstop offset='0.544792' stop-color='%2313317C' stop-opacity='0.120518'/%3e%3cstop offset='1' stop-color='%2313317C' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint1_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(65.268 40.3631) scale(18.0185 15.7503)'%3e%3cstop stop-color='%23E6007E'/%3e%3cstop offset='0.07' stop-color='%23CD0070'/%3e%3cstop offset='0.26' stop-color='%238F004E'/%3e%3cstop offset='0.44' stop-color='%235C0032'/%3e%3cstop offset='0.61' stop-color='%2334001C'/%3e%3cstop offset='0.77' stop-color='%2317000C'/%3e%3cstop offset='0.9' stop-color='%23060003'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint2_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(46.5635 39.4734) scale(28.8241 25.1958)'%3e%3cstop stop-color='%23FF78D2'/%3e%3cstop offset='1' stop-color='%23FC51A7'/%3e%3c/radialGradient%3e%3cradialGradient id='paint3_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(55.1076 31.0245) scale(48.2743 42.1975)'%3e%3cstop stop-color='%23F74FA9'/%3e%3cstop offset='1' stop-color='%23940066'/%3e%3c/radialGradient%3e%3cradialGradient id='paint4_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(47.8674 37.5358) scale(48.5752 42.4606)'%3e%3cstop stop-color='white'/%3e%3cstop offset='1' stop-color='%23FFBAF6'/%3e%3c/radialGradient%3e%3cradialGradient id='paint5_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(68.1653 43.0606) scale(23.2891 20.3575)'%3e%3cstop stop-color='white'/%3e%3cstop offset='1' stop-color='%23FFBAF6'/%3e%3c/radialGradient%3e%3cradialGradient id='paint6_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(59.9405 46.2243) scale(17.2434 15.0728)'%3e%3cstop offset='0.54' stop-color='white'/%3e%3cstop offset='0.58' stop-color='%23F9F4FA'/%3e%3cstop offset='0.66' stop-color='%23E9D9EE'/%3e%3cstop offset='0.76' stop-color='%23D0ADDA'/%3e%3cstop offset='0.87' stop-color='%23AD6FBF'/%3e%3cstop offset='1' stop-color='%2382239D'/%3e%3c/radialGradient%3e%3cradialGradient id='paint7_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(64.7461 37.13) scale(35.116 30.6956)'%3e%3cstop offset='0.54' stop-color='white'/%3e%3cstop offset='0.58' stop-color='%23F9F4FA'/%3e%3cstop offset='0.66' stop-color='%23E9D9EE'/%3e%3cstop offset='0.76' stop-color='%23D0ADDA'/%3e%3cstop offset='0.87' stop-color='%23AD6FBF'/%3e%3cstop offset='1' stop-color='%2382239D'/%3e%3c/radialGradient%3e%3cradialGradient id='paint8_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(42.8066 56.6666) scale(27.2284 23.8009)'%3e%3cstop offset='0.54' stop-color='white'/%3e%3cstop offset='0.58' stop-color='%23F9F4F7'/%3e%3cstop offset='0.66' stop-color='%23EAD9E3'/%3e%3cstop offset='0.75' stop-color='%23D1ADC3'/%3e%3cstop offset='0.87' stop-color='%23AE6F96'/%3e%3cstop offset='1' stop-color='%2382205C'/%3e%3c/radialGradient%3e%3cradialGradient id='paint9_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(77.7493 55.0884) scale(23.2982 20.3654)'%3e%3cstop offset='0.54' stop-color='white'/%3e%3cstop offset='0.58' stop-color='%23F9F4F7'/%3e%3cstop offset='0.66' stop-color='%23EAD9E3'/%3e%3cstop offset='0.75' stop-color='%23D1ADC3'/%3e%3cstop offset='0.87' stop-color='%23AE6F96'/%3e%3cstop offset='1' stop-color='%2382205C'/%3e%3c/radialGradient%3e%3cradialGradient id='paint10_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(57.0682 47.7699) scale(36.4838 31.8912)'%3e%3cstop stop-color='%23940066'/%3e%3cstop offset='1' stop-color='%23F74FA9'/%3e%3c/radialGradient%3e%3cradialGradient id='paint11_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(76.2906 45.2197) scale(25.8241 22.5734)'%3e%3cstop stop-color='%23FC51A7'/%3e%3cstop offset='1' stop-color='%23FF78D2'/%3e%3c/radialGradient%3e%3cradialGradient id='paint12_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(67.3539 50.8873) scale(49.6785 43.425)'%3e%3cstop stop-color='%23FFE906'/%3e%3cstop offset='0.09' stop-color='%23D6C405'/%3e%3cstop offset='0.22' stop-color='%239E9003'/%3e%3cstop offset='0.35' stop-color='%236E6402'/%3e%3cstop offset='0.49' stop-color='%23464001'/%3e%3cstop offset='0.62' stop-color='%23272400'/%3e%3cstop offset='0.74' stop-color='%23111000'/%3e%3cstop offset='0.86' stop-color='%23040400'/%3e%3cstop offset='0.97'/%3e%3c/radialGradient%3e%3cradialGradient id='paint13_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(66.6883 41.7129) scale(39.648 34.6571)'%3e%3cstop stop-color='%23FFE906'/%3e%3cstop offset='0.03' stop-color='%23F1DC05'/%3e%3cstop offset='0.18' stop-color='%23B2A304'/%3e%3cstop offset='0.34' stop-color='%237C7102'/%3e%3cstop offset='0.48' stop-color='%234F4801'/%3e%3cstop offset='0.62' stop-color='%232C2901'/%3e%3cstop offset='0.75' stop-color='%23141200'/%3e%3cstop offset='0.88' stop-color='%23050400'/%3e%3cstop offset='0.97'/%3e%3c/radialGradient%3e%3cradialGradient id='paint14_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(67.085 40.3555) scale(19.2678 16.8423)'%3e%3cstop stop-color='%23FFED00'/%3e%3cstop offset='0.13' stop-color='%23CDBE00'/%3e%3cstop offset='0.31' stop-color='%238F8500'/%3e%3cstop offset='0.48' stop-color='%235C5500'/%3e%3cstop offset='0.64' stop-color='%23343000'/%3e%3cstop offset='0.78' stop-color='%23171500'/%3e%3cstop offset='0.91' stop-color='%23060500'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3clinearGradient id='paint15_linear_4318_875' x1='49.299' y1='53.9162' x2='49.299' y2='10.3637' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFE906'/%3e%3cstop offset='0.04' stop-color='%23ECD805'/%3e%3cstop offset='0.19' stop-color='%23AE9F04'/%3e%3cstop offset='0.34' stop-color='%23796F02'/%3e%3cstop offset='0.48' stop-color='%234D4701'/%3e%3cstop offset='0.62' stop-color='%232B2801'/%3e%3cstop offset='0.75' stop-color='%23131200'/%3e%3cstop offset='0.87' stop-color='%23050400'/%3e%3cstop offset='0.97'/%3e%3c/linearGradient%3e%3clinearGradient id='paint16_linear_4318_875' x1='76.3994' y1='54.6894' x2='76.3994' y2='10.4195' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFE906'/%3e%3cstop offset='0.03' stop-color='%23F1DC05'/%3e%3cstop offset='0.18' stop-color='%23B2A304'/%3e%3cstop offset='0.34' stop-color='%237C7102'/%3e%3cstop offset='0.48' stop-color='%234F4801'/%3e%3cstop offset='0.62' stop-color='%232C2901'/%3e%3cstop offset='0.75' stop-color='%23141200'/%3e%3cstop offset='0.88' stop-color='%23050400'/%3e%3cstop offset='0.97'/%3e%3c/linearGradient%3e%3clinearGradient id='paint17_linear_4318_875' x1='61.0344' y1='56.9611' x2='61.0344' y2='10.5869' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFE906'/%3e%3cstop offset='0.07' stop-color='%23CFBD04'/%3e%3cstop offset='0.16' stop-color='%239F9103'/%3e%3cstop offset='0.25' stop-color='%23746A02'/%3e%3cstop offset='0.35' stop-color='%23504901'/%3e%3cstop offset='0.45' stop-color='%23332E01'/%3e%3cstop offset='0.56' stop-color='%231C1A00'/%3e%3cstop offset='0.67' stop-color='%230C0B00'/%3e%3cstop offset='0.8' stop-color='%23020200'/%3e%3cstop offset='0.97'/%3e%3c/linearGradient%3e%3clinearGradient id='paint18_linear_4318_875' x1='86.6948' y1='52.346' x2='86.6948' y2='10.2521' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFE906'/%3e%3cstop offset='0.09' stop-color='%23D6C405'/%3e%3cstop offset='0.22' stop-color='%239E9003'/%3e%3cstop offset='0.35' stop-color='%236E6402'/%3e%3cstop offset='0.49' stop-color='%23464001'/%3e%3cstop offset='0.62' stop-color='%23272400'/%3e%3cstop offset='0.74' stop-color='%23111000'/%3e%3cstop offset='0.86' stop-color='%23040400'/%3e%3cstop offset='0.97'/%3e%3c/linearGradient%3e%3clinearGradient id='paint19_linear_4318_875' x1='90.4699' y1='47.1496' x2='90.4699' y2='19.5945' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFE906'/%3e%3cstop offset='0.09' stop-color='%23D6C405'/%3e%3cstop offset='0.22' stop-color='%239E9003'/%3e%3cstop offset='0.35' stop-color='%236E6402'/%3e%3cstop offset='0.49' stop-color='%23464001'/%3e%3cstop offset='0.62' stop-color='%23272400'/%3e%3cstop offset='0.74' stop-color='%23111000'/%3e%3cstop offset='0.86' stop-color='%23040400'/%3e%3cstop offset='0.97'/%3e%3c/linearGradient%3e%3clinearGradient id='paint20_linear_4318_875' x1='43.7821' y1='45.38' x2='43.7821' y2='17.0995' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFE906'/%3e%3cstop offset='0.09' stop-color='%23D6C405'/%3e%3cstop offset='0.22' stop-color='%239E9003'/%3e%3cstop offset='0.35' stop-color='%236E6402'/%3e%3cstop offset='0.49' stop-color='%23464001'/%3e%3cstop offset='0.62' stop-color='%23272400'/%3e%3cstop offset='0.74' stop-color='%23111000'/%3e%3cstop offset='0.86' stop-color='%23040400'/%3e%3cstop offset='0.97'/%3e%3c/linearGradient%3e%3cradialGradient id='paint21_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(54.2466 28.2653) rotate(-8.19011) scale(3.77245 20.1749)'%3e%3cstop stop-color='%23FFCC00'/%3e%3cstop offset='0.08' stop-color='%23D9AD00'/%3e%3cstop offset='0.22' stop-color='%23A08000'/%3e%3cstop offset='0.36' stop-color='%236F5900'/%3e%3cstop offset='0.5' stop-color='%23473900'/%3e%3cstop offset='0.63' stop-color='%23282000'/%3e%3cstop offset='0.76' stop-color='%23110E00'/%3e%3cstop offset='0.89' stop-color='%23040300'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint22_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(80.1034 34.3325) rotate(8.19011) scale(3.24067 19.0412)'%3e%3cstop stop-color='%23FFCC00'/%3e%3cstop offset='0.08' stop-color='%23D9AD00'/%3e%3cstop offset='0.22' stop-color='%23A08000'/%3e%3cstop offset='0.36' stop-color='%236F5900'/%3e%3cstop offset='0.5' stop-color='%23473900'/%3e%3cstop offset='0.63' stop-color='%23282000'/%3e%3cstop offset='0.76' stop-color='%23110E00'/%3e%3cstop offset='0.89' stop-color='%23040300'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint23_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(49.8976 33.1073) rotate(-14.4453) scale(2.24905 17.6326)'%3e%3cstop stop-color='%23FFCC00'/%3e%3cstop offset='0.08' stop-color='%23D9AD00'/%3e%3cstop offset='0.22' stop-color='%23A08000'/%3e%3cstop offset='0.36' stop-color='%236F5900'/%3e%3cstop offset='0.5' stop-color='%23473900'/%3e%3cstop offset='0.63' stop-color='%23282000'/%3e%3cstop offset='0.76' stop-color='%23110E00'/%3e%3cstop offset='0.89' stop-color='%23040300'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint24_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(74.6701 36.5011) rotate(5.17037) scale(2.26771 18.6799)'%3e%3cstop stop-color='%23FFCC00'/%3e%3cstop offset='0.08' stop-color='%23D9AD00'/%3e%3cstop offset='0.22' stop-color='%23A08000'/%3e%3cstop offset='0.36' stop-color='%236F5900'/%3e%3cstop offset='0.5' stop-color='%23473900'/%3e%3cstop offset='0.63' stop-color='%23282000'/%3e%3cstop offset='0.76' stop-color='%23110E00'/%3e%3cstop offset='0.89' stop-color='%23040300'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint25_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(61.9057 39.5629) rotate(53.1494) scale(1.28315 1.34338)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint26_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(68.4979 38.5995) rotate(53.1494) scale(0.974862 1.02062)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint27_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(59.6489 26.4282) rotate(53.1494) scale(0.799887 0.83743)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint28_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(72.1022 30.3316) rotate(53.1494) scale(0.974862 1.02062)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint29_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(66.7947 26.0418) rotate(53.1494) scale(0.941534 0.985725)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint30_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(65.4996 34.9037) rotate(53.1494) scale(2.27468 2.38144)'%3e%3cstop offset='0.03' stop-color='%23FF4A84'/%3e%3cstop offset='0.16' stop-color='%23FB4782'/%3e%3cstop offset='0.28' stop-color='%23F13F7C'/%3e%3cstop offset='0.38' stop-color='%23DF3373'/%3e%3cstop offset='0.48' stop-color='%23C62165'/%3e%3cstop offset='0.58' stop-color='%23A60A54'/%3e%3cstop offset='0.62' stop-color='%2399004D'/%3e%3cstop offset='0.64' stop-color='%238A0045'/%3e%3cstop offset='0.71' stop-color='%2359002D'/%3e%3cstop offset='0.78' stop-color='%23320019'/%3e%3cstop offset='0.85' stop-color='%2316000B'/%3e%3cstop offset='0.91' stop-color='%23050003'/%3e%3cstop offset='0.95'/%3e%3c/radialGradient%3e%3cradialGradient id='paint31_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(72.5525 34.1606) rotate(53.1494) scale(1.6831 1.76209)'%3e%3cstop offset='0.03' stop-color='%23FF4A84'/%3e%3cstop offset='0.16' stop-color='%23FB4782'/%3e%3cstop offset='0.28' stop-color='%23F13F7C'/%3e%3cstop offset='0.38' stop-color='%23DF3373'/%3e%3cstop offset='0.48' stop-color='%23C62165'/%3e%3cstop offset='0.58' stop-color='%23A60A54'/%3e%3cstop offset='0.62' stop-color='%2399004D'/%3e%3cstop offset='0.64' stop-color='%238A0045'/%3e%3cstop offset='0.71' stop-color='%2359002D'/%3e%3cstop offset='0.78' stop-color='%23320019'/%3e%3cstop offset='0.85' stop-color='%2316000B'/%3e%3cstop offset='0.91' stop-color='%23050003'/%3e%3cstop offset='0.95'/%3e%3c/radialGradient%3e%3cradialGradient id='paint32_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(76.9877 26.8561) rotate(53.1494) scale(1.2165 1.27359)'%3e%3cstop offset='0.03' stop-color='%23FF4A84'/%3e%3cstop offset='0.16' stop-color='%23FB4782'/%3e%3cstop offset='0.28' stop-color='%23F13F7C'/%3e%3cstop offset='0.38' stop-color='%23DF3373'/%3e%3cstop offset='0.48' stop-color='%23C62165'/%3e%3cstop offset='0.58' stop-color='%23A60A54'/%3e%3cstop offset='0.62' stop-color='%2399004D'/%3e%3cstop offset='0.64' stop-color='%238A0045'/%3e%3cstop offset='0.71' stop-color='%2359002D'/%3e%3cstop offset='0.78' stop-color='%23320019'/%3e%3cstop offset='0.85' stop-color='%2316000B'/%3e%3cstop offset='0.91' stop-color='%23050003'/%3e%3cstop offset='0.95'/%3e%3c/radialGradient%3e%3cradialGradient id='paint33_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(51.8031 34.1989) rotate(53.1494) scale(2.00805 2.1023)'%3e%3cstop offset='0.03' stop-color='%23FF4A84'/%3e%3cstop offset='0.16' stop-color='%23FB4782'/%3e%3cstop offset='0.28' stop-color='%23F13F7C'/%3e%3cstop offset='0.38' stop-color='%23DF3373'/%3e%3cstop offset='0.48' stop-color='%23C62165'/%3e%3cstop offset='0.58' stop-color='%23A60A54'/%3e%3cstop offset='0.62' stop-color='%2399004D'/%3e%3cstop offset='0.64' stop-color='%238A0045'/%3e%3cstop offset='0.71' stop-color='%2359002D'/%3e%3cstop offset='0.78' stop-color='%23320019'/%3e%3cstop offset='0.85' stop-color='%2316000B'/%3e%3cstop offset='0.91' stop-color='%23050003'/%3e%3cstop offset='0.95'/%3e%3c/radialGradient%3e%3cradialGradient id='paint34_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(76.8915 33.0645) rotate(-126.851) scale(1.24149 1.29976)'%3e%3cstop offset='0.03' stop-color='%23FF4A84'/%3e%3cstop offset='0.16' stop-color='%23FB4782'/%3e%3cstop offset='0.28' stop-color='%23F13F7C'/%3e%3cstop offset='0.38' stop-color='%23DF3373'/%3e%3cstop offset='0.48' stop-color='%23C62165'/%3e%3cstop offset='0.58' stop-color='%23A60A54'/%3e%3cstop offset='0.62' stop-color='%2399004D'/%3e%3cstop offset='0.64' stop-color='%238A0045'/%3e%3cstop offset='0.71' stop-color='%2359002D'/%3e%3cstop offset='0.78' stop-color='%23320019'/%3e%3cstop offset='0.85' stop-color='%2316000B'/%3e%3cstop offset='0.91' stop-color='%23050003'/%3e%3cstop offset='0.95'/%3e%3c/radialGradient%3e%3cradialGradient id='paint35_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(65.2162 33.2747) rotate(53.1494) scale(0.874877 0.91594)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint36_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(68.5026 30.9249) rotate(53.1494) scale(1.28315 1.34338)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint37_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(81.9563 36.0469) rotate(53.1494) scale(0.874876 0.915939)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint38_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(62.6458 29.4958) rotate(53.1494) scale(1.55811 1.63124)'%3e%3cstop offset='0.03' stop-color='%23FF9100'/%3e%3cstop offset='0.22' stop-color='%23FF8D00'/%3e%3cstop offset='0.38' stop-color='%23FF8300'/%3e%3cstop offset='0.53' stop-color='%23FF7100'/%3e%3cstop offset='0.67' stop-color='%23FF5800'/%3e%3cstop offset='0.8' stop-color='%239C2900'/%3e%3cstop offset='0.81' stop-color='%23611E00'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint39_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(67.453 38.6431) rotate(53.1494) scale(0.391612 0.409992)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint40_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(74.263 37.1271) rotate(53.1494) scale(0.391612 0.409992)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint41_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(76.9857 34.1333) rotate(-126.851) scale(0.54159 0.56701)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint42_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(67.9802 29.9671) rotate(53.1494) scale(0.391612 0.409992)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint43_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(65.094 23.0388) rotate(-126.851) scale(0.391612 0.409992)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint44_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(56.6221 31.6117) rotate(53.1494) scale(0.391611 0.409992)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint45_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(67.9922 18.7531) rotate(53.1494) scale(0.741562 0.776367)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint46_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(54.8177 27.6022) rotate(53.1494) scale(1.26649 1.32593)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint47_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(55.1785 28.7959) rotate(53.1494) scale(0.84988 0.88977)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint48_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(71.7474 24.3599) rotate(53.1494) scale(0.666572 0.697858)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint49_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(77.697 30.2908) rotate(53.1494) scale(0.449936 0.471054)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint50_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(53.4825 33.3708) rotate(53.1494) scale(1.22483 1.28231)'%3e%3cstop offset='0.03' stop-color='%23FF4A84'/%3e%3cstop offset='0.16' stop-color='%23FB4782'/%3e%3cstop offset='0.28' stop-color='%23F13F7C'/%3e%3cstop offset='0.38' stop-color='%23DF3373'/%3e%3cstop offset='0.48' stop-color='%23C62165'/%3e%3cstop offset='0.58' stop-color='%23A60A54'/%3e%3cstop offset='0.62' stop-color='%2399004D'/%3e%3cstop offset='0.64' stop-color='%238A0045'/%3e%3cstop offset='0.71' stop-color='%2359002D'/%3e%3cstop offset='0.78' stop-color='%23320019'/%3e%3cstop offset='0.85' stop-color='%2316000B'/%3e%3cstop offset='0.91' stop-color='%23050003'/%3e%3cstop offset='0.95'/%3e%3c/radialGradient%3e%3cradialGradient id='paint51_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(63.8541 29.537) rotate(53.1494) scale(0.65824 0.689135)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint52_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(71.1032 34.9914) rotate(53.1494) scale(0.77489 0.81126)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint53_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(69.683 28.5431) rotate(53.1494) scale(0.591583 0.61935)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint54_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(82.6323 35.4216) rotate(53.1494) scale(0.449936 0.471054)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint55_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(57.7049 32.4011) rotate(53.1494) scale(2.00805 2.1023)'%3e%3cstop offset='0.03' stop-color='%23FF4A84'/%3e%3cstop offset='0.16' stop-color='%23FB4782'/%3e%3cstop offset='0.28' stop-color='%23F13F7C'/%3e%3cstop offset='0.38' stop-color='%23DF3373'/%3e%3cstop offset='0.48' stop-color='%23C62165'/%3e%3cstop offset='0.58' stop-color='%23A60A54'/%3e%3cstop offset='0.62' stop-color='%2399004D'/%3e%3cstop offset='0.64' stop-color='%238A0045'/%3e%3cstop offset='0.71' stop-color='%2359002D'/%3e%3cstop offset='0.78' stop-color='%23320019'/%3e%3cstop offset='0.85' stop-color='%2316000B'/%3e%3cstop offset='0.91' stop-color='%23050003'/%3e%3cstop offset='0.95'/%3e%3c/radialGradient%3e%3cradialGradient id='paint56_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(58.531 30.8422) rotate(53.1494) scale(0.73323 0.767644)'%3e%3cstop offset='0.03' stop-color='%23FF7300'/%3e%3cstop offset='0.3' stop-color='%23FB6F00'/%3e%3cstop offset='0.52' stop-color='%23F16500'/%3e%3cstop offset='0.73' stop-color='%23E15300'/%3e%3cstop offset='0.8' stop-color='%23832D00'/%3e%3cstop offset='0.81' stop-color='%23612000'/%3e%3cstop offset='0.82' stop-color='%23591D00'/%3e%3cstop offset='0.83' stop-color='%23551C00'/%3e%3cstop offset='0.84' stop-color='%233B1300'/%3e%3cstop offset='0.85' stop-color='%23250C00'/%3e%3cstop offset='0.87' stop-color='%23140600'/%3e%3cstop offset='0.89' stop-color='%23080200'/%3e%3cstop offset='0.92' stop-color='%23010000'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3clinearGradient id='paint57_linear_4318_875' x1='54.1686' y1='56.7614' x2='54.1686' y2='40.7002' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23EBB6CA'/%3e%3cstop offset='1' stop-color='%236E1259'/%3e%3c/linearGradient%3e%3cradialGradient id='paint58_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(37.9646 27.3881) scale(41.2438 36.052)'%3e%3cstop stop-color='%23FF69CD'/%3e%3cstop offset='1' stop-color='%23ED288B'/%3e%3c/radialGradient%3e%3cradialGradient id='paint59_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(60.9069 28.8712) scale(17.7541 15.5192)'%3e%3cstop stop-color='%23FF78D2'/%3e%3cstop offset='1' stop-color='%23FC51A7'/%3e%3c/radialGradient%3e%3cradialGradient id='paint60_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(31.6726 31.4448) scale(41.0705 35.9006)'%3e%3cstop stop-color='%23F74FA9'/%3e%3cstop offset='1' stop-color='%23940066'/%3e%3c/radialGradient%3e%3cradialGradient id='paint61_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(44.2016 29.1901) scale(29.198 25.5226)'%3e%3cstop stop-color='white'/%3e%3cstop offset='1' stop-color='%23FFBAF6'/%3e%3c/radialGradient%3e%3cradialGradient id='paint62_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(24.3048 34.8643) scale(38.2984 33.4774)'%3e%3cstop stop-color='white'/%3e%3cstop offset='1' stop-color='%23FFBAF6'/%3e%3c/radialGradient%3e%3cradialGradient id='paint63_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(28.6728 37.5115) scale(31.9245 27.9058)'%3e%3cstop/%3e%3cstop offset='1' stop-color='%23FFD9E2'/%3e%3c/radialGradient%3e%3cradialGradient id='paint64_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(46.5543 44.3513) scale(34.8425 30.4565)'%3e%3cstop stop-color='%238A1F1F'/%3e%3cstop offset='1' stop-color='%234A2121'/%3e%3c/radialGradient%3e%3cradialGradient id='paint65_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(39.1456 21.4195) scale(11.7989 11.7244)'%3e%3cstop stop-color='%23FFA200'/%3e%3cstop offset='0.07' stop-color='%23E18F00'/%3e%3cstop offset='0.21' stop-color='%23A66900'/%3e%3cstop offset='0.36' stop-color='%23734900'/%3e%3cstop offset='0.5' stop-color='%234A2F00'/%3e%3cstop offset='0.64' stop-color='%23291A00'/%3e%3cstop offset='0.77' stop-color='%23120B00'/%3e%3cstop offset='0.89' stop-color='%23040300'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint66_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(99.0385 9.81738) scale(9.72548 9.66406)'%3e%3cstop stop-color='%23FFA200'/%3e%3cstop offset='0.07' stop-color='%23E18F00'/%3e%3cstop offset='0.21' stop-color='%23A66900'/%3e%3cstop offset='0.36' stop-color='%23734900'/%3e%3cstop offset='0.5' stop-color='%234A2F00'/%3e%3cstop offset='0.64' stop-color='%23291A00'/%3e%3cstop offset='0.77' stop-color='%23120B00'/%3e%3cstop offset='0.89' stop-color='%23040300'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint67_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(68.5677 97.0438) scale(96.4414 95.8325)'%3e%3cstop offset='0.78' stop-color='%23FCEA10'/%3e%3cstop offset='1' stop-color='%23FF6633'/%3e%3c/radialGradient%3e%3cradialGradient id='paint68_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(63.6762 124.556) scale(122.113 121.341)'%3e%3cstop offset='0.85' stop-color='%23FF3C00'/%3e%3cstop offset='1' stop-color='%23B5008E'/%3e%3c/radialGradient%3e%3cradialGradient id='paint69_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(65.7724 168.381) scale(165.975 164.927)'%3e%3cstop offset='0.91'/%3e%3cstop offset='0.92' stop-color='%23060003'/%3e%3cstop offset='0.93' stop-color='%2318030F'/%3e%3cstop offset='0.94' stop-color='%23360721'/%3e%3cstop offset='0.96' stop-color='%23600D3A'/%3e%3cstop offset='0.97' stop-color='%2395155B'/%3e%3cstop offset='0.99' stop-color='%23D51E82'/%3e%3cstop offset='1' stop-color='%23FF249C'/%3e%3c/radialGradient%3e%3cradialGradient id='paint70_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(46.9976 3.62496) scale(11.1917 11.1211)'%3e%3cstop stop-color='%23FFD621'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint71_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(94.6167 3.6587) scale(12.0738 11.9976)'%3e%3cstop stop-color='%23FFD621'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint72_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(61.3509 2.24716) scale(11.0772 11.0072)'%3e%3cstop stop-color='%23FFD621'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint73_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(69.484 2.8615) scale(9.17561 9.11769)'%3e%3cstop stop-color='%23FFD621'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint74_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(77.537 3.02141) scale(9.27873 9.22013)'%3e%3cstop stop-color='%23FFD621'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint75_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(85.2009 3.23817) scale(9.25581 9.19736)'%3e%3cstop stop-color='%23FFD621'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint76_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(32.5068 7.97263) scale(9.72548 9.66406)'%3e%3cstop stop-color='%23FFD621'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint77_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(34.2362 10.2039) scale(4.57063 4.54177)'%3e%3cstop stop-color='%23E94E1B'/%3e%3cstop offset='0.02' stop-color='%23E14B1A'/%3e%3cstop offset='0.17' stop-color='%23A63713'/%3e%3cstop offset='0.32' stop-color='%2373260D'/%3e%3cstop offset='0.47' stop-color='%234A1808'/%3e%3cstop offset='0.62' stop-color='%23290D04'/%3e%3cstop offset='0.76' stop-color='%23120602'/%3e%3cstop offset='0.89' stop-color='%23040100'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint78_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(50.0217 5.95862) scale(3.64276 3.61976)'%3e%3cstop stop-color='%23E94E1B'/%3e%3cstop offset='0.02' stop-color='%23E14B1A'/%3e%3cstop offset='0.17' stop-color='%23A63713'/%3e%3cstop offset='0.32' stop-color='%2373260D'/%3e%3cstop offset='0.47' stop-color='%234A1808'/%3e%3cstop offset='0.62' stop-color='%23290D04'/%3e%3cstop offset='0.76' stop-color='%23120602'/%3e%3cstop offset='0.89' stop-color='%23040100'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint79_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(63.0004 4.71822) scale(2.93253 2.91402)'%3e%3cstop stop-color='%23E94E1B'/%3e%3cstop offset='0.02' stop-color='%23E14B1A'/%3e%3cstop offset='0.17' stop-color='%23A63713'/%3e%3cstop offset='0.32' stop-color='%2373260D'/%3e%3cstop offset='0.47' stop-color='%234A1808'/%3e%3cstop offset='0.62' stop-color='%23290D04'/%3e%3cstop offset='0.76' stop-color='%23120602'/%3e%3cstop offset='0.89' stop-color='%23040100'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint80_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(85.7162 5.66255) scale(2.93253 2.91402)'%3e%3cstop stop-color='%23E94E1B'/%3e%3cstop offset='0.02' stop-color='%23E14B1A'/%3e%3cstop offset='0.17' stop-color='%23A63713'/%3e%3cstop offset='0.32' stop-color='%2373260D'/%3e%3cstop offset='0.47' stop-color='%234A1808'/%3e%3cstop offset='0.62' stop-color='%23290D04'/%3e%3cstop offset='0.76' stop-color='%23120602'/%3e%3cstop offset='0.89' stop-color='%23040100'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3cradialGradient id='paint81_radial_4318_875' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(95.2926 8.0184) scale(4.13533 4.10922)'%3e%3cstop stop-color='%23E94E1B'/%3e%3cstop offset='0.02' stop-color='%23E14B1A'/%3e%3cstop offset='0.17' stop-color='%23A63713'/%3e%3cstop offset='0.32' stop-color='%2373260D'/%3e%3cstop offset='0.47' stop-color='%234A1808'/%3e%3cstop offset='0.62' stop-color='%23290D04'/%3e%3cstop offset='0.76' stop-color='%23120602'/%3e%3cstop offset='0.89' stop-color='%23040100'/%3e%3cstop offset='1'/%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nexport function __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nexport function __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nexport function __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nexport function __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nexport function __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nexport function __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nexport function __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n function next() {\r\n while (env.stack.length) {\r\n var rec = env.stack.pop();\r\n try {\r\n var result = rec.dispose && rec.dispose.call(rec.value);\r\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\nexport default {\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n};\r\n","import { onMount } from \"svelte\"\n\nexport const _postMessage = (message) => window.postMessage(message, window.location.href);\n\nconst composeMessageHandler = (listeners) => {\n const handler = e => {\n Object.keys(listeners).map(key => {\n if (e.data && e.data.type == key) {\n const {type, ...restData} = e.data\n listeners[key](restData)\n }\n })\n }\n\n return handler\n}\n\nexport const onMountMessageLifeCycle = (messageRegisters) => {\n \n const messageHandler = composeMessageHandler(messageRegisters)\n\n onMount(() => {\n window.addEventListener('message', messageHandler);\n return () => {\n window.removeEventListener('message', messageHandler);\n }\n })\n}","import { noop, safe_not_equal, subscribe, run_all, is_function } from '../internal/index.mjs';\nexport { get_store_value as get } from '../internal/index.mjs';\n\nconst subscriber_queue = [];\n/**\n * Creates a `Readable` store that allows reading by subscription.\n * @param value initial value\n * @param {StartStopNotifier} [start]\n */\nfunction readable(value, start) {\n return {\n subscribe: writable(value, start).subscribe\n };\n}\n/**\n * Create a `Writable` store that allows both updating and reading by subscription.\n * @param {*=}value initial value\n * @param {StartStopNotifier=} start\n */\nfunction writable(value, start = noop) {\n let stop;\n const subscribers = new Set();\n function set(new_value) {\n if (safe_not_equal(value, new_value)) {\n value = new_value;\n if (stop) { // store is ready\n const run_queue = !subscriber_queue.length;\n for (const subscriber of subscribers) {\n subscriber[1]();\n subscriber_queue.push(subscriber, value);\n }\n if (run_queue) {\n for (let i = 0; i < subscriber_queue.length; i += 2) {\n subscriber_queue[i][0](subscriber_queue[i + 1]);\n }\n subscriber_queue.length = 0;\n }\n }\n }\n }\n function update(fn) {\n set(fn(value));\n }\n function subscribe(run, invalidate = noop) {\n const subscriber = [run, invalidate];\n subscribers.add(subscriber);\n if (subscribers.size === 1) {\n stop = start(set) || noop;\n }\n run(value);\n return () => {\n subscribers.delete(subscriber);\n if (subscribers.size === 0 && stop) {\n stop();\n stop = null;\n }\n };\n }\n return { set, update, subscribe };\n}\nfunction derived(stores, fn, initial_value) {\n const single = !Array.isArray(stores);\n const stores_array = single\n ? [stores]\n : stores;\n const auto = fn.length < 2;\n return readable(initial_value, (set) => {\n let started = false;\n const values = [];\n let pending = 0;\n let cleanup = noop;\n const sync = () => {\n if (pending) {\n return;\n }\n cleanup();\n const result = fn(single ? values[0] : values, set);\n if (auto) {\n set(result);\n }\n else {\n cleanup = is_function(result) ? result : noop;\n }\n };\n const unsubscribers = stores_array.map((store, i) => subscribe(store, (value) => {\n values[i] = value;\n pending &= ~(1 << i);\n if (started) {\n sync();\n }\n }, () => {\n pending |= (1 << i);\n }));\n started = true;\n sync();\n return function stop() {\n run_all(unsubscribers);\n cleanup();\n // We need to set this to false because callbacks can still happen despite having unsubscribed:\n // Callbacks might already be placed in the queue which doesn't know it should no longer\n // invoke this derived store.\n started = false;\n };\n });\n}\n/**\n * Takes a store and returns a new one derived from the old one that is readable.\n *\n * @param store - store to make readonly\n */\nfunction readonly(store) {\n return {\n subscribe: store.subscribe.bind(store)\n };\n}\n\nexport { derived, readable, readonly, writable };\n","'use strict';\n\nvar isMergeableObject = function isMergeableObject(value) {\n\treturn isNonNullObject(value)\n\t\t&& !isSpecial(value)\n};\n\nfunction isNonNullObject(value) {\n\treturn !!value && typeof value === 'object'\n}\n\nfunction isSpecial(value) {\n\tvar stringValue = Object.prototype.toString.call(value);\n\n\treturn stringValue === '[object RegExp]'\n\t\t|| stringValue === '[object Date]'\n\t\t|| isReactElement(value)\n}\n\n// see https://github.com/facebook/react/blob/b5ac963fb791d1298e7f396236383bc955f916c1/src/isomorphic/classic/element/ReactElement.js#L21-L25\nvar canUseSymbol = typeof Symbol === 'function' && Symbol.for;\nvar REACT_ELEMENT_TYPE = canUseSymbol ? Symbol.for('react.element') : 0xeac7;\n\nfunction isReactElement(value) {\n\treturn value.$$typeof === REACT_ELEMENT_TYPE\n}\n\nfunction emptyTarget(val) {\n\treturn Array.isArray(val) ? [] : {}\n}\n\nfunction cloneUnlessOtherwiseSpecified(value, options) {\n\treturn (options.clone !== false && options.isMergeableObject(value))\n\t\t? deepmerge(emptyTarget(value), value, options)\n\t\t: value\n}\n\nfunction defaultArrayMerge(target, source, options) {\n\treturn target.concat(source).map(function(element) {\n\t\treturn cloneUnlessOtherwiseSpecified(element, options)\n\t})\n}\n\nfunction getMergeFunction(key, options) {\n\tif (!options.customMerge) {\n\t\treturn deepmerge\n\t}\n\tvar customMerge = options.customMerge(key);\n\treturn typeof customMerge === 'function' ? customMerge : deepmerge\n}\n\nfunction getEnumerableOwnPropertySymbols(target) {\n\treturn Object.getOwnPropertySymbols\n\t\t? Object.getOwnPropertySymbols(target).filter(function(symbol) {\n\t\t\treturn Object.propertyIsEnumerable.call(target, symbol)\n\t\t})\n\t\t: []\n}\n\nfunction getKeys(target) {\n\treturn Object.keys(target).concat(getEnumerableOwnPropertySymbols(target))\n}\n\nfunction propertyIsOnObject(object, property) {\n\ttry {\n\t\treturn property in object\n\t} catch(_) {\n\t\treturn false\n\t}\n}\n\n// Protects from prototype poisoning and unexpected merging up the prototype chain.\nfunction propertyIsUnsafe(target, key) {\n\treturn propertyIsOnObject(target, key) // Properties are safe to merge if they don't exist in the target yet,\n\t\t&& !(Object.hasOwnProperty.call(target, key) // unsafe if they exist up the prototype chain,\n\t\t\t&& Object.propertyIsEnumerable.call(target, key)) // and also unsafe if they're nonenumerable.\n}\n\nfunction mergeObject(target, source, options) {\n\tvar destination = {};\n\tif (options.isMergeableObject(target)) {\n\t\tgetKeys(target).forEach(function(key) {\n\t\t\tdestination[key] = cloneUnlessOtherwiseSpecified(target[key], options);\n\t\t});\n\t}\n\tgetKeys(source).forEach(function(key) {\n\t\tif (propertyIsUnsafe(target, key)) {\n\t\t\treturn\n\t\t}\n\n\t\tif (propertyIsOnObject(target, key) && options.isMergeableObject(source[key])) {\n\t\t\tdestination[key] = getMergeFunction(key, options)(target[key], source[key], options);\n\t\t} else {\n\t\t\tdestination[key] = cloneUnlessOtherwiseSpecified(source[key], options);\n\t\t}\n\t});\n\treturn destination\n}\n\nfunction deepmerge(target, source, options) {\n\toptions = options || {};\n\toptions.arrayMerge = options.arrayMerge || defaultArrayMerge;\n\toptions.isMergeableObject = options.isMergeableObject || isMergeableObject;\n\t// cloneUnlessOtherwiseSpecified is added to `options` so that custom arrayMerge()\n\t// implementations can use it. The caller may not replace it.\n\toptions.cloneUnlessOtherwiseSpecified = cloneUnlessOtherwiseSpecified;\n\n\tvar sourceIsArray = Array.isArray(source);\n\tvar targetIsArray = Array.isArray(target);\n\tvar sourceAndTargetTypesMatch = sourceIsArray === targetIsArray;\n\n\tif (!sourceAndTargetTypesMatch) {\n\t\treturn cloneUnlessOtherwiseSpecified(source, options)\n\t} else if (sourceIsArray) {\n\t\treturn options.arrayMerge(target, source, options)\n\t} else {\n\t\treturn mergeObject(target, source, options)\n\t}\n}\n\ndeepmerge.all = function deepmergeAll(array, options) {\n\tif (!Array.isArray(array)) {\n\t\tthrow new Error('first argument should be an array')\n\t}\n\n\treturn array.reduce(function(prev, next) {\n\t\treturn deepmerge(prev, next, options)\n\t}, {})\n};\n\nvar deepmerge_1 = deepmerge;\n\nmodule.exports = deepmerge_1;\n","export var ErrorKind;\n(function (ErrorKind) {\n /** Argument is unclosed (e.g. `{0`) */\n ErrorKind[ErrorKind[\"EXPECT_ARGUMENT_CLOSING_BRACE\"] = 1] = \"EXPECT_ARGUMENT_CLOSING_BRACE\";\n /** Argument is empty (e.g. `{}`). */\n ErrorKind[ErrorKind[\"EMPTY_ARGUMENT\"] = 2] = \"EMPTY_ARGUMENT\";\n /** Argument is malformed (e.g. `{foo!}``) */\n ErrorKind[ErrorKind[\"MALFORMED_ARGUMENT\"] = 3] = \"MALFORMED_ARGUMENT\";\n /** Expect an argument type (e.g. `{foo,}`) */\n ErrorKind[ErrorKind[\"EXPECT_ARGUMENT_TYPE\"] = 4] = \"EXPECT_ARGUMENT_TYPE\";\n /** Unsupported argument type (e.g. `{foo,foo}`) */\n ErrorKind[ErrorKind[\"INVALID_ARGUMENT_TYPE\"] = 5] = \"INVALID_ARGUMENT_TYPE\";\n /** Expect an argument style (e.g. `{foo, number, }`) */\n ErrorKind[ErrorKind[\"EXPECT_ARGUMENT_STYLE\"] = 6] = \"EXPECT_ARGUMENT_STYLE\";\n /** The number skeleton is invalid. */\n ErrorKind[ErrorKind[\"INVALID_NUMBER_SKELETON\"] = 7] = \"INVALID_NUMBER_SKELETON\";\n /** The date time skeleton is invalid. */\n ErrorKind[ErrorKind[\"INVALID_DATE_TIME_SKELETON\"] = 8] = \"INVALID_DATE_TIME_SKELETON\";\n /** Exepct a number skeleton following the `::` (e.g. `{foo, number, ::}`) */\n ErrorKind[ErrorKind[\"EXPECT_NUMBER_SKELETON\"] = 9] = \"EXPECT_NUMBER_SKELETON\";\n /** Exepct a date time skeleton following the `::` (e.g. `{foo, date, ::}`) */\n ErrorKind[ErrorKind[\"EXPECT_DATE_TIME_SKELETON\"] = 10] = \"EXPECT_DATE_TIME_SKELETON\";\n /** Unmatched apostrophes in the argument style (e.g. `{foo, number, 'test`) */\n ErrorKind[ErrorKind[\"UNCLOSED_QUOTE_IN_ARGUMENT_STYLE\"] = 11] = \"UNCLOSED_QUOTE_IN_ARGUMENT_STYLE\";\n /** Missing select argument options (e.g. `{foo, select}`) */\n ErrorKind[ErrorKind[\"EXPECT_SELECT_ARGUMENT_OPTIONS\"] = 12] = \"EXPECT_SELECT_ARGUMENT_OPTIONS\";\n /** Expecting an offset value in `plural` or `selectordinal` argument (e.g `{foo, plural, offset}`) */\n ErrorKind[ErrorKind[\"EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE\"] = 13] = \"EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE\";\n /** Offset value in `plural` or `selectordinal` is invalid (e.g. `{foo, plural, offset: x}`) */\n ErrorKind[ErrorKind[\"INVALID_PLURAL_ARGUMENT_OFFSET_VALUE\"] = 14] = \"INVALID_PLURAL_ARGUMENT_OFFSET_VALUE\";\n /** Expecting a selector in `select` argument (e.g `{foo, select}`) */\n ErrorKind[ErrorKind[\"EXPECT_SELECT_ARGUMENT_SELECTOR\"] = 15] = \"EXPECT_SELECT_ARGUMENT_SELECTOR\";\n /** Expecting a selector in `plural` or `selectordinal` argument (e.g `{foo, plural}`) */\n ErrorKind[ErrorKind[\"EXPECT_PLURAL_ARGUMENT_SELECTOR\"] = 16] = \"EXPECT_PLURAL_ARGUMENT_SELECTOR\";\n /** Expecting a message fragment after the `select` selector (e.g. `{foo, select, apple}`) */\n ErrorKind[ErrorKind[\"EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT\"] = 17] = \"EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT\";\n /**\n * Expecting a message fragment after the `plural` or `selectordinal` selector\n * (e.g. `{foo, plural, one}`)\n */\n ErrorKind[ErrorKind[\"EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT\"] = 18] = \"EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT\";\n /** Selector in `plural` or `selectordinal` is malformed (e.g. `{foo, plural, =x {#}}`) */\n ErrorKind[ErrorKind[\"INVALID_PLURAL_ARGUMENT_SELECTOR\"] = 19] = \"INVALID_PLURAL_ARGUMENT_SELECTOR\";\n /**\n * Duplicate selectors in `plural` or `selectordinal` argument.\n * (e.g. {foo, plural, one {#} one {#}})\n */\n ErrorKind[ErrorKind[\"DUPLICATE_PLURAL_ARGUMENT_SELECTOR\"] = 20] = \"DUPLICATE_PLURAL_ARGUMENT_SELECTOR\";\n /** Duplicate selectors in `select` argument.\n * (e.g. {foo, select, apple {apple} apple {apple}})\n */\n ErrorKind[ErrorKind[\"DUPLICATE_SELECT_ARGUMENT_SELECTOR\"] = 21] = \"DUPLICATE_SELECT_ARGUMENT_SELECTOR\";\n /** Plural or select argument option must have `other` clause. */\n ErrorKind[ErrorKind[\"MISSING_OTHER_CLAUSE\"] = 22] = \"MISSING_OTHER_CLAUSE\";\n /** The tag is malformed. (e.g. `<bold!>foo</bold!>) */\n ErrorKind[ErrorKind[\"INVALID_TAG\"] = 23] = \"INVALID_TAG\";\n /** The tag name is invalid. (e.g. `<123>foo</123>`) */\n ErrorKind[ErrorKind[\"INVALID_TAG_NAME\"] = 25] = \"INVALID_TAG_NAME\";\n /** The closing tag does not match the opening tag. (e.g. `<bold>foo</italic>`) */\n ErrorKind[ErrorKind[\"UNMATCHED_CLOSING_TAG\"] = 26] = \"UNMATCHED_CLOSING_TAG\";\n /** The opening tag has unmatched closing tag. (e.g. `<bold>foo`) */\n ErrorKind[ErrorKind[\"UNCLOSED_TAG\"] = 27] = \"UNCLOSED_TAG\";\n})(ErrorKind || (ErrorKind = {}));\n","export var TYPE;\n(function (TYPE) {\n /**\n * Raw text\n */\n TYPE[TYPE[\"literal\"] = 0] = \"literal\";\n /**\n * Variable w/o any format, e.g `var` in `this is a {var}`\n */\n TYPE[TYPE[\"argument\"] = 1] = \"argument\";\n /**\n * Variable w/ number format\n */\n TYPE[TYPE[\"number\"] = 2] = \"number\";\n /**\n * Variable w/ date format\n */\n TYPE[TYPE[\"date\"] = 3] = \"date\";\n /**\n * Variable w/ time format\n */\n TYPE[TYPE[\"time\"] = 4] = \"time\";\n /**\n * Variable w/ select format\n */\n TYPE[TYPE[\"select\"] = 5] = \"select\";\n /**\n * Variable w/ plural format\n */\n TYPE[TYPE[\"plural\"] = 6] = \"plural\";\n /**\n * Only possible within plural argument.\n * This is the `#` symbol that will be substituted with the count.\n */\n TYPE[TYPE[\"pound\"] = 7] = \"pound\";\n /**\n * XML-like tag\n */\n TYPE[TYPE[\"tag\"] = 8] = \"tag\";\n})(TYPE || (TYPE = {}));\nexport var SKELETON_TYPE;\n(function (SKELETON_TYPE) {\n SKELETON_TYPE[SKELETON_TYPE[\"number\"] = 0] = \"number\";\n SKELETON_TYPE[SKELETON_TYPE[\"dateTime\"] = 1] = \"dateTime\";\n})(SKELETON_TYPE || (SKELETON_TYPE = {}));\n/**\n * Type Guards\n */\nexport function isLiteralElement(el) {\n return el.type === TYPE.literal;\n}\nexport function isArgumentElement(el) {\n return el.type === TYPE.argument;\n}\nexport function isNumberElement(el) {\n return el.type === TYPE.number;\n}\nexport function isDateElement(el) {\n return el.type === TYPE.date;\n}\nexport function isTimeElement(el) {\n return el.type === TYPE.time;\n}\nexport function isSelectElement(el) {\n return el.type === TYPE.select;\n}\nexport function isPluralElement(el) {\n return el.type === TYPE.plural;\n}\nexport function isPoundElement(el) {\n return el.type === TYPE.pound;\n}\nexport function isTagElement(el) {\n return el.type === TYPE.tag;\n}\nexport function isNumberSkeleton(el) {\n return !!(el && typeof el === 'object' && el.type === SKELETON_TYPE.number);\n}\nexport function isDateTimeSkeleton(el) {\n return !!(el && typeof el === 'object' && el.type === SKELETON_TYPE.dateTime);\n}\nexport function createLiteralElement(value) {\n return {\n type: TYPE.literal,\n value: value,\n };\n}\nexport function createNumberElement(value, style) {\n return {\n type: TYPE.number,\n value: value,\n style: style,\n };\n}\n","// @generated from regex-gen.ts\nexport var SPACE_SEPARATOR_REGEX = /[ \\xA0\\u1680\\u2000-\\u200A\\u202F\\u205F\\u3000]/;\nexport var WHITE_SPACE_REGEX = /[\\t-\\r \\x85\\u200E\\u200F\\u2028\\u2029]/;\n","/**\n * https://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table\n * Credit: https://github.com/caridy/intl-datetimeformat-pattern/blob/master/index.js\n * with some tweaks\n */\nvar DATE_TIME_REGEX = /(?:[Eec]{1,6}|G{1,5}|[Qq]{1,5}|(?:[yYur]+|U{1,5})|[ML]{1,5}|d{1,2}|D{1,3}|F{1}|[abB]{1,5}|[hkHK]{1,2}|w{1,2}|W{1}|m{1,2}|s{1,2}|[zZOvVxX]{1,4})(?=([^']*'[^']*')*[^']*$)/g;\n/**\n * Parse Date time skeleton into Intl.DateTimeFormatOptions\n * Ref: https://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table\n * @public\n * @param skeleton skeleton string\n */\nexport function parseDateTimeSkeleton(skeleton) {\n var result = {};\n skeleton.replace(DATE_TIME_REGEX, function (match) {\n var len = match.length;\n switch (match[0]) {\n // Era\n case 'G':\n result.era = len === 4 ? 'long' : len === 5 ? 'narrow' : 'short';\n break;\n // Year\n case 'y':\n result.year = len === 2 ? '2-digit' : 'numeric';\n break;\n case 'Y':\n case 'u':\n case 'U':\n case 'r':\n throw new RangeError('`Y/u/U/r` (year) patterns are not supported, use `y` instead');\n // Quarter\n case 'q':\n case 'Q':\n throw new RangeError('`q/Q` (quarter) patterns are not supported');\n // Month\n case 'M':\n case 'L':\n result.month = ['numeric', '2-digit', 'short', 'long', 'narrow'][len - 1];\n break;\n // Week\n case 'w':\n case 'W':\n throw new RangeError('`w/W` (week) patterns are not supported');\n case 'd':\n result.day = ['numeric', '2-digit'][len - 1];\n break;\n case 'D':\n case 'F':\n case 'g':\n throw new RangeError('`D/F/g` (day) patterns are not supported, use `d` instead');\n // Weekday\n case 'E':\n result.weekday = len === 4 ? 'short' : len === 5 ? 'narrow' : 'short';\n break;\n case 'e':\n if (len < 4) {\n throw new RangeError('`e..eee` (weekday) patterns are not supported');\n }\n result.weekday = ['short', 'long', 'narrow', 'short'][len - 4];\n break;\n case 'c':\n if (len < 4) {\n throw new RangeError('`c..ccc` (weekday) patterns are not supported');\n }\n result.weekday = ['short', 'long', 'narrow', 'short'][len - 4];\n break;\n // Period\n case 'a': // AM, PM\n result.hour12 = true;\n break;\n case 'b': // am, pm, noon, midnight\n case 'B': // flexible day periods\n throw new RangeError('`b/B` (period) patterns are not supported, use `a` instead');\n // Hour\n case 'h':\n result.hourCycle = 'h12';\n result.hour = ['numeric', '2-digit'][len - 1];\n break;\n case 'H':\n result.hourCycle = 'h23';\n result.hour = ['numeric', '2-digit'][len - 1];\n break;\n case 'K':\n result.hourCycle = 'h11';\n result.hour = ['numeric', '2-digit'][len - 1];\n break;\n case 'k':\n result.hourCycle = 'h24';\n result.hour = ['numeric', '2-digit'][len - 1];\n break;\n case 'j':\n case 'J':\n case 'C':\n throw new RangeError('`j/J/C` (hour) patterns are not supported, use `h/H/K/k` instead');\n // Minute\n case 'm':\n result.minute = ['numeric', '2-digit'][len - 1];\n break;\n // Second\n case 's':\n result.second = ['numeric', '2-digit'][len - 1];\n break;\n case 'S':\n case 'A':\n throw new RangeError('`S/A` (second) patterns are not supported, use `s` instead');\n // Zone\n case 'z': // 1..3, 4: specific non-location format\n result.timeZoneName = len < 4 ? 'short' : 'long';\n break;\n case 'Z': // 1..3, 4, 5: The ISO8601 varios formats\n case 'O': // 1, 4: miliseconds in day short, long\n case 'v': // 1, 4: generic non-location format\n case 'V': // 1, 2, 3, 4: time zone ID or city\n case 'X': // 1, 2, 3, 4: The ISO8601 varios formats\n case 'x': // 1, 2, 3, 4: The ISO8601 varios formats\n throw new RangeError('`Z/O/v/V/X/x` (timeZone) patterns are not supported, use `z` instead');\n }\n return '';\n });\n return result;\n}\n","// @generated from regex-gen.ts\nexport var WHITE_SPACE_REGEX = /[\\t-\\r \\x85\\u200E\\u200F\\u2028\\u2029]/i;\n","import { __assign } from \"tslib\";\nimport { WHITE_SPACE_REGEX } from './regex.generated';\nexport function parseNumberSkeletonFromString(skeleton) {\n if (skeleton.length === 0) {\n throw new Error('Number skeleton cannot be empty');\n }\n // Parse the skeleton\n var stringTokens = skeleton\n .split(WHITE_SPACE_REGEX)\n .filter(function (x) { return x.length > 0; });\n var tokens = [];\n for (var _i = 0, stringTokens_1 = stringTokens; _i < stringTokens_1.length; _i++) {\n var stringToken = stringTokens_1[_i];\n var stemAndOptions = stringToken.split('/');\n if (stemAndOptions.length === 0) {\n throw new Error('Invalid number skeleton');\n }\n var stem = stemAndOptions[0], options = stemAndOptions.slice(1);\n for (var _a = 0, options_1 = options; _a < options_1.length; _a++) {\n var option = options_1[_a];\n if (option.length === 0) {\n throw new Error('Invalid number skeleton');\n }\n }\n tokens.push({ stem: stem, options: options });\n }\n return tokens;\n}\nfunction icuUnitToEcma(unit) {\n return unit.replace(/^(.*?)-/, '');\n}\nvar FRACTION_PRECISION_REGEX = /^\\.(?:(0+)(\\*)?|(#+)|(0+)(#+))$/g;\nvar SIGNIFICANT_PRECISION_REGEX = /^(@+)?(\\+|#+)?[rs]?$/g;\nvar INTEGER_WIDTH_REGEX = /(\\*)(0+)|(#+)(0+)|(0+)/g;\nvar CONCISE_INTEGER_WIDTH_REGEX = /^(0+)$/;\nfunction parseSignificantPrecision(str) {\n var result = {};\n if (str[str.length - 1] === 'r') {\n result.roundingPriority = 'morePrecision';\n }\n else if (str[str.length - 1] === 's') {\n result.roundingPriority = 'lessPrecision';\n }\n str.replace(SIGNIFICANT_PRECISION_REGEX, function (_, g1, g2) {\n // @@@ case\n if (typeof g2 !== 'string') {\n result.minimumSignificantDigits = g1.length;\n result.maximumSignificantDigits = g1.length;\n }\n // @@@+ case\n else if (g2 === '+') {\n result.minimumSignificantDigits = g1.length;\n }\n // .### case\n else if (g1[0] === '#') {\n result.maximumSignificantDigits = g1.length;\n }\n // .@@## or .@@@ case\n else {\n result.minimumSignificantDigits = g1.length;\n result.maximumSignificantDigits =\n g1.length + (typeof g2 === 'string' ? g2.length : 0);\n }\n return '';\n });\n return result;\n}\nfunction parseSign(str) {\n switch (str) {\n case 'sign-auto':\n return {\n signDisplay: 'auto',\n };\n case 'sign-accounting':\n case '()':\n return {\n currencySign: 'accounting',\n };\n case 'sign-always':\n case '+!':\n return {\n signDisplay: 'always',\n };\n case 'sign-accounting-always':\n case '()!':\n return {\n signDisplay: 'always',\n currencySign: 'accounting',\n };\n case 'sign-except-zero':\n case '+?':\n return {\n signDisplay: 'exceptZero',\n };\n case 'sign-accounting-except-zero':\n case '()?':\n return {\n signDisplay: 'exceptZero',\n currencySign: 'accounting',\n };\n case 'sign-never':\n case '+_':\n return {\n signDisplay: 'never',\n };\n }\n}\nfunction parseConciseScientificAndEngineeringStem(stem) {\n // Engineering\n var result;\n if (stem[0] === 'E' && stem[1] === 'E') {\n result = {\n notation: 'engineering',\n };\n stem = stem.slice(2);\n }\n else if (stem[0] === 'E') {\n result = {\n notation: 'scientific',\n };\n stem = stem.slice(1);\n }\n if (result) {\n var signDisplay = stem.slice(0, 2);\n if (signDisplay === '+!') {\n result.signDisplay = 'always';\n stem = stem.slice(2);\n }\n else if (signDisplay === '+?') {\n result.signDisplay = 'exceptZero';\n stem = stem.slice(2);\n }\n if (!CONCISE_INTEGER_WIDTH_REGEX.test(stem)) {\n throw new Error('Malformed concise eng/scientific notation');\n }\n result.minimumIntegerDigits = stem.length;\n }\n return result;\n}\nfunction parseNotationOptions(opt) {\n var result = {};\n var signOpts = parseSign(opt);\n if (signOpts) {\n return signOpts;\n }\n return result;\n}\n/**\n * https://github.com/unicode-org/icu/blob/master/docs/userguide/format_parse/numbers/skeletons.md#skeleton-stems-and-options\n */\nexport function parseNumberSkeleton(tokens) {\n var result = {};\n for (var _i = 0, tokens_1 = tokens; _i < tokens_1.length; _i++) {\n var token = tokens_1[_i];\n switch (token.stem) {\n case 'percent':\n case '%':\n result.style = 'percent';\n continue;\n case '%x100':\n result.style = 'percent';\n result.scale = 100;\n continue;\n case 'currency':\n result.style = 'currency';\n result.currency = token.options[0];\n continue;\n case 'group-off':\n case ',_':\n result.useGrouping = false;\n continue;\n case 'precision-integer':\n case '.':\n result.maximumFractionDigits = 0;\n continue;\n case 'measure-unit':\n case 'unit':\n result.style = 'unit';\n result.unit = icuUnitToEcma(token.options[0]);\n continue;\n case 'compact-short':\n case 'K':\n result.notation = 'compact';\n result.compactDisplay = 'short';\n continue;\n case 'compact-long':\n case 'KK':\n result.notation = 'compact';\n result.compactDisplay = 'long';\n continue;\n case 'scientific':\n result = __assign(__assign(__assign({}, result), { notation: 'scientific' }), token.options.reduce(function (all, opt) { return (__assign(__assign({}, all), parseNotationOptions(opt))); }, {}));\n continue;\n case 'engineering':\n result = __assign(__assign(__assign({}, result), { notation: 'engineering' }), token.options.reduce(function (all, opt) { return (__assign(__assign({}, all), parseNotationOptions(opt))); }, {}));\n continue;\n case 'notation-simple':\n result.notation = 'standard';\n continue;\n // https://github.com/unicode-org/icu/blob/master/icu4c/source/i18n/unicode/unumberformatter.h\n case 'unit-width-narrow':\n result.currencyDisplay = 'narrowSymbol';\n result.unitDisplay = 'narrow';\n continue;\n case 'unit-width-short':\n result.currencyDisplay = 'code';\n result.unitDisplay = 'short';\n continue;\n case 'unit-width-full-name':\n result.currencyDisplay = 'name';\n result.unitDisplay = 'long';\n continue;\n case 'unit-width-iso-code':\n result.currencyDisplay = 'symbol';\n continue;\n case 'scale':\n result.scale = parseFloat(token.options[0]);\n continue;\n // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#integer-width\n case 'integer-width':\n if (token.options.length > 1) {\n throw new RangeError('integer-width stems only accept a single optional option');\n }\n token.options[0].replace(INTEGER_WIDTH_REGEX, function (_, g1, g2, g3, g4, g5) {\n if (g1) {\n result.minimumIntegerDigits = g2.length;\n }\n else if (g3 && g4) {\n throw new Error('We currently do not support maximum integer digits');\n }\n else if (g5) {\n throw new Error('We currently do not support exact integer digits');\n }\n return '';\n });\n continue;\n }\n // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#integer-width\n if (CONCISE_INTEGER_WIDTH_REGEX.test(token.stem)) {\n result.minimumIntegerDigits = token.stem.length;\n continue;\n }\n if (FRACTION_PRECISION_REGEX.test(token.stem)) {\n // Precision\n // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#fraction-precision\n // precision-integer case\n if (token.options.length > 1) {\n throw new RangeError('Fraction-precision stems only accept a single optional option');\n }\n token.stem.replace(FRACTION_PRECISION_REGEX, function (_, g1, g2, g3, g4, g5) {\n // .000* case (before ICU67 it was .000+)\n if (g2 === '*') {\n result.minimumFractionDigits = g1.length;\n }\n // .### case\n else if (g3 && g3[0] === '#') {\n result.maximumFractionDigits = g3.length;\n }\n // .00## case\n else if (g4 && g5) {\n result.minimumFractionDigits = g4.length;\n result.maximumFractionDigits = g4.length + g5.length;\n }\n else {\n result.minimumFractionDigits = g1.length;\n result.maximumFractionDigits = g1.length;\n }\n return '';\n });\n var opt = token.options[0];\n // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#trailing-zero-display\n if (opt === 'w') {\n result = __assign(__assign({}, result), { trailingZeroDisplay: 'stripIfInteger' });\n }\n else if (opt) {\n result = __assign(__assign({}, result), parseSignificantPrecision(opt));\n }\n continue;\n }\n // https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#significant-digits-precision\n if (SIGNIFICANT_PRECISION_REGEX.test(token.stem)) {\n result = __assign(__assign({}, result), parseSignificantPrecision(token.stem));\n continue;\n }\n var signOpts = parseSign(token.stem);\n if (signOpts) {\n result = __assign(__assign({}, result), signOpts);\n }\n var conciseScientificAndEngineeringOpts = parseConciseScientificAndEngineeringStem(token.stem);\n if (conciseScientificAndEngineeringOpts) {\n result = __assign(__assign({}, result), conciseScientificAndEngineeringOpts);\n }\n }\n return result;\n}\n","// @generated from time-data-gen.ts\n// prettier-ignore \nexport var timeData = {\n \"AX\": [\n \"H\"\n ],\n \"BQ\": [\n \"H\"\n ],\n \"CP\": [\n \"H\"\n ],\n \"CZ\": [\n \"H\"\n ],\n \"DK\": [\n \"H\"\n ],\n \"FI\": [\n \"H\"\n ],\n \"ID\": [\n \"H\"\n ],\n \"IS\": [\n \"H\"\n ],\n \"ML\": [\n \"H\"\n ],\n \"NE\": [\n \"H\"\n ],\n \"RU\": [\n \"H\"\n ],\n \"SE\": [\n \"H\"\n ],\n \"SJ\": [\n \"H\"\n ],\n \"SK\": [\n \"H\"\n ],\n \"AS\": [\n \"h\",\n \"H\"\n ],\n \"BT\": [\n \"h\",\n \"H\"\n ],\n \"DJ\": [\n \"h\",\n \"H\"\n ],\n \"ER\": [\n \"h\",\n \"H\"\n ],\n \"GH\": [\n \"h\",\n \"H\"\n ],\n \"IN\": [\n \"h\",\n \"H\"\n ],\n \"LS\": [\n \"h\",\n \"H\"\n ],\n \"PG\": [\n \"h\",\n \"H\"\n ],\n \"PW\": [\n \"h\",\n \"H\"\n ],\n \"SO\": [\n \"h\",\n \"H\"\n ],\n \"TO\": [\n \"h\",\n \"H\"\n ],\n \"VU\": [\n \"h\",\n \"H\"\n ],\n \"WS\": [\n \"h\",\n \"H\"\n ],\n \"001\": [\n \"H\",\n \"h\"\n ],\n \"AL\": [\n \"h\",\n \"H\",\n \"hB\"\n ],\n \"TD\": [\n \"h\",\n \"H\",\n \"hB\"\n ],\n \"ca-ES\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"CF\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"CM\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"fr-CA\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"gl-ES\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"it-CH\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"it-IT\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"LU\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"NP\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"PF\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"SC\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"SM\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"SN\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"TF\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"VA\": [\n \"H\",\n \"h\",\n \"hB\"\n ],\n \"CY\": [\n \"h\",\n \"H\",\n \"hb\",\n \"hB\"\n ],\n \"GR\": [\n \"h\",\n \"H\",\n \"hb\",\n \"hB\"\n ],\n \"CO\": [\n \"h\",\n \"H\",\n \"hB\",\n \"hb\"\n ],\n \"DO\": [\n \"h\",\n \"H\",\n \"hB\",\n \"hb\"\n ],\n \"KP\": [\n \"h\",\n \"H\",\n \"hB\",\n \"hb\"\n ],\n \"KR\": [\n \"h\",\n \"H\",\n \"hB\",\n \"hb\"\n ],\n \"NA\": [\n \"h\",\n \"H\",\n \"hB\",\n \"hb\"\n ],\n \"PA\": [\n \"h\",\n \"H\",\n \"hB\",\n \"hb\"\n ],\n \"PR\": [\n \"h\",\n \"H\",\n \"hB\",\n \"hb\"\n ],\n \"VE\": [\n \"h\",\n \"H\",\n \"hB\",\n \"hb\"\n ],\n \"AC\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"AI\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"BW\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"BZ\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"CC\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"CK\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"CX\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"DG\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"FK\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"GB\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"GG\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"GI\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"IE\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"IM\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"IO\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"JE\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"LT\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"MK\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"MN\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"MS\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"NF\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"NG\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"NR\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"NU\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"PN\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"SH\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"SX\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"TA\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"ZA\": [\n \"H\",\n \"h\",\n \"hb\",\n \"hB\"\n ],\n \"af-ZA\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"AR\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"CL\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"CR\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"CU\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"EA\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"es-BO\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"es-BR\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"es-EC\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"es-ES\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"es-GQ\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"es-PE\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"GT\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"HN\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"IC\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"KG\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"KM\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"LK\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"MA\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"MX\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"NI\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"PY\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"SV\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"UY\": [\n \"H\",\n \"h\",\n \"hB\",\n \"hb\"\n ],\n \"JP\": [\n \"H\",\n \"h\",\n \"K\"\n ],\n \"AD\": [\n \"H\",\n \"hB\"\n ],\n \"AM\": [\n \"H\",\n \"hB\"\n ],\n \"AO\": [\n \"H\",\n \"hB\"\n ],\n \"AT\": [\n \"H\",\n \"hB\"\n ],\n \"AW\": [\n \"H\",\n \"hB\"\n ],\n \"BE\": [\n \"H\",\n \"hB\"\n ],\n \"BF\": [\n \"H\",\n \"hB\"\n ],\n \"BJ\": [\n \"H\",\n \"hB\"\n ],\n \"BL\": [\n \"H\",\n \"hB\"\n ],\n \"BR\": [\n \"H\",\n \"hB\"\n ],\n \"CG\": [\n \"H\",\n \"hB\"\n ],\n \"CI\": [\n \"H\",\n \"hB\"\n ],\n \"CV\": [\n \"H\",\n \"hB\"\n ],\n \"DE\": [\n \"H\",\n \"hB\"\n ],\n \"EE\": [\n \"H\",\n \"hB\"\n ],\n \"FR\": [\n \"H\",\n \"hB\"\n ],\n \"GA\": [\n \"H\",\n \"hB\"\n ],\n \"GF\": [\n \"H\",\n \"hB\"\n ],\n \"GN\": [\n \"H\",\n \"hB\"\n ],\n \"GP\": [\n \"H\",\n \"hB\"\n ],\n \"GW\": [\n \"H\",\n \"hB\"\n ],\n \"HR\": [\n \"H\",\n \"hB\"\n ],\n \"IL\": [\n \"H\",\n \"hB\"\n ],\n \"IT\": [\n \"H\",\n \"hB\"\n ],\n \"KZ\": [\n \"H\",\n \"hB\"\n ],\n \"MC\": [\n \"H\",\n \"hB\"\n ],\n \"MD\": [\n \"H\",\n \"hB\"\n ],\n \"MF\": [\n \"H\",\n \"hB\"\n ],\n \"MQ\": [\n \"H\",\n \"hB\"\n ],\n \"MZ\": [\n \"H\",\n \"hB\"\n ],\n \"NC\": [\n \"H\",\n \"hB\"\n ],\n \"NL\": [\n \"H\",\n \"hB\"\n ],\n \"PM\": [\n \"H\",\n \"hB\"\n ],\n \"PT\": [\n \"H\",\n \"hB\"\n ],\n \"RE\": [\n \"H\",\n \"hB\"\n ],\n \"RO\": [\n \"H\",\n \"hB\"\n ],\n \"SI\": [\n \"H\",\n \"hB\"\n ],\n \"SR\": [\n \"H\",\n \"hB\"\n ],\n \"ST\": [\n \"H\",\n \"hB\"\n ],\n \"TG\": [\n \"H\",\n \"hB\"\n ],\n \"TR\": [\n \"H\",\n \"hB\"\n ],\n \"WF\": [\n \"H\",\n \"hB\"\n ],\n \"YT\": [\n \"H\",\n \"hB\"\n ],\n \"BD\": [\n \"h\",\n \"hB\",\n \"H\"\n ],\n \"PK\": [\n \"h\",\n \"hB\",\n \"H\"\n ],\n \"AZ\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"BA\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"BG\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"CH\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"GE\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"LI\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"ME\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"RS\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"UA\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"UZ\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"XK\": [\n \"H\",\n \"hB\",\n \"h\"\n ],\n \"AG\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"AU\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"BB\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"BM\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"BS\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"CA\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"DM\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"en-001\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"FJ\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"FM\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"GD\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"GM\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"GU\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"GY\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"JM\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"KI\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"KN\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"KY\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"LC\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"LR\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"MH\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"MP\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"MW\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"NZ\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"SB\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"SG\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"SL\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"SS\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"SZ\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"TC\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"TT\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"UM\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"US\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"VC\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"VG\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"VI\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"ZM\": [\n \"h\",\n \"hb\",\n \"H\",\n \"hB\"\n ],\n \"BO\": [\n \"H\",\n \"hB\",\n \"h\",\n \"hb\"\n ],\n \"EC\": [\n \"H\",\n \"hB\",\n \"h\",\n \"hb\"\n ],\n \"ES\": [\n \"H\",\n \"hB\",\n \"h\",\n \"hb\"\n ],\n \"GQ\": [\n \"H\",\n \"hB\",\n \"h\",\n \"hb\"\n ],\n \"PE\": [\n \"H\",\n \"hB\",\n \"h\",\n \"hb\"\n ],\n \"AE\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"ar-001\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"BH\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"DZ\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"EG\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"EH\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"HK\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"IQ\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"JO\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"KW\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"LB\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"LY\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"MO\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"MR\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"OM\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"PH\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"PS\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"QA\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"SA\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"SD\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"SY\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"TN\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"YE\": [\n \"h\",\n \"hB\",\n \"hb\",\n \"H\"\n ],\n \"AF\": [\n \"H\",\n \"hb\",\n \"hB\",\n \"h\"\n ],\n \"LA\": [\n \"H\",\n \"hb\",\n \"hB\",\n \"h\"\n ],\n \"CN\": [\n \"H\",\n \"hB\",\n \"hb\",\n \"h\"\n ],\n \"LV\": [\n \"H\",\n \"hB\",\n \"hb\",\n \"h\"\n ],\n \"TL\": [\n \"H\",\n \"hB\",\n \"hb\",\n \"h\"\n ],\n \"zu-ZA\": [\n \"H\",\n \"hB\",\n \"hb\",\n \"h\"\n ],\n \"CD\": [\n \"hB\",\n \"H\"\n ],\n \"IR\": [\n \"hB\",\n \"H\"\n ],\n \"hi-IN\": [\n \"hB\",\n \"h\",\n \"H\"\n ],\n \"kn-IN\": [\n \"hB\",\n \"h\",\n \"H\"\n ],\n \"ml-IN\": [\n \"hB\",\n \"h\",\n \"H\"\n ],\n \"te-IN\": [\n \"hB\",\n \"h\",\n \"H\"\n ],\n \"KH\": [\n \"hB\",\n \"h\",\n \"H\",\n \"hb\"\n ],\n \"ta-IN\": [\n \"hB\",\n \"h\",\n \"hb\",\n \"H\"\n ],\n \"BN\": [\n \"hb\",\n \"hB\",\n \"h\",\n \"H\"\n ],\n \"MY\": [\n \"hb\",\n \"hB\",\n \"h\",\n \"H\"\n ],\n \"ET\": [\n \"hB\",\n \"hb\",\n \"h\",\n \"H\"\n ],\n \"gu-IN\": [\n \"hB\",\n \"hb\",\n \"h\",\n \"H\"\n ],\n \"mr-IN\": [\n \"hB\",\n \"hb\",\n \"h\",\n \"H\"\n ],\n \"pa-IN\": [\n \"hB\",\n \"hb\",\n \"h\",\n \"H\"\n ],\n \"TW\": [\n \"hB\",\n \"hb\",\n \"h\",\n \"H\"\n ],\n \"KE\": [\n \"hB\",\n \"hb\",\n \"H\",\n \"h\"\n ],\n \"MM\": [\n \"hB\",\n \"hb\",\n \"H\",\n \"h\"\n ],\n \"TZ\": [\n \"hB\",\n \"hb\",\n \"H\",\n \"h\"\n ],\n \"UG\": [\n \"hB\",\n \"hb\",\n \"H\",\n \"h\"\n ]\n};\n","import { timeData } from './time-data.generated';\n/**\n * Returns the best matching date time pattern if a date time skeleton\n * pattern is provided with a locale. Follows the Unicode specification:\n * https://www.unicode.org/reports/tr35/tr35-dates.html#table-mapping-requested-time-skeletons-to-patterns\n * @param skeleton date time skeleton pattern that possibly includes j, J or C\n * @param locale\n */\nexport function getBestPattern(skeleton, locale) {\n var skeletonCopy = '';\n for (var patternPos = 0; patternPos < skeleton.length; patternPos++) {\n var patternChar = skeleton.charAt(patternPos);\n if (patternChar === 'j') {\n var extraLength = 0;\n while (patternPos + 1 < skeleton.length &&\n skeleton.charAt(patternPos + 1) === patternChar) {\n extraLength++;\n patternPos++;\n }\n var hourLen = 1 + (extraLength & 1);\n var dayPeriodLen = extraLength < 2 ? 1 : 3 + (extraLength >> 1);\n var dayPeriodChar = 'a';\n var hourChar = getDefaultHourSymbolFromLocale(locale);\n if (hourChar == 'H' || hourChar == 'k') {\n dayPeriodLen = 0;\n }\n while (dayPeriodLen-- > 0) {\n skeletonCopy += dayPeriodChar;\n }\n while (hourLen-- > 0) {\n skeletonCopy = hourChar + skeletonCopy;\n }\n }\n else if (patternChar === 'J') {\n skeletonCopy += 'H';\n }\n else {\n skeletonCopy += patternChar;\n }\n }\n return skeletonCopy;\n}\n/**\n * Maps the [hour cycle type](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/hourCycle)\n * of the given `locale` to the corresponding time pattern.\n * @param locale\n */\nfunction getDefaultHourSymbolFromLocale(locale) {\n var hourCycle = locale.hourCycle;\n if (hourCycle === undefined &&\n // @ts-ignore hourCycle(s) is not identified yet\n locale.hourCycles &&\n // @ts-ignore\n locale.hourCycles.length) {\n // @ts-ignore\n hourCycle = locale.hourCycles[0];\n }\n if (hourCycle) {\n switch (hourCycle) {\n case 'h24':\n return 'k';\n case 'h23':\n return 'H';\n case 'h12':\n return 'h';\n case 'h11':\n return 'K';\n default:\n throw new Error('Invalid hourCycle');\n }\n }\n // TODO: Once hourCycle is fully supported remove the following with data generation\n var languageTag = locale.language;\n var regionTag;\n if (languageTag !== 'root') {\n regionTag = locale.maximize().region;\n }\n var hourCycles = timeData[regionTag || ''] ||\n timeData[languageTag || ''] ||\n timeData[\"\".concat(languageTag, \"-001\")] ||\n timeData['001'];\n return hourCycles[0];\n}\n","var _a;\nimport { __assign } from \"tslib\";\nimport { ErrorKind } from './error';\nimport { SKELETON_TYPE, TYPE, } from './types';\nimport { SPACE_SEPARATOR_REGEX } from './regex.generated';\nimport { parseNumberSkeleton, parseNumberSkeletonFromString, parseDateTimeSkeleton, } from '@formatjs/icu-skeleton-parser';\nimport { getBestPattern } from './date-time-pattern-generator';\nvar SPACE_SEPARATOR_START_REGEX = new RegExp(\"^\".concat(SPACE_SEPARATOR_REGEX.source, \"*\"));\nvar SPACE_SEPARATOR_END_REGEX = new RegExp(\"\".concat(SPACE_SEPARATOR_REGEX.source, \"*$\"));\nfunction createLocation(start, end) {\n return { start: start, end: end };\n}\n// #region Ponyfills\n// Consolidate these variables up top for easier toggling during debugging\nvar hasNativeStartsWith = !!String.prototype.startsWith;\nvar hasNativeFromCodePoint = !!String.fromCodePoint;\nvar hasNativeFromEntries = !!Object.fromEntries;\nvar hasNativeCodePointAt = !!String.prototype.codePointAt;\nvar hasTrimStart = !!String.prototype.trimStart;\nvar hasTrimEnd = !!String.prototype.trimEnd;\nvar hasNativeIsSafeInteger = !!Number.isSafeInteger;\nvar isSafeInteger = hasNativeIsSafeInteger\n ? Number.isSafeInteger\n : function (n) {\n return (typeof n === 'number' &&\n isFinite(n) &&\n Math.floor(n) === n &&\n Math.abs(n) <= 0x1fffffffffffff);\n };\n// IE11 does not support y and u.\nvar REGEX_SUPPORTS_U_AND_Y = true;\ntry {\n var re = RE('([^\\\\p{White_Space}\\\\p{Pattern_Syntax}]*)', 'yu');\n /**\n * legacy Edge or Xbox One browser\n * Unicode flag support: supported\n * Pattern_Syntax support: not supported\n * See https://github.com/formatjs/formatjs/issues/2822\n */\n REGEX_SUPPORTS_U_AND_Y = ((_a = re.exec('a')) === null || _a === void 0 ? void 0 : _a[0]) === 'a';\n}\ncatch (_) {\n REGEX_SUPPORTS_U_AND_Y = false;\n}\nvar startsWith = hasNativeStartsWith\n ? // Native\n function startsWith(s, search, position) {\n return s.startsWith(search, position);\n }\n : // For IE11\n function startsWith(s, search, position) {\n return s.slice(position, position + search.length) === search;\n };\nvar fromCodePoint = hasNativeFromCodePoint\n ? String.fromCodePoint\n : // IE11\n function fromCodePoint() {\n var codePoints = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n codePoints[_i] = arguments[_i];\n }\n var elements = '';\n var length = codePoints.length;\n var i = 0;\n var code;\n while (length > i) {\n code = codePoints[i++];\n if (code > 0x10ffff)\n throw RangeError(code + ' is not a valid code point');\n elements +=\n code < 0x10000\n ? String.fromCharCode(code)\n : String.fromCharCode(((code -= 0x10000) >> 10) + 0xd800, (code % 0x400) + 0xdc00);\n }\n return elements;\n };\nvar fromEntries = \n// native\nhasNativeFromEntries\n ? Object.fromEntries\n : // Ponyfill\n function fromEntries(entries) {\n var obj = {};\n for (var _i = 0, entries_1 = entries; _i < entries_1.length; _i++) {\n var _a = entries_1[_i], k = _a[0], v = _a[1];\n obj[k] = v;\n }\n return obj;\n };\nvar codePointAt = hasNativeCodePointAt\n ? // Native\n function codePointAt(s, index) {\n return s.codePointAt(index);\n }\n : // IE 11\n function codePointAt(s, index) {\n var size = s.length;\n if (index < 0 || index >= size) {\n return undefined;\n }\n var first = s.charCodeAt(index);\n var second;\n return first < 0xd800 ||\n first > 0xdbff ||\n index + 1 === size ||\n (second = s.charCodeAt(index + 1)) < 0xdc00 ||\n second > 0xdfff\n ? first\n : ((first - 0xd800) << 10) + (second - 0xdc00) + 0x10000;\n };\nvar trimStart = hasTrimStart\n ? // Native\n function trimStart(s) {\n return s.trimStart();\n }\n : // Ponyfill\n function trimStart(s) {\n return s.replace(SPACE_SEPARATOR_START_REGEX, '');\n };\nvar trimEnd = hasTrimEnd\n ? // Native\n function trimEnd(s) {\n return s.trimEnd();\n }\n : // Ponyfill\n function trimEnd(s) {\n return s.replace(SPACE_SEPARATOR_END_REGEX, '');\n };\n// Prevent minifier to translate new RegExp to literal form that might cause syntax error on IE11.\nfunction RE(s, flag) {\n return new RegExp(s, flag);\n}\n// #endregion\nvar matchIdentifierAtIndex;\nif (REGEX_SUPPORTS_U_AND_Y) {\n // Native\n var IDENTIFIER_PREFIX_RE_1 = RE('([^\\\\p{White_Space}\\\\p{Pattern_Syntax}]*)', 'yu');\n matchIdentifierAtIndex = function matchIdentifierAtIndex(s, index) {\n var _a;\n IDENTIFIER_PREFIX_RE_1.lastIndex = index;\n var match = IDENTIFIER_PREFIX_RE_1.exec(s);\n return (_a = match[1]) !== null && _a !== void 0 ? _a : '';\n };\n}\nelse {\n // IE11\n matchIdentifierAtIndex = function matchIdentifierAtIndex(s, index) {\n var match = [];\n while (true) {\n var c = codePointAt(s, index);\n if (c === undefined || _isWhiteSpace(c) || _isPatternSyntax(c)) {\n break;\n }\n match.push(c);\n index += c >= 0x10000 ? 2 : 1;\n }\n return fromCodePoint.apply(void 0, match);\n };\n}\nvar Parser = /** @class */ (function () {\n function Parser(message, options) {\n if (options === void 0) { options = {}; }\n this.message = message;\n this.position = { offset: 0, line: 1, column: 1 };\n this.ignoreTag = !!options.ignoreTag;\n this.locale = options.locale;\n this.requiresOtherClause = !!options.requiresOtherClause;\n this.shouldParseSkeletons = !!options.shouldParseSkeletons;\n }\n Parser.prototype.parse = function () {\n if (this.offset() !== 0) {\n throw Error('parser can only be used once');\n }\n return this.parseMessage(0, '', false);\n };\n Parser.prototype.parseMessage = function (nestingLevel, parentArgType, expectingCloseTag) {\n var elements = [];\n while (!this.isEOF()) {\n var char = this.char();\n if (char === 123 /* `{` */) {\n var result = this.parseArgument(nestingLevel, expectingCloseTag);\n if (result.err) {\n return result;\n }\n elements.push(result.val);\n }\n else if (char === 125 /* `}` */ && nestingLevel > 0) {\n break;\n }\n else if (char === 35 /* `#` */ &&\n (parentArgType === 'plural' || parentArgType === 'selectordinal')) {\n var position = this.clonePosition();\n this.bump();\n elements.push({\n type: TYPE.pound,\n location: createLocation(position, this.clonePosition()),\n });\n }\n else if (char === 60 /* `<` */ &&\n !this.ignoreTag &&\n this.peek() === 47 // char code for '/'\n ) {\n if (expectingCloseTag) {\n break;\n }\n else {\n return this.error(ErrorKind.UNMATCHED_CLOSING_TAG, createLocation(this.clonePosition(), this.clonePosition()));\n }\n }\n else if (char === 60 /* `<` */ &&\n !this.ignoreTag &&\n _isAlpha(this.peek() || 0)) {\n var result = this.parseTag(nestingLevel, parentArgType);\n if (result.err) {\n return result;\n }\n elements.push(result.val);\n }\n else {\n var result = this.parseLiteral(nestingLevel, parentArgType);\n if (result.err) {\n return result;\n }\n elements.push(result.val);\n }\n }\n return { val: elements, err: null };\n };\n /**\n * A tag name must start with an ASCII lower/upper case letter. The grammar is based on the\n * [custom element name][] except that a dash is NOT always mandatory and uppercase letters\n * are accepted:\n *\n * ```\n * tag ::= \"<\" tagName (whitespace)* \"/>\" | \"<\" tagName (whitespace)* \">\" message \"</\" tagName (whitespace)* \">\"\n * tagName ::= [a-z] (PENChar)*\n * PENChar ::=\n * \"-\" | \".\" | [0-9] | \"_\" | [a-z] | [A-Z] | #xB7 | [#xC0-#xD6] | [#xD8-#xF6] | [#xF8-#x37D] |\n * [#x37F-#x1FFF] | [#x200C-#x200D] | [#x203F-#x2040] | [#x2070-#x218F] | [#x2C00-#x2FEF] |\n * [#x3001-#xD7FF] | [#xF900-#xFDCF] | [#xFDF0-#xFFFD] | [#x10000-#xEFFFF]\n * ```\n *\n * [custom element name]: https://html.spec.whatwg.org/multipage/custom-elements.html#valid-custom-element-name\n * NOTE: We're a bit more lax here since HTML technically does not allow uppercase HTML element but we do\n * since other tag-based engines like React allow it\n */\n Parser.prototype.parseTag = function (nestingLevel, parentArgType) {\n var startPosition = this.clonePosition();\n this.bump(); // `<`\n var tagName = this.parseTagName();\n this.bumpSpace();\n if (this.bumpIf('/>')) {\n // Self closing tag\n return {\n val: {\n type: TYPE.literal,\n value: \"<\".concat(tagName, \"/>\"),\n location: createLocation(startPosition, this.clonePosition()),\n },\n err: null,\n };\n }\n else if (this.bumpIf('>')) {\n var childrenResult = this.parseMessage(nestingLevel + 1, parentArgType, true);\n if (childrenResult.err) {\n return childrenResult;\n }\n var children = childrenResult.val;\n // Expecting a close tag\n var endTagStartPosition = this.clonePosition();\n if (this.bumpIf('</')) {\n if (this.isEOF() || !_isAlpha(this.char())) {\n return this.error(ErrorKind.INVALID_TAG, createLocation(endTagStartPosition, this.clonePosition()));\n }\n var closingTagNameStartPosition = this.clonePosition();\n var closingTagName = this.parseTagName();\n if (tagName !== closingTagName) {\n return this.error(ErrorKind.UNMATCHED_CLOSING_TAG, createLocation(closingTagNameStartPosition, this.clonePosition()));\n }\n this.bumpSpace();\n if (!this.bumpIf('>')) {\n return this.error(ErrorKind.INVALID_TAG, createLocation(endTagStartPosition, this.clonePosition()));\n }\n return {\n val: {\n type: TYPE.tag,\n value: tagName,\n children: children,\n location: createLocation(startPosition, this.clonePosition()),\n },\n err: null,\n };\n }\n else {\n return this.error(ErrorKind.UNCLOSED_TAG, createLocation(startPosition, this.clonePosition()));\n }\n }\n else {\n return this.error(ErrorKind.INVALID_TAG, createLocation(startPosition, this.clonePosition()));\n }\n };\n /**\n * This method assumes that the caller has peeked ahead for the first tag character.\n */\n Parser.prototype.parseTagName = function () {\n var startOffset = this.offset();\n this.bump(); // the first tag name character\n while (!this.isEOF() && _isPotentialElementNameChar(this.char())) {\n this.bump();\n }\n return this.message.slice(startOffset, this.offset());\n };\n Parser.prototype.parseLiteral = function (nestingLevel, parentArgType) {\n var start = this.clonePosition();\n var value = '';\n while (true) {\n var parseQuoteResult = this.tryParseQuote(parentArgType);\n if (parseQuoteResult) {\n value += parseQuoteResult;\n continue;\n }\n var parseUnquotedResult = this.tryParseUnquoted(nestingLevel, parentArgType);\n if (parseUnquotedResult) {\n value += parseUnquotedResult;\n continue;\n }\n var parseLeftAngleResult = this.tryParseLeftAngleBracket();\n if (parseLeftAngleResult) {\n value += parseLeftAngleResult;\n continue;\n }\n break;\n }\n var location = createLocation(start, this.clonePosition());\n return {\n val: { type: TYPE.literal, value: value, location: location },\n err: null,\n };\n };\n Parser.prototype.tryParseLeftAngleBracket = function () {\n if (!this.isEOF() &&\n this.char() === 60 /* `<` */ &&\n (this.ignoreTag ||\n // If at the opening tag or closing tag position, bail.\n !_isAlphaOrSlash(this.peek() || 0))) {\n this.bump(); // `<`\n return '<';\n }\n return null;\n };\n /**\n * Starting with ICU 4.8, an ASCII apostrophe only starts quoted text if it immediately precedes\n * a character that requires quoting (that is, \"only where needed\"), and works the same in\n * nested messages as on the top level of the pattern. The new behavior is otherwise compatible.\n */\n Parser.prototype.tryParseQuote = function (parentArgType) {\n if (this.isEOF() || this.char() !== 39 /* `'` */) {\n return null;\n }\n // Parse escaped char following the apostrophe, or early return if there is no escaped char.\n // Check if is valid escaped character\n switch (this.peek()) {\n case 39 /* `'` */:\n // double quote, should return as a single quote.\n this.bump();\n this.bump();\n return \"'\";\n // '{', '<', '>', '}'\n case 123:\n case 60:\n case 62:\n case 125:\n break;\n case 35: // '#'\n if (parentArgType === 'plural' || parentArgType === 'selectordinal') {\n break;\n }\n return null;\n default:\n return null;\n }\n this.bump(); // apostrophe\n var codePoints = [this.char()]; // escaped char\n this.bump();\n // read chars until the optional closing apostrophe is found\n while (!this.isEOF()) {\n var ch = this.char();\n if (ch === 39 /* `'` */) {\n if (this.peek() === 39 /* `'` */) {\n codePoints.push(39);\n // Bump one more time because we need to skip 2 characters.\n this.bump();\n }\n else {\n // Optional closing apostrophe.\n this.bump();\n break;\n }\n }\n else {\n codePoints.push(ch);\n }\n this.bump();\n }\n return fromCodePoint.apply(void 0, codePoints);\n };\n Parser.prototype.tryParseUnquoted = function (nestingLevel, parentArgType) {\n if (this.isEOF()) {\n return null;\n }\n var ch = this.char();\n if (ch === 60 /* `<` */ ||\n ch === 123 /* `{` */ ||\n (ch === 35 /* `#` */ &&\n (parentArgType === 'plural' || parentArgType === 'selectordinal')) ||\n (ch === 125 /* `}` */ && nestingLevel > 0)) {\n return null;\n }\n else {\n this.bump();\n return fromCodePoint(ch);\n }\n };\n Parser.prototype.parseArgument = function (nestingLevel, expectingCloseTag) {\n var openingBracePosition = this.clonePosition();\n this.bump(); // `{`\n this.bumpSpace();\n if (this.isEOF()) {\n return this.error(ErrorKind.EXPECT_ARGUMENT_CLOSING_BRACE, createLocation(openingBracePosition, this.clonePosition()));\n }\n if (this.char() === 125 /* `}` */) {\n this.bump();\n return this.error(ErrorKind.EMPTY_ARGUMENT, createLocation(openingBracePosition, this.clonePosition()));\n }\n // argument name\n var value = this.parseIdentifierIfPossible().value;\n if (!value) {\n return this.error(ErrorKind.MALFORMED_ARGUMENT, createLocation(openingBracePosition, this.clonePosition()));\n }\n this.bumpSpace();\n if (this.isEOF()) {\n return this.error(ErrorKind.EXPECT_ARGUMENT_CLOSING_BRACE, createLocation(openingBracePosition, this.clonePosition()));\n }\n switch (this.char()) {\n // Simple argument: `{name}`\n case 125 /* `}` */: {\n this.bump(); // `}`\n return {\n val: {\n type: TYPE.argument,\n // value does not include the opening and closing braces.\n value: value,\n location: createLocation(openingBracePosition, this.clonePosition()),\n },\n err: null,\n };\n }\n // Argument with options: `{name, format, ...}`\n case 44 /* `,` */: {\n this.bump(); // `,`\n this.bumpSpace();\n if (this.isEOF()) {\n return this.error(ErrorKind.EXPECT_ARGUMENT_CLOSING_BRACE, createLocation(openingBracePosition, this.clonePosition()));\n }\n return this.parseArgumentOptions(nestingLevel, expectingCloseTag, value, openingBracePosition);\n }\n default:\n return this.error(ErrorKind.MALFORMED_ARGUMENT, createLocation(openingBracePosition, this.clonePosition()));\n }\n };\n /**\n * Advance the parser until the end of the identifier, if it is currently on\n * an identifier character. Return an empty string otherwise.\n */\n Parser.prototype.parseIdentifierIfPossible = function () {\n var startingPosition = this.clonePosition();\n var startOffset = this.offset();\n var value = matchIdentifierAtIndex(this.message, startOffset);\n var endOffset = startOffset + value.length;\n this.bumpTo(endOffset);\n var endPosition = this.clonePosition();\n var location = createLocation(startingPosition, endPosition);\n return { value: value, location: location };\n };\n Parser.prototype.parseArgumentOptions = function (nestingLevel, expectingCloseTag, value, openingBracePosition) {\n var _a;\n // Parse this range:\n // {name, type, style}\n // ^---^\n var typeStartPosition = this.clonePosition();\n var argType = this.parseIdentifierIfPossible().value;\n var typeEndPosition = this.clonePosition();\n switch (argType) {\n case '':\n // Expecting a style string number, date, time, plural, selectordinal, or select.\n return this.error(ErrorKind.EXPECT_ARGUMENT_TYPE, createLocation(typeStartPosition, typeEndPosition));\n case 'number':\n case 'date':\n case 'time': {\n // Parse this range:\n // {name, number, style}\n // ^-------^\n this.bumpSpace();\n var styleAndLocation = null;\n if (this.bumpIf(',')) {\n this.bumpSpace();\n var styleStartPosition = this.clonePosition();\n var result = this.parseSimpleArgStyleIfPossible();\n if (result.err) {\n return result;\n }\n var style = trimEnd(result.val);\n if (style.length === 0) {\n return this.error(ErrorKind.EXPECT_ARGUMENT_STYLE, createLocation(this.clonePosition(), this.clonePosition()));\n }\n var styleLocation = createLocation(styleStartPosition, this.clonePosition());\n styleAndLocation = { style: style, styleLocation: styleLocation };\n }\n var argCloseResult = this.tryParseArgumentClose(openingBracePosition);\n if (argCloseResult.err) {\n return argCloseResult;\n }\n var location_1 = createLocation(openingBracePosition, this.clonePosition());\n // Extract style or skeleton\n if (styleAndLocation && startsWith(styleAndLocation === null || styleAndLocation === void 0 ? void 0 : styleAndLocation.style, '::', 0)) {\n // Skeleton starts with `::`.\n var skeleton = trimStart(styleAndLocation.style.slice(2));\n if (argType === 'number') {\n var result = this.parseNumberSkeletonFromString(skeleton, styleAndLocation.styleLocation);\n if (result.err) {\n return result;\n }\n return {\n val: { type: TYPE.number, value: value, location: location_1, style: result.val },\n err: null,\n };\n }\n else {\n if (skeleton.length === 0) {\n return this.error(ErrorKind.EXPECT_DATE_TIME_SKELETON, location_1);\n }\n var dateTimePattern = skeleton;\n // Get \"best match\" pattern only if locale is passed, if not, let it\n // pass as-is where `parseDateTimeSkeleton()` will throw an error\n // for unsupported patterns.\n if (this.locale) {\n dateTimePattern = getBestPattern(skeleton, this.locale);\n }\n var style = {\n type: SKELETON_TYPE.dateTime,\n pattern: dateTimePattern,\n location: styleAndLocation.styleLocation,\n parsedOptions: this.shouldParseSkeletons\n ? parseDateTimeSkeleton(dateTimePattern)\n : {},\n };\n var type = argType === 'date' ? TYPE.date : TYPE.time;\n return {\n val: { type: type, value: value, location: location_1, style: style },\n err: null,\n };\n }\n }\n // Regular style or no style.\n return {\n val: {\n type: argType === 'number'\n ? TYPE.number\n : argType === 'date'\n ? TYPE.date\n : TYPE.time,\n value: value,\n location: location_1,\n style: (_a = styleAndLocation === null || styleAndLocation === void 0 ? void 0 : styleAndLocation.style) !== null && _a !== void 0 ? _a : null,\n },\n err: null,\n };\n }\n case 'plural':\n case 'selectordinal':\n case 'select': {\n // Parse this range:\n // {name, plural, options}\n // ^---------^\n var typeEndPosition_1 = this.clonePosition();\n this.bumpSpace();\n if (!this.bumpIf(',')) {\n return this.error(ErrorKind.EXPECT_SELECT_ARGUMENT_OPTIONS, createLocation(typeEndPosition_1, __assign({}, typeEndPosition_1)));\n }\n this.bumpSpace();\n // Parse offset:\n // {name, plural, offset:1, options}\n // ^-----^\n //\n // or the first option:\n //\n // {name, plural, one {...} other {...}}\n // ^--^\n var identifierAndLocation = this.parseIdentifierIfPossible();\n var pluralOffset = 0;\n if (argType !== 'select' && identifierAndLocation.value === 'offset') {\n if (!this.bumpIf(':')) {\n return this.error(ErrorKind.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE, createLocation(this.clonePosition(), this.clonePosition()));\n }\n this.bumpSpace();\n var result = this.tryParseDecimalInteger(ErrorKind.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE, ErrorKind.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE);\n if (result.err) {\n return result;\n }\n // Parse another identifier for option parsing\n this.bumpSpace();\n identifierAndLocation = this.parseIdentifierIfPossible();\n pluralOffset = result.val;\n }\n var optionsResult = this.tryParsePluralOrSelectOptions(nestingLevel, argType, expectingCloseTag, identifierAndLocation);\n if (optionsResult.err) {\n return optionsResult;\n }\n var argCloseResult = this.tryParseArgumentClose(openingBracePosition);\n if (argCloseResult.err) {\n return argCloseResult;\n }\n var location_2 = createLocation(openingBracePosition, this.clonePosition());\n if (argType === 'select') {\n return {\n val: {\n type: TYPE.select,\n value: value,\n options: fromEntries(optionsResult.val),\n location: location_2,\n },\n err: null,\n };\n }\n else {\n return {\n val: {\n type: TYPE.plural,\n value: value,\n options: fromEntries(optionsResult.val),\n offset: pluralOffset,\n pluralType: argType === 'plural' ? 'cardinal' : 'ordinal',\n location: location_2,\n },\n err: null,\n };\n }\n }\n default:\n return this.error(ErrorKind.INVALID_ARGUMENT_TYPE, createLocation(typeStartPosition, typeEndPosition));\n }\n };\n Parser.prototype.tryParseArgumentClose = function (openingBracePosition) {\n // Parse: {value, number, ::currency/GBP }\n //\n if (this.isEOF() || this.char() !== 125 /* `}` */) {\n return this.error(ErrorKind.EXPECT_ARGUMENT_CLOSING_BRACE, createLocation(openingBracePosition, this.clonePosition()));\n }\n this.bump(); // `}`\n return { val: true, err: null };\n };\n /**\n * See: https://github.com/unicode-org/icu/blob/af7ed1f6d2298013dc303628438ec4abe1f16479/icu4c/source/common/messagepattern.cpp#L659\n */\n Parser.prototype.parseSimpleArgStyleIfPossible = function () {\n var nestedBraces = 0;\n var startPosition = this.clonePosition();\n while (!this.isEOF()) {\n var ch = this.char();\n switch (ch) {\n case 39 /* `'` */: {\n // Treat apostrophe as quoting but include it in the style part.\n // Find the end of the quoted literal text.\n this.bump();\n var apostrophePosition = this.clonePosition();\n if (!this.bumpUntil(\"'\")) {\n return this.error(ErrorKind.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE, createLocation(apostrophePosition, this.clonePosition()));\n }\n this.bump();\n break;\n }\n case 123 /* `{` */: {\n nestedBraces += 1;\n this.bump();\n break;\n }\n case 125 /* `}` */: {\n if (nestedBraces > 0) {\n nestedBraces -= 1;\n }\n else {\n return {\n val: this.message.slice(startPosition.offset, this.offset()),\n err: null,\n };\n }\n break;\n }\n default:\n this.bump();\n break;\n }\n }\n return {\n val: this.message.slice(startPosition.offset, this.offset()),\n err: null,\n };\n };\n Parser.prototype.parseNumberSkeletonFromString = function (skeleton, location) {\n var tokens = [];\n try {\n tokens = parseNumberSkeletonFromString(skeleton);\n }\n catch (e) {\n return this.error(ErrorKind.INVALID_NUMBER_SKELETON, location);\n }\n return {\n val: {\n type: SKELETON_TYPE.number,\n tokens: tokens,\n location: location,\n parsedOptions: this.shouldParseSkeletons\n ? parseNumberSkeleton(tokens)\n : {},\n },\n err: null,\n };\n };\n /**\n * @param nesting_level The current nesting level of messages.\n * This can be positive when parsing message fragment in select or plural argument options.\n * @param parent_arg_type The parent argument's type.\n * @param parsed_first_identifier If provided, this is the first identifier-like selector of\n * the argument. It is a by-product of a previous parsing attempt.\n * @param expecting_close_tag If true, this message is directly or indirectly nested inside\n * between a pair of opening and closing tags. The nested message will not parse beyond\n * the closing tag boundary.\n */\n Parser.prototype.tryParsePluralOrSelectOptions = function (nestingLevel, parentArgType, expectCloseTag, parsedFirstIdentifier) {\n var _a;\n var hasOtherClause = false;\n var options = [];\n var parsedSelectors = new Set();\n var selector = parsedFirstIdentifier.value, selectorLocation = parsedFirstIdentifier.location;\n // Parse:\n // one {one apple}\n // ^--^\n while (true) {\n if (selector.length === 0) {\n var startPosition = this.clonePosition();\n if (parentArgType !== 'select' && this.bumpIf('=')) {\n // Try parse `={number}` selector\n var result = this.tryParseDecimalInteger(ErrorKind.EXPECT_PLURAL_ARGUMENT_SELECTOR, ErrorKind.INVALID_PLURAL_ARGUMENT_SELECTOR);\n if (result.err) {\n return result;\n }\n selectorLocation = createLocation(startPosition, this.clonePosition());\n selector = this.message.slice(startPosition.offset, this.offset());\n }\n else {\n break;\n }\n }\n // Duplicate selector clauses\n if (parsedSelectors.has(selector)) {\n return this.error(parentArgType === 'select'\n ? ErrorKind.DUPLICATE_SELECT_ARGUMENT_SELECTOR\n : ErrorKind.DUPLICATE_PLURAL_ARGUMENT_SELECTOR, selectorLocation);\n }\n if (selector === 'other') {\n hasOtherClause = true;\n }\n // Parse:\n // one {one apple}\n // ^----------^\n this.bumpSpace();\n var openingBracePosition = this.clonePosition();\n if (!this.bumpIf('{')) {\n return this.error(parentArgType === 'select'\n ? ErrorKind.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT\n : ErrorKind.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT, createLocation(this.clonePosition(), this.clonePosition()));\n }\n var fragmentResult = this.parseMessage(nestingLevel + 1, parentArgType, expectCloseTag);\n if (fragmentResult.err) {\n return fragmentResult;\n }\n var argCloseResult = this.tryParseArgumentClose(openingBracePosition);\n if (argCloseResult.err) {\n return argCloseResult;\n }\n options.push([\n selector,\n {\n value: fragmentResult.val,\n location: createLocation(openingBracePosition, this.clonePosition()),\n },\n ]);\n // Keep track of the existing selectors\n parsedSelectors.add(selector);\n // Prep next selector clause.\n this.bumpSpace();\n (_a = this.parseIdentifierIfPossible(), selector = _a.value, selectorLocation = _a.location);\n }\n if (options.length === 0) {\n return this.error(parentArgType === 'select'\n ? ErrorKind.EXPECT_SELECT_ARGUMENT_SELECTOR\n : ErrorKind.EXPECT_PLURAL_ARGUMENT_SELECTOR, createLocation(this.clonePosition(), this.clonePosition()));\n }\n if (this.requiresOtherClause && !hasOtherClause) {\n return this.error(ErrorKind.MISSING_OTHER_CLAUSE, createLocation(this.clonePosition(), this.clonePosition()));\n }\n return { val: options, err: null };\n };\n Parser.prototype.tryParseDecimalInteger = function (expectNumberError, invalidNumberError) {\n var sign = 1;\n var startingPosition = this.clonePosition();\n if (this.bumpIf('+')) {\n }\n else if (this.bumpIf('-')) {\n sign = -1;\n }\n var hasDigits = false;\n var decimal = 0;\n while (!this.isEOF()) {\n var ch = this.char();\n if (ch >= 48 /* `0` */ && ch <= 57 /* `9` */) {\n hasDigits = true;\n decimal = decimal * 10 + (ch - 48);\n this.bump();\n }\n else {\n break;\n }\n }\n var location = createLocation(startingPosition, this.clonePosition());\n if (!hasDigits) {\n return this.error(expectNumberError, location);\n }\n decimal *= sign;\n if (!isSafeInteger(decimal)) {\n return this.error(invalidNumberError, location);\n }\n return { val: decimal, err: null };\n };\n Parser.prototype.offset = function () {\n return this.position.offset;\n };\n Parser.prototype.isEOF = function () {\n return this.offset() === this.message.length;\n };\n Parser.prototype.clonePosition = function () {\n // This is much faster than `Object.assign` or spread.\n return {\n offset: this.position.offset,\n line: this.position.line,\n column: this.position.column,\n };\n };\n /**\n * Return the code point at the current position of the parser.\n * Throws if the index is out of bound.\n */\n Parser.prototype.char = function () {\n var offset = this.position.offset;\n if (offset >= this.message.length) {\n throw Error('out of bound');\n }\n var code = codePointAt(this.message, offset);\n if (code === undefined) {\n throw Error(\"Offset \".concat(offset, \" is at invalid UTF-16 code unit boundary\"));\n }\n return code;\n };\n Parser.prototype.error = function (kind, location) {\n return {\n val: null,\n err: {\n kind: kind,\n message: this.message,\n location: location,\n },\n };\n };\n /** Bump the parser to the next UTF-16 code unit. */\n Parser.prototype.bump = function () {\n if (this.isEOF()) {\n return;\n }\n var code = this.char();\n if (code === 10 /* '\\n' */) {\n this.position.line += 1;\n this.position.column = 1;\n this.position.offset += 1;\n }\n else {\n this.position.column += 1;\n // 0 ~ 0x10000 -> unicode BMP, otherwise skip the surrogate pair.\n this.position.offset += code < 0x10000 ? 1 : 2;\n }\n };\n /**\n * If the substring starting at the current position of the parser has\n * the given prefix, then bump the parser to the character immediately\n * following the prefix and return true. Otherwise, don't bump the parser\n * and return false.\n */\n Parser.prototype.bumpIf = function (prefix) {\n if (startsWith(this.message, prefix, this.offset())) {\n for (var i = 0; i < prefix.length; i++) {\n this.bump();\n }\n return true;\n }\n return false;\n };\n /**\n * Bump the parser until the pattern character is found and return `true`.\n * Otherwise bump to the end of the file and return `false`.\n */\n Parser.prototype.bumpUntil = function (pattern) {\n var currentOffset = this.offset();\n var index = this.message.indexOf(pattern, currentOffset);\n if (index >= 0) {\n this.bumpTo(index);\n return true;\n }\n else {\n this.bumpTo(this.message.length);\n return false;\n }\n };\n /**\n * Bump the parser to the target offset.\n * If target offset is beyond the end of the input, bump the parser to the end of the input.\n */\n Parser.prototype.bumpTo = function (targetOffset) {\n if (this.offset() > targetOffset) {\n throw Error(\"targetOffset \".concat(targetOffset, \" must be greater than or equal to the current offset \").concat(this.offset()));\n }\n targetOffset = Math.min(targetOffset, this.message.length);\n while (true) {\n var offset = this.offset();\n if (offset === targetOffset) {\n break;\n }\n if (offset > targetOffset) {\n throw Error(\"targetOffset \".concat(targetOffset, \" is at invalid UTF-16 code unit boundary\"));\n }\n this.bump();\n if (this.isEOF()) {\n break;\n }\n }\n };\n /** advance the parser through all whitespace to the next non-whitespace code unit. */\n Parser.prototype.bumpSpace = function () {\n while (!this.isEOF() && _isWhiteSpace(this.char())) {\n this.bump();\n }\n };\n /**\n * Peek at the *next* Unicode codepoint in the input without advancing the parser.\n * If the input has been exhausted, then this returns null.\n */\n Parser.prototype.peek = function () {\n if (this.isEOF()) {\n return null;\n }\n var code = this.char();\n var offset = this.offset();\n var nextCode = this.message.charCodeAt(offset + (code >= 0x10000 ? 2 : 1));\n return nextCode !== null && nextCode !== void 0 ? nextCode : null;\n };\n return Parser;\n}());\nexport { Parser };\n/**\n * This check if codepoint is alphabet (lower & uppercase)\n * @param codepoint\n * @returns\n */\nfunction _isAlpha(codepoint) {\n return ((codepoint >= 97 && codepoint <= 122) ||\n (codepoint >= 65 && codepoint <= 90));\n}\nfunction _isAlphaOrSlash(codepoint) {\n return _isAlpha(codepoint) || codepoint === 47; /* '/' */\n}\n/** See `parseTag` function docs. */\nfunction _isPotentialElementNameChar(c) {\n return (c === 45 /* '-' */ ||\n c === 46 /* '.' */ ||\n (c >= 48 && c <= 57) /* 0..9 */ ||\n c === 95 /* '_' */ ||\n (c >= 97 && c <= 122) /** a..z */ ||\n (c >= 65 && c <= 90) /* A..Z */ ||\n c == 0xb7 ||\n (c >= 0xc0 && c <= 0xd6) ||\n (c >= 0xd8 && c <= 0xf6) ||\n (c >= 0xf8 && c <= 0x37d) ||\n (c >= 0x37f && c <= 0x1fff) ||\n (c >= 0x200c && c <= 0x200d) ||\n (c >= 0x203f && c <= 0x2040) ||\n (c >= 0x2070 && c <= 0x218f) ||\n (c >= 0x2c00 && c <= 0x2fef) ||\n (c >= 0x3001 && c <= 0xd7ff) ||\n (c >= 0xf900 && c <= 0xfdcf) ||\n (c >= 0xfdf0 && c <= 0xfffd) ||\n (c >= 0x10000 && c <= 0xeffff));\n}\n/**\n * Code point equivalent of regex `\\p{White_Space}`.\n * From: https://www.unicode.org/Public/UCD/latest/ucd/PropList.txt\n */\nfunction _isWhiteSpace(c) {\n return ((c >= 0x0009 && c <= 0x000d) ||\n c === 0x0020 ||\n c === 0x0085 ||\n (c >= 0x200e && c <= 0x200f) ||\n c === 0x2028 ||\n c === 0x2029);\n}\n/**\n * Code point equivalent of regex `\\p{Pattern_Syntax}`.\n * See https://www.unicode.org/Public/UCD/latest/ucd/PropList.txt\n */\nfunction _isPatternSyntax(c) {\n return ((c >= 0x0021 && c <= 0x0023) ||\n c === 0x0024 ||\n (c >= 0x0025 && c <= 0x0027) ||\n c === 0x0028 ||\n c === 0x0029 ||\n c === 0x002a ||\n c === 0x002b ||\n c === 0x002c ||\n c === 0x002d ||\n (c >= 0x002e && c <= 0x002f) ||\n (c >= 0x003a && c <= 0x003b) ||\n (c >= 0x003c && c <= 0x003e) ||\n (c >= 0x003f && c <= 0x0040) ||\n c === 0x005b ||\n c === 0x005c ||\n c === 0x005d ||\n c === 0x005e ||\n c === 0x0060 ||\n c === 0x007b ||\n c === 0x007c ||\n c === 0x007d ||\n c === 0x007e ||\n c === 0x00a1 ||\n (c >= 0x00a2 && c <= 0x00a5) ||\n c === 0x00a6 ||\n c === 0x00a7 ||\n c === 0x00a9 ||\n c === 0x00ab ||\n c === 0x00ac ||\n c === 0x00ae ||\n c === 0x00b0 ||\n c === 0x00b1 ||\n c === 0x00b6 ||\n c === 0x00bb ||\n c === 0x00bf ||\n c === 0x00d7 ||\n c === 0x00f7 ||\n (c >= 0x2010 && c <= 0x2015) ||\n (c >= 0x2016 && c <= 0x2017) ||\n c === 0x2018 ||\n c === 0x2019 ||\n c === 0x201a ||\n (c >= 0x201b && c <= 0x201c) ||\n c === 0x201d ||\n c === 0x201e ||\n c === 0x201f ||\n (c >= 0x2020 && c <= 0x2027) ||\n (c >= 0x2030 && c <= 0x2038) ||\n c === 0x2039 ||\n c === 0x203a ||\n (c >= 0x203b && c <= 0x203e) ||\n (c >= 0x2041 && c <= 0x2043) ||\n c === 0x2044 ||\n c === 0x2045 ||\n c === 0x2046 ||\n (c >= 0x2047 && c <= 0x2051) ||\n c === 0x2052 ||\n c === 0x2053 ||\n (c >= 0x2055 && c <= 0x205e) ||\n (c >= 0x2190 && c <= 0x2194) ||\n (c >= 0x2195 && c <= 0x2199) ||\n (c >= 0x219a && c <= 0x219b) ||\n (c >= 0x219c && c <= 0x219f) ||\n c === 0x21a0 ||\n (c >= 0x21a1 && c <= 0x21a2) ||\n c === 0x21a3 ||\n (c >= 0x21a4 && c <= 0x21a5) ||\n c === 0x21a6 ||\n (c >= 0x21a7 && c <= 0x21ad) ||\n c === 0x21ae ||\n (c >= 0x21af && c <= 0x21cd) ||\n (c >= 0x21ce && c <= 0x21cf) ||\n (c >= 0x21d0 && c <= 0x21d1) ||\n c === 0x21d2 ||\n c === 0x21d3 ||\n c === 0x21d4 ||\n (c >= 0x21d5 && c <= 0x21f3) ||\n (c >= 0x21f4 && c <= 0x22ff) ||\n (c >= 0x2300 && c <= 0x2307) ||\n c === 0x2308 ||\n c === 0x2309 ||\n c === 0x230a ||\n c === 0x230b ||\n (c >= 0x230c && c <= 0x231f) ||\n (c >= 0x2320 && c <= 0x2321) ||\n (c >= 0x2322 && c <= 0x2328) ||\n c === 0x2329 ||\n c === 0x232a ||\n (c >= 0x232b && c <= 0x237b) ||\n c === 0x237c ||\n (c >= 0x237d && c <= 0x239a) ||\n (c >= 0x239b && c <= 0x23b3) ||\n (c >= 0x23b4 && c <= 0x23db) ||\n (c >= 0x23dc && c <= 0x23e1) ||\n (c >= 0x23e2 && c <= 0x2426) ||\n (c >= 0x2427 && c <= 0x243f) ||\n (c >= 0x2440 && c <= 0x244a) ||\n (c >= 0x244b && c <= 0x245f) ||\n (c >= 0x2500 && c <= 0x25b6) ||\n c === 0x25b7 ||\n (c >= 0x25b8 && c <= 0x25c0) ||\n c === 0x25c1 ||\n (c >= 0x25c2 && c <= 0x25f7) ||\n (c >= 0x25f8 && c <= 0x25ff) ||\n (c >= 0x2600 && c <= 0x266e) ||\n c === 0x266f ||\n (c >= 0x2670 && c <= 0x2767) ||\n c === 0x2768 ||\n c === 0x2769 ||\n c === 0x276a ||\n c === 0x276b ||\n c === 0x276c ||\n c === 0x276d ||\n c === 0x276e ||\n c === 0x276f ||\n c === 0x2770 ||\n c === 0x2771 ||\n c === 0x2772 ||\n c === 0x2773 ||\n c === 0x2774 ||\n c === 0x2775 ||\n (c >= 0x2794 && c <= 0x27bf) ||\n (c >= 0x27c0 && c <= 0x27c4) ||\n c === 0x27c5 ||\n c === 0x27c6 ||\n (c >= 0x27c7 && c <= 0x27e5) ||\n c === 0x27e6 ||\n c === 0x27e7 ||\n c === 0x27e8 ||\n c === 0x27e9 ||\n c === 0x27ea ||\n c === 0x27eb ||\n c === 0x27ec ||\n c === 0x27ed ||\n c === 0x27ee ||\n c === 0x27ef ||\n (c >= 0x27f0 && c <= 0x27ff) ||\n (c >= 0x2800 && c <= 0x28ff) ||\n (c >= 0x2900 && c <= 0x2982) ||\n c === 0x2983 ||\n c === 0x2984 ||\n c === 0x2985 ||\n c === 0x2986 ||\n c === 0x2987 ||\n c === 0x2988 ||\n c === 0x2989 ||\n c === 0x298a ||\n c === 0x298b ||\n c === 0x298c ||\n c === 0x298d ||\n c === 0x298e ||\n c === 0x298f ||\n c === 0x2990 ||\n c === 0x2991 ||\n c === 0x2992 ||\n c === 0x2993 ||\n c === 0x2994 ||\n c === 0x2995 ||\n c === 0x2996 ||\n c === 0x2997 ||\n c === 0x2998 ||\n (c >= 0x2999 && c <= 0x29d7) ||\n c === 0x29d8 ||\n c === 0x29d9 ||\n c === 0x29da ||\n c === 0x29db ||\n (c >= 0x29dc && c <= 0x29fb) ||\n c === 0x29fc ||\n c === 0x29fd ||\n (c >= 0x29fe && c <= 0x2aff) ||\n (c >= 0x2b00 && c <= 0x2b2f) ||\n (c >= 0x2b30 && c <= 0x2b44) ||\n (c >= 0x2b45 && c <= 0x2b46) ||\n (c >= 0x2b47 && c <= 0x2b4c) ||\n (c >= 0x2b4d && c <= 0x2b73) ||\n (c >= 0x2b74 && c <= 0x2b75) ||\n (c >= 0x2b76 && c <= 0x2b95) ||\n c === 0x2b96 ||\n (c >= 0x2b97 && c <= 0x2bff) ||\n (c >= 0x2e00 && c <= 0x2e01) ||\n c === 0x2e02 ||\n c === 0x2e03 ||\n c === 0x2e04 ||\n c === 0x2e05 ||\n (c >= 0x2e06 && c <= 0x2e08) ||\n c === 0x2e09 ||\n c === 0x2e0a ||\n c === 0x2e0b ||\n c === 0x2e0c ||\n c === 0x2e0d ||\n (c >= 0x2e0e && c <= 0x2e16) ||\n c === 0x2e17 ||\n (c >= 0x2e18 && c <= 0x2e19) ||\n c === 0x2e1a ||\n c === 0x2e1b ||\n c === 0x2e1c ||\n c === 0x2e1d ||\n (c >= 0x2e1e && c <= 0x2e1f) ||\n c === 0x2e20 ||\n c === 0x2e21 ||\n c === 0x2e22 ||\n c === 0x2e23 ||\n c === 0x2e24 ||\n c === 0x2e25 ||\n c === 0x2e26 ||\n c === 0x2e27 ||\n c === 0x2e28 ||\n c === 0x2e29 ||\n (c >= 0x2e2a && c <= 0x2e2e) ||\n c === 0x2e2f ||\n (c >= 0x2e30 && c <= 0x2e39) ||\n (c >= 0x2e3a && c <= 0x2e3b) ||\n (c >= 0x2e3c && c <= 0x2e3f) ||\n c === 0x2e40 ||\n c === 0x2e41 ||\n c === 0x2e42 ||\n (c >= 0x2e43 && c <= 0x2e4f) ||\n (c >= 0x2e50 && c <= 0x2e51) ||\n c === 0x2e52 ||\n (c >= 0x2e53 && c <= 0x2e7f) ||\n (c >= 0x3001 && c <= 0x3003) ||\n c === 0x3008 ||\n c === 0x3009 ||\n c === 0x300a ||\n c === 0x300b ||\n c === 0x300c ||\n c === 0x300d ||\n c === 0x300e ||\n c === 0x300f ||\n c === 0x3010 ||\n c === 0x3011 ||\n (c >= 0x3012 && c <= 0x3013) ||\n c === 0x3014 ||\n c === 0x3015 ||\n c === 0x3016 ||\n c === 0x3017 ||\n c === 0x3018 ||\n c === 0x3019 ||\n c === 0x301a ||\n c === 0x301b ||\n c === 0x301c ||\n c === 0x301d ||\n (c >= 0x301e && c <= 0x301f) ||\n c === 0x3020 ||\n c === 0x3030 ||\n c === 0xfd3e ||\n c === 0xfd3f ||\n (c >= 0xfe45 && c <= 0xfe46));\n}\n","import { __assign } from \"tslib\";\nimport { ErrorKind } from './error';\nimport { Parser } from './parser';\nimport { isDateElement, isDateTimeSkeleton, isNumberElement, isNumberSkeleton, isPluralElement, isSelectElement, isTagElement, isTimeElement, } from './types';\nfunction pruneLocation(els) {\n els.forEach(function (el) {\n delete el.location;\n if (isSelectElement(el) || isPluralElement(el)) {\n for (var k in el.options) {\n delete el.options[k].location;\n pruneLocation(el.options[k].value);\n }\n }\n else if (isNumberElement(el) && isNumberSkeleton(el.style)) {\n delete el.style.location;\n }\n else if ((isDateElement(el) || isTimeElement(el)) &&\n isDateTimeSkeleton(el.style)) {\n delete el.style.location;\n }\n else if (isTagElement(el)) {\n pruneLocation(el.children);\n }\n });\n}\nexport function parse(message, opts) {\n if (opts === void 0) { opts = {}; }\n opts = __assign({ shouldParseSkeletons: true, requiresOtherClause: true }, opts);\n var result = new Parser(message, opts).parse();\n if (result.err) {\n var error = SyntaxError(ErrorKind[result.err.kind]);\n // @ts-expect-error Assign to error object\n error.location = result.err.location;\n // @ts-expect-error Assign to error object\n error.originalMessage = result.err.message;\n throw error;\n }\n if (!(opts === null || opts === void 0 ? void 0 : opts.captureLocation)) {\n pruneLocation(result.val);\n }\n return result.val;\n}\nexport * from './types';\n","//\n// Main\n//\nexport default function memoize(fn, options) {\n var cache = options && options.cache ? options.cache : cacheDefault;\n var serializer = options && options.serializer ? options.serializer : serializerDefault;\n var strategy = options && options.strategy ? options.strategy : strategyDefault;\n return strategy(fn, {\n cache: cache,\n serializer: serializer,\n });\n}\n//\n// Strategy\n//\nfunction isPrimitive(value) {\n return (value == null || typeof value === 'number' || typeof value === 'boolean'); // || typeof value === \"string\" 'unsafe' primitive for our needs\n}\nfunction monadic(fn, cache, serializer, arg) {\n var cacheKey = isPrimitive(arg) ? arg : serializer(arg);\n var computedValue = cache.get(cacheKey);\n if (typeof computedValue === 'undefined') {\n computedValue = fn.call(this, arg);\n cache.set(cacheKey, computedValue);\n }\n return computedValue;\n}\nfunction variadic(fn, cache, serializer) {\n var args = Array.prototype.slice.call(arguments, 3);\n var cacheKey = serializer(args);\n var computedValue = cache.get(cacheKey);\n if (typeof computedValue === 'undefined') {\n computedValue = fn.apply(this, args);\n cache.set(cacheKey, computedValue);\n }\n return computedValue;\n}\nfunction assemble(fn, context, strategy, cache, serialize) {\n return strategy.bind(context, fn, cache, serialize);\n}\nfunction strategyDefault(fn, options) {\n var strategy = fn.length === 1 ? monadic : variadic;\n return assemble(fn, this, strategy, options.cache.create(), options.serializer);\n}\nfunction strategyVariadic(fn, options) {\n return assemble(fn, this, variadic, options.cache.create(), options.serializer);\n}\nfunction strategyMonadic(fn, options) {\n return assemble(fn, this, monadic, options.cache.create(), options.serializer);\n}\n//\n// Serializer\n//\nvar serializerDefault = function () {\n return JSON.stringify(arguments);\n};\n//\n// Cache\n//\nfunction ObjectWithoutPrototypeCache() {\n this.cache = Object.create(null);\n}\nObjectWithoutPrototypeCache.prototype.get = function (key) {\n return this.cache[key];\n};\nObjectWithoutPrototypeCache.prototype.set = function (key, value) {\n this.cache[key] = value;\n};\nvar cacheDefault = {\n create: function create() {\n // @ts-ignore\n return new ObjectWithoutPrototypeCache();\n },\n};\nexport var strategies = {\n variadic: strategyVariadic,\n monadic: strategyMonadic,\n};\n","import { __extends } from \"tslib\";\nexport var ErrorCode;\n(function (ErrorCode) {\n // When we have a placeholder but no value to format\n ErrorCode[\"MISSING_VALUE\"] = \"MISSING_VALUE\";\n // When value supplied is invalid\n ErrorCode[\"INVALID_VALUE\"] = \"INVALID_VALUE\";\n // When we need specific Intl API but it's not available\n ErrorCode[\"MISSING_INTL_API\"] = \"MISSING_INTL_API\";\n})(ErrorCode || (ErrorCode = {}));\nvar FormatError = /** @class */ (function (_super) {\n __extends(FormatError, _super);\n function FormatError(msg, code, originalMessage) {\n var _this = _super.call(this, msg) || this;\n _this.code = code;\n _this.originalMessage = originalMessage;\n return _this;\n }\n FormatError.prototype.toString = function () {\n return \"[formatjs Error: \".concat(this.code, \"] \").concat(this.message);\n };\n return FormatError;\n}(Error));\nexport { FormatError };\nvar InvalidValueError = /** @class */ (function (_super) {\n __extends(InvalidValueError, _super);\n function InvalidValueError(variableId, value, options, originalMessage) {\n return _super.call(this, \"Invalid values for \\\"\".concat(variableId, \"\\\": \\\"\").concat(value, \"\\\". Options are \\\"\").concat(Object.keys(options).join('\", \"'), \"\\\"\"), ErrorCode.INVALID_VALUE, originalMessage) || this;\n }\n return InvalidValueError;\n}(FormatError));\nexport { InvalidValueError };\nvar InvalidValueTypeError = /** @class */ (function (_super) {\n __extends(InvalidValueTypeError, _super);\n function InvalidValueTypeError(value, type, originalMessage) {\n return _super.call(this, \"Value for \\\"\".concat(value, \"\\\" must be of type \").concat(type), ErrorCode.INVALID_VALUE, originalMessage) || this;\n }\n return InvalidValueTypeError;\n}(FormatError));\nexport { InvalidValueTypeError };\nvar MissingValueError = /** @class */ (function (_super) {\n __extends(MissingValueError, _super);\n function MissingValueError(variableId, originalMessage) {\n return _super.call(this, \"The intl string context variable \\\"\".concat(variableId, \"\\\" was not provided to the string \\\"\").concat(originalMessage, \"\\\"\"), ErrorCode.MISSING_VALUE, originalMessage) || this;\n }\n return MissingValueError;\n}(FormatError));\nexport { MissingValueError };\n","import { isArgumentElement, isDateElement, isDateTimeSkeleton, isLiteralElement, isNumberElement, isNumberSkeleton, isPluralElement, isPoundElement, isSelectElement, isTimeElement, isTagElement, } from '@formatjs/icu-messageformat-parser';\nimport { MissingValueError, InvalidValueError, ErrorCode, FormatError, InvalidValueTypeError, } from './error';\nexport var PART_TYPE;\n(function (PART_TYPE) {\n PART_TYPE[PART_TYPE[\"literal\"] = 0] = \"literal\";\n PART_TYPE[PART_TYPE[\"object\"] = 1] = \"object\";\n})(PART_TYPE || (PART_TYPE = {}));\nfunction mergeLiteral(parts) {\n if (parts.length < 2) {\n return parts;\n }\n return parts.reduce(function (all, part) {\n var lastPart = all[all.length - 1];\n if (!lastPart ||\n lastPart.type !== PART_TYPE.literal ||\n part.type !== PART_TYPE.literal) {\n all.push(part);\n }\n else {\n lastPart.value += part.value;\n }\n return all;\n }, []);\n}\nexport function isFormatXMLElementFn(el) {\n return typeof el === 'function';\n}\n// TODO(skeleton): add skeleton support\nexport function formatToParts(els, locales, formatters, formats, values, currentPluralValue, \n// For debugging\noriginalMessage) {\n // Hot path for straight simple msg translations\n if (els.length === 1 && isLiteralElement(els[0])) {\n return [\n {\n type: PART_TYPE.literal,\n value: els[0].value,\n },\n ];\n }\n var result = [];\n for (var _i = 0, els_1 = els; _i < els_1.length; _i++) {\n var el = els_1[_i];\n // Exit early for string parts.\n if (isLiteralElement(el)) {\n result.push({\n type: PART_TYPE.literal,\n value: el.value,\n });\n continue;\n }\n // TODO: should this part be literal type?\n // Replace `#` in plural rules with the actual numeric value.\n if (isPoundElement(el)) {\n if (typeof currentPluralValue === 'number') {\n result.push({\n type: PART_TYPE.literal,\n value: formatters.getNumberFormat(locales).format(currentPluralValue),\n });\n }\n continue;\n }\n var varName = el.value;\n // Enforce that all required values are provided by the caller.\n if (!(values && varName in values)) {\n throw new MissingValueError(varName, originalMessage);\n }\n var value = values[varName];\n if (isArgumentElement(el)) {\n if (!value || typeof value === 'string' || typeof value === 'number') {\n value =\n typeof value === 'string' || typeof value === 'number'\n ? String(value)\n : '';\n }\n result.push({\n type: typeof value === 'string' ? PART_TYPE.literal : PART_TYPE.object,\n value: value,\n });\n continue;\n }\n // Recursively format plural and select parts' option — which can be a\n // nested pattern structure. The choosing of the option to use is\n // abstracted-by and delegated-to the part helper object.\n if (isDateElement(el)) {\n var style = typeof el.style === 'string'\n ? formats.date[el.style]\n : isDateTimeSkeleton(el.style)\n ? el.style.parsedOptions\n : undefined;\n result.push({\n type: PART_TYPE.literal,\n value: formatters\n .getDateTimeFormat(locales, style)\n .format(value),\n });\n continue;\n }\n if (isTimeElement(el)) {\n var style = typeof el.style === 'string'\n ? formats.time[el.style]\n : isDateTimeSkeleton(el.style)\n ? el.style.parsedOptions\n : formats.time.medium;\n result.push({\n type: PART_TYPE.literal,\n value: formatters\n .getDateTimeFormat(locales, style)\n .format(value),\n });\n continue;\n }\n if (isNumberElement(el)) {\n var style = typeof el.style === 'string'\n ? formats.number[el.style]\n : isNumberSkeleton(el.style)\n ? el.style.parsedOptions\n : undefined;\n if (style && style.scale) {\n value =\n value *\n (style.scale || 1);\n }\n result.push({\n type: PART_TYPE.literal,\n value: formatters\n .getNumberFormat(locales, style)\n .format(value),\n });\n continue;\n }\n if (isTagElement(el)) {\n var children = el.children, value_1 = el.value;\n var formatFn = values[value_1];\n if (!isFormatXMLElementFn(formatFn)) {\n throw new InvalidValueTypeError(value_1, 'function', originalMessage);\n }\n var parts = formatToParts(children, locales, formatters, formats, values, currentPluralValue);\n var chunks = formatFn(parts.map(function (p) { return p.value; }));\n if (!Array.isArray(chunks)) {\n chunks = [chunks];\n }\n result.push.apply(result, chunks.map(function (c) {\n return {\n type: typeof c === 'string' ? PART_TYPE.literal : PART_TYPE.object,\n value: c,\n };\n }));\n }\n if (isSelectElement(el)) {\n var opt = el.options[value] || el.options.other;\n if (!opt) {\n throw new InvalidValueError(el.value, value, Object.keys(el.options), originalMessage);\n }\n result.push.apply(result, formatToParts(opt.value, locales, formatters, formats, values));\n continue;\n }\n if (isPluralElement(el)) {\n var opt = el.options[\"=\".concat(value)];\n if (!opt) {\n if (!Intl.PluralRules) {\n throw new FormatError(\"Intl.PluralRules is not available in this environment.\\nTry polyfilling it using \\\"@formatjs/intl-pluralrules\\\"\\n\", ErrorCode.MISSING_INTL_API, originalMessage);\n }\n var rule = formatters\n .getPluralRules(locales, { type: el.pluralType })\n .select(value - (el.offset || 0));\n opt = el.options[rule] || el.options.other;\n }\n if (!opt) {\n throw new InvalidValueError(el.value, value, Object.keys(el.options), originalMessage);\n }\n result.push.apply(result, formatToParts(opt.value, locales, formatters, formats, values, value - (el.offset || 0)));\n continue;\n }\n }\n return mergeLiteral(result);\n}\n","/*\nCopyright (c) 2014, Yahoo! Inc. All rights reserved.\nCopyrights licensed under the New BSD License.\nSee the accompanying LICENSE file for terms.\n*/\nimport { __assign, __spreadArray } from \"tslib\";\nimport { parse } from '@formatjs/icu-messageformat-parser';\nimport memoize, { strategies } from '@formatjs/fast-memoize';\nimport { formatToParts, PART_TYPE, } from './formatters';\n// -- MessageFormat --------------------------------------------------------\nfunction mergeConfig(c1, c2) {\n if (!c2) {\n return c1;\n }\n return __assign(__assign(__assign({}, (c1 || {})), (c2 || {})), Object.keys(c1).reduce(function (all, k) {\n all[k] = __assign(__assign({}, c1[k]), (c2[k] || {}));\n return all;\n }, {}));\n}\nfunction mergeConfigs(defaultConfig, configs) {\n if (!configs) {\n return defaultConfig;\n }\n return Object.keys(defaultConfig).reduce(function (all, k) {\n all[k] = mergeConfig(defaultConfig[k], configs[k]);\n return all;\n }, __assign({}, defaultConfig));\n}\nfunction createFastMemoizeCache(store) {\n return {\n create: function () {\n return {\n get: function (key) {\n return store[key];\n },\n set: function (key, value) {\n store[key] = value;\n },\n };\n },\n };\n}\nfunction createDefaultFormatters(cache) {\n if (cache === void 0) { cache = {\n number: {},\n dateTime: {},\n pluralRules: {},\n }; }\n return {\n getNumberFormat: memoize(function () {\n var _a;\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n return new ((_a = Intl.NumberFormat).bind.apply(_a, __spreadArray([void 0], args, false)))();\n }, {\n cache: createFastMemoizeCache(cache.number),\n strategy: strategies.variadic,\n }),\n getDateTimeFormat: memoize(function () {\n var _a;\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n return new ((_a = Intl.DateTimeFormat).bind.apply(_a, __spreadArray([void 0], args, false)))();\n }, {\n cache: createFastMemoizeCache(cache.dateTime),\n strategy: strategies.variadic,\n }),\n getPluralRules: memoize(function () {\n var _a;\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n return new ((_a = Intl.PluralRules).bind.apply(_a, __spreadArray([void 0], args, false)))();\n }, {\n cache: createFastMemoizeCache(cache.pluralRules),\n strategy: strategies.variadic,\n }),\n };\n}\nvar IntlMessageFormat = /** @class */ (function () {\n function IntlMessageFormat(message, locales, overrideFormats, opts) {\n var _this = this;\n if (locales === void 0) { locales = IntlMessageFormat.defaultLocale; }\n this.formatterCache = {\n number: {},\n dateTime: {},\n pluralRules: {},\n };\n this.format = function (values) {\n var parts = _this.formatToParts(values);\n // Hot path for straight simple msg translations\n if (parts.length === 1) {\n return parts[0].value;\n }\n var result = parts.reduce(function (all, part) {\n if (!all.length ||\n part.type !== PART_TYPE.literal ||\n typeof all[all.length - 1] !== 'string') {\n all.push(part.value);\n }\n else {\n all[all.length - 1] += part.value;\n }\n return all;\n }, []);\n if (result.length <= 1) {\n return result[0] || '';\n }\n return result;\n };\n this.formatToParts = function (values) {\n return formatToParts(_this.ast, _this.locales, _this.formatters, _this.formats, values, undefined, _this.message);\n };\n this.resolvedOptions = function () { return ({\n locale: _this.resolvedLocale.toString(),\n }); };\n this.getAst = function () { return _this.ast; };\n // Defined first because it's used to build the format pattern.\n this.locales = locales;\n this.resolvedLocale = IntlMessageFormat.resolveLocale(locales);\n if (typeof message === 'string') {\n this.message = message;\n if (!IntlMessageFormat.__parse) {\n throw new TypeError('IntlMessageFormat.__parse must be set to process `message` of type `string`');\n }\n // Parse string messages into an AST.\n this.ast = IntlMessageFormat.__parse(message, {\n ignoreTag: opts === null || opts === void 0 ? void 0 : opts.ignoreTag,\n locale: this.resolvedLocale,\n });\n }\n else {\n this.ast = message;\n }\n if (!Array.isArray(this.ast)) {\n throw new TypeError('A message must be provided as a String or AST.');\n }\n // Creates a new object with the specified `formats` merged with the default\n // formats.\n this.formats = mergeConfigs(IntlMessageFormat.formats, overrideFormats);\n this.formatters =\n (opts && opts.formatters) || createDefaultFormatters(this.formatterCache);\n }\n Object.defineProperty(IntlMessageFormat, \"defaultLocale\", {\n get: function () {\n if (!IntlMessageFormat.memoizedDefaultLocale) {\n IntlMessageFormat.memoizedDefaultLocale =\n new Intl.NumberFormat().resolvedOptions().locale;\n }\n return IntlMessageFormat.memoizedDefaultLocale;\n },\n enumerable: false,\n configurable: true\n });\n IntlMessageFormat.memoizedDefaultLocale = null;\n IntlMessageFormat.resolveLocale = function (locales) {\n var supportedLocales = Intl.NumberFormat.supportedLocalesOf(locales);\n if (supportedLocales.length > 0) {\n return new Intl.Locale(supportedLocales[0]);\n }\n return new Intl.Locale(typeof locales === 'string' ? locales : locales[0]);\n };\n IntlMessageFormat.__parse = parse;\n // Default format options used as the prototype of the `formats` provided to the\n // constructor. These are used when constructing the internal Intl.NumberFormat\n // and Intl.DateTimeFormat instances.\n IntlMessageFormat.formats = {\n number: {\n integer: {\n maximumFractionDigits: 0,\n },\n currency: {\n style: 'currency',\n },\n percent: {\n style: 'percent',\n },\n },\n date: {\n short: {\n month: 'numeric',\n day: 'numeric',\n year: '2-digit',\n },\n medium: {\n month: 'short',\n day: 'numeric',\n year: 'numeric',\n },\n long: {\n month: 'long',\n day: 'numeric',\n year: 'numeric',\n },\n full: {\n weekday: 'long',\n month: 'long',\n day: 'numeric',\n year: 'numeric',\n },\n },\n time: {\n short: {\n hour: 'numeric',\n minute: 'numeric',\n },\n medium: {\n hour: 'numeric',\n minute: 'numeric',\n second: 'numeric',\n },\n long: {\n hour: 'numeric',\n minute: 'numeric',\n second: 'numeric',\n timeZoneName: 'short',\n },\n full: {\n hour: 'numeric',\n minute: 'numeric',\n second: 'numeric',\n timeZoneName: 'short',\n },\n },\n };\n return IntlMessageFormat;\n}());\nexport { IntlMessageFormat };\n","import { writable, derived } from 'svelte/store';\nimport deepmerge from 'deepmerge';\nimport { IntlMessageFormat } from 'intl-messageformat';\n\nfunction delve(obj, fullKey) {\n if (fullKey == null)\n return void 0;\n if (fullKey in obj) {\n return obj[fullKey];\n }\n const keys = fullKey.split(\".\");\n let result = obj;\n for (let p = 0; p < keys.length; p++) {\n if (typeof result === \"object\") {\n if (p > 0) {\n const partialKey = keys.slice(p, keys.length).join(\".\");\n if (partialKey in result) {\n result = result[partialKey];\n break;\n }\n }\n result = result[keys[p]];\n } else {\n result = void 0;\n }\n }\n return result;\n}\n\nconst lookupCache = {};\nconst addToCache = (path, locale, message) => {\n if (!message)\n return message;\n if (!(locale in lookupCache))\n lookupCache[locale] = {};\n if (!(path in lookupCache[locale]))\n lookupCache[locale][path] = message;\n return message;\n};\nconst lookup = (path, refLocale) => {\n if (refLocale == null)\n return void 0;\n if (refLocale in lookupCache && path in lookupCache[refLocale]) {\n return lookupCache[refLocale][path];\n }\n const locales = getPossibleLocales(refLocale);\n for (let i = 0; i < locales.length; i++) {\n const locale = locales[i];\n const message = getMessageFromDictionary(locale, path);\n if (message) {\n return addToCache(path, refLocale, message);\n }\n }\n return void 0;\n};\n\nlet dictionary;\nconst $dictionary = writable({});\nfunction getLocaleDictionary(locale) {\n return dictionary[locale] || null;\n}\nfunction hasLocaleDictionary(locale) {\n return locale in dictionary;\n}\nfunction getMessageFromDictionary(locale, id) {\n if (!hasLocaleDictionary(locale)) {\n return null;\n }\n const localeDictionary = getLocaleDictionary(locale);\n const match = delve(localeDictionary, id);\n return match;\n}\nfunction getClosestAvailableLocale(refLocale) {\n if (refLocale == null)\n return void 0;\n const relatedLocales = getPossibleLocales(refLocale);\n for (let i = 0; i < relatedLocales.length; i++) {\n const locale = relatedLocales[i];\n if (hasLocaleDictionary(locale)) {\n return locale;\n }\n }\n return void 0;\n}\nfunction addMessages(locale, ...partials) {\n delete lookupCache[locale];\n $dictionary.update((d) => {\n d[locale] = deepmerge.all([d[locale] || {}, ...partials]);\n return d;\n });\n}\nconst $locales = derived(\n [$dictionary],\n ([dictionary2]) => Object.keys(dictionary2)\n);\n$dictionary.subscribe((newDictionary) => dictionary = newDictionary);\n\nconst queue = {};\nfunction createLocaleQueue(locale) {\n queue[locale] = /* @__PURE__ */ new Set();\n}\nfunction removeLoaderFromQueue(locale, loader) {\n queue[locale].delete(loader);\n if (queue[locale].size === 0) {\n delete queue[locale];\n }\n}\nfunction getLocaleQueue(locale) {\n return queue[locale];\n}\nfunction getLocalesQueues(locale) {\n return getPossibleLocales(locale).map((localeItem) => {\n const localeQueue = getLocaleQueue(localeItem);\n return [localeItem, localeQueue ? [...localeQueue] : []];\n }).filter(([, localeQueue]) => localeQueue.length > 0);\n}\nfunction hasLocaleQueue(locale) {\n if (locale == null)\n return false;\n return getPossibleLocales(locale).some(\n (localeQueue) => {\n var _a;\n return (_a = getLocaleQueue(localeQueue)) == null ? void 0 : _a.size;\n }\n );\n}\nfunction loadLocaleQueue(locale, localeQueue) {\n const allLoadersPromise = Promise.all(\n localeQueue.map((loader) => {\n removeLoaderFromQueue(locale, loader);\n return loader().then((partial) => partial.default || partial);\n })\n );\n return allLoadersPromise.then((partials) => addMessages(locale, ...partials));\n}\nconst activeFlushes = {};\nfunction flush(locale) {\n if (!hasLocaleQueue(locale)) {\n if (locale in activeFlushes) {\n return activeFlushes[locale];\n }\n return Promise.resolve();\n }\n const queues = getLocalesQueues(locale);\n activeFlushes[locale] = Promise.all(\n queues.map(\n ([localeName, localeQueue]) => loadLocaleQueue(localeName, localeQueue)\n )\n ).then(() => {\n if (hasLocaleQueue(locale)) {\n return flush(locale);\n }\n delete activeFlushes[locale];\n });\n return activeFlushes[locale];\n}\nfunction registerLocaleLoader(locale, loader) {\n if (!getLocaleQueue(locale))\n createLocaleQueue(locale);\n const localeQueue = getLocaleQueue(locale);\n if (getLocaleQueue(locale).has(loader))\n return;\n if (!hasLocaleDictionary(locale)) {\n $dictionary.update((d) => {\n d[locale] = {};\n return d;\n });\n }\n localeQueue.add(loader);\n}\n\nvar __getOwnPropSymbols$2 = Object.getOwnPropertySymbols;\nvar __hasOwnProp$2 = Object.prototype.hasOwnProperty;\nvar __propIsEnum$2 = Object.prototype.propertyIsEnumerable;\nvar __objRest$1 = (source, exclude) => {\n var target = {};\n for (var prop in source)\n if (__hasOwnProp$2.call(source, prop) && exclude.indexOf(prop) < 0)\n target[prop] = source[prop];\n if (source != null && __getOwnPropSymbols$2)\n for (var prop of __getOwnPropSymbols$2(source)) {\n if (exclude.indexOf(prop) < 0 && __propIsEnum$2.call(source, prop))\n target[prop] = source[prop];\n }\n return target;\n};\nconst defaultFormats = {\n number: {\n scientific: { notation: \"scientific\" },\n engineering: { notation: \"engineering\" },\n compactLong: { notation: \"compact\", compactDisplay: \"long\" },\n compactShort: { notation: \"compact\", compactDisplay: \"short\" }\n },\n date: {\n short: { month: \"numeric\", day: \"numeric\", year: \"2-digit\" },\n medium: { month: \"short\", day: \"numeric\", year: \"numeric\" },\n long: { month: \"long\", day: \"numeric\", year: \"numeric\" },\n full: { weekday: \"long\", month: \"long\", day: \"numeric\", year: \"numeric\" }\n },\n time: {\n short: { hour: \"numeric\", minute: \"numeric\" },\n medium: { hour: \"numeric\", minute: \"numeric\", second: \"numeric\" },\n long: {\n hour: \"numeric\",\n minute: \"numeric\",\n second: \"numeric\",\n timeZoneName: \"short\"\n },\n full: {\n hour: \"numeric\",\n minute: \"numeric\",\n second: \"numeric\",\n timeZoneName: \"short\"\n }\n }\n};\nfunction defaultMissingKeyHandler({ locale, id }) {\n console.warn(\n `[svelte-i18n] The message \"${id}\" was not found in \"${getPossibleLocales(\n locale\n ).join('\", \"')}\".${hasLocaleQueue(getCurrentLocale()) ? `\n\nNote: there are at least one loader still registered to this locale that wasn't executed.` : \"\"}`\n );\n}\nconst defaultOptions = {\n fallbackLocale: null,\n loadingDelay: 200,\n formats: defaultFormats,\n warnOnMissingMessages: true,\n handleMissingMessage: void 0,\n ignoreTag: true\n};\nconst options = defaultOptions;\nfunction getOptions() {\n return options;\n}\nfunction init(opts) {\n const _a = opts, { formats } = _a, rest = __objRest$1(_a, [\"formats\"]);\n let initialLocale = opts.fallbackLocale;\n if (opts.initialLocale) {\n try {\n if (IntlMessageFormat.resolveLocale(opts.initialLocale)) {\n initialLocale = opts.initialLocale;\n }\n } catch (e) {\n console.warn(\n `[svelte-i18n] The initial locale \"${opts.initialLocale}\" is not a valid locale.`\n );\n }\n }\n if (rest.warnOnMissingMessages) {\n delete rest.warnOnMissingMessages;\n if (rest.handleMissingMessage == null) {\n rest.handleMissingMessage = defaultMissingKeyHandler;\n } else {\n console.warn(\n '[svelte-i18n] The \"warnOnMissingMessages\" option is deprecated. Please use the \"handleMissingMessage\" option instead.'\n );\n }\n }\n Object.assign(options, rest, { initialLocale });\n if (formats) {\n if (\"number\" in formats) {\n Object.assign(options.formats.number, formats.number);\n }\n if (\"date\" in formats) {\n Object.assign(options.formats.date, formats.date);\n }\n if (\"time\" in formats) {\n Object.assign(options.formats.time, formats.time);\n }\n }\n return $locale.set(initialLocale);\n}\n\nconst $isLoading = writable(false);\n\nvar __defProp$1 = Object.defineProperty;\nvar __defProps = Object.defineProperties;\nvar __getOwnPropDescs = Object.getOwnPropertyDescriptors;\nvar __getOwnPropSymbols$1 = Object.getOwnPropertySymbols;\nvar __hasOwnProp$1 = Object.prototype.hasOwnProperty;\nvar __propIsEnum$1 = Object.prototype.propertyIsEnumerable;\nvar __defNormalProp$1 = (obj, key, value) => key in obj ? __defProp$1(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;\nvar __spreadValues$1 = (a, b) => {\n for (var prop in b || (b = {}))\n if (__hasOwnProp$1.call(b, prop))\n __defNormalProp$1(a, prop, b[prop]);\n if (__getOwnPropSymbols$1)\n for (var prop of __getOwnPropSymbols$1(b)) {\n if (__propIsEnum$1.call(b, prop))\n __defNormalProp$1(a, prop, b[prop]);\n }\n return a;\n};\nvar __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));\nlet current;\nconst internalLocale = writable(null);\nfunction getSubLocales(refLocale) {\n return refLocale.split(\"-\").map((_, i, arr) => arr.slice(0, i + 1).join(\"-\")).reverse();\n}\nfunction getPossibleLocales(refLocale, fallbackLocale = getOptions().fallbackLocale) {\n const locales = getSubLocales(refLocale);\n if (fallbackLocale) {\n return [.../* @__PURE__ */ new Set([...locales, ...getSubLocales(fallbackLocale)])];\n }\n return locales;\n}\nfunction getCurrentLocale() {\n return current != null ? current : void 0;\n}\ninternalLocale.subscribe((newLocale) => {\n current = newLocale != null ? newLocale : void 0;\n if (typeof window !== \"undefined\" && newLocale != null) {\n document.documentElement.setAttribute(\"lang\", newLocale);\n }\n});\nconst set = (newLocale) => {\n if (newLocale && getClosestAvailableLocale(newLocale) && hasLocaleQueue(newLocale)) {\n const { loadingDelay } = getOptions();\n let loadingTimer;\n if (typeof window !== \"undefined\" && getCurrentLocale() != null && loadingDelay) {\n loadingTimer = window.setTimeout(\n () => $isLoading.set(true),\n loadingDelay\n );\n } else {\n $isLoading.set(true);\n }\n return flush(newLocale).then(() => {\n internalLocale.set(newLocale);\n }).finally(() => {\n clearTimeout(loadingTimer);\n $isLoading.set(false);\n });\n }\n return internalLocale.set(newLocale);\n};\nconst $locale = __spreadProps(__spreadValues$1({}, internalLocale), {\n set\n});\n\nconst getFromQueryString = (queryString, key) => {\n const keyVal = queryString.split(\"&\").find((i) => i.indexOf(`${key}=`) === 0);\n if (keyVal) {\n return keyVal.split(\"=\").pop();\n }\n return null;\n};\nconst getFirstMatch = (base, pattern) => {\n const match = pattern.exec(base);\n if (!match)\n return null;\n return match[1] || null;\n};\nconst getLocaleFromHostname = (hostname) => {\n if (typeof window === \"undefined\")\n return null;\n return getFirstMatch(window.location.hostname, hostname);\n};\nconst getLocaleFromPathname = (pathname) => {\n if (typeof window === \"undefined\")\n return null;\n return getFirstMatch(window.location.pathname, pathname);\n};\nconst getLocaleFromNavigator = () => {\n if (typeof window === \"undefined\")\n return null;\n return window.navigator.language || window.navigator.languages[0];\n};\nconst getLocaleFromQueryString = (search) => {\n if (typeof window === \"undefined\")\n return null;\n return getFromQueryString(window.location.search.substr(1), search);\n};\nconst getLocaleFromHash = (hash) => {\n if (typeof window === \"undefined\")\n return null;\n return getFromQueryString(window.location.hash.substr(1), hash);\n};\n\nconst monadicMemoize = (fn) => {\n const cache = /* @__PURE__ */ Object.create(null);\n const memoizedFn = (arg) => {\n const cacheKey = JSON.stringify(arg);\n if (cacheKey in cache) {\n return cache[cacheKey];\n }\n return cache[cacheKey] = fn(arg);\n };\n return memoizedFn;\n};\n\nvar __defProp = Object.defineProperty;\nvar __getOwnPropSymbols = Object.getOwnPropertySymbols;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __propIsEnum = Object.prototype.propertyIsEnumerable;\nvar __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;\nvar __spreadValues = (a, b) => {\n for (var prop in b || (b = {}))\n if (__hasOwnProp.call(b, prop))\n __defNormalProp(a, prop, b[prop]);\n if (__getOwnPropSymbols)\n for (var prop of __getOwnPropSymbols(b)) {\n if (__propIsEnum.call(b, prop))\n __defNormalProp(a, prop, b[prop]);\n }\n return a;\n};\nvar __objRest = (source, exclude) => {\n var target = {};\n for (var prop in source)\n if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)\n target[prop] = source[prop];\n if (source != null && __getOwnPropSymbols)\n for (var prop of __getOwnPropSymbols(source)) {\n if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))\n target[prop] = source[prop];\n }\n return target;\n};\nconst getIntlFormatterOptions = (type, name) => {\n const { formats } = getOptions();\n if (type in formats && name in formats[type]) {\n return formats[type][name];\n }\n throw new Error(`[svelte-i18n] Unknown \"${name}\" ${type} format.`);\n};\nconst createNumberFormatter = monadicMemoize(\n (_a) => {\n var _b = _a, { locale, format } = _b, options = __objRest(_b, [\"locale\", \"format\"]);\n if (locale == null) {\n throw new Error('[svelte-i18n] A \"locale\" must be set to format numbers');\n }\n if (format) {\n options = getIntlFormatterOptions(\"number\", format);\n }\n return new Intl.NumberFormat(locale, options);\n }\n);\nconst createDateFormatter = monadicMemoize(\n (_c) => {\n var _d = _c, { locale, format } = _d, options = __objRest(_d, [\"locale\", \"format\"]);\n if (locale == null) {\n throw new Error('[svelte-i18n] A \"locale\" must be set to format dates');\n }\n if (format) {\n options = getIntlFormatterOptions(\"date\", format);\n } else if (Object.keys(options).length === 0) {\n options = getIntlFormatterOptions(\"date\", \"short\");\n }\n return new Intl.DateTimeFormat(locale, options);\n }\n);\nconst createTimeFormatter = monadicMemoize(\n (_e) => {\n var _f = _e, { locale, format } = _f, options = __objRest(_f, [\"locale\", \"format\"]);\n if (locale == null) {\n throw new Error(\n '[svelte-i18n] A \"locale\" must be set to format time values'\n );\n }\n if (format) {\n options = getIntlFormatterOptions(\"time\", format);\n } else if (Object.keys(options).length === 0) {\n options = getIntlFormatterOptions(\"time\", \"short\");\n }\n return new Intl.DateTimeFormat(locale, options);\n }\n);\nconst getNumberFormatter = (_g = {}) => {\n var _h = _g, {\n locale = getCurrentLocale()\n } = _h, args = __objRest(_h, [\n \"locale\"\n ]);\n return createNumberFormatter(__spreadValues({ locale }, args));\n};\nconst getDateFormatter = (_i = {}) => {\n var _j = _i, {\n locale = getCurrentLocale()\n } = _j, args = __objRest(_j, [\n \"locale\"\n ]);\n return createDateFormatter(__spreadValues({ locale }, args));\n};\nconst getTimeFormatter = (_k = {}) => {\n var _l = _k, {\n locale = getCurrentLocale()\n } = _l, args = __objRest(_l, [\n \"locale\"\n ]);\n return createTimeFormatter(__spreadValues({ locale }, args));\n};\nconst getMessageFormatter = monadicMemoize(\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n (message, locale = getCurrentLocale()) => new IntlMessageFormat(message, locale, getOptions().formats, {\n ignoreTag: getOptions().ignoreTag\n })\n);\n\nconst formatMessage = (id, options = {}) => {\n var _a, _b, _c, _d;\n let messageObj = options;\n if (typeof id === \"object\") {\n messageObj = id;\n id = messageObj.id;\n }\n const {\n values,\n locale = getCurrentLocale(),\n default: defaultValue\n } = messageObj;\n if (locale == null) {\n throw new Error(\n \"[svelte-i18n] Cannot format a message without first setting the initial locale.\"\n );\n }\n let message = lookup(id, locale);\n if (!message) {\n message = (_d = (_c = (_b = (_a = getOptions()).handleMissingMessage) == null ? void 0 : _b.call(_a, { locale, id, defaultValue })) != null ? _c : defaultValue) != null ? _d : id;\n } else if (typeof message !== \"string\") {\n console.warn(\n `[svelte-i18n] Message with id \"${id}\" must be of type \"string\", found: \"${typeof message}\". Gettin its value through the \"$format\" method is deprecated; use the \"json\" method instead.`\n );\n return message;\n }\n if (!values) {\n return message;\n }\n let result = message;\n try {\n result = getMessageFormatter(message, locale).format(values);\n } catch (e) {\n if (e instanceof Error) {\n console.warn(\n `[svelte-i18n] Message \"${id}\" has syntax error:`,\n e.message\n );\n }\n }\n return result;\n};\nconst formatTime = (t, options) => {\n return getTimeFormatter(options).format(t);\n};\nconst formatDate = (d, options) => {\n return getDateFormatter(options).format(d);\n};\nconst formatNumber = (n, options) => {\n return getNumberFormatter(options).format(n);\n};\nconst getJSON = (id, locale = getCurrentLocale()) => {\n return lookup(id, locale);\n};\nconst $format = derived([$locale, $dictionary], () => formatMessage);\nconst $formatTime = derived([$locale], () => formatTime);\nconst $formatDate = derived([$locale], () => formatDate);\nconst $formatNumber = derived([$locale], () => formatNumber);\nconst $getJSON = derived([$locale, $dictionary], () => getJSON);\n\nfunction unwrapFunctionStore(store) {\n let localReference;\n const cancel = store.subscribe((value) => localReference = value);\n const fn = (...args) => localReference(...args);\n fn.freeze = cancel;\n return fn;\n}\n\nfunction defineMessages(i) {\n return i;\n}\nfunction waitLocale(locale) {\n return flush(locale || getCurrentLocale() || getOptions().initialLocale);\n}\n\nexport { $format as _, addMessages, $formatDate as date, defineMessages, $dictionary as dictionary, $format as format, getDateFormatter, getLocaleFromHash, getLocaleFromHostname, getLocaleFromNavigator, getLocaleFromPathname, getLocaleFromQueryString, getMessageFormatter, getNumberFormatter, getTimeFormatter, init, $isLoading as isLoading, $getJSON as json, $locale as locale, $locales as locales, $formatNumber as number, registerLocaleLoader as register, $format as t, $formatTime as time, unwrapFunctionStore, waitLocale };\n","export const TRANSLATIONS = {\n \"en\": {\n \"wof\": {\n \"NoContent\": \"You don't have any lottery programs available now.\",\n \"NoNext\": \"You don't have any spins available. Please check <a href=\\\"javascript:void(0)\\\">Terms and Conditions</a>\",\n \"NoHistories\": \"No histories\",\n \"Program\": \"Program\",\n \"History\": \"History\",\n \"ActiveTickets\": \"Active Tickets\",\n \"ImplicitTickets\": \"Implicit Tickets\",\n \"RemainingTimes\": \"Remaining Times\",\n \"Retry\": \"Network is a bit busy now, please click OK to re-spin\",\n \"ShowNext\": \"The Wheel will be available on<br /> <strong>{startTime}</strong> <br />Please wait till it is open.\",\n \"DrawFailed\": \"The prize assignment may be failed, please contact customer support for more details\",\n \"Timeout\": \"Network is a bit busy now, please try again later.\",\n \"ErrorNetwork\": \"You are offline, please check your network settings\",\n \"ErrorJSON\": \"Unexpected Data Response, please contact customer support\",\n \"Congratulation\": \"Congratulations! You won a {prize}!\",\n \"OK\": \"OK\",\n \"Rewards\": \"Rewards\",\n \"Status\": \"Status\",\n \"Time\": \"Time\",\n \"Loss\": \"OOPs! You are close to a prize!\"\n }\n },\n \"hr\": {\n \"wof\": {\n \"NoContent\": \"Nemate nijedan dostupan lutrijski program.\",\n \"NoNext\": \"Nemate dostupnih okretaja. Molimo provjerite <a href=\\\"javascript:void(0)\\\">Uvjeti i odredbe</a>\",\n \"NoHistories\": \"Nema povijesti\",\n \"Program\": \"Program\",\n \"History\": \"Povijest\",\n \"ActiveTickets\": \"Aktivne Karte\",\n \"ImplicitTickets\": \"Implicitne Karte\",\n \"RemainingTimes\": \"Preostalo Vrijeme\",\n \"Retry\": \"Mreža je trenutno zauzeta, molimo kliknite OK za ponovno okretanje\",\n \"ShowNext\": \"Kolo će biti dostupno<br /> <strong>{startTime}</strong> <br />Molimo pričekajte da se otvori.\",\n \"DrawFailed\": \"Dodjela nagrada možda nije uspjela, molimo kontaktirajte korisničku podršku za više detalja\",\n \"Timeout\": \"Mreža je trenutno zauzeta, molimo pokušajte kasnije.\",\n \"ErrorNetwork\": \"Niste povezani, molimo provjerite postavke mreže\",\n \"ErrorJSON\": \"Neočekivan odgovor podataka, molimo kontaktirajte korisničku podršku\",\n \"Congratulation\": \"Čestitamo! Osvojili ste {prize}!\",\n \"OK\": \"OK\",\n \"Rewards\": \"Nagrade\",\n \"Status\": \"Status\",\n \"Time\": \"Vrijeme\",\n \"Loss\": \"OOPs! Blizu ste nagrade!\"\n }\n },\n \"zh\": {\n \"wof\": {\n \"NoContent\": \"You don't have any lottery programs available now.\",\n \"NoNext\": \"You don't have any spins available. Please check <a href=\\\"javascript:void(0)\\\">Terms and Conditions</a>\",\n \"NoHistories\": \"No histories\",\n \"Program\": \"Program\",\n \"History\": \"History\",\n \"ActiveTickets\": \"Active Tickets\",\n \"ImplicitTickets\": \"Implicit Tickets\",\n \"RemainingTimes\": \"Remaining Times\",\n \"Retry\": \"Network is a bit busy now, please click OK to re-spin\",\n \"ShowNext\": \"The Wheel will be available on<br /> <strong>{startTime}</strong> <br />Please wait till it is open.\",\n \"DrawFailed\": \"The prize assignment may be failed, please contact customer support for more details\",\n \"Timeout\": \"Network is a bit busy now, please try again later.\",\n \"ErrorNetwork\": \"You are offline, please check your network settings\",\n \"ErrorJSON\": \"Unexpected Data Response, please contact customer support\",\n \"Congratulation\": \"Congratulations! You won a {prize}!\",\n \"OK\": \"OK\",\n \"Rewards\": \"Rewards\",\n \"Status\": \"Status\",\n \"Time\": \"Time\",\n \"Loss\": \"OOPs! You are close to a prize!\"\n }\n },\n \"fr\": {\n \"wof\": {\n \"NoContent\": \"You don't have any lottery programs available now.\",\n \"NoNext\": \"You don't have any spins available. Please check <a href=\\\"javascript:void(0)\\\">Terms and Conditions</a>\",\n \"NoHistories\": \"No histories\",\n \"Program\": \"Program\",\n \"History\": \"History\",\n \"ActiveTickets\": \"Active Tickets\",\n \"ImplicitTickets\": \"Implicit Tickets\",\n \"RemainingTimes\": \"Remaining Times\",\n \"Retry\": \"Network is a bit busy now, please click OK to re-spin\",\n \"ShowNext\": \"The Wheel will be available on<br /> <strong>{startTime}</strong> <br />Please wait till it is open.\",\n \"DrawFailed\": \"The prize assignment may be failed, please contact customer support for more details\",\n \"Timeout\": \"Network is a bit busy now, please try again later.\",\n \"ErrorNetwork\": \"You are offline, please check your network settings\",\n \"ErrorJSON\": \"Unexpected Data Response, please contact customer support\",\n \"Congratulation\": \"Congratulations! You won a {prize}!\",\n \"OK\": \"OK\",\n \"Rewards\": \"Rewards\",\n \"Status\": \"Status\",\n \"Time\": \"Time\",\n \"Loss\": \"OOPs! You are close to a prize!\"\n }\n },\n \"ro\": {\n \"wof\": {\n \"NoContent\": \"You don't have any lottery programs available now.\",\n \"NoNext\": \"You don't have any spins available. Please check <a href=\\\"javascript:void(0)\\\">Terms and Conditions</a>\",\n \"NoHistories\": \"No histories\",\n \"Program\": \"Program\",\n \"History\": \"History\",\n \"ActiveTickets\": \"Active Tickets\",\n \"ImplicitTickets\": \"Implicit Tickets\",\n \"RemainingTimes\": \"Remaining Times\",\n \"Retry\": \"Network is a bit busy now, please click OK to re-spin\",\n \"ShowNext\": \"The Wheel will be available on<br /> <strong>{startTime}</strong> <br />Please wait till it is open.\",\n \"DrawFailed\": \"The prize assignment may be failed, please contact customer support for more details\",\n \"Timeout\": \"Network is a bit busy now, please try again later.\",\n \"ErrorNetwork\": \"You are offline, please check your network settings\",\n \"ErrorJSON\": \"Unexpected Data Response, please contact customer support\",\n \"Congratulation\": \"Congratulations! You won a {prize}!\",\n \"OK\": \"OK\",\n \"Rewards\": \"Rewards\",\n \"Status\": \"Status\",\n \"Time\": \"Time\",\n \"Loss\": \"OOPs! You are close to a prize!\"\n }\n },\n \"es\": {\n \"wof\": {\n \"NoContent\": \"You don't have any lottery programs available now.\",\n \"NoNext\": \"You don't have any spins available. Please check <a href=\\\"javascript:void(0)\\\">Terms and Conditions</a>\",\n \"NoHistories\": \"No histories\",\n \"Program\": \"Program\",\n \"History\": \"History\",\n \"ActiveTickets\": \"Active Tickets\",\n \"ImplicitTickets\": \"Implicit Tickets\",\n \"RemainingTimes\": \"Remaining Times\",\n \"Retry\": \"Network is a bit busy now, please click OK to re-spin\",\n \"ShowNext\": \"The Wheel will be available on<br /> <strong>{startTime}</strong> <br />Please wait till it is open.\",\n \"DrawFailed\": \"The prize assignment may be failed, please contact customer support for more details\",\n \"Timeout\": \"Network is a bit busy now, please try again later.\",\n \"ErrorNetwork\": \"You are offline, please check your network settings\",\n \"ErrorJSON\": \"Unexpected Data Response, please contact customer support\",\n \"Congratulation\": \"Congratulations! You won a {prize}!\",\n \"OK\": \"OK\",\n \"Rewards\": \"Rewards\",\n \"Status\": \"Status\",\n \"Time\": \"Time\",\n \"Loss\": \"OOPs! You are close to a prize!\"\n }\n },\n \"pt\": {\n \"wof\": {\n \"NoContent\": \"You don't have any lottery programs available now.\",\n \"NoNext\": \"You don't have any spins available. Please check <a href=\\\"javascript:void(0)\\\">Terms and Conditions</a>\",\n \"NoHistories\": \"No histories\",\n \"Program\": \"Program\",\n \"History\": \"History\",\n \"ActiveTickets\": \"Active Tickets\",\n \"ImplicitTickets\": \"Implicit Tickets\",\n \"RemainingTimes\": \"Remaining Times\",\n \"Retry\": \"Network is a bit busy now, please click OK to re-spin\",\n \"ShowNext\": \"The Wheel will be available on<br /> <strong>{startTime}</strong> <br />Please wait till it is open.\",\n \"DrawFailed\": \"The prize assignment may be failed, please contact customer support for more details\",\n \"Timeout\": \"Network is a bit busy now, please try again later.\",\n \"ErrorNetwork\": \"You are offline, please check your network settings\",\n \"ErrorJSON\": \"Unexpected Data Response, please contact customer support\",\n \"Congratulation\": \"Congratulations! You won a {prize}!\",\n \"OK\": \"OK\",\n \"Rewards\": \"Rewards\",\n \"Status\": \"Status\",\n \"Time\": \"Time\",\n \"Loss\": \"OOPs! You are close to a prize!\"\n }\n },\n \"de\": {\n \"wof\": {\n \"NoContent\": \"You don't have any lottery programs available now.\",\n \"NoNext\": \"You don't have any spins available. Please check <a href=\\\"javascript:void(0)\\\">Terms and Conditions</a>\",\n \"NoHistories\": \"No histories\",\n \"Program\": \"Program\",\n \"History\": \"History\",\n \"ActiveTickets\": \"Active Tickets\",\n \"ImplicitTickets\": \"Implicit Tickets\",\n \"RemainingTimes\": \"Remaining Times\",\n \"Retry\": \"Network is a bit busy now, please click OK to re-spin\",\n \"ShowNext\": \"The Wheel will be available on<br /> <strong>{startTime}</strong> <br />Please wait till it is open.\",\n \"DrawFailed\": \"The prize assignment may be failed, please contact customer support for more details\",\n \"Timeout\": \"Network is a bit busy now, please try again later.\",\n \"ErrorNetwork\": \"You are offline, please check your network settings\",\n \"ErrorJSON\": \"Unexpected Data Response, please contact customer support\",\n \"Congratulation\": \"Congratulations! You won a {prize}!\",\n \"OK\": \"OK\",\n \"Rewards\": \"Rewards\",\n \"Status\": \"Status\",\n \"Time\": \"Time\",\n \"Loss\": \"OOPs! You are close to a prize!\"\n }\n }\n}","import {\n dictionary,\n locale,\n addMessages,\n _\n} from 'svelte-i18n';\n\nimport { TRANSLATIONS } from './translations';\n\nfunction setupI18n({ withLocale: _locale, translations }) {\n locale.subscribe((data) => {\n if (data == null) {\n dictionary.set(translations);\n locale.set(_locale);\n }\n }); // maybe we will need this to make sure that the i18n is set up only once\n /*dictionary.set(translations);\n locale.set(_locale);*/\n}\n\nfunction addNewMessages(lang, dict) {\n addMessages(lang, dict);\n}\n\nfunction setLocale(_locale) {\n locale.set(_locale);\n}\n\nconst setLocaleWhenInit = () => {\n \n setupI18n({ withLocale: 'en', translations: {}});\n\n Object.keys(TRANSLATIONS).forEach((item) => {\n addNewMessages(item, TRANSLATIONS[item]);\n });\n}\n\nexport { _, setupI18n, addNewMessages, setLocale, setLocaleWhenInit };","export const imageLoader = (src: string) => {\n return new Promise((resolve, reject) => {\n let img = new Image()\n img.onload = () => resolve(img)\n img.onerror = reject\n img.src = src\n })\n}\n\nexport const clamp = (num: number, min: number, max?: number) => {\n if(max){\n return Math.min(Math.max(num, min), max)\n }else{\n return Math.max(num, min)\n }\n}\n\nexport const imageLoaderSvg = (src: string) => {\n return new Promise((resolve, reject) => {\n let img = document.createElementNS(\"http://www.w3.org/2000/svg\", \"image\")\n img.onload = () => resolve(img)\n img.onerror = () => resolve(img) //reject\n img.href.baseVal = src\n })\n}\n\nconst cvtCaseFromCamelToKebab = (text: string) => \n text\n .split(/(?=[A-Z])/)\n .map(s => s.toLocaleLowerCase())\n .join('-')\n\nexport const setProps = <T extends Element>(element: T, props: any) => {\n Object.keys(props).map(_key => {\n element.setAttribute(cvtCaseFromCamelToKebab(_key), props[_key])\n })\n}\n\nexport const setPropsSVG = <T extends SVGElement>(element: T, props: any) => {\n Object.keys(props).map(_key => {\n element.setAttributeNS(\"http://www.w3.org/2000/svg\", cvtCaseFromCamelToKebab(_key), props[_key])\n })\n}\n\nexport const delay = (time: number) => new Promise(res => setTimeout(res, time * 1000));\n\ntype MapObjectValueToTuple<T extends Object> = T[keyof T][]\n\nexport const mapObjectValueToTuple = \n <T>(object: T): MapObjectValueToTuple<T> => \n Object.keys(object).map(key => object[key])\n\ninterface fetcherArgs {\n path: string, \n params?: Object, \n options?: RequestInit\n}\n\nexport const fetcher = async (config: fetcherArgs) => {\n\n const { path, params = {}, options = {} } = config\n\n const url = new URL(path)\n\n Object.keys(params).map(_key => {\n url.searchParams.append(_key, params[_key])\n })\n\n return await fetchBase(url, options)\n}\n\n\nexport const fetchBase = async (input: RequestInfo | URL, init: RequestInit = {}): Promise<Response> => {\n \n let res: any \n try {\n res = await fetch(input, init)\n res = await res.text()\n res = JSON.parse(res)\n } catch (e) {\n throw new Error(e.message)\n }\n\n return res\n}\n\nexport const isSafari = () => {\n var isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent);\n return isSafari;\n}","import { addNewMessages } from \"./i18n\";\nimport { fetchBase, fetcher } from \"./util\";\n\nexport const setTranslation = (translations) => {\n Object.keys(translations).forEach((item:any):void => {\n addNewMessages(item, translations[item]);\n });\n}\n\nexport const setTranslationUrl = async (translationurl) => {\n\n const res = await fetchBase(translationurl)\n\n setTranslation(res)\n}\n\nexport const setClientStyling = (container, clientstyling) => {\n let sheet = document.createElement('style');\n sheet.innerHTML = clientstyling;\n container.appendChild(sheet);\n}\n\nexport const setClientStylingURL = async (clientstylingurl, callback) => {\n const res = await fetch(clientstylingurl)\n const clientstyling = await res.text()\n callback(clientstyling)\n}","<svelte:options tag={'lottery-program-wof-private-message-panel'} />\n\n<script lang=\"ts\">\n // @ts-ignore\n import giftSvg from './images/gift.svg'\n import { onMountMessageLifeCycle, _postMessage } from './message';\n import { _ } from './i18n';\n import { setClientStyling } from './widget';\n\n export let r = 0\n export let size = 0\n export let id: string = undefined\n export let clientstyling:string = ''\n export let giftimagesrc: string = ''\n \n let rootContainer: HTMLElement\n $: clientstyling && rootContainer && setClientStyling(rootContainer, clientstyling);\n\n let topOffset: number = 0\n\n let isShown: boolean = false\n let mode: string = ''\n let modeValue: any\n let isOptionsReady: boolean = false\n\n onMountMessageLifeCycle({\n 'wof-private-options-ready': (data) => {\n if(data.id !== id) return;\n isOptionsReady = true\n },\n 'wof-private-message-open': (data) => {\n if(data.id !== id) return;\n\n mode = data.mode\n modeValue = data.modeValue\n\n isShown = true\n }\n })\n\n const _postMessageScoped = (props) => _postMessage({ ...props, id })\n \n const eventButton = () => {\n switch(mode){\n case 'timeout':\n isShown = false\n _postMessageScoped({ type: 'wof-private-message-retry' })\n break\n default:\n isShown = false\n _postMessageScoped({ type: 'wof-private-message-close' })\n break\n }\n }\n\n const getTimeString = (_d) => {\n const d: Date = new Date(_d)\n \n return [\n [\n d.toLocaleString('en-us', {year: 'numeric'}),\n d.toLocaleString('en-us', {month: '2-digit'}),\n d.toLocaleString('en-us', {day: '2-digit'}),\n ].join('-'),\n d.toLocaleString('en-GB', { hour: 'numeric', minute: 'numeric', second: 'numeric' }),\n ].join(' ')\n }\n\n const errorCodeMap = {\n ErrorNetwork: 'N0001',\n ErrorJSON: 'N0002',\n Retry: 'N0003',\n Timeout: 'N0004',\n }\n\n const setObserver = () => {\n const resizeObserver = new ResizeObserver(entries => {\n entries.map(entry => {\n if(entry.target === rootContainer) {\n topOffset = entry.target.clientHeight / 2\n }\n })\n })\n resizeObserver.observe(rootContainer)\n }\n\n $: rootContainer && setObserver()\n\n $: width = r * 2\n $: left = size / 2 - width / 2\n $: top = size / 2 - topOffset\n\n $: startTime = modeValue?.startTime && getTimeString(modeValue?.startTime)\n\n $: prizeSrc = modeValue?.prizeSrc || giftimagesrc || giftSvg\n\n const handlerTC = () => _postMessage({ type: \"OnTCClicked\", WofProgramID: id })\n\n let holderTC: HTMLElement\n const bindEventTC = () => {\n holderTC.querySelector('a').addEventListener('click', handlerTC)\n }\n\n $: holderTC && bindEventTC()\n</script>\n\n\n{#if isShown && isOptionsReady}\n<div \n bind:this={rootContainer}\n class=\"MessagePanel\" \n style={[\n `top: ${top}px`,\n `left: ${left}px`,\n `width: ${width}px`,\n isShown ? 'opacity: 1' : '',\n ].join(';')}\n>\n\n {#if mode === 'normal' || mode === 'init-failed' || mode === 'timeout'}\n <p>{$_(`wof.${modeValue}`)}</p>\n {/if}\n\n {#if mode === 'show-next'}\n <p>{@html $_('wof.ShowNext', {values: { startTime }})}</p>\n {/if}\n\n {#if mode === 'NoNext'}\n <p bind:this={holderTC}>{@html $_(`wof.NoNext`)}</p>\n {/if}\n\n {#if mode === 'gift'}\n <p>\n <img src={prizeSrc} alt=\"\" class=\"GiftImage\">\n </p>\n {#if modeValue.prizeText}\n {@html modeValue.prizeText}\n {:else}\n {@html $_('wof.Congratulation', {values: { prize: modeValue.prize }})}\n {/if}\n <p>\n\n </p>\n {/if}\n\n {#if mode === 'nogift'}\n <p>\n <img src={modeValue.image} alt=\"\" class=\"GiftImage\">\n </p>\n <p>{@html $_('wof.Loss')}</p>\n {/if}\n\n \n {#if errorCodeMap[modeValue]}\n <p class=\"ErrorCode\">\n Errorcode: {errorCodeMap[modeValue]}\n </p>\n {/if}\n\n {#if !['init-failed', 'show-next', 'NoNext'].includes(mode)}\n <div>\n <button\n class=\"MessagePanelButton\"\n on:click={eventButton}\n >\n {$_('wof.OK')}\n </button>\n </div>\n {/if}\n</div>\n{/if}\n\n<style lang=\"scss\">\n\n :host {\n font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n position: absolute;\n width: 100%;\n }\n\n *,\n *::before,\n *::after {\n margin: 0;\n padding: 0;\n list-style: none;\n text-decoration: none;\n outline: none;\n box-sizing: border-box;\n }\n $outlineColor: rgb(150, 54, 88);\n $outlineWidth: 2px;\n\n .GiftImage {\n max-width: 80%;\n height: 100px;\n }\n\n .MessagePanel {\n position: absolute;\n background-color: #FFFFFF;\n color: #000000;\n padding: 15px 30px;\n border-radius: 8px;\n text-align: center;\n font-size: 16px;\n opacity: .3;\n \n // border: 3px solid rgb(80, 80, 80);\n box-shadow: 0 0 1px #a1a1a1;\n\n // transform: translateX(-50%);\n transition: margin-top opacity .3s ease-out;\n }\n\n .MessagePanelButton { \n padding: 4px 24px;\n margin-top: 40px;\n font-size: 16px;\n line-height: 24px;\n color: #FFFFFF;\n background: #FF0000;\n border-radius: 5px;\n font-weight: 700;\n border: 0;\n box-shadow: 0 0 3px #ff0000;\n cursor: pointer;\n }\n\n .ErrorCode {\n color: #b50000;\n margin-top: 10px;\n font-size: 14px;\n font-weight: 500;\n }\n</style>","declare global {\n namespace svelte.JSX {\n interface SVGProps<T> {\n part?: string\n }\n }\n}\n\nexport interface Point {\n x: number;\n y: number;\n}\n\nexport enum PointerMode {\n Arrow = \"Arrow\",\n Partition = \"Partition\",\n}\n\nexport enum ArrowMode {\n DownFromTop = \"DownFromTop\",\n UpFromCenter = \"UpFromCenter\",\n DownFromCenter = \"DownFromCenter\",\n UpFromBottom = \"UpFromBottom\",\n}\n\nexport enum Api {\n lotteries = 'lotteries',\n outcome = 'outcome',\n draw = 'draw',\n}\n\nexport interface ApiConfigs {\n [Api.lotteries]: {\n session?: string\n },\n [Api.outcome]: {\n session?: string\n id: string\n },\n [Api.draw]: {\n session?: string\n id: string\n guid: string\n },\n \n}\n\nexport enum Lang { \n en = 'en',\n fr = 'fr',\n de = 'de',\n tr = 'tr'\n}\n\ntype StringWithLang = {\n [key in Lang]: string\n}\n\nexport interface Partition {\n name: StringWithLang\n image1: StringWithLang\n image2: StringWithLang\n image3: StringWithLang\n}\n\n\nexport enum Tab {\n Program = 'Program',\n History = 'History'\n}\n\nexport enum ContentDirection {\n clockwise = 1,\n anticlockwise = -1,\n outward = 0,\n}\n\n\n\n","<svelte:options tag={'lottery-program-wof-private-tabs'} />\n\n<script lang=\"ts\">\n import { _postMessage } from \"./message\";\n import { Lang, Tab } from \"./types\";\n import { _ } from './i18n';\n import { setClientStyling } from \"./widget\";\n\n // properties\n export let lang: Lang = Lang.en\n export let endpoint: string = ''\n export let session: string = ''\n export let clientstyling:string = ''\n export let isshowhistory: string = 'true'\n \n let rootContainer: HTMLElement\n $: clientstyling && rootContainer && setClientStyling(rootContainer, clientstyling);\n\n let tab: Tab = Tab.Program;\n\n const onTabClick = (_tab) => {\n switch(_tab){\n case Tab.Program: \n break;\n case Tab.History:\n _postMessage({type: 'wof-private-message-outcomes'})\n break;\n }\n\n tab = _tab\n }\n</script>\n{#if isshowhistory === 'true'}\n<section class=\"TabBar\" bind:this={rootContainer}>\n <ul>\n {#each Object.keys(Tab) as _tab, i}\n <li\n class:active={_tab === tab}\n class=\"TabItem\"\n on:click={() => onTabClick(_tab)}\n >\n <span>\n {$_(`wof.${_tab}`)}\n </span>\n </li>\n {/each}\n </ul>\n</section>\n{/if}\n\n{#each Object.keys(Tab) as _tab}\n {#if tab === _tab}\n <slot name={`tab-${_tab}`} />\n {/if}\n{/each}\n\n\n<style lang=\"scss\">\n\n :host {\n font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n width: 100%;\n }\n\n *,\n *::before,\n *::after {\n margin: 0;\n padding: 0;\n list-style: none;\n text-decoration: none;\n outline: none;\n box-sizing: border-box;\n }\n\n .TabBar {\n width: 100%;\n display: flex;\n align-items: center;\n flex-direction: column;\n padding: 20px 0;\n\n ul {\n max-width: 600px;\n width: 100%;\n\n li {\n color: #FFFFFF;\n display: inline-block;\n }\n }\n\n ul {\n border-bottom: 3px #ccc solid;\n\n li {\n padding: 6px 10px;\n cursor: pointer;\n &.active {\n border-bottom: 3px #d46666 solid;\n margin-bottom: -6px;\n }\n }\n }\n }\n</style>","export const convertDegToArc = (deg: number) => deg * Math.PI / 180\nexport const convertArcToDeg = (arc: number) => arc * 180 / Math.PI % 360\n\nexport const getArcDelta = (n: number) => 2 * Math.PI / n\n\nexport const findIndex = (deg: number, n: number) =>\n Math.floor(\n (360 - deg % 360) / convertArcToDeg(getArcDelta(n))\n )\n\nexport const findDeg = (index: number, n: number) => {\n const degDelta = convertArcToDeg(getArcDelta(n))\n return (index) * degDelta\n}\n\nexport const createSVGElement = (tag: string) => {\n const xmlns = \"http://www.w3.org/2000/svg\";\n return document.createElementNS(xmlns, tag);\n}\n\nexport const ratioGoldenMean = (times: number) => Math.pow(0.618, times)\n\n\nconst randomDirection = () => Math.random() > 0.5 ? 1 : -1\n\nexport const randomInSection = (number: number) => {\n return 360 / number / 2 * (1 - 0.2) * Math.random() * randomDirection()\n}","import type { \n LotteryProgramDraw,\n LotteryProgramILotteryProgramForPlayer, \n LotteryProgramIQueryLotteryProgramForPlayerResult \n} from \"./api\";\n\n\nexport type LotteryProgramForPlayer = LotteryProgramILotteryProgramForPlayer\n\nexport enum CurrentInfo {\n ActiveTickets = 'ActiveTickets',\n ImplicitTickets = 'ImplicitTickets',\n RemainingTimes = 'RemainingTimes',\n}\n\nexport type ApiLotteriesResult = LotteryProgramIQueryLotteryProgramForPlayerResult\n\nexport interface ApiDrawResult {\n item?: LotteryProgramDraw;\n}","var img = \"data:image/svg+xml,%3c%3fxml version='1.0' encoding='utf-8'%3f%3e%3c!-- Generator: Adobe Illustrator 27.2.0%2c SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3e%3csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 160 160' style='enable-background:new 0 0 160 160%3b' xml:space='preserve'%3e%3cstyle type='text/css'%3e .st0%7bfill:%233F1719%3b%7d .st1%7bfill:%23FFBD39%3b%7d .st2%7bfill:url(%23SVGID_1_)%3b%7d .st3%7bfill:white%3b%7d .st4%7bfill:%23FF7B7B%3b%7d .st5%7bfill:%23260813%3b%7d .st6%7bfill:none%3bstroke:%23260813%3bstroke-width:2.839%3bstroke-linecap:round%3bstroke-linejoin:round%3bstroke-miterlimit:10%3b%7d .st7%7bfill:%2381CFF4%3b%7d .st8%7bfill:%2364BDEB%3b%7d .st9%7bfill:%23A1D9F7%3b%7d%3c/style%3e%3cg%3e %3cg%3e %3cpath class='st0' d='M39.49%2c152.29c-2.45%2c0-4.51-0.55-6.1-1.65c-6.77-4.65-5.91-19.53-2.16-43.68c0.28-1.81%2c0.59-3.78%2c0.75-5.04 c-0.91-0.94-2.45-2.42-3.84-3.77c-14.3-13.8-26.88-26.97-23.66-36.4c2.96-8.67%2c18.19-12.32%2c41.82-15.4 c1.35-0.18%2c2.81-0.37%2c3.87-0.52c0.47-0.94%2c1.1-2.24%2c1.68-3.44C62.4%2c20.53%2c70.79%2c6.97%2c79.96%2c6.97c9.95%2c0%2c19.1%2c17.09%2c27.61%2c34.59 c0.76%2c1.56%2c1.58%2c3.26%2c2.15%2c4.35c1.21%2c0.24%2c3.06%2c0.57%2c4.76%2c0.87c24.27%2c4.33%2c37.97%2c7.95%2c40.84%2c14.68 c2.35%2c5.52-0.76%2c13.04-23.91%2c36.88c-1.29%2c1.33-2.71%2c2.79-3.56%2c3.71c0.13%2c1.49%2c0.46%2c4.1%2c0.76%2c6.48 c3.06%2c24.27%2c3.62%2c37.41-1.78%2c41.88c-1.49%2c1.23-3.5%2c1.86-5.97%2c1.86c-7.9%2c0-21.77-6.4-35.31-12.96c-2.03-0.98-4.27-2.07-5.58-2.65 c-1.23%2c0.57-3.26%2c1.59-5.12%2c2.52C61.62%2c145.81%2c47.98%2c152.29%2c39.49%2c152.29z'/%3e %3cpath class='st1' d='M79.96%2c13.58c10.31%2c0%2c24.52%2c36.14%2c26.1%2c37.12c1.57%2c0.98%2c39.75%2c5.6%2c42.91%2c13.02 c3.17%2c7.42-26.21%2c34.28-26.93%2c36.11c-0.73%2c1.83%2c6.61%2c40.02%2c0.57%2c45.02c-6.04%2c5-40.55-14.55-42.65-14.56 c-2.11-0.01-35.22%2c19.66-42.65%2c14.56c-7.43-5.1%2c1.11-42.95%2c0.57-45.02c-0.54-2.07-30.29-26.28-26.93-36.11 c3.36-9.83%2c41.54-12%2c42.91-13.02C55.23%2c49.67%2c69.65%2c13.58%2c79.96%2c13.58z'/%3e %3clinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='48.8123' y1='50.1816' x2='122.3169' y2='138.4779'%3e %3cstop offset='0.043' style='stop-color:%23FFF466'/%3e %3cstop offset='0.0753' style='stop-color:%23FFF466'/%3e %3cstop offset='0.3152' style='stop-color:%23FFEC5F'/%3e %3cstop offset='0.6922' style='stop-color:%23FFD54D'/%3e %3cstop offset='0.8602' style='stop-color:%23FFC943'/%3e %3c/linearGradient%3e %3cpath class='st2' d='M79.96%2c19.97c9.31%2c0%2c21.52%2c33.89%2c22.95%2c34.78c1.42%2c0.89%2c36.53%2c3.8%2c39.39%2c10.51 c2.86%2c6.71-24.3%2c30.34-24.95%2c31.99c-0.66%2c1.65%2c6.6%2c36.77%2c1.14%2c41.29c-5.45%2c4.52-36.62-13.76-38.52-13.77 c-1.9-0.01-31.81%2c18.38-38.52%2c13.77c-6.71-4.61%2c2.26-38.79%2c1.77-40.66c-0.48-1.87-28.61-23.74-25.58-32.62 c3.03-8.88%2c38.78-9.59%2c40.01-10.51C58.87%2c53.83%2c70.64%2c19.97%2c79.96%2c19.97z'/%3e %3cpath class='st3' d='M24.04%2c66.49c-0.67-6.52%2c20.71-10.35%2c21.65-2.73C46.64%2c71.39%2c24.96%2c75.37%2c24.04%2c66.49z'/%3e %3cpath class='st3' d='M51.17%2c61.62c-0.16-4.19%2c6.23-4.45%2c6.56-1.01C58.1%2c64.47%2c51.32%2c65.54%2c51.17%2c61.62z'/%3e %3c/g%3e %3cg%3e %3cpath class='st4' d='M115.44%2c85.85c0%2c1.15-0.93%2c2.09-2.09%2c2.09c-1.15%2c0-2.09-0.94-2.09-2.09c0-1.15%2c0.93-2.09%2c2.09-2.09 C114.51%2c83.76%2c115.44%2c84.69%2c115.44%2c85.85z'/%3e %3cpath class='st4' d='M48.13%2c85.85c0%2c1.15%2c0.93%2c2.09%2c2.09%2c2.09c1.15%2c0%2c2.09-0.94%2c2.09-2.09c0-1.15-0.93-2.09-2.09-2.09 C49.07%2c83.76%2c48.13%2c84.69%2c48.13%2c85.85z'/%3e %3cpath class='st5' d='M113.98%2c80.29c0%2c4.22-3.42%2c7.65-7.64%2c7.65c-4.22%2c0-7.65-3.42-7.65-7.65s3.42-7.65%2c7.65-7.65 C110.56%2c72.65%2c113.98%2c76.07%2c113.98%2c80.29z'/%3e %3cg%3e %3cpath class='st6' d='M88.61%2c93.46c-0.36-3.99-3.11-6.67-6.83-6.67c-3.72%2c0-6.46%2c2.68-6.83%2c6.67'/%3e %3c/g%3e %3cg%3e %3cg%3e %3cpath class='st3' d='M109.05%2c78.88c0%2c1.89-1.53%2c3.42-3.42%2c3.42c-1.89%2c0-3.42-1.53-3.42-3.42c0-1.89%2c1.53-3.42%2c3.42-3.42 C107.52%2c75.46%2c109.05%2c76.99%2c109.05%2c78.88z'/%3e %3c/g%3e %3cpath class='st3' d='M107.52%2c83.71c0%2c0.84%2c0.68%2c1.52%2c1.52%2c1.52c0.84%2c0%2c1.52-0.68%2c1.52-1.52c0-0.84-0.68-1.52-1.52-1.52 C108.21%2c82.19%2c107.52%2c82.87%2c107.52%2c83.71z'/%3e %3c/g%3e %3cpath class='st5' d='M49.59%2c80.29c0%2c4.22%2c3.42%2c7.65%2c7.64%2c7.65c4.22%2c0%2c7.65-3.42%2c7.65-7.65s-3.42-7.65-7.65-7.65 C53.01%2c72.65%2c49.59%2c76.07%2c49.59%2c80.29z'/%3e %3cg%3e %3cg%3e %3cpath class='st3' d='M54.52%2c78.88c0%2c1.89%2c1.53%2c3.42%2c3.42%2c3.42c1.89%2c0%2c3.42-1.53%2c3.42-3.42c0-1.89-1.53-3.42-3.42-3.42 C56.05%2c75.46%2c54.52%2c76.99%2c54.52%2c78.88z'/%3e %3c/g%3e %3cpath class='st3' d='M56.05%2c83.71c0%2c0.84-0.68%2c1.52-1.52%2c1.52c-0.84%2c0-1.52-0.68-1.52-1.52c0-0.84%2c0.68-1.52%2c1.52-1.52 C55.36%2c82.19%2c56.05%2c82.87%2c56.05%2c83.71z'/%3e %3c/g%3e %3cline class='st6' x1='102.21' y1='70.03' x2='115.44' y2='76.59'/%3e %3cline class='st6' x1='61.36' y1='70.03' x2='48.13' y2='76.59'/%3e %3c/g%3e %3cpath class='st7' d='M28%2c102.98c0.03-0.17%2c0.07-0.35%2c0.1-0.52c0.03-0.14%2c0.06-0.27%2c0.09-0.41c0.04-0.17%2c0.08-0.33%2c0.13-0.5 c0.04-0.14%2c0.07-0.28%2c0.11-0.41c0.05-0.16%2c0.1-0.32%2c0.15-0.48c0.04-0.14%2c0.09-0.28%2c0.13-0.42c0.05-0.15%2c0.11-0.31%2c0.16-0.46 c0.05-0.14%2c0.1-0.28%2c0.15-0.42c0.05-0.13%2c0.11-0.27%2c0.16-0.4c0.13-0.31%2c0.26-0.63%2c0.4-0.94c0.05-0.11%2c0.1-0.22%2c0.15-0.33 c0.08-0.17%2c0.17-0.34%2c0.25-0.52c0.05-0.1%2c0.1-0.21%2c0.16-0.31c0.09-0.17%2c0.18-0.34%2c0.28-0.52c0.05-0.1%2c0.11-0.2%2c0.16-0.3 c0.1-0.17%2c0.2-0.35%2c0.3-0.52c0.03-0.05%2c0.05-0.09%2c0.08-0.14c0.03-0.05%2c0.06-0.09%2c0.08-0.13c0.11-0.18%2c0.22-0.35%2c0.33-0.53 c0.05-0.08%2c0.1-0.16%2c0.15-0.24c0.12-0.18%2c0.24-0.36%2c0.36-0.54c0.04-0.06%2c0.08-0.11%2c0.12-0.17c0.14-0.2%2c0.28-0.39%2c0.42-0.59 c0%2c0.01-0.01%2c0.02-0.01%2c0.03c0.37-0.51%2c0.75-1.01%2c1.15-1.49c1.51-1.82%2c3.2-3.46%2c5-4.99c0.89-0.76%2c4.34-4.3%2c5.52-4.03 c1.31%2c0.3-0.1%2c5.13%2c4.13%2c12.25c2.58%2c4.33%2c5.21%2c9.02%2c5.06%2c14.05c0%2c0%2c0%2c0%2c0%2c0l0%2c0.1c-0.15%2c4.09-2.48%2c8.03-5.98%2c10.16 c-0.12%2c0.07-0.24%2c0.15-0.36%2c0.22c-1.65%2c0.93-3.51%2c1.44-5.4%2c1.54c-2.34%2c0.13-4.71-0.38-6.76-1.52c-4.62-2.58-7.19-8.06-7.11-13.36 c0-0.31%2c0.02-0.63%2c0.04-0.94c0.01-0.11%2c0.02-0.21%2c0.03-0.31c0.02-0.21%2c0.04-0.41%2c0.06-0.62c0.01-0.13%2c0.03-0.25%2c0.05-0.37 c0.03-0.18%2c0.05-0.37%2c0.08-0.55C27.95%2c103.25%2c27.97%2c103.12%2c28%2c102.98z'/%3e %3cpath class='st8' d='M31.37%2c94.74c0.05-0.08%2c0.1-0.16%2c0.15-0.24c0.12-0.18%2c0.24-0.36%2c0.36-0.54c0.04-0.06%2c0.08-0.11%2c0.12-0.17 c0.14-0.2%2c0.28-0.39%2c0.42-0.59c0%2c0.01-0.01%2c0.02-0.01%2c0.03c-1.41%2c3.04-2.23%2c6.36-2.35%2c9.71c-0.11%2c2.9%2c0.31%2c5.9%2c1.78%2c8.4 c2.9%2c4.95%2c9.85%2c6.85%2c15.05%2c4.45c2.9-1.34%2c5.12-3.84%2c6.38-6.77c0%2c0%2c0%2c0%2c0%2c0l0%2c0.1c-0.15%2c4.09-2.48%2c8.03-5.98%2c10.16 c-0.12%2c0.07-0.24%2c0.15-0.36%2c0.22c-1.65%2c0.93-3.51%2c1.44-5.4%2c1.54c-2.34%2c0.13-4.71-0.38-6.76-1.52c-4.62-2.58-7.19-8.06-7.11-13.36 c0-0.31%2c0.02-0.63%2c0.04-0.94c0.01-0.11%2c0.02-0.21%2c0.03-0.31c0.02-0.21%2c0.04-0.41%2c0.06-0.62c0.01-0.13%2c0.03-0.25%2c0.05-0.37 c0.03-0.18%2c0.05-0.37%2c0.08-0.55c0.02-0.13%2c0.05-0.27%2c0.07-0.4c0.03-0.17%2c0.07-0.35%2c0.1-0.52c0.03-0.14%2c0.06-0.27%2c0.09-0.41 c0.04-0.17%2c0.08-0.33%2c0.13-0.5c0.04-0.14%2c0.07-0.28%2c0.11-0.41c0.05-0.16%2c0.1-0.32%2c0.15-0.48c0.04-0.14%2c0.09-0.28%2c0.13-0.42 c0.05-0.15%2c0.11-0.31%2c0.16-0.46c0.05-0.14%2c0.1-0.28%2c0.15-0.42c0.05-0.13%2c0.11-0.27%2c0.16-0.4c0.13-0.31%2c0.26-0.63%2c0.4-0.94 c0.05-0.11%2c0.1-0.22%2c0.15-0.33c0.08-0.17%2c0.17-0.34%2c0.25-0.52c0.05-0.1%2c0.1-0.21%2c0.16-0.31c0.09-0.17%2c0.18-0.34%2c0.28-0.52 c0.05-0.1%2c0.11-0.2%2c0.16-0.3c0.1-0.17%2c0.2-0.35%2c0.3-0.52c0.03-0.05%2c0.05-0.09%2c0.08-0.14c0.03-0.05%2c0.06-0.09%2c0.08-0.13 C31.15%2c95.09%2c31.26%2c94.92%2c31.37%2c94.74z'/%3e %3cpath class='st9' d='M45.18%2c113.51c-2.16%2c1.24-5.09%2c0.82-6.93-0.85c-1.84-1.67-2.56-4.42-1.94-6.83c0.47-1.84%2c1.7-3.5%2c3.36-4.42 c2.38-1.32%2c6.67-1.24%2c8.12%2c1.44c0.47%2c0.87%2c0.65%2c1.87%2c0.73%2c2.85C48.73%2c108.68%2c47.77%2c112.02%2c45.18%2c113.51z'/%3e%3c/g%3e%3c/svg%3e\";\n export default img;","import type { WheelOfFortunePartition } from './api'\n\n// @ts-ignore\nimport Thankyou1Svg from './images/Thankyou_1.svg'\n// @ts-ignore\nimport Thankyou2Svg from './images/Thankyou_2.svg'\n// @ts-ignore\nimport Thankyou3Svg from './images/Thankyou_3.svg'\n// @ts-ignore\nimport Thankyou4Svg from './images/Thankyou_4.svg'\nimport type { Lang } from './types'\nimport type { LotteryProgramForPlayer } from './types.business'\nimport { imageLoaderSvg, isSafari } from './util'\n\nexport interface Option {\n image: SVGElement | string,\n name: string,\n prizeText: string,\n prizeImage: string\n}\n\nconst optionCompliment = {\n image: Thankyou1Svg,\n name: 'Thank you',\n prizeText: '',\n prizeImage: '',\n}\n\nconst getSumProbability = (partitions) => {\n let probabilityAll = 0\n partitions.map(partition => {\n probabilityAll += Number(partition.probability)\n })\n return probabilityAll\n}\n\nconst getOptionsFromPartitions = (partitions: WheelOfFortunePartition[], lang: Lang): Option[] => {\n const options = partitions.map(_partition => {\n const option = {}\n Object.keys(_partition).map((_key) => {\n if(\n typeof _partition[_key] === 'object' && \n (_partition[_key] as Object).hasOwnProperty('*')\n ){\n const targetKey = _key === 'image1' ? 'image' : _key\n option[targetKey] = _partition[_key][lang] || _partition[_key]['*']\n }\n })\n\n return option as Option\n })\n\n if(getSumProbability(partitions) < 1){\n options.push(optionCompliment)\n }\n\n return options\n}\n\nconst preloadImage = async (src: string) => {\n if(!src) return {}\n\n return { \n image: await imageLoaderSvg(src) as SVGImageElement\n }\n}\n\nexport const getOptions = async (bonus: LotteryProgramForPlayer, lang: Lang) => {\n\n const { partitions } = bonus.program.wheelOfFortune\n\n let options: Option[] = getOptionsFromPartitions(partitions, lang)\n\n if(isSafari()){\n options = options.map(option => {\n if(option.image){\n let img = document.createElementNS(\"http://www.w3.org/2000/svg\", \"image\")\n img.href.baseVal = option.image as string\n \n return {\n ...option,\n image: img\n }\n }else{\n return option\n }\n })\n }else{\n options = await Promise.all(\n options.map(async o => ({\n ...o, \n ...(await preloadImage(o.image as string))\n }))\n )\n }\n\n return options\n}","import { findDeg } from './calc';\nimport { _postMessage } from './message';\nimport { Api, ApiConfigs, PointerMode } from './types';\nimport type { LotteryProgramForPlayer, ApiDrawResult, ApiLotteriesResult } from './types.business';\nimport { CurrentInfo } from './types.business';\nimport { fetcher } from './util';\nimport { _ } from './i18n';\n\nexport * from './business.partition'\nimport type { Option } from './business.partition'\n\nconst fetcherApi = async <T extends Api>(api: Api, endpoint: string, config: ApiConfigs[T]) => {\n\n const { session } = config\n\n const options = {\n headers: {\n 'Content-Type': 'application/json',\n 'accept': 'text/plain',\n \n ...(session ? {'x-SessionId': session} : {})\n },\n }\n\n const getArgs = {\n [Api.lotteries]: () => {\n\n const { } = config || {} as ApiConfigs[Api.lotteries]\n\n return {\n path: '/wof/lotteries', \n params: {\n },\n options,\n }\n },\n [Api.outcome]: () => {\n \n const { id } = config as ApiConfigs[Api.outcome]\n\n return {\n path: `/wof/outcome/${id}`,\n params: {\n },\n options,\n }\n },\n [Api.draw]: () => {\n \n const { id, guid } = config as ApiConfigs[Api.draw]\n\n return {\n path: `/wof/draw/${id}`,\n params: {\n },\n options: {\n ...options,\n method: 'PUT',\n\t\t\t\t\tbody: JSON.stringify({\n\t\t\t\t\t\tguid\n\t\t\t\t\t})\n }\n }\n }\n }\n\n const args = getArgs[api]()\n \n args.path = endpoint + `/v1` + args.path\n\n return await fetcher(args)\n}\n\nexport const setMessage = (id: string, entry: string | object) => {\n const _postMessageScoped = (props) => _postMessage({ ...props, id })\n switch(typeof entry) {\n case 'string': \n _postMessageScoped({ type: 'wof-private-message-open', mode: 'normal', modeValue: entry })\n break;\n case 'object': \n _postMessageScoped({ type: 'wof-private-message-open', ...(entry as object) })\n break;\n }\n}\n\nexport const getCurrentInfo = (\n lotteryProgramForPlayer: LotteryProgramForPlayer, \n key: CurrentInfo\n) => {\n\n const { current } = lotteryProgramForPlayer\n\n switch (key) {\n case CurrentInfo.ActiveTickets:\n return current.activeTickets\n\n case CurrentInfo.ImplicitTickets:\n const { \n maxImplicitTickets: max, \n usedImplicitTickets: used,\n } = current\n\n return `${max - used}/${max}`\n\n case CurrentInfo.RemainingTimes:\n return current.remainingTimes\n }\n}\n\nexport const api = {\n lotteries: \n async (endpoint: string, session: string) => {\n\n const data = await fetcherApi(Api.lotteries, endpoint, { session }) as ApiLotteriesResult\n\n const lotteryProgramForPlayers = data.items as LotteryProgramForPlayer[] || []\n\n return lotteryProgramForPlayers\n },\n draw: \n async (endpoint: string, session: string, id: string, guid, options: Option[]) => {\n\n let data = await fetcherApi(Api.draw, endpoint, { id, session, guid }) as ApiDrawResult\n \n let index = data.item?.result?.wheelOfFortunePartitionIndex\n \n const getOptionAndImageSrc = (_index: number) => {\n const option = options[_index]\n return {\n option, \n imageSrc: (option?.image as SVGAElement)?.href?.baseVal\n } as const\n }\n\n let message: any\n if(!index){\n index = options.length - 1\n \n const { imageSrc } = getOptionAndImageSrc(index)\n message = {\n mode: 'nogift',\n modeValue: {\n image: imageSrc\n }\n }\n }else{\n const { imageSrc, option } = getOptionAndImageSrc(index)\n message = {\n mode: 'gift',\n modeValue: {\n prize: option.name || 'prize',\n prizeText: option.prizeText,\n prizeSrc: option.prizeImage || imageSrc\n }\n }\n }\n \n return {\n data,\n message, index\n }\n },\n\n outcome: \n async (endpoint: string, session: string, id: string) => {\n return await fetcherApi(Api.outcome, endpoint, { session, id })\n },\n}\n\nexport const getSpinContainerSelector = (pointerMode: PointerMode) => {\n switch(pointerMode){\n case PointerMode.Arrow: return 'g.PartitionsContainer'\n case PointerMode.Partition: return '.PointerArea > div'\n }\n}\n\nexport const findDegWithPointerMode = (index: number, length: number, pointerMode: PointerMode) => {\n switch(pointerMode){\n case PointerMode.Arrow: \n return findDeg(length - index, length) // + randomInSection(length)\n case PointerMode.Partition:\n return findDeg(index, length)\n }\n}\n\nexport const isBonusInvalid = (bonus) => bonus?.current.remainingTimes == 0 && !bonus?.next","<svelte:options tag={'wof-loader'} />\n<div class=\"lds-ellipsis\"><div></div><div></div><div></div><div></div></div>\n<style lang=\"scss\">\n\n .lds-ellipsis {\n display: inline-block;\n position: relative;\n width: 80px;\n height: 80px;\n }\n .lds-ellipsis div {\n position: absolute;\n top: 33px;\n width: 13px;\n height: 13px;\n border-radius: 50%;\n background: #fff;\n animation-timing-function: cubic-bezier(0, 1, 1, 0);\n }\n .lds-ellipsis div:nth-child(1) {\n left: 8px;\n animation: lds-ellipsis1 0.6s infinite;\n }\n .lds-ellipsis div:nth-child(2) {\n left: 8px;\n animation: lds-ellipsis2 0.6s infinite;\n }\n .lds-ellipsis div:nth-child(3) {\n left: 32px;\n animation: lds-ellipsis2 0.6s infinite;\n }\n .lds-ellipsis div:nth-child(4) {\n left: 56px;\n animation: lds-ellipsis3 0.6s infinite;\n }\n @keyframes lds-ellipsis1 {\n 0% {\n transform: scale(0);\n }\n 100% {\n transform: scale(1);\n }\n }\n @keyframes lds-ellipsis3 {\n 0% {\n transform: scale(1);\n }\n 100% {\n transform: scale(0);\n }\n }\n @keyframes lds-ellipsis2 {\n 0% {\n transform: translate(0, 0);\n }\n 100% {\n transform: translate(24px, 0);\n }\n }\n\n</style>","<svelte:options tag={'lottery-program-wof-private-outcomes'} />\n\n<script lang=\"ts\">\n import type { WheelOfFortunePartition } from \"./api\";\n import { api } from \"./business\";\n import { onMountMessageLifeCycle } from \"./message\";\n import type { LotteryProgramForPlayer } from \"./types.business\";\n import { _ } from './i18n';\n import './private.loader.svelte'\n import { Lang } from \"./types\";\n import { setClientStyling } from \"./widget\";\n\n // properties\n export let lang: Lang = Lang.en\n export let endpoint: string = ''\n export let session: string = ''\n export let clientstyling:string = ''\n export let id: string = ''\n \n let rootContainer: HTMLElement\n $: clientstyling && rootContainer && setClientStyling(rootContainer, clientstyling);\n\n interface RenderReady {\n id: string,\n }\n\n interface PartitionsR extends RenderReady {\n partitions: WheelOfFortunePartition[]\n }\n \n interface outcomesItemR extends RenderReady {\n outcomes: any[]\n isLoading: boolean\n }\n\n let bonuses: LotteryProgramForPlayer[] \n let ids: string[] = []\n let partitionsList: PartitionsR[] = []\n let outcomesList: outcomesItemR[] = [];\n \n const getName = (objectI18n: any) => objectI18n?.name['*']\n\n const getPrize = (outcome, id) => {\n const partitions = partitionsList.filter(partitionsItem => partitionsItem.id === id)[0].partitions\n const index = outcome.draw.result?.wheelOfFortunePartitionIndex\n \n return !index ? 'Loss' : getName(partitions[index])\n }\n\n const eventShowOutcome = async () => {\n\n outcomesList = []\n ids.map(id => {\n outcomesList.push({\n id,\n outcomes: [],\n isLoading: true,\n })\n })\n\n ids.map(async id => {\n const result = await api.outcome(endpoint, session, id)\n const outcomes = result.items\n outcomesList = outcomesList.map(o => {\n if(o.id === id){\n return {\n ...o,\n outcomes,\n isLoading: false,\n }\n }else{\n return o\n }\n })\n })\n }\n\n const updateData = () => {\n ids = \n bonuses.map(l => l.program.id)\n\n partitionsList = \n bonuses.map(bonus => ({\n id: bonus.program.id,\n partitions: bonus.program.wheelOfFortune.partitions,\n }))\n }\n\n $: bonuses && updateData()\n\n onMountMessageLifeCycle({\n 'wof-private-bonuses-outcomes': (data) => {\n bonuses = data.bonuses\n },\n 'wof-private-message-outcomes': () => {\n eventShowOutcome()\n }\n })\n\n</script>\n\n<div class=\"Outcomes\" bind:this={rootContainer}>\n <div class=\"TableContainer\">\n <table>\n {#each outcomesList as outcomesItem}\n {#if outcomesItem.isLoading}\n <wof-loader />\n {:else}\n {#if !outcomesItem.outcomes || outcomesItem.outcomes.length === 0}\n <div class=\"OutcomeNoContent\">{$_('wof.NoHistories')}</div>\n {:else}\n <div>\n <tr>{getName(bonuses.filter(l => l.program.id === outcomesItem.id)[0].program)}</tr>\n </div>\n <thead>\n <tr>\n <th>{$_('wof.Rewards')}</th>\n <th>{$_('wof.Status')}</th>\n <th>{$_('wof.Time')}</th>\n </tr>\n </thead>\n <tbody style={outcomesItem.outcomes.length <= 5 ? 'overflow: hidden;' : ''}>\n {#each outcomesItem.outcomes as outcome}\n <tr>\n <td>{@html getPrize(outcome, outcomesItem.id)}</td>\n <td>{outcome.draw.state}</td>\n <td>{(new Date(outcome.draw.time).toLocaleString(undefined, { timeZone: Intl.DateTimeFormat().resolvedOptions().timeZone }))}</td>\n </tr>\n {/each}\n </tbody>\n {/if}\n {/if}\n {/each}\n </table>\n </div>\n</div>\n\n<style lang=\"scss\">\n\n :host {\n font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';\n width: 100%;\n }\n\n *,\n *::before,\n *::after {\n margin: 0;\n padding: 0;\n list-style: none;\n text-decoration: none;\n outline: none;\n box-sizing: border-box;\n }\n\n .Outcomes {\n \n width: 80%;\n margin: 30px auto;\n }\n\n .OutcomeTitle {\n color: #FFF;\n font-weight: 700;\n padding: 20px 0;\n }\n .OutcomeNoContent {\n color: #FFF;\n font-weight: 700;\n padding: 20px 20px;\n }\n\n // .TableContainer tbody {\n // max-height: 300px;\n // overflow-y: auto;\n // }\n\n table {\n \n color: #FFFFFF;\n width: 100%;\n text-align: center;\n tr {\n margin-top: 10px;\n line-height: normal;\n }\n\n }\n\n table tbody {\n display: block;\n max-height: 300px;\n overflow-y: scroll;\n margin: 30px 0;\n }\n\n table thead, table tbody tr {\n display: table;\n width: 100%;\n table-layout: fixed;\n }\n\n</style>","import { PointerMode } from \"./types\"\n\nconst sizeSchema1 = {\n radius : 247,\n rRingInner: 253,\n rRingOuter: 294,\n rBg1: 300,\n}\n\nconst sizeSchema2 = {\n radius : 247,\n rRingInner: 259,\n rRingOuter: 280,\n rBg1: 286,\n}\nconst sizeSchema3 = {\n radius : 247,\n rRingInner: 275,\n rRingOuter: 280,\n rBg1: 286,\n}\n\nexport const themes = [\n {\n size: sizeSchema1,\n pointerMode: PointerMode.Partition,\n },\n {\n size: sizeSchema2,\n pointerMode: PointerMode.Arrow,\n },\n {\n size: sizeSchema1,\n pointerMode: PointerMode.Arrow,\n },\n {\n size: sizeSchema1,\n pointerMode: PointerMode.Partition,\n },\n {\n size: sizeSchema1,\n pointerMode: PointerMode.Arrow,\n },\n {\n size: sizeSchema2,\n pointerMode: PointerMode.Arrow,\n },\n {\n size: sizeSchema3,\n pointerMode: PointerMode.Arrow,\n },\n]\n","\nexport enum SpinStep {\n launch = 'launch',\n loop = 'loop',\n halt = 'halt',\n}\n\nexport enum Easing {\n quad = 'quad',\n cubic = 'cubic',\n quart = 'quart',\n quint = 'quint',\n // \n expo = 'expo',\n sine = 'sine',\n circ = 'circ',\n}\n\nexport const easing = {\n in: {\n quad: (x: number) => Math.pow(x, 2),\n cubic: (x: number) => Math.pow(x, 3),\n quart: (x: number) => Math.pow(x, 4),\n quint: (x: number) => Math.pow(x, 5),\n //\n sine: (x: number) => 1 - Math.cos((x * Math.PI) / 2),\n expo: (x: number) => x === 0 ? 0 : Math.pow(2, 10 * x - 10),\n circ: (x: number) => 1 - Math.sqrt(1 - Math.pow(x, 2)),\n },\n out: {\n quad: (x: number) => 1 - Math.pow(1 - x, 2),\n cubic: (x: number) => 1 - Math.pow(1 - x, 3),\n quart: (x: number) => 1 - Math.pow(1 - x, 4),\n quint: (x: number) => 1 - Math.pow(1 - x, 5),\n //\n sine: (x: number) => Math.sin((x * Math.PI) / 2),\n expo: (x: number) => x === 1 ? 1 : 1 - Math.pow(2, -10 * x),\n circ: (x: number) => Math.sqrt(1 - Math.pow(x - 1, 2)),\n }\n}\n\nexport const easingGrad = {\n quad: 2,\n cubic: 3,\n quart: 4,\n quint: 5,\n sine: Math.PI / 2,\n expo: Math.LN2,\n circ: Infinity,\n}\n\nexport const easingGradX = {\n in: {\n quad: (x: number) => 2 * x,\n cubic: (x: number) => 3 * x ** 2,\n quart: (x: number) => 4 * x ** 3,\n quint: (x: number) => 5 * x ** 4,\n sine: (x: number) => Math.PI / 2 * Math.sin(Math.PI / 2 * x),\n expo: (x: number) => Math.LN2 * 10 * 2 ** (10 * x - 10),\n circ: (x: number) => -1 / 2 * (1 - x ** 2) ** (- 1 / 2),\n },\n out: {\n cubic: (x: number) => 3 * x ** 2 - 6 * x + 3,\n }\n}\n\nexport const params = [\n // basic\n {\n launchTurns: 5,\n launchSpeed: 0.2,\n loopSpeed: 15,\n haltTurns: 2,\n haltSpeed: 0.16,\n },\n // faster\n {\n launchTurns: 2,\n launchSpeed: 0.5,\n loopSpeed: 20,\n haltTurns: 2,\n haltSpeed: 0.22,\n },\n // faster with more turns\n {\n launchTurns: 6,\n launchSpeed: 1.38,\n loopSpeed: 45,\n haltTurns: 6,\n haltSpeed: 0.50,\n },\n]","import { easing, easingGrad, params, SpinStep, Easing, easingGradX } from \"./class.spinner.util\";\n\nexport class Spinner {\n\n deg: number = 0\n fps: number;\n // spinable: boolean = true\n degTarget: number = undefined\n step: SpinStep = undefined\n tick\n cb\n easingType: Easing = Easing.cubic\n shouldHalt\n\n param = params[2]\n\n constructor(inits){\n this.tick = inits.tick\n }\n\n public launch(){\n this.shouldHalt = undefined\n this.step = SpinStep.launch\n this.ticker()\n }\n\n public halt = (deg, cb = () => {}) => {\n this.shouldHalt = () => {\n this.step = SpinStep.halt\n this.cb = () => {\n cb()\n this.setDeg(deg, 0)\n }\n this.degTarget = deg + 360 * this.param.haltTurns\n this.continueRepeat()\n }\n }\n\n private continueRepeat = () => setTimeout(() => this.ticker(), 30)\n private ticker = () => {\n \n const linkSpeed = this.param.loopSpeed\n\n const easingDuration = (deg: number) => \n 33 * easingGrad[this.easingType] * deg / this.param.loopSpeed\n\n const animations = {\n launch: () => {\n const degTar = 360 * this.param.launchTurns - this.deg\n const t = easingDuration(degTar)\n \n this.animateF(t, this.deg, degTar, easing.in[this.easingType], easingGradX.in[this.easingType])\n },\n halt: () => {\n const t = easingDuration(this.degTarget)\n this.animateF(t, 0, this.degTarget, easing.out[this.easingType], easingGradX.out[this.easingType])\n },\n loop: () => {\n this.setDeg((this.deg + linkSpeed) % 360, easingGrad[this.easingType])\n this.continueRepeat()\n }\n }\n\n const stepSwitcher = {\n [SpinStep.launch]: () => {\n this.cb = () => {\n this.step = SpinStep.loop\n this.setDeg(linkSpeed, easingGrad[this.easingType])\n this.continueRepeat()\n }\n animations.launch()\n },\n [SpinStep.loop]: () => {\n if(this.shouldHalt && this.deg === 0){\n this.shouldHalt()\n }else{\n animations.loop()\n }\n },\n [SpinStep.halt]: () => {\n if(this.deg === 360 - linkSpeed){\n animations.halt()\n }else{\n animations.loop()\n }\n }\n }\n\n stepSwitcher[this.step]()\n \n // switch(this.step){\n // case SpinStep.launch:\n \n // break\n // case SpinStep.loop:\n \n // if(this.shouldHalt && this.deg === 0){\n // this.shouldHalt()\n // }else{\n \n // this.setDeg((this.deg + linkSpeed) % 360, easingGrad[this.easingType])\n // this.continueRepeat()\n // }\n // break\n // case SpinStep.halt:\n \n // if(this.deg === 360 - linkSpeed){\n \n // const t = 30 * easingGrad[this.easingType] * this.degTarget / this.param.loopSpeed\n // this.animate(t, 0, this.degTarget, easing.out[this.easingType], easingGradX.out[this.easingType])\n // }else{\n // this.setDeg((this.deg + linkSpeed) % 360, easingGrad[this.easingType])\n // this.continueRepeat()\n // }\n // break\n // }\n }\n\n private setDeg = (deg, speed) => {\n this.deg = deg\n this.tick(deg, speed)\n }\n\n animateF = (duration: number, startAngle, target: number, easing, _easingGrad) => {\n let start = null\n\n const step = () => {\n let timestamp = new Date().getTime()\n if(!start){\n start = timestamp\n }\n const progress = timestamp - start\n \n const translation = target * easing(progress / duration) + startAngle;\n const speedCur = Math.abs(_easingGrad(progress / duration))\n //const speedRealCur = target / duration * Math.abs(_easingGrad(progress / duration)) * 33\n \n this.setDeg(translation, speedCur)\n\n if (progress < duration) {\n setTimeout(() => step(), 30)\n }else{\n this.cb()\n }\n }\n step()\n }\n\n animate = (duration: number, startAngle, target: number, easing, _easingGrad) => {\n\n let animationId = null;\n window.cancelAnimationFrame(animationId);\n let start = null;\n\n const step = (timestamp) => {\n \n if (!start) {\n start = timestamp;\n }\n \n const progress = timestamp - start;\n const translation = target * easing(progress / duration) + startAngle;\n const speedCur = Math.abs(_easingGrad(progress / duration))\n \n this.setDeg(translation, speedCur)\n \n if (progress < duration) {\n animationId = window.requestAnimationFrame(step);\n }else{\n this.cb()\n }\n }\n \n animationId = window.requestAnimationFrame(step);\n }\n}","import type { Point } from \"./types\"\n\nexport const getSymmetricalPointFromScalar = \n (length: number): Point => ({\n x: length,\n y: length\n })\n\nexport const getPointOnCircle = \n (radius: number, angle: number, center: number): Point => {\n\n const centerPoint: Point = getSymmetricalPointFromScalar(center)\n\n return {\n x: centerPoint.x + radius * Math.cos(angle),\n y: centerPoint.y + radius * Math.sin(angle)\n }\n }\n\nexport const getPoint = \n (num: number, length: number, r: number, rCenter: number): Point => {\n\n const arc = 360 / length;\n const psai = Math.PI / 180 * (-90 + arc * (num - 1/2))\n\n const rCenterPoint = getSymmetricalPointFromScalar(rCenter)\n const rPoint = getSymmetricalPointFromScalar(r)\n\n return {\n x: rCenterPoint.x + rPoint.x * Math.cos(psai),\n y: rCenterPoint.y + rPoint.y * Math.sin(psai)\n }\n }\n\nexport const getPointWithNext = \n (num: number, length: number, r1: number, r2: number) => {\n\n const getPointx = (num: number) => getPoint(num, length, r1, r2)\n \n return {\n point: getPointx(num),\n pointNext: getPointx(num + 1)\n }\n }\n\nexport const getTrianglePointsY = \n (height: number, isPointUp: boolean, yBase: number) => {\n return {\n y1: yBase,\n y2: isPointUp ? yBase - height : yBase + height,\n y3: yBase\n }\n }\n\nexport const getTwoPointsOfLineGradient = (radius, index, length, angle) => ({\n x1: radius,\n y1: radius,\n x2: radius * (1 + Math.cos(2 * Math.PI / length * index + angle)),\n y2: radius * (1 + Math.sin(2 * Math.PI / length * index + angle)),\n})\n\n\nexport const pointPlus = (point1: Point, point2: Point): Point => ({\n x: point1.x + point2.x,\n y: point1.y + point2.y\n})\n\n","import { getPointOnCircle, getPointWithNext, getSymmetricalPointFromScalar, getTwoPointsOfLineGradient, pointPlus } from \"./calc.point\"\nimport { ArrowMode, Point, PointerMode, ContentDirection } from \"./types\"\nimport { mapObjectValueToTuple } from \"./util\"\n\nimport { findDegWithPointerMode } from \"./business\"\nimport { themes } from \"./themes\"\n\nenum RotateDirection {\n clockwise = 1,\n anticlockwise = -1,\n}\n\nexport class SvgCalc {\n arrowmode: ArrowMode.DownFromTop\n radius\n center\n length\n ratio\n theme\n themeIndex\n options\n contentdirection: keyof typeof ContentDirection\n\n constructor({\n size,\n radius,\n options,\n themeIndex,\n contentdirection,\n }){\n this.contentdirection = contentdirection || 'anticlockwise'\n // size\n this.center = size / 2\n this.ratio = size / 375\n // options\n this.options = options\n this.length = options.length\n // theme\n this.themeIndex = themeIndex\n this.theme = themes[themeIndex]\n //\n this.radius = radius\n }\n\n get sizeImage () {\n const getSize = (length) => this.ratio * 48 * 5 / length\n\n if(this.length <= 3) return getSize(4)\n\n switch(this.length){\n case 8: \n case 7: return this.ratio * 24\n case 6: return this.ratio * 36\n case 5: return this.ratio * 48\n case 4: return this.ratio * 56\n default: return getSize(this.length)\n }\n }\n\n getSizeImageByPartition(index) {\n if(this.options[index].name){\n return this.sizeImage / 2\n }else{\n return this.sizeImage\n }\n }\n\n getSvgImageProps (index, partitionDivisor: string | number = 1.25){\n const sizeImage = this.getSizeImageByPartition(index)\n\n let baseRadius\n if(this.options[index].name){\n baseRadius = this.radius - sizeImage / 2 - 3 * this.ratio\n }else{\n baseRadius = (this.radius - sizeImage / 2) / Number(partitionDivisor) - 3 * this.ratio;\n }\n\n return {\n ...this.getPropsForPartitionInfo(index, this.getOffsetImage(sizeImage), baseRadius, ContentDirection.outward),\n width: sizeImage,\n height: sizeImage,\n }\n }\n\n getSvgTextProps(index) {\n const sizeImage = this.getSizeImageByPartition(index)\n\n let baseRadius\n if(this.options[index].image){\n baseRadius = this.radius - sizeImage - 6 * this.ratio\n }else{\n baseRadius = this.radius - 6 * this.ratio\n }\n\n return {\n ...this.getPropsForPartitionInfo(index, this.offsetText, baseRadius),\n }\n }\n\n getSvgTextPropsAdjustedByImage(index) {\n const props = this.getSvgTextProps(index)\n const size = this.options[index].image ? 80 : 100\n\n const objectSize = {\n width: size,\n height: size,\n }\n \n return {\n ...props,\n ...objectSize,\n x: this.contentdirection === 'clockwise' ? props.x : props.x - objectSize.width,\n y: props.y - objectSize.height / 2,\n }\n }\n \n get offsetText (){\n return {\n center: 0,\n position: {\n x: 0, //option.name.length * 4,\n y: 0\n },\n \n transform: {\n x: 0,\n y: 0,\n }\n }\n }\n\n getOffsetImage (sizeImage) {\n \n return {\n center: 0,\n position: {\n x: -1 * sizeImage / 2,\n y: -1 * sizeImage / 2,\n },\n transform: {\n x: 0,\n y: 0,\n },\n }\n }\n\n get direction () {\n return RotateDirection.clockwise\n }\n\n getAngleSelf (index, contentDirection?: ContentDirection) {\n const baseAngle = 360 * index / this.length * this.direction\n const fixerAngle = 90 * (contentDirection !== undefined ? contentDirection : ContentDirection[this.contentdirection])\n const resultAngle = baseAngle + fixerAngle\n return resultAngle\n }\n\n getPartitionPositions (index, baseRadius, offset) {\n \n const angle = \n this.angleTransform(this.arrowmode) +\n this.direction * index * 2 * Math.PI / this.length\n\n const point = getPointOnCircle(baseRadius || this.radius - 9 * this.ratio, angle, this.center + offset.center)\n \n const transformOrigin: Point = pointPlus(point, offset.transform)\n const pointResult = pointPlus(point, offset.position)\n return {\n transformOrigin,\n point: pointResult,\n }\n }\n\n getPropsForPartitionInfo (\n index: number, \n offset: any,\n baseRadius?: number,\n contentDirection?: ContentDirection\n ) {\n \n const { point, transformOrigin } = this.getPartitionPositions(index, baseRadius, offset)\n const getTransformOriginString = \n (vector: Point) => \n Object.keys(vector).map(axis => `${vector[axis]}px`).join(' ')\n \n return {\n ...point,\n style: [\n `font-size: ${13 * this.ratio}px`,\n `transform: rotate(${this.getAngleSelf(index, contentDirection)}deg)`,\n `transform-origin: ${getTransformOriginString(transformOrigin)}`,\n ].join(';')\n }\n }\n\n getPartitionDraw(\n index: number,\n ){\n\n const rPoint = getSymmetricalPointFromScalar(this.center)\n const rRingInnerPoint = getSymmetricalPointFromScalar(this.radius)\n\n const { point, pointNext } = getPointWithNext(index, this.length, this.radius, this.center)\n\n const ds = [\n `M`, ...mapObjectValueToTuple(rPoint),\n `L`, ...mapObjectValueToTuple(point),\n `A`, \n ...mapObjectValueToTuple(rRingInnerPoint),\n `0 0 1`,\n ...mapObjectValueToTuple(pointNext),\n `Z`,\n ]\n\n return {\n d: ds.join(' ')\n }\n }\n\n getDeg(index?: number){\n return findDegWithPointerMode(index || this.length - 1, this.length, this.theme.pointerMode)\n }\n\n getSpinnerProps(){\n const centerPoint = getSymmetricalPointFromScalar(this.center)\n return {\n // transform: `rotate(${convertArcToDeg(0)})`, //arcStart\n \"transform-origin\": `${centerPoint.x} ${centerPoint.y}`,\n }\n }\n \n private angleTransform = (arrowmode) => {\n switch(this.theme.pointerMode){\n case PointerMode.Arrow:\n switch(arrowmode){\n case ArrowMode.DownFromTop:\n case ArrowMode.UpFromCenter:\n return - Math.PI / 2\n\n case ArrowMode.DownFromCenter:\n case ArrowMode.UpFromBottom: \n return Math.PI / 2\n }\n\n case PointerMode.Partition:\n return - Math.PI / 2\n }\n }\n}\n","import { _postMessage } from \"./message\"\nimport { setMessage } from './business';\n\nexport class Process {\n\n id: string\n halter: Function\n afterSuccess: Function\n afterSetMessage: Function\n fetcher: Function\n \n private guid: string\n private isDrawn: boolean = false\n private drawnIndex: number;\n private retryingTimes: number = 0\n private retryingMaxTimes: number = 4\n\n constructor(params){\n this.id = params.id\n this.afterSetMessage = params.afterSetMessage\n this.halter = params.halter\n this.afterSuccess = params.afterSuccess\n this.fetcher = params.fetcher\n }\n\n handleHaltProcess(index, message, fn: Function = () => {}){\n _postMessage({ id: this.id, type: 'wof-private-message-spin-before' })\n\n const cb = () => {\n setTimeout(() => {\n _postMessage({ id: this.id, type: 'wof-private-message-spin-after' })\n fn()\n this.setMessage(message)\n }, 1000)\n }\n\n // spinner.halt(calc.getDeg(index), cb)\n this.halter(index, cb)\n }\n\n getRetryingPeriod() {\n if(this.retryingTimes === 1){\n return 5 * 1000\n }else{\n return 10 * 1000\n }\n }\n\n drawInit() {\n this.retryingTimes = 0\n this.guid = undefined\n this.isDrawn = false\n }\n \n async drawer (guid?: string){\n if(guid) this.guid = guid\n if(!this.guid) throw new Error('GUID NOT FOUND')\n\n if(this.retryingTimes >= this.retryingMaxTimes){\n\n if(this.isDrawn){\n this.handleHaltProcess(this.drawnIndex, 'DrawFailed')\n }else{\n this.handleHaltProcess(undefined, 'Timeout')\n }\n\n this.drawInit()\n\n return;\n }\n this.retryingTimes += 1\n\n let isFetchCompleted = false\n let isTimeouted = false\n \n setTimeout(() => {\n if(!isFetchCompleted){\n isTimeouted = true\n this.setMessage({\n mode: 'timeout',\n modeValue: 'Retry'\n })\n }\n }, this.getRetryingPeriod())\n\n try {\n\n const { data, message, index: _index } = await this.fetcher(this.guid)\n this.drawnIndex = _index\n \n isFetchCompleted = true\n\n if(!data.success) throw new Error()\n switch(data.item.state) {\n case 'fulfilled':\n this.isDrawn = true\n break\n case 'drawn':\n this.isDrawn = true\n throw new Error()\n }\n\n if(isTimeouted) return;\n\n this.handleHaltProcess(this.drawnIndex, message, this.afterSuccess)\n this.drawInit()\n\n } catch (e) {\n if(e.message === \"Failed to fetch\"){\n isFetchCompleted = true\n this.handleHaltProcess(undefined, 'ErrorNetwork')\n return\n }\n\n if(e.message.includes(\"is not valid JSON\")){\n isFetchCompleted = true\n this.handleHaltProcess(undefined, 'ErrorJSON')\n return\n }\n\n if(isTimeouted) return;\n this.drawer()\n }\n }\n\n setMessage(entry: string | object) {\n setMessage(this.id, entry)\n this.afterSetMessage()\n }\n}","var img = \"data:image/svg+xml,%3csvg width='375' height='400' viewBox='0 0 375 400' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_4318_310)'%3e%3cpath d='M337 199.999C337 282.839 269.855 349.999 187 349.999C104.145 349.999 37 282.839 37 199.999C37 117.158 100.302 53.9152 179.817 50.1611C182.197 50.0577 184.606 49.9985 187 49.9985C189.394 49.9985 191.803 50.0429 194.183 50.1611C273.683 53.9152 337 119.552 337 199.984V199.999Z' fill='url(%23paint0_linear_4318_310)'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_4318_310' x='-13' y='-0.00146484' width='400' height='400' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='25'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 0.972917 0 0 0 0 0.729167 0 0 0 0.5 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_4318_310'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_4318_310' result='shape'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_4318_310' x1='114.86' y1='324.947' x2='267.254' y2='60.9799' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFB915'/%3e%3cstop offset='0.24' stop-color='%23BF8500'/%3e%3cstop offset='0.41' stop-color='%23FFE26A'/%3e%3cstop offset='0.46' stop-color='%23FFDD63'/%3e%3cstop offset='0.53' stop-color='%23FFCF51'/%3e%3cstop offset='0.58' stop-color='%23FFC13F'/%3e%3cstop offset='0.82' stop-color='%23FFB915'/%3e%3cstop offset='1' stop-color='%23FFF100'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='294' height='294' viewBox='0 0 294 294' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M147 0.0581055C65.8444 0.0581055 0.0595703 65.8429 0.0595703 146.999C0.0595703 228.154 65.8444 293.954 147 293.954C228.156 293.954 293.956 228.154 293.956 146.999C293.956 65.8429 228.156 0.0581055 147 0.0581055ZM147 270.75C78.6584 270.75 23.2491 215.355 23.2491 146.999C23.2491 78.6422 78.6584 23.2476 147 23.2476C215.342 23.2476 270.751 78.657 270.751 146.999C270.751 215.34 215.357 270.75 147 270.75Z' fill='url(%23paint0_linear_4318_345)'/%3e%3cdefs%3e%3clinearGradient id='paint0_linear_4318_345' x1='246.941' y1='47.0578' x2='35.8266' y2='258.172' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23000604'/%3e%3cstop offset='0.4' stop-color='%23303030'/%3e%3cstop offset='1' stop-color='%23000604'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='122' height='122' viewBox='0 0 122 122' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_321_83)'%3e%3cpath d='M60.9995 29.999C43.8758 29.999 29.9995 43.8754 29.9995 60.999C29.9995 78.1227 43.8758 91.999 60.9995 91.999C78.1232 91.999 91.9995 78.1227 91.9995 60.999C91.9995 43.8754 78.1232 29.999 60.9995 29.999Z' fill='url(%23paint0_linear_321_83)'/%3e%3c/g%3e%3cg filter='url(%23filter1_f_321_83)'%3e%3cpath d='M42.9866 67.179C42.3386 67.179 41.7446 67.107 41.2046 66.963C40.6766 66.819 40.2266 66.627 39.8546 66.387V63.975C40.2146 64.167 40.5626 64.335 40.8986 64.479C41.2466 64.623 41.5946 64.737 41.9426 64.821C42.2906 64.893 42.6446 64.929 43.0046 64.929C43.3046 64.929 43.5806 64.905 43.8326 64.857C44.0846 64.797 44.3006 64.707 44.4806 64.587C44.6726 64.467 44.8226 64.323 44.9306 64.155C45.0386 63.975 45.0926 63.765 45.0926 63.525C45.0926 63.189 45.0266 62.907 44.8946 62.679C44.7626 62.451 44.5826 62.241 44.3546 62.049C44.1266 61.857 43.8566 61.653 43.5446 61.437C43.1846 61.173 42.8366 60.879 42.5006 60.555C42.1646 60.231 41.8886 59.853 41.6726 59.421C41.4566 58.977 41.3486 58.461 41.3486 57.873C41.3486 57.297 41.4506 56.775 41.6546 56.307C41.8586 55.827 42.1526 55.413 42.5366 55.065C42.9326 54.717 43.4006 54.447 43.9406 54.255C44.4806 54.063 45.0866 53.967 45.7586 53.967C46.4306 53.967 47.0486 54.039 47.6126 54.183C48.1766 54.327 48.7226 54.543 49.2506 54.831L48.2966 56.883C47.8406 56.667 47.4026 56.505 46.9826 56.397C46.5746 56.289 46.1666 56.235 45.7586 56.235C45.5186 56.235 45.2966 56.271 45.0926 56.343C44.9006 56.403 44.7266 56.499 44.5706 56.631C44.4266 56.751 44.3126 56.901 44.2286 57.081C44.1446 57.261 44.1026 57.459 44.1026 57.675C44.1026 57.975 44.1626 58.233 44.2826 58.449C44.4146 58.665 44.5946 58.869 44.8226 59.061C45.0626 59.241 45.3506 59.445 45.6866 59.673C46.1666 59.985 46.5626 60.321 46.8746 60.681C47.1866 61.029 47.4206 61.413 47.5766 61.833C47.7326 62.241 47.8106 62.697 47.8106 63.201C47.8106 63.873 47.6846 64.461 47.4326 64.965C47.1806 65.457 46.8326 65.871 46.3886 66.207C45.9446 66.531 45.4286 66.777 44.8406 66.945C44.2646 67.101 43.6466 67.179 42.9866 67.179ZM49.5076 66.999L52.2256 54.147H55.8076C56.8516 54.147 57.6856 54.303 58.3096 54.615C58.9456 54.927 59.4016 55.365 59.6776 55.929C59.9656 56.493 60.1096 57.147 60.1096 57.891C60.1096 58.659 59.9656 59.325 59.6776 59.889C59.4016 60.453 59.0116 60.927 58.5076 61.311C58.0036 61.683 57.4096 61.965 56.7256 62.157C56.0416 62.337 55.3036 62.427 54.5116 62.427H53.1436L52.1896 66.999H49.5076ZM54.7276 60.195C55.2676 60.195 55.7356 60.111 56.1316 59.943C56.5396 59.763 56.8516 59.505 57.0676 59.169C57.2956 58.833 57.4096 58.431 57.4096 57.963C57.4096 57.423 57.2656 57.027 56.9776 56.775C56.6896 56.511 56.2636 56.379 55.6996 56.379H54.4396L53.6296 60.195H54.7276ZM59.5039 66.999L59.8279 65.451L61.4659 64.731L63.2299 56.415L61.8979 55.695L62.2219 54.147H67.9099L67.5859 55.695L65.9119 56.415L64.1479 64.731L65.5159 65.451L65.1919 66.999H59.5039ZM67.3845 66.999L70.1025 54.147H73.2345L76.2225 63.615H76.2945C76.3305 63.423 76.3665 63.189 76.4025 62.913C76.4505 62.637 76.4985 62.343 76.5465 62.031C76.6065 61.707 76.6665 61.389 76.7265 61.077C76.7865 60.765 76.8405 60.483 76.8885 60.231L78.1845 54.147H80.5965L77.8785 66.999H74.8725L71.7405 57.279H71.6505C71.6385 57.351 71.6145 57.525 71.5785 57.801C71.5425 58.065 71.4945 58.383 71.4345 58.755C71.3865 59.127 71.3265 59.511 71.2545 59.907C71.1945 60.291 71.1345 60.639 71.0745 60.951L69.7965 66.999H67.3845Z' fill='%23FFF8BA'/%3e%3c/g%3e%3cpath d='M42.9866 67.179C42.3386 67.179 41.7446 67.107 41.2046 66.963C40.6766 66.819 40.2266 66.627 39.8546 66.387V63.975C40.2146 64.167 40.5626 64.335 40.8986 64.479C41.2466 64.623 41.5946 64.737 41.9426 64.821C42.2906 64.893 42.6446 64.929 43.0046 64.929C43.3046 64.929 43.5806 64.905 43.8326 64.857C44.0846 64.797 44.3006 64.707 44.4806 64.587C44.6726 64.467 44.8226 64.323 44.9306 64.155C45.0386 63.975 45.0926 63.765 45.0926 63.525C45.0926 63.189 45.0266 62.907 44.8946 62.679C44.7626 62.451 44.5826 62.241 44.3546 62.049C44.1266 61.857 43.8566 61.653 43.5446 61.437C43.1846 61.173 42.8366 60.879 42.5006 60.555C42.1646 60.231 41.8886 59.853 41.6726 59.421C41.4566 58.977 41.3486 58.461 41.3486 57.873C41.3486 57.297 41.4506 56.775 41.6546 56.307C41.8586 55.827 42.1526 55.413 42.5366 55.065C42.9326 54.717 43.4006 54.447 43.9406 54.255C44.4806 54.063 45.0866 53.967 45.7586 53.967C46.4306 53.967 47.0486 54.039 47.6126 54.183C48.1766 54.327 48.7226 54.543 49.2506 54.831L48.2966 56.883C47.8406 56.667 47.4026 56.505 46.9826 56.397C46.5746 56.289 46.1666 56.235 45.7586 56.235C45.5186 56.235 45.2966 56.271 45.0926 56.343C44.9006 56.403 44.7266 56.499 44.5706 56.631C44.4266 56.751 44.3126 56.901 44.2286 57.081C44.1446 57.261 44.1026 57.459 44.1026 57.675C44.1026 57.975 44.1626 58.233 44.2826 58.449C44.4146 58.665 44.5946 58.869 44.8226 59.061C45.0626 59.241 45.3506 59.445 45.6866 59.673C46.1666 59.985 46.5626 60.321 46.8746 60.681C47.1866 61.029 47.4206 61.413 47.5766 61.833C47.7326 62.241 47.8106 62.697 47.8106 63.201C47.8106 63.873 47.6846 64.461 47.4326 64.965C47.1806 65.457 46.8326 65.871 46.3886 66.207C45.9446 66.531 45.4286 66.777 44.8406 66.945C44.2646 67.101 43.6466 67.179 42.9866 67.179ZM49.5076 66.999L52.2256 54.147H55.8076C56.8516 54.147 57.6856 54.303 58.3096 54.615C58.9456 54.927 59.4016 55.365 59.6776 55.929C59.9656 56.493 60.1096 57.147 60.1096 57.891C60.1096 58.659 59.9656 59.325 59.6776 59.889C59.4016 60.453 59.0116 60.927 58.5076 61.311C58.0036 61.683 57.4096 61.965 56.7256 62.157C56.0416 62.337 55.3036 62.427 54.5116 62.427H53.1436L52.1896 66.999H49.5076ZM54.7276 60.195C55.2676 60.195 55.7356 60.111 56.1316 59.943C56.5396 59.763 56.8516 59.505 57.0676 59.169C57.2956 58.833 57.4096 58.431 57.4096 57.963C57.4096 57.423 57.2656 57.027 56.9776 56.775C56.6896 56.511 56.2636 56.379 55.6996 56.379H54.4396L53.6296 60.195H54.7276ZM59.5039 66.999L59.8279 65.451L61.4659 64.731L63.2299 56.415L61.8979 55.695L62.2219 54.147H67.9099L67.5859 55.695L65.9119 56.415L64.1479 64.731L65.5159 65.451L65.1919 66.999H59.5039ZM67.3845 66.999L70.1025 54.147H73.2345L76.2225 63.615H76.2945C76.3305 63.423 76.3665 63.189 76.4025 62.913C76.4505 62.637 76.4985 62.343 76.5465 62.031C76.6065 61.707 76.6665 61.389 76.7265 61.077C76.7865 60.765 76.8405 60.483 76.8885 60.231L78.1845 54.147H80.5965L77.8785 66.999H74.8725L71.7405 57.279H71.6505C71.6385 57.351 71.6145 57.525 71.5785 57.801C71.5425 58.065 71.4945 58.383 71.4345 58.755C71.3865 59.127 71.3265 59.511 71.2545 59.907C71.1945 60.291 71.1345 60.639 71.0745 60.951L69.7965 66.999H67.3845Z' fill='white'/%3e%3cg filter='url(%23filter2_d_321_83)'%3e%3cpath d='M83.3025 35.3267L78.3808 35.977C86.2141 41.4307 91.4018 50.4464 91.4905 60.7183C91.6383 77.5525 78.1148 91.3125 61.2806 91.4603C57.0388 91.5046 52.9744 90.6622 49.2942 89.1251L50.9939 85.0311L43.6336 85.9917L38.7119 86.6421L46.2496 96.5002L47.9493 92.3914C52.0581 94.1059 56.5807 95.037 61.325 94.9926C80.1101 94.8301 95.1855 79.4739 95.0229 60.6888C94.9342 50.5498 90.4116 41.4898 83.3173 35.3267H83.3025Z' fill='url(%23paint1_linear_321_83)'/%3e%3c/g%3e%3cg filter='url(%23filter3_d_321_83)'%3e%3cpath d='M75.7797 25.4835L74.0653 29.5923C69.9565 27.8779 65.4339 26.9467 60.7043 26.9911C41.9192 27.1537 26.8291 42.5098 27.0064 61.2949C27.0951 71.4339 31.6177 80.4791 38.6972 86.6423L43.6189 85.992C35.7856 80.5382 30.6127 71.5226 30.524 61.2506C30.3762 44.4164 43.8997 30.6565 60.7339 30.5087C64.9757 30.4643 69.0254 31.3068 72.7203 32.8439L71.0206 36.9379L78.381 35.9772L83.3026 35.3269H83.3174L75.7797 25.4688V25.4835Z' fill='url(%23paint2_linear_321_83)'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_321_83' x='-0.000488281' y='-0.000976562' width='122' height='122' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='15'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_321_83'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_321_83' result='shape'/%3e%3c/filter%3e%3cfilter id='filter1_f_321_83' x='33.8545' y='47.9668' width='52.7422' height='25.2124' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='3' result='effect1_foregroundBlur_321_83'/%3e%3c/filter%3e%3cfilter id='filter2_d_321_83' x='28.7119' y='25.3267' width='76.3125' height='81.1733' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='5'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_321_83'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_321_83' result='shape'/%3e%3c/filter%3e%3cfilter id='filter3_d_321_83' x='17.0049' y='15.4688' width='76.3125' height='81.1733' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='5'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_321_83'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_321_83' result='shape'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_321_83' x1='86.7076' y1='35.306' x2='24.1663' y2='97.8472' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.28' stop-color='%23303030'/%3e%3cstop offset='1' stop-color='%23000604'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_321_83' x1='88.8306' y1='39.4421' x2='57.2832' y2='95.2084' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFB915'/%3e%3cstop offset='0.24' stop-color='%23BF8500'/%3e%3cstop offset='0.41' stop-color='%23FFE26A'/%3e%3cstop offset='0.46' stop-color='%23FFDD63'/%3e%3cstop offset='0.53' stop-color='%23FFCF51'/%3e%3cstop offset='0.58' stop-color='%23FFC13F'/%3e%3cstop offset='0.82' stop-color='%23FFB915'/%3e%3cstop offset='1' stop-color='%23FFF100'/%3e%3c/linearGradient%3e%3clinearGradient id='paint2_linear_321_83' x1='34.448' y1='80.3064' x2='64.3802' y2='27.3922' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFB915'/%3e%3cstop offset='0.24' stop-color='%23BF8500'/%3e%3cstop offset='0.41' stop-color='%23FFE26A'/%3e%3cstop offset='0.46' stop-color='%23FFDD63'/%3e%3cstop offset='0.53' stop-color='%23FFCF51'/%3e%3cstop offset='0.58' stop-color='%23FFC13F'/%3e%3cstop offset='0.82' stop-color='%23FFB915'/%3e%3cstop offset='1' stop-color='%23FFF100'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='120' height='120' viewBox='0 0 120 120' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M59.9219 6.00049L73.7783 30.0005H46.0655L59.9219 6.00049Z' fill='url(%23paint0_linear_321_83)'/%3e%3cg filter='url(%23filter0_d_321_83)'%3e%3cpath d='M59.9142 30C43.4507 30 30.1094 43.3414 30.1094 59.8049C30.1094 76.2684 43.4507 89.6097 59.9142 89.6097C76.3777 89.6097 89.7191 76.2684 89.7191 59.8049C89.7191 43.3414 76.3777 30 59.9142 30Z' fill='url(%23paint1_linear_321_83)'/%3e%3c/g%3e%3cg filter='url(%23filter1_f_321_83)'%3e%3cpath d='M41.9085 66.18C41.2605 66.18 40.6665 66.108 40.1265 65.964C39.5985 65.82 39.1485 65.628 38.7765 65.388V62.976C39.1365 63.168 39.4845 63.336 39.8205 63.48C40.1685 63.624 40.5165 63.738 40.8645 63.822C41.2125 63.894 41.5665 63.93 41.9265 63.93C42.2265 63.93 42.5025 63.906 42.7545 63.858C43.0065 63.798 43.2225 63.708 43.4025 63.588C43.5945 63.468 43.7445 63.324 43.8525 63.156C43.9605 62.976 44.0145 62.766 44.0145 62.526C44.0145 62.19 43.9485 61.908 43.8165 61.68C43.6845 61.452 43.5045 61.242 43.2765 61.05C43.0485 60.858 42.7785 60.654 42.4665 60.438C42.1065 60.174 41.7585 59.88 41.4225 59.556C41.0865 59.232 40.8105 58.854 40.5945 58.422C40.3785 57.978 40.2705 57.462 40.2705 56.874C40.2705 56.298 40.3725 55.776 40.5765 55.308C40.7805 54.828 41.0745 54.414 41.4585 54.066C41.8545 53.718 42.3225 53.448 42.8625 53.256C43.4025 53.064 44.0085 52.968 44.6805 52.968C45.3525 52.968 45.9705 53.04 46.5345 53.184C47.0985 53.328 47.6445 53.544 48.1725 53.832L47.2185 55.884C46.7625 55.668 46.3245 55.506 45.9045 55.398C45.4965 55.29 45.0885 55.236 44.6805 55.236C44.4405 55.236 44.2185 55.272 44.0145 55.344C43.8225 55.404 43.6485 55.5 43.4925 55.632C43.3485 55.752 43.2345 55.902 43.1505 56.082C43.0665 56.262 43.0245 56.46 43.0245 56.676C43.0245 56.976 43.0845 57.234 43.2045 57.45C43.3365 57.666 43.5165 57.87 43.7445 58.062C43.9845 58.242 44.2725 58.446 44.6085 58.674C45.0885 58.986 45.4845 59.322 45.7965 59.682C46.1085 60.03 46.3425 60.414 46.4985 60.834C46.6545 61.242 46.7325 61.698 46.7325 62.202C46.7325 62.874 46.6065 63.462 46.3545 63.966C46.1025 64.458 45.7545 64.872 45.3105 65.208C44.8665 65.532 44.3505 65.778 43.7625 65.946C43.1865 66.102 42.5685 66.18 41.9085 66.18ZM48.4294 66L51.1474 53.148H54.7294C55.7734 53.148 56.6074 53.304 57.2314 53.616C57.8674 53.928 58.3234 54.366 58.5994 54.93C58.8874 55.494 59.0314 56.148 59.0314 56.892C59.0314 57.66 58.8874 58.326 58.5994 58.89C58.3234 59.454 57.9334 59.928 57.4294 60.312C56.9254 60.684 56.3314 60.966 55.6474 61.158C54.9634 61.338 54.2254 61.428 53.4334 61.428H52.0654L51.1114 66H48.4294ZM53.6494 59.196C54.1894 59.196 54.6574 59.112 55.0534 58.944C55.4614 58.764 55.7734 58.506 55.9894 58.17C56.2174 57.834 56.3314 57.432 56.3314 56.964C56.3314 56.424 56.1874 56.028 55.8994 55.776C55.6114 55.512 55.1854 55.38 54.6214 55.38H53.3614L52.5514 59.196H53.6494ZM58.4258 66L58.7498 64.452L60.3878 63.732L62.1518 55.416L60.8198 54.696L61.1438 53.148H66.8318L66.5078 54.696L64.8338 55.416L63.0698 63.732L64.4378 64.452L64.1138 66H58.4258ZM66.3064 66L69.0244 53.148H72.1564L75.1444 62.616H75.2164C75.2524 62.424 75.2884 62.19 75.3244 61.914C75.3724 61.638 75.4204 61.344 75.4684 61.032C75.5284 60.708 75.5884 60.39 75.6484 60.078C75.7084 59.766 75.7624 59.484 75.8104 59.232L77.1064 53.148H79.5184L76.8004 66H73.7944L70.6624 56.28H70.5724C70.5604 56.352 70.5364 56.526 70.5004 56.802C70.4644 57.066 70.4164 57.384 70.3564 57.756C70.3084 58.128 70.2484 58.512 70.1764 58.908C70.1164 59.292 70.0564 59.64 69.9964 59.952L68.7184 66H66.3064Z' fill='%23FFF8BA'/%3e%3c/g%3e%3cpath d='M41.9085 66.18C41.2605 66.18 40.6665 66.108 40.1265 65.964C39.5985 65.82 39.1485 65.628 38.7765 65.388V62.976C39.1365 63.168 39.4845 63.336 39.8205 63.48C40.1685 63.624 40.5165 63.738 40.8645 63.822C41.2125 63.894 41.5665 63.93 41.9265 63.93C42.2265 63.93 42.5025 63.906 42.7545 63.858C43.0065 63.798 43.2225 63.708 43.4025 63.588C43.5945 63.468 43.7445 63.324 43.8525 63.156C43.9605 62.976 44.0145 62.766 44.0145 62.526C44.0145 62.19 43.9485 61.908 43.8165 61.68C43.6845 61.452 43.5045 61.242 43.2765 61.05C43.0485 60.858 42.7785 60.654 42.4665 60.438C42.1065 60.174 41.7585 59.88 41.4225 59.556C41.0865 59.232 40.8105 58.854 40.5945 58.422C40.3785 57.978 40.2705 57.462 40.2705 56.874C40.2705 56.298 40.3725 55.776 40.5765 55.308C40.7805 54.828 41.0745 54.414 41.4585 54.066C41.8545 53.718 42.3225 53.448 42.8625 53.256C43.4025 53.064 44.0085 52.968 44.6805 52.968C45.3525 52.968 45.9705 53.04 46.5345 53.184C47.0985 53.328 47.6445 53.544 48.1725 53.832L47.2185 55.884C46.7625 55.668 46.3245 55.506 45.9045 55.398C45.4965 55.29 45.0885 55.236 44.6805 55.236C44.4405 55.236 44.2185 55.272 44.0145 55.344C43.8225 55.404 43.6485 55.5 43.4925 55.632C43.3485 55.752 43.2345 55.902 43.1505 56.082C43.0665 56.262 43.0245 56.46 43.0245 56.676C43.0245 56.976 43.0845 57.234 43.2045 57.45C43.3365 57.666 43.5165 57.87 43.7445 58.062C43.9845 58.242 44.2725 58.446 44.6085 58.674C45.0885 58.986 45.4845 59.322 45.7965 59.682C46.1085 60.03 46.3425 60.414 46.4985 60.834C46.6545 61.242 46.7325 61.698 46.7325 62.202C46.7325 62.874 46.6065 63.462 46.3545 63.966C46.1025 64.458 45.7545 64.872 45.3105 65.208C44.8665 65.532 44.3505 65.778 43.7625 65.946C43.1865 66.102 42.5685 66.18 41.9085 66.18ZM48.4294 66L51.1474 53.148H54.7294C55.7734 53.148 56.6074 53.304 57.2314 53.616C57.8674 53.928 58.3234 54.366 58.5994 54.93C58.8874 55.494 59.0314 56.148 59.0314 56.892C59.0314 57.66 58.8874 58.326 58.5994 58.89C58.3234 59.454 57.9334 59.928 57.4294 60.312C56.9254 60.684 56.3314 60.966 55.6474 61.158C54.9634 61.338 54.2254 61.428 53.4334 61.428H52.0654L51.1114 66H48.4294ZM53.6494 59.196C54.1894 59.196 54.6574 59.112 55.0534 58.944C55.4614 58.764 55.7734 58.506 55.9894 58.17C56.2174 57.834 56.3314 57.432 56.3314 56.964C56.3314 56.424 56.1874 56.028 55.8994 55.776C55.6114 55.512 55.1854 55.38 54.6214 55.38H53.3614L52.5514 59.196H53.6494ZM58.4258 66L58.7498 64.452L60.3878 63.732L62.1518 55.416L60.8198 54.696L61.1438 53.148H66.8318L66.5078 54.696L64.8338 55.416L63.0698 63.732L64.4378 64.452L64.1138 66H58.4258ZM66.3064 66L69.0244 53.148H72.1564L75.1444 62.616H75.2164C75.2524 62.424 75.2884 62.19 75.3244 61.914C75.3724 61.638 75.4204 61.344 75.4684 61.032C75.5284 60.708 75.5884 60.39 75.6484 60.078C75.7084 59.766 75.7624 59.484 75.8104 59.232L77.1064 53.148H79.5184L76.8004 66H73.7944L70.6624 56.28H70.5724C70.5604 56.352 70.5364 56.526 70.5004 56.802C70.4644 57.066 70.4164 57.384 70.3564 57.756C70.3084 58.128 70.2484 58.512 70.1764 58.908C70.1164 59.292 70.0564 59.64 69.9964 59.952L68.7184 66H66.3064Z' fill='white'/%3e%3cg filter='url(%23filter2_d_321_83)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M66.0115 26.5482L59.9215 16L53.8332 26.5453C38.0637 29.4087 26.1094 43.2083 26.1094 59.8049C26.1094 78.4775 41.2416 93.6097 59.9142 93.6097C78.5869 93.6097 93.7191 78.4775 93.7191 59.8049C93.7191 43.214 81.7729 29.4181 66.0115 26.5482ZM59.9142 30C43.4507 30 30.1094 43.3414 30.1094 59.8049C30.1094 76.2684 43.4507 89.6097 59.9142 89.6097C76.3777 89.6097 89.7191 76.2684 89.7191 59.8049C89.7191 43.3414 76.3777 30 59.9142 30Z' fill='url(%23paint2_linear_321_83)'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_321_83' x='0.109375' y='0' width='119.61' height='119.61' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='15'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_321_83'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_321_83' result='shape'/%3e%3c/filter%3e%3cfilter id='filter1_f_321_83' x='32.7764' y='46.9678' width='52.7422' height='25.2124' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='3' result='effect1_foregroundBlur_321_83'/%3e%3c/filter%3e%3cfilter id='filter2_d_321_83' x='16.1094' y='6' width='87.6099' height='97.6099' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='5'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_321_83'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_321_83' result='shape'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_321_83' x1='52.6786' y1='39.0152' x2='67.1729' y2='5.19525' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.0604165' stop-color='%23FFB915'/%3e%3cstop offset='0.2375' stop-color='%23C48A02'/%3e%3cstop offset='0.477083' stop-color='%23FFE067'/%3e%3cstop offset='0.721875' stop-color='%23FFB915'/%3e%3cstop offset='1' stop-color='%23FFF100'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_321_83' x1='84.6312' y1='35.0879' x2='24.5011' y2='95.2325' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.28' stop-color='%23303030'/%3e%3cstop offset='1' stop-color='%23000604'/%3e%3c/linearGradient%3e%3clinearGradient id='paint2_linear_321_83' x1='44.6107' y1='96.0708' x2='83.0673' y2='17.9006' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.0604165' stop-color='%23FFB915'/%3e%3cstop offset='0.2375' stop-color='%23C48A02'/%3e%3cstop offset='0.477083' stop-color='%23FFE067'/%3e%3cstop offset='0.721875' stop-color='%23FFB915'/%3e%3cstop offset='1' stop-color='%23FFF100'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1.13725 6.59296C-1.06246 11.7081 1.3605 17.6636 6.54907 19.8949C11.7376 22.1261 17.727 19.7883 19.9267 14.6732C22.1264 9.55803 19.7035 3.60256 14.5149 1.37127C9.32636 -0.860015 3.33697 1.47782 1.13725 6.59296Z' fill='url(%23paint0_radial_4318_413)'/%3e%3cdefs%3e%3cradialGradient id='paint0_radial_4318_413' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(10.4878 10.6315) rotate(-156.73) scale(10.1906 10.0463)'%3e%3cstop offset='0.3' stop-color='white'/%3e%3cstop offset='0.3099' stop-color='%23FFFCDB'/%3e%3cstop offset='0.3232' stop-color='%23FFF9B2'/%3e%3cstop offset='0.3381' stop-color='%23FFF68C'/%3e%3cstop offset='0.3543' stop-color='%23FFF36C'/%3e%3cstop offset='0.3722' stop-color='%23FFF150'/%3e%3cstop offset='0.3925' stop-color='%23FFEF3A'/%3e%3cstop offset='0.4161' stop-color='%23FFEE29'/%3e%3cstop offset='0.4453' stop-color='%23FFED1E'/%3e%3cstop offset='0.4863' stop-color='%23FFEC17'/%3e%3cstop offset='0.6' stop-color='%23FFEC15'/%3e%3cstop offset='1' stop-color='%23FFEC15' stop-opacity='0'/%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='168' height='197' viewBox='0 0 168 197' fill='none' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cg style='mix-blend-mode:screen' opacity='0.41'%3e%3crect x='40.5713' y='46.3091' width='88.5275' height='107.038' fill='url(%23pattern0)'/%3e%3c/g%3e%3cg style='mix-blend-mode:color-dodge'%3e%3crect x='40.5713' y='46.3091' width='88.5275' height='107.038' fill='url(%23pattern1)'/%3e%3c/g%3e%3cg filter='url(%23filter0_f_4318_340)'%3e%3cpath d='M149.978 33.9845C130.034 23.738 107.649 18 84 18C60.3511 18 37.9664 23.738 18.022 33.9845C20.1463 32.904 22.3058 31.8607 24.4653 30.8733L84 179L143.535 30.8733C145.694 31.8607 147.854 32.8853 149.978 33.9845Z' fill='url(%23paint0_radial_4318_340)'/%3e%3c/g%3e%3cg filter='url(%23filter1_f_4318_340)'%3e%3cpath d='M149.978 33.9845C130.034 23.738 107.649 18 84 18C60.3511 18 37.9664 23.738 18.022 33.9845C20.1463 32.904 22.3058 31.8607 24.4653 30.8733L84 179L143.535 30.8733C145.694 31.8607 147.854 32.8853 149.978 33.9845Z' fill='url(%23paint1_radial_4318_340)'/%3e%3c/g%3e%3cdefs%3e%3cpattern id='pattern0' patternContentUnits='objectBoundingBox' width='1' height='1'%3e%3cuse xlink:href='%23image0_4318_340' transform='matrix(0.00345457 0 0 0.00285714 -0.0320035 0)'/%3e%3c/pattern%3e%3cpattern id='pattern1' patternContentUnits='objectBoundingBox' width='1' height='1'%3e%3cuse xlink:href='%23image0_4318_340' transform='matrix(0.00345457 0 0 0.00285714 -0.0320035 0)'/%3e%3c/pattern%3e%3cfilter id='filter0_f_4318_340' x='0.0219727' y='0' width='167.956' height='197' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='9' result='effect1_foregroundBlur_4318_340'/%3e%3c/filter%3e%3cfilter id='filter1_f_4318_340' x='0.0219727' y='0' width='167.956' height='197' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='9' result='effect1_foregroundBlur_4318_340'/%3e%3c/filter%3e%3cradialGradient id='paint0_radial_4318_340' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(84 154.231) rotate(-90) scale(122.077 115.044)'%3e%3cstop stop-color='%23FFF8BA' stop-opacity='0.7'/%3e%3cstop offset='0.294792' stop-color='%23FFF8BA' stop-opacity='0.384271'/%3e%3cstop offset='1' stop-color='%23FFF8BA' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint1_radial_4318_340' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(84 154.231) rotate(-90) scale(100.846 95.0365)'%3e%3cstop stop-color='%23FFB82F' stop-opacity='0.7'/%3e%3cstop offset='0.305208' stop-color='%23FFB82F' stop-opacity='0.384271'/%3e%3cstop offset='0.523958' stop-color='%23FFB82F' stop-opacity='0.165346'/%3e%3cstop offset='1' stop-color='%23FFB82F' stop-opacity='0'/%3e%3c/radialGradient%3e%3cimage id='image0_4318_340' width='308' height='350' xlink:href='data:image/png%3bbase64%2ciVBORw0KGgoAAAANSUhEUgAAATQAAAFeCAYAAAAL7uOjAAAACXBIWXMAACxKAAAsSgF3enRNAAAgAElEQVR4nOy9T6xtT3YetFZdM4gUKRGMGOFImdOZMXMPGUEzACwrAmfCCIUeMHAQilqRRQyE0ECEIisSbYSwgxRoEzsIIaAtJYoSBHRHSCgIS21ZEbYI0JYtx4r77ULn7FprfetP1d7n3HPfu%2b/eV7/fu%2becvWtX1d676qtv/alV3HunL%2blLem5i5p988EP8P3vvf/3Li/mSbklfAO0NJ2b%2bUSL60XGH%2bP0PE9FX4M4vx/%2bJN/AkfiX8/v7lX%2b/9G5%2boPV/SR05fAO0zT8wsg/UrA6gu//7J13xXzESXbseXL9cEfTB0x4/UO3%2bLiL47vn9//Luk71zb0Pt3Pk4zvqTnpi%2bA9hkkZv4WMKzPgknx4clljoM0%2buzHBz8Bvh9cPr8wv9eXvgDaK0nM/O3Brn7sES3aMYNJ3u8hfEwzPAd46tKkx1UELabH9M6aAa7KFhZ5Y/q1we4uYPf1hzT9S7opfQG0j5iY%2bZtDNLz8%2b0MvUbPCDz8WiO5NqRXsIO1kqUUfnXTbx/XmvhfmnmPXw3ek7w193tce1sQvKaUvgPbgNKx9X3lJ4OLyRwaHGct4FtTddXF9kcO2Rbqvh56XR%2b8uv5Z8b02/8oXRPS59AbQ7EzN/NQDXQxXxGafOIwn7P2HIfTrmlknjrC3PR5/bezWyRmFn/tRxmZ7BMYj8N6bvDYPEBei%2bdU8B7zV9AbSTiZm//lLgRYQWvzuurQss4ezUtY9KdcPurnfdU58HgudGQUa286PHrr1jxIkx4gJy3/lidZ2nL4A2SaDveoiSHtNZkXF6zcEBb0QEufNh6HV7QVX7BXI7/F2mG7vqrQB4aU8HlhXbXJfXq4%2bTRoVn6%2bQE4L59XxFvL30BtJGGlfErt7pFVGqguwHrfGHH5dA5hnZb6c9MwBqfk04D4C03ny4pZM6ivDMgd74pz2JxV4B777q4dwtoA8C%2b%2bhylPQt6XL1E9ejt5VCiVeeumbaLfaZbX/GDkW0GYyhlnyEz96YzAIjsjCgzNH/1WYCrdXHnb2m0vN/1Kt8lwL0bQHsEgLny6HmuEZU7QyRot7qGKXCw/91PDQMuvj0wcaxleYdFyvewvKs7u3U/h2hzgAOjwrwJ5/zi2IHxs91HfvE9uIy8WUAb3vVfe1G3iQKEUp7DE8BfTiFa4Z4RfjhGdNI14q50Ao9WQmY1H5RNvav9c8g5c8kF2LDtaVJYusYBMzvNym53/n2G68jFAfjbb5G9vRlAG0r8r35M94lzeq/lwVAsF7PxosiQIQEZilJ3pocIwSU7O3NXp7VOt1ySm6DXjCfVq3OxmgKpIP99ImpxZo6NOf/9FtTvvBX29tkC2nCjuADYP/vQcudfcr6EaLcJa5Hp3XZRPFyLm68hMVMNZ4sm9vTlTLoDAMsTfYAIZ%2biaAhzN0Kw4tAY4ry%2brEe2FwI2Go%2b%2bFvX3zvss/bfpsAI2ZLxbIn/zYLGzeHst3s9jpMhQi54kLqywJOHgUOXvFN2DeffCY27Iu9b6%2beD/4eb2UY2eLmo4Ark9AaH5ZTdvOWFBPQfjzXEO%2b9TmB26sGNGb%2b2tCDffWRUSbuATCXM4DZ%2bQqrUxzG/R3QUYibXjC%2b9x0/n%2bWtVgcsbSqnBuz9fVfBizMi7qGNQg1L5R4nQBQdXCnun2FwwTbxPHC7FQTLdAW3wd6%2bf8f1HyW9OkADEHu4Qp918eDtAzXrum7xtFhwk1tFxJnI6cRWDxrPfsW8/HnqwvpZPdBicchC/NkdbPzx7tCLy%2buOAG7F8gp%2b538mHVx9U1NwCyJp/XTfNri9CkAbC7q/9mh9mK%2bDnq/ijuADIuPNUl0FZMd69foIO4jdv70CFdp6ORfP27hUnD8OAIkjiBlzu04EZXXxwGBn0bBwsrkrBmctmlobDpnbGV3biWau0qsSSz8poA3fsBcDMa2Hjkf4QjJyByJTuws3SmCsNHJndXlwtbuEB0OLNOBxKVQ3veE7pPtzaclgzvftfqxAg3x1jZnhndO5%2bdNHDKq2DMyA7fzwfhi4ffNTLqj/6ID2kv5hZX3%2bjz9eZl7mcOUlZf7x5UQRBgt2tbhw0tQIrAv285HS0WL76SSzYETP7qnZDpAYEi57PWKGHgMjqM0aUAAcR3CaU6uyTVPWlsXQc%2bkh4PaLQyT9qOD20QCNmX/wMUBszrQK2DimZflsBWYHQudafPU/zvOzOSOLtT/HD21W7/RocTreY8x6d%2bseBX4FsNV5sHTf%2bihyFraGutBJPmcpnZQxvdskslbln03PspLS8HO7ANujdwUr04sCGjN//6Vj4K8xqWBlN8o%2bufwsPt0jeDoGs7RKHsAaV8BG3np65hU/kNFFUXpaVWz0CbHvWeB3wM7w2NFE4IfNWuRMbY%2bvVwEoipsTS%2bkZcEsAXF9/7nneIrou04uvUHg4oL2EXmzJWs4pcQpGtcgzPXknmCVWUinv1xaBWYuXQPaR00zMTNPKBO9uZVVHV50qbwJsGfysxAgyUf82H1LHABdBLZewBjdt5wPWkrpaH897XkTf9jBAeymRMkl0JwFsWs4ZXVp5cgFmN2GaFy/x2G16r2MwU/DkI%2bXODRUfZJ2BV5kHd0m5sRveDH4OoCa6rDPCeQU%2bE1CbW0pD3lm5NdFLdWNxPf84x3mXrC/3nwfj2889SiR9FqAx83dfeg9Idoh2H/WICuhpKQcnOAIZ4Zitet6EsUS9XgLpcyIncwYxikD2kVNkabX%2bMPJUS8e98X7wS29oAWyIRrPqamZ2AB/jNC9cRuRYIdWW98YBBLv/kvIvWue%2bZghz8vGJ8m5Ov01Ef633/uP3FnAXoH0sBT85QLvzev/nBMHLBxF/7rZQTsTLDGZhe7cFyMZHUwGZHMPh8SI4twCp6WQyYR9n0zGbghzBw/gQ2FJZ1t6eBn7BzM6gEWVjgpdDvRL0qMgYz%2b0I/A/B7YzY%2bjLARmPv0/%2bm9/4Tt1x0GtCY%2bTsvEY56WSfdLIcV1xMl2DlAtRnOLcHsBLGK%2bSOXueVW2YFEBWLh2U2VkI9L8X215Q2s9Y%2bb%2b%2bVHzb04aFixBjasYSYtrkCtzl%2b2pGZlB8g6A7YMaEVhZ1lbP2sbz4j2AuD2D4novyWi//JI57YENGb%2bxlgQ/tF3634OmGW8qgDNPPzP1FJbJWfgdLKcqe6sRsfMyI6BzM/xuZaHpFHfFMCqd/CgVAJfvGGenJoBWyrS0y4kUTcBGxZbiqt2rGeClhoWLikNCkvN1xLc7nHXeHHWJuliUPj2sJh%2bF0%2bUgDacX//ll2vPcbpF1Fzm4goMTjpaHOrMIpjhyMmKrcTIymzHzmhRtFwBma2yvrF73SjqK5jBZLEqe53jtuVDdQnWnI7HZsrtyfNJR0%2bAWlY1Tco%2bALXUjhWwLUCtLvWozXpzdzz%2bjwZsNFxBvibA9iNydCwK/8ZLK/nPpFlXP82ogmxZAsnyuknuIzC7NvCodbVomZT7q2KivmoBZDrJ37r06%2bz5M%2byr3crPwjuKTIU9olTgh12AUVRldsCWno8LtdFdO65XDKamTbiWz9YOtnr1Y/SJyN72ouxmjATG59T1MWfMG9frx9CXFnI55xLHiQpy/O5Xt4GS3Hx3xb8QsF2kx3/h4vPae//Bpea/RET/IhH9wZep7/ZUiZtHM/7sYCVmHhdI5aCqwcz/ngNuLV7OrJSZoN3GyBIgFL3pIeJfFSn3kIFVPmsrFnOQTuSplhNtUm9BVvB7ZHHz3zScYddNOrKO9imKBBE5grq7j3NoFNnY7FjOf2M6rZN7VvoTl9v9XSL6Ay9f1/lUiZt6aEnR8gmGP%2bWsDwemzDC0Z%2b12Uber0pPF21QoWpSHAOjvZ//VfOZio5RjGLsZ6I4YWOVzd/fgmF/Vt%2bkpd30FkhsO3qJxp0GNMiJVuBTPrFw%2bcnt7OF4B2qS86SFDswRok5d10/v7OID2z/NQrr14xItbUunL5BDNnZkmf12SRI81aUW%2bcz5kBbDCdZml0Qkgm7GvCsg%2bQgBuXi9AX62AKOarOj1EVBkDKYFdbVHcwltE8ZTC7yWo%2baqwRj1Wg9qyJGjzMaj50uZU65ClTa47bq3P9RGWjf/jPzJEzk8OaJUYldOSnuXyEvu5AczidXUh6SQzKDpOiZcTS2VqSATlNSPz2ZhKa/bSr2LWnhVYL64IeVCsO6qcj4YMDMK8%2bGDU1faDxuKMIaM4Gh/JFdTAwom/FfDGO%2bcCBthUaEnXdj3czUdQ4o/29AytXJvSWZRm0ohde1awKek5DthOU2RsS71B6PG7fN7q9pPpsk3fb/xI7/2XmPn3iegfefEqQyqksIM8d4DQLesvy8Nci0xxgLK/JJZxRrw8AnVhaQmHCkbGzVd4FM7n1rRmYBwUzY1S7mpOwNTz9VMelIBvr58pjiUez8WzNptULFKGA8kZqF2gR/KFF8xAlwBzrhmdm/MwKnQAGi2lpxLKW%2b98DGrWOranyN1j4roqD10TYFu0clboo9K391u6zDTM/wsR/bGXrhFvb36wgLCTMkomCpHVUAlwdTk24m4Cs6q8pLw/5z/Wi3NHomUEMrn0uXS/vkd4UhNEnz3r2PLcvKMGF/Ioz05V%2biE7vtK9CXuTd3HNuhBB09DtWoo7diR%2bxmbi%2bSR2uls8LxPWwSTPxkI7I8Lmm3ghWPut3vsfJnDb%2bE9fGtDWIFYfqMAsDfRFjUtmVn9dcMIzYMYOPM4tHs9AVn1f%2bnm1gnUGKyyXpvmqpuOU34u/vlHlvRIAeZwvpfNuRyIR8MKXUKFSxgJ3ATug5WEdzUqO4HblPGxM7JJ1K9nalR2kexHmxqhnK1w9mFD8DLCo8QVY76YDNUOWhsK8Y100QZoJeJXgXD1kyX1Ewm6VdG9L39ZWiW6F1z3%2b7nQPkLkjBaAt05SZZUDjgxLRupmAK1y6CtszZ2VriyU9g5FVk8Bjkty7f3r1aoeKNcvX/LDO2MF6%2bhLKdgN0cxeeY2wACAHcouvHRtnlw35kfVrl5lGxN3lhibVFphYexjI8eNHII4aWS1ml2TNNjb%2bhzNPpn%2bu9m8hJO6D9fSL6xx5Xx55mIscRNM3Y2XFFdJqdrXRp7DO6VtwEZiX7usH1guw5pCoqZjYBtBtJWNUA/b4CsRmA2c/qxiGd6OU9D/VpOWtgowUY1IwtGldKEdQy5%2bMTN48ZFsXcq9UF4VS%2bl3B%2bvn/B2RDgxZmVuHp2NcZt6dd67z8qV%2bDY%2bc%2beV25OOpAcuvDh6DrFwuK/5dUnwYyfD2asV3MNZmxGBn9sv9KJZAxlyfELiDXe/2HLWP5ZyVqENrrd%2bc%2b/N6zH/RfeSTir9%2b7PhdKrdzspt03%2bxXfJet/jmHv%2b4z6Y3D893sSQIM/Zv9dIkP29cG2djkybedofb56HyuEl72rCkmdzzHyILNMUoCZj9hwqTNO38YRby/losZP9n9uuK67l9KW%2bGi87ZGb1Vzd469%2bkAyHkmDOTquNM3C9KyC0YWRmSyN3r8Ho9erOLZ5oAfXHN7NmmFkYaunSKrTgV1jdf%2b7kVMuExa7NcMQzQIWM7WCtaMbgoglIMu12EKJqxtFxvaH84NhU7Yzp16JbNVWay%2btnrNf0xXKD%2begHtEMxYX366lnBA%2bwEW5svpLBijYpxS8JfLtW7UkxHlGZxWujJ/3I41/X0UH79KM3HcA3jIE24kvb051qU0be0J4KsG81lgk26F0JBArWM5/vx%2bKD9tBLYlyGG5eKgEsUqULAB1CWAzQJvMgks92D27Rc2B7UQZ3%2bu9fwUP/EjI8IsPdbK9EczOMzOOB8rTt4PZhIWldq7BzIkXVUunSv%2bivjtYmYIZnHMOv/ek6pkeARjhdSFVsdpcWZPGNruEKQ5EcXDdj6CltemPThu2qYOPG2/jgW9a9nWbEka2JpMbbqdCCmzSFwQOVEcNt6nfwSHX3e01gweUCC/7b/hrhc4falmOX8xuJU7KOmL7rpwzCepYN71KKTZaZGiX3Vj%2b/dPFHaRbGZrPmuDHZaj5mc93DuBCLXf4ndVhp29V/D8WyPaxwqrjOd/B6qRtQX1S8W0KYHDi7BRXM5d4wFOqTFRuY232c9PjTpBbsbeCsVGwhk7ZWWRlBUurRU%2b4x%2bL5nBYx4fccVzL9KvhgeEa3pvNl9F44B0UdwCPFzshczuWn2VBJgDYr5Dwzi8gkHxWQTZhZecwuPgSzipXRrvhftXfKyKA50t5Hrezk6EQGX/MqKnaEIS0p0jA%2beLTuemc6ZMc/C3Crq%2bvVUk8vki5dJsLSMgGeACQ9tSsIeIUYeaxLcyXW2%2btVz2ABcuUjikemlzxgk%2bJzC9kvS52%2bFg9GkZNGwLRnR6i9gZhZ/pMZVmA2QRd3LIFHUeCx31kuDMWNqrBb3DHkMhVjToKZa28E4SmlrdpV3Gs414pc%2bFGyNAe45Yzl0rXJkU24/N2V1d1zGldItm7ioR4fX/Be%2bhBXr6d7U3F0Bx2Z7ISt2eSHEbyvy5nYBrcsB7vkadocWxNqtwNcOjrgxnsuVoBgWDfJ69l5Xh51JobaDGCey/xzOl3at6uDFUP7JhH9a89tVsW2bs2f8Yjzz%2b7z3MPODkXKAgVXXv/3sjIUM5chlKBEPMZBzDaGRmN452XPuYLZOQRJV%2bni0rgOFovjxHruTVumeomV6LceDxVsYBxQkXTJ1pCdZdHvWnqwOyAzM3YWRdDIJqORIN5TuP8ojlb3fJKl%2bcMvzdBOLZHSpU4xzUJwPxt0bwa0W8GsKPo2IwACx%2brYDLzmxzgUco9LxjwGW8XIAMwQ2PEZtBt7WACqCGLzt7pe27pyQq5SHKyir5zthXEW3DKwUTn4t3IAb76MlSXUjgRg8wPXART8wWYfu27U4OXbCuVWgOYvK35mtEpP%2b%2bUBbbqPZyVyPjAd99wb%2bvZBOc9lZrNj1QCcsTMrpIzMU%2bmzuGZjGRi85XLGyvK9WDlRhXr07KesM%2bSolz2JKNjKiq76OCM8hexiYlVVwAzYLqrHq3AII1aK2A8NMUyeCVaHVsdxvo38ahm9Dra98Xy5ib6ZJRRDFrEHkqtY17qL8HEVa4WZgazIZGs11QIaonJwCN%2bNz92uL1/J5FjIsP65TiPzTdfgezhO052fZgzt2UEfzzC0GQvLh1bsrHb2nDOKGct4jqgZRKsIaBNWVvuWIUiswu5UVlxSNibf9Z6mITfiU8C2FNnjvcYrL9XzPIJZCwVPx9xmFEq1CoKCkxm86subVpI4hj8eWUXBkAiNByCGrq2N0U%2btJ1%2b6HkRQZwFN7ahYGwdmk5laDkE%2bY2lcPAx3d%2bncjKEVRSzS6WgcbqlTTCVDu1gPHmPtXM3r86MV46jBrC7rEMxOsZNb9GaYyVwlZNZPdS3XYFZc7ZiRoVsFgiy2aVvIgvNYj3M9mBxtrbgX1/aD89DxNWcTUIxPSphqBraKtcm7QNaGz6/LcWVgwpgyQxLjwYWTXUB7u4JVC%2byMSraGTO1SyLWNeNPohgXGgtwOHiyxj/fCxXaiwNTw1AFl4uNQmifoF2ucNSre7wNSaQzQ2me6iOcA2oqdzSb9e9hZJb6VVxzqzsixmRrM/EXIxmKeRuaWcBuYSdsaHLM2zYHewEx%2b8Vgf6H3Xzr/SeUBI1kE5nUyO3v3k/FL5wsZCtpD9UayN3WEApZKtmX%2bZ1211l%2blo8XjferjOL3hfMzM9VdZH8X7SbR/sRVAytHw%2bP%2bF7InacZmh/pPf%2b/dnJlQ7te8/b0u4kmIUzt7CzqogzYHamrbfmkbOtOCYn1kAWlPpnGRl5IBNG6EGZQecya%2bD8LrkVoi/%2bvgPAajibUFS86oqlA9iMztll3bnLLlnblecF1iZN7X1Eve3IknYI2CerftWvbdc8oNsKgbgZtqbby%2b4l6FzLHCcw5ppNQ1mftrczMDG3FZ6/PrK2apJzR26bAw/Tsrhz9XxvBWa0ArTLGqnniZ2Zn3Ts2z139DOwckN107SybN6qN5PfjsFFdnMCzKxghiML/zcKQObOet0ZfD2djkGsLuw0iLnrbcgddWzNCcBGBODGbcR8rIEtspsmwCZAIgAHPm08nAGvXazP7kkciSX0N4/rt6C%2bRBGUPZgOoKRegJr0jQ4iMDai3N%2bTwm9O4mK49K5UXi7tO6VP6wfnNX3zKMNU5CS6X%2bycdfiKaazZWeJbnnUU5Z1Z3jRzmr0HzMx5HoFj5Gri%2bxUGgWs43OP4IyqpXPcCyNh4Sg1mk41SUpLQRPGez7zTFYD5L1wMPCo6tR8sK1EniKOYtq0cLJX/FlUxzqJIBysBoie/7vVpTXJuHnbPsHJgC3eyEj9R/F25ctwQDLLqF5Vf2uw9UHqK9UtdAtqdS51iOnLbeMiqgRdPPYLXPJXEYnLhKSNAuiiCzi1gZozBQFZurwIzY3ZrMBOdXNHwBODYztsBTCfmsEyqWrtK4D5BO6kqH23FguBjztrksjaipG2RtVnpY2%2bN66dYYh1b6%2bj%2b0ok3Cc09rh/Mp43VA56ttSGqutptiMvD2aBhNcUyFt/HaoYZEATalETRsLIBHuQ4NF898InSL56pdgloF/PoS4XmXs7mcGRC5g5Ku68N/sx6jSbNFpgju/KnQklRnERmVjDRCZBV7XCBJXnX3q8YGk%2buTecPQAyjHdbLvNwd5bKasYp%2bLWM/rywlLAPbscR2d9Jf%2blwCuLVmNSZwY/1UXZZaRz3w8gDsS3COtEWdBI/s41oFBYvAISKnLW1j5EQj%2b35S3fXY70sgeScQOe4l%2bKrpV2xXfFG53Fz%2b0fWAkGfQ4xzCTH3PXM1HYsitgMZUd/x8eAJohWgyy4hZU%2b6T4qYdi8Ea7xA1Wy5POm66X9cQjIqBujmeipdyTNpl6jsAzNGedovy7ASA6WfcKm9S0Ex/6DrWiV7mRMGZKDQTbzoKf6HeoW/D8Ynim24%2bLIAiYt8wlwZpzolrPf3uIG4WKwyK1QTx3vv4XomdtRhqjcurG4L%2byhVVy5TuiqU4eWbVwPOWOsX0QisFFrP85Lw/fAOYVWXeDGZhoJ4FM0zZk3YATQ%2bDnqf3WS1XSveRwkdjAVZSU3C1nEeYMV0/Kt%2bDGDl/Py2fS82tHKJNA8Ugh8m4Q6fcjW102pTLxpjiYNI1tQEkmMyQQKSbCMizUBFUuSAwk11zL3zR7bykfmJdWmNMzd5E4lS7zIqrCcZ5FYPHXqDYlriv58pAIP2nq7w67xm8DAzqr8ulPJSdLX3PMJ3YO/uc7OpTpWSc/7qNP5yv86iSAt8mYGZf4i5Mx22ywX8FFwWNfSC0UYydowBmrG3iCNTh2D42Wwlm5s4x/0fxXJN/toeBuJEw%2bYwX0dYi/PvC5P7w6sZDX8j4kNsAQ3zKo0yXb%2bTkUXiI0eYmIA5VwENrjmnLKQ/GuIeA12%2bCKqDhcamTQ3U4gTZnEJd/Ukrcw6AcIOy/x3XAs3XBdtSjXOzn6Uw1JmZj5fHp0LqpbThj%2bbpF7JSXPT1nmfLxkGnOAPLsfmjdrJY6udN5YblVJ7M7Xo5g4XUwdlq0I9HBFQaZGyQUnFa9l351zOocgzSAWG5LnRymTLVc%2bLyKudCBfjF0HPZgyV7sceJfajDovjoehQMxuoV8qyUoZ350Bsfg%2biFjZYuip2vERARFC%2bj1/%2bgMPF8iJSImgejpxM74XaupRU/XbjxePhwvMucsM9HzYeLmcqlTTC8kcvZqKBznmU0TBymDWy4nglk6OK27aMsUzKo6OLWiWMJp5aDIGcXL6RrKc2BGjOJZUUpcwuTmiCMAK26qFeyoG2shlfAA5Fn1/6PNqDciL85yEEfHmQ02DubN6jajf/cWUqBLF5FUQe3K1noCC6/EN1fariKo9xWT2GhNDAVXUU%2bsClBqWCJlNextW5IPBh81uWglelJEmrjMy59zorbLYt9S61Yz6Dkwo1vYGd3A0L5DRD92qkA6y9Dsy%2bHx4jxmZf/lFDvDZkbRzLUgDtrE3mbsrDmqL9%2bYivuYgFmr6sPSwIjQYhvitbLuj7orjAu2a1/PszC8wdk0ks%2bt%2b15HhlKyDUk1ayM8c4K14bnLuLB6bAG6GQasVWXonsCCIkvbr6nDfFdMTRiZZ2hQB9Zz8LtmaK7GOUsL5/SuZztnTVna43zPMJ1iaL33r95m7awZmh49Q%2bDuSZ2SaHcEZhVNm4JZvAIHfwSzkUGGbWZlXueySrH9ru0M7h4zMGsGTZU5xQ6tlfkliKU1neHXZFYypXvIi2u2G3CAsRTg2nWgK/YZayNhbtZ4OVOzNlLm1skmmAtd69fJaRuSKTufNWGVsvjdR4MNoA06//2MmLCPmVoJ/4OFzUIMxd8le5vNK6npt%2b4cdpT3eEK7R3//wvHQjtNpXKvYWTxZFbaSbBd1nGFmKk66Ar2fBYuYt2ClBkTo8Q/lQwOV9Un7wq1je65NbF4/N%2buUHNp9JEbS5Ly0p4c8mZ3qLSbpRiY9WxTUTVEOIiqCWyWSdnYUz/zamrG2eC8Yo4xEjBzlpk05tfFdDJ6KETR86tAB11k6nUesAWZO/qAsiTLxMl/EM/AK509BSpVOXXh36ZhOWze11nPLYa6D7rtnFqszTXounqcJQMCXycSeAS1alMIFFUOIuq6Z6BmNAB7MrF5nRXKRMjgwsyAqAzhJzarGKpZSxZuciZk7kEF9zmgyZ2g8Y3AnQcxdsMNDYqXCV4WNkQITiFSFHOjERPm2pSP21xVxIJJ2f07EO/x%2brQqccXOE2T7KC6IgGgrCkik7RmbWQHFO2hAicmzYtthWrCeWI%2b0KDyg/r/MGAhQ5c/YDw8B6M5TTvmeYTjO05y9WTyVKlz/P0ooUhro/MkfFdGQ1YItKylK8T5t3lk0krQAzFCUj8GNV6Ch7DsyAfRVvMAmadwKYNlfrweklUEp4IHivuz6fx4AH0YnmrI3JjAvaq1zQ2tqQoGfEEMGwGmEsFN9dtZjaBdQuKw22PpYxNeris0bes7%2bPhf7o2HQAACAASURBVO1XFoXUbTwHWzKFy5dkIpwxNXuuKO52eehVoFZ9zLeKiysDwTw9EBzoHnZGLyFyXh%2bg/anPw%2b/ngFksL0JkVfYU44ICPe5o5EinY2QIZm2eT/6wK3EpZqbVBMEnyQFoMGZEMDM22F0%2bTZUTL9STn2XY2yBmKMVxPG1vrUdVzpgEbJ3kZjoiuQo2DiaiUiTFUNoJ3Jjc3ps8gKcz0iRolRonWVVeuEwKQS3AF819WAWhDtCg4X1Je0Jd7CNxMHFibgpwZfjucwnBMbKzssRVNVHy9unUUqeYbgW0hyxWfy4rm6V1mZEOIKgU%2bfTnWsS11Nz5AtMcG8PBWfAYx8wwlE9spRNtGwXx24PZLtaFuy3DgFdPo9icJTwYhvOxk%2brVcI0OenycKKLpcfPk3wg9%2bfez6GOFTql9w3dn4q8p3EEpL/XxADayWGjimc/kAULa7ndHZ9Op%2bceTHgqHE308qWSAEFZHpODvn2GdSlHcibXQ4gJsK15XMr0paCG03wSfF9%2bz75zPbukmQDu7WH1B0EKmk%2bA2y1CCSwU2k0PhmsTOFnozQkAchxqWBi4Vqa14fSVyskFiGconsDEBM7x3GaxN4nqJ6KuWwxrEPEvzzyU/xAFixbN2FtE4R%2bi13b3/De5jj2lGTuzcTzclBT2CWw/BFZt825Xz%2br0wJBBEw/Ad3LO0nc2BT1gPoKZhvWFR%2btVqOT4J9uwkA0sCwLKUNFIHCUDoNHqsQC0/gsmVk7IjpJ5Od7Gza5vOGgX0gpN6NKY4EqrzxYCpWBOcm7Elp3%2baIFdSRxX6J7cqgENZga1FcVOXxsintLGgPDxyeBAjU5hHR9niBlh0Ts6SaUyx4X0XqOObZYhVuhHGeyqzrAAMfkG2PH7rXcxLBTJuVFIepzyoVr5tbAr7y/9bxzDcJmjhkNlwMxcXQ220bNyTgIz5lUEhsIjdFPfd1RUNBPZYChCOKwkqY4S7KAK8f5h4HBfMu5r9h7t%2bfq5%2br7f6nmE6s5Yzpl87k%2blwlpgTqWPGNqtPvk9mk2kzDFWufxXMQsayrRHMXLngz0QUwAxFQQGKtrOKyuvfGQIKMLOWezBrdn/gEK/r/XisvpQ1iwnA4V%2bzZZBwH%2bM/OdHsWbVxHywLN9tOf1sqA3%2bwruZ06yybtcO9k7H%2bsuE6Urc%2b0jPN69pUX6GbhOA1heVwyCyhCQ1yI7OWibGaCJo9N2yJmwwZ24WN8tdwnPRWww7H3GyM3A0lvpnPSL/ynItvNgqcFTtXDyc%2b/Ac8BF9%2bRe8m7CyKVSUzLNeKyu/FnCBZui%2bbq45ak6iyOHI6M7tY7sGBGQ7Kq2FBRKOq3bldbvAuTji/NXW%2bs6z%2bubIzdu4iITAP6DwNZkbdG1P8v4JIug/UNpjfpgpwyWC6/u7emmp5RA3STSxlkggXYp3clf/oq3bdoWqzdhhYsOnu4NhVLEQlW5UtJHWw5QOyAOGVgDu6U%2bMVJF3a6bTIfqNoWeW/W9wkukPkJHqM2JlmROh4Kffs3CmRM573eXAWZhA7cXLP%2biYss7lNN3SGbbF8JlEtu9lecdFcC6ZuGdA2PhIzm5UfZ//4cEtwjU88XBb96yJziHVMinGCyy4STvQuCGz58vtFUgx3reIeiQC4i54Ey4%2boe7DA69VfDLzpiuVKrqUifkLI7NSOtNwqLFw/qCf6oRWPdHq8kzdDHomc4as7n99Peme/13v/AzHbLelet43nWztLanY/V8PiYtFL5jMbaBMwi4iKoJ2kAwRLOQOig34FK2a5wBy%2be50ZO8ARnyq1fGpbWwZ0qsllZY1M99TicaVO9WPSgx6ccSzJliKyH%2beF8WAZytr6iGkmIIjPM%2birImsTCynenkRCuWDQhb1uqrznwcq2fXen1oe7hqcn%2bIuV3e0%2banJumBz2tgF57dIWZH/poVXcwWrV%2b1DXkBye27G7pTx6O7k5RS/Pp7/83ALu0aHRWae3Qz1agvXblF95hUBgM5OLD2Ezjbh8yrlCRI98cZ9QMDNUk9%2bGNefATHVK1X6YBZhZao6NsrDH8OZVAxV93eCpcluAmSsLr/MProVDrPq35u75EtOtge5NnpnoD0W/11DnNjLw0NtpDLfRmMZtMFhkwKn5Zcq81gpwfWI2SYOKEXpF2Rnb4pdeEr2bYQ9REzXlExlaGB1n7n%2bZZ6Xxv6GYPT1L3LzWcY/ISfR8sbNiNul3uGyqx5r4d%2bnRxDZk8NsAYjQCOAaE94xlmltEAjYAtFa1SX83FU1X3v/apds%2bDe5BCJGZ2Re5smJnkV3RCUZGFAIOxm/IHGNCFwy5fiyJVNeHgpWIqBbFoF0kpXQ8XEgUxVIVz%2bJQt1BFKuL1KPKhCLmHyI6ilrTXi5hwnWOOYMWNVs9FVI4qZPcyEocTNaMOLQiF4SG62GnuVj14pbcwxbbC0pnFzf%2bv9/6PpktvTPcyNHqYtVPS4XQxP8fld47GQTm6GLxhxp20r7Rg6cyJYIblBCho58BMUxOGAjRgAmZ2GUR65WFhVAsiW8RXK864gzCchuckR1MzYiJ7THYtshBsNkTU5SsT84xO75Obq7mRRdDFp%2bomRABYeAxgWQx3w2FSYjbrLEsfamoVbqO905Qd%2bsIhtrYFq6dO0qmr%2b57kH/aZVPbAopijgXquvlmug9L/w1OFH6TnANqNa63C7UwA7OwrmpWcI3PWSerBmGOuAQEls1NskSaN1xld3SLqMD0VMzWnWTvh2l4wM2V/bG1nYItHYiUDwDggExCL4asJQCxFCDExEcE46fTapG5mB27qagKhwRFq2Socri3IcD3YTvufPjd3g%2b5Ag0xSp38vcYUHotrIC4Qxxs7wdW%2bpGPwq9Ud3I4TvotCqyOWZe8ZmnUrfs288ouS7RU6i54mdeIzDwfoFzC2c1vmKBd5VGdAJCRYo71iDOhHOdZH5ZPnycuhsLNf5T6FFE0ZOKWq6heZrIwApa4Q1pSFeGiejSdyMJZyDdqfZD9sWru%2bcYbs71Q%2bPY/NAf5U1T4d9EJ9URd4hGGOsHMTRaxu17P1LtC7SyNOT6AeiYffiJop7u3HDWzw7tMU73e51oGjZC7E3PbPN191L6%2bZMxMyiqJeo5k61/vnmB%2b6ffQwPngDtV3vvf5QekJ7D0Ois2Al38pjsC4NAzDc/JmB2lA9mOqbMQBxC2nevO2N3KxUTq46tbqYiuE5P3BSr/DXN5u0pG9PdUUyknLEcB4RD8X7dqCX4udmx5hgqkyn3K/WAKff39jW4xnQKaDTI1yC4i%2bOu3QupEGjA7x%2buiYEN3hdMIAVL0/a2BrmtGVaf41nh%2bmBwqFJ6ZicyPScVDLHuxJJOjfmfflTzngtoD7J2FuyM8AEVvmnTMo5POx0XsiJkZwBisQR2ORDTvO4ML%2bMxqA9dNKSzU/AoBxBvaulbu2g0uE7EvV0PlYFsr2wCYjQHMWnPFZAC1TNwsUXyKj1enwUHfdiwWla6z2ZW1im4wXtBMLRj8K4YdFnNcrTwHlTPqc%2by%2bZDrsqqj2XvUT8nnduFadFLXQHmGRb6Jcl/LCF9jEathcgv0TUwzh1eF3L/fe3%2b2dVPSswCt9/712y5YHEb6fXeD5qdqZauciwd4etb1N/kzeYqrzjF10RBwUuoIoCRZQ34o1fToeL/NFOqE40ZBrInNoAaxlieaJi4TzGAkMCW7GhzSlnWchhoDoCA30etc1d59BMEN69S8ct8CbAygzKDzOwVqDhHDW0YrUGZq3GBNGFrFYSIs%2byhaiAPIoZRS5TcxvdJf18npo6kYU9iekwVm0d%2blvz2/%2bPb0XIZ2Sd87k2nxXO64epKmz/XEvNOYYhf1bKOZTxO%2byjTg8pfMaCZg5qLkZmaG37PeLNQxuT/mGsQY81UgBkzMfLk4AJlXtrNrh/cXM0xiQUiTdAMHa5zBzTEwuNk2mBCCG0u94uoWwLAENWmdA7WwN4Nbbla/a3y/9kzX/TlOHnJnUTd4fgyFVt0ynG6hd6n4UxX9zLnWnEuPALTTdPEZ5ocbc3l9TO5kZ2stZsBJGayzLV4JS6ya%2bK0dgFmTGd6DmTmUTowA6gZigSBl0O/upKwUje8BMfP/MGbRsvVSyjcV12BEIMea1dSA7VZwS89exUtHTIOuzY7bSnvTvaGYv4NUM1KJoIYMCURtFefJ2B9JG1Q5D22JRmdQ1SGL87o97F11v4xOHovcD0rBJw9%2bHBgDfrf3/kuPbMmzAa33ftO%2beZJuebyrvKfKgfGmPmTkRYMqmSNhka/fcBN83KX8bMiLc5bOMDMdkKIzUjYCvmZFYyoQuz6vhhE8PBMzUuRFP7OGslmDBaCB5dXghosIDNwq1kZEibUBBA9/MgOfFplVAWp8BtSEu1WWcve%2bcJLysBSvuHl8VO9xMiF7BxF/NB2ZOsuGeu5jK3/1rqsW6REMjc6G/Jhaag6Se1ZBBAtf6pQUA/Z99R6WbNtNqYGfYEYUOdj4RjquJyAEDujNdICFWZtgtQHu7akOq7KigUDVBRZAbHaDpUR2V8CWAOAExBqCGImf2hAvLw1oe2gfC1Hkilawwt3fPbhlMDVwawPc2lIkFQOInWteoXji5ed3P%2b9%2b/vUbAyQEtcDSKA7GxMpSDp/AfUNXKjg0ep7T7PpsAY7H7OxChn78oFE3p0cB2jmx806Z89lkedFpheLrOHM9iAd4mK5ERYHowOiUuzSABq5Hje4NYKbUB%2bfuAsxgMVQxwoAF%2bJFdgNjIqWIfsrQIYvaMHKtDcsYuy9BO2X%2bERYiIOgE3zOjATR9UW4uk7J%2bQgn3w9RPlv4n4ze4F3z9HpX4butZ9Lap6roT22DNqWufUSEBQJwKcdVh90Kn9rjvE3nE8qvhcNk03Du/fvC37ufQQQLvH7DqfNJ5p6ZxWNlI5rea3ll66dDiCzoLAE1PxZFONzveKc5kzI8D4O2UNCNDOOrc/ixrECBhNDWLmYSEsbYh9DQapwJYMaL0fQSdQ4A09lfxHUG0FbqUxgUGfp3fS9B6dLjXsmEUJ1Oy9OFATVpdAzfRf6CBt78IfkLIgyK3/jCASSKRnacew1Be/jlN0qp2Vf/dofZirBqZHMTQ6s8vxuVtf67XuSqGDuQHuqz5ufHVx6svBqRSmVR2zyCRksXlgZj7u2ihZmFyztpihgXWXdNMXeREnDmhjYx7ECIDMMTG0YzZ/jsGKOVq5M0czrKoYqUwKrBNH4IbyV2uGjYCOg4nZ8%2bJC1I0sEhbV%2bueCt60WG3yv8vzw3XumVo0w1b81LMejmRsFjr3FfmH9KrI0z0jte09/6VBZthyT0S/jWNzceu8/tSry3vRIQDuJuLci%2bjl4Q6ZztsoZL9tTS6fWGOiVIUzkxB9rXhxgNzCzWFacr2NoIXVSZW3P9XBrwTI4Y2MZxBCc2CDL/NzE8kkGGgZ37gBpCQOgKnBL5SBra570OdbWxJFZHGjZifcN2rg3pan1U26dgyFF7ln97MASKRZZF3I9sSs0SgUaNpnI3ZK50I8PRxLuEIVg6YBzlm6jFTeO6r97W/bz6WGA1nu/rBr4rTuutL/RufZAmTl7JU7MKEQBlw78z1R/BuU40CnYGS%2b6g9tN/C5m1jwzk3aoor%2bpbsYtyxE2oPTJt7JmYwZiBCBm3MuOm3gEui%2bEQgUSIF/hSwVuDFo3E/PMTshshWaRlLRSvCPUQzW4TwS10INAV0UUa7B66kky6bTg4qhnwzYVRYWfB6DE/qy7KzyXvtOBF/yzxc2fuPfCo/RIhkZHS6Hqx48dinyOImuex4qHul4Rcjj7pLMOsU5YNvFSGD0rV5FViyrrcOmegU1pngkwmQbdRMJjNmbSn4GYAmSzK4yB0QDTpoaR1jDM0PCZC%2bVFI4OAGzmwNNaGbIv1OduLSeDmlnvBhiu8K/Dt9cLyMHieTAH8QIGPdiRvkUaxk03lEMR/lmAFfiYu%2bgc6fFTQeV/isoyTpd0ubv7D3vt372zqYXo0oN3lk%2bZTDXiWeji8fvD6MDF2V4U/7kCGC43Rb0esHGfZlOqKrqGDpIGFC2Zk2CiYgbV5aPI3YAPGJ9Sh2FpK3Xr4GMREvApsTP6ZsGkNubKLZr5epqgfP4bzLxOKrgHcrEkAo75uef4cRVJhbxgeSAkcK8BWcODa6txlYBKSdwUOv2idlPpc2Xofe7qF0xgwZimjQX1Vsn4fh8py6pz%2bOmeqOwWCf%2b1MpnvTQwFtIO80AsdjrJcnHlo10XXK%2bz0eLEZ3CvQQKdX6GF7gyzLUgSVNXoU0BTNy36MRAOpRHRGImsA4UN/tBmcBYnQAYuSFTbsRAQ1wb0CdlmdLeGEA0VG6GkHZvrQJuKFI6pCq%2bffjJgNka2hQ0UcsYIh7MQBwu/cFy6GqrhnUJqFn1ImLIg66vU6g8O798871Ho2kNF4n4uaNS53%2bxJlM96ZHMzQ6ZmnHNz3Tod1LqV0qe928dcauyE93E6dc12HYdzQYMj53AWYcvmszkJmF3skuA4zskQEPVSAmS310NAQQswCRAsY0nFr3zObc6oEMG4ke/rYSwbM2AtYWDKnA2gK4iSGBwVLayImAHmiNrZnV0b%2bhvbqmom%2bc/BDJcFUFN5iozAoBYGmfLHra1uLrTN899MrfrLhLE%2b2MpaWJ01eeRko8cPtSp9/ovf8gFvvI9HBAO1wKNYH9ThnALEdtaL4pzYNi1IxODwCj0X4MyngFkubyocgZ2Zk418qALEgAsDR2wOJaqqcC91E9kDAmb41roNh3ICZAxgcgNsADYxCZCwosj5IWaTTb/OhjZA5tSgC3Jq2GtjhwAwup4U3Te3IiKIKDOj%2bPSwXU2HRe3gIq4MiQHxhQekWgXQxuGmnjZGi89AHDnJnYOZno7579F25TzxexXsT3DNNLMDQ645N2f7r9TUXBUphMnHEZel1D5T08pbjpCc7piTXFn0A9DcxsoI353YFZjsc1wFKNnU07fkP9kIqa1lKxlOqgjiDGNYgxwN9e8V65W3vJBloDIq76tN0ggEAgxwWi7BFH1qZPQStRKPXt1/sD/zYENbtte9agMpiCGr5DBTWrMhkJsNU4gUJHagpy0C2CwsszLPg16fox6DTKNIdiZ2JsVTnFhfNDenXhe/anptkflF4K0ObWzgORL6WJAiG/FCpmF%2bkd5pK9fknzxxFZlEO1TA5GuwY4oTFABkKoil3r2TFCXxd2%2biy%2bmvjSIK6XDHIbUMasuNSLMcCHhkJUg0ChD2PgSxz3AZU2BPGokYIbJgE2sVwq5gJrEzgRYPNLyFiDLhKsRjBSyTpxyFSk%2bjAFNW140Q/sWVlwR2gvG1CoyLsY%2bt6xNtS1miAnB8vy0EOg9BY4ogr12eky6czm/s6y%2bAelZ%2b0psErMfJGV/1CVJVkA5eWHg34Mc/FSyLoYghoCDUQQVSZBgaE5vy%2bxtkFndCFlwG9M8kcFM5jl9z4uZTUtQ6ymUm9kiSiyeSOAMTMpwXRBo4woasoyIL2%2bHiU2DhzFCePCZ2YA16SH6eM%2b49Keyw1tE7vZBhsCQxJtRLyqE/ldzYu4%2bHvcfykeyobt465HtU2bLk/q48vmtoLbXP7rOd17YLO9AjbYW0B0TH3fxV22zNs/OuxBIN%2b77jOwqX4KtrzTtuz3J%2bXSKMvps2DrPBzv/vtoc/yEZ1numh7q8aDm3tUf6b1/v3rlj0wvxdBoxtJWs8ARtE6vPSR9fqi6UCvoRCTzNTrTymcAs6OkeBXYlLGzCMzkGImkFpoXMWOWvLhTzMbSNhApxRVCZElPqExsFAbSYFJBVnAVMxm2pxOFPMb6n8Vgc6ytuWfILoik3d7wCBmiYgviKDu9m2njFt1kdayYLJUN7rV5l4pgmGBQEcQk4dJsJBT9DgxI06bizNIneaY3HBtVFjPPWP/%2bnY8BZvSSgNZ7/8nyOHk%2bWtoB4ooBPDzSiVfhMgcMSeVMWP/8CbGd9%2bAn6h5kZcYSiaxzE4o8DhGknNzSvRwQ%2bBAQmmxGQqqcd3qbZoPDeBiDSOn3GpCzrEuoAAjFsMAWY1%2bALD4mXIfJ1b9ZcMlGarX0QGLAFi2lTXVtnv3HCBwqgipo5GdG2vYBxsFIUInVsZ3C5FO/KjqwCwk1z%2bbSBoOiFyF6YgEFv52wM3/98XhbIP8LxD2bpZdkaHQ2PPc9qQa3LG5KKmV91yOjUstbN0vLJqiF0XJlPdO7TMBYk8nbgxlPjABNwIjU10yPE4qUTo0NKnFba0gg8h6xMcEhD6uiJ7PH18ZqAHySu4OtZVLLIkaKxcX6RLqqoN7DYBgSEMylfvbv0q8zRVCzCCCEoMYAavIuOYBaJPNxVyv3BVgaVZ/hmsjL42uM1s5ZyqrWlDjUWqab2IKkaJlwou2LLXWK6aUB7WqmPWcHqJwyjtZxTouZ53cX5sw8sW7mskx3dqoDdJ/PgNB6bXQL0eMHzAz9m7Q0aFuLY0V2bzpiY1bZzvzaOSAjXJmgazNHGWCNJAEiDHwZwK1RAW4SNBJ20WrkLaR%2bAT0yS6gbXwbDRAUPMfYb3XJPKoEd7ZGR6WXxnY%2bJhxnembv5WqCcOa/GoJZYDzYiW1wLuA2deeJFdSrBZb9%2bXwn3pRcFNPFJK83Kp8TOcC5lPEOEGToSfsJstaDVaT4bMzA%2bOcfzwDCg7IkQcEDkS729IO6lNbRoJ0bWGFTQ6W7ILJ3W4VnbkUBs0LbWGujKrBG4NwJGpyW1jgrz8a4WCB4O3FpmbdaMwdwoTzb7LYH7Bwejky6ot/eu7WfgsGAp1ei6ZCI8wzFNsPkvKs6la7u%2bEzdIgQnOjY9kpBvTJ/af8SARgErScEDAevw0y4vlO83Wphn/mbMlPCK9NEO7pJ%2bje1laOTtwyl%2bdjmCVs0Gnn4qbk2qHzUhmZtIZuvIjMsWwHEoPnU3PgiKt2/QD2UIUNVuWUSpR0yyRfvclfBKk/mPRy3%2b4eDQGMBhgAn5bwgCljc6FTPReZKARwY0R3KIRpHl9GzIMdP3gkq0J9CJz9aAm74LAmCEFRKY2Oy7MFzId9n2ufjUTl2eXux3e%2byWOSyFxTGo516DimlUxCtDajhddiF6lFwc0MQ6cZ2k%2bo5sl4ufJl7TMjsrqJG6ClckVMA3wkir2nmKRnXEJZpBbwUyPTkTNhoxilNuc3syU4F6/QwBiTC2jrYmWiNEFI8O1TgoIDURchmMKn9JGA/InMp0g44J2uG8W0IR3Fn3aXNwyEkuoZ2tiodzDE3F40%2bjaA%2byP4Xm7iQfBq2VGF/pGfIfSZrvXOFGtkz5H7TdwXbFS5rjUgjAg2wjMsvAA%2bx9PNfyB6WMwNFotWM8JiPkNk8q0tMmaSzOMO0HgXOsqhQSACoE%2bhYJexTow2wYhAcwaWBtLIwAwEBf5Fvp/1pspSRp17H%2bEjeX75BLgGlQjLE9Gu7RzZ19tiNtqQzVl%2byhbCjMmZ6yNYWDvxoumx4ngHANjlXbFVQgA4AhA1T1rcErwLZR2545gx9GK3oClOUtnYzD2yOJ/4FCJyqn32KS9UCl%2bcJXP0sLNfFVdrr16jN4Y8E%2bfKemR6WMB2lWXdovYKV97%2bEwzw6xMUPDiS45cq4P4WBThv7vBFCyb7oJqlgRH3KIs%2b43XwuuJjsAgGlmtzQATgZTN2kks4lkStFWccxt8CEgJ%2b9FlS1IPiMgIZMpswf9K2idLjWQlqYAbuoYIuJg71xARm2bCd1n5s%2bFN4KJ5qV1ZWqAvKiwDk4THV/SlyIywX%2bCEuf%2bVSVakFO2L3aZZu4lFin1IEo6PcrI6SLzIGQ7JfUV93EttgnKUPgqgPcs4cFh4dfDglWmHg2ENsoV68YO7hnYZteD5IpG04cyJoBr7SWJmhHqj5kpJg0qbKxZLU/Y3ZAVsLgQ7FpgFUko2pbsHfFa2WHQTWLe5676EkdkCctV5ocwoy4TASqDLz0FpZliJwRzjek0vcmIwSRKRM4mg8Cx0AjAW6/zSlAWKv1vzkTScbWi/zvVhfGk9Sx3JKOX9QkKMtkLR4XRoYGVwFu/VWJicWyuxi3xlevgWdWfSx2JoJMaBc8nMLJllFSb3lMZMiHNo92xpT9gdF/oOTNt%2btVqywBkKgajR%2bulGqRXFHPnCo9wG4k%2bjZgMbBtYgf25lATp6OhcGZWpe8W4sSxggu/Y2BTh0VTC2pxFmBYiEDWlx5obBEp7RrXAnADZYJcD2flBkR9cPN2E0zz5nIqg60Y4yXfBG1TsutPIendyzZTih%2bjc5V/h1%2bJ54okrNxFZMYI4xZQF2InxOGRqyQIuBI2MBjAGXhejfmd3CS6aPBmjLlQPJKc8%2bTcrs7lPSGoTghSEKybq88YonKpUiwRKX09fUKa5WdOVx%2bRX7r7vmTFO84NMzG0Mxdgy6JxcKGxT%2bLLsaRSBjwv9IB7Jf4C4uIlK3usA6YCMXogjFYBR3xTqqllG5YWCdcpHzWwOgRztnZGqn%2bA0CqhJ%2bABrILe%2bwpetiTWv6k6EmHGG2tZ2Efb8u/lx3LmKe1emvnyruBdLHZGg0NQ708muZ0muvPDdMuaVimHzieZnHTXVhGiwGcROBZEnjJ0ucVNmti85xNybc7IS8qFnpzdQgMMoR5gXLmpT5aMy1wR3EzwrcPtB1Qn2wyEQ81Ffx8NiXQagWSwWycdeyskFCjbOttxSQuorCzcRTAmBDg4ECm4Iew3HStqvvGFhFr6d1Zyt7f/Le1YjjjImO14NIT17sBGZubFtaGtQVlWQxUg8HcWK7Lm7f5YE0mffgtgElJFVOmdhfExoVv6RWp6/eGPBj68pfLn1UQOu9/%2bipfItfMeEMOGVNi%2bnHgGVZi9VRldFsMC%2bLKBiVLMVh%2bQE%2baDrOIBBgctxVRQ4MItVNwWcAcwW7AGSmlzKGIaKUipBCnAogMwdYaS%2bIW3CMpO0j4m1rnqUk1gb6NmTKCCAKtMMqigwUdYQW5FLEeHF3MSdaVBvmt875lKgDMAAAIABJREFUW3ofgwmjNDFzm5x1mxjDLbQEI7Ysk%2bt3onMj%2bKzXb2LZ0R43%2bySiv3/coJdLH5uhUbXV3XpG4Zx3xpwPJhTHtBadqG5FFje5WlIS1mxWbZCszel%2bjJk5ix0qvaHNusGIOqVaGzHigyzWlkFNQ6c0DjgXC7e2UskZ6wJ0M1rg0IpABqChD3zov0ApL98R3IydAbBBvDYxJKi9VNahgssHuntQC75lWLZ7P1FcKzpAimgE8MCoU9oUuNDgY%2b%2bvqp%2bUOdtvm5CcKB3cgKbtPUjpksMyVs5PLv387a15XPoUgFYHf%2bTy6zTNyRi7z1g2uZnJRys4TEVe6%2bcQvzQuBBd9D4geprA3Z6z9pwcz1bUIGwJGGWd3DoOojRkcFcZmARzMRELgAJCpGMnNQIoFaK2gFoEMREthe%2bJ/25qhpDELz%2bLkLgTY4gIIrUnZGavDsN02u3uShnHRZxhkU30VYgwIjsnC%2bPAdtmr1xniXuF5UF8XDon5lgS6ogLQLWrpkabASxPdA90nV0aOJXZLTXxOwuakx4E8elPii6aMD2tQ4MNWj3aAcLV/O5I2xDaaY7cQ71mSzqg8ciBmnniXC40GsQ8aHOiIn5Ojo88Bp/l1SAew9CR61KqahB76IfOAMKxgkoXOIAMisFAMyFS3HfpzAvq4w0RhWNJDporSNHthINj1hPw6j3xju%2bMRhoPolVmyWWrk3BRkB%2bAgudgfSAgV%2bVRX494YTTRRXORyr%2bpoLAwTWRAEX24Csj%2bWkWY/mjjpdG7p5wLgrOmnpeLsejv/T8uxHSJ%2bCodE0rFDv7sGvxMpS9q8LXR7vuJF5zKKmdlYxyTp07JRuhMGJyeYgBIwlXqeV%2b5lXDl%2bZQROgMTBjaGNrCBSjnGaOrcYmPRCqY4c6uyKQNQUyEvwDXZoAmYWvHtZQ3DRFRdhmYCzXO2DDXaNAz4ZAFdw9dD9Q8F/TySKYhNVQ4Khb4nDFSwPGJK9Jz3uu5KN6FGuPCJ4L6tqciOmZn75jucdSj3bGhMnzn1FhVpVbGwP%2bqaqmj5k%2bCaD13r9SHqc0kUzNzDMUMp/GI6fASMlMma6Mp6pP78Gfw5nadWsBGAC3BgulSUSpYNFE0ZAU%2b3KgQisBsAd0fdoWOSj1wG7mCmRqXTTFPjtGpkWAuMTWfqApqtcDURCP6TpLAaEGvnXsaY7Ts7GJooyGA%2bN0jq1h5Axc10nwBiTGmvjKqdEA/OdI2Jzet7wTC9luOi%2bwXibmb3V5tUiDs/gcI%2bj61HO08rvSUio5p5b5pMYASZ%2bKoVFlHHDJhfmZAdjK/jRSEQk15kXzd847s55i/tvYGVak4pcel/sO0V%2bVbQx3BwFecVOQQSuLr51YJY9CjglTE6URD4CD/S7l3hUdMpA1IgAyYXnit%2bbL8GKjIVBcInVtB7h6SP1oUCDy0UCcq8cANV11AJONxjITC2jLhpJury69r%2bsbBxHPqUlQNExlhIkIwWzzfcGv7fSdpeJh%2b7OPSpo5PFVOtXg26cfwrlCPlq/%2bpMYASZ8S0Or9O/Utntt8flyUvnYBBvAxs0/2P%2bVC2DTDat%2bCv4%2b16jIYnD5t8t21Uh1NbZDhvbdwHGf/xtFFw/Ro2OXVaBD0ZiqmkAE9twhiWeGvWAEMh9XNQoDM/bRNf3VPTtZNicVHTaPPophJYjRppuebsDViv7C%2biaIdgE1C/aq0yv7%2by3ekr4PTORTxXAAAxuepuUtyNa2XF7lmk2rPJ1dsq5qw6YTb2oG4%2bcmNAZI%2bGaD13r8xOXFLKW5WdJfrKoPoKd31OhNPZXYksySiYMLWudPnYRvBuokOmc4Kp6f340H1olQrSh8gJZMaKHz7UdQUcc5EsVAWez2ZqddAbFNH1VYCGcMeABhOXK2F7O9b9wyI7SBjgsLWUJfpxFC1iBpLNFAjs4S6%2bQDeg%2b6aZWF%2bbT0s6ilHfexBFte6Cmga64LIG0oXgT02nd7SxBnVJxm7oJ7jjmhlTI6Vn%2bd8zz65MUDSp2RoVG1I3OMXWP5kGfxTRgzk8FknFuOiZa4UthQ70LQ0ABwDwvrpggwtUhaB7ghkM/XWV3CyQSHhsCmIms1GrIJZAzBrCM7iYtBg/WS8d4xmi4wMmyrOsSgqqmsCkxIl0Ue1cL0wtibxN8T1gXThuzDFGthYxVBBupKt6aMRNpUj3SEAyUvAPAZYgaWBikBeoxmUYKKU/GNG7bCdnwNJt2pFBe/Y6yad0WHdPLmxtDIC4HgLfk%2bvxBgg6ZMCWu/9a/FYjgkF%2bQMfSzoLl7e63qdt6Aqu/0S5WujsqhaZj5TstQlWMJ2dc0I/rtQuMEYIWGmYap3SvaiZCjuRcADhpiPG0sjETUMzz8g0v7lVoI%2bV2w1KDSRsz0p980DxTUZePABZfnVtAarqfdh8A/G9KHMEEqWbuTTvl4csjSAMt1RuMc8ic4fnv%2bgHmlwIqBbuJxU1PZbcL86suZzN/hWOjb8FO/uNo2o%2bZvrUDI3i%2bk71jxl/3eeMpeGjPtGJnIGSveNp6gh9V7I6FhasZdqpbShYxx/oqGsb3VgEXVeIEJHuwBkOQi4Z2GjdzLgJ5n5zW5BjTrxUUcpEuBkjQ2KJQGbkqznQV8uiE7lh5QCcRFBT4wGL4SC7esDTB/9AiOqh1lzPnnKKYbR9smeO1lOpDcrs7mOwTFYjjvnthUlw2q5NmV2EK7bb9X3jTCrGUZ%2bjWkzfOlvNx0ivAdCcLs2/F0/304/ijRkTzk8/vnN0zVCICvozV40zCIGogCC8BNTAJl3nA5jjfI8qapItd2ImZQ8ygNX3is3nTK2A6rsUfNbI2I%2bAnYSqRuuk%2boMpsKFoFYCMzZcNRUeSst1uTeBgC%2b4k3vdN6gPDQQC2uNwKLZ8Dh%2b1%2b3XvIL23mDsEOT4J%2bFv0KFbBIffFSHyrBj%2bOO45Y3xiLPg8L69ITlYZ8vAzukb8tB9sPe%2b58qGvvJ0icHtN77tw5dODQzfsrW%2buusR8c0TfpBCUyLTBxm5ZQRWJK5TkAOYSxqXUS/KwJ2QT4SLQlDgiU5ojtrcF7%2bEzADzw2MTOGXPQbHVgcsTa2wDsiQcQ3AuVz/BPeOwEbYGXXFgp1oDKaD4OohinXUvRlba%2bqA7ETGBkxJ3TZkMmA1sFhZlWOr90vDedCkUQAQMUaJmgN7CfQ/v/FO3c8c9ARVh7RNy4CT501uOWdB1P7G6eI%2bUnoNDO2SviXvIlomDbuiEIppHHNUfE6406taTEbTUlRZbQMF%2by8X19pgQGWxecWbEcAPBnF5sA1QKC1AV3YpbUJDgLTX%2bafZwvVmldu2ckTKyKgEMnZAxghkqgfaKVPcQQp3sxIw0fDeKIq2oGNrhauHNgyiaIhlEqgwc0ugVqVK7JdrEFDRWDAeLzC/FovIyekCtBaCle3LdL3EPIuuqccJP6TqyEI3Fo6UUJh04J86vQpA671/3Ulzq88Y9LEEuDXwlfIEsj2Z4aSjCcYwKo3tGCn7qa7D2GBafMHOGJiZiEwQeYN9neoSob4epuhGgQqXyai3QIhSS9byURRsnqIABXHbYEWEbiuHQNbMR8xYVlPg2o0NLYX2tmeS9/HMhggANhSlNMaaMSwHpgErnOuKvXz/bLUt9uDMmNzC8/alqdgJTBGP4XtgK1mPgy1xj6TQizm7YGj%2bk63rXw1hViq7jDelX%2b%2b9/%2bCeC18yvRaGRsmFI5qHs1VAwa2akGrSJYhS%2b2gI29jLshXmM7XHrDIOh/QSuJVr6RsCK87MwUCQBpHviAqmgHJo7cMAkBr%2bR3wgmomXChTN6rXF42JhBKYHOzaJPo%2bGjq3po4ZNVaRYBPbWXADG5v%2bUhgNji6BTcmIoMF4UzZTB%2buVN5MROEYcN1bQcpzM0libAnHT5S%2bcwewiVi2/2c%2bT48sN5PAYPhUh9L6dtuAnStJyfPX3JR0yvCdDcyoGluTjoHzhedagoWC2AWzvwqHh1Yxfwg8CCCuIs6pc67R%2b7W0FTYGljYTeBqCkMUAaXGQNIRS207qn1ki97YMr0buDQUPQMjIwAyORZkLYRgIzzxitmHIC9Pke5CGxNiRqAGnnWJc9IQYlAd0UmEquuUNhUfG0dO9CWDrH%2bCOGn0ShQ9acz3aNBUXAN25cyv96i9lWzr8fLZkPBL3FaB3kItjAaGwj/9PLePlF6NYA2NlXQKBxRJHK/2b/CqQGgR7JlgFf2Nzf72eYZOnDLVM9yOquDu0YLN8HkWZMKIq0AuDDhN8AhfUpxYKOvrhNm4uoFsZSK46s948jITGcmgIxsCIAM/L0u5T9BaAwHcg332mS/S5OynyCCovW1EkHRxYPtGaX5InluNG03ZmT4olMZ27tLClQCK7MvBFLXfsn%2bz0hzhLm2IOhfssqmp1UxWzdEZissHJgk35y/cpD7k6XXxNAIWdrSONDBYkTFuy9eTspSvcAOwepaOpUqMHEIjkDAvSqxMh0sTViUHUa9NY4ZjqMN9TbJ6mkDTQc1SJTqq2V0yxiaDN2CkcnWdI0KRsZ2j8x%2bkbi4l7CDb7Pmqe8c6NdYJVlja9ESPGYGDaEtF4IbrgM1XVWBOjBltPaQLbS6vR%2bZBIwdjer1OWQ92rQnOKdaS2oJ3QJMXU8wzMh2s9MaZ2PDkcBjNNvbJMa3/hMnbvCTpFcFaNGF48g4UMgAwyRu09DeWeX9CwC0EqBIBiIVe35NOgbO3hS6hg1aY13C%2bGxTD8jtaYiJmiN8j4marGWqs24QNXURuDLAZkuXYIWAiH4Y6lrQxzMyWGRO5ow8BzK/jqE1cEhuspmJ1qYiLrijKbA5r34xKkRg0wfu/dZw/4BpCiwtvUekM0GNFdd4VinPQQgjYe8D7SZ%2bcxffwTh%2bdSN5FtYBn0LcUyCPJy0spv999Sg/dXptDI1SFI6VcSCCWSxJmN3mX/FUg6b9p34sErnVQMzcFNQnCaybu%2bXRCR5F8exnf12z6Hrooq11ijsEVYWgk6WxD3NRYDimLg9E47cBkACkWyXQbONfyc/NWz55ALFbfRXFbCLdOcquUZ7rxLUGg7vZvuyBDeMNZ4AitQx7KsPKAqUCc/CVXNN%2bFd83qh/sxq0R3fKlh3GG/IEEc03DOrrR3G9TK4DytQx/zZ850YJPll49oC2NA4Q9WnRdBG89vH0X2nhSu5vxwPVC1RYIjqYovgRGRm%2bQmShxTZiv7wpZUUfD7SgTkkXf4tNlItrMEMDmRa8szcDSWQdLTgIpiEWVNBU7kfEHLs43AAY7Biow3eXKgZgtAxhsDYwRAEK6c3qTtpsFU1cKgM8YBbEzvr3VANnGyx9C4GC9CanC7z5cJ3wWPgKbQgIIxa6tYUfX52Y6/dyQen639/4Li1Z%2b8vTqAG34tvxcXI0iXTnR90OEqiqJc6n5f%2byB%2borzi86gQ7cgVdHEry4Bo7DOQT9z%2bb9LvDTJs38GI1dqRAsnzj%2bRBgVAPWqlhNUFjOKeABzou8iAxFtXAx%2bMTC2AGhE5UCNCYIZWQ/1oDVXtmcSssxeiXxT8IrhDuCR4GNZehiMjOu107WfZaXLgzz6QUXCkX/qo8%2bpZb/KbwHCScRplsPs8k1z/0aT6V5NeI0MjXN85Mw5E/ZkqUsXnJi4tgaSRIKBzS6dGhTW%2bZbd5MboxAJqhKKEbgCS3A6kR9CAi1snJwIpOvaTiVo%2bkE73TZuIUglmDdhI6FcMsE5fUGz3C3%2bwBQ775lU8J1IytBQfmGH9sXp1xd7RQxqckKy/wvtm/E9SjaZlxAli6A%2bkd%2brIU7MFQwsJIQztVIKnf7M70uzvgLJwn0jWc0RhMvXfUSV%2bCOP7UqUI%2bYXqVgNZ7/37v9CvrTPZx1tLpD6/iq8ioEv1JhDek8Bi1FoaRm/GmE3W6IY4ni6lfxeBUhrXJl4KDwd2asioHES7qKqkxAKuLgRllVYMAu7mLCP%2bSKLdYnxg5kK21dMu42YmW2BowJXPvIAA1An2nAkH1ItwLssnTREmoObBIDYU%2bOKG4sEio76bP2DZtyeLf5po1lQRmL/wEF8%2b9CJY9ic4N1k4VJf7Nw0peQXqtDO2SviH9qGJpCmTLlznbKuVY13DMbyx5Ua9YUAwOo24xdiVuBvahAwejaRAMVo6rAkSpbzKoc1kgW2RNTMmSxuicKmCGTwQspHofILcx5KOh4zPWBIgWBdUAag30ZY5lIRgEYwGyQ1yg7lmfrSRQsDWUHsBkFlmJUiIMVVfv6nIymey6bjHXQSm/CUMagBGZUl/Nq9gT9H6s55c72K1SsK/ddC3Rv3pT7k%2bUXi2gXRxte7dYadE4QG4IhVyqC8tvrI/O5zcY9nSv790vvfA5xEn0WDjSwAfqVBm2Ltk5hcYLCqscOVBNHK%2buCweJWCJhU1sGMBPGFcGMAcxs%2bZVErBUwMybJyKE8thXGAk4RZdFYYI67nqnhCgMvqto7wgmIAQRPPbhlBuD/PS5tkzYW1w5R0cTDoUPDDM4YxXq8K0Bh399s0gcLZ9V6HU9oGc3GgL/Xe//u0VN5Dek1MzRCluZYQnql64TvW0BQBwaWhp2fMpjMVgtsYuGEirYBjCODfniDw%2bYsnPgBnM7YErCy/bSPyEqhsx6Jm2Kha/pcyKaIFtlWBjPc7UmbZVTJvkpMMwAUBpo2A7W9jiJMdrwP9kuamhxLbRXmGtkfPiXrC46puoc7eh3UKYBei5ysLj%2bCqmI0YXjI8rWRufuwq2Ec6UE9cSRwxAeIKbtyViqcekOjV5heNaBdHG173x1tndtGCDpQv9BzTCXl5/j7eDaO1sXrsaBD03S07I/tmlRzuk/fU4V1uR0/S3FT9hKonxGKmSQELnQVBDN2LQE9VjDL6gBWbPOgxvDDXdqiCAo6PWVqPqyGA2f9Oyru9kxssgAADjHExEggx1pYDYKRPkpaHftGOMX4dM10m9JmjGmtAq6rda6cidW5YJWOnf1%2b7/3PHVT1atJrZ2jkZgdPYtxbFd8eC5wnASCzE0ZMbqbbDTqFkp70tx4z82WGz%2bYHrHygMpviDkJATRzjEB2Qinc1SONyHETZyM4ieGmlABySt%2bFOI2T7DQjLEGU/N1OKyyWyFtR2PDcdVQVqbopIvmreNUJBDI40ysu59olBpsNNZwoOg1r7VHSViHPQAMPmQBh1XMfT5wai4rWn8YYn5wn7urala1O787PsugFLj4zO3fOhhPNfH97QK0qfBaA54wBq0%2bAFz5KBlfec70PcmxkXVAdxsXbhwIlEDtOkLy%2bZlkPTIAoV5UUCSc6qF44dJOVXrYFlcxS/VP6TgThU7uOOeT8uXHfpQG2wPwYQMz1bS24dkVWmqK7u8aDyn1xkDiYICtBIVxUwrgCQZWSqk/Mbo0hJ0pc2dcXvrg215t/PzqhD05k59pzZTOZLtFQ4Ct%2bR/vXnXPyx06sHtIujbe/0c/abQIl5ML8oKygO%2b1rcdyfKMsR4F78cyaW6sQ79eMzqm%2bnLUL/r27zr3rB2Gy%2bmJyNgUjy1bgoMrK2b%2btlg9cPWbwYzEylxCbiwSw5D3rgMRVBjY0zZAop1Q2lh3ZDunSnWZAgj7orF2SAGuVxNVHJCo7RcjEqs7I%2bTNXdSxKIObNqmk2mRETpnzDPzSsErDFsthL2uXOgdJJ1rrv/14kK1KPLVpc%2bBoREaBzSBUh9DurhUaDf1chcqBkYVg3UyhZKpoxqcfYh7UEe/UX/WA7JZTQt9S1k3%2b0E5U2ZnJiPrRuEpVGBmZ8EDX34NFtQymLEsqifcTzODGlofNeIvrpuklkS8BgvbvfgpD0E%2bnc9GeKZB8S5Zcd1qmYJBScjUeBluehCdAlinJVCAqP2cYy3EjGPOy%2bxqy3uwcMIaZrzclXMuvep1m1X6LABtONpCRFvO%2bjOqsatHtYjOfpufrVyH2XTHsCqVupIFDZx6w0EnU/HPtTizsr2upqBS1XeYlMR5EZdmzCxYBUmV4mFXqARmzlfjukGKrncUEAPlPunYt6Vf0VjgmF9e4a34JXehIqwo%2bGModJgR4mbEYhFt4br0uMO7XzKwoxQ6cmJpQOXiJG5zoq9NfOSwv5nOTfp9Yme/3Xv/9tlmv5b0uTA0Ql3aepYBJal%2bt8zTjhXBkUTEjFNicEkYvy4%2bZGg1k5lXf6hRACI0yE5KxMnNwN/L0MlMezeIm9IeEDcFCVTcZAkhZCDVcAMSKdUZFlCZLzzDt0VtGqCYZ8U0g2zcio6IdA8FL5JZfG9kNuQ2XGFddM7QDi2hxecTnh0SKZqnDnliyCddoN7R0xWV/OZDZv%2bGqqFXrjx%2bYsZ7RZbp%2bzEirZ9ut%2b6BbHZZkT4bVw1Mnw2gDUfb/41Av68WHCVYZunMStdjpq3dqhedTE%2bI02J3F6R6Fzo0bEjeryV3TrEqUlCA63DFjllYN6eeAJc2TxQvCcwalg06tFGJNlH2AQWvVgs7ZOOSEqjBLUem1ryDbMCiIcIZnDdHG1GHZkBuz6y5e8Ww5sI4kQleWY2wd%2b7eZUPL8SKn7Q42yh4TGcOSKbt3b%2bLOtoRuz7MEJBA/q7NBh1bWQfT7RPTnq9Jfe/qcGNol/Xv%2bJ2oYejquLM0BiG3vJMtR9g7aQy/AOT9zp9SbTsgUzoE2tjrJMNFqmG7ZRA4wiJ21burgphPWTJXEgs5sHMWotfEudB1kA2AF37HI1HzwSAG1lrz%2bqUVjgV/2egE1nSs2ePYjOkbuLtIn4Bjo0q6PWdqpjBD0cxS%2biki97jVFmk27YeIWETKufypBKnjPVsYAvxD9f3iNOzqdSZ8VoI2Itv9XOp6%2bRB%2bjk4pQEDv3zg8LiiXhTzTtxTTruageCxYqFbEYdNlx7Wba0QmcaW%2bwbjYCeZA0rqNjN7bJsbCy7FPmQ2CztkMU29d2PNmjYrxXATWPVhrt1i0nQ8dcEOebRgXxb2LbjD3h%2blSAaZsQEGRRrvOvXUHYvXX5uVM2faU82bci63r1ioG3ng2mMqaO3lCWTNjOVSn6aZopFVUsI736qBqz9LkxtEv6d0iovzIwWIvWuwczeKFb9zyOCUU4YAbSrXTmwquCDRHYP%2brQKIhMMgRRhyZe58jEkm2Bw%2bDDfLDIvGgZgEbxFIPYpiY3Ld8venwKqA44N/IbW9HIEmRAtz/bJjDpjAnK%2btizNWyWLGw3y7bcMbtWebGTUgggBS15J%2bH9yzkJESUPLysgzNK5M8/huiH7o7aGN7gvZRL9m3YKWygvu7jvyaSFjH2Je6XPPgNDaUv4HUr9u5/Lus0qfXaA1nu/KCv/QToefnVgaVGX3hUQN7Bsmy/ZTugnM6HToflddyodmh0ye2rSoYHG%2bOrfhPsiOJb2AOtmsDQ2MEZIcmxPwAx0RLjjEl2tlxCQEl1b3HrI5pgnzUCNMqipYWAAgbp5qCkTlw75%2b7HItPbQYiBJfKCRn7EyVXZlXOoWS/kWLInXY33LL9r1Q9nu3FjTpj1pPJHGOkFfczOKnVB0Cv8TbiCkhVB7ST8zOf1ZpM%2bRodExS6tns3lCXVz%2bFpNyoIXIWUoVRa5gE/N8Q0Z8lzjPG6rLgB0pL4GNhEljiznrJpn4psXEnaAAzFq4z3jLT7bqGxT9pnzXp4WrsgKoGb4yPTHKlqHNEdSwA0NP1nPIOHHNp7BzcMAVhuh80AY4i//gVSE/Tm3XmTC6khg7xnu3FDuCTXL7kx2RMcSlYut242XKujP9rt4YwcrpJu00Tn5rqHU%2b2/S5Alp46Nil2I14BQChUH30mNBJbAK1l45As1KXVYcra%2bSuv83oJj5O3Gwsqxf/0OXtN7JDl7DH1td%2bB3VTM8DIwGxAvaZghmJmoDqo9EfOo2IY3jMgURz7T64eMBwYttnqA9CPqbKe/Q5Mbr1qei4QqonQAXZ/0huW4xbY2uY2kl/uH11loBHB76%2bZPhMlTU2%2bn7R0XtoUDkgfj/07X2rHTSL4LF01MH2WgDaWY8BmpzbTeQMALpHKcueOcVt2OLx%2bZxMHHLg13%2bmDDsbpTVCHprH4vd5uB5GNiFxR%2bqFWNhxLdtKByTIFQJB75AH7fbMMT0mHVoMZ3i7qzfa8u4z6hBZT3fV9XAP6pOZ%2b81XMbbB2UpifMygk4dAca9VfEC2VCChphmLpFno5q%2bYOERjukUIZJ41EpRGriJ3GjcNEgMDO4f5vTFENsqcvgPYJ03XRbIf1lX4BOhoH0oubJrOLbvViOlhh0LdZfUGHJm2Teb/j8OlJqnB8c6U/K5INz9zdVRcETqI6OMA1I1Cspc5s30/T9mhogBZ%2b1VED9tlc2cpopC7XFvuthhDGsd0cSyNheEGNbyuj/FNBJnlZasSHUY5DsILCdeNMsiCjA2SN6mmb9vj%2bxfKn8d30trmlyaE2Wjj1lLox/dXP1VUD02cLaIOlfQ%2bO6F%2b3JyWwLNNPxF2pKRkPdJOMGN6qdNso%2bvOkg29HGcY5ZDyenZkynxhdK2Bf0BBFglR/1uXmjInAPT%2b5ReejHZ7AmM7MMQXIwgBMcD/ozR9BjQOoYTISJ0Ds9wOdP8YiNmwI2piS7MwVmLYPzT12etLntqvy95UCcA1Wizt%2bAZuVR7B10pUD%2b2ZP3hZffZULJay3W8N5kGwFDU73n6cjbUyfM0O7pK/ThKVVYmZ62d0zN9M/235iHVw3cNabw1FxxnlrGgeUuvZt69jNxC6Y30l2tmxSEocNKJDprAwAlc4My1f9mRW%2btx2kNXCrG%2bGzQTQcobtV/ARx84kosSsuWZpX1Bv4gV5NwwIZ6CcQE%2b3rTncgAsZYd%2bue6Vm53z9PxndcZBACp3eNIupsJQA4jhNYXUGUGNfjTE%2b/flmJc7L1rzp91oA2XsKvwxH/F4M94j9OFGK/Ynhdy3%2bRzzfYVDYtfQptmDE556MlIKYdHF%2bHU7Dsv7Z8CtNa3CQf9VXXpIojrJ6R6GRKKS4D3ouZsFO6OAIPnZlTmQHb0WCPuGYzfkpj3eYxlp5Ag46arxvLAAAgAElEQVR%2barKiIIqeHKycoZb6GcJz0K%2bwNtWVj%2bUV5Mw5yTrd2bBmbn3%2bMiFvDwaqrXfohZmdHUzj1aE/vW7E55M%2bd4ZG8jJmLI2CyKmm7A09fiaxp2IC3Y3XM%2bWItXVx4xyux0tZDJbMamjBB4ks4GB011iLm1I8fG9QEweCpnqrhk0aY9uYGkOTkZk9yXpFa6E6FQuoybWJqY0y1G8NUPKJyIOaN4Aaq4Mw2XbPAJQsUTTkQDPXjUxoTfStvJSX3vvkekMnRFepSaJejF2hJBhBKqXb2uUNCdZxG1Qu6OEf0e997q4amD57QBsv47fhiPubuFMydvqtxRDYEigxn35ks%2b41WfIeroPlQIXjK1YQ1zOW%2bWB04soDplaPgwhmKEqChl6ZHrcAZgD8blmWWXlFF4hWPNnBibEhuiTLwArFT3TpEPdaZFEtbuBsleX7rsyPgTnml5GZvHv0jeF5k6oWQIh1vVTANrcikPaqgRvokaNMOm/mv10e/UzTW2BoFPcd6P6LDRw2tQg50PFkXSUBXAwwnCm7c249mpmrZFDbQrvMClj4XTXFizKdETfNyIBi39gHgD1Fc2BGHswYF5p7AqUgZp%2bF7Ci7zwdH38TMxPUlPWbRi/nrtTWqe/PvqLkSwrmGP32F2h2Stz/ebK6lVu33wiBVyKuhBRK7TOGPTUvcO5VohVN5r5UvlH06P%2b/0VgDtz4/daVJ/EwV/Dwp%2bXaMZFK3UAWAabljr%2b92u0zqSU9EM6heRN44DwWfdGwQmfGEc/QbrptQDDTfCBv5wCkz23wrM7BQylj2emnNoZb%2bxiS5el7aw/eYISs7oAPq5ZmXthBnKFCwTXSfLkwsPWlmbvJPjFMVQfHmrPScQSEThaCGDhLMBDWa2vqklXQxHIV%2bXa9epQ792Jv%2b9/L/yuYXYPkpvAtCG/8x/DkfUINDjfGQ5SgqPA7CyQE0m42OyhmWJi9umE63T9W2bzbrbCJimLOjkAIztMhASvRN6qXtwRT%2bvJmJ2w7A5rGLm3q5mwF8tMeKL7qvpGqMWIts%2bASA0DQsk0UF8mxLZc/fkblTh4vDdOAMR6%2bSgxg99LuhqMlgmALy4duBi80ZeZbDvQtbHxirDcr5tttRpbMrjfd06QGOdpBv5ndnncuZIf%2bHgyXx26a0wtEv6BiXjABgCThYS1xT7k%2bOzGiO9ArUciTR0tzqJ1XEEB7z8RgCOeri1uDmcacU9w4VEEqPBQIyG6yoFlHB5EemAN2dbU%2ba762Ap0ZVbPSG5YR8%2bm3kHvHRPTU0faskEvWGDDeqQ%2bam5BMP9i85NF7LLfXl25UkrsDDwWEFxG%2b8hpgiTW4r0GeorgFcXreukF6WMwgF8/OwLyaQT/epbcdXA9GYAbVDnvwFHDMgCAxIfHP%2bCN7iycMTtNkAEMOPsf0QEMLEM6mZMRMSuzEIsFhotrJs2SHFt5kibWc5s8f6uE5I1pgyDrAazfUXAU2jgk2IJOzAT3RwDy0JgbLh13gXzWjPNF0apxVGPi%2bGj1RNgkGRxvkpyi7dzSnPgd3xQ38TNq/axv0nBPPpNVNOhWC%2b3h%2bt9wTvjdFO1%2bt6Pcv/0iaI%2bu/SWGNol/XECluapuu8dyaDlfNamBi%2bXUjTclNfC2thAD5t79Nm1UgIBfMUfnp0tXyYGbtSvoKsCUKIZmAWPg4s49gSD0liajyWm98G2/ydbIcX9spYn%2bjt08/COxuwWsz8Vk0xeD8sArrg4PSagxKCfVc0XuKY02bkJKFxXCIRiCCdKidEXlzjJShb/L3YRZ8oCNySLPjtlZ//gLblqYHpTgDZY2t%2bz3xU7C%2bwLYa/7C6sF7ZLK%2bX5FAo6m1uLahlWyHaOTL06tm8i6hmxjIXP2vE8DvcStI4uZ0UWkZV0bMDPcJADZJRMsKRtHmotnJm02EZIjqBHo08SiCSdFPGWPzbbSodWbE%2bd3kem320/0ROrkwubZXhPR1wywL03BW5AqNhM3Xbfqp5gZSfitt5jeGkOjuNPzef2Z9ChW0SlZr1InPhY5vSBbW/2ra8UtQXRato2ajeSldRPRCnyhWmwzyIGybdtSzBwMaSpmauNFN0a6gYkYEYQFOh%2b04FDXwFgQXToQsIRdykoEZIvC5qYvB2K/ieUR64JHoJOAXlerzaCa7gwGCoJNjAt2xoX9hvj%2bq85bsbUOfaxP/7uC3jfqUj//9OYArff%2bCyNQnaNo0doZO4R0RBQBNjFFDopn6%2bScMf7uxNrHOb0KmdlxdUxkZyhuzghDhcH7ZwiDBL5bDsxciPD97BOM0CRmgkyqv3GzEA2pzbrESXECmRqRUzK5uaWK0CEnileCIPuEy6M2nKdM34WsiZnMUslWjhOm5R518%2bVm7kIjV2RSVUqRNZZ2TckmQSELIKz%2bEf38UZGfc3qLDO2S/qJ9ZWI3C0KHrMS8qKkNaRcdurmggbKtEitN8jI3T3ZDCFoapvwWXpDUeQZGV6GCjJiYb1xDw4KU0EIHCWKqfbdNebVuFl2h13GhMy6PNugWeOMMGjOecD0mOKIlgwG8WbjVlHx0YP8kOfxQ8XskdWB1/oebznmb7iRmLhQiHtJwzbg6Z0uw7eGysfWgQ3NGgOHiocGoelKGePei9ytu0lsFtN77ZdeaH%2b4zdvCwxk4BEWzFf0c7lxEzt1rgWv4QT2OAwaVexl1fd7q9CWNYrsBRB/LauslkqMOg59IQPwHokHU8BR3avhGx3qnTmT0R9qRxHMFM6xltESBVfZ0tamdgipKe3OYnVhl%2bR/qa%2bSremU0suCN8NRRUqS7sLb6IdIF8bGNViTu8TBFMpwmC0XaC6BrBij8xBvzPn/MGKGfSW2Vol/TLKjYuzN5qeVp5/YNh4RpYFKPcHoCYMblqFWeVgO2ItypGwxD9GYJLKmWu3FFmhHozZE4tumUYY7KlWcjMgphZgJm5m4RlXqGpAtQ8rnGGAhSEEciYNOTQcHdToG%2byibAu6q%2bfeHfNCN8CS/Om5pGPDbmaWj9ZXXNghZarQ1Y6sFrMh6J/g7A/wv4AsD70wS5D%2bKsT6c050sb0lgHtJ2lsDK5m8cr/TI6puTuq8Qlgz%2bs1uqNuUfYpdD80dhYf5n6MBCvrFzEMtXCrBo4O516YtZzdIda7wFF8HVCJpdEAM18O%2bt49TcVMMjB7ModesttVZHxSXzIIzw2gBk1x0C2loYOvcq/pQwJgRusv2cRBUC6D/xoDGtvr3ZmrrI2Vd30VIze0SJJzjhX2JqsENAD7MERNdxyDuxARNcgcK2PA//1WXTUwvVlAG8uh/nY6XuQVZ0Y5F%2bNNWWJzg0jTbuyGFlp77/tt%2bCaBlr9wK7kwwO3q5Lo5M70taWkOiPwXGZe4OkBi8wsTg8XoJOCBmxcD28LewbY2cxczW2Z5yswE8QKIDeUdI9FB8jPah0ytNc/MnOMtQflCO1n2RJAdsCRgZHo76jfmVQVhvWmYSmIp2%2banuy0p9ucMiuMDKGognUK7qk9IAG3rqiIpHmdM//H81NtJb5mhXdKPL3UKwNBmAmG0jW7qwJi7aVLqog5lBOEj8SkqAjcIZu1LepgchikKbAY5oE0X/Rk7vZAldsxiTxpOe1zxpKSIQzBIiPxahOmmCTOjAFxPAi%2bg9hK3kScsLjA1bKWLc4ZGArj%2bOclLs9BQZzXHtHlrqbDtSNjhOYR5IjVZ91lQ9m6GrWv4oUJ94aMqR53a1ZH2zbpqYHrTgDYcbX81Ha9%2bd9yUougwqWzrRFELc1dicSp1KOLcBEQTxYBMp14gkzdFjKaKWyaPO9yGGOSMCmHZkDKtQsy0qBfe/YOBETLBQnU2sRq3hSNgant5LejQYHG7A8DNTxTjxTLI9rvaCuO3eborVkooYKdg450ID%2bdhZLkaS5qr7mrQcRugxPcRTMd9WJ5s82t0wTCraae4%2bDwnqSsYnr69vOgNpbfO0Oi6E3ThjxNXDeRlTGBy7z5CaBXPao%2beQGaG6pwE1qZK4qYLzxvbBiLVzN0YXU6KAIOFuPnkAEen%2bV1HJ2xthN2ROGisoX%2bA8Sg72NMTGAi8mLmzLwE7x04awbKgoH%2bLonM1%2bMslSZYT3Tcud/T0JABJIzgmXi260iqumZXLEfmBjTpGBcEsrB9t6l6xqavGRgTsaWf56MIxS946L6IlRuaIK2C8H5pe828sKnlT6c0DWu/9L3Wi3ynVpKgnU035uA7LEERz%2bq%2b4Nw%2bbJZI8GFz/VSY2zVrbKRmzGflRkVB3gAriJmQMIk4lnnlEfIIoGQpmwtJ0fO8ZWZmYri0KYNY0DLhUj3Wzipy2Z6kYCoSloTtHZmke1DLybclhuMmE4iie%2bPyJVTS/i0Z2bwMrFLjwhcH%2bUGPysmiVccJKHtIhuT4IDG6eC9pnZ/7WW4t5tkrvgaFd0n9yxNK6iFwbMLORouYk%2bqXtaS5yVpqXZSqKYrZVPFWVIlBxOgnhr8kr02X5kUm2uIO7gdmT6NQYwAzgUUQ6XLj%2bNNwupHwBIIbIubJ5sGuxMjhrsIJqcPT1wSGBYTZxFjax1YTrnurDPRewdBoAKFvLbQpuA6zVKhnmOi1/4roLxE/cMXD/G/XddZ7UuY0hPgwYsaCDE/1UcXNvNr0LQOu9/8lO9MMlS9NoG3id7ZdIGHhx5NucBbKbJk2VclhY0QH7Lp5sxSJj4YMbhPcR%2bSZa7CSxnINt2gR0XHDGEcnWXKp2vdxTAEjFQlhxEGvE0EByYd67E5mhWUp5tOGJGPRwVh8yNQM175/25MoOD5HUhG1PXfRqkm0L0f1VJbq/ravfIeyi7kujXazcdkHzqn/bNp0QRdS8HhMRczhti0U7zVE9qU%2bdjanjfSzEzaEp%2bc23GPNsld4LQ7ukX16xtDS9htSpQ3jZuNxkH1Hqwzt0aAiRsAZcNEpDpBo7j4chKbYBXaZkwqshoxM3J68SxVon8hmgYF6MJiFMRE8%2bNeKnYQ0NzEzZHIBZg0XkxiEHODSx3sJKBfTzioYJaGMENdXnKWNjuwFhayxRaJvThEV/NGHC7Mqv%2bXcHkVn5IGztF16Bie71K3IJ9wFNkTU2q/%2bgsHfFzug9AVrv/WtGyjNLE6ulsa4NLEoGYoolzKqwV3eGqN1mFM0szdXAA7rm0qtmi5ZHfwnQpWJgYZTWrtixh8XtI7LHDljm4d%2bSmCnPwQpHNxCMY3ZJF2W9uITIBUzeIKIGCmBqDRxvnacIALjqDtXwMX5v8KFKe7zz2j69v3a7d/8QPXXqg0azGgM2KKNKWTvr6pYcG8T16/K8TF/XYdUGuniQLd97szHPVuk9MbRL%2bt6MpVkH946RalkC/Yn0nMoj7QiLjs6nHDbax2oCrnJlcZMZDAjNGAhYKdHlQcJwq54toTP8GsDEFTMj8w%2bz5VSSn6/AJuE6TARmt5LARbQA6TWCWojN4ZajyaoLdfhodn97FU2NGvoAFKTFeZqEVmEtg437iCs6SfFyxtLnRgyTq1gsh1VUHWij1mKy0sWJmmaBf9OL0GfpvQHav1QfFpUxg2Wy1sqM%2bReigvolLqCYukqoMMbctzgz6%2bBnG2zo1%2blf1Aln2grxJCX/EPPOj%2bo5UeybmNmWYCbe/AhmFv9rv8AceEEQbSDyIrjqvTremW5JxdiRvxd4rEucoGzV64mPGgGoD9ChsBeALHnbcLNf0IsN7Zu6aGwAPlu3zVGkPPgA5j2mS3CYpaLf2NUp6u27Y2f03gCt9/53rorS0vLIbs3nhh0JN06RGPJFz7oOAKeEHkDJst5PdgqCOGJRdACWeNm6TLgV/ote6DHqh34ybJY2dEzK1dAtghQHNBijDO6L3kyCRaKYuWRm4zcuVXpqEgrI6sdIIAQ6LD0mTA3EKWzfBRltc2F4BldLCo8JaDMrJFCnbagPtvHmafimiVpi2/zThIft788elpJp5cBs7DNOk7qVHeSRFytdSI0UIVVi6uZZ28%2b/J1cNTO%2bNoV3Sn45mbhE5Z3oPFQ1AFLAzPjmu1MysL8zOo6O1BBcvX%2bnFZoCKs3zVSJa4YWjdhFGncb1ASY56F/Q9Izus7hlYk56TKLpyBhePswczB8BswPbExqowHtsTsigNOQSudQ1XEeSncb1/tUziHqOgEwyrGbwlQCJg2NNQO/bwP5NJTecv0Nf10DOQpfexn6ZsWm3xqTazmG%2bVxV2WznlRswNjhCt%2bNnWSd5LeHaD13n%2b2d/q9uEpA9Wjdq0CSgh7X85U0Db67IB0dcbBMtuyJdDG5TPtxfZ/ohZx1Exuu%2buONAgZfw92gYXdvcxfFzr5aFKybVwCRfQAUBDMTU7EVwQz3KXDsEtiX1WSOsMCG0PqJQK1%2bbs0suAwLxi8yP3O8z%2bodoEIARM6ooxv%2baLhMidBlY/zGVSa6WgDEzWghR4vmVujIcLmTV8%2bJ9dPl/1vvzVUD03tkaJf0HyBDQ1DTzvHBd0gicMAVc7qj%2bpvOmpJMW7YpZlxn6O7H1jSx9zD3kSG8MLofAnGz%2bXwNxDlCVwstG9w12PRmT4WYGZkZzZiZui80dRMRzvfUrC1P6kVroKbiMbBGuXlkVRgIU1xJzNJpk4JskCfGD0Njv1lwtCDjvasYLpsl6/sxlw0KLhtOpC/M12Jl7u4deNur9q24WAUMAvAY/mKq5B2ldwlol4i2GvvRrXrCKKPh%2b2ZOHuLBvWHAf%2bcCAJZR0J3ZJr8%2begIXL0KOmZB0WcTsAU7zgVOqeb2DM20zkHhqNnIZmBWBVZTBIZedmNncTuIunM/THMyU8WjdA9TgLtQSCkOZKyMBs4ItETl5NrKXiglHlszuDcrb6ypmxmvVo193WCJbv7kK4jn6l05KbbheCEZt5jIk37cPkc3ZJLxtmcn13n/zPbpqYHqvDO2S/nv95ixIlTwIj2l0zGnXhQF7joZZRgsf5NslbWoyeYt1kwE%2bMfZ%2b%2bOYkre4b5b0zLnDUtTzz7zLSp2ADzIz1HIDZqN/Et/GvwYL5ZnsGqEvHgFDn6qEBFG1CwPtUNxVkqJdrn%2bT8PIZc39D5ol8XCPBwipa8u//hyCUuFqCH5fDa67dL/j0D29rEAgHxzuS5IgBvUIa5lLiqfqZuwftJ7xnQ/hXRqor%2bAl0xvKn9g3VCMragvWnoVq4qlIK1xTRRoUGJAK0iOSFlmwLluI7hZ6E3Ul1UHyzEKZrAedZu14MCAzOTkEcRzNiDmUTdtTJhmIMZkxEZIvrUD2vcW2Qy5aPJv93Gx0QdfrDulA881cv916T7u27iyjEYPBh7dn0%2bhG4fDfgAETSOkgPYoGMbjrTfPCzkjad3C2gXs3Yn%2bt5OuFBJbqIKKs61u7mxX1gcOVwIHZuU2%2bE%2bPn34LNnZDQcJDIZt10rvn1SNc/aHOTQRxuIVd4fS/Lp%2bEEbxbGiVsFKR0SOCqiq3mAOj5IZNZzjeG%2biY5Pk679a0xVOoKujjwi9haeOHjxpb7T/h9KL5zjnc76Zio22oImLkB3WyzdXout8c8uq/yLnfX3rPDO2S/k0DM2NFlZ6FHDYcWSxl8LEuala9k9Odtfmgx9RtwGxTuAn5Zz%2b986XeTTzG8ebz7Y37uS9hsfVaewar53DsZVmzaUYC1UGip78IvBIIEiXRwTRN38jaCBONeZ9URryyvpmIuAreE3l5Em%2b7f9aiE6TITMNDlj6pG/6EiXekdxGR9ii9a0Drvf9SJ/p/O4idcWnJh24zqYY2JjMM9EAExMS%2bw1hP6OI9Ocw7zTfM51dR8gSWHd5zcaDDFyUfbuRCNwFxszyPvxmvobPwPS73oJDazZD1KFVMR51rx8mtm04fAgLI3gS4akOSEnHEGeHd4Lqh/os8tj7sBo5oQY9wuaFrCLh/FJ//3Xt1pI3pvTO0S/qz17%2b9J/jpACQKerLFGEQkFcenTSNmdVD0RobkvwbpNJgmOkmpsGm7oShcx91a3BkCg7CxjpEz6dAYQgnpJjANmcO5tFTvWUv3j2jxBDrjTRm2YD1q3tNyMDwbRVfH0sCQgM9lXLNBGOxtgz1aAXIslJQkeCGKS/gu7diHi052g/LVT63X8ficSoQqdvZv5ef8PtO7B7Te%2b58jot9TXVrPBgIzHFhcqw0Y3PXf9uFqZt8%2bfKAPuhu2AJHfIXsbsy6FWFbXcrVsL%2bqgLq8PR4E9nUScwFKi6GTMbEvn1GUs1rYgak6kpDY5hzol%2b%2b1BVOQ8geQo2Pmkun5fgtVnEdI93ARSaV/A33D83nDxpupBq%2bcQQnaLEUBdhYB/l%2bzb97XJ5//xnh1pY3r3gDbSX7avWSvi/oL%2bIure9K%2bsh%2bEuihJnrbw6UsKqAJJwMC34q8FqAVksbWsymzKwazrAtQhTbjD3eDyXWRkcnyqQw2MMYmbRPhzs0dFXcqAeTa%2bKi/EbQmRLkX2do6s8zxDtw9gll9d5%2b4S9uMiy0Rqua3lHhg8fxioDZF16bRY3tw%2bbAin6RAaC9mfTY3vH6Qug7enr06Av3fe3rofNDNmtt6lORpgZFFN%2bx6NRNIFe7LzEo5J/IwkbM9YgjrhmV6eqkT9GcRBndJYjgDseWJ6pP4PEba1Hc/dV6NGwNjkmeqhN1zuNNZHiQoFRaEeY9d494yJhxuMBb7hkCZcVOXGw%2b7JlV31sl2gHurjziHuPvWurg0zkhICOhfMs/vt/3rsjbUxfAG3vND/ovf9N9dTuU09sWCRM2tlpWMQ2XTdp%2bhQTFQyjrmuSYa3fJrIpduYhlaK4KdvMnfFZ2is//v0B82we1Zm9uLlK5/RnUDZWkr86fVlPV43j3YDYXOG8CZYj8zOjpmNksgvWtvWoqqvFbWxiYaCIpBJ/yF0JyBECb7jMW0FT%2bgvl0XecvgCapT8u30KIx/w9%2bABprCo4bmICUKo%2bK9mnDpdsygXIKZ432d0W68OQk0GMRGfP/UAgpCg3bfViUzz0dFJ/JrutlyVFNws9x7AsStZP2qUNWWincK%2bB56aHvOktxj0ut60m6YVkbu8X3Dk0Vp4si9MIKaZHdU6xKnpu%2bvw1ZppjZ0VfIvo9Inr3jrQxfQG0ka6Otr3/WuGBDe4bIiJsKlK6uGmEERnMUbKobXoki50q3OhRDpffxo6c9sylIljHXp/%2biah1XtyU40lPhT%2bjE36gSs6RNNGoaZVBRDfYxN2eDFJFqbnXx90eeGwaRj/BkvZHw7og/8MBUEY1wq7ikCAIcPdiXd/73H91kSwOH8A7S18Azad9U4mILsCwKMyWaBjYRDcyFTttxr2C44azfNcdhDA0jda5dXUVEJYlQQptdO3Jvo5orzBaLOrGWKokJj%2byDUP6Zeu2QlzFFaybd82Xo/55VakVnQ4ZVhrZWeCMte7LwtDZg60eRuda1kjbuM8o6f2OvSTENWfbRfJNtrEb7hxXNQH4JmIIH%2bfKA7qzeMMuYC3nrjbLDxnezebBt6QvgAap9/4LvfffwdhVWy/XzWX3jk02x9gKsZMc%2bMUxuxX%2b/92JMamlzlCxwVTuQhj1sdcoiscajdWMFyio9cIw4EiRpIqMzSyck452pEdj25zTMbtoGKAesbSbPjAsa5NtAdXrfjwEUcjHhFFHaOx0bzGCJGD3WKfK%2b/4NGhROX8NGHz5suqQJQ07hJLZH19iKCRD6Hn1xpF2lL4CW0797PeL0ZKbzMMOBdFB0ihwd90O/ihm//8MfWmTSacoiYBQ7bWNjMEoUMOO%2bodUyKqV5D/Losl/%2bpQGdo3X4M%2bdTto4e69GS42yhdVc7gCtHYqL5OG/KWMF94%2bimTC%2b2Uzb0Qdtwp6ewFyeNncOiuKnMDGYQDRopUwu4dqCoCZPVF0faSfoCaCH13v8MEf0Qj/b0pTYQmIP4vrCYMWZWOeNu5o6hm2zIRrRD5lGx04ANxbI2LH1ONw7OmzG/DpBCpPwQoDRZ6pJ23yJsyG9UbeHmJ1hO1KPhz00BeOitHA1L2adqtG0Li%2byHLoxh8X8pDrLpKDvFSYKdD1rDvdmNtFmVwWAhz6bjfQmTLRbsW8AAgv0W6Fe/ONLO0xdAK1Lv/ZdxV/S%2bRXFTQEF0J6R6kw6iJfoigUEyiEGSwELpxEGfEhCVvgTnkuxOFC2Fs6RFF71mYQfIKejRME9TLX6%2bsVtutbXuz7NXvjcJ3a1PHMXyInVzq5ErlKFtsBRK1AAwkX1Q3ZvpSTdYn/kBWH9UcfTU5/pPL2773acvgFanr9vRLAzu%2bnAAHbcOdMRFI1Kz/cXjeyV2gvmgPCeOlyVVDOkGPHNAFpYfWpr4YN2TslOtWARDDQ7h8JBF27ic6DBpsBPtemZoIH6KsYAGkOn6zGEQuGo10YlWwCQ8OmxjHEgfruy7js2h/UQnKFAruJUEoKvd3Uq%2bONIepC%2bAVqThwvG90tE2sbXBylSxTKpv%2bf/b%2b/ZfWbKrvLWrql/nnHvnzh2P7RkjgTwTAZElY0dIjhw0UfIHJPyUXyJBQpREESFRQiABggwhgRAjRooUWcRRjBBESRSwFYgiRRA5tmWMI8wQsA14zNhmHja%2bM/d1Ht1de69o773W2mvvqu5z7sx9nD53r6u%2b3V1dVV1dp/rr9fjWt7CsDG4IO9NgDQ47x2RqmC4Sj8VaRzmaMn7cDD26OJDvGzL3RaeXxigbkSN2hktnEGpuPjad%2bm/0UJWNH6ZoFYKha4VabkkDg%2baJMaHZKY8Oh/vJnqPsfPD38outtaOsEqRWKUOPZRVUQD0y7Uqdtw9uPIHVglVA22x/n1/Z9Muc8rq6cpmHnQPRwS3qG1nY6VIYK6FOERpi%2bZvPqqgUEJU5nFJ%2bW2twMSO9MRtgpyRh5bl4ya8ldW1d4WxGwA2030VRZjpH4wdRhJHKe2sgv5qNLFd5KJPWbZoxbDe57HXJzRO5bJR/hJSJauPvTaSB%2bOKQVzsOogUBNO3mNIZzWYGprKo755ZVYvt0q4C2wRDxY37ohChfyMWVRpFlnDGV5wBWIyWvzHtRvSdyY0kAACAASURBVB1XIN1yBOH/krrBEJCTa3XyOA/PsrVM3gHAICLemDG5k6MrpbxspC5g8tX5CCWUHIkgszAt4ZdyETfk0caQbuy0IiiSMy2Is4Sd8PjGSM%2bhxqKLEiqdYKgwwpLcMr3TJLnunirdY1p3OmPA3QEZKbvsLEDWqAuPf7USaU%2b3Cmjb7UfDq4OWptRMzL%2bqIbFrYwI4/jJjCD1sb7M3KOWE9K%2b9y375oxnlzaDk21g7g9cbrRuOW/kN49yeFnrM9prbHV8wg52clkfLPSrIxtyNJ/ga9b9%2bpWyGH5u1yeYcisw5i3o6/cPFfy%2bRkHIpxeCSBJShv5m1wxQFSKcJV8XzzyPP6HMnPYHwyvefcqYfehteBdXyCywMJcaTO654Ck8pApAHNsc8DvVFlKsYcby1MjEwIKuZnlbp3GDDyqo6BChezNyuplh8tpanwWE1JRVBrcVjEsq%2brgxgdeGgDFeLE2gkcgfHSrEZoRhF11/3cGbhqy6IlDULxZ%2bVOQ3WURdB%2brlJiX8FYJJnBbleRIGjuK6Czh7ic5VIezargHa6/VJaYxhAcGVK7jhMgHQlx4vTQt8PxQAH%2bTRWR%2bXuGZHnoC8CD9QA9g6iqOSwhjqGcpg/yj5O/tooV63Y7VkunrPKbhsdi45A6OBNB0XR4miQc3meq2fijw15gUze3XpsSoBWnysBKMdcNuAKpDoak3Yiv0zcSQLyo8Revg4xOQIAoX6Efamqe7VtVgHtdPvHZf0sz4Xww3TFZ8xvJxMdxVzW6cnaXJgqmZzwUXk0XV9w%2bX/pfRXbHF2SMhJlCeZI0eAPrsC69CHS/iHPj/HzDOS2KdRquQxTvp4ebM2jjVjWpIXaQ9PrqiHL/H%2bTJB2RQu0IQlw6GAHOEQ9NHtOxy/Gr%2bQTSNschJtNLVIoh9%2bGKXCY9Im/vWiXSnt0qoJ1ipJX2cR1uZsMvskSu7uMsXJyk25PFk9ov2lRNzSqVkHtT/Nowg3TnxrMF2uHoSXkPY0beofiyn/buY6%2brTBeonHx2EvDMF6wvxLBTS9Dh0gQY5ERX1tCeOihQYtW4NxWpJl07xz8%2brIUXl1n5IUlhpbx/ti/VoC75usQ/82mKmju7c6uAdjZTFI4hBKF%2bXLRCZYUDuuDPKtA4aE4XeY4RK4AkAU9DvYtphdCyE3I/SnFjIxBtaHcqX9/A9WCQyyPKtM1ouDgKqLyA1iVkEK/VuQwEjXxWqQunTR03oscwVM%2bAiBE%2beUjcpgTqLdUn4%2bDVOTfe1jGWpHBOhlKD6hEGVKp3STdtWYm0d2YV0M5giPi7iPiVTVppiRSLMseRW2KAvnZyYavWGK3c4VBVy5xmbGIWtoAA6EjnwZYRTUWL9GiBgENh4epybHtHDt%2bGOPQMfqNpcoAbuzjLHKRRD1B5iZy/Cp6TUYGqKgC4klCr3iXiDZ9/VhV2khZg%2bMmGDhtIg4MzL94p0NL5OF2KSUfhErhVAcc7tApoZ7cfCGsW%2bSaJKjB5aJL0ZZIt6hXTdkZtpxNzOACgtILj0JYEJAPvydEADhz7co7ZoKa5xZrCQ9H/A5iE2tlawFveYfTLgdkwL3a2UDYBRkoAGtQDUUY2LHOF7HsF3ocJnizLBvGAGt5j7yxN/nJE1VBnV7fJ8g%2bSSkdID3CSBQocNpVaq0TaO7QKaGe0TCvNOen7c5RctjKlJwIMl/D9BbrubeCoBdZ4eN1mYWd65ErMk3ssFxSmGwmkHYse6%2borQPIGBZw2hEul6ZanTQobPLJuLGLUF1ubNh9pVM/YY%2bMHY0zmkDKNLR5LI4%2bb9ECc3mybDSaFGeGnUUYOk4fmnIVmqC8ezKk/lnhxPIeCZrhiCWrK%2b3eI/70Sae/cKqDdmf3HjWtjitD4cpbQECF5UopzNuzrhExOCCQUTXk49ug4NAxmzv6XHNeYHe/xlH2PPd5mo56VOsAteTTBB/autnhpeeVYLUNm4YNMzUQlgpl9fla4UMGk5ONGTouamEeTpZygpKMfKiTVFT1EJ97ps68KEtwoL6FmWPn7znCmq5V/n3pCzm6I%2bH0DrbQiH5KWpYnbOXFDZUw29HWi7BGhZNxuU%2bY4iw1yb0JoBWkIF9MR46bU2BkqnLypU59b5oS6IojNkInvDanX5u%2budWybDCDSqol9kaSzmfxqnXJrGfRyJkzuMSsPj9ubWP7HWVXF5K11ZTTToUuiBpxH7XlAdTzG36pE2tdnFdDu0BDx11Pl0g28LP6VTdLWamCKo/Yo50LuxQ3yZ%2bnpUJQ7vSp0ANVbOlbiM%2bUXvAABvRJTIvhWAtPYhbLNYeOGdMlFFUA6xkXLdlrwQ7ZdqAIlSWBYXkh5K26F2mylQKPJ30AGPQP3YI6VZvi9qRuAq6ky99OhtL%2bJ7BQRaNUPyg9uOcxqW6wC2p3b39m4RRl2Zm1LlM8qN8FURdNyQuycITLNgGJMp1nqirtkIy0kVu14ojcGzlXDGXaTKKTCmg/fn3HFxmG0eSeUjXJ3jYRrnOfSoGoGIegYoSPtYDjVPOXNtIfWZpQUjWhDVREt0AhlSKv6NX1/rsPMXRY6Dvd8JiLtuC%2btjz95jOH%2bpUqkff1WAe0OzY%2b6Q8TnTx9KDMJtgiyyKbyykbBz3DfTzeswEpuRBekaSdIlsUnasWXfT7NFaQ07tj/Zr3q8rUNgQxUx26AEo7IwoHDSDd6leE%2bTtklg1sh0J3Y/uXsiFQV0UUb30jJ1xYkXLnMEAmHXCliFcNM/L4oqWdUbKAfKnjqHmw5EwKDInf3LkTNY7YxWAe312XfzVmNVSRh8XVQBwMXqmCvDzsKyPFq2t5E3c%2bUCsjHPqVjN8jIJkSWaTRW4N3SVbOzKHLiA/FSnz5qRz5CaLpLSq3Va/43bvVJoyE6q3p%2bVcXQozWiS7xyftazmsQ697YSJ6q8mKQilQAtqGY8jjGTf24j47850WquNWgW012G%2bFcqX1Af6aKrszoRMdMkDEAJtBiomC1W4GR1d%2biIOk9MjpFp2fjaFfwO0VRwOtXwMXpvwnmdT2AhhHozopI1caY1eiGklvZ3D8jNh3lROD1uW2ylAUjxoCtN7pdtfHnrZnTYALOfiOcYk5x3C9zLclKJQ8sbzw1JVTcxO%2bn8YnqVqd2IV0F6//ULYkn9xlWKC6KNxSOK5aLYfb%2b0kK6tpvG9QuRunhnE4YfZj8LLO2k6l31G%2bsCZHwxwXaNlYcn5jhVPl2gpUE1bGCBAOLsYBOGu9/RyXLTCthddN7d8mO7KcF6LfUx/vGBMmtq5Z4RwGvTuXAEy7z6KYwT9M0h0Vf6yi4GemfOur5%2b8rP3G1O7MKaK/TPIUDEftMKy3TR0PRuOJSfWCV930MdXpL1c5%2b0AY4kpFJXdEbaBeSUdtCKQvrqEx8xLDtGf2muEKGyXhab1P%2brLCy6qqB0A2y9OwdDj9R6YzFAoeeR8qE3wEZJaug6rOpi8VyphVncPiph5Ya3BWvTH70SONME2llAlRQSK5E2jdoFdDemP1a2rqI6cZaokRSCEc9NJVGTiTPERXbYC5NReeQx1JnwlbjSFPen9LuYeq3mvw95qK8Hjsbzqn1kpeII2XL/GkaLtJCQZoTlFQ5tOwvhDJxXnu%2bgxXp4HtHHRcu/2uIPLtj2Sf6KzrUDlv0FA2/pqanp7/837wLZ/uhtwpob8z%2bQbn1GNE2k9rONNSGseY4HOXlf4f5l0WscB5Sqm24V5ECQmKeZcXX/FttdHsPhY4DT%2bssRh0CeZhX5tGMPBwOoivfNP1wWNADaVIPrYyMKUi1WHi2sh0LnDOFhooH8WVMLW42L%2bjw31Ka2iF1J%2biURN9bXQTg22cqkfbuWAW0N2BE4fhcppU2HG4R3iDpznOxwEm1s/xygHaeUN0PCgpDoDIbn5Q4pUQmUb3fls03XyypQMDy/5yhylJoxQ6N%2bgzl6xwuprux6eJGFrdFEi6Edk4NAS4P2fAu88BZZIG8x0pA7rsAuEiTzp5RHl3ukaP8iLlEooXUTTBiP7rx1Fa7I6uA9sbtx3kPo1ppCGoCUCEXNIgilc68CBTqsFPJ1rA7oFJs2/JnpaX3djlyFvMudY4tS7dtKwiYPMEOI1S0lNhS4WEhdFsiYNqH8nHpNNiMSwZRBcSMh7xG7Ua3Ksn5FRYtDR7e4IkiCxGUKsWF18zToRylBQoi7df9RKfxd6h2p1YB7Q2aV%2bEAxFeHWmmKe6bBSlXACjYC3WfBavZyUkstdLg2wJhW4BjN17k0R9OQ55OGmJgRLn2yAc92a0/R9pf0pnbzqmpXYx5aoadmmtglAEOgVHWRjCVn2ENTk0/CgJsQYsb8pOWey4w6o9qudBVWOGsUajpF8Ul/hX99ykeudgdWAe0uGAL8%2b7CXTOtKgRvJCvmL%2bswu1AYRRq3a4EBNa/dhLI/RIw5cU3x5s4dF%2bxAqX43lhpjDBRml4Q7yZ2coCJR1W4GqUpyjfE%2bimbT8RDNmKf9lXfpQGigtE2NZRlsUYnk0XeRY9OE8Fh6qMQmK1GfgRyLXxGPvXOw6YMAriLRHiPj%2b009ktbNaBbS7Yz%2bFiHacwsEVzfiF8dQND2x93wedtPA4eAF2GIOy6TyatiLpXwSLkuBHCa04RFPaaGf8%2bK58dGZghpwwS6xbzQbThYHR8DDDKlUhdpGDx%2bPo0sfKP58DpkdEkDEFIpkGMlKu4d0z0EHqzUw5UdbDU/M2OY2QJQ4h98zyvMB/vZOzWO10q4B2F4z4Q79R7kkqnqjL/AA64NCKNdL/SRQB3V3gVJ4r61Pn%2bZ8sAX7WPBqmENZXOtMscGLQq9ans5J2M4WNkZanzXk0MjfA6PiQqp/ohgRcDkF5LkI8X9TGxHpAmkIxdioUZYPXk8omVUxTRdJJuI8CmloqCMk7i2mBQKh2iWit/vqujqe7%2b1YB7e7Z3873NOSNcRUsvXw6%2bmgahYCf7tEZMUOcJ16DJW845xQkqRUBlb24bf5aI4eRtzwJoVZRxoaFgg2fq/wIYyHqKaEtnx8%2bJU6OUSnajino6rdoaBKUyv%2bL%2bgn9Whgp8%2bR7YgFP9uiAQY07F%2bSzphCebp%2bsRNq7bxXQ7pJ5HpGncWwKO9NFzQNSYshiibbhW2GCNPdADjvRGkIPYQAj/mqZrFSX82HH/rTKk9jyWm4qDtOVzdEK54bNzXCl0kNrsp0OBW4H4/OM3pxhmfZD3qVBtQbtD1X459RAE%2bDJ9%2bDb1IhO40DCTeb%2bIUSZpqRvlgArnVcipLiySJSdgr%2b37bRVe31WAe3u2g%2bXeyvDzrzvc%2bS9DeRAqJvawwpO9utkdgD/%2bjuSpKG5jvmRZHfAOCNI6VuPRtqE6KC28tvGbOBtbcijSXFCc9bKfiu9CyOfA5uYJ2wgIV4AKcOdE8kjigNM0hnME/mJhKylgBA0%2bKHkwvS5FNFG5qJRx8A6VDVtqIwqigbff9FPEjvDWax2h1YB7S4aIv4i0CAVXZ4XD81xUlhLq6JwzgC2R6EscsNVTfXCRkueQZrz5r/wacPTywJ38yIZ5r84v6/HiuQqaDl%2bJlfN0Ai60APq8p5PzPZvMkmfvAMhV%2bmIw23Sj0n6m0Xcj8DInp0CvFCg0KPtRhUy2QY/fNXujlVAu8uGLAEjFI64/9JDYwmb8Ase2mli2NnzRKiB%2b4ZDtNMFhlK%2baCTnznvZnH7bkJPTJFjQO9XVyU0FgSYLGUf3H0LFoYeWOGXx8zXlMTayBuWwiBc8Uog1ur1TLWfV3%2bBoWSfVTC6yWO6RDZO9onwQog6BDSB7tpxLs9QFYhWR1op3diNwF6vdE6uAdvftfZI3cYrvRPkyu7bCMcv9ifwbmHIvLMutYyVdAhw7fpN2Z7Q3mH/JN3fiKGtyVBzI7Wy4gkbxa2Tk22BJk3tuACPYTi9yvpFHyzVN/haDPgOTAFCWNsmT6rX6BYkDbLIkdUahKFDnwNpKRVN3fij7wMadVnvDVgHtLhtVrv43ZIXMVOb3%2bNML%2b9ymwoCwx2EUDhJHNPVgZk3qpxiOgCaQZxS8I0NKG0ptg%2bbsnm4jFU75GEY/iRZSaKwCOWJjn6noCqXjS/tEOo9pMvrw3DiWJM9uxM1z0QM0jVETsHLj2aos%2b2ML%2bfXUj1sUHlC8sx4R/%2bldv%2biqiVVAuzf24%2bV8AeEgaSFI7cFRa03fO%2bhtn08M0Ak2YE9NJaaVlHQoCKCVUAldqgSWIaH3TjaUDlT9kI0uFR11bqpwbprkBOnwt1mj9qP3wblDR9ywRIUp94/UUO4ylY0YKyYum959H7TpYjdH%2bDvw38PG5%2bFchtCXATUp3hpjUh6NB944lTtNx/drUO2eWgW0e2B%2bao8x5rW0Z03EpN7OLPel9VXVVjyiLlMNLI9XDzUeNwk29QxMwzQQkrnOcm5mM1iJ3dmlowuUo4CVfaJoZqzuYWK%2bLp8gxZLYKneXd7nnOyKiMoeUHrCYTMx7NTByUunvx5y3%2bBvFPyTcq%2bmydAFgynKOyU1Vu7tWAe0eGSL%2bCGwIO%2bX6zjyvzeEjqv3wvhxLcqtcjhQ%2bmRJScseSSzH%2bJgMbZKFGbVNBgKkZebCYzw04S8hcFgsTYdYkFj%2bKklmsGo90uYeEvnho6eRYpnjIjwtrnPBBphwoyz8JlxBp6HBalag2AyLt5z1P8Qwft9obsApo985%2bCRGXun8vhZ2aZ8a/8C5WxVjVgWc/CmETU18i5MWBbaAw6tiNZNnLWkOycWbaqQobG/hspdslXDS1gaTGRvaPWTEjZdz1JmXtwUCqWAqnjM6K9FnSuk4VBsL8AG4yl/2a2Auqp1QRwFlNpB2e5qKTpNq9sApo98ioOCA6VwMPjZa6U3JKeSV0hLoxXDGzZrCOFp/Md5luqdE7RbwIeFqsSGYGD/Rryo8z2SFt3qvJH7IskIATpiHLlvstfSJeV4kZ7JRnHFj/qLwu0UHTYKQLDyB5UEcSTuu1FVqGo4E4jqTQFZH2FT8pbOtJq3ZXrALavbWfAMjboACSxr1MC%2bJm50z9Xo1J0xVKGbHmVDM70QzoS%2blIJtrLFlmFoEPgTH7fRqUPOZpNVIwtFU7txlBIinonmK/mRsi0Yzy69NlpHXnjVJtEyhHq9KNjEi4DYqhwmixxzyCuFTkCWNKUJsuijxDPbeyZjS39xiTKbhHVV82z%2b2QV0O6hIeLvIMJzAMnLcWGEmaVQ08m95FosVduIaCvhi9O5NJdhkISLXHRgPX2FUYJXGrfCePEmVDsFClyamyecLMwZWRqEBvmzZiyXprZFhVLFKhtbpVSFld9T7waI6JoHn37FHKSNWoRUDPDUmQD81B4VvCq00KOVdid9CCzPDaTIYZV3Zq1qcUqPV4j47L27yqppq4B27%2b3ZvEk9ugu95TF2LggJaupFKqPRsWWVtrKYUK4wbobdEF8NbOKEp1TlTFXNcU8sZ2WdJX/Gq3DVNIWhZtgJIE9yasjY/vz/zL5Al6qIyFJB%2bly4nHqCaVH0YD0IGmL6Fx/cEGhmVBmSJPJ/Ix9q8vSmjEg7zJ39wulnqtrdsgpo99gQ8UPGwDGMVDx1tVNaosZG1snqTkKnbK2z6JVJWMbqEsNVNtVZzTCEOtvbsWUcCxXy8csj24%2bl64KzZFzKvTVGSYU3OW0DkkdXamOyp5wG23D%2bjE6lE3IGgZUjlVuWV0vFGCQ9J96XcxmR1r/6/Xd25qq9EauAdh8MEX6O30VATc8cUKGnLQi2ccK2mi2gw0wdId7pxxjHzFFrsuTYGW1sdR4cvG0Pm5JnoFSIkKeYJ6Z%2bSsAznYVkuPlkM8clJPL7sH6vibOkUMKT0Tn8bCjHFjXl4pFbyk1iJg80SqT9dNU8u79WAe3%2bmISdimiZJaK3VTtRte3IEkmoDcSxt1RBt6HYgNwRjUOxM14pYzhWzgQwqJ6yt6XrBy4VCFDcICf1E0fzErKP0ajHGBn93E0A6txEJdoU7Erw25QhJ9VrVHXaP171fQQuqyS4VZagOIWVqnGfrQLafTAv/miM%2bRQUHprTHPKs2glb/RgnI%2b5YjjvRFXryVHxSm3N0TPwsM24J4zYTR4b95EphI/SAUuQHcbRSIxuZwttSU8%2b14CNz0VQPPTbpeSoiNLIzpDaHRvW/6mJDwiWa4KS2Fq6YYz4aSTGNFHpL7xmJAMfVac7dsZQQV5kp3PxK1Ty7/1YB7T4ZIn4gC0uYYMtflmzqkKUKGtIQFd10zdo4gmq5bW2UTKiRIG7Ew1NWXiDcWH5aAKqzWQaKHUneUI7qTJYkgHgWZqrOFrqLYoFmQcvW1iUeGQGTEJtp6HMKPak9TAGpNKO7pKih/6YFIP7AGT9WtbtoFdDuk/niAAAcAg1BCSPtIH0LUttSujfFV51H1kFoLG%2bh5WplmPJNvDVSi2gkVa7COrKwvGmo2tmQ4oaBltU2miiz0bzBqyMCWQF9kpDaQFnb0C0gyX3kpvC4gRNeGFeQnVQigTTUGg4ZMTWqp%2bR9mq08KIo4Gj6MAKt1H4FOiQn0RKS1Q0Xao6p59mCsAtr9tfczuDAPqhfOko3egbOZCkcGRUytCAROd4bGp2icHjJMEmtOTc2nN9z4bMtWIytK76SgGElwt%2bV6Y%2b%2bTLtMAKDYm%2bZPXmobHlGGjk15NaXmX/w2fipHWhkjHIMqfE8mSmNeTEFoHt5n929POUbV7YxXQ7q99yBiTiKtjNzU/0lo1x9PFHA5qwMhixC0AZdRXT2KtPOBEfVMhYVaNPQXSthYEaI3klTk1wSqZy9ZOB51SfUmkLX1iymdxYUB1CDCR1oNgTz8YQV6JqqTB65JKpxPVDFDn2SoJIp6kzl5ZPyTS%2bo1/auuJqnbPrALafTRfHHAOP1IWw5IWfmqJiqqpI8x%2bXt8BqaWCAKDWWOvD5G8Ha8rD2ZBzK/R4tuTbCkbXyOt32CEQduOyvFki6Ka4ssm2b%2bSeZZZ4iR%2bQ0pC7i8W7tiaF2RymMg4a0whBTcBVpsVES96eC8NOGPhE1UMVC2CYO/v1StV4cFYB7f7bs%2bylyQQooWZAonSQjTIwcHvuH0vE5OVmuBhVDmmzNSIFJCHilh7ORi3Mws9G5fVGG502L4giio7kyFkxNgGkw9wzA1UB1WKPSES1CE4J8LIBKzwt3Wm/NZGfy0lQikgLlarxYK0C2n02L/6IiF%2bRcK6sdrok78zhDYc6tu9jdY2%2bZKgpFy5V74QGAukecVsOLH2Zx1uf8mVnyaUNKpuQc8JK/iwONk6FAfGIJP%2bI9HkMqV7wyYw6ZlbakJRENo8DZO4Yk3Jtmoge8peYAmsJJakxnf82DlNnQHHwf%2bC98DOcnmr3yCqgPRj7UcPjzPk7ofoAeYAtsH%2bg5GyyXFgBWzFEdTk64PBhVvFkXtgpNYKzXih5QaCAPtOoxQWTVrZwsshpSolTU5UApJqZIC7x2NgLDOvy3AZMg0%2bcbKFamDA98Ljb97FLg%2bkZNgs3cz6hstrm9ICtAtoDME/hQMTbyUOj75LTxIHhLDb%2b0iENtuVBw86NUA6g2E7tjFNGxM6InpCq4pUeWNn5dNb82eDiYs9L0KBYM%2bDqMIdmFGo0XFpoghC3lBlM4RWGENSXKZt4oMZwh4LJ3jrQQHj/DVDjeR8KCKHSLFPUuRiQVDUKqsZtRPxVqPZArQLag7Ofkd5NFyttkcLRB7Xa0GfYW1j3fbyt6bF/3boB7GABEgKUTuWSigHFMghZhaXsdZROXiDJbxkBxaAn%2bbOxdTk6Lj20cj9jIai6UiWiziSDcl0z5qhxBdORRJCjfk2XyQU5oYMEjbOG264i8iNrpg06ETL7sY0np9p9swpoD84ihQOGsaBTuTWQcBQlB4TkOTBvjakGTDvomYrgAdH6Sp2D1Zq%2b2LSPQDcQ5VUK6VwEm7J4ED26QmCNrZzwRKA6emGxhzbyUrnMqP3GnJXSjEMnBYKyOZzbmZwMWzBZiBj2HQAqxqZoMr4KnT/Kp7EENwEgUzT6wjtDdD0AfPAcXmMPnVVAe0BGFI6f5y%2bF8Jos9QRaJM%2bBVCMUXUDL4UheWqpvqWIqPYeq7IkD1cd0C1BAqhRp5EiaZJSFw5joDVub4l%2bPqf1wNZLDc3ksMzX5%2bCCNmOPqo1VqHPJpKDynJL%2buUDBFgxvPUefNWHstL3zy232kUjXOh1VAe7D2bDMWmmH2jaZ7%2bha5pKUvq6sHkiKnCihmTdjbBxM7/V0N44wgtAYxhW2Uz1sew5Z1BlWJkXuV5iIgNoE7lkJaCjAbmnruW7ioSR4oTGQOX/w8BMo8iYnOR/qh4KE0uSovisIJT3ji2QWDJnSoxYDzYxXQHqB5iW7n8BPpCBINAMkLQkgkW0fFAMlFUdiZmtn5y8bDhyO4heqgI2/vdNJZ1gnErT5YyHAnc%2bPPxt6m5GqM3JvBRcn0lJzqm1JlCGhonQ2fLUWUecmXzy0GBeFewvSe%2bzRVF0AagDI4C5%2bpVI3zYxXQHry9H2moicuqZpi13PCoNCZ9gvK2smQ4gHQESCcBp/2ZB%2bZk3PBoYcAqPptQGs5kuhMAR/w2kPfdtsyVrhKTLVQ4DWEeJiTlWWAXMuUVI/UCg/flqDDQWwX8JAfU25Gu2KJTgz22sH8ruTP/0j8659fXQ2Xdw34CHrQh4oeNMS%2biMW%2bTQSrUwmSMCxI5vfdc%2bjQ5l72N%2bWxa9nbH0MpEgGB6RAAX/yVuGgk7eXKRl0r0CX%2bjBL5D%2bOaa8KqJMmeAg3dS5tKk8tzp2tQ2NQQ1v0w%2bYe6CZZY01fjOgM7re6VfK/wwE/aKVAFF9ugo9AwTmzABpa6whknsmOYNsCgA38hueKL0%2bb7CHi6rHtr5sB9Bys/k3lmSenb6RoAHrJ3mG6%2bVhpqWyeF5lUK6PSPTP64Yv9TWqYKDK/NwusypOjGbLSXNLTb0NiFrapfXMebRhLahxDSabOOGJSEJ%2bBLFw1L3AFM7epEHonATbZRFdy6T2%2bb5nYjwQ%2bfytxSeYQAAIABJREFUanqIrQLaOTAi2h6mI1FxDulxoa5WlrFQtlmZT1LgFnJF%2bRCWsaAQ2VvCkjoyLEAA5uGaeFlbUnXbQs4SbBlARFxRUzYUuIvXqfpcoydL3QHFtHQO8YOKifoE0iLFn5HHB0q1Uyq%2bKz8df/OnrPYgrALa%2bbH3R37ZMJeGqD2ExL9aW0uDhKMNKo3SRZCmGZWlRfmyjhBsM4bHdlKpgG96KvXWgY1ddJT%2bSus7UJ%2bNgspmBL8NKdmWO9WN6i4BkmibmVT11J8b1UfhbgxQRZmUV8RfrFSN82cV0M6PPcuTtzH7crEqBMpEo9QFABJ2OiLZ9iQj3bOkECTSKdM51uu8Wuc25qkQLA/Ws5vPE27gog3kj7bQNXR71fhFKU1PRaN88rgghJF%2bcLCVhnLuCOVQNZxTS16soWHBFG46IiYjh5s2DzNR3QPAj5/ni%2blhtQpo58T8r70n2qajoW%2b7iHMBhZ8opFI93zPPoSPxsrTLET0SqxqyORQFJqBSnk74VcxBs2knZyt4YnDpNvVybrynl1y%2bp4zwa7M%2bTI54m%2bDNxZF/QOtwZ0WUajKYFEwkZ9a75I6qUJUn3rH3yiCWZgfgJypV43xaBbTzZe/bROHIRBwx8t79l3IQdqK6d4V3h9HT0p0DUDhMGiQtt1G2BrpOTzsvrGF1i3K4nBmV496YQxuZL5qazuOOWrW/wD8DyIBbB708F4tluLkrHw3kAKXPAaLocUhxhYUzE5H2/ef/Uno4rQLaOTL/q4%2bI/0NCTkXhCKqpfQyNgiR372C9XouYIYedqKqjvRBtqfXHoZpFAPI1ToLW8XlD/ZseQ7ysdWwh0lvklnrNnTwRD3HENvZyjjVNyKsqv6e34YOFvMIZT0tUtTXBQzMhFEWHsg/ufbU63OQfDVt6ZhH8mqa55qk2u3mFXXyrgHb%2b7N%2bMUzhs1oLD8yC91E3w0rjSR/5FUeoTFyjmkoZAk3VbAVf4UJUttxBs3bBv/WyhaVp5QNco3g/VLIGsgODf2ya0Fcltzj9CmtAUmvl7pmiojthBuIkxh%2bZUixlnAJz7iTv5aNXur1VAO2dGirafS0eVZ9Wl%2bdylcKssDiC36jgsQJBzQhgKA7ZAoSRfzT3b5GmxA7ShxJntZas2%2bIb7Yh0EFRaL7HbM9VkEonB4IFMV2pBDs%2bB6zpFR6O7zZCYy0UKIKuGmS3k2AGpyJw%2bWcooWU07RRu7Z0quk7Mq19DBaBbTzaT8djkplvxGSegYQd0pAqkAGeWYgU7BlVQqHidPGlVOn8uPs1Vlu7T5771M6gjH0o0W6qsp7diUwAoNbmriOLGXEQNvE3FoMHVNZJDarYxyIYkycPSDk2LhWHCjsqCoawZ3H3UkTvyoYQDwPv1ypGufbKqCdQ/NEW%2bfcV5OsEJKWWRIh5LDT0rwBHXYiEUmRc28idBgnQPmhucmcIjaQJj9VU0WDCIGkjey4V9WoLNcZJDlEsVZpPI7O4zSgxyXTPlQyn4%2bpeBOWEkqimVpIk6qbEn6nvtWgTkuyTSwIaUXzLKz90zt%2baV14q4B2fu0DgyPT%2bZxEIcheSsKPukKKwpbnHfR2SMPQswvYG0oqrVg4XanBPdNEUwQPLL2ujK5hxium2ecFzoKpQmbcyoO7URLcfCyW2PwhRAytW6l6K5px3K5PFWBWDubQXHTPlHeGiJ/y6ijn/qp5yK0C2vm1ZxHxWFfiYpWzpypnD/3ae1vrlDwv9M6ySJFAh2WF8gonARLNGhBwBMXHgnysJ0CJVmmZbmPKQKuYkSJKso0OOdWbDEJTRSxh1VmX8miGJzbRuLyoe5YqlXy8eqgwh56pG4O6NTBRZ%2bhHY/gDU%2b3cWQW0c2o%2bV4OI/0UfnYOUM4sdOdEDW63WgcLh5w44HHpG4YtJuTfek/8Sr8rCgPbQpIgQQzsOdVkGPA/08qb3jb4XbSQ8XQ45nQ45VWs5pr0Nh7ckOe7A%2bKcJTYGu0ltFb7EB%2bP3zNc1o0IVfXzwZTLAXPhoQVcMc%2bjTALl9PD4tVQDvf9j7Jk2kKR6ajr5kZLC2t5g04FnyMJNuYFwJSlXAJGKRvNIVcRoZegpbMScAyMkxlQ3o/27BRGw%2b3V8%2b5ysi5Q5s04pDCznBuesnak%2bySSbBqRoaxUKO698iaphGyLR%2bDU%2b1OJPBYibQ7YhXQzrFFoi38r3SE4j5J8puLA9ncAMxBJ%2bqdpRgUU%2b1wYNLzCdELQ63Dnx9FfliSR2s2a6GlQmTxuhPum6Md2Sx8bsSFa8VjM4NKqiMgcyKG6YqOc5D%2bVr7wrU1hJRdSUG0TAK9SNXbGKqCdf/tX4Qh1ngzTFxMwVeN89W7V2wHNIq0P1BeZT8hF5VsFAUMwg8BRPxvKZOvZnFuMBgrHvJzNtx9x6iSElSEpJlA%2bvHe1JlVa0QkJbV0xt7imUNOfizD%2bz8Zl69AJECPvXrWSoQKyJNNN58S5j9S%2bzd2xCmjn3DzR1jn3Moc/PLgjfQmL4SeYk2xlIIjk3JickRBEg5UVD01hjEtN7bKoeJaY/m50jbhDPReguPQGYSEIADtWlcWkElLOHfCf0w9N8R5VY0xoKjDNEGXlfAkPDTNqjFU0DzoP1TvbIauAthv2Q5InYwKoTX2dodIpGveJX8V5JqAeTl1QCEWB3sJyFQfvgqKA8OxOZvOGVxU%2bnUqzPWWFpgw5R65CDdBYhLzlipQKDPNHZcK5ZTJt4hZb1UGRqp88EcoNW7sQXqx9m7tlFdB2wIhoe8yyPjqBz90CnizrhwmvwpT1dSSD6o%2bWOomkiACpiUD2Z7i0aTiJZGDSNtB2I0UBbS6VA/Q4vOwYVOc4mkR4Q1Gh5GPTFUcjMwF4Z1EWHKVDAEk6KFYx43BlH1KuQ3Wzl8HL7OGFxzz3NBsabIXOQWF7HR68Y1YBbXcsY6kjoOj7p5AzrxyiCjtRJcrRjblbJoSBcVgvjRQ3Rmj0eAYPraH/OdwbiDGiIuMOSG256apqy2ExNaevRbyRuGYy6TxWcLkokI38E8VaJF04Dt3HvbPw0RGf3eUL5mG0Cmi7Yx8CwIzsKRQLoms4TYMwWhTIZYOGhTmvKBbcrK0thKYqhN1mplG8MtyQQsPoaYWLDpusijlG2eDZAT17pQxkBsnTjBQN8QR5fii3ijmUbdmbc%2byFuZQvc9RCpb0zL7ZZ%2bzZ3zyqg7Yj5Sptz%2bJ8EkJgYqhrO/Zc1dhI4WK36RJoVgEm0D9Wzrrw6zG8mtjsxWGwzLOdpjpoqPxRDhfPdc79VTPCHHnNF09Drsvosc/RkqrwqUPQ811S1gW3yzvw%2b6G1qMWAHrQLabtnPGZlZmYYNo1MVz0LIH9FKmJWGggD1L8ZBKz73Jkoc%2bnQIXeIMlYDByPSRDfRoT6PXzt05PTMheHX%2b1qDok4WqrXGU4mNVR6O6DSJa9uTReYAP8zrDzIVc0NEW3pn3%2bJzDL9V5m7tpFdB2yPyXzFr3hzLYI3DPole2pJ5OlCb04TRwJL1G63gYL3sp6XXgrgJH2vyIxU6K%2b8K24p51A2dxm/lBy0gC/86l/k/Dx2QgtDL169jjumZJ8tD3akMe0D9mUVsjYW8cIBylhvLhwU28r7mzHbUKaLtnP6m7AEB5ULGfk6qda0/JWMe8EXKrU5prh9QShZhG1KlsW94XQL2gWntNr0FzSshRoktq9MpqUpg5CmiKG1foCon3RUNQgmTSmqYemNj5EJrTadK5pUb1WBxIg0%2bS25lPxAq6aCA6bjXc3FGrgLZ79mEEiBSObOCuk2EoZckO0SplVyXYaMYmofPmTngdrNLhQWQVdPlHtP1dtvEG5VpN2XWJ3yZOYMqORfBsBMRCgl%2bqmdFd8%2bv0eko8JiqH97TCuVEHozsD4pQrpnHEcwgRKD9SiwG7axXQdsziuDv3c%2bGodX%2biUCuUrpe074CMqOupyudDVKAp5ODKHFZ6YJ0CHR1%2bjijlRuNS51gVgeEl%2bmmN2gSKTbgjwnJvZWPEv2vUijKLykSqRwAyEWWELH8m4%2buKaVqGpkGZpnpnu24V0HbTnk0UDqW6ocatWe5nXPXS9%2bkw6Yf55oDlqodVyL/1cLLspWMAMuaFA03oEOdOTSoZNDttqSKUVU5QOTVHE4utS2KSjeKfQaP70bXvRVOaaPiJb3/iTgrDx8ql2sZIWMp5s0Aojg37X6qdAbttFdB20IjC8Snhk%2bmRd2qQSrT4iBn1/LrPO4UoizBMIkWmPzgpmWbQZHjIyGCW5pYezrQ18dCKXtER7NOcudC6FQCaQmvqMmBv01GxAYmHtrY22wdPm%2bd8IFeEw1AV6hBw8Xn1znbcKqDtrn3AAIeS0TNZr1aZgqvV09UZtEiix5Hihoy0LCLEHBgRNKXtlHz%2bZiNPy8XkXaJsjEiWCf2XOwJC80LMj0WlXif6ZzzgxANbVAuJ23uFX2v7yM/rab6AeLB9pmTb1GLAhbAKaDtqQUHVwGGW6AaAVb%2bOt7WnM/ShEuirnZxTQx12yjCVkZmb3FepkvYSSeJIUYBzYjiSEGNzbiTkbLJ2LZAugdh%2b5b0xr3PG7aVGreOQQscmVji9Z7kMVd54k%2bom%2b2cy0s/F1izOnQXOmq0yQRfAKqDtsFnrPshNTAxWrLMPJUmW1SYYyKiqp72w0jx4tK0JX/5GqboSDsT8lkl5rNOdNBVyZm1aIEeQabmZKKHmaKJ55M/p6QNOVT9Rabmh9JEGQVpMHQacN8tlgoLV3NkFsApou23PBoVWl1Q3QNQ0uA0ol8TmdYwh1j2Rc30Id6KkhBrlShme%2bjSobOau1YZaqTLtvTUbLz6mjcTezbSsDIsbSvS3lNdjwA7nhAGSmtWBPDT/WZ11Spk2AOGNOjPgYlgFtB22WBxwnwifQHUJOJearyNtwYZBKhx2OhkwrAV/hHlKemkgswhia1U6T5uoZhs1/Nma%2bFKcMKU4YgX2ZaTaNg1IMeo1/5nWxI3zj1UsGsGN8mfhdaUd52jOQpy3EMm0fW%2brd3ZBrALa7tsHY9Keaf%2bYglCma6jiAE%2bK4pQ88ni7nGImj5ALBFJNpVdKB4z1zUYASkw02oYDUoYWZYhaqon67oC1Q/EmQ%2boNWeEIY96M5LdXYbITd0KkKnDImzUmxcxgaqvTBbMKaLtvHzbG3GbJHJ8UF5ItFwL4I2pdMzQpf%2bY2DUfCzA9LQKlWkt7wJnlokMWsysa0NZrBG6ehyRBUdS1PnxLMjh5YyJ/5KejIlc2YP2uoVd3nz5CS/iGnWISaEAYuuy/VAcIXxyqg7bj5zgFr3X8DLkBi9FbWodrZw2plU7XTV/4cSjcBTxEH0MUBkJ7ORKaNaxnCqVQUUMUHzeuATXQ0l/TSTFo2DDmTB9kYHvLCAIu0nAALqfuB6Bh%2blTWFmEEI0sWQk0Ug%2bbG/p11V7%2bwCWQW0i2EfEjVaDueEjlG0QhkQDyUm0jF%2b%2bddxSpIuDABBUGLUq3M1UkXl5dtMh5ybUm2eshEKECqs1PK3MQSN%2bUFW1bUyWLgXfglXQMMcAT3LlLkn8XPV/NkFsgpoF8BIu%2bsrwhHjboD01U1IQxOgZDCxRiBFtJUZw1QUAPEAQe8ts%2b2i2pBmdpblytJ4VJ9F6eU0AkQmAZQHLO99BpVZJ54kT7cKfaosDWSK4kIUh/xo5Z5dLKuAdnHsl9n7QtXY7aQSSFOeKMdGHIyYS5PipMm8MEfVT6GEgJ7xycUGJeiY9XCOQF6TvxQlvlP3AvdxosK7MB3dpmqt9yR5alXgwJXeI8bPYahI4Wjaeqp2OvLawuuVqnHBrALaxbFnfcWOVSYcEzQ0rigXiiuAMuYutCJF7lc07gGlsXZMfbDRI%2bIeUI%2bETQgPTaxHqkbygTmSDPJTPimZNqrJoeaMagzMwdSFAcJBQQNlbLuQb9c9zQvAOOEpDRGON1PDzQtpFdAuiPnQqbfuOaNyZBJ%2bEtE278TELHzkYep62lLuZCEVBQx5QGkdR0PRw7bsXrnxsDKqcHNNcrgOk3g9EFnpv3QiPAkQvTivqGFCpRbB9bEhnfNnliqjvVL2taoYQA34VffsAloFtItlH/JfdD942FGzdgi5egq3lKRQoHh4RVuX5lPGyqAP62iyFFUcdZM4DroF8mT92brUEw8N1SJI/hMYXxEIo/DSjd/IEeNfBqRA6mX1/7dt5LA1Iq8dd87UlLbqnl1Y6x72E3DBzHPSfhaISQ9Ajds%2bHPRf/rZVxYD45fdeTfjyNw20Xs2ijV7MweU9eOLxx6FpDRzM5zCfz2A66ejWwHQygfV6BR01eXvwCH2fJgKGp1Us9mbQdq0KB214eHj7hFR0Ab72p9fg6PAkgaLWdlMqu8wb8/tomFvG94Aia%2bRD6TX1dvJMUqca6jF6mTer7tnFtApoF8h82DmddM%2b1bfNOUeBAlppuY3VQ/cmffPJJuLS/D3uLaQgFPfgc3b4FaC0sj0/gK19%2bCaazDmYEZJNJA4vZBOaTuKybNNA1LbQtj5yLHZr%2buQe01nNmW0OJecrDoaN8HFAezEl%2b7Mknnwh5MdNNwK57uHW0hMPjY3jhhT%2bhfFn0DVfLdRSnXK1h6ekmq8g5C%2b/DnLMw0amP4WcfPc%2bepqevLf7Kw36tXFSrgHbBbN3bD3dd%2b85EcI0eymNvugqPXb0K3aSF1fIEbl2/Di%2b9%2bBIsZlOYTidwsJjCYjGF/ekM9g%2bmsDefwLybwHTawmw2ga5rYT7tYD5pYNJ1sD%2bbQDsxMG3byMr3gDhpAjB2bZzA3rQR0Lxb1nvQ8hSLUGCI99g7WFoA66c2oYXD61%2bH476H42UfQOvwpIfDkzjN6vKVy9B0swCUh0cn8Opr1%2bHLf/KSTIEPVUykXk0aT8dSQU4XA2I3QfXOLqgZxLPkPKrtihljvm0y6T6zt7cPb3nz4%2bHre/36dbDrNcw9SM2nsDeZwN5iAovFDC4t5hG89iawP53Cwd4cLntg25/CtJ0ED21vNoHZtIPptIF528F0NoGFfz4xMGkbmERRsjDwKXhm3kNr26CC4UGNebrBS/Ke2trB0ifvPYkXMeTsvAfm75crB0frJRwdr%2bFw1cPR0RqOl2s4Wq3h8HgNt4%2bP4fDI3/t1VvDYm98EDXRweHwEL774Cty4fSvkCNekiRb329O4Pwtt297q%2b/5yvaAvplUP7QLZM888843vete7vvfLX/4yXrt2zRwe3oLFNILRfDaFhQ8ZO4D9hYG9eQN7EwPziYNHL82Ch%2bZzX5dmPmfWhNv%2brINLe/MAZLPpBBazLoacIQxtYTZpYNZ20E7a2EhOgNa11BvV0jwAUlp0wROLebBVHykhEXRi6Ombzo9OVnCybOBw3sHRsoejeQeHJw0cLRu4YRCmzQQmDULXIExbgBvXvg4nJyu4cXQCJ8sVXH30Ksz29uDk%2bASe/%2bIL2Th3n%2buz1v7Gw36dXGSrgHYB7Du%2b4zv%2bwssvv/yhF1988e3L5YnxIZ8HHw9QCx8yLiawF/JfTQCyy/szONjzXtYUDhYzWEwd7E8gLDvYm8LBfgd78ylc3pvA5YMOZj7EnM9gNu9gb%2bJBroPJbBbBaj5hJUiATjV5enetVU3qa4DGOZiGWZoOFjbI6wK4qZ9FFxj/y6WD26sWDo9XcHzSws2THpYnDdw%2baeF4tQxgfPOoCcA892DWWWiwiYoc2MLMdHD71nX4%2bp9%2bLXh1Pux84m1PhpDzpZdegeXyxOfharh5ga0C2g6b98hefPHFX3/%2b%2beefahoDDGQhDGwbmHZNzHvNWtibTmBvL%2bbK9mcNHExbuOSBa9HC5T0PXjPYX3RwaX8Kl/YmcOlgCpcXswBs%2b8Ez6%2bDSwQSgmwLsdQCLGcB0CjBnT6wFmDCgtXRvEjHIKZauT5x5x8mP0ltHbaBuvYZuhbB/MgF3NIVbxydweNwHADs8OYGbRwizBmHWQQCz2QRhNjMBqG8emZDbO5w10HYIk87BJIS9CF//2itwsopFhCeeeBIee%2byxv1QpGxfXag5tR%2b3bv/3bf/L3fu/3fpA9sknXJCCbJEBbzCchTNzzoDafhBBy3997oPIemPfW5hO4%2bugBXNmfw8HeDB45mAdv6E1XL8PBvIPOx3Z70%2biNLTygTQDmU4D9aQQv%2bV1s1E2rNPI11tN9QDduM4%2bLVzYC3fEK4NbKz9gDODyB24druHG0hFtHK7h5uAqVz1ev34abR2u4eXgCNw5XcO3GIRwdL%2bHW8RqOTtahkHDr6BiOjy3cXi1hedLD0aqPg2R6B91kik899dT/efTRR3/kYx/72Mcf9mvpIln10HbQ3v3ud3/wM5/5zPf4kNLnsiZdC5PWBFqFrzrOQiWyhZnPfXUGDgKYdXCw18L%2b3OfIDDx2eQp7iw4uLzp4ZH8ClxYNXN0z8Mg%2bwKP7AFcuzWC6jwBzALiyANibQ0C5gxlA50FqTpfPhE4gycvGOFN6AuJj7pPSwIZ0b%2bNuOguwZwEutQCXO4DbLcBhAwe3lnBw3MLRDQPXO4Rr3jNrFjBtMRQtDPTQNdPgnXkg9x7cpPOH6KDr1tAdIxx1BroTE3N169DTav7oDz//zLq3H3v66aeff%2bKJJ767AtvFsApoO2beM2MwmwYw8yAWv8xTD2xdXO6Bbu49tFkLi5kJ995Lu%2bRvPvScGdifNqEI8MisgcszC1dmDq4uGnjTAQJcMhFYDqYAl1uAgwZCHBcAbEpANaXnnbpBAWhtGr0ORgGZAjTx1k7iLvx7HXgGrgE48MC2gr1pD3tTB/MJwqLrYdLMgsM4byy8NgG41fmihIPOuFA0mICDSYdw26fyAvj5DgoLy87BirohVn0Df/LlF5764z/%2b4sfe8Y53fPSxxx77ro9%2b9KNfetivsV22Cmg7ZD5n5sNMD2YeyDoKMTnc9EAWvZQmVSE91WLiqRcd7E%2b7CGxTD3oQvLPHL3dwZb%2bFKwdTePzSBC55D%2bnSBOBKB3CpA3h0ArDPYeWM7lt6vKD7ibqUPGjtFd6aCi9hpUJOq0DNFeI%2bCOA9xH0DcNgCTFcArYWrXQ/7kw7mMIVF52AxmQWPbNbGSurEUP6scWCOY/%2bp74A46bzSSAPTMAzGwKp10PXssTn4wz/43DOLvYMvvOc97/knv/mbv1lFH3fUKqDtkN26deufn5ycGA9gbeNZ%2brHdiHNoni7h82ZyC%2bDWwWzaBoqDB735xMBi4r2yFi55aoYPRbsGrsxMqF4GALk6i6B2dQqwmBBgaU%2bMwcx7aJ7StU8gdomAq6PXgECNQ059fwwAS7rxYwbAToWzS4D9mwDzWRzz1PUw6ybwDWBh6tu1sIXGdqHg4Fyknvi2KnAdEWkdNDChc%2bSgbfpw3pZrB11jYdXY2KrVGFidHHb/99O/9bPvfve73/Hbv/3bf%2bthv9520Sqg7ZCtVqunm8ZIL6N/3PoeyvCFjAAX%2bWAR3HyfpQ9BJ96ja3xlMAJeALnOwN4UYa9xcHkW8/swt7FyOVkD7DUA017lyGYq3PS3q3TrCMz2FYhNz3BSH4khZqwIEKC9BgA3PHQTuPFMgxlA2wM86nup5gDGV0mn8Gb0jVwOJqTWa8KYqhX0fQvOtlE%2bqW9Dd4A/F%2b26D%2bfruO3DD4G/Nat4Hg2dO89V%2b3%2b/%2b9z3fMu3fMuf%2b/znP/%2buh/2a2zWrgLZD1rbta3y0LPPDMj5SUwxfzvh6eAxxIlPTNkGWpw3Txl1QgHXUqO5aDx9xVia0lLgPhUoOCV0kkoXLxZJXNqfX5gR0MwV%2bZ7U5ref3eUSfYk6A%2bArtzxG4megUhtRbG2WKVgau9gb6tYHVGqBft7Bed7CeO%2bpfdeC8h9msZQSeMT0Y00EDVs5hY2x%2bLg3A81/4o2/z%2bcpPf/rT/%2bxhv%2b52yap80A7Z5cuXf4bFD0WZtpxNwnLZyGPrSBiR1GB7Um71IZdv7Pbyr/3KD09ZA9w8TrfeizU68qLWBF5rAh2%2bb1Re7E7BTFtL4SqD2SUKaZf0viq3NvOVV%2b%2bJ9QBt1BI/mEPoHJi3Nnihe52JucNwox7UacwxzruoFhKrw0Yqwpr20rXRw/3s7//%2bD/q85UN1ke24VQ9th8xTCzzN4Esv/PFTceo5hl5IL2DYOQO9M9D5HkmvOtFE5Ym%2bMaF/ctlb6EJ41YI59hI8PbRHJiTMPQXMe2q%2bunngY1O/4ks3AVZzgEdnAPPbBCwLynet6aTtEwjtqdBz73WcUEdh5hHdTmg/HiwP6T1tBLijdcS24Lz14XOuVxja473uWetvHqRWMbyetDaE3H3rqS0I1lM4bAO2RZjYNmwf8pDWgPPr%2bdfRgG0aWPcr4/OWAFDzaTtiFdB2zN72trf95Rs3bnzu5o3XFo2Jcyl9XmhtXMij%2bYodixt6GoMPq9q1DctCJbTv4WSJMPVf3GMI26JdhnFv65WDqysHV1ZraI/XACdLgJtzgEeOAd66R0DmPajrBDTf4ElqBEaWAG%2bf/EUGu/aUE%2bxoXysFZh7AngeA2/ScQtLVEuD2McAKAa6vAhl3tYwV1J701RywZBKIugbnHEOuMYTuBkxvwhi8kIck/TbfWdBaAz2H69Y3M6yeftivuV2yCmg7Zp4n9cwzz3zrZz/72c/duvGaRxCVT4u5oJhH6ME08c/bcD8lhZ%2b9wzCF3PdOHi8t3Jq3cNS3cP14CreWXofME3FXcOV4AdMbPcD1FuC1JcClGwCPHlAF4ZjyXJfo9hKBmKZyzAgAl6ry6ejGubklAeWKwMuD2DUCN86trQBuLAFuLSOQLfvQB%2bqWcejLzcN1UNg4Wdug7BEGqoRZnTwRnsPvpLq7zTgfedpwqmrnzyqg7aAxqH3hC1/4na//6Ve9i0QS1JxXa4KQI2IPdtJSG2UTQlEXuowaWK4RTtYIK%2bwCg/5waWF/buHm7RXcuDSBKwsbWoguLTrYO%2big627D9KADmN4EeLQDeGQaw9FLrypPbE6ANqfbjG49eWGPEFxosu1KAdosdW2UAAAGJklEQVTX4nJ3CNCQR7g%2bBji0AK8eAbx0AtbLCd1awbGXGTrqQ3vTjWMPwmu4sezh9nG8%2bdfD5wtzRzGq2PpwnMbfWVK3jfMFIuQ5i6Jqy/nJxWLxyYf9etslq72cO27vfOc7f%2bX5L/zRX0G3NkKuDcTahpRm4%2bM5dw9MW3nuG7o5aR56PacN7E/b0LC%2bN/E8tRYOPKBNGziYtLBYdLC/14Lx280bmC06mPhO8UUT26I8u3VGHQW%2bPco3rYf7Jo1bD1rZQFOEqWrhkcZjXr%2bO7pNXf7y9BjjuAU56cCuE9fEaTk4sLI/iQOTbN9Zw7L2zlYXbJxZuL%2bPt6LiHw5WNgLf0g5P7MDz5xBNqw/R4F577gojPK67Ccxc8vVUfSbZLUsC9/Mijxy%2b/8rXXkxSs9oCsemg7bs8999x3surGV778wlOhUGAb6J1PaiPMen/fhqbsZZjLGYFtOXVwMonM%2bfnKwtGyDVJDN7sG9k5amHW%2b77OFxWQNi2kDe9P43LdLebDzSrbTeRv4bF4vbeKf%2b/tZE6S5A5h5cOtIdYOlhSSg4/gXI6j5%2b6UL4NZ7wcclRmltnyfzgNMjrE6i3PbR2sLhCgNgHS6jN3a8dnB4EkHqKNw7OA5AFsFstQHM/LK1l%2bjuoxfnw1V/Dttuim9/6s/8jYf9%2bto1qx7aBTKvi/bKKy9/6CtfeuGpCXULcMN6pCgkj80vCwq0XewBDd0EnYlKtF1sevctVAt/PzXRo5t60DPJuws0iCjd49cPbPyJCYAWKoe%2bv7KN09JN6GoYnmsbmCMx5OtXMSz0IaKX5V6vMVJMvJfVY7gFkPJg5UHLInlfFpYrhON1BDIPWAG4gseFweM66fvweBVCUS8qiQRoyTPr6X6%2b2O%2b/%2bVv/7F//%2bMc/8Z8f9mtq16wC2gU077Fdu3bt5195%2bcX3Hh/d7nQoyo8nnREuVgA0aZmKwCZ9oZPohXVtG9qmZm0LnW%2bf6iIg%2bu6EWRt5XxPqMfX3Hd3HgSmxwthSlt13MgANBfZemqVZm5ErB6Fg4cHF30fPku49CHnPyoNUHwEveFu0PHhbpHzrPbJVAMEIZGuaHL%2bi3k3/uvfKeBmr5n7T25/%2bnTe96c1/tTap76ZVQLvg9p73vOcfvnrt2vd%2b7asvvd32Mc82mWjtNAa1hpQ74vOuTT2hXpqI15t4QAs9oxHkpm0Erym1EoV2qyZSIvzyhqqsTQMCaKr9XAjBOkkfaqChUhk9NH9ve59awwBEnlfnCcIeqLw350EtgCCBWAC13hGIRSDzHtm6T%2bElL2Ov7PE3v%2bX6W59824998pO1MX2XrQLaQ2Qe3G7euPFdN66/%2bs2exxZY8QRYLfd9ekCbxGWh4b1JTe8dAxo1xU%2bIUe9voae0bYInxs8Dl8sQ34umrjcjvSmeM4ZEq6DxA6HKGCc3UQjqIlF4zY8d57zo3jkBqABcNJszAhvSZHUUkUf/us%2bTvfmtT3zxsTc9/sM1vLwYVgHtITWfbzs6Ovzuw9u3/uJrr177xuOjw66jULEjOW8PYPFxSwAWSagMhAG0eDkDGpNYW5p13sR5nYZIrZu4XXwZBjIHjd7z/Zjsufn70AHhp7zb%2bNyDVxgs7CJYeUAMgBe8MRuAsKfZn5aAz4PcE2/7hleuXLn6a4u9/X9RQ8uLZRXQqgXzebfj46O/uzw5%2bfO3bl5/543r1x/p%2b5WJ3liSKmppQnpLQMehZAAwPT09DB6mRnnyzgwB2yZDl4ivjntWXcy1eY5d4NHRVHUPXIFDZuPszZ4mpYcw1UUAC72rDuHxt7zl%2bmJx8ML%2bwcH//NSnfqs2m19gq4BWbaN5kFsul9%2b5PDl5Zr1efdPR0e1vOj48PDg6ut1xSNlm4SWI15aBmImVTl6HTT%2bWJnv21Bw34buwzFI7UyTBDsmxPpT0YOfBa3/v4IXJdPrCdDb/aM2JPVxWAa3a67L3vve9f81a%2b4Tt1%2b9YrVdPe/C6ceP6Ow31kV5/7bVHVqulyYHNpLaiEU9NPDR%2bTmx99tbe/Ja3XkdqZXrk8pXn/OrzxeKTxpivTqezX6nhY7UKaNXui7G3x%2b91Wi6tbduXP/GJmqivdgcGAP8fzzchVv1ccdkAAAAASUVORK5CYII='/%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='254' height='254' viewBox='0 0 254 254' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M127 0.29126C57.0325 0.29126 0.292969 57.0308 0.292969 126.998C0.292969 196.966 57.0325 253.705 127 253.705C196.968 253.705 253.707 196.981 253.707 126.998C253.707 57.0161 196.982 0.29126 127 0.29126ZM127 250.749C58.6583 250.749 3.24892 195.355 3.24892 126.998C3.24892 58.6418 58.6583 3.24722 127 3.24722C195.342 3.24722 250.751 58.6566 250.751 126.998C250.751 195.34 195.357 250.749 127 250.749Z' fill='url(%23paint0_linear_4318_346)'/%3e%3cdefs%3e%3clinearGradient id='paint0_linear_4318_346' x1='67.5262' y1='229.999' x2='184.789' y2='26.8949' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFB915'/%3e%3cstop offset='0.24' stop-color='%23BF8500'/%3e%3cstop offset='0.41' stop-color='%23FFE26A'/%3e%3cstop offset='0.46' stop-color='%23FFDD63'/%3e%3cstop offset='0.53' stop-color='%23FFCF51'/%3e%3cstop offset='0.58' stop-color='%23FFC13F'/%3e%3cstop offset='0.82' stop-color='%23FFB915'/%3e%3cstop offset='1' stop-color='%23FFF100'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='256' height='256' viewBox='0 0 256 256' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M128 0C57.3186 0 0 57.3186 0 128C0 198.681 57.3186 256 128 256C198.681 256 256 198.696 256 128C256 57.3036 198.696 0 128 0ZM128 253.014C58.9609 253.014 2.98612 197.054 2.98612 128C2.98612 58.946 58.9609 2.98612 128 2.98612C197.039 2.98612 253.014 58.9609 253.014 128C253.014 197.039 197.054 253.014 128 253.014Z' fill='url(%23paint0_linear_4318_393)'/%3e%3cdefs%3e%3clinearGradient id='paint0_linear_4318_393' x1='182' y1='4.5' x2='77.5' y2='256' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.00312487' stop-color='%23454545'/%3e%3cstop offset='0.310417'/%3e%3cstop offset='0.628125' stop-color='%23575757'/%3e%3cstop offset='1'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='42' height='46' viewBox='0 0 42 46' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_4318_419)'%3e%3cpath d='M21 38.0002L8.00962 8.00025L33.9904 8.00025L21 38.0002Z' fill='url(%23paint0_linear_4318_419)'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_4318_419' x='0.00976562' y='0.000244141' width='41.9805' height='46' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='4'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_4318_419'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_4318_419' result='shape'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_4318_419' x1='27.7905' y1='-3.26818' x2='6.23495' y2='34.4541' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.0604165' stop-color='%23FFB915'/%3e%3cstop offset='0.2375' stop-color='%23C48A02'/%3e%3cstop offset='0.477083' stop-color='%23FFE067'/%3e%3cstop offset='0.721875' stop-color='%23FFB915'/%3e%3cstop offset='1' stop-color='%23FFF100'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='375' height='448' viewBox='0 0 375 448' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_f_4318_428)'%3e%3cpath d='M316.736 130.359C368.446 202.009 352.29 302.026 280.641 353.736C208.991 405.446 108.965 389.278 57.255 317.628C5.54512 245.979 20.8168 151.771 87.2449 98.8859C89.2446 97.3096 91.2838 95.7618 93.3591 94.264C95.4345 92.7662 97.5369 91.3059 99.6719 89.9172C170.779 43.5421 266.511 60.794 316.723 130.368L316.736 130.359Z' fill='url(%23paint0_linear_4318_428)' fill-opacity='0.6'/%3e%3c/g%3e%3cpath d='M347 223.992C347 312.353 275.368 384 187.008 384C98.6473 384 27 312.353 27 223.992C27 135.632 94.5153 68.1783 179.33 64.1696C181.874 64.0617 184.433 64 186.992 64C189.552 64 192.111 64.0463 194.655 64.1696C279.454 68.1783 346.985 138.191 346.985 223.992H347Z' fill='url(%23paint1_linear_4318_428)'/%3e%3cdefs%3e%3cfilter id='filter0_f_4318_428' x='-23.6641' y='13.991' width='420.672' height='420.013' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='25' result='effect1_foregroundBlur_4318_428'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_4318_428' x1='211.555' y1='72.0877' x2='159.674' y2='392.99' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FEDC31'/%3e%3cstop offset='0.09' stop-color='%23FDC347'/%3e%3cstop offset='0.27' stop-color='%23FC8682'/%3e%3cstop offset='0.52' stop-color='%23FA2CD7'/%3e%3cstop offset='0.76' stop-color='%23987CDB'/%3e%3cstop offset='1' stop-color='%2333D0E0'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_4318_428' x1='295.812' y1='115.188' x2='65.9458' y2='345.039' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FEDC31'/%3e%3cstop offset='0.09' stop-color='%23FDC347'/%3e%3cstop offset='0.27' stop-color='%23FC8682'/%3e%3cstop offset='0.52' stop-color='%23FA2CD7'/%3e%3cstop offset='0.76' stop-color='%23987CDB'/%3e%3cstop offset='1' stop-color='%2333D0E0'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='316' height='316' viewBox='0 0 316 316' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M157.992 315.518C244.991 315.518 315.518 244.991 315.518 157.992C315.518 70.9933 244.991 0.466797 157.992 0.466797C70.9933 0.466797 0.466797 70.9933 0.466797 157.992C0.466797 244.991 70.9933 315.518 157.992 315.518Z' fill='url(%23paint0_linear_4318_432)'/%3e%3cpath d='M157.992 293.809C233.002 293.809 293.809 233.002 293.809 157.992C293.809 82.9826 233.002 22.1753 157.992 22.1753C82.9826 22.1753 22.1753 82.9826 22.1753 157.992C22.1753 233.002 82.9826 293.809 157.992 293.809Z' fill='url(%23paint1_linear_4318_432)'/%3e%3cdefs%3e%3clinearGradient id='paint0_linear_4318_432' x1='265.132' y1='50.8681' x2='38.8113' y2='277.173' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23000604'/%3e%3cstop offset='0.4' stop-color='%23303030'/%3e%3cstop offset='1' stop-color='%23000604'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_4318_432' x1='67.8587' y1='67.8587' x2='245.597' y2='245.597' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FEDC31'/%3e%3cstop offset='0.09' stop-color='%23FDC347'/%3e%3cstop offset='0.27' stop-color='%23FC8682'/%3e%3cstop offset='0.52' stop-color='%23FA2CD7'/%3e%3cstop offset='0.76' stop-color='%23987CDB'/%3e%3cstop offset='1' stop-color='%2333D0E0'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='48' height='63' viewBox='0 0 48 63' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_4318_464)'%3e%3cpath d='M24 55L8 29.0689L18.6577 29.0689L16.35 8L24 8L31.65 8L29.3423 29.0689L40 29.0689L24 55Z' fill='url(%23paint0_linear_4318_464)'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_4318_464' x='0' y='0' width='48' height='63' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='4'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_4318_464'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_4318_464' result='shape'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_4318_464' x1='23.9916' y1='8.77629' x2='23.9916' y2='47.4768' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FEDC31'/%3e%3cstop offset='0.09' stop-color='%23FDC347'/%3e%3cstop offset='0.27' stop-color='%23FC8682'/%3e%3cstop offset='0.52' stop-color='%23FA2CD7'/%3e%3cstop offset='0.76' stop-color='%23987CDB'/%3e%3cstop offset='1' stop-color='%2333D0E0'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='460' height='488' viewBox='0 0 460 488' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_f_1499_5517)'%3e%3cpath d='M435.467 271.947C435.467 159.867 344.679 69 232.674 69C176.014 69 124.796 92.2638 88 129.745C124.002 97.0716 171.778 77.1634 224.203 77.1634C336.208 77.1634 426.996 168.031 426.996 280.111C426.996 335.498 404.819 385.696 368.876 422.313C409.78 385.185 435.467 331.574 435.467 271.947Z' fill='url(%23paint0_linear_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cg filter='url(%23filter1_f_1499_5517)'%3e%3cpath d='M363.683 137.249C291.999 61.8647 172.818 58.8146 97.4846 130.451C59.3758 166.689 39.806 215.094 39.0295 263.837C42.3468 218.836 61.7482 174.889 97.0082 141.359C172.342 69.7231 291.522 72.7732 363.207 148.157C398.631 185.411 415.82 233.357 415.065 280.974C418.83 229.841 401.819 177.353 363.683 137.249Z' fill='url(%23paint1_linear_1499_5517)' fill-opacity='0.8'/%3e%3c/g%3e%3cg filter='url(%23filter2_f_1499_5517)'%3e%3cpath d='M26.471 267.202C26.471 211.815 48.6485 161.618 84.5914 125C43.6875 162.138 18 215.749 18 275.366C18 387.456 108.798 478.313 220.794 478.313C277.453 478.313 328.672 455.049 365.467 417.568C329.466 450.242 281.689 470.16 229.265 470.16C117.26 470.16 26.471 379.292 26.471 267.212V267.202Z' fill='url(%23paint2_linear_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cg filter='url(%23filter3_f_1499_5517)'%3e%3ccircle cx='219' cy='282.994' r='200.5' stroke='url(%23paint3_radial_1499_5517)' stroke-opacity='0.88'/%3e%3c/g%3e%3cg filter='url(%23filter4_f_1499_5517)'%3e%3ccircle cx='214.5' cy='267.5' r='196' stroke='url(%23paint4_radial_1499_5517)' stroke-opacity='0.88'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter5_f_1499_5517)'%3e%3ccircle cx='41.5' cy='140.5' r='6.5' fill='url(%23paint5_linear_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter6_f_1499_5517)'%3e%3ccircle cx='356.78' cy='132.78' r='6.5' transform='rotate(-92.5281 356.78 132.78)' fill='url(%23paint6_linear_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter7_f_1499_5517)'%3e%3ccircle cx='92.5' cy='404.5' r='6.5' fill='url(%23paint7_linear_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter8_f_1499_5517)'%3e%3ccircle cx='379.348' cy='390.687' r='6.5' transform='rotate(-77.4712 379.348 390.687)' fill='url(%23paint8_linear_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter9_f_1499_5517)'%3e%3ccircle cx='428.5' cy='366.5' r='6.5' fill='url(%23paint9_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter10_f_1499_5517)'%3e%3ccircle cx='91.5' cy='428.5' r='6.5' fill='url(%23paint10_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter11_f_1499_5517)'%3e%3ccircle cx='360.755' cy='425.755' r='6.5' transform='rotate(-77.4712 360.755 425.755)' fill='url(%23paint11_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter12_f_1499_5517)'%3e%3ccircle cx='62.5' cy='440.5' r='6.5' fill='url(%23paint12_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter13_f_1499_5517)'%3e%3ccircle cx='35.5' cy='250.5' r='6.5' fill='url(%23paint13_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter14_f_1499_5517)'%3e%3ccircle cx='24.5' cy='199.5' r='6.5' fill='url(%23paint14_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter15_f_1499_5517)'%3e%3ccircle cx='87.5' cy='138.5' r='6.5' fill='url(%23paint15_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter16_f_1499_5517)'%3e%3ccircle cx='339.78' cy='111.78' r='6.5' transform='rotate(-92.5281 339.78 111.78)' fill='url(%23paint16_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter17_f_1499_5517)'%3e%3ccircle cx='52' cy='163' r='4' fill='url(%23paint17_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter18_f_1499_5517)'%3e%3ccircle cx='299.172' cy='92.1727' r='4' transform='rotate(-92.5281 299.172 92.1727)' fill='url(%23paint18_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter19_f_1499_5517)'%3e%3ccircle cx='73' cy='143' r='4' fill='url(%23paint19_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter20_f_1499_5517)'%3e%3ccircle cx='373.172' cy='125.173' r='4' transform='rotate(-92.5281 373.172 125.173)' fill='url(%23paint20_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter21_f_1499_5517)'%3e%3ccircle cx='60' cy='134' r='4' fill='url(%23paint21_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter22_f_1499_5517)'%3e%3ccircle cx='341.172' cy='96.1727' r='4' transform='rotate(-92.5281 341.172 96.1727)' fill='url(%23paint22_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter23_f_1499_5517)'%3e%3ccircle cx='69' cy='155' r='4' fill='url(%23paint23_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter24_f_1499_5517)'%3e%3ccircle cx='373.172' cy='105.173' r='4' transform='rotate(-92.5281 373.172 105.173)' fill='url(%23paint24_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter25_f_1499_5517)'%3e%3ccircle cx='73' cy='398' r='4' fill='url(%23paint25_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter26_f_1499_5517)'%3e%3ccircle cx='368.772' cy='408.312' r='4' transform='rotate(-77.4712 368.772 408.312)' fill='url(%23paint26_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter27_f_1499_5517)'%3e%3ccircle cx='63' cy='371' r='4' fill='url(%23paint27_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter28_f_1499_5517)'%3e%3ccircle cx='85' cy='407' r='4' fill='url(%23paint28_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter29_f_1499_5517)'%3e%3ccircle cx='380.161' cy='398.55' r='4' transform='rotate(-77.4712 380.161 398.55)' fill='url(%23paint29_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter30_f_1499_5517)'%3e%3ccircle cx='95' cy='425' r='4' fill='url(%23paint30_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter31_f_1499_5517)'%3e%3ccircle cx='395.772' cy='385.773' r='4' transform='rotate(-77.4712 395.772 385.773)' fill='url(%23paint31_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter32_f_1499_5517)'%3e%3ccircle cx='77' cy='422' r='4' fill='url(%23paint32_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter33_f_1499_5517)'%3e%3ccircle cx='387.772' cy='417.773' r='4' transform='rotate(-77.4712 387.772 417.773)' fill='url(%23paint33_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter34_f_1499_5517)'%3e%3ccircle cx='85' cy='447' r='4' fill='url(%23paint34_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter35_f_1499_5517)'%3e%3ccircle cx='115' cy='437' r='4' fill='url(%23paint35_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter36_f_1499_5517)'%3e%3ccircle cx='415.955' cy='375.773' r='4' transform='rotate(-77.4712 415.955 375.773)' fill='url(%23paint36_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter37_f_1499_5517)'%3e%3ccircle cx='46' cy='109' r='4' fill='url(%23paint37_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter38_f_1499_5517)'%3e%3ccircle cx='101' cy='121' r='4' fill='url(%23paint38_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter39_f_1499_5517)'%3e%3ccircle cx='319.939' cy='104.096' r='4' transform='rotate(-92.5281 319.939 104.096)' fill='url(%23paint39_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter40_f_1499_5517)'%3e%3ccircle cx='46' cy='197' r='4' fill='url(%23paint40_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter41_f_1499_5517)'%3e%3ccircle cx='398.29' cy='155.69' r='4' transform='rotate(-92.5281 398.29 155.69)' fill='url(%23paint41_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter42_f_1499_5517)'%3e%3ccircle cx='129' cy='78' r='4' fill='url(%23paint42_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter43_f_1499_5517)'%3e%3ccircle cx='116.5' cy='94.5' r='6.5' fill='url(%23paint43_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter44_f_1499_5517)'%3e%3ccircle cx='316.78' cy='89.7802' r='6.5' transform='rotate(-92.5281 316.78 89.7802)' fill='url(%23paint44_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter45_f_1499_5517)'%3e%3ccircle cx='158.5' cy='88.5' r='6.5' fill='url(%23paint45_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter46_f_1499_5517)'%3e%3ccircle cx='164.5' cy='57.5' r='6.5' fill='url(%23paint46_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter47_f_1499_5517)'%3e%3ccircle cx='331.5' cy='75.5' r='6.5' fill='url(%23paint47_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter48_f_1499_5517)'%3e%3ccircle cx='355.5' cy='108.5' r='6.5' fill='url(%23paint48_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter49_f_1499_5517)'%3e%3ccircle cx='81.5' cy='104.5' r='6.5' fill='url(%23paint49_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter50_f_1499_5517)'%3e%3ccircle cx='114.5' cy='457.5' r='6.5' fill='url(%23paint50_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter51_f_1499_5517)'%3e%3ccircle cx='55.5' cy='408.5' r='6.5' fill='url(%23paint51_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter52_f_1499_5517)'%3e%3ccircle cx='407.5' cy='166.5' r='6.5' fill='url(%23paint52_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter53_f_1499_5517)'%3e%3ccircle cx='400.5' cy='406.5' r='6.5' fill='url(%23paint53_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter54_f_1499_5517)'%3e%3ccircle cx='407.5' cy='368.5' r='6.5' fill='url(%23paint54_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter55_f_1499_5517)'%3e%3ccircle cx='422.5' cy='318.5' r='6.5' fill='url(%23paint55_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter56_f_1499_5517)'%3e%3ccircle cx='422.5' cy='213.5' r='6.5' fill='url(%23paint56_radial_1499_5517)'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter57_f_1499_5517)'%3e%3ccircle cx='18' cy='164' r='5' fill='url(%23paint57_radial_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter58_f_1499_5517)'%3e%3ccircle cx='408' cy='337' r='12' fill='url(%23paint58_radial_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter59_f_1499_5517)'%3e%3ccircle cx='61' cy='182' r='14' fill='url(%23paint59_radial_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter60_f_1499_5517)'%3e%3ccircle cx='67' cy='358' r='19' fill='url(%23paint60_radial_1499_5517)' fill-opacity='0.5'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_f_1499_5517' x='79' y='60' width='365.467' height='371.313' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='4.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter1_f_1499_5517' x='30.0294' y='69.6553' width='394.547' height='220.319' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='4.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter2_f_1499_5517' x='9' y='116' width='365.467' height='371.313' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='4.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter3_f_1499_5517' x='14' y='77.9937' width='410' height='410' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter4_f_1499_5517' x='14' y='67' width='401' height='401' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter5_f_1499_5517' x='29' y='128' width='25' height='25' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='3' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter6_f_1499_5517' x='344.28' y='120.28' width='25.0002' height='25' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='3' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter7_f_1499_5517' x='80' y='392' width='25' height='25' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='3' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter8_f_1499_5517' x='366.847' y='378.186' width='25.0027' height='25.0029' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='3' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter9_f_1499_5517' x='417' y='355' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter10_f_1499_5517' x='80' y='417' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter11_f_1499_5517' x='349.254' y='414.254' width='23.0027' height='23.0029' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter12_f_1499_5517' x='51' y='429' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter13_f_1499_5517' x='24' y='239' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter14_f_1499_5517' x='13' y='188' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter15_f_1499_5517' x='76' y='127' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter16_f_1499_5517' x='328.28' y='100.28' width='23.0002' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter17_f_1499_5517' x='46' y='157' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter18_f_1499_5517' x='293.172' y='86.1724' width='12.0002' height='12.0005' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter19_f_1499_5517' x='67' y='137' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter20_f_1499_5517' x='367.172' y='119.172' width='12.0002' height='12.0005' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter21_f_1499_5517' x='54' y='128' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter22_f_1499_5517' x='335.172' y='90.1724' width='12.0002' height='12.0005' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter23_f_1499_5517' x='63' y='149' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter24_f_1499_5517' x='367.172' y='99.1724' width='12.0002' height='12.0005' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter25_f_1499_5517' x='67' y='392' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter26_f_1499_5517' x='362.772' y='402.311' width='12.0017' height='12.002' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter27_f_1499_5517' x='57' y='365' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter28_f_1499_5517' x='79' y='401' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter29_f_1499_5517' x='374.161' y='392.549' width='12.0017' height='12.002' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter30_f_1499_5517' x='89' y='419' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter31_f_1499_5517' x='389.772' y='379.771' width='12.0017' height='12.002' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter32_f_1499_5517' x='71' y='416' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter33_f_1499_5517' x='381.772' y='411.771' width='12.0017' height='12.002' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter34_f_1499_5517' x='79' y='441' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter35_f_1499_5517' x='109' y='431' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter36_f_1499_5517' x='409.954' y='369.771' width='12.0017' height='12.002' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter37_f_1499_5517' x='40' y='103' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter38_f_1499_5517' x='95' y='115' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter39_f_1499_5517' x='313.938' y='98.0957' width='12.0002' height='12.0005' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter40_f_1499_5517' x='40' y='191' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter41_f_1499_5517' x='392.29' y='149.69' width='12.0002' height='12.0005' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter42_f_1499_5517' x='123' y='72' width='12' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter43_f_1499_5517' x='105' y='83' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter44_f_1499_5517' x='305.28' y='78.2803' width='23.0002' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter45_f_1499_5517' x='147' y='77' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter46_f_1499_5517' x='153' y='46' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter47_f_1499_5517' x='320' y='64' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter48_f_1499_5517' x='344' y='97' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter49_f_1499_5517' x='70' y='93' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter50_f_1499_5517' x='103' y='446' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter51_f_1499_5517' x='44' y='397' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter52_f_1499_5517' x='396' y='155' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter53_f_1499_5517' x='389' y='395' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter54_f_1499_5517' x='396' y='357' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter55_f_1499_5517' x='411' y='307' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter56_f_1499_5517' x='411' y='202' width='23' height='23' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter57_f_1499_5517' x='10' y='156' width='16' height='16' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter58_f_1499_5517' x='393' y='322' width='30' height='30' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter59_f_1499_5517' x='44' y='165' width='34' height='34' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3cfilter id='filter60_f_1499_5517' x='45' y='336' width='44' height='44' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1.5' result='effect1_foregroundBlur_1499_5517'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_1499_5517' x1='261.734' y1='69' x2='261.734' y2='422.313' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFA933'/%3e%3cstop offset='1' stop-color='%23FFE871' stop-opacity='0.88'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_1499_5517' x1='117.03' y1='111.865' x2='343.002' y2='349.5' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFA933'/%3e%3cstop offset='1' stop-color='%23FFE871' stop-opacity='0.88'/%3e%3c/linearGradient%3e%3clinearGradient id='paint2_linear_1499_5517' x1='191.734' y1='125' x2='191.734' y2='478.313' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FFA933'/%3e%3cstop offset='1' stop-color='%23FFE871' stop-opacity='0.88'/%3e%3c/linearGradient%3e%3cradialGradient id='paint3_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(336.926 354.131) rotate(46.4441) scale(80.3737)'%3e%3cstop offset='0.255208' stop-color='%23FFE871' stop-opacity='0'/%3e%3cstop offset='0.395833' stop-color='%23FFE871'/%3e%3cstop offset='0.833333' stop-color='%23FFA933'/%3e%3c/radialGradient%3e%3cradialGradient id='paint4_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(329.786 337.045) rotate(46.4441) scale(78.5743)'%3e%3cstop offset='0.255208' stop-color='%23FFE871' stop-opacity='0'/%3e%3cstop offset='0.395833' stop-color='%23FFE871'/%3e%3cstop offset='0.833333' stop-color='%23FFA933'/%3e%3c/radialGradient%3e%3clinearGradient id='paint5_linear_1499_5517' x1='41.5' y1='134' x2='41.5' y2='147' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.25' stop-color='%23FFA933'/%3e%3cstop offset='1' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3c/linearGradient%3e%3clinearGradient id='paint6_linear_1499_5517' x1='356.78' y1='126.28' x2='356.78' y2='139.28' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.25' stop-color='%23FFA933'/%3e%3cstop offset='1' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3c/linearGradient%3e%3clinearGradient id='paint7_linear_1499_5517' x1='92.5' y1='398' x2='92.5' y2='411' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.25' stop-color='%23FFA933'/%3e%3cstop offset='1' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3c/linearGradient%3e%3clinearGradient id='paint8_linear_1499_5517' x1='379.348' y1='384.187' x2='379.348' y2='397.187' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.25' stop-color='%23FFA933'/%3e%3cstop offset='1' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3c/linearGradient%3e%3cradialGradient id='paint9_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(428.5 366.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint10_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(91.5 428.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint11_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(360.755 425.755) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint12_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(62.5 440.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint13_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(35.5 250.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint14_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(24.5 199.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint15_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(87.5 138.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint16_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(339.78 111.78) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint17_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(52 163) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint18_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(299.172 92.1727) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint19_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(73 143) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint20_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(373.172 125.173) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint21_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(60 134) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint22_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(341.172 96.1727) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint23_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(69 155) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint24_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(373.172 105.173) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint25_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(73 398) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint26_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(368.772 408.312) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint27_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(63 371) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint28_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(85 407) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint29_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(380.161 398.55) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint30_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(95 425) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint31_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(395.772 385.773) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint32_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(77 422) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint33_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(387.772 417.773) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint34_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(85 447) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint35_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(115 437) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint36_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(415.955 375.773) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint37_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(46 109) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint38_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(101 121) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint39_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(319.939 104.096) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint40_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(46 197) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint41_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(398.29 155.69) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint42_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(129 78) rotate(92.4366) scale(3.11025)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint43_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(116.5 94.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint44_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(316.78 89.7802) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint45_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(158.5 88.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint46_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(164.5 57.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint47_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(331.5 75.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint48_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(355.5 108.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint49_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(81.5 104.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint50_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(114.5 457.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint51_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(55.5 408.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint52_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(407.5 166.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint53_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(400.5 406.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint54_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(407.5 368.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint55_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(422.5 318.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint56_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(422.5 213.5) rotate(92.4366) scale(5.05416)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.88'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.88'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint57_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(18 164) rotate(90) scale(5)'%3e%3cstop stop-color='%23FFA933' stop-opacity='0'/%3e%3cstop offset='0.135417' stop-color='%23FFFCEE' stop-opacity='0.88'/%3e%3c/radialGradient%3e%3cradialGradient id='paint58_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(408 337) rotate(90) scale(12)'%3e%3cstop stop-color='%23FFA933' stop-opacity='0'/%3e%3cstop offset='0.135417' stop-color='%23FFFCEE' stop-opacity='0.88'/%3e%3c/radialGradient%3e%3cradialGradient id='paint59_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(61 182) rotate(90) scale(14)'%3e%3cstop stop-color='%23FFA933' stop-opacity='0'/%3e%3cstop offset='0.135417' stop-color='%23FFFCEE' stop-opacity='0.88'/%3e%3c/radialGradient%3e%3cradialGradient id='paint60_radial_1499_5517' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(67 358) rotate(90) scale(19)'%3e%3cstop stop-color='%23FFA933' stop-opacity='0'/%3e%3cstop offset='0.135417' stop-color='%23FFFCEE' stop-opacity='0.88'/%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='230' height='69' viewBox='0 0 230 69' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_1499_5450)'%3e%3cpath d='M31.81 2.38379C31.81 2.38379 23.47 29.7338 6.29004 39.4438H223.32C223.32 39.4438 200.91 27.3338 195.3 2.38379H31.81Z' fill='url(%23paint0_linear_1499_5450)'/%3e%3cpath d='M223.32 39.4438H6.29004V58.8638H223.32V39.4438Z' fill='url(%23paint1_linear_1499_5450)'/%3e%3cg style='mix-blend-mode:overlay' filter='url(%23filter1_f_1499_5450)'%3e%3cpath d='M117 40.9937C169.467 40.9937 212 40.0982 212 38.9937C212 37.8891 169.467 36.9937 117 36.9937C64.5329 36.9937 22 37.8891 22 38.9937C22 40.0982 64.5329 40.9937 117 40.9937Z' fill='white'/%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_1499_5450' x='0.290039' y='0.383789' width='229.03' height='68.48' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset dy='4'/%3e%3cfeGaussianBlur stdDeviation='3'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.45 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1499_5450'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_1499_5450' result='shape'/%3e%3c/filter%3e%3cfilter id='filter1_f_1499_5450' x='18' y='32.9937' width='198' height='12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2' result='effect1_foregroundBlur_1499_5450'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_1499_5450' x1='114.81' y1='39.4438' x2='114.81' y2='2.38379' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.18' stop-color='%23414042'/%3e%3cstop offset='0.36' stop-color='%232B2828'/%3e%3cstop offset='0.47' stop-color='%23231F1F'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_1499_5450' x1='6.29004' y1='49.1538' x2='223.32' y2='49.1538' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23231F1F'/%3e%3cstop offset='0.07' stop-color='%23333132'/%3e%3cstop offset='0.14' stop-color='%233D3C3E'/%3e%3cstop offset='0.21' stop-color='%23414042'/%3e%3cstop offset='0.77' stop-color='%23414042'/%3e%3cstop offset='0.91' stop-color='%232B2828'/%3e%3cstop offset='1' stop-color='%23231F1F'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='387' height='388' viewBox='0 0 387 388' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_1499_5393)'%3e%3cpath d='M193.5 379.094C297.053 379.094 381 295.147 381 191.594C381 88.0404 297.053 4.09375 193.5 4.09375C89.9466 4.09375 6 88.0404 6 191.594C6 295.147 89.9466 379.094 193.5 379.094Z' fill='url(%23paint0_linear_1499_5393)'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_1499_5393' x='0' y='0.09375' width='387' height='387' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset dy='2'/%3e%3cfeGaussianBlur stdDeviation='3'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.65 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1499_5393'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_1499_5393' result='shape'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_1499_5393' x1='128.85' y1='32.0238' x2='269.7' y2='379.674' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23231F1F'/%3e%3cstop offset='0.09' stop-color='%23282525'/%3e%3cstop offset='0.21' stop-color='%23383638'/%3e%3cstop offset='0.27' stop-color='%23414042'/%3e%3cstop offset='0.72' stop-color='%23414042'/%3e%3cstop offset='0.87' stop-color='%232B2828'/%3e%3cstop offset='0.96' stop-color='%23231F1F'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='120' height='120' viewBox='0 0 120 120' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_321_83)'%3e%3cpath d='M59.9924 30C43.5289 30 30.1875 43.3414 30.1875 59.8049C30.1875 76.2684 43.5289 89.6097 59.9924 89.6097C76.4559 89.6097 89.7972 76.2684 89.7972 59.8049C89.7972 43.3414 76.4559 30 59.9924 30Z' fill='url(%23paint0_linear_321_83)'/%3e%3c/g%3e%3cpath d='M41.9866 66.1805C41.3386 66.1805 40.7446 66.1085 40.2046 65.9645C39.6766 65.8205 39.2266 65.6285 38.8546 65.3885V62.9765C39.2146 63.1685 39.5626 63.3365 39.8986 63.4805C40.2466 63.6245 40.5946 63.7385 40.9426 63.8225C41.2906 63.8945 41.6446 63.9305 42.0046 63.9305C42.3046 63.9305 42.5806 63.9065 42.8326 63.8585C43.0846 63.7985 43.3006 63.7085 43.4806 63.5885C43.6726 63.4685 43.8226 63.3245 43.9306 63.1565C44.0386 62.9765 44.0926 62.7665 44.0926 62.5265C44.0926 62.1905 44.0266 61.9085 43.8946 61.6805C43.7626 61.4525 43.5826 61.2425 43.3546 61.0505C43.1266 60.8585 42.8566 60.6545 42.5446 60.4385C42.1846 60.1745 41.8366 59.8805 41.5006 59.5565C41.1646 59.2325 40.8886 58.8545 40.6726 58.4225C40.4566 57.9785 40.3486 57.4625 40.3486 56.8745C40.3486 56.2985 40.4506 55.7765 40.6546 55.3085C40.8586 54.8285 41.1526 54.4145 41.5366 54.0665C41.9326 53.7185 42.4006 53.4485 42.9406 53.2565C43.4806 53.0645 44.0866 52.9685 44.7586 52.9685C45.4306 52.9685 46.0486 53.0405 46.6126 53.1845C47.1766 53.3285 47.7226 53.5445 48.2506 53.8325L47.2966 55.8845C46.8406 55.6685 46.4026 55.5065 45.9826 55.3985C45.5746 55.2905 45.1666 55.2365 44.7586 55.2365C44.5186 55.2365 44.2966 55.2725 44.0926 55.3445C43.9006 55.4045 43.7266 55.5005 43.5706 55.6325C43.4266 55.7525 43.3126 55.9025 43.2286 56.0825C43.1446 56.2625 43.1026 56.4605 43.1026 56.6765C43.1026 56.9765 43.1626 57.2345 43.2826 57.4505C43.4146 57.6665 43.5946 57.8705 43.8226 58.0625C44.0626 58.2425 44.3506 58.4465 44.6866 58.6745C45.1666 58.9865 45.5626 59.3225 45.8746 59.6825C46.1866 60.0305 46.4206 60.4145 46.5766 60.8345C46.7326 61.2425 46.8106 61.6985 46.8106 62.2025C46.8106 62.8745 46.6846 63.4625 46.4326 63.9665C46.1806 64.4585 45.8326 64.8725 45.3886 65.2085C44.9446 65.5325 44.4286 65.7785 43.8406 65.9465C43.2646 66.1025 42.6466 66.1805 41.9866 66.1805ZM48.5076 66.0005L51.2256 53.1485H54.8076C55.8516 53.1485 56.6856 53.3045 57.3096 53.6165C57.9456 53.9285 58.4016 54.3665 58.6776 54.9305C58.9656 55.4945 59.1096 56.1485 59.1096 56.8925C59.1096 57.6605 58.9656 58.3265 58.6776 58.8905C58.4016 59.4545 58.0116 59.9285 57.5076 60.3125C57.0036 60.6845 56.4096 60.9665 55.7256 61.1585C55.0416 61.3385 54.3036 61.4285 53.5116 61.4285H52.1436L51.1896 66.0005H48.5076ZM53.7276 59.1965C54.2676 59.1965 54.7356 59.1125 55.1316 58.9445C55.5396 58.7645 55.8516 58.5065 56.0676 58.1705C56.2956 57.8345 56.4096 57.4325 56.4096 56.9645C56.4096 56.4245 56.2656 56.0285 55.9776 55.7765C55.6896 55.5125 55.2636 55.3805 54.6996 55.3805H53.4396L52.6296 59.1965H53.7276ZM58.5039 66.0005L58.8279 64.4525L60.4659 63.7325L62.2299 55.4165L60.8979 54.6965L61.2219 53.1485H66.9099L66.5859 54.6965L64.9119 55.4165L63.1479 63.7325L64.5159 64.4525L64.1919 66.0005H58.5039ZM66.3845 66.0005L69.1025 53.1485H72.2345L75.2225 62.6165H75.2945C75.3305 62.4245 75.3665 62.1905 75.4025 61.9145C75.4505 61.6385 75.4985 61.3445 75.5465 61.0325C75.6065 60.7085 75.6665 60.3905 75.7265 60.0785C75.7865 59.7665 75.8405 59.4845 75.8885 59.2325L77.1845 53.1485H79.5965L76.8785 66.0005H73.8725L70.7405 56.2805H70.6505C70.6385 56.3525 70.6145 56.5265 70.5785 56.8025C70.5425 57.0665 70.4945 57.3845 70.4345 57.7565C70.3865 58.1285 70.3265 58.5125 70.2545 58.9085C70.1945 59.2925 70.1345 59.6405 70.0745 59.9525L68.7965 66.0005H66.3845Z' fill='url(%23paint1_linear_321_83)'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M93.7972 59.8053C93.7972 47.716 87.4542 37.1107 77.914 31.1353L72.866 24.5679L71.2409 27.9164C67.7221 26.6755 63.9362 26.0005 59.9924 26.0005C41.3197 26.0005 26.1875 41.1327 26.1875 59.8053C26.1875 70.7672 31.4025 80.5089 39.4874 86.6852L46.2741 94.5956L47.6632 91.2922C51.483 92.7887 55.6416 93.6102 59.9924 93.6102C78.665 93.6102 93.7972 78.478 93.7972 59.8053ZM49.2147 87.6027C52.557 88.8991 56.1915 89.6102 59.9924 89.6102C76.4559 89.6102 89.7972 76.2688 89.7972 59.8053C89.7972 49.1301 84.1879 39.7675 75.7552 34.5037L67.9996 34.5954L69.4813 31.5422C66.5009 30.5423 63.31 30.0005 59.9924 30.0005C43.5289 30.0005 30.1875 43.3418 30.1875 59.8053C30.1875 70.2587 35.5661 79.4534 43.7073 84.7734L50.5947 84.3211L49.2147 87.6027Z' fill='url(%23paint2_linear_321_83)'/%3e%3cdefs%3e%3cfilter id='filter0_d_321_83' x='0.1875' y='0' width='119.61' height='119.61' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='15'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_321_83'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_321_83' result='shape'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_321_83' x1='48.9996' y1='102.5' x2='74.9996' y2='24.5' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.0604165' stop-color='%23FFB915'/%3e%3cstop offset='0.2375' stop-color='%23C48A02'/%3e%3cstop offset='0.477083' stop-color='%23FFE067'/%3e%3cstop offset='0.721875' stop-color='%23FFB915'/%3e%3cstop offset='1' stop-color='%23FFF100'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_321_83' x1='71.1177' y1='48.4796' x2='64.6579' y2='74.2794' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23170C06'/%3e%3cstop offset='0.33125' stop-color='%23575757'/%3e%3cstop offset='1' stop-color='%23170C06'/%3e%3c/linearGradient%3e%3clinearGradient id='paint2_linear_321_83' x1='79.4996' y1='28.7109' x2='51.378' y2='93.2576' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23170C06'/%3e%3cstop offset='0.33125' stop-color='%23575757'/%3e%3cstop offset='1' stop-color='%23170C06'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='116' height='116' viewBox='0 0 116 116' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_321_83)'%3e%3cpath d='M57.992 26.2002C40.431 26.2002 26.2002 40.431 26.2002 57.992C26.2002 75.5531 40.431 89.7839 57.992 89.7839C75.5531 89.7839 89.7839 75.5531 89.7839 57.992C89.7839 40.431 75.5531 26.2002 57.992 26.2002Z' fill='url(%23paint0_linear_321_83)'/%3e%3c/g%3e%3cpath d='M57.992 26.2002C40.431 26.2002 26.2002 40.431 26.2002 57.992C26.2002 75.5531 40.431 89.7839 57.992 89.7839C75.5531 89.7839 89.7839 75.5531 89.7839 57.992C89.7839 40.431 75.5531 26.2002 57.992 26.2002Z' fill='url(%23paint1_linear_321_83)'/%3e%3cg filter='url(%23filter1_f_321_83)'%3e%3cpath d='M43.4785 55.512C43.6865 54.728 43.7905 54.072 43.7905 53.544C43.7905 53.016 43.6465 52.584 43.3585 52.248C43.0705 51.896 42.6945 51.72 42.2305 51.72C41.7825 51.72 41.4065 51.944 41.1025 52.392C40.7985 52.84 40.6465 53.352 40.6465 53.928C40.6465 55.048 41.2865 56.008 42.5665 56.808C43.8465 57.64 44.7185 58.24 45.1825 58.608C45.6465 58.976 45.9745 59.312 46.1665 59.616C46.6465 60.4 46.8865 61.208 46.8865 62.04C46.8865 63.48 46.3985 64.632 45.4225 65.496C44.4625 66.344 43.3745 66.768 42.1585 66.768C40.7185 66.768 39.5105 66.16 38.5345 64.944C37.8305 64.064 37.1825 62.968 36.5905 61.656L38.9185 60.528C39.2865 61.488 39.7425 62.304 40.2865 62.976C40.8465 63.632 41.4385 63.96 42.0625 63.96C42.4625 63.96 42.8225 63.832 43.1425 63.576C43.4625 63.32 43.6225 62.936 43.6225 62.424C43.6225 61.896 43.4225 61.408 43.0225 60.96C42.6225 60.512 42.0865 60.056 41.4145 59.592C40.7425 59.128 40.2225 58.752 39.8545 58.464C39.4865 58.16 39.0785 57.776 38.6305 57.312C37.7825 56.416 37.3585 55.272 37.3585 53.88C37.3585 52.472 37.8465 51.296 38.8225 50.352C39.7985 49.392 40.9585 48.912 42.3025 48.912C43.6465 48.912 44.7745 49.432 45.6865 50.472C46.6145 51.512 47.0785 52.584 47.0785 53.688C47.0785 54.776 46.8705 55.712 46.4545 56.496L43.4785 55.512ZM49.2771 66.408C49.2131 64.6 49.1811 62.432 49.1811 59.904C49.1811 57.36 49.2611 53.968 49.4211 49.728C50.7651 49.232 52.1411 48.984 53.5491 48.984C54.9731 48.984 56.2371 49.512 57.3411 50.568C58.4611 51.608 59.0211 52.928 59.0211 54.528C59.0211 56.112 58.4131 57.488 57.1971 58.656C55.9971 59.808 54.4211 60.656 52.4691 61.2C52.4691 62.992 52.4931 64.832 52.5411 66.72L49.2771 66.408ZM54.8451 56.952C55.4371 56.264 55.7331 55.496 55.7331 54.648C55.7331 53.8 55.5091 53.112 55.0611 52.584C54.6291 52.056 54.1411 51.792 53.5971 51.792C53.4531 51.792 53.1251 51.832 52.6131 51.912C52.5331 54.168 52.4851 56.352 52.4691 58.464C53.4771 58.144 54.2691 57.64 54.8451 56.952ZM64.3693 49.392C64.2253 51.92 64.1533 54.768 64.1533 57.936C64.1533 61.104 64.2573 63.992 64.4653 66.6L61.2253 66.312C61.0173 63.048 60.9133 60.104 60.9133 57.48C60.9133 54.84 60.9853 52.048 61.1293 49.104L64.3693 49.392ZM77.7148 49.104L77.7388 60.264C77.7388 62.104 77.6748 64.08 77.5468 66.192L74.8588 65.928C72.7948 61.24 71.1068 57.728 69.7948 55.392C69.8108 57.76 69.8188 61.536 69.8188 66.72L67.0108 66.408C66.9628 65.416 66.9388 64.456 66.9388 63.528C66.9388 59.656 67.1548 55.144 67.5868 49.992L70.7788 50.304C72.3628 54.672 73.7868 57.992 75.0508 60.264C74.9548 55.432 74.8428 51.624 74.7148 48.84L77.7148 49.104Z' fill='white'/%3e%3c/g%3e%3cpath d='M43.4785 55.512C43.6865 54.728 43.7905 54.072 43.7905 53.544C43.7905 53.016 43.6465 52.584 43.3585 52.248C43.0705 51.896 42.6945 51.72 42.2305 51.72C41.7825 51.72 41.4065 51.944 41.1025 52.392C40.7985 52.84 40.6465 53.352 40.6465 53.928C40.6465 55.048 41.2865 56.008 42.5665 56.808C43.8465 57.64 44.7185 58.24 45.1825 58.608C45.6465 58.976 45.9745 59.312 46.1665 59.616C46.6465 60.4 46.8865 61.208 46.8865 62.04C46.8865 63.48 46.3985 64.632 45.4225 65.496C44.4625 66.344 43.3745 66.768 42.1585 66.768C40.7185 66.768 39.5105 66.16 38.5345 64.944C37.8305 64.064 37.1825 62.968 36.5905 61.656L38.9185 60.528C39.2865 61.488 39.7425 62.304 40.2865 62.976C40.8465 63.632 41.4385 63.96 42.0625 63.96C42.4625 63.96 42.8225 63.832 43.1425 63.576C43.4625 63.32 43.6225 62.936 43.6225 62.424C43.6225 61.896 43.4225 61.408 43.0225 60.96C42.6225 60.512 42.0865 60.056 41.4145 59.592C40.7425 59.128 40.2225 58.752 39.8545 58.464C39.4865 58.16 39.0785 57.776 38.6305 57.312C37.7825 56.416 37.3585 55.272 37.3585 53.88C37.3585 52.472 37.8465 51.296 38.8225 50.352C39.7985 49.392 40.9585 48.912 42.3025 48.912C43.6465 48.912 44.7745 49.432 45.6865 50.472C46.6145 51.512 47.0785 52.584 47.0785 53.688C47.0785 54.776 46.8705 55.712 46.4545 56.496L43.4785 55.512ZM49.2771 66.408C49.2131 64.6 49.1811 62.432 49.1811 59.904C49.1811 57.36 49.2611 53.968 49.4211 49.728C50.7651 49.232 52.1411 48.984 53.5491 48.984C54.9731 48.984 56.2371 49.512 57.3411 50.568C58.4611 51.608 59.0211 52.928 59.0211 54.528C59.0211 56.112 58.4131 57.488 57.1971 58.656C55.9971 59.808 54.4211 60.656 52.4691 61.2C52.4691 62.992 52.4931 64.832 52.5411 66.72L49.2771 66.408ZM54.8451 56.952C55.4371 56.264 55.7331 55.496 55.7331 54.648C55.7331 53.8 55.5091 53.112 55.0611 52.584C54.6291 52.056 54.1411 51.792 53.5971 51.792C53.4531 51.792 53.1251 51.832 52.6131 51.912C52.5331 54.168 52.4851 56.352 52.4691 58.464C53.4771 58.144 54.2691 57.64 54.8451 56.952ZM64.3693 49.392C64.2253 51.92 64.1533 54.768 64.1533 57.936C64.1533 61.104 64.2573 63.992 64.4653 66.6L61.2253 66.312C61.0173 63.048 60.9133 60.104 60.9133 57.48C60.9133 54.84 60.9853 52.048 61.1293 49.104L64.3693 49.392ZM77.7148 49.104L77.7388 60.264C77.7388 62.104 77.6748 64.08 77.5468 66.192L74.8588 65.928C72.7948 61.24 71.1068 57.728 69.7948 55.392C69.8108 57.76 69.8188 61.536 69.8188 66.72L67.0108 66.408C66.9628 65.416 66.9388 64.456 66.9388 63.528C66.9388 59.656 67.1548 55.144 67.5868 49.992L70.7788 50.304C72.3628 54.672 73.7868 57.992 75.0508 60.264C74.9548 55.432 74.8428 51.624 74.7148 48.84L77.7148 49.104Z' fill='white'/%3e%3cg filter='url(%23filter2_d_321_83)'%3e%3cpath d='M73.7341 21.0813L71.9148 25.3521C67.644 23.5328 62.9415 22.5152 57.9924 22.5152C38.3961 22.5152 22.5156 38.3957 22.5156 57.992C22.5156 68.5687 27.141 78.0507 34.48 84.5417L39.6296 83.9096C31.5043 78.1433 26.2005 68.692 26.2005 57.9765C26.2005 40.4155 40.4313 26.1847 57.9924 26.1847C62.4173 26.1847 66.6419 27.0943 70.4655 28.7287L68.6616 32.984L76.3398 32.0435L81.4894 31.4114H81.5048L73.7341 21.0659V21.0813Z' fill='url(%23paint2_linear_321_83)'/%3e%3c/g%3e%3cg filter='url(%23filter3_d_321_83)'%3e%3cpath d='M81.4892 31.4272L76.3396 32.0594C84.4648 37.8257 89.784 47.2769 89.784 57.9924C89.784 75.5535 75.5532 89.7843 57.9922 89.7843C53.5672 89.7843 49.3427 88.8746 45.5036 87.2403L47.3075 82.9849L39.614 83.9254L34.4644 84.5576L42.235 94.903L44.0543 90.6323C48.3251 92.4516 53.043 93.4692 57.9768 93.4692C77.573 93.4692 93.4535 77.5886 93.4535 57.9924C93.4535 47.4157 88.8281 37.9336 81.4737 31.4272H81.4892Z' fill='url(%23paint3_linear_321_83)'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_321_83' x='0.200195' y='0.200195' width='115.583' height='115.583' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='13'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_321_83'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_321_83' result='shape'/%3e%3c/filter%3e%3cfilter id='filter1_f_321_83' x='32.5903' y='44.8398' width='49.1484' height='25.9282' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='2' result='effect1_foregroundBlur_321_83'/%3e%3c/filter%3e%3cfilter id='filter2_d_321_83' x='12.5156' y='11.0659' width='78.9893' height='83.4756' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='5'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_321_83'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_321_83' result='shape'/%3e%3c/filter%3e%3cfilter id='filter3_d_321_83' x='14.4644' y='11.4272' width='98.9893' height='103.476' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='10'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_321_83'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_321_83' result='shape'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_321_83' x1='84.3568' y1='31.6273' x2='20.218' y2='95.7815' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.28' stop-color='%23303030'/%3e%3cstop offset='1' stop-color='%23000604'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_321_83' x1='84.3568' y1='31.6273' x2='20.218' y2='95.7815' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.28' stop-color='%23303030'/%3e%3cstop offset='1' stop-color='%23000604'/%3e%3c/linearGradient%3e%3clinearGradient id='paint2_linear_321_83' x1='52.0256' y1='22.1298' x2='52.0256' y2='74.4275' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23F8DA36'/%3e%3cstop offset='0.09' stop-color='%23F8C14C'/%3e%3cstop offset='0.28' stop-color='%23F88485'/%3e%3cstop offset='0.52' stop-color='%23FA2CD7'/%3e%3cstop offset='0.76' stop-color='%23987CDB'/%3e%3cstop offset='1' stop-color='%2333D0E0'/%3e%3c/linearGradient%3e%3clinearGradient id='paint3_linear_321_83' x1='63.9743' y1='93.8546' x2='63.9743' y2='41.5877' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23FEDC31'/%3e%3cstop offset='0.09' stop-color='%23FDC347'/%3e%3cstop offset='0.27' stop-color='%23FC8682'/%3e%3cstop offset='0.52' stop-color='%23FA2CD7'/%3e%3cstop offset='0.76' stop-color='%23987CDB'/%3e%3cstop offset='1' stop-color='%2333D0E0'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='105' height='106' viewBox='0 0 105 106' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_0_1)'%3e%3cpath d='M52.5 95.0938C75.9721 95.0938 95 76.0658 95 52.5938C95 29.1216 75.9721 10.0938 52.5 10.0938C29.0279 10.0938 10 29.1216 10 52.5938C10 76.0658 29.0279 95.0938 52.5 95.0938Z' fill='url(%23paint0_linear_0_1)'/%3e%3cpath d='M91.9301 52.5936C91.9301 74.3736 74.2801 92.0236 52.5001 92.0236C30.7201 92.0236 13.0701 74.3736 13.0701 52.5936C13.0701 30.8136 30.7201 13.1636 52.5001 13.1636C74.2801 13.1636 91.9301 30.8136 91.9301 52.5936Z' fill='url(%23paint1_linear_0_1)'/%3e%3cg filter='url(%23filter1_f_0_1)'%3e%3cpath d='M84.09 52.5934C84.09 70.0434 69.95 58.2134 52.5 58.2134C35.05 58.2134 20.91 70.0334 20.91 52.5934C20.91 35.1534 35.05 21.0034 52.5 21.0034C69.95 21.0034 84.09 35.1434 84.09 52.5934Z' fill='url(%23paint2_linear_0_1)'/%3e%3c/g%3e%3c/g%3e%3cg filter='url(%23filter2_d_0_1)' style='filter: drop-shadow(0px 0px 5px %23EBBD38)%3b'%3e%3cpath d='M49 59.2737C48.29 60.6237 47.39 61.7537 46.32 62.6637C45.25 63.5737 44.03 64.2537 42.66 64.7037C41.29 65.1537 39.8 65.3837 38.2 65.3837C36.42 65.3837 34.84 65.0837 33.46 64.4937C32.08 63.9037 30.94 63.0437 30.05 61.9337C29.16 60.8237 28.55 59.4737 28.2 57.8937C27.86 56.3137 27.85 54.5437 28.17 52.5937C28.48 50.7137 29.07 48.9937 29.95 47.4337C30.83 45.8737 31.91 44.5237 33.2 43.3837C34.48 42.2537 35.91 41.3737 37.5 40.7437C39.08 40.1137 40.72 39.8037 42.41 39.8037C44.19 39.8037 45.74 40.1537 47.06 40.8637C48.38 41.5637 49.63 42.6937 50.39 44.1737C51.31 45.9637 48.37 47.8537 47.18 46.4537C45.99 45.0537 44.12 43.6637 41.85 43.6637C40.64 43.6637 39.5 43.8837 38.43 44.3237C37.36 44.7637 36.4 45.3737 35.57 46.1637C34.73 46.9537 34.03 47.8937 33.45 48.9937C32.87 50.0937 32.48 51.2937 32.28 52.6037C32.06 53.9137 32.05 55.1237 32.26 56.2337C32.46 57.3337 32.86 58.2837 33.44 59.0837C34.02 59.8837 34.78 60.5037 35.71 60.9637C36.64 61.4137 37.72 61.6437 38.95 61.6437C39.84 61.6437 40.7 61.5337 41.53 61.3137C42.36 61.0937 43.12 60.7437 43.8 60.2737C44.48 59.7937 45.06 59.1837 45.54 58.4437C46.01 57.7037 46.34 56.7937 46.51 55.7337H41.09C39.77 55.7337 39.39 52.1237 41.68 52.1237H50.95L50.53 54.5837C50.24 56.3637 49.74 57.9337 49.02 59.2937L49 59.2737Z' fill='white' stroke='white' stroke-width='0.97' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M76.87 52.5937C76.58 54.3937 75.98 56.0737 75.07 57.6237C74.16 59.1837 73.05 60.5337 71.75 61.6837C70.45 62.8337 69 63.7337 67.42 64.3937C65.84 65.0537 64.23 65.3837 62.6 65.3837C60.97 65.3837 59.47 65.0537 58.11 64.4137C56.75 63.7737 55.61 62.8637 54.69 61.7137C53.77 60.5637 53.12 59.2137 52.72 57.6537C52.33 56.0937 52.28 54.4137 52.57 52.5937C52.77 51.3737 53.11 50.2137 53.59 49.1137C54.07 48.0137 54.65 46.9837 55.34 46.0437C56.03 45.0937 56.81 44.2437 57.68 43.4737C58.55 42.7037 59.47 42.0537 60.46 41.5137C61.44 40.9737 62.47 40.5537 63.55 40.2537C64.63 39.9537 65.71 39.8037 66.81 39.8037C68.47 39.8037 69.99 40.1237 71.36 40.7737C72.73 41.4237 73.88 42.3137 74.8 43.4637C75.72 44.6137 76.38 45.9537 76.77 47.5137C77.16 49.0737 77.2 50.7637 76.89 52.5937H76.87ZM72.8 52.5937C73 51.3737 72.98 50.2237 72.73 49.1437C72.48 48.0637 72.06 47.1237 71.46 46.3137C70.86 45.5037 70.11 44.8737 69.2 44.4037C68.29 43.9337 67.27 43.7037 66.13 43.7037C64.99 43.7037 63.87 43.9337 62.82 44.3937C61.76 44.8537 60.81 45.4937 59.96 46.2937C59.11 47.1037 58.39 48.0437 57.81 49.1237C57.23 50.2037 56.84 51.3637 56.65 52.5937C56.45 53.8137 56.46 54.9637 56.69 56.0337C56.92 57.1037 57.33 58.0437 57.92 58.8637C58.51 59.6737 59.26 60.3237 60.16 60.7837C61.06 61.2537 62.08 61.4837 63.22 61.4837C64.36 61.4837 65.41 61.2537 66.48 60.7837C67.54 60.3137 68.51 59.6737 69.38 58.8637C70.25 58.0537 70.98 57.1037 71.59 56.0337C72.19 54.9637 72.6 53.8137 72.8 52.5937Z' fill='white' stroke='white' stroke-width='0.97' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_0_1' x='0' y='0.09375' width='105' height='105' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='5'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_0_1'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_0_1' result='shape'/%3e%3c/filter%3e%3cfilter id='filter1_f_0_1' x='18.91' y='19.0034' width='67.1801' height='45.1284' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1' result='effect1_foregroundBlur_0_1'/%3e%3c/filter%3e%3cfilter id='filter2_d_0_1' x='22.4523' y='34.3188' width='60.1287' height='36.5498' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='2.5'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0.921569 0 0 0 0 0.741176 0 0 0 0 0.219608 0 0 0 1 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_0_1'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_0_1' result='shape'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_0_1' x1='24.97' y1='25.0738' x2='89.38' y2='89.4738' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23E2CE86'/%3e%3cstop offset='0.04' stop-color='%23C0A865'/%3e%3cstop offset='0.09' stop-color='%239E8143'/%3e%3cstop offset='0.13' stop-color='%2385652B'/%3e%3cstop offset='0.17' stop-color='%2376541C'/%3e%3cstop offset='0.2' stop-color='%23714E17'/%3e%3cstop offset='0.24' stop-color='%2375531B'/%3e%3cstop offset='0.28' stop-color='%23836329'/%3e%3cstop offset='0.33' stop-color='%23997D40'/%3e%3cstop offset='0.38' stop-color='%23B9A15F'/%3e%3cstop offset='0.43' stop-color='%23E0D087'/%3e%3cstop offset='0.47' stop-color='%23FFF3A6'/%3e%3cstop offset='0.64' stop-color='%23AF9450'/%3e%3cstop offset='0.73' stop-color='%23866324'/%3e%3cstop offset='0.78' stop-color='%239F813F'/%3e%3cstop offset='0.88' stop-color='%23D3BE76'/%3e%3cstop offset='0.96' stop-color='%23F2E498'/%3e%3cstop offset='1' stop-color='%23FFF3A6'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_0_1' x1='52.5001' y1='92.0236' x2='52.5001' y2='13.1636' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%232D2D2D'/%3e%3cstop offset='1' stop-color='%23020202'/%3e%3c/linearGradient%3e%3clinearGradient id='paint2_linear_0_1' x1='52.5' y1='62.1334' x2='52.5' y2='21.0034' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.03' stop-color='%232D2D2D' stop-opacity='0'/%3e%3cstop offset='0.2' stop-color='%235F5F5F' stop-opacity='0.13'/%3e%3cstop offset='0.44' stop-color='%239D9E9E' stop-opacity='0.29'/%3e%3cstop offset='0.66' stop-color='%23CBCCCC' stop-opacity='0.4'/%3e%3cstop offset='0.86' stop-color='%23E7E8E8' stop-opacity='0.48'/%3e%3cstop offset='1' stop-color='%23F1F2F2' stop-opacity='0.5'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='217' height='217' viewBox='0 0 217 217' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg style='mix-blend-mode:plus-lighter' filter='url(%23filter0_f_1499_5459)'%3e%3ccircle cx='108.5' cy='108.5' r='80.5' fill='url(%23paint0_radial_1499_5459)'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_f_1499_5459' x='0' y='0' width='217' height='217' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='14' result='effect1_foregroundBlur_1499_5459'/%3e%3c/filter%3e%3cradialGradient id='paint0_radial_1499_5459' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(108.5 108.5) rotate(92.4366) scale(62.5938)'%3e%3cstop offset='0.00520833' stop-color='white' stop-opacity='0.85'/%3e%3cstop offset='0.125' stop-color='%23FFF1A8' stop-opacity='0.75'/%3e%3cstop offset='1' stop-color='%23F9DF7B' stop-opacity='0'/%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='61' height='74' viewBox='0 0 61 74' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_1499_5437)'%3e%3cpath d='M45.6501 42.3636C48.4901 37.8236 50.1501 34.7036 50.1501 30.0036C50.1501 19.3336 41.4601 10.6836 30.7301 10.6836C20.0001 10.6836 11.3101 19.3336 11.3101 30.0036C11.3101 34.3336 12.7601 38.3136 15.1701 41.5336L30.6601 63.9936L45.6501 42.3636Z' fill='%23591709'/%3e%3cpath d='M44.49 41.6737C47.33 37.1337 48.99 34.0137 48.99 29.3137C48.99 18.6437 40.3 9.99365 29.57 9.99365C18.84 9.99365 10.15 18.6437 10.15 29.3137C10.15 33.6437 11.6 37.6237 14.01 40.8437L29.5 63.3037L44.49 41.6737Z' fill='url(%23paint0_linear_1499_5437)'/%3e%3cpath d='M41.96 41.3639C44.48 37.3839 46.53 33.6039 46.53 29.4239C46.53 19.9239 38.93 12.2339 29.56 12.2339C20.19 12.2339 12.59 19.9339 12.59 29.4239C12.59 33.2739 13.93 36.6339 15.97 39.6839L29.5 59.6739L41.95 41.3639H41.96Z' fill='%23821513'/%3e%3cpath d='M39.77 38.8438C41.47 36.1537 43.1 32.9338 43.1 29.4937C43.1 21.6737 37.04 15.3438 29.56 15.3438C22.08 15.3438 16.02 21.6837 16.02 29.4937C16.02 32.6637 16.92 35.3138 18.71 37.9438L29.51 54.3938L39.76 38.8438H39.77Z' fill='url(%23paint1_linear_1499_5437)'/%3e%3cpath d='M29.5601 39.9438C35.9113 39.9438 41.0601 34.7951 41.0601 28.4438C41.0601 22.0926 35.9113 16.9438 29.5601 16.9438C23.2088 16.9438 18.0601 22.0926 18.0601 28.4438C18.0601 34.7951 23.2088 39.9438 29.5601 39.9438Z' fill='url(%23paint2_radial_1499_5437)'/%3e%3cg filter='url(%23filter1_f_1499_5437)'%3e%3cpath d='M38.0601 20.7534C38.8501 22.3034 39.3001 24.0534 39.3001 25.9034C39.3001 32.2234 34.1501 37.3434 27.8001 37.3434C24.4301 37.3434 21.4101 35.8934 19.3101 33.5934C21.2101 37.3234 25.0801 39.8834 29.5701 39.8834C35.9201 39.8834 41.0701 34.7634 41.0701 28.4434C41.0701 25.4734 39.9301 22.7834 38.0701 20.7534H38.0601Z' fill='%23B87B02'/%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_1499_5437' x='0.150024' y='-0.00634766' width='60' height='74' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur stdDeviation='5'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1499_5437'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_1499_5437' result='shape'/%3e%3c/filter%3e%3cfilter id='filter1_f_1499_5437' x='16.3101' y='17.7534' width='27.76' height='25.1299' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='1.5' result='effect1_foregroundBlur_1499_5437'/%3e%3c/filter%3e%3clinearGradient id='paint0_linear_1499_5437' x1='14.2' y1='17.2837' x2='44.86' y2='47.9437' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23EFE19D'/%3e%3cstop offset='0.15' stop-color='%23CC9F4A'/%3e%3cstop offset='0.32' stop-color='%23E9D68E'/%3e%3cstop offset='0.35' stop-color='%23E2C979'/%3e%3cstop offset='0.4' stop-color='%23DAB95D'/%3e%3cstop offset='0.44' stop-color='%23D5AF4C'/%3e%3cstop offset='0.47' stop-color='%23D4AC46'/%3e%3cstop offset='0.6' stop-color='%23D0A647'/%3e%3cstop offset='0.62' stop-color='%23CFA548'/%3e%3cstop offset='0.7' stop-color='%23DFC16E'/%3e%3cstop offset='0.81' stop-color='%23F4E69F'/%3e%3cstop offset='0.84' stop-color='%23EEDD94'/%3e%3cstop offset='0.94' stop-color='%23DDC06E'/%3e%3cstop offset='1' stop-color='%23D7B660'/%3e%3c/linearGradient%3e%3clinearGradient id='paint1_linear_1499_5437' x1='17.69' y1='42.3438' x2='42.19' y2='23.2738' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23EFE19D'/%3e%3cstop offset='0.04' stop-color='%23E9D58A'/%3e%3cstop offset='0.1' stop-color='%23DDBF65'/%3e%3cstop offset='0.15' stop-color='%23D6B14E'/%3e%3cstop offset='0.19' stop-color='%23D4AC46'/%3e%3cstop offset='0.24' stop-color='%23D8B453'/%3e%3cstop offset='0.34' stop-color='%23E2C978'/%3e%3cstop offset='0.4' stop-color='%23E9D68E'/%3e%3cstop offset='0.53' stop-color='%23DAB965'/%3e%3cstop offset='0.64' stop-color='%23CFA548'/%3e%3cstop offset='0.73' stop-color='%23DFC16E'/%3e%3cstop offset='0.85' stop-color='%23F4E69F'/%3e%3cstop offset='0.88' stop-color='%23EEDD94'/%3e%3cstop offset='0.96' stop-color='%23DDC06E'/%3e%3cstop offset='1' stop-color='%23D7B660'/%3e%3c/linearGradient%3e%3cradialGradient id='paint2_radial_1499_5437' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(27 23.4937) rotate(56.3099) scale(14.4222)'%3e%3cstop offset='0.180892' stop-color='%23F9F3D0'/%3e%3cstop offset='0.73' stop-color='%23DDB02A'/%3e%3cstop offset='0.96' stop-color='%23CC9F4A'/%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e\";\n export default img;","var img = \"data:image/svg+xml,%3csvg width='250' height='250' viewBox='0 0 250 250' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3ccircle cx='125' cy='125' r='125' fill='url(%23paint0_radial_4318_321)' /%3e %3cdefs%3e %3cradialGradient id='paint0_radial_4318_321' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(125 125) scale(125 125)' %3e %3cstop offset='0.81' stop-color='white'/%3e %3cstop offset='0.87' stop-color='%23FCFCFD'/%3e %3cstop offset='0.91' stop-color='%23F3F4F6'/%3e %3cstop offset='0.94' stop-color='%23E9ECF0'/%3e %3cstop offset='0.97' stop-color='%23B9C3CE'/%3e %3cstop offset='1' stop-color='%23899BAD'/%3e %3c/radialGradient%3e %3c/defs%3e%3c/svg%3e\";\n export default img;","// @ts-nocheck\nimport themeBgHalo from './images/theme.bg.halo.svg'\nimport themeBgBlackRing from './images/theme.bg.blackring.svg'\nimport themeCenter1 from './images/themeCenter1.svg'\nimport themeCenter2 from './images/themeCenter2.svg'\nimport themePartitionLight from './images/themePartitionLight.svg'\nimport themePointerArea from './images/themePointerArea.svg'\n\nimport theme1Bg3 from './images/theme1Bg3.svg'\nimport theme2Bg3 from './images/theme2Bg3.svg'\nimport theme2Arrow from './images/theme2Arrow.svg'\n\nimport theme3Bg1 from './images/theme3Bg1.svg'\nimport theme3Bg2 from './images/theme3Bg2.svg'\nimport theme3Arrow from './images/theme3Arrow.svg'\n\nimport theme7Bg1 from './images/theme7Bg1.svg'\nimport theme7Bg2 from './images/theme7Bg2.svg'\nimport theme7Bg3 from './images/theme7Bg3.svg'\n\nimport theme2Center from './images/theme2Center.svg'\nimport theme3Center from './images/theme3Center.svg'\nimport theme7Center from './images/theme7Center.svg'\nimport theme7Light from './images/theme7Light.svg'\nimport theme7Arrow from './images/theme7Arrow.svg'\n\nimport themeShadow from './images/themeShadow.svg'\n\nconst defineBottom = () => `\n --img-theme-BgBlackRing: url(\"${themeBgBlackRing}\");\n --img-theme-BgHalo: url(\"${themeBgHalo}\");\n --img-theme1-bg3: url(\"${theme1Bg3}\");\n --img-theme2-bg3: url(\"${theme2Bg3}\");\n --img-theme3-bg2: url(\"${theme3Bg2}\");\n --img-theme3-bg1: url(\"${theme3Bg1}\");\n\n --img-theme7-bg3: url(\"${theme7Bg3}\");\n --img-theme7-bg2: url(\"${theme7Bg2}\");\n --img-theme7-bg1: url(\"${theme7Bg1}\");\n\n`\n\nconst defineMiddle = () => `\n --img-theme-center1: url(\"${themeCenter1}\");\n --img-theme2-center: url(\"${theme2Center}\");\n --img-theme2-arrow: url(\"${theme2Arrow}\");\n --img-theme3-center: url(\"${theme3Center}\");\n --img-theme3-arrow: url(\"${theme3Arrow}\");\n --img-theme7-arrow: url(\"${theme7Arrow}\");\n --img-theme-center2: url(\"${themeCenter2}\");\n --img-theme7-center: url(\"${theme7Center}\");\n`\n\nconst defineTop = () => `\n --img-theme-shadow: url(\"${themeShadow}\");\n --img-theme7-light: url(\"${theme7Light}\");\n`\n \nexport const defines = () => \n [\n defineBottom(),\n defineMiddle(),\n defineTop(),\n ` \n --img-theme-partition-light: url(\"${themePartitionLight}\");\n --img-theme-pointer-area: url(\"${themePointerArea}\");\n `\n ].join(' ')\n","<svelte:options tag={'lottery-program-wof-private-item-svg'} />\n\n<script lang=\"ts\">\n\n // types\n import { PointerMode, Lang, ContentDirection } from './types';\n import { getOptions, getSpinContainerSelector, Option } from './business';\n import { api } from './business';\n import { onMountMessageLifeCycle, _postMessage } from './message';\n import type { LotteryProgramForPlayer } from './types.business';\n import { themes } from './themes';\n import { isSafari, setProps } from './util';\n import { Spinner } from './class.spinner';\n import { SvgCalc } from './class.svgcalc';\n import { Process } from './class.process';\n import { _ } from './i18n';\n import { setClientStyling } from './widget';\n import { defines } from './themes.image.center';\n\n // properties common\n export let lang: Lang = Lang.en\n export let endpoint: string = ''\n export let session: string = ''\n export let clientstyling:string = ''\n export let contentdirection: keyof typeof ContentDirection = 'anticlockwise'\n export let partitiondivisor: string = ''\n\n let rootContainer: HTMLElement\n $: clientstyling && rootContainer && setClientStyling(rootContainer, clientstyling);\n\n // properties\n export let id: string = undefined\n export let size: string = ''\n export let radius: string = ''\n\n let isPartitionsCustomableReady: boolean = false\n // temp way to make sure transform-origin effects on safari\n const handleSafariIssue = (trigger) => {\n trigger(-1)\n setTimeout(() => {\n trigger(1)\n isPartitionsCustomableReady = true\n }, 100)\n }\n\n let bonus: LotteryProgramForPlayer\n const updateOptions = async () => {\n if(!options.length){\n options = await getOptions(bonus, lang)\n\n _postMessage({ type: 'wof-private-options-ready', id })\n\n const trigger = (amount: number) => size = String(Number(size) + amount)\n handleSafariIssue(trigger)\n }\n }\n $: bonus && lang && updateOptions()\n\n let options: Option[] = []\n\n // binds\n let svg: SVGElement;\n let spinContainer\n\n let spinner = new Spinner({\n tick: (deg, _speed) => {\n setProps(spinContainer, {\n style: [\n `transform: rotate(${deg}deg)`,\n `height: ${size}px`,\n `width: ${size}px`,\n ].join(';'), //mix-blend-mode: screen; background-blend-mode: screen;\n })\n speed = _speed * 0.5\n }\n })\n\n // states\n let spinable = true;\n let isSpinning = false;\n let isShowPrizeArea = false;\n let messageShown: boolean = false;\n let shownFirstCheck = false\n\n let speed: number = 0\n\n $: themeIndex = bonus?.program?.metadata?.template || 0\n $: theme = themes[themeIndex] || themes[0]\n $: calc = new SvgCalc({\n size,\n radius,\n options,\n themeIndex,\n contentdirection,\n })\n $: options && updateCalcOptions()\n $: (contentdirection || !contentdirection) && updateCalcContentDirection()\n\n $: bonus && runFirstCheck()\n\n const updateCalcOptions = () => {\n calc.options = options\n }\n const updateCalcContentDirection = () => {\n calc.contentdirection = contentdirection || 'anticlockwise'\n setImageProps()\n }\n\n const setImageProps = () => {\n if(!rootContainer) return;\n\n for ( let index = 0; index <= options.length; index++ ) {\n const image = rootContainer.querySelector(`.PartitionImage.PartitionImage${index} image`)\n if(image) {\n setProps(image, calc.getSvgImageProps(index, partitiondivisor))\n }\n }\n }\n\n const runFirstCheck = () => {\n if(shownFirstCheck) return;\n shownFirstCheck = true\n updateSpinable()\n }\n\n const updateSpinable = () => {\n const isSpinable = !!bonus.current && bonus.current.remainingTimes > 0\n\n if(isSpinable){\n spinable = true\n }else{\n spinable = false;\n\n if(bonus.next){\n process.setMessage({\n mode: 'show-next',\n modeValue: bonus.next\n })\n }else{\n process.setMessage({\n mode: 'NoNext',\n })\n }\n }\n }\n\n $: process = new Process({\n id,\n afterSetMessage: () => messageShown = true,\n halter: (index, cb) => {\n const targetIndex = index >= 0 ? index : options.length - 1\n spinner.halt(calc.getDeg(targetIndex), cb)\n },\n afterSuccess: () => isShowPrizeArea = true,\n fetcher: async (guid) => await api.draw(endpoint, session, id, guid, options)\n })\n\n // events\n const eventSpin = async () => {\n updateSpinable();\n if(!spinable) return;\n if(isSpinning) return;\n\n isSpinning = true\n isShowPrizeArea = false\n\n spinContainer = svg.querySelector(getSpinContainerSelector(theme.pointerMode))\n\n spinner.launch()\n process.drawer(`userid-${id}-${new Date().getTime()}`)\n }\n onMountMessageLifeCycle({\n 'wof-private-bonuses': (data) => {\n bonus = data.bonuses.find(_bonus => _bonus.program.id === id)\n },\n 'wof-private-bonus': (data) => {\n if(data.id !== id) return;\n bonus = data.bonus\n },\n 'wof-private-message-close': (data) => {\n if(data.id !== id) return;\n\n isSpinning = false\n setTimeout(() => updateSpinable(), 1)\n messageShown = false\n },\n 'wof-private-message-retry': (data) => {\n if(data.id !== id) return;\n\n messageShown = false\n process.drawer()\n }\n })\n\n const renderImage = (node: SVGElement, index) => {\n const image = options[index].image as SVGImageElement\n setProps(image, calc.getSvgImageProps(index))\n node.innerHTML = null\n node.appendChild(image)\n }\n\n\n $: optionFilter = theme.pointerMode === PointerMode.Arrow && speed > 0.3 ? `blur(${speed}px)` : null\n $: sizeProps = { height: size, width: size}\n $: foreignObjectAgentProps = {\n style: Object.keys(sizeProps).map(key => `${key}: ${sizeProps[key]}px`).join(';')\n } \n</script>\n\n<div\n class={`WheelContainer theme${Number(themeIndex) + 1}`}\n bind:this={rootContainer}\n style={`${defines()} --length: ${options.length}; --radius: ${radius}; --ratio: ${Number(size) / 480}; --size: ${size}`}\n>\n {#if Number(size) && options.length}\n <svg\n bind:this={svg}\n width={size}\n height={size}\n on:click={() => isSafari() && eventSpin()}\n style:opacity={messageShown ? '.3': ''}\n >\n <foreignObject {...sizeProps} class=\"Bottom Customable\">\n <div {...foreignObjectAgentProps} />\n </foreignObject>\n\n <g class=\"PartitionsContainer\" {...calc.getSpinnerProps()}>\n <g class=\"PartitionsBackgrounds\">\n {#each options as option, index}\n <foreignObject\n clip-path={`url(#clip${index})`}\n class=\"PartitionBackground Customable\"\n style={`--index: ${index}`}\n width={size}\n height={size}\n >\n <div {...foreignObjectAgentProps} />\n </foreignObject>\n {/each}\n </g>\n <g class=\"PartitionsBackgroundStrokes\">\n {#each options as option, index}\n <path\n class=\"PartitionBackgroundStroke\"\n {...calc.getPartitionDraw(index)}\n width={size}\n height={size}\n />\n {/each}\n </g>\n\n <g class=\"Partitions\" style:filter={optionFilter}>\n {#each options as option,index}\n\n {#if option.image}\n <g\n class={`PartitionImage PartitionImage${index}`}\n use:renderImage={index}\n />\n {/if}\n\n {#if option.name}\n <foreignObject\n class=\"PartitionText\"\n {...calc.getSvgTextPropsAdjustedByImage(index)}\n >\n <div class=\"PartitionTextEntityContainer\">\n <p class={`PartitionTextEntity${calc.contentdirection === 'clockwise' ? '' : ' Anticlockwise'}`}>{@html option.name}</p>\n </div>\n </foreignObject>\n {/if}\n\n {/each}\n </g>\n\n </g>\n\n <g class=\"PartitionsCustomable1\" class:active={isPartitionsCustomableReady}>\n {#each options as option,index}\n <foreignObject\n class=\"Partition1 Customable\"\n style={`--index: ${index}`}\n {...sizeProps}\n >\n <div {...foreignObjectAgentProps} />\n </foreignObject>\n {/each}\n </g>\n <g class=\"PartitionsCustomable2\" class:active={isPartitionsCustomableReady}>\n {#each options as option,index}\n <foreignObject\n class=\"Partition2 Customable\"\n style={`--index: ${index}`}\n {...sizeProps}\n >\n <div {...foreignObjectAgentProps} />\n </foreignObject>\n {/each}\n </g>\n\n {#if theme.pointerMode === PointerMode.Partition}\n <g class=\"PointerContainer\" {...calc.getSpinnerProps()}>\n\n <foreignObject class=\"PointerArea Customable\" {...sizeProps}>\n <div {...foreignObjectAgentProps} />\n </foreignObject>\n\n <path\n class=\"PointerPartitionFrame\"\n class:active={isShowPrizeArea}\n {...calc.getPartitionDraw(0)}\n />\n </g>\n {/if}\n\n <foreignObject class=\"Middle Customable\" {...sizeProps}>\n <div {...foreignObjectAgentProps} />\n </foreignObject>\n <foreignObject class=\"Top Customable\" {...sizeProps}>\n <div {...foreignObjectAgentProps} />\n </foreignObject>\n\n <g\n class=\"Center\"\n class:spinning={isSpinning}\n on:click={() => isSafari() || eventSpin()}\n >\n <foreignObject\n x={Number(size)/2 - 100/2}\n y={Number(size)/2 - 100/2}\n width={100}\n height={100}\n />\n </g>\n\n <!-- defs -->\n <g>\n {#each options as option, index}\n <clipPath {...{id: `clip${index}`}}>\n <path {...calc.getPartitionDraw(index)} />\n </clipPath>\n {/each}\n </g>\n </svg>\n {/if}\n</div>\n\n<style lang=\"scss\">\n @import './private.item.svg.scss';\n\n g.Center {\n &.spinning {\n cursor: not-allowed;\n }\n }\n</style>\n","<svelte:options tag={'lottery-program-wof-private-item'} />\n\n<script lang=\"ts\">\n import './private.message.svelte'\n import './private.tabs.svelte'\n import './private.outcomes.svelte'\n import './private.item.svg.svelte'\n\n // types\n import { ContentDirection, Lang } from './types';\n import { getCurrentInfo, isBonusInvalid } from './business';\n import { api } from './business';\n import { onMountMessageLifeCycle, _postMessage } from './message';\n import { CurrentInfo, LotteryProgramForPlayer } from './types.business';\n import { _ } from './i18n';\n import { setClientStyling } from './widget';\n\n // properties common\n export let lang: Lang = Lang.en\n export let endpoint: string = ''\n export let session: string = ''\n export let clientstyling:string = ''\n export let currentinfo: string = CurrentInfo.RemainingTimes\n export let giftimagesrc: string = ''\n export let contentdirection: keyof typeof ContentDirection = 'anticlockwise'\n export let size: string = '480'\n \n // properties\n export let id: string = ''\n\n let rootContainer: HTMLElement\n $: clientstyling && rootContainer && setClientStyling(rootContainer, clientstyling);\n\n $: commonProps = {\n endpoint,\n lang,\n session,\n clientstyling,\n }\n\n let bonus: LotteryProgramForPlayer\n let bonusNew: LotteryProgramForPlayer\n let currentInfoKeys: CurrentInfo[]\n let isOptionsReady: boolean = false\n let checkableValid: boolean = true\n\n const refetcher = async () => {\n const LotteryProgramsForPlayer = await api.lotteries(endpoint, session)\n return LotteryProgramsForPlayer.filter(l => l.program.id === id)[0]\n }\n \n onMountMessageLifeCycle({\n 'wof-private-options-ready': (data) => {\n if(data.id !== id) return;\n isOptionsReady = true\n },\n 'wof-private-bonuses': (data) => {\n const bonusFound = data.bonuses.find(l => l.program.id === id)\n if(bonusFound){\n bonus = bonusFound\n }\n },\n 'wof-private-message-spin-after': (data) => {\n if(data.id !== id) return;\n if(!bonusNew) return;\n bonus = bonusNew\n _postMessage({type: 'wof-private-bonus', bonus: bonusNew, id })\n },\n\n 'wof-private-message-spin-before': async (data) => {\n if(data.id !== id) return;\n checkableValid = false\n bonusNew = await refetcher()\n },\n\n 'wof-private-message-close': (data) => {\n if(data.id !== id) return;\n _postMessage({type: 'wof-private-checking', bonus, id })\n setTimeout(() => {\n checkableValid = true\n }, 1000);\n },\n })\n\n // reactives\n $: _size = Number(size) || 480\n $: radius = 0.62 * _size / 2;\n \n // @ts-ignore\n $: currentInfoKeys = currentinfo ? currentinfo.split(',') : [CurrentInfo.RemainingTimes]\n</script>\n\n<div \n class=\"LotteryItem\" \n class:Invalid={isBonusInvalid(bonus) && checkableValid}\n bind:this={rootContainer}\n>\n <lottery-program-wof-private-item-svg {...{ \n ...commonProps,\n id,\n size: _size,\n radius,\n contentdirection,\n }} />\n\n <lottery-program-wof-private-message-panel {...{\n ...commonProps,\n id,\n size: _size,\n r: radius,\n giftimagesrc,\n }} />\n \n {#if bonus?.current && isOptionsReady}\n <div class=\"Current\">\n {#each currentInfoKeys as CurrentInfoKey}\n <p class={CurrentInfoKey}>\n {$_(`wof.${CurrentInfoKey}`)}: {getCurrentInfo(bonus, CurrentInfoKey)}\n </p>\n {/each}\n </div>\n {/if}\n\n</div>\n\n<style lang=\"scss\">\n @mixin FortuneContainer {\n width: 100%;\n display: flex;\n align-items: center;\n flex-direction: column;\n }\n\n lottery-program-wof-private-message-panel {\n position: absolute;\n top: 0;\n }\n\n\n\n *,\n *::before,\n *::after {\n margin: 0;\n padding: 0;\n list-style: none;\n text-decoration: none;\n outline: none;\n box-sizing: border-box;\n }\n\n $outlineColor: rgb(150, 54, 88);\n $outlineWidth: 2px;\n\n .LotteryItem {\n @include FortuneContainer;\n margin: 20px 0;\n\n position: relative;\n max-width: 600px;\n justify-content: space-around;\n min-height: 200px;\n\n &.Invalid { \n display: none;\n }\n }\n\n .Current {\n color: #FFFFFF;\n }\n</style>","<svelte:options tag={null} />\n\n<script lang=\"ts\">\n import './private.message.svelte'\n import './private.tabs.svelte'\n import './private.outcomes.svelte'\n import './private.item.svelte'\n import './private.loader.svelte'\n\n import { onMount } from 'svelte';\n import { _, setLocale, setLocaleWhenInit } from './i18n';\n\n // types\n import { ContentDirection, Lang } from './types';\n import { api, isBonusInvalid } from './business';\n\n import { _postMessage, onMountMessageLifeCycle } from './message';\n import { CurrentInfo, LotteryProgramForPlayer } from './types.business';\n import { setClientStyling, setClientStylingURL, setTranslationUrl } from './widget';\n\n // properties\n export let lang: Lang = Lang.en\n export let endpoint: string = ''\n export let session: string = ''\n export let clientstyling: string = ''\n export let clientstylingurl: string = ''\n export let translationurl: string = ''\n export let programid: string = ''\n export let loginevent: string = ''\n export let loginurl: string = ''\n export let currentinfo: CurrentInfo = CurrentInfo.RemainingTimes\n export let giftimagesrc: string = ''\n export let isshowhistory: string = 'true'\n export let contentdirection: keyof typeof ContentDirection = 'anticlockwise'\n \n let rootContainer: HTMLElement\n $: clientstyling && rootContainer && setClientStyling(rootContainer, clientstyling);\n $: clientstylingurl && rootContainer && setClientStylingURL(clientstylingurl, (_clientstyling) => clientstyling = _clientstyling);\n $: translationurl && setTranslationUrl(translationurl);\n\n $: commonProps = {\n endpoint,\n lang,\n session,\n clientstyling,\n }\n\n let isMounted = false\n $: isMounted && init()\n onMount(() => {\n isMounted = true\n return () => isMounted = false\n })\n\n setLocaleWhenInit()\n\n let bonuses: LotteryProgramForPlayer[] = []\n let loading: boolean = true;\n\n $: hasSession = session && session !== 'false'\n\n const init = async () => {\n loading = true\n if(!hasSession) {\n loginAction(loginevent, loginurl)\n return;\n }\n \n if(!isMounted || !lang || !session || !endpoint) return;\n \n loading = true\n await fetcher()\n loading = false\n }\n\n const fetcher = async () => {\n const _bonuses = await api.lotteries(endpoint, session)\n \n _postMessage({ type: 'wof-private-bonuses-outcomes', bonuses: _bonuses })\n\n bonuses = \n _bonuses\n .map(_bonus => {\n if(!isBonusInvalid(_bonus)){\n return _bonus\n }\n })\n .filter(_bonus => _bonus)\n \n _postMessage({ type: 'WofStatus', avaliable: bonuses.length > 0 })\n _postMessage({ type: 'wof-private-bonuses', bonuses })\n }\n\n const loginAction = (loginevent, loginurl) => {\n if (loginevent) {\n window.postMessage({ type: loginevent, transition: 'Login' }, window.location.href);\n }\n \n if (loginurl) {\n window.location = loginurl;\n }\n }\n\n const setLangReactive = () => {\n setLocale(lang)\n init()\n }\n\n onMountMessageLifeCycle({\n 'wof-private-checking': (data) => {\n if(isBonusInvalid(data.bonus)){\n bonuses = bonuses.map(_bonus => {\n if(_bonus.program.id === data.id){\n return {..._bonus, hidden: true}\n }else{\n return _bonus\n }\n })\n }\n\n let hidden = true\n bonuses.map(_bonus => {\n if(_bonus.hidden !== true){\n hidden = false\n }\n })\n\n if(hidden){\n bonuses = []\n }\n }\n })\n\n $: session && init()\n $: endpoint && init()\n $: lang && setLangReactive()\n\n</script>\n\n<div class=\"WofContainer\" bind:this={rootContainer}>\n <lottery-program-wof-private-tabs {...commonProps} {isshowhistory}>\n <div slot=\"tab-Program\">\n <div class=\"CommonContainer\">\n {#if loading}\n <wof-loader />\n {:else}\n {#if bonuses.length}\n {#each bonuses as bonus}\n <lottery-program-wof-private-item {...{\n ...commonProps,\n id: bonus.program.id,\n currentinfo,\n giftimagesrc,\n contentdirection,\n }} />\n {/each}\n {:else}\n <div class=\"NoContent\">\n <p>{$_('wof.NoContent')}</p>\n </div>\n {/if}\n {/if}\n </div>\n </div>\n <div slot=\"tab-History\">\n <lottery-program-wof-private-outcomes {...{\n ...commonProps,\n id: bonuses.find(_bonus => _bonus.program.id === programid)?.program.id,\n }} />\n </div>\n </lottery-program-wof-private-tabs>\n</div>\n\n\n<style lang=\"scss\">\n\n lottery-program-wof-private-item {\n display: inline-block;\n }\n\n *,\n *::before,\n *::after {\n margin: 0;\n padding: 0;\n list-style: none;\n text-decoration: none;\n outline: none;\n box-sizing: border-box;\n }\n\n .WofContainer {\n display: flex;\n align-items: center;\n flex-direction: column;\n padding: 20px 0;\n background: var(--emfe-w-color-contrast, #07072A);\n }\n\n .NoContent {\n color: rgb(255, 255, 255);\n min-height: 300px;\n display: flex;\n justify-content: center;\n align-items: center;\n font-size: 16px;\n }\n \n .CommonContainer {\n display: flex;\n flex-wrap: wrap;\n justify-content: center;\n }\n</style>","import LotteryProgramWof from './LotteryProgramWof.svelte';\n// @ts-ignore\n!customElements.get('lottery-program-wof') && customElements.define('lottery-program-wof', LotteryProgramWof);\nexport default LotteryProgramWof;\n"],"names":["flush","img","deepmerge","getOptions","locale","dictionary","create_if_block_3","create_if_block_2","create_if_block","giftSvg","create_if_block_1","Thankyou1Svg","themeBgBlackRing","themeBgHalo","theme1Bg3","theme2Bg3","theme3Bg2","theme3Bg1","theme7Bg3","theme7Bg2","theme7Bg1","themeCenter1","theme2Center","theme2Arrow","theme3Center","theme3Arrow","theme7Arrow","themeCenter2","theme7Center","themeShadow","theme7Light","themePartitionLight","themePointerArea"],"mappings":"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KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,KAAK,EAAE;IACX,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,OAAO,EAAE;IACb,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,QAAQ,EAAE;IACd,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,QAAQ,EAAE;IACd,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,IAAI,EAAE;IACV,QAAQ,GAAG;IACX,QAAQ,IAAI;IACZ,QAAQ,IAAI;IACZ,QAAQ,GAAG;IACX,KAAK;IACL,IAAI,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C,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM;IACvC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,MAAM,IAAI,CAAC,IAAI,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,QAAQ,CAAC,KAAK,MAAM;IACpB,SAAS,CAAC,IAAI,M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"}