{"version":3,"file":"bundle.js","sources":["../../node_modules/svelte/internal/index.mjs","../../src/One.svelte","../../src/Two.svelte","../../src/Three.svelte","../../src/Four.svelte","../../src/Five.svelte","../../src/Six.svelte","../../src/Seven.svelte","../../node_modules/svelte/store/index.mjs","../../src/App.svelte","../../src/main.js"],"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 === '&' ? '&' : (ch === '\"' ? '"' : '<'));\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","<script>\n export let goTo=null\n $: console.log(\"goto\",$goTo)\n </script>\n \n<svg width=\"700\" viewBox=\"0 0 700 700\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<g id=\"Interactive\">\n<g id=\"Illustration headers\">\n<g id=\"Illustration\">\n<g id=\"Illo\">\n<g id=\"Ellipse 1\">\n<path d=\"M700 120.569C500.303 120.569 178.452 120.569 0 120.569C0 101.933 125.256 2.20508 350 2.20508C570.463 2.20508 700 101.933 700 120.569Z\" fill=\"white\"/>\n<path d=\"M700 120.569C500.303 120.569 178.452 120.569 0 120.569C0 101.933 125.256 2.20508 350 2.20508C570.463 2.20508 700 101.933 700 120.569Z\" fill=\"#206095\" fill-opacity=\"0.05\"/>\n</g>\n<g id=\"Background buildings\">\n<path id=\"Vector\" d=\"M487.962 87.3798L480.563 81.3013C480.059 80.8885 479.371 80.8885 478.868 81.3013L471.468 87.3798V145.715H487.962V87.3798Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_2\" d=\"M460.082 91.2017H471.74V145.027H460.082V91.2017Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_3\" d=\"M462.433 84.4312H467.694V93.195H462.433V84.4312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_4\" d=\"M487.939 98.2393H500.166V142.841H487.939V98.2393Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_5\" d=\"M500.162 88.8657H511.25V145.255H500.162V88.8657Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_6\" d=\"M510.947 80.605H519.632V144.567H510.947V80.605Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_7\" d=\"M532.469 91.6416H542.983V143.132H532.469V91.6416Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_8\" d=\"M542.983 97.7549H552.081V141.098H542.983V97.7549Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_9\" d=\"M532.469 101.923L519.495 95.8364V141.122H532.469V101.923Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_2\">\n<path id=\"Vector_10\" d=\"M179.123 68.9979L169.785 59.9251C169.148 59.3082 168.283 59.3082 167.646 59.9251L158.307 68.9979V156.036H179.119V68.9979H179.123Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_11\" d=\"M143.934 155.001H158.65V74.6915H143.934V155.001Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_12\" d=\"M146.908 77.6709H153.545V64.5964H146.908V77.6709Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_13\" d=\"M179.092 151.752H194.524V74.4409H179.092V151.752Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_14\" d=\"M194.511 155.348H208.505V71.2133H194.511V155.348Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_15\" d=\"M217.437 154.32H228.397V58.891H217.437V154.32Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_16\" d=\"M65.4646 143.936H108.021V97.7379H65.4646V143.936Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_17\" d=\"M125.683 142.646H140.152V94.0413H125.683V142.646Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_18\" d=\"M140.152 144.301H152.671V93.9401H140.152V144.301Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_19\" d=\"M136.687 98.7855L107.828 91.7114V144.328H136.687V98.7855Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_20\" d=\"M179.123 48.2058L169.785 43.3925C169.148 43.0651 168.283 43.0651 167.646 43.3925L158.307 48.2058V94.3816H179.119V48.2058H179.123Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_21\" d=\"M143.934 93.833H158.65V51.2267H143.934V93.833Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_22\" d=\"M146.908 52.8071H153.545V45.8708H146.908V52.8071Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_23\" d=\"M179.092 92.1094H194.524V56.8041H179.092V92.1094Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_24\" d=\"M208.505 118.488H233.453V41.7437H208.505V118.488Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_25\" d=\"M79.4427 111.917H108.021V77.9923H79.4427V111.917Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_26\" d=\"M125.683 135.839H146.908L146.908 61.4923H125.683L125.683 135.839Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_27\" d=\"M140.152 139.21H152.671L152.671 53.1164H140.152V139.21Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_28\" d=\"M125.683 72.2887L107.828 64.8125V120.42H125.683V72.2887Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_3\">\n<path id=\"Vector_29\" d=\"M261.116 61.1229L270.454 51.2292C271.091 50.5564 271.956 50.5564 272.593 51.2292L281.932 61.1229V156.036H261.12V61.1229H261.116Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_30\" d=\"M296.304 154.907H281.589V67.3315H296.304V154.907Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_31\" d=\"M293.331 70.5806H286.693V56.3232H293.331V70.5806Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_32\" d=\"M261.146 151.364H245.715V67.0583H261.146V151.364Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_33\" d=\"M245.728 155.286H231.734V63.5389H245.728V155.286Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_34\" d=\"M222.801 154.165H211.842V50.1015H222.801V154.165Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_35\" d=\"M374.774 138.215H332.218V92.4634H374.774V138.215Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_36\" d=\"M314.555 141.435H300.086V88.4327H314.555V141.435Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_37\" d=\"M300.086 143.239H287.568V88.322H300.086V143.239Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_38\" d=\"M303.552 93.6058L332.411 85.8916V143.269H303.552V93.6058Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_39\" d=\"M261.116 38.4497L270.454 33.2008C271.091 32.8439 271.956 32.8439 272.593 33.2008L281.932 38.4497V88.8034H261.12V38.4497H261.116Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_40\" d=\"M296.304 88.2051H281.589V41.7438H296.304V88.2051Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_41\" d=\"M293.331 43.4673H286.693V35.9034H293.331V43.4673Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_42\" d=\"M261.146 86.3252H245.715V47.8256H261.146V86.3252Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_43\" d=\"M231.734 143.132H206.786L206.786 31.4027H231.734L231.734 143.132Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_44\" d=\"M360.796 107.925H332.218V70.9312H360.796V107.925Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_45\" d=\"M314.555 134.012H293.331V52.9384H314.555V134.012Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_46\" d=\"M300.086 137.688H287.568V43.8044H300.086V137.688Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_47\" d=\"M314.555 64.7117L332.411 56.5591V117.197H314.555V64.7117Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_4\">\n<path id=\"Vector_48\" d=\"M396.322 43.9472L406.674 33.1907C407.38 32.4592 408.339 32.4592 409.045 33.1907L419.397 43.9472V147.137H396.327V43.9472H396.322Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_49\" d=\"M435.325 48.7314H419.013V147.137H435.325V48.7314Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_50\" d=\"M432.033 38.0664H424.676V51.8795H432.033V38.0664Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_51\" d=\"M396.356 59.8315H379.25V147.137H396.356V59.8315Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_52\" d=\"M379.26 45.0566H363.746V147.137H379.26V45.0566Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_53\" d=\"M364.165 32.0312H352.016V147.137H364.165V32.0312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_54\" d=\"M334.058 68.2846L352.211 56.0444V147.137H334.058V68.2846Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_55\" d=\"M455.562 65.9717H439.522V147.137H455.562V65.9717Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_56\" d=\"M439.523 78.8105H425.645V147.137H439.523V78.8105Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_5\">\n<path id=\"Vector_57\" d=\"M406.323 26.2429L415.451 19.0517C416.072 18.5602 416.921 18.5602 417.541 19.0517L426.669 26.2429V95.2607H406.323V26.2429Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_58\" d=\"M440.711 30.7603H426.33V94.4428H440.711V30.7603Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_59\" d=\"M437.81 22.7515H431.321V33.1195H437.81V22.7515Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_60\" d=\"M406.352 39.0913H391.268V91.8632H406.352V39.0913Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_61\" d=\"M391.273 28H377.595V94.7178H391.273V28Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_62\" d=\"M377.969 18.2261H367.255V93.9004H377.969V18.2261Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_63\" d=\"M351.419 31.2827H338.449V92.2012H351.419V31.2827Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_64\" d=\"M338.449 38.5176H327.226V89.8033H338.449V38.5176Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_65\" d=\"M351.419 43.4476L367.424 36.2485V89.8264H351.419V43.4476Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_6\">\n<path id=\"Vector_66\" d=\"M484.96 43.5227L474.547 36.3315C473.839 35.84 472.87 35.84 472.162 36.3315L461.749 43.5227V112.541H484.96V43.5227Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_67\" d=\"M445.731 48.04H462.136V149.435H445.731V48.04Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_68\" d=\"M449.04 40.0312H456.443V50.3993H449.04V40.0312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_69\" d=\"M484.321 48.8135H502.53V108.813H484.321V48.8135Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_70\" d=\"M502.13 45.2803H517.733V111.998H502.13V45.2803Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_71\" d=\"M517.307 35.5059H529.529V111.18H517.307V35.5059Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_72\" d=\"M547.595 48.5625H562.39V109.481H547.595V48.5625Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_73\" d=\"M562.39 55.7974H575.194V107.083H562.39V55.7974Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_74\" d=\"M547.571 46.2191L529.362 36.8135V106.813H547.571V46.2191Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_75\" d=\"M589.381 82.1595L578.968 76.8057C578.26 76.4398 577.291 76.4398 576.583 76.8057L566.17 82.1595V133.543H589.381V82.1595Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_76\" d=\"M588.742 88.873H606.95V133.543H588.742V88.873Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_77\" d=\"M606.55 83.8721H622.154V133.544H606.55V83.8721Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_78\" d=\"M621.727 77.2036H633.95V133.543H621.727V77.2036Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_79\" d=\"M651.991 88.4307L633.783 81.4282V133.543H651.991V88.4307Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Ground\">\n<g id=\"Vector_80\">\n<path d=\"M700 177.896H0V135.896H700V177.896Z\" fill=\"white\"/>\n<path d=\"M700 177.896H0V135.896H700V177.896Z\" fill=\"#206095\" fill-opacity=\"0.1\"/>\n</g>\n<g id=\"Vector_81\">\n<path d=\"M700 135.896H0V120.569H700V135.896Z\" fill=\"white\"/>\n<path d=\"M700 135.896H0V120.569H700V135.896Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n</g>\n<g id=\"Bush\">\n<g id=\"Vector_82\">\n<path d=\"M47.768 112.919C52.1165 115.137 54.8254 116.218 55.9657 117.354C57.1098 118.491 59.8109 121.801 58.2657 124.188C56.7166 126.574 56.2055 128.442 51.853 128.245C47.5006 128.049 45.7352 127.432 42.2124 127.754C38.6896 128.076 35.5756 126.496 34.8482 125.737C34.1209 124.978 31.9348 121.459 34.8286 118.345C37.7223 115.227 43.9266 110.961 47.768 112.919Z\" fill=\"white\"/>\n<path d=\"M47.768 112.919C52.1165 115.137 54.8254 116.218 55.9657 117.354C57.1098 118.491 59.8109 121.801 58.2657 124.188C56.7166 126.574 56.2055 128.442 51.853 128.245C47.5006 128.049 45.7352 127.432 42.2124 127.754C38.6896 128.076 35.5756 126.496 34.8482 125.737C34.1209 124.978 31.9348 121.459 34.8286 118.345C37.7223 115.227 43.9266 110.961 47.768 112.919Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_83\">\n<path d=\"M40.9347 110.729C37.9347 109.058 34.6399 108.972 30.3583 111.645C26.0766 114.323 25.1723 116.1 24.9128 117.283C24.6572 118.467 22.7071 119.214 23.2339 121.581C23.7608 123.948 28.8013 126.448 32.0686 126.735C35.3359 127.022 36.02 126.723 39.9006 126.122C43.7812 125.52 46.8991 124.624 48.3185 121.659C49.7418 118.695 44.1076 112.494 40.9307 110.729H40.9347Z\" fill=\"white\"/>\n<path d=\"M40.9347 110.729C37.9347 109.058 34.6399 108.972 30.3583 111.645C26.0766 114.323 25.1723 116.1 24.9128 117.283C24.6572 118.467 22.7071 119.214 23.2339 121.581C23.7608 123.948 28.8013 126.448 32.0686 126.735C35.3359 127.022 36.02 126.723 39.9006 126.122C43.7812 125.52 46.8991 124.624 48.3185 121.659C49.7418 118.695 44.1076 112.494 40.9307 110.729H40.9347Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_84\">\n<path d=\"M58.221 114.583C64.9718 116.792 69.1788 117.87 70.9559 119.006C72.7291 120.142 76.9243 123.445 74.5181 125.835C72.1079 128.226 71.3098 130.093 64.5472 129.905C57.7846 129.716 55.0441 129.103 49.5711 129.429C44.0982 129.755 39.2621 128.182 38.1337 127.424C37.0053 126.665 33.6122 123.15 38.114 120.032C42.6159 116.91 52.2644 112.636 58.2289 114.59L58.221 114.583Z\" fill=\"white\"/>\n<path d=\"M58.221 114.583C64.9718 116.792 69.1788 117.87 70.9559 119.006C72.7291 120.142 76.9243 123.445 74.5181 125.835C72.1079 128.226 71.3098 130.093 64.5472 129.905C57.7846 129.716 55.0441 129.103 49.5711 129.429C44.0982 129.755 39.2621 128.182 38.1337 127.424C37.0053 126.665 33.6122 123.15 38.114 120.032C42.6159 116.91 52.2644 112.636 58.2289 114.59L58.221 114.583Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_85\">\n<path d=\"M21.0754 124.149C19.3494 123.3 17.4543 123.248 14.9852 124.597C12.516 125.946 11.9931 126.846 11.8437 127.444C11.6943 128.041 10.5698 128.419 10.8725 129.614C11.1714 130.813 14.0691 132.087 15.9524 132.236C17.8357 132.386 18.2288 132.236 20.4621 131.938C22.6953 131.639 24.4921 131.187 25.3178 129.689C26.1434 128.191 22.9076 125.045 21.0833 124.145L21.0754 124.149Z\" fill=\"white\"/>\n<path d=\"M21.0754 124.149C19.3494 123.3 17.4543 123.248 14.9852 124.597C12.516 125.946 11.9931 126.846 11.8437 127.444C11.6943 128.041 10.5698 128.419 10.8725 129.614C11.1714 130.813 14.0691 132.087 15.9524 132.236C17.8357 132.386 18.2288 132.236 20.4621 131.938C22.6953 131.639 24.4921 131.187 25.3178 129.689C26.1434 128.191 22.9076 125.045 21.0833 124.145L21.0754 124.149Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_86\">\n<path d=\"M14.1043 125.642C12.7361 124.97 11.2342 124.931 9.27616 126C7.31815 127.07 6.90531 127.781 6.78343 128.257C6.66547 128.733 5.7769 129.028 6.0128 129.979C6.24871 130.931 8.54878 131.937 10.0389 132.059C11.529 132.177 11.8436 132.059 13.6129 131.823C15.3861 131.587 16.8094 131.229 17.4621 130.042C18.1147 128.855 15.5512 126.362 14.1043 125.65V125.642Z\" fill=\"white\"/>\n<path d=\"M14.1043 125.642C12.7361 124.97 11.2342 124.931 9.27616 126C7.31815 127.07 6.90531 127.781 6.78343 128.257C6.66547 128.733 5.7769 129.028 6.0128 129.979C6.24871 130.931 8.54878 131.937 10.0389 132.059C11.529 132.177 11.8436 132.059 13.6129 131.823C15.3861 131.587 16.8094 131.229 17.4621 130.042C18.1147 128.855 15.5512 126.362 14.1043 125.65V125.642Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_87\">\n<path d=\"M18.5984 121.176C16.8723 120.327 14.9772 120.276 12.5081 121.624C10.039 122.973 9.51604 123.873 9.36664 124.471C9.21723 125.069 8.09275 125.446 8.39549 126.641C8.69431 127.841 8.91449 129.626 10.7978 129.775C12.6811 129.924 15.7518 129.264 17.985 128.965C20.2183 128.666 22.0151 128.214 22.8407 126.716C23.6625 125.218 20.4306 122.073 18.6062 121.172L18.5984 121.176Z\" fill=\"white\"/>\n<path d=\"M18.5984 121.176C16.8723 120.327 14.9772 120.276 12.5081 121.624C10.039 122.973 9.51604 123.873 9.36664 124.471C9.21723 125.069 8.09275 125.446 8.39549 126.641C8.69431 127.841 8.91449 129.626 10.7978 129.775C12.6811 129.924 15.7518 129.264 17.985 128.965C20.2183 128.666 22.0151 128.214 22.8407 126.716C23.6625 125.218 20.4306 122.073 18.6062 121.172L18.5984 121.176Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Police station\" clip-path=\"url(#clip0_1849_10237)\">\n<g id=\"Vector_88\">\n<path d=\"M476.484 47.2856H307.516V127.819H476.484V47.2856Z\" fill=\"white\"/>\n<path d=\"M476.484 47.2856H307.516V127.819H476.484V47.2856Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<path id=\"Vector_89\" d=\"M477 45.1685H307V47.2905H477V45.1685Z\" fill=\"#003C57\"/>\n<g id=\"Vector_90\">\n<path d=\"M414.975 39.9351H369.025V129.808H414.975V39.9351Z\" fill=\"white\"/>\n<path d=\"M414.975 39.9351H369.025V129.808H414.975V39.9351Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_91\" d=\"M415.614 37.813H368.391V39.935H415.614V37.813Z\" fill=\"#003C57\"/>\n<path id=\"Vector_92\" d=\"M363.839 52.5688H311.744V61.372H363.839V52.5688Z\" fill=\"white\"/>\n<path id=\"Vector_93\" d=\"M363.839 66.1133H311.744V75.2069H363.839V66.1133Z\" fill=\"white\"/>\n<path id=\"Vector_94\" d=\"M363.957 79.7314H311.744V88.5346H363.957V79.7314Z\" fill=\"white\"/>\n<path id=\"Vector_95\" d=\"M351.912 93.3105H311.744V102.114H351.912V93.3105Z\" fill=\"white\"/>\n<path id=\"Vector_96\" d=\"M351.912 106.274H311.744V115.077H351.912V106.274Z\" fill=\"white\"/>\n<path id=\"Vector_97\" d=\"M420.206 61.377L472.3 61.377V52.5738L420.206 52.5738V61.377Z\" fill=\"white\"/>\n<path id=\"Vector_98\" d=\"M420.206 75.2119H472.3V66.1183H420.206V75.2119Z\" fill=\"white\"/>\n<path id=\"Vector_99\" d=\"M420.083 88.5347H472.295V79.7315H420.083V88.5347Z\" fill=\"white\"/>\n<path id=\"Vector_100\" d=\"M432.127 102.119H472.295V93.3155H432.127V102.119Z\" fill=\"white\"/>\n<path id=\"Vector_101\" d=\"M432.127 115.072H472.295V106.269H432.127V115.072Z\" fill=\"white\"/>\n<g id=\"Vector_102\">\n<path d=\"M426.719 97.978H357.276V129.808H426.719V97.978Z\" fill=\"white\"/>\n<path d=\"M426.719 97.978H357.276V129.808H426.719V97.978Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<path id=\"Vector_103\" d=\"M428.342 95.856H355.659V97.978H428.342V95.856Z\" fill=\"#003C57\"/>\n<path id=\"Vector_104\" d=\"M374.044 111.493H376.399C381.359 111.493 385.386 115.525 385.386 120.493V129.813H365.053V120.493C365.053 115.525 369.079 111.493 374.039 111.493H374.044Z\" fill=\"white\"/>\n<g id=\"Vector_105\">\n<path d=\"M375.367 111.443H375.082V129.537H375.367V111.443Z\" fill=\"white\"/>\n<path d=\"M375.367 111.443H375.082V129.537H375.367V111.443Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_106\">\n<path d=\"M374.418 120.734C374.418 120.601 374.31 120.493 374.177 120.493C374.044 120.493 373.936 120.601 373.936 120.734V122.162C373.936 122.295 374.044 122.403 374.177 122.403C374.31 122.403 374.418 122.295 374.418 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M374.418 120.734C374.418 120.601 374.31 120.493 374.177 120.493C374.044 120.493 373.936 120.601 373.936 120.734V122.162C373.936 122.295 374.044 122.403 374.177 122.403C374.31 122.403 374.418 122.295 374.418 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_107\">\n<path d=\"M376.542 120.734C376.542 120.601 376.434 120.493 376.301 120.493C376.168 120.493 376.06 120.601 376.06 120.734V122.162C376.06 122.295 376.168 122.403 376.301 122.403C376.434 122.403 376.542 122.295 376.542 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M376.542 120.734C376.542 120.601 376.434 120.493 376.301 120.493C376.168 120.493 376.06 120.601 376.06 120.734V122.162C376.06 122.295 376.168 122.403 376.301 122.403C376.434 122.403 376.542 122.295 376.542 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_108\" d=\"M406.436 111.493H408.791C413.751 111.493 417.777 115.525 417.777 120.493V129.813H397.444V120.493C397.444 115.525 401.471 111.493 406.431 111.493H406.436Z\" fill=\"white\"/>\n<g id=\"Vector_109\">\n<path d=\"M407.758 111.443H407.473V129.537H407.758V111.443Z\" fill=\"white\"/>\n<path d=\"M407.758 111.443H407.473V129.537H407.758V111.443Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_110\">\n<path d=\"M406.809 120.734C406.809 120.601 406.702 120.493 406.569 120.493C406.435 120.493 406.328 120.601 406.328 120.734V122.162C406.328 122.295 406.435 122.403 406.569 122.403C406.702 122.403 406.809 122.295 406.809 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M406.809 120.734C406.809 120.601 406.702 120.493 406.569 120.493C406.435 120.493 406.328 120.601 406.328 120.734V122.162C406.328 122.295 406.435 122.403 406.569 122.403C406.702 122.403 406.809 122.295 406.809 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_111\">\n<path d=\"M408.938 120.734C408.938 120.601 408.83 120.493 408.697 120.493C408.564 120.493 408.456 120.601 408.456 120.734V122.162C408.456 122.295 408.564 122.403 408.697 122.403C408.83 122.403 408.938 122.295 408.938 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M408.938 120.734C408.938 120.601 408.83 120.493 408.697 120.493C408.564 120.493 408.456 120.601 408.456 120.734V122.162C408.456 122.295 408.564 122.403 408.697 122.403C408.83 122.403 408.938 122.295 408.938 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_112\">\n<path d=\"M418.293 100.285H365.707V109.528H418.293V100.285Z\" fill=\"white\"/>\n<path d=\"M418.293 100.285H365.707V109.528H418.293V100.285Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_113\">\n<path d=\"M411.283 71.5879H372.525V80.5289H411.283V71.5879Z\" fill=\"white\"/>\n<path d=\"M411.283 71.5879H372.525V80.5289H411.283V71.5879Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_114\">\n<path d=\"M411.283 84.8418H372.525V93.7828H411.283V84.8418Z\" fill=\"white\"/>\n<path d=\"M411.283 84.8418H372.525V93.7828H411.283V84.8418Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_115\">\n<path d=\"M411.283 58.3291H372.525V67.2701H411.283V58.3291Z\" fill=\"white\"/>\n<path d=\"M411.283 58.3291H372.525V67.2701H411.283V58.3291Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_116\">\n<path d=\"M411.283 45.1685H372.525V54.1095H411.283V45.1685Z\" fill=\"white\"/>\n<path d=\"M411.283 45.1685H372.525V54.1095H411.283V45.1685Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_117\">\n<path d=\"M392.327 41.5942H391.668V95.8558H392.327V41.5942Z\" fill=\"white\"/>\n<path d=\"M392.327 41.5942H391.668V95.8558H392.327V41.5942Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Group 39\">\n<g id=\"Vector_118\">\n<path d=\"M324.619 50.7915H323.96V118.642H324.619V50.7915Z\" fill=\"white\"/>\n<path d=\"M324.619 50.7915H323.96V118.642H324.619V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_119\">\n<path d=\"M339.082 50.7915H338.423V118.642H339.082V50.7915Z\" fill=\"white\"/>\n<path d=\"M339.082 50.7915H338.423V118.642H339.082V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_120\">\n<path d=\"M352.276 50.7915H351.618V118.642H352.276V50.7915Z\" fill=\"white\"/>\n<path d=\"M352.276 50.7915H351.618V118.642H352.276V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_121\">\n<path d=\"M432.456 50.7915H431.797V118.642H432.456V50.7915Z\" fill=\"white\"/>\n<path d=\"M432.456 50.7915H431.797V118.642H432.456V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_122\">\n<path d=\"M446.919 50.7915H446.26V118.642H446.919V50.7915Z\" fill=\"white\"/>\n<path d=\"M446.919 50.7915H446.26V118.642H446.919V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_123\">\n<path d=\"M460.114 50.7915H459.455V118.642H460.114V50.7915Z\" fill=\"white\"/>\n<path d=\"M460.114 50.7915H459.455V118.642H460.114V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n</g>\n<g id=\"POLICE\">\n<path d=\"M379.974 104.813H380.382C380.763 104.813 381.048 104.737 381.238 104.586C381.427 104.432 381.522 104.209 381.522 103.918C381.522 103.624 381.442 103.406 381.282 103.266C381.124 103.126 380.877 103.056 380.538 103.056H379.974V104.813ZM382.773 103.873C382.773 104.51 382.576 104.997 382.182 105.335C381.79 105.672 381.231 105.841 380.506 105.841H379.974V107.946H378.734V102.027H380.602C381.311 102.027 381.85 102.182 382.218 102.493C382.588 102.8 382.773 103.261 382.773 103.873Z\" fill=\"white\"/>\n<path d=\"M389.184 104.979C389.184 105.958 388.944 106.711 388.464 107.238C387.984 107.764 387.296 108.027 386.4 108.027C385.505 108.027 384.817 107.764 384.337 107.238C383.857 106.711 383.617 105.956 383.617 104.97C383.617 103.985 383.857 103.234 384.337 102.715C384.82 102.195 385.51 101.934 386.408 101.934C387.307 101.934 387.993 102.196 388.468 102.719C388.945 103.243 389.184 103.996 389.184 104.979ZM384.917 104.979C384.917 105.64 385.041 106.138 385.289 106.472C385.537 106.807 385.907 106.974 386.4 106.974C387.39 106.974 387.884 106.309 387.884 104.979C387.884 103.645 387.392 102.979 386.408 102.979C385.915 102.979 385.543 103.147 385.293 103.485C385.042 103.819 384.917 104.317 384.917 104.979Z\" fill=\"white\"/>\n<path d=\"M390.396 107.946V102.027H391.635V106.91H394.007V107.946H390.396Z\" fill=\"white\"/>\n<path d=\"M395.026 107.946V102.027H396.266V107.946H395.026Z\" fill=\"white\"/>\n<path d=\"M400.221 102.987C399.755 102.987 399.393 103.165 399.137 103.521C398.881 103.875 398.753 104.369 398.753 105.003C398.753 106.323 399.243 106.983 400.221 106.983C400.632 106.983 401.129 106.879 401.713 106.671V107.723C401.233 107.926 400.697 108.027 400.105 108.027C399.255 108.027 398.604 107.767 398.154 107.246C397.703 106.722 397.478 105.972 397.478 104.995C397.478 104.379 397.588 103.841 397.81 103.379C398.031 102.915 398.348 102.56 398.761 102.315C399.177 102.066 399.664 101.942 400.221 101.942C400.789 101.942 401.359 102.081 401.933 102.359L401.533 103.379C401.314 103.274 401.094 103.182 400.873 103.104C400.652 103.026 400.434 102.987 400.221 102.987Z\" fill=\"white\"/>\n<path d=\"M406.328 107.946H402.96V102.027H406.328V103.056H404.2V104.355H406.18V105.383H404.2V106.91H406.328V107.946Z\" fill=\"white\"/>\n</g>\n</g>\n<g id=\"Courts\">\n<g id=\"Building\">\n<g id=\"Rectangle 1\">\n<rect x=\"491.833\" y=\"68.813\" width=\"150\" height=\"56\" fill=\"white\"/>\n<rect x=\"491.833\" y=\"68.813\" width=\"150\" height=\"56\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Rectangle 3\">\n<rect x=\"488.833\" y=\"120.942\" width=\"154.713\" height=\"6.67484\" fill=\"white\"/>\n<rect x=\"488.833\" y=\"120.942\" width=\"154.713\" height=\"6.67484\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 2\">\n<path d=\"M497.297 57.813H636.368L641.833 68.813H491.833L497.297 57.813Z\" fill=\"white\"/>\n<path d=\"M497.297 57.813H636.368L641.833 68.813H491.833L497.297 57.813Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_124\">\n<path d=\"M551.731 70.3457H545.786V70.984C546.059 71.0995 546.254 71.367 546.254 71.6831V71.7317C546.254 72.1512 545.914 72.4916 545.494 72.4916H545.391C545.616 72.5463 545.786 72.747 545.786 72.9901V73.0205C545.786 73.3062 545.555 73.5312 545.275 73.5312H544.862V113.896H545.275C545.561 113.896 545.786 114.127 545.786 114.407V114.437C545.786 114.681 545.616 114.881 545.391 114.936H545.415C545.877 114.936 546.254 115.313 546.254 115.775V118.583H551.269V115.775C551.269 115.313 551.646 114.936 552.108 114.936H552.132C551.908 114.881 551.737 114.681 551.737 114.437V114.407C551.737 114.121 551.968 113.896 552.248 113.896H552.661V73.5372H552.248C551.962 73.5372 551.737 73.3062 551.737 73.0266V72.9962C551.737 72.753 551.908 72.5524 552.132 72.4977H552.029C551.61 72.4977 551.269 72.1573 551.269 71.7378V71.6892C551.269 71.3731 551.464 71.1056 551.737 70.9901V70.3518M569.81 70.3518H563.865V70.9901C564.139 71.1056 564.333 71.3731 564.333 71.6892V71.7378C564.333 72.1573 563.993 72.4977 563.573 72.4977H563.47C563.695 72.5524 563.865 72.753 563.865 72.9962V73.0266C563.865 73.3123 563.634 73.5372 563.354 73.5372H562.941V113.903H563.354C563.64 113.903 563.865 114.134 563.865 114.413V114.444C563.865 114.687 563.695 114.887 563.47 114.942H563.494C563.956 114.942 564.333 115.319 564.333 115.781V118.59H569.348V115.781C569.348 115.319 569.725 114.942 570.187 114.942H570.212C569.987 114.887 569.817 114.687 569.817 114.444V114.413C569.817 114.127 570.048 113.903 570.327 113.903H570.741V73.5372H570.327C570.041 73.5372 569.817 73.3062 569.817 73.0266V72.9962C569.817 72.753 569.987 72.5524 570.212 72.4977H570.108C569.689 72.4977 569.348 72.1573 569.348 71.7378V71.6892C569.348 71.3731 569.543 71.1056 569.817 70.9901V70.3518M587.89 70.3518H581.944V70.9901C582.218 71.1056 582.412 71.3731 582.412 71.6892V71.7378C582.412 72.1573 582.072 72.4977 581.653 72.4977H581.549C581.774 72.5524 581.944 72.753 581.944 72.9962V73.0266C581.944 73.3123 581.713 73.5372 581.434 73.5372H581.02V113.903H581.434C581.719 113.903 581.944 114.134 581.944 114.413V114.444C581.944 114.687 581.774 114.887 581.549 114.942H581.574C582.036 114.942 582.412 115.319 582.412 115.781V118.59H587.428V115.781C587.428 115.319 587.805 114.942 588.267 114.942H588.291C588.066 114.887 587.896 114.687 587.896 114.444V114.413C587.896 114.127 588.127 113.903 588.406 113.903H588.82V73.5372H588.406C588.121 73.5372 587.896 73.3062 587.896 73.0266V72.9962C587.896 72.753 588.066 72.5524 588.291 72.4977H588.188C587.768 72.4977 587.428 72.1573 587.428 71.7378V71.6892C587.428 71.3731 587.622 71.1056 587.896 70.9901V70.3518\" fill=\"white\"/>\n<path d=\"M551.731 70.3457H545.786V70.984C546.059 71.0995 546.254 71.367 546.254 71.6831V71.7317C546.254 72.1512 545.914 72.4916 545.494 72.4916H545.391C545.616 72.5463 545.786 72.747 545.786 72.9901V73.0205C545.786 73.3062 545.555 73.5312 545.275 73.5312H544.862V113.896H545.275C545.561 113.896 545.786 114.127 545.786 114.407V114.437C545.786 114.681 545.616 114.881 545.391 114.936H545.415C545.877 114.936 546.254 115.313 546.254 115.775V118.583H551.269V115.775C551.269 115.313 551.646 114.936 552.108 114.936H552.132C551.908 114.881 551.737 114.681 551.737 114.437V114.407C551.737 114.121 551.968 113.896 552.248 113.896H552.661V73.5372H552.248C551.962 73.5372 551.737 73.3062 551.737 73.0266V72.9962C551.737 72.753 551.908 72.5524 552.132 72.4977H552.029C551.61 72.4977 551.269 72.1573 551.269 71.7378V71.6892C551.269 71.3731 551.464 71.1056 551.737 70.9901V70.3518M569.81 70.3518H563.865V70.9901C564.139 71.1056 564.333 71.3731 564.333 71.6892V71.7378C564.333 72.1573 563.993 72.4977 563.573 72.4977H563.47C563.695 72.5524 563.865 72.753 563.865 72.9962V73.0266C563.865 73.3123 563.634 73.5372 563.354 73.5372H562.941V113.903H563.354C563.64 113.903 563.865 114.134 563.865 114.413V114.444C563.865 114.687 563.695 114.887 563.47 114.942H563.494C563.956 114.942 564.333 115.319 564.333 115.781V118.59H569.348V115.781C569.348 115.319 569.725 114.942 570.187 114.942H570.212C569.987 114.887 569.817 114.687 569.817 114.444V114.413C569.817 114.127 570.048 113.903 570.327 113.903H570.741V73.5372H570.327C570.041 73.5372 569.817 73.3062 569.817 73.0266V72.9962C569.817 72.753 569.987 72.5524 570.212 72.4977H570.108C569.689 72.4977 569.348 72.1573 569.348 71.7378V71.6892C569.348 71.3731 569.543 71.1056 569.817 70.9901V70.3518M587.89 70.3518H581.944V70.9901C582.218 71.1056 582.412 71.3731 582.412 71.6892V71.7378C582.412 72.1573 582.072 72.4977 581.653 72.4977H581.549C581.774 72.5524 581.944 72.753 581.944 72.9962V73.0266C581.944 73.3123 581.713 73.5372 581.434 73.5372H581.02V113.903H581.434C581.719 113.903 581.944 114.134 581.944 114.413V114.444C581.944 114.687 581.774 114.887 581.549 114.942H581.574C582.036 114.942 582.412 115.319 582.412 115.781V118.59H587.428V115.781C587.428 115.319 587.805 114.942 588.267 114.942H588.291C588.066 114.887 587.896 114.687 587.896 114.444V114.413C587.896 114.127 588.127 113.903 588.406 113.903H588.82V73.5372H588.406C588.121 73.5372 587.896 73.3062 587.896 73.0266V72.9962C587.896 72.753 588.066 72.5524 588.291 72.4977H588.188C587.768 72.4977 587.428 72.1573 587.428 71.7378V71.6892C587.428 71.3731 587.622 71.1056 587.896 70.9901V70.3518\" fill=\"#206095\" fill-opacity=\"0.55\"/>\n</g>\n<path id=\"Vector_125\" d=\"M545.78 70.3457H533.658V70.984C533.749 70.9475 533.846 70.9293 533.95 70.9293H545.494C545.597 70.9293 545.695 70.9475 545.786 70.984V70.3457\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_126\" d=\"M599.975 66.3882H566.886H533.658V67.7377H599.975V66.3882Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_127\" d=\"M563.859 70.3457H551.731V70.984C551.822 70.9475 551.92 70.9293 552.023 70.9293H563.567C563.671 70.9293 563.768 70.9475 563.859 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_128\" d=\"M581.932 70.3457H569.804V70.984C569.896 70.9475 569.993 70.9293 570.096 70.9293H581.64C581.744 70.9293 581.841 70.9475 581.932 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_129\" d=\"M600.006 70.3457H587.878V70.984C587.969 70.9475 588.066 70.9293 588.169 70.9293H599.714C599.817 70.9293 599.914 70.9475 600.006 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<g id=\"Vector_130\">\n<path d=\"M599.075 73.5371H588.808V113.902H599.075V73.5371Z\" fill=\"white\"/>\n<path d=\"M599.075 73.5371H588.808V113.902H599.075V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_131\">\n<path d=\"M599.714 70.9292H588.17C588.066 70.9292 587.969 70.9474 587.878 70.9839C587.604 71.0994 587.41 71.3669 587.41 71.683V71.7316C587.41 72.1511 587.75 72.4915 588.17 72.4915H588.273C588.309 72.4855 588.352 72.4794 588.394 72.4794H599.495C599.537 72.4794 599.574 72.4794 599.617 72.4915H599.72C600.139 72.4915 600.48 72.1511 600.48 71.7316V71.683C600.48 71.3669 600.285 71.0994 600.012 70.9839C599.92 70.9474 599.823 70.9292 599.72 70.9292\" fill=\"white\"/>\n<path d=\"M599.714 70.9292H588.17C588.066 70.9292 587.969 70.9474 587.878 70.9839C587.604 71.0994 587.41 71.3669 587.41 71.683V71.7316C587.41 72.1511 587.75 72.4915 588.17 72.4915H588.273C588.309 72.4855 588.352 72.4794 588.394 72.4794H599.495C599.537 72.4794 599.574 72.4794 599.617 72.4915H599.72C600.139 72.4915 600.48 72.1511 600.48 71.7316V71.683C600.48 71.3669 600.285 71.0994 600.012 70.9839C599.92 70.9474 599.823 70.9292 599.72 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_132\">\n<path d=\"M599.489 72.4795H588.388C588.346 72.4795 588.309 72.4795 588.267 72.4917C588.042 72.5464 587.872 72.747 587.872 72.9901V73.0205C587.872 73.3063 588.103 73.5312 588.382 73.5312H599.483C599.768 73.5312 599.993 73.3002 599.993 73.0205V72.9901C599.993 72.747 599.823 72.5464 599.598 72.4917C599.562 72.4856 599.519 72.4795 599.477 72.4795\" fill=\"white\"/>\n<path d=\"M599.489 72.4795H588.388C588.346 72.4795 588.309 72.4795 588.267 72.4917C588.042 72.5464 587.872 72.747 587.872 72.9901V73.0205C587.872 73.3063 588.103 73.5312 588.382 73.5312H599.483C599.768 73.5312 599.993 73.3002 599.993 73.0205V72.9901C599.993 72.747 599.823 72.5464 599.598 72.4917C599.562 72.4856 599.519 72.4795 599.477 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_133\">\n<path d=\"M599.635 114.942H599.61C599.574 114.948 599.531 114.954 599.489 114.954H588.388C588.346 114.954 588.309 114.954 588.267 114.942H588.242C587.78 114.942 587.404 115.319 587.404 115.781V118.589H600.461V115.781C600.461 115.319 600.085 114.942 599.623 114.942\" fill=\"white\"/>\n<path d=\"M599.635 114.942H599.61C599.574 114.948 599.531 114.954 599.489 114.954H588.388C588.346 114.954 588.309 114.954 588.267 114.942H588.242C587.78 114.942 587.404 115.319 587.404 115.781V118.589H600.461V115.781C600.461 115.319 600.085 114.942 599.623 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_134\">\n<path d=\"M599.489 113.902H588.388C588.103 113.902 587.878 114.133 587.878 114.413V114.443C587.878 114.687 588.048 114.887 588.273 114.942C588.309 114.948 588.352 114.954 588.394 114.954H599.495C599.537 114.954 599.574 114.954 599.616 114.942C599.841 114.887 600.012 114.687 600.012 114.443V114.413C600.012 114.127 599.781 113.902 599.501 113.902\" fill=\"white\"/>\n<path d=\"M599.489 113.902H588.388C588.103 113.902 587.878 114.133 587.878 114.413V114.443C587.878 114.687 588.048 114.887 588.273 114.942C588.309 114.948 588.352 114.954 588.394 114.954H599.495C599.537 114.954 599.574 114.954 599.616 114.942C599.841 114.887 600.012 114.687 600.012 114.443V114.413C600.012 114.127 599.781 113.902 599.501 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_135\">\n<path d=\"M544.856 73.5371H534.582V113.902H544.856V73.5371Z\" fill=\"white\"/>\n<path d=\"M544.856 73.5371H534.582V113.902H544.856V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_136\">\n<path d=\"M545.494 70.9292H533.95C533.846 70.9292 533.749 70.9474 533.658 70.9839C533.384 71.0994 533.19 71.3669 533.19 71.683V71.7316C533.19 72.1511 533.53 72.4915 533.95 72.4915H534.053C534.09 72.4855 534.132 72.4794 534.175 72.4794H545.275C545.318 72.4794 545.354 72.4794 545.397 72.4915H545.5C545.92 72.4915 546.26 72.1511 546.26 71.7316V71.683C546.26 71.3669 546.065 71.0994 545.792 70.9839C545.701 70.9474 545.603 70.9292 545.5 70.9292\" fill=\"white\"/>\n<path d=\"M545.494 70.9292H533.95C533.846 70.9292 533.749 70.9474 533.658 70.9839C533.384 71.0994 533.19 71.3669 533.19 71.683V71.7316C533.19 72.1511 533.53 72.4915 533.95 72.4915H534.053C534.09 72.4855 534.132 72.4794 534.175 72.4794H545.275C545.318 72.4794 545.354 72.4794 545.397 72.4915H545.5C545.92 72.4915 546.26 72.1511 546.26 71.7316V71.683C546.26 71.3669 546.065 71.0994 545.792 70.9839C545.701 70.9474 545.603 70.9292 545.5 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_137\">\n<path d=\"M545.269 72.4795H534.169C534.126 72.4795 534.09 72.4795 534.047 72.4917C533.822 72.5464 533.652 72.747 533.652 72.9901V73.0205C533.652 73.3063 533.883 73.5312 534.163 73.5312H545.263C545.549 73.5312 545.774 73.3002 545.774 73.0205V72.9901C545.774 72.747 545.603 72.5464 545.378 72.4917C545.342 72.4856 545.299 72.4795 545.257 72.4795\" fill=\"white\"/>\n<path d=\"M545.269 72.4795H534.169C534.126 72.4795 534.09 72.4795 534.047 72.4917C533.822 72.5464 533.652 72.747 533.652 72.9901V73.0205C533.652 73.3063 533.883 73.5312 534.163 73.5312H545.263C545.549 73.5312 545.774 73.3002 545.774 73.0205V72.9901C545.774 72.747 545.603 72.5464 545.378 72.4917C545.342 72.4856 545.299 72.4795 545.257 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_138\">\n<path d=\"M545.409 114.942H545.385C545.348 114.948 545.306 114.954 545.269 114.954H534.169C534.126 114.954 534.09 114.954 534.053 114.942H534.029C533.567 114.942 533.19 115.319 533.19 115.781V118.589H546.248V115.781C546.248 115.319 545.871 114.942 545.409 114.942Z\" fill=\"white\"/>\n<path d=\"M545.409 114.942H545.385C545.348 114.948 545.306 114.954 545.269 114.954H534.169C534.126 114.954 534.09 114.954 534.053 114.942H534.029C533.567 114.942 533.19 115.319 533.19 115.781V118.589H546.248V115.781C546.248 115.319 545.871 114.942 545.409 114.942Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_139\">\n<path d=\"M545.269 113.902H534.169C533.883 113.902 533.658 114.133 533.658 114.413V114.443C533.658 114.687 533.828 114.887 534.053 114.942C534.09 114.948 534.132 114.954 534.169 114.954H545.269C545.312 114.954 545.348 114.954 545.385 114.942C545.609 114.887 545.78 114.687 545.78 114.443V114.413C545.78 114.127 545.549 113.902 545.269 113.902Z\" fill=\"white\"/>\n<path d=\"M545.269 113.902H534.169C533.883 113.902 533.658 114.133 533.658 114.413V114.443C533.658 114.687 533.828 114.887 534.053 114.942C534.09 114.948 534.132 114.954 534.169 114.954H545.269C545.312 114.954 545.348 114.954 545.385 114.942C545.609 114.887 545.78 114.687 545.78 114.443V114.413C545.78 114.127 545.549 113.902 545.269 113.902Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_140\">\n<path d=\"M562.929 73.5371H552.661V113.902H562.929V73.5371Z\" fill=\"white\"/>\n<path d=\"M562.929 73.5371H552.661V113.902H562.929V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_141\">\n<path d=\"M563.567 70.9292H552.023C551.92 70.9292 551.822 70.9474 551.731 70.9839C551.458 71.0994 551.263 71.3669 551.263 71.683V71.7316C551.263 72.1511 551.604 72.4915 552.023 72.4915H552.126C552.163 72.4855 552.205 72.4794 552.248 72.4794H563.348C563.391 72.4794 563.427 72.4794 563.47 72.4915H563.573C563.993 72.4915 564.333 72.1511 564.333 71.7316V71.683C564.333 71.3669 564.139 71.0994 563.865 70.9839C563.774 70.9474 563.677 70.9292 563.573 70.9292\" fill=\"white\"/>\n<path d=\"M563.567 70.9292H552.023C551.92 70.9292 551.822 70.9474 551.731 70.9839C551.458 71.0994 551.263 71.3669 551.263 71.683V71.7316C551.263 72.1511 551.604 72.4915 552.023 72.4915H552.126C552.163 72.4855 552.205 72.4794 552.248 72.4794H563.348C563.391 72.4794 563.427 72.4794 563.47 72.4915H563.573C563.993 72.4915 564.333 72.1511 564.333 71.7316V71.683C564.333 71.3669 564.139 71.0994 563.865 70.9839C563.774 70.9474 563.677 70.9292 563.573 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_142\">\n<path d=\"M563.342 72.4795H552.242C552.199 72.4795 552.163 72.4795 552.12 72.4917C551.895 72.5464 551.725 72.747 551.725 72.9901V73.0205C551.725 73.3063 551.956 73.5312 552.236 73.5312H563.336C563.622 73.5312 563.847 73.3002 563.847 73.0205V72.9901C563.847 72.747 563.677 72.5464 563.452 72.4917C563.415 72.4856 563.373 72.4795 563.33 72.4795\" fill=\"white\"/>\n<path d=\"M563.342 72.4795H552.242C552.199 72.4795 552.163 72.4795 552.12 72.4917C551.895 72.5464 551.725 72.747 551.725 72.9901V73.0205C551.725 73.3063 551.956 73.5312 552.236 73.5312H563.336C563.622 73.5312 563.847 73.3002 563.847 73.0205V72.9901C563.847 72.747 563.677 72.5464 563.452 72.4917C563.415 72.4856 563.373 72.4795 563.33 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_143\">\n<path d=\"M563.482 114.942H563.458C563.421 114.948 563.379 114.954 563.336 114.954H552.236C552.193 114.954 552.157 114.954 552.12 114.942H552.096C551.634 114.942 551.257 115.319 551.257 115.781V118.589H564.315V115.781C564.315 115.319 563.938 114.942 563.476 114.942\" fill=\"white\"/>\n<path d=\"M563.482 114.942H563.458C563.421 114.948 563.379 114.954 563.336 114.954H552.236C552.193 114.954 552.157 114.954 552.12 114.942H552.096C551.634 114.942 551.257 115.319 551.257 115.781V118.589H564.315V115.781C564.315 115.319 563.938 114.942 563.476 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_144\">\n<path d=\"M563.342 113.902H552.242C551.956 113.902 551.731 114.133 551.731 114.413V114.443C551.731 114.687 551.901 114.887 552.126 114.942C552.163 114.948 552.205 114.954 552.242 114.954H563.342C563.385 114.954 563.421 114.954 563.464 114.942C563.689 114.887 563.859 114.687 563.859 114.443V114.413C563.859 114.127 563.628 113.902 563.348 113.902\" fill=\"white\"/>\n<path d=\"M563.342 113.902H552.242C551.956 113.902 551.731 114.133 551.731 114.413V114.443C551.731 114.687 551.901 114.887 552.126 114.942C552.163 114.948 552.205 114.954 552.242 114.954H563.342C563.385 114.954 563.421 114.954 563.464 114.942C563.689 114.887 563.859 114.687 563.859 114.443V114.413C563.859 114.127 563.628 113.902 563.348 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_145\">\n<path d=\"M581.002 73.5371H570.735V113.902H581.002V73.5371Z\" fill=\"white\"/>\n<path d=\"M581.002 73.5371H570.735V113.902H581.002V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_146\">\n<path d=\"M581.641 70.9292H570.096C569.993 70.9292 569.896 70.9474 569.805 70.9839C569.531 71.0994 569.336 71.3669 569.336 71.683V71.7316C569.336 72.1511 569.677 72.4915 570.096 72.4915H570.2C570.236 72.4855 570.279 72.4794 570.321 72.4794H581.422C581.464 72.4794 581.501 72.4794 581.543 72.4915H581.647C582.066 72.4915 582.407 72.1511 582.407 71.7316V71.683C582.407 71.3669 582.212 71.0994 581.938 70.9839C581.847 70.9474 581.75 70.9292 581.647 70.9292\" fill=\"white\"/>\n<path d=\"M581.641 70.9292H570.096C569.993 70.9292 569.896 70.9474 569.805 70.9839C569.531 71.0994 569.336 71.3669 569.336 71.683V71.7316C569.336 72.1511 569.677 72.4915 570.096 72.4915H570.2C570.236 72.4855 570.279 72.4794 570.321 72.4794H581.422C581.464 72.4794 581.501 72.4794 581.543 72.4915H581.647C582.066 72.4915 582.407 72.1511 582.407 71.7316V71.683C582.407 71.3669 582.212 71.0994 581.938 70.9839C581.847 70.9474 581.75 70.9292 581.647 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_147\">\n<path d=\"M581.416 72.4795H570.315C570.273 72.4795 570.236 72.4795 570.193 72.4917C569.969 72.5464 569.798 72.747 569.798 72.9901V73.0205C569.798 73.3063 570.029 73.5312 570.309 73.5312H581.409C581.695 73.5312 581.92 73.3002 581.92 73.0205V72.9901C581.92 72.747 581.75 72.5464 581.525 72.4917C581.488 72.4856 581.446 72.4795 581.403 72.4795\" fill=\"white\"/>\n<path d=\"M581.416 72.4795H570.315C570.273 72.4795 570.236 72.4795 570.193 72.4917C569.969 72.5464 569.798 72.747 569.798 72.9901V73.0205C569.798 73.3063 570.029 73.5312 570.309 73.5312H581.409C581.695 73.5312 581.92 73.3002 581.92 73.0205V72.9901C581.92 72.747 581.75 72.5464 581.525 72.4917C581.488 72.4856 581.446 72.4795 581.403 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_148\">\n<path d=\"M581.562 114.942H581.537C581.501 114.948 581.458 114.954 581.416 114.954H570.315C570.273 114.954 570.236 114.954 570.2 114.942H570.175C569.713 114.942 569.336 115.319 569.336 115.781V118.589H582.394V115.781C582.394 115.319 582.017 114.942 581.555 114.942\" fill=\"white\"/>\n<path d=\"M581.562 114.942H581.537C581.501 114.948 581.458 114.954 581.416 114.954H570.315C570.273 114.954 570.236 114.954 570.2 114.942H570.175C569.713 114.942 569.336 115.319 569.336 115.781V118.589H582.394V115.781C582.394 115.319 582.017 114.942 581.555 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_149\">\n<path d=\"M581.416 113.902H570.315C570.029 113.902 569.804 114.133 569.804 114.413V114.443C569.804 114.687 569.975 114.887 570.2 114.942C570.236 114.948 570.279 114.954 570.315 114.954H581.416C581.458 114.954 581.495 114.954 581.537 114.942C581.762 114.887 581.932 114.687 581.932 114.443V114.413C581.932 114.127 581.701 113.902 581.422 113.902\" fill=\"white\"/>\n<path d=\"M581.416 113.902H570.315C570.029 113.902 569.804 114.133 569.804 114.413V114.443C569.804 114.687 569.975 114.887 570.2 114.942C570.236 114.948 570.279 114.954 570.315 114.954H581.416C581.458 114.954 581.495 114.954 581.537 114.942C581.762 114.887 581.932 114.687 581.932 114.443V114.413C581.932 114.127 581.701 113.902 581.422 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_150\">\n<path d=\"M600.431 67.7378H533.336C533.038 67.7378 532.801 67.9749 532.801 68.2728V69.8108C532.801 70.1086 533.038 70.3457 533.336 70.3457H600.425C600.723 70.3457 600.96 70.1086 600.96 69.8108V68.2728C600.96 67.9749 600.723 67.7378 600.425 67.7378\" fill=\"white\"/>\n<path d=\"M600.431 67.7378H533.336C533.038 67.7378 532.801 67.9749 532.801 68.2728V69.8108C532.801 70.1086 533.038 70.3457 533.336 70.3457H600.425C600.723 70.3457 600.96 70.1086 600.96 69.8108V68.2728C600.96 67.9749 600.723 67.7378 600.425 67.7378\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_151\">\n<path d=\"M566.899 43.8833L549.026 54.85L534.083 64.0173H599.72L584.777 54.85L566.886 43.9076\" fill=\"white\"/>\n<path d=\"M566.899 43.8833L549.026 54.85L534.083 64.0173H599.72L584.777 54.85L566.886 43.9076\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_152\">\n<path d=\"M534.065 64.0416L549.008 54.8743L566.886 43.9076L584.759 54.8743L599.702 64.0416H534.065ZM566.886 41.4517C566.576 41.4517 566.266 41.5368 565.987 41.707L547.786 52.8743L530.941 63.2088C530.679 63.3668 530.46 63.5979 530.327 63.8593C530.187 64.1207 530.12 64.4003 530.126 64.6678C530.126 65.0994 530.278 65.5067 530.576 65.835C530.728 65.9991 530.916 66.1389 531.135 66.2362C531.354 66.3335 531.597 66.3882 531.84 66.3882H601.926C602.17 66.3882 602.413 66.3395 602.632 66.2362C602.96 66.0903 603.221 65.8471 603.385 65.5675C603.556 65.2939 603.641 64.9839 603.641 64.6617C603.641 64.3942 603.58 64.1146 603.44 63.8532C603.3 63.5918 603.081 63.3608 602.826 63.2027L585.981 52.8682L567.78 41.707C567.507 41.5368 567.197 41.4517 566.886 41.4517Z\" fill=\"white\"/>\n<path d=\"M534.065 64.0416L549.008 54.8743L566.886 43.9076L584.759 54.8743L599.702 64.0416H534.065ZM566.886 41.4517C566.576 41.4517 566.266 41.5368 565.987 41.707L547.786 52.8743L530.941 63.2088C530.679 63.3668 530.46 63.5979 530.327 63.8593C530.187 64.1207 530.12 64.4003 530.126 64.6678C530.126 65.0994 530.278 65.5067 530.576 65.835C530.728 65.9991 530.916 66.1389 531.135 66.2362C531.354 66.3335 531.597 66.3882 531.84 66.3882H601.926C602.17 66.3882 602.413 66.3395 602.632 66.2362C602.96 66.0903 603.221 65.8471 603.385 65.5675C603.556 65.2939 603.641 64.9839 603.641 64.6617C603.641 64.3942 603.58 64.1146 603.44 63.8532C603.3 63.5918 603.081 63.3608 602.826 63.2027L585.981 52.8682L567.78 41.707C567.507 41.5368 567.197 41.4517 566.886 41.4517Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<path id=\"Vector_153\" d=\"M603.241 118.589H601.071H588.007H582.997H569.933H564.918H551.86H546.845H533.787H530.833V121.617H603.241V118.589Z\" fill=\"#A6BFD5\"/>\n<g id=\"Vector_154\">\n<path d=\"M605.144 121.617H603.095H530.687H528.833V125.75H605.144V121.617Z\" fill=\"white\"/>\n<path d=\"M605.144 121.617H603.095H530.687H528.833V125.75H605.144V121.617Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 6\">\n<rect x=\"496.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"496.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 7\">\n<rect x=\"513.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"513.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 8\">\n<rect x=\"496.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"496.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 9\">\n<rect x=\"513.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"513.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 10\">\n<rect x=\"604.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"604.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 11\">\n<rect x=\"621.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"621.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 12\">\n<rect x=\"604.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"604.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 13\">\n<rect x=\"621.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"621.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 8_2\">\n<rect x=\"495.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"495.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 9_2\">\n<rect x=\"512.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"512.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 10_2\">\n<rect x=\"495.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"495.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 11_2\">\n<rect x=\"512.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"512.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 12_2\">\n<rect x=\"603.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"603.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 13_2\">\n<rect x=\"620.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"620.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 14\">\n<rect x=\"603.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"603.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 15\">\n<rect x=\"620.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"620.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Icon\">\n<g id=\"Circle\">\n<path id=\"Vector_155\" d=\"M566.833 61.4873C570.146 61.4873 572.833 58.801 572.833 55.4873C572.833 52.1736 570.146 49.4873 566.833 49.4873C563.519 49.4873 560.833 52.1736 560.833 55.4873C560.833 58.801 563.519 61.4873 566.833 61.4873Z\" fill=\"white\"/>\n</g>\n<g id=\"Artwork 64x64\">\n<path id=\"Vector_156\" d=\"M570.64 56.1689L569.687 53.4416C569.681 53.42 569.67 53.3997 569.657 53.3816C569.646 53.3692 569.634 53.3578 569.621 53.3475H569.613C569.6 53.338 569.585 53.3302 569.57 53.3244H569.549C569.536 53.316 569.521 53.3096 569.506 53.3053H567.242V52.6234C567.242 52.5149 567.199 52.4109 567.122 52.3342C567.045 52.2575 566.941 52.2144 566.833 52.2144C566.724 52.2144 566.62 52.2575 566.544 52.3342C566.467 52.4109 566.424 52.5149 566.424 52.6234V53.3053H564.16C564.147 53.3061 564.134 53.3084 564.122 53.3121H564.101C564.086 53.3179 564.071 53.3257 564.058 53.3353H564.05C564.037 53.3455 564.025 53.3569 564.014 53.3694C564.001 53.3874 563.991 53.4077 563.984 53.4294L563.03 56.1566C563.019 56.1875 563.017 56.2204 563.021 56.2527C563.026 56.2849 563.038 56.3155 563.057 56.3421C563.076 56.3687 563.101 56.3904 563.13 56.4056C563.159 56.4207 563.191 56.4289 563.223 56.4294H565.132C565.165 56.4289 565.197 56.4207 565.226 56.4056C565.255 56.3904 565.28 56.3687 565.298 56.3421C565.317 56.3155 565.33 56.2849 565.334 56.2527C565.339 56.2204 565.336 56.1875 565.326 56.1566L564.464 53.7144H566.424V57.0444L565.319 58.3057C565.284 58.3451 565.261 58.3939 565.253 58.4461C565.245 58.4983 565.253 58.5516 565.274 58.5997C565.296 58.6478 565.332 58.6885 565.376 58.7169C565.421 58.7453 565.472 58.7602 565.525 58.7598H568.141C568.193 58.76 568.245 58.745 568.289 58.7167C568.333 58.6883 568.368 58.6478 568.39 58.6C568.412 58.5522 568.419 58.4991 568.411 58.4471C568.404 58.3952 568.381 58.3465 568.346 58.3071L567.242 57.0444V53.7144H569.201L568.344 56.1689C568.333 56.1998 568.331 56.2327 568.335 56.2649C568.34 56.2972 568.353 56.3278 568.371 56.3544C568.39 56.3809 568.415 56.4027 568.444 56.4178C568.473 56.433 568.505 56.4412 568.537 56.4416H570.446C570.479 56.4412 570.511 56.433 570.54 56.4178C570.569 56.4027 570.594 56.3809 570.612 56.3544C570.631 56.3278 570.644 56.2972 570.648 56.2649C570.653 56.2327 570.65 56.1998 570.64 56.1689ZM563.507 56.0325L564.174 54.1234L564.841 56.0325H563.507ZM568.825 56.0325L569.492 54.1234L570.159 56.0325H568.825Z\" fill=\"#206095\"/>\n<g id=\"Vector_157\">\n<path d=\"M566.833 54.1903C567.209 54.1903 567.515 53.885 567.515 53.5085C567.515 53.1319 567.209 52.8267 566.833 52.8267C566.456 52.8267 566.151 53.1319 566.151 53.5085C566.151 53.885 566.456 54.1903 566.833 54.1903Z\" fill=\"white\"/>\n<path d=\"M566.833 54.1903C567.209 54.1903 567.515 53.885 567.515 53.5085C567.515 53.1319 567.209 52.8267 566.833 52.8267C566.456 52.8267 566.151 53.1319 566.151 53.5085C566.151 53.885 566.456 54.1903 566.833 54.1903Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_158\">\n<path d=\"M565.022 55.9483C565.07 55.9478 565.119 55.9589 565.162 55.9808C565.206 56.0026 565.243 56.0345 565.272 56.0738C565.301 56.1131 565.32 56.1587 565.328 56.2068C565.335 56.255 565.331 56.3042 565.316 56.3505C565.233 56.5867 565.078 56.7912 564.873 56.9358C564.669 57.0805 564.424 57.1581 564.174 57.1581C563.923 57.1581 563.679 57.0805 563.474 56.9358C563.269 56.7912 563.115 56.5867 563.031 56.3505C563.016 56.3042 563.012 56.255 563.019 56.2068C563.027 56.1587 563.046 56.1131 563.075 56.0738C563.104 56.0345 563.141 56.0026 563.185 55.9808C563.229 55.9589 563.277 55.9478 563.325 55.9483H565.022Z\" fill=\"white\"/>\n<path d=\"M565.022 55.9483C565.07 55.9478 565.119 55.9589 565.162 55.9808C565.206 56.0026 565.243 56.0345 565.272 56.0738C565.301 56.1131 565.32 56.1587 565.328 56.2068C565.335 56.255 565.331 56.3042 565.316 56.3505C565.233 56.5867 565.078 56.7912 564.873 56.9358C564.669 57.0805 564.424 57.1581 564.174 57.1581C563.923 57.1581 563.679 57.0805 563.474 56.9358C563.269 56.7912 563.115 56.5867 563.031 56.3505C563.016 56.3042 563.012 56.255 563.019 56.2068C563.027 56.1587 563.046 56.1131 563.075 56.0738C563.104 56.0345 563.141 56.0026 563.185 55.9808C563.229 55.9589 563.277 55.9478 563.325 55.9483H565.022Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_159\">\n<path d=\"M570.34 55.9483C570.389 55.9478 570.437 55.9589 570.48 55.9808C570.524 56.0026 570.562 56.0345 570.59 56.0738C570.619 56.1131 570.638 56.1587 570.646 56.2068C570.654 56.255 570.65 56.3042 570.634 56.3505C570.551 56.5867 570.396 56.7912 570.191 56.9358C569.987 57.0805 569.742 57.1581 569.492 57.1581C569.241 57.1581 568.997 57.0805 568.792 56.9358C568.587 56.7912 568.433 56.5867 568.349 56.3505C568.334 56.3042 568.33 56.255 568.338 56.2068C568.345 56.1587 568.364 56.1131 568.393 56.0738C568.422 56.0345 568.46 56.0026 568.503 55.9808C568.547 55.9589 568.595 55.9478 568.644 55.9483H570.34Z\" fill=\"white\"/>\n<path d=\"M570.34 55.9483C570.389 55.9478 570.437 55.9589 570.48 55.9808C570.524 56.0026 570.562 56.0345 570.59 56.0738C570.619 56.1131 570.638 56.1587 570.646 56.2068C570.654 56.255 570.65 56.3042 570.634 56.3505C570.551 56.5867 570.396 56.7912 570.191 56.9358C569.987 57.0805 569.742 57.1581 569.492 57.1581C569.241 57.1581 568.997 57.0805 568.792 56.9358C568.587 56.7912 568.433 56.5867 568.349 56.3505C568.334 56.3042 568.33 56.255 568.338 56.2068C568.345 56.1587 568.364 56.1131 568.393 56.0738C568.422 56.0345 568.46 56.0026 568.503 55.9808C568.547 55.9589 568.595 55.9478 568.644 55.9483H570.34Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n</g>\n</g>\n<g id=\"Bush_2\">\n<g id=\"Vector_160\">\n<path d=\"M681.329 111.962C685.678 114.179 688.387 115.261 689.527 116.397C690.671 117.533 693.372 120.844 691.827 123.23C690.278 125.617 689.767 127.484 685.415 127.288C681.062 127.091 679.297 126.474 675.774 126.796C672.251 127.119 669.137 125.538 668.41 124.779C667.682 124.021 665.496 120.502 668.39 117.388C671.284 114.27 677.488 110.004 681.329 111.962Z\" fill=\"white\"/>\n<path d=\"M681.329 111.962C685.678 114.179 688.387 115.261 689.527 116.397C690.671 117.533 693.372 120.844 691.827 123.23C690.278 125.617 689.767 127.484 685.415 127.288C681.062 127.091 679.297 126.474 675.774 126.796C672.251 127.119 669.137 125.538 668.41 124.779C667.682 124.021 665.496 120.502 668.39 117.388C671.284 114.27 677.488 110.004 681.329 111.962Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_161\">\n<path d=\"M669.782 109.772C666.782 108.101 663.487 108.014 659.205 110.688C654.924 113.365 654.019 115.142 653.76 116.326C653.504 117.509 651.554 118.256 652.081 120.623C652.608 122.99 657.648 125.491 660.916 125.778C664.183 126.065 664.867 125.766 668.748 125.164C672.628 124.563 675.746 123.666 677.166 120.702C678.589 117.737 672.955 111.537 669.778 109.772H669.782Z\" fill=\"white\"/>\n<path d=\"M669.782 109.772C666.782 108.101 663.487 108.014 659.205 110.688C654.924 113.365 654.019 115.142 653.76 116.326C653.504 117.509 651.554 118.256 652.081 120.623C652.608 122.99 657.648 125.491 660.916 125.778C664.183 126.065 664.867 125.766 668.748 125.164C672.628 124.563 675.746 123.666 677.166 120.702C678.589 117.737 672.955 111.537 669.778 109.772H669.782Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_162\">\n<path d=\"M658.136 113.625C664.887 115.835 669.094 116.912 670.871 118.048C672.644 119.185 676.839 122.487 674.433 124.878C672.023 127.268 671.225 129.136 664.462 128.947C657.699 128.758 654.959 128.145 649.486 128.471C644.013 128.798 639.177 127.225 638.049 126.466C636.92 125.707 633.527 122.192 638.029 119.074C642.531 115.953 652.179 111.679 658.144 113.633L658.136 113.625Z\" fill=\"white\"/>\n<path d=\"M658.136 113.625C664.887 115.835 669.094 116.912 670.871 118.048C672.644 119.185 676.839 122.487 674.433 124.878C672.023 127.268 671.225 129.136 664.462 128.947C657.699 128.758 654.959 128.145 649.486 128.471C644.013 128.798 639.177 127.225 638.049 126.466C636.92 125.707 633.527 122.192 638.029 119.074C642.531 115.953 652.179 111.679 658.144 113.633L658.136 113.625Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_163\">\n<path d=\"M678.676 123.191C676.949 122.342 675.054 122.291 672.585 123.64C670.116 124.988 669.593 125.889 669.444 126.486C669.294 127.084 668.17 127.461 668.473 128.656C668.771 129.856 671.669 131.13 673.552 131.279C675.436 131.428 675.829 131.279 678.062 130.98C680.295 130.681 682.092 130.229 682.918 128.731C683.744 127.233 680.508 124.088 678.683 123.187L678.676 123.191Z\" fill=\"white\"/>\n<path d=\"M678.676 123.191C676.949 122.342 675.054 122.291 672.585 123.64C670.116 124.988 669.593 125.889 669.444 126.486C669.294 127.084 668.17 127.461 668.473 128.656C668.771 129.856 671.669 131.13 673.552 131.279C675.436 131.428 675.829 131.279 678.062 130.98C680.295 130.681 682.092 130.229 682.918 128.731C683.744 127.233 680.508 124.088 678.683 123.187L678.676 123.191Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_164\">\n<path d=\"M671.701 124.685C670.332 124.013 668.83 123.973 666.872 125.043C664.914 126.112 664.501 126.824 664.38 127.299C664.262 127.775 663.373 128.07 663.609 129.022C663.845 129.973 666.145 130.98 667.635 131.101C669.125 131.219 669.44 131.101 671.209 130.866C672.982 130.63 674.406 130.272 675.058 129.084C675.711 127.897 673.147 125.404 671.701 124.693V124.685Z\" fill=\"white\"/>\n<path d=\"M671.701 124.685C670.332 124.013 668.83 123.973 666.872 125.043C664.914 126.112 664.501 126.824 664.38 127.299C664.262 127.775 663.373 128.07 663.609 129.022C663.845 129.973 666.145 130.98 667.635 131.101C669.125 131.219 669.44 131.101 671.209 130.866C672.982 130.63 674.406 130.272 675.058 129.084C675.711 127.897 673.147 125.404 671.701 124.693V124.685Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_165\">\n<path d=\"M676.199 120.219C674.472 119.369 672.577 119.318 670.108 120.667C667.639 122.015 667.116 122.916 666.967 123.513C666.817 124.111 665.693 124.489 665.996 125.684C666.294 126.883 666.515 128.668 668.398 128.817C670.281 128.967 673.352 128.306 675.585 128.007C677.818 127.709 679.615 127.257 680.441 125.759C681.263 124.261 678.031 121.115 676.206 120.215L676.199 120.219Z\" fill=\"white\"/>\n<path d=\"M676.199 120.219C674.472 119.369 672.577 119.318 670.108 120.667C667.639 122.015 667.116 122.916 666.967 123.513C666.817 124.111 665.693 124.489 665.996 125.684C666.294 126.883 666.515 128.668 668.398 128.817C670.281 128.967 673.352 128.306 675.585 128.007C677.818 127.709 679.615 127.257 680.441 125.759C681.263 124.261 678.031 121.115 676.206 120.215L676.199 120.219Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Flats\" clip-path=\"url(#clip1_1849_10237)\">\n<path id=\"Vector_166\" d=\"M198.616 21.1265H200.068V23.6337H198.616V21.1265Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_167\" d=\"M196.045 21.1265H197.497V23.6337H196.045V21.1265Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_168\" d=\"M207.06 23.2844C206.438 23.2844 205.935 22.7739 205.935 22.1441C205.935 21.5144 206.438 21.0039 207.06 21.0039C207.681 21.0039 208.185 21.5144 208.185 22.1441C208.185 22.7739 207.681 23.2844 207.06 23.2844Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_169\" d=\"M205.929 22.1196H208.185V24.4062H205.929V22.1196Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_170\" d=\"M207.06 21.3349C206.879 21.3349 206.733 21.1867 206.733 21.0039C206.733 20.8211 206.879 20.6729 207.06 20.6729C207.24 20.6729 207.386 20.8211 207.386 21.0039C207.386 21.1867 207.24 21.3349 207.06 21.3349Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_171\" d=\"M204.483 23.2844C203.862 23.2844 203.358 22.7739 203.358 22.1441C203.358 21.5144 203.862 21.0039 204.483 21.0039C205.104 21.0039 205.608 21.5144 205.608 22.1441C205.608 22.7739 205.104 23.2844 204.483 23.2844Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_172\" d=\"M203.358 22.1196H205.614V24.4062H203.358V22.1196Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_173\" d=\"M204.483 21.3349C204.303 21.3349 204.156 21.1867 204.156 21.0039C204.156 20.8211 204.303 20.6729 204.483 20.6729C204.663 20.6729 204.81 20.8211 204.81 21.0039C204.81 21.1867 204.663 21.3349 204.483 21.3349Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_174\" d=\"M266.347 14.1255H289.107V15.1676H266.347V14.1255Z\" fill=\"#003C57\"/>\n<g id=\"Vector_175\">\n<path d=\"M266.353 15.186H289.107V28.5623H266.353V15.186Z\" fill=\"white\"/>\n<path d=\"M266.353 15.186H289.107V28.5623H266.353V15.186Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_176\" d=\"M268.766 17.1787H276.133V31.1741H268.766V17.1787Z\" fill=\"#003C57\"/>\n<path id=\"Vector_177\" d=\"M269.692 18.1104H275.214V31.174H269.692V18.1104Z\" fill=\"#EBEBF4\"/>\n<g id=\"Vector_178\">\n<path d=\"M172.444 29.5186H295.67V125.212H172.444V29.5186Z\" fill=\"white\"/>\n<path d=\"M172.444 29.5186H295.67V125.212H172.444V29.5186Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_179\" opacity=\"0.4\" d=\"M231.792 29.4268H234.713V125.819H231.792V29.4268Z\" fill=\"#EBEBF4\"/>\n<path id=\"Vector_180\" d=\"M172.462 28.3354H295.646V29.5186H172.462V28.3354Z\" fill=\"#003C57\"/>\n<g id=\"Vector_181\">\n<path d=\"M193.215 23.1553H210.955V28.3047H193.215V23.1553Z\" fill=\"white\"/>\n<path d=\"M193.215 23.1553H210.955V28.3047H193.215V23.1553Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_182\" d=\"M266.728 35.6611V50.8213H266.335H243.52H243.145V35.6611H266.728Z\" fill=\"white\"/>\n<g id=\"Vector_183\">\n<path d=\"M290.063 35.6611V118.622H289.906H280.621H280.47V35.6611H290.063Z\" fill=\"white\"/>\n<path d=\"M290.063 35.6611V118.622H289.906H280.621H280.47V35.6611H290.063Z\" fill=\"#6390B5\"/>\n</g>\n<path id=\"Vector_184\" d=\"M244.125 36.8442H265.657V49.4665H244.125V36.8442Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_185\" d=\"M266.571 59.5205V74.6807H266.171H243.363H242.981V59.5205H266.571Z\" fill=\"white\"/>\n<path id=\"Vector_186\" d=\"M243.967 60.6973H265.5V73.1478H243.967V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_187\" d=\"M266.571 83.3179V98.4842H266.171H243.363H242.981V83.3179H266.571Z\" fill=\"white\"/>\n<path id=\"Vector_188\" d=\"M243.967 84.501H265.5V97.1477H243.967V84.501Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_189\" d=\"M241.875 98.2021H275.625V99.0849H241.875V98.2021Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_190\" opacity=\"0.5\" d=\"M241.905 93.4453H275.643V98.2024H241.905V93.4453Z\" fill=\"white\"/>\n<path id=\"Vector_191\" d=\"M266.571 108.195V123.355H266.171H243.363H242.981V108.195H266.571Z\" fill=\"white\"/>\n<path id=\"Vector_192\" d=\"M243.967 109.372H265.5V121.932H243.967V109.372Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_193\" d=\"M241.875 123.073H275.625V123.956H241.875V123.073Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_194\" opacity=\"0.5\" d=\"M241.905 118.315H275.643V123.073H241.905V118.315Z\" fill=\"white\"/>\n<path id=\"Vector_195\" d=\"M241.875 74.3496H275.625V75.2324H241.875V74.3496Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_196\" d=\"M295.646 73.3687H302.045V74.2514H295.646V73.3687Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_197\" opacity=\"0.7\" d=\"M295.664 68.6113H302.027V73.3684H295.664V68.6113Z\" fill=\"white\"/>\n<path id=\"Vector_198\" d=\"M295.646 50.0488H302.045V50.9316H295.646V50.0488Z\" fill=\"#003C57\"/>\n<path id=\"Vector_199\" opacity=\"0.7\" d=\"M295.664 45.292H302.027V50.0491H295.664V45.292Z\" fill=\"white\"/>\n<path id=\"Vector_200\" d=\"M295.646 97.7607H302.045V98.6435H295.646V97.7607Z\" fill=\"#003C57\"/>\n<path id=\"Vector_201\" opacity=\"0.7\" d=\"M295.664 93.0039H302.027V97.761H295.664V93.0039Z\" fill=\"white\"/>\n<path id=\"Vector_202\" d=\"M166.045 73.3687H172.444V74.2514H166.045V73.3687Z\" fill=\"#003C57\"/>\n<path id=\"Vector_203\" opacity=\"0.7\" d=\"M166.063 68.6113H172.426V73.3684H166.063V68.6113Z\" fill=\"white\"/>\n<path id=\"Vector_204\" d=\"M166.045 50.0488H172.444V50.9316H166.045V50.0488Z\" fill=\"#003C57\"/>\n<path id=\"Vector_205\" opacity=\"0.7\" d=\"M166.063 45.292H172.426V50.0491H166.063V45.292Z\" fill=\"white\"/>\n<path id=\"Vector_206\" d=\"M166.045 97.7607H172.444V98.6435H166.045V97.7607Z\" fill=\"#003C57\"/>\n<path id=\"Vector_207\" opacity=\"0.7\" d=\"M166.063 93.0039H172.426V97.761H166.063V93.0039Z\" fill=\"white\"/>\n<path id=\"Vector_208\" d=\"M241.875 50.4902H275.625V51.373H241.875V50.4902Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_209\" opacity=\"0.5\" d=\"M241.947 45.7334H275.655V50.4905H241.947V45.7334Z\" fill=\"white\"/>\n<path id=\"Vector_210\" d=\"M281.649 37.1753H288.883V46.5607H281.649V37.1753Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_211\" d=\"M281.649 60.6973H288.883V70.0827H281.649V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_212\" d=\"M281.649 84.2192H288.883V93.6047H281.649V84.2192Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_213\" d=\"M281.649 107.741H288.883V117.127H281.649V107.741Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_214\" d=\"M204.066 35.6611V50.8213H203.673H180.864H180.483V35.6611H204.066Z\" fill=\"white\"/>\n<g id=\"Vector_215\">\n<path d=\"M227.401 35.6611V118.622H227.243H217.959H217.808V35.6611H227.401Z\" fill=\"white\"/>\n<path d=\"M227.401 35.6611V118.622H227.243H217.959H217.808V35.6611H227.401Z\" fill=\"#6390B5\"/>\n</g>\n<path id=\"Vector_216\" d=\"M181.469 36.8442H203.001V49.4235H181.469V36.8442Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_217\" d=\"M203.908 59.5205V74.6807H203.515H180.7H180.325V59.5205H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_218\" d=\"M181.305 60.6973H202.838V73.1724H181.305V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_219\" d=\"M203.908 83.3179V98.4842H203.515H180.7H180.325V83.3179H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_220\" d=\"M181.305 84.501H202.838V97.0067H181.305V84.501Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_221\" d=\"M179.218 98.2021H212.969V99.0849H179.218V98.2021Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_222\" opacity=\"0.5\" d=\"M179.243 93.4453H212.981V98.2024H179.243V93.4453Z\" fill=\"white\"/>\n<path id=\"Vector_223\" d=\"M203.908 108.195V123.355H203.515H180.7H180.325V108.195H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_224\" d=\"M181.305 109.372H202.838V121.902H181.305V109.372Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_225\" d=\"M179.218 123.073H212.969V123.956H179.218V123.073Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_226\" opacity=\"0.5\" d=\"M179.243 118.315H212.981V123.073H179.243V118.315Z\" fill=\"white\"/>\n<path id=\"Vector_227\" d=\"M179.218 74.3496H212.969V75.2324H179.218V74.3496Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_228\" opacity=\"0.5\" d=\"M179.231 69.5923H212.969V74.3494H179.231V69.5923Z\" fill=\"white\"/>\n<path id=\"Vector_229\" d=\"M179.218 50.4902H212.969V51.373H179.218V50.4902Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_230\" d=\"M218.987 37.1753H226.221V46.5607H218.987V37.1753Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_231\" d=\"M218.987 60.6973H226.221V70.0827H218.987V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_232\" d=\"M218.987 84.2192H226.221V93.6047H218.987V84.2192Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_233\" d=\"M218.987 107.741H226.221V117.127H218.987V107.741Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_234\" opacity=\"0.5\" d=\"M241.893 69.5923H275.631V74.3494H241.893V69.5923Z\" fill=\"white\"/>\n<path id=\"Vector_235\" opacity=\"0.5\" d=\"M179.285 45.7334H212.993V50.4905H179.285V45.7334Z\" fill=\"white\"/>\n</g>\n<g id=\"House\" clip-path=\"url(#clip2_1849_10237)\">\n<path id=\"Vector_236\" d=\"M180.966 101.642L177.736 104.85L178.049 105.161L181.279 101.952L180.966 101.642Z\" fill=\"#003C57\"/>\n<path id=\"Vector_237\" d=\"M114.431 95.9507H101.17V104.616H114.431V95.9507Z\" fill=\"#206095\"/>\n<g id=\"Vector_238\">\n<path d=\"M184 102.09H177.769V95.9468V95.951L184 102.09Z\" fill=\"white\"/>\n<path d=\"M184 102.09H177.769V95.9468V95.951L184 102.09Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_239\" d=\"M101.17 95.9507H100V104.616H101.17V95.9507Z\" fill=\"#003C57\"/>\n<path id=\"Vector_240\" d=\"M178.126 102.085H177.773V106.036H178.126V102.085Z\" fill=\"#003C57\"/>\n<path id=\"Vector_241\" d=\"M177.773 74.5513H114.431V86.8248H177.773V74.5513Z\" fill=\"#206095\"/>\n<g id=\"Vector_242\">\n<path d=\"M161.935 69.1309H130.266V86.8504H161.935V69.1309Z\" fill=\"white\"/>\n<path d=\"M161.935 69.1309H130.266V86.8504H161.935V69.1309Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_243\" d=\"M146.172 69.1309H146.032V84.8858H146.172V69.1309Z\" fill=\"#003C57\"/>\n<g id=\"Vector_244\">\n<path d=\"M146.1 86.8248L161.935 71.0952L177.769 86.8248V125.804H146.1V86.8248Z\" fill=\"white\"/>\n<path d=\"M146.1 86.8248L161.935 71.0952L177.769 86.8248V125.804H146.1V86.8248Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_245\" d=\"M161.935 71.0955L177.769 86.8251V84.8605L161.935 69.1309L146.1 84.8605V86.8251L161.935 71.0955Z\" fill=\"#003C57\"/>\n<g id=\"Vector_246\">\n<path d=\"M114.431 86.8248L130.266 71.0952L146.1 86.8248V125.804H114.431V86.8248Z\" fill=\"white\"/>\n<path d=\"M114.431 86.8248L130.266 71.0952L146.1 86.8248V125.804H114.431V86.8248Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_247\" d=\"M130.266 71.0955L146.1 86.8251V84.8605L130.266 69.1309L114.431 84.8605V86.8251L130.266 71.0955Z\" fill=\"#003C57\"/>\n<path id=\"Vector_248\" d=\"M167.038 84.7041H162.215V92.026H167.038V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_249\" d=\"M161.73 84.7041H156.831V92.026H161.73V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_250\" d=\"M155.551 92.0218V92.7612H168.327V92.0218H167.532V84.2183H156.35V92.0218H155.555H155.551ZM156.831 84.6999H161.73V92.0218H156.831V84.6999ZM167.043 92.0218H162.219V84.6999H167.043V92.0218Z\" fill=\"#003C57\"/>\n<path id=\"Vector_251\" d=\"M135.369 84.7041H130.546V92.026H135.369V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_252\" d=\"M130.061 84.7041H125.162V92.026H130.061V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_253\" d=\"M123.877 92.0218V92.7612H136.654V92.0218H135.858V84.2183H124.677V92.0218H123.882H123.877ZM125.158 84.6999H130.057V92.0218H125.158V84.6999ZM135.369 92.0218H130.546V84.6999H135.369V92.0218Z\" fill=\"#003C57\"/>\n<g id=\"Vector_254\">\n<path d=\"M114.431 104.583H100.464V124.541H114.431V104.583Z\" fill=\"white\"/>\n<path d=\"M114.431 104.583H100.464V124.541H114.431V104.583Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_255\" d=\"M111.607 109.09H103.288V124.583H111.607V109.09Z\" fill=\"#003C57\"/>\n<g id=\"Vector_256\">\n<path d=\"M110.569 110.122H104.33V124.579H110.569V110.122Z\" fill=\"white\"/>\n<path d=\"M110.569 110.122H104.33V124.579H110.569V110.122Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_257\" d=\"M107.447 115.2C108.554 115.2 109.451 114.309 109.451 113.21C109.451 112.111 108.554 111.22 107.447 111.22C106.341 111.22 105.444 112.111 105.444 113.21C105.444 114.309 106.341 115.2 107.447 115.2Z\" fill=\"white\"/>\n<path id=\"Vector_258\" d=\"M178.479 74.5513H177.773V86.8248H178.479V74.5513Z\" fill=\"#003C57\"/>\n<path id=\"Vector_259\" d=\"M114.431 74.5513H113.725V86.8248H114.431V74.5513Z\" fill=\"#003C57\"/>\n<path id=\"Vector_260\" d=\"M149.817 62.751H146.228V67.3942H149.817V62.751Z\" fill=\"#003C57\"/>\n<path id=\"Vector_261\" d=\"M145.977 62.751H142.387V67.3942H145.977V62.751Z\" fill=\"#003C57\"/>\n<g id=\"Group\" opacity=\"0.75\">\n<g id=\"Vector_262\">\n<path d=\"M142.472 61.813H149.728C149.987 61.813 150.2 62.0242 150.2 62.282C150.2 62.5397 149.987 62.7509 149.728 62.7509H142.472C142.213 62.7509 142 62.5397 142 62.282C142 62.0242 142.213 61.813 142.472 61.813Z\" fill=\"white\"/>\n<path d=\"M142.472 61.813H149.728C149.987 61.813 150.2 62.0242 150.2 62.282C150.2 62.5397 149.987 62.7509 149.728 62.7509H142.472C142.213 62.7509 142 62.5397 142 62.282C142 62.0242 142.213 61.813 142.472 61.813Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n<path id=\"Vector_263\" d=\"M150.915 69.1263H141.29C141.29 68.1672 142.072 67.394 143.033 67.394H149.167C150.132 67.394 150.91 68.1714 150.91 69.1263H150.915Z\" fill=\"#003C57\"/>\n<g id=\"Vector_264\">\n<path d=\"M139.848 109.112H120.683L124.605 102.947H135.926L139.848 109.112Z\" fill=\"white\"/>\n<path d=\"M139.848 109.112H120.683L124.605 102.947H135.926L139.848 109.112Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<g id=\"Vector_265\">\n<path d=\"M171.521 109.112H152.352L156.274 102.947H167.6L171.521 109.112Z\" fill=\"white\"/>\n<path d=\"M171.521 109.112H152.352L156.274 102.947H167.6L171.521 109.112Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_266\" d=\"M158.264 109.297H154.024V117.625H158.264V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_267\" d=\"M153.262 117.313V117.938H161.905V117.313H161.335V109.112H153.837V117.313H153.262ZM160.952 117.313H154.211V109.488H160.952V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_268\" d=\"M169.816 109.297H165.418V117.625H169.816V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_269\" d=\"M161.935 117.313V117.938H170.577V117.313H170.007V109.112H162.509V117.313H161.935ZM169.624 117.313H162.883V109.488H169.624V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_270\" d=\"M165.418 109.297H158.298V117.625H165.418V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_271\" d=\"M157.541 117.313V117.938H166.183V117.313H165.614V109.112H158.115V117.313H157.541ZM165.231 117.313H158.489V109.488H165.231V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_272\" d=\"M126.629 109.297H122.389V117.625H126.629V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_273\" d=\"M121.627 117.313V117.938H130.27V117.313H129.7V109.112H122.201V117.313H121.627ZM129.317 117.313H122.576V109.488H129.317V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_274\" d=\"M138.147 109.297H133.749V117.625H138.147V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_275\" d=\"M130.266 117.313V117.938H138.908V117.313H138.338V109.112H130.84V117.313H130.266ZM137.955 117.313H131.214V109.488H137.955V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_276\" d=\"M133.749 109.297H126.629V117.625H133.749V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_277\" d=\"M125.868 117.313V117.938H134.51V117.313H133.94V109.112H126.442V117.313H125.868ZM133.558 117.313H126.816V109.488H133.558V117.313Z\" fill=\"#003C57\"/>\n<g id=\"Vector_278\">\n<path d=\"M170.577 117.938H165.418V125.8H170.577V117.938Z\" fill=\"white\"/>\n<path d=\"M170.577 117.938H165.418V125.8H170.577V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_279\">\n<path d=\"M138.904 117.938H133.745V125.8H138.904V117.938Z\" fill=\"white\"/>\n<path d=\"M138.904 117.938H133.745V125.8H138.904V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_280\">\n<path d=\"M126.786 117.938H121.627V125.8H126.786V117.938Z\" fill=\"white\"/>\n<path d=\"M126.786 117.938H121.627V125.8H126.786V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_281\">\n<path d=\"M133.749 117.938H126.786V125.8H133.749V117.938Z\" fill=\"white\"/>\n<path d=\"M133.749 117.938H126.786V125.8H133.749V117.938Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_282\">\n<path d=\"M158.477 117.946H153.318V125.809H158.477V117.946Z\" fill=\"white\"/>\n<path d=\"M158.477 117.946H153.318V125.809H158.477V117.946Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_283\">\n<path d=\"M165.422 117.946H158.485V125.809H165.422V117.946Z\" fill=\"white\"/>\n<path d=\"M165.422 117.946H158.485V125.809H165.422V117.946Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n</g>\n</g>\n<g id=\"Tree\">\n<g id=\"Vector_284\">\n<path d=\"M82.1083 62.9994C83.195 66.5107 84.3988 69.9986 85.3384 73.5419C86.6744 78.5767 87.8143 83.6541 88.7454 87.5021C90.5138 80.9119 92.6083 73.103 94.7027 65.2941C95.0032 65.309 95.3015 65.3261 95.6019 65.341C95.5976 66.6556 95.9854 68.0874 95.5294 69.2657C91.332 80.147 90.5692 91.2968 91.9542 102.638C92.0309 103.273 92.2866 103.893 92.555 104.873C94.4854 102.981 96.1452 101.358 97.8029 99.7321C98.0607 99.9175 98.3185 100.105 98.5763 100.29C97.2745 101.98 96.1282 103.787 94.6303 105.325C92.6829 107.326 92.4527 109.584 92.6701 112.018C93.0195 115.938 93.3306 119.863 93.7077 123.781C94.0571 127.412 93.9485 127.52 89.555 126.945C89.1907 122.579 88.8242 118.175 88.4535 113.771C88.381 112.917 88.1488 112.054 88.2319 111.214C89.1332 102.05 82.6623 96.3572 76.0274 90.7727C74.5338 89.5156 72.7376 88.544 71.3399 87.1718C79.8647 88.8956 83.4443 95.7478 88.658 101.015C87.3945 93.4871 86.3207 86.1512 84.8739 78.8729C84.1453 75.2039 82.6581 71.6584 81.6737 68.0214C81.2305 66.3893 81.1794 64.6741 80.9514 62.9951C81.337 62.9951 81.7227 62.9951 82.1083 62.9972V62.9994Z\" fill=\"white\"/>\n<path d=\"M82.1083 62.9994C83.195 66.5107 84.3988 69.9986 85.3384 73.5419C86.6744 78.5767 87.8143 83.6541 88.7454 87.5021C90.5138 80.9119 92.6083 73.103 94.7027 65.2941C95.0032 65.309 95.3015 65.3261 95.6019 65.341C95.5976 66.6556 95.9854 68.0874 95.5294 69.2657C91.332 80.147 90.5692 91.2968 91.9542 102.638C92.0309 103.273 92.2866 103.893 92.555 104.873C94.4854 102.981 96.1452 101.358 97.8029 99.7321C98.0607 99.9175 98.3185 100.105 98.5763 100.29C97.2745 101.98 96.1282 103.787 94.6303 105.325C92.6829 107.326 92.4527 109.584 92.6701 112.018C93.0195 115.938 93.3306 119.863 93.7077 123.781C94.0571 127.412 93.9485 127.52 89.555 126.945C89.1907 122.579 88.8242 118.175 88.4535 113.771C88.381 112.917 88.1488 112.054 88.2319 111.214C89.1332 102.05 82.6623 96.3572 76.0274 90.7727C74.5338 89.5156 72.7376 88.544 71.3399 87.1718C79.8647 88.8956 83.4443 95.7478 88.658 101.015C87.3945 93.4871 86.3207 86.1512 84.8739 78.8729C84.1453 75.2039 82.6581 71.6584 81.6737 68.0214C81.2305 66.3893 81.1794 64.6741 80.9514 62.9951C81.337 62.9951 81.7227 62.9951 82.1083 62.9972V62.9994Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_285\">\n<path d=\"M96.597 84.7475C99.5587 82.9833 102.812 82.8895 107.039 85.7126C111.267 88.5379 112.159 90.415 112.413 91.6657C112.667 92.9164 114.588 93.7027 114.069 96.2041C113.549 98.7034 108.574 101.348 105.346 101.65C102.12 101.955 101.444 101.639 97.6134 101.004C93.7824 100.37 90.7057 99.4235 89.3038 96.2936C87.9018 93.1636 93.4628 86.6139 96.5992 84.7475H96.597Z\" fill=\"white\"/>\n<path d=\"M96.597 84.7475C99.5587 82.9833 102.812 82.8895 107.039 85.7126C111.267 88.5379 112.159 90.415 112.413 91.6657C112.667 92.9164 114.588 93.7027 114.069 96.2041C113.549 98.7034 108.574 101.348 105.346 101.65C102.12 101.955 101.444 101.639 97.6134 101.004C93.7824 100.37 90.7057 99.4235 89.3038 96.2936C87.9018 93.1636 93.4628 86.6139 96.5992 84.7475H96.597Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_286\">\n<path d=\"M65.257 75.6538C68.6597 73.9919 72.4011 73.9024 77.2612 76.5722C82.1212 79.2398 83.1482 81.0125 83.4401 82.195C83.732 83.3754 85.9437 84.119 85.3449 86.4777C84.7484 88.8363 79.0296 91.3271 75.3223 91.6126C71.6128 91.8981 70.8372 91.5998 66.4331 90.9989C62.029 90.396 58.4921 89.5032 56.877 86.548C55.262 83.5927 61.6519 77.4159 65.257 75.656V75.6538Z\" fill=\"white\"/>\n<path d=\"M65.257 75.6538C68.6597 73.9919 72.4011 73.9024 77.2612 76.5722C82.1212 79.2398 83.1482 81.0125 83.4401 82.195C83.732 83.3754 85.9437 84.119 85.3449 86.4777C84.7484 88.8363 79.0296 91.3271 75.3223 91.6126C71.6128 91.8981 70.8372 91.5998 66.4331 90.9989C62.029 90.396 58.4921 89.5032 56.877 86.548C55.262 83.5927 61.6519 77.4159 65.257 75.656V75.6538Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_287\">\n<path d=\"M81.4756 52.7554C74.5105 56.3072 70.1724 58.0373 68.3422 59.859C66.5119 61.6808 62.1803 66.9797 64.6604 70.8043C67.1405 74.6288 67.9629 77.6203 74.9345 77.3071C81.9081 76.9939 84.7313 76.0053 90.3754 76.5188C96.0174 77.0322 101.005 74.5053 102.171 73.2887C103.336 72.072 106.837 66.4385 102.203 61.4443C97.5686 56.4521 87.6269 49.619 81.4756 52.7554Z\" fill=\"white\"/>\n<path d=\"M81.4756 52.7554C74.5105 56.3072 70.1724 58.0373 68.3422 59.859C66.5119 61.6808 62.1803 66.9797 64.6604 70.8043C67.1405 74.6288 67.9629 77.6203 74.9345 77.3071C81.9081 76.9939 84.7313 76.0053 90.3754 76.5188C96.0174 77.0322 101.005 74.5053 102.171 73.2887C103.336 72.072 106.837 66.4385 102.203 61.4443C97.5686 56.4521 87.6269 49.619 81.4756 52.7554Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_288\">\n<path d=\"M94.7561 54.5452C98.4891 51.6326 102.586 51.4706 107.909 56.1283C113.231 60.7859 114.354 63.8839 114.672 65.9486C114.989 68.0132 117.409 69.3086 116.753 73.4357C116.095 77.5607 109.824 81.9286 105.759 82.4336C101.694 82.9385 100.843 82.4208 96.0196 81.3746C91.1958 80.3285 87.3201 78.7709 85.5559 73.6083C83.7917 68.4436 90.8059 57.6304 94.7583 54.5452H94.7561Z\" fill=\"white\"/>\n<path d=\"M94.7561 54.5452C98.4891 51.6326 102.586 51.4706 107.909 56.1283C113.231 60.7859 114.354 63.8839 114.672 65.9486C114.989 68.0132 117.409 69.3086 116.753 73.4357C116.095 77.5607 109.824 81.9286 105.759 82.4336C101.694 82.9385 100.843 82.4208 96.0196 81.3746C91.1958 80.3285 87.3201 78.7709 85.5559 73.6083C83.7917 68.4436 90.8059 57.6304 94.7583 54.5452H94.7561Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_289\">\n<path d=\"M98.0287 128.111C96.3092 127.772 96.305 126.155 94.349 126.33C93.6097 126.396 93.158 126.671 92.4612 126.594C91.8945 126.532 91.1232 125.328 88.9733 125.887C87.3775 126.302 87.8142 127.131 86.7937 127.389C85.7049 127.666 84.6353 128.047 83.5572 128.384C83.5721 128.463 83.587 129.453 83.5998 129.53C88.6346 129.53 95.359 129.53 100.392 129.53C100.313 129.066 98.2737 128.158 98.0266 128.109L98.0287 128.111Z\" fill=\"white\"/>\n<path d=\"M98.0287 128.111C96.3092 127.772 96.305 126.155 94.349 126.33C93.6097 126.396 93.158 126.671 92.4612 126.594C91.8945 126.532 91.1232 125.328 88.9733 125.887C87.3775 126.302 87.8142 127.131 86.7937 127.389C85.7049 127.666 84.6353 128.047 83.5572 128.384C83.5721 128.463 83.587 129.453 83.5998 129.53C88.6346 129.53 95.359 129.53 100.392 129.53C100.313 129.066 98.2737 128.158 98.0266 128.109L98.0287 128.111Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n</g>\n<g id=\"Tree_2\">\n<g id=\"Vector_290\">\n<path d=\"M491.503 67.6656C490.493 70.9307 489.373 74.174 488.5 77.4688C487.257 82.1505 486.198 86.8719 485.332 90.45C483.687 84.322 481.74 77.0607 479.792 69.7994C479.513 69.8133 479.235 69.8291 478.956 69.843C478.96 71.0654 478.599 72.3968 479.023 73.4925C482.926 83.6107 483.636 93.9786 482.348 104.525C482.277 105.115 482.039 105.692 481.789 106.603C479.994 104.844 478.451 103.334 476.909 101.822C476.67 101.995 476.43 102.169 476.19 102.342C477.401 103.913 478.467 105.593 479.859 107.023C481.67 108.884 481.884 110.984 481.682 113.246C481.357 116.892 481.068 120.541 480.717 124.185C480.392 127.561 480.493 127.662 484.579 127.127C484.918 123.067 485.258 118.972 485.603 114.877C485.67 114.082 485.886 113.28 485.809 112.499C484.971 103.978 490.988 98.6841 497.158 93.4912C498.547 92.3223 500.217 91.4189 501.517 90.1429C493.59 91.7458 490.261 98.1175 485.413 103.015C486.588 96.0154 487.586 89.1939 488.932 82.4259C489.609 79.0142 490.992 75.7174 491.907 72.3354C492.32 70.8178 492.367 69.2229 492.579 67.6616C492.221 67.6616 491.862 67.6616 491.503 67.6636V67.6656Z\" fill=\"white\"/>\n<path d=\"M491.503 67.6656C490.493 70.9307 489.373 74.174 488.5 77.4688C487.257 82.1505 486.198 86.8719 485.332 90.45C483.687 84.322 481.74 77.0607 479.792 69.7994C479.513 69.8133 479.235 69.8291 478.956 69.843C478.96 71.0654 478.599 72.3968 479.023 73.4925C482.926 83.6107 483.636 93.9786 482.348 104.525C482.277 105.115 482.039 105.692 481.789 106.603C479.994 104.844 478.451 103.334 476.909 101.822C476.67 101.995 476.43 102.169 476.19 102.342C477.401 103.913 478.467 105.593 479.859 107.023C481.67 108.884 481.884 110.984 481.682 113.246C481.357 116.892 481.068 120.541 480.717 124.185C480.392 127.561 480.493 127.662 484.579 127.127C484.918 123.067 485.258 118.972 485.603 114.877C485.67 114.082 485.886 113.28 485.809 112.499C484.971 103.978 490.988 98.6841 497.158 93.4912C498.547 92.3223 500.217 91.4189 501.517 90.1429C493.59 91.7458 490.261 98.1175 485.413 103.015C486.588 96.0154 487.586 89.1939 488.932 82.4259C489.609 79.0142 490.992 75.7174 491.907 72.3354C492.32 70.8178 492.367 69.2229 492.579 67.6616C492.221 67.6616 491.862 67.6616 491.503 67.6636V67.6656Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_291\">\n<path d=\"M478.031 87.8881C475.277 86.2476 472.251 86.1604 468.321 88.7856C464.39 91.4127 463.56 93.1582 463.324 94.3212C463.088 95.4842 461.301 96.2153 461.784 98.5413C462.268 100.865 466.894 103.324 469.896 103.605C472.895 103.889 473.523 103.595 477.086 103.005C480.648 102.415 483.509 101.535 484.813 98.6245C486.116 95.714 480.945 89.6237 478.029 87.8881H478.031Z\" fill=\"white\"/>\n<path d=\"M478.031 87.8881C475.277 86.2476 472.251 86.1604 468.321 88.7856C464.39 91.4127 463.56 93.1582 463.324 94.3212C463.088 95.4842 461.301 96.2153 461.784 98.5413C462.268 100.865 466.894 103.324 469.896 103.605C472.895 103.889 473.523 103.595 477.086 103.005C480.648 102.415 483.509 101.535 484.813 98.6245C486.116 95.714 480.945 89.6237 478.029 87.8881H478.031Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_292\">\n<path d=\"M507.173 79.4324C504.009 77.887 500.53 77.8038 496.011 80.2863C491.491 82.7669 490.537 84.4153 490.265 85.5149C489.994 86.6125 487.937 87.3039 488.494 89.4972C489.049 91.6904 494.366 94.0065 497.814 94.272C501.263 94.5375 501.984 94.2601 506.079 93.7014C510.175 93.1407 513.464 92.3106 514.965 89.5626C516.467 86.8146 510.525 81.0709 507.173 79.4344V79.4324Z\" fill=\"white\"/>\n<path d=\"M507.173 79.4324C504.009 77.887 500.53 77.8038 496.011 80.2863C491.491 82.7669 490.537 84.4153 490.265 85.5149C489.994 86.6125 487.937 87.3039 488.494 89.4972C489.049 91.6904 494.366 94.0065 497.814 94.272C501.263 94.5375 501.984 94.2601 506.079 93.7014C510.175 93.1407 513.464 92.3106 514.965 89.5626C516.467 86.8146 510.525 81.0709 507.173 79.4344V79.4324Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_293\">\n<path d=\"M492.092 58.1396C498.569 61.4424 502.602 63.0512 504.304 64.7451C506.006 66.4391 510.034 71.3665 507.728 74.9229C505.422 78.4792 504.657 81.2609 498.174 80.9696C491.69 80.6784 489.065 79.7591 483.816 80.2366C478.57 80.7141 473.932 78.3643 472.848 77.233C471.764 76.1017 468.509 70.8633 472.818 66.2192C477.127 61.5771 486.372 55.2232 492.092 58.1396Z\" fill=\"white\"/>\n<path d=\"M492.092 58.1396C498.569 61.4424 502.602 63.0512 504.304 64.7451C506.006 66.4391 510.034 71.3665 507.728 74.9229C505.422 78.4792 504.657 81.2609 498.174 80.9696C491.69 80.6784 489.065 79.7591 483.816 80.2366C478.57 80.7141 473.932 78.3643 472.848 77.233C471.764 76.1017 468.509 70.8633 472.818 66.2192C477.127 61.5771 486.372 55.2232 492.092 58.1396Z\" fill=\"#206095\" fill-opacity=\"0.75\"/>\n</g>\n<g id=\"Vector_294\">\n<path d=\"M479.743 59.8037C476.271 57.0953 472.461 56.9447 467.512 61.2757C462.563 65.6068 461.519 68.4875 461.224 70.4073C460.929 72.3272 458.678 73.5318 459.288 77.3695C459.9 81.2052 465.731 85.2668 469.511 85.7363C473.292 86.2059 474.082 85.7244 478.568 84.7516C483.053 83.7788 486.657 82.3305 488.298 77.53C489.938 72.7274 483.416 62.6725 479.741 59.8037H479.743Z\" fill=\"white\"/>\n<path d=\"M479.743 59.8037C476.271 57.0953 472.461 56.9447 467.512 61.2757C462.563 65.6068 461.519 68.4875 461.224 70.4073C460.929 72.3272 458.678 73.5318 459.288 77.3695C459.9 81.2052 465.731 85.2668 469.511 85.7363C473.292 86.2059 474.082 85.7244 478.568 84.7516C483.053 83.7788 486.657 82.3305 488.298 77.53C489.938 72.7274 483.416 62.6725 479.741 59.8037H479.743Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_295\">\n<path d=\"M476.699 128.211C478.298 127.896 478.302 126.392 480.121 126.554C480.809 126.616 481.229 126.871 481.876 126.8C482.403 126.743 483.121 125.623 485.12 126.142C486.604 126.529 486.198 127.299 487.147 127.539C488.159 127.797 489.154 128.151 490.156 128.464C490.142 128.538 490.128 129.459 490.116 129.53C485.435 129.53 479.182 129.53 474.502 129.53C474.576 129.098 476.472 128.254 476.701 128.209L476.699 128.211Z\" fill=\"white\"/>\n<path d=\"M476.699 128.211C478.298 127.896 478.302 126.392 480.121 126.554C480.809 126.616 481.229 126.871 481.876 126.8C482.403 126.743 483.121 125.623 485.12 126.142C486.604 126.529 486.198 127.299 487.147 127.539C488.159 127.797 489.154 128.151 490.156 128.464C490.142 128.538 490.128 129.459 490.116 129.53C485.435 129.53 479.182 129.53 474.502 129.53C474.576 129.098 476.472 128.254 476.701 128.209L476.699 128.211Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n</g>\n<g id=\"Icons\">\n<g id=\"Group 382\">\n<path id=\"Vector 1\" d=\"M73.38 142.105H627.844\" stroke=\"#206095\" stroke-width=\"3\" stroke-dasharray=\"6 6\"/>\n<g id=\"Ellipse 16\">\n<circle cx=\"65.6121\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"65.6121\" cy=\"142.105\" r=\"33.5\" fill=\"#FBC900\" fill-opacity=\"0.4\"/>\n<circle cx=\"65.6121\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 17\">\n<circle cx=\"207.806\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"207.806\" cy=\"142.105\" r=\"33.5\" fill=\"#FBC900\" fill-opacity=\"0.4\"/>\n<circle cx=\"207.806\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 18\">\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" fill=\"#FBC900\" fill-opacity=\"0.4\"/>\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 19\">\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" fill=\"#FBC900\" fill-opacity=\"0.4\"/>\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 20\">\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" fill=\"#FBC900\" fill-opacity=\"0.4\"/>\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n</g>\n<g id=\"Artwork 64x64_2\">\n<path id=\"Vector_296\" d=\"M479.913 124.463V159.748C479.913 160.108 480.056 160.453 480.311 160.708C480.565 160.962 480.91 161.105 481.27 161.105H505.699C506.059 161.105 506.404 160.962 506.658 160.708C506.913 160.453 507.056 160.108 507.056 159.748V131.248L498.913 123.105H481.27C480.91 123.105 480.565 123.248 480.311 123.503C480.056 123.757 479.913 124.103 479.913 124.463Z\" fill=\"#003C57\"/>\n<path id=\"Vector_297\" d=\"M500.27 131.248H507.056L498.913 123.105V129.891C498.913 130.251 499.056 130.596 499.311 130.851C499.565 131.105 499.91 131.248 500.27 131.248Z\" fill=\"#4D7789\"/>\n<path id=\"Vector_298\" d=\"M496.701 136.5C494.983 135.609 493.065 135.176 491.131 135.243C489.197 135.31 487.313 135.873 485.661 136.88C485.51 136.977 485.404 137.128 485.365 137.302C485.325 137.476 485.356 137.658 485.45 137.81C485.497 137.886 485.559 137.952 485.632 138.004C485.704 138.056 485.786 138.093 485.873 138.113C485.96 138.133 486.05 138.136 486.138 138.121C486.227 138.106 486.311 138.074 486.387 138.027C487.837 137.133 489.497 136.634 491.201 136.58C492.905 136.526 494.593 136.92 496.097 137.722C498.974 139.133 500.983 141.617 501.207 144.039C501.223 144.207 501.302 144.363 501.428 144.476C501.553 144.589 501.716 144.651 501.885 144.65H501.953C502.132 144.633 502.297 144.545 502.411 144.407C502.526 144.268 502.581 144.089 502.564 143.91C502.306 141.026 499.985 138.122 496.701 136.5Z\" fill=\"white\"/>\n<path id=\"Vector_299\" d=\"M489.63 134.173C494.027 133.495 498.085 134.852 500.766 137.953C500.83 138.026 500.909 138.085 500.998 138.124C501.087 138.164 501.184 138.184 501.281 138.184C501.41 138.182 501.536 138.144 501.645 138.074C501.753 138.003 501.839 137.903 501.892 137.786C501.946 137.668 501.965 137.538 501.946 137.41C501.928 137.282 501.874 137.162 501.79 137.064C498.798 133.596 494.292 132.056 489.413 132.836C489.324 132.85 489.238 132.881 489.161 132.928C489.084 132.975 489.017 133.037 488.964 133.11C488.911 133.182 488.872 133.265 488.851 133.352C488.83 133.44 488.826 133.531 488.84 133.62C488.853 133.709 488.885 133.795 488.932 133.872C488.978 133.949 489.04 134.016 489.113 134.069C489.186 134.122 489.268 134.161 489.356 134.182C489.443 134.203 489.534 134.207 489.623 134.194L489.63 134.173Z\" fill=\"white\"/>\n<path id=\"Vector_300\" d=\"M497.094 140.171C494.054 137.891 491.286 137.851 489.494 138.224C487.262 138.685 485.47 140.009 484.86 141.074C484.815 141.152 484.786 141.238 484.775 141.327C484.764 141.416 484.771 141.506 484.795 141.593C484.819 141.679 484.86 141.76 484.915 141.83C484.97 141.901 485.039 141.96 485.118 142.004C485.271 142.086 485.451 142.106 485.619 142.059C485.787 142.012 485.931 141.902 486.02 141.752C486.949 140.586 488.275 139.804 489.745 139.554C491.265 139.242 493.627 139.276 496.26 141.257C501.173 144.935 498.974 150.934 497.108 153.587C497.056 153.66 497.02 153.743 497 153.831C496.981 153.918 496.979 154.009 496.994 154.097C497.01 154.186 497.043 154.27 497.092 154.345C497.141 154.421 497.204 154.486 497.278 154.537C497.351 154.59 497.435 154.627 497.523 154.647C497.611 154.667 497.703 154.669 497.792 154.654C497.881 154.638 497.966 154.604 498.042 154.555C498.118 154.506 498.183 154.442 498.234 154.367C502.442 148.348 500.589 142.784 497.094 140.171Z\" fill=\"white\"/>\n<path id=\"Vector_301\" d=\"M497.488 145.776C497.256 144.906 496.839 144.096 496.265 143.401C495.691 142.707 494.974 142.144 494.163 141.753C493.163 141.232 492.043 140.987 490.917 141.043C489.791 141.099 488.701 141.454 487.757 142.071C486.851 142.804 486.074 143.682 485.457 144.67C485.301 144.907 485.131 145.133 484.948 145.349C484.84 145.483 484.787 145.654 484.8 145.826C484.813 145.997 484.89 146.158 485.017 146.275C485.144 146.391 485.311 146.455 485.483 146.453C485.656 146.452 485.821 146.384 485.946 146.265C486.175 145.993 486.388 145.708 486.583 145.41C487.108 144.548 487.776 143.782 488.558 143.144C489.296 142.675 490.144 142.408 491.017 142.371C491.89 142.334 492.758 142.528 493.532 142.933C494.182 143.231 494.758 143.669 495.219 144.216C495.68 144.763 496.015 145.404 496.199 146.095C496.64 147.914 496.056 151.673 492.643 154.591C492.575 154.649 492.52 154.72 492.479 154.799C492.439 154.879 492.415 154.965 492.408 155.054C492.401 155.143 492.411 155.232 492.439 155.317C492.467 155.402 492.511 155.48 492.568 155.548C492.632 155.622 492.711 155.682 492.8 155.723C492.889 155.764 492.986 155.785 493.084 155.785C493.246 155.785 493.402 155.728 493.525 155.623C497.128 152.521 498.112 148.341 497.488 145.776Z\" fill=\"white\"/>\n<path id=\"Vector_302\" d=\"M492.046 144.141C491.328 143.939 490.563 143.993 489.881 144.296C489.2 144.598 488.645 145.129 488.314 145.797C487.425 147.595 486.835 148.43 485.498 148.952C485.326 149.022 485.189 149.156 485.116 149.327C485.044 149.497 485.042 149.69 485.111 149.862C485.18 150.034 485.315 150.171 485.486 150.243C485.656 150.316 485.848 150.318 486.02 150.249C487.913 149.509 488.68 148.213 489.556 146.435C489.757 146.046 490.087 145.74 490.489 145.568C490.891 145.396 491.341 145.369 491.761 145.492C492.237 145.582 492.668 145.834 492.981 146.205C493.294 146.575 493.469 147.043 493.478 147.527C493.478 150.466 490.173 153.255 489.291 153.743C489.169 153.818 489.073 153.929 489.018 154.061C488.963 154.194 488.951 154.34 488.985 154.479C489.018 154.619 489.094 154.744 489.203 154.837C489.311 154.93 489.447 154.987 489.59 154.999C489.703 154.999 489.815 154.971 489.915 154.917C491.171 154.239 494.808 151.07 494.808 147.507C494.806 146.714 494.53 145.945 494.027 145.332C493.524 144.718 492.824 144.298 492.046 144.141Z\" fill=\"white\"/>\n<path id=\"Vector_303\" d=\"M491.978 147.975C492.029 147.807 492.013 147.626 491.933 147.469C491.853 147.313 491.716 147.194 491.55 147.136C491.383 147.079 491.202 147.089 491.042 147.163C490.883 147.237 490.759 147.37 490.696 147.534C490.006 149.344 488.627 150.808 486.862 151.605C486.715 151.664 486.593 151.771 486.517 151.91C486.44 152.048 486.415 152.209 486.445 152.364C486.475 152.52 486.558 152.66 486.68 152.76C486.802 152.861 486.955 152.916 487.113 152.915C487.199 152.915 487.284 152.899 487.364 152.868C488.42 152.401 489.373 151.727 490.165 150.887C490.957 150.047 491.574 149.057 491.978 147.975Z\" fill=\"white\"/>\n</g>\n<g id=\"Artwork 64x64_3\">\n<path id=\"Vector_304\" d=\"M634.346 155.445H634.159V153.695C634.159 153.463 634.07 153.24 633.911 153.076C633.752 152.912 633.537 152.82 633.312 152.82H619.748C619.523 152.82 619.308 152.912 619.149 153.076C618.99 153.24 618.901 153.463 618.901 153.695V155.445H618.714C618.404 155.444 618.097 155.506 617.811 155.628C617.524 155.75 617.264 155.929 617.045 156.155C616.826 156.381 616.653 156.65 616.535 156.945C616.417 157.241 616.356 157.558 616.357 157.878V158.945C616.357 159.177 616.447 159.4 616.606 159.564C616.765 159.728 616.98 159.82 617.205 159.82H635.855C636.08 159.82 636.295 159.728 636.454 159.564C636.613 159.4 636.703 159.177 636.703 158.945V157.878C636.704 157.558 636.644 157.241 636.526 156.945C636.407 156.65 636.234 156.381 636.015 156.155C635.796 155.929 635.536 155.75 635.249 155.628C634.963 155.506 634.656 155.444 634.346 155.445Z\" fill=\"#206095\"/>\n<path id=\"Vector_305\" d=\"M656.547 155.594L639.771 138.268C639.568 138.059 639.316 137.907 639.041 137.826C638.765 137.745 638.474 137.737 638.194 137.804L634.278 133.761L637.296 130.646C637.597 130.333 637.765 129.91 637.765 129.469C637.765 129.028 637.597 128.605 637.296 128.292L637.236 128.231L637.83 127.609C637.987 127.772 638.174 127.901 638.38 127.989C638.586 128.077 638.807 128.123 639.029 128.123C639.252 128.123 639.473 128.077 639.679 127.989C639.884 127.901 640.071 127.772 640.229 127.609L640.831 126.997C640.988 126.834 641.114 126.641 641.199 126.429C641.284 126.216 641.328 125.989 641.328 125.759C641.328 125.529 641.284 125.301 641.199 125.088C641.114 124.876 640.988 124.683 640.831 124.52L634.837 118.334C634.68 118.171 634.493 118.042 634.287 117.954C634.081 117.866 633.861 117.82 633.638 117.82C633.415 117.82 633.195 117.866 632.989 117.954C632.783 118.042 632.596 118.171 632.438 118.334L631.837 118.946C631.679 119.109 631.554 119.302 631.469 119.514C631.383 119.727 631.339 119.954 631.339 120.184C631.339 120.414 631.383 120.642 631.469 120.855C631.554 121.067 631.679 121.26 631.837 121.423L631.243 122.044L631.175 121.983C631.027 121.827 630.85 121.703 630.655 121.619C630.46 121.535 630.251 121.491 630.039 121.491C629.828 121.491 629.619 121.535 629.424 121.619C629.229 121.703 629.052 121.827 628.903 121.983L620.426 130.733C620.276 130.886 620.156 131.069 620.074 131.27C619.992 131.471 619.95 131.688 619.95 131.906C619.95 132.124 619.992 132.34 620.074 132.541C620.156 132.743 620.276 132.925 620.426 133.078L620.486 133.148L619.884 133.761C619.726 133.598 619.539 133.469 619.333 133.381C619.128 133.293 618.907 133.248 618.684 133.248C618.461 133.248 618.241 133.293 618.035 133.381C617.829 133.469 617.642 133.598 617.485 133.761L616.891 134.382C616.734 134.545 616.609 134.738 616.523 134.95C616.438 135.163 616.394 135.39 616.394 135.62C616.394 135.85 616.438 136.078 616.523 136.291C616.609 136.503 616.734 136.696 616.891 136.859L622.885 143.045C623.042 143.208 623.229 143.337 623.435 143.425C623.641 143.513 623.861 143.559 624.084 143.559C624.307 143.559 624.528 143.513 624.733 143.425C624.939 143.337 625.126 143.208 625.284 143.045L625.877 142.424C626.035 142.262 626.16 142.069 626.245 141.856C626.33 141.644 626.374 141.416 626.374 141.186C626.374 140.956 626.33 140.728 626.245 140.516C626.16 140.303 626.035 140.11 625.877 139.948L626.479 139.335L626.538 139.396C626.842 139.707 627.251 139.881 627.678 139.881C628.106 139.881 628.515 139.707 628.819 139.396L631.913 136.202L635.787 140.201C635.696 140.505 635.686 140.828 635.76 141.136C635.833 141.444 635.986 141.726 636.202 141.952L652.987 159.269C653.145 159.432 653.332 159.561 653.537 159.649C653.743 159.737 653.964 159.782 654.187 159.782C654.409 159.782 654.63 159.737 654.836 159.649C655.042 159.561 655.229 159.432 655.386 159.269L656.547 158.07C656.705 157.908 656.83 157.715 656.915 157.502C657.001 157.29 657.045 157.062 657.045 156.832C657.045 156.602 657.001 156.374 656.915 156.162C656.83 155.949 656.705 155.756 656.547 155.594Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Artwork 64x64_4\">\n<g id=\"Group 384\">\n<path id=\"Vector_306\" d=\"M52.8686 119.407C50.5757 119.407 48.3342 120.087 46.4277 121.361C44.5213 122.634 43.0353 124.445 42.1579 126.563C41.2804 128.682 41.0508 131.013 41.4982 133.262C41.9455 135.51 43.0496 137.576 44.671 139.198C46.2923 140.819 48.358 141.923 50.6069 142.37C52.8557 142.818 55.1867 142.588 57.3051 141.711C59.4235 140.833 61.2341 139.347 62.5079 137.441C63.7818 135.534 64.4618 133.293 64.4618 131C64.4618 127.925 63.2403 124.976 61.0662 122.802C58.892 120.628 55.9433 119.407 52.8686 119.407Z\" fill=\"white\"/>\n<path id=\"Vector_307\" d=\"M52.8437 137.128C53.7583 137.128 54.4998 136.386 54.4998 135.472C54.4998 134.557 53.7583 133.815 52.8437 133.815C51.929 133.815 51.1875 134.557 51.1875 135.472C51.1875 136.386 51.929 137.128 52.8437 137.128Z\" fill=\"#206095\"/>\n<path id=\"Vector_308\" d=\"M54.359 131.973C54.3527 132.079 54.3063 132.178 54.2293 132.25C54.1523 132.322 54.0506 132.362 53.945 132.362H51.792C51.6863 132.362 51.5846 132.322 51.5076 132.25C51.4307 132.178 51.3843 132.079 51.3779 131.973L50.9639 125.29C50.9605 125.234 50.9687 125.177 50.988 125.124C51.0073 125.071 51.0372 125.023 51.076 124.981C51.1148 124.94 51.1616 124.908 51.2135 124.885C51.2654 124.863 51.3214 124.851 51.3779 124.852H54.3425C54.399 124.851 54.4549 124.863 54.5069 124.885C54.5588 124.908 54.6056 124.94 54.6444 124.981C54.6832 125.023 54.7131 125.071 54.7324 125.124C54.7517 125.177 54.7599 125.234 54.7565 125.29L54.359 131.973Z\" fill=\"#206095\"/>\n</g>\n<path id=\"Vector_309\" d=\"M70.9162 146.415H65.3567C61.6706 146.415 58.1354 147.879 55.5289 150.485C52.9223 153.092 51.458 156.627 51.458 160.313H84.815C84.815 158.488 84.4555 156.681 83.757 154.994C83.0585 153.308 82.0347 151.776 80.7441 150.485C79.4535 149.195 77.9213 148.171 76.235 147.473C74.5488 146.774 72.7414 146.415 70.9162 146.415Z\" fill=\"#003C57\"/>\n<path id=\"Vector_310\" d=\"M68.1365 143.635C72.7421 143.635 76.4757 139.901 76.4757 135.295C76.4757 130.69 72.7421 126.956 68.1365 126.956C63.5308 126.956 59.7972 130.69 59.7972 135.295C59.7972 139.901 63.5308 143.635 68.1365 143.635Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Artwork 64x64_5\">\n<path id=\"Vector_311\" d=\"M194.282 124.463V159.748C194.282 160.108 194.425 160.453 194.679 160.708C194.934 160.962 195.279 161.105 195.639 161.105H220.067C220.427 161.105 220.773 160.962 221.027 160.708C221.282 160.453 221.425 160.108 221.425 159.748V131.248L213.282 123.105H195.639C195.279 123.105 194.934 123.248 194.679 123.503C194.425 123.757 194.282 124.103 194.282 124.463Z\" fill=\"#003C57\"/>\n<path id=\"Vector_312\" d=\"M214.639 131.248H221.425L213.282 123.105V129.891C213.282 130.251 213.425 130.596 213.679 130.851C213.934 131.105 214.279 131.248 214.639 131.248Z\" fill=\"#4D7789\"/>\n<path id=\"Vector_313\" d=\"M213.282 151.266H199.71C199.44 151.266 199.181 151.159 198.991 150.968C198.8 150.777 198.692 150.518 198.692 150.248C198.692 149.978 198.8 149.719 198.991 149.529C199.181 149.338 199.44 149.23 199.71 149.23H213.282C213.552 149.23 213.811 149.338 214.001 149.529C214.192 149.719 214.3 149.978 214.3 150.248C214.3 150.518 214.192 150.777 214.001 150.968C213.811 151.159 213.552 151.266 213.282 151.266Z\" fill=\"white\"/>\n<path id=\"Vector_314\" d=\"M213.282 146.516H199.71C199.44 146.516 199.181 146.409 198.991 146.218C198.8 146.027 198.692 145.768 198.692 145.498C198.692 145.228 198.8 144.969 198.991 144.779C199.181 144.588 199.44 144.48 199.71 144.48H213.282C213.552 144.48 213.811 144.588 214.001 144.779C214.192 144.969 214.3 145.228 214.3 145.498C214.3 145.768 214.192 146.027 214.001 146.218C213.811 146.409 213.552 146.516 213.282 146.516Z\" fill=\"white\"/>\n<path id=\"Vector_315\" d=\"M213.282 141.766H199.71C199.44 141.766 199.181 141.659 198.991 141.468C198.8 141.277 198.692 141.018 198.692 140.748C198.692 140.478 198.8 140.219 198.991 140.029C199.181 139.838 199.44 139.73 199.71 139.73H213.282C213.552 139.73 213.811 139.838 214.001 140.029C214.192 140.219 214.3 140.478 214.3 140.748C214.3 141.018 214.192 141.277 214.001 141.468C213.811 141.659 213.552 141.766 213.282 141.766Z\" fill=\"white\"/>\n<path id=\"Vector_316\" d=\"M207.853 137.016H199.71C199.44 137.016 199.181 136.909 198.991 136.718C198.8 136.527 198.692 136.268 198.692 135.998C198.692 135.728 198.8 135.469 198.991 135.279C199.181 135.088 199.44 134.98 199.71 134.98H207.853C208.123 134.98 208.382 135.088 208.573 135.279C208.764 135.469 208.871 135.728 208.871 135.998C208.871 136.268 208.764 136.527 208.573 136.718C208.382 136.909 208.123 137.016 207.853 137.016Z\" fill=\"white\"/>\n<g id=\"Vector_317\">\n<path d=\"M226.405 140.864L215.066 152.203C214.98 152.284 214.875 152.345 214.761 152.379L212.603 152.963C212.546 152.978 212.486 152.977 212.429 152.962C212.371 152.946 212.319 152.916 212.278 152.874C212.236 152.832 212.206 152.78 212.19 152.723C212.175 152.666 212.174 152.606 212.189 152.549L212.766 150.364C212.793 150.247 212.855 150.14 212.942 150.058L224.247 138.713C224.534 138.427 224.922 138.266 225.326 138.266C225.731 138.266 226.119 138.427 226.405 138.713C226.689 138.999 226.848 139.385 226.848 139.788C226.848 140.191 226.689 140.578 226.405 140.864Z\" fill=\"white\"/>\n<path d=\"M226.405 140.864L215.066 152.203C214.98 152.284 214.875 152.345 214.761 152.379L212.603 152.963C212.546 152.978 212.486 152.977 212.429 152.962C212.371 152.946 212.319 152.916 212.278 152.874C212.236 152.832 212.206 152.78 212.19 152.723C212.175 152.666 212.174 152.606 212.189 152.549L212.766 150.364C212.793 150.247 212.855 150.14 212.942 150.058L224.247 138.713C224.534 138.427 224.922 138.266 225.326 138.266C225.731 138.266 226.119 138.427 226.405 138.713C226.689 138.999 226.848 139.385 226.848 139.788C226.848 140.191 226.689 140.578 226.405 140.864Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n<g id=\"Group 386\">\n<g id=\"Artwork 64x64_6\">\n<path id=\"Vector_318\" d=\"M370 133.813V153.813C370 154.874 369.579 155.891 368.828 156.641C368.078 157.392 367.061 157.813 366 157.813H334C332.939 157.813 331.922 157.392 331.172 156.641C330.421 155.891 330 154.874 330 153.813V129.813C330 128.752 330.421 127.735 331.172 126.985C331.922 126.234 332.939 125.813 334 125.813H344.333C344.863 125.81 345.388 125.912 345.878 126.114C346.367 126.315 346.812 126.612 347.187 126.986L350 129.813H366C367.061 129.813 368.078 130.234 368.828 130.985C369.579 131.735 370 132.752 370 133.813Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Group 385\">\n<path id=\"Vector_319\" d=\"M346.333 145.229H343.667C341.899 145.229 340.203 145.932 338.953 147.182C337.702 148.432 337 150.128 337 151.896H353C353 151.021 352.828 150.154 352.493 149.345C352.157 148.536 351.666 147.801 351.047 147.182C350.428 146.563 349.693 146.072 348.885 145.737C348.076 145.402 347.209 145.229 346.333 145.229Z\" fill=\"white\"/>\n<path id=\"Vector_320\" d=\"M345 143.896C347.209 143.896 349 142.105 349 139.896C349 137.687 347.209 135.896 345 135.896C342.791 135.896 341 137.687 341 139.896C341 142.105 342.791 143.896 345 143.896Z\" fill=\"white\"/>\n</g>\n<g id=\"Union\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M373.813 143.561C374.027 143.363 374.027 143.024 373.813 142.826L366.365 135.947C366.045 135.651 365.526 135.878 365.526 136.314V139.72H359C358.448 139.72 358 140.167 358 140.72V145.667C358 146.219 358.448 146.667 359 146.667H365.526V150.073C365.526 150.509 366.045 150.736 366.365 150.44L373.813 143.561Z\" fill=\"white\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M373.813 143.561C374.027 143.363 374.027 143.024 373.813 142.826L366.365 135.947C366.045 135.651 365.526 135.878 365.526 136.314V139.72H359C358.448 139.72 358 140.167 358 140.72V145.667C358 146.219 358.448 146.667 359 146.667H365.526V150.073C365.526 150.509 366.045 150.736 366.365 150.44L373.813 143.561Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n</g>\n</g>\n</g>\n<g id=\"Title\">\n<rect width=\"700\" height=\"90\" transform=\"translate(0 176.813)\" fill=\"white\"/>\n<rect width=\"700\" height=\"90\" transform=\"translate(0 176.813)\" fill=\"#206095\" fill-opacity=\"0.1\"/>\n<text id=\"Understanding domestic abuse data through the criminal justice system\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"22\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"20\" y=\"212.748\">Understanding domestic abuse data through the</tspan><tspan x=\"20\" y=\"243.548\">criminal justice system</tspan></text>\n</g>\n<g id=\"Chart bit\">\n<g id=\"Domestic abuse data from incident to conviction England and Wales, year ending March 2023\">\n<text fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"16\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"20\" y=\"336.372\">England and Wales, year ending March 2023</tspan></text>\n<text fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"20\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"20\" y=\"307.572\">Domestic abuse data from incident to conviction </tspan></text>\n</g>\n<g id=\"Overall chart\">\n<line id=\"Line 113\" x1=\"114.316\" y1=\"367.313\" x2=\"114.316\" y2=\"642.653\" stroke=\"#B3B3B3\" stroke-width=\"1.5\"/>\n<line id=\"Line 114\" x1=\"223.626\" y1=\"367.313\" x2=\"223.626\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 115\" x1=\"328.789\" y1=\"367.313\" x2=\"328.789\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 116\" x1=\"433.952\" y1=\"367.313\" x2=\"433.952\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 117\" x1=\"539.115\" y1=\"367.313\" x2=\"539.115\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 118\" x1=\"644.279\" y1=\"367.313\" x2=\"644.279\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n\n<rect id=\"Bar_1\" x={114} width={(644-114)*(2124000/2500000)} y={430-54} height={38} fill=\"#206095\"/>\n\n<text x={((644-114)*(2124000/2500000))+100} y={430-30} text-anchor=\"end\" fill=\"white\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"600\" >2,124,000</text>\n\n<rect id=\"Bar_2\" x={114} width={(644-114)*(889918/2500000)} y={430} height={38} fill=\"#206095\"/>\n\n<text x={((644-114)*(2124000/2500000))+100} y={430-30} text-anchor=\"end\" fill=\"white\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"600\" >2,124,000</text>\n\n<path id=\"Vector_322\" d=\"M130.328 484.739L114.5 484.739L114.5 522.739L130.328 522.739L130.328 484.739Z\" fill=\"#206095\"/>\n<path id=\"Vector_323\" d=\"M125.248 538.89L114.5 538.89L114.5 576.89L125.248 576.89L125.248 538.89Z\" fill=\"#206095\"/>\n<text id=\"67,063\" transform=\"translate(130.305 494.693)\" fill=\"#206095\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"6.62919\" y=\"14.1756\">69,314</tspan></text>\n<path id=\"Vector_324\" d=\"M124.743 594.022L114.5 594.022L114.5 632.446L124.743 632.446L124.743 594.022Z\" fill=\"#206095\"/>\n<text id=\"40,647\" transform=\"translate(125.249 603.913)\" fill=\"#206095\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"6.62919\" y=\"12.9558\">39,198</tspan></text>\n<text id=\"43,836\" transform=\"translate(125.707 548.897)\" fill=\"#206095\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"6.62919\" y=\"13.972\">47,361</tspan></text>\n<text id=\"500,000\" transform=\"translate(187.437 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"9.93799\" y=\"14.4312\">500,000</tspan></text>\n<text id=\"0\" transform=\"translate(88.7699 645.136)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"21.7058\" y=\"14.4312\">0</tspan></text>\n<text id=\"1,000,000\" transform=\"translate(294.226 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"4.21631\" y=\"14.4312\">1,000,000</tspan></text>\n<text id=\"1,500,000\" transform=\"translate(397.763 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"4.21631\" y=\"14.4312\">1,500,000</tspan></text>\n<text id=\"2,000,000\" transform=\"translate(502.926 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"4.21631\" y=\"14.4312\">2,000,000</tspan></text>\n<text id=\"2,500,000\" transform=\"translate(608.622 646.284)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"4.21631\" y=\"14.4312\">2,500,000</tspan></text>\n<!-- <path id=\"Vector 2\" d=\"M117.459 422.966L643.778 422.966\" stroke=\"#707071\" stroke-linecap=\"round\" stroke-dasharray=\"2 3\"/>\n<path id=\"Vector 3\" d=\"M117.459 477.628L643.778 477.628\" stroke=\"#707071\" stroke-linecap=\"round\" stroke-dasharray=\"2 3\"/>\n<path id=\"Vector 4\" d=\"M117.459 531.785L643.778 531.785\" stroke=\"#707071\" stroke-linecap=\"round\" stroke-dasharray=\"2 3\"/>\n<path id=\"Vector 5\" d=\"M117.459 585.942L643.778 585.942\" stroke=\"#707071\" stroke-linecap=\"round\" stroke-dasharray=\"2 3\"/> -->\n\n<g id=\"Horizontal label\">\n<text id=\"Estimated victims\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"33.8125\" y=\"392.269\">Estimated </tspan><tspan x=\"53.5684\" y=\"409.069\">victims</tspan></text>\n<text id=\"Recorded by police\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"36.6016\" y=\"446.269\">Recorded </tspan><tspan x=\"41.0586\" y=\"463.069\">by police</tspan></text>\n<text id=\"Suspects referred\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"41.2773\" y=\"500.269\">Suspects </tspan><tspan x=\"44.9414\" y=\"517.069\">referred</tspan></text>\n<text id=\"Suspects charged\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"36.7383\" y=\"554.269\">Suspects </tspan><tspan x=\"37.6406\" y=\"571.069\">charged</tspan></text>\n<text id=\"Offenders convicted\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"33.2793\" y=\"608.269\">Offenders </tspan><tspan x=\"36.6426\" y=\"625.069\">convicted</tspan></text>\n</g>\n<text id=\"910,980\" transform=\"translate(234.717 442.297)\" fill=\"white\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"11.9096\" y=\"13.4312\">889,918</tspan></text>\n</g>\n </g>\n \n \n </svg> \n\n <p class=\"source\">\n Source: Crime Survey for England and Wales from the Office for National Statistics, Police recorded crime data from the Home Office, and Crown Prosecution Service (CPS) \n </p> \n <div class=\"commentary\">\n Specific cases cannot be followed through the criminal justice system, and we cannot make direct comparisons between data from different stages. However by looking at all data available, we can build up a picture of what has happened at each stage of the criminal justice system from incident to conviction. \n<br><br>\nIn this visualisation, data switch between victims, offences, suspects and offenders depending on the data source. \n \n <br><br>\n <button class=\"button\" type=\"button\" on:click={()=>goTo.set(\"Two\")}>Next ▶</button></div>\n <style>\n .button{\n background-color:rgb(15, 130, 67);\n width:97px;\n height:40px;\n color:white;\n font-weight:bold;\n font-size:16px;\n border:none;\n }\n .source{\n color:grey\n }\n .commentary{\n font-weight:400;\n font-size:18px;\n background-color:rgba(32, 96, 149,0.1);\n padding:20px;\n }\n </style>","<script>\n export let goTo=null\n $: console.log(\"goto\",$goTo)\n </script>\n<svg width=\"700\" viewBox=\"0 0 700 700\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<g id=\"Interactive\">\n<g id=\"Illustration headers\">\n<g id=\"Illustration\">\n<g id=\"Illo\">\n<g id=\"Ellipse 1\">\n<path d=\"M700 120.569C500.303 120.569 178.452 120.569 0 120.569C0 101.933 125.256 2.20508 350 2.20508C570.463 2.20508 700 101.933 700 120.569Z\" fill=\"white\"/>\n<path d=\"M700 120.569C500.303 120.569 178.452 120.569 0 120.569C0 101.933 125.256 2.20508 350 2.20508C570.463 2.20508 700 101.933 700 120.569Z\" fill=\"#206095\" fill-opacity=\"0.05\"/>\n</g>\n<g id=\"Background buildings\">\n<path id=\"Vector\" d=\"M487.962 87.3798L480.563 81.3013C480.059 80.8885 479.371 80.8885 478.868 81.3013L471.468 87.3798V145.715H487.962V87.3798Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_2\" d=\"M460.082 91.2017H471.74V145.027H460.082V91.2017Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_3\" d=\"M462.433 84.4312H467.694V93.195H462.433V84.4312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_4\" d=\"M487.939 98.2393H500.166V142.841H487.939V98.2393Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_5\" d=\"M500.162 88.8657H511.25V145.255H500.162V88.8657Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_6\" d=\"M510.947 80.605H519.632V144.567H510.947V80.605Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_7\" d=\"M532.469 91.6416H542.983V143.132H532.469V91.6416Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_8\" d=\"M542.983 97.7549H552.081V141.098H542.983V97.7549Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_9\" d=\"M532.469 101.923L519.495 95.8364V141.122H532.469V101.923Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_2\">\n<path id=\"Vector_10\" d=\"M179.123 68.9979L169.785 59.9251C169.148 59.3082 168.283 59.3082 167.646 59.9251L158.307 68.9979V156.036H179.119V68.9979H179.123Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_11\" d=\"M143.935 155.001H158.65V74.6915H143.935V155.001Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_12\" d=\"M146.908 77.6709H153.545V64.5964H146.908V77.6709Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_13\" d=\"M179.093 151.752H194.524V74.4409H179.093V151.752Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_14\" d=\"M194.511 155.348H208.505V71.2133H194.511V155.348Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_15\" d=\"M217.438 154.32H228.397V58.891H217.438V154.32Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_16\" d=\"M65.4647 143.936H108.021V97.7379H65.4647V143.936Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_17\" d=\"M125.683 142.646H140.153V94.0413H125.683V142.646Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_18\" d=\"M140.153 144.301H152.671V93.9401H140.153V144.301Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_19\" d=\"M136.687 98.7855L107.828 91.7114V144.328H136.687V98.7855Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_20\" d=\"M179.123 48.2058L169.785 43.3925C169.148 43.0651 168.283 43.0651 167.646 43.3925L158.307 48.2058V94.3816H179.119V48.2058H179.123Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_21\" d=\"M143.935 93.833H158.65V51.2267H143.935V93.833Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_22\" d=\"M146.908 52.8071H153.545V45.8708H146.908V52.8071Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_23\" d=\"M179.093 92.1094H194.524V56.8041H179.093V92.1094Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_24\" d=\"M208.505 118.488H233.453V41.7437H208.505V118.488Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_25\" d=\"M79.4428 111.917H108.021V77.9923H79.4428V111.917Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_26\" d=\"M125.683 135.839H146.908L146.908 61.4923H125.683L125.683 135.839Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_27\" d=\"M140.153 139.21H152.671L152.671 53.1164H140.153V139.21Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_28\" d=\"M125.683 72.2887L107.828 64.8125V120.42H125.683V72.2887Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_3\">\n<path id=\"Vector_29\" d=\"M261.116 61.1229L270.454 51.2292C271.091 50.5564 271.956 50.5564 272.593 51.2292L281.932 61.1229V156.036H261.12V61.1229H261.116Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_30\" d=\"M296.304 154.907H281.589V67.3315H296.304V154.907Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_31\" d=\"M293.331 70.5806H286.694V56.3232H293.331V70.5806Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_32\" d=\"M261.146 151.364H245.715V67.0583H261.146V151.364Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_33\" d=\"M245.728 155.286H231.734V63.5389H245.728V155.286Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_34\" d=\"M222.801 154.165H211.842V50.1015H222.801V154.165Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_35\" d=\"M374.774 138.215H332.218V92.4634H374.774V138.215Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_36\" d=\"M314.556 141.435H300.086V88.4327H314.556V141.435Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_37\" d=\"M300.086 143.239H287.568V88.322H300.086V143.239Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_38\" d=\"M303.552 93.6058L332.411 85.8916V143.269H303.552V93.6058Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_39\" d=\"M261.116 38.4497L270.454 33.2008C271.091 32.8439 271.956 32.8439 272.593 33.2008L281.932 38.4497V88.8034H261.12V38.4497H261.116Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_40\" d=\"M296.304 88.2051H281.589V41.7438H296.304V88.2051Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_41\" d=\"M293.331 43.4673H286.694V35.9034H293.331V43.4673Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_42\" d=\"M261.146 86.3252H245.715V47.8256H261.146V86.3252Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_43\" d=\"M231.734 143.132H206.786L206.786 31.4027H231.734L231.734 143.132Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_44\" d=\"M360.796 107.925H332.218V70.9312H360.796V107.925Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_45\" d=\"M314.555 134.012H293.331V52.9384H314.555V134.012Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_46\" d=\"M300.086 137.688H287.568V43.8044H300.086V137.688Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_47\" d=\"M314.556 64.7117L332.411 56.5591V117.197H314.556V64.7117Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_4\">\n<path id=\"Vector_48\" d=\"M396.322 43.9472L406.674 33.1907C407.38 32.4592 408.339 32.4592 409.045 33.1907L419.398 43.9472V147.137H396.327V43.9472H396.322Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_49\" d=\"M435.325 48.7314H419.013V147.137H435.325V48.7314Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_50\" d=\"M432.033 38.0664H424.676V51.8795H432.033V38.0664Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_51\" d=\"M396.356 59.8315H379.25V147.137H396.356V59.8315Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_52\" d=\"M379.26 45.0566H363.746V147.137H379.26V45.0566Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_53\" d=\"M364.164 32.0312H352.015V147.137H364.164V32.0312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_54\" d=\"M334.058 68.2846L352.211 56.0444V147.137H334.058V68.2846Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_55\" d=\"M455.562 65.9717H439.522V147.137H455.562V65.9717Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_56\" d=\"M439.523 78.8105H425.645V147.137H439.523V78.8105Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_5\">\n<path id=\"Vector_57\" d=\"M406.323 26.2429L415.451 19.0517C416.072 18.5602 416.92 18.5602 417.541 19.0517L426.669 26.2429V95.2607H406.323V26.2429Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_58\" d=\"M440.711 30.7603H426.33V94.4428H440.711V30.7603Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_59\" d=\"M437.81 22.7515H431.321V33.1195H437.81V22.7515Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_60\" d=\"M406.352 39.0913H391.268V91.8632H406.352V39.0913Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_61\" d=\"M391.273 28H377.595V94.7178H391.273V28Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_62\" d=\"M377.968 18.2261H367.254V93.9004H377.968V18.2261Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_63\" d=\"M351.419 31.2827H338.449V92.2012H351.419V31.2827Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_64\" d=\"M338.449 38.5176H327.226V89.8033H338.449V38.5176Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_65\" d=\"M351.419 43.4476L367.424 36.2485V89.8264H351.419V43.4476Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_6\">\n<path id=\"Vector_66\" d=\"M484.96 43.5227L474.547 36.3315C473.839 35.84 472.87 35.84 472.162 36.3315L461.749 43.5227V112.541H484.96V43.5227Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_67\" d=\"M445.731 48.04H462.136V149.435H445.731V48.04Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_68\" d=\"M449.04 40.0312H456.443V50.3993H449.04V40.0312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_69\" d=\"M484.321 48.8135H502.53V108.813H484.321V48.8135Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_70\" d=\"M502.13 45.2803H517.733V111.998H502.13V45.2803Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_71\" d=\"M517.307 35.5059H529.529V111.18H517.307V35.5059Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_72\" d=\"M547.595 48.5625H562.39V109.481H547.595V48.5625Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_73\" d=\"M562.39 55.7974H575.194V107.083H562.39V55.7974Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_74\" d=\"M547.571 46.2191L529.362 36.8135V106.813H547.571V46.2191Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_75\" d=\"M589.381 82.1595L578.968 76.8057C578.26 76.4398 577.291 76.4398 576.583 76.8057L566.17 82.1595V133.543H589.381V82.1595Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_76\" d=\"M588.742 88.873H606.95V133.543H588.742V88.873Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_77\" d=\"M606.55 83.8721H622.154V133.544H606.55V83.8721Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_78\" d=\"M621.727 77.2036H633.95V133.543H621.727V77.2036Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_79\" d=\"M651.991 88.4307L633.783 81.4282V133.543H651.991V88.4307Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Ground\">\n<g id=\"Vector_80\">\n<path d=\"M700 177.896H0V135.896H700V177.896Z\" fill=\"white\"/>\n<path d=\"M700 177.896H0V135.896H700V177.896Z\" fill=\"#206095\" fill-opacity=\"0.1\"/>\n</g>\n<g id=\"Vector_81\">\n<path d=\"M700 135.896H0V120.569H700V135.896Z\" fill=\"white\"/>\n<path d=\"M700 135.896H0V120.569H700V135.896Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n</g>\n<g id=\"Bush\">\n<g id=\"Vector_82\">\n<path d=\"M47.768 112.919C52.1165 115.137 54.8254 116.218 55.9657 117.354C57.1098 118.491 59.8109 121.801 58.2657 124.188C56.7166 126.574 56.2055 128.442 51.853 128.245C47.5006 128.049 45.7352 127.432 42.2124 127.754C38.6896 128.076 35.5756 126.496 34.8482 125.737C34.1209 124.978 31.9348 121.459 34.8286 118.345C37.7223 115.227 43.9266 110.961 47.768 112.919Z\" fill=\"white\"/>\n<path d=\"M47.768 112.919C52.1165 115.137 54.8254 116.218 55.9657 117.354C57.1098 118.491 59.8109 121.801 58.2657 124.188C56.7166 126.574 56.2055 128.442 51.853 128.245C47.5006 128.049 45.7352 127.432 42.2124 127.754C38.6896 128.076 35.5756 126.496 34.8482 125.737C34.1209 124.978 31.9348 121.459 34.8286 118.345C37.7223 115.227 43.9266 110.961 47.768 112.919Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_83\">\n<path d=\"M40.9347 110.729C37.9347 109.058 34.6399 108.972 30.3583 111.645C26.0766 114.323 25.1723 116.1 24.9128 117.283C24.6572 118.467 22.7071 119.214 23.2339 121.581C23.7608 123.948 28.8013 126.448 32.0686 126.735C35.3359 127.022 36.02 126.723 39.9006 126.122C43.7812 125.52 46.8991 124.624 48.3185 121.659C49.7418 118.695 44.1076 112.494 40.9307 110.729H40.9347Z\" fill=\"white\"/>\n<path d=\"M40.9347 110.729C37.9347 109.058 34.6399 108.972 30.3583 111.645C26.0766 114.323 25.1723 116.1 24.9128 117.283C24.6572 118.467 22.7071 119.214 23.2339 121.581C23.7608 123.948 28.8013 126.448 32.0686 126.735C35.3359 127.022 36.02 126.723 39.9006 126.122C43.7812 125.52 46.8991 124.624 48.3185 121.659C49.7418 118.695 44.1076 112.494 40.9307 110.729H40.9347Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_84\">\n<path d=\"M58.2209 114.583C64.9717 116.792 69.1786 117.87 70.9558 119.006C72.729 120.142 76.9242 123.445 74.518 125.835C72.1078 128.226 71.3097 130.093 64.547 129.905C57.7844 129.716 55.044 129.103 49.571 129.429C44.098 129.755 39.262 128.182 38.1336 127.424C37.0052 126.665 33.6121 123.15 38.1139 120.032C42.6158 116.91 52.2643 112.636 58.2287 114.59L58.2209 114.583Z\" fill=\"white\"/>\n<path d=\"M58.2209 114.583C64.9717 116.792 69.1786 117.87 70.9558 119.006C72.729 120.142 76.9242 123.445 74.518 125.835C72.1078 128.226 71.3097 130.093 64.547 129.905C57.7844 129.716 55.044 129.103 49.571 129.429C44.098 129.755 39.262 128.182 38.1336 127.424C37.0052 126.665 33.6121 123.15 38.1139 120.032C42.6158 116.91 52.2643 112.636 58.2287 114.59L58.2209 114.583Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_85\">\n<path d=\"M21.0754 124.149C19.3494 123.3 17.4543 123.248 14.9852 124.597C12.516 125.946 11.9931 126.846 11.8437 127.444C11.6943 128.041 10.5698 128.419 10.8725 129.614C11.1714 130.813 14.0691 132.087 15.9524 132.236C17.8357 132.386 18.2288 132.236 20.4621 131.938C22.6953 131.639 24.4921 131.187 25.3178 129.689C26.1434 128.191 22.9076 125.045 21.0833 124.145L21.0754 124.149Z\" fill=\"white\"/>\n<path d=\"M21.0754 124.149C19.3494 123.3 17.4543 123.248 14.9852 124.597C12.516 125.946 11.9931 126.846 11.8437 127.444C11.6943 128.041 10.5698 128.419 10.8725 129.614C11.1714 130.813 14.0691 132.087 15.9524 132.236C17.8357 132.386 18.2288 132.236 20.4621 131.938C22.6953 131.639 24.4921 131.187 25.3178 129.689C26.1434 128.191 22.9076 125.045 21.0833 124.145L21.0754 124.149Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_86\">\n<path d=\"M14.1043 125.642C12.7361 124.97 11.2342 124.931 9.27616 126C7.31815 127.07 6.90531 127.781 6.78343 128.257C6.66547 128.733 5.7769 129.028 6.0128 129.979C6.24871 130.931 8.54878 131.937 10.0389 132.059C11.529 132.177 11.8436 132.059 13.6129 131.823C15.3861 131.587 16.8094 131.229 17.4621 130.042C18.1147 128.855 15.5512 126.362 14.1043 125.65V125.642Z\" fill=\"white\"/>\n<path d=\"M14.1043 125.642C12.7361 124.97 11.2342 124.931 9.27616 126C7.31815 127.07 6.90531 127.781 6.78343 128.257C6.66547 128.733 5.7769 129.028 6.0128 129.979C6.24871 130.931 8.54878 131.937 10.0389 132.059C11.529 132.177 11.8436 132.059 13.6129 131.823C15.3861 131.587 16.8094 131.229 17.4621 130.042C18.1147 128.855 15.5512 126.362 14.1043 125.65V125.642Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_87\">\n<path d=\"M18.5984 121.176C16.8723 120.327 14.9772 120.276 12.5081 121.624C10.039 122.973 9.51604 123.873 9.36664 124.471C9.21723 125.069 8.09275 125.446 8.39549 126.641C8.69431 127.841 8.91449 129.626 10.7978 129.775C12.6811 129.924 15.7518 129.264 17.985 128.965C20.2183 128.666 22.0151 128.214 22.8407 126.716C23.6625 125.218 20.4306 122.073 18.6062 121.172L18.5984 121.176Z\" fill=\"white\"/>\n<path d=\"M18.5984 121.176C16.8723 120.327 14.9772 120.276 12.5081 121.624C10.039 122.973 9.51604 123.873 9.36664 124.471C9.21723 125.069 8.09275 125.446 8.39549 126.641C8.69431 127.841 8.91449 129.626 10.7978 129.775C12.6811 129.924 15.7518 129.264 17.985 128.965C20.2183 128.666 22.0151 128.214 22.8407 126.716C23.6625 125.218 20.4306 122.073 18.6062 121.172L18.5984 121.176Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Police station\" clip-path=\"url(#clip0_1849_10263)\">\n<g id=\"Vector_88\">\n<path d=\"M476.484 47.2856H307.516V127.819H476.484V47.2856Z\" fill=\"white\"/>\n<path d=\"M476.484 47.2856H307.516V127.819H476.484V47.2856Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<path id=\"Vector_89\" d=\"M477 45.1685H307V47.2905H477V45.1685Z\" fill=\"#003C57\"/>\n<g id=\"Vector_90\">\n<path d=\"M414.975 39.9351H369.025V129.808H414.975V39.9351Z\" fill=\"white\"/>\n<path d=\"M414.975 39.9351H369.025V129.808H414.975V39.9351Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_91\" d=\"M415.614 37.813H368.391V39.935H415.614V37.813Z\" fill=\"#003C57\"/>\n<path id=\"Vector_92\" d=\"M363.839 52.5688H311.744V61.372H363.839V52.5688Z\" fill=\"white\"/>\n<path id=\"Vector_93\" d=\"M363.839 66.1133H311.744V75.2069H363.839V66.1133Z\" fill=\"white\"/>\n<path id=\"Vector_94\" d=\"M363.957 79.7314H311.744V88.5346H363.957V79.7314Z\" fill=\"white\"/>\n<path id=\"Vector_95\" d=\"M351.912 93.3105H311.744V102.114H351.912V93.3105Z\" fill=\"white\"/>\n<path id=\"Vector_96\" d=\"M351.912 106.274H311.744V115.077H351.912V106.274Z\" fill=\"white\"/>\n<path id=\"Vector_97\" d=\"M420.206 61.377L472.3 61.377V52.5738L420.206 52.5738V61.377Z\" fill=\"white\"/>\n<path id=\"Vector_98\" d=\"M420.206 75.2119H472.3V66.1183H420.206V75.2119Z\" fill=\"white\"/>\n<path id=\"Vector_99\" d=\"M420.083 88.5347H472.295V79.7315H420.083V88.5347Z\" fill=\"white\"/>\n<path id=\"Vector_100\" d=\"M432.127 102.119H472.295V93.3155H432.127V102.119Z\" fill=\"white\"/>\n<path id=\"Vector_101\" d=\"M432.127 115.072H472.295V106.269H432.127V115.072Z\" fill=\"white\"/>\n<g id=\"Vector_102\">\n<path d=\"M426.719 97.978H357.276V129.808H426.719V97.978Z\" fill=\"white\"/>\n<path d=\"M426.719 97.978H357.276V129.808H426.719V97.978Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<path id=\"Vector_103\" d=\"M428.341 95.856H355.658V97.978H428.341V95.856Z\" fill=\"#003C57\"/>\n<path id=\"Vector_104\" d=\"M374.044 111.493H376.399C381.359 111.493 385.386 115.525 385.386 120.493V129.813H365.053V120.493C365.053 115.525 369.079 111.493 374.039 111.493H374.044Z\" fill=\"white\"/>\n<g id=\"Vector_105\">\n<path d=\"M375.367 111.443H375.082V129.537H375.367V111.443Z\" fill=\"white\"/>\n<path d=\"M375.367 111.443H375.082V129.537H375.367V111.443Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_106\">\n<path d=\"M374.418 120.734C374.418 120.601 374.31 120.493 374.177 120.493C374.044 120.493 373.936 120.601 373.936 120.734V122.162C373.936 122.295 374.044 122.403 374.177 122.403C374.31 122.403 374.418 122.295 374.418 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M374.418 120.734C374.418 120.601 374.31 120.493 374.177 120.493C374.044 120.493 373.936 120.601 373.936 120.734V122.162C373.936 122.295 374.044 122.403 374.177 122.403C374.31 122.403 374.418 122.295 374.418 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_107\">\n<path d=\"M376.542 120.734C376.542 120.601 376.434 120.493 376.301 120.493C376.168 120.493 376.06 120.601 376.06 120.734V122.162C376.06 122.295 376.168 122.403 376.301 122.403C376.434 122.403 376.542 122.295 376.542 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M376.542 120.734C376.542 120.601 376.434 120.493 376.301 120.493C376.168 120.493 376.06 120.601 376.06 120.734V122.162C376.06 122.295 376.168 122.403 376.301 122.403C376.434 122.403 376.542 122.295 376.542 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_108\" d=\"M406.436 111.493H408.79C413.751 111.493 417.777 115.525 417.777 120.493V129.813H397.444V120.493C397.444 115.525 401.471 111.493 406.431 111.493H406.436Z\" fill=\"white\"/>\n<g id=\"Vector_109\">\n<path d=\"M407.758 111.443H407.473V129.537H407.758V111.443Z\" fill=\"white\"/>\n<path d=\"M407.758 111.443H407.473V129.537H407.758V111.443Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_110\">\n<path d=\"M406.809 120.734C406.809 120.601 406.702 120.493 406.569 120.493C406.435 120.493 406.328 120.601 406.328 120.734V122.162C406.328 122.295 406.435 122.403 406.569 122.403C406.702 122.403 406.809 122.295 406.809 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M406.809 120.734C406.809 120.601 406.702 120.493 406.569 120.493C406.435 120.493 406.328 120.601 406.328 120.734V122.162C406.328 122.295 406.435 122.403 406.569 122.403C406.702 122.403 406.809 122.295 406.809 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_111\">\n<path d=\"M408.938 120.734C408.938 120.601 408.83 120.493 408.697 120.493C408.564 120.493 408.456 120.601 408.456 120.734V122.162C408.456 122.295 408.564 122.403 408.697 122.403C408.83 122.403 408.938 122.295 408.938 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M408.938 120.734C408.938 120.601 408.83 120.493 408.697 120.493C408.564 120.493 408.456 120.601 408.456 120.734V122.162C408.456 122.295 408.564 122.403 408.697 122.403C408.83 122.403 408.938 122.295 408.938 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_112\">\n<path d=\"M418.293 100.285H365.707V109.528H418.293V100.285Z\" fill=\"white\"/>\n<path d=\"M418.293 100.285H365.707V109.528H418.293V100.285Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_113\">\n<path d=\"M411.283 71.5879H372.525V80.5289H411.283V71.5879Z\" fill=\"white\"/>\n<path d=\"M411.283 71.5879H372.525V80.5289H411.283V71.5879Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_114\">\n<path d=\"M411.283 84.8418H372.525V93.7828H411.283V84.8418Z\" fill=\"white\"/>\n<path d=\"M411.283 84.8418H372.525V93.7828H411.283V84.8418Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_115\">\n<path d=\"M411.283 58.3291H372.525V67.2701H411.283V58.3291Z\" fill=\"white\"/>\n<path d=\"M411.283 58.3291H372.525V67.2701H411.283V58.3291Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_116\">\n<path d=\"M411.283 45.1685H372.525V54.1095H411.283V45.1685Z\" fill=\"white\"/>\n<path d=\"M411.283 45.1685H372.525V54.1095H411.283V45.1685Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_117\">\n<path d=\"M392.327 41.5942H391.668V95.8558H392.327V41.5942Z\" fill=\"white\"/>\n<path d=\"M392.327 41.5942H391.668V95.8558H392.327V41.5942Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Group 39\">\n<g id=\"Vector_118\">\n<path d=\"M324.619 50.7915H323.96V118.642H324.619V50.7915Z\" fill=\"white\"/>\n<path d=\"M324.619 50.7915H323.96V118.642H324.619V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_119\">\n<path d=\"M339.082 50.7915H338.423V118.642H339.082V50.7915Z\" fill=\"white\"/>\n<path d=\"M339.082 50.7915H338.423V118.642H339.082V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_120\">\n<path d=\"M352.276 50.7915H351.618V118.642H352.276V50.7915Z\" fill=\"white\"/>\n<path d=\"M352.276 50.7915H351.618V118.642H352.276V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_121\">\n<path d=\"M432.456 50.7915H431.797V118.642H432.456V50.7915Z\" fill=\"white\"/>\n<path d=\"M432.456 50.7915H431.797V118.642H432.456V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_122\">\n<path d=\"M446.919 50.7915H446.26V118.642H446.919V50.7915Z\" fill=\"white\"/>\n<path d=\"M446.919 50.7915H446.26V118.642H446.919V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_123\">\n<path d=\"M460.114 50.7915H459.455V118.642H460.114V50.7915Z\" fill=\"white\"/>\n<path d=\"M460.114 50.7915H459.455V118.642H460.114V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n</g>\n<g id=\"POLICE\">\n<path d=\"M379.974 104.813H380.382C380.763 104.813 381.048 104.737 381.238 104.586C381.427 104.432 381.522 104.209 381.522 103.918C381.522 103.624 381.442 103.406 381.282 103.266C381.124 103.126 380.877 103.056 380.538 103.056H379.974V104.813ZM382.773 103.873C382.773 104.51 382.576 104.997 382.182 105.335C381.79 105.672 381.231 105.841 380.506 105.841H379.974V107.946H378.734V102.027H380.602C381.311 102.027 381.85 102.182 382.218 102.493C382.588 102.8 382.773 103.261 382.773 103.873Z\" fill=\"white\"/>\n<path d=\"M389.184 104.979C389.184 105.958 388.944 106.711 388.464 107.238C387.984 107.764 387.296 108.027 386.4 108.027C385.505 108.027 384.817 107.764 384.337 107.238C383.857 106.711 383.617 105.956 383.617 104.97C383.617 103.985 383.857 103.234 384.337 102.715C384.82 102.195 385.51 101.934 386.408 101.934C387.307 101.934 387.993 102.196 388.468 102.719C388.945 103.243 389.184 103.996 389.184 104.979ZM384.917 104.979C384.917 105.64 385.041 106.138 385.289 106.472C385.537 106.807 385.907 106.974 386.4 106.974C387.39 106.974 387.884 106.309 387.884 104.979C387.884 103.645 387.392 102.979 386.408 102.979C385.915 102.979 385.543 103.147 385.293 103.485C385.042 103.819 384.917 104.317 384.917 104.979Z\" fill=\"white\"/>\n<path d=\"M390.396 107.946V102.027H391.635V106.91H394.007V107.946H390.396Z\" fill=\"white\"/>\n<path d=\"M395.026 107.946V102.027H396.266V107.946H395.026Z\" fill=\"white\"/>\n<path d=\"M400.221 102.987C399.755 102.987 399.393 103.165 399.137 103.521C398.881 103.875 398.753 104.369 398.753 105.003C398.753 106.323 399.243 106.983 400.221 106.983C400.632 106.983 401.129 106.879 401.713 106.671V107.723C401.233 107.926 400.697 108.027 400.105 108.027C399.255 108.027 398.604 107.767 398.154 107.246C397.703 106.722 397.478 105.972 397.478 104.995C397.478 104.379 397.588 103.841 397.81 103.379C398.031 102.915 398.348 102.56 398.761 102.315C399.177 102.066 399.664 101.942 400.221 101.942C400.789 101.942 401.359 102.081 401.933 102.359L401.533 103.379C401.314 103.274 401.094 103.182 400.873 103.104C400.652 103.026 400.434 102.987 400.221 102.987Z\" fill=\"white\"/>\n<path d=\"M406.328 107.946H402.96V102.027H406.328V103.056H404.2V104.355H406.18V105.383H404.2V106.91H406.328V107.946Z\" fill=\"white\"/>\n</g>\n</g>\n<g id=\"Courts\">\n<g id=\"Building\">\n<g id=\"Rectangle 1\">\n<rect x=\"491.833\" y=\"68.813\" width=\"150\" height=\"56\" fill=\"white\"/>\n<rect x=\"491.833\" y=\"68.813\" width=\"150\" height=\"56\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Rectangle 3\">\n<rect x=\"488.833\" y=\"120.942\" width=\"154.713\" height=\"6.67484\" fill=\"white\"/>\n<rect x=\"488.833\" y=\"120.942\" width=\"154.713\" height=\"6.67484\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 2\">\n<path d=\"M497.297 57.813H636.368L641.833 68.813H491.833L497.297 57.813Z\" fill=\"white\"/>\n<path d=\"M497.297 57.813H636.368L641.833 68.813H491.833L497.297 57.813Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_124\">\n<path d=\"M551.731 70.3457H545.786V70.984C546.059 71.0995 546.254 71.367 546.254 71.6831V71.7317C546.254 72.1512 545.914 72.4916 545.494 72.4916H545.391C545.616 72.5463 545.786 72.747 545.786 72.9901V73.0205C545.786 73.3062 545.555 73.5312 545.275 73.5312H544.862V113.896H545.275C545.561 113.896 545.786 114.127 545.786 114.407V114.437C545.786 114.681 545.616 114.881 545.391 114.936H545.415C545.877 114.936 546.254 115.313 546.254 115.775V118.583H551.269V115.775C551.269 115.313 551.646 114.936 552.108 114.936H552.132C551.908 114.881 551.737 114.681 551.737 114.437V114.407C551.737 114.121 551.968 113.896 552.248 113.896H552.661V73.5372H552.248C551.962 73.5372 551.737 73.3062 551.737 73.0266V72.9962C551.737 72.753 551.908 72.5524 552.132 72.4977H552.029C551.61 72.4977 551.269 72.1573 551.269 71.7378V71.6892C551.269 71.3731 551.464 71.1056 551.737 70.9901V70.3518M569.81 70.3518H563.865V70.9901C564.139 71.1056 564.333 71.3731 564.333 71.6892V71.7378C564.333 72.1573 563.993 72.4977 563.573 72.4977H563.47C563.695 72.5524 563.865 72.753 563.865 72.9962V73.0266C563.865 73.3123 563.634 73.5372 563.354 73.5372H562.941V113.903H563.354C563.64 113.903 563.865 114.134 563.865 114.413V114.444C563.865 114.687 563.695 114.887 563.47 114.942H563.494C563.956 114.942 564.333 115.319 564.333 115.781V118.59H569.348V115.781C569.348 115.319 569.725 114.942 570.187 114.942H570.212C569.987 114.887 569.817 114.687 569.817 114.444V114.413C569.817 114.127 570.048 113.903 570.327 113.903H570.741V73.5372H570.327C570.041 73.5372 569.817 73.3062 569.817 73.0266V72.9962C569.817 72.753 569.987 72.5524 570.212 72.4977H570.108C569.689 72.4977 569.348 72.1573 569.348 71.7378V71.6892C569.348 71.3731 569.543 71.1056 569.817 70.9901V70.3518M587.89 70.3518H581.944V70.9901C582.218 71.1056 582.412 71.3731 582.412 71.6892V71.7378C582.412 72.1573 582.072 72.4977 581.653 72.4977H581.549C581.774 72.5524 581.944 72.753 581.944 72.9962V73.0266C581.944 73.3123 581.713 73.5372 581.434 73.5372H581.02V113.903H581.434C581.719 113.903 581.944 114.134 581.944 114.413V114.444C581.944 114.687 581.774 114.887 581.549 114.942H581.574C582.036 114.942 582.412 115.319 582.412 115.781V118.59H587.428V115.781C587.428 115.319 587.805 114.942 588.267 114.942H588.291C588.066 114.887 587.896 114.687 587.896 114.444V114.413C587.896 114.127 588.127 113.903 588.406 113.903H588.82V73.5372H588.406C588.121 73.5372 587.896 73.3062 587.896 73.0266V72.9962C587.896 72.753 588.066 72.5524 588.291 72.4977H588.188C587.768 72.4977 587.428 72.1573 587.428 71.7378V71.6892C587.428 71.3731 587.622 71.1056 587.896 70.9901V70.3518\" fill=\"white\"/>\n<path d=\"M551.731 70.3457H545.786V70.984C546.059 71.0995 546.254 71.367 546.254 71.6831V71.7317C546.254 72.1512 545.914 72.4916 545.494 72.4916H545.391C545.616 72.5463 545.786 72.747 545.786 72.9901V73.0205C545.786 73.3062 545.555 73.5312 545.275 73.5312H544.862V113.896H545.275C545.561 113.896 545.786 114.127 545.786 114.407V114.437C545.786 114.681 545.616 114.881 545.391 114.936H545.415C545.877 114.936 546.254 115.313 546.254 115.775V118.583H551.269V115.775C551.269 115.313 551.646 114.936 552.108 114.936H552.132C551.908 114.881 551.737 114.681 551.737 114.437V114.407C551.737 114.121 551.968 113.896 552.248 113.896H552.661V73.5372H552.248C551.962 73.5372 551.737 73.3062 551.737 73.0266V72.9962C551.737 72.753 551.908 72.5524 552.132 72.4977H552.029C551.61 72.4977 551.269 72.1573 551.269 71.7378V71.6892C551.269 71.3731 551.464 71.1056 551.737 70.9901V70.3518M569.81 70.3518H563.865V70.9901C564.139 71.1056 564.333 71.3731 564.333 71.6892V71.7378C564.333 72.1573 563.993 72.4977 563.573 72.4977H563.47C563.695 72.5524 563.865 72.753 563.865 72.9962V73.0266C563.865 73.3123 563.634 73.5372 563.354 73.5372H562.941V113.903H563.354C563.64 113.903 563.865 114.134 563.865 114.413V114.444C563.865 114.687 563.695 114.887 563.47 114.942H563.494C563.956 114.942 564.333 115.319 564.333 115.781V118.59H569.348V115.781C569.348 115.319 569.725 114.942 570.187 114.942H570.212C569.987 114.887 569.817 114.687 569.817 114.444V114.413C569.817 114.127 570.048 113.903 570.327 113.903H570.741V73.5372H570.327C570.041 73.5372 569.817 73.3062 569.817 73.0266V72.9962C569.817 72.753 569.987 72.5524 570.212 72.4977H570.108C569.689 72.4977 569.348 72.1573 569.348 71.7378V71.6892C569.348 71.3731 569.543 71.1056 569.817 70.9901V70.3518M587.89 70.3518H581.944V70.9901C582.218 71.1056 582.412 71.3731 582.412 71.6892V71.7378C582.412 72.1573 582.072 72.4977 581.653 72.4977H581.549C581.774 72.5524 581.944 72.753 581.944 72.9962V73.0266C581.944 73.3123 581.713 73.5372 581.434 73.5372H581.02V113.903H581.434C581.719 113.903 581.944 114.134 581.944 114.413V114.444C581.944 114.687 581.774 114.887 581.549 114.942H581.574C582.036 114.942 582.412 115.319 582.412 115.781V118.59H587.428V115.781C587.428 115.319 587.805 114.942 588.267 114.942H588.291C588.066 114.887 587.896 114.687 587.896 114.444V114.413C587.896 114.127 588.127 113.903 588.406 113.903H588.82V73.5372H588.406C588.121 73.5372 587.896 73.3062 587.896 73.0266V72.9962C587.896 72.753 588.066 72.5524 588.291 72.4977H588.188C587.768 72.4977 587.428 72.1573 587.428 71.7378V71.6892C587.428 71.3731 587.622 71.1056 587.896 70.9901V70.3518\" fill=\"#206095\" fill-opacity=\"0.55\"/>\n</g>\n<path id=\"Vector_125\" d=\"M545.78 70.3457H533.658V70.984C533.749 70.9475 533.846 70.9293 533.95 70.9293H545.494C545.597 70.9293 545.695 70.9475 545.786 70.984V70.3457\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_126\" d=\"M599.975 66.3882H566.886H533.658V67.7377H599.975V66.3882Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_127\" d=\"M563.859 70.3457H551.731V70.984C551.822 70.9475 551.92 70.9293 552.023 70.9293H563.567C563.671 70.9293 563.768 70.9475 563.859 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_128\" d=\"M581.932 70.3457H569.804V70.984C569.896 70.9475 569.993 70.9293 570.096 70.9293H581.64C581.744 70.9293 581.841 70.9475 581.932 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_129\" d=\"M600.006 70.3457H587.878V70.984C587.969 70.9475 588.066 70.9293 588.169 70.9293H599.714C599.817 70.9293 599.914 70.9475 600.006 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<g id=\"Vector_130\">\n<path d=\"M599.075 73.5371H588.808V113.902H599.075V73.5371Z\" fill=\"white\"/>\n<path d=\"M599.075 73.5371H588.808V113.902H599.075V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_131\">\n<path d=\"M599.714 70.9292H588.17C588.066 70.9292 587.969 70.9474 587.878 70.9839C587.604 71.0994 587.41 71.3669 587.41 71.683V71.7316C587.41 72.1511 587.75 72.4915 588.17 72.4915H588.273C588.309 72.4855 588.352 72.4794 588.394 72.4794H599.495C599.537 72.4794 599.574 72.4794 599.617 72.4915H599.72C600.139 72.4915 600.48 72.1511 600.48 71.7316V71.683C600.48 71.3669 600.285 71.0994 600.012 70.9839C599.92 70.9474 599.823 70.9292 599.72 70.9292\" fill=\"white\"/>\n<path d=\"M599.714 70.9292H588.17C588.066 70.9292 587.969 70.9474 587.878 70.9839C587.604 71.0994 587.41 71.3669 587.41 71.683V71.7316C587.41 72.1511 587.75 72.4915 588.17 72.4915H588.273C588.309 72.4855 588.352 72.4794 588.394 72.4794H599.495C599.537 72.4794 599.574 72.4794 599.617 72.4915H599.72C600.139 72.4915 600.48 72.1511 600.48 71.7316V71.683C600.48 71.3669 600.285 71.0994 600.012 70.9839C599.92 70.9474 599.823 70.9292 599.72 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_132\">\n<path d=\"M599.489 72.4795H588.388C588.346 72.4795 588.309 72.4795 588.267 72.4917C588.042 72.5464 587.872 72.747 587.872 72.9901V73.0205C587.872 73.3063 588.103 73.5312 588.382 73.5312H599.483C599.768 73.5312 599.993 73.3002 599.993 73.0205V72.9901C599.993 72.747 599.823 72.5464 599.598 72.4917C599.562 72.4856 599.519 72.4795 599.477 72.4795\" fill=\"white\"/>\n<path d=\"M599.489 72.4795H588.388C588.346 72.4795 588.309 72.4795 588.267 72.4917C588.042 72.5464 587.872 72.747 587.872 72.9901V73.0205C587.872 73.3063 588.103 73.5312 588.382 73.5312H599.483C599.768 73.5312 599.993 73.3002 599.993 73.0205V72.9901C599.993 72.747 599.823 72.5464 599.598 72.4917C599.562 72.4856 599.519 72.4795 599.477 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_133\">\n<path d=\"M599.635 114.942H599.61C599.574 114.948 599.531 114.954 599.489 114.954H588.388C588.346 114.954 588.309 114.954 588.267 114.942H588.242C587.78 114.942 587.404 115.319 587.404 115.781V118.589H600.461V115.781C600.461 115.319 600.085 114.942 599.623 114.942\" fill=\"white\"/>\n<path d=\"M599.635 114.942H599.61C599.574 114.948 599.531 114.954 599.489 114.954H588.388C588.346 114.954 588.309 114.954 588.267 114.942H588.242C587.78 114.942 587.404 115.319 587.404 115.781V118.589H600.461V115.781C600.461 115.319 600.085 114.942 599.623 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_134\">\n<path d=\"M599.489 113.902H588.388C588.103 113.902 587.878 114.133 587.878 114.413V114.443C587.878 114.687 588.048 114.887 588.273 114.942C588.309 114.948 588.352 114.954 588.394 114.954H599.495C599.537 114.954 599.574 114.954 599.616 114.942C599.841 114.887 600.012 114.687 600.012 114.443V114.413C600.012 114.127 599.781 113.902 599.501 113.902\" fill=\"white\"/>\n<path d=\"M599.489 113.902H588.388C588.103 113.902 587.878 114.133 587.878 114.413V114.443C587.878 114.687 588.048 114.887 588.273 114.942C588.309 114.948 588.352 114.954 588.394 114.954H599.495C599.537 114.954 599.574 114.954 599.616 114.942C599.841 114.887 600.012 114.687 600.012 114.443V114.413C600.012 114.127 599.781 113.902 599.501 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_135\">\n<path d=\"M544.856 73.5371H534.582V113.902H544.856V73.5371Z\" fill=\"white\"/>\n<path d=\"M544.856 73.5371H534.582V113.902H544.856V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_136\">\n<path d=\"M545.494 70.9292H533.95C533.846 70.9292 533.749 70.9474 533.658 70.9839C533.384 71.0994 533.19 71.3669 533.19 71.683V71.7316C533.19 72.1511 533.53 72.4915 533.95 72.4915H534.053C534.09 72.4855 534.132 72.4794 534.175 72.4794H545.275C545.318 72.4794 545.354 72.4794 545.397 72.4915H545.5C545.92 72.4915 546.26 72.1511 546.26 71.7316V71.683C546.26 71.3669 546.065 71.0994 545.792 70.9839C545.701 70.9474 545.603 70.9292 545.5 70.9292\" fill=\"white\"/>\n<path d=\"M545.494 70.9292H533.95C533.846 70.9292 533.749 70.9474 533.658 70.9839C533.384 71.0994 533.19 71.3669 533.19 71.683V71.7316C533.19 72.1511 533.53 72.4915 533.95 72.4915H534.053C534.09 72.4855 534.132 72.4794 534.175 72.4794H545.275C545.318 72.4794 545.354 72.4794 545.397 72.4915H545.5C545.92 72.4915 546.26 72.1511 546.26 71.7316V71.683C546.26 71.3669 546.065 71.0994 545.792 70.9839C545.701 70.9474 545.603 70.9292 545.5 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_137\">\n<path d=\"M545.269 72.4795H534.169C534.126 72.4795 534.09 72.4795 534.047 72.4917C533.822 72.5464 533.652 72.747 533.652 72.9901V73.0205C533.652 73.3063 533.883 73.5312 534.163 73.5312H545.263C545.549 73.5312 545.774 73.3002 545.774 73.0205V72.9901C545.774 72.747 545.603 72.5464 545.378 72.4917C545.342 72.4856 545.299 72.4795 545.257 72.4795\" fill=\"white\"/>\n<path d=\"M545.269 72.4795H534.169C534.126 72.4795 534.09 72.4795 534.047 72.4917C533.822 72.5464 533.652 72.747 533.652 72.9901V73.0205C533.652 73.3063 533.883 73.5312 534.163 73.5312H545.263C545.549 73.5312 545.774 73.3002 545.774 73.0205V72.9901C545.774 72.747 545.603 72.5464 545.378 72.4917C545.342 72.4856 545.299 72.4795 545.257 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_138\">\n<path d=\"M545.409 114.942H545.385C545.348 114.948 545.306 114.954 545.269 114.954H534.169C534.126 114.954 534.09 114.954 534.053 114.942H534.029C533.567 114.942 533.19 115.319 533.19 115.781V118.589H546.248V115.781C546.248 115.319 545.871 114.942 545.409 114.942Z\" fill=\"white\"/>\n<path d=\"M545.409 114.942H545.385C545.348 114.948 545.306 114.954 545.269 114.954H534.169C534.126 114.954 534.09 114.954 534.053 114.942H534.029C533.567 114.942 533.19 115.319 533.19 115.781V118.589H546.248V115.781C546.248 115.319 545.871 114.942 545.409 114.942Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_139\">\n<path d=\"M545.269 113.902H534.169C533.883 113.902 533.658 114.133 533.658 114.413V114.443C533.658 114.687 533.828 114.887 534.053 114.942C534.09 114.948 534.132 114.954 534.169 114.954H545.269C545.312 114.954 545.348 114.954 545.385 114.942C545.609 114.887 545.78 114.687 545.78 114.443V114.413C545.78 114.127 545.549 113.902 545.269 113.902Z\" fill=\"white\"/>\n<path d=\"M545.269 113.902H534.169C533.883 113.902 533.658 114.133 533.658 114.413V114.443C533.658 114.687 533.828 114.887 534.053 114.942C534.09 114.948 534.132 114.954 534.169 114.954H545.269C545.312 114.954 545.348 114.954 545.385 114.942C545.609 114.887 545.78 114.687 545.78 114.443V114.413C545.78 114.127 545.549 113.902 545.269 113.902Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_140\">\n<path d=\"M562.929 73.5371H552.661V113.902H562.929V73.5371Z\" fill=\"white\"/>\n<path d=\"M562.929 73.5371H552.661V113.902H562.929V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_141\">\n<path d=\"M563.567 70.9292H552.023C551.92 70.9292 551.822 70.9474 551.731 70.9839C551.458 71.0994 551.263 71.3669 551.263 71.683V71.7316C551.263 72.1511 551.604 72.4915 552.023 72.4915H552.126C552.163 72.4855 552.205 72.4794 552.248 72.4794H563.348C563.391 72.4794 563.427 72.4794 563.47 72.4915H563.573C563.993 72.4915 564.333 72.1511 564.333 71.7316V71.683C564.333 71.3669 564.139 71.0994 563.865 70.9839C563.774 70.9474 563.677 70.9292 563.573 70.9292\" fill=\"white\"/>\n<path d=\"M563.567 70.9292H552.023C551.92 70.9292 551.822 70.9474 551.731 70.9839C551.458 71.0994 551.263 71.3669 551.263 71.683V71.7316C551.263 72.1511 551.604 72.4915 552.023 72.4915H552.126C552.163 72.4855 552.205 72.4794 552.248 72.4794H563.348C563.391 72.4794 563.427 72.4794 563.47 72.4915H563.573C563.993 72.4915 564.333 72.1511 564.333 71.7316V71.683C564.333 71.3669 564.139 71.0994 563.865 70.9839C563.774 70.9474 563.677 70.9292 563.573 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_142\">\n<path d=\"M563.342 72.4795H552.242C552.199 72.4795 552.163 72.4795 552.12 72.4917C551.895 72.5464 551.725 72.747 551.725 72.9901V73.0205C551.725 73.3063 551.956 73.5312 552.236 73.5312H563.336C563.622 73.5312 563.847 73.3002 563.847 73.0205V72.9901C563.847 72.747 563.677 72.5464 563.452 72.4917C563.415 72.4856 563.373 72.4795 563.33 72.4795\" fill=\"white\"/>\n<path d=\"M563.342 72.4795H552.242C552.199 72.4795 552.163 72.4795 552.12 72.4917C551.895 72.5464 551.725 72.747 551.725 72.9901V73.0205C551.725 73.3063 551.956 73.5312 552.236 73.5312H563.336C563.622 73.5312 563.847 73.3002 563.847 73.0205V72.9901C563.847 72.747 563.677 72.5464 563.452 72.4917C563.415 72.4856 563.373 72.4795 563.33 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_143\">\n<path d=\"M563.482 114.942H563.458C563.421 114.948 563.379 114.954 563.336 114.954H552.236C552.193 114.954 552.157 114.954 552.12 114.942H552.096C551.634 114.942 551.257 115.319 551.257 115.781V118.589H564.315V115.781C564.315 115.319 563.938 114.942 563.476 114.942\" fill=\"white\"/>\n<path d=\"M563.482 114.942H563.458C563.421 114.948 563.379 114.954 563.336 114.954H552.236C552.193 114.954 552.157 114.954 552.12 114.942H552.096C551.634 114.942 551.257 115.319 551.257 115.781V118.589H564.315V115.781C564.315 115.319 563.938 114.942 563.476 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_144\">\n<path d=\"M563.342 113.902H552.242C551.956 113.902 551.731 114.133 551.731 114.413V114.443C551.731 114.687 551.901 114.887 552.126 114.942C552.163 114.948 552.205 114.954 552.242 114.954H563.342C563.385 114.954 563.421 114.954 563.464 114.942C563.689 114.887 563.859 114.687 563.859 114.443V114.413C563.859 114.127 563.628 113.902 563.348 113.902\" fill=\"white\"/>\n<path d=\"M563.342 113.902H552.242C551.956 113.902 551.731 114.133 551.731 114.413V114.443C551.731 114.687 551.901 114.887 552.126 114.942C552.163 114.948 552.205 114.954 552.242 114.954H563.342C563.385 114.954 563.421 114.954 563.464 114.942C563.689 114.887 563.859 114.687 563.859 114.443V114.413C563.859 114.127 563.628 113.902 563.348 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_145\">\n<path d=\"M581.002 73.5371H570.735V113.902H581.002V73.5371Z\" fill=\"white\"/>\n<path d=\"M581.002 73.5371H570.735V113.902H581.002V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_146\">\n<path d=\"M581.641 70.9292H570.096C569.993 70.9292 569.896 70.9474 569.805 70.9839C569.531 71.0994 569.336 71.3669 569.336 71.683V71.7316C569.336 72.1511 569.677 72.4915 570.096 72.4915H570.2C570.236 72.4855 570.279 72.4794 570.321 72.4794H581.422C581.464 72.4794 581.501 72.4794 581.543 72.4915H581.647C582.066 72.4915 582.407 72.1511 582.407 71.7316V71.683C582.407 71.3669 582.212 71.0994 581.938 70.9839C581.847 70.9474 581.75 70.9292 581.647 70.9292\" fill=\"white\"/>\n<path d=\"M581.641 70.9292H570.096C569.993 70.9292 569.896 70.9474 569.805 70.9839C569.531 71.0994 569.336 71.3669 569.336 71.683V71.7316C569.336 72.1511 569.677 72.4915 570.096 72.4915H570.2C570.236 72.4855 570.279 72.4794 570.321 72.4794H581.422C581.464 72.4794 581.501 72.4794 581.543 72.4915H581.647C582.066 72.4915 582.407 72.1511 582.407 71.7316V71.683C582.407 71.3669 582.212 71.0994 581.938 70.9839C581.847 70.9474 581.75 70.9292 581.647 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_147\">\n<path d=\"M581.416 72.4795H570.315C570.273 72.4795 570.236 72.4795 570.193 72.4917C569.969 72.5464 569.798 72.747 569.798 72.9901V73.0205C569.798 73.3063 570.029 73.5312 570.309 73.5312H581.409C581.695 73.5312 581.92 73.3002 581.92 73.0205V72.9901C581.92 72.747 581.75 72.5464 581.525 72.4917C581.488 72.4856 581.446 72.4795 581.403 72.4795\" fill=\"white\"/>\n<path d=\"M581.416 72.4795H570.315C570.273 72.4795 570.236 72.4795 570.193 72.4917C569.969 72.5464 569.798 72.747 569.798 72.9901V73.0205C569.798 73.3063 570.029 73.5312 570.309 73.5312H581.409C581.695 73.5312 581.92 73.3002 581.92 73.0205V72.9901C581.92 72.747 581.75 72.5464 581.525 72.4917C581.488 72.4856 581.446 72.4795 581.403 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_148\">\n<path d=\"M581.562 114.942H581.537C581.501 114.948 581.458 114.954 581.416 114.954H570.315C570.273 114.954 570.236 114.954 570.2 114.942H570.175C569.713 114.942 569.336 115.319 569.336 115.781V118.589H582.394V115.781C582.394 115.319 582.017 114.942 581.555 114.942\" fill=\"white\"/>\n<path d=\"M581.562 114.942H581.537C581.501 114.948 581.458 114.954 581.416 114.954H570.315C570.273 114.954 570.236 114.954 570.2 114.942H570.175C569.713 114.942 569.336 115.319 569.336 115.781V118.589H582.394V115.781C582.394 115.319 582.017 114.942 581.555 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_149\">\n<path d=\"M581.416 113.902H570.315C570.029 113.902 569.804 114.133 569.804 114.413V114.443C569.804 114.687 569.975 114.887 570.2 114.942C570.236 114.948 570.279 114.954 570.315 114.954H581.416C581.458 114.954 581.495 114.954 581.537 114.942C581.762 114.887 581.932 114.687 581.932 114.443V114.413C581.932 114.127 581.701 113.902 581.422 113.902\" fill=\"white\"/>\n<path d=\"M581.416 113.902H570.315C570.029 113.902 569.804 114.133 569.804 114.413V114.443C569.804 114.687 569.975 114.887 570.2 114.942C570.236 114.948 570.279 114.954 570.315 114.954H581.416C581.458 114.954 581.495 114.954 581.537 114.942C581.762 114.887 581.932 114.687 581.932 114.443V114.413C581.932 114.127 581.701 113.902 581.422 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_150\">\n<path d=\"M600.431 67.7378H533.336C533.038 67.7378 532.801 67.9749 532.801 68.2728V69.8108C532.801 70.1086 533.038 70.3457 533.336 70.3457H600.425C600.723 70.3457 600.96 70.1086 600.96 69.8108V68.2728C600.96 67.9749 600.723 67.7378 600.425 67.7378\" fill=\"white\"/>\n<path d=\"M600.431 67.7378H533.336C533.038 67.7378 532.801 67.9749 532.801 68.2728V69.8108C532.801 70.1086 533.038 70.3457 533.336 70.3457H600.425C600.723 70.3457 600.96 70.1086 600.96 69.8108V68.2728C600.96 67.9749 600.723 67.7378 600.425 67.7378\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_151\">\n<path d=\"M566.899 43.8833L549.026 54.85L534.083 64.0173H599.72L584.777 54.85L566.886 43.9076\" fill=\"white\"/>\n<path d=\"M566.899 43.8833L549.026 54.85L534.083 64.0173H599.72L584.777 54.85L566.886 43.9076\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_152\">\n<path d=\"M534.065 64.0416L549.008 54.8743L566.886 43.9076L584.759 54.8743L599.702 64.0416H534.065ZM566.886 41.4517C566.576 41.4517 566.266 41.5368 565.987 41.707L547.786 52.8743L530.941 63.2088C530.679 63.3668 530.46 63.5979 530.327 63.8593C530.187 64.1207 530.12 64.4003 530.126 64.6678C530.126 65.0994 530.278 65.5067 530.576 65.835C530.728 65.9991 530.916 66.1389 531.135 66.2362C531.354 66.3335 531.597 66.3882 531.84 66.3882H601.926C602.17 66.3882 602.413 66.3395 602.632 66.2362C602.96 66.0903 603.221 65.8471 603.385 65.5675C603.556 65.2939 603.641 64.9839 603.641 64.6617C603.641 64.3942 603.58 64.1146 603.44 63.8532C603.3 63.5918 603.081 63.3608 602.826 63.2027L585.981 52.8682L567.78 41.707C567.507 41.5368 567.197 41.4517 566.886 41.4517Z\" fill=\"white\"/>\n<path d=\"M534.065 64.0416L549.008 54.8743L566.886 43.9076L584.759 54.8743L599.702 64.0416H534.065ZM566.886 41.4517C566.576 41.4517 566.266 41.5368 565.987 41.707L547.786 52.8743L530.941 63.2088C530.679 63.3668 530.46 63.5979 530.327 63.8593C530.187 64.1207 530.12 64.4003 530.126 64.6678C530.126 65.0994 530.278 65.5067 530.576 65.835C530.728 65.9991 530.916 66.1389 531.135 66.2362C531.354 66.3335 531.597 66.3882 531.84 66.3882H601.926C602.17 66.3882 602.413 66.3395 602.632 66.2362C602.96 66.0903 603.221 65.8471 603.385 65.5675C603.556 65.2939 603.641 64.9839 603.641 64.6617C603.641 64.3942 603.58 64.1146 603.44 63.8532C603.3 63.5918 603.081 63.3608 602.826 63.2027L585.981 52.8682L567.78 41.707C567.507 41.5368 567.197 41.4517 566.886 41.4517Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<path id=\"Vector_153\" d=\"M603.241 118.589H601.071H588.007H582.997H569.933H564.918H551.86H546.845H533.787H530.833V121.617H603.241V118.589Z\" fill=\"#A6BFD5\"/>\n<g id=\"Vector_154\">\n<path d=\"M605.144 121.617H603.095H530.687H528.833V125.75H605.144V121.617Z\" fill=\"white\"/>\n<path d=\"M605.144 121.617H603.095H530.687H528.833V125.75H605.144V121.617Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 6\">\n<rect x=\"496.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"496.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 7\">\n<rect x=\"513.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"513.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 8\">\n<rect x=\"496.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"496.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 9\">\n<rect x=\"513.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"513.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 10\">\n<rect x=\"604.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"604.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 11\">\n<rect x=\"621.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"621.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 12\">\n<rect x=\"604.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"604.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 13\">\n<rect x=\"621.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"621.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 8_2\">\n<rect x=\"495.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"495.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 9_2\">\n<rect x=\"512.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"512.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 10_2\">\n<rect x=\"495.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"495.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 11_2\">\n<rect x=\"512.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"512.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 12_2\">\n<rect x=\"603.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"603.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 13_2\">\n<rect x=\"620.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"620.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 14\">\n<rect x=\"603.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"603.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 15\">\n<rect x=\"620.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"620.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Icon\">\n<g id=\"Circle\">\n<path id=\"Vector_155\" d=\"M566.833 61.4873C570.146 61.4873 572.833 58.801 572.833 55.4873C572.833 52.1736 570.146 49.4873 566.833 49.4873C563.519 49.4873 560.833 52.1736 560.833 55.4873C560.833 58.801 563.519 61.4873 566.833 61.4873Z\" fill=\"white\"/>\n</g>\n<g id=\"Artwork 64x64\">\n<path id=\"Vector_156\" d=\"M570.64 56.1689L569.687 53.4416C569.681 53.42 569.67 53.3997 569.657 53.3816C569.646 53.3692 569.634 53.3578 569.621 53.3475H569.613C569.6 53.338 569.585 53.3302 569.57 53.3244H569.549C569.536 53.316 569.521 53.3096 569.506 53.3053H567.242V52.6234C567.242 52.5149 567.199 52.4109 567.122 52.3342C567.045 52.2575 566.941 52.2144 566.833 52.2144C566.724 52.2144 566.62 52.2575 566.544 52.3342C566.467 52.4109 566.424 52.5149 566.424 52.6234V53.3053H564.16C564.147 53.3061 564.134 53.3084 564.122 53.3121H564.101C564.086 53.3179 564.071 53.3257 564.058 53.3353H564.05C564.037 53.3455 564.025 53.3569 564.014 53.3694C564.001 53.3874 563.991 53.4077 563.984 53.4294L563.03 56.1566C563.019 56.1875 563.017 56.2204 563.021 56.2527C563.026 56.2849 563.038 56.3155 563.057 56.3421C563.076 56.3687 563.101 56.3904 563.13 56.4056C563.159 56.4207 563.191 56.4289 563.223 56.4294H565.132C565.165 56.4289 565.197 56.4207 565.226 56.4056C565.255 56.3904 565.28 56.3687 565.298 56.3421C565.317 56.3155 565.33 56.2849 565.334 56.2527C565.339 56.2204 565.336 56.1875 565.326 56.1566L564.464 53.7144H566.424V57.0444L565.319 58.3057C565.284 58.3451 565.261 58.3939 565.253 58.4461C565.245 58.4983 565.253 58.5516 565.274 58.5997C565.296 58.6478 565.332 58.6885 565.376 58.7169C565.421 58.7453 565.472 58.7602 565.525 58.7598H568.141C568.193 58.76 568.245 58.745 568.289 58.7167C568.333 58.6883 568.368 58.6478 568.39 58.6C568.412 58.5522 568.419 58.4991 568.411 58.4471C568.404 58.3952 568.381 58.3465 568.346 58.3071L567.242 57.0444V53.7144H569.201L568.344 56.1689C568.333 56.1998 568.331 56.2327 568.335 56.2649C568.34 56.2972 568.353 56.3278 568.371 56.3544C568.39 56.3809 568.415 56.4027 568.444 56.4178C568.473 56.433 568.505 56.4412 568.537 56.4416H570.446C570.479 56.4412 570.511 56.433 570.54 56.4178C570.569 56.4027 570.594 56.3809 570.612 56.3544C570.631 56.3278 570.644 56.2972 570.648 56.2649C570.653 56.2327 570.65 56.1998 570.64 56.1689ZM563.507 56.0325L564.174 54.1234L564.841 56.0325H563.507ZM568.825 56.0325L569.492 54.1234L570.159 56.0325H568.825Z\" fill=\"#206095\"/>\n<g id=\"Vector_157\">\n<path d=\"M566.833 54.1903C567.209 54.1903 567.515 53.885 567.515 53.5085C567.515 53.1319 567.209 52.8267 566.833 52.8267C566.456 52.8267 566.151 53.1319 566.151 53.5085C566.151 53.885 566.456 54.1903 566.833 54.1903Z\" fill=\"white\"/>\n<path d=\"M566.833 54.1903C567.209 54.1903 567.515 53.885 567.515 53.5085C567.515 53.1319 567.209 52.8267 566.833 52.8267C566.456 52.8267 566.151 53.1319 566.151 53.5085C566.151 53.885 566.456 54.1903 566.833 54.1903Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_158\">\n<path d=\"M565.022 55.9483C565.07 55.9478 565.119 55.9589 565.162 55.9808C565.206 56.0026 565.243 56.0345 565.272 56.0738C565.301 56.1131 565.32 56.1587 565.328 56.2068C565.335 56.255 565.331 56.3042 565.316 56.3505C565.233 56.5867 565.078 56.7912 564.873 56.9358C564.669 57.0805 564.424 57.1581 564.174 57.1581C563.923 57.1581 563.679 57.0805 563.474 56.9358C563.269 56.7912 563.115 56.5867 563.031 56.3505C563.016 56.3042 563.012 56.255 563.019 56.2068C563.027 56.1587 563.046 56.1131 563.075 56.0738C563.104 56.0345 563.141 56.0026 563.185 55.9808C563.229 55.9589 563.277 55.9478 563.325 55.9483H565.022Z\" fill=\"white\"/>\n<path d=\"M565.022 55.9483C565.07 55.9478 565.119 55.9589 565.162 55.9808C565.206 56.0026 565.243 56.0345 565.272 56.0738C565.301 56.1131 565.32 56.1587 565.328 56.2068C565.335 56.255 565.331 56.3042 565.316 56.3505C565.233 56.5867 565.078 56.7912 564.873 56.9358C564.669 57.0805 564.424 57.1581 564.174 57.1581C563.923 57.1581 563.679 57.0805 563.474 56.9358C563.269 56.7912 563.115 56.5867 563.031 56.3505C563.016 56.3042 563.012 56.255 563.019 56.2068C563.027 56.1587 563.046 56.1131 563.075 56.0738C563.104 56.0345 563.141 56.0026 563.185 55.9808C563.229 55.9589 563.277 55.9478 563.325 55.9483H565.022Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_159\">\n<path d=\"M570.34 55.9483C570.389 55.9478 570.437 55.9589 570.48 55.9808C570.524 56.0026 570.562 56.0345 570.59 56.0738C570.619 56.1131 570.638 56.1587 570.646 56.2068C570.654 56.255 570.65 56.3042 570.634 56.3505C570.551 56.5867 570.396 56.7912 570.191 56.9358C569.987 57.0805 569.742 57.1581 569.492 57.1581C569.241 57.1581 568.997 57.0805 568.792 56.9358C568.587 56.7912 568.433 56.5867 568.349 56.3505C568.334 56.3042 568.33 56.255 568.338 56.2068C568.345 56.1587 568.364 56.1131 568.393 56.0738C568.422 56.0345 568.46 56.0026 568.503 55.9808C568.547 55.9589 568.595 55.9478 568.644 55.9483H570.34Z\" fill=\"white\"/>\n<path d=\"M570.34 55.9483C570.389 55.9478 570.437 55.9589 570.48 55.9808C570.524 56.0026 570.562 56.0345 570.59 56.0738C570.619 56.1131 570.638 56.1587 570.646 56.2068C570.654 56.255 570.65 56.3042 570.634 56.3505C570.551 56.5867 570.396 56.7912 570.191 56.9358C569.987 57.0805 569.742 57.1581 569.492 57.1581C569.241 57.1581 568.997 57.0805 568.792 56.9358C568.587 56.7912 568.433 56.5867 568.349 56.3505C568.334 56.3042 568.33 56.255 568.338 56.2068C568.345 56.1587 568.364 56.1131 568.393 56.0738C568.422 56.0345 568.46 56.0026 568.503 55.9808C568.547 55.9589 568.595 55.9478 568.644 55.9483H570.34Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n</g>\n</g>\n<g id=\"Bush_2\">\n<g id=\"Vector_160\">\n<path d=\"M681.329 111.962C685.678 114.179 688.387 115.261 689.527 116.397C690.671 117.533 693.372 120.844 691.827 123.23C690.278 125.617 689.767 127.484 685.415 127.288C681.062 127.091 679.297 126.474 675.774 126.796C672.251 127.119 669.137 125.538 668.41 124.779C667.682 124.021 665.496 120.502 668.39 117.388C671.284 114.27 677.488 110.004 681.329 111.962Z\" fill=\"white\"/>\n<path d=\"M681.329 111.962C685.678 114.179 688.387 115.261 689.527 116.397C690.671 117.533 693.372 120.844 691.827 123.23C690.278 125.617 689.767 127.484 685.415 127.288C681.062 127.091 679.297 126.474 675.774 126.796C672.251 127.119 669.137 125.538 668.41 124.779C667.682 124.021 665.496 120.502 668.39 117.388C671.284 114.27 677.488 110.004 681.329 111.962Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_161\">\n<path d=\"M669.782 109.772C666.782 108.101 663.487 108.014 659.205 110.688C654.924 113.365 654.019 115.142 653.76 116.326C653.504 117.509 651.554 118.256 652.081 120.623C652.608 122.99 657.648 125.491 660.916 125.778C664.183 126.065 664.867 125.766 668.748 125.164C672.628 124.563 675.746 123.666 677.166 120.702C678.589 117.737 672.955 111.537 669.778 109.772H669.782Z\" fill=\"white\"/>\n<path d=\"M669.782 109.772C666.782 108.101 663.487 108.014 659.205 110.688C654.924 113.365 654.019 115.142 653.76 116.326C653.504 117.509 651.554 118.256 652.081 120.623C652.608 122.99 657.648 125.491 660.916 125.778C664.183 126.065 664.867 125.766 668.748 125.164C672.628 124.563 675.746 123.666 677.166 120.702C678.589 117.737 672.955 111.537 669.778 109.772H669.782Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_162\">\n<path d=\"M658.136 113.625C664.887 115.835 669.094 116.912 670.871 118.048C672.644 119.185 676.839 122.487 674.433 124.878C672.023 127.268 671.225 129.136 664.462 128.947C657.699 128.758 654.959 128.145 649.486 128.471C644.013 128.798 639.177 127.225 638.049 126.466C636.92 125.707 633.527 122.192 638.029 119.074C642.531 115.953 652.179 111.679 658.144 113.633L658.136 113.625Z\" fill=\"white\"/>\n<path d=\"M658.136 113.625C664.887 115.835 669.094 116.912 670.871 118.048C672.644 119.185 676.839 122.487 674.433 124.878C672.023 127.268 671.225 129.136 664.462 128.947C657.699 128.758 654.959 128.145 649.486 128.471C644.013 128.798 639.177 127.225 638.049 126.466C636.92 125.707 633.527 122.192 638.029 119.074C642.531 115.953 652.179 111.679 658.144 113.633L658.136 113.625Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_163\">\n<path d=\"M678.676 123.191C676.949 122.342 675.054 122.291 672.585 123.64C670.116 124.988 669.593 125.889 669.444 126.486C669.294 127.084 668.17 127.461 668.473 128.656C668.771 129.856 671.669 131.13 673.552 131.279C675.436 131.428 675.829 131.279 678.062 130.98C680.295 130.681 682.092 130.229 682.918 128.731C683.744 127.233 680.508 124.088 678.683 123.187L678.676 123.191Z\" fill=\"white\"/>\n<path d=\"M678.676 123.191C676.949 122.342 675.054 122.291 672.585 123.64C670.116 124.988 669.593 125.889 669.444 126.486C669.294 127.084 668.17 127.461 668.473 128.656C668.771 129.856 671.669 131.13 673.552 131.279C675.436 131.428 675.829 131.279 678.062 130.98C680.295 130.681 682.092 130.229 682.918 128.731C683.744 127.233 680.508 124.088 678.683 123.187L678.676 123.191Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_164\">\n<path d=\"M671.701 124.685C670.332 124.013 668.83 123.973 666.872 125.043C664.914 126.112 664.501 126.824 664.38 127.299C664.262 127.775 663.373 128.07 663.609 129.022C663.845 129.973 666.145 130.98 667.635 131.101C669.125 131.219 669.44 131.101 671.209 130.866C672.982 130.63 674.406 130.272 675.058 129.084C675.711 127.897 673.147 125.404 671.701 124.693V124.685Z\" fill=\"white\"/>\n<path d=\"M671.701 124.685C670.332 124.013 668.83 123.973 666.872 125.043C664.914 126.112 664.501 126.824 664.38 127.299C664.262 127.775 663.373 128.07 663.609 129.022C663.845 129.973 666.145 130.98 667.635 131.101C669.125 131.219 669.44 131.101 671.209 130.866C672.982 130.63 674.406 130.272 675.058 129.084C675.711 127.897 673.147 125.404 671.701 124.693V124.685Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_165\">\n<path d=\"M676.199 120.219C674.472 119.369 672.577 119.318 670.108 120.667C667.639 122.015 667.116 122.916 666.967 123.513C666.817 124.111 665.693 124.489 665.996 125.684C666.294 126.883 666.515 128.668 668.398 128.817C670.281 128.967 673.352 128.306 675.585 128.007C677.818 127.709 679.615 127.257 680.441 125.759C681.263 124.261 678.031 121.115 676.206 120.215L676.199 120.219Z\" fill=\"white\"/>\n<path d=\"M676.199 120.219C674.472 119.369 672.577 119.318 670.108 120.667C667.639 122.015 667.116 122.916 666.967 123.513C666.817 124.111 665.693 124.489 665.996 125.684C666.294 126.883 666.515 128.668 668.398 128.817C670.281 128.967 673.352 128.306 675.585 128.007C677.818 127.709 679.615 127.257 680.441 125.759C681.263 124.261 678.031 121.115 676.206 120.215L676.199 120.219Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Flats\" clip-path=\"url(#clip1_1849_10263)\">\n<path id=\"Vector_166\" d=\"M198.616 21.1265H200.068V23.6337H198.616V21.1265Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_167\" d=\"M196.045 21.1265H197.497V23.6337H196.045V21.1265Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_168\" d=\"M207.06 23.2844C206.438 23.2844 205.935 22.7739 205.935 22.1441C205.935 21.5144 206.438 21.0039 207.06 21.0039C207.681 21.0039 208.185 21.5144 208.185 22.1441C208.185 22.7739 207.681 23.2844 207.06 23.2844Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_169\" d=\"M205.928 22.1196H208.185V24.4062H205.928V22.1196Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_170\" d=\"M207.06 21.3349C206.879 21.3349 206.733 21.1867 206.733 21.0039C206.733 20.8211 206.879 20.6729 207.06 20.6729C207.24 20.6729 207.386 20.8211 207.386 21.0039C207.386 21.1867 207.24 21.3349 207.06 21.3349Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_171\" d=\"M204.483 23.2844C203.862 23.2844 203.358 22.7739 203.358 22.1441C203.358 21.5144 203.862 21.0039 204.483 21.0039C205.104 21.0039 205.608 21.5144 205.608 22.1441C205.608 22.7739 205.104 23.2844 204.483 23.2844Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_172\" d=\"M203.358 22.1196H205.614V24.4062H203.358V22.1196Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_173\" d=\"M204.483 21.3349C204.303 21.3349 204.156 21.1867 204.156 21.0039C204.156 20.8211 204.303 20.6729 204.483 20.6729C204.663 20.6729 204.81 20.8211 204.81 21.0039C204.81 21.1867 204.663 21.3349 204.483 21.3349Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_174\" d=\"M266.347 14.1255H289.107V15.1676H266.347V14.1255Z\" fill=\"#003C57\"/>\n<g id=\"Vector_175\">\n<path d=\"M266.353 15.186H289.107V28.5623H266.353V15.186Z\" fill=\"white\"/>\n<path d=\"M266.353 15.186H289.107V28.5623H266.353V15.186Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_176\" d=\"M268.766 17.1787H276.133V31.1741H268.766V17.1787Z\" fill=\"#003C57\"/>\n<path id=\"Vector_177\" d=\"M269.692 18.1104H275.214V31.174H269.692V18.1104Z\" fill=\"#EBEBF4\"/>\n<g id=\"Vector_178\">\n<path d=\"M172.444 29.5186H295.67V125.212H172.444V29.5186Z\" fill=\"white\"/>\n<path d=\"M172.444 29.5186H295.67V125.212H172.444V29.5186Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_179\" opacity=\"0.4\" d=\"M231.792 29.4268H234.713V125.819H231.792V29.4268Z\" fill=\"#EBEBF4\"/>\n<path id=\"Vector_180\" d=\"M172.462 28.3354H295.646V29.5186H172.462V28.3354Z\" fill=\"#003C57\"/>\n<g id=\"Vector_181\">\n<path d=\"M193.215 23.1553H210.955V28.3047H193.215V23.1553Z\" fill=\"white\"/>\n<path d=\"M193.215 23.1553H210.955V28.3047H193.215V23.1553Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_182\" d=\"M266.728 35.6611V50.8213H266.335H243.52H243.145V35.6611H266.728Z\" fill=\"white\"/>\n<g id=\"Vector_183\">\n<path d=\"M290.063 35.6611V118.622H289.906H280.621H280.47V35.6611H290.063Z\" fill=\"white\"/>\n<path d=\"M290.063 35.6611V118.622H289.906H280.621H280.47V35.6611H290.063Z\" fill=\"#6390B5\"/>\n</g>\n<path id=\"Vector_184\" d=\"M244.125 36.8442H265.657V49.4665H244.125V36.8442Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_185\" d=\"M266.571 59.5205V74.6807H266.171H243.363H242.981V59.5205H266.571Z\" fill=\"white\"/>\n<path id=\"Vector_186\" d=\"M243.967 60.6973H265.5V73.1478H243.967V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_187\" d=\"M266.571 83.3179V98.4842H266.171H243.363H242.981V83.3179H266.571Z\" fill=\"white\"/>\n<path id=\"Vector_188\" d=\"M243.967 84.501H265.5V97.1477H243.967V84.501Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_189\" d=\"M241.875 98.2021H275.625V99.0849H241.875V98.2021Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_190\" opacity=\"0.5\" d=\"M241.905 93.4453H275.643V98.2024H241.905V93.4453Z\" fill=\"white\"/>\n<path id=\"Vector_191\" d=\"M266.571 108.195V123.355H266.171H243.363H242.981V108.195H266.571Z\" fill=\"white\"/>\n<path id=\"Vector_192\" d=\"M243.967 109.372H265.5V121.932H243.967V109.372Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_193\" d=\"M241.875 123.073H275.625V123.956H241.875V123.073Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_194\" opacity=\"0.5\" d=\"M241.905 118.315H275.643V123.073H241.905V118.315Z\" fill=\"white\"/>\n<path id=\"Vector_195\" d=\"M241.875 74.3496H275.625V75.2324H241.875V74.3496Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_196\" d=\"M295.646 73.3687H302.045V74.2514H295.646V73.3687Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_197\" opacity=\"0.7\" d=\"M295.664 68.6113H302.027V73.3684H295.664V68.6113Z\" fill=\"white\"/>\n<path id=\"Vector_198\" d=\"M295.646 50.0488H302.045V50.9316H295.646V50.0488Z\" fill=\"#003C57\"/>\n<path id=\"Vector_199\" opacity=\"0.7\" d=\"M295.664 45.292H302.027V50.0491H295.664V45.292Z\" fill=\"white\"/>\n<path id=\"Vector_200\" d=\"M295.646 97.7607H302.045V98.6435H295.646V97.7607Z\" fill=\"#003C57\"/>\n<path id=\"Vector_201\" opacity=\"0.7\" d=\"M295.664 93.0039H302.027V97.761H295.664V93.0039Z\" fill=\"white\"/>\n<path id=\"Vector_202\" d=\"M166.045 73.3687H172.444V74.2514H166.045V73.3687Z\" fill=\"#003C57\"/>\n<path id=\"Vector_203\" opacity=\"0.7\" d=\"M166.063 68.6113H172.426V73.3684H166.063V68.6113Z\" fill=\"white\"/>\n<path id=\"Vector_204\" d=\"M166.045 50.0488H172.444V50.9316H166.045V50.0488Z\" fill=\"#003C57\"/>\n<path id=\"Vector_205\" opacity=\"0.7\" d=\"M166.063 45.292H172.426V50.0491H166.063V45.292Z\" fill=\"white\"/>\n<path id=\"Vector_206\" d=\"M166.045 97.7607H172.444V98.6435H166.045V97.7607Z\" fill=\"#003C57\"/>\n<path id=\"Vector_207\" opacity=\"0.7\" d=\"M166.063 93.0039H172.426V97.761H166.063V93.0039Z\" fill=\"white\"/>\n<path id=\"Vector_208\" d=\"M241.875 50.4902H275.625V51.373H241.875V50.4902Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_209\" opacity=\"0.5\" d=\"M241.947 45.7334H275.656V50.4905H241.947V45.7334Z\" fill=\"white\"/>\n<path id=\"Vector_210\" d=\"M281.65 37.1753H288.884V46.5607H281.65V37.1753Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_211\" d=\"M281.65 60.6973H288.884V70.0827H281.65V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_212\" d=\"M281.65 84.2192H288.884V93.6047H281.65V84.2192Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_213\" d=\"M281.65 107.741H288.884V117.127H281.65V107.741Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_214\" d=\"M204.066 35.6611V50.8213H203.673H180.864H180.483V35.6611H204.066Z\" fill=\"white\"/>\n<g id=\"Vector_215\">\n<path d=\"M227.401 35.6611V118.622H227.243H217.959H217.808V35.6611H227.401Z\" fill=\"white\"/>\n<path d=\"M227.401 35.6611V118.622H227.243H217.959H217.808V35.6611H227.401Z\" fill=\"#6390B5\"/>\n</g>\n<path id=\"Vector_216\" d=\"M181.469 36.8442H203.001V49.4235H181.469V36.8442Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_217\" d=\"M203.908 59.5205V74.6807H203.515H180.7H180.325V59.5205H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_218\" d=\"M181.305 60.6973H202.838V73.1724H181.305V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_219\" d=\"M203.908 83.3179V98.4842H203.515H180.7H180.325V83.3179H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_220\" d=\"M181.305 84.501H202.838V97.0067H181.305V84.501Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_221\" d=\"M179.218 98.2021H212.969V99.0849H179.218V98.2021Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_222\" opacity=\"0.5\" d=\"M179.243 93.4453H212.981V98.2024H179.243V93.4453Z\" fill=\"white\"/>\n<path id=\"Vector_223\" d=\"M203.908 108.195V123.355H203.515H180.7H180.325V108.195H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_224\" d=\"M181.305 109.372H202.838V121.902H181.305V109.372Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_225\" d=\"M179.218 123.073H212.969V123.956H179.218V123.073Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_226\" opacity=\"0.5\" d=\"M179.243 118.315H212.981V123.073H179.243V118.315Z\" fill=\"white\"/>\n<path id=\"Vector_227\" d=\"M179.218 74.3496H212.969V75.2324H179.218V74.3496Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_228\" opacity=\"0.5\" d=\"M179.231 69.5923H212.969V74.3494H179.231V69.5923Z\" fill=\"white\"/>\n<path id=\"Vector_229\" d=\"M179.218 50.4902H212.969V51.373H179.218V50.4902Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_230\" d=\"M218.987 37.1753H226.221V46.5607H218.987V37.1753Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_231\" d=\"M218.987 60.6973H226.221V70.0827H218.987V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_232\" d=\"M218.987 84.2192H226.221V93.6047H218.987V84.2192Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_233\" d=\"M218.987 107.741H226.221V117.127H218.987V107.741Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_234\" opacity=\"0.5\" d=\"M241.893 69.5923H275.631V74.3494H241.893V69.5923Z\" fill=\"white\"/>\n<path id=\"Vector_235\" opacity=\"0.5\" d=\"M179.285 45.7334H212.993V50.4905H179.285V45.7334Z\" fill=\"white\"/>\n</g>\n<g id=\"House\" clip-path=\"url(#clip2_1849_10263)\">\n<path id=\"Vector_236\" d=\"M180.966 101.642L177.736 104.85L178.049 105.161L181.279 101.952L180.966 101.642Z\" fill=\"#003C57\"/>\n<path id=\"Vector_237\" d=\"M114.431 95.9507H101.17V104.616H114.431V95.9507Z\" fill=\"#206095\"/>\n<g id=\"Vector_238\">\n<path d=\"M184 102.09H177.769V95.9468V95.951L184 102.09Z\" fill=\"white\"/>\n<path d=\"M184 102.09H177.769V95.9468V95.951L184 102.09Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_239\" d=\"M101.17 95.9507H100V104.616H101.17V95.9507Z\" fill=\"#003C57\"/>\n<path id=\"Vector_240\" d=\"M178.126 102.085H177.773V106.036H178.126V102.085Z\" fill=\"#003C57\"/>\n<path id=\"Vector_241\" d=\"M177.773 74.5513H114.431V86.8248H177.773V74.5513Z\" fill=\"#206095\"/>\n<g id=\"Vector_242\">\n<path d=\"M161.935 69.1309H130.266V86.8504H161.935V69.1309Z\" fill=\"white\"/>\n<path d=\"M161.935 69.1309H130.266V86.8504H161.935V69.1309Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_243\" d=\"M146.172 69.1309H146.032V84.8858H146.172V69.1309Z\" fill=\"#003C57\"/>\n<g id=\"Vector_244\">\n<path d=\"M146.1 86.8248L161.935 71.0952L177.769 86.8248V125.804H146.1V86.8248Z\" fill=\"white\"/>\n<path d=\"M146.1 86.8248L161.935 71.0952L177.769 86.8248V125.804H146.1V86.8248Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_245\" d=\"M161.935 71.0955L177.769 86.8251V84.8605L161.935 69.1309L146.1 84.8605V86.8251L161.935 71.0955Z\" fill=\"#003C57\"/>\n<g id=\"Vector_246\">\n<path d=\"M114.431 86.8248L130.265 71.0952L146.1 86.8248V125.804H114.431V86.8248Z\" fill=\"white\"/>\n<path d=\"M114.431 86.8248L130.265 71.0952L146.1 86.8248V125.804H114.431V86.8248Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_247\" d=\"M130.265 71.0955L146.1 86.8251V84.8605L130.265 69.1309L114.431 84.8605V86.8251L130.265 71.0955Z\" fill=\"#003C57\"/>\n<path id=\"Vector_248\" d=\"M167.038 84.7041H162.215V92.026H167.038V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_249\" d=\"M161.73 84.7041H156.831V92.026H161.73V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_250\" d=\"M155.551 92.0218V92.7612H168.327V92.0218H167.532V84.2183H156.35V92.0218H155.555H155.551ZM156.831 84.6999H161.73V92.0218H156.831V84.6999ZM167.043 92.0218H162.219V84.6999H167.043V92.0218Z\" fill=\"#003C57\"/>\n<path id=\"Vector_251\" d=\"M135.369 84.7041H130.546V92.026H135.369V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_252\" d=\"M130.061 84.7041H125.162V92.026H130.061V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_253\" d=\"M123.877 92.0218V92.7612H136.654V92.0218H135.858V84.2183H124.677V92.0218H123.881H123.877ZM125.157 84.6999H130.057V92.0218H125.157V84.6999ZM135.369 92.0218H130.546V84.6999H135.369V92.0218Z\" fill=\"#003C57\"/>\n<g id=\"Vector_254\">\n<path d=\"M114.431 104.583H100.464V124.541H114.431V104.583Z\" fill=\"white\"/>\n<path d=\"M114.431 104.583H100.464V124.541H114.431V104.583Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_255\" d=\"M111.607 109.09H103.288V124.583H111.607V109.09Z\" fill=\"#003C57\"/>\n<g id=\"Vector_256\">\n<path d=\"M110.569 110.122H104.33V124.579H110.569V110.122Z\" fill=\"white\"/>\n<path d=\"M110.569 110.122H104.33V124.579H110.569V110.122Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_257\" d=\"M107.447 115.2C108.554 115.2 109.451 114.309 109.451 113.21C109.451 112.111 108.554 111.22 107.447 111.22C106.341 111.22 105.444 112.111 105.444 113.21C105.444 114.309 106.341 115.2 107.447 115.2Z\" fill=\"white\"/>\n<path id=\"Vector_258\" d=\"M178.479 74.5513H177.773V86.8248H178.479V74.5513Z\" fill=\"#003C57\"/>\n<path id=\"Vector_259\" d=\"M114.431 74.5513H113.725V86.8248H114.431V74.5513Z\" fill=\"#003C57\"/>\n<path id=\"Vector_260\" d=\"M149.817 62.751H146.228V67.3942H149.817V62.751Z\" fill=\"#003C57\"/>\n<path id=\"Vector_261\" d=\"M145.977 62.751H142.387V67.3942H145.977V62.751Z\" fill=\"#003C57\"/>\n<g id=\"Group\" opacity=\"0.75\">\n<g id=\"Vector_262\">\n<path d=\"M142.472 61.813H149.728C149.987 61.813 150.2 62.0242 150.2 62.282C150.2 62.5397 149.987 62.7509 149.728 62.7509H142.472C142.213 62.7509 142 62.5397 142 62.282C142 62.0242 142.213 61.813 142.472 61.813Z\" fill=\"white\"/>\n<path d=\"M142.472 61.813H149.728C149.987 61.813 150.2 62.0242 150.2 62.282C150.2 62.5397 149.987 62.7509 149.728 62.7509H142.472C142.213 62.7509 142 62.5397 142 62.282C142 62.0242 142.213 61.813 142.472 61.813Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n<path id=\"Vector_263\" d=\"M150.915 69.1263H141.29C141.29 68.1672 142.072 67.394 143.034 67.394H149.167C150.132 67.394 150.91 68.1714 150.91 69.1263H150.915Z\" fill=\"#003C57\"/>\n<g id=\"Vector_264\">\n<path d=\"M139.848 109.112H120.683L124.605 102.947H135.926L139.848 109.112Z\" fill=\"white\"/>\n<path d=\"M139.848 109.112H120.683L124.605 102.947H135.926L139.848 109.112Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<g id=\"Vector_265\">\n<path d=\"M171.521 109.112H152.352L156.274 102.947H167.6L171.521 109.112Z\" fill=\"white\"/>\n<path d=\"M171.521 109.112H152.352L156.274 102.947H167.6L171.521 109.112Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_266\" d=\"M158.264 109.297H154.024V117.625H158.264V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_267\" d=\"M153.262 117.313V117.938H161.905V117.313H161.335V109.112H153.837V117.313H153.262ZM160.952 117.313H154.211V109.488H160.952V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_268\" d=\"M169.816 109.297H165.418V117.625H169.816V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_269\" d=\"M161.935 117.313V117.938H170.577V117.313H170.007V109.112H162.509V117.313H161.935ZM169.624 117.313H162.883V109.488H169.624V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_270\" d=\"M165.418 109.297H158.298V117.625H165.418V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_271\" d=\"M157.541 117.313V117.938H166.183V117.313H165.614V109.112H158.115V117.313H157.541ZM165.231 117.313H158.489V109.488H165.231V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_272\" d=\"M126.629 109.297H122.389V117.625H126.629V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_273\" d=\"M121.627 117.313V117.938H130.27V117.313H129.7V109.112H122.202V117.313H121.627ZM129.317 117.313H122.576V109.488H129.317V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_274\" d=\"M138.147 109.297H133.749V117.625H138.147V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_275\" d=\"M130.266 117.313V117.938H138.908V117.313H138.338V109.112H130.84V117.313H130.266ZM137.955 117.313H131.214V109.488H137.955V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_276\" d=\"M133.749 109.297H126.629V117.625H133.749V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_277\" d=\"M125.868 117.313V117.938H134.51V117.313H133.94V109.112H126.442V117.313H125.868ZM133.557 117.313H126.816V109.488H133.557V117.313Z\" fill=\"#003C57\"/>\n<g id=\"Vector_278\">\n<path d=\"M170.577 117.938H165.418V125.8H170.577V117.938Z\" fill=\"white\"/>\n<path d=\"M170.577 117.938H165.418V125.8H170.577V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_279\">\n<path d=\"M138.904 117.938H133.745V125.8H138.904V117.938Z\" fill=\"white\"/>\n<path d=\"M138.904 117.938H133.745V125.8H138.904V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_280\">\n<path d=\"M126.787 117.938H121.627V125.8H126.787V117.938Z\" fill=\"white\"/>\n<path d=\"M126.787 117.938H121.627V125.8H126.787V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_281\">\n<path d=\"M133.749 117.938H126.786V125.8H133.749V117.938Z\" fill=\"white\"/>\n<path d=\"M133.749 117.938H126.786V125.8H133.749V117.938Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_282\">\n<path d=\"M158.477 117.946H153.318V125.809H158.477V117.946Z\" fill=\"white\"/>\n<path d=\"M158.477 117.946H153.318V125.809H158.477V117.946Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_283\">\n<path d=\"M165.422 117.946H158.485V125.809H165.422V117.946Z\" fill=\"white\"/>\n<path d=\"M165.422 117.946H158.485V125.809H165.422V117.946Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n</g>\n</g>\n<g id=\"Tree\">\n<g id=\"Vector_284\">\n<path d=\"M82.1085 62.9994C83.1951 66.5107 84.3989 69.9986 85.3386 73.5419C86.6745 78.5767 87.8144 83.6541 88.7455 87.5021C90.514 80.9119 92.6084 73.103 94.7029 65.2941C95.0033 65.309 95.3016 65.3261 95.602 65.341C95.5977 66.6556 95.9855 68.0874 95.5296 69.2657C91.3321 80.147 90.5694 91.2968 91.9543 102.638C92.031 103.273 92.2867 103.893 92.5551 104.873C94.4855 102.981 96.1453 101.358 97.803 99.7321C98.0608 99.9175 98.3186 100.105 98.5764 100.29C97.2746 101.98 96.1283 103.787 94.6304 105.325C92.683 107.326 92.4529 109.584 92.6702 112.018C93.0196 115.938 93.3307 119.863 93.7078 123.781C94.0573 127.412 93.9486 127.52 89.5552 126.945C89.1908 122.579 88.8243 118.175 88.4536 113.771C88.3812 112.917 88.1489 112.054 88.232 111.214C89.1333 102.05 82.6624 96.3572 76.0275 90.7727C74.5339 89.5156 72.7378 88.544 71.34 87.1718C79.8649 88.8956 83.4444 95.7478 88.6581 101.015C87.3947 93.4871 86.3208 86.1512 84.8741 78.8729C84.1454 75.2039 82.6582 71.6584 81.6738 68.0214C81.2306 66.3893 81.1795 64.6741 80.9515 62.9951C81.3372 62.9951 81.7228 62.9951 82.1085 62.9972V62.9994Z\" fill=\"white\"/>\n<path d=\"M82.1085 62.9994C83.1951 66.5107 84.3989 69.9986 85.3386 73.5419C86.6745 78.5767 87.8144 83.6541 88.7455 87.5021C90.514 80.9119 92.6084 73.103 94.7029 65.2941C95.0033 65.309 95.3016 65.3261 95.602 65.341C95.5977 66.6556 95.9855 68.0874 95.5296 69.2657C91.3321 80.147 90.5694 91.2968 91.9543 102.638C92.031 103.273 92.2867 103.893 92.5551 104.873C94.4855 102.981 96.1453 101.358 97.803 99.7321C98.0608 99.9175 98.3186 100.105 98.5764 100.29C97.2746 101.98 96.1283 103.787 94.6304 105.325C92.683 107.326 92.4529 109.584 92.6702 112.018C93.0196 115.938 93.3307 119.863 93.7078 123.781C94.0573 127.412 93.9486 127.52 89.5552 126.945C89.1908 122.579 88.8243 118.175 88.4536 113.771C88.3812 112.917 88.1489 112.054 88.232 111.214C89.1333 102.05 82.6624 96.3572 76.0275 90.7727C74.5339 89.5156 72.7378 88.544 71.34 87.1718C79.8649 88.8956 83.4444 95.7478 88.6581 101.015C87.3947 93.4871 86.3208 86.1512 84.8741 78.8729C84.1454 75.2039 82.6582 71.6584 81.6738 68.0214C81.2306 66.3893 81.1795 64.6741 80.9515 62.9951C81.3372 62.9951 81.7228 62.9951 82.1085 62.9972V62.9994Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_285\">\n<path d=\"M96.5969 84.7475C99.5586 82.9833 102.812 82.8895 107.039 85.7126C111.267 88.5379 112.159 90.415 112.413 91.6657C112.666 92.9164 114.588 93.7027 114.068 96.2041C113.549 98.7034 108.573 101.348 105.345 101.65C102.12 101.955 101.444 101.639 97.6133 101.004C93.7823 100.37 90.7056 99.4235 89.3036 96.2936C87.9017 93.1636 93.4627 86.6139 96.5991 84.7475H96.5969Z\" fill=\"white\"/>\n<path d=\"M96.5969 84.7475C99.5586 82.9833 102.812 82.8895 107.039 85.7126C111.267 88.5379 112.159 90.415 112.413 91.6657C112.666 92.9164 114.588 93.7027 114.068 96.2041C113.549 98.7034 108.573 101.348 105.345 101.65C102.12 101.955 101.444 101.639 97.6133 101.004C93.7823 100.37 90.7056 99.4235 89.3036 96.2936C87.9017 93.1636 93.4627 86.6139 96.5991 84.7475H96.5969Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_286\">\n<path d=\"M65.257 75.6538C68.6597 73.9919 72.4011 73.9024 77.2612 76.5722C82.1212 79.2398 83.1482 81.0125 83.4401 82.195C83.732 83.3754 85.9437 84.119 85.3449 86.4777C84.7484 88.8363 79.0296 91.3271 75.3223 91.6126C71.6128 91.8981 70.8372 91.5998 66.4331 90.9989C62.029 90.396 58.4921 89.5032 56.877 86.548C55.262 83.5927 61.6519 77.4159 65.257 75.656V75.6538Z\" fill=\"white\"/>\n<path d=\"M65.257 75.6538C68.6597 73.9919 72.4011 73.9024 77.2612 76.5722C82.1212 79.2398 83.1482 81.0125 83.4401 82.195C83.732 83.3754 85.9437 84.119 85.3449 86.4777C84.7484 88.8363 79.0296 91.3271 75.3223 91.6126C71.6128 91.8981 70.8372 91.5998 66.4331 90.9989C62.029 90.396 58.4921 89.5032 56.877 86.548C55.262 83.5927 61.6519 77.4159 65.257 75.656V75.6538Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_287\">\n<path d=\"M81.4755 52.7554C74.5103 56.3072 70.1723 58.0373 68.342 59.859C66.5118 61.6808 62.1801 66.9797 64.6602 70.8043C67.1403 74.6288 67.9628 77.6203 74.9343 77.3071C81.908 76.9939 84.7312 76.0053 90.3753 76.5188C96.0173 77.0322 101.005 74.5053 102.171 73.2887C103.336 72.072 106.837 66.4385 102.203 61.4443C97.5685 56.4521 87.6267 49.619 81.4755 52.7554Z\" fill=\"white\"/>\n<path d=\"M81.4755 52.7554C74.5103 56.3072 70.1723 58.0373 68.342 59.859C66.5118 61.6808 62.1801 66.9797 64.6602 70.8043C67.1403 74.6288 67.9628 77.6203 74.9343 77.3071C81.908 76.9939 84.7312 76.0053 90.3753 76.5188C96.0173 77.0322 101.005 74.5053 102.171 73.2887C103.336 72.072 106.837 66.4385 102.203 61.4443C97.5685 56.4521 87.6267 49.619 81.4755 52.7554Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_288\">\n<path d=\"M94.7561 54.5452C98.4891 51.6326 102.586 51.4706 107.909 56.1283C113.231 60.7859 114.354 63.8839 114.672 65.9486C114.989 68.0132 117.409 69.3086 116.753 73.4357C116.095 77.5607 109.824 81.9286 105.759 82.4336C101.694 82.9385 100.843 82.4208 96.0196 81.3746C91.1958 80.3285 87.3201 78.7709 85.5559 73.6083C83.7917 68.4436 90.8059 57.6304 94.7583 54.5452H94.7561Z\" fill=\"white\"/>\n<path d=\"M94.7561 54.5452C98.4891 51.6326 102.586 51.4706 107.909 56.1283C113.231 60.7859 114.354 63.8839 114.672 65.9486C114.989 68.0132 117.409 69.3086 116.753 73.4357C116.095 77.5607 109.824 81.9286 105.759 82.4336C101.694 82.9385 100.843 82.4208 96.0196 81.3746C91.1958 80.3285 87.3201 78.7709 85.5559 73.6083C83.7917 68.4436 90.8059 57.6304 94.7583 54.5452H94.7561Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_289\">\n<path d=\"M98.0287 128.111C96.3092 127.772 96.305 126.155 94.349 126.33C93.6097 126.396 93.158 126.671 92.4612 126.594C91.8945 126.532 91.1232 125.328 88.9733 125.887C87.3775 126.302 87.8142 127.131 86.7937 127.389C85.7049 127.666 84.6353 128.047 83.5572 128.384C83.5721 128.463 83.587 129.453 83.5998 129.53C88.6346 129.53 95.359 129.53 100.392 129.53C100.313 129.066 98.2737 128.158 98.0266 128.109L98.0287 128.111Z\" fill=\"white\"/>\n<path d=\"M98.0287 128.111C96.3092 127.772 96.305 126.155 94.349 126.33C93.6097 126.396 93.158 126.671 92.4612 126.594C91.8945 126.532 91.1232 125.328 88.9733 125.887C87.3775 126.302 87.8142 127.131 86.7937 127.389C85.7049 127.666 84.6353 128.047 83.5572 128.384C83.5721 128.463 83.587 129.453 83.5998 129.53C88.6346 129.53 95.359 129.53 100.392 129.53C100.313 129.066 98.2737 128.158 98.0266 128.109L98.0287 128.111Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n</g>\n<g id=\"Tree_2\">\n<g id=\"Vector_290\">\n<path d=\"M491.503 67.6656C490.493 70.9307 489.373 74.174 488.5 77.4688C487.257 82.1505 486.198 86.8719 485.332 90.45C483.687 84.322 481.74 77.0607 479.792 69.7994C479.513 69.8133 479.235 69.8291 478.956 69.843C478.96 71.0654 478.599 72.3968 479.023 73.4925C482.926 83.6107 483.636 93.9786 482.348 104.525C482.277 105.115 482.039 105.692 481.789 106.603C479.994 104.844 478.451 103.334 476.909 101.822C476.67 101.995 476.43 102.169 476.19 102.342C477.401 103.913 478.467 105.593 479.859 107.023C481.67 108.884 481.884 110.984 481.682 113.246C481.357 116.892 481.068 120.541 480.717 124.185C480.392 127.561 480.493 127.662 484.579 127.127C484.918 123.067 485.258 118.972 485.603 114.877C485.67 114.082 485.886 113.28 485.809 112.499C484.971 103.978 490.988 98.6841 497.158 93.4912C498.547 92.3223 500.217 91.4189 501.517 90.1429C493.59 91.7458 490.261 98.1175 485.413 103.015C486.588 96.0154 487.586 89.1939 488.932 82.4259C489.609 79.0142 490.992 75.7174 491.907 72.3354C492.32 70.8178 492.367 69.2229 492.579 67.6616C492.221 67.6616 491.862 67.6616 491.503 67.6636V67.6656Z\" fill=\"white\"/>\n<path d=\"M491.503 67.6656C490.493 70.9307 489.373 74.174 488.5 77.4688C487.257 82.1505 486.198 86.8719 485.332 90.45C483.687 84.322 481.74 77.0607 479.792 69.7994C479.513 69.8133 479.235 69.8291 478.956 69.843C478.96 71.0654 478.599 72.3968 479.023 73.4925C482.926 83.6107 483.636 93.9786 482.348 104.525C482.277 105.115 482.039 105.692 481.789 106.603C479.994 104.844 478.451 103.334 476.909 101.822C476.67 101.995 476.43 102.169 476.19 102.342C477.401 103.913 478.467 105.593 479.859 107.023C481.67 108.884 481.884 110.984 481.682 113.246C481.357 116.892 481.068 120.541 480.717 124.185C480.392 127.561 480.493 127.662 484.579 127.127C484.918 123.067 485.258 118.972 485.603 114.877C485.67 114.082 485.886 113.28 485.809 112.499C484.971 103.978 490.988 98.6841 497.158 93.4912C498.547 92.3223 500.217 91.4189 501.517 90.1429C493.59 91.7458 490.261 98.1175 485.413 103.015C486.588 96.0154 487.586 89.1939 488.932 82.4259C489.609 79.0142 490.992 75.7174 491.907 72.3354C492.32 70.8178 492.367 69.2229 492.579 67.6616C492.221 67.6616 491.862 67.6616 491.503 67.6636V67.6656Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_291\">\n<path d=\"M478.031 87.8881C475.277 86.2476 472.251 86.1604 468.321 88.7856C464.39 91.4127 463.56 93.1582 463.324 94.3212C463.088 95.4842 461.301 96.2153 461.784 98.5413C462.268 100.865 466.894 103.324 469.896 103.605C472.895 103.889 473.523 103.595 477.086 103.005C480.648 102.415 483.509 101.535 484.813 98.6245C486.116 95.714 480.945 89.6237 478.029 87.8881H478.031Z\" fill=\"white\"/>\n<path d=\"M478.031 87.8881C475.277 86.2476 472.251 86.1604 468.321 88.7856C464.39 91.4127 463.56 93.1582 463.324 94.3212C463.088 95.4842 461.301 96.2153 461.784 98.5413C462.268 100.865 466.894 103.324 469.896 103.605C472.895 103.889 473.523 103.595 477.086 103.005C480.648 102.415 483.509 101.535 484.813 98.6245C486.116 95.714 480.945 89.6237 478.029 87.8881H478.031Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_292\">\n<path d=\"M507.173 79.4324C504.009 77.887 500.53 77.8038 496.011 80.2863C491.491 82.7669 490.537 84.4153 490.265 85.5149C489.994 86.6125 487.937 87.3039 488.494 89.4972C489.049 91.6904 494.366 94.0065 497.814 94.272C501.263 94.5375 501.984 94.2601 506.079 93.7014C510.175 93.1407 513.464 92.3106 514.965 89.5626C516.467 86.8146 510.525 81.0709 507.173 79.4344V79.4324Z\" fill=\"white\"/>\n<path d=\"M507.173 79.4324C504.009 77.887 500.53 77.8038 496.011 80.2863C491.491 82.7669 490.537 84.4153 490.265 85.5149C489.994 86.6125 487.937 87.3039 488.494 89.4972C489.049 91.6904 494.366 94.0065 497.814 94.272C501.263 94.5375 501.984 94.2601 506.079 93.7014C510.175 93.1407 513.464 92.3106 514.965 89.5626C516.467 86.8146 510.525 81.0709 507.173 79.4344V79.4324Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_293\">\n<path d=\"M492.092 58.1396C498.569 61.4424 502.602 63.0512 504.304 64.7451C506.006 66.4391 510.034 71.3665 507.728 74.9229C505.422 78.4792 504.657 81.2609 498.174 80.9696C491.69 80.6784 489.065 79.7591 483.816 80.2366C478.57 80.7141 473.932 78.3643 472.848 77.233C471.764 76.1017 468.509 70.8633 472.818 66.2192C477.127 61.5771 486.372 55.2232 492.092 58.1396Z\" fill=\"white\"/>\n<path d=\"M492.092 58.1396C498.569 61.4424 502.602 63.0512 504.304 64.7451C506.006 66.4391 510.034 71.3665 507.728 74.9229C505.422 78.4792 504.657 81.2609 498.174 80.9696C491.69 80.6784 489.065 79.7591 483.816 80.2366C478.57 80.7141 473.932 78.3643 472.848 77.233C471.764 76.1017 468.509 70.8633 472.818 66.2192C477.127 61.5771 486.372 55.2232 492.092 58.1396Z\" fill=\"#206095\" fill-opacity=\"0.75\"/>\n</g>\n<g id=\"Vector_294\">\n<path d=\"M479.743 59.8037C476.271 57.0953 472.461 56.9447 467.512 61.2757C462.563 65.6068 461.519 68.4875 461.224 70.4073C460.929 72.3272 458.678 73.5318 459.288 77.3695C459.9 81.2052 465.731 85.2668 469.511 85.7363C473.292 86.2059 474.082 85.7244 478.568 84.7516C483.053 83.7788 486.657 82.3305 488.298 77.53C489.938 72.7274 483.416 62.6725 479.741 59.8037H479.743Z\" fill=\"white\"/>\n<path d=\"M479.743 59.8037C476.271 57.0953 472.461 56.9447 467.512 61.2757C462.563 65.6068 461.519 68.4875 461.224 70.4073C460.929 72.3272 458.678 73.5318 459.288 77.3695C459.9 81.2052 465.731 85.2668 469.511 85.7363C473.292 86.2059 474.082 85.7244 478.568 84.7516C483.053 83.7788 486.657 82.3305 488.298 77.53C489.938 72.7274 483.416 62.6725 479.741 59.8037H479.743Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_295\">\n<path d=\"M476.699 128.211C478.298 127.896 478.302 126.392 480.121 126.554C480.809 126.616 481.229 126.871 481.876 126.8C482.403 126.743 483.121 125.623 485.12 126.142C486.604 126.529 486.198 127.299 487.147 127.539C488.159 127.797 489.154 128.151 490.156 128.464C490.142 128.538 490.128 129.459 490.116 129.53C485.435 129.53 479.182 129.53 474.502 129.53C474.576 129.098 476.472 128.254 476.701 128.209L476.699 128.211Z\" fill=\"white\"/>\n<path d=\"M476.699 128.211C478.298 127.896 478.302 126.392 480.121 126.554C480.809 126.616 481.229 126.871 481.876 126.8C482.403 126.743 483.121 125.623 485.12 126.142C486.604 126.529 486.198 127.299 487.147 127.539C488.159 127.797 489.154 128.151 490.156 128.464C490.142 128.538 490.128 129.459 490.116 129.53C485.435 129.53 479.182 129.53 474.502 129.53C474.576 129.098 476.472 128.254 476.701 128.209L476.699 128.211Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n</g>\n<g id=\"Icons\">\n<g id=\"Group 382\">\n<path id=\"Vector 1\" d=\"M73.3799 142.105H627.844\" stroke=\"#206095\" stroke-width=\"3\" stroke-dasharray=\"6 6\"/>\n<g id=\"Ellipse 16\">\n<circle cx=\"65.6121\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"65.6121\" cy=\"142.105\" r=\"33.5\" fill=\"#FBC900\" fill-opacity=\"0.4\"/>\n<circle cx=\"65.6121\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 17\">\n<circle cx=\"207.806\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"207.806\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"207.806\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 18\">\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 19\">\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 20\">\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n</g>\n<g id=\"Artwork 64x64_2\">\n<path id=\"Vector_296\" d=\"M479.913 124.463V159.748C479.913 160.108 480.056 160.453 480.311 160.708C480.565 160.962 480.91 161.105 481.27 161.105H505.699C506.059 161.105 506.404 160.962 506.658 160.708C506.913 160.453 507.056 160.108 507.056 159.748V131.248L498.913 123.105H481.27C480.91 123.105 480.565 123.248 480.311 123.503C480.056 123.757 479.913 124.103 479.913 124.463Z\" fill=\"#003C57\"/>\n<path id=\"Vector_297\" d=\"M500.27 131.248H507.056L498.913 123.105V129.891C498.913 130.251 499.056 130.596 499.311 130.851C499.565 131.105 499.91 131.248 500.27 131.248Z\" fill=\"#4D7789\"/>\n<path id=\"Vector_298\" d=\"M496.701 136.5C494.983 135.609 493.065 135.176 491.131 135.243C489.197 135.31 487.313 135.873 485.661 136.88C485.51 136.977 485.404 137.128 485.365 137.302C485.325 137.476 485.356 137.658 485.45 137.81C485.497 137.886 485.559 137.952 485.632 138.004C485.704 138.056 485.786 138.093 485.873 138.113C485.96 138.133 486.05 138.136 486.138 138.121C486.227 138.106 486.311 138.074 486.387 138.027C487.837 137.133 489.497 136.634 491.201 136.58C492.905 136.526 494.593 136.92 496.097 137.722C498.974 139.133 500.983 141.617 501.207 144.039C501.223 144.207 501.302 144.363 501.428 144.476C501.553 144.589 501.716 144.651 501.885 144.65H501.953C502.132 144.633 502.297 144.545 502.411 144.407C502.526 144.268 502.581 144.089 502.564 143.91C502.306 141.026 499.985 138.122 496.701 136.5Z\" fill=\"white\"/>\n<path id=\"Vector_299\" d=\"M489.63 134.173C494.027 133.495 498.085 134.852 500.766 137.953C500.83 138.026 500.909 138.085 500.998 138.124C501.087 138.164 501.184 138.184 501.281 138.184C501.41 138.182 501.536 138.144 501.645 138.074C501.753 138.003 501.839 137.903 501.892 137.786C501.946 137.668 501.965 137.538 501.946 137.41C501.928 137.282 501.874 137.162 501.79 137.064C498.798 133.596 494.292 132.056 489.413 132.836C489.324 132.85 489.238 132.881 489.161 132.928C489.084 132.975 489.017 133.037 488.964 133.11C488.911 133.182 488.872 133.265 488.851 133.352C488.83 133.44 488.826 133.531 488.84 133.62C488.853 133.709 488.885 133.795 488.932 133.872C488.978 133.949 489.04 134.016 489.113 134.069C489.186 134.122 489.268 134.161 489.356 134.182C489.443 134.203 489.534 134.207 489.623 134.194L489.63 134.173Z\" fill=\"white\"/>\n<path id=\"Vector_300\" d=\"M497.094 140.171C494.054 137.891 491.286 137.851 489.494 138.224C487.262 138.685 485.47 140.009 484.86 141.074C484.815 141.152 484.786 141.238 484.775 141.327C484.764 141.416 484.771 141.506 484.795 141.593C484.819 141.679 484.86 141.76 484.915 141.83C484.97 141.901 485.039 141.96 485.118 142.004C485.271 142.086 485.451 142.106 485.619 142.059C485.787 142.012 485.931 141.902 486.02 141.752C486.949 140.586 488.275 139.804 489.745 139.554C491.265 139.242 493.627 139.276 496.26 141.257C501.173 144.935 498.974 150.934 497.108 153.587C497.056 153.66 497.02 153.743 497 153.831C496.981 153.918 496.979 154.009 496.994 154.097C497.01 154.186 497.043 154.27 497.092 154.345C497.141 154.421 497.204 154.486 497.278 154.537C497.351 154.59 497.435 154.627 497.523 154.647C497.611 154.667 497.703 154.669 497.792 154.654C497.881 154.638 497.966 154.604 498.042 154.555C498.118 154.506 498.183 154.442 498.234 154.367C502.442 148.348 500.589 142.784 497.094 140.171Z\" fill=\"white\"/>\n<path id=\"Vector_301\" d=\"M497.488 145.776C497.256 144.906 496.839 144.096 496.265 143.401C495.691 142.707 494.974 142.144 494.163 141.753C493.163 141.232 492.043 140.987 490.917 141.043C489.791 141.099 488.701 141.454 487.757 142.071C486.851 142.804 486.074 143.682 485.457 144.67C485.301 144.907 485.131 145.133 484.948 145.349C484.84 145.483 484.787 145.654 484.8 145.826C484.813 145.997 484.89 146.158 485.017 146.275C485.144 146.391 485.311 146.455 485.483 146.453C485.656 146.452 485.821 146.384 485.946 146.265C486.175 145.993 486.388 145.708 486.583 145.41C487.108 144.548 487.776 143.782 488.558 143.144C489.296 142.675 490.144 142.408 491.017 142.371C491.89 142.334 492.758 142.528 493.532 142.933C494.182 143.231 494.758 143.669 495.219 144.216C495.68 144.763 496.015 145.404 496.199 146.095C496.64 147.914 496.056 151.673 492.643 154.591C492.575 154.649 492.52 154.72 492.479 154.799C492.439 154.879 492.415 154.965 492.408 155.054C492.401 155.143 492.411 155.232 492.439 155.317C492.467 155.402 492.511 155.48 492.568 155.548C492.632 155.622 492.711 155.682 492.8 155.723C492.889 155.764 492.986 155.785 493.084 155.785C493.246 155.785 493.402 155.728 493.525 155.623C497.128 152.521 498.112 148.341 497.488 145.776Z\" fill=\"white\"/>\n<path id=\"Vector_302\" d=\"M492.046 144.141C491.328 143.939 490.563 143.993 489.881 144.296C489.2 144.598 488.645 145.129 488.314 145.797C487.425 147.595 486.835 148.43 485.498 148.952C485.326 149.022 485.189 149.156 485.116 149.327C485.044 149.497 485.042 149.69 485.111 149.862C485.18 150.034 485.315 150.171 485.486 150.243C485.656 150.316 485.848 150.318 486.02 150.249C487.913 149.509 488.68 148.213 489.556 146.435C489.757 146.046 490.087 145.74 490.489 145.568C490.891 145.396 491.341 145.369 491.761 145.492C492.237 145.582 492.668 145.834 492.981 146.205C493.294 146.575 493.469 147.043 493.478 147.527C493.478 150.466 490.173 153.255 489.291 153.743C489.169 153.818 489.073 153.929 489.018 154.061C488.963 154.194 488.951 154.34 488.985 154.479C489.018 154.619 489.094 154.744 489.203 154.837C489.311 154.93 489.447 154.987 489.59 154.999C489.703 154.999 489.815 154.971 489.915 154.917C491.171 154.239 494.808 151.07 494.808 147.507C494.806 146.714 494.53 145.945 494.027 145.332C493.524 144.718 492.824 144.298 492.046 144.141Z\" fill=\"white\"/>\n<path id=\"Vector_303\" d=\"M491.978 147.975C492.029 147.807 492.013 147.626 491.933 147.469C491.853 147.313 491.716 147.194 491.55 147.136C491.383 147.079 491.202 147.089 491.042 147.163C490.883 147.237 490.759 147.37 490.696 147.534C490.006 149.344 488.627 150.808 486.862 151.605C486.715 151.664 486.593 151.771 486.517 151.91C486.44 152.048 486.415 152.209 486.445 152.364C486.475 152.52 486.558 152.66 486.68 152.76C486.802 152.861 486.955 152.916 487.113 152.915C487.199 152.915 487.284 152.899 487.364 152.868C488.42 152.401 489.373 151.727 490.165 150.887C490.957 150.047 491.574 149.057 491.978 147.975Z\" fill=\"white\"/>\n</g>\n<g id=\"Artwork 64x64_3\">\n<path id=\"Vector_304\" d=\"M634.346 155.445H634.159V153.695C634.159 153.463 634.07 153.24 633.911 153.076C633.752 152.912 633.537 152.82 633.312 152.82H619.748C619.523 152.82 619.308 152.912 619.149 153.076C618.99 153.24 618.901 153.463 618.901 153.695V155.445H618.714C618.404 155.444 618.097 155.506 617.811 155.628C617.524 155.75 617.264 155.929 617.045 156.155C616.826 156.381 616.653 156.65 616.535 156.945C616.417 157.241 616.356 157.558 616.357 157.878V158.945C616.357 159.177 616.447 159.4 616.606 159.564C616.765 159.728 616.98 159.82 617.205 159.82H635.855C636.08 159.82 636.295 159.728 636.454 159.564C636.613 159.4 636.703 159.177 636.703 158.945V157.878C636.704 157.558 636.644 157.241 636.526 156.945C636.407 156.65 636.234 156.381 636.015 156.155C635.796 155.929 635.536 155.75 635.249 155.628C634.963 155.506 634.656 155.444 634.346 155.445Z\" fill=\"#206095\"/>\n<path id=\"Vector_305\" d=\"M656.547 155.594L639.771 138.268C639.568 138.059 639.316 137.907 639.041 137.826C638.765 137.745 638.474 137.737 638.194 137.804L634.278 133.761L637.296 130.646C637.597 130.333 637.765 129.91 637.765 129.469C637.765 129.028 637.597 128.605 637.296 128.292L637.236 128.231L637.83 127.609C637.987 127.772 638.174 127.901 638.38 127.989C638.586 128.077 638.807 128.123 639.029 128.123C639.252 128.123 639.473 128.077 639.679 127.989C639.884 127.901 640.071 127.772 640.229 127.609L640.831 126.997C640.988 126.834 641.114 126.641 641.199 126.429C641.284 126.216 641.328 125.989 641.328 125.759C641.328 125.529 641.284 125.301 641.199 125.088C641.114 124.876 640.988 124.683 640.831 124.52L634.837 118.334C634.68 118.171 634.493 118.042 634.287 117.954C634.081 117.866 633.861 117.82 633.638 117.82C633.415 117.82 633.195 117.866 632.989 117.954C632.783 118.042 632.596 118.171 632.438 118.334L631.837 118.946C631.679 119.109 631.554 119.302 631.469 119.514C631.383 119.727 631.339 119.954 631.339 120.184C631.339 120.414 631.383 120.642 631.469 120.855C631.554 121.067 631.679 121.26 631.837 121.423L631.243 122.044L631.175 121.983C631.027 121.827 630.85 121.703 630.655 121.619C630.46 121.535 630.251 121.491 630.039 121.491C629.828 121.491 629.619 121.535 629.424 121.619C629.229 121.703 629.052 121.827 628.903 121.983L620.426 130.733C620.276 130.886 620.156 131.069 620.074 131.27C619.992 131.471 619.95 131.688 619.95 131.906C619.95 132.124 619.992 132.34 620.074 132.541C620.156 132.743 620.276 132.925 620.426 133.078L620.486 133.148L619.884 133.761C619.726 133.598 619.539 133.469 619.333 133.381C619.128 133.293 618.907 133.248 618.684 133.248C618.461 133.248 618.241 133.293 618.035 133.381C617.829 133.469 617.642 133.598 617.485 133.761L616.891 134.382C616.734 134.545 616.609 134.738 616.523 134.95C616.438 135.163 616.394 135.39 616.394 135.62C616.394 135.85 616.438 136.078 616.523 136.291C616.609 136.503 616.734 136.696 616.891 136.859L622.885 143.045C623.042 143.208 623.229 143.337 623.435 143.425C623.641 143.513 623.861 143.559 624.084 143.559C624.307 143.559 624.528 143.513 624.733 143.425C624.939 143.337 625.126 143.208 625.284 143.045L625.877 142.424C626.035 142.262 626.16 142.069 626.245 141.856C626.33 141.644 626.374 141.416 626.374 141.186C626.374 140.956 626.33 140.728 626.245 140.516C626.16 140.303 626.035 140.11 625.877 139.948L626.479 139.335L626.538 139.396C626.842 139.707 627.251 139.881 627.678 139.881C628.106 139.881 628.515 139.707 628.819 139.396L631.913 136.202L635.787 140.201C635.696 140.505 635.686 140.828 635.76 141.136C635.833 141.444 635.986 141.726 636.202 141.952L652.987 159.269C653.145 159.432 653.332 159.561 653.537 159.649C653.743 159.737 653.964 159.782 654.187 159.782C654.409 159.782 654.63 159.737 654.836 159.649C655.042 159.561 655.229 159.432 655.386 159.269L656.547 158.07C656.705 157.908 656.83 157.715 656.915 157.502C657.001 157.29 657.045 157.062 657.045 156.832C657.045 156.602 657.001 156.374 656.915 156.162C656.83 155.949 656.705 155.756 656.547 155.594Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Artwork 64x64_4\">\n<g id=\"Group 384\">\n<path id=\"Vector_306\" d=\"M52.8686 119.407C50.5757 119.407 48.3342 120.087 46.4277 121.361C44.5213 122.634 43.0353 124.445 42.1579 126.563C41.2804 128.682 41.0508 131.013 41.4982 133.262C41.9455 135.51 43.0496 137.576 44.671 139.198C46.2923 140.819 48.358 141.923 50.6069 142.37C52.8557 142.818 55.1867 142.588 57.3051 141.711C59.4235 140.833 61.2341 139.347 62.5079 137.441C63.7818 135.534 64.4618 133.293 64.4618 131C64.4618 127.925 63.2403 124.976 61.0662 122.802C58.892 120.628 55.9433 119.407 52.8686 119.407Z\" fill=\"white\"/>\n<path id=\"Vector_307\" d=\"M52.8437 137.128C53.7583 137.128 54.4998 136.386 54.4998 135.472C54.4998 134.557 53.7583 133.815 52.8437 133.815C51.929 133.815 51.1875 134.557 51.1875 135.472C51.1875 136.386 51.929 137.128 52.8437 137.128Z\" fill=\"#206095\"/>\n<path id=\"Vector_308\" d=\"M54.359 131.973C54.3527 132.079 54.3063 132.178 54.2293 132.25C54.1523 132.322 54.0506 132.362 53.945 132.362H51.792C51.6863 132.362 51.5846 132.322 51.5076 132.25C51.4307 132.178 51.3843 132.079 51.3779 131.973L50.9639 125.29C50.9605 125.234 50.9687 125.177 50.988 125.124C51.0073 125.071 51.0372 125.023 51.076 124.981C51.1148 124.94 51.1616 124.908 51.2135 124.885C51.2654 124.863 51.3214 124.851 51.3779 124.852H54.3425C54.399 124.851 54.4549 124.863 54.5069 124.885C54.5588 124.908 54.6056 124.94 54.6444 124.981C54.6832 125.023 54.7131 125.071 54.7324 125.124C54.7517 125.177 54.7599 125.234 54.7565 125.29L54.359 131.973Z\" fill=\"#206095\"/>\n</g>\n<path id=\"Vector_309\" d=\"M70.9162 146.415H65.3567C61.6706 146.415 58.1354 147.879 55.5289 150.485C52.9223 153.092 51.458 156.627 51.458 160.313H84.815C84.815 158.488 84.4555 156.681 83.757 154.994C83.0585 153.308 82.0347 151.776 80.7441 150.485C79.4535 149.195 77.9213 148.171 76.235 147.473C74.5488 146.774 72.7414 146.415 70.9162 146.415Z\" fill=\"#003C57\"/>\n<path id=\"Vector_310\" d=\"M68.1364 143.635C72.742 143.635 76.4756 139.901 76.4756 135.295C76.4756 130.69 72.742 126.956 68.1364 126.956C63.5307 126.956 59.7971 130.69 59.7971 135.295C59.7971 139.901 63.5307 143.635 68.1364 143.635Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Artwork 64x64_5\">\n<path id=\"Vector_311\" d=\"M194.282 124.463V159.748C194.282 160.108 194.425 160.453 194.679 160.708C194.934 160.962 195.279 161.105 195.639 161.105H220.067C220.427 161.105 220.773 160.962 221.027 160.708C221.282 160.453 221.425 160.108 221.425 159.748V131.248L213.282 123.105H195.639C195.279 123.105 194.934 123.248 194.679 123.503C194.425 123.757 194.282 124.103 194.282 124.463Z\" fill=\"#003C57\"/>\n<path id=\"Vector_312\" d=\"M214.639 131.248H221.425L213.282 123.105V129.891C213.282 130.251 213.425 130.596 213.679 130.851C213.934 131.105 214.279 131.248 214.639 131.248Z\" fill=\"#4D7789\"/>\n<path id=\"Vector_313\" d=\"M213.282 151.266H199.71C199.44 151.266 199.181 151.159 198.991 150.968C198.8 150.777 198.692 150.518 198.692 150.248C198.692 149.978 198.8 149.719 198.991 149.529C199.181 149.338 199.44 149.23 199.71 149.23H213.282C213.552 149.23 213.811 149.338 214.001 149.529C214.192 149.719 214.3 149.978 214.3 150.248C214.3 150.518 214.192 150.777 214.001 150.968C213.811 151.159 213.552 151.266 213.282 151.266Z\" fill=\"white\"/>\n<path id=\"Vector_314\" d=\"M213.282 146.516H199.71C199.44 146.516 199.181 146.409 198.991 146.218C198.8 146.027 198.692 145.768 198.692 145.498C198.692 145.228 198.8 144.969 198.991 144.779C199.181 144.588 199.44 144.48 199.71 144.48H213.282C213.552 144.48 213.811 144.588 214.001 144.779C214.192 144.969 214.3 145.228 214.3 145.498C214.3 145.768 214.192 146.027 214.001 146.218C213.811 146.409 213.552 146.516 213.282 146.516Z\" fill=\"white\"/>\n<path id=\"Vector_315\" d=\"M213.282 141.766H199.71C199.44 141.766 199.181 141.659 198.991 141.468C198.8 141.277 198.692 141.018 198.692 140.748C198.692 140.478 198.8 140.219 198.991 140.029C199.181 139.838 199.44 139.73 199.71 139.73H213.282C213.552 139.73 213.811 139.838 214.001 140.029C214.192 140.219 214.3 140.478 214.3 140.748C214.3 141.018 214.192 141.277 214.001 141.468C213.811 141.659 213.552 141.766 213.282 141.766Z\" fill=\"white\"/>\n<path id=\"Vector_316\" d=\"M207.853 137.016H199.71C199.44 137.016 199.181 136.909 198.991 136.718C198.8 136.527 198.692 136.268 198.692 135.998C198.692 135.728 198.8 135.469 198.991 135.279C199.181 135.088 199.44 134.98 199.71 134.98H207.853C208.123 134.98 208.382 135.088 208.573 135.279C208.764 135.469 208.871 135.728 208.871 135.998C208.871 136.268 208.764 136.527 208.573 136.718C208.382 136.909 208.123 137.016 207.853 137.016Z\" fill=\"white\"/>\n<g id=\"Vector_317\">\n<path d=\"M226.405 140.864L215.066 152.203C214.98 152.284 214.875 152.345 214.761 152.379L212.603 152.963C212.546 152.978 212.486 152.977 212.429 152.962C212.371 152.946 212.319 152.916 212.278 152.874C212.236 152.832 212.206 152.78 212.19 152.723C212.175 152.666 212.174 152.606 212.189 152.549L212.766 150.364C212.793 150.247 212.855 150.14 212.942 150.058L224.247 138.713C224.534 138.427 224.922 138.266 225.326 138.266C225.731 138.266 226.119 138.427 226.405 138.713C226.689 138.999 226.848 139.385 226.848 139.788C226.848 140.191 226.689 140.578 226.405 140.864Z\" fill=\"white\"/>\n<path d=\"M226.405 140.864L215.066 152.203C214.98 152.284 214.875 152.345 214.761 152.379L212.603 152.963C212.546 152.978 212.486 152.977 212.429 152.962C212.371 152.946 212.319 152.916 212.278 152.874C212.236 152.832 212.206 152.78 212.19 152.723C212.175 152.666 212.174 152.606 212.189 152.549L212.766 150.364C212.793 150.247 212.855 150.14 212.942 150.058L224.247 138.713C224.534 138.427 224.922 138.266 225.326 138.266C225.731 138.266 226.119 138.427 226.405 138.713C226.689 138.999 226.848 139.385 226.848 139.788C226.848 140.191 226.689 140.578 226.405 140.864Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n<g id=\"Group 386\">\n<g id=\"Artwork 64x64_6\">\n<path id=\"Vector_318\" d=\"M370 133.813V153.813C370 154.874 369.579 155.891 368.828 156.641C368.078 157.392 367.061 157.813 366 157.813H334C332.939 157.813 331.922 157.392 331.172 156.641C330.421 155.891 330 154.874 330 153.813V129.813C330 128.752 330.421 127.735 331.172 126.985C331.922 126.234 332.939 125.813 334 125.813H344.333C344.863 125.81 345.388 125.912 345.878 126.114C346.367 126.315 346.812 126.612 347.187 126.986L350 129.813H366C367.061 129.813 368.078 130.234 368.828 130.985C369.579 131.735 370 132.752 370 133.813Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Group 385\">\n<path id=\"Vector_319\" d=\"M346.333 145.229H343.667C341.899 145.229 340.203 145.932 338.953 147.182C337.702 148.432 337 150.128 337 151.896H353C353 151.021 352.828 150.154 352.493 149.345C352.157 148.536 351.666 147.801 351.047 147.182C350.428 146.563 349.693 146.072 348.885 145.737C348.076 145.402 347.209 145.229 346.333 145.229Z\" fill=\"white\"/>\n<path id=\"Vector_320\" d=\"M345 143.896C347.209 143.896 349 142.105 349 139.896C349 137.687 347.209 135.896 345 135.896C342.791 135.896 341 137.687 341 139.896C341 142.105 342.791 143.896 345 143.896Z\" fill=\"white\"/>\n</g>\n<g id=\"Union\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M373.813 143.561C374.027 143.363 374.027 143.024 373.813 142.826L366.365 135.947C366.045 135.651 365.526 135.878 365.526 136.314V139.72H359C358.448 139.72 358 140.167 358 140.72V145.667C358 146.219 358.448 146.667 359 146.667H365.526V150.073C365.526 150.509 366.045 150.736 366.365 150.44L373.813 143.561Z\" fill=\"white\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M373.813 143.561C374.027 143.363 374.027 143.024 373.813 142.826L366.365 135.947C366.045 135.651 365.526 135.878 365.526 136.314V139.72H359C358.448 139.72 358 140.167 358 140.72V145.667C358 146.219 358.448 146.667 359 146.667H365.526V150.073C365.526 150.509 366.045 150.736 366.365 150.44L373.813 143.561Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n</g>\n</g>\n</g>\n<g id=\"Title\">\n<rect width=\"700\" height=\"90\" transform=\"translate(0 176.813)\" fill=\"white\"/>\n<rect width=\"700\" height=\"90\" transform=\"translate(0 176.813)\" fill=\"#206095\" fill-opacity=\"0.1\"/>\n<g id=\"Title\">\n <rect width=\"700\" height=\"90\" transform=\"translate(0 176.813)\" fill=\"white\"/>\n <rect width=\"700\" height=\"90\" transform=\"translate(0 176.813)\" fill=\"#206095\" fill-opacity=\"0.1\"/>\n <text id=\"Understanding domestic abuse data through the criminal justice system\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"22\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"20\" y=\"212.748\">Understanding domestic abuse data through the</tspan><tspan x=\"20\" y=\"243.548\">criminal justice system</tspan></text>\n </g>\n<g id=\"Chart bit\">\n<g id=\"Estimated victims of domestic abuse by sex England and Wales, year ending March 2023\">\n<text fill=\"black\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"20\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"20\" y=\"307.572\">Estimated victims of domestic abuse by sex </tspan></text>\n<text fill=\"black\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"16\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"20\" y=\"336.372\">England and Wales, year ending March 2023</tspan></text>\n</g>\n<g id=\"Overall chart\">\n<line id=\"Line 113\" x1=\"114.316\" y1=\"367.313\" x2=\"114.316\" y2=\"642.653\" stroke=\"#B3B3B3\" stroke-width=\"1.5\"/>\n<line id=\"Line 114\" x1=\"223.626\" y1=\"367.313\" x2=\"223.626\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 115\" x1=\"328.789\" y1=\"367.313\" x2=\"328.789\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 116\" x1=\"433.952\" y1=\"367.313\" x2=\"433.952\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 117\" x1=\"539.115\" y1=\"367.313\" x2=\"539.115\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 118\" x1=\"644.279\" y1=\"367.313\" x2=\"644.279\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<path id=\"Vector_321\" d=\"M130.328 484.739L114.5 484.739L114.5 522.739L130.328 522.739L130.328 484.739Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_322\" d=\"M125.248 538.89L114.5 538.89L114.5 576.89L125.248 576.89L125.248 538.89Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_323\" d=\"M124.743 594.022L114.5 594.022L114.5 632.446L124.743 632.446L124.743 594.022Z\" fill=\"#E2E2E3\"/>\n<text id=\"500,000\" transform=\"translate(187.437 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"9.93799\" y=\"14.4312\">500,000</tspan></text>\n<text id=\"0\" transform=\"translate(88.77 645.136)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"21.7058\" y=\"14.4312\">0</tspan></text>\n<text id=\"1,000,000\" transform=\"translate(294.227 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"4.21631\" y=\"14.4312\">1,000,000</tspan></text>\n<text id=\"1,500,000\" transform=\"translate(397.763 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"4.21631\" y=\"14.4312\">1,500,000</tspan></text>\n<text id=\"2,000,000\" transform=\"translate(502.926 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"4.21631\" y=\"14.4312\">2,000,000</tspan></text>\n<text id=\"2,500,000\" transform=\"translate(608.622 646.284)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"4.21631\" y=\"14.4312\">2,500,000</tspan></text>\n<!-- <path id=\"Vector_324\" d=\"M308.605 430.588L114.5 430.588L114.5 468.588L308.605 468.588L308.605 430.588Z\" fill=\"#E2E2E3\"/> -->\n<g id=\"Horizontal label\">\n<text id=\"Estimated victims\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"28.3984\" y=\"392.269\">Estimated </tspan><tspan x=\"48.4688\" y=\"409.069\">victims</tspan></text>\n<text id=\"Recorded by police\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"36.6016\" y=\"446.269\">Recorded </tspan><tspan x=\"41.0586\" y=\"463.069\">by police</tspan></text>\n<text id=\"Suspects referred\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"41.2773\" y=\"500.269\">Suspects </tspan><tspan x=\"44.9414\" y=\"517.069\">referred</tspan></text>\n<text id=\"Suspects charged\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"36.7383\" y=\"554.269\">Suspects </tspan><tspan x=\"37.6406\" y=\"571.069\">charged</tspan></text>\n<text id=\"Offenders convicted\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"33.2793\" y=\"608.269\">Offenders </tspan><tspan x=\"36.6426\" y=\"625.069\">convicted</tspan></text>\n</g>\n<text id=\"910,980\" transform=\"translate(234.717 442.297)\" fill=\"#B3B3B3\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"11.9096\" y=\"13.4312\"></tspan></text>\n<g id=\"Females 1,671,000\">\n<text transform=\"translate(362.77 441.152)\" fill=\"#2EA1A4\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"0\" y=\"32.4312\">1,377,000</tspan></text>\n<text transform=\"translate(362.77 441.152)\" fill=\"#2EA1A4\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"0\" y=\"14.4312\">Females </tspan></text>\n</g>\n<g id=\"Males 699,000\">\n<text transform=\"translate(521.064 440.46)\" fill=\"#6749A6\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"0\" y=\"32.4312\">751,000</tspan></text>\n<text transform=\"translate(521.064 440.46)\" fill=\"#6749A6\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"0\" y=\"14.4312\">Males </tspan></text>\n</g>\n<path id=\"Vector_325\" d=\"M467.601 376.437L114.5 376.438L114.5 414.438L467.601 414.437L467.601 376.437Z\" fill=\"#2EA1A4\"/>\n\n\n<rect id=\"Bar_2\" x={114} width={(644-114)*((1377000+751000)/2500000)} y={430-54} height={38} fill=\"#6749A6\"/>\n<rect id=\"Bar_1\" x={114} width={(644-114)*(1377000/2500000)} y={430-54} height={38} fill=\"#2EA1A4\"/>\n\n<rect id=\"Bar_3\" x={114} width={(644-114)*(889918/2500000)} y={430} height={38} fill=\"#E2E2E3\"/>\n\n\n\n\n<path id=\"Vector 6\" d=\"M541.307 438.571C541.34 438.98 541.703 439.275 542.118 439.23C542.533 439.184 542.843 438.815 542.81 438.406L541.307 438.571ZM536.84 417.083C536.438 416.989 536.025 417.239 535.917 417.64L534.164 424.179C534.056 424.58 534.295 424.981 534.697 425.075C535.1 425.169 535.513 424.92 535.62 424.519L537.179 418.706L543.005 420.065C543.407 420.159 543.82 419.91 543.928 419.509C544.035 419.108 543.797 418.706 543.394 418.612L536.84 417.083ZM542.81 438.406C542.219 431.034 541.812 425.001 537.298 417.416L535.993 418.203C540.32 425.475 540.716 431.202 541.307 438.571L542.81 438.406Z\" fill=\"#707071\"/>\n<path id=\"Vector 7\" d=\"M391.825 438.571C391.858 438.98 392.221 439.275 392.636 439.23C393.051 439.184 393.361 438.815 393.328 438.406L391.825 438.571ZM387.359 417.083C386.956 416.989 386.543 417.239 386.436 417.64L384.682 424.179C384.574 424.58 384.813 424.981 385.215 425.075C385.618 425.169 386.031 424.92 386.139 424.519L387.697 418.706L393.523 420.065C393.925 420.159 394.338 419.91 394.446 419.509C394.554 419.108 394.315 418.706 393.913 418.612L387.359 417.083ZM393.328 438.406C392.737 431.034 392.33 425.001 387.816 417.416L386.511 418.203C390.838 425.475 391.234 431.202 391.825 438.571L393.328 438.406Z\" fill=\"#707071\"/>\n<text id=\"67,063\" transform=\"translate(130.701 494.868)\" fill=\"#BCBCBD\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"6.62919\" y=\"14.1756\"></tspan></text>\n<text id=\"40,647\" transform=\"translate(125.644 604.088)\" fill=\"#BCBCBD\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"6.62919\" y=\"12.9558\"></tspan></text>\n<text id=\"43,836\" transform=\"translate(126.102 549.072)\" fill=\"#BCBCBD\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"6.62919\" y=\"13.972\"></tspan></text>\n</g>\n </g>\n \n \n </svg>\n <p class=\"source\">\n Source: Crime Survey for England and Wales from the Office for National Statistics </p> \n <div class=\"commentary\">\n <b>Who were the victims? </b>\n <br><br>\n An estimated 4.4% of people aged 16 years and over (5.7% women and 3.2% men) experienced domestic abuse in the last year. This equates to an estimated 2.1 million adults (1.4 million women and 751,000 men). \n <br><br>\n Approximately 1 in 5 people aged 16 years and over (9.8 million) had experienced domestic abuse since the age of 16 years. \n <br><br>\n Following the removal of the upper age limit for survey respondents in October 2021, when analysing data over a longer time period, we use the 16 to 59 years age range to give a comparable time series: \n <br><br><ul><li>\n there was no significant change in the prevalence of domestic abuse experienced by adults aged 16 to 59 years in the last year (5.1%), compared with the year ending March 2023 </li><br>\n <li>\n there was a significant decrease compared with the year ending March 2020 (6.1%) </li></ul>\n <br>\n A higher percentage of people aged 16 years and over experienced domestic abuse by a partner or ex-partner (3.0%) than by a family member (1.8%) in the last year. \n \n <br><br>\n <button class=\"button\" type=\"button\" on:click={()=>goTo.set(\"Three\")}>Next ▶</button>\n <button class=\"button grey\" type=\"button\" on:click={()=>goTo.set(\"One\")}>Back</button></div>\n <style>\n .button{\n background-color:rgb(15, 130, 67);\n width:97px;\n height:40px;\n color:white;\n font-weight:bold;\n font-size:16px;\n border:none;\n }\n .grey{\n background-color:#666;\n }\n .source{\n color:grey\n }\n \n .commentary{\n font-weight:400;\n font-size:18px;\n background-color:rgba(32, 96, 149,0.1);\n padding:20px;\n }\n </style>","<script>\n export let goTo=null\n $: console.log(\"goto\",$goTo)\n </script>\n<svg width=\"700\" viewBox=\"0 0 700 700\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<g id=\"Interactive\">\n<g id=\"Illustration headers\">\n<g id=\"Illustration\">\n<g id=\"Illo\">\n<g id=\"Ellipse 1\">\n<path d=\"M700 120.569C500.303 120.569 178.452 120.569 0 120.569C0 101.933 125.256 2.20508 350 2.20508C570.463 2.20508 700 101.933 700 120.569Z\" fill=\"white\"/>\n<path d=\"M700 120.569C500.303 120.569 178.452 120.569 0 120.569C0 101.933 125.256 2.20508 350 2.20508C570.463 2.20508 700 101.933 700 120.569Z\" fill=\"#206095\" fill-opacity=\"0.05\"/>\n</g>\n<g id=\"Background buildings\">\n<path id=\"Vector\" d=\"M487.962 87.3798L480.563 81.3013C480.06 80.8885 479.372 80.8885 478.868 81.3013L471.469 87.3798V145.715H487.962V87.3798Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_2\" d=\"M460.082 91.2017H471.74V145.027H460.082V91.2017Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_3\" d=\"M462.433 84.4312H467.694V93.195H462.433V84.4312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_4\" d=\"M487.938 98.2393H500.166V142.841H487.938V98.2393Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_5\" d=\"M500.162 88.8657H511.25V145.255H500.162V88.8657Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_6\" d=\"M510.947 80.605H519.632V144.567H510.947V80.605Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_7\" d=\"M532.469 91.6416H542.983V143.132H532.469V91.6416Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_8\" d=\"M542.983 97.7549H552.081V141.098H542.983V97.7549Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_9\" d=\"M532.47 101.923L519.495 95.8364V141.122H532.47V101.923Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_2\">\n<path id=\"Vector_10\" d=\"M179.123 68.9979L169.785 59.9251C169.148 59.3082 168.283 59.3082 167.646 59.9251L158.307 68.9979V156.036H179.119V68.9979H179.123Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_11\" d=\"M143.934 155.001H158.649V74.6915H143.934V155.001Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_12\" d=\"M146.908 77.6709H153.545V64.5964H146.908V77.6709Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_13\" d=\"M179.092 151.752H194.523V74.4409H179.092V151.752Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_14\" d=\"M194.511 155.348H208.505V71.2133H194.511V155.348Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_15\" d=\"M217.438 154.32H228.397V58.891H217.438V154.32Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_16\" d=\"M65.4647 143.936H108.021V97.7379H65.4647V143.936Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_17\" d=\"M125.683 142.646H140.152V94.0413H125.683V142.646Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_18\" d=\"M140.153 144.301H152.671V93.9401H140.153V144.301Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_19\" d=\"M136.687 98.7855L107.828 91.7114V144.328H136.687V98.7855Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_20\" d=\"M179.123 48.2058L169.785 43.3925C169.148 43.0651 168.283 43.0651 167.646 43.3925L158.307 48.2058V94.3816H179.119V48.2058H179.123Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_21\" d=\"M143.934 93.833H158.649V51.2267H143.934V93.833Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_22\" d=\"M146.908 52.8071H153.545V45.8708H146.908V52.8071Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_23\" d=\"M179.092 92.1094H194.523V56.8041H179.092V92.1094Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_24\" d=\"M208.506 118.488H233.453V41.7437H208.506V118.488Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_25\" d=\"M79.4428 111.917H108.021V77.9923H79.4428V111.917Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_26\" d=\"M125.683 135.839H146.908L146.908 61.4923H125.683L125.683 135.839Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_27\" d=\"M140.153 139.21H152.671L152.671 53.1164H140.153V139.21Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_28\" d=\"M125.683 72.2887L107.828 64.8125V120.42H125.683V72.2887Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_3\">\n<path id=\"Vector_29\" d=\"M261.115 61.1229L270.454 51.2292C271.091 50.5564 271.956 50.5564 272.593 51.2292L281.932 61.1229V156.036H261.12V61.1229H261.115Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_30\" d=\"M296.304 154.907H281.589V67.3315H296.304V154.907Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_31\" d=\"M293.331 70.5806H286.693V56.3232H293.331V70.5806Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_32\" d=\"M261.146 151.364H245.715V67.0583H261.146V151.364Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_33\" d=\"M245.728 155.286H231.733V63.5389H245.728V155.286Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_34\" d=\"M222.801 154.165H211.842V50.1015H222.801V154.165Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_35\" d=\"M374.774 138.215H332.218V92.4634H374.774V138.215Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_36\" d=\"M314.555 141.435H300.086V88.4327H314.555V141.435Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_37\" d=\"M300.086 143.239H287.567V88.322H300.086V143.239Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_38\" d=\"M303.552 93.6058L332.411 85.8916V143.269H303.552V93.6058Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_39\" d=\"M261.115 38.4497L270.454 33.2008C271.091 32.8439 271.956 32.8439 272.593 33.2008L281.932 38.4497V88.8034H261.12V38.4497H261.115Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_40\" d=\"M296.304 88.2051H281.589V41.7438H296.304V88.2051Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_41\" d=\"M293.331 43.4673H286.693V35.9034H293.331V43.4673Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_42\" d=\"M261.146 86.3252H245.715V47.8256H261.146V86.3252Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_43\" d=\"M231.733 143.132H206.786L206.786 31.4027H231.733L231.733 143.132Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_44\" d=\"M360.796 107.925H332.218V70.9312H360.796V107.925Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_45\" d=\"M314.555 134.012H293.331V52.9384H314.555V134.012Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_46\" d=\"M300.086 137.688H287.567V43.8044H300.086V137.688Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_47\" d=\"M314.555 64.7117L332.411 56.5591V117.197H314.555V64.7117Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_4\">\n<path id=\"Vector_48\" d=\"M396.322 43.9472L406.674 33.1907C407.38 32.4592 408.339 32.4592 409.045 33.1907L419.398 43.9472V147.137H396.327V43.9472H396.322Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_49\" d=\"M435.325 48.7314H419.013V147.137H435.325V48.7314Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_50\" d=\"M432.033 38.0664H424.676V51.8795H432.033V38.0664Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_51\" d=\"M396.356 59.8315H379.25V147.137H396.356V59.8315Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_52\" d=\"M379.259 45.0566H363.746V147.137H379.259V45.0566Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_53\" d=\"M364.165 32.0312H352.016V147.137H364.165V32.0312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_54\" d=\"M334.058 68.2846L352.211 56.0444V147.137H334.058V68.2846Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_55\" d=\"M455.562 65.9717H439.522V147.137H455.562V65.9717Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_56\" d=\"M439.523 78.8105H425.645V147.137H439.523V78.8105Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_5\">\n<path id=\"Vector_57\" d=\"M406.323 26.2429L415.451 19.0517C416.072 18.5602 416.92 18.5602 417.541 19.0517L426.669 26.2429V95.2607H406.323V26.2429Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_58\" d=\"M440.71 30.7603H426.33V94.4428H440.71V30.7603Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_59\" d=\"M437.81 22.7515H431.32V33.1195H437.81V22.7515Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_60\" d=\"M406.352 39.0913H391.268V91.8632H406.352V39.0913Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_61\" d=\"M391.273 28H377.595V94.7178H391.273V28Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_62\" d=\"M377.968 18.2261H367.254V93.9004H377.968V18.2261Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_63\" d=\"M351.419 31.2827H338.449V92.2012H351.419V31.2827Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_64\" d=\"M338.449 38.5176H327.226V89.8033H338.449V38.5176Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_65\" d=\"M351.418 43.4476L367.424 36.2485V89.8264H351.418V43.4476Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_6\">\n<path id=\"Vector_66\" d=\"M484.96 43.5227L474.547 36.3315C473.839 35.84 472.871 35.84 472.162 36.3315L461.749 43.5227V112.541H484.96V43.5227Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_67\" d=\"M445.731 48.04H462.137V149.435H445.731V48.04Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_68\" d=\"M449.04 40.0312H456.443V50.3993H449.04V40.0312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_69\" d=\"M484.322 48.8135H502.53V108.813H484.322V48.8135Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_70\" d=\"M502.13 45.2803H517.733V111.998H502.13V45.2803Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_71\" d=\"M517.307 35.5059H529.529V111.18H517.307V35.5059Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_72\" d=\"M547.595 48.5625H562.39V109.481H547.595V48.5625Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_73\" d=\"M562.39 55.7974H575.194V107.083H562.39V55.7974Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_74\" d=\"M547.571 46.2191L529.363 36.8135V106.813H547.571V46.2191Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_75\" d=\"M589.381 82.1595L578.968 76.8057C578.259 76.4398 577.291 76.4398 576.583 76.8057L566.17 82.1595V133.543H589.381V82.1595Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_76\" d=\"M588.742 88.873H606.95V133.543H588.742V88.873Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_77\" d=\"M606.55 83.8721H622.153V133.544H606.55V83.8721Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_78\" d=\"M621.728 77.2036H633.95V133.543H621.728V77.2036Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_79\" d=\"M651.991 88.4307L633.783 81.4282V133.543H651.991V88.4307Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Ground\">\n<g id=\"Vector_80\">\n<path d=\"M700 177.896H0V135.896H700V177.896Z\" fill=\"white\"/>\n<path d=\"M700 177.896H0V135.896H700V177.896Z\" fill=\"#206095\" fill-opacity=\"0.1\"/>\n</g>\n<g id=\"Vector_81\">\n<path d=\"M700 135.896H0V120.569H700V135.896Z\" fill=\"white\"/>\n<path d=\"M700 135.896H0V120.569H700V135.896Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n</g>\n<g id=\"Bush\">\n<g id=\"Vector_82\">\n<path d=\"M47.7682 112.919C52.1167 115.137 54.8257 116.218 55.9659 117.354C57.11 118.491 59.8111 121.801 58.266 124.188C56.7169 126.574 56.2057 128.442 51.8533 128.245C47.5008 128.049 45.7355 127.432 42.2126 127.754C38.6898 128.076 35.5759 126.496 34.8485 125.737C34.1211 124.978 31.9351 121.459 34.8288 118.345C37.7226 115.227 43.9269 110.961 47.7682 112.919Z\" fill=\"white\"/>\n<path d=\"M47.7682 112.919C52.1167 115.137 54.8257 116.218 55.9659 117.354C57.11 118.491 59.8111 121.801 58.266 124.188C56.7169 126.574 56.2057 128.442 51.8533 128.245C47.5008 128.049 45.7355 127.432 42.2126 127.754C38.6898 128.076 35.5759 126.496 34.8485 125.737C34.1211 124.978 31.9351 121.459 34.8288 118.345C37.7226 115.227 43.9269 110.961 47.7682 112.919Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_83\">\n<path d=\"M40.9347 110.729C37.9347 109.058 34.6399 108.972 30.3583 111.645C26.0766 114.323 25.1723 116.1 24.9128 117.283C24.6572 118.467 22.7071 119.214 23.2339 121.581C23.7608 123.948 28.8013 126.448 32.0686 126.735C35.3359 127.022 36.02 126.723 39.9006 126.122C43.7812 125.52 46.8991 124.624 48.3185 121.659C49.7418 118.695 44.1076 112.494 40.9307 110.729H40.9347Z\" fill=\"white\"/>\n<path d=\"M40.9347 110.729C37.9347 109.058 34.6399 108.972 30.3583 111.645C26.0766 114.323 25.1723 116.1 24.9128 117.283C24.6572 118.467 22.7071 119.214 23.2339 121.581C23.7608 123.948 28.8013 126.448 32.0686 126.735C35.3359 127.022 36.02 126.723 39.9006 126.122C43.7812 125.52 46.8991 124.624 48.3185 121.659C49.7418 118.695 44.1076 112.494 40.9307 110.729H40.9347Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_84\">\n<path d=\"M58.2209 114.583C64.9717 116.792 69.1786 117.87 70.9558 119.006C72.729 120.142 76.9242 123.445 74.518 125.835C72.1078 128.226 71.3097 130.093 64.547 129.905C57.7844 129.716 55.044 129.103 49.571 129.429C44.098 129.755 39.262 128.182 38.1336 127.424C37.0052 126.665 33.6121 123.15 38.1139 120.032C42.6158 116.91 52.2643 112.636 58.2287 114.59L58.2209 114.583Z\" fill=\"white\"/>\n<path d=\"M58.2209 114.583C64.9717 116.792 69.1786 117.87 70.9558 119.006C72.729 120.142 76.9242 123.445 74.518 125.835C72.1078 128.226 71.3097 130.093 64.547 129.905C57.7844 129.716 55.044 129.103 49.571 129.429C44.098 129.755 39.262 128.182 38.1336 127.424C37.0052 126.665 33.6121 123.15 38.1139 120.032C42.6158 116.91 52.2643 112.636 58.2287 114.59L58.2209 114.583Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_85\">\n<path d=\"M21.0752 124.149C19.3491 123.3 17.454 123.248 14.9849 124.597C12.5158 125.946 11.9928 126.846 11.8434 127.444C11.694 128.041 10.5696 128.419 10.8723 129.614C11.1711 130.813 14.0688 132.087 15.9521 132.236C17.8354 132.386 18.2286 132.236 20.4618 131.938C22.6951 131.639 24.4919 131.187 25.3175 129.689C26.1432 128.191 22.9074 125.045 21.083 124.145L21.0752 124.149Z\" fill=\"white\"/>\n<path d=\"M21.0752 124.149C19.3491 123.3 17.454 123.248 14.9849 124.597C12.5158 125.946 11.9928 126.846 11.8434 127.444C11.694 128.041 10.5696 128.419 10.8723 129.614C11.1711 130.813 14.0688 132.087 15.9521 132.236C17.8354 132.386 18.2286 132.236 20.4618 131.938C22.6951 131.639 24.4919 131.187 25.3175 129.689C26.1432 128.191 22.9074 125.045 21.083 124.145L21.0752 124.149Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_86\">\n<path d=\"M14.1043 125.642C12.7361 124.97 11.2342 124.931 9.27616 126C7.31815 127.07 6.90531 127.781 6.78343 128.257C6.66547 128.733 5.7769 129.028 6.0128 129.979C6.24871 130.931 8.54878 131.937 10.0389 132.059C11.529 132.177 11.8436 132.059 13.6129 131.823C15.3861 131.587 16.8094 131.229 17.4621 130.042C18.1147 128.855 15.5512 126.362 14.1043 125.65V125.642Z\" fill=\"white\"/>\n<path d=\"M14.1043 125.642C12.7361 124.97 11.2342 124.931 9.27616 126C7.31815 127.07 6.90531 127.781 6.78343 128.257C6.66547 128.733 5.7769 129.028 6.0128 129.979C6.24871 130.931 8.54878 131.937 10.0389 132.059C11.529 132.177 11.8436 132.059 13.6129 131.823C15.3861 131.587 16.8094 131.229 17.4621 130.042C18.1147 128.855 15.5512 126.362 14.1043 125.65V125.642Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_87\">\n<path d=\"M18.5986 121.176C16.8726 120.327 14.9775 120.276 12.5083 121.624C10.0392 122.973 9.51629 123.873 9.36688 124.471C9.21747 125.069 8.09299 125.446 8.39574 126.641C8.69455 127.841 8.91473 129.626 10.798 129.775C12.6813 129.924 15.752 129.264 17.9853 128.965C20.2185 128.666 22.0153 128.214 22.841 126.716C23.6627 125.218 20.4308 122.073 18.6065 121.172L18.5986 121.176Z\" fill=\"white\"/>\n<path d=\"M18.5986 121.176C16.8726 120.327 14.9775 120.276 12.5083 121.624C10.0392 122.973 9.51629 123.873 9.36688 124.471C9.21747 125.069 8.09299 125.446 8.39574 126.641C8.69455 127.841 8.91473 129.626 10.798 129.775C12.6813 129.924 15.752 129.264 17.9853 128.965C20.2185 128.666 22.0153 128.214 22.841 126.716C23.6627 125.218 20.4308 122.073 18.6065 121.172L18.5986 121.176Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Police station\" clip-path=\"url(#clip0_1849_10287)\">\n<g id=\"Vector_88\">\n<path d=\"M476.484 47.2856H307.516V127.819H476.484V47.2856Z\" fill=\"white\"/>\n<path d=\"M476.484 47.2856H307.516V127.819H476.484V47.2856Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<path id=\"Vector_89\" d=\"M477 45.1685H307V47.2905H477V45.1685Z\" fill=\"#003C57\"/>\n<g id=\"Vector_90\">\n<path d=\"M414.975 39.9351H369.025V129.808H414.975V39.9351Z\" fill=\"white\"/>\n<path d=\"M414.975 39.9351H369.025V129.808H414.975V39.9351Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_91\" d=\"M415.614 37.813H368.391V39.935H415.614V37.813Z\" fill=\"#003C57\"/>\n<path id=\"Vector_92\" d=\"M363.839 52.5688H311.744V61.372H363.839V52.5688Z\" fill=\"white\"/>\n<path id=\"Vector_93\" d=\"M363.839 66.1133H311.744V75.2069H363.839V66.1133Z\" fill=\"white\"/>\n<path id=\"Vector_94\" d=\"M363.957 79.7314H311.744V88.5346H363.957V79.7314Z\" fill=\"white\"/>\n<path id=\"Vector_95\" d=\"M351.913 93.3105H311.744V102.114H351.913V93.3105Z\" fill=\"white\"/>\n<path id=\"Vector_96\" d=\"M351.913 106.274H311.744V115.077H351.913V106.274Z\" fill=\"white\"/>\n<path id=\"Vector_97\" d=\"M420.206 61.377L472.3 61.377V52.5738L420.206 52.5738V61.377Z\" fill=\"white\"/>\n<path id=\"Vector_98\" d=\"M420.206 75.2119H472.3V66.1183H420.206V75.2119Z\" fill=\"white\"/>\n<path id=\"Vector_99\" d=\"M420.083 88.5347H472.295V79.7315H420.083V88.5347Z\" fill=\"white\"/>\n<path id=\"Vector_100\" d=\"M432.127 102.119H472.295V93.3155H432.127V102.119Z\" fill=\"white\"/>\n<path id=\"Vector_101\" d=\"M432.127 115.072H472.295V106.269H432.127V115.072Z\" fill=\"white\"/>\n<g id=\"Vector_102\">\n<path d=\"M426.719 97.978H357.276V129.808H426.719V97.978Z\" fill=\"white\"/>\n<path d=\"M426.719 97.978H357.276V129.808H426.719V97.978Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<path id=\"Vector_103\" d=\"M428.342 95.856H355.659V97.978H428.342V95.856Z\" fill=\"#003C57\"/>\n<path id=\"Vector_104\" d=\"M374.044 111.493H376.399C381.359 111.493 385.385 115.525 385.385 120.493V129.813H365.053V120.493C365.053 115.525 369.079 111.493 374.039 111.493H374.044Z\" fill=\"white\"/>\n<g id=\"Vector_105\">\n<path d=\"M375.367 111.443H375.082V129.537H375.367V111.443Z\" fill=\"white\"/>\n<path d=\"M375.367 111.443H375.082V129.537H375.367V111.443Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_106\">\n<path d=\"M374.418 120.734C374.418 120.601 374.31 120.493 374.177 120.493C374.044 120.493 373.936 120.601 373.936 120.734V122.162C373.936 122.295 374.044 122.403 374.177 122.403C374.31 122.403 374.418 122.295 374.418 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M374.418 120.734C374.418 120.601 374.31 120.493 374.177 120.493C374.044 120.493 373.936 120.601 373.936 120.734V122.162C373.936 122.295 374.044 122.403 374.177 122.403C374.31 122.403 374.418 122.295 374.418 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_107\">\n<path d=\"M376.542 120.734C376.542 120.601 376.434 120.493 376.301 120.493C376.168 120.493 376.06 120.601 376.06 120.734V122.162C376.06 122.295 376.168 122.403 376.301 122.403C376.434 122.403 376.542 122.295 376.542 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M376.542 120.734C376.542 120.601 376.434 120.493 376.301 120.493C376.168 120.493 376.06 120.601 376.06 120.734V122.162C376.06 122.295 376.168 122.403 376.301 122.403C376.434 122.403 376.542 122.295 376.542 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_108\" d=\"M406.436 111.493H408.79C413.751 111.493 417.777 115.525 417.777 120.493V129.813H397.444V120.493C397.444 115.525 401.471 111.493 406.431 111.493H406.436Z\" fill=\"white\"/>\n<g id=\"Vector_109\">\n<path d=\"M407.758 111.443H407.473V129.537H407.758V111.443Z\" fill=\"white\"/>\n<path d=\"M407.758 111.443H407.473V129.537H407.758V111.443Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_110\">\n<path d=\"M406.809 120.734C406.809 120.601 406.702 120.493 406.569 120.493C406.435 120.493 406.328 120.601 406.328 120.734V122.162C406.328 122.295 406.435 122.403 406.569 122.403C406.702 122.403 406.809 122.295 406.809 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M406.809 120.734C406.809 120.601 406.702 120.493 406.569 120.493C406.435 120.493 406.328 120.601 406.328 120.734V122.162C406.328 122.295 406.435 122.403 406.569 122.403C406.702 122.403 406.809 122.295 406.809 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_111\">\n<path d=\"M408.938 120.734C408.938 120.601 408.83 120.493 408.697 120.493C408.564 120.493 408.456 120.601 408.456 120.734V122.162C408.456 122.295 408.564 122.403 408.697 122.403C408.83 122.403 408.938 122.295 408.938 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M408.938 120.734C408.938 120.601 408.83 120.493 408.697 120.493C408.564 120.493 408.456 120.601 408.456 120.734V122.162C408.456 122.295 408.564 122.403 408.697 122.403C408.83 122.403 408.938 122.295 408.938 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_112\">\n<path d=\"M418.293 100.285H365.708V109.528H418.293V100.285Z\" fill=\"white\"/>\n<path d=\"M418.293 100.285H365.708V109.528H418.293V100.285Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_113\">\n<path d=\"M411.283 71.5879H372.525V80.5289H411.283V71.5879Z\" fill=\"white\"/>\n<path d=\"M411.283 71.5879H372.525V80.5289H411.283V71.5879Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_114\">\n<path d=\"M411.283 84.8418H372.525V93.7828H411.283V84.8418Z\" fill=\"white\"/>\n<path d=\"M411.283 84.8418H372.525V93.7828H411.283V84.8418Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_115\">\n<path d=\"M411.283 58.3291H372.525V67.2701H411.283V58.3291Z\" fill=\"white\"/>\n<path d=\"M411.283 58.3291H372.525V67.2701H411.283V58.3291Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_116\">\n<path d=\"M411.283 45.1685H372.525V54.1095H411.283V45.1685Z\" fill=\"white\"/>\n<path d=\"M411.283 45.1685H372.525V54.1095H411.283V45.1685Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_117\">\n<path d=\"M392.327 41.5942H391.668V95.8558H392.327V41.5942Z\" fill=\"white\"/>\n<path d=\"M392.327 41.5942H391.668V95.8558H392.327V41.5942Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Group 39\">\n<g id=\"Vector_118\">\n<path d=\"M324.619 50.7915H323.96V118.642H324.619V50.7915Z\" fill=\"white\"/>\n<path d=\"M324.619 50.7915H323.96V118.642H324.619V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_119\">\n<path d=\"M339.082 50.7915H338.423V118.642H339.082V50.7915Z\" fill=\"white\"/>\n<path d=\"M339.082 50.7915H338.423V118.642H339.082V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_120\">\n<path d=\"M352.276 50.7915H351.617V118.642H352.276V50.7915Z\" fill=\"white\"/>\n<path d=\"M352.276 50.7915H351.617V118.642H352.276V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_121\">\n<path d=\"M432.456 50.7915H431.797V118.642H432.456V50.7915Z\" fill=\"white\"/>\n<path d=\"M432.456 50.7915H431.797V118.642H432.456V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_122\">\n<path d=\"M446.919 50.7915H446.26V118.642H446.919V50.7915Z\" fill=\"white\"/>\n<path d=\"M446.919 50.7915H446.26V118.642H446.919V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_123\">\n<path d=\"M460.113 50.7915H459.455V118.642H460.113V50.7915Z\" fill=\"white\"/>\n<path d=\"M460.113 50.7915H459.455V118.642H460.113V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n</g>\n<g id=\"POLICE\">\n<path d=\"M379.974 104.813H380.382C380.763 104.813 381.048 104.737 381.238 104.586C381.427 104.432 381.522 104.209 381.522 103.918C381.522 103.624 381.442 103.406 381.282 103.266C381.124 103.126 380.877 103.056 380.538 103.056H379.974V104.813ZM382.773 103.873C382.773 104.51 382.576 104.997 382.182 105.335C381.79 105.672 381.231 105.841 380.506 105.841H379.974V107.946H378.734V102.027H380.602C381.311 102.027 381.85 102.182 382.218 102.493C382.588 102.8 382.773 103.261 382.773 103.873Z\" fill=\"white\"/>\n<path d=\"M389.184 104.979C389.184 105.958 388.944 106.711 388.464 107.238C387.984 107.764 387.296 108.027 386.4 108.027C385.505 108.027 384.817 107.764 384.337 107.238C383.857 106.711 383.617 105.956 383.617 104.97C383.617 103.985 383.857 103.234 384.337 102.715C384.82 102.195 385.51 101.934 386.408 101.934C387.307 101.934 387.993 102.196 388.468 102.719C388.945 103.243 389.184 103.996 389.184 104.979ZM384.917 104.979C384.917 105.64 385.041 106.138 385.289 106.472C385.537 106.807 385.907 106.974 386.4 106.974C387.39 106.974 387.884 106.309 387.884 104.979C387.884 103.645 387.392 102.979 386.408 102.979C385.915 102.979 385.543 103.147 385.293 103.485C385.042 103.819 384.917 104.317 384.917 104.979Z\" fill=\"white\"/>\n<path d=\"M390.396 107.946V102.027H391.635V106.91H394.007V107.946H390.396Z\" fill=\"white\"/>\n<path d=\"M395.026 107.946V102.027H396.266V107.946H395.026Z\" fill=\"white\"/>\n<path d=\"M400.221 102.987C399.755 102.987 399.393 103.165 399.137 103.521C398.881 103.875 398.753 104.369 398.753 105.003C398.753 106.323 399.243 106.983 400.221 106.983C400.632 106.983 401.129 106.879 401.713 106.671V107.723C401.233 107.926 400.697 108.027 400.105 108.027C399.255 108.027 398.604 107.767 398.154 107.246C397.703 106.722 397.478 105.972 397.478 104.995C397.478 104.379 397.588 103.841 397.81 103.379C398.031 102.915 398.348 102.56 398.761 102.315C399.177 102.066 399.664 101.942 400.221 101.942C400.789 101.942 401.359 102.081 401.933 102.359L401.533 103.379C401.314 103.274 401.094 103.182 400.873 103.104C400.652 103.026 400.434 102.987 400.221 102.987Z\" fill=\"white\"/>\n<path d=\"M406.328 107.946H402.96V102.027H406.328V103.056H404.2V104.355H406.18V105.383H404.2V106.91H406.328V107.946Z\" fill=\"white\"/>\n</g>\n</g>\n<g id=\"Courts\">\n<g id=\"Building\">\n<g id=\"Rectangle 1\">\n<rect x=\"491.833\" y=\"68.813\" width=\"150\" height=\"56\" fill=\"white\"/>\n<rect x=\"491.833\" y=\"68.813\" width=\"150\" height=\"56\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Rectangle 3\">\n<rect x=\"488.833\" y=\"120.942\" width=\"154.713\" height=\"6.67484\" fill=\"white\"/>\n<rect x=\"488.833\" y=\"120.942\" width=\"154.713\" height=\"6.67484\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 2\">\n<path d=\"M497.297 57.813H636.368L641.833 68.813H491.833L497.297 57.813Z\" fill=\"white\"/>\n<path d=\"M497.297 57.813H636.368L641.833 68.813H491.833L497.297 57.813Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_124\">\n<path d=\"M551.731 70.3457H545.786V70.984C546.059 71.0995 546.254 71.367 546.254 71.6831V71.7317C546.254 72.1512 545.914 72.4916 545.494 72.4916H545.391C545.616 72.5463 545.786 72.747 545.786 72.9901V73.0205C545.786 73.3062 545.555 73.5312 545.275 73.5312H544.862V113.896H545.275C545.561 113.896 545.786 114.127 545.786 114.407V114.437C545.786 114.681 545.616 114.881 545.391 114.936H545.415C545.877 114.936 546.254 115.313 546.254 115.775V118.583H551.269V115.775C551.269 115.313 551.646 114.936 552.108 114.936H552.132C551.908 114.881 551.737 114.681 551.737 114.437V114.407C551.737 114.121 551.968 113.896 552.248 113.896H552.661V73.5372H552.248C551.962 73.5372 551.737 73.3062 551.737 73.0266V72.9962C551.737 72.753 551.908 72.5524 552.132 72.4977H552.029C551.61 72.4977 551.269 72.1573 551.269 71.7378V71.6892C551.269 71.3731 551.464 71.1056 551.737 70.9901V70.3518M569.81 70.3518H563.865V70.9901C564.139 71.1056 564.333 71.3731 564.333 71.6892V71.7378C564.333 72.1573 563.993 72.4977 563.573 72.4977H563.47C563.695 72.5524 563.865 72.753 563.865 72.9962V73.0266C563.865 73.3123 563.634 73.5372 563.354 73.5372H562.941V113.903H563.354C563.64 113.903 563.865 114.134 563.865 114.413V114.444C563.865 114.687 563.695 114.887 563.47 114.942H563.494C563.956 114.942 564.333 115.319 564.333 115.781V118.59H569.348V115.781C569.348 115.319 569.725 114.942 570.187 114.942H570.212C569.987 114.887 569.817 114.687 569.817 114.444V114.413C569.817 114.127 570.048 113.903 570.327 113.903H570.741V73.5372H570.327C570.041 73.5372 569.817 73.3062 569.817 73.0266V72.9962C569.817 72.753 569.987 72.5524 570.212 72.4977H570.108C569.689 72.4977 569.348 72.1573 569.348 71.7378V71.6892C569.348 71.3731 569.543 71.1056 569.817 70.9901V70.3518M587.89 70.3518H581.944V70.9901C582.218 71.1056 582.412 71.3731 582.412 71.6892V71.7378C582.412 72.1573 582.072 72.4977 581.653 72.4977H581.549C581.774 72.5524 581.944 72.753 581.944 72.9962V73.0266C581.944 73.3123 581.713 73.5372 581.434 73.5372H581.02V113.903H581.434C581.719 113.903 581.944 114.134 581.944 114.413V114.444C581.944 114.687 581.774 114.887 581.549 114.942H581.574C582.036 114.942 582.412 115.319 582.412 115.781V118.59H587.428V115.781C587.428 115.319 587.805 114.942 588.267 114.942H588.291C588.066 114.887 587.896 114.687 587.896 114.444V114.413C587.896 114.127 588.127 113.903 588.406 113.903H588.82V73.5372H588.406C588.121 73.5372 587.896 73.3062 587.896 73.0266V72.9962C587.896 72.753 588.066 72.5524 588.291 72.4977H588.188C587.768 72.4977 587.428 72.1573 587.428 71.7378V71.6892C587.428 71.3731 587.622 71.1056 587.896 70.9901V70.3518\" fill=\"white\"/>\n<path d=\"M551.731 70.3457H545.786V70.984C546.059 71.0995 546.254 71.367 546.254 71.6831V71.7317C546.254 72.1512 545.914 72.4916 545.494 72.4916H545.391C545.616 72.5463 545.786 72.747 545.786 72.9901V73.0205C545.786 73.3062 545.555 73.5312 545.275 73.5312H544.862V113.896H545.275C545.561 113.896 545.786 114.127 545.786 114.407V114.437C545.786 114.681 545.616 114.881 545.391 114.936H545.415C545.877 114.936 546.254 115.313 546.254 115.775V118.583H551.269V115.775C551.269 115.313 551.646 114.936 552.108 114.936H552.132C551.908 114.881 551.737 114.681 551.737 114.437V114.407C551.737 114.121 551.968 113.896 552.248 113.896H552.661V73.5372H552.248C551.962 73.5372 551.737 73.3062 551.737 73.0266V72.9962C551.737 72.753 551.908 72.5524 552.132 72.4977H552.029C551.61 72.4977 551.269 72.1573 551.269 71.7378V71.6892C551.269 71.3731 551.464 71.1056 551.737 70.9901V70.3518M569.81 70.3518H563.865V70.9901C564.139 71.1056 564.333 71.3731 564.333 71.6892V71.7378C564.333 72.1573 563.993 72.4977 563.573 72.4977H563.47C563.695 72.5524 563.865 72.753 563.865 72.9962V73.0266C563.865 73.3123 563.634 73.5372 563.354 73.5372H562.941V113.903H563.354C563.64 113.903 563.865 114.134 563.865 114.413V114.444C563.865 114.687 563.695 114.887 563.47 114.942H563.494C563.956 114.942 564.333 115.319 564.333 115.781V118.59H569.348V115.781C569.348 115.319 569.725 114.942 570.187 114.942H570.212C569.987 114.887 569.817 114.687 569.817 114.444V114.413C569.817 114.127 570.048 113.903 570.327 113.903H570.741V73.5372H570.327C570.041 73.5372 569.817 73.3062 569.817 73.0266V72.9962C569.817 72.753 569.987 72.5524 570.212 72.4977H570.108C569.689 72.4977 569.348 72.1573 569.348 71.7378V71.6892C569.348 71.3731 569.543 71.1056 569.817 70.9901V70.3518M587.89 70.3518H581.944V70.9901C582.218 71.1056 582.412 71.3731 582.412 71.6892V71.7378C582.412 72.1573 582.072 72.4977 581.653 72.4977H581.549C581.774 72.5524 581.944 72.753 581.944 72.9962V73.0266C581.944 73.3123 581.713 73.5372 581.434 73.5372H581.02V113.903H581.434C581.719 113.903 581.944 114.134 581.944 114.413V114.444C581.944 114.687 581.774 114.887 581.549 114.942H581.574C582.036 114.942 582.412 115.319 582.412 115.781V118.59H587.428V115.781C587.428 115.319 587.805 114.942 588.267 114.942H588.291C588.066 114.887 587.896 114.687 587.896 114.444V114.413C587.896 114.127 588.127 113.903 588.406 113.903H588.82V73.5372H588.406C588.121 73.5372 587.896 73.3062 587.896 73.0266V72.9962C587.896 72.753 588.066 72.5524 588.291 72.4977H588.188C587.768 72.4977 587.428 72.1573 587.428 71.7378V71.6892C587.428 71.3731 587.622 71.1056 587.896 70.9901V70.3518\" fill=\"#206095\" fill-opacity=\"0.55\"/>\n</g>\n<path id=\"Vector_125\" d=\"M545.78 70.3457H533.658V70.984C533.749 70.9475 533.847 70.9293 533.95 70.9293H545.494C545.598 70.9293 545.695 70.9475 545.786 70.984V70.3457\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_126\" d=\"M599.975 66.3882H566.887H533.658V67.7377H599.975V66.3882Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_127\" d=\"M563.859 70.3457H551.731V70.984C551.823 70.9475 551.92 70.9293 552.023 70.9293H563.567C563.671 70.9293 563.768 70.9475 563.859 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_128\" d=\"M581.933 70.3457H569.805V70.984C569.896 70.9475 569.993 70.9293 570.096 70.9293H581.641C581.744 70.9293 581.841 70.9475 581.933 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_129\" d=\"M600.005 70.3457H587.877V70.984C587.969 70.9475 588.066 70.9293 588.169 70.9293H599.713C599.817 70.9293 599.914 70.9475 600.005 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<g id=\"Vector_130\">\n<path d=\"M599.075 73.5371H588.808V113.902H599.075V73.5371Z\" fill=\"white\"/>\n<path d=\"M599.075 73.5371H588.808V113.902H599.075V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_131\">\n<path d=\"M599.714 70.9292H588.17C588.066 70.9292 587.969 70.9474 587.878 70.9839C587.604 71.0994 587.41 71.3669 587.41 71.683V71.7316C587.41 72.1511 587.75 72.4915 588.17 72.4915H588.273C588.309 72.4855 588.352 72.4794 588.394 72.4794H599.495C599.537 72.4794 599.574 72.4794 599.617 72.4915H599.72C600.139 72.4915 600.48 72.1511 600.48 71.7316V71.683C600.48 71.3669 600.285 71.0994 600.012 70.9839C599.92 70.9474 599.823 70.9292 599.72 70.9292\" fill=\"white\"/>\n<path d=\"M599.714 70.9292H588.17C588.066 70.9292 587.969 70.9474 587.878 70.9839C587.604 71.0994 587.41 71.3669 587.41 71.683V71.7316C587.41 72.1511 587.75 72.4915 588.17 72.4915H588.273C588.309 72.4855 588.352 72.4794 588.394 72.4794H599.495C599.537 72.4794 599.574 72.4794 599.617 72.4915H599.72C600.139 72.4915 600.48 72.1511 600.48 71.7316V71.683C600.48 71.3669 600.285 71.0994 600.012 70.9839C599.92 70.9474 599.823 70.9292 599.72 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_132\">\n<path d=\"M599.489 72.4795H588.388C588.346 72.4795 588.309 72.4795 588.267 72.4917C588.042 72.5464 587.872 72.747 587.872 72.9901V73.0205C587.872 73.3063 588.103 73.5312 588.382 73.5312H599.483C599.768 73.5312 599.993 73.3002 599.993 73.0205V72.9901C599.993 72.747 599.823 72.5464 599.598 72.4917C599.562 72.4856 599.519 72.4795 599.477 72.4795\" fill=\"white\"/>\n<path d=\"M599.489 72.4795H588.388C588.346 72.4795 588.309 72.4795 588.267 72.4917C588.042 72.5464 587.872 72.747 587.872 72.9901V73.0205C587.872 73.3063 588.103 73.5312 588.382 73.5312H599.483C599.768 73.5312 599.993 73.3002 599.993 73.0205V72.9901C599.993 72.747 599.823 72.5464 599.598 72.4917C599.562 72.4856 599.519 72.4795 599.477 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_133\">\n<path d=\"M599.634 114.942H599.61C599.574 114.948 599.531 114.954 599.489 114.954H588.388C588.346 114.954 588.309 114.954 588.267 114.942H588.242C587.78 114.942 587.403 115.319 587.403 115.781V118.589H600.461V115.781C600.461 115.319 600.084 114.942 599.622 114.942\" fill=\"white\"/>\n<path d=\"M599.634 114.942H599.61C599.574 114.948 599.531 114.954 599.489 114.954H588.388C588.346 114.954 588.309 114.954 588.267 114.942H588.242C587.78 114.942 587.403 115.319 587.403 115.781V118.589H600.461V115.781C600.461 115.319 600.084 114.942 599.622 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_134\">\n<path d=\"M599.489 113.902H588.388C588.102 113.902 587.877 114.133 587.877 114.413V114.443C587.877 114.687 588.048 114.887 588.273 114.942C588.309 114.948 588.352 114.954 588.394 114.954H599.495C599.537 114.954 599.574 114.954 599.616 114.942C599.841 114.887 600.011 114.687 600.011 114.443V114.413C600.011 114.127 599.78 113.902 599.501 113.902\" fill=\"white\"/>\n<path d=\"M599.489 113.902H588.388C588.102 113.902 587.877 114.133 587.877 114.413V114.443C587.877 114.687 588.048 114.887 588.273 114.942C588.309 114.948 588.352 114.954 588.394 114.954H599.495C599.537 114.954 599.574 114.954 599.616 114.942C599.841 114.887 600.011 114.687 600.011 114.443V114.413C600.011 114.127 599.78 113.902 599.501 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_135\">\n<path d=\"M544.856 73.5371H534.582V113.902H544.856V73.5371Z\" fill=\"white\"/>\n<path d=\"M544.856 73.5371H534.582V113.902H544.856V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_136\">\n<path d=\"M545.494 70.9292H533.95C533.846 70.9292 533.749 70.9474 533.658 70.9839C533.384 71.0994 533.19 71.3669 533.19 71.683V71.7316C533.19 72.1511 533.53 72.4915 533.95 72.4915H534.053C534.09 72.4855 534.132 72.4794 534.175 72.4794H545.275C545.318 72.4794 545.354 72.4794 545.397 72.4915H545.5C545.92 72.4915 546.26 72.1511 546.26 71.7316V71.683C546.26 71.3669 546.065 71.0994 545.792 70.9839C545.701 70.9474 545.603 70.9292 545.5 70.9292\" fill=\"white\"/>\n<path d=\"M545.494 70.9292H533.95C533.846 70.9292 533.749 70.9474 533.658 70.9839C533.384 71.0994 533.19 71.3669 533.19 71.683V71.7316C533.19 72.1511 533.53 72.4915 533.95 72.4915H534.053C534.09 72.4855 534.132 72.4794 534.175 72.4794H545.275C545.318 72.4794 545.354 72.4794 545.397 72.4915H545.5C545.92 72.4915 546.26 72.1511 546.26 71.7316V71.683C546.26 71.3669 546.065 71.0994 545.792 70.9839C545.701 70.9474 545.603 70.9292 545.5 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_137\">\n<path d=\"M545.269 72.4795H534.169C534.126 72.4795 534.09 72.4795 534.047 72.4917C533.822 72.5464 533.652 72.747 533.652 72.9901V73.0205C533.652 73.3063 533.883 73.5312 534.163 73.5312H545.263C545.549 73.5312 545.774 73.3002 545.774 73.0205V72.9901C545.774 72.747 545.603 72.5464 545.378 72.4917C545.342 72.4856 545.299 72.4795 545.257 72.4795\" fill=\"white\"/>\n<path d=\"M545.269 72.4795H534.169C534.126 72.4795 534.09 72.4795 534.047 72.4917C533.822 72.5464 533.652 72.747 533.652 72.9901V73.0205C533.652 73.3063 533.883 73.5312 534.163 73.5312H545.263C545.549 73.5312 545.774 73.3002 545.774 73.0205V72.9901C545.774 72.747 545.603 72.5464 545.378 72.4917C545.342 72.4856 545.299 72.4795 545.257 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_138\">\n<path d=\"M545.409 114.942H545.385C545.348 114.948 545.306 114.954 545.269 114.954H534.169C534.126 114.954 534.09 114.954 534.053 114.942H534.029C533.567 114.942 533.19 115.319 533.19 115.781V118.589H546.248V115.781C546.248 115.319 545.871 114.942 545.409 114.942Z\" fill=\"white\"/>\n<path d=\"M545.409 114.942H545.385C545.348 114.948 545.306 114.954 545.269 114.954H534.169C534.126 114.954 534.09 114.954 534.053 114.942H534.029C533.567 114.942 533.19 115.319 533.19 115.781V118.589H546.248V115.781C546.248 115.319 545.871 114.942 545.409 114.942Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_139\">\n<path d=\"M545.269 113.902H534.169C533.883 113.902 533.658 114.133 533.658 114.413V114.443C533.658 114.687 533.828 114.887 534.053 114.942C534.09 114.948 534.132 114.954 534.169 114.954H545.269C545.312 114.954 545.348 114.954 545.385 114.942C545.61 114.887 545.78 114.687 545.78 114.443V114.413C545.78 114.127 545.549 113.902 545.269 113.902Z\" fill=\"white\"/>\n<path d=\"M545.269 113.902H534.169C533.883 113.902 533.658 114.133 533.658 114.413V114.443C533.658 114.687 533.828 114.887 534.053 114.942C534.09 114.948 534.132 114.954 534.169 114.954H545.269C545.312 114.954 545.348 114.954 545.385 114.942C545.61 114.887 545.78 114.687 545.78 114.443V114.413C545.78 114.127 545.549 113.902 545.269 113.902Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_140\">\n<path d=\"M562.929 73.5371H552.661V113.902H562.929V73.5371Z\" fill=\"white\"/>\n<path d=\"M562.929 73.5371H552.661V113.902H562.929V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_141\">\n<path d=\"M563.567 70.9292H552.023C551.92 70.9292 551.822 70.9474 551.731 70.9839C551.458 71.0994 551.263 71.3669 551.263 71.683V71.7316C551.263 72.1511 551.604 72.4915 552.023 72.4915H552.126C552.163 72.4855 552.205 72.4794 552.248 72.4794H563.348C563.391 72.4794 563.427 72.4794 563.47 72.4915H563.573C563.993 72.4915 564.333 72.1511 564.333 71.7316V71.683C564.333 71.3669 564.139 71.0994 563.865 70.9839C563.774 70.9474 563.677 70.9292 563.573 70.9292\" fill=\"white\"/>\n<path d=\"M563.567 70.9292H552.023C551.92 70.9292 551.822 70.9474 551.731 70.9839C551.458 71.0994 551.263 71.3669 551.263 71.683V71.7316C551.263 72.1511 551.604 72.4915 552.023 72.4915H552.126C552.163 72.4855 552.205 72.4794 552.248 72.4794H563.348C563.391 72.4794 563.427 72.4794 563.47 72.4915H563.573C563.993 72.4915 564.333 72.1511 564.333 71.7316V71.683C564.333 71.3669 564.139 71.0994 563.865 70.9839C563.774 70.9474 563.677 70.9292 563.573 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_142\">\n<path d=\"M563.342 72.4795H552.242C552.199 72.4795 552.163 72.4795 552.12 72.4917C551.895 72.5464 551.725 72.747 551.725 72.9901V73.0205C551.725 73.3063 551.956 73.5312 552.236 73.5312H563.336C563.622 73.5312 563.847 73.3002 563.847 73.0205V72.9901C563.847 72.747 563.677 72.5464 563.452 72.4917C563.415 72.4856 563.373 72.4795 563.33 72.4795\" fill=\"white\"/>\n<path d=\"M563.342 72.4795H552.242C552.199 72.4795 552.163 72.4795 552.12 72.4917C551.895 72.5464 551.725 72.747 551.725 72.9901V73.0205C551.725 73.3063 551.956 73.5312 552.236 73.5312H563.336C563.622 73.5312 563.847 73.3002 563.847 73.0205V72.9901C563.847 72.747 563.677 72.5464 563.452 72.4917C563.415 72.4856 563.373 72.4795 563.33 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_143\">\n<path d=\"M563.482 114.942H563.458C563.422 114.948 563.379 114.954 563.337 114.954H552.236C552.194 114.954 552.157 114.954 552.121 114.942H552.096C551.634 114.942 551.257 115.319 551.257 115.781V118.589H564.315V115.781C564.315 115.319 563.938 114.942 563.476 114.942\" fill=\"white\"/>\n<path d=\"M563.482 114.942H563.458C563.422 114.948 563.379 114.954 563.337 114.954H552.236C552.194 114.954 552.157 114.954 552.121 114.942H552.096C551.634 114.942 551.257 115.319 551.257 115.781V118.589H564.315V115.781C564.315 115.319 563.938 114.942 563.476 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_144\">\n<path d=\"M563.343 113.902H552.242C551.956 113.902 551.731 114.133 551.731 114.413V114.443C551.731 114.687 551.902 114.887 552.127 114.942C552.163 114.948 552.206 114.954 552.242 114.954H563.343C563.385 114.954 563.422 114.954 563.464 114.942C563.689 114.887 563.859 114.687 563.859 114.443V114.413C563.859 114.127 563.628 113.902 563.349 113.902\" fill=\"white\"/>\n<path d=\"M563.343 113.902H552.242C551.956 113.902 551.731 114.133 551.731 114.413V114.443C551.731 114.687 551.902 114.887 552.127 114.942C552.163 114.948 552.206 114.954 552.242 114.954H563.343C563.385 114.954 563.422 114.954 563.464 114.942C563.689 114.887 563.859 114.687 563.859 114.443V114.413C563.859 114.127 563.628 113.902 563.349 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_145\">\n<path d=\"M581.002 73.5371H570.734V113.902H581.002V73.5371Z\" fill=\"white\"/>\n<path d=\"M581.002 73.5371H570.734V113.902H581.002V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_146\">\n<path d=\"M581.641 70.9292H570.096C569.993 70.9292 569.896 70.9474 569.805 70.9839C569.531 71.0994 569.336 71.3669 569.336 71.683V71.7316C569.336 72.1511 569.677 72.4915 570.096 72.4915H570.2C570.236 72.4855 570.279 72.4794 570.321 72.4794H581.422C581.464 72.4794 581.501 72.4794 581.543 72.4915H581.647C582.066 72.4915 582.407 72.1511 582.407 71.7316V71.683C582.407 71.3669 582.212 71.0994 581.938 70.9839C581.847 70.9474 581.75 70.9292 581.647 70.9292\" fill=\"white\"/>\n<path d=\"M581.641 70.9292H570.096C569.993 70.9292 569.896 70.9474 569.805 70.9839C569.531 71.0994 569.336 71.3669 569.336 71.683V71.7316C569.336 72.1511 569.677 72.4915 570.096 72.4915H570.2C570.236 72.4855 570.279 72.4794 570.321 72.4794H581.422C581.464 72.4794 581.501 72.4794 581.543 72.4915H581.647C582.066 72.4915 582.407 72.1511 582.407 71.7316V71.683C582.407 71.3669 582.212 71.0994 581.938 70.9839C581.847 70.9474 581.75 70.9292 581.647 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_147\">\n<path d=\"M581.416 72.4795H570.315C570.273 72.4795 570.236 72.4795 570.193 72.4917C569.969 72.5464 569.798 72.747 569.798 72.9901V73.0205C569.798 73.3063 570.029 73.5312 570.309 73.5312H581.409C581.695 73.5312 581.92 73.3002 581.92 73.0205V72.9901C581.92 72.747 581.75 72.5464 581.525 72.4917C581.488 72.4856 581.446 72.4795 581.403 72.4795\" fill=\"white\"/>\n<path d=\"M581.416 72.4795H570.315C570.273 72.4795 570.236 72.4795 570.193 72.4917C569.969 72.5464 569.798 72.747 569.798 72.9901V73.0205C569.798 73.3063 570.029 73.5312 570.309 73.5312H581.409C581.695 73.5312 581.92 73.3002 581.92 73.0205V72.9901C581.92 72.747 581.75 72.5464 581.525 72.4917C581.488 72.4856 581.446 72.4795 581.403 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_148\">\n<path d=\"M581.562 114.942H581.537C581.501 114.948 581.458 114.954 581.416 114.954H570.315C570.273 114.954 570.236 114.954 570.2 114.942H570.175C569.713 114.942 569.336 115.319 569.336 115.781V118.589H582.394V115.781C582.394 115.319 582.017 114.942 581.555 114.942\" fill=\"white\"/>\n<path d=\"M581.562 114.942H581.537C581.501 114.948 581.458 114.954 581.416 114.954H570.315C570.273 114.954 570.236 114.954 570.2 114.942H570.175C569.713 114.942 569.336 115.319 569.336 115.781V118.589H582.394V115.781C582.394 115.319 582.017 114.942 581.555 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_149\">\n<path d=\"M581.416 113.902H570.315C570.03 113.902 569.805 114.133 569.805 114.413V114.443C569.805 114.687 569.975 114.887 570.2 114.942C570.236 114.948 570.279 114.954 570.315 114.954H581.416C581.458 114.954 581.495 114.954 581.537 114.942C581.762 114.887 581.933 114.687 581.933 114.443V114.413C581.933 114.127 581.702 113.902 581.422 113.902\" fill=\"white\"/>\n<path d=\"M581.416 113.902H570.315C570.03 113.902 569.805 114.133 569.805 114.413V114.443C569.805 114.687 569.975 114.887 570.2 114.942C570.236 114.948 570.279 114.954 570.315 114.954H581.416C581.458 114.954 581.495 114.954 581.537 114.942C581.762 114.887 581.933 114.687 581.933 114.443V114.413C581.933 114.127 581.702 113.902 581.422 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_150\">\n<path d=\"M600.431 67.7378H533.336C533.038 67.7378 532.801 67.9749 532.801 68.2728V69.8108C532.801 70.1086 533.038 70.3457 533.336 70.3457H600.425C600.723 70.3457 600.96 70.1086 600.96 69.8108V68.2728C600.96 67.9749 600.723 67.7378 600.425 67.7378\" fill=\"white\"/>\n<path d=\"M600.431 67.7378H533.336C533.038 67.7378 532.801 67.9749 532.801 68.2728V69.8108C532.801 70.1086 533.038 70.3457 533.336 70.3457H600.425C600.723 70.3457 600.96 70.1086 600.96 69.8108V68.2728C600.96 67.9749 600.723 67.7378 600.425 67.7378\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_151\">\n<path d=\"M566.899 43.8833L549.026 54.85L534.083 64.0173H599.72L584.777 54.85L566.886 43.9076\" fill=\"white\"/>\n<path d=\"M566.899 43.8833L549.026 54.85L534.083 64.0173H599.72L584.777 54.85L566.886 43.9076\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_152\">\n<path d=\"M534.065 64.0416L549.008 54.8743L566.886 43.9076L584.759 54.8743L599.701 64.0416H534.065ZM566.886 41.4517C566.576 41.4517 566.266 41.5368 565.987 41.707L547.786 52.8743L530.94 63.2088C530.679 63.3668 530.46 63.5979 530.326 63.8593C530.187 64.1207 530.12 64.4003 530.126 64.6678C530.126 65.0994 530.278 65.5067 530.576 65.835C530.728 65.9991 530.916 66.1389 531.135 66.2362C531.354 66.3335 531.597 66.3882 531.84 66.3882H601.926C602.169 66.3882 602.413 66.3395 602.631 66.2362C602.96 66.0903 603.221 65.8471 603.385 65.5675C603.555 65.2939 603.641 64.9839 603.641 64.6617C603.641 64.3942 603.58 64.1146 603.44 63.8532C603.3 63.5918 603.081 63.3608 602.826 63.2027L585.981 52.8682L567.78 41.707C567.506 41.5368 567.196 41.4517 566.886 41.4517Z\" fill=\"white\"/>\n<path d=\"M534.065 64.0416L549.008 54.8743L566.886 43.9076L584.759 54.8743L599.701 64.0416H534.065ZM566.886 41.4517C566.576 41.4517 566.266 41.5368 565.987 41.707L547.786 52.8743L530.94 63.2088C530.679 63.3668 530.46 63.5979 530.326 63.8593C530.187 64.1207 530.12 64.4003 530.126 64.6678C530.126 65.0994 530.278 65.5067 530.576 65.835C530.728 65.9991 530.916 66.1389 531.135 66.2362C531.354 66.3335 531.597 66.3882 531.84 66.3882H601.926C602.169 66.3882 602.413 66.3395 602.631 66.2362C602.96 66.0903 603.221 65.8471 603.385 65.5675C603.555 65.2939 603.641 64.9839 603.641 64.6617C603.641 64.3942 603.58 64.1146 603.44 63.8532C603.3 63.5918 603.081 63.3608 602.826 63.2027L585.981 52.8682L567.78 41.707C567.506 41.5368 567.196 41.4517 566.886 41.4517Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<path id=\"Vector_153\" d=\"M603.241 118.589H601.071H588.007H582.997H569.933H564.918H551.86H546.845H533.787H530.833V121.617H603.241V118.589Z\" fill=\"#A6BFD5\"/>\n<g id=\"Vector_154\">\n<path d=\"M605.144 121.617H603.095H530.687H528.833V125.75H605.144V121.617Z\" fill=\"white\"/>\n<path d=\"M605.144 121.617H603.095H530.687H528.833V125.75H605.144V121.617Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 6\">\n<rect x=\"496.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"496.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 7\">\n<rect x=\"513.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"513.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 8\">\n<rect x=\"496.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"496.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 9\">\n<rect x=\"513.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"513.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 10\">\n<rect x=\"604.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"604.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 11\">\n<rect x=\"621.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"621.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 12\">\n<rect x=\"604.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"604.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 13\">\n<rect x=\"621.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"621.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 8_2\">\n<rect x=\"495.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"495.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 9_2\">\n<rect x=\"512.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"512.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 10_2\">\n<rect x=\"495.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"495.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 11_2\">\n<rect x=\"512.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"512.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 12_2\">\n<rect x=\"603.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"603.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 13_2\">\n<rect x=\"620.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"620.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 14\">\n<rect x=\"603.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"603.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 15\">\n<rect x=\"620.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"620.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Icon\">\n<g id=\"Circle\">\n<path id=\"Vector_155\" d=\"M566.833 61.4873C570.146 61.4873 572.833 58.801 572.833 55.4873C572.833 52.1736 570.146 49.4873 566.833 49.4873C563.519 49.4873 560.833 52.1736 560.833 55.4873C560.833 58.801 563.519 61.4873 566.833 61.4873Z\" fill=\"white\"/>\n</g>\n<g id=\"Artwork 64x64\">\n<path id=\"Vector_156\" d=\"M570.64 56.1689L569.687 53.4416C569.681 53.42 569.67 53.3997 569.657 53.3816C569.646 53.3692 569.634 53.3578 569.621 53.3475H569.613C569.6 53.338 569.585 53.3302 569.57 53.3244H569.549C569.536 53.316 569.521 53.3096 569.506 53.3053H567.242V52.6234C567.242 52.5149 567.199 52.4109 567.122 52.3342C567.045 52.2575 566.941 52.2144 566.833 52.2144C566.724 52.2144 566.62 52.2575 566.544 52.3342C566.467 52.4109 566.424 52.5149 566.424 52.6234V53.3053H564.16C564.147 53.3061 564.134 53.3084 564.122 53.3121H564.101C564.086 53.3179 564.071 53.3257 564.058 53.3353H564.05C564.037 53.3455 564.025 53.3569 564.014 53.3694C564.001 53.3874 563.991 53.4077 563.984 53.4294L563.03 56.1566C563.019 56.1875 563.017 56.2204 563.021 56.2527C563.026 56.2849 563.038 56.3155 563.057 56.3421C563.076 56.3687 563.101 56.3904 563.13 56.4056C563.159 56.4207 563.191 56.4289 563.223 56.4294H565.132C565.165 56.4289 565.197 56.4207 565.226 56.4056C565.255 56.3904 565.28 56.3687 565.298 56.3421C565.317 56.3155 565.33 56.2849 565.334 56.2527C565.339 56.2204 565.336 56.1875 565.326 56.1566L564.464 53.7144H566.424V57.0444L565.319 58.3057C565.284 58.3451 565.261 58.3939 565.253 58.4461C565.245 58.4983 565.253 58.5516 565.274 58.5997C565.296 58.6478 565.332 58.6885 565.376 58.7169C565.421 58.7453 565.472 58.7602 565.525 58.7598H568.141C568.193 58.76 568.245 58.745 568.289 58.7167C568.333 58.6883 568.368 58.6478 568.39 58.6C568.412 58.5522 568.419 58.4991 568.411 58.4471C568.404 58.3952 568.381 58.3465 568.346 58.3071L567.242 57.0444V53.7144H569.201L568.344 56.1689C568.333 56.1998 568.331 56.2327 568.335 56.2649C568.34 56.2972 568.353 56.3278 568.371 56.3544C568.39 56.3809 568.415 56.4027 568.444 56.4178C568.473 56.433 568.505 56.4412 568.537 56.4416H570.446C570.479 56.4412 570.511 56.433 570.54 56.4178C570.569 56.4027 570.594 56.3809 570.612 56.3544C570.631 56.3278 570.644 56.2972 570.648 56.2649C570.653 56.2327 570.65 56.1998 570.64 56.1689ZM563.507 56.0325L564.174 54.1234L564.841 56.0325H563.507ZM568.825 56.0325L569.492 54.1234L570.159 56.0325H568.825Z\" fill=\"#206095\"/>\n<g id=\"Vector_157\">\n<path d=\"M566.833 54.1903C567.209 54.1903 567.515 53.885 567.515 53.5085C567.515 53.1319 567.209 52.8267 566.833 52.8267C566.456 52.8267 566.151 53.1319 566.151 53.5085C566.151 53.885 566.456 54.1903 566.833 54.1903Z\" fill=\"white\"/>\n<path d=\"M566.833 54.1903C567.209 54.1903 567.515 53.885 567.515 53.5085C567.515 53.1319 567.209 52.8267 566.833 52.8267C566.456 52.8267 566.151 53.1319 566.151 53.5085C566.151 53.885 566.456 54.1903 566.833 54.1903Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_158\">\n<path d=\"M565.022 55.9483C565.07 55.9478 565.119 55.9589 565.162 55.9808C565.206 56.0026 565.243 56.0345 565.272 56.0738C565.301 56.1131 565.32 56.1587 565.328 56.2068C565.335 56.255 565.331 56.3042 565.316 56.3505C565.233 56.5867 565.078 56.7912 564.873 56.9358C564.669 57.0805 564.424 57.1581 564.174 57.1581C563.923 57.1581 563.679 57.0805 563.474 56.9358C563.269 56.7912 563.115 56.5867 563.031 56.3505C563.016 56.3042 563.012 56.255 563.019 56.2068C563.027 56.1587 563.046 56.1131 563.075 56.0738C563.104 56.0345 563.141 56.0026 563.185 55.9808C563.229 55.9589 563.277 55.9478 563.325 55.9483H565.022Z\" fill=\"white\"/>\n<path d=\"M565.022 55.9483C565.07 55.9478 565.119 55.9589 565.162 55.9808C565.206 56.0026 565.243 56.0345 565.272 56.0738C565.301 56.1131 565.32 56.1587 565.328 56.2068C565.335 56.255 565.331 56.3042 565.316 56.3505C565.233 56.5867 565.078 56.7912 564.873 56.9358C564.669 57.0805 564.424 57.1581 564.174 57.1581C563.923 57.1581 563.679 57.0805 563.474 56.9358C563.269 56.7912 563.115 56.5867 563.031 56.3505C563.016 56.3042 563.012 56.255 563.019 56.2068C563.027 56.1587 563.046 56.1131 563.075 56.0738C563.104 56.0345 563.141 56.0026 563.185 55.9808C563.229 55.9589 563.277 55.9478 563.325 55.9483H565.022Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_159\">\n<path d=\"M570.34 55.9483C570.388 55.9478 570.436 55.9589 570.48 55.9808C570.524 56.0026 570.561 56.0345 570.59 56.0738C570.619 56.1131 570.638 56.1587 570.646 56.2068C570.653 56.255 570.649 56.3042 570.634 56.3505C570.551 56.5867 570.396 56.7912 570.191 56.9358C569.986 57.0805 569.742 57.1581 569.491 57.1581C569.241 57.1581 568.996 57.0805 568.792 56.9358C568.587 56.7912 568.432 56.5867 568.349 56.3505C568.334 56.3042 568.33 56.255 568.337 56.2068C568.345 56.1587 568.364 56.1131 568.393 56.0738C568.422 56.0345 568.459 56.0026 568.503 55.9808C568.546 55.9589 568.595 55.9478 568.643 55.9483H570.34Z\" fill=\"white\"/>\n<path d=\"M570.34 55.9483C570.388 55.9478 570.436 55.9589 570.48 55.9808C570.524 56.0026 570.561 56.0345 570.59 56.0738C570.619 56.1131 570.638 56.1587 570.646 56.2068C570.653 56.255 570.649 56.3042 570.634 56.3505C570.551 56.5867 570.396 56.7912 570.191 56.9358C569.986 57.0805 569.742 57.1581 569.491 57.1581C569.241 57.1581 568.996 57.0805 568.792 56.9358C568.587 56.7912 568.432 56.5867 568.349 56.3505C568.334 56.3042 568.33 56.255 568.337 56.2068C568.345 56.1587 568.364 56.1131 568.393 56.0738C568.422 56.0345 568.459 56.0026 568.503 55.9808C568.546 55.9589 568.595 55.9478 568.643 55.9483H570.34Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n</g>\n</g>\n<g id=\"Bush_2\">\n<g id=\"Vector_160\">\n<path d=\"M681.329 111.962C685.678 114.179 688.387 115.261 689.527 116.397C690.671 117.533 693.372 120.844 691.827 123.23C690.278 125.617 689.767 127.484 685.414 127.288C681.062 127.091 679.296 126.474 675.774 126.796C672.251 127.119 669.137 125.538 668.41 124.779C667.682 124.021 665.496 120.502 668.39 117.388C671.284 114.27 677.488 110.004 681.329 111.962Z\" fill=\"white\"/>\n<path d=\"M681.329 111.962C685.678 114.179 688.387 115.261 689.527 116.397C690.671 117.533 693.372 120.844 691.827 123.23C690.278 125.617 689.767 127.484 685.414 127.288C681.062 127.091 679.296 126.474 675.774 126.796C672.251 127.119 669.137 125.538 668.41 124.779C667.682 124.021 665.496 120.502 668.39 117.388C671.284 114.27 677.488 110.004 681.329 111.962Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_161\">\n<path d=\"M669.782 109.772C666.782 108.101 663.487 108.014 659.205 110.688C654.924 113.365 654.019 115.142 653.76 116.326C653.504 117.509 651.554 118.256 652.081 120.623C652.608 122.99 657.648 125.491 660.916 125.778C664.183 126.065 664.867 125.766 668.748 125.164C672.628 124.563 675.746 123.666 677.166 120.702C678.589 117.737 672.955 111.537 669.778 109.772H669.782Z\" fill=\"white\"/>\n<path d=\"M669.782 109.772C666.782 108.101 663.487 108.014 659.205 110.688C654.924 113.365 654.019 115.142 653.76 116.326C653.504 117.509 651.554 118.256 652.081 120.623C652.608 122.99 657.648 125.491 660.916 125.778C664.183 126.065 664.867 125.766 668.748 125.164C672.628 124.563 675.746 123.666 677.166 120.702C678.589 117.737 672.955 111.537 669.778 109.772H669.782Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_162\">\n<path d=\"M658.136 113.625C664.887 115.835 669.094 116.912 670.871 118.048C672.644 119.185 676.839 122.487 674.433 124.878C672.023 127.268 671.225 129.136 664.462 128.947C657.699 128.758 654.959 128.145 649.486 128.471C644.013 128.798 639.177 127.225 638.049 126.466C636.92 125.707 633.527 122.192 638.029 119.074C642.531 115.953 652.179 111.679 658.144 113.633L658.136 113.625Z\" fill=\"white\"/>\n<path d=\"M658.136 113.625C664.887 115.835 669.094 116.912 670.871 118.048C672.644 119.185 676.839 122.487 674.433 124.878C672.023 127.268 671.225 129.136 664.462 128.947C657.699 128.758 654.959 128.145 649.486 128.471C644.013 128.798 639.177 127.225 638.049 126.466C636.92 125.707 633.527 122.192 638.029 119.074C642.531 115.953 652.179 111.679 658.144 113.633L658.136 113.625Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_163\">\n<path d=\"M678.675 123.191C676.949 122.342 675.054 122.291 672.585 123.64C670.116 124.988 669.593 125.889 669.444 126.486C669.294 127.084 668.17 127.461 668.472 128.656C668.771 129.856 671.669 131.13 673.552 131.279C675.436 131.428 675.829 131.279 678.062 130.98C680.295 130.681 682.092 130.229 682.918 128.731C683.743 127.233 680.507 124.088 678.683 123.187L678.675 123.191Z\" fill=\"white\"/>\n<path d=\"M678.675 123.191C676.949 122.342 675.054 122.291 672.585 123.64C670.116 124.988 669.593 125.889 669.444 126.486C669.294 127.084 668.17 127.461 668.472 128.656C668.771 129.856 671.669 131.13 673.552 131.279C675.436 131.428 675.829 131.279 678.062 130.98C680.295 130.681 682.092 130.229 682.918 128.731C683.743 127.233 680.507 124.088 678.683 123.187L678.675 123.191Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_164\">\n<path d=\"M671.701 124.685C670.332 124.013 668.83 123.973 666.872 125.043C664.914 126.112 664.501 126.824 664.38 127.299C664.262 127.775 663.373 128.07 663.609 129.022C663.845 129.973 666.145 130.98 667.635 131.101C669.125 131.219 669.44 131.101 671.209 130.866C672.982 130.63 674.406 130.272 675.058 129.084C675.711 127.897 673.147 125.404 671.701 124.693V124.685Z\" fill=\"white\"/>\n<path d=\"M671.701 124.685C670.332 124.013 668.83 123.973 666.872 125.043C664.914 126.112 664.501 126.824 664.38 127.299C664.262 127.775 663.373 128.07 663.609 129.022C663.845 129.973 666.145 130.98 667.635 131.101C669.125 131.219 669.44 131.101 671.209 130.866C672.982 130.63 674.406 130.272 675.058 129.084C675.711 127.897 673.147 125.404 671.701 124.693V124.685Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_165\">\n<path d=\"M676.198 120.219C674.472 119.369 672.577 119.318 670.108 120.667C667.639 122.015 667.116 122.916 666.967 123.513C666.817 124.111 665.693 124.489 665.995 125.684C666.294 126.883 666.514 128.668 668.398 128.817C670.281 128.967 673.352 128.306 675.585 128.007C677.818 127.709 679.615 127.257 680.441 125.759C681.262 124.261 678.03 121.115 676.206 120.215L676.198 120.219Z\" fill=\"white\"/>\n<path d=\"M676.198 120.219C674.472 119.369 672.577 119.318 670.108 120.667C667.639 122.015 667.116 122.916 666.967 123.513C666.817 124.111 665.693 124.489 665.995 125.684C666.294 126.883 666.514 128.668 668.398 128.817C670.281 128.967 673.352 128.306 675.585 128.007C677.818 127.709 679.615 127.257 680.441 125.759C681.262 124.261 678.03 121.115 676.206 120.215L676.198 120.219Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Flats\" clip-path=\"url(#clip1_1849_10287)\">\n<path id=\"Vector_166\" d=\"M198.616 21.1265H200.067V23.6337H198.616V21.1265Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_167\" d=\"M196.045 21.1265H197.497V23.6337H196.045V21.1265Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_168\" d=\"M207.06 23.2844C206.438 23.2844 205.935 22.7739 205.935 22.1441C205.935 21.5144 206.438 21.0039 207.06 21.0039C207.681 21.0039 208.185 21.5144 208.185 22.1441C208.185 22.7739 207.681 23.2844 207.06 23.2844Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_169\" d=\"M205.928 22.1196H208.185V24.4062H205.928V22.1196Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_170\" d=\"M207.06 21.3349C206.879 21.3349 206.733 21.1867 206.733 21.0039C206.733 20.8211 206.879 20.6729 207.06 20.6729C207.24 20.6729 207.386 20.8211 207.386 21.0039C207.386 21.1867 207.24 21.3349 207.06 21.3349Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_171\" d=\"M204.483 23.2844C203.862 23.2844 203.358 22.7739 203.358 22.1441C203.358 21.5144 203.862 21.0039 204.483 21.0039C205.104 21.0039 205.608 21.5144 205.608 22.1441C205.608 22.7739 205.104 23.2844 204.483 23.2844Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_172\" d=\"M203.358 22.1196H205.614V24.4062H203.358V22.1196Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_173\" d=\"M204.483 21.3349C204.303 21.3349 204.156 21.1867 204.156 21.0039C204.156 20.8211 204.303 20.6729 204.483 20.6729C204.663 20.6729 204.81 20.8211 204.81 21.0039C204.81 21.1867 204.663 21.3349 204.483 21.3349Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_174\" d=\"M266.347 14.1255H289.107V15.1676H266.347V14.1255Z\" fill=\"#003C57\"/>\n<g id=\"Vector_175\">\n<path d=\"M266.353 15.186H289.107V28.5623H266.353V15.186Z\" fill=\"white\"/>\n<path d=\"M266.353 15.186H289.107V28.5623H266.353V15.186Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_176\" d=\"M268.766 17.1787H276.133V31.1741H268.766V17.1787Z\" fill=\"#003C57\"/>\n<path id=\"Vector_177\" d=\"M269.692 18.1104H275.214V31.174H269.692V18.1104Z\" fill=\"#EBEBF4\"/>\n<g id=\"Vector_178\">\n<path d=\"M172.444 29.5186H295.67V125.212H172.444V29.5186Z\" fill=\"white\"/>\n<path d=\"M172.444 29.5186H295.67V125.212H172.444V29.5186Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_179\" opacity=\"0.4\" d=\"M231.792 29.4268H234.713V125.819H231.792V29.4268Z\" fill=\"#EBEBF4\"/>\n<path id=\"Vector_180\" d=\"M172.462 28.3354H295.646V29.5186H172.462V28.3354Z\" fill=\"#003C57\"/>\n<g id=\"Vector_181\">\n<path d=\"M193.215 23.1553H210.955V28.3047H193.215V23.1553Z\" fill=\"white\"/>\n<path d=\"M193.215 23.1553H210.955V28.3047H193.215V23.1553Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_182\" d=\"M266.728 35.6611V50.8213H266.335H243.52H243.145V35.6611H266.728Z\" fill=\"white\"/>\n<g id=\"Vector_183\">\n<path d=\"M290.063 35.6611V118.622H289.906H280.621H280.47V35.6611H290.063Z\" fill=\"white\"/>\n<path d=\"M290.063 35.6611V118.622H289.906H280.621H280.47V35.6611H290.063Z\" fill=\"#6390B5\"/>\n</g>\n<path id=\"Vector_184\" d=\"M244.125 36.8442H265.657V49.4665H244.125V36.8442Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_185\" d=\"M266.571 59.5205V74.6807H266.172H243.363H242.982V59.5205H266.571Z\" fill=\"white\"/>\n<path id=\"Vector_186\" d=\"M243.967 60.6973H265.5V73.1478H243.967V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_187\" d=\"M266.571 83.3179V98.4842H266.172H243.363H242.982V83.3179H266.571Z\" fill=\"white\"/>\n<path id=\"Vector_188\" d=\"M243.967 84.501H265.5V97.1477H243.967V84.501Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_189\" d=\"M241.875 98.2021H275.625V99.0849H241.875V98.2021Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_190\" opacity=\"0.5\" d=\"M241.905 93.4453H275.644V98.2024H241.905V93.4453Z\" fill=\"white\"/>\n<path id=\"Vector_191\" d=\"M266.571 108.195V123.355H266.172H243.363H242.982V108.195H266.571Z\" fill=\"white\"/>\n<path id=\"Vector_192\" d=\"M243.967 109.372H265.5V121.932H243.967V109.372Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_193\" d=\"M241.875 123.073H275.625V123.956H241.875V123.073Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_194\" opacity=\"0.5\" d=\"M241.905 118.315H275.644V123.073H241.905V118.315Z\" fill=\"white\"/>\n<path id=\"Vector_195\" d=\"M241.875 74.3496H275.625V75.2324H241.875V74.3496Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_196\" d=\"M295.646 73.3687H302.045V74.2514H295.646V73.3687Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_197\" opacity=\"0.7\" d=\"M295.664 68.6113H302.027V73.3684H295.664V68.6113Z\" fill=\"white\"/>\n<path id=\"Vector_198\" d=\"M295.646 50.0488H302.045V50.9316H295.646V50.0488Z\" fill=\"#003C57\"/>\n<path id=\"Vector_199\" opacity=\"0.7\" d=\"M295.664 45.292H302.027V50.0491H295.664V45.292Z\" fill=\"white\"/>\n<path id=\"Vector_200\" d=\"M295.646 97.7607H302.045V98.6435H295.646V97.7607Z\" fill=\"#003C57\"/>\n<path id=\"Vector_201\" opacity=\"0.7\" d=\"M295.664 93.0039H302.027V97.761H295.664V93.0039Z\" fill=\"white\"/>\n<path id=\"Vector_202\" d=\"M166.045 73.3687H172.444V74.2514H166.045V73.3687Z\" fill=\"#003C57\"/>\n<path id=\"Vector_203\" opacity=\"0.7\" d=\"M166.063 68.6113H172.426V73.3684H166.063V68.6113Z\" fill=\"white\"/>\n<path id=\"Vector_204\" d=\"M166.045 50.0488H172.444V50.9316H166.045V50.0488Z\" fill=\"#003C57\"/>\n<path id=\"Vector_205\" opacity=\"0.7\" d=\"M166.063 45.292H172.426V50.0491H166.063V45.292Z\" fill=\"white\"/>\n<path id=\"Vector_206\" d=\"M166.045 97.7607H172.444V98.6435H166.045V97.7607Z\" fill=\"#003C57\"/>\n<path id=\"Vector_207\" opacity=\"0.7\" d=\"M166.063 93.0039H172.426V97.761H166.063V93.0039Z\" fill=\"white\"/>\n<path id=\"Vector_208\" d=\"M241.875 50.4902H275.625V51.373H241.875V50.4902Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_209\" opacity=\"0.5\" d=\"M241.947 45.7334H275.655V50.4905H241.947V45.7334Z\" fill=\"white\"/>\n<path id=\"Vector_210\" d=\"M281.649 37.1753H288.883V46.5607H281.649V37.1753Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_211\" d=\"M281.649 60.6973H288.883V70.0827H281.649V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_212\" d=\"M281.649 84.2192H288.883V93.6047H281.649V84.2192Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_213\" d=\"M281.649 107.741H288.883V117.127H281.649V107.741Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_214\" d=\"M204.065 35.6611V50.8213H203.672H180.863H180.482V35.6611H204.065Z\" fill=\"white\"/>\n<g id=\"Vector_215\">\n<path d=\"M227.401 35.6611V118.622H227.244H217.959H217.808V35.6611H227.401Z\" fill=\"white\"/>\n<path d=\"M227.401 35.6611V118.622H227.244H217.959H217.808V35.6611H227.401Z\" fill=\"#6390B5\"/>\n</g>\n<path id=\"Vector_216\" d=\"M181.468 36.8442H203.001V49.4235H181.468V36.8442Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_217\" d=\"M203.908 59.5205V74.6807H203.515H180.7H180.325V59.5205H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_218\" d=\"M181.305 60.6973H202.838V73.1724H181.305V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_219\" d=\"M203.908 83.3179V98.4842H203.515H180.7H180.325V83.3179H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_220\" d=\"M181.305 84.501H202.838V97.0067H181.305V84.501Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_221\" d=\"M179.219 98.2021H212.969V99.0849H179.219V98.2021Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_222\" opacity=\"0.5\" d=\"M179.243 93.4453H212.981V98.2024H179.243V93.4453Z\" fill=\"white\"/>\n<path id=\"Vector_223\" d=\"M203.908 108.195V123.355H203.515H180.7H180.325V108.195H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_224\" d=\"M181.305 109.372H202.838V121.902H181.305V109.372Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_225\" d=\"M179.219 123.073H212.969V123.956H179.219V123.073Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_226\" opacity=\"0.5\" d=\"M179.243 118.315H212.981V123.073H179.243V118.315Z\" fill=\"white\"/>\n<path id=\"Vector_227\" d=\"M179.219 74.3496H212.969V75.2324H179.219V74.3496Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_228\" opacity=\"0.5\" d=\"M179.231 69.5923H212.969V74.3494H179.231V69.5923Z\" fill=\"white\"/>\n<path id=\"Vector_229\" d=\"M179.219 50.4902H212.969V51.373H179.219V50.4902Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_230\" d=\"M218.987 37.1753H226.221V46.5607H218.987V37.1753Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_231\" d=\"M218.987 60.6973H226.221V70.0827H218.987V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_232\" d=\"M218.987 84.2192H226.221V93.6047H218.987V84.2192Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_233\" d=\"M218.987 107.741H226.221V117.127H218.987V107.741Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_234\" opacity=\"0.5\" d=\"M241.893 69.5923H275.631V74.3494H241.893V69.5923Z\" fill=\"white\"/>\n<path id=\"Vector_235\" opacity=\"0.5\" d=\"M179.285 45.7334H212.993V50.4905H179.285V45.7334Z\" fill=\"white\"/>\n</g>\n<g id=\"House\" clip-path=\"url(#clip2_1849_10287)\">\n<path id=\"Vector_236\" d=\"M180.966 101.642L177.736 104.85L178.049 105.161L181.279 101.952L180.966 101.642Z\" fill=\"#003C57\"/>\n<path id=\"Vector_237\" d=\"M114.431 95.9507H101.169V104.616H114.431V95.9507Z\" fill=\"#206095\"/>\n<g id=\"Vector_238\">\n<path d=\"M184 102.09H177.769V95.9468V95.951L184 102.09Z\" fill=\"white\"/>\n<path d=\"M184 102.09H177.769V95.9468V95.951L184 102.09Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_239\" d=\"M101.17 95.9507H100V104.616H101.17V95.9507Z\" fill=\"#003C57\"/>\n<path id=\"Vector_240\" d=\"M178.126 102.085H177.773V106.036H178.126V102.085Z\" fill=\"#003C57\"/>\n<path id=\"Vector_241\" d=\"M177.774 74.5513H114.431V86.8248H177.774V74.5513Z\" fill=\"#206095\"/>\n<g id=\"Vector_242\">\n<path d=\"M161.935 69.1309H130.266V86.8504H161.935V69.1309Z\" fill=\"white\"/>\n<path d=\"M161.935 69.1309H130.266V86.8504H161.935V69.1309Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_243\" d=\"M146.173 69.1309H146.032V84.8858H146.173V69.1309Z\" fill=\"#003C57\"/>\n<g id=\"Vector_244\">\n<path d=\"M146.1 86.8248L161.935 71.0952L177.769 86.8248V125.804H146.1V86.8248Z\" fill=\"white\"/>\n<path d=\"M146.1 86.8248L161.935 71.0952L177.769 86.8248V125.804H146.1V86.8248Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_245\" d=\"M161.935 71.0955L177.769 86.8251V84.8605L161.935 69.1309L146.1 84.8605V86.8251L161.935 71.0955Z\" fill=\"#003C57\"/>\n<g id=\"Vector_246\">\n<path d=\"M114.431 86.8248L130.266 71.0952L146.1 86.8248V125.804H114.431V86.8248Z\" fill=\"white\"/>\n<path d=\"M114.431 86.8248L130.266 71.0952L146.1 86.8248V125.804H114.431V86.8248Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_247\" d=\"M130.266 71.0955L146.1 86.8251V84.8605L130.266 69.1309L114.431 84.8605V86.8251L130.266 71.0955Z\" fill=\"#003C57\"/>\n<path id=\"Vector_248\" d=\"M167.038 84.7041H162.215V92.026H167.038V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_249\" d=\"M161.73 84.7041H156.831V92.026H161.73V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_250\" d=\"M155.551 92.0218V92.7612H168.327V92.0218H167.532V84.2183H156.35V92.0218H155.555H155.551ZM156.831 84.6999H161.731V92.0218H156.831V84.6999ZM167.043 92.0218H162.22V84.6999H167.043V92.0218Z\" fill=\"#003C57\"/>\n<path id=\"Vector_251\" d=\"M135.369 84.7041H130.546V92.026H135.369V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_252\" d=\"M130.061 84.7041H125.162V92.026H130.061V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_253\" d=\"M123.877 92.0218V92.7612H136.654V92.0218H135.859V84.2183H124.677V92.0218H123.882H123.877ZM125.158 84.6999H130.057V92.0218H125.158V84.6999ZM135.369 92.0218H130.546V84.6999H135.369V92.0218Z\" fill=\"#003C57\"/>\n<g id=\"Vector_254\">\n<path d=\"M114.431 104.583H100.463V124.541H114.431V104.583Z\" fill=\"white\"/>\n<path d=\"M114.431 104.583H100.463V124.541H114.431V104.583Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_255\" d=\"M111.607 109.09H103.288V124.583H111.607V109.09Z\" fill=\"#003C57\"/>\n<g id=\"Vector_256\">\n<path d=\"M110.569 110.122H104.33V124.579H110.569V110.122Z\" fill=\"white\"/>\n<path d=\"M110.569 110.122H104.33V124.579H110.569V110.122Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_257\" d=\"M107.447 115.2C108.553 115.2 109.45 114.309 109.45 113.21C109.45 112.111 108.553 111.22 107.447 111.22C106.341 111.22 105.444 112.111 105.444 113.21C105.444 114.309 106.341 115.2 107.447 115.2Z\" fill=\"white\"/>\n<path id=\"Vector_258\" d=\"M178.479 74.5513H177.773V86.8248H178.479V74.5513Z\" fill=\"#003C57\"/>\n<path id=\"Vector_259\" d=\"M114.431 74.5513H113.725V86.8248H114.431V74.5513Z\" fill=\"#003C57\"/>\n<path id=\"Vector_260\" d=\"M149.817 62.751H146.228V67.3942H149.817V62.751Z\" fill=\"#003C57\"/>\n<path id=\"Vector_261\" d=\"M145.977 62.751H142.387V67.3942H145.977V62.751Z\" fill=\"#003C57\"/>\n<g id=\"Group\" opacity=\"0.75\">\n<g id=\"Vector_262\">\n<path d=\"M142.472 61.813H149.728C149.987 61.813 150.2 62.0242 150.2 62.282C150.2 62.5397 149.987 62.7509 149.728 62.7509H142.472C142.213 62.7509 142 62.5397 142 62.282C142 62.0242 142.213 61.813 142.472 61.813Z\" fill=\"white\"/>\n<path d=\"M142.472 61.813H149.728C149.987 61.813 150.2 62.0242 150.2 62.282C150.2 62.5397 149.987 62.7509 149.728 62.7509H142.472C142.213 62.7509 142 62.5397 142 62.282C142 62.0242 142.213 61.813 142.472 61.813Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n<path id=\"Vector_263\" d=\"M150.914 69.1263H141.29C141.29 68.1672 142.072 67.394 143.033 67.394H149.166C150.132 67.394 150.91 68.1714 150.91 69.1263H150.914Z\" fill=\"#003C57\"/>\n<g id=\"Vector_264\">\n<path d=\"M139.848 109.112H120.683L124.605 102.947H135.926L139.848 109.112Z\" fill=\"white\"/>\n<path d=\"M139.848 109.112H120.683L124.605 102.947H135.926L139.848 109.112Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<g id=\"Vector_265\">\n<path d=\"M171.521 109.112H152.352L156.273 102.947H167.6L171.521 109.112Z\" fill=\"white\"/>\n<path d=\"M171.521 109.112H152.352L156.273 102.947H167.6L171.521 109.112Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_266\" d=\"M158.264 109.297H154.024V117.625H158.264V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_267\" d=\"M153.262 117.313V117.938H161.905V117.313H161.335V109.112H153.836V117.313H153.262ZM160.952 117.313H154.211V109.488H160.952V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_268\" d=\"M169.816 109.297H165.418V117.625H169.816V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_269\" d=\"M161.935 117.313V117.938H170.577V117.313H170.007V109.112H162.509V117.313H161.935ZM169.624 117.313H162.883V109.488H169.624V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_270\" d=\"M165.418 109.297H158.298V117.625H165.418V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_271\" d=\"M157.541 117.313V117.938H166.183V117.313H165.614V109.112H158.115V117.313H157.541ZM165.231 117.313H158.489V109.488H165.231V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_272\" d=\"M126.629 109.297H122.389V117.625H126.629V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_273\" d=\"M121.627 117.313V117.938H130.27V117.313H129.7V109.112H122.202V117.313H121.627ZM129.317 117.313H122.576V109.488H129.317V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_274\" d=\"M138.147 109.297H133.749V117.625H138.147V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_275\" d=\"M130.266 117.313V117.938H138.908V117.313H138.338V109.112H130.84V117.313H130.266ZM137.955 117.313H131.214V109.488H137.955V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_276\" d=\"M133.749 109.297H126.629V117.625H133.749V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_277\" d=\"M125.868 117.313V117.938H134.51V117.313H133.94V109.112H126.442V117.313H125.868ZM133.557 117.313H126.816V109.488H133.557V117.313Z\" fill=\"#003C57\"/>\n<g id=\"Vector_278\">\n<path d=\"M170.577 117.938H165.418V125.8H170.577V117.938Z\" fill=\"white\"/>\n<path d=\"M170.577 117.938H165.418V125.8H170.577V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_279\">\n<path d=\"M138.904 117.938H133.745V125.8H138.904V117.938Z\" fill=\"white\"/>\n<path d=\"M138.904 117.938H133.745V125.8H138.904V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_280\">\n<path d=\"M126.787 117.938H121.627V125.8H126.787V117.938Z\" fill=\"white\"/>\n<path d=\"M126.787 117.938H121.627V125.8H126.787V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_281\">\n<path d=\"M133.749 117.938H126.787V125.8H133.749V117.938Z\" fill=\"white\"/>\n<path d=\"M133.749 117.938H126.787V125.8H133.749V117.938Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_282\">\n<path d=\"M158.477 117.946H153.318V125.809H158.477V117.946Z\" fill=\"white\"/>\n<path d=\"M158.477 117.946H153.318V125.809H158.477V117.946Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_283\">\n<path d=\"M165.422 117.946H158.485V125.809H165.422V117.946Z\" fill=\"white\"/>\n<path d=\"M165.422 117.946H158.485V125.809H165.422V117.946Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n</g>\n</g>\n<g id=\"Tree\">\n<g id=\"Vector_284\">\n<path d=\"M82.1082 62.9994C83.1949 66.5107 84.3987 69.9986 85.3383 73.5419C86.6742 78.5767 87.8142 83.6541 88.7453 87.5021C90.5137 80.9119 92.6082 73.103 94.7026 65.2941C95.003 65.309 95.3013 65.3261 95.6018 65.341C95.5975 66.6556 95.9853 68.0874 95.5293 69.2657C91.3319 80.147 90.5691 91.2968 91.954 102.638C92.0308 103.273 92.2864 103.893 92.5549 104.873C94.4853 102.981 96.1451 101.358 97.8027 99.7321C98.0605 99.9175 98.3184 100.105 98.5762 100.29C97.2743 101.98 96.128 103.787 94.6302 105.325C92.6827 107.326 92.4526 109.584 92.67 112.018C93.0194 115.938 93.3305 119.863 93.7076 123.781C94.057 127.412 93.9484 127.52 89.5549 126.945C89.1906 122.579 88.8241 118.175 88.4534 113.771C88.3809 112.917 88.1487 112.054 88.2318 111.214C89.133 102.05 82.6622 96.3572 76.0273 90.7727C74.5337 89.5156 72.7375 88.544 71.3398 87.1718C79.8646 88.8956 83.4441 95.7478 88.6579 101.015C87.3944 93.4871 86.3206 86.1512 84.8738 78.8729C84.1451 75.2039 82.6579 71.6584 81.6736 68.0214C81.2304 66.3893 81.1792 64.6741 80.9513 62.9951C81.3369 62.9951 81.7226 62.9951 82.1082 62.9972V62.9994Z\" fill=\"white\"/>\n<path d=\"M82.1082 62.9994C83.1949 66.5107 84.3987 69.9986 85.3383 73.5419C86.6742 78.5767 87.8142 83.6541 88.7453 87.5021C90.5137 80.9119 92.6082 73.103 94.7026 65.2941C95.003 65.309 95.3013 65.3261 95.6018 65.341C95.5975 66.6556 95.9853 68.0874 95.5293 69.2657C91.3319 80.147 90.5691 91.2968 91.954 102.638C92.0308 103.273 92.2864 103.893 92.5549 104.873C94.4853 102.981 96.1451 101.358 97.8027 99.7321C98.0605 99.9175 98.3184 100.105 98.5762 100.29C97.2743 101.98 96.128 103.787 94.6302 105.325C92.6827 107.326 92.4526 109.584 92.67 112.018C93.0194 115.938 93.3305 119.863 93.7076 123.781C94.057 127.412 93.9484 127.52 89.5549 126.945C89.1906 122.579 88.8241 118.175 88.4534 113.771C88.3809 112.917 88.1487 112.054 88.2318 111.214C89.133 102.05 82.6622 96.3572 76.0273 90.7727C74.5337 89.5156 72.7375 88.544 71.3398 87.1718C79.8646 88.8956 83.4441 95.7478 88.6579 101.015C87.3944 93.4871 86.3206 86.1512 84.8738 78.8729C84.1451 75.2039 82.6579 71.6584 81.6736 68.0214C81.2304 66.3893 81.1792 64.6741 80.9513 62.9951C81.3369 62.9951 81.7226 62.9951 82.1082 62.9972V62.9994Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_285\">\n<path d=\"M96.5969 84.7475C99.5586 82.9833 102.812 82.8895 107.039 85.7126C111.267 88.5379 112.159 90.415 112.413 91.6657C112.666 92.9164 114.588 93.7027 114.068 96.2041C113.549 98.7034 108.573 101.348 105.345 101.65C102.12 101.955 101.444 101.639 97.6133 101.004C93.7823 100.37 90.7056 99.4235 89.3036 96.2936C87.9017 93.1636 93.4627 86.6139 96.5991 84.7475H96.5969Z\" fill=\"white\"/>\n<path d=\"M96.5969 84.7475C99.5586 82.9833 102.812 82.8895 107.039 85.7126C111.267 88.5379 112.159 90.415 112.413 91.6657C112.666 92.9164 114.588 93.7027 114.068 96.2041C113.549 98.7034 108.573 101.348 105.345 101.65C102.12 101.955 101.444 101.639 97.6133 101.004C93.7823 100.37 90.7056 99.4235 89.3036 96.2936C87.9017 93.1636 93.4627 86.6139 96.5991 84.7475H96.5969Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_286\">\n<path d=\"M65.257 75.6538C68.6597 73.9919 72.4011 73.9024 77.2612 76.5722C82.1212 79.2398 83.1482 81.0125 83.4401 82.195C83.732 83.3754 85.9437 84.119 85.3449 86.4777C84.7484 88.8363 79.0296 91.3271 75.3223 91.6126C71.6128 91.8981 70.8372 91.5998 66.4331 90.9989C62.029 90.396 58.4921 89.5032 56.877 86.548C55.262 83.5927 61.6519 77.4159 65.257 75.656V75.6538Z\" fill=\"white\"/>\n<path d=\"M65.257 75.6538C68.6597 73.9919 72.4011 73.9024 77.2612 76.5722C82.1212 79.2398 83.1482 81.0125 83.4401 82.195C83.732 83.3754 85.9437 84.119 85.3449 86.4777C84.7484 88.8363 79.0296 91.3271 75.3223 91.6126C71.6128 91.8981 70.8372 91.5998 66.4331 90.9989C62.029 90.396 58.4921 89.5032 56.877 86.548C55.262 83.5927 61.6519 77.4159 65.257 75.656V75.6538Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_287\">\n<path d=\"M81.4753 52.7554C74.5101 56.3072 70.172 58.0373 68.3418 59.859C66.5115 61.6808 62.1799 66.9797 64.66 70.8043C67.1401 74.6288 67.9625 77.6203 74.9341 77.3071C81.9078 76.9939 84.7309 76.0053 90.3751 76.5188C96.0171 77.0322 101.005 74.5053 102.17 73.2887C103.336 72.072 106.837 66.4385 102.202 61.4443C97.5682 56.4521 87.6265 49.619 81.4753 52.7554Z\" fill=\"white\"/>\n<path d=\"M81.4753 52.7554C74.5101 56.3072 70.172 58.0373 68.3418 59.859C66.5115 61.6808 62.1799 66.9797 64.66 70.8043C67.1401 74.6288 67.9625 77.6203 74.9341 77.3071C81.9078 76.9939 84.7309 76.0053 90.3751 76.5188C96.0171 77.0322 101.005 74.5053 102.17 73.2887C103.336 72.072 106.837 66.4385 102.202 61.4443C97.5682 56.4521 87.6265 49.619 81.4753 52.7554Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_288\">\n<path d=\"M94.7559 54.5452C98.4888 51.6326 102.586 51.4706 107.909 56.1283C113.231 60.7859 114.354 63.8839 114.671 65.9486C114.989 68.0132 117.409 69.3086 116.753 73.4357C116.095 77.5607 109.824 81.9286 105.759 82.4336C101.693 82.9385 100.843 82.4208 96.0194 81.3746C91.1955 80.3285 87.3198 78.7709 85.5556 73.6083C83.7914 68.4436 90.8056 57.6304 94.758 54.5452H94.7559Z\" fill=\"white\"/>\n<path d=\"M94.7559 54.5452C98.4888 51.6326 102.586 51.4706 107.909 56.1283C113.231 60.7859 114.354 63.8839 114.671 65.9486C114.989 68.0132 117.409 69.3086 116.753 73.4357C116.095 77.5607 109.824 81.9286 105.759 82.4336C101.693 82.9385 100.843 82.4208 96.0194 81.3746C91.1955 80.3285 87.3198 78.7709 85.5556 73.6083C83.7914 68.4436 90.8056 57.6304 94.758 54.5452H94.7559Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_289\">\n<path d=\"M98.0287 128.111C96.3092 127.772 96.305 126.155 94.349 126.33C93.6097 126.396 93.158 126.671 92.4612 126.594C91.8945 126.532 91.1232 125.328 88.9733 125.887C87.3775 126.302 87.8142 127.131 86.7937 127.389C85.7049 127.666 84.6353 128.047 83.5572 128.384C83.5721 128.463 83.587 129.453 83.5998 129.53C88.6346 129.53 95.359 129.53 100.392 129.53C100.313 129.066 98.2737 128.158 98.0266 128.109L98.0287 128.111Z\" fill=\"white\"/>\n<path d=\"M98.0287 128.111C96.3092 127.772 96.305 126.155 94.349 126.33C93.6097 126.396 93.158 126.671 92.4612 126.594C91.8945 126.532 91.1232 125.328 88.9733 125.887C87.3775 126.302 87.8142 127.131 86.7937 127.389C85.7049 127.666 84.6353 128.047 83.5572 128.384C83.5721 128.463 83.587 129.453 83.5998 129.53C88.6346 129.53 95.359 129.53 100.392 129.53C100.313 129.066 98.2737 128.158 98.0266 128.109L98.0287 128.111Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n</g>\n<g id=\"Tree_2\">\n<g id=\"Vector_290\">\n<path d=\"M491.503 67.6656C490.493 70.9307 489.373 74.174 488.499 77.4688C487.257 82.1505 486.197 86.8719 485.331 90.45C483.687 84.322 481.739 77.0607 479.792 69.7994C479.513 69.8133 479.235 69.8291 478.956 69.843C478.96 71.0654 478.599 72.3968 479.023 73.4925C482.926 83.6107 483.636 93.9786 482.348 104.525C482.276 105.115 482.039 105.692 481.789 106.603C479.994 104.844 478.451 103.334 476.909 101.822C476.669 101.995 476.43 102.169 476.19 102.342C477.4 103.913 478.466 105.593 479.859 107.023C481.67 108.884 481.884 110.984 481.682 113.246C481.357 116.892 481.068 120.541 480.717 124.185C480.392 127.561 480.493 127.662 484.579 127.127C484.917 123.067 485.258 118.972 485.603 114.877C485.67 114.082 485.886 113.28 485.809 112.499C484.971 103.978 490.988 98.6841 497.158 93.4912C498.546 92.3223 500.217 91.4189 501.516 90.1429C493.589 91.7458 490.261 98.1175 485.413 103.015C486.588 96.0154 487.586 89.1939 488.931 82.4259C489.609 79.0142 490.992 75.7174 491.907 72.3354C492.319 70.8178 492.367 69.2229 492.579 67.6616C492.22 67.6616 491.862 67.6616 491.503 67.6636V67.6656Z\" fill=\"white\"/>\n<path d=\"M491.503 67.6656C490.493 70.9307 489.373 74.174 488.499 77.4688C487.257 82.1505 486.197 86.8719 485.331 90.45C483.687 84.322 481.739 77.0607 479.792 69.7994C479.513 69.8133 479.235 69.8291 478.956 69.843C478.96 71.0654 478.599 72.3968 479.023 73.4925C482.926 83.6107 483.636 93.9786 482.348 104.525C482.276 105.115 482.039 105.692 481.789 106.603C479.994 104.844 478.451 103.334 476.909 101.822C476.669 101.995 476.43 102.169 476.19 102.342C477.4 103.913 478.466 105.593 479.859 107.023C481.67 108.884 481.884 110.984 481.682 113.246C481.357 116.892 481.068 120.541 480.717 124.185C480.392 127.561 480.493 127.662 484.579 127.127C484.917 123.067 485.258 118.972 485.603 114.877C485.67 114.082 485.886 113.28 485.809 112.499C484.971 103.978 490.988 98.6841 497.158 93.4912C498.546 92.3223 500.217 91.4189 501.516 90.1429C493.589 91.7458 490.261 98.1175 485.413 103.015C486.588 96.0154 487.586 89.1939 488.931 82.4259C489.609 79.0142 490.992 75.7174 491.907 72.3354C492.319 70.8178 492.367 69.2229 492.579 67.6616C492.22 67.6616 491.862 67.6616 491.503 67.6636V67.6656Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_291\">\n<path d=\"M478.031 87.8881C475.277 86.2476 472.252 86.1604 468.321 88.7856C464.39 91.4127 463.56 93.1582 463.324 94.3212C463.088 95.4842 461.301 96.2153 461.785 98.5413C462.268 100.865 466.894 103.324 469.896 103.605C472.896 103.889 473.524 103.595 477.086 103.005C480.648 102.415 483.509 101.535 484.813 98.6245C486.117 95.714 480.945 89.6237 478.029 87.8881H478.031Z\" fill=\"white\"/>\n<path d=\"M478.031 87.8881C475.277 86.2476 472.252 86.1604 468.321 88.7856C464.39 91.4127 463.56 93.1582 463.324 94.3212C463.088 95.4842 461.301 96.2153 461.785 98.5413C462.268 100.865 466.894 103.324 469.896 103.605C472.896 103.889 473.524 103.595 477.086 103.005C480.648 102.415 483.509 101.535 484.813 98.6245C486.117 95.714 480.945 89.6237 478.029 87.8881H478.031Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_292\">\n<path d=\"M507.173 79.4324C504.009 77.887 500.53 77.8038 496.01 80.2863C491.491 82.7669 490.536 84.4153 490.265 85.5149C489.993 86.6125 487.937 87.3039 488.494 89.4972C489.048 91.6904 494.366 94.0065 497.813 94.272C501.263 94.5375 501.984 94.2601 506.079 93.7014C510.174 93.1407 513.463 92.3106 514.965 89.5626C516.467 86.8146 510.525 81.0709 507.173 79.4344V79.4324Z\" fill=\"white\"/>\n<path d=\"M507.173 79.4324C504.009 77.887 500.53 77.8038 496.01 80.2863C491.491 82.7669 490.536 84.4153 490.265 85.5149C489.993 86.6125 487.937 87.3039 488.494 89.4972C489.048 91.6904 494.366 94.0065 497.813 94.272C501.263 94.5375 501.984 94.2601 506.079 93.7014C510.174 93.1407 513.463 92.3106 514.965 89.5626C516.467 86.8146 510.525 81.0709 507.173 79.4344V79.4324Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_293\">\n<path d=\"M492.092 58.1396C498.568 61.4424 502.602 63.0512 504.304 64.7451C506.006 66.4391 510.034 71.3665 507.728 74.9229C505.422 78.4792 504.657 81.2609 498.174 80.9696C491.689 80.6784 489.064 79.7591 483.816 80.2366C478.57 80.7141 473.931 78.3643 472.848 77.233C471.764 76.1017 468.509 70.8633 472.818 66.2192C477.127 61.5771 486.372 55.2232 492.092 58.1396Z\" fill=\"white\"/>\n<path d=\"M492.092 58.1396C498.568 61.4424 502.602 63.0512 504.304 64.7451C506.006 66.4391 510.034 71.3665 507.728 74.9229C505.422 78.4792 504.657 81.2609 498.174 80.9696C491.689 80.6784 489.064 79.7591 483.816 80.2366C478.57 80.7141 473.931 78.3643 472.848 77.233C471.764 76.1017 468.509 70.8633 472.818 66.2192C477.127 61.5771 486.372 55.2232 492.092 58.1396Z\" fill=\"#206095\" fill-opacity=\"0.75\"/>\n</g>\n<g id=\"Vector_294\">\n<path d=\"M479.743 59.8037C476.271 57.0953 472.461 56.9447 467.512 61.2757C462.563 65.6068 461.519 68.4875 461.224 70.4073C460.929 72.3272 458.678 73.5318 459.288 77.3695C459.9 81.2052 465.731 85.2668 469.511 85.7363C473.292 86.2059 474.082 85.7244 478.568 84.7516C483.053 83.7788 486.657 82.3305 488.298 77.53C489.938 72.7274 483.416 62.6725 479.741 59.8037H479.743Z\" fill=\"white\"/>\n<path d=\"M479.743 59.8037C476.271 57.0953 472.461 56.9447 467.512 61.2757C462.563 65.6068 461.519 68.4875 461.224 70.4073C460.929 72.3272 458.678 73.5318 459.288 77.3695C459.9 81.2052 465.731 85.2668 469.511 85.7363C473.292 86.2059 474.082 85.7244 478.568 84.7516C483.053 83.7788 486.657 82.3305 488.298 77.53C489.938 72.7274 483.416 62.6725 479.741 59.8037H479.743Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_295\">\n<path d=\"M476.7 128.211C478.299 127.896 478.302 126.392 480.121 126.554C480.809 126.616 481.229 126.871 481.877 126.8C482.404 126.743 483.121 125.623 485.12 126.142C486.604 126.529 486.198 127.299 487.147 127.539C488.159 127.797 489.154 128.151 490.156 128.464C490.142 128.538 490.129 129.459 490.117 129.53C485.435 129.53 479.182 129.53 474.502 129.53C474.576 129.098 476.472 128.254 476.702 128.209L476.7 128.211Z\" fill=\"white\"/>\n<path d=\"M476.7 128.211C478.299 127.896 478.302 126.392 480.121 126.554C480.809 126.616 481.229 126.871 481.877 126.8C482.404 126.743 483.121 125.623 485.12 126.142C486.604 126.529 486.198 127.299 487.147 127.539C488.159 127.797 489.154 128.151 490.156 128.464C490.142 128.538 490.129 129.459 490.117 129.53C485.435 129.53 479.182 129.53 474.502 129.53C474.576 129.098 476.472 128.254 476.702 128.209L476.7 128.211Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n</g>\n<g id=\"Icons\">\n<g id=\"Group 382\">\n<path id=\"Vector 1\" d=\"M73.3804 142.105H627.845\" stroke=\"#206095\" stroke-width=\"3\" stroke-dasharray=\"6 6\"/>\n<g id=\"Ellipse 16\">\n<circle cx=\"65.6123\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"65.6123\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"65.6123\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 17\">\n<circle cx=\"207.806\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"207.806\" cy=\"142.105\" r=\"33.5\" fill=\"#FBC900\" fill-opacity=\"0.4\"/>\n<circle cx=\"207.806\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 18\">\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 19\">\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 20\">\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n</g>\n<g id=\"Artwork 64x64_2\">\n<path id=\"Vector_296\" d=\"M479.913 124.463V159.748C479.913 160.108 480.056 160.453 480.311 160.708C480.565 160.962 480.91 161.105 481.27 161.105H505.699C506.059 161.105 506.404 160.962 506.658 160.708C506.913 160.453 507.056 160.108 507.056 159.748V131.248L498.913 123.105H481.27C480.91 123.105 480.565 123.248 480.311 123.503C480.056 123.757 479.913 124.103 479.913 124.463Z\" fill=\"#003C57\"/>\n<path id=\"Vector_297\" d=\"M500.27 131.248H507.056L498.913 123.105V129.891C498.913 130.251 499.056 130.596 499.311 130.851C499.565 131.105 499.91 131.248 500.27 131.248Z\" fill=\"#4D7789\"/>\n<path id=\"Vector_298\" d=\"M496.701 136.5C494.983 135.609 493.065 135.176 491.131 135.243C489.197 135.31 487.313 135.873 485.661 136.88C485.511 136.977 485.404 137.128 485.365 137.302C485.326 137.476 485.356 137.658 485.45 137.81C485.498 137.886 485.559 137.952 485.632 138.004C485.704 138.056 485.787 138.093 485.874 138.113C485.961 138.133 486.051 138.136 486.139 138.121C486.227 138.106 486.311 138.074 486.387 138.027C487.838 137.133 489.498 136.634 491.201 136.58C492.905 136.526 494.593 136.92 496.097 137.722C498.974 139.133 500.983 141.617 501.207 144.039C501.224 144.207 501.303 144.363 501.428 144.476C501.554 144.589 501.717 144.651 501.885 144.65H501.953C502.132 144.633 502.297 144.545 502.412 144.407C502.526 144.268 502.581 144.089 502.564 143.91C502.306 141.026 499.985 138.122 496.701 136.5Z\" fill=\"white\"/>\n<path id=\"Vector_299\" d=\"M489.63 134.173C494.027 133.495 498.085 134.852 500.766 137.953C500.83 138.026 500.909 138.085 500.998 138.124C501.087 138.164 501.184 138.184 501.281 138.184C501.41 138.182 501.536 138.144 501.645 138.074C501.753 138.003 501.839 137.903 501.892 137.786C501.946 137.668 501.965 137.538 501.946 137.41C501.928 137.282 501.874 137.162 501.79 137.064C498.798 133.596 494.292 132.056 489.413 132.836C489.324 132.85 489.238 132.881 489.161 132.928C489.084 132.975 489.017 133.037 488.964 133.11C488.911 133.182 488.872 133.265 488.851 133.352C488.83 133.44 488.826 133.531 488.84 133.62C488.853 133.709 488.885 133.795 488.932 133.872C488.978 133.949 489.04 134.016 489.113 134.069C489.186 134.122 489.268 134.161 489.356 134.182C489.443 134.203 489.534 134.207 489.623 134.194L489.63 134.173Z\" fill=\"white\"/>\n<path id=\"Vector_300\" d=\"M497.094 140.171C494.054 137.891 491.286 137.851 489.494 138.224C487.262 138.685 485.47 140.009 484.86 141.074C484.815 141.152 484.786 141.238 484.775 141.327C484.764 141.416 484.771 141.506 484.795 141.593C484.819 141.679 484.86 141.76 484.915 141.83C484.97 141.901 485.039 141.96 485.118 142.004C485.271 142.086 485.451 142.106 485.619 142.059C485.787 142.012 485.931 141.902 486.02 141.752C486.949 140.586 488.275 139.804 489.745 139.554C491.265 139.242 493.627 139.276 496.26 141.257C501.173 144.935 498.974 150.934 497.108 153.587C497.056 153.66 497.02 153.743 497 153.831C496.981 153.918 496.979 154.009 496.994 154.097C497.01 154.186 497.043 154.27 497.092 154.345C497.141 154.421 497.204 154.486 497.278 154.537C497.351 154.59 497.435 154.627 497.523 154.647C497.611 154.667 497.703 154.669 497.792 154.654C497.881 154.638 497.966 154.604 498.042 154.555C498.118 154.506 498.183 154.442 498.234 154.367C502.442 148.348 500.589 142.784 497.094 140.171Z\" fill=\"white\"/>\n<path id=\"Vector_301\" d=\"M497.488 145.776C497.256 144.906 496.839 144.096 496.265 143.401C495.691 142.707 494.974 142.144 494.163 141.753C493.163 141.232 492.043 140.987 490.917 141.043C489.791 141.099 488.701 141.454 487.757 142.071C486.851 142.804 486.074 143.682 485.457 144.67C485.301 144.907 485.131 145.133 484.948 145.349C484.84 145.483 484.787 145.654 484.8 145.826C484.813 145.997 484.89 146.158 485.017 146.275C485.144 146.391 485.311 146.455 485.483 146.453C485.656 146.452 485.821 146.384 485.946 146.265C486.175 145.993 486.388 145.708 486.583 145.41C487.108 144.548 487.776 143.782 488.558 143.144C489.296 142.675 490.144 142.408 491.017 142.371C491.89 142.334 492.758 142.528 493.532 142.933C494.182 143.231 494.758 143.669 495.219 144.216C495.68 144.763 496.015 145.404 496.199 146.095C496.64 147.914 496.056 151.673 492.643 154.591C492.575 154.649 492.52 154.72 492.479 154.799C492.439 154.879 492.415 154.965 492.408 155.054C492.401 155.143 492.411 155.232 492.439 155.317C492.467 155.402 492.511 155.48 492.568 155.548C492.632 155.622 492.711 155.682 492.8 155.723C492.889 155.764 492.986 155.785 493.084 155.785C493.246 155.785 493.402 155.728 493.525 155.623C497.128 152.521 498.112 148.341 497.488 145.776Z\" fill=\"white\"/>\n<path id=\"Vector_302\" d=\"M492.046 144.141C491.328 143.939 490.562 143.993 489.881 144.296C489.199 144.598 488.645 145.129 488.314 145.797C487.425 147.595 486.834 148.43 485.498 148.952C485.326 149.022 485.188 149.156 485.116 149.327C485.043 149.497 485.041 149.69 485.111 149.862C485.18 150.034 485.315 150.171 485.485 150.243C485.656 150.316 485.848 150.318 486.02 150.249C487.913 149.509 488.68 148.213 489.555 146.435C489.757 146.046 490.087 145.74 490.489 145.568C490.891 145.396 491.341 145.369 491.761 145.492C492.237 145.582 492.668 145.834 492.981 146.205C493.293 146.575 493.469 147.043 493.478 147.527C493.478 150.466 490.173 153.255 489.291 153.743C489.169 153.818 489.073 153.929 489.018 154.061C488.963 154.194 488.951 154.34 488.984 154.479C489.018 154.619 489.094 154.744 489.203 154.837C489.311 154.93 489.447 154.987 489.589 154.999C489.703 154.999 489.815 154.971 489.915 154.917C491.17 154.239 494.808 151.07 494.808 147.507C494.806 146.714 494.53 145.945 494.027 145.332C493.523 144.718 492.824 144.298 492.046 144.141Z\" fill=\"white\"/>\n<path id=\"Vector_303\" d=\"M491.978 147.975C492.029 147.807 492.013 147.626 491.933 147.469C491.853 147.313 491.716 147.194 491.55 147.136C491.383 147.079 491.202 147.089 491.042 147.163C490.883 147.237 490.759 147.37 490.696 147.534C490.006 149.344 488.627 150.808 486.862 151.605C486.715 151.664 486.593 151.771 486.517 151.91C486.44 152.048 486.415 152.209 486.445 152.364C486.475 152.52 486.558 152.66 486.68 152.76C486.802 152.861 486.955 152.916 487.113 152.915C487.199 152.915 487.284 152.899 487.364 152.868C488.42 152.401 489.373 151.727 490.165 150.887C490.957 150.047 491.574 149.057 491.978 147.975Z\" fill=\"white\"/>\n</g>\n<g id=\"Artwork 64x64_3\">\n<path id=\"Vector_304\" d=\"M634.346 155.445H634.16V153.695C634.16 153.463 634.071 153.24 633.912 153.076C633.753 152.912 633.537 152.82 633.312 152.82H619.749C619.524 152.82 619.308 152.912 619.149 153.076C618.99 153.24 618.901 153.463 618.901 153.695V155.445H618.715C618.405 155.444 618.098 155.506 617.811 155.628C617.525 155.75 617.265 155.929 617.046 156.155C616.827 156.381 616.653 156.65 616.535 156.945C616.417 157.241 616.357 157.558 616.358 157.878V158.945C616.358 159.177 616.447 159.4 616.606 159.564C616.765 159.728 616.981 159.82 617.206 159.82H635.855C636.08 159.82 636.296 159.728 636.455 159.564C636.614 159.4 636.703 159.177 636.703 158.945V157.878C636.704 157.558 636.644 157.241 636.526 156.945C636.408 156.65 636.234 156.381 636.015 156.155C635.796 155.929 635.536 155.75 635.25 155.628C634.963 155.506 634.656 155.444 634.346 155.445Z\" fill=\"#206095\"/>\n<path id=\"Vector_305\" d=\"M656.548 155.594L639.772 138.268C639.568 138.059 639.317 137.907 639.041 137.826C638.765 137.745 638.474 137.737 638.195 137.804L634.278 133.761L637.296 130.646C637.597 130.333 637.766 129.91 637.766 129.469C637.766 129.028 637.597 128.605 637.296 128.292L637.237 128.231L637.83 127.609C637.988 127.772 638.175 127.901 638.381 127.989C638.586 128.077 638.807 128.123 639.03 128.123C639.253 128.123 639.473 128.077 639.679 127.989C639.885 127.901 640.072 127.772 640.229 127.609L640.831 126.997C640.989 126.834 641.114 126.641 641.199 126.429C641.285 126.216 641.329 125.989 641.329 125.759C641.329 125.529 641.285 125.301 641.199 125.088C641.114 124.876 640.989 124.683 640.831 124.52L634.838 118.334C634.68 118.171 634.493 118.042 634.288 117.954C634.082 117.866 633.861 117.82 633.638 117.82C633.416 117.82 633.195 117.866 632.989 117.954C632.783 118.042 632.596 118.171 632.439 118.334L631.837 118.946C631.679 119.109 631.554 119.302 631.469 119.514C631.384 119.727 631.34 119.954 631.34 120.184C631.34 120.414 631.384 120.642 631.469 120.855C631.554 121.067 631.679 121.26 631.837 121.423L631.244 122.044L631.176 121.983C631.027 121.827 630.851 121.703 630.656 121.619C630.461 121.535 630.251 121.491 630.04 121.491C629.828 121.491 629.619 121.535 629.424 121.619C629.229 121.703 629.052 121.827 628.904 121.983L620.427 130.733C620.276 130.886 620.156 131.069 620.075 131.27C619.993 131.471 619.951 131.688 619.951 131.906C619.951 132.124 619.993 132.34 620.075 132.541C620.156 132.743 620.276 132.925 620.427 133.078L620.486 133.148L619.884 133.761C619.727 133.598 619.54 133.469 619.334 133.381C619.128 133.293 618.908 133.248 618.685 133.248C618.462 133.248 618.241 133.293 618.035 133.381C617.83 133.469 617.643 133.598 617.485 133.761L616.892 134.382C616.734 134.545 616.609 134.738 616.524 134.95C616.438 135.163 616.395 135.39 616.395 135.62C616.395 135.85 616.438 136.078 616.524 136.291C616.609 136.503 616.734 136.696 616.892 136.859L622.885 143.045C623.043 143.208 623.23 143.337 623.435 143.425C623.641 143.513 623.862 143.559 624.085 143.559C624.307 143.559 624.528 143.513 624.734 143.425C624.94 143.337 625.127 143.208 625.284 143.045L625.878 142.424C626.035 142.262 626.16 142.069 626.246 141.856C626.331 141.644 626.375 141.416 626.375 141.186C626.375 140.956 626.331 140.728 626.246 140.516C626.16 140.303 626.035 140.11 625.878 139.948L626.479 139.335L626.539 139.396C626.842 139.707 627.252 139.881 627.679 139.881C628.106 139.881 628.516 139.707 628.819 139.396L631.913 136.202L635.787 140.201C635.696 140.505 635.687 140.828 635.76 141.136C635.833 141.444 635.986 141.726 636.203 141.952L652.988 159.269C653.145 159.432 653.332 159.561 653.538 159.649C653.744 159.737 653.964 159.782 654.187 159.782C654.41 159.782 654.631 159.737 654.836 159.649C655.042 159.561 655.229 159.432 655.387 159.269L656.548 158.07C656.706 157.908 656.831 157.715 656.916 157.502C657.001 157.29 657.045 157.062 657.045 156.832C657.045 156.602 657.001 156.374 656.916 156.162C656.831 155.949 656.706 155.756 656.548 155.594Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Artwork 64x64_4\">\n<g id=\"Group 384\">\n<path id=\"Vector_306\" d=\"M52.8686 119.407C50.5757 119.407 48.3342 120.087 46.4277 121.361C44.5213 122.634 43.0353 124.445 42.1579 126.563C41.2804 128.682 41.0508 131.013 41.4982 133.262C41.9455 135.51 43.0496 137.576 44.671 139.198C46.2923 140.819 48.358 141.923 50.6069 142.37C52.8557 142.818 55.1867 142.588 57.3051 141.711C59.4235 140.833 61.2341 139.347 62.5079 137.441C63.7818 135.534 64.4618 133.293 64.4618 131C64.4618 127.925 63.2403 124.976 61.0662 122.802C58.892 120.628 55.9433 119.407 52.8686 119.407Z\" fill=\"white\"/>\n<path id=\"Vector_307\" d=\"M52.8437 137.128C53.7583 137.128 54.4998 136.386 54.4998 135.472C54.4998 134.557 53.7583 133.815 52.8437 133.815C51.929 133.815 51.1875 134.557 51.1875 135.472C51.1875 136.386 51.929 137.128 52.8437 137.128Z\" fill=\"#206095\"/>\n<path id=\"Vector_308\" d=\"M54.3588 131.973C54.3524 132.079 54.306 132.178 54.2291 132.25C54.1521 132.322 54.0504 132.362 53.9447 132.362H51.7917C51.6861 132.362 51.5844 132.322 51.5074 132.25C51.4304 132.178 51.384 132.079 51.3777 131.973L50.9636 125.29C50.9602 125.234 50.9684 125.177 50.9877 125.124C51.007 125.071 51.037 125.023 51.0758 124.981C51.1146 124.94 51.1614 124.908 51.2133 124.885C51.2652 124.863 51.3212 124.851 51.3777 124.852H54.3422C54.3987 124.851 54.4547 124.863 54.5066 124.885C54.5585 124.908 54.6053 124.94 54.6441 124.981C54.6829 125.023 54.7129 125.071 54.7322 125.124C54.7515 125.177 54.7597 125.234 54.7563 125.29L54.3588 131.973Z\" fill=\"#206095\"/>\n</g>\n<path id=\"Vector_309\" d=\"M70.9162 146.415H65.3567C61.6706 146.415 58.1354 147.879 55.5289 150.485C52.9223 153.092 51.458 156.627 51.458 160.313H84.815C84.815 158.488 84.4555 156.681 83.757 154.994C83.0585 153.308 82.0347 151.776 80.7441 150.485C79.4535 149.195 77.9213 148.171 76.235 147.473C74.5488 146.774 72.7414 146.415 70.9162 146.415Z\" fill=\"#003C57\"/>\n<path id=\"Vector_310\" d=\"M68.1366 143.635C72.7422 143.635 76.4758 139.901 76.4758 135.295C76.4758 130.69 72.7422 126.956 68.1366 126.956C63.531 126.956 59.7974 130.69 59.7974 135.295C59.7974 139.901 63.531 143.635 68.1366 143.635Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Artwork 64x64_5\">\n<path id=\"Vector_311\" d=\"M194.282 124.463V159.748C194.282 160.108 194.425 160.453 194.68 160.708C194.934 160.962 195.279 161.105 195.639 161.105H220.068C220.428 161.105 220.773 160.962 221.028 160.708C221.282 160.453 221.425 160.108 221.425 159.748V131.248L213.282 123.105H195.639C195.279 123.105 194.934 123.248 194.68 123.503C194.425 123.757 194.282 124.103 194.282 124.463Z\" fill=\"#003C57\"/>\n<path id=\"Vector_312\" d=\"M214.639 131.248H221.425L213.282 123.105V129.891C213.282 130.251 213.425 130.596 213.68 130.851C213.934 131.105 214.279 131.248 214.639 131.248Z\" fill=\"#4D7789\"/>\n<path id=\"Vector_313\" d=\"M213.282 151.266H199.711C199.441 151.266 199.182 151.159 198.991 150.968C198.8 150.777 198.693 150.518 198.693 150.248C198.693 149.978 198.8 149.719 198.991 149.529C199.182 149.338 199.441 149.23 199.711 149.23H213.282C213.552 149.23 213.811 149.338 214.002 149.529C214.193 149.719 214.3 149.978 214.3 150.248C214.3 150.518 214.193 150.777 214.002 150.968C213.811 151.159 213.552 151.266 213.282 151.266Z\" fill=\"white\"/>\n<path id=\"Vector_314\" d=\"M213.282 146.516H199.711C199.441 146.516 199.182 146.409 198.991 146.218C198.8 146.027 198.693 145.768 198.693 145.498C198.693 145.228 198.8 144.969 198.991 144.779C199.182 144.588 199.441 144.48 199.711 144.48H213.282C213.552 144.48 213.811 144.588 214.002 144.779C214.193 144.969 214.3 145.228 214.3 145.498C214.3 145.768 214.193 146.027 214.002 146.218C213.811 146.409 213.552 146.516 213.282 146.516Z\" fill=\"white\"/>\n<path id=\"Vector_315\" d=\"M213.282 141.766H199.711C199.441 141.766 199.182 141.659 198.991 141.468C198.8 141.277 198.693 141.018 198.693 140.748C198.693 140.478 198.8 140.219 198.991 140.029C199.182 139.838 199.441 139.73 199.711 139.73H213.282C213.552 139.73 213.811 139.838 214.002 140.029C214.193 140.219 214.3 140.478 214.3 140.748C214.3 141.018 214.193 141.277 214.002 141.468C213.811 141.659 213.552 141.766 213.282 141.766Z\" fill=\"white\"/>\n<path id=\"Vector_316\" d=\"M207.854 137.016H199.711C199.441 137.016 199.182 136.909 198.991 136.718C198.8 136.527 198.693 136.268 198.693 135.998C198.693 135.728 198.8 135.469 198.991 135.279C199.182 135.088 199.441 134.98 199.711 134.98H207.854C208.124 134.98 208.382 135.088 208.573 135.279C208.764 135.469 208.871 135.728 208.871 135.998C208.871 136.268 208.764 136.527 208.573 136.718C208.382 136.909 208.124 137.016 207.854 137.016Z\" fill=\"white\"/>\n<g id=\"Vector_317\">\n<path d=\"M226.406 140.864L215.067 152.203C214.98 152.284 214.876 152.345 214.761 152.379L212.604 152.963C212.546 152.978 212.486 152.977 212.429 152.962C212.372 152.946 212.32 152.916 212.278 152.874C212.236 152.832 212.206 152.78 212.191 152.723C212.175 152.666 212.175 152.606 212.19 152.549L212.766 150.364C212.794 150.247 212.855 150.14 212.943 150.058L224.248 138.713C224.534 138.427 224.922 138.266 225.327 138.266C225.731 138.266 226.119 138.427 226.406 138.713C226.69 138.999 226.849 139.385 226.849 139.788C226.849 140.191 226.69 140.578 226.406 140.864Z\" fill=\"white\"/>\n<path d=\"M226.406 140.864L215.067 152.203C214.98 152.284 214.876 152.345 214.761 152.379L212.604 152.963C212.546 152.978 212.486 152.977 212.429 152.962C212.372 152.946 212.32 152.916 212.278 152.874C212.236 152.832 212.206 152.78 212.191 152.723C212.175 152.666 212.175 152.606 212.19 152.549L212.766 150.364C212.794 150.247 212.855 150.14 212.943 150.058L224.248 138.713C224.534 138.427 224.922 138.266 225.327 138.266C225.731 138.266 226.119 138.427 226.406 138.713C226.69 138.999 226.849 139.385 226.849 139.788C226.849 140.191 226.69 140.578 226.406 140.864Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n<g id=\"Group 386\">\n<g id=\"Artwork 64x64_6\">\n<path id=\"Vector_318\" d=\"M370 133.813V153.813C370 154.874 369.579 155.891 368.828 156.641C368.078 157.392 367.061 157.813 366 157.813H334C332.939 157.813 331.922 157.392 331.172 156.641C330.421 155.891 330 154.874 330 153.813V129.813C330 128.752 330.421 127.735 331.172 126.985C331.922 126.234 332.939 125.813 334 125.813H344.333C344.863 125.81 345.388 125.912 345.878 126.114C346.367 126.315 346.812 126.612 347.187 126.986L350 129.813H366C367.061 129.813 368.078 130.234 368.828 130.985C369.579 131.735 370 132.752 370 133.813Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Group 385\">\n<path id=\"Vector_319\" d=\"M346.333 145.229H343.667C341.899 145.229 340.203 145.932 338.953 147.182C337.702 148.432 337 150.128 337 151.896H353C353 151.021 352.828 150.154 352.493 149.345C352.157 148.536 351.666 147.801 351.047 147.182C350.428 146.563 349.693 146.072 348.885 145.737C348.076 145.402 347.209 145.229 346.333 145.229Z\" fill=\"white\"/>\n<path id=\"Vector_320\" d=\"M345 143.896C347.209 143.896 349 142.105 349 139.896C349 137.687 347.209 135.896 345 135.896C342.791 135.896 341 137.687 341 139.896C341 142.105 342.791 143.896 345 143.896Z\" fill=\"white\"/>\n</g>\n<g id=\"Union\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M373.813 143.561C374.027 143.363 374.027 143.024 373.813 142.826L366.365 135.947C366.045 135.651 365.526 135.878 365.526 136.314V139.72H359C358.448 139.72 358 140.167 358 140.72V145.667C358 146.219 358.448 146.667 359 146.667H365.526V150.073C365.526 150.509 366.045 150.736 366.365 150.44L373.813 143.561Z\" fill=\"white\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M373.813 143.561C374.027 143.363 374.027 143.024 373.813 142.826L366.365 135.947C366.045 135.651 365.526 135.878 365.526 136.314V139.72H359C358.448 139.72 358 140.167 358 140.72V145.667C358 146.219 358.448 146.667 359 146.667H365.526V150.073C365.526 150.509 366.045 150.736 366.365 150.44L373.813 143.561Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n</g>\n</g>\n</g>\n<g id=\"Title\">\n <rect width=\"700\" height=\"90\" transform=\"translate(0 176.813)\" fill=\"white\"/>\n <rect width=\"700\" height=\"90\" transform=\"translate(0 176.813)\" fill=\"#206095\" fill-opacity=\"0.1\"/>\n <text id=\"Understanding domestic abuse data through the criminal justice system\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"22\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"20\" y=\"212.748\">Understanding domestic abuse data through the</tspan><tspan x=\"20\" y=\"243.548\">criminal justice system</tspan></text>\n </g>\n<g id=\"Chart bit\">\n<g id=\"Police recorded domestic abuse-related incidents and crimes England and Wales, year ending March 2023\">\n<text fill=\"black\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"20\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"20\" y=\"307.572\">Police recorded domestic abuse-related incidents and crimes </tspan></text>\n<text fill=\"black\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"16\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"20\" y=\"336.372\">England and Wales, year ending March 2023</tspan></text>\n</g>\n<g id=\"Overall chart\">\n<line id=\"Line 113\" x1=\"114.316\" y1=\"367.313\" x2=\"114.316\" y2=\"642.653\" stroke=\"#B3B3B3\" stroke-width=\"1.5\"/>\n<line id=\"Line 114\" x1=\"223.626\" y1=\"367.313\" x2=\"223.626\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 115\" x1=\"328.789\" y1=\"367.313\" x2=\"328.789\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 116\" x1=\"433.952\" y1=\"367.313\" x2=\"433.952\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 117\" x1=\"539.115\" y1=\"367.313\" x2=\"539.115\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 118\" x1=\"644.278\" y1=\"367.313\" x2=\"644.278\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<path id=\"Vector_321\" d=\"M617.068 376.437L114.5 376.438L114.5 414.438L617.068 414.437L617.068 376.437Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_322\" d=\"M130.328 484.739L114.5 484.739L114.5 522.739L130.328 522.739L130.328 484.739Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_323\" d=\"M125.248 538.89L114.5 538.89L114.5 576.89L125.248 576.89L125.248 538.89Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_324\" d=\"M124.743 594.022L114.5 594.022L114.5 632.446L124.743 632.446L124.743 594.022Z\" fill=\"#E2E2E3\"/>\n<text id=\"500,000\" transform=\"translate(187.437 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"9.93799\" y=\"14.4312\">500,000</tspan></text>\n<text id=\"0\" transform=\"translate(88.77 645.136)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"21.7058\" y=\"14.4312\">0</tspan></text>\n<text id=\"1,000,000\" transform=\"translate(294.227 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"4.21631\" y=\"14.4312\">1,000,000</tspan></text>\n<text id=\"1,500,000\" transform=\"translate(397.763 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"4.21631\" y=\"14.4312\">1,500,000</tspan></text>\n<text id=\"2,000,000\" transform=\"translate(502.926 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"4.21631\" y=\"14.4312\">2,000,000</tspan></text>\n<text id=\"2,500,000\" transform=\"translate(608.622 646.284)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"4.21631\" y=\"14.4312\">2,500,000</tspan></text>\n<!-- <path id=\"Vector_325\" d=\"M308.605 430.588L114.5 430.588L114.5 468.588L308.605 468.588L308.605 430.588Z\" fill=\"#206095\"/> -->\n<rect id=\"Bar_2\" x={114} width={(644-114)*((1377000+751000)/2500000)} y={430-54} height={38} fill=\"#E2E2E3\"/>\n\n<rect id=\"Bar_3\" x={114} width={(644-114)*(889918/2500000)} y={430} height={38} fill=\"#206095\"/>\n<rect id=\"Bar_4\" x={114+((644-114)*(889918/2500000))} width={(644-114)*(536949/2500000)} y={430} height={38} fill=\"#206095\" fill-opacity=\"0.1\" stroke=\"#206095\" stroke-dasharray=\"4 7\"/>\n\n<g id=\"Horizontal label\">\n<text id=\"Estimated victims\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"33.8125\" y=\"392.269\">Estimated </tspan><tspan x=\"53.5684\" y=\"409.069\">victims</tspan></text>\n<text id=\"Recorded by police\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"33.2656\" y=\"446.269\">Recorded </tspan><tspan x=\"36.9707\" y=\"463.069\">by police</tspan></text>\n<text id=\"Suspects referred\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"41.2773\" y=\"500.269\">Suspects </tspan><tspan x=\"44.9414\" y=\"517.069\">referred</tspan></text>\n<text id=\"Suspects charged\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"36.7383\" y=\"554.269\">Suspects </tspan><tspan x=\"37.6406\" y=\"571.069\">charged</tspan></text>\n<text id=\"Offenders convicted\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"33.2793\" y=\"608.269\">Offenders </tspan><tspan x=\"36.6426\" y=\"625.069\">convicted</tspan></text>\n</g>\n<g id=\"Vector_326\">\n<mask id=\"path-375-inside-1_1849_10287\" fill=\"white\">\n<!-- <path d=\"M435.646 430.588L308.621 430.588L308.621 468.588L435.646 468.588L435.646 430.588Z\"/> -->\n</mask>\n<!-- <path d=\"M435.646 430.588L308.621 430.588L308.621 468.588L435.646 468.588L435.646 430.588Z\" fill=\"white\"/> -->\n<!-- <path d=\"M435.646 430.588L308.621 430.588L308.621 468.588L435.646 468.588L435.646 430.588Z\" fill=\"#206095\" fill-opacity=\"0.1\"/> -->\n<!-- <path d=\"M435.646 430.588L308.621 430.588L308.621 468.588L435.646 468.588L435.646 430.588Z\" stroke=\"#206095\" stroke-width=\"4\" stroke-linecap=\"square\" stroke-dasharray=\"4 7\" mask=\"url(#path-375-inside-1_1849_10287)\"/> -->\n</g>\n<g id=\"Crimes 910,980\">\n<text transform=\"translate(225.066 496.532)\" fill=\"#206095\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"0\" y=\"32.4312\">889,918</tspan></text>\n<text transform=\"translate(225.066 496.532)\" fill=\"#206095\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"0\" y=\"14.4312\">Crimes </tspan></text>\n</g>\n<g id=\"Incidents 589,389\">\n<text transform=\"translate(347.5 494.693)\" fill=\"#206095\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"0\" y=\"32.4312\">563,949</tspan></text>\n<text transform=\"translate(347.5 494.693)\" fill=\"#206095\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"0\" y=\"14.4312\">Incidents </tspan></text>\n</g>\n<path id=\"Vector 7\" d=\"M247.075 491.89C247.108 492.299 247.471 492.594 247.886 492.549C248.301 492.503 248.611 492.134 248.578 491.725L247.075 491.89ZM242.608 470.402C242.206 470.308 241.793 470.557 241.685 470.959L239.932 477.498C239.824 477.899 240.063 478.3 240.465 478.394C240.867 478.488 241.281 478.239 241.388 477.837L242.947 472.025L248.773 473.384C249.175 473.478 249.588 473.229 249.696 472.828C249.803 472.426 249.564 472.025 249.162 471.931L242.608 470.402ZM248.578 491.725C247.986 484.353 247.579 478.32 243.066 470.735L241.761 471.522C246.088 478.794 246.484 484.521 247.075 491.89L248.578 491.725Z\" fill=\"#707071\"/>\n<path id=\"Vector 8\" d=\"M376.795 491.89C376.828 492.299 377.191 492.594 377.606 492.549C378.021 492.503 378.331 492.134 378.298 491.725L376.795 491.89ZM372.328 470.402C371.926 470.308 371.513 470.557 371.405 470.959L369.652 477.498C369.544 477.899 369.783 478.3 370.185 478.394C370.587 478.488 371 478.239 371.108 477.837L372.667 472.025L378.492 473.384C378.895 473.478 379.308 473.229 379.415 472.828C379.523 472.426 379.284 472.025 378.882 471.931L372.328 470.402ZM378.298 491.725C377.706 484.353 377.299 478.32 372.786 470.735L371.481 471.522C375.807 478.794 376.203 484.521 376.795 491.89L378.298 491.725Z\" fill=\"#707071\"/>\n</g>\n\n </g>\n \n \n </svg>\n <p class=\"source\">\n Source: Police recorded crime from the Home Office </p> \n <div class=\"commentary\">\n <b>What did police records show? </b>\n <br><br>\n Domestic abuse-related incidents cover reports where, after initial investigation, the police have concluded that no notifiable crime was committed. Incidents of domestic abuse that result in a crime being recorded by the police are included in the data on domestic abuse-related crimes. \n <br><br>\n The police recorded 889,918 domestic abuse-related crimes in England and Wales (excluding Devon and Cornwall Police). This was a similar number to the previous year (889,311). \n <br><br>\n Domestic abuse-related crimes represented 16.2% of all offences recorded by the police in the last year. \n <br><br>\n As in previous years, women were disproportionately represented among victims of domestic abuse-related crimes, with 73.5% of all victims being female in the last year. \n <br><br>\n Note: Data for Devon and Cornwall Police Force Area have not been included in the year ending March 2023 because of issues with their supply of data following the implementation of new force IT systems.\n \n <br><br>\n <button class=\"button\" type=\"button\" on:click={()=>goTo.set(\"Four\")}>Next ▶</button>\n <button class=\"button grey\" type=\"button\" on:click={()=>goTo.set(\"Two\")}>Back</button></div>\n <style>\n .button{\n background-color:rgb(15, 130, 67);\n width:97px;\n height:40px;\n color:white;\n font-weight:bold;\n font-size:16px;\n border:none;\n }\n .grey{\n background-color:#666;\n }\n .source{\n color:grey\n }\n .commentary{\n font-weight:400;\n font-size:18px;\n background-color:rgba(32, 96, 149,0.1);\n padding:20px;\n }\n </style>\n","<script>\n export let goTo=null\n $: console.log(\"goto\",$goTo)\n </script>\n\n<svg width=\"700\" viewBox=\"0 0 700 700\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<g id=\"Interactive\">\n<g id=\"Illustration headers\">\n<g id=\"Illustration\">\n<g id=\"Illo\">\n<g id=\"Ellipse 1\">\n<path d=\"M700 120.569C500.303 120.569 178.452 120.569 0 120.569C0 101.933 125.256 2.20508 350 2.20508C570.463 2.20508 700 101.933 700 120.569Z\" fill=\"white\"/>\n<path d=\"M700 120.569C500.303 120.569 178.452 120.569 0 120.569C0 101.933 125.256 2.20508 350 2.20508C570.463 2.20508 700 101.933 700 120.569Z\" fill=\"#206095\" fill-opacity=\"0.05\"/>\n</g>\n<g id=\"Background buildings\">\n<path id=\"Vector\" d=\"M487.962 87.3798L480.563 81.3013C480.06 80.8885 479.372 80.8885 478.868 81.3013L471.469 87.3798V145.715H487.962V87.3798Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_2\" d=\"M460.082 91.2017H471.74V145.027H460.082V91.2017Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_3\" d=\"M462.433 84.4312H467.694V93.195H462.433V84.4312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_4\" d=\"M487.938 98.2393H500.166V142.841H487.938V98.2393Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_5\" d=\"M500.162 88.8657H511.25V145.255H500.162V88.8657Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_6\" d=\"M510.947 80.605H519.632V144.567H510.947V80.605Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_7\" d=\"M532.469 91.6416H542.983V143.132H532.469V91.6416Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_8\" d=\"M542.983 97.7549H552.081V141.098H542.983V97.7549Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_9\" d=\"M532.47 101.923L519.495 95.8364V141.122H532.47V101.923Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_2\">\n<path id=\"Vector_10\" d=\"M179.123 68.9979L169.785 59.9251C169.148 59.3082 168.283 59.3082 167.646 59.9251L158.307 68.9979V156.036H179.119V68.9979H179.123Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_11\" d=\"M143.934 155.001H158.649V74.6915H143.934V155.001Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_12\" d=\"M146.908 77.6709H153.545V64.5964H146.908V77.6709Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_13\" d=\"M179.092 151.752H194.523V74.4409H179.092V151.752Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_14\" d=\"M194.511 155.348H208.505V71.2133H194.511V155.348Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_15\" d=\"M217.438 154.32H228.397V58.891H217.438V154.32Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_16\" d=\"M65.4647 143.936H108.021V97.7379H65.4647V143.936Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_17\" d=\"M125.683 142.646H140.152V94.0413H125.683V142.646Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_18\" d=\"M140.153 144.301H152.671V93.9401H140.153V144.301Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_19\" d=\"M136.687 98.7855L107.828 91.7114V144.328H136.687V98.7855Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_20\" d=\"M179.123 48.2058L169.785 43.3925C169.148 43.0651 168.283 43.0651 167.646 43.3925L158.307 48.2058V94.3816H179.119V48.2058H179.123Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_21\" d=\"M143.934 93.833H158.649V51.2267H143.934V93.833Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_22\" d=\"M146.908 52.8071H153.545V45.8708H146.908V52.8071Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_23\" d=\"M179.092 92.1094H194.523V56.8041H179.092V92.1094Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_24\" d=\"M208.506 118.488H233.453V41.7437H208.506V118.488Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_25\" d=\"M79.4428 111.917H108.021V77.9923H79.4428V111.917Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_26\" d=\"M125.683 135.839H146.908L146.908 61.4923H125.683L125.683 135.839Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_27\" d=\"M140.153 139.21H152.671L152.671 53.1164H140.153V139.21Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_28\" d=\"M125.683 72.2887L107.828 64.8125V120.42H125.683V72.2887Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_3\">\n<path id=\"Vector_29\" d=\"M261.115 61.1229L270.454 51.2292C271.091 50.5564 271.956 50.5564 272.593 51.2292L281.932 61.1229V156.036H261.12V61.1229H261.115Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_30\" d=\"M296.304 154.907H281.589V67.3315H296.304V154.907Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_31\" d=\"M293.331 70.5806H286.693V56.3232H293.331V70.5806Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_32\" d=\"M261.146 151.364H245.715V67.0583H261.146V151.364Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_33\" d=\"M245.728 155.286H231.733V63.5389H245.728V155.286Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_34\" d=\"M222.801 154.165H211.842V50.1015H222.801V154.165Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_35\" d=\"M374.774 138.215H332.218V92.4634H374.774V138.215Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_36\" d=\"M314.555 141.435H300.086V88.4327H314.555V141.435Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_37\" d=\"M300.086 143.239H287.567V88.322H300.086V143.239Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_38\" d=\"M303.552 93.6058L332.411 85.8916V143.269H303.552V93.6058Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_39\" d=\"M261.115 38.4497L270.454 33.2008C271.091 32.8439 271.956 32.8439 272.593 33.2008L281.932 38.4497V88.8034H261.12V38.4497H261.115Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_40\" d=\"M296.304 88.2051H281.589V41.7438H296.304V88.2051Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_41\" d=\"M293.331 43.4673H286.693V35.9034H293.331V43.4673Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_42\" d=\"M261.146 86.3252H245.715V47.8256H261.146V86.3252Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_43\" d=\"M231.733 143.132H206.786L206.786 31.4027H231.733L231.733 143.132Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_44\" d=\"M360.796 107.925H332.218V70.9312H360.796V107.925Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_45\" d=\"M314.555 134.012H293.331V52.9384H314.555V134.012Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_46\" d=\"M300.086 137.688H287.567V43.8044H300.086V137.688Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_47\" d=\"M314.555 64.7117L332.411 56.5591V117.197H314.555V64.7117Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_4\">\n<path id=\"Vector_48\" d=\"M396.322 43.9472L406.674 33.1907C407.38 32.4592 408.339 32.4592 409.045 33.1907L419.398 43.9472V147.137H396.327V43.9472H396.322Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_49\" d=\"M435.325 48.7314H419.013V147.137H435.325V48.7314Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_50\" d=\"M432.033 38.0664H424.676V51.8795H432.033V38.0664Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_51\" d=\"M396.356 59.8315H379.25V147.137H396.356V59.8315Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_52\" d=\"M379.259 45.0566H363.746V147.137H379.259V45.0566Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_53\" d=\"M364.165 32.0312H352.016V147.137H364.165V32.0312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_54\" d=\"M334.058 68.2846L352.211 56.0444V147.137H334.058V68.2846Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_55\" d=\"M455.562 65.9717H439.522V147.137H455.562V65.9717Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_56\" d=\"M439.523 78.8105H425.645V147.137H439.523V78.8105Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_5\">\n<path id=\"Vector_57\" d=\"M406.323 26.2429L415.451 19.0517C416.072 18.5602 416.92 18.5602 417.541 19.0517L426.669 26.2429V95.2607H406.323V26.2429Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_58\" d=\"M440.71 30.7603H426.33V94.4428H440.71V30.7603Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_59\" d=\"M437.81 22.7515H431.32V33.1195H437.81V22.7515Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_60\" d=\"M406.352 39.0913H391.268V91.8632H406.352V39.0913Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_61\" d=\"M391.273 28H377.595V94.7178H391.273V28Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_62\" d=\"M377.968 18.2261H367.254V93.9004H377.968V18.2261Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_63\" d=\"M351.419 31.2827H338.449V92.2012H351.419V31.2827Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_64\" d=\"M338.449 38.5176H327.226V89.8033H338.449V38.5176Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_65\" d=\"M351.418 43.4476L367.424 36.2485V89.8264H351.418V43.4476Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_6\">\n<path id=\"Vector_66\" d=\"M484.96 43.5227L474.547 36.3315C473.839 35.84 472.871 35.84 472.162 36.3315L461.749 43.5227V112.541H484.96V43.5227Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_67\" d=\"M445.731 48.04H462.137V149.435H445.731V48.04Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_68\" d=\"M449.04 40.0312H456.443V50.3993H449.04V40.0312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_69\" d=\"M484.322 48.8135H502.53V108.813H484.322V48.8135Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_70\" d=\"M502.13 45.2803H517.733V111.998H502.13V45.2803Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_71\" d=\"M517.307 35.5059H529.529V111.18H517.307V35.5059Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_72\" d=\"M547.595 48.5625H562.39V109.481H547.595V48.5625Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_73\" d=\"M562.39 55.7974H575.194V107.083H562.39V55.7974Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_74\" d=\"M547.571 46.2191L529.363 36.8135V106.813H547.571V46.2191Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_75\" d=\"M589.381 82.1595L578.968 76.8057C578.259 76.4398 577.291 76.4398 576.583 76.8057L566.17 82.1595V133.543H589.381V82.1595Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_76\" d=\"M588.742 88.873H606.95V133.543H588.742V88.873Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_77\" d=\"M606.55 83.8721H622.153V133.544H606.55V83.8721Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_78\" d=\"M621.728 77.2036H633.95V133.543H621.728V77.2036Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_79\" d=\"M651.991 88.4307L633.783 81.4282V133.543H651.991V88.4307Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Ground\">\n<g id=\"Vector_80\">\n<path d=\"M700 177.896H0V135.896H700V177.896Z\" fill=\"white\"/>\n<path d=\"M700 177.896H0V135.896H700V177.896Z\" fill=\"#206095\" fill-opacity=\"0.1\"/>\n</g>\n<g id=\"Vector_81\">\n<path d=\"M700 135.896H0V120.569H700V135.896Z\" fill=\"white\"/>\n<path d=\"M700 135.896H0V120.569H700V135.896Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n</g>\n<g id=\"Bush\">\n<g id=\"Vector_82\">\n<path d=\"M47.7682 112.919C52.1167 115.137 54.8257 116.218 55.9659 117.354C57.11 118.491 59.8111 121.801 58.266 124.188C56.7169 126.574 56.2057 128.442 51.8533 128.245C47.5008 128.049 45.7355 127.432 42.2126 127.754C38.6898 128.076 35.5759 126.496 34.8485 125.737C34.1211 124.978 31.9351 121.459 34.8288 118.345C37.7226 115.227 43.9269 110.961 47.7682 112.919Z\" fill=\"white\"/>\n<path d=\"M47.7682 112.919C52.1167 115.137 54.8257 116.218 55.9659 117.354C57.11 118.491 59.8111 121.801 58.266 124.188C56.7169 126.574 56.2057 128.442 51.8533 128.245C47.5008 128.049 45.7355 127.432 42.2126 127.754C38.6898 128.076 35.5759 126.496 34.8485 125.737C34.1211 124.978 31.9351 121.459 34.8288 118.345C37.7226 115.227 43.9269 110.961 47.7682 112.919Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_83\">\n<path d=\"M40.9347 110.729C37.9347 109.058 34.6399 108.972 30.3583 111.645C26.0766 114.323 25.1723 116.1 24.9128 117.283C24.6572 118.467 22.7071 119.214 23.2339 121.581C23.7608 123.948 28.8013 126.448 32.0686 126.735C35.3359 127.022 36.02 126.723 39.9006 126.122C43.7812 125.52 46.8991 124.624 48.3185 121.659C49.7418 118.695 44.1076 112.494 40.9307 110.729H40.9347Z\" fill=\"white\"/>\n<path d=\"M40.9347 110.729C37.9347 109.058 34.6399 108.972 30.3583 111.645C26.0766 114.323 25.1723 116.1 24.9128 117.283C24.6572 118.467 22.7071 119.214 23.2339 121.581C23.7608 123.948 28.8013 126.448 32.0686 126.735C35.3359 127.022 36.02 126.723 39.9006 126.122C43.7812 125.52 46.8991 124.624 48.3185 121.659C49.7418 118.695 44.1076 112.494 40.9307 110.729H40.9347Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_84\">\n<path d=\"M58.2209 114.583C64.9717 116.792 69.1786 117.87 70.9558 119.006C72.729 120.142 76.9242 123.445 74.518 125.835C72.1078 128.226 71.3097 130.093 64.547 129.905C57.7844 129.716 55.044 129.103 49.571 129.429C44.098 129.755 39.262 128.182 38.1336 127.424C37.0052 126.665 33.6121 123.15 38.1139 120.032C42.6158 116.91 52.2643 112.636 58.2287 114.59L58.2209 114.583Z\" fill=\"white\"/>\n<path d=\"M58.2209 114.583C64.9717 116.792 69.1786 117.87 70.9558 119.006C72.729 120.142 76.9242 123.445 74.518 125.835C72.1078 128.226 71.3097 130.093 64.547 129.905C57.7844 129.716 55.044 129.103 49.571 129.429C44.098 129.755 39.262 128.182 38.1336 127.424C37.0052 126.665 33.6121 123.15 38.1139 120.032C42.6158 116.91 52.2643 112.636 58.2287 114.59L58.2209 114.583Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_85\">\n<path d=\"M21.0752 124.149C19.3491 123.3 17.454 123.248 14.9849 124.597C12.5158 125.946 11.9928 126.846 11.8434 127.444C11.694 128.041 10.5696 128.419 10.8723 129.614C11.1711 130.813 14.0688 132.087 15.9521 132.236C17.8354 132.386 18.2286 132.236 20.4618 131.938C22.6951 131.639 24.4919 131.187 25.3175 129.689C26.1432 128.191 22.9074 125.045 21.083 124.145L21.0752 124.149Z\" fill=\"white\"/>\n<path d=\"M21.0752 124.149C19.3491 123.3 17.454 123.248 14.9849 124.597C12.5158 125.946 11.9928 126.846 11.8434 127.444C11.694 128.041 10.5696 128.419 10.8723 129.614C11.1711 130.813 14.0688 132.087 15.9521 132.236C17.8354 132.386 18.2286 132.236 20.4618 131.938C22.6951 131.639 24.4919 131.187 25.3175 129.689C26.1432 128.191 22.9074 125.045 21.083 124.145L21.0752 124.149Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_86\">\n<path d=\"M14.1043 125.642C12.7361 124.97 11.2342 124.931 9.27616 126C7.31815 127.07 6.90531 127.781 6.78343 128.257C6.66547 128.733 5.7769 129.028 6.0128 129.979C6.24871 130.931 8.54878 131.937 10.0389 132.059C11.529 132.177 11.8436 132.059 13.6129 131.823C15.3861 131.587 16.8094 131.229 17.4621 130.042C18.1147 128.855 15.5512 126.362 14.1043 125.65V125.642Z\" fill=\"white\"/>\n<path d=\"M14.1043 125.642C12.7361 124.97 11.2342 124.931 9.27616 126C7.31815 127.07 6.90531 127.781 6.78343 128.257C6.66547 128.733 5.7769 129.028 6.0128 129.979C6.24871 130.931 8.54878 131.937 10.0389 132.059C11.529 132.177 11.8436 132.059 13.6129 131.823C15.3861 131.587 16.8094 131.229 17.4621 130.042C18.1147 128.855 15.5512 126.362 14.1043 125.65V125.642Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_87\">\n<path d=\"M18.5986 121.176C16.8726 120.327 14.9775 120.276 12.5083 121.624C10.0392 122.973 9.51629 123.873 9.36688 124.471C9.21747 125.069 8.09299 125.446 8.39574 126.641C8.69455 127.841 8.91473 129.626 10.798 129.775C12.6813 129.924 15.752 129.264 17.9853 128.965C20.2185 128.666 22.0153 128.214 22.841 126.716C23.6627 125.218 20.4308 122.073 18.6065 121.172L18.5986 121.176Z\" fill=\"white\"/>\n<path d=\"M18.5986 121.176C16.8726 120.327 14.9775 120.276 12.5083 121.624C10.0392 122.973 9.51629 123.873 9.36688 124.471C9.21747 125.069 8.09299 125.446 8.39574 126.641C8.69455 127.841 8.91473 129.626 10.798 129.775C12.6813 129.924 15.752 129.264 17.9853 128.965C20.2185 128.666 22.0153 128.214 22.841 126.716C23.6627 125.218 20.4308 122.073 18.6065 121.172L18.5986 121.176Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Police station\" clip-path=\"url(#clip0_1849_10311)\">\n<g id=\"Vector_88\">\n<path d=\"M476.484 47.2856H307.516V127.819H476.484V47.2856Z\" fill=\"white\"/>\n<path d=\"M476.484 47.2856H307.516V127.819H476.484V47.2856Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<path id=\"Vector_89\" d=\"M477 45.1685H307V47.2905H477V45.1685Z\" fill=\"#003C57\"/>\n<g id=\"Vector_90\">\n<path d=\"M414.975 39.9351H369.025V129.808H414.975V39.9351Z\" fill=\"white\"/>\n<path d=\"M414.975 39.9351H369.025V129.808H414.975V39.9351Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_91\" d=\"M415.614 37.813H368.391V39.935H415.614V37.813Z\" fill=\"#003C57\"/>\n<path id=\"Vector_92\" d=\"M363.839 52.5688H311.744V61.372H363.839V52.5688Z\" fill=\"white\"/>\n<path id=\"Vector_93\" d=\"M363.839 66.1133H311.744V75.2069H363.839V66.1133Z\" fill=\"white\"/>\n<path id=\"Vector_94\" d=\"M363.957 79.7314H311.744V88.5346H363.957V79.7314Z\" fill=\"white\"/>\n<path id=\"Vector_95\" d=\"M351.913 93.3105H311.744V102.114H351.913V93.3105Z\" fill=\"white\"/>\n<path id=\"Vector_96\" d=\"M351.913 106.274H311.744V115.077H351.913V106.274Z\" fill=\"white\"/>\n<path id=\"Vector_97\" d=\"M420.206 61.377L472.3 61.377V52.5738L420.206 52.5738V61.377Z\" fill=\"white\"/>\n<path id=\"Vector_98\" d=\"M420.206 75.2119H472.3V66.1183H420.206V75.2119Z\" fill=\"white\"/>\n<path id=\"Vector_99\" d=\"M420.083 88.5347H472.295V79.7315H420.083V88.5347Z\" fill=\"white\"/>\n<path id=\"Vector_100\" d=\"M432.127 102.119H472.295V93.3155H432.127V102.119Z\" fill=\"white\"/>\n<path id=\"Vector_101\" d=\"M432.127 115.072H472.295V106.269H432.127V115.072Z\" fill=\"white\"/>\n<g id=\"Vector_102\">\n<path d=\"M426.719 97.978H357.276V129.808H426.719V97.978Z\" fill=\"white\"/>\n<path d=\"M426.719 97.978H357.276V129.808H426.719V97.978Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<path id=\"Vector_103\" d=\"M428.342 95.856H355.659V97.978H428.342V95.856Z\" fill=\"#003C57\"/>\n<path id=\"Vector_104\" d=\"M374.044 111.493H376.399C381.359 111.493 385.385 115.525 385.385 120.493V129.813H365.053V120.493C365.053 115.525 369.079 111.493 374.039 111.493H374.044Z\" fill=\"white\"/>\n<g id=\"Vector_105\">\n<path d=\"M375.367 111.443H375.082V129.537H375.367V111.443Z\" fill=\"white\"/>\n<path d=\"M375.367 111.443H375.082V129.537H375.367V111.443Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_106\">\n<path d=\"M374.418 120.734C374.418 120.601 374.31 120.493 374.177 120.493C374.044 120.493 373.936 120.601 373.936 120.734V122.162C373.936 122.295 374.044 122.403 374.177 122.403C374.31 122.403 374.418 122.295 374.418 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M374.418 120.734C374.418 120.601 374.31 120.493 374.177 120.493C374.044 120.493 373.936 120.601 373.936 120.734V122.162C373.936 122.295 374.044 122.403 374.177 122.403C374.31 122.403 374.418 122.295 374.418 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_107\">\n<path d=\"M376.542 120.734C376.542 120.601 376.434 120.493 376.301 120.493C376.168 120.493 376.06 120.601 376.06 120.734V122.162C376.06 122.295 376.168 122.403 376.301 122.403C376.434 122.403 376.542 122.295 376.542 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M376.542 120.734C376.542 120.601 376.434 120.493 376.301 120.493C376.168 120.493 376.06 120.601 376.06 120.734V122.162C376.06 122.295 376.168 122.403 376.301 122.403C376.434 122.403 376.542 122.295 376.542 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_108\" d=\"M406.436 111.493H408.79C413.751 111.493 417.777 115.525 417.777 120.493V129.813H397.444V120.493C397.444 115.525 401.471 111.493 406.431 111.493H406.436Z\" fill=\"white\"/>\n<g id=\"Vector_109\">\n<path d=\"M407.758 111.443H407.473V129.537H407.758V111.443Z\" fill=\"white\"/>\n<path d=\"M407.758 111.443H407.473V129.537H407.758V111.443Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_110\">\n<path d=\"M406.809 120.734C406.809 120.601 406.702 120.493 406.569 120.493C406.435 120.493 406.328 120.601 406.328 120.734V122.162C406.328 122.295 406.435 122.403 406.569 122.403C406.702 122.403 406.809 122.295 406.809 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M406.809 120.734C406.809 120.601 406.702 120.493 406.569 120.493C406.435 120.493 406.328 120.601 406.328 120.734V122.162C406.328 122.295 406.435 122.403 406.569 122.403C406.702 122.403 406.809 122.295 406.809 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_111\">\n<path d=\"M408.938 120.734C408.938 120.601 408.83 120.493 408.697 120.493C408.564 120.493 408.456 120.601 408.456 120.734V122.162C408.456 122.295 408.564 122.403 408.697 122.403C408.83 122.403 408.938 122.295 408.938 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M408.938 120.734C408.938 120.601 408.83 120.493 408.697 120.493C408.564 120.493 408.456 120.601 408.456 120.734V122.162C408.456 122.295 408.564 122.403 408.697 122.403C408.83 122.403 408.938 122.295 408.938 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_112\">\n<path d=\"M418.293 100.285H365.708V109.528H418.293V100.285Z\" fill=\"white\"/>\n<path d=\"M418.293 100.285H365.708V109.528H418.293V100.285Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_113\">\n<path d=\"M411.283 71.5879H372.525V80.5289H411.283V71.5879Z\" fill=\"white\"/>\n<path d=\"M411.283 71.5879H372.525V80.5289H411.283V71.5879Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_114\">\n<path d=\"M411.283 84.8418H372.525V93.7828H411.283V84.8418Z\" fill=\"white\"/>\n<path d=\"M411.283 84.8418H372.525V93.7828H411.283V84.8418Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_115\">\n<path d=\"M411.283 58.3291H372.525V67.2701H411.283V58.3291Z\" fill=\"white\"/>\n<path d=\"M411.283 58.3291H372.525V67.2701H411.283V58.3291Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_116\">\n<path d=\"M411.283 45.1685H372.525V54.1095H411.283V45.1685Z\" fill=\"white\"/>\n<path d=\"M411.283 45.1685H372.525V54.1095H411.283V45.1685Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_117\">\n<path d=\"M392.327 41.5942H391.668V95.8558H392.327V41.5942Z\" fill=\"white\"/>\n<path d=\"M392.327 41.5942H391.668V95.8558H392.327V41.5942Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Group 39\">\n<g id=\"Vector_118\">\n<path d=\"M324.619 50.7915H323.96V118.642H324.619V50.7915Z\" fill=\"white\"/>\n<path d=\"M324.619 50.7915H323.96V118.642H324.619V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_119\">\n<path d=\"M339.082 50.7915H338.423V118.642H339.082V50.7915Z\" fill=\"white\"/>\n<path d=\"M339.082 50.7915H338.423V118.642H339.082V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_120\">\n<path d=\"M352.276 50.7915H351.617V118.642H352.276V50.7915Z\" fill=\"white\"/>\n<path d=\"M352.276 50.7915H351.617V118.642H352.276V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_121\">\n<path d=\"M432.456 50.7915H431.797V118.642H432.456V50.7915Z\" fill=\"white\"/>\n<path d=\"M432.456 50.7915H431.797V118.642H432.456V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_122\">\n<path d=\"M446.919 50.7915H446.26V118.642H446.919V50.7915Z\" fill=\"white\"/>\n<path d=\"M446.919 50.7915H446.26V118.642H446.919V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_123\">\n<path d=\"M460.113 50.7915H459.455V118.642H460.113V50.7915Z\" fill=\"white\"/>\n<path d=\"M460.113 50.7915H459.455V118.642H460.113V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n</g>\n<g id=\"POLICE\">\n<path d=\"M379.974 104.813H380.382C380.763 104.813 381.048 104.737 381.238 104.586C381.427 104.432 381.522 104.209 381.522 103.918C381.522 103.624 381.442 103.406 381.282 103.266C381.124 103.126 380.877 103.056 380.538 103.056H379.974V104.813ZM382.773 103.873C382.773 104.51 382.576 104.997 382.182 105.335C381.79 105.672 381.231 105.841 380.506 105.841H379.974V107.946H378.734V102.027H380.602C381.311 102.027 381.85 102.182 382.218 102.493C382.588 102.8 382.773 103.261 382.773 103.873Z\" fill=\"white\"/>\n<path d=\"M389.184 104.979C389.184 105.958 388.944 106.711 388.464 107.238C387.984 107.764 387.296 108.027 386.4 108.027C385.505 108.027 384.817 107.764 384.337 107.238C383.857 106.711 383.617 105.956 383.617 104.97C383.617 103.985 383.857 103.234 384.337 102.715C384.82 102.195 385.51 101.934 386.408 101.934C387.307 101.934 387.993 102.196 388.468 102.719C388.945 103.243 389.184 103.996 389.184 104.979ZM384.917 104.979C384.917 105.64 385.041 106.138 385.289 106.472C385.537 106.807 385.907 106.974 386.4 106.974C387.39 106.974 387.884 106.309 387.884 104.979C387.884 103.645 387.392 102.979 386.408 102.979C385.915 102.979 385.543 103.147 385.293 103.485C385.042 103.819 384.917 104.317 384.917 104.979Z\" fill=\"white\"/>\n<path d=\"M390.396 107.946V102.027H391.635V106.91H394.007V107.946H390.396Z\" fill=\"white\"/>\n<path d=\"M395.026 107.946V102.027H396.266V107.946H395.026Z\" fill=\"white\"/>\n<path d=\"M400.221 102.987C399.755 102.987 399.393 103.165 399.137 103.521C398.881 103.875 398.753 104.369 398.753 105.003C398.753 106.323 399.243 106.983 400.221 106.983C400.632 106.983 401.129 106.879 401.713 106.671V107.723C401.233 107.926 400.697 108.027 400.105 108.027C399.255 108.027 398.604 107.767 398.154 107.246C397.703 106.722 397.478 105.972 397.478 104.995C397.478 104.379 397.588 103.841 397.81 103.379C398.031 102.915 398.348 102.56 398.761 102.315C399.177 102.066 399.664 101.942 400.221 101.942C400.789 101.942 401.359 102.081 401.933 102.359L401.533 103.379C401.314 103.274 401.094 103.182 400.873 103.104C400.652 103.026 400.434 102.987 400.221 102.987Z\" fill=\"white\"/>\n<path d=\"M406.328 107.946H402.96V102.027H406.328V103.056H404.2V104.355H406.18V105.383H404.2V106.91H406.328V107.946Z\" fill=\"white\"/>\n</g>\n</g>\n<g id=\"Courts\">\n<g id=\"Building\">\n<g id=\"Rectangle 1\">\n<rect x=\"491.833\" y=\"68.813\" width=\"150\" height=\"56\" fill=\"white\"/>\n<rect x=\"491.833\" y=\"68.813\" width=\"150\" height=\"56\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Rectangle 3\">\n<rect x=\"488.833\" y=\"120.942\" width=\"154.713\" height=\"6.67484\" fill=\"white\"/>\n<rect x=\"488.833\" y=\"120.942\" width=\"154.713\" height=\"6.67484\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 2\">\n<path d=\"M497.297 57.813H636.368L641.833 68.813H491.833L497.297 57.813Z\" fill=\"white\"/>\n<path d=\"M497.297 57.813H636.368L641.833 68.813H491.833L497.297 57.813Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_124\">\n<path d=\"M551.731 70.3457H545.786V70.984C546.059 71.0995 546.254 71.367 546.254 71.6831V71.7317C546.254 72.1512 545.914 72.4916 545.494 72.4916H545.391C545.616 72.5463 545.786 72.747 545.786 72.9901V73.0205C545.786 73.3062 545.555 73.5312 545.275 73.5312H544.862V113.896H545.275C545.561 113.896 545.786 114.127 545.786 114.407V114.437C545.786 114.681 545.616 114.881 545.391 114.936H545.415C545.877 114.936 546.254 115.313 546.254 115.775V118.583H551.269V115.775C551.269 115.313 551.646 114.936 552.108 114.936H552.132C551.908 114.881 551.737 114.681 551.737 114.437V114.407C551.737 114.121 551.968 113.896 552.248 113.896H552.661V73.5372H552.248C551.962 73.5372 551.737 73.3062 551.737 73.0266V72.9962C551.737 72.753 551.908 72.5524 552.132 72.4977H552.029C551.61 72.4977 551.269 72.1573 551.269 71.7378V71.6892C551.269 71.3731 551.464 71.1056 551.737 70.9901V70.3518M569.81 70.3518H563.865V70.9901C564.139 71.1056 564.333 71.3731 564.333 71.6892V71.7378C564.333 72.1573 563.993 72.4977 563.573 72.4977H563.47C563.695 72.5524 563.865 72.753 563.865 72.9962V73.0266C563.865 73.3123 563.634 73.5372 563.354 73.5372H562.941V113.903H563.354C563.64 113.903 563.865 114.134 563.865 114.413V114.444C563.865 114.687 563.695 114.887 563.47 114.942H563.494C563.956 114.942 564.333 115.319 564.333 115.781V118.59H569.348V115.781C569.348 115.319 569.725 114.942 570.187 114.942H570.212C569.987 114.887 569.817 114.687 569.817 114.444V114.413C569.817 114.127 570.048 113.903 570.327 113.903H570.741V73.5372H570.327C570.041 73.5372 569.817 73.3062 569.817 73.0266V72.9962C569.817 72.753 569.987 72.5524 570.212 72.4977H570.108C569.689 72.4977 569.348 72.1573 569.348 71.7378V71.6892C569.348 71.3731 569.543 71.1056 569.817 70.9901V70.3518M587.89 70.3518H581.944V70.9901C582.218 71.1056 582.412 71.3731 582.412 71.6892V71.7378C582.412 72.1573 582.072 72.4977 581.653 72.4977H581.549C581.774 72.5524 581.944 72.753 581.944 72.9962V73.0266C581.944 73.3123 581.713 73.5372 581.434 73.5372H581.02V113.903H581.434C581.719 113.903 581.944 114.134 581.944 114.413V114.444C581.944 114.687 581.774 114.887 581.549 114.942H581.574C582.036 114.942 582.412 115.319 582.412 115.781V118.59H587.428V115.781C587.428 115.319 587.805 114.942 588.267 114.942H588.291C588.066 114.887 587.896 114.687 587.896 114.444V114.413C587.896 114.127 588.127 113.903 588.406 113.903H588.82V73.5372H588.406C588.121 73.5372 587.896 73.3062 587.896 73.0266V72.9962C587.896 72.753 588.066 72.5524 588.291 72.4977H588.188C587.768 72.4977 587.428 72.1573 587.428 71.7378V71.6892C587.428 71.3731 587.622 71.1056 587.896 70.9901V70.3518\" fill=\"white\"/>\n<path d=\"M551.731 70.3457H545.786V70.984C546.059 71.0995 546.254 71.367 546.254 71.6831V71.7317C546.254 72.1512 545.914 72.4916 545.494 72.4916H545.391C545.616 72.5463 545.786 72.747 545.786 72.9901V73.0205C545.786 73.3062 545.555 73.5312 545.275 73.5312H544.862V113.896H545.275C545.561 113.896 545.786 114.127 545.786 114.407V114.437C545.786 114.681 545.616 114.881 545.391 114.936H545.415C545.877 114.936 546.254 115.313 546.254 115.775V118.583H551.269V115.775C551.269 115.313 551.646 114.936 552.108 114.936H552.132C551.908 114.881 551.737 114.681 551.737 114.437V114.407C551.737 114.121 551.968 113.896 552.248 113.896H552.661V73.5372H552.248C551.962 73.5372 551.737 73.3062 551.737 73.0266V72.9962C551.737 72.753 551.908 72.5524 552.132 72.4977H552.029C551.61 72.4977 551.269 72.1573 551.269 71.7378V71.6892C551.269 71.3731 551.464 71.1056 551.737 70.9901V70.3518M569.81 70.3518H563.865V70.9901C564.139 71.1056 564.333 71.3731 564.333 71.6892V71.7378C564.333 72.1573 563.993 72.4977 563.573 72.4977H563.47C563.695 72.5524 563.865 72.753 563.865 72.9962V73.0266C563.865 73.3123 563.634 73.5372 563.354 73.5372H562.941V113.903H563.354C563.64 113.903 563.865 114.134 563.865 114.413V114.444C563.865 114.687 563.695 114.887 563.47 114.942H563.494C563.956 114.942 564.333 115.319 564.333 115.781V118.59H569.348V115.781C569.348 115.319 569.725 114.942 570.187 114.942H570.212C569.987 114.887 569.817 114.687 569.817 114.444V114.413C569.817 114.127 570.048 113.903 570.327 113.903H570.741V73.5372H570.327C570.041 73.5372 569.817 73.3062 569.817 73.0266V72.9962C569.817 72.753 569.987 72.5524 570.212 72.4977H570.108C569.689 72.4977 569.348 72.1573 569.348 71.7378V71.6892C569.348 71.3731 569.543 71.1056 569.817 70.9901V70.3518M587.89 70.3518H581.944V70.9901C582.218 71.1056 582.412 71.3731 582.412 71.6892V71.7378C582.412 72.1573 582.072 72.4977 581.653 72.4977H581.549C581.774 72.5524 581.944 72.753 581.944 72.9962V73.0266C581.944 73.3123 581.713 73.5372 581.434 73.5372H581.02V113.903H581.434C581.719 113.903 581.944 114.134 581.944 114.413V114.444C581.944 114.687 581.774 114.887 581.549 114.942H581.574C582.036 114.942 582.412 115.319 582.412 115.781V118.59H587.428V115.781C587.428 115.319 587.805 114.942 588.267 114.942H588.291C588.066 114.887 587.896 114.687 587.896 114.444V114.413C587.896 114.127 588.127 113.903 588.406 113.903H588.82V73.5372H588.406C588.121 73.5372 587.896 73.3062 587.896 73.0266V72.9962C587.896 72.753 588.066 72.5524 588.291 72.4977H588.188C587.768 72.4977 587.428 72.1573 587.428 71.7378V71.6892C587.428 71.3731 587.622 71.1056 587.896 70.9901V70.3518\" fill=\"#206095\" fill-opacity=\"0.55\"/>\n</g>\n<path id=\"Vector_125\" d=\"M545.78 70.3457H533.658V70.984C533.749 70.9475 533.847 70.9293 533.95 70.9293H545.494C545.598 70.9293 545.695 70.9475 545.786 70.984V70.3457\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_126\" d=\"M599.975 66.3882H566.887H533.658V67.7377H599.975V66.3882Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_127\" d=\"M563.859 70.3457H551.731V70.984C551.823 70.9475 551.92 70.9293 552.023 70.9293H563.567C563.671 70.9293 563.768 70.9475 563.859 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_128\" d=\"M581.933 70.3457H569.805V70.984C569.896 70.9475 569.993 70.9293 570.096 70.9293H581.641C581.744 70.9293 581.841 70.9475 581.933 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_129\" d=\"M600.005 70.3457H587.877V70.984C587.969 70.9475 588.066 70.9293 588.169 70.9293H599.713C599.817 70.9293 599.914 70.9475 600.005 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<g id=\"Vector_130\">\n<path d=\"M599.075 73.5371H588.808V113.902H599.075V73.5371Z\" fill=\"white\"/>\n<path d=\"M599.075 73.5371H588.808V113.902H599.075V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_131\">\n<path d=\"M599.714 70.9292H588.17C588.066 70.9292 587.969 70.9474 587.878 70.9839C587.604 71.0994 587.41 71.3669 587.41 71.683V71.7316C587.41 72.1511 587.75 72.4915 588.17 72.4915H588.273C588.309 72.4855 588.352 72.4794 588.394 72.4794H599.495C599.537 72.4794 599.574 72.4794 599.617 72.4915H599.72C600.139 72.4915 600.48 72.1511 600.48 71.7316V71.683C600.48 71.3669 600.285 71.0994 600.012 70.9839C599.92 70.9474 599.823 70.9292 599.72 70.9292\" fill=\"white\"/>\n<path d=\"M599.714 70.9292H588.17C588.066 70.9292 587.969 70.9474 587.878 70.9839C587.604 71.0994 587.41 71.3669 587.41 71.683V71.7316C587.41 72.1511 587.75 72.4915 588.17 72.4915H588.273C588.309 72.4855 588.352 72.4794 588.394 72.4794H599.495C599.537 72.4794 599.574 72.4794 599.617 72.4915H599.72C600.139 72.4915 600.48 72.1511 600.48 71.7316V71.683C600.48 71.3669 600.285 71.0994 600.012 70.9839C599.92 70.9474 599.823 70.9292 599.72 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_132\">\n<path d=\"M599.489 72.4795H588.388C588.346 72.4795 588.309 72.4795 588.267 72.4917C588.042 72.5464 587.872 72.747 587.872 72.9901V73.0205C587.872 73.3063 588.103 73.5312 588.382 73.5312H599.483C599.768 73.5312 599.993 73.3002 599.993 73.0205V72.9901C599.993 72.747 599.823 72.5464 599.598 72.4917C599.562 72.4856 599.519 72.4795 599.477 72.4795\" fill=\"white\"/>\n<path d=\"M599.489 72.4795H588.388C588.346 72.4795 588.309 72.4795 588.267 72.4917C588.042 72.5464 587.872 72.747 587.872 72.9901V73.0205C587.872 73.3063 588.103 73.5312 588.382 73.5312H599.483C599.768 73.5312 599.993 73.3002 599.993 73.0205V72.9901C599.993 72.747 599.823 72.5464 599.598 72.4917C599.562 72.4856 599.519 72.4795 599.477 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_133\">\n<path d=\"M599.634 114.942H599.61C599.574 114.948 599.531 114.954 599.489 114.954H588.388C588.346 114.954 588.309 114.954 588.267 114.942H588.242C587.78 114.942 587.403 115.319 587.403 115.781V118.589H600.461V115.781C600.461 115.319 600.084 114.942 599.622 114.942\" fill=\"white\"/>\n<path d=\"M599.634 114.942H599.61C599.574 114.948 599.531 114.954 599.489 114.954H588.388C588.346 114.954 588.309 114.954 588.267 114.942H588.242C587.78 114.942 587.403 115.319 587.403 115.781V118.589H600.461V115.781C600.461 115.319 600.084 114.942 599.622 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_134\">\n<path d=\"M599.489 113.902H588.388C588.102 113.902 587.877 114.133 587.877 114.413V114.443C587.877 114.687 588.048 114.887 588.273 114.942C588.309 114.948 588.352 114.954 588.394 114.954H599.495C599.537 114.954 599.574 114.954 599.616 114.942C599.841 114.887 600.011 114.687 600.011 114.443V114.413C600.011 114.127 599.78 113.902 599.501 113.902\" fill=\"white\"/>\n<path d=\"M599.489 113.902H588.388C588.102 113.902 587.877 114.133 587.877 114.413V114.443C587.877 114.687 588.048 114.887 588.273 114.942C588.309 114.948 588.352 114.954 588.394 114.954H599.495C599.537 114.954 599.574 114.954 599.616 114.942C599.841 114.887 600.011 114.687 600.011 114.443V114.413C600.011 114.127 599.78 113.902 599.501 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_135\">\n<path d=\"M544.856 73.5371H534.582V113.902H544.856V73.5371Z\" fill=\"white\"/>\n<path d=\"M544.856 73.5371H534.582V113.902H544.856V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_136\">\n<path d=\"M545.494 70.9292H533.95C533.846 70.9292 533.749 70.9474 533.658 70.9839C533.384 71.0994 533.19 71.3669 533.19 71.683V71.7316C533.19 72.1511 533.53 72.4915 533.95 72.4915H534.053C534.09 72.4855 534.132 72.4794 534.175 72.4794H545.275C545.318 72.4794 545.354 72.4794 545.397 72.4915H545.5C545.92 72.4915 546.26 72.1511 546.26 71.7316V71.683C546.26 71.3669 546.065 71.0994 545.792 70.9839C545.701 70.9474 545.603 70.9292 545.5 70.9292\" fill=\"white\"/>\n<path d=\"M545.494 70.9292H533.95C533.846 70.9292 533.749 70.9474 533.658 70.9839C533.384 71.0994 533.19 71.3669 533.19 71.683V71.7316C533.19 72.1511 533.53 72.4915 533.95 72.4915H534.053C534.09 72.4855 534.132 72.4794 534.175 72.4794H545.275C545.318 72.4794 545.354 72.4794 545.397 72.4915H545.5C545.92 72.4915 546.26 72.1511 546.26 71.7316V71.683C546.26 71.3669 546.065 71.0994 545.792 70.9839C545.701 70.9474 545.603 70.9292 545.5 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_137\">\n<path d=\"M545.269 72.4795H534.169C534.126 72.4795 534.09 72.4795 534.047 72.4917C533.822 72.5464 533.652 72.747 533.652 72.9901V73.0205C533.652 73.3063 533.883 73.5312 534.163 73.5312H545.263C545.549 73.5312 545.774 73.3002 545.774 73.0205V72.9901C545.774 72.747 545.603 72.5464 545.378 72.4917C545.342 72.4856 545.299 72.4795 545.257 72.4795\" fill=\"white\"/>\n<path d=\"M545.269 72.4795H534.169C534.126 72.4795 534.09 72.4795 534.047 72.4917C533.822 72.5464 533.652 72.747 533.652 72.9901V73.0205C533.652 73.3063 533.883 73.5312 534.163 73.5312H545.263C545.549 73.5312 545.774 73.3002 545.774 73.0205V72.9901C545.774 72.747 545.603 72.5464 545.378 72.4917C545.342 72.4856 545.299 72.4795 545.257 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_138\">\n<path d=\"M545.409 114.942H545.385C545.348 114.948 545.306 114.954 545.269 114.954H534.169C534.126 114.954 534.09 114.954 534.053 114.942H534.029C533.567 114.942 533.19 115.319 533.19 115.781V118.589H546.248V115.781C546.248 115.319 545.871 114.942 545.409 114.942Z\" fill=\"white\"/>\n<path d=\"M545.409 114.942H545.385C545.348 114.948 545.306 114.954 545.269 114.954H534.169C534.126 114.954 534.09 114.954 534.053 114.942H534.029C533.567 114.942 533.19 115.319 533.19 115.781V118.589H546.248V115.781C546.248 115.319 545.871 114.942 545.409 114.942Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_139\">\n<path d=\"M545.269 113.902H534.169C533.883 113.902 533.658 114.133 533.658 114.413V114.443C533.658 114.687 533.828 114.887 534.053 114.942C534.09 114.948 534.132 114.954 534.169 114.954H545.269C545.312 114.954 545.348 114.954 545.385 114.942C545.61 114.887 545.78 114.687 545.78 114.443V114.413C545.78 114.127 545.549 113.902 545.269 113.902Z\" fill=\"white\"/>\n<path d=\"M545.269 113.902H534.169C533.883 113.902 533.658 114.133 533.658 114.413V114.443C533.658 114.687 533.828 114.887 534.053 114.942C534.09 114.948 534.132 114.954 534.169 114.954H545.269C545.312 114.954 545.348 114.954 545.385 114.942C545.61 114.887 545.78 114.687 545.78 114.443V114.413C545.78 114.127 545.549 113.902 545.269 113.902Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_140\">\n<path d=\"M562.929 73.5371H552.661V113.902H562.929V73.5371Z\" fill=\"white\"/>\n<path d=\"M562.929 73.5371H552.661V113.902H562.929V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_141\">\n<path d=\"M563.567 70.9292H552.023C551.92 70.9292 551.822 70.9474 551.731 70.9839C551.458 71.0994 551.263 71.3669 551.263 71.683V71.7316C551.263 72.1511 551.604 72.4915 552.023 72.4915H552.126C552.163 72.4855 552.205 72.4794 552.248 72.4794H563.348C563.391 72.4794 563.427 72.4794 563.47 72.4915H563.573C563.993 72.4915 564.333 72.1511 564.333 71.7316V71.683C564.333 71.3669 564.139 71.0994 563.865 70.9839C563.774 70.9474 563.677 70.9292 563.573 70.9292\" fill=\"white\"/>\n<path d=\"M563.567 70.9292H552.023C551.92 70.9292 551.822 70.9474 551.731 70.9839C551.458 71.0994 551.263 71.3669 551.263 71.683V71.7316C551.263 72.1511 551.604 72.4915 552.023 72.4915H552.126C552.163 72.4855 552.205 72.4794 552.248 72.4794H563.348C563.391 72.4794 563.427 72.4794 563.47 72.4915H563.573C563.993 72.4915 564.333 72.1511 564.333 71.7316V71.683C564.333 71.3669 564.139 71.0994 563.865 70.9839C563.774 70.9474 563.677 70.9292 563.573 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_142\">\n<path d=\"M563.342 72.4795H552.242C552.199 72.4795 552.163 72.4795 552.12 72.4917C551.895 72.5464 551.725 72.747 551.725 72.9901V73.0205C551.725 73.3063 551.956 73.5312 552.236 73.5312H563.336C563.622 73.5312 563.847 73.3002 563.847 73.0205V72.9901C563.847 72.747 563.677 72.5464 563.452 72.4917C563.415 72.4856 563.373 72.4795 563.33 72.4795\" fill=\"white\"/>\n<path d=\"M563.342 72.4795H552.242C552.199 72.4795 552.163 72.4795 552.12 72.4917C551.895 72.5464 551.725 72.747 551.725 72.9901V73.0205C551.725 73.3063 551.956 73.5312 552.236 73.5312H563.336C563.622 73.5312 563.847 73.3002 563.847 73.0205V72.9901C563.847 72.747 563.677 72.5464 563.452 72.4917C563.415 72.4856 563.373 72.4795 563.33 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_143\">\n<path d=\"M563.482 114.942H563.458C563.422 114.948 563.379 114.954 563.337 114.954H552.236C552.194 114.954 552.157 114.954 552.121 114.942H552.096C551.634 114.942 551.257 115.319 551.257 115.781V118.589H564.315V115.781C564.315 115.319 563.938 114.942 563.476 114.942\" fill=\"white\"/>\n<path d=\"M563.482 114.942H563.458C563.422 114.948 563.379 114.954 563.337 114.954H552.236C552.194 114.954 552.157 114.954 552.121 114.942H552.096C551.634 114.942 551.257 115.319 551.257 115.781V118.589H564.315V115.781C564.315 115.319 563.938 114.942 563.476 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_144\">\n<path d=\"M563.343 113.902H552.242C551.956 113.902 551.731 114.133 551.731 114.413V114.443C551.731 114.687 551.902 114.887 552.127 114.942C552.163 114.948 552.206 114.954 552.242 114.954H563.343C563.385 114.954 563.422 114.954 563.464 114.942C563.689 114.887 563.859 114.687 563.859 114.443V114.413C563.859 114.127 563.628 113.902 563.349 113.902\" fill=\"white\"/>\n<path d=\"M563.343 113.902H552.242C551.956 113.902 551.731 114.133 551.731 114.413V114.443C551.731 114.687 551.902 114.887 552.127 114.942C552.163 114.948 552.206 114.954 552.242 114.954H563.343C563.385 114.954 563.422 114.954 563.464 114.942C563.689 114.887 563.859 114.687 563.859 114.443V114.413C563.859 114.127 563.628 113.902 563.349 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_145\">\n<path d=\"M581.002 73.5371H570.734V113.902H581.002V73.5371Z\" fill=\"white\"/>\n<path d=\"M581.002 73.5371H570.734V113.902H581.002V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_146\">\n<path d=\"M581.641 70.9292H570.096C569.993 70.9292 569.896 70.9474 569.805 70.9839C569.531 71.0994 569.336 71.3669 569.336 71.683V71.7316C569.336 72.1511 569.677 72.4915 570.096 72.4915H570.2C570.236 72.4855 570.279 72.4794 570.321 72.4794H581.422C581.464 72.4794 581.501 72.4794 581.543 72.4915H581.647C582.066 72.4915 582.407 72.1511 582.407 71.7316V71.683C582.407 71.3669 582.212 71.0994 581.938 70.9839C581.847 70.9474 581.75 70.9292 581.647 70.9292\" fill=\"white\"/>\n<path d=\"M581.641 70.9292H570.096C569.993 70.9292 569.896 70.9474 569.805 70.9839C569.531 71.0994 569.336 71.3669 569.336 71.683V71.7316C569.336 72.1511 569.677 72.4915 570.096 72.4915H570.2C570.236 72.4855 570.279 72.4794 570.321 72.4794H581.422C581.464 72.4794 581.501 72.4794 581.543 72.4915H581.647C582.066 72.4915 582.407 72.1511 582.407 71.7316V71.683C582.407 71.3669 582.212 71.0994 581.938 70.9839C581.847 70.9474 581.75 70.9292 581.647 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_147\">\n<path d=\"M581.416 72.4795H570.315C570.273 72.4795 570.236 72.4795 570.193 72.4917C569.969 72.5464 569.798 72.747 569.798 72.9901V73.0205C569.798 73.3063 570.029 73.5312 570.309 73.5312H581.409C581.695 73.5312 581.92 73.3002 581.92 73.0205V72.9901C581.92 72.747 581.75 72.5464 581.525 72.4917C581.488 72.4856 581.446 72.4795 581.403 72.4795\" fill=\"white\"/>\n<path d=\"M581.416 72.4795H570.315C570.273 72.4795 570.236 72.4795 570.193 72.4917C569.969 72.5464 569.798 72.747 569.798 72.9901V73.0205C569.798 73.3063 570.029 73.5312 570.309 73.5312H581.409C581.695 73.5312 581.92 73.3002 581.92 73.0205V72.9901C581.92 72.747 581.75 72.5464 581.525 72.4917C581.488 72.4856 581.446 72.4795 581.403 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_148\">\n<path d=\"M581.562 114.942H581.537C581.501 114.948 581.458 114.954 581.416 114.954H570.315C570.273 114.954 570.236 114.954 570.2 114.942H570.175C569.713 114.942 569.336 115.319 569.336 115.781V118.589H582.394V115.781C582.394 115.319 582.017 114.942 581.555 114.942\" fill=\"white\"/>\n<path d=\"M581.562 114.942H581.537C581.501 114.948 581.458 114.954 581.416 114.954H570.315C570.273 114.954 570.236 114.954 570.2 114.942H570.175C569.713 114.942 569.336 115.319 569.336 115.781V118.589H582.394V115.781C582.394 115.319 582.017 114.942 581.555 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_149\">\n<path d=\"M581.416 113.902H570.315C570.03 113.902 569.805 114.133 569.805 114.413V114.443C569.805 114.687 569.975 114.887 570.2 114.942C570.236 114.948 570.279 114.954 570.315 114.954H581.416C581.458 114.954 581.495 114.954 581.537 114.942C581.762 114.887 581.933 114.687 581.933 114.443V114.413C581.933 114.127 581.702 113.902 581.422 113.902\" fill=\"white\"/>\n<path d=\"M581.416 113.902H570.315C570.03 113.902 569.805 114.133 569.805 114.413V114.443C569.805 114.687 569.975 114.887 570.2 114.942C570.236 114.948 570.279 114.954 570.315 114.954H581.416C581.458 114.954 581.495 114.954 581.537 114.942C581.762 114.887 581.933 114.687 581.933 114.443V114.413C581.933 114.127 581.702 113.902 581.422 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_150\">\n<path d=\"M600.431 67.7378H533.336C533.038 67.7378 532.801 67.9749 532.801 68.2728V69.8108C532.801 70.1086 533.038 70.3457 533.336 70.3457H600.425C600.723 70.3457 600.96 70.1086 600.96 69.8108V68.2728C600.96 67.9749 600.723 67.7378 600.425 67.7378\" fill=\"white\"/>\n<path d=\"M600.431 67.7378H533.336C533.038 67.7378 532.801 67.9749 532.801 68.2728V69.8108C532.801 70.1086 533.038 70.3457 533.336 70.3457H600.425C600.723 70.3457 600.96 70.1086 600.96 69.8108V68.2728C600.96 67.9749 600.723 67.7378 600.425 67.7378\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_151\">\n<path d=\"M566.899 43.8833L549.026 54.85L534.083 64.0173H599.72L584.777 54.85L566.886 43.9076\" fill=\"white\"/>\n<path d=\"M566.899 43.8833L549.026 54.85L534.083 64.0173H599.72L584.777 54.85L566.886 43.9076\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_152\">\n<path d=\"M534.065 64.0416L549.008 54.8743L566.886 43.9076L584.759 54.8743L599.701 64.0416H534.065ZM566.886 41.4517C566.576 41.4517 566.266 41.5368 565.987 41.707L547.786 52.8743L530.94 63.2088C530.679 63.3668 530.46 63.5979 530.326 63.8593C530.187 64.1207 530.12 64.4003 530.126 64.6678C530.126 65.0994 530.278 65.5067 530.576 65.835C530.728 65.9991 530.916 66.1389 531.135 66.2362C531.354 66.3335 531.597 66.3882 531.84 66.3882H601.926C602.169 66.3882 602.413 66.3395 602.631 66.2362C602.96 66.0903 603.221 65.8471 603.385 65.5675C603.555 65.2939 603.641 64.9839 603.641 64.6617C603.641 64.3942 603.58 64.1146 603.44 63.8532C603.3 63.5918 603.081 63.3608 602.826 63.2027L585.981 52.8682L567.78 41.707C567.506 41.5368 567.196 41.4517 566.886 41.4517Z\" fill=\"white\"/>\n<path d=\"M534.065 64.0416L549.008 54.8743L566.886 43.9076L584.759 54.8743L599.701 64.0416H534.065ZM566.886 41.4517C566.576 41.4517 566.266 41.5368 565.987 41.707L547.786 52.8743L530.94 63.2088C530.679 63.3668 530.46 63.5979 530.326 63.8593C530.187 64.1207 530.12 64.4003 530.126 64.6678C530.126 65.0994 530.278 65.5067 530.576 65.835C530.728 65.9991 530.916 66.1389 531.135 66.2362C531.354 66.3335 531.597 66.3882 531.84 66.3882H601.926C602.169 66.3882 602.413 66.3395 602.631 66.2362C602.96 66.0903 603.221 65.8471 603.385 65.5675C603.555 65.2939 603.641 64.9839 603.641 64.6617C603.641 64.3942 603.58 64.1146 603.44 63.8532C603.3 63.5918 603.081 63.3608 602.826 63.2027L585.981 52.8682L567.78 41.707C567.506 41.5368 567.196 41.4517 566.886 41.4517Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<path id=\"Vector_153\" d=\"M603.241 118.589H601.071H588.007H582.997H569.933H564.918H551.86H546.845H533.787H530.833V121.617H603.241V118.589Z\" fill=\"#A6BFD5\"/>\n<g id=\"Vector_154\">\n<path d=\"M605.144 121.617H603.095H530.687H528.833V125.75H605.144V121.617Z\" fill=\"white\"/>\n<path d=\"M605.144 121.617H603.095H530.687H528.833V125.75H605.144V121.617Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 6\">\n<rect x=\"496.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"496.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 7\">\n<rect x=\"513.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"513.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 8\">\n<rect x=\"496.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"496.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 9\">\n<rect x=\"513.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"513.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 10\">\n<rect x=\"604.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"604.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 11\">\n<rect x=\"621.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"621.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 12\">\n<rect x=\"604.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"604.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 13\">\n<rect x=\"621.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"621.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 8_2\">\n<rect x=\"495.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"495.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 9_2\">\n<rect x=\"512.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"512.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 10_2\">\n<rect x=\"495.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"495.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 11_2\">\n<rect x=\"512.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"512.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 12_2\">\n<rect x=\"603.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"603.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 13_2\">\n<rect x=\"620.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"620.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 14\">\n<rect x=\"603.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"603.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 15\">\n<rect x=\"620.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"620.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Icon\">\n<g id=\"Circle\">\n<path id=\"Vector_155\" d=\"M566.833 61.4873C570.146 61.4873 572.833 58.801 572.833 55.4873C572.833 52.1736 570.146 49.4873 566.833 49.4873C563.519 49.4873 560.833 52.1736 560.833 55.4873C560.833 58.801 563.519 61.4873 566.833 61.4873Z\" fill=\"white\"/>\n</g>\n<g id=\"Artwork 64x64\">\n<path id=\"Vector_156\" d=\"M570.64 56.1689L569.687 53.4416C569.681 53.42 569.67 53.3997 569.657 53.3816C569.646 53.3692 569.634 53.3578 569.621 53.3475H569.613C569.6 53.338 569.585 53.3302 569.57 53.3244H569.549C569.536 53.316 569.521 53.3096 569.506 53.3053H567.242V52.6234C567.242 52.5149 567.199 52.4109 567.122 52.3342C567.045 52.2575 566.941 52.2144 566.833 52.2144C566.724 52.2144 566.62 52.2575 566.544 52.3342C566.467 52.4109 566.424 52.5149 566.424 52.6234V53.3053H564.16C564.147 53.3061 564.134 53.3084 564.122 53.3121H564.101C564.086 53.3179 564.071 53.3257 564.058 53.3353H564.05C564.037 53.3455 564.025 53.3569 564.014 53.3694C564.001 53.3874 563.991 53.4077 563.984 53.4294L563.03 56.1566C563.019 56.1875 563.017 56.2204 563.021 56.2527C563.026 56.2849 563.038 56.3155 563.057 56.3421C563.076 56.3687 563.101 56.3904 563.13 56.4056C563.159 56.4207 563.191 56.4289 563.223 56.4294H565.132C565.165 56.4289 565.197 56.4207 565.226 56.4056C565.255 56.3904 565.28 56.3687 565.298 56.3421C565.317 56.3155 565.33 56.2849 565.334 56.2527C565.339 56.2204 565.336 56.1875 565.326 56.1566L564.464 53.7144H566.424V57.0444L565.319 58.3057C565.284 58.3451 565.261 58.3939 565.253 58.4461C565.245 58.4983 565.253 58.5516 565.274 58.5997C565.296 58.6478 565.332 58.6885 565.376 58.7169C565.421 58.7453 565.472 58.7602 565.525 58.7598H568.141C568.193 58.76 568.245 58.745 568.289 58.7167C568.333 58.6883 568.368 58.6478 568.39 58.6C568.412 58.5522 568.419 58.4991 568.411 58.4471C568.404 58.3952 568.381 58.3465 568.346 58.3071L567.242 57.0444V53.7144H569.201L568.344 56.1689C568.333 56.1998 568.331 56.2327 568.335 56.2649C568.34 56.2972 568.353 56.3278 568.371 56.3544C568.39 56.3809 568.415 56.4027 568.444 56.4178C568.473 56.433 568.505 56.4412 568.537 56.4416H570.446C570.479 56.4412 570.511 56.433 570.54 56.4178C570.569 56.4027 570.594 56.3809 570.612 56.3544C570.631 56.3278 570.644 56.2972 570.648 56.2649C570.653 56.2327 570.65 56.1998 570.64 56.1689ZM563.507 56.0325L564.174 54.1234L564.841 56.0325H563.507ZM568.825 56.0325L569.492 54.1234L570.159 56.0325H568.825Z\" fill=\"#206095\"/>\n<g id=\"Vector_157\">\n<path d=\"M566.833 54.1903C567.209 54.1903 567.515 53.885 567.515 53.5085C567.515 53.1319 567.209 52.8267 566.833 52.8267C566.456 52.8267 566.151 53.1319 566.151 53.5085C566.151 53.885 566.456 54.1903 566.833 54.1903Z\" fill=\"white\"/>\n<path d=\"M566.833 54.1903C567.209 54.1903 567.515 53.885 567.515 53.5085C567.515 53.1319 567.209 52.8267 566.833 52.8267C566.456 52.8267 566.151 53.1319 566.151 53.5085C566.151 53.885 566.456 54.1903 566.833 54.1903Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_158\">\n<path d=\"M565.022 55.9483C565.07 55.9478 565.119 55.9589 565.162 55.9808C565.206 56.0026 565.243 56.0345 565.272 56.0738C565.301 56.1131 565.32 56.1587 565.328 56.2068C565.335 56.255 565.331 56.3042 565.316 56.3505C565.233 56.5867 565.078 56.7912 564.873 56.9358C564.669 57.0805 564.424 57.1581 564.174 57.1581C563.923 57.1581 563.679 57.0805 563.474 56.9358C563.269 56.7912 563.115 56.5867 563.031 56.3505C563.016 56.3042 563.012 56.255 563.019 56.2068C563.027 56.1587 563.046 56.1131 563.075 56.0738C563.104 56.0345 563.141 56.0026 563.185 55.9808C563.229 55.9589 563.277 55.9478 563.325 55.9483H565.022Z\" fill=\"white\"/>\n<path d=\"M565.022 55.9483C565.07 55.9478 565.119 55.9589 565.162 55.9808C565.206 56.0026 565.243 56.0345 565.272 56.0738C565.301 56.1131 565.32 56.1587 565.328 56.2068C565.335 56.255 565.331 56.3042 565.316 56.3505C565.233 56.5867 565.078 56.7912 564.873 56.9358C564.669 57.0805 564.424 57.1581 564.174 57.1581C563.923 57.1581 563.679 57.0805 563.474 56.9358C563.269 56.7912 563.115 56.5867 563.031 56.3505C563.016 56.3042 563.012 56.255 563.019 56.2068C563.027 56.1587 563.046 56.1131 563.075 56.0738C563.104 56.0345 563.141 56.0026 563.185 55.9808C563.229 55.9589 563.277 55.9478 563.325 55.9483H565.022Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_159\">\n<path d=\"M570.34 55.9483C570.388 55.9478 570.436 55.9589 570.48 55.9808C570.524 56.0026 570.561 56.0345 570.59 56.0738C570.619 56.1131 570.638 56.1587 570.646 56.2068C570.653 56.255 570.649 56.3042 570.634 56.3505C570.551 56.5867 570.396 56.7912 570.191 56.9358C569.986 57.0805 569.742 57.1581 569.491 57.1581C569.241 57.1581 568.996 57.0805 568.792 56.9358C568.587 56.7912 568.432 56.5867 568.349 56.3505C568.334 56.3042 568.33 56.255 568.337 56.2068C568.345 56.1587 568.364 56.1131 568.393 56.0738C568.422 56.0345 568.459 56.0026 568.503 55.9808C568.546 55.9589 568.595 55.9478 568.643 55.9483H570.34Z\" fill=\"white\"/>\n<path d=\"M570.34 55.9483C570.388 55.9478 570.436 55.9589 570.48 55.9808C570.524 56.0026 570.561 56.0345 570.59 56.0738C570.619 56.1131 570.638 56.1587 570.646 56.2068C570.653 56.255 570.649 56.3042 570.634 56.3505C570.551 56.5867 570.396 56.7912 570.191 56.9358C569.986 57.0805 569.742 57.1581 569.491 57.1581C569.241 57.1581 568.996 57.0805 568.792 56.9358C568.587 56.7912 568.432 56.5867 568.349 56.3505C568.334 56.3042 568.33 56.255 568.337 56.2068C568.345 56.1587 568.364 56.1131 568.393 56.0738C568.422 56.0345 568.459 56.0026 568.503 55.9808C568.546 55.9589 568.595 55.9478 568.643 55.9483H570.34Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n</g>\n</g>\n<g id=\"Bush_2\">\n<g id=\"Vector_160\">\n<path d=\"M681.329 111.962C685.678 114.179 688.387 115.261 689.527 116.397C690.671 117.533 693.372 120.844 691.827 123.23C690.278 125.617 689.767 127.484 685.414 127.288C681.062 127.091 679.296 126.474 675.774 126.796C672.251 127.119 669.137 125.538 668.41 124.779C667.682 124.021 665.496 120.502 668.39 117.388C671.284 114.27 677.488 110.004 681.329 111.962Z\" fill=\"white\"/>\n<path d=\"M681.329 111.962C685.678 114.179 688.387 115.261 689.527 116.397C690.671 117.533 693.372 120.844 691.827 123.23C690.278 125.617 689.767 127.484 685.414 127.288C681.062 127.091 679.296 126.474 675.774 126.796C672.251 127.119 669.137 125.538 668.41 124.779C667.682 124.021 665.496 120.502 668.39 117.388C671.284 114.27 677.488 110.004 681.329 111.962Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_161\">\n<path d=\"M669.782 109.772C666.782 108.101 663.487 108.014 659.205 110.688C654.924 113.365 654.019 115.142 653.76 116.326C653.504 117.509 651.554 118.256 652.081 120.623C652.608 122.99 657.648 125.491 660.916 125.778C664.183 126.065 664.867 125.766 668.748 125.164C672.628 124.563 675.746 123.666 677.166 120.702C678.589 117.737 672.955 111.537 669.778 109.772H669.782Z\" fill=\"white\"/>\n<path d=\"M669.782 109.772C666.782 108.101 663.487 108.014 659.205 110.688C654.924 113.365 654.019 115.142 653.76 116.326C653.504 117.509 651.554 118.256 652.081 120.623C652.608 122.99 657.648 125.491 660.916 125.778C664.183 126.065 664.867 125.766 668.748 125.164C672.628 124.563 675.746 123.666 677.166 120.702C678.589 117.737 672.955 111.537 669.778 109.772H669.782Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_162\">\n<path d=\"M658.136 113.625C664.887 115.835 669.094 116.912 670.871 118.048C672.644 119.185 676.839 122.487 674.433 124.878C672.023 127.268 671.225 129.136 664.462 128.947C657.699 128.758 654.959 128.145 649.486 128.471C644.013 128.798 639.177 127.225 638.049 126.466C636.92 125.707 633.527 122.192 638.029 119.074C642.531 115.953 652.179 111.679 658.144 113.633L658.136 113.625Z\" fill=\"white\"/>\n<path d=\"M658.136 113.625C664.887 115.835 669.094 116.912 670.871 118.048C672.644 119.185 676.839 122.487 674.433 124.878C672.023 127.268 671.225 129.136 664.462 128.947C657.699 128.758 654.959 128.145 649.486 128.471C644.013 128.798 639.177 127.225 638.049 126.466C636.92 125.707 633.527 122.192 638.029 119.074C642.531 115.953 652.179 111.679 658.144 113.633L658.136 113.625Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_163\">\n<path d=\"M678.675 123.191C676.949 122.342 675.054 122.291 672.585 123.64C670.116 124.988 669.593 125.889 669.444 126.486C669.294 127.084 668.17 127.461 668.472 128.656C668.771 129.856 671.669 131.13 673.552 131.279C675.436 131.428 675.829 131.279 678.062 130.98C680.295 130.681 682.092 130.229 682.918 128.731C683.743 127.233 680.507 124.088 678.683 123.187L678.675 123.191Z\" fill=\"white\"/>\n<path d=\"M678.675 123.191C676.949 122.342 675.054 122.291 672.585 123.64C670.116 124.988 669.593 125.889 669.444 126.486C669.294 127.084 668.17 127.461 668.472 128.656C668.771 129.856 671.669 131.13 673.552 131.279C675.436 131.428 675.829 131.279 678.062 130.98C680.295 130.681 682.092 130.229 682.918 128.731C683.743 127.233 680.507 124.088 678.683 123.187L678.675 123.191Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_164\">\n<path d=\"M671.701 124.685C670.332 124.013 668.83 123.973 666.872 125.043C664.914 126.112 664.501 126.824 664.38 127.299C664.262 127.775 663.373 128.07 663.609 129.022C663.845 129.973 666.145 130.98 667.635 131.101C669.125 131.219 669.44 131.101 671.209 130.866C672.982 130.63 674.406 130.272 675.058 129.084C675.711 127.897 673.147 125.404 671.701 124.693V124.685Z\" fill=\"white\"/>\n<path d=\"M671.701 124.685C670.332 124.013 668.83 123.973 666.872 125.043C664.914 126.112 664.501 126.824 664.38 127.299C664.262 127.775 663.373 128.07 663.609 129.022C663.845 129.973 666.145 130.98 667.635 131.101C669.125 131.219 669.44 131.101 671.209 130.866C672.982 130.63 674.406 130.272 675.058 129.084C675.711 127.897 673.147 125.404 671.701 124.693V124.685Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_165\">\n<path d=\"M676.198 120.219C674.472 119.369 672.577 119.318 670.108 120.667C667.639 122.015 667.116 122.916 666.967 123.513C666.817 124.111 665.693 124.489 665.995 125.684C666.294 126.883 666.514 128.668 668.398 128.817C670.281 128.967 673.352 128.306 675.585 128.007C677.818 127.709 679.615 127.257 680.441 125.759C681.262 124.261 678.03 121.115 676.206 120.215L676.198 120.219Z\" fill=\"white\"/>\n<path d=\"M676.198 120.219C674.472 119.369 672.577 119.318 670.108 120.667C667.639 122.015 667.116 122.916 666.967 123.513C666.817 124.111 665.693 124.489 665.995 125.684C666.294 126.883 666.514 128.668 668.398 128.817C670.281 128.967 673.352 128.306 675.585 128.007C677.818 127.709 679.615 127.257 680.441 125.759C681.262 124.261 678.03 121.115 676.206 120.215L676.198 120.219Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Flats\" clip-path=\"url(#clip1_1849_10311)\">\n<path id=\"Vector_166\" d=\"M198.616 21.1265H200.067V23.6337H198.616V21.1265Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_167\" d=\"M196.045 21.1265H197.497V23.6337H196.045V21.1265Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_168\" d=\"M207.06 23.2844C206.438 23.2844 205.935 22.7739 205.935 22.1441C205.935 21.5144 206.438 21.0039 207.06 21.0039C207.681 21.0039 208.185 21.5144 208.185 22.1441C208.185 22.7739 207.681 23.2844 207.06 23.2844Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_169\" d=\"M205.928 22.1196H208.185V24.4062H205.928V22.1196Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_170\" d=\"M207.06 21.3349C206.879 21.3349 206.733 21.1867 206.733 21.0039C206.733 20.8211 206.879 20.6729 207.06 20.6729C207.24 20.6729 207.386 20.8211 207.386 21.0039C207.386 21.1867 207.24 21.3349 207.06 21.3349Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_171\" d=\"M204.483 23.2844C203.862 23.2844 203.358 22.7739 203.358 22.1441C203.358 21.5144 203.862 21.0039 204.483 21.0039C205.104 21.0039 205.608 21.5144 205.608 22.1441C205.608 22.7739 205.104 23.2844 204.483 23.2844Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_172\" d=\"M203.358 22.1196H205.614V24.4062H203.358V22.1196Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_173\" d=\"M204.483 21.3349C204.303 21.3349 204.156 21.1867 204.156 21.0039C204.156 20.8211 204.303 20.6729 204.483 20.6729C204.663 20.6729 204.81 20.8211 204.81 21.0039C204.81 21.1867 204.663 21.3349 204.483 21.3349Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_174\" d=\"M266.347 14.1255H289.107V15.1676H266.347V14.1255Z\" fill=\"#003C57\"/>\n<g id=\"Vector_175\">\n<path d=\"M266.353 15.186H289.107V28.5623H266.353V15.186Z\" fill=\"white\"/>\n<path d=\"M266.353 15.186H289.107V28.5623H266.353V15.186Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_176\" d=\"M268.766 17.1787H276.133V31.1741H268.766V17.1787Z\" fill=\"#003C57\"/>\n<path id=\"Vector_177\" d=\"M269.692 18.1104H275.214V31.174H269.692V18.1104Z\" fill=\"#EBEBF4\"/>\n<g id=\"Vector_178\">\n<path d=\"M172.444 29.5186H295.67V125.212H172.444V29.5186Z\" fill=\"white\"/>\n<path d=\"M172.444 29.5186H295.67V125.212H172.444V29.5186Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_179\" opacity=\"0.4\" d=\"M231.792 29.4268H234.713V125.819H231.792V29.4268Z\" fill=\"#EBEBF4\"/>\n<path id=\"Vector_180\" d=\"M172.462 28.3354H295.646V29.5186H172.462V28.3354Z\" fill=\"#003C57\"/>\n<g id=\"Vector_181\">\n<path d=\"M193.215 23.1553H210.955V28.3047H193.215V23.1553Z\" fill=\"white\"/>\n<path d=\"M193.215 23.1553H210.955V28.3047H193.215V23.1553Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_182\" d=\"M266.728 35.6611V50.8213H266.335H243.52H243.145V35.6611H266.728Z\" fill=\"white\"/>\n<g id=\"Vector_183\">\n<path d=\"M290.063 35.6611V118.622H289.906H280.621H280.47V35.6611H290.063Z\" fill=\"white\"/>\n<path d=\"M290.063 35.6611V118.622H289.906H280.621H280.47V35.6611H290.063Z\" fill=\"#6390B5\"/>\n</g>\n<path id=\"Vector_184\" d=\"M244.125 36.8442H265.657V49.4665H244.125V36.8442Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_185\" d=\"M266.571 59.5205V74.6807H266.172H243.363H242.982V59.5205H266.571Z\" fill=\"white\"/>\n<path id=\"Vector_186\" d=\"M243.967 60.6973H265.5V73.1478H243.967V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_187\" d=\"M266.571 83.3179V98.4842H266.172H243.363H242.982V83.3179H266.571Z\" fill=\"white\"/>\n<path id=\"Vector_188\" d=\"M243.967 84.501H265.5V97.1477H243.967V84.501Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_189\" d=\"M241.875 98.2021H275.625V99.0849H241.875V98.2021Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_190\" opacity=\"0.5\" d=\"M241.905 93.4453H275.644V98.2024H241.905V93.4453Z\" fill=\"white\"/>\n<path id=\"Vector_191\" d=\"M266.571 108.195V123.355H266.172H243.363H242.982V108.195H266.571Z\" fill=\"white\"/>\n<path id=\"Vector_192\" d=\"M243.967 109.372H265.5V121.932H243.967V109.372Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_193\" d=\"M241.875 123.073H275.625V123.956H241.875V123.073Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_194\" opacity=\"0.5\" d=\"M241.905 118.315H275.644V123.073H241.905V118.315Z\" fill=\"white\"/>\n<path id=\"Vector_195\" d=\"M241.875 74.3496H275.625V75.2324H241.875V74.3496Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_196\" d=\"M295.646 73.3687H302.045V74.2514H295.646V73.3687Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_197\" opacity=\"0.7\" d=\"M295.664 68.6113H302.027V73.3684H295.664V68.6113Z\" fill=\"white\"/>\n<path id=\"Vector_198\" d=\"M295.646 50.0488H302.045V50.9316H295.646V50.0488Z\" fill=\"#003C57\"/>\n<path id=\"Vector_199\" opacity=\"0.7\" d=\"M295.664 45.292H302.027V50.0491H295.664V45.292Z\" fill=\"white\"/>\n<path id=\"Vector_200\" d=\"M295.646 97.7607H302.045V98.6435H295.646V97.7607Z\" fill=\"#003C57\"/>\n<path id=\"Vector_201\" opacity=\"0.7\" d=\"M295.664 93.0039H302.027V97.761H295.664V93.0039Z\" fill=\"white\"/>\n<path id=\"Vector_202\" d=\"M166.045 73.3687H172.444V74.2514H166.045V73.3687Z\" fill=\"#003C57\"/>\n<path id=\"Vector_203\" opacity=\"0.7\" d=\"M166.063 68.6113H172.426V73.3684H166.063V68.6113Z\" fill=\"white\"/>\n<path id=\"Vector_204\" d=\"M166.045 50.0488H172.444V50.9316H166.045V50.0488Z\" fill=\"#003C57\"/>\n<path id=\"Vector_205\" opacity=\"0.7\" d=\"M166.063 45.292H172.426V50.0491H166.063V45.292Z\" fill=\"white\"/>\n<path id=\"Vector_206\" d=\"M166.045 97.7607H172.444V98.6435H166.045V97.7607Z\" fill=\"#003C57\"/>\n<path id=\"Vector_207\" opacity=\"0.7\" d=\"M166.063 93.0039H172.426V97.761H166.063V93.0039Z\" fill=\"white\"/>\n<path id=\"Vector_208\" d=\"M241.875 50.4902H275.625V51.373H241.875V50.4902Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_209\" opacity=\"0.5\" d=\"M241.947 45.7334H275.655V50.4905H241.947V45.7334Z\" fill=\"white\"/>\n<path id=\"Vector_210\" d=\"M281.649 37.1753H288.883V46.5607H281.649V37.1753Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_211\" d=\"M281.649 60.6973H288.883V70.0827H281.649V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_212\" d=\"M281.649 84.2192H288.883V93.6047H281.649V84.2192Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_213\" d=\"M281.649 107.741H288.883V117.127H281.649V107.741Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_214\" d=\"M204.065 35.6611V50.8213H203.672H180.863H180.482V35.6611H204.065Z\" fill=\"white\"/>\n<g id=\"Vector_215\">\n<path d=\"M227.401 35.6611V118.622H227.244H217.959H217.808V35.6611H227.401Z\" fill=\"white\"/>\n<path d=\"M227.401 35.6611V118.622H227.244H217.959H217.808V35.6611H227.401Z\" fill=\"#6390B5\"/>\n</g>\n<path id=\"Vector_216\" d=\"M181.468 36.8442H203.001V49.4235H181.468V36.8442Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_217\" d=\"M203.908 59.5205V74.6807H203.515H180.7H180.325V59.5205H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_218\" d=\"M181.305 60.6973H202.838V73.1724H181.305V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_219\" d=\"M203.908 83.3179V98.4842H203.515H180.7H180.325V83.3179H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_220\" d=\"M181.305 84.501H202.838V97.0067H181.305V84.501Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_221\" d=\"M179.219 98.2021H212.969V99.0849H179.219V98.2021Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_222\" opacity=\"0.5\" d=\"M179.243 93.4453H212.981V98.2024H179.243V93.4453Z\" fill=\"white\"/>\n<path id=\"Vector_223\" d=\"M203.908 108.195V123.355H203.515H180.7H180.325V108.195H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_224\" d=\"M181.305 109.372H202.838V121.902H181.305V109.372Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_225\" d=\"M179.219 123.073H212.969V123.956H179.219V123.073Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_226\" opacity=\"0.5\" d=\"M179.243 118.315H212.981V123.073H179.243V118.315Z\" fill=\"white\"/>\n<path id=\"Vector_227\" d=\"M179.219 74.3496H212.969V75.2324H179.219V74.3496Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_228\" opacity=\"0.5\" d=\"M179.231 69.5923H212.969V74.3494H179.231V69.5923Z\" fill=\"white\"/>\n<path id=\"Vector_229\" d=\"M179.219 50.4902H212.969V51.373H179.219V50.4902Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_230\" d=\"M218.987 37.1753H226.221V46.5607H218.987V37.1753Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_231\" d=\"M218.987 60.6973H226.221V70.0827H218.987V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_232\" d=\"M218.987 84.2192H226.221V93.6047H218.987V84.2192Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_233\" d=\"M218.987 107.741H226.221V117.127H218.987V107.741Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_234\" opacity=\"0.5\" d=\"M241.893 69.5923H275.631V74.3494H241.893V69.5923Z\" fill=\"white\"/>\n<path id=\"Vector_235\" opacity=\"0.5\" d=\"M179.285 45.7334H212.993V50.4905H179.285V45.7334Z\" fill=\"white\"/>\n</g>\n<g id=\"House\" clip-path=\"url(#clip2_1849_10311)\">\n<path id=\"Vector_236\" d=\"M180.966 101.642L177.736 104.85L178.049 105.161L181.279 101.952L180.966 101.642Z\" fill=\"#003C57\"/>\n<path id=\"Vector_237\" d=\"M114.431 95.9507H101.169V104.616H114.431V95.9507Z\" fill=\"#206095\"/>\n<g id=\"Vector_238\">\n<path d=\"M184 102.09H177.769V95.9468V95.951L184 102.09Z\" fill=\"white\"/>\n<path d=\"M184 102.09H177.769V95.9468V95.951L184 102.09Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_239\" d=\"M101.17 95.9507H100V104.616H101.17V95.9507Z\" fill=\"#003C57\"/>\n<path id=\"Vector_240\" d=\"M178.126 102.085H177.773V106.036H178.126V102.085Z\" fill=\"#003C57\"/>\n<path id=\"Vector_241\" d=\"M177.774 74.5513H114.431V86.8248H177.774V74.5513Z\" fill=\"#206095\"/>\n<g id=\"Vector_242\">\n<path d=\"M161.935 69.1309H130.266V86.8504H161.935V69.1309Z\" fill=\"white\"/>\n<path d=\"M161.935 69.1309H130.266V86.8504H161.935V69.1309Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_243\" d=\"M146.173 69.1309H146.032V84.8858H146.173V69.1309Z\" fill=\"#003C57\"/>\n<g id=\"Vector_244\">\n<path d=\"M146.1 86.8248L161.935 71.0952L177.769 86.8248V125.804H146.1V86.8248Z\" fill=\"white\"/>\n<path d=\"M146.1 86.8248L161.935 71.0952L177.769 86.8248V125.804H146.1V86.8248Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_245\" d=\"M161.935 71.0955L177.769 86.8251V84.8605L161.935 69.1309L146.1 84.8605V86.8251L161.935 71.0955Z\" fill=\"#003C57\"/>\n<g id=\"Vector_246\">\n<path d=\"M114.431 86.8248L130.266 71.0952L146.1 86.8248V125.804H114.431V86.8248Z\" fill=\"white\"/>\n<path d=\"M114.431 86.8248L130.266 71.0952L146.1 86.8248V125.804H114.431V86.8248Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_247\" d=\"M130.266 71.0955L146.1 86.8251V84.8605L130.266 69.1309L114.431 84.8605V86.8251L130.266 71.0955Z\" fill=\"#003C57\"/>\n<path id=\"Vector_248\" d=\"M167.038 84.7041H162.215V92.026H167.038V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_249\" d=\"M161.73 84.7041H156.831V92.026H161.73V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_250\" d=\"M155.551 92.0218V92.7612H168.327V92.0218H167.532V84.2183H156.35V92.0218H155.555H155.551ZM156.831 84.6999H161.731V92.0218H156.831V84.6999ZM167.043 92.0218H162.22V84.6999H167.043V92.0218Z\" fill=\"#003C57\"/>\n<path id=\"Vector_251\" d=\"M135.369 84.7041H130.546V92.026H135.369V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_252\" d=\"M130.061 84.7041H125.162V92.026H130.061V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_253\" d=\"M123.877 92.0218V92.7612H136.654V92.0218H135.859V84.2183H124.677V92.0218H123.882H123.877ZM125.158 84.6999H130.057V92.0218H125.158V84.6999ZM135.369 92.0218H130.546V84.6999H135.369V92.0218Z\" fill=\"#003C57\"/>\n<g id=\"Vector_254\">\n<path d=\"M114.431 104.583H100.463V124.541H114.431V104.583Z\" fill=\"white\"/>\n<path d=\"M114.431 104.583H100.463V124.541H114.431V104.583Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_255\" d=\"M111.607 109.09H103.288V124.583H111.607V109.09Z\" fill=\"#003C57\"/>\n<g id=\"Vector_256\">\n<path d=\"M110.569 110.122H104.33V124.579H110.569V110.122Z\" fill=\"white\"/>\n<path d=\"M110.569 110.122H104.33V124.579H110.569V110.122Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_257\" d=\"M107.447 115.2C108.553 115.2 109.45 114.309 109.45 113.21C109.45 112.111 108.553 111.22 107.447 111.22C106.341 111.22 105.444 112.111 105.444 113.21C105.444 114.309 106.341 115.2 107.447 115.2Z\" fill=\"white\"/>\n<path id=\"Vector_258\" d=\"M178.479 74.5513H177.773V86.8248H178.479V74.5513Z\" fill=\"#003C57\"/>\n<path id=\"Vector_259\" d=\"M114.431 74.5513H113.725V86.8248H114.431V74.5513Z\" fill=\"#003C57\"/>\n<path id=\"Vector_260\" d=\"M149.817 62.751H146.228V67.3942H149.817V62.751Z\" fill=\"#003C57\"/>\n<path id=\"Vector_261\" d=\"M145.977 62.751H142.387V67.3942H145.977V62.751Z\" fill=\"#003C57\"/>\n<g id=\"Group\" opacity=\"0.75\">\n<g id=\"Vector_262\">\n<path d=\"M142.472 61.813H149.728C149.987 61.813 150.2 62.0242 150.2 62.282C150.2 62.5397 149.987 62.7509 149.728 62.7509H142.472C142.213 62.7509 142 62.5397 142 62.282C142 62.0242 142.213 61.813 142.472 61.813Z\" fill=\"white\"/>\n<path d=\"M142.472 61.813H149.728C149.987 61.813 150.2 62.0242 150.2 62.282C150.2 62.5397 149.987 62.7509 149.728 62.7509H142.472C142.213 62.7509 142 62.5397 142 62.282C142 62.0242 142.213 61.813 142.472 61.813Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n<path id=\"Vector_263\" d=\"M150.914 69.1263H141.29C141.29 68.1672 142.072 67.394 143.033 67.394H149.166C150.132 67.394 150.91 68.1714 150.91 69.1263H150.914Z\" fill=\"#003C57\"/>\n<g id=\"Vector_264\">\n<path d=\"M139.848 109.112H120.683L124.605 102.947H135.926L139.848 109.112Z\" fill=\"white\"/>\n<path d=\"M139.848 109.112H120.683L124.605 102.947H135.926L139.848 109.112Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<g id=\"Vector_265\">\n<path d=\"M171.521 109.112H152.352L156.273 102.947H167.6L171.521 109.112Z\" fill=\"white\"/>\n<path d=\"M171.521 109.112H152.352L156.273 102.947H167.6L171.521 109.112Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_266\" d=\"M158.264 109.297H154.024V117.625H158.264V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_267\" d=\"M153.262 117.313V117.938H161.905V117.313H161.335V109.112H153.836V117.313H153.262ZM160.952 117.313H154.211V109.488H160.952V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_268\" d=\"M169.816 109.297H165.418V117.625H169.816V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_269\" d=\"M161.935 117.313V117.938H170.577V117.313H170.007V109.112H162.509V117.313H161.935ZM169.624 117.313H162.883V109.488H169.624V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_270\" d=\"M165.418 109.297H158.298V117.625H165.418V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_271\" d=\"M157.541 117.313V117.938H166.183V117.313H165.614V109.112H158.115V117.313H157.541ZM165.231 117.313H158.489V109.488H165.231V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_272\" d=\"M126.629 109.297H122.389V117.625H126.629V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_273\" d=\"M121.627 117.313V117.938H130.27V117.313H129.7V109.112H122.202V117.313H121.627ZM129.317 117.313H122.576V109.488H129.317V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_274\" d=\"M138.147 109.297H133.749V117.625H138.147V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_275\" d=\"M130.266 117.313V117.938H138.908V117.313H138.338V109.112H130.84V117.313H130.266ZM137.955 117.313H131.214V109.488H137.955V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_276\" d=\"M133.749 109.297H126.629V117.625H133.749V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_277\" d=\"M125.868 117.313V117.938H134.51V117.313H133.94V109.112H126.442V117.313H125.868ZM133.557 117.313H126.816V109.488H133.557V117.313Z\" fill=\"#003C57\"/>\n<g id=\"Vector_278\">\n<path d=\"M170.577 117.938H165.418V125.8H170.577V117.938Z\" fill=\"white\"/>\n<path d=\"M170.577 117.938H165.418V125.8H170.577V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_279\">\n<path d=\"M138.904 117.938H133.745V125.8H138.904V117.938Z\" fill=\"white\"/>\n<path d=\"M138.904 117.938H133.745V125.8H138.904V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_280\">\n<path d=\"M126.787 117.938H121.627V125.8H126.787V117.938Z\" fill=\"white\"/>\n<path d=\"M126.787 117.938H121.627V125.8H126.787V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_281\">\n<path d=\"M133.749 117.938H126.787V125.8H133.749V117.938Z\" fill=\"white\"/>\n<path d=\"M133.749 117.938H126.787V125.8H133.749V117.938Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_282\">\n<path d=\"M158.477 117.946H153.318V125.809H158.477V117.946Z\" fill=\"white\"/>\n<path d=\"M158.477 117.946H153.318V125.809H158.477V117.946Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_283\">\n<path d=\"M165.422 117.946H158.485V125.809H165.422V117.946Z\" fill=\"white\"/>\n<path d=\"M165.422 117.946H158.485V125.809H165.422V117.946Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n</g>\n</g>\n<g id=\"Tree\">\n<g id=\"Vector_284\">\n<path d=\"M82.1082 62.9994C83.1949 66.5107 84.3987 69.9986 85.3383 73.5419C86.6742 78.5767 87.8142 83.6541 88.7453 87.5021C90.5137 80.9119 92.6082 73.103 94.7026 65.2941C95.003 65.309 95.3013 65.3261 95.6018 65.341C95.5975 66.6556 95.9853 68.0874 95.5293 69.2657C91.3319 80.147 90.5691 91.2968 91.954 102.638C92.0308 103.273 92.2864 103.893 92.5549 104.873C94.4853 102.981 96.1451 101.358 97.8027 99.7321C98.0605 99.9175 98.3184 100.105 98.5762 100.29C97.2743 101.98 96.128 103.787 94.6302 105.325C92.6827 107.326 92.4526 109.584 92.67 112.018C93.0194 115.938 93.3305 119.863 93.7076 123.781C94.057 127.412 93.9484 127.52 89.5549 126.945C89.1906 122.579 88.8241 118.175 88.4534 113.771C88.3809 112.917 88.1487 112.054 88.2318 111.214C89.133 102.05 82.6622 96.3572 76.0273 90.7727C74.5337 89.5156 72.7375 88.544 71.3398 87.1718C79.8646 88.8956 83.4441 95.7478 88.6579 101.015C87.3944 93.4871 86.3206 86.1512 84.8738 78.8729C84.1451 75.2039 82.6579 71.6584 81.6736 68.0214C81.2304 66.3893 81.1792 64.6741 80.9513 62.9951C81.3369 62.9951 81.7226 62.9951 82.1082 62.9972V62.9994Z\" fill=\"white\"/>\n<path d=\"M82.1082 62.9994C83.1949 66.5107 84.3987 69.9986 85.3383 73.5419C86.6742 78.5767 87.8142 83.6541 88.7453 87.5021C90.5137 80.9119 92.6082 73.103 94.7026 65.2941C95.003 65.309 95.3013 65.3261 95.6018 65.341C95.5975 66.6556 95.9853 68.0874 95.5293 69.2657C91.3319 80.147 90.5691 91.2968 91.954 102.638C92.0308 103.273 92.2864 103.893 92.5549 104.873C94.4853 102.981 96.1451 101.358 97.8027 99.7321C98.0605 99.9175 98.3184 100.105 98.5762 100.29C97.2743 101.98 96.128 103.787 94.6302 105.325C92.6827 107.326 92.4526 109.584 92.67 112.018C93.0194 115.938 93.3305 119.863 93.7076 123.781C94.057 127.412 93.9484 127.52 89.5549 126.945C89.1906 122.579 88.8241 118.175 88.4534 113.771C88.3809 112.917 88.1487 112.054 88.2318 111.214C89.133 102.05 82.6622 96.3572 76.0273 90.7727C74.5337 89.5156 72.7375 88.544 71.3398 87.1718C79.8646 88.8956 83.4441 95.7478 88.6579 101.015C87.3944 93.4871 86.3206 86.1512 84.8738 78.8729C84.1451 75.2039 82.6579 71.6584 81.6736 68.0214C81.2304 66.3893 81.1792 64.6741 80.9513 62.9951C81.3369 62.9951 81.7226 62.9951 82.1082 62.9972V62.9994Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_285\">\n<path d=\"M96.5969 84.7475C99.5586 82.9833 102.812 82.8895 107.039 85.7126C111.267 88.5379 112.159 90.415 112.413 91.6657C112.666 92.9164 114.588 93.7027 114.068 96.2041C113.549 98.7034 108.573 101.348 105.345 101.65C102.12 101.955 101.444 101.639 97.6133 101.004C93.7823 100.37 90.7056 99.4235 89.3036 96.2936C87.9017 93.1636 93.4627 86.6139 96.5991 84.7475H96.5969Z\" fill=\"white\"/>\n<path d=\"M96.5969 84.7475C99.5586 82.9833 102.812 82.8895 107.039 85.7126C111.267 88.5379 112.159 90.415 112.413 91.6657C112.666 92.9164 114.588 93.7027 114.068 96.2041C113.549 98.7034 108.573 101.348 105.345 101.65C102.12 101.955 101.444 101.639 97.6133 101.004C93.7823 100.37 90.7056 99.4235 89.3036 96.2936C87.9017 93.1636 93.4627 86.6139 96.5991 84.7475H96.5969Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_286\">\n<path d=\"M65.257 75.6538C68.6597 73.9919 72.4011 73.9024 77.2612 76.5722C82.1212 79.2398 83.1482 81.0125 83.4401 82.195C83.732 83.3754 85.9437 84.119 85.3449 86.4777C84.7484 88.8363 79.0296 91.3271 75.3223 91.6126C71.6128 91.8981 70.8372 91.5998 66.4331 90.9989C62.029 90.396 58.4921 89.5032 56.877 86.548C55.262 83.5927 61.6519 77.4159 65.257 75.656V75.6538Z\" fill=\"white\"/>\n<path d=\"M65.257 75.6538C68.6597 73.9919 72.4011 73.9024 77.2612 76.5722C82.1212 79.2398 83.1482 81.0125 83.4401 82.195C83.732 83.3754 85.9437 84.119 85.3449 86.4777C84.7484 88.8363 79.0296 91.3271 75.3223 91.6126C71.6128 91.8981 70.8372 91.5998 66.4331 90.9989C62.029 90.396 58.4921 89.5032 56.877 86.548C55.262 83.5927 61.6519 77.4159 65.257 75.656V75.6538Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_287\">\n<path d=\"M81.4753 52.7554C74.5101 56.3072 70.172 58.0373 68.3418 59.859C66.5115 61.6808 62.1799 66.9797 64.66 70.8043C67.1401 74.6288 67.9625 77.6203 74.9341 77.3071C81.9078 76.9939 84.7309 76.0053 90.3751 76.5188C96.0171 77.0322 101.005 74.5053 102.17 73.2887C103.336 72.072 106.837 66.4385 102.202 61.4443C97.5682 56.4521 87.6265 49.619 81.4753 52.7554Z\" fill=\"white\"/>\n<path d=\"M81.4753 52.7554C74.5101 56.3072 70.172 58.0373 68.3418 59.859C66.5115 61.6808 62.1799 66.9797 64.66 70.8043C67.1401 74.6288 67.9625 77.6203 74.9341 77.3071C81.9078 76.9939 84.7309 76.0053 90.3751 76.5188C96.0171 77.0322 101.005 74.5053 102.17 73.2887C103.336 72.072 106.837 66.4385 102.202 61.4443C97.5682 56.4521 87.6265 49.619 81.4753 52.7554Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_288\">\n<path d=\"M94.7559 54.5452C98.4888 51.6326 102.586 51.4706 107.909 56.1283C113.231 60.7859 114.354 63.8839 114.671 65.9486C114.989 68.0132 117.409 69.3086 116.753 73.4357C116.095 77.5607 109.824 81.9286 105.759 82.4336C101.693 82.9385 100.843 82.4208 96.0194 81.3746C91.1955 80.3285 87.3198 78.7709 85.5556 73.6083C83.7914 68.4436 90.8056 57.6304 94.758 54.5452H94.7559Z\" fill=\"white\"/>\n<path d=\"M94.7559 54.5452C98.4888 51.6326 102.586 51.4706 107.909 56.1283C113.231 60.7859 114.354 63.8839 114.671 65.9486C114.989 68.0132 117.409 69.3086 116.753 73.4357C116.095 77.5607 109.824 81.9286 105.759 82.4336C101.693 82.9385 100.843 82.4208 96.0194 81.3746C91.1955 80.3285 87.3198 78.7709 85.5556 73.6083C83.7914 68.4436 90.8056 57.6304 94.758 54.5452H94.7559Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_289\">\n<path d=\"M98.0287 128.111C96.3092 127.772 96.305 126.155 94.349 126.33C93.6097 126.396 93.158 126.671 92.4612 126.594C91.8945 126.532 91.1232 125.328 88.9733 125.887C87.3775 126.302 87.8142 127.131 86.7937 127.389C85.7049 127.666 84.6353 128.047 83.5572 128.384C83.5721 128.463 83.587 129.453 83.5998 129.53C88.6346 129.53 95.359 129.53 100.392 129.53C100.313 129.066 98.2737 128.158 98.0266 128.109L98.0287 128.111Z\" fill=\"white\"/>\n<path d=\"M98.0287 128.111C96.3092 127.772 96.305 126.155 94.349 126.33C93.6097 126.396 93.158 126.671 92.4612 126.594C91.8945 126.532 91.1232 125.328 88.9733 125.887C87.3775 126.302 87.8142 127.131 86.7937 127.389C85.7049 127.666 84.6353 128.047 83.5572 128.384C83.5721 128.463 83.587 129.453 83.5998 129.53C88.6346 129.53 95.359 129.53 100.392 129.53C100.313 129.066 98.2737 128.158 98.0266 128.109L98.0287 128.111Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n</g>\n<g id=\"Tree_2\">\n<g id=\"Vector_290\">\n<path d=\"M491.503 67.6656C490.493 70.9307 489.373 74.174 488.499 77.4688C487.257 82.1505 486.197 86.8719 485.331 90.45C483.687 84.322 481.739 77.0607 479.792 69.7994C479.513 69.8133 479.235 69.8291 478.956 69.843C478.96 71.0654 478.599 72.3968 479.023 73.4925C482.926 83.6107 483.636 93.9786 482.348 104.525C482.276 105.115 482.039 105.692 481.789 106.603C479.994 104.844 478.451 103.334 476.909 101.822C476.669 101.995 476.43 102.169 476.19 102.342C477.4 103.913 478.466 105.593 479.859 107.023C481.67 108.884 481.884 110.984 481.682 113.246C481.357 116.892 481.068 120.541 480.717 124.185C480.392 127.561 480.493 127.662 484.579 127.127C484.917 123.067 485.258 118.972 485.603 114.877C485.67 114.082 485.886 113.28 485.809 112.499C484.971 103.978 490.988 98.6841 497.158 93.4912C498.546 92.3223 500.217 91.4189 501.516 90.1429C493.589 91.7458 490.261 98.1175 485.413 103.015C486.588 96.0154 487.586 89.1939 488.931 82.4259C489.609 79.0142 490.992 75.7174 491.907 72.3354C492.319 70.8178 492.367 69.2229 492.579 67.6616C492.22 67.6616 491.862 67.6616 491.503 67.6636V67.6656Z\" fill=\"white\"/>\n<path d=\"M491.503 67.6656C490.493 70.9307 489.373 74.174 488.499 77.4688C487.257 82.1505 486.197 86.8719 485.331 90.45C483.687 84.322 481.739 77.0607 479.792 69.7994C479.513 69.8133 479.235 69.8291 478.956 69.843C478.96 71.0654 478.599 72.3968 479.023 73.4925C482.926 83.6107 483.636 93.9786 482.348 104.525C482.276 105.115 482.039 105.692 481.789 106.603C479.994 104.844 478.451 103.334 476.909 101.822C476.669 101.995 476.43 102.169 476.19 102.342C477.4 103.913 478.466 105.593 479.859 107.023C481.67 108.884 481.884 110.984 481.682 113.246C481.357 116.892 481.068 120.541 480.717 124.185C480.392 127.561 480.493 127.662 484.579 127.127C484.917 123.067 485.258 118.972 485.603 114.877C485.67 114.082 485.886 113.28 485.809 112.499C484.971 103.978 490.988 98.6841 497.158 93.4912C498.546 92.3223 500.217 91.4189 501.516 90.1429C493.589 91.7458 490.261 98.1175 485.413 103.015C486.588 96.0154 487.586 89.1939 488.931 82.4259C489.609 79.0142 490.992 75.7174 491.907 72.3354C492.319 70.8178 492.367 69.2229 492.579 67.6616C492.22 67.6616 491.862 67.6616 491.503 67.6636V67.6656Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_291\">\n<path d=\"M478.031 87.8881C475.277 86.2476 472.252 86.1604 468.321 88.7856C464.39 91.4127 463.56 93.1582 463.324 94.3212C463.088 95.4842 461.301 96.2153 461.785 98.5413C462.268 100.865 466.894 103.324 469.896 103.605C472.896 103.889 473.524 103.595 477.086 103.005C480.648 102.415 483.509 101.535 484.813 98.6245C486.117 95.714 480.945 89.6237 478.029 87.8881H478.031Z\" fill=\"white\"/>\n<path d=\"M478.031 87.8881C475.277 86.2476 472.252 86.1604 468.321 88.7856C464.39 91.4127 463.56 93.1582 463.324 94.3212C463.088 95.4842 461.301 96.2153 461.785 98.5413C462.268 100.865 466.894 103.324 469.896 103.605C472.896 103.889 473.524 103.595 477.086 103.005C480.648 102.415 483.509 101.535 484.813 98.6245C486.117 95.714 480.945 89.6237 478.029 87.8881H478.031Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_292\">\n<path d=\"M507.173 79.4324C504.009 77.887 500.53 77.8038 496.01 80.2863C491.491 82.7669 490.536 84.4153 490.265 85.5149C489.993 86.6125 487.937 87.3039 488.494 89.4972C489.048 91.6904 494.366 94.0065 497.813 94.272C501.263 94.5375 501.984 94.2601 506.079 93.7014C510.174 93.1407 513.463 92.3106 514.965 89.5626C516.467 86.8146 510.525 81.0709 507.173 79.4344V79.4324Z\" fill=\"white\"/>\n<path d=\"M507.173 79.4324C504.009 77.887 500.53 77.8038 496.01 80.2863C491.491 82.7669 490.536 84.4153 490.265 85.5149C489.993 86.6125 487.937 87.3039 488.494 89.4972C489.048 91.6904 494.366 94.0065 497.813 94.272C501.263 94.5375 501.984 94.2601 506.079 93.7014C510.174 93.1407 513.463 92.3106 514.965 89.5626C516.467 86.8146 510.525 81.0709 507.173 79.4344V79.4324Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_293\">\n<path d=\"M492.092 58.1396C498.568 61.4424 502.602 63.0512 504.304 64.7451C506.006 66.4391 510.034 71.3665 507.728 74.9229C505.422 78.4792 504.657 81.2609 498.174 80.9696C491.689 80.6784 489.064 79.7591 483.816 80.2366C478.57 80.7141 473.931 78.3643 472.848 77.233C471.764 76.1017 468.509 70.8633 472.818 66.2192C477.127 61.5771 486.372 55.2232 492.092 58.1396Z\" fill=\"white\"/>\n<path d=\"M492.092 58.1396C498.568 61.4424 502.602 63.0512 504.304 64.7451C506.006 66.4391 510.034 71.3665 507.728 74.9229C505.422 78.4792 504.657 81.2609 498.174 80.9696C491.689 80.6784 489.064 79.7591 483.816 80.2366C478.57 80.7141 473.931 78.3643 472.848 77.233C471.764 76.1017 468.509 70.8633 472.818 66.2192C477.127 61.5771 486.372 55.2232 492.092 58.1396Z\" fill=\"#206095\" fill-opacity=\"0.75\"/>\n</g>\n<g id=\"Vector_294\">\n<path d=\"M479.743 59.8037C476.271 57.0953 472.461 56.9447 467.512 61.2757C462.563 65.6068 461.519 68.4875 461.224 70.4073C460.929 72.3272 458.678 73.5318 459.288 77.3695C459.9 81.2052 465.731 85.2668 469.511 85.7363C473.292 86.2059 474.082 85.7244 478.568 84.7516C483.053 83.7788 486.657 82.3305 488.298 77.53C489.938 72.7274 483.416 62.6725 479.741 59.8037H479.743Z\" fill=\"white\"/>\n<path d=\"M479.743 59.8037C476.271 57.0953 472.461 56.9447 467.512 61.2757C462.563 65.6068 461.519 68.4875 461.224 70.4073C460.929 72.3272 458.678 73.5318 459.288 77.3695C459.9 81.2052 465.731 85.2668 469.511 85.7363C473.292 86.2059 474.082 85.7244 478.568 84.7516C483.053 83.7788 486.657 82.3305 488.298 77.53C489.938 72.7274 483.416 62.6725 479.741 59.8037H479.743Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_295\">\n<path d=\"M476.7 128.211C478.299 127.896 478.302 126.392 480.121 126.554C480.809 126.616 481.229 126.871 481.877 126.8C482.404 126.743 483.121 125.623 485.12 126.142C486.604 126.529 486.198 127.299 487.147 127.539C488.159 127.797 489.154 128.151 490.156 128.464C490.142 128.538 490.129 129.459 490.117 129.53C485.435 129.53 479.182 129.53 474.502 129.53C474.576 129.098 476.472 128.254 476.702 128.209L476.7 128.211Z\" fill=\"white\"/>\n<path d=\"M476.7 128.211C478.299 127.896 478.302 126.392 480.121 126.554C480.809 126.616 481.229 126.871 481.877 126.8C482.404 126.743 483.121 125.623 485.12 126.142C486.604 126.529 486.198 127.299 487.147 127.539C488.159 127.797 489.154 128.151 490.156 128.464C490.142 128.538 490.129 129.459 490.117 129.53C485.435 129.53 479.182 129.53 474.502 129.53C474.576 129.098 476.472 128.254 476.702 128.209L476.7 128.211Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n</g>\n<g id=\"Icons\">\n<g id=\"Group 382\">\n<path id=\"Vector 1\" d=\"M73.3804 142.105H627.845\" stroke=\"#206095\" stroke-width=\"3\" stroke-dasharray=\"6 6\"/>\n<g id=\"Ellipse 16\">\n<circle cx=\"65.6123\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"65.6123\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"65.6123\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 17\">\n<circle cx=\"207.806\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"207.806\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"207.806\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 18\">\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" fill=\"#FBC900\" fill-opacity=\"0.4\"/>\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 19\">\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 20\">\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n</g>\n<g id=\"Artwork 64x64_2\">\n<path id=\"Vector_296\" d=\"M479.913 124.463V159.748C479.913 160.108 480.056 160.453 480.311 160.708C480.565 160.962 480.91 161.105 481.27 161.105H505.699C506.059 161.105 506.404 160.962 506.658 160.708C506.913 160.453 507.056 160.108 507.056 159.748V131.248L498.913 123.105H481.27C480.91 123.105 480.565 123.248 480.311 123.503C480.056 123.757 479.913 124.103 479.913 124.463Z\" fill=\"#003C57\"/>\n<path id=\"Vector_297\" d=\"M500.27 131.248H507.056L498.913 123.105V129.891C498.913 130.251 499.056 130.596 499.311 130.851C499.565 131.105 499.91 131.248 500.27 131.248Z\" fill=\"#4D7789\"/>\n<path id=\"Vector_298\" d=\"M496.701 136.5C494.983 135.609 493.065 135.176 491.131 135.243C489.197 135.31 487.313 135.873 485.661 136.88C485.511 136.977 485.404 137.128 485.365 137.302C485.326 137.476 485.356 137.658 485.45 137.81C485.498 137.886 485.559 137.952 485.632 138.004C485.704 138.056 485.787 138.093 485.874 138.113C485.961 138.133 486.051 138.136 486.139 138.121C486.227 138.106 486.311 138.074 486.387 138.027C487.838 137.133 489.498 136.634 491.201 136.58C492.905 136.526 494.593 136.92 496.097 137.722C498.974 139.133 500.983 141.617 501.207 144.039C501.224 144.207 501.303 144.363 501.428 144.476C501.554 144.589 501.717 144.651 501.885 144.65H501.953C502.132 144.633 502.297 144.545 502.412 144.407C502.526 144.268 502.581 144.089 502.564 143.91C502.306 141.026 499.985 138.122 496.701 136.5Z\" fill=\"white\"/>\n<path id=\"Vector_299\" d=\"M489.63 134.173C494.027 133.495 498.085 134.852 500.766 137.953C500.83 138.026 500.909 138.085 500.998 138.124C501.087 138.164 501.184 138.184 501.281 138.184C501.41 138.182 501.536 138.144 501.645 138.074C501.753 138.003 501.839 137.903 501.892 137.786C501.946 137.668 501.965 137.538 501.946 137.41C501.928 137.282 501.874 137.162 501.79 137.064C498.798 133.596 494.292 132.056 489.413 132.836C489.324 132.85 489.238 132.881 489.161 132.928C489.084 132.975 489.017 133.037 488.964 133.11C488.911 133.182 488.872 133.265 488.851 133.352C488.83 133.44 488.826 133.531 488.84 133.62C488.853 133.709 488.885 133.795 488.932 133.872C488.978 133.949 489.04 134.016 489.113 134.069C489.186 134.122 489.268 134.161 489.356 134.182C489.443 134.203 489.534 134.207 489.623 134.194L489.63 134.173Z\" fill=\"white\"/>\n<path id=\"Vector_300\" d=\"M497.094 140.171C494.054 137.891 491.286 137.851 489.494 138.224C487.262 138.685 485.47 140.009 484.86 141.074C484.815 141.152 484.786 141.238 484.775 141.327C484.764 141.416 484.771 141.506 484.795 141.593C484.819 141.679 484.86 141.76 484.915 141.83C484.97 141.901 485.039 141.96 485.118 142.004C485.271 142.086 485.451 142.106 485.619 142.059C485.787 142.012 485.931 141.902 486.02 141.752C486.949 140.586 488.275 139.804 489.745 139.554C491.265 139.242 493.627 139.276 496.26 141.257C501.173 144.935 498.974 150.934 497.108 153.587C497.056 153.66 497.02 153.743 497 153.831C496.981 153.918 496.979 154.009 496.994 154.097C497.01 154.186 497.043 154.27 497.092 154.345C497.141 154.421 497.204 154.486 497.278 154.537C497.351 154.59 497.435 154.627 497.523 154.647C497.611 154.667 497.703 154.669 497.792 154.654C497.881 154.638 497.966 154.604 498.042 154.555C498.118 154.506 498.183 154.442 498.234 154.367C502.442 148.348 500.589 142.784 497.094 140.171Z\" fill=\"white\"/>\n<path id=\"Vector_301\" d=\"M497.488 145.776C497.256 144.906 496.839 144.096 496.265 143.401C495.691 142.707 494.974 142.144 494.163 141.753C493.163 141.232 492.043 140.987 490.917 141.043C489.791 141.099 488.701 141.454 487.757 142.071C486.851 142.804 486.074 143.682 485.457 144.67C485.301 144.907 485.131 145.133 484.948 145.349C484.84 145.483 484.787 145.654 484.8 145.826C484.813 145.997 484.89 146.158 485.017 146.275C485.144 146.391 485.311 146.455 485.483 146.453C485.656 146.452 485.821 146.384 485.946 146.265C486.175 145.993 486.388 145.708 486.583 145.41C487.108 144.548 487.776 143.782 488.558 143.144C489.296 142.675 490.144 142.408 491.017 142.371C491.89 142.334 492.758 142.528 493.532 142.933C494.182 143.231 494.758 143.669 495.219 144.216C495.68 144.763 496.015 145.404 496.199 146.095C496.64 147.914 496.056 151.673 492.643 154.591C492.575 154.649 492.52 154.72 492.479 154.799C492.439 154.879 492.415 154.965 492.408 155.054C492.401 155.143 492.411 155.232 492.439 155.317C492.467 155.402 492.511 155.48 492.568 155.548C492.632 155.622 492.711 155.682 492.8 155.723C492.889 155.764 492.986 155.785 493.084 155.785C493.246 155.785 493.402 155.728 493.525 155.623C497.128 152.521 498.112 148.341 497.488 145.776Z\" fill=\"white\"/>\n<path id=\"Vector_302\" d=\"M492.046 144.141C491.328 143.939 490.562 143.993 489.881 144.296C489.199 144.598 488.645 145.129 488.314 145.797C487.425 147.595 486.834 148.43 485.498 148.952C485.326 149.022 485.188 149.156 485.116 149.327C485.043 149.497 485.041 149.69 485.111 149.862C485.18 150.034 485.315 150.171 485.485 150.243C485.656 150.316 485.848 150.318 486.02 150.249C487.913 149.509 488.68 148.213 489.555 146.435C489.757 146.046 490.087 145.74 490.489 145.568C490.891 145.396 491.341 145.369 491.761 145.492C492.237 145.582 492.668 145.834 492.981 146.205C493.293 146.575 493.469 147.043 493.478 147.527C493.478 150.466 490.173 153.255 489.291 153.743C489.169 153.818 489.073 153.929 489.018 154.061C488.963 154.194 488.951 154.34 488.984 154.479C489.018 154.619 489.094 154.744 489.203 154.837C489.311 154.93 489.447 154.987 489.589 154.999C489.703 154.999 489.815 154.971 489.915 154.917C491.17 154.239 494.808 151.07 494.808 147.507C494.806 146.714 494.53 145.945 494.027 145.332C493.523 144.718 492.824 144.298 492.046 144.141Z\" fill=\"white\"/>\n<path id=\"Vector_303\" d=\"M491.978 147.975C492.029 147.807 492.013 147.626 491.933 147.469C491.853 147.313 491.716 147.194 491.55 147.136C491.383 147.079 491.202 147.089 491.042 147.163C490.883 147.237 490.759 147.37 490.696 147.534C490.006 149.344 488.627 150.808 486.862 151.605C486.715 151.664 486.593 151.771 486.517 151.91C486.44 152.048 486.415 152.209 486.445 152.364C486.475 152.52 486.558 152.66 486.68 152.76C486.802 152.861 486.955 152.916 487.113 152.915C487.199 152.915 487.284 152.899 487.364 152.868C488.42 152.401 489.373 151.727 490.165 150.887C490.957 150.047 491.574 149.057 491.978 147.975Z\" fill=\"white\"/>\n</g>\n<g id=\"Artwork 64x64_3\">\n<path id=\"Vector_304\" d=\"M634.346 155.445H634.16V153.695C634.16 153.463 634.071 153.24 633.912 153.076C633.753 152.912 633.537 152.82 633.312 152.82H619.749C619.524 152.82 619.308 152.912 619.149 153.076C618.99 153.24 618.901 153.463 618.901 153.695V155.445H618.715C618.405 155.444 618.098 155.506 617.811 155.628C617.525 155.75 617.265 155.929 617.046 156.155C616.827 156.381 616.653 156.65 616.535 156.945C616.417 157.241 616.357 157.558 616.358 157.878V158.945C616.358 159.177 616.447 159.4 616.606 159.564C616.765 159.728 616.981 159.82 617.206 159.82H635.855C636.08 159.82 636.296 159.728 636.455 159.564C636.614 159.4 636.703 159.177 636.703 158.945V157.878C636.704 157.558 636.644 157.241 636.526 156.945C636.408 156.65 636.234 156.381 636.015 156.155C635.796 155.929 635.536 155.75 635.25 155.628C634.963 155.506 634.656 155.444 634.346 155.445Z\" fill=\"#206095\"/>\n<path id=\"Vector_305\" d=\"M656.548 155.594L639.772 138.268C639.568 138.059 639.317 137.907 639.041 137.826C638.765 137.745 638.474 137.737 638.195 137.804L634.278 133.761L637.296 130.646C637.597 130.333 637.766 129.91 637.766 129.469C637.766 129.028 637.597 128.605 637.296 128.292L637.237 128.231L637.83 127.609C637.988 127.772 638.175 127.901 638.381 127.989C638.586 128.077 638.807 128.123 639.03 128.123C639.253 128.123 639.473 128.077 639.679 127.989C639.885 127.901 640.072 127.772 640.229 127.609L640.831 126.997C640.989 126.834 641.114 126.641 641.199 126.429C641.285 126.216 641.329 125.989 641.329 125.759C641.329 125.529 641.285 125.301 641.199 125.088C641.114 124.876 640.989 124.683 640.831 124.52L634.838 118.334C634.68 118.171 634.493 118.042 634.288 117.954C634.082 117.866 633.861 117.82 633.638 117.82C633.416 117.82 633.195 117.866 632.989 117.954C632.783 118.042 632.596 118.171 632.439 118.334L631.837 118.946C631.679 119.109 631.554 119.302 631.469 119.514C631.384 119.727 631.34 119.954 631.34 120.184C631.34 120.414 631.384 120.642 631.469 120.855C631.554 121.067 631.679 121.26 631.837 121.423L631.244 122.044L631.176 121.983C631.027 121.827 630.851 121.703 630.656 121.619C630.461 121.535 630.251 121.491 630.04 121.491C629.828 121.491 629.619 121.535 629.424 121.619C629.229 121.703 629.052 121.827 628.904 121.983L620.427 130.733C620.276 130.886 620.156 131.069 620.075 131.27C619.993 131.471 619.951 131.688 619.951 131.906C619.951 132.124 619.993 132.34 620.075 132.541C620.156 132.743 620.276 132.925 620.427 133.078L620.486 133.148L619.884 133.761C619.727 133.598 619.54 133.469 619.334 133.381C619.128 133.293 618.908 133.248 618.685 133.248C618.462 133.248 618.241 133.293 618.035 133.381C617.83 133.469 617.643 133.598 617.485 133.761L616.892 134.382C616.734 134.545 616.609 134.738 616.524 134.95C616.438 135.163 616.395 135.39 616.395 135.62C616.395 135.85 616.438 136.078 616.524 136.291C616.609 136.503 616.734 136.696 616.892 136.859L622.885 143.045C623.043 143.208 623.23 143.337 623.435 143.425C623.641 143.513 623.862 143.559 624.085 143.559C624.307 143.559 624.528 143.513 624.734 143.425C624.94 143.337 625.127 143.208 625.284 143.045L625.878 142.424C626.035 142.262 626.16 142.069 626.246 141.856C626.331 141.644 626.375 141.416 626.375 141.186C626.375 140.956 626.331 140.728 626.246 140.516C626.16 140.303 626.035 140.11 625.878 139.948L626.479 139.335L626.539 139.396C626.842 139.707 627.252 139.881 627.679 139.881C628.106 139.881 628.516 139.707 628.819 139.396L631.913 136.202L635.787 140.201C635.696 140.505 635.687 140.828 635.76 141.136C635.833 141.444 635.986 141.726 636.203 141.952L652.988 159.269C653.145 159.432 653.332 159.561 653.538 159.649C653.744 159.737 653.964 159.782 654.187 159.782C654.41 159.782 654.631 159.737 654.836 159.649C655.042 159.561 655.229 159.432 655.387 159.269L656.548 158.07C656.706 157.908 656.831 157.715 656.916 157.502C657.001 157.29 657.045 157.062 657.045 156.832C657.045 156.602 657.001 156.374 656.916 156.162C656.831 155.949 656.706 155.756 656.548 155.594Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Artwork 64x64_4\">\n<g id=\"Group 384\">\n<path id=\"Vector_306\" d=\"M52.8686 119.407C50.5757 119.407 48.3342 120.087 46.4277 121.361C44.5213 122.634 43.0353 124.445 42.1579 126.563C41.2804 128.682 41.0508 131.013 41.4982 133.262C41.9455 135.51 43.0496 137.576 44.671 139.198C46.2923 140.819 48.358 141.923 50.6069 142.37C52.8557 142.818 55.1867 142.588 57.3051 141.711C59.4235 140.833 61.2341 139.347 62.5079 137.441C63.7818 135.534 64.4618 133.293 64.4618 131C64.4618 127.925 63.2403 124.976 61.0662 122.802C58.892 120.628 55.9433 119.407 52.8686 119.407Z\" fill=\"white\"/>\n<path id=\"Vector_307\" d=\"M52.8437 137.128C53.7583 137.128 54.4998 136.386 54.4998 135.472C54.4998 134.557 53.7583 133.815 52.8437 133.815C51.929 133.815 51.1875 134.557 51.1875 135.472C51.1875 136.386 51.929 137.128 52.8437 137.128Z\" fill=\"#206095\"/>\n<path id=\"Vector_308\" d=\"M54.3588 131.973C54.3524 132.079 54.306 132.178 54.2291 132.25C54.1521 132.322 54.0504 132.362 53.9447 132.362H51.7917C51.6861 132.362 51.5844 132.322 51.5074 132.25C51.4304 132.178 51.384 132.079 51.3777 131.973L50.9636 125.29C50.9602 125.234 50.9684 125.177 50.9877 125.124C51.007 125.071 51.037 125.023 51.0758 124.981C51.1146 124.94 51.1614 124.908 51.2133 124.885C51.2652 124.863 51.3212 124.851 51.3777 124.852H54.3422C54.3987 124.851 54.4547 124.863 54.5066 124.885C54.5585 124.908 54.6053 124.94 54.6441 124.981C54.6829 125.023 54.7129 125.071 54.7322 125.124C54.7515 125.177 54.7597 125.234 54.7563 125.29L54.3588 131.973Z\" fill=\"#206095\"/>\n</g>\n<path id=\"Vector_309\" d=\"M70.9162 146.415H65.3567C61.6706 146.415 58.1354 147.879 55.5289 150.485C52.9223 153.092 51.458 156.627 51.458 160.313H84.815C84.815 158.488 84.4555 156.681 83.757 154.994C83.0585 153.308 82.0347 151.776 80.7441 150.485C79.4535 149.195 77.9213 148.171 76.235 147.473C74.5488 146.774 72.7414 146.415 70.9162 146.415Z\" fill=\"#003C57\"/>\n<path id=\"Vector_310\" d=\"M68.1366 143.635C72.7422 143.635 76.4758 139.901 76.4758 135.295C76.4758 130.69 72.7422 126.956 68.1366 126.956C63.531 126.956 59.7974 130.69 59.7974 135.295C59.7974 139.901 63.531 143.635 68.1366 143.635Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Artwork 64x64_5\">\n<path id=\"Vector_311\" d=\"M194.282 124.463V159.748C194.282 160.108 194.425 160.453 194.68 160.708C194.934 160.962 195.279 161.105 195.639 161.105H220.068C220.428 161.105 220.773 160.962 221.028 160.708C221.282 160.453 221.425 160.108 221.425 159.748V131.248L213.282 123.105H195.639C195.279 123.105 194.934 123.248 194.68 123.503C194.425 123.757 194.282 124.103 194.282 124.463Z\" fill=\"#003C57\"/>\n<path id=\"Vector_312\" d=\"M214.639 131.248H221.425L213.282 123.105V129.891C213.282 130.251 213.425 130.596 213.68 130.851C213.934 131.105 214.279 131.248 214.639 131.248Z\" fill=\"#4D7789\"/>\n<path id=\"Vector_313\" d=\"M213.282 151.266H199.711C199.441 151.266 199.182 151.159 198.991 150.968C198.8 150.777 198.693 150.518 198.693 150.248C198.693 149.978 198.8 149.719 198.991 149.529C199.182 149.338 199.441 149.23 199.711 149.23H213.282C213.552 149.23 213.811 149.338 214.002 149.529C214.193 149.719 214.3 149.978 214.3 150.248C214.3 150.518 214.193 150.777 214.002 150.968C213.811 151.159 213.552 151.266 213.282 151.266Z\" fill=\"white\"/>\n<path id=\"Vector_314\" d=\"M213.282 146.516H199.711C199.441 146.516 199.182 146.409 198.991 146.218C198.8 146.027 198.693 145.768 198.693 145.498C198.693 145.228 198.8 144.969 198.991 144.779C199.182 144.588 199.441 144.48 199.711 144.48H213.282C213.552 144.48 213.811 144.588 214.002 144.779C214.193 144.969 214.3 145.228 214.3 145.498C214.3 145.768 214.193 146.027 214.002 146.218C213.811 146.409 213.552 146.516 213.282 146.516Z\" fill=\"white\"/>\n<path id=\"Vector_315\" d=\"M213.282 141.766H199.711C199.441 141.766 199.182 141.659 198.991 141.468C198.8 141.277 198.693 141.018 198.693 140.748C198.693 140.478 198.8 140.219 198.991 140.029C199.182 139.838 199.441 139.73 199.711 139.73H213.282C213.552 139.73 213.811 139.838 214.002 140.029C214.193 140.219 214.3 140.478 214.3 140.748C214.3 141.018 214.193 141.277 214.002 141.468C213.811 141.659 213.552 141.766 213.282 141.766Z\" fill=\"white\"/>\n<path id=\"Vector_316\" d=\"M207.854 137.016H199.711C199.441 137.016 199.182 136.909 198.991 136.718C198.8 136.527 198.693 136.268 198.693 135.998C198.693 135.728 198.8 135.469 198.991 135.279C199.182 135.088 199.441 134.98 199.711 134.98H207.854C208.124 134.98 208.382 135.088 208.573 135.279C208.764 135.469 208.871 135.728 208.871 135.998C208.871 136.268 208.764 136.527 208.573 136.718C208.382 136.909 208.124 137.016 207.854 137.016Z\" fill=\"white\"/>\n<g id=\"Vector_317\">\n<path d=\"M226.406 140.864L215.067 152.203C214.98 152.284 214.876 152.345 214.761 152.379L212.604 152.963C212.546 152.978 212.486 152.977 212.429 152.962C212.372 152.946 212.32 152.916 212.278 152.874C212.236 152.832 212.206 152.78 212.191 152.723C212.175 152.666 212.175 152.606 212.19 152.549L212.766 150.364C212.794 150.247 212.855 150.14 212.943 150.058L224.248 138.713C224.534 138.427 224.922 138.266 225.327 138.266C225.731 138.266 226.119 138.427 226.406 138.713C226.69 138.999 226.849 139.385 226.849 139.788C226.849 140.191 226.69 140.578 226.406 140.864Z\" fill=\"white\"/>\n<path d=\"M226.406 140.864L215.067 152.203C214.98 152.284 214.876 152.345 214.761 152.379L212.604 152.963C212.546 152.978 212.486 152.977 212.429 152.962C212.372 152.946 212.32 152.916 212.278 152.874C212.236 152.832 212.206 152.78 212.191 152.723C212.175 152.666 212.175 152.606 212.19 152.549L212.766 150.364C212.794 150.247 212.855 150.14 212.943 150.058L224.248 138.713C224.534 138.427 224.922 138.266 225.327 138.266C225.731 138.266 226.119 138.427 226.406 138.713C226.69 138.999 226.849 139.385 226.849 139.788C226.849 140.191 226.69 140.578 226.406 140.864Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n<g id=\"Group 386\">\n<g id=\"Artwork 64x64_6\">\n<path id=\"Vector_318\" d=\"M370 133.813V153.813C370 154.874 369.579 155.891 368.828 156.641C368.078 157.392 367.061 157.813 366 157.813H334C332.939 157.813 331.922 157.392 331.172 156.641C330.421 155.891 330 154.874 330 153.813V129.813C330 128.752 330.421 127.735 331.172 126.985C331.922 126.234 332.939 125.813 334 125.813H344.333C344.863 125.81 345.388 125.912 345.878 126.114C346.367 126.315 346.812 126.612 347.187 126.986L350 129.813H366C367.061 129.813 368.078 130.234 368.828 130.985C369.579 131.735 370 132.752 370 133.813Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Group 385\">\n<path id=\"Vector_319\" d=\"M346.333 145.229H343.667C341.899 145.229 340.203 145.932 338.953 147.182C337.702 148.432 337 150.128 337 151.896H353C353 151.021 352.828 150.154 352.493 149.345C352.157 148.536 351.666 147.801 351.047 147.182C350.428 146.563 349.693 146.072 348.885 145.737C348.076 145.402 347.209 145.229 346.333 145.229Z\" fill=\"white\"/>\n<path id=\"Vector_320\" d=\"M345 143.896C347.209 143.896 349 142.105 349 139.896C349 137.687 347.209 135.896 345 135.896C342.791 135.896 341 137.687 341 139.896C341 142.105 342.791 143.896 345 143.896Z\" fill=\"white\"/>\n</g>\n<g id=\"Union\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M373.813 143.561C374.027 143.363 374.027 143.024 373.813 142.826L366.365 135.947C366.045 135.651 365.526 135.878 365.526 136.314V139.72H359C358.448 139.72 358 140.167 358 140.72V145.667C358 146.219 358.448 146.667 359 146.667H365.526V150.073C365.526 150.509 366.045 150.736 366.365 150.44L373.813 143.561Z\" fill=\"white\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M373.813 143.561C374.027 143.363 374.027 143.024 373.813 142.826L366.365 135.947C366.045 135.651 365.526 135.878 365.526 136.314V139.72H359C358.448 139.72 358 140.167 358 140.72V145.667C358 146.219 358.448 146.667 359 146.667H365.526V150.073C365.526 150.509 366.045 150.736 366.365 150.44L373.813 143.561Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n</g>\n</g>\n</g>\n<g id=\"Title\">\n <rect width=\"700\" height=\"90\" transform=\"translate(0 176.813)\" fill=\"white\"/>\n <rect width=\"700\" height=\"90\" transform=\"translate(0 176.813)\" fill=\"#206095\" fill-opacity=\"0.1\"/>\n <text id=\"Understanding domestic abuse data through the criminal justice system\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"22\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"20\" y=\"212.748\">Understanding domestic abuse data through the</tspan><tspan x=\"20\" y=\"243.548\">criminal justice system</tspan></text>\n </g>\n<g id=\"Chart bit\">\n<g id=\"Domestic abuse crime suspects referred to the CPS England and Wales, year ending March 2023\">\n<text fill=\"black\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"20\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"20\" y=\"307.572\">Domestic abuse crime suspects referred to the Crown Prosecution Service</tspan></text>\n<text fill=\"black\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"16\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"20\" y=\"336.372\">England and Wales, year ending March 2023</tspan></text>\n</g>\n<g id=\"Overall chart\">\n<line id=\"Line 113\" x1=\"114.316\" y1=\"367.313\" x2=\"114.316\" y2=\"642.653\" stroke=\"#B3B3B3\" stroke-width=\"1.5\"/>\n<line id=\"Line 114\" x1=\"379.172\" y1=\"367.313\" x2=\"379.172\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 115\" x1=\"644.278\" y1=\"367.313\" x2=\"644.278\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 116\" x1=\"246.619\" y1=\"367.313\" x2=\"246.619\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 117\" x1=\"511.725\" y1=\"367.313\" x2=\"511.725\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<path id=\"Vector_321\" d=\"M153.684 449.048L114.5 449.048L114.5 496.23L153.684 496.23L153.684 449.048Z\" fill=\"#206095\"/>\n<path id=\"Vector_322\" d=\"M141.11 516.284L114.5 516.284L114.5 563.466L141.11 563.466L141.11 516.284Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_323\" d=\"M139.858 584.738L114.5 584.738L114.5 632.446L139.858 632.446L139.858 584.738Z\" fill=\"#E2E2E3\"/>\n<text id=\"0\" transform=\"translate(88.77 645.136)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"21.7058\" y=\"14.4312\">0</tspan></text>\n<text id=\"250,000\" transform=\"translate(210.43 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"9.93799\" y=\"14.4312\">250,000</tspan></text>\n<text id=\"500,000\" transform=\"translate(344.835 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"9.93799\" y=\"14.4312\">500,000</tspan></text>\n<text id=\"750,000\" transform=\"translate(476.729 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"9.93799\" y=\"14.4312\">750,000</tspan></text>\n<text id=\"1,000,000\" transform=\"translate(608.622 646.284)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"4.21631\" y=\"14.4312\">1,000,000</tspan></text>\n<path id=\"Vector_324\" d=\"M595.047 381.813L114.5 381.813L114.5 428.995L595.047 428.995L595.047 381.813Z\" fill=\"#E2E2E3\"/>\n<g id=\"Horizontal label\">\n<text id=\"Recorded by police\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"36.4971\" y=\"402.644\">Recorded </tspan><tspan x=\"40.9541\" y=\"419.444\">by police</tspan></text>\n<text id=\"Suspects referred\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"37.6455\" y=\"469.644\">Suspects </tspan><tspan x=\"40.7217\" y=\"486.444\">referred</tspan></text>\n<text id=\"Suspects charged\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"36.6338\" y=\"536.644\">Suspects </tspan><tspan x=\"37.5361\" y=\"553.444\">charged</tspan></text>\n<text id=\"Offenders convicted\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"33.1748\" y=\"603.644\">Offenders </tspan><tspan x=\"36.5381\" y=\"620.444\">convicted</tspan></text>\n</g>\n<text id=\"67,063\" transform=\"translate(154.668 463.895)\" fill=\"#206095\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"6.62919\" y=\"14.1756\">69,314</tspan></text>\n</g>\n\n </g>\n \n \n </svg>\n <p class=\"source\">\n Source: Crown Prosecution Service (CPS) </p> \n <div class=\"commentary\">\n <b>Which cases were referred to the CPS? </b>\n<br><br>\n Direct comparisons between police recorded crime data and Crown Prosecution Service (CPS) data cannot be made. \n <br><br>\n The number of referrals of suspects of domestic abuse-related cases from the police to the CPS for a charging decision increased from 67,063 in the year ending March 2022 to 69,314 in the year ending March 2023, following a decreasing trend. \n <br><br>\n Other possible outcomes following police investigation are: \n <br>\n <ul><li>\n case transferred to another Police Force Area </li><br>\n <li>\n no suspect is identified </li><br>\n <li>\n suspect receives out of court disposal, such as a caution </li><br>\n <li>\n crime report is cancelled </li><br>\n <li>\n no further action taken, for example, there is not enough evidence or the offender has died </li></ul>\n \n <br><br>\n <button class=\"button\" type=\"button\" on:click={()=>goTo.set(\"Five\")}>Next ▶</button>\n <button class=\"button grey\" type=\"button\" on:click={()=>goTo.set(\"Three\")}>Back</button></div>\n <style>\n .button{\n background-color:rgb(15, 130, 67);\n width:97px;\n height:40px;\n color:white;\n font-weight:bold;\n font-size:16px;\n border:none;\n }\n .grey{\n background-color:#666;\n }\n .source{\n color:grey\n }\n .commentary{\n font-weight:400;\n font-size:18px;\n background-color:rgba(32, 96, 149,0.1);\n padding:20px;\n }\n </style>","<script>\n export let goTo=null\n $: console.log(\"goto\",$goTo)\n </script>\n\n<svg width=\"700\" viewBox=\"0 0 700 700\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<g id=\"Interactive\">\n<g id=\"Illustration headers\">\n<g id=\"Illustration\">\n<g id=\"Illo\">\n<g id=\"Ellipse 1\">\n<path d=\"M700 120.569C500.303 120.569 178.452 120.569 0 120.569C0 101.933 125.256 2.20508 350 2.20508C570.463 2.20508 700 101.933 700 120.569Z\" fill=\"white\"/>\n<path d=\"M700 120.569C500.303 120.569 178.452 120.569 0 120.569C0 101.933 125.256 2.20508 350 2.20508C570.463 2.20508 700 101.933 700 120.569Z\" fill=\"#206095\" fill-opacity=\"0.05\"/>\n</g>\n<g id=\"Background buildings\">\n<path id=\"Vector\" d=\"M487.962 87.3798L480.563 81.3013C480.06 80.8885 479.372 80.8885 478.868 81.3013L471.469 87.3798V145.715H487.962V87.3798Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_2\" d=\"M460.082 91.2017H471.74V145.027H460.082V91.2017Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_3\" d=\"M462.433 84.4312H467.694V93.195H462.433V84.4312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_4\" d=\"M487.938 98.2393H500.166V142.841H487.938V98.2393Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_5\" d=\"M500.162 88.8657H511.25V145.255H500.162V88.8657Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_6\" d=\"M510.947 80.605H519.632V144.567H510.947V80.605Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_7\" d=\"M532.469 91.6416H542.983V143.132H532.469V91.6416Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_8\" d=\"M542.983 97.7549H552.081V141.098H542.983V97.7549Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_9\" d=\"M532.47 101.923L519.495 95.8364V141.122H532.47V101.923Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_2\">\n<path id=\"Vector_10\" d=\"M179.123 68.9979L169.785 59.9251C169.148 59.3082 168.283 59.3082 167.646 59.9251L158.307 68.9979V156.036H179.119V68.9979H179.123Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_11\" d=\"M143.934 155.001H158.649V74.6915H143.934V155.001Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_12\" d=\"M146.908 77.6709H153.545V64.5964H146.908V77.6709Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_13\" d=\"M179.092 151.752H194.523V74.4409H179.092V151.752Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_14\" d=\"M194.511 155.348H208.505V71.2133H194.511V155.348Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_15\" d=\"M217.438 154.32H228.397V58.891H217.438V154.32Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_16\" d=\"M65.4647 143.936H108.021V97.7379H65.4647V143.936Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_17\" d=\"M125.683 142.646H140.152V94.0413H125.683V142.646Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_18\" d=\"M140.153 144.301H152.671V93.9401H140.153V144.301Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_19\" d=\"M136.687 98.7855L107.828 91.7114V144.328H136.687V98.7855Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_20\" d=\"M179.123 48.2058L169.785 43.3925C169.148 43.0651 168.283 43.0651 167.646 43.3925L158.307 48.2058V94.3816H179.119V48.2058H179.123Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_21\" d=\"M143.934 93.833H158.649V51.2267H143.934V93.833Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_22\" d=\"M146.908 52.8071H153.545V45.8708H146.908V52.8071Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_23\" d=\"M179.092 92.1094H194.523V56.8041H179.092V92.1094Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_24\" d=\"M208.506 118.488H233.453V41.7437H208.506V118.488Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_25\" d=\"M79.4428 111.917H108.021V77.9923H79.4428V111.917Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_26\" d=\"M125.683 135.839H146.908L146.908 61.4923H125.683L125.683 135.839Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_27\" d=\"M140.153 139.21H152.671L152.671 53.1164H140.153V139.21Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_28\" d=\"M125.683 72.2887L107.828 64.8125V120.42H125.683V72.2887Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_3\">\n<path id=\"Vector_29\" d=\"M261.115 61.1229L270.454 51.2292C271.091 50.5564 271.956 50.5564 272.593 51.2292L281.932 61.1229V156.036H261.12V61.1229H261.115Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_30\" d=\"M296.304 154.907H281.589V67.3315H296.304V154.907Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_31\" d=\"M293.331 70.5806H286.693V56.3232H293.331V70.5806Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_32\" d=\"M261.146 151.364H245.715V67.0583H261.146V151.364Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_33\" d=\"M245.728 155.286H231.733V63.5389H245.728V155.286Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_34\" d=\"M222.801 154.165H211.842V50.1015H222.801V154.165Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_35\" d=\"M374.774 138.215H332.218V92.4634H374.774V138.215Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_36\" d=\"M314.555 141.435H300.086V88.4327H314.555V141.435Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_37\" d=\"M300.086 143.239H287.567V88.322H300.086V143.239Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_38\" d=\"M303.552 93.6058L332.411 85.8916V143.269H303.552V93.6058Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_39\" d=\"M261.115 38.4497L270.454 33.2008C271.091 32.8439 271.956 32.8439 272.593 33.2008L281.932 38.4497V88.8034H261.12V38.4497H261.115Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_40\" d=\"M296.304 88.2051H281.589V41.7438H296.304V88.2051Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_41\" d=\"M293.331 43.4673H286.693V35.9034H293.331V43.4673Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_42\" d=\"M261.146 86.3252H245.715V47.8256H261.146V86.3252Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_43\" d=\"M231.733 143.132H206.786L206.786 31.4027H231.733L231.733 143.132Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_44\" d=\"M360.796 107.925H332.218V70.9312H360.796V107.925Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_45\" d=\"M314.555 134.012H293.331V52.9384H314.555V134.012Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_46\" d=\"M300.086 137.688H287.567V43.8044H300.086V137.688Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_47\" d=\"M314.555 64.7117L332.411 56.5591V117.197H314.555V64.7117Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_4\">\n<path id=\"Vector_48\" d=\"M396.322 43.9472L406.674 33.1907C407.38 32.4592 408.339 32.4592 409.045 33.1907L419.398 43.9472V147.137H396.327V43.9472H396.322Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_49\" d=\"M435.325 48.7314H419.013V147.137H435.325V48.7314Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_50\" d=\"M432.033 38.0664H424.676V51.8795H432.033V38.0664Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_51\" d=\"M396.356 59.8315H379.25V147.137H396.356V59.8315Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_52\" d=\"M379.259 45.0566H363.746V147.137H379.259V45.0566Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_53\" d=\"M364.165 32.0312H352.016V147.137H364.165V32.0312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_54\" d=\"M334.058 68.2846L352.211 56.0444V147.137H334.058V68.2846Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_55\" d=\"M455.562 65.9717H439.522V147.137H455.562V65.9717Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_56\" d=\"M439.523 78.8105H425.645V147.137H439.523V78.8105Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_5\">\n<path id=\"Vector_57\" d=\"M406.323 26.2429L415.451 19.0517C416.072 18.5602 416.92 18.5602 417.541 19.0517L426.669 26.2429V95.2607H406.323V26.2429Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_58\" d=\"M440.71 30.7603H426.33V94.4428H440.71V30.7603Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_59\" d=\"M437.81 22.7515H431.32V33.1195H437.81V22.7515Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_60\" d=\"M406.352 39.0913H391.268V91.8632H406.352V39.0913Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_61\" d=\"M391.273 28H377.595V94.7178H391.273V28Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_62\" d=\"M377.968 18.2261H367.254V93.9004H377.968V18.2261Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_63\" d=\"M351.419 31.2827H338.449V92.2012H351.419V31.2827Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_64\" d=\"M338.449 38.5176H327.226V89.8033H338.449V38.5176Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_65\" d=\"M351.418 43.4476L367.424 36.2485V89.8264H351.418V43.4476Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_6\">\n<path id=\"Vector_66\" d=\"M484.96 43.5227L474.547 36.3315C473.839 35.84 472.871 35.84 472.162 36.3315L461.749 43.5227V112.541H484.96V43.5227Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_67\" d=\"M445.731 48.04H462.137V149.435H445.731V48.04Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_68\" d=\"M449.04 40.0312H456.443V50.3993H449.04V40.0312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_69\" d=\"M484.322 48.8135H502.53V108.813H484.322V48.8135Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_70\" d=\"M502.13 45.2803H517.733V111.998H502.13V45.2803Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_71\" d=\"M517.307 35.5059H529.529V111.18H517.307V35.5059Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_72\" d=\"M547.595 48.5625H562.39V109.481H547.595V48.5625Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_73\" d=\"M562.39 55.7974H575.194V107.083H562.39V55.7974Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_74\" d=\"M547.571 46.2191L529.363 36.8135V106.813H547.571V46.2191Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_75\" d=\"M589.381 82.1595L578.968 76.8057C578.259 76.4398 577.291 76.4398 576.583 76.8057L566.17 82.1595V133.543H589.381V82.1595Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_76\" d=\"M588.742 88.873H606.95V133.543H588.742V88.873Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_77\" d=\"M606.55 83.8721H622.153V133.544H606.55V83.8721Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_78\" d=\"M621.728 77.2036H633.95V133.543H621.728V77.2036Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_79\" d=\"M651.991 88.4307L633.783 81.4282V133.543H651.991V88.4307Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Ground\">\n<g id=\"Vector_80\">\n<path d=\"M700 177.896H0V135.896H700V177.896Z\" fill=\"white\"/>\n<path d=\"M700 177.896H0V135.896H700V177.896Z\" fill=\"#206095\" fill-opacity=\"0.1\"/>\n</g>\n<g id=\"Vector_81\">\n<path d=\"M700 135.896H0V120.569H700V135.896Z\" fill=\"white\"/>\n<path d=\"M700 135.896H0V120.569H700V135.896Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n</g>\n<g id=\"Bush\">\n<g id=\"Vector_82\">\n<path d=\"M47.7682 112.919C52.1167 115.137 54.8257 116.218 55.9659 117.354C57.11 118.491 59.8111 121.801 58.266 124.188C56.7169 126.574 56.2057 128.442 51.8533 128.245C47.5008 128.049 45.7355 127.432 42.2126 127.754C38.6898 128.076 35.5759 126.496 34.8485 125.737C34.1211 124.978 31.9351 121.459 34.8288 118.345C37.7226 115.227 43.9269 110.961 47.7682 112.919Z\" fill=\"white\"/>\n<path d=\"M47.7682 112.919C52.1167 115.137 54.8257 116.218 55.9659 117.354C57.11 118.491 59.8111 121.801 58.266 124.188C56.7169 126.574 56.2057 128.442 51.8533 128.245C47.5008 128.049 45.7355 127.432 42.2126 127.754C38.6898 128.076 35.5759 126.496 34.8485 125.737C34.1211 124.978 31.9351 121.459 34.8288 118.345C37.7226 115.227 43.9269 110.961 47.7682 112.919Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_83\">\n<path d=\"M40.9347 110.729C37.9347 109.058 34.6399 108.972 30.3583 111.645C26.0766 114.323 25.1723 116.1 24.9128 117.283C24.6572 118.467 22.7071 119.214 23.2339 121.581C23.7608 123.948 28.8013 126.448 32.0686 126.735C35.3359 127.022 36.02 126.723 39.9006 126.122C43.7812 125.52 46.8991 124.624 48.3185 121.659C49.7418 118.695 44.1076 112.494 40.9307 110.729H40.9347Z\" fill=\"white\"/>\n<path d=\"M40.9347 110.729C37.9347 109.058 34.6399 108.972 30.3583 111.645C26.0766 114.323 25.1723 116.1 24.9128 117.283C24.6572 118.467 22.7071 119.214 23.2339 121.581C23.7608 123.948 28.8013 126.448 32.0686 126.735C35.3359 127.022 36.02 126.723 39.9006 126.122C43.7812 125.52 46.8991 124.624 48.3185 121.659C49.7418 118.695 44.1076 112.494 40.9307 110.729H40.9347Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_84\">\n<path d=\"M58.2209 114.583C64.9717 116.792 69.1786 117.87 70.9558 119.006C72.729 120.142 76.9242 123.445 74.518 125.835C72.1078 128.226 71.3097 130.093 64.547 129.905C57.7844 129.716 55.044 129.103 49.571 129.429C44.098 129.755 39.262 128.182 38.1336 127.424C37.0052 126.665 33.6121 123.15 38.1139 120.032C42.6158 116.91 52.2643 112.636 58.2287 114.59L58.2209 114.583Z\" fill=\"white\"/>\n<path d=\"M58.2209 114.583C64.9717 116.792 69.1786 117.87 70.9558 119.006C72.729 120.142 76.9242 123.445 74.518 125.835C72.1078 128.226 71.3097 130.093 64.547 129.905C57.7844 129.716 55.044 129.103 49.571 129.429C44.098 129.755 39.262 128.182 38.1336 127.424C37.0052 126.665 33.6121 123.15 38.1139 120.032C42.6158 116.91 52.2643 112.636 58.2287 114.59L58.2209 114.583Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_85\">\n<path d=\"M21.0752 124.149C19.3491 123.3 17.454 123.248 14.9849 124.597C12.5158 125.946 11.9928 126.846 11.8434 127.444C11.694 128.041 10.5696 128.419 10.8723 129.614C11.1711 130.813 14.0688 132.087 15.9521 132.236C17.8354 132.386 18.2286 132.236 20.4618 131.938C22.6951 131.639 24.4919 131.187 25.3175 129.689C26.1432 128.191 22.9074 125.045 21.083 124.145L21.0752 124.149Z\" fill=\"white\"/>\n<path d=\"M21.0752 124.149C19.3491 123.3 17.454 123.248 14.9849 124.597C12.5158 125.946 11.9928 126.846 11.8434 127.444C11.694 128.041 10.5696 128.419 10.8723 129.614C11.1711 130.813 14.0688 132.087 15.9521 132.236C17.8354 132.386 18.2286 132.236 20.4618 131.938C22.6951 131.639 24.4919 131.187 25.3175 129.689C26.1432 128.191 22.9074 125.045 21.083 124.145L21.0752 124.149Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_86\">\n<path d=\"M14.1043 125.642C12.7361 124.97 11.2342 124.931 9.27616 126C7.31815 127.07 6.90531 127.781 6.78343 128.257C6.66547 128.733 5.7769 129.028 6.0128 129.979C6.24871 130.931 8.54878 131.937 10.0389 132.059C11.529 132.177 11.8436 132.059 13.6129 131.823C15.3861 131.587 16.8094 131.229 17.4621 130.042C18.1147 128.855 15.5512 126.362 14.1043 125.65V125.642Z\" fill=\"white\"/>\n<path d=\"M14.1043 125.642C12.7361 124.97 11.2342 124.931 9.27616 126C7.31815 127.07 6.90531 127.781 6.78343 128.257C6.66547 128.733 5.7769 129.028 6.0128 129.979C6.24871 130.931 8.54878 131.937 10.0389 132.059C11.529 132.177 11.8436 132.059 13.6129 131.823C15.3861 131.587 16.8094 131.229 17.4621 130.042C18.1147 128.855 15.5512 126.362 14.1043 125.65V125.642Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_87\">\n<path d=\"M18.5986 121.176C16.8726 120.327 14.9775 120.276 12.5083 121.624C10.0392 122.973 9.51629 123.873 9.36688 124.471C9.21747 125.069 8.09299 125.446 8.39574 126.641C8.69455 127.841 8.91473 129.626 10.798 129.775C12.6813 129.924 15.752 129.264 17.9853 128.965C20.2185 128.666 22.0153 128.214 22.841 126.716C23.6627 125.218 20.4308 122.073 18.6065 121.172L18.5986 121.176Z\" fill=\"white\"/>\n<path d=\"M18.5986 121.176C16.8726 120.327 14.9775 120.276 12.5083 121.624C10.0392 122.973 9.51629 123.873 9.36688 124.471C9.21747 125.069 8.09299 125.446 8.39574 126.641C8.69455 127.841 8.91473 129.626 10.798 129.775C12.6813 129.924 15.752 129.264 17.9853 128.965C20.2185 128.666 22.0153 128.214 22.841 126.716C23.6627 125.218 20.4308 122.073 18.6065 121.172L18.5986 121.176Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Police station\" clip-path=\"url(#clip0_1849_10335)\">\n<g id=\"Vector_88\">\n<path d=\"M476.484 47.2856H307.516V127.819H476.484V47.2856Z\" fill=\"white\"/>\n<path d=\"M476.484 47.2856H307.516V127.819H476.484V47.2856Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<path id=\"Vector_89\" d=\"M477 45.1685H307V47.2905H477V45.1685Z\" fill=\"#003C57\"/>\n<g id=\"Vector_90\">\n<path d=\"M414.975 39.9351H369.025V129.808H414.975V39.9351Z\" fill=\"white\"/>\n<path d=\"M414.975 39.9351H369.025V129.808H414.975V39.9351Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_91\" d=\"M415.614 37.813H368.391V39.935H415.614V37.813Z\" fill=\"#003C57\"/>\n<path id=\"Vector_92\" d=\"M363.839 52.5688H311.744V61.372H363.839V52.5688Z\" fill=\"white\"/>\n<path id=\"Vector_93\" d=\"M363.839 66.1133H311.744V75.2069H363.839V66.1133Z\" fill=\"white\"/>\n<path id=\"Vector_94\" d=\"M363.957 79.7314H311.744V88.5346H363.957V79.7314Z\" fill=\"white\"/>\n<path id=\"Vector_95\" d=\"M351.913 93.3105H311.744V102.114H351.913V93.3105Z\" fill=\"white\"/>\n<path id=\"Vector_96\" d=\"M351.913 106.274H311.744V115.077H351.913V106.274Z\" fill=\"white\"/>\n<path id=\"Vector_97\" d=\"M420.206 61.377L472.3 61.377V52.5738L420.206 52.5738V61.377Z\" fill=\"white\"/>\n<path id=\"Vector_98\" d=\"M420.206 75.2119H472.3V66.1183H420.206V75.2119Z\" fill=\"white\"/>\n<path id=\"Vector_99\" d=\"M420.083 88.5347H472.295V79.7315H420.083V88.5347Z\" fill=\"white\"/>\n<path id=\"Vector_100\" d=\"M432.127 102.119H472.295V93.3155H432.127V102.119Z\" fill=\"white\"/>\n<path id=\"Vector_101\" d=\"M432.127 115.072H472.295V106.269H432.127V115.072Z\" fill=\"white\"/>\n<g id=\"Vector_102\">\n<path d=\"M426.719 97.978H357.276V129.808H426.719V97.978Z\" fill=\"white\"/>\n<path d=\"M426.719 97.978H357.276V129.808H426.719V97.978Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<path id=\"Vector_103\" d=\"M428.342 95.856H355.659V97.978H428.342V95.856Z\" fill=\"#003C57\"/>\n<path id=\"Vector_104\" d=\"M374.044 111.493H376.399C381.359 111.493 385.385 115.525 385.385 120.493V129.813H365.053V120.493C365.053 115.525 369.079 111.493 374.039 111.493H374.044Z\" fill=\"white\"/>\n<g id=\"Vector_105\">\n<path d=\"M375.367 111.443H375.082V129.537H375.367V111.443Z\" fill=\"white\"/>\n<path d=\"M375.367 111.443H375.082V129.537H375.367V111.443Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_106\">\n<path d=\"M374.418 120.734C374.418 120.601 374.31 120.493 374.177 120.493C374.044 120.493 373.936 120.601 373.936 120.734V122.162C373.936 122.295 374.044 122.403 374.177 122.403C374.31 122.403 374.418 122.295 374.418 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M374.418 120.734C374.418 120.601 374.31 120.493 374.177 120.493C374.044 120.493 373.936 120.601 373.936 120.734V122.162C373.936 122.295 374.044 122.403 374.177 122.403C374.31 122.403 374.418 122.295 374.418 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_107\">\n<path d=\"M376.542 120.734C376.542 120.601 376.434 120.493 376.301 120.493C376.168 120.493 376.06 120.601 376.06 120.734V122.162C376.06 122.295 376.168 122.403 376.301 122.403C376.434 122.403 376.542 122.295 376.542 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M376.542 120.734C376.542 120.601 376.434 120.493 376.301 120.493C376.168 120.493 376.06 120.601 376.06 120.734V122.162C376.06 122.295 376.168 122.403 376.301 122.403C376.434 122.403 376.542 122.295 376.542 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_108\" d=\"M406.436 111.493H408.79C413.751 111.493 417.777 115.525 417.777 120.493V129.813H397.444V120.493C397.444 115.525 401.471 111.493 406.431 111.493H406.436Z\" fill=\"white\"/>\n<g id=\"Vector_109\">\n<path d=\"M407.758 111.443H407.473V129.537H407.758V111.443Z\" fill=\"white\"/>\n<path d=\"M407.758 111.443H407.473V129.537H407.758V111.443Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_110\">\n<path d=\"M406.809 120.734C406.809 120.601 406.702 120.493 406.569 120.493C406.435 120.493 406.328 120.601 406.328 120.734V122.162C406.328 122.295 406.435 122.403 406.569 122.403C406.702 122.403 406.809 122.295 406.809 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M406.809 120.734C406.809 120.601 406.702 120.493 406.569 120.493C406.435 120.493 406.328 120.601 406.328 120.734V122.162C406.328 122.295 406.435 122.403 406.569 122.403C406.702 122.403 406.809 122.295 406.809 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_111\">\n<path d=\"M408.938 120.734C408.938 120.601 408.83 120.493 408.697 120.493C408.564 120.493 408.456 120.601 408.456 120.734V122.162C408.456 122.295 408.564 122.403 408.697 122.403C408.83 122.403 408.938 122.295 408.938 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M408.938 120.734C408.938 120.601 408.83 120.493 408.697 120.493C408.564 120.493 408.456 120.601 408.456 120.734V122.162C408.456 122.295 408.564 122.403 408.697 122.403C408.83 122.403 408.938 122.295 408.938 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_112\">\n<path d=\"M418.293 100.285H365.708V109.528H418.293V100.285Z\" fill=\"white\"/>\n<path d=\"M418.293 100.285H365.708V109.528H418.293V100.285Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_113\">\n<path d=\"M411.283 71.5879H372.525V80.5289H411.283V71.5879Z\" fill=\"white\"/>\n<path d=\"M411.283 71.5879H372.525V80.5289H411.283V71.5879Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_114\">\n<path d=\"M411.283 84.8418H372.525V93.7828H411.283V84.8418Z\" fill=\"white\"/>\n<path d=\"M411.283 84.8418H372.525V93.7828H411.283V84.8418Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_115\">\n<path d=\"M411.283 58.3291H372.525V67.2701H411.283V58.3291Z\" fill=\"white\"/>\n<path d=\"M411.283 58.3291H372.525V67.2701H411.283V58.3291Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_116\">\n<path d=\"M411.283 45.1685H372.525V54.1095H411.283V45.1685Z\" fill=\"white\"/>\n<path d=\"M411.283 45.1685H372.525V54.1095H411.283V45.1685Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_117\">\n<path d=\"M392.327 41.5942H391.668V95.8558H392.327V41.5942Z\" fill=\"white\"/>\n<path d=\"M392.327 41.5942H391.668V95.8558H392.327V41.5942Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Group 39\">\n<g id=\"Vector_118\">\n<path d=\"M324.619 50.7915H323.96V118.642H324.619V50.7915Z\" fill=\"white\"/>\n<path d=\"M324.619 50.7915H323.96V118.642H324.619V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_119\">\n<path d=\"M339.082 50.7915H338.423V118.642H339.082V50.7915Z\" fill=\"white\"/>\n<path d=\"M339.082 50.7915H338.423V118.642H339.082V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_120\">\n<path d=\"M352.276 50.7915H351.617V118.642H352.276V50.7915Z\" fill=\"white\"/>\n<path d=\"M352.276 50.7915H351.617V118.642H352.276V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_121\">\n<path d=\"M432.456 50.7915H431.797V118.642H432.456V50.7915Z\" fill=\"white\"/>\n<path d=\"M432.456 50.7915H431.797V118.642H432.456V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_122\">\n<path d=\"M446.919 50.7915H446.26V118.642H446.919V50.7915Z\" fill=\"white\"/>\n<path d=\"M446.919 50.7915H446.26V118.642H446.919V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_123\">\n<path d=\"M460.113 50.7915H459.455V118.642H460.113V50.7915Z\" fill=\"white\"/>\n<path d=\"M460.113 50.7915H459.455V118.642H460.113V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n</g>\n<g id=\"POLICE\">\n<path d=\"M379.974 104.813H380.382C380.763 104.813 381.048 104.737 381.238 104.586C381.427 104.432 381.522 104.209 381.522 103.918C381.522 103.624 381.442 103.406 381.282 103.266C381.124 103.126 380.877 103.056 380.538 103.056H379.974V104.813ZM382.773 103.873C382.773 104.51 382.576 104.997 382.182 105.335C381.79 105.672 381.231 105.841 380.506 105.841H379.974V107.946H378.734V102.027H380.602C381.311 102.027 381.85 102.182 382.218 102.493C382.588 102.8 382.773 103.261 382.773 103.873Z\" fill=\"white\"/>\n<path d=\"M389.184 104.979C389.184 105.958 388.944 106.711 388.464 107.238C387.984 107.764 387.296 108.027 386.4 108.027C385.505 108.027 384.817 107.764 384.337 107.238C383.857 106.711 383.617 105.956 383.617 104.97C383.617 103.985 383.857 103.234 384.337 102.715C384.82 102.195 385.51 101.934 386.408 101.934C387.307 101.934 387.993 102.196 388.468 102.719C388.945 103.243 389.184 103.996 389.184 104.979ZM384.917 104.979C384.917 105.64 385.041 106.138 385.289 106.472C385.537 106.807 385.907 106.974 386.4 106.974C387.39 106.974 387.884 106.309 387.884 104.979C387.884 103.645 387.392 102.979 386.408 102.979C385.915 102.979 385.543 103.147 385.293 103.485C385.042 103.819 384.917 104.317 384.917 104.979Z\" fill=\"white\"/>\n<path d=\"M390.396 107.946V102.027H391.635V106.91H394.007V107.946H390.396Z\" fill=\"white\"/>\n<path d=\"M395.026 107.946V102.027H396.266V107.946H395.026Z\" fill=\"white\"/>\n<path d=\"M400.221 102.987C399.755 102.987 399.393 103.165 399.137 103.521C398.881 103.875 398.753 104.369 398.753 105.003C398.753 106.323 399.243 106.983 400.221 106.983C400.632 106.983 401.129 106.879 401.713 106.671V107.723C401.233 107.926 400.697 108.027 400.105 108.027C399.255 108.027 398.604 107.767 398.154 107.246C397.703 106.722 397.478 105.972 397.478 104.995C397.478 104.379 397.588 103.841 397.81 103.379C398.031 102.915 398.348 102.56 398.761 102.315C399.177 102.066 399.664 101.942 400.221 101.942C400.789 101.942 401.359 102.081 401.933 102.359L401.533 103.379C401.314 103.274 401.094 103.182 400.873 103.104C400.652 103.026 400.434 102.987 400.221 102.987Z\" fill=\"white\"/>\n<path d=\"M406.328 107.946H402.96V102.027H406.328V103.056H404.2V104.355H406.18V105.383H404.2V106.91H406.328V107.946Z\" fill=\"white\"/>\n</g>\n</g>\n<g id=\"Courts\">\n<g id=\"Building\">\n<g id=\"Rectangle 1\">\n<rect x=\"491.833\" y=\"68.813\" width=\"150\" height=\"56\" fill=\"white\"/>\n<rect x=\"491.833\" y=\"68.813\" width=\"150\" height=\"56\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Rectangle 3\">\n<rect x=\"488.833\" y=\"120.942\" width=\"154.713\" height=\"6.67484\" fill=\"white\"/>\n<rect x=\"488.833\" y=\"120.942\" width=\"154.713\" height=\"6.67484\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 2\">\n<path d=\"M497.297 57.813H636.368L641.833 68.813H491.833L497.297 57.813Z\" fill=\"white\"/>\n<path d=\"M497.297 57.813H636.368L641.833 68.813H491.833L497.297 57.813Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_124\">\n<path d=\"M551.731 70.3457H545.786V70.984C546.059 71.0995 546.254 71.367 546.254 71.6831V71.7317C546.254 72.1512 545.914 72.4916 545.494 72.4916H545.391C545.616 72.5463 545.786 72.747 545.786 72.9901V73.0205C545.786 73.3062 545.555 73.5312 545.275 73.5312H544.862V113.896H545.275C545.561 113.896 545.786 114.127 545.786 114.407V114.437C545.786 114.681 545.616 114.881 545.391 114.936H545.415C545.877 114.936 546.254 115.313 546.254 115.775V118.583H551.269V115.775C551.269 115.313 551.646 114.936 552.108 114.936H552.132C551.908 114.881 551.737 114.681 551.737 114.437V114.407C551.737 114.121 551.968 113.896 552.248 113.896H552.661V73.5372H552.248C551.962 73.5372 551.737 73.3062 551.737 73.0266V72.9962C551.737 72.753 551.908 72.5524 552.132 72.4977H552.029C551.61 72.4977 551.269 72.1573 551.269 71.7378V71.6892C551.269 71.3731 551.464 71.1056 551.737 70.9901V70.3518M569.81 70.3518H563.865V70.9901C564.139 71.1056 564.333 71.3731 564.333 71.6892V71.7378C564.333 72.1573 563.993 72.4977 563.573 72.4977H563.47C563.695 72.5524 563.865 72.753 563.865 72.9962V73.0266C563.865 73.3123 563.634 73.5372 563.354 73.5372H562.941V113.903H563.354C563.64 113.903 563.865 114.134 563.865 114.413V114.444C563.865 114.687 563.695 114.887 563.47 114.942H563.494C563.956 114.942 564.333 115.319 564.333 115.781V118.59H569.348V115.781C569.348 115.319 569.725 114.942 570.187 114.942H570.212C569.987 114.887 569.817 114.687 569.817 114.444V114.413C569.817 114.127 570.048 113.903 570.327 113.903H570.741V73.5372H570.327C570.041 73.5372 569.817 73.3062 569.817 73.0266V72.9962C569.817 72.753 569.987 72.5524 570.212 72.4977H570.108C569.689 72.4977 569.348 72.1573 569.348 71.7378V71.6892C569.348 71.3731 569.543 71.1056 569.817 70.9901V70.3518M587.89 70.3518H581.944V70.9901C582.218 71.1056 582.412 71.3731 582.412 71.6892V71.7378C582.412 72.1573 582.072 72.4977 581.653 72.4977H581.549C581.774 72.5524 581.944 72.753 581.944 72.9962V73.0266C581.944 73.3123 581.713 73.5372 581.434 73.5372H581.02V113.903H581.434C581.719 113.903 581.944 114.134 581.944 114.413V114.444C581.944 114.687 581.774 114.887 581.549 114.942H581.574C582.036 114.942 582.412 115.319 582.412 115.781V118.59H587.428V115.781C587.428 115.319 587.805 114.942 588.267 114.942H588.291C588.066 114.887 587.896 114.687 587.896 114.444V114.413C587.896 114.127 588.127 113.903 588.406 113.903H588.82V73.5372H588.406C588.121 73.5372 587.896 73.3062 587.896 73.0266V72.9962C587.896 72.753 588.066 72.5524 588.291 72.4977H588.188C587.768 72.4977 587.428 72.1573 587.428 71.7378V71.6892C587.428 71.3731 587.622 71.1056 587.896 70.9901V70.3518\" fill=\"white\"/>\n<path d=\"M551.731 70.3457H545.786V70.984C546.059 71.0995 546.254 71.367 546.254 71.6831V71.7317C546.254 72.1512 545.914 72.4916 545.494 72.4916H545.391C545.616 72.5463 545.786 72.747 545.786 72.9901V73.0205C545.786 73.3062 545.555 73.5312 545.275 73.5312H544.862V113.896H545.275C545.561 113.896 545.786 114.127 545.786 114.407V114.437C545.786 114.681 545.616 114.881 545.391 114.936H545.415C545.877 114.936 546.254 115.313 546.254 115.775V118.583H551.269V115.775C551.269 115.313 551.646 114.936 552.108 114.936H552.132C551.908 114.881 551.737 114.681 551.737 114.437V114.407C551.737 114.121 551.968 113.896 552.248 113.896H552.661V73.5372H552.248C551.962 73.5372 551.737 73.3062 551.737 73.0266V72.9962C551.737 72.753 551.908 72.5524 552.132 72.4977H552.029C551.61 72.4977 551.269 72.1573 551.269 71.7378V71.6892C551.269 71.3731 551.464 71.1056 551.737 70.9901V70.3518M569.81 70.3518H563.865V70.9901C564.139 71.1056 564.333 71.3731 564.333 71.6892V71.7378C564.333 72.1573 563.993 72.4977 563.573 72.4977H563.47C563.695 72.5524 563.865 72.753 563.865 72.9962V73.0266C563.865 73.3123 563.634 73.5372 563.354 73.5372H562.941V113.903H563.354C563.64 113.903 563.865 114.134 563.865 114.413V114.444C563.865 114.687 563.695 114.887 563.47 114.942H563.494C563.956 114.942 564.333 115.319 564.333 115.781V118.59H569.348V115.781C569.348 115.319 569.725 114.942 570.187 114.942H570.212C569.987 114.887 569.817 114.687 569.817 114.444V114.413C569.817 114.127 570.048 113.903 570.327 113.903H570.741V73.5372H570.327C570.041 73.5372 569.817 73.3062 569.817 73.0266V72.9962C569.817 72.753 569.987 72.5524 570.212 72.4977H570.108C569.689 72.4977 569.348 72.1573 569.348 71.7378V71.6892C569.348 71.3731 569.543 71.1056 569.817 70.9901V70.3518M587.89 70.3518H581.944V70.9901C582.218 71.1056 582.412 71.3731 582.412 71.6892V71.7378C582.412 72.1573 582.072 72.4977 581.653 72.4977H581.549C581.774 72.5524 581.944 72.753 581.944 72.9962V73.0266C581.944 73.3123 581.713 73.5372 581.434 73.5372H581.02V113.903H581.434C581.719 113.903 581.944 114.134 581.944 114.413V114.444C581.944 114.687 581.774 114.887 581.549 114.942H581.574C582.036 114.942 582.412 115.319 582.412 115.781V118.59H587.428V115.781C587.428 115.319 587.805 114.942 588.267 114.942H588.291C588.066 114.887 587.896 114.687 587.896 114.444V114.413C587.896 114.127 588.127 113.903 588.406 113.903H588.82V73.5372H588.406C588.121 73.5372 587.896 73.3062 587.896 73.0266V72.9962C587.896 72.753 588.066 72.5524 588.291 72.4977H588.188C587.768 72.4977 587.428 72.1573 587.428 71.7378V71.6892C587.428 71.3731 587.622 71.1056 587.896 70.9901V70.3518\" fill=\"#206095\" fill-opacity=\"0.55\"/>\n</g>\n<path id=\"Vector_125\" d=\"M545.78 70.3457H533.658V70.984C533.749 70.9475 533.847 70.9293 533.95 70.9293H545.494C545.598 70.9293 545.695 70.9475 545.786 70.984V70.3457\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_126\" d=\"M599.975 66.3882H566.887H533.658V67.7377H599.975V66.3882Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_127\" d=\"M563.859 70.3457H551.731V70.984C551.823 70.9475 551.92 70.9293 552.023 70.9293H563.567C563.671 70.9293 563.768 70.9475 563.859 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_128\" d=\"M581.933 70.3457H569.805V70.984C569.896 70.9475 569.993 70.9293 570.096 70.9293H581.641C581.744 70.9293 581.841 70.9475 581.933 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_129\" d=\"M600.005 70.3457H587.877V70.984C587.969 70.9475 588.066 70.9293 588.169 70.9293H599.713C599.817 70.9293 599.914 70.9475 600.005 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<g id=\"Vector_130\">\n<path d=\"M599.075 73.5371H588.808V113.902H599.075V73.5371Z\" fill=\"white\"/>\n<path d=\"M599.075 73.5371H588.808V113.902H599.075V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_131\">\n<path d=\"M599.714 70.9292H588.17C588.066 70.9292 587.969 70.9474 587.878 70.9839C587.604 71.0994 587.41 71.3669 587.41 71.683V71.7316C587.41 72.1511 587.75 72.4915 588.17 72.4915H588.273C588.309 72.4855 588.352 72.4794 588.394 72.4794H599.495C599.537 72.4794 599.574 72.4794 599.617 72.4915H599.72C600.139 72.4915 600.48 72.1511 600.48 71.7316V71.683C600.48 71.3669 600.285 71.0994 600.012 70.9839C599.92 70.9474 599.823 70.9292 599.72 70.9292\" fill=\"white\"/>\n<path d=\"M599.714 70.9292H588.17C588.066 70.9292 587.969 70.9474 587.878 70.9839C587.604 71.0994 587.41 71.3669 587.41 71.683V71.7316C587.41 72.1511 587.75 72.4915 588.17 72.4915H588.273C588.309 72.4855 588.352 72.4794 588.394 72.4794H599.495C599.537 72.4794 599.574 72.4794 599.617 72.4915H599.72C600.139 72.4915 600.48 72.1511 600.48 71.7316V71.683C600.48 71.3669 600.285 71.0994 600.012 70.9839C599.92 70.9474 599.823 70.9292 599.72 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_132\">\n<path d=\"M599.489 72.4795H588.388C588.346 72.4795 588.309 72.4795 588.267 72.4917C588.042 72.5464 587.872 72.747 587.872 72.9901V73.0205C587.872 73.3063 588.103 73.5312 588.382 73.5312H599.483C599.768 73.5312 599.993 73.3002 599.993 73.0205V72.9901C599.993 72.747 599.823 72.5464 599.598 72.4917C599.562 72.4856 599.519 72.4795 599.477 72.4795\" fill=\"white\"/>\n<path d=\"M599.489 72.4795H588.388C588.346 72.4795 588.309 72.4795 588.267 72.4917C588.042 72.5464 587.872 72.747 587.872 72.9901V73.0205C587.872 73.3063 588.103 73.5312 588.382 73.5312H599.483C599.768 73.5312 599.993 73.3002 599.993 73.0205V72.9901C599.993 72.747 599.823 72.5464 599.598 72.4917C599.562 72.4856 599.519 72.4795 599.477 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_133\">\n<path d=\"M599.634 114.942H599.61C599.574 114.948 599.531 114.954 599.489 114.954H588.388C588.346 114.954 588.309 114.954 588.267 114.942H588.242C587.78 114.942 587.403 115.319 587.403 115.781V118.589H600.461V115.781C600.461 115.319 600.084 114.942 599.622 114.942\" fill=\"white\"/>\n<path d=\"M599.634 114.942H599.61C599.574 114.948 599.531 114.954 599.489 114.954H588.388C588.346 114.954 588.309 114.954 588.267 114.942H588.242C587.78 114.942 587.403 115.319 587.403 115.781V118.589H600.461V115.781C600.461 115.319 600.084 114.942 599.622 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_134\">\n<path d=\"M599.489 113.902H588.388C588.102 113.902 587.877 114.133 587.877 114.413V114.443C587.877 114.687 588.048 114.887 588.273 114.942C588.309 114.948 588.352 114.954 588.394 114.954H599.495C599.537 114.954 599.574 114.954 599.616 114.942C599.841 114.887 600.011 114.687 600.011 114.443V114.413C600.011 114.127 599.78 113.902 599.501 113.902\" fill=\"white\"/>\n<path d=\"M599.489 113.902H588.388C588.102 113.902 587.877 114.133 587.877 114.413V114.443C587.877 114.687 588.048 114.887 588.273 114.942C588.309 114.948 588.352 114.954 588.394 114.954H599.495C599.537 114.954 599.574 114.954 599.616 114.942C599.841 114.887 600.011 114.687 600.011 114.443V114.413C600.011 114.127 599.78 113.902 599.501 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_135\">\n<path d=\"M544.856 73.5371H534.582V113.902H544.856V73.5371Z\" fill=\"white\"/>\n<path d=\"M544.856 73.5371H534.582V113.902H544.856V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_136\">\n<path d=\"M545.494 70.9292H533.95C533.846 70.9292 533.749 70.9474 533.658 70.9839C533.384 71.0994 533.19 71.3669 533.19 71.683V71.7316C533.19 72.1511 533.53 72.4915 533.95 72.4915H534.053C534.09 72.4855 534.132 72.4794 534.175 72.4794H545.275C545.318 72.4794 545.354 72.4794 545.397 72.4915H545.5C545.92 72.4915 546.26 72.1511 546.26 71.7316V71.683C546.26 71.3669 546.065 71.0994 545.792 70.9839C545.701 70.9474 545.603 70.9292 545.5 70.9292\" fill=\"white\"/>\n<path d=\"M545.494 70.9292H533.95C533.846 70.9292 533.749 70.9474 533.658 70.9839C533.384 71.0994 533.19 71.3669 533.19 71.683V71.7316C533.19 72.1511 533.53 72.4915 533.95 72.4915H534.053C534.09 72.4855 534.132 72.4794 534.175 72.4794H545.275C545.318 72.4794 545.354 72.4794 545.397 72.4915H545.5C545.92 72.4915 546.26 72.1511 546.26 71.7316V71.683C546.26 71.3669 546.065 71.0994 545.792 70.9839C545.701 70.9474 545.603 70.9292 545.5 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_137\">\n<path d=\"M545.269 72.4795H534.169C534.126 72.4795 534.09 72.4795 534.047 72.4917C533.822 72.5464 533.652 72.747 533.652 72.9901V73.0205C533.652 73.3063 533.883 73.5312 534.163 73.5312H545.263C545.549 73.5312 545.774 73.3002 545.774 73.0205V72.9901C545.774 72.747 545.603 72.5464 545.378 72.4917C545.342 72.4856 545.299 72.4795 545.257 72.4795\" fill=\"white\"/>\n<path d=\"M545.269 72.4795H534.169C534.126 72.4795 534.09 72.4795 534.047 72.4917C533.822 72.5464 533.652 72.747 533.652 72.9901V73.0205C533.652 73.3063 533.883 73.5312 534.163 73.5312H545.263C545.549 73.5312 545.774 73.3002 545.774 73.0205V72.9901C545.774 72.747 545.603 72.5464 545.378 72.4917C545.342 72.4856 545.299 72.4795 545.257 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_138\">\n<path d=\"M545.409 114.942H545.385C545.348 114.948 545.306 114.954 545.269 114.954H534.169C534.126 114.954 534.09 114.954 534.053 114.942H534.029C533.567 114.942 533.19 115.319 533.19 115.781V118.589H546.248V115.781C546.248 115.319 545.871 114.942 545.409 114.942Z\" fill=\"white\"/>\n<path d=\"M545.409 114.942H545.385C545.348 114.948 545.306 114.954 545.269 114.954H534.169C534.126 114.954 534.09 114.954 534.053 114.942H534.029C533.567 114.942 533.19 115.319 533.19 115.781V118.589H546.248V115.781C546.248 115.319 545.871 114.942 545.409 114.942Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_139\">\n<path d=\"M545.269 113.902H534.169C533.883 113.902 533.658 114.133 533.658 114.413V114.443C533.658 114.687 533.828 114.887 534.053 114.942C534.09 114.948 534.132 114.954 534.169 114.954H545.269C545.312 114.954 545.348 114.954 545.385 114.942C545.61 114.887 545.78 114.687 545.78 114.443V114.413C545.78 114.127 545.549 113.902 545.269 113.902Z\" fill=\"white\"/>\n<path d=\"M545.269 113.902H534.169C533.883 113.902 533.658 114.133 533.658 114.413V114.443C533.658 114.687 533.828 114.887 534.053 114.942C534.09 114.948 534.132 114.954 534.169 114.954H545.269C545.312 114.954 545.348 114.954 545.385 114.942C545.61 114.887 545.78 114.687 545.78 114.443V114.413C545.78 114.127 545.549 113.902 545.269 113.902Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_140\">\n<path d=\"M562.929 73.5371H552.661V113.902H562.929V73.5371Z\" fill=\"white\"/>\n<path d=\"M562.929 73.5371H552.661V113.902H562.929V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_141\">\n<path d=\"M563.567 70.9292H552.023C551.92 70.9292 551.822 70.9474 551.731 70.9839C551.458 71.0994 551.263 71.3669 551.263 71.683V71.7316C551.263 72.1511 551.604 72.4915 552.023 72.4915H552.126C552.163 72.4855 552.205 72.4794 552.248 72.4794H563.348C563.391 72.4794 563.427 72.4794 563.47 72.4915H563.573C563.993 72.4915 564.333 72.1511 564.333 71.7316V71.683C564.333 71.3669 564.139 71.0994 563.865 70.9839C563.774 70.9474 563.677 70.9292 563.573 70.9292\" fill=\"white\"/>\n<path d=\"M563.567 70.9292H552.023C551.92 70.9292 551.822 70.9474 551.731 70.9839C551.458 71.0994 551.263 71.3669 551.263 71.683V71.7316C551.263 72.1511 551.604 72.4915 552.023 72.4915H552.126C552.163 72.4855 552.205 72.4794 552.248 72.4794H563.348C563.391 72.4794 563.427 72.4794 563.47 72.4915H563.573C563.993 72.4915 564.333 72.1511 564.333 71.7316V71.683C564.333 71.3669 564.139 71.0994 563.865 70.9839C563.774 70.9474 563.677 70.9292 563.573 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_142\">\n<path d=\"M563.342 72.4795H552.242C552.199 72.4795 552.163 72.4795 552.12 72.4917C551.895 72.5464 551.725 72.747 551.725 72.9901V73.0205C551.725 73.3063 551.956 73.5312 552.236 73.5312H563.336C563.622 73.5312 563.847 73.3002 563.847 73.0205V72.9901C563.847 72.747 563.677 72.5464 563.452 72.4917C563.415 72.4856 563.373 72.4795 563.33 72.4795\" fill=\"white\"/>\n<path d=\"M563.342 72.4795H552.242C552.199 72.4795 552.163 72.4795 552.12 72.4917C551.895 72.5464 551.725 72.747 551.725 72.9901V73.0205C551.725 73.3063 551.956 73.5312 552.236 73.5312H563.336C563.622 73.5312 563.847 73.3002 563.847 73.0205V72.9901C563.847 72.747 563.677 72.5464 563.452 72.4917C563.415 72.4856 563.373 72.4795 563.33 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_143\">\n<path d=\"M563.482 114.942H563.458C563.422 114.948 563.379 114.954 563.337 114.954H552.236C552.194 114.954 552.157 114.954 552.121 114.942H552.096C551.634 114.942 551.257 115.319 551.257 115.781V118.589H564.315V115.781C564.315 115.319 563.938 114.942 563.476 114.942\" fill=\"white\"/>\n<path d=\"M563.482 114.942H563.458C563.422 114.948 563.379 114.954 563.337 114.954H552.236C552.194 114.954 552.157 114.954 552.121 114.942H552.096C551.634 114.942 551.257 115.319 551.257 115.781V118.589H564.315V115.781C564.315 115.319 563.938 114.942 563.476 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_144\">\n<path d=\"M563.343 113.902H552.242C551.956 113.902 551.731 114.133 551.731 114.413V114.443C551.731 114.687 551.902 114.887 552.127 114.942C552.163 114.948 552.206 114.954 552.242 114.954H563.343C563.385 114.954 563.422 114.954 563.464 114.942C563.689 114.887 563.859 114.687 563.859 114.443V114.413C563.859 114.127 563.628 113.902 563.349 113.902\" fill=\"white\"/>\n<path d=\"M563.343 113.902H552.242C551.956 113.902 551.731 114.133 551.731 114.413V114.443C551.731 114.687 551.902 114.887 552.127 114.942C552.163 114.948 552.206 114.954 552.242 114.954H563.343C563.385 114.954 563.422 114.954 563.464 114.942C563.689 114.887 563.859 114.687 563.859 114.443V114.413C563.859 114.127 563.628 113.902 563.349 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_145\">\n<path d=\"M581.002 73.5371H570.734V113.902H581.002V73.5371Z\" fill=\"white\"/>\n<path d=\"M581.002 73.5371H570.734V113.902H581.002V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_146\">\n<path d=\"M581.641 70.9292H570.096C569.993 70.9292 569.896 70.9474 569.805 70.9839C569.531 71.0994 569.336 71.3669 569.336 71.683V71.7316C569.336 72.1511 569.677 72.4915 570.096 72.4915H570.2C570.236 72.4855 570.279 72.4794 570.321 72.4794H581.422C581.464 72.4794 581.501 72.4794 581.543 72.4915H581.647C582.066 72.4915 582.407 72.1511 582.407 71.7316V71.683C582.407 71.3669 582.212 71.0994 581.938 70.9839C581.847 70.9474 581.75 70.9292 581.647 70.9292\" fill=\"white\"/>\n<path d=\"M581.641 70.9292H570.096C569.993 70.9292 569.896 70.9474 569.805 70.9839C569.531 71.0994 569.336 71.3669 569.336 71.683V71.7316C569.336 72.1511 569.677 72.4915 570.096 72.4915H570.2C570.236 72.4855 570.279 72.4794 570.321 72.4794H581.422C581.464 72.4794 581.501 72.4794 581.543 72.4915H581.647C582.066 72.4915 582.407 72.1511 582.407 71.7316V71.683C582.407 71.3669 582.212 71.0994 581.938 70.9839C581.847 70.9474 581.75 70.9292 581.647 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_147\">\n<path d=\"M581.416 72.4795H570.315C570.273 72.4795 570.236 72.4795 570.193 72.4917C569.969 72.5464 569.798 72.747 569.798 72.9901V73.0205C569.798 73.3063 570.029 73.5312 570.309 73.5312H581.409C581.695 73.5312 581.92 73.3002 581.92 73.0205V72.9901C581.92 72.747 581.75 72.5464 581.525 72.4917C581.488 72.4856 581.446 72.4795 581.403 72.4795\" fill=\"white\"/>\n<path d=\"M581.416 72.4795H570.315C570.273 72.4795 570.236 72.4795 570.193 72.4917C569.969 72.5464 569.798 72.747 569.798 72.9901V73.0205C569.798 73.3063 570.029 73.5312 570.309 73.5312H581.409C581.695 73.5312 581.92 73.3002 581.92 73.0205V72.9901C581.92 72.747 581.75 72.5464 581.525 72.4917C581.488 72.4856 581.446 72.4795 581.403 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_148\">\n<path d=\"M581.562 114.942H581.537C581.501 114.948 581.458 114.954 581.416 114.954H570.315C570.273 114.954 570.236 114.954 570.2 114.942H570.175C569.713 114.942 569.336 115.319 569.336 115.781V118.589H582.394V115.781C582.394 115.319 582.017 114.942 581.555 114.942\" fill=\"white\"/>\n<path d=\"M581.562 114.942H581.537C581.501 114.948 581.458 114.954 581.416 114.954H570.315C570.273 114.954 570.236 114.954 570.2 114.942H570.175C569.713 114.942 569.336 115.319 569.336 115.781V118.589H582.394V115.781C582.394 115.319 582.017 114.942 581.555 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_149\">\n<path d=\"M581.416 113.902H570.315C570.03 113.902 569.805 114.133 569.805 114.413V114.443C569.805 114.687 569.975 114.887 570.2 114.942C570.236 114.948 570.279 114.954 570.315 114.954H581.416C581.458 114.954 581.495 114.954 581.537 114.942C581.762 114.887 581.933 114.687 581.933 114.443V114.413C581.933 114.127 581.702 113.902 581.422 113.902\" fill=\"white\"/>\n<path d=\"M581.416 113.902H570.315C570.03 113.902 569.805 114.133 569.805 114.413V114.443C569.805 114.687 569.975 114.887 570.2 114.942C570.236 114.948 570.279 114.954 570.315 114.954H581.416C581.458 114.954 581.495 114.954 581.537 114.942C581.762 114.887 581.933 114.687 581.933 114.443V114.413C581.933 114.127 581.702 113.902 581.422 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_150\">\n<path d=\"M600.431 67.7378H533.336C533.038 67.7378 532.801 67.9749 532.801 68.2728V69.8108C532.801 70.1086 533.038 70.3457 533.336 70.3457H600.425C600.723 70.3457 600.96 70.1086 600.96 69.8108V68.2728C600.96 67.9749 600.723 67.7378 600.425 67.7378\" fill=\"white\"/>\n<path d=\"M600.431 67.7378H533.336C533.038 67.7378 532.801 67.9749 532.801 68.2728V69.8108C532.801 70.1086 533.038 70.3457 533.336 70.3457H600.425C600.723 70.3457 600.96 70.1086 600.96 69.8108V68.2728C600.96 67.9749 600.723 67.7378 600.425 67.7378\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_151\">\n<path d=\"M566.899 43.8833L549.026 54.85L534.083 64.0173H599.72L584.777 54.85L566.886 43.9076\" fill=\"white\"/>\n<path d=\"M566.899 43.8833L549.026 54.85L534.083 64.0173H599.72L584.777 54.85L566.886 43.9076\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_152\">\n<path d=\"M534.065 64.0416L549.008 54.8743L566.886 43.9076L584.759 54.8743L599.701 64.0416H534.065ZM566.886 41.4517C566.576 41.4517 566.266 41.5368 565.987 41.707L547.786 52.8743L530.94 63.2088C530.679 63.3668 530.46 63.5979 530.326 63.8593C530.187 64.1207 530.12 64.4003 530.126 64.6678C530.126 65.0994 530.278 65.5067 530.576 65.835C530.728 65.9991 530.916 66.1389 531.135 66.2362C531.354 66.3335 531.597 66.3882 531.84 66.3882H601.926C602.169 66.3882 602.413 66.3395 602.631 66.2362C602.96 66.0903 603.221 65.8471 603.385 65.5675C603.555 65.2939 603.641 64.9839 603.641 64.6617C603.641 64.3942 603.58 64.1146 603.44 63.8532C603.3 63.5918 603.081 63.3608 602.826 63.2027L585.981 52.8682L567.78 41.707C567.506 41.5368 567.196 41.4517 566.886 41.4517Z\" fill=\"white\"/>\n<path d=\"M534.065 64.0416L549.008 54.8743L566.886 43.9076L584.759 54.8743L599.701 64.0416H534.065ZM566.886 41.4517C566.576 41.4517 566.266 41.5368 565.987 41.707L547.786 52.8743L530.94 63.2088C530.679 63.3668 530.46 63.5979 530.326 63.8593C530.187 64.1207 530.12 64.4003 530.126 64.6678C530.126 65.0994 530.278 65.5067 530.576 65.835C530.728 65.9991 530.916 66.1389 531.135 66.2362C531.354 66.3335 531.597 66.3882 531.84 66.3882H601.926C602.169 66.3882 602.413 66.3395 602.631 66.2362C602.96 66.0903 603.221 65.8471 603.385 65.5675C603.555 65.2939 603.641 64.9839 603.641 64.6617C603.641 64.3942 603.58 64.1146 603.44 63.8532C603.3 63.5918 603.081 63.3608 602.826 63.2027L585.981 52.8682L567.78 41.707C567.506 41.5368 567.196 41.4517 566.886 41.4517Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<path id=\"Vector_153\" d=\"M603.241 118.589H601.071H588.007H582.997H569.933H564.918H551.86H546.845H533.787H530.833V121.617H603.241V118.589Z\" fill=\"#A6BFD5\"/>\n<g id=\"Vector_154\">\n<path d=\"M605.144 121.617H603.095H530.687H528.833V125.75H605.144V121.617Z\" fill=\"white\"/>\n<path d=\"M605.144 121.617H603.095H530.687H528.833V125.75H605.144V121.617Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 6\">\n<rect x=\"496.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"496.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 7\">\n<rect x=\"513.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"513.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 8\">\n<rect x=\"496.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"496.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 9\">\n<rect x=\"513.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"513.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 10\">\n<rect x=\"604.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"604.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 11\">\n<rect x=\"621.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"621.833\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 12\">\n<rect x=\"604.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"604.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 13\">\n<rect x=\"621.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"621.833\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 8_2\">\n<rect x=\"495.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"495.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 9_2\">\n<rect x=\"512.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"512.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 10_2\">\n<rect x=\"495.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"495.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 11_2\">\n<rect x=\"512.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"512.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 12_2\">\n<rect x=\"603.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"603.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 13_2\">\n<rect x=\"620.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"620.833\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 14\">\n<rect x=\"603.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"603.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 15\">\n<rect x=\"620.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"620.833\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Icon\">\n<g id=\"Circle\">\n<path id=\"Vector_155\" d=\"M566.833 61.4873C570.146 61.4873 572.833 58.801 572.833 55.4873C572.833 52.1736 570.146 49.4873 566.833 49.4873C563.519 49.4873 560.833 52.1736 560.833 55.4873C560.833 58.801 563.519 61.4873 566.833 61.4873Z\" fill=\"white\"/>\n</g>\n<g id=\"Artwork 64x64\">\n<path id=\"Vector_156\" d=\"M570.64 56.1689L569.687 53.4416C569.681 53.42 569.67 53.3997 569.657 53.3816C569.646 53.3692 569.634 53.3578 569.621 53.3475H569.613C569.6 53.338 569.585 53.3302 569.57 53.3244H569.549C569.536 53.316 569.521 53.3096 569.506 53.3053H567.242V52.6234C567.242 52.5149 567.199 52.4109 567.122 52.3342C567.045 52.2575 566.941 52.2144 566.833 52.2144C566.724 52.2144 566.62 52.2575 566.544 52.3342C566.467 52.4109 566.424 52.5149 566.424 52.6234V53.3053H564.16C564.147 53.3061 564.134 53.3084 564.122 53.3121H564.101C564.086 53.3179 564.071 53.3257 564.058 53.3353H564.05C564.037 53.3455 564.025 53.3569 564.014 53.3694C564.001 53.3874 563.991 53.4077 563.984 53.4294L563.03 56.1566C563.019 56.1875 563.017 56.2204 563.021 56.2527C563.026 56.2849 563.038 56.3155 563.057 56.3421C563.076 56.3687 563.101 56.3904 563.13 56.4056C563.159 56.4207 563.191 56.4289 563.223 56.4294H565.132C565.165 56.4289 565.197 56.4207 565.226 56.4056C565.255 56.3904 565.28 56.3687 565.298 56.3421C565.317 56.3155 565.33 56.2849 565.334 56.2527C565.339 56.2204 565.336 56.1875 565.326 56.1566L564.464 53.7144H566.424V57.0444L565.319 58.3057C565.284 58.3451 565.261 58.3939 565.253 58.4461C565.245 58.4983 565.253 58.5516 565.274 58.5997C565.296 58.6478 565.332 58.6885 565.376 58.7169C565.421 58.7453 565.472 58.7602 565.525 58.7598H568.141C568.193 58.76 568.245 58.745 568.289 58.7167C568.333 58.6883 568.368 58.6478 568.39 58.6C568.412 58.5522 568.419 58.4991 568.411 58.4471C568.404 58.3952 568.381 58.3465 568.346 58.3071L567.242 57.0444V53.7144H569.201L568.344 56.1689C568.333 56.1998 568.331 56.2327 568.335 56.2649C568.34 56.2972 568.353 56.3278 568.371 56.3544C568.39 56.3809 568.415 56.4027 568.444 56.4178C568.473 56.433 568.505 56.4412 568.537 56.4416H570.446C570.479 56.4412 570.511 56.433 570.54 56.4178C570.569 56.4027 570.594 56.3809 570.612 56.3544C570.631 56.3278 570.644 56.2972 570.648 56.2649C570.653 56.2327 570.65 56.1998 570.64 56.1689ZM563.507 56.0325L564.174 54.1234L564.841 56.0325H563.507ZM568.825 56.0325L569.492 54.1234L570.159 56.0325H568.825Z\" fill=\"#206095\"/>\n<g id=\"Vector_157\">\n<path d=\"M566.833 54.1903C567.209 54.1903 567.515 53.885 567.515 53.5085C567.515 53.1319 567.209 52.8267 566.833 52.8267C566.456 52.8267 566.151 53.1319 566.151 53.5085C566.151 53.885 566.456 54.1903 566.833 54.1903Z\" fill=\"white\"/>\n<path d=\"M566.833 54.1903C567.209 54.1903 567.515 53.885 567.515 53.5085C567.515 53.1319 567.209 52.8267 566.833 52.8267C566.456 52.8267 566.151 53.1319 566.151 53.5085C566.151 53.885 566.456 54.1903 566.833 54.1903Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_158\">\n<path d=\"M565.022 55.9483C565.07 55.9478 565.119 55.9589 565.162 55.9808C565.206 56.0026 565.243 56.0345 565.272 56.0738C565.301 56.1131 565.32 56.1587 565.328 56.2068C565.335 56.255 565.331 56.3042 565.316 56.3505C565.233 56.5867 565.078 56.7912 564.873 56.9358C564.669 57.0805 564.424 57.1581 564.174 57.1581C563.923 57.1581 563.679 57.0805 563.474 56.9358C563.269 56.7912 563.115 56.5867 563.031 56.3505C563.016 56.3042 563.012 56.255 563.019 56.2068C563.027 56.1587 563.046 56.1131 563.075 56.0738C563.104 56.0345 563.141 56.0026 563.185 55.9808C563.229 55.9589 563.277 55.9478 563.325 55.9483H565.022Z\" fill=\"white\"/>\n<path d=\"M565.022 55.9483C565.07 55.9478 565.119 55.9589 565.162 55.9808C565.206 56.0026 565.243 56.0345 565.272 56.0738C565.301 56.1131 565.32 56.1587 565.328 56.2068C565.335 56.255 565.331 56.3042 565.316 56.3505C565.233 56.5867 565.078 56.7912 564.873 56.9358C564.669 57.0805 564.424 57.1581 564.174 57.1581C563.923 57.1581 563.679 57.0805 563.474 56.9358C563.269 56.7912 563.115 56.5867 563.031 56.3505C563.016 56.3042 563.012 56.255 563.019 56.2068C563.027 56.1587 563.046 56.1131 563.075 56.0738C563.104 56.0345 563.141 56.0026 563.185 55.9808C563.229 55.9589 563.277 55.9478 563.325 55.9483H565.022Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_159\">\n<path d=\"M570.34 55.9483C570.388 55.9478 570.436 55.9589 570.48 55.9808C570.524 56.0026 570.561 56.0345 570.59 56.0738C570.619 56.1131 570.638 56.1587 570.646 56.2068C570.653 56.255 570.649 56.3042 570.634 56.3505C570.551 56.5867 570.396 56.7912 570.191 56.9358C569.986 57.0805 569.742 57.1581 569.491 57.1581C569.241 57.1581 568.996 57.0805 568.792 56.9358C568.587 56.7912 568.432 56.5867 568.349 56.3505C568.334 56.3042 568.33 56.255 568.337 56.2068C568.345 56.1587 568.364 56.1131 568.393 56.0738C568.422 56.0345 568.459 56.0026 568.503 55.9808C568.546 55.9589 568.595 55.9478 568.643 55.9483H570.34Z\" fill=\"white\"/>\n<path d=\"M570.34 55.9483C570.388 55.9478 570.436 55.9589 570.48 55.9808C570.524 56.0026 570.561 56.0345 570.59 56.0738C570.619 56.1131 570.638 56.1587 570.646 56.2068C570.653 56.255 570.649 56.3042 570.634 56.3505C570.551 56.5867 570.396 56.7912 570.191 56.9358C569.986 57.0805 569.742 57.1581 569.491 57.1581C569.241 57.1581 568.996 57.0805 568.792 56.9358C568.587 56.7912 568.432 56.5867 568.349 56.3505C568.334 56.3042 568.33 56.255 568.337 56.2068C568.345 56.1587 568.364 56.1131 568.393 56.0738C568.422 56.0345 568.459 56.0026 568.503 55.9808C568.546 55.9589 568.595 55.9478 568.643 55.9483H570.34Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n</g>\n</g>\n<g id=\"Bush_2\">\n<g id=\"Vector_160\">\n<path d=\"M681.329 111.962C685.678 114.179 688.387 115.261 689.527 116.397C690.671 117.533 693.372 120.844 691.827 123.23C690.278 125.617 689.767 127.484 685.414 127.288C681.062 127.091 679.296 126.474 675.774 126.796C672.251 127.119 669.137 125.538 668.41 124.779C667.682 124.021 665.496 120.502 668.39 117.388C671.284 114.27 677.488 110.004 681.329 111.962Z\" fill=\"white\"/>\n<path d=\"M681.329 111.962C685.678 114.179 688.387 115.261 689.527 116.397C690.671 117.533 693.372 120.844 691.827 123.23C690.278 125.617 689.767 127.484 685.414 127.288C681.062 127.091 679.296 126.474 675.774 126.796C672.251 127.119 669.137 125.538 668.41 124.779C667.682 124.021 665.496 120.502 668.39 117.388C671.284 114.27 677.488 110.004 681.329 111.962Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_161\">\n<path d=\"M669.782 109.772C666.782 108.101 663.487 108.014 659.205 110.688C654.924 113.365 654.019 115.142 653.76 116.326C653.504 117.509 651.554 118.256 652.081 120.623C652.608 122.99 657.648 125.491 660.916 125.778C664.183 126.065 664.867 125.766 668.748 125.164C672.628 124.563 675.746 123.666 677.166 120.702C678.589 117.737 672.955 111.537 669.778 109.772H669.782Z\" fill=\"white\"/>\n<path d=\"M669.782 109.772C666.782 108.101 663.487 108.014 659.205 110.688C654.924 113.365 654.019 115.142 653.76 116.326C653.504 117.509 651.554 118.256 652.081 120.623C652.608 122.99 657.648 125.491 660.916 125.778C664.183 126.065 664.867 125.766 668.748 125.164C672.628 124.563 675.746 123.666 677.166 120.702C678.589 117.737 672.955 111.537 669.778 109.772H669.782Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_162\">\n<path d=\"M658.136 113.625C664.887 115.835 669.094 116.912 670.871 118.048C672.644 119.185 676.839 122.487 674.433 124.878C672.023 127.268 671.225 129.136 664.462 128.947C657.699 128.758 654.959 128.145 649.486 128.471C644.013 128.798 639.177 127.225 638.049 126.466C636.92 125.707 633.527 122.192 638.029 119.074C642.531 115.953 652.179 111.679 658.144 113.633L658.136 113.625Z\" fill=\"white\"/>\n<path d=\"M658.136 113.625C664.887 115.835 669.094 116.912 670.871 118.048C672.644 119.185 676.839 122.487 674.433 124.878C672.023 127.268 671.225 129.136 664.462 128.947C657.699 128.758 654.959 128.145 649.486 128.471C644.013 128.798 639.177 127.225 638.049 126.466C636.92 125.707 633.527 122.192 638.029 119.074C642.531 115.953 652.179 111.679 658.144 113.633L658.136 113.625Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_163\">\n<path d=\"M678.675 123.191C676.949 122.342 675.054 122.291 672.585 123.64C670.116 124.988 669.593 125.889 669.444 126.486C669.294 127.084 668.17 127.461 668.472 128.656C668.771 129.856 671.669 131.13 673.552 131.279C675.436 131.428 675.829 131.279 678.062 130.98C680.295 130.681 682.092 130.229 682.918 128.731C683.743 127.233 680.507 124.088 678.683 123.187L678.675 123.191Z\" fill=\"white\"/>\n<path d=\"M678.675 123.191C676.949 122.342 675.054 122.291 672.585 123.64C670.116 124.988 669.593 125.889 669.444 126.486C669.294 127.084 668.17 127.461 668.472 128.656C668.771 129.856 671.669 131.13 673.552 131.279C675.436 131.428 675.829 131.279 678.062 130.98C680.295 130.681 682.092 130.229 682.918 128.731C683.743 127.233 680.507 124.088 678.683 123.187L678.675 123.191Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_164\">\n<path d=\"M671.701 124.685C670.332 124.013 668.83 123.973 666.872 125.043C664.914 126.112 664.501 126.824 664.38 127.299C664.262 127.775 663.373 128.07 663.609 129.022C663.845 129.973 666.145 130.98 667.635 131.101C669.125 131.219 669.44 131.101 671.209 130.866C672.982 130.63 674.406 130.272 675.058 129.084C675.711 127.897 673.147 125.404 671.701 124.693V124.685Z\" fill=\"white\"/>\n<path d=\"M671.701 124.685C670.332 124.013 668.83 123.973 666.872 125.043C664.914 126.112 664.501 126.824 664.38 127.299C664.262 127.775 663.373 128.07 663.609 129.022C663.845 129.973 666.145 130.98 667.635 131.101C669.125 131.219 669.44 131.101 671.209 130.866C672.982 130.63 674.406 130.272 675.058 129.084C675.711 127.897 673.147 125.404 671.701 124.693V124.685Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_165\">\n<path d=\"M676.198 120.219C674.472 119.369 672.577 119.318 670.108 120.667C667.639 122.015 667.116 122.916 666.967 123.513C666.817 124.111 665.693 124.489 665.995 125.684C666.294 126.883 666.514 128.668 668.398 128.817C670.281 128.967 673.352 128.306 675.585 128.007C677.818 127.709 679.615 127.257 680.441 125.759C681.262 124.261 678.03 121.115 676.206 120.215L676.198 120.219Z\" fill=\"white\"/>\n<path d=\"M676.198 120.219C674.472 119.369 672.577 119.318 670.108 120.667C667.639 122.015 667.116 122.916 666.967 123.513C666.817 124.111 665.693 124.489 665.995 125.684C666.294 126.883 666.514 128.668 668.398 128.817C670.281 128.967 673.352 128.306 675.585 128.007C677.818 127.709 679.615 127.257 680.441 125.759C681.262 124.261 678.03 121.115 676.206 120.215L676.198 120.219Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Flats\" clip-path=\"url(#clip1_1849_10335)\">\n<path id=\"Vector_166\" d=\"M198.616 21.1265H200.067V23.6337H198.616V21.1265Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_167\" d=\"M196.045 21.1265H197.497V23.6337H196.045V21.1265Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_168\" d=\"M207.06 23.2844C206.438 23.2844 205.935 22.7739 205.935 22.1441C205.935 21.5144 206.438 21.0039 207.06 21.0039C207.681 21.0039 208.185 21.5144 208.185 22.1441C208.185 22.7739 207.681 23.2844 207.06 23.2844Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_169\" d=\"M205.928 22.1196H208.185V24.4062H205.928V22.1196Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_170\" d=\"M207.06 21.3349C206.879 21.3349 206.733 21.1867 206.733 21.0039C206.733 20.8211 206.879 20.6729 207.06 20.6729C207.24 20.6729 207.386 20.8211 207.386 21.0039C207.386 21.1867 207.24 21.3349 207.06 21.3349Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_171\" d=\"M204.483 23.2844C203.862 23.2844 203.358 22.7739 203.358 22.1441C203.358 21.5144 203.862 21.0039 204.483 21.0039C205.104 21.0039 205.608 21.5144 205.608 22.1441C205.608 22.7739 205.104 23.2844 204.483 23.2844Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_172\" d=\"M203.358 22.1196H205.614V24.4062H203.358V22.1196Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_173\" d=\"M204.483 21.3349C204.303 21.3349 204.156 21.1867 204.156 21.0039C204.156 20.8211 204.303 20.6729 204.483 20.6729C204.663 20.6729 204.81 20.8211 204.81 21.0039C204.81 21.1867 204.663 21.3349 204.483 21.3349Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_174\" d=\"M266.347 14.1255H289.107V15.1676H266.347V14.1255Z\" fill=\"#003C57\"/>\n<g id=\"Vector_175\">\n<path d=\"M266.353 15.186H289.107V28.5623H266.353V15.186Z\" fill=\"white\"/>\n<path d=\"M266.353 15.186H289.107V28.5623H266.353V15.186Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_176\" d=\"M268.766 17.1787H276.133V31.1741H268.766V17.1787Z\" fill=\"#003C57\"/>\n<path id=\"Vector_177\" d=\"M269.692 18.1104H275.214V31.174H269.692V18.1104Z\" fill=\"#EBEBF4\"/>\n<g id=\"Vector_178\">\n<path d=\"M172.444 29.5186H295.67V125.212H172.444V29.5186Z\" fill=\"white\"/>\n<path d=\"M172.444 29.5186H295.67V125.212H172.444V29.5186Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_179\" opacity=\"0.4\" d=\"M231.792 29.4268H234.713V125.819H231.792V29.4268Z\" fill=\"#EBEBF4\"/>\n<path id=\"Vector_180\" d=\"M172.462 28.3354H295.646V29.5186H172.462V28.3354Z\" fill=\"#003C57\"/>\n<g id=\"Vector_181\">\n<path d=\"M193.215 23.1553H210.955V28.3047H193.215V23.1553Z\" fill=\"white\"/>\n<path d=\"M193.215 23.1553H210.955V28.3047H193.215V23.1553Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_182\" d=\"M266.728 35.6611V50.8213H266.335H243.52H243.145V35.6611H266.728Z\" fill=\"white\"/>\n<g id=\"Vector_183\">\n<path d=\"M290.063 35.6611V118.622H289.906H280.621H280.47V35.6611H290.063Z\" fill=\"white\"/>\n<path d=\"M290.063 35.6611V118.622H289.906H280.621H280.47V35.6611H290.063Z\" fill=\"#6390B5\"/>\n</g>\n<path id=\"Vector_184\" d=\"M244.125 36.8442H265.657V49.4665H244.125V36.8442Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_185\" d=\"M266.571 59.5205V74.6807H266.172H243.363H242.982V59.5205H266.571Z\" fill=\"white\"/>\n<path id=\"Vector_186\" d=\"M243.967 60.6973H265.5V73.1478H243.967V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_187\" d=\"M266.571 83.3179V98.4842H266.172H243.363H242.982V83.3179H266.571Z\" fill=\"white\"/>\n<path id=\"Vector_188\" d=\"M243.967 84.501H265.5V97.1477H243.967V84.501Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_189\" d=\"M241.875 98.2021H275.625V99.0849H241.875V98.2021Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_190\" opacity=\"0.5\" d=\"M241.905 93.4453H275.644V98.2024H241.905V93.4453Z\" fill=\"white\"/>\n<path id=\"Vector_191\" d=\"M266.571 108.195V123.355H266.172H243.363H242.982V108.195H266.571Z\" fill=\"white\"/>\n<path id=\"Vector_192\" d=\"M243.967 109.372H265.5V121.932H243.967V109.372Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_193\" d=\"M241.875 123.073H275.625V123.956H241.875V123.073Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_194\" opacity=\"0.5\" d=\"M241.905 118.315H275.644V123.073H241.905V118.315Z\" fill=\"white\"/>\n<path id=\"Vector_195\" d=\"M241.875 74.3496H275.625V75.2324H241.875V74.3496Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_196\" d=\"M295.646 73.3687H302.045V74.2514H295.646V73.3687Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_197\" opacity=\"0.7\" d=\"M295.664 68.6113H302.027V73.3684H295.664V68.6113Z\" fill=\"white\"/>\n<path id=\"Vector_198\" d=\"M295.646 50.0488H302.045V50.9316H295.646V50.0488Z\" fill=\"#003C57\"/>\n<path id=\"Vector_199\" opacity=\"0.7\" d=\"M295.664 45.292H302.027V50.0491H295.664V45.292Z\" fill=\"white\"/>\n<path id=\"Vector_200\" d=\"M295.646 97.7607H302.045V98.6435H295.646V97.7607Z\" fill=\"#003C57\"/>\n<path id=\"Vector_201\" opacity=\"0.7\" d=\"M295.664 93.0039H302.027V97.761H295.664V93.0039Z\" fill=\"white\"/>\n<path id=\"Vector_202\" d=\"M166.045 73.3687H172.444V74.2514H166.045V73.3687Z\" fill=\"#003C57\"/>\n<path id=\"Vector_203\" opacity=\"0.7\" d=\"M166.063 68.6113H172.426V73.3684H166.063V68.6113Z\" fill=\"white\"/>\n<path id=\"Vector_204\" d=\"M166.045 50.0488H172.444V50.9316H166.045V50.0488Z\" fill=\"#003C57\"/>\n<path id=\"Vector_205\" opacity=\"0.7\" d=\"M166.063 45.292H172.426V50.0491H166.063V45.292Z\" fill=\"white\"/>\n<path id=\"Vector_206\" d=\"M166.045 97.7607H172.444V98.6435H166.045V97.7607Z\" fill=\"#003C57\"/>\n<path id=\"Vector_207\" opacity=\"0.7\" d=\"M166.063 93.0039H172.426V97.761H166.063V93.0039Z\" fill=\"white\"/>\n<path id=\"Vector_208\" d=\"M241.875 50.4902H275.625V51.373H241.875V50.4902Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_209\" opacity=\"0.5\" d=\"M241.947 45.7334H275.655V50.4905H241.947V45.7334Z\" fill=\"white\"/>\n<path id=\"Vector_210\" d=\"M281.649 37.1753H288.883V46.5607H281.649V37.1753Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_211\" d=\"M281.649 60.6973H288.883V70.0827H281.649V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_212\" d=\"M281.649 84.2192H288.883V93.6047H281.649V84.2192Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_213\" d=\"M281.649 107.741H288.883V117.127H281.649V107.741Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_214\" d=\"M204.065 35.6611V50.8213H203.672H180.863H180.482V35.6611H204.065Z\" fill=\"white\"/>\n<g id=\"Vector_215\">\n<path d=\"M227.401 35.6611V118.622H227.244H217.959H217.808V35.6611H227.401Z\" fill=\"white\"/>\n<path d=\"M227.401 35.6611V118.622H227.244H217.959H217.808V35.6611H227.401Z\" fill=\"#6390B5\"/>\n</g>\n<path id=\"Vector_216\" d=\"M181.468 36.8442H203.001V49.4235H181.468V36.8442Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_217\" d=\"M203.908 59.5205V74.6807H203.515H180.7H180.325V59.5205H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_218\" d=\"M181.305 60.6973H202.838V73.1724H181.305V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_219\" d=\"M203.908 83.3179V98.4842H203.515H180.7H180.325V83.3179H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_220\" d=\"M181.305 84.501H202.838V97.0067H181.305V84.501Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_221\" d=\"M179.219 98.2021H212.969V99.0849H179.219V98.2021Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_222\" opacity=\"0.5\" d=\"M179.243 93.4453H212.981V98.2024H179.243V93.4453Z\" fill=\"white\"/>\n<path id=\"Vector_223\" d=\"M203.908 108.195V123.355H203.515H180.7H180.325V108.195H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_224\" d=\"M181.305 109.372H202.838V121.902H181.305V109.372Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_225\" d=\"M179.219 123.073H212.969V123.956H179.219V123.073Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_226\" opacity=\"0.5\" d=\"M179.243 118.315H212.981V123.073H179.243V118.315Z\" fill=\"white\"/>\n<path id=\"Vector_227\" d=\"M179.219 74.3496H212.969V75.2324H179.219V74.3496Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_228\" opacity=\"0.5\" d=\"M179.231 69.5923H212.969V74.3494H179.231V69.5923Z\" fill=\"white\"/>\n<path id=\"Vector_229\" d=\"M179.219 50.4902H212.969V51.373H179.219V50.4902Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_230\" d=\"M218.987 37.1753H226.221V46.5607H218.987V37.1753Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_231\" d=\"M218.987 60.6973H226.221V70.0827H218.987V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_232\" d=\"M218.987 84.2192H226.221V93.6047H218.987V84.2192Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_233\" d=\"M218.987 107.741H226.221V117.127H218.987V107.741Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_234\" opacity=\"0.5\" d=\"M241.893 69.5923H275.631V74.3494H241.893V69.5923Z\" fill=\"white\"/>\n<path id=\"Vector_235\" opacity=\"0.5\" d=\"M179.285 45.7334H212.993V50.4905H179.285V45.7334Z\" fill=\"white\"/>\n</g>\n<g id=\"House\" clip-path=\"url(#clip2_1849_10335)\">\n<path id=\"Vector_236\" d=\"M180.966 101.642L177.736 104.85L178.049 105.161L181.279 101.952L180.966 101.642Z\" fill=\"#003C57\"/>\n<path id=\"Vector_237\" d=\"M114.431 95.9507H101.169V104.616H114.431V95.9507Z\" fill=\"#206095\"/>\n<g id=\"Vector_238\">\n<path d=\"M184 102.09H177.769V95.9468V95.951L184 102.09Z\" fill=\"white\"/>\n<path d=\"M184 102.09H177.769V95.9468V95.951L184 102.09Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_239\" d=\"M101.17 95.9507H100V104.616H101.17V95.9507Z\" fill=\"#003C57\"/>\n<path id=\"Vector_240\" d=\"M178.126 102.085H177.773V106.036H178.126V102.085Z\" fill=\"#003C57\"/>\n<path id=\"Vector_241\" d=\"M177.774 74.5513H114.431V86.8248H177.774V74.5513Z\" fill=\"#206095\"/>\n<g id=\"Vector_242\">\n<path d=\"M161.935 69.1309H130.266V86.8504H161.935V69.1309Z\" fill=\"white\"/>\n<path d=\"M161.935 69.1309H130.266V86.8504H161.935V69.1309Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_243\" d=\"M146.173 69.1309H146.032V84.8858H146.173V69.1309Z\" fill=\"#003C57\"/>\n<g id=\"Vector_244\">\n<path d=\"M146.1 86.8248L161.935 71.0952L177.769 86.8248V125.804H146.1V86.8248Z\" fill=\"white\"/>\n<path d=\"M146.1 86.8248L161.935 71.0952L177.769 86.8248V125.804H146.1V86.8248Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_245\" d=\"M161.935 71.0955L177.769 86.8251V84.8605L161.935 69.1309L146.1 84.8605V86.8251L161.935 71.0955Z\" fill=\"#003C57\"/>\n<g id=\"Vector_246\">\n<path d=\"M114.431 86.8248L130.266 71.0952L146.1 86.8248V125.804H114.431V86.8248Z\" fill=\"white\"/>\n<path d=\"M114.431 86.8248L130.266 71.0952L146.1 86.8248V125.804H114.431V86.8248Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_247\" d=\"M130.266 71.0955L146.1 86.8251V84.8605L130.266 69.1309L114.431 84.8605V86.8251L130.266 71.0955Z\" fill=\"#003C57\"/>\n<path id=\"Vector_248\" d=\"M167.038 84.7041H162.215V92.026H167.038V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_249\" d=\"M161.73 84.7041H156.831V92.026H161.73V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_250\" d=\"M155.551 92.0218V92.7612H168.327V92.0218H167.532V84.2183H156.35V92.0218H155.555H155.551ZM156.831 84.6999H161.731V92.0218H156.831V84.6999ZM167.043 92.0218H162.22V84.6999H167.043V92.0218Z\" fill=\"#003C57\"/>\n<path id=\"Vector_251\" d=\"M135.369 84.7041H130.546V92.026H135.369V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_252\" d=\"M130.061 84.7041H125.162V92.026H130.061V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_253\" d=\"M123.877 92.0218V92.7612H136.654V92.0218H135.859V84.2183H124.677V92.0218H123.882H123.877ZM125.158 84.6999H130.057V92.0218H125.158V84.6999ZM135.369 92.0218H130.546V84.6999H135.369V92.0218Z\" fill=\"#003C57\"/>\n<g id=\"Vector_254\">\n<path d=\"M114.431 104.583H100.463V124.541H114.431V104.583Z\" fill=\"white\"/>\n<path d=\"M114.431 104.583H100.463V124.541H114.431V104.583Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_255\" d=\"M111.607 109.09H103.288V124.583H111.607V109.09Z\" fill=\"#003C57\"/>\n<g id=\"Vector_256\">\n<path d=\"M110.569 110.122H104.33V124.579H110.569V110.122Z\" fill=\"white\"/>\n<path d=\"M110.569 110.122H104.33V124.579H110.569V110.122Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_257\" d=\"M107.447 115.2C108.553 115.2 109.45 114.309 109.45 113.21C109.45 112.111 108.553 111.22 107.447 111.22C106.341 111.22 105.444 112.111 105.444 113.21C105.444 114.309 106.341 115.2 107.447 115.2Z\" fill=\"white\"/>\n<path id=\"Vector_258\" d=\"M178.479 74.5513H177.773V86.8248H178.479V74.5513Z\" fill=\"#003C57\"/>\n<path id=\"Vector_259\" d=\"M114.431 74.5513H113.725V86.8248H114.431V74.5513Z\" fill=\"#003C57\"/>\n<path id=\"Vector_260\" d=\"M149.817 62.751H146.228V67.3942H149.817V62.751Z\" fill=\"#003C57\"/>\n<path id=\"Vector_261\" d=\"M145.977 62.751H142.387V67.3942H145.977V62.751Z\" fill=\"#003C57\"/>\n<g id=\"Group\" opacity=\"0.75\">\n<g id=\"Vector_262\">\n<path d=\"M142.472 61.813H149.728C149.987 61.813 150.2 62.0242 150.2 62.282C150.2 62.5397 149.987 62.7509 149.728 62.7509H142.472C142.213 62.7509 142 62.5397 142 62.282C142 62.0242 142.213 61.813 142.472 61.813Z\" fill=\"white\"/>\n<path d=\"M142.472 61.813H149.728C149.987 61.813 150.2 62.0242 150.2 62.282C150.2 62.5397 149.987 62.7509 149.728 62.7509H142.472C142.213 62.7509 142 62.5397 142 62.282C142 62.0242 142.213 61.813 142.472 61.813Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n<path id=\"Vector_263\" d=\"M150.914 69.1263H141.29C141.29 68.1672 142.072 67.394 143.033 67.394H149.166C150.132 67.394 150.91 68.1714 150.91 69.1263H150.914Z\" fill=\"#003C57\"/>\n<g id=\"Vector_264\">\n<path d=\"M139.848 109.112H120.683L124.605 102.947H135.926L139.848 109.112Z\" fill=\"white\"/>\n<path d=\"M139.848 109.112H120.683L124.605 102.947H135.926L139.848 109.112Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<g id=\"Vector_265\">\n<path d=\"M171.521 109.112H152.352L156.273 102.947H167.6L171.521 109.112Z\" fill=\"white\"/>\n<path d=\"M171.521 109.112H152.352L156.273 102.947H167.6L171.521 109.112Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_266\" d=\"M158.264 109.297H154.024V117.625H158.264V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_267\" d=\"M153.262 117.313V117.938H161.905V117.313H161.335V109.112H153.836V117.313H153.262ZM160.952 117.313H154.211V109.488H160.952V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_268\" d=\"M169.816 109.297H165.418V117.625H169.816V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_269\" d=\"M161.935 117.313V117.938H170.577V117.313H170.007V109.112H162.509V117.313H161.935ZM169.624 117.313H162.883V109.488H169.624V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_270\" d=\"M165.418 109.297H158.298V117.625H165.418V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_271\" d=\"M157.541 117.313V117.938H166.183V117.313H165.614V109.112H158.115V117.313H157.541ZM165.231 117.313H158.489V109.488H165.231V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_272\" d=\"M126.629 109.297H122.389V117.625H126.629V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_273\" d=\"M121.627 117.313V117.938H130.27V117.313H129.7V109.112H122.202V117.313H121.627ZM129.317 117.313H122.576V109.488H129.317V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_274\" d=\"M138.147 109.297H133.749V117.625H138.147V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_275\" d=\"M130.266 117.313V117.938H138.908V117.313H138.338V109.112H130.84V117.313H130.266ZM137.955 117.313H131.214V109.488H137.955V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_276\" d=\"M133.749 109.297H126.629V117.625H133.749V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_277\" d=\"M125.868 117.313V117.938H134.51V117.313H133.94V109.112H126.442V117.313H125.868ZM133.557 117.313H126.816V109.488H133.557V117.313Z\" fill=\"#003C57\"/>\n<g id=\"Vector_278\">\n<path d=\"M170.577 117.938H165.418V125.8H170.577V117.938Z\" fill=\"white\"/>\n<path d=\"M170.577 117.938H165.418V125.8H170.577V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_279\">\n<path d=\"M138.904 117.938H133.745V125.8H138.904V117.938Z\" fill=\"white\"/>\n<path d=\"M138.904 117.938H133.745V125.8H138.904V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_280\">\n<path d=\"M126.787 117.938H121.627V125.8H126.787V117.938Z\" fill=\"white\"/>\n<path d=\"M126.787 117.938H121.627V125.8H126.787V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_281\">\n<path d=\"M133.749 117.938H126.787V125.8H133.749V117.938Z\" fill=\"white\"/>\n<path d=\"M133.749 117.938H126.787V125.8H133.749V117.938Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_282\">\n<path d=\"M158.477 117.946H153.318V125.809H158.477V117.946Z\" fill=\"white\"/>\n<path d=\"M158.477 117.946H153.318V125.809H158.477V117.946Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_283\">\n<path d=\"M165.422 117.946H158.485V125.809H165.422V117.946Z\" fill=\"white\"/>\n<path d=\"M165.422 117.946H158.485V125.809H165.422V117.946Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n</g>\n</g>\n<g id=\"Tree\">\n<g id=\"Vector_284\">\n<path d=\"M82.1082 62.9994C83.1949 66.5107 84.3987 69.9986 85.3383 73.5419C86.6742 78.5767 87.8142 83.6541 88.7453 87.5021C90.5137 80.9119 92.6082 73.103 94.7026 65.2941C95.003 65.309 95.3013 65.3261 95.6018 65.341C95.5975 66.6556 95.9853 68.0874 95.5293 69.2657C91.3319 80.147 90.5691 91.2968 91.954 102.638C92.0308 103.273 92.2864 103.893 92.5549 104.873C94.4853 102.981 96.1451 101.358 97.8027 99.7321C98.0605 99.9175 98.3184 100.105 98.5762 100.29C97.2743 101.98 96.128 103.787 94.6302 105.325C92.6827 107.326 92.4526 109.584 92.67 112.018C93.0194 115.938 93.3305 119.863 93.7076 123.781C94.057 127.412 93.9484 127.52 89.5549 126.945C89.1906 122.579 88.8241 118.175 88.4534 113.771C88.3809 112.917 88.1487 112.054 88.2318 111.214C89.133 102.05 82.6622 96.3572 76.0273 90.7727C74.5337 89.5156 72.7375 88.544 71.3398 87.1718C79.8646 88.8956 83.4441 95.7478 88.6579 101.015C87.3944 93.4871 86.3206 86.1512 84.8738 78.8729C84.1451 75.2039 82.6579 71.6584 81.6736 68.0214C81.2304 66.3893 81.1792 64.6741 80.9513 62.9951C81.3369 62.9951 81.7226 62.9951 82.1082 62.9972V62.9994Z\" fill=\"white\"/>\n<path d=\"M82.1082 62.9994C83.1949 66.5107 84.3987 69.9986 85.3383 73.5419C86.6742 78.5767 87.8142 83.6541 88.7453 87.5021C90.5137 80.9119 92.6082 73.103 94.7026 65.2941C95.003 65.309 95.3013 65.3261 95.6018 65.341C95.5975 66.6556 95.9853 68.0874 95.5293 69.2657C91.3319 80.147 90.5691 91.2968 91.954 102.638C92.0308 103.273 92.2864 103.893 92.5549 104.873C94.4853 102.981 96.1451 101.358 97.8027 99.7321C98.0605 99.9175 98.3184 100.105 98.5762 100.29C97.2743 101.98 96.128 103.787 94.6302 105.325C92.6827 107.326 92.4526 109.584 92.67 112.018C93.0194 115.938 93.3305 119.863 93.7076 123.781C94.057 127.412 93.9484 127.52 89.5549 126.945C89.1906 122.579 88.8241 118.175 88.4534 113.771C88.3809 112.917 88.1487 112.054 88.2318 111.214C89.133 102.05 82.6622 96.3572 76.0273 90.7727C74.5337 89.5156 72.7375 88.544 71.3398 87.1718C79.8646 88.8956 83.4441 95.7478 88.6579 101.015C87.3944 93.4871 86.3206 86.1512 84.8738 78.8729C84.1451 75.2039 82.6579 71.6584 81.6736 68.0214C81.2304 66.3893 81.1792 64.6741 80.9513 62.9951C81.3369 62.9951 81.7226 62.9951 82.1082 62.9972V62.9994Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_285\">\n<path d=\"M96.5969 84.7475C99.5586 82.9833 102.812 82.8895 107.039 85.7126C111.267 88.5379 112.159 90.415 112.413 91.6657C112.666 92.9164 114.588 93.7027 114.068 96.2041C113.549 98.7034 108.573 101.348 105.345 101.65C102.12 101.955 101.444 101.639 97.6133 101.004C93.7823 100.37 90.7056 99.4235 89.3036 96.2936C87.9017 93.1636 93.4627 86.6139 96.5991 84.7475H96.5969Z\" fill=\"white\"/>\n<path d=\"M96.5969 84.7475C99.5586 82.9833 102.812 82.8895 107.039 85.7126C111.267 88.5379 112.159 90.415 112.413 91.6657C112.666 92.9164 114.588 93.7027 114.068 96.2041C113.549 98.7034 108.573 101.348 105.345 101.65C102.12 101.955 101.444 101.639 97.6133 101.004C93.7823 100.37 90.7056 99.4235 89.3036 96.2936C87.9017 93.1636 93.4627 86.6139 96.5991 84.7475H96.5969Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_286\">\n<path d=\"M65.257 75.6538C68.6597 73.9919 72.4011 73.9024 77.2612 76.5722C82.1212 79.2398 83.1482 81.0125 83.4401 82.195C83.732 83.3754 85.9437 84.119 85.3449 86.4777C84.7484 88.8363 79.0296 91.3271 75.3223 91.6126C71.6128 91.8981 70.8372 91.5998 66.4331 90.9989C62.029 90.396 58.4921 89.5032 56.877 86.548C55.262 83.5927 61.6519 77.4159 65.257 75.656V75.6538Z\" fill=\"white\"/>\n<path d=\"M65.257 75.6538C68.6597 73.9919 72.4011 73.9024 77.2612 76.5722C82.1212 79.2398 83.1482 81.0125 83.4401 82.195C83.732 83.3754 85.9437 84.119 85.3449 86.4777C84.7484 88.8363 79.0296 91.3271 75.3223 91.6126C71.6128 91.8981 70.8372 91.5998 66.4331 90.9989C62.029 90.396 58.4921 89.5032 56.877 86.548C55.262 83.5927 61.6519 77.4159 65.257 75.656V75.6538Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_287\">\n<path d=\"M81.4753 52.7554C74.5101 56.3072 70.172 58.0373 68.3418 59.859C66.5115 61.6808 62.1799 66.9797 64.66 70.8043C67.1401 74.6288 67.9625 77.6203 74.9341 77.3071C81.9078 76.9939 84.7309 76.0053 90.3751 76.5188C96.0171 77.0322 101.005 74.5053 102.17 73.2887C103.336 72.072 106.837 66.4385 102.202 61.4443C97.5682 56.4521 87.6265 49.619 81.4753 52.7554Z\" fill=\"white\"/>\n<path d=\"M81.4753 52.7554C74.5101 56.3072 70.172 58.0373 68.3418 59.859C66.5115 61.6808 62.1799 66.9797 64.66 70.8043C67.1401 74.6288 67.9625 77.6203 74.9341 77.3071C81.9078 76.9939 84.7309 76.0053 90.3751 76.5188C96.0171 77.0322 101.005 74.5053 102.17 73.2887C103.336 72.072 106.837 66.4385 102.202 61.4443C97.5682 56.4521 87.6265 49.619 81.4753 52.7554Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_288\">\n<path d=\"M94.7559 54.5452C98.4888 51.6326 102.586 51.4706 107.909 56.1283C113.231 60.7859 114.354 63.8839 114.671 65.9486C114.989 68.0132 117.409 69.3086 116.753 73.4357C116.095 77.5607 109.824 81.9286 105.759 82.4336C101.693 82.9385 100.843 82.4208 96.0194 81.3746C91.1955 80.3285 87.3198 78.7709 85.5556 73.6083C83.7914 68.4436 90.8056 57.6304 94.758 54.5452H94.7559Z\" fill=\"white\"/>\n<path d=\"M94.7559 54.5452C98.4888 51.6326 102.586 51.4706 107.909 56.1283C113.231 60.7859 114.354 63.8839 114.671 65.9486C114.989 68.0132 117.409 69.3086 116.753 73.4357C116.095 77.5607 109.824 81.9286 105.759 82.4336C101.693 82.9385 100.843 82.4208 96.0194 81.3746C91.1955 80.3285 87.3198 78.7709 85.5556 73.6083C83.7914 68.4436 90.8056 57.6304 94.758 54.5452H94.7559Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_289\">\n<path d=\"M98.0287 128.111C96.3092 127.772 96.305 126.155 94.349 126.33C93.6097 126.396 93.158 126.671 92.4612 126.594C91.8945 126.532 91.1232 125.328 88.9733 125.887C87.3775 126.302 87.8142 127.131 86.7937 127.389C85.7049 127.666 84.6353 128.047 83.5572 128.384C83.5721 128.463 83.587 129.453 83.5998 129.53C88.6346 129.53 95.359 129.53 100.392 129.53C100.313 129.066 98.2737 128.158 98.0266 128.109L98.0287 128.111Z\" fill=\"white\"/>\n<path d=\"M98.0287 128.111C96.3092 127.772 96.305 126.155 94.349 126.33C93.6097 126.396 93.158 126.671 92.4612 126.594C91.8945 126.532 91.1232 125.328 88.9733 125.887C87.3775 126.302 87.8142 127.131 86.7937 127.389C85.7049 127.666 84.6353 128.047 83.5572 128.384C83.5721 128.463 83.587 129.453 83.5998 129.53C88.6346 129.53 95.359 129.53 100.392 129.53C100.313 129.066 98.2737 128.158 98.0266 128.109L98.0287 128.111Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n</g>\n<g id=\"Tree_2\">\n<g id=\"Vector_290\">\n<path d=\"M491.503 67.6656C490.493 70.9307 489.373 74.174 488.499 77.4688C487.257 82.1505 486.197 86.8719 485.331 90.45C483.687 84.322 481.739 77.0607 479.792 69.7994C479.513 69.8133 479.235 69.8291 478.956 69.843C478.96 71.0654 478.599 72.3968 479.023 73.4925C482.926 83.6107 483.636 93.9786 482.348 104.525C482.276 105.115 482.039 105.692 481.789 106.603C479.994 104.844 478.451 103.334 476.909 101.822C476.669 101.995 476.43 102.169 476.19 102.342C477.4 103.913 478.466 105.593 479.859 107.023C481.67 108.884 481.884 110.984 481.682 113.246C481.357 116.892 481.068 120.541 480.717 124.185C480.392 127.561 480.493 127.662 484.579 127.127C484.917 123.067 485.258 118.972 485.603 114.877C485.67 114.082 485.886 113.28 485.809 112.499C484.971 103.978 490.988 98.6841 497.158 93.4912C498.546 92.3223 500.217 91.4189 501.516 90.1429C493.589 91.7458 490.261 98.1175 485.413 103.015C486.588 96.0154 487.586 89.1939 488.931 82.4259C489.609 79.0142 490.992 75.7174 491.907 72.3354C492.319 70.8178 492.367 69.2229 492.579 67.6616C492.22 67.6616 491.862 67.6616 491.503 67.6636V67.6656Z\" fill=\"white\"/>\n<path d=\"M491.503 67.6656C490.493 70.9307 489.373 74.174 488.499 77.4688C487.257 82.1505 486.197 86.8719 485.331 90.45C483.687 84.322 481.739 77.0607 479.792 69.7994C479.513 69.8133 479.235 69.8291 478.956 69.843C478.96 71.0654 478.599 72.3968 479.023 73.4925C482.926 83.6107 483.636 93.9786 482.348 104.525C482.276 105.115 482.039 105.692 481.789 106.603C479.994 104.844 478.451 103.334 476.909 101.822C476.669 101.995 476.43 102.169 476.19 102.342C477.4 103.913 478.466 105.593 479.859 107.023C481.67 108.884 481.884 110.984 481.682 113.246C481.357 116.892 481.068 120.541 480.717 124.185C480.392 127.561 480.493 127.662 484.579 127.127C484.917 123.067 485.258 118.972 485.603 114.877C485.67 114.082 485.886 113.28 485.809 112.499C484.971 103.978 490.988 98.6841 497.158 93.4912C498.546 92.3223 500.217 91.4189 501.516 90.1429C493.589 91.7458 490.261 98.1175 485.413 103.015C486.588 96.0154 487.586 89.1939 488.931 82.4259C489.609 79.0142 490.992 75.7174 491.907 72.3354C492.319 70.8178 492.367 69.2229 492.579 67.6616C492.22 67.6616 491.862 67.6616 491.503 67.6636V67.6656Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_291\">\n<path d=\"M478.031 87.8881C475.277 86.2476 472.252 86.1604 468.321 88.7856C464.39 91.4127 463.56 93.1582 463.324 94.3212C463.088 95.4842 461.301 96.2153 461.785 98.5413C462.268 100.865 466.894 103.324 469.896 103.605C472.896 103.889 473.524 103.595 477.086 103.005C480.648 102.415 483.509 101.535 484.813 98.6245C486.117 95.714 480.945 89.6237 478.029 87.8881H478.031Z\" fill=\"white\"/>\n<path d=\"M478.031 87.8881C475.277 86.2476 472.252 86.1604 468.321 88.7856C464.39 91.4127 463.56 93.1582 463.324 94.3212C463.088 95.4842 461.301 96.2153 461.785 98.5413C462.268 100.865 466.894 103.324 469.896 103.605C472.896 103.889 473.524 103.595 477.086 103.005C480.648 102.415 483.509 101.535 484.813 98.6245C486.117 95.714 480.945 89.6237 478.029 87.8881H478.031Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_292\">\n<path d=\"M507.173 79.4324C504.009 77.887 500.53 77.8038 496.01 80.2863C491.491 82.7669 490.536 84.4153 490.265 85.5149C489.993 86.6125 487.937 87.3039 488.494 89.4972C489.048 91.6904 494.366 94.0065 497.813 94.272C501.263 94.5375 501.984 94.2601 506.079 93.7014C510.174 93.1407 513.463 92.3106 514.965 89.5626C516.467 86.8146 510.525 81.0709 507.173 79.4344V79.4324Z\" fill=\"white\"/>\n<path d=\"M507.173 79.4324C504.009 77.887 500.53 77.8038 496.01 80.2863C491.491 82.7669 490.536 84.4153 490.265 85.5149C489.993 86.6125 487.937 87.3039 488.494 89.4972C489.048 91.6904 494.366 94.0065 497.813 94.272C501.263 94.5375 501.984 94.2601 506.079 93.7014C510.174 93.1407 513.463 92.3106 514.965 89.5626C516.467 86.8146 510.525 81.0709 507.173 79.4344V79.4324Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_293\">\n<path d=\"M492.092 58.1396C498.568 61.4424 502.602 63.0512 504.304 64.7451C506.006 66.4391 510.034 71.3665 507.728 74.9229C505.422 78.4792 504.657 81.2609 498.174 80.9696C491.689 80.6784 489.064 79.7591 483.816 80.2366C478.57 80.7141 473.931 78.3643 472.848 77.233C471.764 76.1017 468.509 70.8633 472.818 66.2192C477.127 61.5771 486.372 55.2232 492.092 58.1396Z\" fill=\"white\"/>\n<path d=\"M492.092 58.1396C498.568 61.4424 502.602 63.0512 504.304 64.7451C506.006 66.4391 510.034 71.3665 507.728 74.9229C505.422 78.4792 504.657 81.2609 498.174 80.9696C491.689 80.6784 489.064 79.7591 483.816 80.2366C478.57 80.7141 473.931 78.3643 472.848 77.233C471.764 76.1017 468.509 70.8633 472.818 66.2192C477.127 61.5771 486.372 55.2232 492.092 58.1396Z\" fill=\"#206095\" fill-opacity=\"0.75\"/>\n</g>\n<g id=\"Vector_294\">\n<path d=\"M479.743 59.8037C476.271 57.0953 472.461 56.9447 467.512 61.2757C462.563 65.6068 461.519 68.4875 461.224 70.4073C460.929 72.3272 458.678 73.5318 459.288 77.3695C459.9 81.2052 465.731 85.2668 469.511 85.7363C473.292 86.2059 474.082 85.7244 478.568 84.7516C483.053 83.7788 486.657 82.3305 488.298 77.53C489.938 72.7274 483.416 62.6725 479.741 59.8037H479.743Z\" fill=\"white\"/>\n<path d=\"M479.743 59.8037C476.271 57.0953 472.461 56.9447 467.512 61.2757C462.563 65.6068 461.519 68.4875 461.224 70.4073C460.929 72.3272 458.678 73.5318 459.288 77.3695C459.9 81.2052 465.731 85.2668 469.511 85.7363C473.292 86.2059 474.082 85.7244 478.568 84.7516C483.053 83.7788 486.657 82.3305 488.298 77.53C489.938 72.7274 483.416 62.6725 479.741 59.8037H479.743Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_295\">\n<path d=\"M476.7 128.211C478.299 127.896 478.302 126.392 480.121 126.554C480.809 126.616 481.229 126.871 481.877 126.8C482.404 126.743 483.121 125.623 485.12 126.142C486.604 126.529 486.198 127.299 487.147 127.539C488.159 127.797 489.154 128.151 490.156 128.464C490.142 128.538 490.129 129.459 490.117 129.53C485.435 129.53 479.182 129.53 474.502 129.53C474.576 129.098 476.472 128.254 476.702 128.209L476.7 128.211Z\" fill=\"white\"/>\n<path d=\"M476.7 128.211C478.299 127.896 478.302 126.392 480.121 126.554C480.809 126.616 481.229 126.871 481.877 126.8C482.404 126.743 483.121 125.623 485.12 126.142C486.604 126.529 486.198 127.299 487.147 127.539C488.159 127.797 489.154 128.151 490.156 128.464C490.142 128.538 490.129 129.459 490.117 129.53C485.435 129.53 479.182 129.53 474.502 129.53C474.576 129.098 476.472 128.254 476.702 128.209L476.7 128.211Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n</g>\n<g id=\"Icons\">\n<g id=\"Group 382\">\n<path id=\"Vector 1\" d=\"M73.3804 142.105H627.845\" stroke=\"#206095\" stroke-width=\"3\" stroke-dasharray=\"6 6\"/>\n<g id=\"Ellipse 16\">\n<circle cx=\"65.6123\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"65.6123\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"65.6123\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 17\">\n<circle cx=\"207.806\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"207.806\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"207.806\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 18\">\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 19\">\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" fill=\"#FBC900\" fill-opacity=\"0.4\"/>\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 20\">\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n</g>\n<g id=\"Artwork 64x64_2\">\n<path id=\"Vector_296\" d=\"M479.913 124.463V159.748C479.913 160.108 480.056 160.453 480.311 160.708C480.565 160.962 480.91 161.105 481.27 161.105H505.699C506.059 161.105 506.404 160.962 506.658 160.708C506.913 160.453 507.056 160.108 507.056 159.748V131.248L498.913 123.105H481.27C480.91 123.105 480.565 123.248 480.311 123.503C480.056 123.757 479.913 124.103 479.913 124.463Z\" fill=\"#003C57\"/>\n<path id=\"Vector_297\" d=\"M500.27 131.248H507.056L498.913 123.105V129.891C498.913 130.251 499.056 130.596 499.311 130.851C499.565 131.105 499.91 131.248 500.27 131.248Z\" fill=\"#4D7789\"/>\n<path id=\"Vector_298\" d=\"M496.701 136.5C494.983 135.609 493.065 135.176 491.131 135.243C489.197 135.31 487.313 135.873 485.661 136.88C485.511 136.977 485.404 137.128 485.365 137.302C485.326 137.476 485.356 137.658 485.45 137.81C485.498 137.886 485.559 137.952 485.632 138.004C485.704 138.056 485.787 138.093 485.874 138.113C485.961 138.133 486.051 138.136 486.139 138.121C486.227 138.106 486.311 138.074 486.387 138.027C487.838 137.133 489.498 136.634 491.201 136.58C492.905 136.526 494.593 136.92 496.097 137.722C498.974 139.133 500.983 141.617 501.207 144.039C501.224 144.207 501.303 144.363 501.428 144.476C501.554 144.589 501.717 144.651 501.885 144.65H501.953C502.132 144.633 502.297 144.545 502.412 144.407C502.526 144.268 502.581 144.089 502.564 143.91C502.306 141.026 499.985 138.122 496.701 136.5Z\" fill=\"white\"/>\n<path id=\"Vector_299\" d=\"M489.63 134.173C494.027 133.495 498.085 134.852 500.766 137.953C500.83 138.026 500.909 138.085 500.998 138.124C501.087 138.164 501.184 138.184 501.281 138.184C501.41 138.182 501.536 138.144 501.645 138.074C501.753 138.003 501.839 137.903 501.892 137.786C501.946 137.668 501.965 137.538 501.946 137.41C501.928 137.282 501.874 137.162 501.79 137.064C498.798 133.596 494.292 132.056 489.413 132.836C489.324 132.85 489.238 132.881 489.161 132.928C489.084 132.975 489.017 133.037 488.964 133.11C488.911 133.182 488.872 133.265 488.851 133.352C488.83 133.44 488.826 133.531 488.84 133.62C488.853 133.709 488.885 133.795 488.932 133.872C488.978 133.949 489.04 134.016 489.113 134.069C489.186 134.122 489.268 134.161 489.356 134.182C489.443 134.203 489.534 134.207 489.623 134.194L489.63 134.173Z\" fill=\"white\"/>\n<path id=\"Vector_300\" d=\"M497.094 140.171C494.054 137.891 491.286 137.851 489.494 138.224C487.262 138.685 485.47 140.009 484.86 141.074C484.815 141.152 484.786 141.238 484.775 141.327C484.764 141.416 484.771 141.506 484.795 141.593C484.819 141.679 484.86 141.76 484.915 141.83C484.97 141.901 485.039 141.96 485.118 142.004C485.271 142.086 485.451 142.106 485.619 142.059C485.787 142.012 485.931 141.902 486.02 141.752C486.949 140.586 488.275 139.804 489.745 139.554C491.265 139.242 493.627 139.276 496.26 141.257C501.173 144.935 498.974 150.934 497.108 153.587C497.056 153.66 497.02 153.743 497 153.831C496.981 153.918 496.979 154.009 496.994 154.097C497.01 154.186 497.043 154.27 497.092 154.345C497.141 154.421 497.204 154.486 497.278 154.537C497.351 154.59 497.435 154.627 497.523 154.647C497.611 154.667 497.703 154.669 497.792 154.654C497.881 154.638 497.966 154.604 498.042 154.555C498.118 154.506 498.183 154.442 498.234 154.367C502.442 148.348 500.589 142.784 497.094 140.171Z\" fill=\"white\"/>\n<path id=\"Vector_301\" d=\"M497.488 145.776C497.256 144.906 496.839 144.096 496.265 143.401C495.691 142.707 494.974 142.144 494.163 141.753C493.163 141.232 492.043 140.987 490.917 141.043C489.791 141.099 488.701 141.454 487.757 142.071C486.851 142.804 486.074 143.682 485.457 144.67C485.301 144.907 485.131 145.133 484.948 145.349C484.84 145.483 484.787 145.654 484.8 145.826C484.813 145.997 484.89 146.158 485.017 146.275C485.144 146.391 485.311 146.455 485.483 146.453C485.656 146.452 485.821 146.384 485.946 146.265C486.175 145.993 486.388 145.708 486.583 145.41C487.108 144.548 487.776 143.782 488.558 143.144C489.296 142.675 490.144 142.408 491.017 142.371C491.89 142.334 492.758 142.528 493.532 142.933C494.182 143.231 494.758 143.669 495.219 144.216C495.68 144.763 496.015 145.404 496.199 146.095C496.64 147.914 496.056 151.673 492.643 154.591C492.575 154.649 492.52 154.72 492.479 154.799C492.439 154.879 492.415 154.965 492.408 155.054C492.401 155.143 492.411 155.232 492.439 155.317C492.467 155.402 492.511 155.48 492.568 155.548C492.632 155.622 492.711 155.682 492.8 155.723C492.889 155.764 492.986 155.785 493.084 155.785C493.246 155.785 493.402 155.728 493.525 155.623C497.128 152.521 498.112 148.341 497.488 145.776Z\" fill=\"white\"/>\n<path id=\"Vector_302\" d=\"M492.046 144.141C491.328 143.939 490.562 143.993 489.881 144.296C489.199 144.598 488.645 145.129 488.314 145.797C487.425 147.595 486.834 148.43 485.498 148.952C485.326 149.022 485.188 149.156 485.116 149.327C485.043 149.497 485.041 149.69 485.111 149.862C485.18 150.034 485.315 150.171 485.485 150.243C485.656 150.316 485.848 150.318 486.02 150.249C487.913 149.509 488.68 148.213 489.555 146.435C489.757 146.046 490.087 145.74 490.489 145.568C490.891 145.396 491.341 145.369 491.761 145.492C492.237 145.582 492.668 145.834 492.981 146.205C493.293 146.575 493.469 147.043 493.478 147.527C493.478 150.466 490.173 153.255 489.291 153.743C489.169 153.818 489.073 153.929 489.018 154.061C488.963 154.194 488.951 154.34 488.984 154.479C489.018 154.619 489.094 154.744 489.203 154.837C489.311 154.93 489.447 154.987 489.589 154.999C489.703 154.999 489.815 154.971 489.915 154.917C491.17 154.239 494.808 151.07 494.808 147.507C494.806 146.714 494.53 145.945 494.027 145.332C493.523 144.718 492.824 144.298 492.046 144.141Z\" fill=\"white\"/>\n<path id=\"Vector_303\" d=\"M491.978 147.975C492.029 147.807 492.013 147.626 491.933 147.469C491.853 147.313 491.716 147.194 491.55 147.136C491.383 147.079 491.202 147.089 491.042 147.163C490.883 147.237 490.759 147.37 490.696 147.534C490.006 149.344 488.627 150.808 486.862 151.605C486.715 151.664 486.593 151.771 486.517 151.91C486.44 152.048 486.415 152.209 486.445 152.364C486.475 152.52 486.558 152.66 486.68 152.76C486.802 152.861 486.955 152.916 487.113 152.915C487.199 152.915 487.284 152.899 487.364 152.868C488.42 152.401 489.373 151.727 490.165 150.887C490.957 150.047 491.574 149.057 491.978 147.975Z\" fill=\"white\"/>\n</g>\n<g id=\"Artwork 64x64_3\">\n<path id=\"Vector_304\" d=\"M634.346 155.445H634.16V153.695C634.16 153.463 634.071 153.24 633.912 153.076C633.753 152.912 633.537 152.82 633.312 152.82H619.749C619.524 152.82 619.308 152.912 619.149 153.076C618.99 153.24 618.901 153.463 618.901 153.695V155.445H618.715C618.405 155.444 618.098 155.506 617.811 155.628C617.525 155.75 617.265 155.929 617.046 156.155C616.827 156.381 616.653 156.65 616.535 156.945C616.417 157.241 616.357 157.558 616.358 157.878V158.945C616.358 159.177 616.447 159.4 616.606 159.564C616.765 159.728 616.981 159.82 617.206 159.82H635.855C636.08 159.82 636.296 159.728 636.455 159.564C636.614 159.4 636.703 159.177 636.703 158.945V157.878C636.704 157.558 636.644 157.241 636.526 156.945C636.408 156.65 636.234 156.381 636.015 156.155C635.796 155.929 635.536 155.75 635.25 155.628C634.963 155.506 634.656 155.444 634.346 155.445Z\" fill=\"#206095\"/>\n<path id=\"Vector_305\" d=\"M656.548 155.594L639.772 138.268C639.568 138.059 639.317 137.907 639.041 137.826C638.765 137.745 638.474 137.737 638.195 137.804L634.278 133.761L637.296 130.646C637.597 130.333 637.766 129.91 637.766 129.469C637.766 129.028 637.597 128.605 637.296 128.292L637.237 128.231L637.83 127.609C637.988 127.772 638.175 127.901 638.381 127.989C638.586 128.077 638.807 128.123 639.03 128.123C639.253 128.123 639.473 128.077 639.679 127.989C639.885 127.901 640.072 127.772 640.229 127.609L640.831 126.997C640.989 126.834 641.114 126.641 641.199 126.429C641.285 126.216 641.329 125.989 641.329 125.759C641.329 125.529 641.285 125.301 641.199 125.088C641.114 124.876 640.989 124.683 640.831 124.52L634.838 118.334C634.68 118.171 634.493 118.042 634.288 117.954C634.082 117.866 633.861 117.82 633.638 117.82C633.416 117.82 633.195 117.866 632.989 117.954C632.783 118.042 632.596 118.171 632.439 118.334L631.837 118.946C631.679 119.109 631.554 119.302 631.469 119.514C631.384 119.727 631.34 119.954 631.34 120.184C631.34 120.414 631.384 120.642 631.469 120.855C631.554 121.067 631.679 121.26 631.837 121.423L631.244 122.044L631.176 121.983C631.027 121.827 630.851 121.703 630.656 121.619C630.461 121.535 630.251 121.491 630.04 121.491C629.828 121.491 629.619 121.535 629.424 121.619C629.229 121.703 629.052 121.827 628.904 121.983L620.427 130.733C620.276 130.886 620.156 131.069 620.075 131.27C619.993 131.471 619.951 131.688 619.951 131.906C619.951 132.124 619.993 132.34 620.075 132.541C620.156 132.743 620.276 132.925 620.427 133.078L620.486 133.148L619.884 133.761C619.727 133.598 619.54 133.469 619.334 133.381C619.128 133.293 618.908 133.248 618.685 133.248C618.462 133.248 618.241 133.293 618.035 133.381C617.83 133.469 617.643 133.598 617.485 133.761L616.892 134.382C616.734 134.545 616.609 134.738 616.524 134.95C616.438 135.163 616.395 135.39 616.395 135.62C616.395 135.85 616.438 136.078 616.524 136.291C616.609 136.503 616.734 136.696 616.892 136.859L622.885 143.045C623.043 143.208 623.23 143.337 623.435 143.425C623.641 143.513 623.862 143.559 624.085 143.559C624.307 143.559 624.528 143.513 624.734 143.425C624.94 143.337 625.127 143.208 625.284 143.045L625.878 142.424C626.035 142.262 626.16 142.069 626.246 141.856C626.331 141.644 626.375 141.416 626.375 141.186C626.375 140.956 626.331 140.728 626.246 140.516C626.16 140.303 626.035 140.11 625.878 139.948L626.479 139.335L626.539 139.396C626.842 139.707 627.252 139.881 627.679 139.881C628.106 139.881 628.516 139.707 628.819 139.396L631.913 136.202L635.787 140.201C635.696 140.505 635.687 140.828 635.76 141.136C635.833 141.444 635.986 141.726 636.203 141.952L652.988 159.269C653.145 159.432 653.332 159.561 653.538 159.649C653.744 159.737 653.964 159.782 654.187 159.782C654.41 159.782 654.631 159.737 654.836 159.649C655.042 159.561 655.229 159.432 655.387 159.269L656.548 158.07C656.706 157.908 656.831 157.715 656.916 157.502C657.001 157.29 657.045 157.062 657.045 156.832C657.045 156.602 657.001 156.374 656.916 156.162C656.831 155.949 656.706 155.756 656.548 155.594Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Artwork 64x64_4\">\n<g id=\"Group 384\">\n<path id=\"Vector_306\" d=\"M52.8686 119.407C50.5757 119.407 48.3342 120.087 46.4277 121.361C44.5213 122.634 43.0353 124.445 42.1579 126.563C41.2804 128.682 41.0508 131.013 41.4982 133.262C41.9455 135.51 43.0496 137.576 44.671 139.198C46.2923 140.819 48.358 141.923 50.6069 142.37C52.8557 142.818 55.1867 142.588 57.3051 141.711C59.4235 140.833 61.2341 139.347 62.5079 137.441C63.7818 135.534 64.4618 133.293 64.4618 131C64.4618 127.925 63.2403 124.976 61.0662 122.802C58.892 120.628 55.9433 119.407 52.8686 119.407Z\" fill=\"white\"/>\n<path id=\"Vector_307\" d=\"M52.8437 137.128C53.7583 137.128 54.4998 136.386 54.4998 135.472C54.4998 134.557 53.7583 133.815 52.8437 133.815C51.929 133.815 51.1875 134.557 51.1875 135.472C51.1875 136.386 51.929 137.128 52.8437 137.128Z\" fill=\"#206095\"/>\n<path id=\"Vector_308\" d=\"M54.3588 131.973C54.3524 132.079 54.306 132.178 54.2291 132.25C54.1521 132.322 54.0504 132.362 53.9447 132.362H51.7917C51.6861 132.362 51.5844 132.322 51.5074 132.25C51.4304 132.178 51.384 132.079 51.3777 131.973L50.9636 125.29C50.9602 125.234 50.9684 125.177 50.9877 125.124C51.007 125.071 51.037 125.023 51.0758 124.981C51.1146 124.94 51.1614 124.908 51.2133 124.885C51.2652 124.863 51.3212 124.851 51.3777 124.852H54.3422C54.3987 124.851 54.4547 124.863 54.5066 124.885C54.5585 124.908 54.6053 124.94 54.6441 124.981C54.6829 125.023 54.7129 125.071 54.7322 125.124C54.7515 125.177 54.7597 125.234 54.7563 125.29L54.3588 131.973Z\" fill=\"#206095\"/>\n</g>\n<path id=\"Vector_309\" d=\"M70.9162 146.415H65.3567C61.6706 146.415 58.1354 147.879 55.5289 150.485C52.9223 153.092 51.458 156.627 51.458 160.313H84.815C84.815 158.488 84.4555 156.681 83.757 154.994C83.0585 153.308 82.0347 151.776 80.7441 150.485C79.4535 149.195 77.9213 148.171 76.235 147.473C74.5488 146.774 72.7414 146.415 70.9162 146.415Z\" fill=\"#003C57\"/>\n<path id=\"Vector_310\" d=\"M68.1366 143.635C72.7422 143.635 76.4758 139.901 76.4758 135.295C76.4758 130.69 72.7422 126.956 68.1366 126.956C63.531 126.956 59.7974 130.69 59.7974 135.295C59.7974 139.901 63.531 143.635 68.1366 143.635Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Artwork 64x64_5\">\n<path id=\"Vector_311\" d=\"M194.282 124.463V159.748C194.282 160.108 194.425 160.453 194.68 160.708C194.934 160.962 195.279 161.105 195.639 161.105H220.068C220.428 161.105 220.773 160.962 221.028 160.708C221.282 160.453 221.425 160.108 221.425 159.748V131.248L213.282 123.105H195.639C195.279 123.105 194.934 123.248 194.68 123.503C194.425 123.757 194.282 124.103 194.282 124.463Z\" fill=\"#003C57\"/>\n<path id=\"Vector_312\" d=\"M214.639 131.248H221.425L213.282 123.105V129.891C213.282 130.251 213.425 130.596 213.68 130.851C213.934 131.105 214.279 131.248 214.639 131.248Z\" fill=\"#4D7789\"/>\n<path id=\"Vector_313\" d=\"M213.282 151.266H199.711C199.441 151.266 199.182 151.159 198.991 150.968C198.8 150.777 198.693 150.518 198.693 150.248C198.693 149.978 198.8 149.719 198.991 149.529C199.182 149.338 199.441 149.23 199.711 149.23H213.282C213.552 149.23 213.811 149.338 214.002 149.529C214.193 149.719 214.3 149.978 214.3 150.248C214.3 150.518 214.193 150.777 214.002 150.968C213.811 151.159 213.552 151.266 213.282 151.266Z\" fill=\"white\"/>\n<path id=\"Vector_314\" d=\"M213.282 146.516H199.711C199.441 146.516 199.182 146.409 198.991 146.218C198.8 146.027 198.693 145.768 198.693 145.498C198.693 145.228 198.8 144.969 198.991 144.779C199.182 144.588 199.441 144.48 199.711 144.48H213.282C213.552 144.48 213.811 144.588 214.002 144.779C214.193 144.969 214.3 145.228 214.3 145.498C214.3 145.768 214.193 146.027 214.002 146.218C213.811 146.409 213.552 146.516 213.282 146.516Z\" fill=\"white\"/>\n<path id=\"Vector_315\" d=\"M213.282 141.766H199.711C199.441 141.766 199.182 141.659 198.991 141.468C198.8 141.277 198.693 141.018 198.693 140.748C198.693 140.478 198.8 140.219 198.991 140.029C199.182 139.838 199.441 139.73 199.711 139.73H213.282C213.552 139.73 213.811 139.838 214.002 140.029C214.193 140.219 214.3 140.478 214.3 140.748C214.3 141.018 214.193 141.277 214.002 141.468C213.811 141.659 213.552 141.766 213.282 141.766Z\" fill=\"white\"/>\n<path id=\"Vector_316\" d=\"M207.854 137.016H199.711C199.441 137.016 199.182 136.909 198.991 136.718C198.8 136.527 198.693 136.268 198.693 135.998C198.693 135.728 198.8 135.469 198.991 135.279C199.182 135.088 199.441 134.98 199.711 134.98H207.854C208.124 134.98 208.382 135.088 208.573 135.279C208.764 135.469 208.871 135.728 208.871 135.998C208.871 136.268 208.764 136.527 208.573 136.718C208.382 136.909 208.124 137.016 207.854 137.016Z\" fill=\"white\"/>\n<g id=\"Vector_317\">\n<path d=\"M226.406 140.864L215.067 152.203C214.98 152.284 214.876 152.345 214.761 152.379L212.604 152.963C212.546 152.978 212.486 152.977 212.429 152.962C212.372 152.946 212.32 152.916 212.278 152.874C212.236 152.832 212.206 152.78 212.191 152.723C212.175 152.666 212.175 152.606 212.19 152.549L212.766 150.364C212.794 150.247 212.855 150.14 212.943 150.058L224.248 138.713C224.534 138.427 224.922 138.266 225.327 138.266C225.731 138.266 226.119 138.427 226.406 138.713C226.69 138.999 226.849 139.385 226.849 139.788C226.849 140.191 226.69 140.578 226.406 140.864Z\" fill=\"white\"/>\n<path d=\"M226.406 140.864L215.067 152.203C214.98 152.284 214.876 152.345 214.761 152.379L212.604 152.963C212.546 152.978 212.486 152.977 212.429 152.962C212.372 152.946 212.32 152.916 212.278 152.874C212.236 152.832 212.206 152.78 212.191 152.723C212.175 152.666 212.175 152.606 212.19 152.549L212.766 150.364C212.794 150.247 212.855 150.14 212.943 150.058L224.248 138.713C224.534 138.427 224.922 138.266 225.327 138.266C225.731 138.266 226.119 138.427 226.406 138.713C226.69 138.999 226.849 139.385 226.849 139.788C226.849 140.191 226.69 140.578 226.406 140.864Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n<g id=\"Group 386\">\n<g id=\"Artwork 64x64_6\">\n<path id=\"Vector_318\" d=\"M370 133.813V153.813C370 154.874 369.579 155.891 368.828 156.641C368.078 157.392 367.061 157.813 366 157.813H334C332.939 157.813 331.922 157.392 331.172 156.641C330.421 155.891 330 154.874 330 153.813V129.813C330 128.752 330.421 127.735 331.172 126.985C331.922 126.234 332.939 125.813 334 125.813H344.333C344.863 125.81 345.388 125.912 345.878 126.114C346.367 126.315 346.812 126.612 347.187 126.986L350 129.813H366C367.061 129.813 368.078 130.234 368.828 130.985C369.579 131.735 370 132.752 370 133.813Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Group 385\">\n<path id=\"Vector_319\" d=\"M346.333 145.229H343.667C341.899 145.229 340.203 145.932 338.953 147.182C337.702 148.432 337 150.128 337 151.896H353C353 151.021 352.828 150.154 352.493 149.345C352.157 148.536 351.666 147.801 351.047 147.182C350.428 146.563 349.693 146.072 348.885 145.737C348.076 145.402 347.209 145.229 346.333 145.229Z\" fill=\"white\"/>\n<path id=\"Vector_320\" d=\"M345 143.896C347.209 143.896 349 142.105 349 139.896C349 137.687 347.209 135.896 345 135.896C342.791 135.896 341 137.687 341 139.896C341 142.105 342.791 143.896 345 143.896Z\" fill=\"white\"/>\n</g>\n<g id=\"Union\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M373.813 143.561C374.027 143.363 374.027 143.024 373.813 142.826L366.365 135.947C366.045 135.651 365.526 135.878 365.526 136.314V139.72H359C358.448 139.72 358 140.167 358 140.72V145.667C358 146.219 358.448 146.667 359 146.667H365.526V150.073C365.526 150.509 366.045 150.736 366.365 150.44L373.813 143.561Z\" fill=\"white\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M373.813 143.561C374.027 143.363 374.027 143.024 373.813 142.826L366.365 135.947C366.045 135.651 365.526 135.878 365.526 136.314V139.72H359C358.448 139.72 358 140.167 358 140.72V145.667C358 146.219 358.448 146.667 359 146.667H365.526V150.073C365.526 150.509 366.045 150.736 366.365 150.44L373.813 143.561Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n</g>\n</g>\n</g>\n<g id=\"Title\">\n <rect width=\"700\" height=\"90\" transform=\"translate(0 176.813)\" fill=\"white\"/>\n <rect width=\"700\" height=\"90\" transform=\"translate(0 176.813)\" fill=\"#206095\" fill-opacity=\"0.1\"/>\n <text id=\"Understanding domestic abuse data through the criminal justice system\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"22\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"20\" y=\"212.748\">Understanding domestic abuse data through the</tspan><tspan x=\"20\" y=\"243.548\">criminal justice system</tspan></text>\n </g>\n<g id=\"Chart bit\">\n<g id=\"Domestic abuse crime cases which resulted in a charge England and Wales, year ending March 2022\">\n<text fill=\"black\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"20\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"20\" y=\"307.572\">Suspects of domestic abuse-related crimes that were charged</tspan></text>\n<text fill=\"black\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"16\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"20\" y=\"336.372\">England and Wales, year ending March 2023</tspan></text>\n</g>\n<g id=\"Overall chart\">\n<line id=\"Line 113\" y1=\"-0.75\" x2=\"275.34\" y2=\"-0.75\" transform=\"matrix(-1.42329e-06 1 -1 2.02943e-09 113.566 367.313)\" stroke=\"#B3B3B3\" stroke-width=\"1.5\"/>\n<line id=\"Line 115\" x1=\"644.278\" y1=\"367.313\" x2=\"644.278\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 117\" x1=\"379.172\" y1=\"367.313\" x2=\"379.172\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 119\" x1=\"246.62\" y1=\"367.313\" x2=\"246.62\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 118\" x1=\"511.726\" y1=\"367.313\" x2=\"511.726\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<path id=\"Vector_321\" d=\"M465.395 377.42L114.481 377.42L114.481 443.03L465.395 443.03L465.395 377.42Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_322\" d=\"M344.835 470.915L114.481 470.915L114.481 536.525L344.835 536.525L344.835 470.915Z\" fill=\"#206095\"/>\n<path id=\"Vector_323\" d=\"M328.02 566.105L114.481 566.105L114.481 632.446L328.02 632.446L328.02 566.105Z\" fill=\"#E2E2E3\"/>\n<text id=\"0\" transform=\"translate(88.77 645.136)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"21.7058\" y=\"14.4312\">0</tspan></text>\n<text id=\"25,000\" transform=\"translate(210.43 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"13.9439\" y=\"14.4312\">25,000</tspan></text>\n<text id=\"50,000\" transform=\"translate(344.835 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"13.9439\" y=\"14.4312\">50,000</tspan></text>\n<text id=\"75,000\" transform=\"translate(476.729 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"13.9439\" y=\"14.4312\">75,000</tspan></text>\n<text id=\"100,000\" transform=\"translate(608.622 646.284)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"9.93799\" y=\"14.4312\">100,000</tspan></text>\n<g id=\"Horizontal label\">\n<text id=\"Suspects referred\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"41.1729\" y=\"407.252\">Suspects </tspan><tspan x=\"44.8369\" y=\"424.052\">referred</tspan></text>\n<text id=\"Suspects charged\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"32.71\" y=\"500.752\">Suspects </tspan><tspan x=\"33.0928\" y=\"517.552\">charged</tspan></text>\n<text id=\"Offenders convicted\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"33.1748\" y=\"594.252\">Offenders </tspan><tspan x=\"36.5381\" y=\"611.052\">convicted</tspan></text>\n</g>\n<text id=\"43,836\" transform=\"translate(277.587 495.179)\" fill=\"white\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"6.62919\" y=\"13.972\">47,361</tspan></text>\n</g>\n </g>\n \n \n </svg>\n <p class=\"source\">\n Source: Crown Prosecution Service (CPS) </p> \n <div class=\"commentary\">\n <b>Who was charged? </b>\n<br><br>\n The Crown Prosecution Service (CPS) charged 47,361 suspects in domestic abuse-related cases in the year ending March 2023. \n <br><br>\n The CPS domestic abuse-related charging rate increased for the second year to 76.5%, compared with 72.7% in the year ending March 2022. This is the highest charging rate since our records began in the year ending March 2015. \n <br><br>\n Cases where the decision was not to charge might be due to the following reasons: \n <br><ul>\n <li>\n not enough evidence to provide a realistic prospect of conviction </li><br>\n <li>\n not in the public interest </li><br>\n <li>\n victim is not willing to support a prosecution </li></ul>\n \n <br><br>\n <button class=\"button\" type=\"button\" on:click={()=>goTo.set(\"Six\")}>Next ▶</button>\n <button class=\"button grey\" type=\"button\" on:click={()=>goTo.set(\"Four\")}>Back</button></div>\n <style>\n .button{\n background-color:rgb(15, 130, 67);\n width:97px;\n height:40px;\n color:white;\n font-weight:bold;\n font-size:16px;\n border:none;\n }\n .grey{\n background-color:#666;\n }\n .source{\n color:grey\n }\n .commentary{\n font-weight:400;\n font-size:18px;\n background-color:rgba(32, 96, 149,0.1);\n padding:20px;\n }\n </style>","<script>\n export let goTo=null\n $: console.log(\"goto\",$goTo)\n </script>\n\n<svg width=\"700\" viewBox=\"0 0 700 700\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<g id=\"Interactive\">\n<g id=\"Illustration headers\">\n<g id=\"Illustration\">\n<g id=\"Illo\">\n<g id=\"Ellipse 1\">\n<path d=\"M700 120.569C500.303 120.569 178.452 120.569 0 120.569C0 101.933 125.256 2.20508 350 2.20508C570.463 2.20508 700 101.933 700 120.569Z\" fill=\"white\"/>\n<path d=\"M700 120.569C500.303 120.569 178.452 120.569 0 120.569C0 101.933 125.256 2.20508 350 2.20508C570.463 2.20508 700 101.933 700 120.569Z\" fill=\"#206095\" fill-opacity=\"0.05\"/>\n</g>\n<g id=\"Background buildings\">\n<path id=\"Vector\" d=\"M487.962 87.3798L480.562 81.3013C480.059 80.8885 479.371 80.8885 478.868 81.3013L471.468 87.3798V145.715H487.962V87.3798Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_2\" d=\"M460.083 91.2017H471.74V145.027H460.083V91.2017Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_3\" d=\"M462.434 84.4312H467.694V93.195H462.434V84.4312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_4\" d=\"M487.938 98.2393H500.166V142.841H487.938V98.2393Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_5\" d=\"M500.162 88.8657H511.25V145.255H500.162V88.8657Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_6\" d=\"M510.948 80.605H519.633V144.567H510.948V80.605Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_7\" d=\"M532.47 91.6416H542.983V143.132H532.47V91.6416Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_8\" d=\"M542.983 97.7549H552.081V141.098H542.983V97.7549Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_9\" d=\"M532.47 101.923L519.495 95.8364V141.122H532.47V101.923Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_2\">\n<path id=\"Vector_10\" d=\"M179.123 68.9979L169.784 59.9251C169.147 59.3082 168.282 59.3082 167.645 59.9251L158.307 68.9979V156.036H179.119V68.9979H179.123Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_11\" d=\"M143.934 155.001H158.649V74.6915H143.934V155.001Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_12\" d=\"M146.908 77.6709H153.545V64.5964H146.908V77.6709Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_13\" d=\"M179.092 151.752H194.523V74.4409H179.092V151.752Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_14\" d=\"M194.511 155.348H208.506V71.2133H194.511V155.348Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_15\" d=\"M217.437 154.32H228.396V58.891H217.437V154.32Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_16\" d=\"M65.4652 143.936H108.021V97.7379H65.4652V143.936Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_17\" d=\"M125.683 142.646H140.152V94.0413H125.683V142.646Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_18\" d=\"M140.153 144.301H152.672V93.9401H140.153V144.301Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_19\" d=\"M136.688 98.7855L107.828 91.7114V144.328H136.688V98.7855Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_20\" d=\"M179.123 48.2058L169.784 43.3925C169.147 43.0651 168.282 43.0651 167.645 43.3925L158.307 48.2058V94.3816H179.119V48.2058H179.123Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_21\" d=\"M143.934 93.833H158.649V51.2267H143.934V93.833Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_22\" d=\"M146.908 52.8071H153.545V45.8708H146.908V52.8071Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_23\" d=\"M179.092 92.1094H194.523V56.8041H179.092V92.1094Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_24\" d=\"M208.506 118.488H233.453V41.7437H208.506V118.488Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_25\" d=\"M79.4433 111.917H108.021V77.9923H79.4433V111.917Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_26\" d=\"M125.683 135.839H146.908L146.908 61.4923H125.683L125.683 135.839Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_27\" d=\"M140.153 139.21H152.672L152.672 53.1164H140.153V139.21Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_28\" d=\"M125.684 72.2887L107.828 64.8125V120.42H125.684V72.2887Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_3\">\n<path id=\"Vector_29\" d=\"M261.115 61.1229L270.454 51.2292C271.091 50.5564 271.956 50.5564 272.593 51.2292L281.932 61.1229V156.036H261.12V61.1229H261.115Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_30\" d=\"M296.305 154.907H281.59V67.3315H296.305V154.907Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_31\" d=\"M293.331 70.5806H286.693V56.3232H293.331V70.5806Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_32\" d=\"M261.147 151.364H245.716V67.0583H261.147V151.364Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_33\" d=\"M245.728 155.286H231.733V63.5389H245.728V155.286Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_34\" d=\"M222.801 154.165H211.842V50.1015H222.801V154.165Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_35\" d=\"M374.774 138.215H332.218V92.4634H374.774V138.215Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_36\" d=\"M314.556 141.435H300.087V88.4327H314.556V141.435Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_37\" d=\"M300.086 143.239H287.567V88.322H300.086V143.239Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_38\" d=\"M303.552 93.6058L332.411 85.8916V143.269H303.552V93.6058Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_39\" d=\"M261.115 38.4497L270.454 33.2008C271.091 32.8439 271.956 32.8439 272.593 33.2008L281.932 38.4497V88.8034H261.12V38.4497H261.115Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_40\" d=\"M296.305 88.2051H281.59V41.7438H296.305V88.2051Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_41\" d=\"M293.331 43.4673H286.693V35.9034H293.331V43.4673Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_42\" d=\"M261.147 86.3252H245.716V47.8256H261.147V86.3252Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_43\" d=\"M231.734 143.132H206.786L206.786 31.4027H231.734L231.734 143.132Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_44\" d=\"M360.796 107.925H332.218V70.9312H360.796V107.925Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_45\" d=\"M314.556 134.012H293.331V52.9384H314.556V134.012Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_46\" d=\"M300.086 137.688H287.567V43.8044H300.086V137.688Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_47\" d=\"M314.555 64.7117L332.411 56.5591V117.197H314.555V64.7117Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_4\">\n<path id=\"Vector_48\" d=\"M396.321 43.9472L406.673 33.1907C407.38 32.4592 408.339 32.4592 409.045 33.1907L419.397 43.9472V147.137H396.326V43.9472H396.321Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_49\" d=\"M435.325 48.7314H419.013V147.137H435.325V48.7314Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_50\" d=\"M432.033 38.0664H424.676V51.8795H432.033V38.0664Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_51\" d=\"M396.356 59.8315H379.25V147.137H396.356V59.8315Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_52\" d=\"M379.26 45.0566H363.746V147.137H379.26V45.0566Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_53\" d=\"M364.165 32.0312H352.016V147.137H364.165V32.0312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_54\" d=\"M334.058 68.2846L352.211 56.0444V147.137H334.058V68.2846Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_55\" d=\"M455.562 65.9717H439.522V147.137H455.562V65.9717Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_56\" d=\"M439.522 78.8105H425.645V147.137H439.522V78.8105Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_5\">\n<path id=\"Vector_57\" d=\"M406.322 26.2429L415.45 19.0517C416.071 18.5602 416.92 18.5602 417.541 19.0517L426.669 26.2429V95.2607H406.322V26.2429Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_58\" d=\"M440.71 30.7603H426.329V94.4428H440.71V30.7603Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_59\" d=\"M437.81 22.7515H431.32V33.1195H437.81V22.7515Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_60\" d=\"M406.352 39.0913H391.268V91.8632H406.352V39.0913Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_61\" d=\"M391.272 28H377.595V94.7178H391.272V28Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_62\" d=\"M377.968 18.2261H367.254V93.9004H377.968V18.2261Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_63\" d=\"M351.419 31.2827H338.449V92.2012H351.419V31.2827Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_64\" d=\"M338.449 38.5176H327.226V89.8033H338.449V38.5176Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_65\" d=\"M351.418 43.4476L367.424 36.2485V89.8264H351.418V43.4476Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_6\">\n<path id=\"Vector_66\" d=\"M484.96 43.5227L474.547 36.3315C473.839 35.84 472.87 35.84 472.162 36.3315L461.749 43.5227V112.541H484.96V43.5227Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_67\" d=\"M445.731 48.04H462.137V149.435H445.731V48.04Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_68\" d=\"M449.04 40.0312H456.443V50.3993H449.04V40.0312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_69\" d=\"M484.321 48.8135H502.529V108.813H484.321V48.8135Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_70\" d=\"M502.129 45.2803H517.732V111.998H502.129V45.2803Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_71\" d=\"M517.307 35.5059H529.529V111.18H517.307V35.5059Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_72\" d=\"M547.595 48.5625H562.391V109.481H547.595V48.5625Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_73\" d=\"M562.391 55.7974H575.194V107.083H562.391V55.7974Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_74\" d=\"M547.57 46.2191L529.362 36.8135V106.813H547.57V46.2191Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_75\" d=\"M589.381 82.1595L578.968 76.8057C578.259 76.4398 577.291 76.4398 576.583 76.8057L566.17 82.1595V133.543H589.381V82.1595Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_76\" d=\"M588.742 88.873H606.95V133.543H588.742V88.873Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_77\" d=\"M606.55 83.8721H622.153V133.544H606.55V83.8721Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_78\" d=\"M621.728 77.2036H633.95V133.543H621.728V77.2036Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_79\" d=\"M651.991 88.4307L633.783 81.4282V133.543H651.991V88.4307Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Ground\">\n<g id=\"Vector_80\">\n<path d=\"M700 177.896H0V135.896H700V177.896Z\" fill=\"white\"/>\n<path d=\"M700 177.896H0V135.896H700V177.896Z\" fill=\"#206095\" fill-opacity=\"0.1\"/>\n</g>\n<g id=\"Vector_81\">\n<path d=\"M700 135.896H0V120.569H700V135.896Z\" fill=\"white\"/>\n<path d=\"M700 135.896H0V120.569H700V135.896Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n</g>\n<g id=\"Bush\">\n<g id=\"Vector_82\">\n<path d=\"M47.7677 112.919C52.1162 115.137 54.8252 116.218 55.9654 117.354C57.1096 118.491 59.8107 121.801 58.2655 124.188C56.7164 126.574 56.2052 128.442 51.8528 128.245C47.5004 128.049 45.735 127.432 42.2122 127.754C38.6893 128.076 35.5754 126.496 34.848 125.737C34.1206 124.978 31.9346 121.459 34.8283 118.345C37.7221 115.227 43.9264 110.961 47.7677 112.919Z\" fill=\"white\"/>\n<path d=\"M47.7677 112.919C52.1162 115.137 54.8252 116.218 55.9654 117.354C57.1096 118.491 59.8107 121.801 58.2655 124.188C56.7164 126.574 56.2052 128.442 51.8528 128.245C47.5004 128.049 45.735 127.432 42.2122 127.754C38.6893 128.076 35.5754 126.496 34.848 125.737C34.1206 124.978 31.9346 121.459 34.8283 118.345C37.7221 115.227 43.9264 110.961 47.7677 112.919Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_83\">\n<path d=\"M40.9342 110.729C37.9342 109.058 34.6394 108.972 30.3578 111.645C26.0761 114.323 25.1718 116.1 24.9123 117.283C24.6567 118.467 22.7066 119.214 23.2334 121.581C23.7603 123.948 28.8008 126.448 32.0681 126.735C35.3354 127.022 36.0195 126.723 39.9001 126.122C43.7808 125.52 46.8986 124.624 48.318 121.659C49.7413 118.695 44.1071 112.494 40.9302 110.729H40.9342Z\" fill=\"white\"/>\n<path d=\"M40.9342 110.729C37.9342 109.058 34.6394 108.972 30.3578 111.645C26.0761 114.323 25.1718 116.1 24.9123 117.283C24.6567 118.467 22.7066 119.214 23.2334 121.581C23.7603 123.948 28.8008 126.448 32.0681 126.735C35.3354 127.022 36.0195 126.723 39.9001 126.122C43.7808 125.52 46.8986 124.624 48.318 121.659C49.7413 118.695 44.1071 112.494 40.9302 110.729H40.9342Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_84\">\n<path d=\"M58.2204 114.583C64.9712 116.792 69.1782 117.87 70.9553 119.006C72.7285 120.142 76.9237 123.445 74.5175 125.835C72.1073 128.226 71.3092 130.093 64.5466 129.905C57.784 129.716 55.0435 129.103 49.5705 129.429C44.0975 129.755 39.2615 128.182 38.1331 127.424C37.0047 126.665 33.6116 123.15 38.1134 120.032C42.6153 116.91 52.2638 112.636 58.2282 114.59L58.2204 114.583Z\" fill=\"white\"/>\n<path d=\"M58.2204 114.583C64.9712 116.792 69.1782 117.87 70.9553 119.006C72.7285 120.142 76.9237 123.445 74.5175 125.835C72.1073 128.226 71.3092 130.093 64.5466 129.905C57.784 129.716 55.0435 129.103 49.5705 129.429C44.0975 129.755 39.2615 128.182 38.1331 127.424C37.0047 126.665 33.6116 123.15 38.1134 120.032C42.6153 116.91 52.2638 112.636 58.2282 114.59L58.2204 114.583Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_85\">\n<path d=\"M21.0747 124.149C19.3487 123.3 17.4536 123.248 14.9844 124.597C12.5153 125.946 11.9924 126.846 11.843 127.444C11.6935 128.041 10.5691 128.419 10.8718 129.614C11.1706 130.813 14.0683 132.087 15.9516 132.236C17.8349 132.386 18.2281 132.236 20.4613 131.938C22.6946 131.639 24.4914 131.187 25.317 129.689C26.1427 128.191 22.9069 125.045 21.0826 124.145L21.0747 124.149Z\" fill=\"white\"/>\n<path d=\"M21.0747 124.149C19.3487 123.3 17.4536 123.248 14.9844 124.597C12.5153 125.946 11.9924 126.846 11.843 127.444C11.6935 128.041 10.5691 128.419 10.8718 129.614C11.1706 130.813 14.0683 132.087 15.9516 132.236C17.8349 132.386 18.2281 132.236 20.4613 131.938C22.6946 131.639 24.4914 131.187 25.317 129.689C26.1427 128.191 22.9069 125.045 21.0826 124.145L21.0747 124.149Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_86\">\n<path d=\"M14.1039 125.642C12.7356 124.97 11.2337 124.931 9.27567 126C7.31766 127.07 6.90482 127.781 6.78294 128.257C6.66499 128.733 5.77641 129.028 6.01232 129.979C6.24822 130.931 8.54829 131.937 10.0384 132.059C11.5286 132.177 11.8431 132.059 13.6124 131.823C15.3856 131.587 16.8089 131.229 17.4616 130.042C18.1142 128.855 15.5507 126.362 14.1039 125.65V125.642Z\" fill=\"white\"/>\n<path d=\"M14.1039 125.642C12.7356 124.97 11.2337 124.931 9.27567 126C7.31766 127.07 6.90482 127.781 6.78294 128.257C6.66499 128.733 5.77641 129.028 6.01232 129.979C6.24822 130.931 8.54829 131.937 10.0384 132.059C11.5286 132.177 11.8431 132.059 13.6124 131.823C15.3856 131.587 16.8089 131.229 17.4616 130.042C18.1142 128.855 15.5507 126.362 14.1039 125.65V125.642Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_87\">\n<path d=\"M18.5981 121.176C16.8721 120.327 14.977 120.276 12.5079 121.624C10.0387 122.973 9.5158 123.873 9.36639 124.471C9.21699 125.069 8.09251 125.446 8.39525 126.641C8.69406 127.841 8.91424 129.626 10.7975 129.775C12.6809 129.924 15.7515 129.264 17.9848 128.965C20.218 128.666 22.0148 128.214 22.8405 126.716C23.6622 125.218 20.4303 122.073 18.606 121.172L18.5981 121.176Z\" fill=\"white\"/>\n<path d=\"M18.5981 121.176C16.8721 120.327 14.977 120.276 12.5079 121.624C10.0387 122.973 9.5158 123.873 9.36639 124.471C9.21699 125.069 8.09251 125.446 8.39525 126.641C8.69406 127.841 8.91424 129.626 10.7975 129.775C12.6809 129.924 15.7515 129.264 17.9848 128.965C20.218 128.666 22.0148 128.214 22.8405 126.716C23.6622 125.218 20.4303 122.073 18.606 121.172L18.5981 121.176Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Police station\" clip-path=\"url(#clip0_1849_10359)\">\n<g id=\"Vector_88\">\n<path d=\"M476.484 47.2856H307.517V127.819H476.484V47.2856Z\" fill=\"white\"/>\n<path d=\"M476.484 47.2856H307.517V127.819H476.484V47.2856Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<path id=\"Vector_89\" d=\"M477 45.1685H307V47.2905H477V45.1685Z\" fill=\"#003C57\"/>\n<g id=\"Vector_90\">\n<path d=\"M414.975 39.9351H369.025V129.808H414.975V39.9351Z\" fill=\"white\"/>\n<path d=\"M414.975 39.9351H369.025V129.808H414.975V39.9351Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_91\" d=\"M415.614 37.813H368.391V39.935H415.614V37.813Z\" fill=\"#003C57\"/>\n<path id=\"Vector_92\" d=\"M363.839 52.5688H311.744V61.372H363.839V52.5688Z\" fill=\"white\"/>\n<path id=\"Vector_93\" d=\"M363.839 66.1133H311.744V75.2069H363.839V66.1133Z\" fill=\"white\"/>\n<path id=\"Vector_94\" d=\"M363.957 79.7314H311.744V88.5346H363.957V79.7314Z\" fill=\"white\"/>\n<path id=\"Vector_95\" d=\"M351.913 93.3105H311.744V102.114H351.913V93.3105Z\" fill=\"white\"/>\n<path id=\"Vector_96\" d=\"M351.913 106.274H311.744V115.077H351.913V106.274Z\" fill=\"white\"/>\n<path id=\"Vector_97\" d=\"M420.206 61.377L472.301 61.377V52.5738L420.206 52.5738V61.377Z\" fill=\"white\"/>\n<path id=\"Vector_98\" d=\"M420.206 75.2119H472.301V66.1183H420.206V75.2119Z\" fill=\"white\"/>\n<path id=\"Vector_99\" d=\"M420.082 88.5347H472.295V79.7315H420.082V88.5347Z\" fill=\"white\"/>\n<path id=\"Vector_100\" d=\"M432.126 102.119H472.295V93.3155H432.126V102.119Z\" fill=\"white\"/>\n<path id=\"Vector_101\" d=\"M432.126 115.072H472.295V106.269H432.126V115.072Z\" fill=\"white\"/>\n<g id=\"Vector_102\">\n<path d=\"M426.72 97.978H357.276V129.808H426.72V97.978Z\" fill=\"white\"/>\n<path d=\"M426.72 97.978H357.276V129.808H426.72V97.978Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<path id=\"Vector_103\" d=\"M428.341 95.856H355.658V97.978H428.341V95.856Z\" fill=\"#003C57\"/>\n<path id=\"Vector_104\" d=\"M374.044 111.493H376.399C381.359 111.493 385.385 115.525 385.385 120.493V129.813H365.053V120.493C365.053 115.525 369.079 111.493 374.039 111.493H374.044Z\" fill=\"white\"/>\n<g id=\"Vector_105\">\n<path d=\"M375.367 111.443H375.082V129.537H375.367V111.443Z\" fill=\"white\"/>\n<path d=\"M375.367 111.443H375.082V129.537H375.367V111.443Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_106\">\n<path d=\"M374.418 120.734C374.418 120.601 374.31 120.493 374.177 120.493C374.044 120.493 373.937 120.601 373.937 120.734V122.162C373.937 122.295 374.044 122.403 374.177 122.403C374.31 122.403 374.418 122.295 374.418 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M374.418 120.734C374.418 120.601 374.31 120.493 374.177 120.493C374.044 120.493 373.937 120.601 373.937 120.734V122.162C373.937 122.295 374.044 122.403 374.177 122.403C374.31 122.403 374.418 122.295 374.418 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_107\">\n<path d=\"M376.541 120.734C376.541 120.601 376.433 120.493 376.3 120.493C376.167 120.493 376.06 120.601 376.06 120.734V122.162C376.06 122.295 376.167 122.403 376.3 122.403C376.433 122.403 376.541 122.295 376.541 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M376.541 120.734C376.541 120.601 376.433 120.493 376.3 120.493C376.167 120.493 376.06 120.601 376.06 120.734V122.162C376.06 122.295 376.167 122.403 376.3 122.403C376.433 122.403 376.541 122.295 376.541 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_108\" d=\"M406.436 111.493H408.79C413.751 111.493 417.777 115.525 417.777 120.493V129.813H397.444V120.493C397.444 115.525 401.471 111.493 406.431 111.493H406.436Z\" fill=\"white\"/>\n<g id=\"Vector_109\">\n<path d=\"M407.758 111.443H407.473V129.537H407.758V111.443Z\" fill=\"white\"/>\n<path d=\"M407.758 111.443H407.473V129.537H407.758V111.443Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_110\">\n<path d=\"M406.81 120.734C406.81 120.601 406.702 120.493 406.569 120.493C406.436 120.493 406.328 120.601 406.328 120.734V122.162C406.328 122.295 406.436 122.403 406.569 122.403C406.702 122.403 406.81 122.295 406.81 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M406.81 120.734C406.81 120.601 406.702 120.493 406.569 120.493C406.436 120.493 406.328 120.601 406.328 120.734V122.162C406.328 122.295 406.436 122.403 406.569 122.403C406.702 122.403 406.81 122.295 406.81 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_111\">\n<path d=\"M408.938 120.734C408.938 120.601 408.83 120.493 408.697 120.493C408.564 120.493 408.456 120.601 408.456 120.734V122.162C408.456 122.295 408.564 122.403 408.697 122.403C408.83 122.403 408.938 122.295 408.938 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M408.938 120.734C408.938 120.601 408.83 120.493 408.697 120.493C408.564 120.493 408.456 120.601 408.456 120.734V122.162C408.456 122.295 408.564 122.403 408.697 122.403C408.83 122.403 408.938 122.295 408.938 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_112\">\n<path d=\"M418.292 100.285H365.707V109.528H418.292V100.285Z\" fill=\"white\"/>\n<path d=\"M418.292 100.285H365.707V109.528H418.292V100.285Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_113\">\n<path d=\"M411.283 71.5879H372.525V80.5289H411.283V71.5879Z\" fill=\"white\"/>\n<path d=\"M411.283 71.5879H372.525V80.5289H411.283V71.5879Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_114\">\n<path d=\"M411.283 84.8418H372.525V93.7828H411.283V84.8418Z\" fill=\"white\"/>\n<path d=\"M411.283 84.8418H372.525V93.7828H411.283V84.8418Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_115\">\n<path d=\"M411.283 58.3291H372.525V67.2701H411.283V58.3291Z\" fill=\"white\"/>\n<path d=\"M411.283 58.3291H372.525V67.2701H411.283V58.3291Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_116\">\n<path d=\"M411.283 45.1685H372.525V54.1095H411.283V45.1685Z\" fill=\"white\"/>\n<path d=\"M411.283 45.1685H372.525V54.1095H411.283V45.1685Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_117\">\n<path d=\"M392.327 41.5942H391.668V95.8558H392.327V41.5942Z\" fill=\"white\"/>\n<path d=\"M392.327 41.5942H391.668V95.8558H392.327V41.5942Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Group 39\">\n<g id=\"Vector_118\">\n<path d=\"M324.619 50.7915H323.96V118.642H324.619V50.7915Z\" fill=\"white\"/>\n<path d=\"M324.619 50.7915H323.96V118.642H324.619V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_119\">\n<path d=\"M339.082 50.7915H338.423V118.642H339.082V50.7915Z\" fill=\"white\"/>\n<path d=\"M339.082 50.7915H338.423V118.642H339.082V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_120\">\n<path d=\"M352.276 50.7915H351.617V118.642H352.276V50.7915Z\" fill=\"white\"/>\n<path d=\"M352.276 50.7915H351.617V118.642H352.276V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_121\">\n<path d=\"M432.456 50.7915H431.797V118.642H432.456V50.7915Z\" fill=\"white\"/>\n<path d=\"M432.456 50.7915H431.797V118.642H432.456V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_122\">\n<path d=\"M446.919 50.7915H446.26V118.642H446.919V50.7915Z\" fill=\"white\"/>\n<path d=\"M446.919 50.7915H446.26V118.642H446.919V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_123\">\n<path d=\"M460.114 50.7915H459.455V118.642H460.114V50.7915Z\" fill=\"white\"/>\n<path d=\"M460.114 50.7915H459.455V118.642H460.114V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n</g>\n<g id=\"POLICE\">\n<path d=\"M379.974 104.813H380.382C380.763 104.813 381.048 104.737 381.238 104.586C381.427 104.432 381.522 104.209 381.522 103.918C381.522 103.624 381.442 103.406 381.282 103.266C381.124 103.126 380.877 103.056 380.538 103.056H379.974V104.813ZM382.773 103.873C382.773 104.51 382.576 104.997 382.182 105.335C381.79 105.672 381.231 105.841 380.506 105.841H379.974V107.946H378.734V102.027H380.602C381.311 102.027 381.85 102.182 382.218 102.493C382.588 102.8 382.773 103.261 382.773 103.873Z\" fill=\"white\"/>\n<path d=\"M389.184 104.979C389.184 105.958 388.944 106.711 388.464 107.238C387.984 107.764 387.296 108.027 386.4 108.027C385.505 108.027 384.817 107.764 384.337 107.238C383.857 106.711 383.617 105.956 383.617 104.97C383.617 103.985 383.857 103.234 384.337 102.715C384.82 102.195 385.51 101.934 386.408 101.934C387.307 101.934 387.993 102.196 388.468 102.719C388.945 103.243 389.184 103.996 389.184 104.979ZM384.917 104.979C384.917 105.64 385.041 106.138 385.289 106.472C385.537 106.807 385.907 106.974 386.4 106.974C387.39 106.974 387.884 106.309 387.884 104.979C387.884 103.645 387.392 102.979 386.408 102.979C385.915 102.979 385.543 103.147 385.293 103.485C385.042 103.819 384.917 104.317 384.917 104.979Z\" fill=\"white\"/>\n<path d=\"M390.396 107.946V102.027H391.635V106.91H394.007V107.946H390.396Z\" fill=\"white\"/>\n<path d=\"M395.026 107.946V102.027H396.266V107.946H395.026Z\" fill=\"white\"/>\n<path d=\"M400.221 102.987C399.755 102.987 399.393 103.165 399.137 103.521C398.881 103.875 398.753 104.369 398.753 105.003C398.753 106.323 399.243 106.983 400.221 106.983C400.632 106.983 401.129 106.879 401.713 106.671V107.723C401.233 107.926 400.697 108.027 400.105 108.027C399.255 108.027 398.604 107.767 398.154 107.246C397.703 106.722 397.478 105.972 397.478 104.995C397.478 104.379 397.588 103.841 397.81 103.379C398.031 102.915 398.348 102.56 398.761 102.315C399.177 102.066 399.664 101.942 400.221 101.942C400.789 101.942 401.359 102.081 401.933 102.359L401.533 103.379C401.314 103.274 401.094 103.182 400.873 103.104C400.652 103.026 400.434 102.987 400.221 102.987Z\" fill=\"white\"/>\n<path d=\"M406.328 107.946H402.96V102.027H406.328V103.056H404.2V104.355H406.18V105.383H404.2V106.91H406.328V107.946Z\" fill=\"white\"/>\n</g>\n</g>\n<g id=\"Courts\">\n<g id=\"Building\">\n<g id=\"Rectangle 1\">\n<rect x=\"491.832\" y=\"68.813\" width=\"150\" height=\"56\" fill=\"white\"/>\n<rect x=\"491.832\" y=\"68.813\" width=\"150\" height=\"56\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Rectangle 3\">\n<rect x=\"488.832\" y=\"120.942\" width=\"154.713\" height=\"6.67484\" fill=\"white\"/>\n<rect x=\"488.832\" y=\"120.942\" width=\"154.713\" height=\"6.67484\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 2\">\n<path d=\"M497.297 57.813H636.368L641.832 68.813H491.832L497.297 57.813Z\" fill=\"white\"/>\n<path d=\"M497.297 57.813H636.368L641.832 68.813H491.832L497.297 57.813Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_124\">\n<path d=\"M551.731 70.3457H545.785V70.984C546.059 71.0995 546.253 71.367 546.253 71.6831V71.7317C546.253 72.1512 545.913 72.4916 545.494 72.4916H545.39C545.615 72.5463 545.785 72.747 545.785 72.9901V73.0205C545.785 73.3062 545.554 73.5312 545.275 73.5312H544.861V113.896H545.275C545.56 113.896 545.785 114.127 545.785 114.407V114.437C545.785 114.681 545.615 114.881 545.39 114.936H545.415C545.877 114.936 546.253 115.313 546.253 115.775V118.583H551.269V115.775C551.269 115.313 551.646 114.936 552.108 114.936H552.132C551.907 114.881 551.737 114.681 551.737 114.437V114.407C551.737 114.121 551.968 113.896 552.247 113.896H552.661V73.5372H552.247C551.962 73.5372 551.737 73.3062 551.737 73.0266V72.9962C551.737 72.753 551.907 72.5524 552.132 72.4977H552.029C551.609 72.4977 551.269 72.1573 551.269 71.7378V71.6892C551.269 71.3731 551.463 71.1056 551.737 70.9901V70.3518M569.81 70.3518H563.865V70.9901C564.138 71.1056 564.333 71.3731 564.333 71.6892V71.7378C564.333 72.1573 563.992 72.4977 563.573 72.4977H563.469C563.694 72.5524 563.865 72.753 563.865 72.9962V73.0266C563.865 73.3123 563.634 73.5372 563.354 73.5372H562.941V113.903H563.354C563.64 113.903 563.865 114.134 563.865 114.413V114.444C563.865 114.687 563.694 114.887 563.469 114.942H563.494C563.956 114.942 564.333 115.319 564.333 115.781V118.59H569.348V115.781C569.348 115.319 569.725 114.942 570.187 114.942H570.211C569.986 114.887 569.816 114.687 569.816 114.444V114.413C569.816 114.127 570.047 113.903 570.327 113.903H570.74V73.5372H570.327C570.041 73.5372 569.816 73.3062 569.816 73.0266V72.9962C569.816 72.753 569.986 72.5524 570.211 72.4977H570.108C569.688 72.4977 569.348 72.1573 569.348 71.7378V71.6892C569.348 71.3731 569.543 71.1056 569.816 70.9901V70.3518M587.889 70.3518H581.944V70.9901C582.217 71.1056 582.412 71.3731 582.412 71.6892V71.7378C582.412 72.1573 582.072 72.4977 581.652 72.4977H581.549C581.774 72.5524 581.944 72.753 581.944 72.9962V73.0266C581.944 73.3123 581.713 73.5372 581.433 73.5372H581.02V113.903H581.433C581.719 113.903 581.944 114.134 581.944 114.413V114.444C581.944 114.687 581.774 114.887 581.549 114.942H581.573C582.035 114.942 582.412 115.319 582.412 115.781V118.59H587.427V115.781C587.427 115.319 587.804 114.942 588.266 114.942H588.29C588.066 114.887 587.895 114.687 587.895 114.444V114.413C587.895 114.127 588.126 113.903 588.406 113.903H588.819V73.5372H588.406C588.12 73.5372 587.895 73.3062 587.895 73.0266V72.9962C587.895 72.753 588.066 72.5524 588.29 72.4977H588.187C587.768 72.4977 587.427 72.1573 587.427 71.7378V71.6892C587.427 71.3731 587.622 71.1056 587.895 70.9901V70.3518\" fill=\"white\"/>\n<path d=\"M551.731 70.3457H545.785V70.984C546.059 71.0995 546.253 71.367 546.253 71.6831V71.7317C546.253 72.1512 545.913 72.4916 545.494 72.4916H545.39C545.615 72.5463 545.785 72.747 545.785 72.9901V73.0205C545.785 73.3062 545.554 73.5312 545.275 73.5312H544.861V113.896H545.275C545.56 113.896 545.785 114.127 545.785 114.407V114.437C545.785 114.681 545.615 114.881 545.39 114.936H545.415C545.877 114.936 546.253 115.313 546.253 115.775V118.583H551.269V115.775C551.269 115.313 551.646 114.936 552.108 114.936H552.132C551.907 114.881 551.737 114.681 551.737 114.437V114.407C551.737 114.121 551.968 113.896 552.247 113.896H552.661V73.5372H552.247C551.962 73.5372 551.737 73.3062 551.737 73.0266V72.9962C551.737 72.753 551.907 72.5524 552.132 72.4977H552.029C551.609 72.4977 551.269 72.1573 551.269 71.7378V71.6892C551.269 71.3731 551.463 71.1056 551.737 70.9901V70.3518M569.81 70.3518H563.865V70.9901C564.138 71.1056 564.333 71.3731 564.333 71.6892V71.7378C564.333 72.1573 563.992 72.4977 563.573 72.4977H563.469C563.694 72.5524 563.865 72.753 563.865 72.9962V73.0266C563.865 73.3123 563.634 73.5372 563.354 73.5372H562.941V113.903H563.354C563.64 113.903 563.865 114.134 563.865 114.413V114.444C563.865 114.687 563.694 114.887 563.469 114.942H563.494C563.956 114.942 564.333 115.319 564.333 115.781V118.59H569.348V115.781C569.348 115.319 569.725 114.942 570.187 114.942H570.211C569.986 114.887 569.816 114.687 569.816 114.444V114.413C569.816 114.127 570.047 113.903 570.327 113.903H570.74V73.5372H570.327C570.041 73.5372 569.816 73.3062 569.816 73.0266V72.9962C569.816 72.753 569.986 72.5524 570.211 72.4977H570.108C569.688 72.4977 569.348 72.1573 569.348 71.7378V71.6892C569.348 71.3731 569.543 71.1056 569.816 70.9901V70.3518M587.889 70.3518H581.944V70.9901C582.217 71.1056 582.412 71.3731 582.412 71.6892V71.7378C582.412 72.1573 582.072 72.4977 581.652 72.4977H581.549C581.774 72.5524 581.944 72.753 581.944 72.9962V73.0266C581.944 73.3123 581.713 73.5372 581.433 73.5372H581.02V113.903H581.433C581.719 113.903 581.944 114.134 581.944 114.413V114.444C581.944 114.687 581.774 114.887 581.549 114.942H581.573C582.035 114.942 582.412 115.319 582.412 115.781V118.59H587.427V115.781C587.427 115.319 587.804 114.942 588.266 114.942H588.29C588.066 114.887 587.895 114.687 587.895 114.444V114.413C587.895 114.127 588.126 113.903 588.406 113.903H588.819V73.5372H588.406C588.12 73.5372 587.895 73.3062 587.895 73.0266V72.9962C587.895 72.753 588.066 72.5524 588.29 72.4977H588.187C587.768 72.4977 587.427 72.1573 587.427 71.7378V71.6892C587.427 71.3731 587.622 71.1056 587.895 70.9901V70.3518\" fill=\"#206095\" fill-opacity=\"0.55\"/>\n</g>\n<path id=\"Vector_125\" d=\"M545.779 70.3457H533.657V70.984C533.748 70.9475 533.846 70.9293 533.949 70.9293H545.493C545.597 70.9293 545.694 70.9475 545.785 70.984V70.3457\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_126\" d=\"M599.974 66.3882H566.886H533.657V67.7377H599.974V66.3882Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_127\" d=\"M563.858 70.3457H551.73V70.984C551.822 70.9475 551.919 70.9293 552.022 70.9293H563.566C563.67 70.9293 563.767 70.9475 563.858 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_128\" d=\"M581.932 70.3457H569.804V70.984C569.895 70.9475 569.992 70.9293 570.096 70.9293H581.64C581.743 70.9293 581.84 70.9475 581.932 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_129\" d=\"M600.005 70.3457H587.877V70.984C587.968 70.9475 588.065 70.9293 588.169 70.9293H599.713C599.816 70.9293 599.914 70.9475 600.005 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<g id=\"Vector_130\">\n<path d=\"M599.075 73.5371H588.808V113.902H599.075V73.5371Z\" fill=\"white\"/>\n<path d=\"M599.075 73.5371H588.808V113.902H599.075V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_131\">\n<path d=\"M599.713 70.9292H588.169C588.066 70.9292 587.968 70.9474 587.877 70.9839C587.604 71.0994 587.409 71.3669 587.409 71.683V71.7316C587.409 72.1511 587.75 72.4915 588.169 72.4915H588.272C588.309 72.4855 588.351 72.4794 588.394 72.4794H599.494C599.537 72.4794 599.573 72.4794 599.616 72.4915H599.719C600.139 72.4915 600.479 72.1511 600.479 71.7316V71.683C600.479 71.3669 600.285 71.0994 600.011 70.9839C599.92 70.9474 599.823 70.9292 599.719 70.9292\" fill=\"white\"/>\n<path d=\"M599.713 70.9292H588.169C588.066 70.9292 587.968 70.9474 587.877 70.9839C587.604 71.0994 587.409 71.3669 587.409 71.683V71.7316C587.409 72.1511 587.75 72.4915 588.169 72.4915H588.272C588.309 72.4855 588.351 72.4794 588.394 72.4794H599.494C599.537 72.4794 599.573 72.4794 599.616 72.4915H599.719C600.139 72.4915 600.479 72.1511 600.479 71.7316V71.683C600.479 71.3669 600.285 71.0994 600.011 70.9839C599.92 70.9474 599.823 70.9292 599.719 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_132\">\n<path d=\"M599.488 72.4795H588.388C588.345 72.4795 588.309 72.4795 588.266 72.4917C588.041 72.5464 587.871 72.747 587.871 72.9901V73.0205C587.871 73.3063 588.102 73.5312 588.382 73.5312H599.482C599.768 73.5312 599.993 73.3002 599.993 73.0205V72.9901C599.993 72.747 599.823 72.5464 599.598 72.4917C599.561 72.4856 599.519 72.4795 599.476 72.4795\" fill=\"white\"/>\n<path d=\"M599.488 72.4795H588.388C588.345 72.4795 588.309 72.4795 588.266 72.4917C588.041 72.5464 587.871 72.747 587.871 72.9901V73.0205C587.871 73.3063 588.102 73.5312 588.382 73.5312H599.482C599.768 73.5312 599.993 73.3002 599.993 73.0205V72.9901C599.993 72.747 599.823 72.5464 599.598 72.4917C599.561 72.4856 599.519 72.4795 599.476 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_133\">\n<path d=\"M599.634 114.942H599.61C599.574 114.948 599.531 114.954 599.489 114.954H588.388C588.346 114.954 588.309 114.954 588.267 114.942H588.242C587.78 114.942 587.403 115.319 587.403 115.781V118.589H600.461V115.781C600.461 115.319 600.084 114.942 599.622 114.942\" fill=\"white\"/>\n<path d=\"M599.634 114.942H599.61C599.574 114.948 599.531 114.954 599.489 114.954H588.388C588.346 114.954 588.309 114.954 588.267 114.942H588.242C587.78 114.942 587.403 115.319 587.403 115.781V118.589H600.461V115.781C600.461 115.319 600.084 114.942 599.622 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_134\">\n<path d=\"M599.488 113.902H588.388C588.102 113.902 587.877 114.133 587.877 114.413V114.443C587.877 114.687 588.047 114.887 588.272 114.942C588.309 114.948 588.351 114.954 588.394 114.954H599.494C599.537 114.954 599.573 114.954 599.616 114.942C599.841 114.887 600.011 114.687 600.011 114.443V114.413C600.011 114.127 599.78 113.902 599.5 113.902\" fill=\"white\"/>\n<path d=\"M599.488 113.902H588.388C588.102 113.902 587.877 114.133 587.877 114.413V114.443C587.877 114.687 588.047 114.887 588.272 114.942C588.309 114.948 588.351 114.954 588.394 114.954H599.494C599.537 114.954 599.573 114.954 599.616 114.942C599.841 114.887 600.011 114.687 600.011 114.443V114.413C600.011 114.127 599.78 113.902 599.5 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_135\">\n<path d=\"M544.855 73.5371H534.581V113.902H544.855V73.5371Z\" fill=\"white\"/>\n<path d=\"M544.855 73.5371H534.581V113.902H544.855V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_136\">\n<path d=\"M545.494 70.9292H533.949C533.846 70.9292 533.749 70.9474 533.658 70.9839C533.384 71.0994 533.189 71.3669 533.189 71.683V71.7316C533.189 72.1511 533.53 72.4915 533.949 72.4915H534.053C534.089 72.4855 534.132 72.4794 534.174 72.4794H545.275C545.317 72.4794 545.354 72.4794 545.396 72.4915H545.5C545.919 72.4915 546.26 72.1511 546.26 71.7316V71.683C546.26 71.3669 546.065 71.0994 545.791 70.9839C545.7 70.9474 545.603 70.9292 545.5 70.9292\" fill=\"white\"/>\n<path d=\"M545.494 70.9292H533.949C533.846 70.9292 533.749 70.9474 533.658 70.9839C533.384 71.0994 533.189 71.3669 533.189 71.683V71.7316C533.189 72.1511 533.53 72.4915 533.949 72.4915H534.053C534.089 72.4855 534.132 72.4794 534.174 72.4794H545.275C545.317 72.4794 545.354 72.4794 545.396 72.4915H545.5C545.919 72.4915 546.26 72.1511 546.26 71.7316V71.683C546.26 71.3669 546.065 71.0994 545.791 70.9839C545.7 70.9474 545.603 70.9292 545.5 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_137\">\n<path d=\"M545.269 72.4795H534.168C534.126 72.4795 534.089 72.4795 534.047 72.4917C533.822 72.5464 533.651 72.747 533.651 72.9901V73.0205C533.651 73.3063 533.882 73.5312 534.162 73.5312H545.262C545.548 73.5312 545.773 73.3002 545.773 73.0205V72.9901C545.773 72.747 545.603 72.5464 545.378 72.4917C545.341 72.4856 545.299 72.4795 545.256 72.4795\" fill=\"white\"/>\n<path d=\"M545.269 72.4795H534.168C534.126 72.4795 534.089 72.4795 534.047 72.4917C533.822 72.5464 533.651 72.747 533.651 72.9901V73.0205C533.651 73.3063 533.882 73.5312 534.162 73.5312H545.262C545.548 73.5312 545.773 73.3002 545.773 73.0205V72.9901C545.773 72.747 545.603 72.5464 545.378 72.4917C545.341 72.4856 545.299 72.4795 545.256 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_138\">\n<path d=\"M545.408 114.942H545.384C545.348 114.948 545.305 114.954 545.269 114.954H534.168C534.126 114.954 534.089 114.954 534.053 114.942H534.028C533.566 114.942 533.189 115.319 533.189 115.781V118.589H546.247V115.781C546.247 115.319 545.87 114.942 545.408 114.942Z\" fill=\"white\"/>\n<path d=\"M545.408 114.942H545.384C545.348 114.948 545.305 114.954 545.269 114.954H534.168C534.126 114.954 534.089 114.954 534.053 114.942H534.028C533.566 114.942 533.189 115.319 533.189 115.781V118.589H546.247V115.781C546.247 115.319 545.87 114.942 545.408 114.942Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_139\">\n<path d=\"M545.268 113.902H534.168C533.882 113.902 533.657 114.133 533.657 114.413V114.443C533.657 114.687 533.827 114.887 534.052 114.942C534.089 114.948 534.131 114.954 534.168 114.954H545.268C545.311 114.954 545.347 114.954 545.384 114.942C545.609 114.887 545.779 114.687 545.779 114.443V114.413C545.779 114.127 545.548 113.902 545.268 113.902Z\" fill=\"white\"/>\n<path d=\"M545.268 113.902H534.168C533.882 113.902 533.657 114.133 533.657 114.413V114.443C533.657 114.687 533.827 114.887 534.052 114.942C534.089 114.948 534.131 114.954 534.168 114.954H545.268C545.311 114.954 545.347 114.954 545.384 114.942C545.609 114.887 545.779 114.687 545.779 114.443V114.413C545.779 114.127 545.548 113.902 545.268 113.902Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_140\">\n<path d=\"M562.929 73.5371H552.661V113.902H562.929V73.5371Z\" fill=\"white\"/>\n<path d=\"M562.929 73.5371H552.661V113.902H562.929V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_141\">\n<path d=\"M563.567 70.9292H552.023C551.919 70.9292 551.822 70.9474 551.731 70.9839C551.457 71.0994 551.263 71.3669 551.263 71.683V71.7316C551.263 72.1511 551.603 72.4915 552.023 72.4915H552.126C552.162 72.4855 552.205 72.4794 552.248 72.4794H563.348C563.391 72.4794 563.427 72.4794 563.47 72.4915H563.573C563.992 72.4915 564.333 72.1511 564.333 71.7316V71.683C564.333 71.3669 564.138 71.0994 563.865 70.9839C563.774 70.9474 563.676 70.9292 563.573 70.9292\" fill=\"white\"/>\n<path d=\"M563.567 70.9292H552.023C551.919 70.9292 551.822 70.9474 551.731 70.9839C551.457 71.0994 551.263 71.3669 551.263 71.683V71.7316C551.263 72.1511 551.603 72.4915 552.023 72.4915H552.126C552.162 72.4855 552.205 72.4794 552.248 72.4794H563.348C563.391 72.4794 563.427 72.4794 563.47 72.4915H563.573C563.992 72.4915 564.333 72.1511 564.333 71.7316V71.683C564.333 71.3669 564.138 71.0994 563.865 70.9839C563.774 70.9474 563.676 70.9292 563.573 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_142\">\n<path d=\"M563.342 72.4795H552.241C552.199 72.4795 552.162 72.4795 552.12 72.4917C551.895 72.5464 551.725 72.747 551.725 72.9901V73.0205C551.725 73.3063 551.956 73.5312 552.235 73.5312H563.336C563.621 73.5312 563.846 73.3002 563.846 73.0205V72.9901C563.846 72.747 563.676 72.5464 563.451 72.4917C563.415 72.4856 563.372 72.4795 563.33 72.4795\" fill=\"white\"/>\n<path d=\"M563.342 72.4795H552.241C552.199 72.4795 552.162 72.4795 552.12 72.4917C551.895 72.5464 551.725 72.747 551.725 72.9901V73.0205C551.725 73.3063 551.956 73.5312 552.235 73.5312H563.336C563.621 73.5312 563.846 73.3002 563.846 73.0205V72.9901C563.846 72.747 563.676 72.5464 563.451 72.4917C563.415 72.4856 563.372 72.4795 563.33 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_143\">\n<path d=\"M563.482 114.942H563.458C563.421 114.948 563.379 114.954 563.336 114.954H552.236C552.193 114.954 552.157 114.954 552.12 114.942H552.096C551.634 114.942 551.257 115.319 551.257 115.781V118.589H564.315V115.781C564.315 115.319 563.938 114.942 563.476 114.942\" fill=\"white\"/>\n<path d=\"M563.482 114.942H563.458C563.421 114.948 563.379 114.954 563.336 114.954H552.236C552.193 114.954 552.157 114.954 552.12 114.942H552.096C551.634 114.942 551.257 115.319 551.257 115.781V118.589H564.315V115.781C564.315 115.319 563.938 114.942 563.476 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_144\">\n<path d=\"M563.342 113.902H552.241C551.955 113.902 551.73 114.133 551.73 114.413V114.443C551.73 114.687 551.901 114.887 552.126 114.942C552.162 114.948 552.205 114.954 552.241 114.954H563.342C563.384 114.954 563.421 114.954 563.463 114.942C563.688 114.887 563.858 114.687 563.858 114.443V114.413C563.858 114.127 563.627 113.902 563.348 113.902\" fill=\"white\"/>\n<path d=\"M563.342 113.902H552.241C551.955 113.902 551.73 114.133 551.73 114.413V114.443C551.73 114.687 551.901 114.887 552.126 114.942C552.162 114.948 552.205 114.954 552.241 114.954H563.342C563.384 114.954 563.421 114.954 563.463 114.942C563.688 114.887 563.858 114.687 563.858 114.443V114.413C563.858 114.127 563.627 113.902 563.348 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_145\">\n<path d=\"M581.002 73.5371H570.734V113.902H581.002V73.5371Z\" fill=\"white\"/>\n<path d=\"M581.002 73.5371H570.734V113.902H581.002V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_146\">\n<path d=\"M581.64 70.9292H570.096C569.992 70.9292 569.895 70.9474 569.804 70.9839C569.53 71.0994 569.336 71.3669 569.336 71.683V71.7316C569.336 72.1511 569.676 72.4915 570.096 72.4915H570.199C570.236 72.4855 570.278 72.4794 570.321 72.4794H581.421C581.464 72.4794 581.5 72.4794 581.543 72.4915H581.646C582.066 72.4915 582.406 72.1511 582.406 71.7316V71.683C582.406 71.3669 582.211 71.0994 581.938 70.9839C581.847 70.9474 581.749 70.9292 581.646 70.9292\" fill=\"white\"/>\n<path d=\"M581.64 70.9292H570.096C569.992 70.9292 569.895 70.9474 569.804 70.9839C569.53 71.0994 569.336 71.3669 569.336 71.683V71.7316C569.336 72.1511 569.676 72.4915 570.096 72.4915H570.199C570.236 72.4855 570.278 72.4794 570.321 72.4794H581.421C581.464 72.4794 581.5 72.4794 581.543 72.4915H581.646C582.066 72.4915 582.406 72.1511 582.406 71.7316V71.683C582.406 71.3669 582.211 71.0994 581.938 70.9839C581.847 70.9474 581.749 70.9292 581.646 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_147\">\n<path d=\"M581.415 72.4795H570.315C570.272 72.4795 570.236 72.4795 570.193 72.4917C569.968 72.5464 569.798 72.747 569.798 72.9901V73.0205C569.798 73.3063 570.029 73.5312 570.308 73.5312H581.409C581.695 73.5312 581.92 73.3002 581.92 73.0205V72.9901C581.92 72.747 581.749 72.5464 581.524 72.4917C581.488 72.4856 581.445 72.4795 581.403 72.4795\" fill=\"white\"/>\n<path d=\"M581.415 72.4795H570.315C570.272 72.4795 570.236 72.4795 570.193 72.4917C569.968 72.5464 569.798 72.747 569.798 72.9901V73.0205C569.798 73.3063 570.029 73.5312 570.308 73.5312H581.409C581.695 73.5312 581.92 73.3002 581.92 73.0205V72.9901C581.92 72.747 581.749 72.5464 581.524 72.4917C581.488 72.4856 581.445 72.4795 581.403 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_148\">\n<path d=\"M581.561 114.942H581.537C581.5 114.948 581.458 114.954 581.415 114.954H570.315C570.272 114.954 570.236 114.954 570.199 114.942H570.175C569.713 114.942 569.336 115.319 569.336 115.781V118.589H582.394V115.781C582.394 115.319 582.017 114.942 581.555 114.942\" fill=\"white\"/>\n<path d=\"M581.561 114.942H581.537C581.5 114.948 581.458 114.954 581.415 114.954H570.315C570.272 114.954 570.236 114.954 570.199 114.942H570.175C569.713 114.942 569.336 115.319 569.336 115.781V118.589H582.394V115.781C582.394 115.319 582.017 114.942 581.555 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_149\">\n<path d=\"M581.415 113.902H570.314C570.029 113.902 569.804 114.133 569.804 114.413V114.443C569.804 114.687 569.974 114.887 570.199 114.942C570.235 114.948 570.278 114.954 570.314 114.954H581.415C581.457 114.954 581.494 114.954 581.536 114.942C581.761 114.887 581.932 114.687 581.932 114.443V114.413C581.932 114.127 581.701 113.902 581.421 113.902\" fill=\"white\"/>\n<path d=\"M581.415 113.902H570.314C570.029 113.902 569.804 114.133 569.804 114.413V114.443C569.804 114.687 569.974 114.887 570.199 114.942C570.235 114.948 570.278 114.954 570.314 114.954H581.415C581.457 114.954 581.494 114.954 581.536 114.942C581.761 114.887 581.932 114.687 581.932 114.443V114.413C581.932 114.127 581.701 113.902 581.421 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_150\">\n<path d=\"M600.431 67.7378H533.336C533.038 67.7378 532.801 67.9749 532.801 68.2728V69.8108C532.801 70.1086 533.038 70.3457 533.336 70.3457H600.425C600.723 70.3457 600.96 70.1086 600.96 69.8108V68.2728C600.96 67.9749 600.723 67.7378 600.425 67.7378\" fill=\"white\"/>\n<path d=\"M600.431 67.7378H533.336C533.038 67.7378 532.801 67.9749 532.801 68.2728V69.8108C532.801 70.1086 533.038 70.3457 533.336 70.3457H600.425C600.723 70.3457 600.96 70.1086 600.96 69.8108V68.2728C600.96 67.9749 600.723 67.7378 600.425 67.7378\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_151\">\n<path d=\"M566.898 43.8833L549.025 54.85L534.083 64.0173H599.719L584.777 54.85L566.886 43.9076\" fill=\"white\"/>\n<path d=\"M566.898 43.8833L549.025 54.85L534.083 64.0173H599.719L584.777 54.85L566.886 43.9076\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_152\">\n<path d=\"M534.065 64.0416L549.007 54.8743L566.886 43.9076L584.758 54.8743L599.701 64.0416H534.065ZM566.886 41.4517C566.576 41.4517 566.266 41.5368 565.986 41.707L547.785 52.8743L530.94 63.2088C530.679 63.3668 530.46 63.5979 530.326 63.8593C530.186 64.1207 530.119 64.4003 530.125 64.6678C530.125 65.0994 530.277 65.5067 530.575 65.835C530.727 65.9991 530.916 66.1389 531.135 66.2362C531.353 66.3335 531.597 66.3882 531.84 66.3882H601.926C602.169 66.3882 602.412 66.3395 602.631 66.2362C602.959 66.0903 603.221 65.8471 603.385 65.5675C603.555 65.2939 603.64 64.9839 603.64 64.6617C603.64 64.3942 603.579 64.1146 603.439 63.8532C603.3 63.5918 603.081 63.3608 602.825 63.2027L585.98 52.8682L567.779 41.707C567.506 41.5368 567.196 41.4517 566.886 41.4517Z\" fill=\"white\"/>\n<path d=\"M534.065 64.0416L549.007 54.8743L566.886 43.9076L584.758 54.8743L599.701 64.0416H534.065ZM566.886 41.4517C566.576 41.4517 566.266 41.5368 565.986 41.707L547.785 52.8743L530.94 63.2088C530.679 63.3668 530.46 63.5979 530.326 63.8593C530.186 64.1207 530.119 64.4003 530.125 64.6678C530.125 65.0994 530.277 65.5067 530.575 65.835C530.727 65.9991 530.916 66.1389 531.135 66.2362C531.353 66.3335 531.597 66.3882 531.84 66.3882H601.926C602.169 66.3882 602.412 66.3395 602.631 66.2362C602.959 66.0903 603.221 65.8471 603.385 65.5675C603.555 65.2939 603.64 64.9839 603.64 64.6617C603.64 64.3942 603.579 64.1146 603.439 63.8532C603.3 63.5918 603.081 63.3608 602.825 63.2027L585.98 52.8682L567.779 41.707C567.506 41.5368 567.196 41.4517 566.886 41.4517Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<path id=\"Vector_153\" d=\"M603.24 118.589H601.07H588.006H582.997H569.933H564.918H551.86H546.844H533.786H530.832V121.617H603.24V118.589Z\" fill=\"#A6BFD5\"/>\n<g id=\"Vector_154\">\n<path d=\"M605.143 121.617H603.094H530.686H528.832V125.75H605.143V121.617Z\" fill=\"white\"/>\n<path d=\"M605.143 121.617H603.094H530.686H528.832V125.75H605.143V121.617Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 6\">\n<rect x=\"496.832\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"496.832\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 7\">\n<rect x=\"513.832\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"513.832\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 8\">\n<rect x=\"496.832\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"496.832\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 9\">\n<rect x=\"513.832\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"513.832\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 10\">\n<rect x=\"604.832\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"604.832\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 11\">\n<rect x=\"621.832\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"621.832\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 12\">\n<rect x=\"604.832\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"604.832\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 13\">\n<rect x=\"621.832\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"621.832\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 8_2\">\n<rect x=\"495.832\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"495.832\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 9_2\">\n<rect x=\"512.832\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"512.832\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 10_2\">\n<rect x=\"495.832\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"495.832\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 11_2\">\n<rect x=\"512.832\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"512.832\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 12_2\">\n<rect x=\"603.832\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"603.832\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 13_2\">\n<rect x=\"620.832\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"620.832\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 14\">\n<rect x=\"603.832\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"603.832\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 15\">\n<rect x=\"620.832\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"620.832\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Icon\">\n<g id=\"Circle\">\n<path id=\"Vector_155\" d=\"M566.832 61.4873C570.146 61.4873 572.832 58.801 572.832 55.4873C572.832 52.1736 570.146 49.4873 566.832 49.4873C563.518 49.4873 560.832 52.1736 560.832 55.4873C560.832 58.801 563.518 61.4873 566.832 61.4873Z\" fill=\"white\"/>\n</g>\n<g id=\"Artwork 64x64\">\n<path id=\"Vector_156\" d=\"M570.64 56.1689L569.686 53.4416C569.68 53.42 569.67 53.3997 569.656 53.3816C569.646 53.3692 569.634 53.3578 569.621 53.3475H569.613C569.599 53.338 569.585 53.3302 569.569 53.3244H569.549C569.535 53.316 569.52 53.3096 569.505 53.3053H567.241V52.6234C567.241 52.5149 567.198 52.4109 567.122 52.3342C567.045 52.2575 566.941 52.2144 566.832 52.2144C566.724 52.2144 566.62 52.2575 566.543 52.3342C566.466 52.4109 566.423 52.5149 566.423 52.6234V53.3053H564.16C564.147 53.3061 564.134 53.3084 564.121 53.3121H564.101C564.086 53.3179 564.071 53.3257 564.057 53.3353H564.049C564.036 53.3455 564.024 53.3569 564.014 53.3694C564 53.3874 563.99 53.4077 563.984 53.4294L563.029 56.1566C563.019 56.1875 563.016 56.2204 563.021 56.2527C563.026 56.2849 563.038 56.3155 563.057 56.3421C563.076 56.3687 563.101 56.3904 563.129 56.4056C563.158 56.4207 563.19 56.4289 563.223 56.4294H565.132C565.164 56.4289 565.196 56.4207 565.225 56.4056C565.254 56.3904 565.279 56.3687 565.298 56.3421C565.317 56.3155 565.329 56.2849 565.334 56.2527C565.339 56.2204 565.336 56.1875 565.326 56.1566L564.464 53.7144H566.423V57.0444L565.319 58.3057C565.284 58.3451 565.261 58.3939 565.253 58.4461C565.245 58.4983 565.252 58.5516 565.274 58.5997C565.296 58.6478 565.331 58.6885 565.376 58.7169C565.42 58.7453 565.472 58.7602 565.525 58.7598H568.14C568.193 58.76 568.244 58.745 568.288 58.7167C568.333 58.6883 568.368 58.6478 568.389 58.6C568.411 58.5522 568.419 58.4991 568.411 58.4471C568.403 58.3952 568.381 58.3465 568.346 58.3071L567.241 57.0444V53.7144H569.201L568.343 56.1689C568.333 56.1998 568.33 56.2327 568.335 56.2649C568.34 56.2972 568.352 56.3278 568.371 56.3544C568.39 56.3809 568.415 56.4027 568.443 56.4178C568.472 56.433 568.504 56.4412 568.537 56.4416H570.446C570.479 56.4412 570.511 56.433 570.539 56.4178C570.568 56.4027 570.593 56.3809 570.612 56.3544C570.631 56.3278 570.643 56.2972 570.648 56.2649C570.653 56.2327 570.65 56.1998 570.64 56.1689ZM563.506 56.0325L564.173 54.1234L564.84 56.0325H563.506ZM568.825 56.0325L569.491 54.1234L570.158 56.0325H568.825Z\" fill=\"#206095\"/>\n<g id=\"Vector_157\">\n<path d=\"M566.832 54.1903C567.209 54.1903 567.514 53.885 567.514 53.5085C567.514 53.1319 567.209 52.8267 566.832 52.8267C566.456 52.8267 566.15 53.1319 566.15 53.5085C566.15 53.885 566.456 54.1903 566.832 54.1903Z\" fill=\"white\"/>\n<path d=\"M566.832 54.1903C567.209 54.1903 567.514 53.885 567.514 53.5085C567.514 53.1319 567.209 52.8267 566.832 52.8267C566.456 52.8267 566.15 53.1319 566.15 53.5085C566.15 53.885 566.456 54.1903 566.832 54.1903Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_158\">\n<path d=\"M565.022 55.9483C565.07 55.9478 565.119 55.9589 565.162 55.9808C565.206 56.0026 565.243 56.0345 565.272 56.0738C565.301 56.1131 565.32 56.1587 565.328 56.2068C565.335 56.255 565.331 56.3042 565.316 56.3505C565.233 56.5867 565.078 56.7912 564.873 56.9358C564.669 57.0805 564.424 57.1581 564.174 57.1581C563.923 57.1581 563.679 57.0805 563.474 56.9358C563.269 56.7912 563.115 56.5867 563.031 56.3505C563.016 56.3042 563.012 56.255 563.019 56.2068C563.027 56.1587 563.046 56.1131 563.075 56.0738C563.104 56.0345 563.141 56.0026 563.185 55.9808C563.229 55.9589 563.277 55.9478 563.325 55.9483H565.022Z\" fill=\"white\"/>\n<path d=\"M565.022 55.9483C565.07 55.9478 565.119 55.9589 565.162 55.9808C565.206 56.0026 565.243 56.0345 565.272 56.0738C565.301 56.1131 565.32 56.1587 565.328 56.2068C565.335 56.255 565.331 56.3042 565.316 56.3505C565.233 56.5867 565.078 56.7912 564.873 56.9358C564.669 57.0805 564.424 57.1581 564.174 57.1581C563.923 57.1581 563.679 57.0805 563.474 56.9358C563.269 56.7912 563.115 56.5867 563.031 56.3505C563.016 56.3042 563.012 56.255 563.019 56.2068C563.027 56.1587 563.046 56.1131 563.075 56.0738C563.104 56.0345 563.141 56.0026 563.185 55.9808C563.229 55.9589 563.277 55.9478 563.325 55.9483H565.022Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_159\">\n<path d=\"M570.34 55.9483C570.389 55.9478 570.437 55.9589 570.481 55.9808C570.524 56.0026 570.562 56.0345 570.591 56.0738C570.619 56.1131 570.638 56.1587 570.646 56.2068C570.654 56.255 570.65 56.3042 570.635 56.3505C570.551 56.5867 570.396 56.7912 570.192 56.9358C569.987 57.0805 569.743 57.1581 569.492 57.1581C569.241 57.1581 568.997 57.0805 568.792 56.9358C568.588 56.7912 568.433 56.5867 568.349 56.3505C568.334 56.3042 568.33 56.255 568.338 56.2068C568.345 56.1587 568.364 56.1131 568.393 56.0738C568.422 56.0345 568.46 56.0026 568.503 55.9808C568.547 55.9589 568.595 55.9478 568.644 55.9483H570.34Z\" fill=\"white\"/>\n<path d=\"M570.34 55.9483C570.389 55.9478 570.437 55.9589 570.481 55.9808C570.524 56.0026 570.562 56.0345 570.591 56.0738C570.619 56.1131 570.638 56.1587 570.646 56.2068C570.654 56.255 570.65 56.3042 570.635 56.3505C570.551 56.5867 570.396 56.7912 570.192 56.9358C569.987 57.0805 569.743 57.1581 569.492 57.1581C569.241 57.1581 568.997 57.0805 568.792 56.9358C568.588 56.7912 568.433 56.5867 568.349 56.3505C568.334 56.3042 568.33 56.255 568.338 56.2068C568.345 56.1587 568.364 56.1131 568.393 56.0738C568.422 56.0345 568.46 56.0026 568.503 55.9808C568.547 55.9589 568.595 55.9478 568.644 55.9483H570.34Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n</g>\n</g>\n<g id=\"Bush_2\">\n<g id=\"Vector_160\">\n<path d=\"M681.329 111.962C685.678 114.179 688.387 115.261 689.527 116.397C690.671 117.533 693.372 120.844 691.827 123.23C690.278 125.617 689.767 127.484 685.414 127.288C681.062 127.091 679.296 126.474 675.774 126.796C672.251 127.119 669.137 125.538 668.41 124.779C667.682 124.021 665.496 120.502 668.39 117.388C671.284 114.27 677.488 110.004 681.329 111.962Z\" fill=\"white\"/>\n<path d=\"M681.329 111.962C685.678 114.179 688.387 115.261 689.527 116.397C690.671 117.533 693.372 120.844 691.827 123.23C690.278 125.617 689.767 127.484 685.414 127.288C681.062 127.091 679.296 126.474 675.774 126.796C672.251 127.119 669.137 125.538 668.41 124.779C667.682 124.021 665.496 120.502 668.39 117.388C671.284 114.27 677.488 110.004 681.329 111.962Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_161\">\n<path d=\"M669.781 109.772C666.781 108.101 663.486 108.014 659.204 110.688C654.923 113.365 654.018 115.142 653.759 116.326C653.503 117.509 651.553 118.256 652.08 120.623C652.607 122.99 657.648 125.491 660.915 125.778C664.182 126.065 664.866 125.766 668.747 125.164C672.627 124.563 675.745 123.666 677.165 120.702C678.588 117.737 672.954 111.537 669.777 109.772H669.781Z\" fill=\"white\"/>\n<path d=\"M669.781 109.772C666.781 108.101 663.486 108.014 659.204 110.688C654.923 113.365 654.018 115.142 653.759 116.326C653.503 117.509 651.553 118.256 652.08 120.623C652.607 122.99 657.648 125.491 660.915 125.778C664.182 126.065 664.866 125.766 668.747 125.164C672.627 124.563 675.745 123.666 677.165 120.702C678.588 117.737 672.954 111.537 669.777 109.772H669.781Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_162\">\n<path d=\"M658.135 113.625C664.886 115.835 669.093 116.912 670.87 118.048C672.644 119.185 676.839 122.487 674.433 124.878C672.022 127.268 671.224 129.136 664.462 128.947C657.699 128.758 654.959 128.145 649.486 128.471C644.013 128.798 639.177 127.225 638.048 126.466C636.92 125.707 633.527 122.192 638.028 119.074C642.53 115.953 652.179 111.679 658.143 113.633L658.135 113.625Z\" fill=\"white\"/>\n<path d=\"M658.135 113.625C664.886 115.835 669.093 116.912 670.87 118.048C672.644 119.185 676.839 122.487 674.433 124.878C672.022 127.268 671.224 129.136 664.462 128.947C657.699 128.758 654.959 128.145 649.486 128.471C644.013 128.798 639.177 127.225 638.048 126.466C636.92 125.707 633.527 122.192 638.028 119.074C642.53 115.953 652.179 111.679 658.143 113.633L658.135 113.625Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_163\">\n<path d=\"M678.675 123.191C676.949 122.342 675.054 122.291 672.585 123.64C670.116 124.988 669.593 125.889 669.444 126.486C669.294 127.084 668.17 127.461 668.472 128.656C668.771 129.856 671.669 131.13 673.552 131.279C675.436 131.428 675.829 131.279 678.062 130.98C680.295 130.681 682.092 130.229 682.918 128.731C683.743 127.233 680.507 124.088 678.683 123.187L678.675 123.191Z\" fill=\"white\"/>\n<path d=\"M678.675 123.191C676.949 122.342 675.054 122.291 672.585 123.64C670.116 124.988 669.593 125.889 669.444 126.486C669.294 127.084 668.17 127.461 668.472 128.656C668.771 129.856 671.669 131.13 673.552 131.279C675.436 131.428 675.829 131.279 678.062 130.98C680.295 130.681 682.092 130.229 682.918 128.731C683.743 127.233 680.507 124.088 678.683 123.187L678.675 123.191Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_164\">\n<path d=\"M671.701 124.685C670.332 124.013 668.83 123.973 666.872 125.043C664.914 126.112 664.501 126.824 664.38 127.299C664.262 127.775 663.373 128.07 663.609 129.022C663.845 129.973 666.145 130.98 667.635 131.101C669.125 131.219 669.44 131.101 671.209 130.866C672.982 130.63 674.406 130.272 675.058 129.084C675.711 127.897 673.147 125.404 671.701 124.693V124.685Z\" fill=\"white\"/>\n<path d=\"M671.701 124.685C670.332 124.013 668.83 123.973 666.872 125.043C664.914 126.112 664.501 126.824 664.38 127.299C664.262 127.775 663.373 128.07 663.609 129.022C663.845 129.973 666.145 130.98 667.635 131.101C669.125 131.219 669.44 131.101 671.209 130.866C672.982 130.63 674.406 130.272 675.058 129.084C675.711 127.897 673.147 125.404 671.701 124.693V124.685Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_165\">\n<path d=\"M676.198 120.219C674.472 119.369 672.577 119.318 670.107 120.667C667.638 122.015 667.115 122.916 666.966 123.513C666.817 124.111 665.692 124.489 665.995 125.684C666.294 126.883 666.514 128.668 668.397 128.817C670.28 128.967 673.351 128.306 675.584 128.007C677.818 127.709 679.614 127.257 680.44 125.759C681.262 124.261 678.03 121.115 676.206 120.215L676.198 120.219Z\" fill=\"white\"/>\n<path d=\"M676.198 120.219C674.472 119.369 672.577 119.318 670.107 120.667C667.638 122.015 667.115 122.916 666.966 123.513C666.817 124.111 665.692 124.489 665.995 125.684C666.294 126.883 666.514 128.668 668.397 128.817C670.28 128.967 673.351 128.306 675.584 128.007C677.818 127.709 679.614 127.257 680.44 125.759C681.262 124.261 678.03 121.115 676.206 120.215L676.198 120.219Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Flats\" clip-path=\"url(#clip1_1849_10359)\">\n<path id=\"Vector_166\" d=\"M198.616 21.1265H200.067V23.6337H198.616V21.1265Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_167\" d=\"M196.045 21.1265H197.497V23.6337H196.045V21.1265Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_168\" d=\"M207.06 23.2844C206.438 23.2844 205.935 22.7739 205.935 22.1441C205.935 21.5144 206.438 21.0039 207.06 21.0039C207.681 21.0039 208.185 21.5144 208.185 22.1441C208.185 22.7739 207.681 23.2844 207.06 23.2844Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_169\" d=\"M205.928 22.1196H208.185V24.4062H205.928V22.1196Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_170\" d=\"M207.06 21.3349C206.88 21.3349 206.733 21.1867 206.733 21.0039C206.733 20.8211 206.88 20.6729 207.06 20.6729C207.24 20.6729 207.387 20.8211 207.387 21.0039C207.387 21.1867 207.24 21.3349 207.06 21.3349Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_171\" d=\"M204.483 23.2844C203.862 23.2844 203.358 22.7739 203.358 22.1441C203.358 21.5144 203.862 21.0039 204.483 21.0039C205.105 21.0039 205.608 21.5144 205.608 22.1441C205.608 22.7739 205.105 23.2844 204.483 23.2844Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_172\" d=\"M203.358 22.1196H205.614V24.4062H203.358V22.1196Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_173\" d=\"M204.483 21.3349C204.303 21.3349 204.156 21.1867 204.156 21.0039C204.156 20.8211 204.303 20.6729 204.483 20.6729C204.663 20.6729 204.81 20.8211 204.81 21.0039C204.81 21.1867 204.663 21.3349 204.483 21.3349Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_174\" d=\"M266.347 14.1255H289.107V15.1676H266.347V14.1255Z\" fill=\"#003C57\"/>\n<g id=\"Vector_175\">\n<path d=\"M266.353 15.186H289.107V28.5623H266.353V15.186Z\" fill=\"white\"/>\n<path d=\"M266.353 15.186H289.107V28.5623H266.353V15.186Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_176\" d=\"M268.766 17.1787H276.133V31.1741H268.766V17.1787Z\" fill=\"#003C57\"/>\n<path id=\"Vector_177\" d=\"M269.692 18.1104H275.214V31.174H269.692V18.1104Z\" fill=\"#EBEBF4\"/>\n<g id=\"Vector_178\">\n<path d=\"M172.444 29.5186H295.67V125.212H172.444V29.5186Z\" fill=\"white\"/>\n<path d=\"M172.444 29.5186H295.67V125.212H172.444V29.5186Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_179\" opacity=\"0.4\" d=\"M231.791 29.4268H234.713V125.819H231.791V29.4268Z\" fill=\"#EBEBF4\"/>\n<path id=\"Vector_180\" d=\"M172.462 28.3354H295.646V29.5186H172.462V28.3354Z\" fill=\"#003C57\"/>\n<g id=\"Vector_181\">\n<path d=\"M193.215 23.1553H210.955V28.3047H193.215V23.1553Z\" fill=\"white\"/>\n<path d=\"M193.215 23.1553H210.955V28.3047H193.215V23.1553Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_182\" d=\"M266.728 35.6611V50.8213H266.334H243.52H243.145V35.6611H266.728Z\" fill=\"white\"/>\n<g id=\"Vector_183\">\n<path d=\"M290.062 35.6611V118.622H289.905H280.621H280.47V35.6611H290.062Z\" fill=\"white\"/>\n<path d=\"M290.062 35.6611V118.622H289.905H280.621H280.47V35.6611H290.062Z\" fill=\"#6390B5\"/>\n</g>\n<path id=\"Vector_184\" d=\"M244.125 36.8442H265.657V49.4665H244.125V36.8442Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_185\" d=\"M266.57 59.5205V74.6807H266.171H243.362H242.981V59.5205H266.57Z\" fill=\"white\"/>\n<path id=\"Vector_186\" d=\"M243.967 60.6973H265.5V73.1478H243.967V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_187\" d=\"M266.57 83.3179V98.4842H266.171H243.362H242.981V83.3179H266.57Z\" fill=\"white\"/>\n<path id=\"Vector_188\" d=\"M243.967 84.501H265.5V97.1477H243.967V84.501Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_189\" d=\"M241.875 98.2021H275.625V99.0849H241.875V98.2021Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_190\" opacity=\"0.5\" d=\"M241.905 93.4453H275.644V98.2024H241.905V93.4453Z\" fill=\"white\"/>\n<path id=\"Vector_191\" d=\"M266.57 108.195V123.355H266.171H243.362H242.981V108.195H266.57Z\" fill=\"white\"/>\n<path id=\"Vector_192\" d=\"M243.967 109.372H265.5V121.932H243.967V109.372Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_193\" d=\"M241.875 123.073H275.625V123.956H241.875V123.073Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_194\" opacity=\"0.5\" d=\"M241.905 118.315H275.644V123.073H241.905V118.315Z\" fill=\"white\"/>\n<path id=\"Vector_195\" d=\"M241.875 74.3496H275.625V75.2324H241.875V74.3496Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_196\" d=\"M295.646 73.3687H302.045V74.2514H295.646V73.3687Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_197\" opacity=\"0.7\" d=\"M295.663 68.6113H302.026V73.3684H295.663V68.6113Z\" fill=\"white\"/>\n<path id=\"Vector_198\" d=\"M295.646 50.0488H302.045V50.9316H295.646V50.0488Z\" fill=\"#003C57\"/>\n<path id=\"Vector_199\" opacity=\"0.7\" d=\"M295.663 45.292H302.026V50.0491H295.663V45.292Z\" fill=\"white\"/>\n<path id=\"Vector_200\" d=\"M295.646 97.7607H302.045V98.6435H295.646V97.7607Z\" fill=\"#003C57\"/>\n<path id=\"Vector_201\" opacity=\"0.7\" d=\"M295.663 93.0039H302.026V97.761H295.663V93.0039Z\" fill=\"white\"/>\n<path id=\"Vector_202\" d=\"M166.045 73.3687H172.444V74.2514H166.045V73.3687Z\" fill=\"#003C57\"/>\n<path id=\"Vector_203\" opacity=\"0.7\" d=\"M166.063 68.6113H172.426V73.3684H166.063V68.6113Z\" fill=\"white\"/>\n<path id=\"Vector_204\" d=\"M166.045 50.0488H172.444V50.9316H166.045V50.0488Z\" fill=\"#003C57\"/>\n<path id=\"Vector_205\" opacity=\"0.7\" d=\"M166.063 45.292H172.426V50.0491H166.063V45.292Z\" fill=\"white\"/>\n<path id=\"Vector_206\" d=\"M166.045 97.7607H172.444V98.6435H166.045V97.7607Z\" fill=\"#003C57\"/>\n<path id=\"Vector_207\" opacity=\"0.7\" d=\"M166.063 93.0039H172.426V97.761H166.063V93.0039Z\" fill=\"white\"/>\n<path id=\"Vector_208\" d=\"M241.875 50.4902H275.625V51.373H241.875V50.4902Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_209\" opacity=\"0.5\" d=\"M241.947 45.7334H275.655V50.4905H241.947V45.7334Z\" fill=\"white\"/>\n<path id=\"Vector_210\" d=\"M281.65 37.1753H288.884V46.5607H281.65V37.1753Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_211\" d=\"M281.65 60.6973H288.884V70.0827H281.65V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_212\" d=\"M281.65 84.2192H288.884V93.6047H281.65V84.2192Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_213\" d=\"M281.65 107.741H288.884V117.127H281.65V107.741Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_214\" d=\"M204.065 35.6611V50.8213H203.672H180.863H180.482V35.6611H204.065Z\" fill=\"white\"/>\n<g id=\"Vector_215\">\n<path d=\"M227.4 35.6611V118.622H227.243H217.959H217.808V35.6611H227.4Z\" fill=\"white\"/>\n<path d=\"M227.4 35.6611V118.622H227.243H217.959H217.808V35.6611H227.4Z\" fill=\"#6390B5\"/>\n</g>\n<path id=\"Vector_216\" d=\"M181.468 36.8442H203.001V49.4235H181.468V36.8442Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_217\" d=\"M203.908 59.5205V74.6807H203.515H180.7H180.325V59.5205H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_218\" d=\"M181.305 60.6973H202.838V73.1724H181.305V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_219\" d=\"M203.908 83.3179V98.4842H203.515H180.7H180.325V83.3179H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_220\" d=\"M181.305 84.501H202.838V97.0067H181.305V84.501Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_221\" d=\"M179.218 98.2021H212.969V99.0849H179.218V98.2021Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_222\" opacity=\"0.5\" d=\"M179.243 93.4453H212.981V98.2024H179.243V93.4453Z\" fill=\"white\"/>\n<path id=\"Vector_223\" d=\"M203.908 108.195V123.355H203.515H180.7H180.325V108.195H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_224\" d=\"M181.305 109.372H202.838V121.902H181.305V109.372Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_225\" d=\"M179.218 123.073H212.969V123.956H179.218V123.073Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_226\" opacity=\"0.5\" d=\"M179.243 118.315H212.981V123.073H179.243V118.315Z\" fill=\"white\"/>\n<path id=\"Vector_227\" d=\"M179.218 74.3496H212.969V75.2324H179.218V74.3496Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_228\" opacity=\"0.5\" d=\"M179.23 69.5923H212.969V74.3494H179.23V69.5923Z\" fill=\"white\"/>\n<path id=\"Vector_229\" d=\"M179.218 50.4902H212.969V51.373H179.218V50.4902Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_230\" d=\"M218.988 37.1753H226.222V46.5607H218.988V37.1753Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_231\" d=\"M218.988 60.6973H226.222V70.0827H218.988V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_232\" d=\"M218.988 84.2192H226.222V93.6047H218.988V84.2192Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_233\" d=\"M218.988 107.741H226.222V117.127H218.988V107.741Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_234\" opacity=\"0.5\" d=\"M241.892 69.5923H275.631V74.3494H241.892V69.5923Z\" fill=\"white\"/>\n<path id=\"Vector_235\" opacity=\"0.5\" d=\"M179.285 45.7334H212.993V50.4905H179.285V45.7334Z\" fill=\"white\"/>\n</g>\n<g id=\"House\" clip-path=\"url(#clip2_1849_10359)\">\n<path id=\"Vector_236\" d=\"M180.966 101.642L177.736 104.85L178.049 105.161L181.279 101.952L180.966 101.642Z\" fill=\"#003C57\"/>\n<path id=\"Vector_237\" d=\"M114.431 95.9507H101.17V104.616H114.431V95.9507Z\" fill=\"#206095\"/>\n<g id=\"Vector_238\">\n<path d=\"M184 102.09H177.77V95.9468V95.951L184 102.09Z\" fill=\"white\"/>\n<path d=\"M184 102.09H177.77V95.9468V95.951L184 102.09Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_239\" d=\"M101.17 95.9507H100V104.616H101.17V95.9507Z\" fill=\"#003C57\"/>\n<path id=\"Vector_240\" d=\"M178.126 102.085H177.773V106.036H178.126V102.085Z\" fill=\"#003C57\"/>\n<path id=\"Vector_241\" d=\"M177.773 74.5513H114.431V86.8248H177.773V74.5513Z\" fill=\"#206095\"/>\n<g id=\"Vector_242\">\n<path d=\"M161.935 69.1309H130.266V86.8504H161.935V69.1309Z\" fill=\"white\"/>\n<path d=\"M161.935 69.1309H130.266V86.8504H161.935V69.1309Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_243\" d=\"M146.173 69.1309H146.032V84.8858H146.173V69.1309Z\" fill=\"#003C57\"/>\n<g id=\"Vector_244\">\n<path d=\"M146.1 86.8248L161.934 71.0952L177.769 86.8248V125.804H146.1V86.8248Z\" fill=\"white\"/>\n<path d=\"M146.1 86.8248L161.934 71.0952L177.769 86.8248V125.804H146.1V86.8248Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_245\" d=\"M161.934 71.0955L177.769 86.8251V84.8605L161.934 69.1309L146.1 84.8605V86.8251L161.934 71.0955Z\" fill=\"#003C57\"/>\n<g id=\"Vector_246\">\n<path d=\"M114.431 86.8248L130.265 71.0952L146.1 86.8248V125.804H114.431V86.8248Z\" fill=\"white\"/>\n<path d=\"M114.431 86.8248L130.265 71.0952L146.1 86.8248V125.804H114.431V86.8248Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_247\" d=\"M130.265 71.0955L146.1 86.8251V84.8605L130.265 69.1309L114.431 84.8605V86.8251L130.265 71.0955Z\" fill=\"#003C57\"/>\n<path id=\"Vector_248\" d=\"M167.038 84.7041H162.215V92.026H167.038V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_249\" d=\"M161.731 84.7041H156.831V92.026H161.731V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_250\" d=\"M155.551 92.0218V92.7612H168.327V92.0218H167.532V84.2183H156.35V92.0218H155.555H155.551ZM156.831 84.6999H161.731V92.0218H156.831V84.6999ZM167.043 92.0218H162.22V84.6999H167.043V92.0218Z\" fill=\"#003C57\"/>\n<path id=\"Vector_251\" d=\"M135.369 84.7041H130.546V92.026H135.369V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_252\" d=\"M130.062 84.7041H125.162V92.026H130.062V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_253\" d=\"M123.877 92.0218V92.7612H136.653V92.0218H135.858V84.2183H124.677V92.0218H123.881H123.877ZM125.157 84.6999H130.057V92.0218H125.157V84.6999ZM135.369 92.0218H130.546V84.6999H135.369V92.0218Z\" fill=\"#003C57\"/>\n<g id=\"Vector_254\">\n<path d=\"M114.431 104.583H100.464V124.541H114.431V104.583Z\" fill=\"white\"/>\n<path d=\"M114.431 104.583H100.464V124.541H114.431V104.583Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_255\" d=\"M111.607 109.09H103.288V124.583H111.607V109.09Z\" fill=\"#003C57\"/>\n<g id=\"Vector_256\">\n<path d=\"M110.569 110.122H104.33V124.579H110.569V110.122Z\" fill=\"white\"/>\n<path d=\"M110.569 110.122H104.33V124.579H110.569V110.122Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_257\" d=\"M107.448 115.2C108.554 115.2 109.451 114.309 109.451 113.21C109.451 112.111 108.554 111.22 107.448 111.22C106.341 111.22 105.444 112.111 105.444 113.21C105.444 114.309 106.341 115.2 107.448 115.2Z\" fill=\"white\"/>\n<path id=\"Vector_258\" d=\"M178.479 74.5513H177.773V86.8248H178.479V74.5513Z\" fill=\"#003C57\"/>\n<path id=\"Vector_259\" d=\"M114.431 74.5513H113.725V86.8248H114.431V74.5513Z\" fill=\"#003C57\"/>\n<path id=\"Vector_260\" d=\"M149.817 62.751H146.228V67.3942H149.817V62.751Z\" fill=\"#003C57\"/>\n<path id=\"Vector_261\" d=\"M145.976 62.751H142.387V67.3942H145.976V62.751Z\" fill=\"#003C57\"/>\n<g id=\"Group\" opacity=\"0.75\">\n<g id=\"Vector_262\">\n<path d=\"M142.472 61.813H149.728C149.987 61.813 150.2 62.0242 150.2 62.282C150.2 62.5397 149.987 62.7509 149.728 62.7509H142.472C142.213 62.7509 142 62.5397 142 62.282C142 62.0242 142.213 61.813 142.472 61.813Z\" fill=\"white\"/>\n<path d=\"M142.472 61.813H149.728C149.987 61.813 150.2 62.0242 150.2 62.282C150.2 62.5397 149.987 62.7509 149.728 62.7509H142.472C142.213 62.7509 142 62.5397 142 62.282C142 62.0242 142.213 61.813 142.472 61.813Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n<path id=\"Vector_263\" d=\"M150.915 69.1263H141.29C141.29 68.1672 142.073 67.394 143.034 67.394H149.167C150.132 67.394 150.911 68.1714 150.911 69.1263H150.915Z\" fill=\"#003C57\"/>\n<g id=\"Vector_264\">\n<path d=\"M139.848 109.112H120.684L124.605 102.947H135.927L139.848 109.112Z\" fill=\"white\"/>\n<path d=\"M139.848 109.112H120.684L124.605 102.947H135.927L139.848 109.112Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<g id=\"Vector_265\">\n<path d=\"M171.522 109.112H152.353L156.274 102.947H167.6L171.522 109.112Z\" fill=\"white\"/>\n<path d=\"M171.522 109.112H152.353L156.274 102.947H167.6L171.522 109.112Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_266\" d=\"M158.264 109.297H154.023V117.625H158.264V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_267\" d=\"M153.263 117.313V117.938H161.905V117.313H161.335V109.112H153.837V117.313H153.263ZM160.952 117.313H154.211V109.488H160.952V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_268\" d=\"M169.816 109.297H165.418V117.625H169.816V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_269\" d=\"M161.935 117.313V117.938H170.577V117.313H170.007V109.112H162.509V117.313H161.935ZM169.624 117.313H162.883V109.488H169.624V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_270\" d=\"M165.418 109.297H158.298V117.625H165.418V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_271\" d=\"M157.541 117.313V117.938H166.183V117.313H165.614V109.112H158.115V117.313H157.541ZM165.231 117.313H158.489V109.488H165.231V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_272\" d=\"M126.629 109.297H122.389V117.625H126.629V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_273\" d=\"M121.627 117.313V117.938H130.269V117.313H129.699V109.112H122.201V117.313H121.627ZM129.317 117.313H122.575V109.488H129.317V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_274\" d=\"M138.147 109.297H133.749V117.625H138.147V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_275\" d=\"M130.266 117.313V117.938H138.908V117.313H138.338V109.112H130.84V117.313H130.266ZM137.955 117.313H131.214V109.488H137.955V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_276\" d=\"M133.749 109.297H126.629V117.625H133.749V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_277\" d=\"M125.868 117.313V117.938H134.511V117.313H133.941V109.112H126.442V117.313H125.868ZM133.558 117.313H126.817V109.488H133.558V117.313Z\" fill=\"#003C57\"/>\n<g id=\"Vector_278\">\n<path d=\"M170.577 117.938H165.418V125.8H170.577V117.938Z\" fill=\"white\"/>\n<path d=\"M170.577 117.938H165.418V125.8H170.577V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_279\">\n<path d=\"M138.903 117.938H133.744V125.8H138.903V117.938Z\" fill=\"white\"/>\n<path d=\"M138.903 117.938H133.744V125.8H138.903V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_280\">\n<path d=\"M126.786 117.938H121.627V125.8H126.786V117.938Z\" fill=\"white\"/>\n<path d=\"M126.786 117.938H121.627V125.8H126.786V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_281\">\n<path d=\"M133.749 117.938H126.786V125.8H133.749V117.938Z\" fill=\"white\"/>\n<path d=\"M133.749 117.938H126.786V125.8H133.749V117.938Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_282\">\n<path d=\"M158.476 117.946H153.317V125.809H158.476V117.946Z\" fill=\"white\"/>\n<path d=\"M158.476 117.946H153.317V125.809H158.476V117.946Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_283\">\n<path d=\"M165.422 117.946H158.485V125.809H165.422V117.946Z\" fill=\"white\"/>\n<path d=\"M165.422 117.946H158.485V125.809H165.422V117.946Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n</g>\n</g>\n<g id=\"Tree\">\n<g id=\"Vector_284\">\n<path d=\"M82.1082 62.9994C83.1949 66.5107 84.3987 69.9986 85.3383 73.5419C86.6742 78.5767 87.8142 83.6541 88.7453 87.5021C90.5137 80.9119 92.6082 73.103 94.7026 65.2941C95.003 65.309 95.3013 65.3261 95.6018 65.341C95.5975 66.6556 95.9853 68.0874 95.5293 69.2657C91.3319 80.147 90.5691 91.2968 91.954 102.638C92.0308 103.273 92.2864 103.893 92.5549 104.873C94.4853 102.981 96.1451 101.358 97.8027 99.7321C98.0605 99.9175 98.3184 100.105 98.5762 100.29C97.2743 101.98 96.128 103.787 94.6302 105.325C92.6827 107.326 92.4526 109.584 92.67 112.018C93.0194 115.938 93.3305 119.863 93.7076 123.781C94.057 127.412 93.9484 127.52 89.5549 126.945C89.1906 122.579 88.8241 118.175 88.4534 113.771C88.3809 112.917 88.1487 112.054 88.2318 111.214C89.133 102.05 82.6622 96.3572 76.0273 90.7727C74.5337 89.5156 72.7375 88.544 71.3398 87.1718C79.8646 88.8956 83.4441 95.7478 88.6579 101.015C87.3944 93.4871 86.3206 86.1512 84.8738 78.8729C84.1451 75.2039 82.6579 71.6584 81.6736 68.0214C81.2304 66.3893 81.1792 64.6741 80.9513 62.9951C81.3369 62.9951 81.7226 62.9951 82.1082 62.9972V62.9994Z\" fill=\"white\"/>\n<path d=\"M82.1082 62.9994C83.1949 66.5107 84.3987 69.9986 85.3383 73.5419C86.6742 78.5767 87.8142 83.6541 88.7453 87.5021C90.5137 80.9119 92.6082 73.103 94.7026 65.2941C95.003 65.309 95.3013 65.3261 95.6018 65.341C95.5975 66.6556 95.9853 68.0874 95.5293 69.2657C91.3319 80.147 90.5691 91.2968 91.954 102.638C92.0308 103.273 92.2864 103.893 92.5549 104.873C94.4853 102.981 96.1451 101.358 97.8027 99.7321C98.0605 99.9175 98.3184 100.105 98.5762 100.29C97.2743 101.98 96.128 103.787 94.6302 105.325C92.6827 107.326 92.4526 109.584 92.67 112.018C93.0194 115.938 93.3305 119.863 93.7076 123.781C94.057 127.412 93.9484 127.52 89.5549 126.945C89.1906 122.579 88.8241 118.175 88.4534 113.771C88.3809 112.917 88.1487 112.054 88.2318 111.214C89.133 102.05 82.6622 96.3572 76.0273 90.7727C74.5337 89.5156 72.7375 88.544 71.3398 87.1718C79.8646 88.8956 83.4441 95.7478 88.6579 101.015C87.3944 93.4871 86.3206 86.1512 84.8738 78.8729C84.1451 75.2039 82.6579 71.6584 81.6736 68.0214C81.2304 66.3893 81.1792 64.6741 80.9513 62.9951C81.3369 62.9951 81.7226 62.9951 82.1082 62.9972V62.9994Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_285\">\n<path d=\"M96.5969 84.7475C99.5586 82.9833 102.812 82.8895 107.039 85.7126C111.267 88.5379 112.159 90.415 112.413 91.6657C112.666 92.9164 114.588 93.7027 114.068 96.2041C113.549 98.7034 108.573 101.348 105.345 101.65C102.12 101.955 101.444 101.639 97.6133 101.004C93.7823 100.37 90.7056 99.4235 89.3036 96.2936C87.9017 93.1636 93.4627 86.6139 96.5991 84.7475H96.5969Z\" fill=\"white\"/>\n<path d=\"M96.5969 84.7475C99.5586 82.9833 102.812 82.8895 107.039 85.7126C111.267 88.5379 112.159 90.415 112.413 91.6657C112.666 92.9164 114.588 93.7027 114.068 96.2041C113.549 98.7034 108.573 101.348 105.345 101.65C102.12 101.955 101.444 101.639 97.6133 101.004C93.7823 100.37 90.7056 99.4235 89.3036 96.2936C87.9017 93.1636 93.4627 86.6139 96.5991 84.7475H96.5969Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_286\">\n<path d=\"M65.257 75.6538C68.6597 73.9919 72.4011 73.9024 77.2612 76.5722C82.1212 79.2398 83.1482 81.0125 83.4401 82.195C83.732 83.3754 85.9437 84.119 85.3449 86.4777C84.7484 88.8363 79.0296 91.3271 75.3223 91.6126C71.6128 91.8981 70.8372 91.5998 66.4331 90.9989C62.029 90.396 58.4921 89.5032 56.877 86.548C55.262 83.5927 61.6519 77.4159 65.257 75.656V75.6538Z\" fill=\"white\"/>\n<path d=\"M65.257 75.6538C68.6597 73.9919 72.4011 73.9024 77.2612 76.5722C82.1212 79.2398 83.1482 81.0125 83.4401 82.195C83.732 83.3754 85.9437 84.119 85.3449 86.4777C84.7484 88.8363 79.0296 91.3271 75.3223 91.6126C71.6128 91.8981 70.8372 91.5998 66.4331 90.9989C62.029 90.396 58.4921 89.5032 56.877 86.548C55.262 83.5927 61.6519 77.4159 65.257 75.656V75.6538Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_287\">\n<path d=\"M81.4753 52.7554C74.5101 56.3072 70.172 58.0373 68.3418 59.859C66.5115 61.6808 62.1799 66.9797 64.66 70.8043C67.1401 74.6288 67.9625 77.6203 74.9341 77.3071C81.9078 76.9939 84.7309 76.0053 90.3751 76.5188C96.0171 77.0322 101.005 74.5053 102.17 73.2887C103.336 72.072 106.837 66.4385 102.202 61.4443C97.5682 56.4521 87.6265 49.619 81.4753 52.7554Z\" fill=\"white\"/>\n<path d=\"M81.4753 52.7554C74.5101 56.3072 70.172 58.0373 68.3418 59.859C66.5115 61.6808 62.1799 66.9797 64.66 70.8043C67.1401 74.6288 67.9625 77.6203 74.9341 77.3071C81.9078 76.9939 84.7309 76.0053 90.3751 76.5188C96.0171 77.0322 101.005 74.5053 102.17 73.2887C103.336 72.072 106.837 66.4385 102.202 61.4443C97.5682 56.4521 87.6265 49.619 81.4753 52.7554Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_288\">\n<path d=\"M94.7559 54.5452C98.4888 51.6326 102.586 51.4706 107.909 56.1283C113.231 60.7859 114.354 63.8839 114.671 65.9486C114.989 68.0132 117.409 69.3086 116.753 73.4357C116.095 77.5607 109.824 81.9286 105.759 82.4336C101.693 82.9385 100.843 82.4208 96.0194 81.3746C91.1955 80.3285 87.3198 78.7709 85.5556 73.6083C83.7914 68.4436 90.8056 57.6304 94.758 54.5452H94.7559Z\" fill=\"white\"/>\n<path d=\"M94.7559 54.5452C98.4888 51.6326 102.586 51.4706 107.909 56.1283C113.231 60.7859 114.354 63.8839 114.671 65.9486C114.989 68.0132 117.409 69.3086 116.753 73.4357C116.095 77.5607 109.824 81.9286 105.759 82.4336C101.693 82.9385 100.843 82.4208 96.0194 81.3746C91.1955 80.3285 87.3198 78.7709 85.5556 73.6083C83.7914 68.4436 90.8056 57.6304 94.758 54.5452H94.7559Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_289\">\n<path d=\"M98.0287 128.111C96.3092 127.772 96.305 126.155 94.349 126.33C93.6097 126.396 93.158 126.671 92.4612 126.594C91.8945 126.532 91.1232 125.328 88.9733 125.887C87.3775 126.302 87.8142 127.131 86.7937 127.389C85.7049 127.666 84.6353 128.047 83.5572 128.384C83.5721 128.463 83.587 129.453 83.5998 129.53C88.6346 129.53 95.359 129.53 100.392 129.53C100.313 129.066 98.2737 128.158 98.0266 128.109L98.0287 128.111Z\" fill=\"white\"/>\n<path d=\"M98.0287 128.111C96.3092 127.772 96.305 126.155 94.349 126.33C93.6097 126.396 93.158 126.671 92.4612 126.594C91.8945 126.532 91.1232 125.328 88.9733 125.887C87.3775 126.302 87.8142 127.131 86.7937 127.389C85.7049 127.666 84.6353 128.047 83.5572 128.384C83.5721 128.463 83.587 129.453 83.5998 129.53C88.6346 129.53 95.359 129.53 100.392 129.53C100.313 129.066 98.2737 128.158 98.0266 128.109L98.0287 128.111Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n</g>\n<g id=\"Tree_2\">\n<g id=\"Vector_290\">\n<path d=\"M491.504 67.6656C490.493 70.9307 489.374 74.174 488.5 77.4688C487.258 82.1505 486.198 86.8719 485.332 90.45C483.688 84.322 481.74 77.0607 479.792 69.7994C479.513 69.8133 479.236 69.8291 478.956 69.843C478.96 71.0654 478.6 72.3968 479.024 73.4925C482.927 83.6107 483.636 93.9786 482.348 104.525C482.277 105.115 482.039 105.692 481.789 106.603C479.994 104.844 478.451 103.334 476.91 101.822C476.67 101.995 476.43 102.169 476.19 102.342C477.401 103.913 478.467 105.593 479.86 107.023C481.671 108.884 481.885 110.984 481.682 113.246C481.358 116.892 481.068 120.541 480.718 124.185C480.393 127.561 480.494 127.662 484.579 127.127C484.918 123.067 485.259 118.972 485.603 114.877C485.671 114.082 485.887 113.28 485.809 112.499C484.971 103.978 490.988 98.6841 497.158 93.4912C498.547 92.3223 500.217 91.4189 501.517 90.1429C493.59 91.7458 490.261 98.1175 485.413 103.015C486.588 96.0154 487.587 89.1939 488.932 82.4259C489.609 79.0142 490.992 75.7174 491.908 72.3354C492.32 70.8178 492.367 69.2229 492.579 67.6616C492.221 67.6616 491.862 67.6616 491.504 67.6636V67.6656Z\" fill=\"white\"/>\n<path d=\"M491.504 67.6656C490.493 70.9307 489.374 74.174 488.5 77.4688C487.258 82.1505 486.198 86.8719 485.332 90.45C483.688 84.322 481.74 77.0607 479.792 69.7994C479.513 69.8133 479.236 69.8291 478.956 69.843C478.96 71.0654 478.6 72.3968 479.024 73.4925C482.927 83.6107 483.636 93.9786 482.348 104.525C482.277 105.115 482.039 105.692 481.789 106.603C479.994 104.844 478.451 103.334 476.91 101.822C476.67 101.995 476.43 102.169 476.19 102.342C477.401 103.913 478.467 105.593 479.86 107.023C481.671 108.884 481.885 110.984 481.682 113.246C481.358 116.892 481.068 120.541 480.718 124.185C480.393 127.561 480.494 127.662 484.579 127.127C484.918 123.067 485.259 118.972 485.603 114.877C485.671 114.082 485.887 113.28 485.809 112.499C484.971 103.978 490.988 98.6841 497.158 93.4912C498.547 92.3223 500.217 91.4189 501.517 90.1429C493.59 91.7458 490.261 98.1175 485.413 103.015C486.588 96.0154 487.587 89.1939 488.932 82.4259C489.609 79.0142 490.992 75.7174 491.908 72.3354C492.32 70.8178 492.367 69.2229 492.579 67.6616C492.221 67.6616 491.862 67.6616 491.504 67.6636V67.6656Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_291\">\n<path d=\"M478.031 87.8881C475.277 86.2476 472.252 86.1604 468.321 88.7856C464.39 91.4127 463.56 93.1582 463.324 94.3212C463.088 95.4842 461.301 96.2153 461.785 98.5413C462.268 100.865 466.894 103.324 469.896 103.605C472.896 103.889 473.524 103.595 477.086 103.005C480.648 102.415 483.509 101.535 484.813 98.6245C486.117 95.714 480.945 89.6237 478.029 87.8881H478.031Z\" fill=\"white\"/>\n<path d=\"M478.031 87.8881C475.277 86.2476 472.252 86.1604 468.321 88.7856C464.39 91.4127 463.56 93.1582 463.324 94.3212C463.088 95.4842 461.301 96.2153 461.785 98.5413C462.268 100.865 466.894 103.324 469.896 103.605C472.896 103.889 473.524 103.595 477.086 103.005C480.648 102.415 483.509 101.535 484.813 98.6245C486.117 95.714 480.945 89.6237 478.029 87.8881H478.031Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_292\">\n<path d=\"M507.173 79.4324C504.009 77.887 500.53 77.8038 496.01 80.2863C491.491 82.7669 490.536 84.4153 490.265 85.5149C489.993 86.6125 487.937 87.3039 488.494 89.4972C489.048 91.6904 494.366 94.0065 497.813 94.272C501.263 94.5375 501.984 94.2601 506.079 93.7014C510.174 93.1407 513.463 92.3106 514.965 89.5626C516.467 86.8146 510.525 81.0709 507.173 79.4344V79.4324Z\" fill=\"white\"/>\n<path d=\"M507.173 79.4324C504.009 77.887 500.53 77.8038 496.01 80.2863C491.491 82.7669 490.536 84.4153 490.265 85.5149C489.993 86.6125 487.937 87.3039 488.494 89.4972C489.048 91.6904 494.366 94.0065 497.813 94.272C501.263 94.5375 501.984 94.2601 506.079 93.7014C510.174 93.1407 513.463 92.3106 514.965 89.5626C516.467 86.8146 510.525 81.0709 507.173 79.4344V79.4324Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_293\">\n<path d=\"M492.092 58.1396C498.569 61.4424 502.603 63.0512 504.305 64.7451C506.007 66.4391 510.034 71.3665 507.728 74.9229C505.422 78.4792 504.657 81.2609 498.175 80.9696C491.69 80.6784 489.065 79.7591 483.816 80.2366C478.57 80.7141 473.932 78.3643 472.848 77.233C471.764 76.1017 468.509 70.8633 472.818 66.2192C477.128 61.5771 486.372 55.2232 492.092 58.1396Z\" fill=\"white\"/>\n<path d=\"M492.092 58.1396C498.569 61.4424 502.603 63.0512 504.305 64.7451C506.007 66.4391 510.034 71.3665 507.728 74.9229C505.422 78.4792 504.657 81.2609 498.175 80.9696C491.69 80.6784 489.065 79.7591 483.816 80.2366C478.57 80.7141 473.932 78.3643 472.848 77.233C471.764 76.1017 468.509 70.8633 472.818 66.2192C477.128 61.5771 486.372 55.2232 492.092 58.1396Z\" fill=\"#206095\" fill-opacity=\"0.75\"/>\n</g>\n<g id=\"Vector_294\">\n<path d=\"M479.743 59.8037C476.271 57.0953 472.461 56.9447 467.512 61.2757C462.563 65.6068 461.519 68.4875 461.224 70.4073C460.929 72.3272 458.678 73.5318 459.288 77.3695C459.9 81.2052 465.731 85.2668 469.511 85.7363C473.292 86.2059 474.082 85.7244 478.568 84.7516C483.053 83.7788 486.657 82.3305 488.298 77.53C489.938 72.7274 483.416 62.6725 479.741 59.8037H479.743Z\" fill=\"white\"/>\n<path d=\"M479.743 59.8037C476.271 57.0953 472.461 56.9447 467.512 61.2757C462.563 65.6068 461.519 68.4875 461.224 70.4073C460.929 72.3272 458.678 73.5318 459.288 77.3695C459.9 81.2052 465.731 85.2668 469.511 85.7363C473.292 86.2059 474.082 85.7244 478.568 84.7516C483.053 83.7788 486.657 82.3305 488.298 77.53C489.938 72.7274 483.416 62.6725 479.741 59.8037H479.743Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_295\">\n<path d=\"M476.699 128.211C478.298 127.896 478.302 126.392 480.121 126.554C480.808 126.616 481.228 126.871 481.876 126.8C482.403 126.743 483.12 125.623 485.12 126.142C486.603 126.529 486.197 127.299 487.146 127.539C488.159 127.797 489.153 128.151 490.156 128.464C490.142 128.538 490.128 129.459 490.116 129.53C485.435 129.53 479.182 129.53 474.502 129.53C474.575 129.098 476.471 128.254 476.701 128.209L476.699 128.211Z\" fill=\"white\"/>\n<path d=\"M476.699 128.211C478.298 127.896 478.302 126.392 480.121 126.554C480.808 126.616 481.228 126.871 481.876 126.8C482.403 126.743 483.12 125.623 485.12 126.142C486.603 126.529 486.197 127.299 487.146 127.539C488.159 127.797 489.153 128.151 490.156 128.464C490.142 128.538 490.128 129.459 490.116 129.53C485.435 129.53 479.182 129.53 474.502 129.53C474.575 129.098 476.471 128.254 476.701 128.209L476.699 128.211Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n</g>\n<g id=\"Icons\">\n<g id=\"Group 382\">\n<path id=\"Vector 1\" d=\"M73.3799 142.105H627.844\" stroke=\"#206095\" stroke-width=\"3\" stroke-dasharray=\"6 6\"/>\n<g id=\"Ellipse 16\">\n<circle cx=\"65.6123\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"65.6123\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"65.6123\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 17\">\n<circle cx=\"207.807\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"207.807\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"207.807\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 18\">\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 19\">\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 20\">\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" fill=\"#FBC900\" fill-opacity=\"0.4\"/>\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n</g>\n<g id=\"Artwork 64x64_2\">\n<path id=\"Vector_296\" d=\"M479.913 124.463V159.748C479.913 160.108 480.056 160.453 480.311 160.708C480.565 160.962 480.91 161.105 481.27 161.105H505.699C506.059 161.105 506.404 160.962 506.658 160.708C506.913 160.453 507.056 160.108 507.056 159.748V131.248L498.913 123.105H481.27C480.91 123.105 480.565 123.248 480.311 123.503C480.056 123.757 479.913 124.103 479.913 124.463Z\" fill=\"#003C57\"/>\n<path id=\"Vector_297\" d=\"M500.27 131.248H507.056L498.913 123.105V129.891C498.913 130.251 499.056 130.596 499.311 130.851C499.565 131.105 499.91 131.248 500.27 131.248Z\" fill=\"#4D7789\"/>\n<path id=\"Vector_298\" d=\"M496.701 136.5C494.983 135.609 493.064 135.176 491.131 135.243C489.197 135.31 487.313 135.873 485.66 136.88C485.51 136.977 485.404 137.128 485.364 137.302C485.325 137.476 485.356 137.658 485.45 137.81C485.497 137.886 485.559 137.952 485.631 138.004C485.704 138.056 485.786 138.093 485.873 138.113C485.96 138.133 486.05 138.136 486.138 138.121C486.226 138.106 486.311 138.074 486.386 138.027C487.837 137.133 489.497 136.634 491.201 136.58C492.904 136.526 494.592 136.92 496.097 137.722C498.974 139.133 500.982 141.617 501.206 144.039C501.223 144.207 501.302 144.363 501.428 144.476C501.553 144.589 501.716 144.651 501.885 144.65H501.953C502.132 144.633 502.297 144.545 502.411 144.407C502.526 144.268 502.58 144.089 502.563 143.91C502.306 141.026 499.985 138.122 496.701 136.5Z\" fill=\"white\"/>\n<path id=\"Vector_299\" d=\"M489.631 134.173C494.028 133.495 498.086 134.852 500.766 137.953C500.83 138.026 500.91 138.085 500.999 138.124C501.088 138.164 501.184 138.184 501.282 138.184C501.411 138.182 501.537 138.144 501.645 138.074C501.753 138.003 501.839 137.903 501.893 137.786C501.946 137.668 501.965 137.538 501.947 137.41C501.929 137.282 501.875 137.162 501.791 137.064C498.798 133.596 494.292 132.056 489.414 132.836C489.324 132.85 489.239 132.881 489.162 132.928C489.085 132.975 489.018 133.037 488.965 133.11C488.911 133.182 488.873 133.265 488.852 133.352C488.83 133.44 488.826 133.531 488.84 133.62C488.854 133.709 488.885 133.795 488.932 133.872C488.979 133.949 489.04 134.016 489.113 134.069C489.186 134.122 489.269 134.161 489.356 134.182C489.444 134.203 489.535 134.207 489.624 134.194L489.631 134.173Z\" fill=\"white\"/>\n<path id=\"Vector_300\" d=\"M497.095 140.171C494.055 137.891 491.286 137.851 489.495 138.224C487.262 138.685 485.471 140.009 484.86 141.074C484.816 141.152 484.787 141.238 484.776 141.327C484.765 141.416 484.771 141.506 484.795 141.593C484.819 141.679 484.86 141.76 484.915 141.83C484.971 141.901 485.04 141.96 485.118 142.004C485.272 142.086 485.452 142.106 485.62 142.059C485.788 142.012 485.931 141.902 486.021 141.752C486.95 140.586 488.276 139.804 489.746 139.554C491.266 139.242 493.627 139.276 496.26 141.257C501.173 144.935 498.975 150.934 497.108 153.587C497.057 153.66 497.02 153.743 497.001 153.831C496.981 153.918 496.979 154.009 496.995 154.097C497.011 154.186 497.044 154.27 497.092 154.345C497.141 154.421 497.204 154.486 497.278 154.537C497.352 154.59 497.435 154.627 497.523 154.647C497.612 154.667 497.703 154.669 497.792 154.654C497.881 154.638 497.967 154.604 498.043 154.555C498.119 154.506 498.184 154.442 498.235 154.367C502.442 148.348 500.59 142.784 497.095 140.171Z\" fill=\"white\"/>\n<path id=\"Vector_301\" d=\"M497.488 145.776C497.256 144.906 496.839 144.096 496.265 143.401C495.691 142.707 494.974 142.144 494.163 141.753C493.163 141.232 492.043 140.987 490.917 141.043C489.791 141.099 488.701 141.454 487.757 142.071C486.851 142.804 486.074 143.682 485.457 144.67C485.301 144.907 485.131 145.133 484.948 145.349C484.84 145.483 484.787 145.654 484.8 145.826C484.813 145.997 484.89 146.158 485.017 146.275C485.144 146.391 485.311 146.455 485.483 146.453C485.656 146.452 485.821 146.384 485.946 146.265C486.175 145.993 486.388 145.708 486.583 145.41C487.108 144.548 487.776 143.782 488.558 143.144C489.296 142.675 490.144 142.408 491.017 142.371C491.89 142.334 492.758 142.528 493.532 142.933C494.182 143.231 494.758 143.669 495.219 144.216C495.68 144.763 496.015 145.404 496.199 146.095C496.64 147.914 496.056 151.673 492.643 154.591C492.575 154.649 492.52 154.72 492.479 154.799C492.439 154.879 492.415 154.965 492.408 155.054C492.401 155.143 492.411 155.232 492.439 155.317C492.467 155.402 492.511 155.48 492.568 155.548C492.632 155.622 492.711 155.682 492.8 155.723C492.889 155.764 492.986 155.785 493.084 155.785C493.246 155.785 493.402 155.728 493.525 155.623C497.128 152.521 498.112 148.341 497.488 145.776Z\" fill=\"white\"/>\n<path id=\"Vector_302\" d=\"M492.046 144.141C491.329 143.939 490.563 143.993 489.881 144.296C489.2 144.598 488.645 145.129 488.314 145.797C487.425 147.595 486.835 148.43 485.498 148.952C485.326 149.022 485.189 149.156 485.116 149.327C485.044 149.497 485.042 149.69 485.111 149.862C485.181 150.034 485.315 150.171 485.486 150.243C485.656 150.316 485.849 150.318 486.021 150.249C487.914 149.509 488.681 148.213 489.556 146.435C489.757 146.046 490.087 145.74 490.489 145.568C490.892 145.396 491.341 145.369 491.761 145.492C492.238 145.582 492.669 145.834 492.981 146.205C493.294 146.575 493.469 147.043 493.478 147.527C493.478 150.466 490.173 153.255 489.291 153.743C489.169 153.818 489.074 153.929 489.019 154.061C488.964 154.194 488.952 154.34 488.985 154.479C489.018 154.619 489.094 154.744 489.203 154.837C489.312 154.93 489.447 154.987 489.59 154.999C489.703 154.999 489.815 154.971 489.916 154.917C491.171 154.239 494.808 151.07 494.808 147.507C494.806 146.714 494.531 145.945 494.027 145.332C493.524 144.718 492.824 144.298 492.046 144.141Z\" fill=\"white\"/>\n<path id=\"Vector_303\" d=\"M491.978 147.975C492.029 147.807 492.013 147.626 491.933 147.469C491.853 147.313 491.716 147.194 491.55 147.136C491.383 147.079 491.202 147.089 491.042 147.163C490.883 147.237 490.759 147.37 490.696 147.534C490.006 149.344 488.627 150.808 486.862 151.605C486.715 151.664 486.593 151.771 486.517 151.91C486.44 152.048 486.415 152.209 486.445 152.364C486.475 152.52 486.558 152.66 486.68 152.76C486.802 152.861 486.955 152.916 487.113 152.915C487.199 152.915 487.284 152.899 487.364 152.868C488.42 152.401 489.373 151.727 490.165 150.887C490.957 150.047 491.574 149.057 491.978 147.975Z\" fill=\"white\"/>\n</g>\n<g id=\"Artwork 64x64_3\">\n<path id=\"Vector_304\" d=\"M634.346 155.445H634.159V153.695C634.159 153.463 634.07 153.24 633.911 153.076C633.752 152.912 633.537 152.82 633.312 152.82H619.748C619.523 152.82 619.308 152.912 619.149 153.076C618.99 153.24 618.901 153.463 618.901 153.695V155.445H618.714C618.404 155.444 618.097 155.506 617.811 155.628C617.524 155.75 617.264 155.929 617.045 156.155C616.826 156.381 616.653 156.65 616.535 156.945C616.417 157.241 616.356 157.558 616.357 157.878V158.945C616.357 159.177 616.447 159.4 616.606 159.564C616.765 159.728 616.98 159.82 617.205 159.82H635.855C636.08 159.82 636.295 159.728 636.454 159.564C636.613 159.4 636.703 159.177 636.703 158.945V157.878C636.704 157.558 636.644 157.241 636.526 156.945C636.407 156.65 636.234 156.381 636.015 156.155C635.796 155.929 635.536 155.75 635.249 155.628C634.963 155.506 634.656 155.444 634.346 155.445Z\" fill=\"#206095\"/>\n<path id=\"Vector_305\" d=\"M656.548 155.594L639.772 138.268C639.568 138.059 639.317 137.907 639.041 137.826C638.765 137.745 638.474 137.737 638.195 137.804L634.278 133.761L637.296 130.646C637.597 130.333 637.766 129.91 637.766 129.469C637.766 129.028 637.597 128.605 637.296 128.292L637.237 128.231L637.83 127.609C637.988 127.772 638.175 127.901 638.381 127.989C638.586 128.077 638.807 128.123 639.03 128.123C639.253 128.123 639.473 128.077 639.679 127.989C639.885 127.901 640.072 127.772 640.229 127.609L640.831 126.997C640.989 126.834 641.114 126.641 641.199 126.429C641.285 126.216 641.329 125.989 641.329 125.759C641.329 125.529 641.285 125.301 641.199 125.088C641.114 124.876 640.989 124.683 640.831 124.52L634.838 118.334C634.68 118.171 634.493 118.042 634.288 117.954C634.082 117.866 633.861 117.82 633.638 117.82C633.416 117.82 633.195 117.866 632.989 117.954C632.783 118.042 632.596 118.171 632.439 118.334L631.837 118.946C631.679 119.109 631.554 119.302 631.469 119.514C631.384 119.727 631.34 119.954 631.34 120.184C631.34 120.414 631.384 120.642 631.469 120.855C631.554 121.067 631.679 121.26 631.837 121.423L631.244 122.044L631.176 121.983C631.027 121.827 630.851 121.703 630.656 121.619C630.461 121.535 630.251 121.491 630.04 121.491C629.828 121.491 629.619 121.535 629.424 121.619C629.229 121.703 629.052 121.827 628.904 121.983L620.427 130.733C620.276 130.886 620.156 131.069 620.075 131.27C619.993 131.471 619.951 131.688 619.951 131.906C619.951 132.124 619.993 132.34 620.075 132.541C620.156 132.743 620.276 132.925 620.427 133.078L620.486 133.148L619.884 133.761C619.727 133.598 619.54 133.469 619.334 133.381C619.128 133.293 618.908 133.248 618.685 133.248C618.462 133.248 618.241 133.293 618.035 133.381C617.83 133.469 617.643 133.598 617.485 133.761L616.892 134.382C616.734 134.545 616.609 134.738 616.524 134.95C616.438 135.163 616.395 135.39 616.395 135.62C616.395 135.85 616.438 136.078 616.524 136.291C616.609 136.503 616.734 136.696 616.892 136.859L622.885 143.045C623.043 143.208 623.23 143.337 623.435 143.425C623.641 143.513 623.862 143.559 624.085 143.559C624.307 143.559 624.528 143.513 624.734 143.425C624.94 143.337 625.127 143.208 625.284 143.045L625.878 142.424C626.035 142.262 626.16 142.069 626.246 141.856C626.331 141.644 626.375 141.416 626.375 141.186C626.375 140.956 626.331 140.728 626.246 140.516C626.16 140.303 626.035 140.11 625.878 139.948L626.479 139.335L626.539 139.396C626.842 139.707 627.252 139.881 627.679 139.881C628.106 139.881 628.516 139.707 628.819 139.396L631.913 136.202L635.787 140.201C635.696 140.505 635.687 140.828 635.76 141.136C635.833 141.444 635.986 141.726 636.203 141.952L652.988 159.269C653.145 159.432 653.332 159.561 653.538 159.649C653.744 159.737 653.964 159.782 654.187 159.782C654.41 159.782 654.631 159.737 654.836 159.649C655.042 159.561 655.229 159.432 655.387 159.269L656.548 158.07C656.706 157.908 656.831 157.715 656.916 157.502C657.001 157.29 657.045 157.062 657.045 156.832C657.045 156.602 657.001 156.374 656.916 156.162C656.831 155.949 656.706 155.756 656.548 155.594Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Artwork 64x64_4\">\n<g id=\"Group 384\">\n<path id=\"Vector_306\" d=\"M52.8686 119.407C50.5757 119.407 48.3342 120.087 46.4277 121.361C44.5213 122.634 43.0353 124.445 42.1579 126.563C41.2804 128.682 41.0508 131.013 41.4982 133.262C41.9455 135.51 43.0496 137.576 44.671 139.198C46.2923 140.819 48.358 141.923 50.6069 142.37C52.8557 142.818 55.1867 142.588 57.3051 141.711C59.4235 140.833 61.2341 139.347 62.5079 137.441C63.7818 135.534 64.4618 133.293 64.4618 131C64.4618 127.925 63.2403 124.976 61.0662 122.802C58.892 120.628 55.9433 119.407 52.8686 119.407Z\" fill=\"white\"/>\n<path id=\"Vector_307\" d=\"M52.8437 137.128C53.7583 137.128 54.4998 136.386 54.4998 135.472C54.4998 134.557 53.7583 133.815 52.8437 133.815C51.929 133.815 51.1875 134.557 51.1875 135.472C51.1875 136.386 51.929 137.128 52.8437 137.128Z\" fill=\"#206095\"/>\n<path id=\"Vector_308\" d=\"M54.3588 131.973C54.3524 132.079 54.306 132.178 54.2291 132.25C54.1521 132.322 54.0504 132.362 53.9447 132.362H51.7917C51.6861 132.362 51.5844 132.322 51.5074 132.25C51.4304 132.178 51.384 132.079 51.3777 131.973L50.9636 125.29C50.9602 125.234 50.9684 125.177 50.9877 125.124C51.007 125.071 51.037 125.023 51.0758 124.981C51.1146 124.94 51.1614 124.908 51.2133 124.885C51.2652 124.863 51.3212 124.851 51.3777 124.852H54.3422C54.3987 124.851 54.4547 124.863 54.5066 124.885C54.5585 124.908 54.6053 124.94 54.6441 124.981C54.6829 125.023 54.7129 125.071 54.7322 125.124C54.7515 125.177 54.7597 125.234 54.7563 125.29L54.3588 131.973Z\" fill=\"#206095\"/>\n</g>\n<path id=\"Vector_309\" d=\"M70.9162 146.415H65.3567C61.6706 146.415 58.1354 147.879 55.5289 150.485C52.9223 153.092 51.458 156.627 51.458 160.313H84.815C84.815 158.488 84.4555 156.681 83.757 154.994C83.0585 153.308 82.0347 151.776 80.7441 150.485C79.4535 149.195 77.9213 148.171 76.235 147.473C74.5488 146.774 72.7414 146.415 70.9162 146.415Z\" fill=\"#003C57\"/>\n<path id=\"Vector_310\" d=\"M68.1361 143.635C72.7418 143.635 76.4754 139.901 76.4754 135.295C76.4754 130.69 72.7418 126.956 68.1361 126.956C63.5305 126.956 59.7969 130.69 59.7969 135.295C59.7969 139.901 63.5305 143.635 68.1361 143.635Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Artwork 64x64_5\">\n<path id=\"Vector_311\" d=\"M194.282 124.463V159.748C194.282 160.108 194.425 160.453 194.68 160.708C194.934 160.962 195.279 161.105 195.639 161.105H220.068C220.428 161.105 220.773 160.962 221.028 160.708C221.282 160.453 221.425 160.108 221.425 159.748V131.248L213.282 123.105H195.639C195.279 123.105 194.934 123.248 194.68 123.503C194.425 123.757 194.282 124.103 194.282 124.463Z\" fill=\"#003C57\"/>\n<path id=\"Vector_312\" d=\"M214.639 131.248H221.425L213.282 123.105V129.891C213.282 130.251 213.425 130.596 213.68 130.851C213.934 131.105 214.279 131.248 214.639 131.248Z\" fill=\"#4D7789\"/>\n<path id=\"Vector_313\" d=\"M213.283 151.266H199.711C199.441 151.266 199.182 151.159 198.991 150.968C198.801 150.777 198.693 150.518 198.693 150.248C198.693 149.978 198.801 149.719 198.991 149.529C199.182 149.338 199.441 149.23 199.711 149.23H213.283C213.553 149.23 213.811 149.338 214.002 149.529C214.193 149.719 214.301 149.978 214.301 150.248C214.301 150.518 214.193 150.777 214.002 150.968C213.811 151.159 213.553 151.266 213.283 151.266Z\" fill=\"white\"/>\n<path id=\"Vector_314\" d=\"M213.283 146.516H199.711C199.441 146.516 199.182 146.409 198.991 146.218C198.801 146.027 198.693 145.768 198.693 145.498C198.693 145.228 198.801 144.969 198.991 144.779C199.182 144.588 199.441 144.48 199.711 144.48H213.283C213.553 144.48 213.811 144.588 214.002 144.779C214.193 144.969 214.301 145.228 214.301 145.498C214.301 145.768 214.193 146.027 214.002 146.218C213.811 146.409 213.553 146.516 213.283 146.516Z\" fill=\"white\"/>\n<path id=\"Vector_315\" d=\"M213.283 141.766H199.711C199.441 141.766 199.182 141.659 198.991 141.468C198.801 141.277 198.693 141.018 198.693 140.748C198.693 140.478 198.801 140.219 198.991 140.029C199.182 139.838 199.441 139.73 199.711 139.73H213.283C213.553 139.73 213.811 139.838 214.002 140.029C214.193 140.219 214.301 140.478 214.301 140.748C214.301 141.018 214.193 141.277 214.002 141.468C213.811 141.659 213.553 141.766 213.283 141.766Z\" fill=\"white\"/>\n<path id=\"Vector_316\" d=\"M207.854 137.016H199.711C199.441 137.016 199.182 136.909 198.991 136.718C198.801 136.527 198.693 136.268 198.693 135.998C198.693 135.728 198.801 135.469 198.991 135.279C199.182 135.088 199.441 134.98 199.711 134.98H207.854C208.124 134.98 208.383 135.088 208.574 135.279C208.765 135.469 208.872 135.728 208.872 135.998C208.872 136.268 208.765 136.527 208.574 136.718C208.383 136.909 208.124 137.016 207.854 137.016Z\" fill=\"white\"/>\n<g id=\"Vector_317\">\n<path d=\"M226.406 140.864L215.067 152.203C214.98 152.284 214.876 152.345 214.761 152.379L212.604 152.963C212.546 152.978 212.486 152.977 212.429 152.962C212.372 152.946 212.32 152.916 212.278 152.874C212.236 152.832 212.206 152.78 212.191 152.723C212.175 152.666 212.175 152.606 212.19 152.549L212.766 150.364C212.794 150.247 212.855 150.14 212.943 150.058L224.248 138.713C224.534 138.427 224.922 138.266 225.327 138.266C225.731 138.266 226.119 138.427 226.406 138.713C226.69 138.999 226.849 139.385 226.849 139.788C226.849 140.191 226.69 140.578 226.406 140.864Z\" fill=\"white\"/>\n<path d=\"M226.406 140.864L215.067 152.203C214.98 152.284 214.876 152.345 214.761 152.379L212.604 152.963C212.546 152.978 212.486 152.977 212.429 152.962C212.372 152.946 212.32 152.916 212.278 152.874C212.236 152.832 212.206 152.78 212.191 152.723C212.175 152.666 212.175 152.606 212.19 152.549L212.766 150.364C212.794 150.247 212.855 150.14 212.943 150.058L224.248 138.713C224.534 138.427 224.922 138.266 225.327 138.266C225.731 138.266 226.119 138.427 226.406 138.713C226.69 138.999 226.849 139.385 226.849 139.788C226.849 140.191 226.69 140.578 226.406 140.864Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n<g id=\"Group 386\">\n<g id=\"Artwork 64x64_6\">\n<path id=\"Vector_318\" d=\"M370 133.813V153.813C370 154.874 369.579 155.891 368.828 156.641C368.078 157.392 367.061 157.813 366 157.813H334C332.939 157.813 331.922 157.392 331.172 156.641C330.421 155.891 330 154.874 330 153.813V129.813C330 128.752 330.421 127.735 331.172 126.985C331.922 126.234 332.939 125.813 334 125.813H344.333C344.863 125.81 345.388 125.912 345.878 126.114C346.367 126.315 346.812 126.612 347.187 126.986L350 129.813H366C367.061 129.813 368.078 130.234 368.828 130.985C369.579 131.735 370 132.752 370 133.813Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Group 385\">\n<path id=\"Vector_319\" d=\"M346.333 145.229H343.667C341.899 145.229 340.203 145.932 338.953 147.182C337.702 148.432 337 150.128 337 151.896H353C353 151.021 352.828 150.154 352.493 149.345C352.157 148.536 351.666 147.801 351.047 147.182C350.428 146.563 349.693 146.072 348.885 145.737C348.076 145.402 347.209 145.229 346.333 145.229Z\" fill=\"white\"/>\n<path id=\"Vector_320\" d=\"M345 143.896C347.209 143.896 349 142.105 349 139.896C349 137.687 347.209 135.896 345 135.896C342.791 135.896 341 137.687 341 139.896C341 142.105 342.791 143.896 345 143.896Z\" fill=\"white\"/>\n</g>\n<g id=\"Union\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M373.813 143.561C374.027 143.363 374.027 143.024 373.813 142.826L366.365 135.947C366.045 135.651 365.526 135.878 365.526 136.314V139.72H359C358.448 139.72 358 140.167 358 140.72V145.667C358 146.219 358.448 146.667 359 146.667H365.526V150.073C365.526 150.509 366.045 150.736 366.365 150.44L373.813 143.561Z\" fill=\"white\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M373.813 143.561C374.027 143.363 374.027 143.024 373.813 142.826L366.365 135.947C366.045 135.651 365.526 135.878 365.526 136.314V139.72H359C358.448 139.72 358 140.167 358 140.72V145.667C358 146.219 358.448 146.667 359 146.667H365.526V150.073C365.526 150.509 366.045 150.736 366.365 150.44L373.813 143.561Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n</g>\n</g>\n</g>\n<g id=\"Title\">\n <rect width=\"700\" height=\"90\" transform=\"translate(0 176.813)\" fill=\"white\"/>\n <rect width=\"700\" height=\"90\" transform=\"translate(0 176.813)\" fill=\"#206095\" fill-opacity=\"0.1\"/>\n <text id=\"Understanding domestic abuse data through the criminal justice system\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"22\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"20\" y=\"212.748\">Understanding domestic abuse data through the</tspan><tspan x=\"20\" y=\"243.548\">criminal justice system</tspan></text>\n </g>\n<g id=\"Chart bit\">\n<g id=\"Completed outcomes of domestic abuse-related crimes England and Wales, year ending March 2022\">\n<text fill=\"black\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"20\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"20\" y=\"307.572\">Completed outcomes of domestic abuse-related crimes </tspan></text>\n<text fill=\"black\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"16\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"20\" y=\"336.372\">England and Wales, year ending March 2023</tspan></text>\n</g>\n<g id=\"Overall chart\">\n<line id=\"Line 113\" y1=\"-0.75\" x2=\"275.34\" y2=\"-0.75\" transform=\"matrix(-1.42329e-06 1 -1 2.02943e-09 113.566 367.313)\" stroke=\"#B3B3B3\" stroke-width=\"1.5\"/>\n<line id=\"Line 115\" x1=\"644.278\" y1=\"367.313\" x2=\"644.278\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 117\" x1=\"467.439\" y1=\"367.313\" x2=\"467.439\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<line id=\"Line 119\" x1=\"290.6\" y1=\"367.313\" x2=\"290.6\" y2=\"642.653\" stroke=\"#D9D9D9\"/>\n<path id=\"Vector_321\" d=\"M421.797 380.647L114.481 380.647L114.481 482.921L421.797 482.921L421.797 380.647Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_322\" d=\"M399.364 529.032L114.481 529.032L114.481 632.446L399.364 632.446L399.364 529.032Z\" fill=\"#206095\"/>\n<text id=\"0\" transform=\"translate(88.7695 645.136)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"21.7058\" y=\"14.4312\">0</tspan></text>\n<text id=\"25,000\" transform=\"translate(254.411 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"13.9439\" y=\"14.4312\">25,000</tspan></text>\n<text id=\"50,000\" transform=\"translate(431.25 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"13.9439\" y=\"14.4312\">50,000</tspan></text>\n<text id=\"75,000\" transform=\"translate(608.089 645.71)\" fill=\"#707071\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"13.9439\" y=\"14.4312\">75,000</tspan></text>\n<g id=\"Horizontal label\">\n<text id=\"Suspects charged\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"32.71\" y=\"426.479\">Decisions </tspan><tspan x=\"33.0928\" y=\"443.279\">to charge</tspan></text>\n<text id=\"Offenders convicted\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" letter-spacing=\"0em\"><tspan x=\"33.1748\" y=\"576.479\">Offenders </tspan><tspan x=\"36.5381\" y=\"593.279\">convicted</tspan></text>\n</g>\n<g id=\"Vector_323\">\n<mask id=\"path-365-inside-1_1849_10359\" fill=\"white\">\n<path d=\"M486.146 529.032L399.289 529.032L399.289 632.446L486.146 632.446L486.146 529.032Z\"/>\n</mask>\n<path d=\"M486.146 529.032L399.289 529.032L399.289 632.446L486.146 632.446L486.146 529.032Z\" fill=\"white\"/>\n<path d=\"M486.146 529.032L399.289 529.032L399.289 632.446L486.146 632.446L486.146 529.032Z\" fill=\"#206095\" fill-opacity=\"0.1\"/>\n<path d=\"M486.146 529.032L399.289 529.032L399.289 632.446L486.146 632.446L486.146 529.032Z\" stroke=\"#206095\" stroke-width=\"4\" stroke-linecap=\"square\" stroke-dasharray=\"4 7\" mask=\"url(#path-365-inside-1_1849_10359)\"/>\n</g>\n<g id=\"Convictions 40,647\">\n<text transform=\"translate(425.326 478.602)\" fill=\"#206095\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"0\" y=\"32.4312\">39,198</tspan></text>\n<text transform=\"translate(425.326 478.602)\" fill=\"#206095\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"0\" y=\"14.4312\">Convictions </tspan></text>\n</g>\n<g id=\"Non-convictions 12,560\">\n<text transform=\"translate(524.234 541.055)\" fill=\"#206095\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"600\" letter-spacing=\"0em\"><tspan x=\"0\" y=\"32.4312\">12,090</tspan></text>\n<text transform=\"translate(524.234 541.055)\" fill=\"#206095\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"14\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"0\" y=\"14.4312\">Non-convictions </tspan></text>\n</g>\n<path id=\"Vector 7\" d=\"M422.493 499.149C422.899 499.086 423.183 498.7 423.129 498.285C423.075 497.87 422.703 497.584 422.297 497.646L422.493 499.149ZM384.979 526.937C385.079 527.342 385.482 527.581 385.878 527.472L392.335 525.684C392.731 525.575 392.971 525.157 392.87 524.752C392.77 524.347 392.367 524.108 391.971 524.218L386.232 525.806L384.778 519.939C384.678 519.534 384.275 519.295 383.879 519.404C383.483 519.514 383.243 519.931 383.343 520.336L384.979 526.937ZM422.297 497.646C405.733 500.194 392.069 514.166 385.06 526.36L386.332 527.116C393.222 515.129 406.558 501.6 422.493 499.149L422.297 497.646Z\" fill=\"#707071\"/>\n<path id=\"Vector 8\" d=\"M519.851 558.624C520.244 558.501 520.47 558.076 520.356 557.674C520.243 557.273 519.832 557.048 519.44 557.171L519.851 558.624ZM489.283 579.543C489.321 579.96 489.682 580.261 490.089 580.215L496.721 579.472C497.128 579.426 497.427 579.051 497.389 578.634C497.351 578.217 496.991 577.915 496.584 577.961L490.689 578.622L490.141 572.58C490.103 572.162 489.742 571.861 489.335 571.907C488.928 571.953 488.629 572.328 488.667 572.745L489.283 579.543ZM519.44 557.171C506.511 561.227 498.143 568.087 489.451 578.984L490.59 579.936C499.147 569.208 507.279 562.568 519.851 558.624L519.44 557.171Z\" fill=\"#707071\"/>\n</g>\n\n </g>\n \n \n </svg>\n <p class=\"source\">\n Source: Crown Prosecution Service (CPS) </p> \n <div class=\"commentary\">\n <b>What were the outcomes? </b>\n<br><br>\n The Crown Prosecution Service (CPS) recorded 51,288 domestic-abuse related prosecutions in the last year. Of these, 39,198 resulted in convictions and 12,090 resulted in non-convictions. \n <br><br>\n The percentage of prosecutions leading to a conviction in the last year was 76.4%, remaining the same as the previous year. \n <br><br>\n Of the cases that did not result in a conviction: \n <br><ul>\n <li>\n 5,835 were a result of complainant-related issues (including victim retractions, victim non-attendance at trial or where the evidence of the complainant does not support the case) </li><br>\n <li>\n 1,932 were because of acquittals </li></ul>\n \n <br><br>\n <button class=\"button\" type=\"button\" on:click={()=>goTo.set(\"Seven\")}>Next ▶</button>\n <button class=\"button grey\" type=\"button\" on:click={()=>goTo.set(\"Five\")}>Back</button></div>\n <style>\n .button{\n background-color:rgb(15, 130, 67);\n width:97px;\n height:40px;\n color:white;\n font-weight:bold;\n font-size:16px;\n border:none;\n }\n .grey{\n background-color:#666;\n }\n .source{\n color:grey\n }\n .commentary{\n font-weight:400;\n font-size:18px;\n background-color:rgba(32, 96, 149,0.1);\n padding:20px;\n }\n </style>","<script>\n export let goTo=null\n $: console.log(\"goto\",$goTo)\n </script>\n\n<svg width=\"700\" viewBox=\"0 0 700 255\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<g id=\"Interactive\">\n<g id=\"Illustration headers\">\n<g id=\"Illustration\">\n<g id=\"Illo\">\n<g id=\"Ellipse 1\">\n<path d=\"M700 120.569C500.303 120.569 178.452 120.569 0 120.569C0 101.933 125.256 2.20508 350 2.20508C570.463 2.20508 700 101.933 700 120.569Z\" fill=\"white\"/>\n<path d=\"M700 120.569C500.303 120.569 178.452 120.569 0 120.569C0 101.933 125.256 2.20508 350 2.20508C570.463 2.20508 700 101.933 700 120.569Z\" fill=\"#206095\" fill-opacity=\"0.05\"/>\n</g>\n<g id=\"Background buildings\">\n<path id=\"Vector\" d=\"M487.962 87.3798L480.562 81.3013C480.059 80.8885 479.371 80.8885 478.868 81.3013L471.468 87.3798V145.715H487.962V87.3798Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_2\" d=\"M460.083 91.2017H471.74V145.027H460.083V91.2017Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_3\" d=\"M462.434 84.4312H467.694V93.195H462.434V84.4312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_4\" d=\"M487.938 98.2393H500.166V142.841H487.938V98.2393Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_5\" d=\"M500.162 88.8657H511.25V145.255H500.162V88.8657Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_6\" d=\"M510.948 80.605H519.633V144.567H510.948V80.605Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_7\" d=\"M532.47 91.6416H542.983V143.132H532.47V91.6416Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_8\" d=\"M542.983 97.7549H552.081V141.098H542.983V97.7549Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_9\" d=\"M532.47 101.923L519.495 95.8364V141.122H532.47V101.923Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_2\">\n<path id=\"Vector_10\" d=\"M179.123 68.9979L169.784 59.9251C169.147 59.3082 168.282 59.3082 167.645 59.9251L158.307 68.9979V156.036H179.119V68.9979H179.123Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_11\" d=\"M143.934 155.001H158.649V74.6915H143.934V155.001Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_12\" d=\"M146.908 77.6709H153.545V64.5964H146.908V77.6709Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_13\" d=\"M179.092 151.752H194.523V74.4409H179.092V151.752Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_14\" d=\"M194.511 155.348H208.506V71.2133H194.511V155.348Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_15\" d=\"M217.437 154.32H228.396V58.891H217.437V154.32Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_16\" d=\"M65.4652 143.936H108.021V97.7379H65.4652V143.936Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_17\" d=\"M125.683 142.646H140.152V94.0413H125.683V142.646Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_18\" d=\"M140.153 144.301H152.672V93.9401H140.153V144.301Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_19\" d=\"M136.688 98.7855L107.828 91.7114V144.328H136.688V98.7855Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_20\" d=\"M179.123 48.2058L169.784 43.3925C169.147 43.0651 168.282 43.0651 167.645 43.3925L158.307 48.2058V94.3816H179.119V48.2058H179.123Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_21\" d=\"M143.934 93.833H158.649V51.2267H143.934V93.833Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_22\" d=\"M146.908 52.8071H153.545V45.8708H146.908V52.8071Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_23\" d=\"M179.092 92.1094H194.523V56.8041H179.092V92.1094Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_24\" d=\"M208.506 118.488H233.453V41.7437H208.506V118.488Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_25\" d=\"M79.4433 111.917H108.021V77.9923H79.4433V111.917Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_26\" d=\"M125.683 135.839H146.908L146.908 61.4923H125.683L125.683 135.839Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_27\" d=\"M140.153 139.21H152.672L152.672 53.1164H140.153V139.21Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_28\" d=\"M125.684 72.2887L107.828 64.8125V120.42H125.684V72.2887Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_3\">\n<path id=\"Vector_29\" d=\"M261.115 61.1229L270.454 51.2292C271.091 50.5564 271.956 50.5564 272.593 51.2292L281.932 61.1229V156.036H261.12V61.1229H261.115Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_30\" d=\"M296.305 154.907H281.59V67.3315H296.305V154.907Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_31\" d=\"M293.331 70.5806H286.693V56.3232H293.331V70.5806Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_32\" d=\"M261.147 151.364H245.716V67.0583H261.147V151.364Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_33\" d=\"M245.728 155.286H231.733V63.5389H245.728V155.286Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_34\" d=\"M222.801 154.165H211.842V50.1015H222.801V154.165Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_35\" d=\"M374.774 138.215H332.218V92.4634H374.774V138.215Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_36\" d=\"M314.556 141.435H300.087V88.4327H314.556V141.435Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_37\" d=\"M300.086 143.239H287.567V88.322H300.086V143.239Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_38\" d=\"M303.552 93.6058L332.411 85.8916V143.269H303.552V93.6058Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_39\" d=\"M261.115 38.4497L270.454 33.2008C271.091 32.8439 271.956 32.8439 272.593 33.2008L281.932 38.4497V88.8034H261.12V38.4497H261.115Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_40\" d=\"M296.305 88.2051H281.59V41.7438H296.305V88.2051Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_41\" d=\"M293.331 43.4673H286.693V35.9034H293.331V43.4673Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_42\" d=\"M261.147 86.3252H245.716V47.8256H261.147V86.3252Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_43\" d=\"M231.734 143.132H206.786L206.786 31.4027H231.734L231.734 143.132Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_44\" d=\"M360.796 107.925H332.218V70.9312H360.796V107.925Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_45\" d=\"M314.556 134.012H293.331V52.9384H314.556V134.012Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_46\" d=\"M300.086 137.688H287.567V43.8044H300.086V137.688Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_47\" d=\"M314.555 64.7117L332.411 56.5591V117.197H314.555V64.7117Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_4\">\n<path id=\"Vector_48\" d=\"M396.321 43.9472L406.673 33.1907C407.38 32.4592 408.339 32.4592 409.045 33.1907L419.397 43.9472V147.137H396.326V43.9472H396.321Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_49\" d=\"M435.325 48.7314H419.013V147.137H435.325V48.7314Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_50\" d=\"M432.033 38.0664H424.676V51.8795H432.033V38.0664Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_51\" d=\"M396.356 59.8315H379.25V147.137H396.356V59.8315Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_52\" d=\"M379.26 45.0566H363.746V147.137H379.26V45.0566Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_53\" d=\"M364.165 32.0312H352.016V147.137H364.165V32.0312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_54\" d=\"M334.058 68.2846L352.211 56.0444V147.137H334.058V68.2846Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_55\" d=\"M455.562 65.9717H439.522V147.137H455.562V65.9717Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_56\" d=\"M439.522 78.8105H425.645V147.137H439.522V78.8105Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_5\">\n<path id=\"Vector_57\" d=\"M406.322 26.2429L415.45 19.0517C416.071 18.5602 416.92 18.5602 417.541 19.0517L426.669 26.2429V95.2607H406.322V26.2429Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_58\" d=\"M440.71 30.7603H426.329V94.4428H440.71V30.7603Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_59\" d=\"M437.81 22.7515H431.32V33.1195H437.81V22.7515Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_60\" d=\"M406.352 39.0913H391.268V91.8632H406.352V39.0913Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_61\" d=\"M391.272 28H377.595V94.7178H391.272V28Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_62\" d=\"M377.968 18.2261H367.254V93.9004H377.968V18.2261Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_63\" d=\"M351.419 31.2827H338.449V92.2012H351.419V31.2827Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_64\" d=\"M338.449 38.5176H327.226V89.8033H338.449V38.5176Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_65\" d=\"M351.418 43.4476L367.424 36.2485V89.8264H351.418V43.4476Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Background buildings_6\">\n<path id=\"Vector_66\" d=\"M484.96 43.5227L474.547 36.3315C473.839 35.84 472.87 35.84 472.162 36.3315L461.749 43.5227V112.541H484.96V43.5227Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_67\" d=\"M445.731 48.04H462.137V149.435H445.731V48.04Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_68\" d=\"M449.04 40.0312H456.443V50.3993H449.04V40.0312Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_69\" d=\"M484.321 48.8135H502.529V108.813H484.321V48.8135Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_70\" d=\"M502.129 45.2803H517.732V111.998H502.129V45.2803Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_71\" d=\"M517.307 35.5059H529.529V111.18H517.307V35.5059Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_72\" d=\"M547.595 48.5625H562.391V109.481H547.595V48.5625Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_73\" d=\"M562.391 55.7974H575.194V107.083H562.391V55.7974Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_74\" d=\"M547.57 46.2191L529.362 36.8135V106.813H547.57V46.2191Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_75\" d=\"M589.381 82.1595L578.968 76.8057C578.259 76.4398 577.291 76.4398 576.583 76.8057L566.17 82.1595V133.543H589.381V82.1595Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_76\" d=\"M588.742 88.873H606.95V133.543H588.742V88.873Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_77\" d=\"M606.55 83.8721H622.153V133.544H606.55V83.8721Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_78\" d=\"M621.728 77.2036H633.95V133.543H621.728V77.2036Z\" fill=\"#E2E2E3\"/>\n<path id=\"Vector_79\" d=\"M651.991 88.4307L633.783 81.4282V133.543H651.991V88.4307Z\" fill=\"#E2E2E3\"/>\n</g>\n<g id=\"Ground\">\n<g id=\"Vector_80\">\n<path d=\"M700 177.896H0V135.896H700V177.896Z\" fill=\"white\"/>\n<path d=\"M700 177.896H0V135.896H700V177.896Z\" fill=\"#206095\" fill-opacity=\"0.1\"/>\n</g>\n<g id=\"Vector_81\">\n<path d=\"M700 135.896H0V120.569H700V135.896Z\" fill=\"white\"/>\n<path d=\"M700 135.896H0V120.569H700V135.896Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n</g>\n<g id=\"Bush\">\n<g id=\"Vector_82\">\n<path d=\"M47.7677 112.919C52.1162 115.137 54.8252 116.218 55.9654 117.354C57.1096 118.491 59.8107 121.801 58.2655 124.188C56.7164 126.574 56.2052 128.442 51.8528 128.245C47.5004 128.049 45.735 127.432 42.2122 127.754C38.6893 128.076 35.5754 126.496 34.848 125.737C34.1206 124.978 31.9346 121.459 34.8283 118.345C37.7221 115.227 43.9264 110.961 47.7677 112.919Z\" fill=\"white\"/>\n<path d=\"M47.7677 112.919C52.1162 115.137 54.8252 116.218 55.9654 117.354C57.1096 118.491 59.8107 121.801 58.2655 124.188C56.7164 126.574 56.2052 128.442 51.8528 128.245C47.5004 128.049 45.735 127.432 42.2122 127.754C38.6893 128.076 35.5754 126.496 34.848 125.737C34.1206 124.978 31.9346 121.459 34.8283 118.345C37.7221 115.227 43.9264 110.961 47.7677 112.919Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_83\">\n<path d=\"M40.9342 110.729C37.9342 109.058 34.6394 108.972 30.3578 111.645C26.0761 114.323 25.1718 116.1 24.9123 117.283C24.6567 118.467 22.7066 119.214 23.2334 121.581C23.7603 123.948 28.8008 126.448 32.0681 126.735C35.3354 127.022 36.0195 126.723 39.9001 126.122C43.7808 125.52 46.8986 124.624 48.318 121.659C49.7413 118.695 44.1071 112.494 40.9302 110.729H40.9342Z\" fill=\"white\"/>\n<path d=\"M40.9342 110.729C37.9342 109.058 34.6394 108.972 30.3578 111.645C26.0761 114.323 25.1718 116.1 24.9123 117.283C24.6567 118.467 22.7066 119.214 23.2334 121.581C23.7603 123.948 28.8008 126.448 32.0681 126.735C35.3354 127.022 36.0195 126.723 39.9001 126.122C43.7808 125.52 46.8986 124.624 48.318 121.659C49.7413 118.695 44.1071 112.494 40.9302 110.729H40.9342Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_84\">\n<path d=\"M58.2204 114.583C64.9712 116.792 69.1782 117.87 70.9553 119.006C72.7285 120.142 76.9237 123.445 74.5175 125.835C72.1073 128.226 71.3092 130.093 64.5466 129.905C57.784 129.716 55.0435 129.103 49.5705 129.429C44.0975 129.755 39.2615 128.182 38.1331 127.424C37.0047 126.665 33.6116 123.15 38.1134 120.032C42.6153 116.91 52.2638 112.636 58.2282 114.59L58.2204 114.583Z\" fill=\"white\"/>\n<path d=\"M58.2204 114.583C64.9712 116.792 69.1782 117.87 70.9553 119.006C72.7285 120.142 76.9237 123.445 74.5175 125.835C72.1073 128.226 71.3092 130.093 64.5466 129.905C57.784 129.716 55.0435 129.103 49.5705 129.429C44.0975 129.755 39.2615 128.182 38.1331 127.424C37.0047 126.665 33.6116 123.15 38.1134 120.032C42.6153 116.91 52.2638 112.636 58.2282 114.59L58.2204 114.583Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_85\">\n<path d=\"M21.0747 124.149C19.3487 123.3 17.4536 123.248 14.9844 124.597C12.5153 125.946 11.9924 126.846 11.843 127.444C11.6935 128.041 10.5691 128.419 10.8718 129.614C11.1706 130.813 14.0683 132.087 15.9516 132.236C17.8349 132.386 18.2281 132.236 20.4613 131.938C22.6946 131.639 24.4914 131.187 25.317 129.689C26.1427 128.191 22.9069 125.045 21.0826 124.145L21.0747 124.149Z\" fill=\"white\"/>\n<path d=\"M21.0747 124.149C19.3487 123.3 17.4536 123.248 14.9844 124.597C12.5153 125.946 11.9924 126.846 11.843 127.444C11.6935 128.041 10.5691 128.419 10.8718 129.614C11.1706 130.813 14.0683 132.087 15.9516 132.236C17.8349 132.386 18.2281 132.236 20.4613 131.938C22.6946 131.639 24.4914 131.187 25.317 129.689C26.1427 128.191 22.9069 125.045 21.0826 124.145L21.0747 124.149Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_86\">\n<path d=\"M14.1039 125.642C12.7356 124.97 11.2337 124.931 9.27567 126C7.31766 127.07 6.90482 127.781 6.78294 128.257C6.66499 128.733 5.77641 129.028 6.01232 129.979C6.24822 130.931 8.54829 131.937 10.0384 132.059C11.5286 132.177 11.8431 132.059 13.6124 131.823C15.3856 131.587 16.8089 131.229 17.4616 130.042C18.1142 128.855 15.5507 126.362 14.1039 125.65V125.642Z\" fill=\"white\"/>\n<path d=\"M14.1039 125.642C12.7356 124.97 11.2337 124.931 9.27567 126C7.31766 127.07 6.90482 127.781 6.78294 128.257C6.66499 128.733 5.77641 129.028 6.01232 129.979C6.24822 130.931 8.54829 131.937 10.0384 132.059C11.5286 132.177 11.8431 132.059 13.6124 131.823C15.3856 131.587 16.8089 131.229 17.4616 130.042C18.1142 128.855 15.5507 126.362 14.1039 125.65V125.642Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_87\">\n<path d=\"M18.5981 121.176C16.8721 120.327 14.977 120.276 12.5079 121.624C10.0387 122.973 9.5158 123.873 9.36639 124.471C9.21699 125.069 8.09251 125.446 8.39525 126.641C8.69406 127.841 8.91424 129.626 10.7975 129.775C12.6809 129.924 15.7515 129.264 17.9848 128.965C20.218 128.666 22.0148 128.214 22.8405 126.716C23.6622 125.218 20.4303 122.073 18.606 121.172L18.5981 121.176Z\" fill=\"white\"/>\n<path d=\"M18.5981 121.176C16.8721 120.327 14.977 120.276 12.5079 121.624C10.0387 122.973 9.5158 123.873 9.36639 124.471C9.21699 125.069 8.09251 125.446 8.39525 126.641C8.69406 127.841 8.91424 129.626 10.7975 129.775C12.6809 129.924 15.7515 129.264 17.9848 128.965C20.218 128.666 22.0148 128.214 22.8405 126.716C23.6622 125.218 20.4303 122.073 18.606 121.172L18.5981 121.176Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Police station\" clip-path=\"url(#clip0_1989_41087)\">\n<g id=\"Vector_88\">\n<path d=\"M476.484 47.2856H307.517V127.819H476.484V47.2856Z\" fill=\"white\"/>\n<path d=\"M476.484 47.2856H307.517V127.819H476.484V47.2856Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<path id=\"Vector_89\" d=\"M477 45.1685H307V47.2905H477V45.1685Z\" fill=\"#003C57\"/>\n<g id=\"Vector_90\">\n<path d=\"M414.975 39.9351H369.025V129.808H414.975V39.9351Z\" fill=\"white\"/>\n<path d=\"M414.975 39.9351H369.025V129.808H414.975V39.9351Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_91\" d=\"M415.614 37.813H368.391V39.935H415.614V37.813Z\" fill=\"#003C57\"/>\n<path id=\"Vector_92\" d=\"M363.839 52.5688H311.744V61.372H363.839V52.5688Z\" fill=\"white\"/>\n<path id=\"Vector_93\" d=\"M363.839 66.1133H311.744V75.2069H363.839V66.1133Z\" fill=\"white\"/>\n<path id=\"Vector_94\" d=\"M363.957 79.7314H311.744V88.5346H363.957V79.7314Z\" fill=\"white\"/>\n<path id=\"Vector_95\" d=\"M351.913 93.3105H311.744V102.114H351.913V93.3105Z\" fill=\"white\"/>\n<path id=\"Vector_96\" d=\"M351.913 106.274H311.744V115.077H351.913V106.274Z\" fill=\"white\"/>\n<path id=\"Vector_97\" d=\"M420.206 61.377L472.301 61.377V52.5738L420.206 52.5738V61.377Z\" fill=\"white\"/>\n<path id=\"Vector_98\" d=\"M420.206 75.2119H472.301V66.1183H420.206V75.2119Z\" fill=\"white\"/>\n<path id=\"Vector_99\" d=\"M420.082 88.5347H472.295V79.7315H420.082V88.5347Z\" fill=\"white\"/>\n<path id=\"Vector_100\" d=\"M432.126 102.119H472.295V93.3155H432.126V102.119Z\" fill=\"white\"/>\n<path id=\"Vector_101\" d=\"M432.126 115.072H472.295V106.269H432.126V115.072Z\" fill=\"white\"/>\n<g id=\"Vector_102\">\n<path d=\"M426.72 97.978H357.276V129.808H426.72V97.978Z\" fill=\"white\"/>\n<path d=\"M426.72 97.978H357.276V129.808H426.72V97.978Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<path id=\"Vector_103\" d=\"M428.341 95.856H355.658V97.978H428.341V95.856Z\" fill=\"#003C57\"/>\n<path id=\"Vector_104\" d=\"M374.044 111.493H376.399C381.359 111.493 385.385 115.525 385.385 120.493V129.813H365.053V120.493C365.053 115.525 369.079 111.493 374.039 111.493H374.044Z\" fill=\"white\"/>\n<g id=\"Vector_105\">\n<path d=\"M375.367 111.443H375.082V129.537H375.367V111.443Z\" fill=\"white\"/>\n<path d=\"M375.367 111.443H375.082V129.537H375.367V111.443Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_106\">\n<path d=\"M374.418 120.734C374.418 120.601 374.31 120.493 374.177 120.493C374.044 120.493 373.937 120.601 373.937 120.734V122.162C373.937 122.295 374.044 122.403 374.177 122.403C374.31 122.403 374.418 122.295 374.418 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M374.418 120.734C374.418 120.601 374.31 120.493 374.177 120.493C374.044 120.493 373.937 120.601 373.937 120.734V122.162C373.937 122.295 374.044 122.403 374.177 122.403C374.31 122.403 374.418 122.295 374.418 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_107\">\n<path d=\"M376.541 120.734C376.541 120.601 376.433 120.493 376.3 120.493C376.167 120.493 376.06 120.601 376.06 120.734V122.162C376.06 122.295 376.167 122.403 376.3 122.403C376.433 122.403 376.541 122.295 376.541 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M376.541 120.734C376.541 120.601 376.433 120.493 376.3 120.493C376.167 120.493 376.06 120.601 376.06 120.734V122.162C376.06 122.295 376.167 122.403 376.3 122.403C376.433 122.403 376.541 122.295 376.541 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_108\" d=\"M406.436 111.493H408.79C413.751 111.493 417.777 115.525 417.777 120.493V129.813H397.444V120.493C397.444 115.525 401.471 111.493 406.431 111.493H406.436Z\" fill=\"white\"/>\n<g id=\"Vector_109\">\n<path d=\"M407.758 111.443H407.473V129.537H407.758V111.443Z\" fill=\"white\"/>\n<path d=\"M407.758 111.443H407.473V129.537H407.758V111.443Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_110\">\n<path d=\"M406.81 120.734C406.81 120.601 406.702 120.493 406.569 120.493C406.436 120.493 406.328 120.601 406.328 120.734V122.162C406.328 122.295 406.436 122.403 406.569 122.403C406.702 122.403 406.81 122.295 406.81 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M406.81 120.734C406.81 120.601 406.702 120.493 406.569 120.493C406.436 120.493 406.328 120.601 406.328 120.734V122.162C406.328 122.295 406.436 122.403 406.569 122.403C406.702 122.403 406.81 122.295 406.81 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_111\">\n<path d=\"M408.938 120.734C408.938 120.601 408.83 120.493 408.697 120.493C408.564 120.493 408.456 120.601 408.456 120.734V122.162C408.456 122.295 408.564 122.403 408.697 122.403C408.83 122.403 408.938 122.295 408.938 122.162V120.734Z\" fill=\"white\"/>\n<path d=\"M408.938 120.734C408.938 120.601 408.83 120.493 408.697 120.493C408.564 120.493 408.456 120.601 408.456 120.734V122.162C408.456 122.295 408.564 122.403 408.697 122.403C408.83 122.403 408.938 122.295 408.938 122.162V120.734Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_112\">\n<path d=\"M418.292 100.285H365.707V109.528H418.292V100.285Z\" fill=\"white\"/>\n<path d=\"M418.292 100.285H365.707V109.528H418.292V100.285Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_113\">\n<path d=\"M411.283 71.5879H372.525V80.5289H411.283V71.5879Z\" fill=\"white\"/>\n<path d=\"M411.283 71.5879H372.525V80.5289H411.283V71.5879Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_114\">\n<path d=\"M411.283 84.8418H372.525V93.7828H411.283V84.8418Z\" fill=\"white\"/>\n<path d=\"M411.283 84.8418H372.525V93.7828H411.283V84.8418Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_115\">\n<path d=\"M411.283 58.3291H372.525V67.2701H411.283V58.3291Z\" fill=\"white\"/>\n<path d=\"M411.283 58.3291H372.525V67.2701H411.283V58.3291Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_116\">\n<path d=\"M411.283 45.1685H372.525V54.1095H411.283V45.1685Z\" fill=\"white\"/>\n<path d=\"M411.283 45.1685H372.525V54.1095H411.283V45.1685Z\" fill=\"#206095\"/>\n</g>\n<g id=\"Vector_117\">\n<path d=\"M392.327 41.5942H391.668V95.8558H392.327V41.5942Z\" fill=\"white\"/>\n<path d=\"M392.327 41.5942H391.668V95.8558H392.327V41.5942Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Group 39\">\n<g id=\"Vector_118\">\n<path d=\"M324.619 50.7915H323.96V118.642H324.619V50.7915Z\" fill=\"white\"/>\n<path d=\"M324.619 50.7915H323.96V118.642H324.619V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_119\">\n<path d=\"M339.082 50.7915H338.423V118.642H339.082V50.7915Z\" fill=\"white\"/>\n<path d=\"M339.082 50.7915H338.423V118.642H339.082V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_120\">\n<path d=\"M352.276 50.7915H351.617V118.642H352.276V50.7915Z\" fill=\"white\"/>\n<path d=\"M352.276 50.7915H351.617V118.642H352.276V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_121\">\n<path d=\"M432.456 50.7915H431.797V118.642H432.456V50.7915Z\" fill=\"white\"/>\n<path d=\"M432.456 50.7915H431.797V118.642H432.456V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_122\">\n<path d=\"M446.919 50.7915H446.26V118.642H446.919V50.7915Z\" fill=\"white\"/>\n<path d=\"M446.919 50.7915H446.26V118.642H446.919V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_123\">\n<path d=\"M460.114 50.7915H459.455V118.642H460.114V50.7915Z\" fill=\"white\"/>\n<path d=\"M460.114 50.7915H459.455V118.642H460.114V50.7915Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n</g>\n<g id=\"POLICE\">\n<path d=\"M379.974 104.813H380.382C380.763 104.813 381.048 104.737 381.238 104.586C381.427 104.432 381.522 104.209 381.522 103.918C381.522 103.624 381.442 103.406 381.282 103.266C381.124 103.126 380.877 103.056 380.538 103.056H379.974V104.813ZM382.773 103.873C382.773 104.51 382.576 104.997 382.182 105.335C381.79 105.672 381.231 105.841 380.506 105.841H379.974V107.946H378.734V102.027H380.602C381.311 102.027 381.85 102.182 382.218 102.493C382.588 102.8 382.773 103.261 382.773 103.873Z\" fill=\"white\"/>\n<path d=\"M389.184 104.979C389.184 105.958 388.944 106.711 388.464 107.238C387.984 107.764 387.296 108.027 386.4 108.027C385.505 108.027 384.817 107.764 384.337 107.238C383.857 106.711 383.617 105.956 383.617 104.97C383.617 103.985 383.857 103.234 384.337 102.715C384.82 102.195 385.51 101.934 386.408 101.934C387.307 101.934 387.993 102.196 388.468 102.719C388.945 103.243 389.184 103.996 389.184 104.979ZM384.917 104.979C384.917 105.64 385.041 106.138 385.289 106.472C385.537 106.807 385.907 106.974 386.4 106.974C387.39 106.974 387.884 106.309 387.884 104.979C387.884 103.645 387.392 102.979 386.408 102.979C385.915 102.979 385.543 103.147 385.293 103.485C385.042 103.819 384.917 104.317 384.917 104.979Z\" fill=\"white\"/>\n<path d=\"M390.396 107.946V102.027H391.635V106.91H394.007V107.946H390.396Z\" fill=\"white\"/>\n<path d=\"M395.026 107.946V102.027H396.266V107.946H395.026Z\" fill=\"white\"/>\n<path d=\"M400.221 102.987C399.755 102.987 399.393 103.165 399.137 103.521C398.881 103.875 398.753 104.369 398.753 105.003C398.753 106.323 399.243 106.983 400.221 106.983C400.632 106.983 401.129 106.879 401.713 106.671V107.723C401.233 107.926 400.697 108.027 400.105 108.027C399.255 108.027 398.604 107.767 398.154 107.246C397.703 106.722 397.478 105.972 397.478 104.995C397.478 104.379 397.588 103.841 397.81 103.379C398.031 102.915 398.348 102.56 398.761 102.315C399.177 102.066 399.664 101.942 400.221 101.942C400.789 101.942 401.359 102.081 401.933 102.359L401.533 103.379C401.314 103.274 401.094 103.182 400.873 103.104C400.652 103.026 400.434 102.987 400.221 102.987Z\" fill=\"white\"/>\n<path d=\"M406.328 107.946H402.96V102.027H406.328V103.056H404.2V104.355H406.18V105.383H404.2V106.91H406.328V107.946Z\" fill=\"white\"/>\n</g>\n</g>\n<g id=\"Courts\">\n<g id=\"Building\">\n<g id=\"Rectangle 1\">\n<rect x=\"491.832\" y=\"68.813\" width=\"150\" height=\"56\" fill=\"white\"/>\n<rect x=\"491.832\" y=\"68.813\" width=\"150\" height=\"56\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Rectangle 3\">\n<rect x=\"488.832\" y=\"120.942\" width=\"154.713\" height=\"6.67484\" fill=\"white\"/>\n<rect x=\"488.832\" y=\"120.942\" width=\"154.713\" height=\"6.67484\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 2\">\n<path d=\"M497.297 57.813H636.368L641.832 68.813H491.832L497.297 57.813Z\" fill=\"white\"/>\n<path d=\"M497.297 57.813H636.368L641.832 68.813H491.832L497.297 57.813Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<g id=\"Vector_124\">\n<path d=\"M551.731 70.3457H545.785V70.984C546.059 71.0995 546.253 71.367 546.253 71.6831V71.7317C546.253 72.1512 545.913 72.4916 545.494 72.4916H545.39C545.615 72.5463 545.785 72.747 545.785 72.9901V73.0205C545.785 73.3062 545.554 73.5312 545.275 73.5312H544.861V113.896H545.275C545.56 113.896 545.785 114.127 545.785 114.407V114.437C545.785 114.681 545.615 114.881 545.39 114.936H545.415C545.877 114.936 546.253 115.313 546.253 115.775V118.583H551.269V115.775C551.269 115.313 551.646 114.936 552.108 114.936H552.132C551.907 114.881 551.737 114.681 551.737 114.437V114.407C551.737 114.121 551.968 113.896 552.247 113.896H552.661V73.5372H552.247C551.962 73.5372 551.737 73.3062 551.737 73.0266V72.9962C551.737 72.753 551.907 72.5524 552.132 72.4977H552.029C551.609 72.4977 551.269 72.1573 551.269 71.7378V71.6892C551.269 71.3731 551.463 71.1056 551.737 70.9901V70.3518M569.81 70.3518H563.865V70.9901C564.138 71.1056 564.333 71.3731 564.333 71.6892V71.7378C564.333 72.1573 563.992 72.4977 563.573 72.4977H563.469C563.694 72.5524 563.865 72.753 563.865 72.9962V73.0266C563.865 73.3123 563.634 73.5372 563.354 73.5372H562.941V113.903H563.354C563.64 113.903 563.865 114.134 563.865 114.413V114.444C563.865 114.687 563.694 114.887 563.469 114.942H563.494C563.956 114.942 564.333 115.319 564.333 115.781V118.59H569.348V115.781C569.348 115.319 569.725 114.942 570.187 114.942H570.211C569.986 114.887 569.816 114.687 569.816 114.444V114.413C569.816 114.127 570.047 113.903 570.327 113.903H570.74V73.5372H570.327C570.041 73.5372 569.816 73.3062 569.816 73.0266V72.9962C569.816 72.753 569.986 72.5524 570.211 72.4977H570.108C569.688 72.4977 569.348 72.1573 569.348 71.7378V71.6892C569.348 71.3731 569.543 71.1056 569.816 70.9901V70.3518M587.889 70.3518H581.944V70.9901C582.217 71.1056 582.412 71.3731 582.412 71.6892V71.7378C582.412 72.1573 582.072 72.4977 581.652 72.4977H581.549C581.774 72.5524 581.944 72.753 581.944 72.9962V73.0266C581.944 73.3123 581.713 73.5372 581.433 73.5372H581.02V113.903H581.433C581.719 113.903 581.944 114.134 581.944 114.413V114.444C581.944 114.687 581.774 114.887 581.549 114.942H581.573C582.035 114.942 582.412 115.319 582.412 115.781V118.59H587.427V115.781C587.427 115.319 587.804 114.942 588.266 114.942H588.29C588.066 114.887 587.895 114.687 587.895 114.444V114.413C587.895 114.127 588.126 113.903 588.406 113.903H588.819V73.5372H588.406C588.12 73.5372 587.895 73.3062 587.895 73.0266V72.9962C587.895 72.753 588.066 72.5524 588.29 72.4977H588.187C587.768 72.4977 587.427 72.1573 587.427 71.7378V71.6892C587.427 71.3731 587.622 71.1056 587.895 70.9901V70.3518\" fill=\"white\"/>\n<path d=\"M551.731 70.3457H545.785V70.984C546.059 71.0995 546.253 71.367 546.253 71.6831V71.7317C546.253 72.1512 545.913 72.4916 545.494 72.4916H545.39C545.615 72.5463 545.785 72.747 545.785 72.9901V73.0205C545.785 73.3062 545.554 73.5312 545.275 73.5312H544.861V113.896H545.275C545.56 113.896 545.785 114.127 545.785 114.407V114.437C545.785 114.681 545.615 114.881 545.39 114.936H545.415C545.877 114.936 546.253 115.313 546.253 115.775V118.583H551.269V115.775C551.269 115.313 551.646 114.936 552.108 114.936H552.132C551.907 114.881 551.737 114.681 551.737 114.437V114.407C551.737 114.121 551.968 113.896 552.247 113.896H552.661V73.5372H552.247C551.962 73.5372 551.737 73.3062 551.737 73.0266V72.9962C551.737 72.753 551.907 72.5524 552.132 72.4977H552.029C551.609 72.4977 551.269 72.1573 551.269 71.7378V71.6892C551.269 71.3731 551.463 71.1056 551.737 70.9901V70.3518M569.81 70.3518H563.865V70.9901C564.138 71.1056 564.333 71.3731 564.333 71.6892V71.7378C564.333 72.1573 563.992 72.4977 563.573 72.4977H563.469C563.694 72.5524 563.865 72.753 563.865 72.9962V73.0266C563.865 73.3123 563.634 73.5372 563.354 73.5372H562.941V113.903H563.354C563.64 113.903 563.865 114.134 563.865 114.413V114.444C563.865 114.687 563.694 114.887 563.469 114.942H563.494C563.956 114.942 564.333 115.319 564.333 115.781V118.59H569.348V115.781C569.348 115.319 569.725 114.942 570.187 114.942H570.211C569.986 114.887 569.816 114.687 569.816 114.444V114.413C569.816 114.127 570.047 113.903 570.327 113.903H570.74V73.5372H570.327C570.041 73.5372 569.816 73.3062 569.816 73.0266V72.9962C569.816 72.753 569.986 72.5524 570.211 72.4977H570.108C569.688 72.4977 569.348 72.1573 569.348 71.7378V71.6892C569.348 71.3731 569.543 71.1056 569.816 70.9901V70.3518M587.889 70.3518H581.944V70.9901C582.217 71.1056 582.412 71.3731 582.412 71.6892V71.7378C582.412 72.1573 582.072 72.4977 581.652 72.4977H581.549C581.774 72.5524 581.944 72.753 581.944 72.9962V73.0266C581.944 73.3123 581.713 73.5372 581.433 73.5372H581.02V113.903H581.433C581.719 113.903 581.944 114.134 581.944 114.413V114.444C581.944 114.687 581.774 114.887 581.549 114.942H581.573C582.035 114.942 582.412 115.319 582.412 115.781V118.59H587.427V115.781C587.427 115.319 587.804 114.942 588.266 114.942H588.29C588.066 114.887 587.895 114.687 587.895 114.444V114.413C587.895 114.127 588.126 113.903 588.406 113.903H588.819V73.5372H588.406C588.12 73.5372 587.895 73.3062 587.895 73.0266V72.9962C587.895 72.753 588.066 72.5524 588.29 72.4977H588.187C587.768 72.4977 587.427 72.1573 587.427 71.7378V71.6892C587.427 71.3731 587.622 71.1056 587.895 70.9901V70.3518\" fill=\"#206095\" fill-opacity=\"0.55\"/>\n</g>\n<path id=\"Vector_125\" d=\"M545.779 70.3457H533.657V70.984C533.748 70.9475 533.846 70.9293 533.949 70.9293H545.493C545.597 70.9293 545.694 70.9475 545.785 70.984V70.3457\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_126\" d=\"M599.974 66.3882H566.886H533.657V67.7377H599.974V66.3882Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_127\" d=\"M563.858 70.3457H551.73V70.984C551.822 70.9475 551.919 70.9293 552.022 70.9293H563.566C563.67 70.9293 563.767 70.9475 563.858 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_128\" d=\"M581.932 70.3457H569.804V70.984C569.895 70.9475 569.992 70.9293 570.096 70.9293H581.64C581.743 70.9293 581.84 70.9475 581.932 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<path id=\"Vector_129\" d=\"M600.005 70.3457H587.877V70.984C587.968 70.9475 588.065 70.9293 588.169 70.9293H599.713C599.816 70.9293 599.914 70.9475 600.005 70.984V70.3457Z\" fill=\"#A6BFD5\"/>\n<g id=\"Vector_130\">\n<path d=\"M599.075 73.5371H588.808V113.902H599.075V73.5371Z\" fill=\"white\"/>\n<path d=\"M599.075 73.5371H588.808V113.902H599.075V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_131\">\n<path d=\"M599.713 70.9292H588.169C588.066 70.9292 587.968 70.9474 587.877 70.9839C587.604 71.0994 587.409 71.3669 587.409 71.683V71.7316C587.409 72.1511 587.75 72.4915 588.169 72.4915H588.272C588.309 72.4855 588.351 72.4794 588.394 72.4794H599.494C599.537 72.4794 599.573 72.4794 599.616 72.4915H599.719C600.139 72.4915 600.479 72.1511 600.479 71.7316V71.683C600.479 71.3669 600.285 71.0994 600.011 70.9839C599.92 70.9474 599.823 70.9292 599.719 70.9292\" fill=\"white\"/>\n<path d=\"M599.713 70.9292H588.169C588.066 70.9292 587.968 70.9474 587.877 70.9839C587.604 71.0994 587.409 71.3669 587.409 71.683V71.7316C587.409 72.1511 587.75 72.4915 588.169 72.4915H588.272C588.309 72.4855 588.351 72.4794 588.394 72.4794H599.494C599.537 72.4794 599.573 72.4794 599.616 72.4915H599.719C600.139 72.4915 600.479 72.1511 600.479 71.7316V71.683C600.479 71.3669 600.285 71.0994 600.011 70.9839C599.92 70.9474 599.823 70.9292 599.719 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_132\">\n<path d=\"M599.488 72.4795H588.388C588.345 72.4795 588.309 72.4795 588.266 72.4917C588.041 72.5464 587.871 72.747 587.871 72.9901V73.0205C587.871 73.3063 588.102 73.5312 588.382 73.5312H599.482C599.768 73.5312 599.993 73.3002 599.993 73.0205V72.9901C599.993 72.747 599.823 72.5464 599.598 72.4917C599.561 72.4856 599.519 72.4795 599.476 72.4795\" fill=\"white\"/>\n<path d=\"M599.488 72.4795H588.388C588.345 72.4795 588.309 72.4795 588.266 72.4917C588.041 72.5464 587.871 72.747 587.871 72.9901V73.0205C587.871 73.3063 588.102 73.5312 588.382 73.5312H599.482C599.768 73.5312 599.993 73.3002 599.993 73.0205V72.9901C599.993 72.747 599.823 72.5464 599.598 72.4917C599.561 72.4856 599.519 72.4795 599.476 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_133\">\n<path d=\"M599.634 114.942H599.61C599.574 114.948 599.531 114.954 599.489 114.954H588.388C588.346 114.954 588.309 114.954 588.267 114.942H588.242C587.78 114.942 587.403 115.319 587.403 115.781V118.589H600.461V115.781C600.461 115.319 600.084 114.942 599.622 114.942\" fill=\"white\"/>\n<path d=\"M599.634 114.942H599.61C599.574 114.948 599.531 114.954 599.489 114.954H588.388C588.346 114.954 588.309 114.954 588.267 114.942H588.242C587.78 114.942 587.403 115.319 587.403 115.781V118.589H600.461V115.781C600.461 115.319 600.084 114.942 599.622 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_134\">\n<path d=\"M599.488 113.902H588.388C588.102 113.902 587.877 114.133 587.877 114.413V114.443C587.877 114.687 588.047 114.887 588.272 114.942C588.309 114.948 588.351 114.954 588.394 114.954H599.494C599.537 114.954 599.573 114.954 599.616 114.942C599.841 114.887 600.011 114.687 600.011 114.443V114.413C600.011 114.127 599.78 113.902 599.5 113.902\" fill=\"white\"/>\n<path d=\"M599.488 113.902H588.388C588.102 113.902 587.877 114.133 587.877 114.413V114.443C587.877 114.687 588.047 114.887 588.272 114.942C588.309 114.948 588.351 114.954 588.394 114.954H599.494C599.537 114.954 599.573 114.954 599.616 114.942C599.841 114.887 600.011 114.687 600.011 114.443V114.413C600.011 114.127 599.78 113.902 599.5 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_135\">\n<path d=\"M544.855 73.5371H534.581V113.902H544.855V73.5371Z\" fill=\"white\"/>\n<path d=\"M544.855 73.5371H534.581V113.902H544.855V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_136\">\n<path d=\"M545.494 70.9292H533.949C533.846 70.9292 533.749 70.9474 533.658 70.9839C533.384 71.0994 533.189 71.3669 533.189 71.683V71.7316C533.189 72.1511 533.53 72.4915 533.949 72.4915H534.053C534.089 72.4855 534.132 72.4794 534.174 72.4794H545.275C545.317 72.4794 545.354 72.4794 545.396 72.4915H545.5C545.919 72.4915 546.26 72.1511 546.26 71.7316V71.683C546.26 71.3669 546.065 71.0994 545.791 70.9839C545.7 70.9474 545.603 70.9292 545.5 70.9292\" fill=\"white\"/>\n<path d=\"M545.494 70.9292H533.949C533.846 70.9292 533.749 70.9474 533.658 70.9839C533.384 71.0994 533.189 71.3669 533.189 71.683V71.7316C533.189 72.1511 533.53 72.4915 533.949 72.4915H534.053C534.089 72.4855 534.132 72.4794 534.174 72.4794H545.275C545.317 72.4794 545.354 72.4794 545.396 72.4915H545.5C545.919 72.4915 546.26 72.1511 546.26 71.7316V71.683C546.26 71.3669 546.065 71.0994 545.791 70.9839C545.7 70.9474 545.603 70.9292 545.5 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_137\">\n<path d=\"M545.269 72.4795H534.168C534.126 72.4795 534.089 72.4795 534.047 72.4917C533.822 72.5464 533.651 72.747 533.651 72.9901V73.0205C533.651 73.3063 533.882 73.5312 534.162 73.5312H545.262C545.548 73.5312 545.773 73.3002 545.773 73.0205V72.9901C545.773 72.747 545.603 72.5464 545.378 72.4917C545.341 72.4856 545.299 72.4795 545.256 72.4795\" fill=\"white\"/>\n<path d=\"M545.269 72.4795H534.168C534.126 72.4795 534.089 72.4795 534.047 72.4917C533.822 72.5464 533.651 72.747 533.651 72.9901V73.0205C533.651 73.3063 533.882 73.5312 534.162 73.5312H545.262C545.548 73.5312 545.773 73.3002 545.773 73.0205V72.9901C545.773 72.747 545.603 72.5464 545.378 72.4917C545.341 72.4856 545.299 72.4795 545.256 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_138\">\n<path d=\"M545.408 114.942H545.384C545.348 114.948 545.305 114.954 545.269 114.954H534.168C534.126 114.954 534.089 114.954 534.053 114.942H534.028C533.566 114.942 533.189 115.319 533.189 115.781V118.589H546.247V115.781C546.247 115.319 545.87 114.942 545.408 114.942Z\" fill=\"white\"/>\n<path d=\"M545.408 114.942H545.384C545.348 114.948 545.305 114.954 545.269 114.954H534.168C534.126 114.954 534.089 114.954 534.053 114.942H534.028C533.566 114.942 533.189 115.319 533.189 115.781V118.589H546.247V115.781C546.247 115.319 545.87 114.942 545.408 114.942Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_139\">\n<path d=\"M545.268 113.902H534.168C533.882 113.902 533.657 114.133 533.657 114.413V114.443C533.657 114.687 533.827 114.887 534.052 114.942C534.089 114.948 534.131 114.954 534.168 114.954H545.268C545.311 114.954 545.347 114.954 545.384 114.942C545.609 114.887 545.779 114.687 545.779 114.443V114.413C545.779 114.127 545.548 113.902 545.268 113.902Z\" fill=\"white\"/>\n<path d=\"M545.268 113.902H534.168C533.882 113.902 533.657 114.133 533.657 114.413V114.443C533.657 114.687 533.827 114.887 534.052 114.942C534.089 114.948 534.131 114.954 534.168 114.954H545.268C545.311 114.954 545.347 114.954 545.384 114.942C545.609 114.887 545.779 114.687 545.779 114.443V114.413C545.779 114.127 545.548 113.902 545.268 113.902Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_140\">\n<path d=\"M562.929 73.5371H552.661V113.902H562.929V73.5371Z\" fill=\"white\"/>\n<path d=\"M562.929 73.5371H552.661V113.902H562.929V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_141\">\n<path d=\"M563.567 70.9292H552.023C551.919 70.9292 551.822 70.9474 551.731 70.9839C551.457 71.0994 551.263 71.3669 551.263 71.683V71.7316C551.263 72.1511 551.603 72.4915 552.023 72.4915H552.126C552.162 72.4855 552.205 72.4794 552.248 72.4794H563.348C563.391 72.4794 563.427 72.4794 563.47 72.4915H563.573C563.992 72.4915 564.333 72.1511 564.333 71.7316V71.683C564.333 71.3669 564.138 71.0994 563.865 70.9839C563.774 70.9474 563.676 70.9292 563.573 70.9292\" fill=\"white\"/>\n<path d=\"M563.567 70.9292H552.023C551.919 70.9292 551.822 70.9474 551.731 70.9839C551.457 71.0994 551.263 71.3669 551.263 71.683V71.7316C551.263 72.1511 551.603 72.4915 552.023 72.4915H552.126C552.162 72.4855 552.205 72.4794 552.248 72.4794H563.348C563.391 72.4794 563.427 72.4794 563.47 72.4915H563.573C563.992 72.4915 564.333 72.1511 564.333 71.7316V71.683C564.333 71.3669 564.138 71.0994 563.865 70.9839C563.774 70.9474 563.676 70.9292 563.573 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_142\">\n<path d=\"M563.342 72.4795H552.241C552.199 72.4795 552.162 72.4795 552.12 72.4917C551.895 72.5464 551.725 72.747 551.725 72.9901V73.0205C551.725 73.3063 551.956 73.5312 552.235 73.5312H563.336C563.621 73.5312 563.846 73.3002 563.846 73.0205V72.9901C563.846 72.747 563.676 72.5464 563.451 72.4917C563.415 72.4856 563.372 72.4795 563.33 72.4795\" fill=\"white\"/>\n<path d=\"M563.342 72.4795H552.241C552.199 72.4795 552.162 72.4795 552.12 72.4917C551.895 72.5464 551.725 72.747 551.725 72.9901V73.0205C551.725 73.3063 551.956 73.5312 552.235 73.5312H563.336C563.621 73.5312 563.846 73.3002 563.846 73.0205V72.9901C563.846 72.747 563.676 72.5464 563.451 72.4917C563.415 72.4856 563.372 72.4795 563.33 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_143\">\n<path d=\"M563.482 114.942H563.458C563.421 114.948 563.379 114.954 563.336 114.954H552.236C552.193 114.954 552.157 114.954 552.12 114.942H552.096C551.634 114.942 551.257 115.319 551.257 115.781V118.589H564.315V115.781C564.315 115.319 563.938 114.942 563.476 114.942\" fill=\"white\"/>\n<path d=\"M563.482 114.942H563.458C563.421 114.948 563.379 114.954 563.336 114.954H552.236C552.193 114.954 552.157 114.954 552.12 114.942H552.096C551.634 114.942 551.257 115.319 551.257 115.781V118.589H564.315V115.781C564.315 115.319 563.938 114.942 563.476 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_144\">\n<path d=\"M563.342 113.902H552.241C551.955 113.902 551.73 114.133 551.73 114.413V114.443C551.73 114.687 551.901 114.887 552.126 114.942C552.162 114.948 552.205 114.954 552.241 114.954H563.342C563.384 114.954 563.421 114.954 563.463 114.942C563.688 114.887 563.858 114.687 563.858 114.443V114.413C563.858 114.127 563.627 113.902 563.348 113.902\" fill=\"white\"/>\n<path d=\"M563.342 113.902H552.241C551.955 113.902 551.73 114.133 551.73 114.413V114.443C551.73 114.687 551.901 114.887 552.126 114.942C552.162 114.948 552.205 114.954 552.241 114.954H563.342C563.384 114.954 563.421 114.954 563.463 114.942C563.688 114.887 563.858 114.687 563.858 114.443V114.413C563.858 114.127 563.627 113.902 563.348 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_145\">\n<path d=\"M581.002 73.5371H570.734V113.902H581.002V73.5371Z\" fill=\"white\"/>\n<path d=\"M581.002 73.5371H570.734V113.902H581.002V73.5371Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_146\">\n<path d=\"M581.64 70.9292H570.096C569.992 70.9292 569.895 70.9474 569.804 70.9839C569.53 71.0994 569.336 71.3669 569.336 71.683V71.7316C569.336 72.1511 569.676 72.4915 570.096 72.4915H570.199C570.236 72.4855 570.278 72.4794 570.321 72.4794H581.421C581.464 72.4794 581.5 72.4794 581.543 72.4915H581.646C582.066 72.4915 582.406 72.1511 582.406 71.7316V71.683C582.406 71.3669 582.211 71.0994 581.938 70.9839C581.847 70.9474 581.749 70.9292 581.646 70.9292\" fill=\"white\"/>\n<path d=\"M581.64 70.9292H570.096C569.992 70.9292 569.895 70.9474 569.804 70.9839C569.53 71.0994 569.336 71.3669 569.336 71.683V71.7316C569.336 72.1511 569.676 72.4915 570.096 72.4915H570.199C570.236 72.4855 570.278 72.4794 570.321 72.4794H581.421C581.464 72.4794 581.5 72.4794 581.543 72.4915H581.646C582.066 72.4915 582.406 72.1511 582.406 71.7316V71.683C582.406 71.3669 582.211 71.0994 581.938 70.9839C581.847 70.9474 581.749 70.9292 581.646 70.9292\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_147\">\n<path d=\"M581.415 72.4795H570.315C570.272 72.4795 570.236 72.4795 570.193 72.4917C569.968 72.5464 569.798 72.747 569.798 72.9901V73.0205C569.798 73.3063 570.029 73.5312 570.308 73.5312H581.409C581.695 73.5312 581.92 73.3002 581.92 73.0205V72.9901C581.92 72.747 581.749 72.5464 581.524 72.4917C581.488 72.4856 581.445 72.4795 581.403 72.4795\" fill=\"white\"/>\n<path d=\"M581.415 72.4795H570.315C570.272 72.4795 570.236 72.4795 570.193 72.4917C569.968 72.5464 569.798 72.747 569.798 72.9901V73.0205C569.798 73.3063 570.029 73.5312 570.308 73.5312H581.409C581.695 73.5312 581.92 73.3002 581.92 73.0205V72.9901C581.92 72.747 581.749 72.5464 581.524 72.4917C581.488 72.4856 581.445 72.4795 581.403 72.4795\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_148\">\n<path d=\"M581.561 114.942H581.537C581.5 114.948 581.458 114.954 581.415 114.954H570.315C570.272 114.954 570.236 114.954 570.199 114.942H570.175C569.713 114.942 569.336 115.319 569.336 115.781V118.589H582.394V115.781C582.394 115.319 582.017 114.942 581.555 114.942\" fill=\"white\"/>\n<path d=\"M581.561 114.942H581.537C581.5 114.948 581.458 114.954 581.415 114.954H570.315C570.272 114.954 570.236 114.954 570.199 114.942H570.175C569.713 114.942 569.336 115.319 569.336 115.781V118.589H582.394V115.781C582.394 115.319 582.017 114.942 581.555 114.942\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_149\">\n<path d=\"M581.415 113.902H570.314C570.029 113.902 569.804 114.133 569.804 114.413V114.443C569.804 114.687 569.974 114.887 570.199 114.942C570.235 114.948 570.278 114.954 570.314 114.954H581.415C581.457 114.954 581.494 114.954 581.536 114.942C581.761 114.887 581.932 114.687 581.932 114.443V114.413C581.932 114.127 581.701 113.902 581.421 113.902\" fill=\"white\"/>\n<path d=\"M581.415 113.902H570.314C570.029 113.902 569.804 114.133 569.804 114.413V114.443C569.804 114.687 569.974 114.887 570.199 114.942C570.235 114.948 570.278 114.954 570.314 114.954H581.415C581.457 114.954 581.494 114.954 581.536 114.942C581.761 114.887 581.932 114.687 581.932 114.443V114.413C581.932 114.127 581.701 113.902 581.421 113.902\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_150\">\n<path d=\"M600.431 67.7378H533.336C533.038 67.7378 532.801 67.9749 532.801 68.2728V69.8108C532.801 70.1086 533.038 70.3457 533.336 70.3457H600.425C600.723 70.3457 600.96 70.1086 600.96 69.8108V68.2728C600.96 67.9749 600.723 67.7378 600.425 67.7378\" fill=\"white\"/>\n<path d=\"M600.431 67.7378H533.336C533.038 67.7378 532.801 67.9749 532.801 68.2728V69.8108C532.801 70.1086 533.038 70.3457 533.336 70.3457H600.425C600.723 70.3457 600.96 70.1086 600.96 69.8108V68.2728C600.96 67.9749 600.723 67.7378 600.425 67.7378\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<g id=\"Vector_151\">\n<path d=\"M566.898 43.8833L549.025 54.85L534.083 64.0173H599.719L584.777 54.85L566.886 43.9076\" fill=\"white\"/>\n<path d=\"M566.898 43.8833L549.025 54.85L534.083 64.0173H599.719L584.777 54.85L566.886 43.9076\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_152\">\n<path d=\"M534.065 64.0416L549.007 54.8743L566.886 43.9076L584.758 54.8743L599.701 64.0416H534.065ZM566.886 41.4517C566.576 41.4517 566.266 41.5368 565.986 41.707L547.785 52.8743L530.94 63.2088C530.679 63.3668 530.46 63.5979 530.326 63.8593C530.186 64.1207 530.119 64.4003 530.125 64.6678C530.125 65.0994 530.277 65.5067 530.575 65.835C530.727 65.9991 530.916 66.1389 531.135 66.2362C531.353 66.3335 531.597 66.3882 531.84 66.3882H601.926C602.169 66.3882 602.412 66.3395 602.631 66.2362C602.959 66.0903 603.221 65.8471 603.385 65.5675C603.555 65.2939 603.64 64.9839 603.64 64.6617C603.64 64.3942 603.579 64.1146 603.439 63.8532C603.3 63.5918 603.081 63.3608 602.825 63.2027L585.98 52.8682L567.779 41.707C567.506 41.5368 567.196 41.4517 566.886 41.4517Z\" fill=\"white\"/>\n<path d=\"M534.065 64.0416L549.007 54.8743L566.886 43.9076L584.758 54.8743L599.701 64.0416H534.065ZM566.886 41.4517C566.576 41.4517 566.266 41.5368 565.986 41.707L547.785 52.8743L530.94 63.2088C530.679 63.3668 530.46 63.5979 530.326 63.8593C530.186 64.1207 530.119 64.4003 530.125 64.6678C530.125 65.0994 530.277 65.5067 530.575 65.835C530.727 65.9991 530.916 66.1389 531.135 66.2362C531.353 66.3335 531.597 66.3882 531.84 66.3882H601.926C602.169 66.3882 602.412 66.3395 602.631 66.2362C602.959 66.0903 603.221 65.8471 603.385 65.5675C603.555 65.2939 603.64 64.9839 603.64 64.6617C603.64 64.3942 603.579 64.1146 603.439 63.8532C603.3 63.5918 603.081 63.3608 602.825 63.2027L585.98 52.8682L567.779 41.707C567.506 41.5368 567.196 41.4517 566.886 41.4517Z\" fill=\"#206095\" fill-opacity=\"0.2\"/>\n</g>\n<path id=\"Vector_153\" d=\"M603.24 118.589H601.07H588.006H582.997H569.933H564.918H551.86H546.844H533.786H530.832V121.617H603.24V118.589Z\" fill=\"#A6BFD5\"/>\n<g id=\"Vector_154\">\n<path d=\"M605.143 121.617H603.094H530.686H528.832V125.75H605.143V121.617Z\" fill=\"white\"/>\n<path d=\"M605.143 121.617H603.094H530.686H528.832V125.75H605.143V121.617Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 6\">\n<rect x=\"496.832\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"496.832\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 7\">\n<rect x=\"513.832\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"513.832\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 8\">\n<rect x=\"496.832\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"496.832\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 9\">\n<rect x=\"513.832\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"513.832\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 10\">\n<rect x=\"604.832\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"604.832\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 11\">\n<rect x=\"621.832\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"621.832\" y=\"96.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 12\">\n<rect x=\"604.832\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"604.832\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 13\">\n<rect x=\"621.832\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"white\"/>\n<rect x=\"621.832\" y=\"73.813\" width=\"14\" height=\"15\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 8_2\">\n<rect x=\"495.832\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"495.832\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 9_2\">\n<rect x=\"512.832\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"512.832\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 10_2\">\n<rect x=\"495.832\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"495.832\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 11_2\">\n<rect x=\"512.832\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"512.832\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 12_2\">\n<rect x=\"603.832\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"603.832\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 13_2\">\n<rect x=\"620.832\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"620.832\" y=\"110.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 14\">\n<rect x=\"603.832\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"603.832\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Rectangle 15\">\n<rect x=\"620.832\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"white\"/>\n<rect x=\"620.832\" y=\"87.813\" width=\"16\" height=\"2\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Icon\">\n<g id=\"Circle\">\n<path id=\"Vector_155\" d=\"M566.832 61.4873C570.146 61.4873 572.832 58.801 572.832 55.4873C572.832 52.1736 570.146 49.4873 566.832 49.4873C563.518 49.4873 560.832 52.1736 560.832 55.4873C560.832 58.801 563.518 61.4873 566.832 61.4873Z\" fill=\"white\"/>\n</g>\n<g id=\"Artwork 64x64\">\n<path id=\"Vector_156\" d=\"M570.64 56.1689L569.686 53.4416C569.68 53.42 569.67 53.3997 569.656 53.3816C569.646 53.3692 569.634 53.3578 569.621 53.3475H569.613C569.599 53.338 569.585 53.3302 569.569 53.3244H569.549C569.535 53.316 569.52 53.3096 569.505 53.3053H567.241V52.6234C567.241 52.5149 567.198 52.4109 567.122 52.3342C567.045 52.2575 566.941 52.2144 566.832 52.2144C566.724 52.2144 566.62 52.2575 566.543 52.3342C566.466 52.4109 566.423 52.5149 566.423 52.6234V53.3053H564.16C564.147 53.3061 564.134 53.3084 564.121 53.3121H564.101C564.086 53.3179 564.071 53.3257 564.057 53.3353H564.049C564.036 53.3455 564.024 53.3569 564.014 53.3694C564 53.3874 563.99 53.4077 563.984 53.4294L563.029 56.1566C563.019 56.1875 563.016 56.2204 563.021 56.2527C563.026 56.2849 563.038 56.3155 563.057 56.3421C563.076 56.3687 563.101 56.3904 563.129 56.4056C563.158 56.4207 563.19 56.4289 563.223 56.4294H565.132C565.164 56.4289 565.196 56.4207 565.225 56.4056C565.254 56.3904 565.279 56.3687 565.298 56.3421C565.317 56.3155 565.329 56.2849 565.334 56.2527C565.339 56.2204 565.336 56.1875 565.326 56.1566L564.464 53.7144H566.423V57.0444L565.319 58.3057C565.284 58.3451 565.261 58.3939 565.253 58.4461C565.245 58.4983 565.252 58.5516 565.274 58.5997C565.296 58.6478 565.331 58.6885 565.376 58.7169C565.42 58.7453 565.472 58.7602 565.525 58.7598H568.14C568.193 58.76 568.244 58.745 568.288 58.7167C568.333 58.6883 568.368 58.6478 568.389 58.6C568.411 58.5522 568.419 58.4991 568.411 58.4471C568.403 58.3952 568.381 58.3465 568.346 58.3071L567.241 57.0444V53.7144H569.201L568.343 56.1689C568.333 56.1998 568.33 56.2327 568.335 56.2649C568.34 56.2972 568.352 56.3278 568.371 56.3544C568.39 56.3809 568.415 56.4027 568.443 56.4178C568.472 56.433 568.504 56.4412 568.537 56.4416H570.446C570.479 56.4412 570.511 56.433 570.539 56.4178C570.568 56.4027 570.593 56.3809 570.612 56.3544C570.631 56.3278 570.643 56.2972 570.648 56.2649C570.653 56.2327 570.65 56.1998 570.64 56.1689ZM563.506 56.0325L564.173 54.1234L564.84 56.0325H563.506ZM568.825 56.0325L569.491 54.1234L570.158 56.0325H568.825Z\" fill=\"#206095\"/>\n<g id=\"Vector_157\">\n<path d=\"M566.832 54.1903C567.209 54.1903 567.514 53.885 567.514 53.5085C567.514 53.1319 567.209 52.8267 566.832 52.8267C566.456 52.8267 566.15 53.1319 566.15 53.5085C566.15 53.885 566.456 54.1903 566.832 54.1903Z\" fill=\"white\"/>\n<path d=\"M566.832 54.1903C567.209 54.1903 567.514 53.885 567.514 53.5085C567.514 53.1319 567.209 52.8267 566.832 52.8267C566.456 52.8267 566.15 53.1319 566.15 53.5085C566.15 53.885 566.456 54.1903 566.832 54.1903Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_158\">\n<path d=\"M565.022 55.9483C565.07 55.9478 565.119 55.9589 565.162 55.9808C565.206 56.0026 565.243 56.0345 565.272 56.0738C565.301 56.1131 565.32 56.1587 565.328 56.2068C565.335 56.255 565.331 56.3042 565.316 56.3505C565.233 56.5867 565.078 56.7912 564.873 56.9358C564.669 57.0805 564.424 57.1581 564.174 57.1581C563.923 57.1581 563.679 57.0805 563.474 56.9358C563.269 56.7912 563.115 56.5867 563.031 56.3505C563.016 56.3042 563.012 56.255 563.019 56.2068C563.027 56.1587 563.046 56.1131 563.075 56.0738C563.104 56.0345 563.141 56.0026 563.185 55.9808C563.229 55.9589 563.277 55.9478 563.325 55.9483H565.022Z\" fill=\"white\"/>\n<path d=\"M565.022 55.9483C565.07 55.9478 565.119 55.9589 565.162 55.9808C565.206 56.0026 565.243 56.0345 565.272 56.0738C565.301 56.1131 565.32 56.1587 565.328 56.2068C565.335 56.255 565.331 56.3042 565.316 56.3505C565.233 56.5867 565.078 56.7912 564.873 56.9358C564.669 57.0805 564.424 57.1581 564.174 57.1581C563.923 57.1581 563.679 57.0805 563.474 56.9358C563.269 56.7912 563.115 56.5867 563.031 56.3505C563.016 56.3042 563.012 56.255 563.019 56.2068C563.027 56.1587 563.046 56.1131 563.075 56.0738C563.104 56.0345 563.141 56.0026 563.185 55.9808C563.229 55.9589 563.277 55.9478 563.325 55.9483H565.022Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_159\">\n<path d=\"M570.34 55.9483C570.389 55.9478 570.437 55.9589 570.481 55.9808C570.524 56.0026 570.562 56.0345 570.591 56.0738C570.619 56.1131 570.638 56.1587 570.646 56.2068C570.654 56.255 570.65 56.3042 570.635 56.3505C570.551 56.5867 570.396 56.7912 570.192 56.9358C569.987 57.0805 569.743 57.1581 569.492 57.1581C569.241 57.1581 568.997 57.0805 568.792 56.9358C568.588 56.7912 568.433 56.5867 568.349 56.3505C568.334 56.3042 568.33 56.255 568.338 56.2068C568.345 56.1587 568.364 56.1131 568.393 56.0738C568.422 56.0345 568.46 56.0026 568.503 55.9808C568.547 55.9589 568.595 55.9478 568.644 55.9483H570.34Z\" fill=\"white\"/>\n<path d=\"M570.34 55.9483C570.389 55.9478 570.437 55.9589 570.481 55.9808C570.524 56.0026 570.562 56.0345 570.591 56.0738C570.619 56.1131 570.638 56.1587 570.646 56.2068C570.654 56.255 570.65 56.3042 570.635 56.3505C570.551 56.5867 570.396 56.7912 570.192 56.9358C569.987 57.0805 569.743 57.1581 569.492 57.1581C569.241 57.1581 568.997 57.0805 568.792 56.9358C568.588 56.7912 568.433 56.5867 568.349 56.3505C568.334 56.3042 568.33 56.255 568.338 56.2068C568.345 56.1587 568.364 56.1131 568.393 56.0738C568.422 56.0345 568.46 56.0026 568.503 55.9808C568.547 55.9589 568.595 55.9478 568.644 55.9483H570.34Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n</g>\n</g>\n<g id=\"Bush_2\">\n<g id=\"Vector_160\">\n<path d=\"M681.329 111.962C685.678 114.179 688.387 115.261 689.527 116.397C690.671 117.533 693.372 120.844 691.827 123.23C690.278 125.617 689.767 127.484 685.414 127.288C681.062 127.091 679.296 126.474 675.774 126.796C672.251 127.119 669.137 125.538 668.41 124.779C667.682 124.021 665.496 120.502 668.39 117.388C671.284 114.27 677.488 110.004 681.329 111.962Z\" fill=\"white\"/>\n<path d=\"M681.329 111.962C685.678 114.179 688.387 115.261 689.527 116.397C690.671 117.533 693.372 120.844 691.827 123.23C690.278 125.617 689.767 127.484 685.414 127.288C681.062 127.091 679.296 126.474 675.774 126.796C672.251 127.119 669.137 125.538 668.41 124.779C667.682 124.021 665.496 120.502 668.39 117.388C671.284 114.27 677.488 110.004 681.329 111.962Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_161\">\n<path d=\"M669.781 109.772C666.781 108.101 663.486 108.014 659.204 110.688C654.923 113.365 654.018 115.142 653.759 116.326C653.503 117.509 651.553 118.256 652.08 120.623C652.607 122.99 657.648 125.491 660.915 125.778C664.182 126.065 664.866 125.766 668.747 125.164C672.627 124.563 675.745 123.666 677.165 120.702C678.588 117.737 672.954 111.537 669.777 109.772H669.781Z\" fill=\"white\"/>\n<path d=\"M669.781 109.772C666.781 108.101 663.486 108.014 659.204 110.688C654.923 113.365 654.018 115.142 653.759 116.326C653.503 117.509 651.553 118.256 652.08 120.623C652.607 122.99 657.648 125.491 660.915 125.778C664.182 126.065 664.866 125.766 668.747 125.164C672.627 124.563 675.745 123.666 677.165 120.702C678.588 117.737 672.954 111.537 669.777 109.772H669.781Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_162\">\n<path d=\"M658.135 113.625C664.886 115.835 669.093 116.912 670.87 118.048C672.644 119.185 676.839 122.487 674.433 124.878C672.022 127.268 671.224 129.136 664.462 128.947C657.699 128.758 654.959 128.145 649.486 128.471C644.013 128.798 639.177 127.225 638.048 126.466C636.92 125.707 633.527 122.192 638.028 119.074C642.53 115.953 652.179 111.679 658.143 113.633L658.135 113.625Z\" fill=\"white\"/>\n<path d=\"M658.135 113.625C664.886 115.835 669.093 116.912 670.87 118.048C672.644 119.185 676.839 122.487 674.433 124.878C672.022 127.268 671.224 129.136 664.462 128.947C657.699 128.758 654.959 128.145 649.486 128.471C644.013 128.798 639.177 127.225 638.048 126.466C636.92 125.707 633.527 122.192 638.028 119.074C642.53 115.953 652.179 111.679 658.143 113.633L658.135 113.625Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_163\">\n<path d=\"M678.675 123.191C676.949 122.342 675.054 122.291 672.585 123.64C670.116 124.988 669.593 125.889 669.444 126.486C669.294 127.084 668.17 127.461 668.472 128.656C668.771 129.856 671.669 131.13 673.552 131.279C675.436 131.428 675.829 131.279 678.062 130.98C680.295 130.681 682.092 130.229 682.918 128.731C683.743 127.233 680.507 124.088 678.683 123.187L678.675 123.191Z\" fill=\"white\"/>\n<path d=\"M678.675 123.191C676.949 122.342 675.054 122.291 672.585 123.64C670.116 124.988 669.593 125.889 669.444 126.486C669.294 127.084 668.17 127.461 668.472 128.656C668.771 129.856 671.669 131.13 673.552 131.279C675.436 131.428 675.829 131.279 678.062 130.98C680.295 130.681 682.092 130.229 682.918 128.731C683.743 127.233 680.507 124.088 678.683 123.187L678.675 123.191Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_164\">\n<path d=\"M671.701 124.685C670.332 124.013 668.83 123.973 666.872 125.043C664.914 126.112 664.501 126.824 664.38 127.299C664.262 127.775 663.373 128.07 663.609 129.022C663.845 129.973 666.145 130.98 667.635 131.101C669.125 131.219 669.44 131.101 671.209 130.866C672.982 130.63 674.406 130.272 675.058 129.084C675.711 127.897 673.147 125.404 671.701 124.693V124.685Z\" fill=\"white\"/>\n<path d=\"M671.701 124.685C670.332 124.013 668.83 123.973 666.872 125.043C664.914 126.112 664.501 126.824 664.38 127.299C664.262 127.775 663.373 128.07 663.609 129.022C663.845 129.973 666.145 130.98 667.635 131.101C669.125 131.219 669.44 131.101 671.209 130.866C672.982 130.63 674.406 130.272 675.058 129.084C675.711 127.897 673.147 125.404 671.701 124.693V124.685Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_165\">\n<path d=\"M676.198 120.219C674.472 119.369 672.577 119.318 670.107 120.667C667.638 122.015 667.115 122.916 666.966 123.513C666.817 124.111 665.692 124.489 665.995 125.684C666.294 126.883 666.514 128.668 668.397 128.817C670.28 128.967 673.351 128.306 675.584 128.007C677.818 127.709 679.614 127.257 680.44 125.759C681.262 124.261 678.03 121.115 676.206 120.215L676.198 120.219Z\" fill=\"white\"/>\n<path d=\"M676.198 120.219C674.472 119.369 672.577 119.318 670.107 120.667C667.638 122.015 667.115 122.916 666.966 123.513C666.817 124.111 665.692 124.489 665.995 125.684C666.294 126.883 666.514 128.668 668.397 128.817C670.28 128.967 673.351 128.306 675.584 128.007C677.818 127.709 679.614 127.257 680.44 125.759C681.262 124.261 678.03 121.115 676.206 120.215L676.198 120.219Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n</g>\n<g id=\"Flats\" clip-path=\"url(#clip1_1989_41087)\">\n<path id=\"Vector_166\" d=\"M198.616 21.1265H200.067V23.6337H198.616V21.1265Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_167\" d=\"M196.045 21.1265H197.497V23.6337H196.045V21.1265Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_168\" d=\"M207.06 23.2844C206.438 23.2844 205.935 22.7739 205.935 22.1441C205.935 21.5144 206.438 21.0039 207.06 21.0039C207.681 21.0039 208.185 21.5144 208.185 22.1441C208.185 22.7739 207.681 23.2844 207.06 23.2844Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_169\" d=\"M205.928 22.1196H208.185V24.4062H205.928V22.1196Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_170\" d=\"M207.06 21.3349C206.88 21.3349 206.733 21.1867 206.733 21.0039C206.733 20.8211 206.88 20.6729 207.06 20.6729C207.24 20.6729 207.387 20.8211 207.387 21.0039C207.387 21.1867 207.24 21.3349 207.06 21.3349Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_171\" d=\"M204.483 23.2844C203.862 23.2844 203.358 22.7739 203.358 22.1441C203.358 21.5144 203.862 21.0039 204.483 21.0039C205.105 21.0039 205.608 21.5144 205.608 22.1441C205.608 22.7739 205.105 23.2844 204.483 23.2844Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_172\" d=\"M203.358 22.1196H205.614V24.4062H203.358V22.1196Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_173\" d=\"M204.483 21.3349C204.303 21.3349 204.156 21.1867 204.156 21.0039C204.156 20.8211 204.303 20.6729 204.483 20.6729C204.663 20.6729 204.81 20.8211 204.81 21.0039C204.81 21.1867 204.663 21.3349 204.483 21.3349Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_174\" d=\"M266.347 14.1255H289.107V15.1676H266.347V14.1255Z\" fill=\"#003C57\"/>\n<g id=\"Vector_175\">\n<path d=\"M266.353 15.186H289.107V28.5623H266.353V15.186Z\" fill=\"white\"/>\n<path d=\"M266.353 15.186H289.107V28.5623H266.353V15.186Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_176\" d=\"M268.766 17.1787H276.133V31.1741H268.766V17.1787Z\" fill=\"#003C57\"/>\n<path id=\"Vector_177\" d=\"M269.692 18.1104H275.214V31.174H269.692V18.1104Z\" fill=\"#EBEBF4\"/>\n<g id=\"Vector_178\">\n<path d=\"M172.444 29.5186H295.67V125.212H172.444V29.5186Z\" fill=\"white\"/>\n<path d=\"M172.444 29.5186H295.67V125.212H172.444V29.5186Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_179\" opacity=\"0.4\" d=\"M231.791 29.4268H234.713V125.819H231.791V29.4268Z\" fill=\"#EBEBF4\"/>\n<path id=\"Vector_180\" d=\"M172.462 28.3354H295.646V29.5186H172.462V28.3354Z\" fill=\"#003C57\"/>\n<g id=\"Vector_181\">\n<path d=\"M193.215 23.1553H210.955V28.3047H193.215V23.1553Z\" fill=\"white\"/>\n<path d=\"M193.215 23.1553H210.955V28.3047H193.215V23.1553Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<path id=\"Vector_182\" d=\"M266.728 35.6611V50.8213H266.334H243.52H243.145V35.6611H266.728Z\" fill=\"white\"/>\n<g id=\"Vector_183\">\n<path d=\"M290.062 35.6611V118.622H289.905H280.621H280.47V35.6611H290.062Z\" fill=\"white\"/>\n<path d=\"M290.062 35.6611V118.622H289.905H280.621H280.47V35.6611H290.062Z\" fill=\"#6390B5\"/>\n</g>\n<path id=\"Vector_184\" d=\"M244.125 36.8442H265.657V49.4665H244.125V36.8442Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_185\" d=\"M266.57 59.5205V74.6807H266.171H243.362H242.981V59.5205H266.57Z\" fill=\"white\"/>\n<path id=\"Vector_186\" d=\"M243.967 60.6973H265.5V73.1478H243.967V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_187\" d=\"M266.57 83.3179V98.4842H266.171H243.362H242.981V83.3179H266.57Z\" fill=\"white\"/>\n<path id=\"Vector_188\" d=\"M243.967 84.501H265.5V97.1477H243.967V84.501Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_189\" d=\"M241.875 98.2021H275.625V99.0849H241.875V98.2021Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_190\" opacity=\"0.5\" d=\"M241.905 93.4453H275.644V98.2024H241.905V93.4453Z\" fill=\"white\"/>\n<path id=\"Vector_191\" d=\"M266.57 108.195V123.355H266.171H243.362H242.981V108.195H266.57Z\" fill=\"white\"/>\n<path id=\"Vector_192\" d=\"M243.967 109.372H265.5V121.932H243.967V109.372Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_193\" d=\"M241.875 123.073H275.625V123.956H241.875V123.073Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_194\" opacity=\"0.5\" d=\"M241.905 118.315H275.644V123.073H241.905V118.315Z\" fill=\"white\"/>\n<path id=\"Vector_195\" d=\"M241.875 74.3496H275.625V75.2324H241.875V74.3496Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_196\" d=\"M295.646 73.3687H302.045V74.2514H295.646V73.3687Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_197\" opacity=\"0.7\" d=\"M295.663 68.6113H302.026V73.3684H295.663V68.6113Z\" fill=\"white\"/>\n<path id=\"Vector_198\" d=\"M295.646 50.0488H302.045V50.9316H295.646V50.0488Z\" fill=\"#003C57\"/>\n<path id=\"Vector_199\" opacity=\"0.7\" d=\"M295.663 45.292H302.026V50.0491H295.663V45.292Z\" fill=\"white\"/>\n<path id=\"Vector_200\" d=\"M295.646 97.7607H302.045V98.6435H295.646V97.7607Z\" fill=\"#003C57\"/>\n<path id=\"Vector_201\" opacity=\"0.7\" d=\"M295.663 93.0039H302.026V97.761H295.663V93.0039Z\" fill=\"white\"/>\n<path id=\"Vector_202\" d=\"M166.045 73.3687H172.444V74.2514H166.045V73.3687Z\" fill=\"#003C57\"/>\n<path id=\"Vector_203\" opacity=\"0.7\" d=\"M166.063 68.6113H172.426V73.3684H166.063V68.6113Z\" fill=\"white\"/>\n<path id=\"Vector_204\" d=\"M166.045 50.0488H172.444V50.9316H166.045V50.0488Z\" fill=\"#003C57\"/>\n<path id=\"Vector_205\" opacity=\"0.7\" d=\"M166.063 45.292H172.426V50.0491H166.063V45.292Z\" fill=\"white\"/>\n<path id=\"Vector_206\" d=\"M166.045 97.7607H172.444V98.6435H166.045V97.7607Z\" fill=\"#003C57\"/>\n<path id=\"Vector_207\" opacity=\"0.7\" d=\"M166.063 93.0039H172.426V97.761H166.063V93.0039Z\" fill=\"white\"/>\n<path id=\"Vector_208\" d=\"M241.875 50.4902H275.625V51.373H241.875V50.4902Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_209\" opacity=\"0.5\" d=\"M241.947 45.7334H275.655V50.4905H241.947V45.7334Z\" fill=\"white\"/>\n<path id=\"Vector_210\" d=\"M281.65 37.1753H288.884V46.5607H281.65V37.1753Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_211\" d=\"M281.65 60.6973H288.884V70.0827H281.65V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_212\" d=\"M281.65 84.2192H288.884V93.6047H281.65V84.2192Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_213\" d=\"M281.65 107.741H288.884V117.127H281.65V107.741Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_214\" d=\"M204.065 35.6611V50.8213H203.672H180.863H180.482V35.6611H204.065Z\" fill=\"white\"/>\n<g id=\"Vector_215\">\n<path d=\"M227.4 35.6611V118.622H227.243H217.959H217.808V35.6611H227.4Z\" fill=\"white\"/>\n<path d=\"M227.4 35.6611V118.622H227.243H217.959H217.808V35.6611H227.4Z\" fill=\"#6390B5\"/>\n</g>\n<path id=\"Vector_216\" d=\"M181.468 36.8442H203.001V49.4235H181.468V36.8442Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_217\" d=\"M203.908 59.5205V74.6807H203.515H180.7H180.325V59.5205H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_218\" d=\"M181.305 60.6973H202.838V73.1724H181.305V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_219\" d=\"M203.908 83.3179V98.4842H203.515H180.7H180.325V83.3179H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_220\" d=\"M181.305 84.501H202.838V97.0067H181.305V84.501Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_221\" d=\"M179.218 98.2021H212.969V99.0849H179.218V98.2021Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_222\" opacity=\"0.5\" d=\"M179.243 93.4453H212.981V98.2024H179.243V93.4453Z\" fill=\"white\"/>\n<path id=\"Vector_223\" d=\"M203.908 108.195V123.355H203.515H180.7H180.325V108.195H203.908Z\" fill=\"white\"/>\n<path id=\"Vector_224\" d=\"M181.305 109.372H202.838V121.902H181.305V109.372Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_225\" d=\"M179.218 123.073H212.969V123.956H179.218V123.073Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_226\" opacity=\"0.5\" d=\"M179.243 118.315H212.981V123.073H179.243V118.315Z\" fill=\"white\"/>\n<path id=\"Vector_227\" d=\"M179.218 74.3496H212.969V75.2324H179.218V74.3496Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_228\" opacity=\"0.5\" d=\"M179.23 69.5923H212.969V74.3494H179.23V69.5923Z\" fill=\"white\"/>\n<path id=\"Vector_229\" d=\"M179.218 50.4902H212.969V51.373H179.218V50.4902Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_230\" d=\"M218.988 37.1753H226.222V46.5607H218.988V37.1753Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_231\" d=\"M218.988 60.6973H226.222V70.0827H218.988V60.6973Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_232\" d=\"M218.988 84.2192H226.222V93.6047H218.988V84.2192Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_233\" d=\"M218.988 107.741H226.222V117.127H218.988V107.741Z\" fill=\"#206095\" fill-opacity=\"0.8\"/>\n<path id=\"Vector_234\" opacity=\"0.5\" d=\"M241.892 69.5923H275.631V74.3494H241.892V69.5923Z\" fill=\"white\"/>\n<path id=\"Vector_235\" opacity=\"0.5\" d=\"M179.285 45.7334H212.993V50.4905H179.285V45.7334Z\" fill=\"white\"/>\n</g>\n<g id=\"House\" clip-path=\"url(#clip2_1989_41087)\">\n<path id=\"Vector_236\" d=\"M180.966 101.642L177.736 104.85L178.049 105.161L181.279 101.952L180.966 101.642Z\" fill=\"#003C57\"/>\n<path id=\"Vector_237\" d=\"M114.431 95.9507H101.17V104.616H114.431V95.9507Z\" fill=\"#206095\"/>\n<g id=\"Vector_238\">\n<path d=\"M184 102.09H177.77V95.9468V95.951L184 102.09Z\" fill=\"white\"/>\n<path d=\"M184 102.09H177.77V95.9468V95.951L184 102.09Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_239\" d=\"M101.17 95.9507H100V104.616H101.17V95.9507Z\" fill=\"#003C57\"/>\n<path id=\"Vector_240\" d=\"M178.126 102.085H177.773V106.036H178.126V102.085Z\" fill=\"#003C57\"/>\n<path id=\"Vector_241\" d=\"M177.773 74.5513H114.431V86.8248H177.773V74.5513Z\" fill=\"#206095\"/>\n<g id=\"Vector_242\">\n<path d=\"M161.935 69.1309H130.266V86.8504H161.935V69.1309Z\" fill=\"white\"/>\n<path d=\"M161.935 69.1309H130.266V86.8504H161.935V69.1309Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_243\" d=\"M146.173 69.1309H146.032V84.8858H146.173V69.1309Z\" fill=\"#003C57\"/>\n<g id=\"Vector_244\">\n<path d=\"M146.1 86.8248L161.934 71.0952L177.769 86.8248V125.804H146.1V86.8248Z\" fill=\"white\"/>\n<path d=\"M146.1 86.8248L161.934 71.0952L177.769 86.8248V125.804H146.1V86.8248Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_245\" d=\"M161.934 71.0955L177.769 86.8251V84.8605L161.934 69.1309L146.1 84.8605V86.8251L161.934 71.0955Z\" fill=\"#003C57\"/>\n<g id=\"Vector_246\">\n<path d=\"M114.431 86.8248L130.265 71.0952L146.1 86.8248V125.804H114.431V86.8248Z\" fill=\"white\"/>\n<path d=\"M114.431 86.8248L130.265 71.0952L146.1 86.8248V125.804H114.431V86.8248Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_247\" d=\"M130.265 71.0955L146.1 86.8251V84.8605L130.265 69.1309L114.431 84.8605V86.8251L130.265 71.0955Z\" fill=\"#003C57\"/>\n<path id=\"Vector_248\" d=\"M167.038 84.7041H162.215V92.026H167.038V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_249\" d=\"M161.731 84.7041H156.831V92.026H161.731V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_250\" d=\"M155.551 92.0218V92.7612H168.327V92.0218H167.532V84.2183H156.35V92.0218H155.555H155.551ZM156.831 84.6999H161.731V92.0218H156.831V84.6999ZM167.043 92.0218H162.22V84.6999H167.043V92.0218Z\" fill=\"#003C57\"/>\n<path id=\"Vector_251\" d=\"M135.369 84.7041H130.546V92.026H135.369V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_252\" d=\"M130.062 84.7041H125.162V92.026H130.062V84.7041Z\" fill=\"white\"/>\n<path id=\"Vector_253\" d=\"M123.877 92.0218V92.7612H136.653V92.0218H135.858V84.2183H124.677V92.0218H123.881H123.877ZM125.157 84.6999H130.057V92.0218H125.157V84.6999ZM135.369 92.0218H130.546V84.6999H135.369V92.0218Z\" fill=\"#003C57\"/>\n<g id=\"Vector_254\">\n<path d=\"M114.431 104.583H100.464V124.541H114.431V104.583Z\" fill=\"white\"/>\n<path d=\"M114.431 104.583H100.464V124.541H114.431V104.583Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n<path id=\"Vector_255\" d=\"M111.607 109.09H103.288V124.583H111.607V109.09Z\" fill=\"#003C57\"/>\n<g id=\"Vector_256\">\n<path d=\"M110.569 110.122H104.33V124.579H110.569V110.122Z\" fill=\"white\"/>\n<path d=\"M110.569 110.122H104.33V124.579H110.569V110.122Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<path id=\"Vector_257\" d=\"M107.448 115.2C108.554 115.2 109.451 114.309 109.451 113.21C109.451 112.111 108.554 111.22 107.448 111.22C106.341 111.22 105.444 112.111 105.444 113.21C105.444 114.309 106.341 115.2 107.448 115.2Z\" fill=\"white\"/>\n<path id=\"Vector_258\" d=\"M178.479 74.5513H177.773V86.8248H178.479V74.5513Z\" fill=\"#003C57\"/>\n<path id=\"Vector_259\" d=\"M114.431 74.5513H113.725V86.8248H114.431V74.5513Z\" fill=\"#003C57\"/>\n<path id=\"Vector_260\" d=\"M149.817 62.751H146.228V67.3942H149.817V62.751Z\" fill=\"#003C57\"/>\n<path id=\"Vector_261\" d=\"M145.976 62.751H142.387V67.3942H145.976V62.751Z\" fill=\"#003C57\"/>\n<g id=\"Group\" opacity=\"0.75\">\n<g id=\"Vector_262\">\n<path d=\"M142.472 61.813H149.728C149.987 61.813 150.2 62.0242 150.2 62.282C150.2 62.5397 149.987 62.7509 149.728 62.7509H142.472C142.213 62.7509 142 62.5397 142 62.282C142 62.0242 142.213 61.813 142.472 61.813Z\" fill=\"white\"/>\n<path d=\"M142.472 61.813H149.728C149.987 61.813 150.2 62.0242 150.2 62.282C150.2 62.5397 149.987 62.7509 149.728 62.7509H142.472C142.213 62.7509 142 62.5397 142 62.282C142 62.0242 142.213 61.813 142.472 61.813Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n<path id=\"Vector_263\" d=\"M150.915 69.1263H141.29C141.29 68.1672 142.073 67.394 143.034 67.394H149.167C150.132 67.394 150.911 68.1714 150.911 69.1263H150.915Z\" fill=\"#003C57\"/>\n<g id=\"Vector_264\">\n<path d=\"M139.848 109.112H120.684L124.605 102.947H135.927L139.848 109.112Z\" fill=\"white\"/>\n<path d=\"M139.848 109.112H120.684L124.605 102.947H135.927L139.848 109.112Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<g id=\"Vector_265\">\n<path d=\"M171.522 109.112H152.353L156.274 102.947H167.6L171.522 109.112Z\" fill=\"white\"/>\n<path d=\"M171.522 109.112H152.353L156.274 102.947H167.6L171.522 109.112Z\" fill=\"#206095\" fill-opacity=\"0.9\"/>\n</g>\n<path id=\"Vector_266\" d=\"M158.264 109.297H154.023V117.625H158.264V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_267\" d=\"M153.263 117.313V117.938H161.905V117.313H161.335V109.112H153.837V117.313H153.263ZM160.952 117.313H154.211V109.488H160.952V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_268\" d=\"M169.816 109.297H165.418V117.625H169.816V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_269\" d=\"M161.935 117.313V117.938H170.577V117.313H170.007V109.112H162.509V117.313H161.935ZM169.624 117.313H162.883V109.488H169.624V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_270\" d=\"M165.418 109.297H158.298V117.625H165.418V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_271\" d=\"M157.541 117.313V117.938H166.183V117.313H165.614V109.112H158.115V117.313H157.541ZM165.231 117.313H158.489V109.488H165.231V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_272\" d=\"M126.629 109.297H122.389V117.625H126.629V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_273\" d=\"M121.627 117.313V117.938H130.269V117.313H129.699V109.112H122.201V117.313H121.627ZM129.317 117.313H122.575V109.488H129.317V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_274\" d=\"M138.147 109.297H133.749V117.625H138.147V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_275\" d=\"M130.266 117.313V117.938H138.908V117.313H138.338V109.112H130.84V117.313H130.266ZM137.955 117.313H131.214V109.488H137.955V117.313Z\" fill=\"#003C57\"/>\n<path id=\"Vector_276\" d=\"M133.749 109.297H126.629V117.625H133.749V109.297Z\" fill=\"white\"/>\n<path id=\"Vector_277\" d=\"M125.868 117.313V117.938H134.511V117.313H133.941V109.112H126.442V117.313H125.868ZM133.558 117.313H126.817V109.488H133.558V117.313Z\" fill=\"#003C57\"/>\n<g id=\"Vector_278\">\n<path d=\"M170.577 117.938H165.418V125.8H170.577V117.938Z\" fill=\"white\"/>\n<path d=\"M170.577 117.938H165.418V125.8H170.577V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_279\">\n<path d=\"M138.903 117.938H133.744V125.8H138.903V117.938Z\" fill=\"white\"/>\n<path d=\"M138.903 117.938H133.744V125.8H138.903V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_280\">\n<path d=\"M126.786 117.938H121.627V125.8H126.786V117.938Z\" fill=\"white\"/>\n<path d=\"M126.786 117.938H121.627V125.8H126.786V117.938Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_281\">\n<path d=\"M133.749 117.938H126.786V125.8H133.749V117.938Z\" fill=\"white\"/>\n<path d=\"M133.749 117.938H126.786V125.8H133.749V117.938Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_282\">\n<path d=\"M158.476 117.946H153.317V125.809H158.476V117.946Z\" fill=\"white\"/>\n<path d=\"M158.476 117.946H153.317V125.809H158.476V117.946Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_283\">\n<path d=\"M165.422 117.946H158.485V125.809H165.422V117.946Z\" fill=\"white\"/>\n<path d=\"M165.422 117.946H158.485V125.809H165.422V117.946Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n</g>\n</g>\n<g id=\"Tree\">\n<g id=\"Vector_284\">\n<path d=\"M82.1082 62.9994C83.1949 66.5107 84.3987 69.9986 85.3383 73.5419C86.6742 78.5767 87.8142 83.6541 88.7453 87.5021C90.5137 80.9119 92.6082 73.103 94.7026 65.2941C95.003 65.309 95.3013 65.3261 95.6018 65.341C95.5975 66.6556 95.9853 68.0874 95.5293 69.2657C91.3319 80.147 90.5691 91.2968 91.954 102.638C92.0308 103.273 92.2864 103.893 92.5549 104.873C94.4853 102.981 96.1451 101.358 97.8027 99.7321C98.0605 99.9175 98.3184 100.105 98.5762 100.29C97.2743 101.98 96.128 103.787 94.6302 105.325C92.6827 107.326 92.4526 109.584 92.67 112.018C93.0194 115.938 93.3305 119.863 93.7076 123.781C94.057 127.412 93.9484 127.52 89.5549 126.945C89.1906 122.579 88.8241 118.175 88.4534 113.771C88.3809 112.917 88.1487 112.054 88.2318 111.214C89.133 102.05 82.6622 96.3572 76.0273 90.7727C74.5337 89.5156 72.7375 88.544 71.3398 87.1718C79.8646 88.8956 83.4441 95.7478 88.6579 101.015C87.3944 93.4871 86.3206 86.1512 84.8738 78.8729C84.1451 75.2039 82.6579 71.6584 81.6736 68.0214C81.2304 66.3893 81.1792 64.6741 80.9513 62.9951C81.3369 62.9951 81.7226 62.9951 82.1082 62.9972V62.9994Z\" fill=\"white\"/>\n<path d=\"M82.1082 62.9994C83.1949 66.5107 84.3987 69.9986 85.3383 73.5419C86.6742 78.5767 87.8142 83.6541 88.7453 87.5021C90.5137 80.9119 92.6082 73.103 94.7026 65.2941C95.003 65.309 95.3013 65.3261 95.6018 65.341C95.5975 66.6556 95.9853 68.0874 95.5293 69.2657C91.3319 80.147 90.5691 91.2968 91.954 102.638C92.0308 103.273 92.2864 103.893 92.5549 104.873C94.4853 102.981 96.1451 101.358 97.8027 99.7321C98.0605 99.9175 98.3184 100.105 98.5762 100.29C97.2743 101.98 96.128 103.787 94.6302 105.325C92.6827 107.326 92.4526 109.584 92.67 112.018C93.0194 115.938 93.3305 119.863 93.7076 123.781C94.057 127.412 93.9484 127.52 89.5549 126.945C89.1906 122.579 88.8241 118.175 88.4534 113.771C88.3809 112.917 88.1487 112.054 88.2318 111.214C89.133 102.05 82.6622 96.3572 76.0273 90.7727C74.5337 89.5156 72.7375 88.544 71.3398 87.1718C79.8646 88.8956 83.4441 95.7478 88.6579 101.015C87.3944 93.4871 86.3206 86.1512 84.8738 78.8729C84.1451 75.2039 82.6579 71.6584 81.6736 68.0214C81.2304 66.3893 81.1792 64.6741 80.9513 62.9951C81.3369 62.9951 81.7226 62.9951 82.1082 62.9972V62.9994Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_285\">\n<path d=\"M96.5969 84.7475C99.5586 82.9833 102.812 82.8895 107.039 85.7126C111.267 88.5379 112.159 90.415 112.413 91.6657C112.666 92.9164 114.588 93.7027 114.068 96.2041C113.549 98.7034 108.573 101.348 105.345 101.65C102.12 101.955 101.444 101.639 97.6133 101.004C93.7823 100.37 90.7056 99.4235 89.3036 96.2936C87.9017 93.1636 93.4627 86.6139 96.5991 84.7475H96.5969Z\" fill=\"white\"/>\n<path d=\"M96.5969 84.7475C99.5586 82.9833 102.812 82.8895 107.039 85.7126C111.267 88.5379 112.159 90.415 112.413 91.6657C112.666 92.9164 114.588 93.7027 114.068 96.2041C113.549 98.7034 108.573 101.348 105.345 101.65C102.12 101.955 101.444 101.639 97.6133 101.004C93.7823 100.37 90.7056 99.4235 89.3036 96.2936C87.9017 93.1636 93.4627 86.6139 96.5991 84.7475H96.5969Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_286\">\n<path d=\"M65.257 75.6538C68.6597 73.9919 72.4011 73.9024 77.2612 76.5722C82.1212 79.2398 83.1482 81.0125 83.4401 82.195C83.732 83.3754 85.9437 84.119 85.3449 86.4777C84.7484 88.8363 79.0296 91.3271 75.3223 91.6126C71.6128 91.8981 70.8372 91.5998 66.4331 90.9989C62.029 90.396 58.4921 89.5032 56.877 86.548C55.262 83.5927 61.6519 77.4159 65.257 75.656V75.6538Z\" fill=\"white\"/>\n<path d=\"M65.257 75.6538C68.6597 73.9919 72.4011 73.9024 77.2612 76.5722C82.1212 79.2398 83.1482 81.0125 83.4401 82.195C83.732 83.3754 85.9437 84.119 85.3449 86.4777C84.7484 88.8363 79.0296 91.3271 75.3223 91.6126C71.6128 91.8981 70.8372 91.5998 66.4331 90.9989C62.029 90.396 58.4921 89.5032 56.877 86.548C55.262 83.5927 61.6519 77.4159 65.257 75.656V75.6538Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_287\">\n<path d=\"M81.4753 52.7554C74.5101 56.3072 70.172 58.0373 68.3418 59.859C66.5115 61.6808 62.1799 66.9797 64.66 70.8043C67.1401 74.6288 67.9625 77.6203 74.9341 77.3071C81.9078 76.9939 84.7309 76.0053 90.3751 76.5188C96.0171 77.0322 101.005 74.5053 102.17 73.2887C103.336 72.072 106.837 66.4385 102.202 61.4443C97.5682 56.4521 87.6265 49.619 81.4753 52.7554Z\" fill=\"white\"/>\n<path d=\"M81.4753 52.7554C74.5101 56.3072 70.172 58.0373 68.3418 59.859C66.5115 61.6808 62.1799 66.9797 64.66 70.8043C67.1401 74.6288 67.9625 77.6203 74.9341 77.3071C81.9078 76.9939 84.7309 76.0053 90.3751 76.5188C96.0171 77.0322 101.005 74.5053 102.17 73.2887C103.336 72.072 106.837 66.4385 102.202 61.4443C97.5682 56.4521 87.6265 49.619 81.4753 52.7554Z\" fill=\"#206095\" fill-opacity=\"0.6\"/>\n</g>\n<g id=\"Vector_288\">\n<path d=\"M94.7559 54.5452C98.4888 51.6326 102.586 51.4706 107.909 56.1283C113.231 60.7859 114.354 63.8839 114.671 65.9486C114.989 68.0132 117.409 69.3086 116.753 73.4357C116.095 77.5607 109.824 81.9286 105.759 82.4336C101.693 82.9385 100.843 82.4208 96.0194 81.3746C91.1955 80.3285 87.3198 78.7709 85.5556 73.6083C83.7914 68.4436 90.8056 57.6304 94.758 54.5452H94.7559Z\" fill=\"white\"/>\n<path d=\"M94.7559 54.5452C98.4888 51.6326 102.586 51.4706 107.909 56.1283C113.231 60.7859 114.354 63.8839 114.671 65.9486C114.989 68.0132 117.409 69.3086 116.753 73.4357C116.095 77.5607 109.824 81.9286 105.759 82.4336C101.693 82.9385 100.843 82.4208 96.0194 81.3746C91.1955 80.3285 87.3198 78.7709 85.5556 73.6083C83.7914 68.4436 90.8056 57.6304 94.758 54.5452H94.7559Z\" fill=\"#206095\" fill-opacity=\"0.5\"/>\n</g>\n<g id=\"Vector_289\">\n<path d=\"M98.0287 128.111C96.3092 127.772 96.305 126.155 94.349 126.33C93.6097 126.396 93.158 126.671 92.4612 126.594C91.8945 126.532 91.1232 125.328 88.9733 125.887C87.3775 126.302 87.8142 127.131 86.7937 127.389C85.7049 127.666 84.6353 128.047 83.5572 128.384C83.5721 128.463 83.587 129.453 83.5998 129.53C88.6346 129.53 95.359 129.53 100.392 129.53C100.313 129.066 98.2737 128.158 98.0266 128.109L98.0287 128.111Z\" fill=\"white\"/>\n<path d=\"M98.0287 128.111C96.3092 127.772 96.305 126.155 94.349 126.33C93.6097 126.396 93.158 126.671 92.4612 126.594C91.8945 126.532 91.1232 125.328 88.9733 125.887C87.3775 126.302 87.8142 127.131 86.7937 127.389C85.7049 127.666 84.6353 128.047 83.5572 128.384C83.5721 128.463 83.587 129.453 83.5998 129.53C88.6346 129.53 95.359 129.53 100.392 129.53C100.313 129.066 98.2737 128.158 98.0266 128.109L98.0287 128.111Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n</g>\n<g id=\"Tree_2\">\n<g id=\"Vector_290\">\n<path d=\"M491.504 67.6656C490.493 70.9307 489.374 74.174 488.5 77.4688C487.258 82.1505 486.198 86.8719 485.332 90.45C483.688 84.322 481.74 77.0607 479.792 69.7994C479.513 69.8133 479.236 69.8291 478.956 69.843C478.96 71.0654 478.6 72.3968 479.024 73.4925C482.927 83.6107 483.636 93.9786 482.348 104.525C482.277 105.115 482.039 105.692 481.789 106.603C479.994 104.844 478.451 103.334 476.91 101.822C476.67 101.995 476.43 102.169 476.19 102.342C477.401 103.913 478.467 105.593 479.86 107.023C481.671 108.884 481.885 110.984 481.682 113.246C481.358 116.892 481.068 120.541 480.718 124.185C480.393 127.561 480.494 127.662 484.579 127.127C484.918 123.067 485.259 118.972 485.603 114.877C485.671 114.082 485.887 113.28 485.809 112.499C484.971 103.978 490.988 98.6841 497.158 93.4912C498.547 92.3223 500.217 91.4189 501.517 90.1429C493.59 91.7458 490.261 98.1175 485.413 103.015C486.588 96.0154 487.587 89.1939 488.932 82.4259C489.609 79.0142 490.992 75.7174 491.908 72.3354C492.32 70.8178 492.367 69.2229 492.579 67.6616C492.221 67.6616 491.862 67.6616 491.504 67.6636V67.6656Z\" fill=\"white\"/>\n<path d=\"M491.504 67.6656C490.493 70.9307 489.374 74.174 488.5 77.4688C487.258 82.1505 486.198 86.8719 485.332 90.45C483.688 84.322 481.74 77.0607 479.792 69.7994C479.513 69.8133 479.236 69.8291 478.956 69.843C478.96 71.0654 478.6 72.3968 479.024 73.4925C482.927 83.6107 483.636 93.9786 482.348 104.525C482.277 105.115 482.039 105.692 481.789 106.603C479.994 104.844 478.451 103.334 476.91 101.822C476.67 101.995 476.43 102.169 476.19 102.342C477.401 103.913 478.467 105.593 479.86 107.023C481.671 108.884 481.885 110.984 481.682 113.246C481.358 116.892 481.068 120.541 480.718 124.185C480.393 127.561 480.494 127.662 484.579 127.127C484.918 123.067 485.259 118.972 485.603 114.877C485.671 114.082 485.887 113.28 485.809 112.499C484.971 103.978 490.988 98.6841 497.158 93.4912C498.547 92.3223 500.217 91.4189 501.517 90.1429C493.59 91.7458 490.261 98.1175 485.413 103.015C486.588 96.0154 487.587 89.1939 488.932 82.4259C489.609 79.0142 490.992 75.7174 491.908 72.3354C492.32 70.8178 492.367 69.2229 492.579 67.6616C492.221 67.6616 491.862 67.6616 491.504 67.6636V67.6656Z\" fill=\"#206095\" fill-opacity=\"0.4\"/>\n</g>\n<g id=\"Vector_291\">\n<path d=\"M478.031 87.8881C475.277 86.2476 472.252 86.1604 468.321 88.7856C464.39 91.4127 463.56 93.1582 463.324 94.3212C463.088 95.4842 461.301 96.2153 461.785 98.5413C462.268 100.865 466.894 103.324 469.896 103.605C472.896 103.889 473.524 103.595 477.086 103.005C480.648 102.415 483.509 101.535 484.813 98.6245C486.117 95.714 480.945 89.6237 478.029 87.8881H478.031Z\" fill=\"white\"/>\n<path d=\"M478.031 87.8881C475.277 86.2476 472.252 86.1604 468.321 88.7856C464.39 91.4127 463.56 93.1582 463.324 94.3212C463.088 95.4842 461.301 96.2153 461.785 98.5413C462.268 100.865 466.894 103.324 469.896 103.605C472.896 103.889 473.524 103.595 477.086 103.005C480.648 102.415 483.509 101.535 484.813 98.6245C486.117 95.714 480.945 89.6237 478.029 87.8881H478.031Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_292\">\n<path d=\"M507.173 79.4324C504.009 77.887 500.53 77.8038 496.01 80.2863C491.491 82.7669 490.536 84.4153 490.265 85.5149C489.993 86.6125 487.937 87.3039 488.494 89.4972C489.048 91.6904 494.366 94.0065 497.813 94.272C501.263 94.5375 501.984 94.2601 506.079 93.7014C510.174 93.1407 513.463 92.3106 514.965 89.5626C516.467 86.8146 510.525 81.0709 507.173 79.4344V79.4324Z\" fill=\"white\"/>\n<path d=\"M507.173 79.4324C504.009 77.887 500.53 77.8038 496.01 80.2863C491.491 82.7669 490.536 84.4153 490.265 85.5149C489.993 86.6125 487.937 87.3039 488.494 89.4972C489.048 91.6904 494.366 94.0065 497.813 94.272C501.263 94.5375 501.984 94.2601 506.079 93.7014C510.174 93.1407 513.463 92.3106 514.965 89.5626C516.467 86.8146 510.525 81.0709 507.173 79.4344V79.4324Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_293\">\n<path d=\"M492.092 58.1396C498.569 61.4424 502.603 63.0512 504.305 64.7451C506.007 66.4391 510.034 71.3665 507.728 74.9229C505.422 78.4792 504.657 81.2609 498.175 80.9696C491.69 80.6784 489.065 79.7591 483.816 80.2366C478.57 80.7141 473.932 78.3643 472.848 77.233C471.764 76.1017 468.509 70.8633 472.818 66.2192C477.128 61.5771 486.372 55.2232 492.092 58.1396Z\" fill=\"white\"/>\n<path d=\"M492.092 58.1396C498.569 61.4424 502.603 63.0512 504.305 64.7451C506.007 66.4391 510.034 71.3665 507.728 74.9229C505.422 78.4792 504.657 81.2609 498.175 80.9696C491.69 80.6784 489.065 79.7591 483.816 80.2366C478.57 80.7141 473.932 78.3643 472.848 77.233C471.764 76.1017 468.509 70.8633 472.818 66.2192C477.128 61.5771 486.372 55.2232 492.092 58.1396Z\" fill=\"#206095\" fill-opacity=\"0.75\"/>\n</g>\n<g id=\"Vector_294\">\n<path d=\"M479.743 59.8037C476.271 57.0953 472.461 56.9447 467.512 61.2757C462.563 65.6068 461.519 68.4875 461.224 70.4073C460.929 72.3272 458.678 73.5318 459.288 77.3695C459.9 81.2052 465.731 85.2668 469.511 85.7363C473.292 86.2059 474.082 85.7244 478.568 84.7516C483.053 83.7788 486.657 82.3305 488.298 77.53C489.938 72.7274 483.416 62.6725 479.741 59.8037H479.743Z\" fill=\"white\"/>\n<path d=\"M479.743 59.8037C476.271 57.0953 472.461 56.9447 467.512 61.2757C462.563 65.6068 461.519 68.4875 461.224 70.4073C460.929 72.3272 458.678 73.5318 459.288 77.3695C459.9 81.2052 465.731 85.2668 469.511 85.7363C473.292 86.2059 474.082 85.7244 478.568 84.7516C483.053 83.7788 486.657 82.3305 488.298 77.53C489.938 72.7274 483.416 62.6725 479.741 59.8037H479.743Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n<g id=\"Vector_295\">\n<path d=\"M476.699 128.211C478.298 127.896 478.302 126.392 480.121 126.554C480.808 126.616 481.228 126.871 481.876 126.8C482.403 126.743 483.12 125.623 485.12 126.142C486.603 126.529 486.197 127.299 487.146 127.539C488.159 127.797 489.153 128.151 490.156 128.464C490.142 128.538 490.128 129.459 490.116 129.53C485.435 129.53 479.182 129.53 474.502 129.53C474.575 129.098 476.471 128.254 476.701 128.209L476.699 128.211Z\" fill=\"white\"/>\n<path d=\"M476.699 128.211C478.298 127.896 478.302 126.392 480.121 126.554C480.808 126.616 481.228 126.871 481.876 126.8C482.403 126.743 483.12 125.623 485.12 126.142C486.603 126.529 486.197 127.299 487.146 127.539C488.159 127.797 489.153 128.151 490.156 128.464C490.142 128.538 490.128 129.459 490.116 129.53C485.435 129.53 479.182 129.53 474.502 129.53C474.575 129.098 476.471 128.254 476.701 128.209L476.699 128.211Z\" fill=\"#206095\" fill-opacity=\"0.3\"/>\n</g>\n</g>\n<g id=\"Icons\">\n<g id=\"Group 382\">\n<path id=\"Vector 1\" d=\"M73.3799 142.105H627.844\" stroke=\"#206095\" stroke-width=\"3\" stroke-dasharray=\"6 6\"/>\n<g id=\"Ellipse 16\">\n<circle cx=\"65.6123\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"65.6123\" cy=\"142.105\" r=\"33.5\" fill=\"#FBC900\" fill-opacity=\"0.4\"/>\n<circle cx=\"65.6123\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 17\">\n<circle cx=\"207.807\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"207.807\" cy=\"142.105\" r=\"33.5\" fill=\"#FBC900\" fill-opacity=\"0.4\"/>\n<circle cx=\"207.807\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 18\">\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" fill=\"#FBC900\" fill-opacity=\"0.4\"/>\n<circle cx=\"350\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 19\">\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" fill=\"#FBC900\" fill-opacity=\"0.4\"/>\n<circle cx=\"492.194\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n<g id=\"Ellipse 20\">\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" fill=\"white\"/>\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" fill=\"#FBC900\" fill-opacity=\"0.4\"/>\n<circle cx=\"634.388\" cy=\"142.105\" r=\"33.5\" stroke=\"#206095\" stroke-width=\"3\"/>\n</g>\n</g>\n<g id=\"Artwork 64x64_2\">\n<path id=\"Vector_296\" d=\"M479.913 124.463V159.748C479.913 160.108 480.056 160.453 480.311 160.708C480.565 160.962 480.91 161.105 481.27 161.105H505.699C506.059 161.105 506.404 160.962 506.658 160.708C506.913 160.453 507.056 160.108 507.056 159.748V131.248L498.913 123.105H481.27C480.91 123.105 480.565 123.248 480.311 123.503C480.056 123.757 479.913 124.103 479.913 124.463Z\" fill=\"#003C57\"/>\n<path id=\"Vector_297\" d=\"M500.27 131.248H507.056L498.913 123.105V129.891C498.913 130.251 499.056 130.596 499.311 130.851C499.565 131.105 499.91 131.248 500.27 131.248Z\" fill=\"#4D7789\"/>\n<path id=\"Vector_298\" d=\"M496.701 136.5C494.983 135.609 493.064 135.176 491.131 135.243C489.197 135.31 487.313 135.873 485.66 136.88C485.51 136.977 485.404 137.128 485.364 137.302C485.325 137.476 485.356 137.658 485.45 137.81C485.497 137.886 485.559 137.952 485.631 138.004C485.704 138.056 485.786 138.093 485.873 138.113C485.96 138.133 486.05 138.136 486.138 138.121C486.226 138.106 486.311 138.074 486.386 138.027C487.837 137.133 489.497 136.634 491.201 136.58C492.904 136.526 494.592 136.92 496.097 137.722C498.974 139.133 500.982 141.617 501.206 144.039C501.223 144.207 501.302 144.363 501.428 144.476C501.553 144.589 501.716 144.651 501.885 144.65H501.953C502.132 144.633 502.297 144.545 502.411 144.407C502.526 144.268 502.58 144.089 502.563 143.91C502.306 141.026 499.985 138.122 496.701 136.5Z\" fill=\"white\"/>\n<path id=\"Vector_299\" d=\"M489.631 134.173C494.028 133.495 498.086 134.852 500.766 137.953C500.83 138.026 500.91 138.085 500.999 138.124C501.088 138.164 501.184 138.184 501.282 138.184C501.411 138.182 501.537 138.144 501.645 138.074C501.753 138.003 501.839 137.903 501.893 137.786C501.946 137.668 501.965 137.538 501.947 137.41C501.929 137.282 501.875 137.162 501.791 137.064C498.798 133.596 494.292 132.056 489.414 132.836C489.324 132.85 489.239 132.881 489.162 132.928C489.085 132.975 489.018 133.037 488.965 133.11C488.911 133.182 488.873 133.265 488.852 133.352C488.83 133.44 488.826 133.531 488.84 133.62C488.854 133.709 488.885 133.795 488.932 133.872C488.979 133.949 489.04 134.016 489.113 134.069C489.186 134.122 489.269 134.161 489.356 134.182C489.444 134.203 489.535 134.207 489.624 134.194L489.631 134.173Z\" fill=\"white\"/>\n<path id=\"Vector_300\" d=\"M497.095 140.171C494.055 137.891 491.286 137.851 489.495 138.224C487.262 138.685 485.471 140.009 484.86 141.074C484.816 141.152 484.787 141.238 484.776 141.327C484.765 141.416 484.771 141.506 484.795 141.593C484.819 141.679 484.86 141.76 484.915 141.83C484.971 141.901 485.04 141.96 485.118 142.004C485.272 142.086 485.452 142.106 485.62 142.059C485.788 142.012 485.931 141.902 486.021 141.752C486.95 140.586 488.276 139.804 489.746 139.554C491.266 139.242 493.627 139.276 496.26 141.257C501.173 144.935 498.975 150.934 497.108 153.587C497.057 153.66 497.02 153.743 497.001 153.831C496.981 153.918 496.979 154.009 496.995 154.097C497.011 154.186 497.044 154.27 497.092 154.345C497.141 154.421 497.204 154.486 497.278 154.537C497.352 154.59 497.435 154.627 497.523 154.647C497.612 154.667 497.703 154.669 497.792 154.654C497.881 154.638 497.967 154.604 498.043 154.555C498.119 154.506 498.184 154.442 498.235 154.367C502.442 148.348 500.59 142.784 497.095 140.171Z\" fill=\"white\"/>\n<path id=\"Vector_301\" d=\"M497.488 145.776C497.256 144.906 496.839 144.096 496.265 143.401C495.691 142.707 494.974 142.144 494.163 141.753C493.163 141.232 492.043 140.987 490.917 141.043C489.791 141.099 488.701 141.454 487.757 142.071C486.851 142.804 486.074 143.682 485.457 144.67C485.301 144.907 485.131 145.133 484.948 145.349C484.84 145.483 484.787 145.654 484.8 145.826C484.813 145.997 484.89 146.158 485.017 146.275C485.144 146.391 485.311 146.455 485.483 146.453C485.656 146.452 485.821 146.384 485.946 146.265C486.175 145.993 486.388 145.708 486.583 145.41C487.108 144.548 487.776 143.782 488.558 143.144C489.296 142.675 490.144 142.408 491.017 142.371C491.89 142.334 492.758 142.528 493.532 142.933C494.182 143.231 494.758 143.669 495.219 144.216C495.68 144.763 496.015 145.404 496.199 146.095C496.64 147.914 496.056 151.673 492.643 154.591C492.575 154.649 492.52 154.72 492.479 154.799C492.439 154.879 492.415 154.965 492.408 155.054C492.401 155.143 492.411 155.232 492.439 155.317C492.467 155.402 492.511 155.48 492.568 155.548C492.632 155.622 492.711 155.682 492.8 155.723C492.889 155.764 492.986 155.785 493.084 155.785C493.246 155.785 493.402 155.728 493.525 155.623C497.128 152.521 498.112 148.341 497.488 145.776Z\" fill=\"white\"/>\n<path id=\"Vector_302\" d=\"M492.046 144.141C491.329 143.939 490.563 143.993 489.881 144.296C489.2 144.598 488.645 145.129 488.314 145.797C487.425 147.595 486.835 148.43 485.498 148.952C485.326 149.022 485.189 149.156 485.116 149.327C485.044 149.497 485.042 149.69 485.111 149.862C485.181 150.034 485.315 150.171 485.486 150.243C485.656 150.316 485.849 150.318 486.021 150.249C487.914 149.509 488.681 148.213 489.556 146.435C489.757 146.046 490.087 145.74 490.489 145.568C490.892 145.396 491.341 145.369 491.761 145.492C492.238 145.582 492.669 145.834 492.981 146.205C493.294 146.575 493.469 147.043 493.478 147.527C493.478 150.466 490.173 153.255 489.291 153.743C489.169 153.818 489.074 153.929 489.019 154.061C488.964 154.194 488.952 154.34 488.985 154.479C489.018 154.619 489.094 154.744 489.203 154.837C489.312 154.93 489.447 154.987 489.59 154.999C489.703 154.999 489.815 154.971 489.916 154.917C491.171 154.239 494.808 151.07 494.808 147.507C494.806 146.714 494.531 145.945 494.027 145.332C493.524 144.718 492.824 144.298 492.046 144.141Z\" fill=\"white\"/>\n<path id=\"Vector_303\" d=\"M491.978 147.975C492.029 147.807 492.013 147.626 491.933 147.469C491.853 147.313 491.716 147.194 491.55 147.136C491.383 147.079 491.202 147.089 491.042 147.163C490.883 147.237 490.759 147.37 490.696 147.534C490.006 149.344 488.627 150.808 486.862 151.605C486.715 151.664 486.593 151.771 486.517 151.91C486.44 152.048 486.415 152.209 486.445 152.364C486.475 152.52 486.558 152.66 486.68 152.76C486.802 152.861 486.955 152.916 487.113 152.915C487.199 152.915 487.284 152.899 487.364 152.868C488.42 152.401 489.373 151.727 490.165 150.887C490.957 150.047 491.574 149.057 491.978 147.975Z\" fill=\"white\"/>\n</g>\n<g id=\"Artwork 64x64_3\">\n<path id=\"Vector_304\" d=\"M634.346 155.445H634.159V153.695C634.159 153.463 634.07 153.24 633.911 153.076C633.752 152.912 633.537 152.82 633.312 152.82H619.748C619.523 152.82 619.308 152.912 619.149 153.076C618.99 153.24 618.901 153.463 618.901 153.695V155.445H618.714C618.404 155.444 618.097 155.506 617.811 155.628C617.524 155.75 617.264 155.929 617.045 156.155C616.826 156.381 616.653 156.65 616.535 156.945C616.417 157.241 616.356 157.558 616.357 157.878V158.945C616.357 159.177 616.447 159.4 616.606 159.564C616.765 159.728 616.98 159.82 617.205 159.82H635.855C636.08 159.82 636.295 159.728 636.454 159.564C636.613 159.4 636.703 159.177 636.703 158.945V157.878C636.704 157.558 636.644 157.241 636.526 156.945C636.407 156.65 636.234 156.381 636.015 156.155C635.796 155.929 635.536 155.75 635.249 155.628C634.963 155.506 634.656 155.444 634.346 155.445Z\" fill=\"#206095\"/>\n<path id=\"Vector_305\" d=\"M656.548 155.594L639.772 138.268C639.568 138.059 639.317 137.907 639.041 137.826C638.765 137.745 638.474 137.737 638.195 137.804L634.278 133.761L637.296 130.646C637.597 130.333 637.766 129.91 637.766 129.469C637.766 129.028 637.597 128.605 637.296 128.292L637.237 128.231L637.83 127.609C637.988 127.772 638.175 127.901 638.381 127.989C638.586 128.077 638.807 128.123 639.03 128.123C639.253 128.123 639.473 128.077 639.679 127.989C639.885 127.901 640.072 127.772 640.229 127.609L640.831 126.997C640.989 126.834 641.114 126.641 641.199 126.429C641.285 126.216 641.329 125.989 641.329 125.759C641.329 125.529 641.285 125.301 641.199 125.088C641.114 124.876 640.989 124.683 640.831 124.52L634.838 118.334C634.68 118.171 634.493 118.042 634.288 117.954C634.082 117.866 633.861 117.82 633.638 117.82C633.416 117.82 633.195 117.866 632.989 117.954C632.783 118.042 632.596 118.171 632.439 118.334L631.837 118.946C631.679 119.109 631.554 119.302 631.469 119.514C631.384 119.727 631.34 119.954 631.34 120.184C631.34 120.414 631.384 120.642 631.469 120.855C631.554 121.067 631.679 121.26 631.837 121.423L631.244 122.044L631.176 121.983C631.027 121.827 630.851 121.703 630.656 121.619C630.461 121.535 630.251 121.491 630.04 121.491C629.828 121.491 629.619 121.535 629.424 121.619C629.229 121.703 629.052 121.827 628.904 121.983L620.427 130.733C620.276 130.886 620.156 131.069 620.075 131.27C619.993 131.471 619.951 131.688 619.951 131.906C619.951 132.124 619.993 132.34 620.075 132.541C620.156 132.743 620.276 132.925 620.427 133.078L620.486 133.148L619.884 133.761C619.727 133.598 619.54 133.469 619.334 133.381C619.128 133.293 618.908 133.248 618.685 133.248C618.462 133.248 618.241 133.293 618.035 133.381C617.83 133.469 617.643 133.598 617.485 133.761L616.892 134.382C616.734 134.545 616.609 134.738 616.524 134.95C616.438 135.163 616.395 135.39 616.395 135.62C616.395 135.85 616.438 136.078 616.524 136.291C616.609 136.503 616.734 136.696 616.892 136.859L622.885 143.045C623.043 143.208 623.23 143.337 623.435 143.425C623.641 143.513 623.862 143.559 624.085 143.559C624.307 143.559 624.528 143.513 624.734 143.425C624.94 143.337 625.127 143.208 625.284 143.045L625.878 142.424C626.035 142.262 626.16 142.069 626.246 141.856C626.331 141.644 626.375 141.416 626.375 141.186C626.375 140.956 626.331 140.728 626.246 140.516C626.16 140.303 626.035 140.11 625.878 139.948L626.479 139.335L626.539 139.396C626.842 139.707 627.252 139.881 627.679 139.881C628.106 139.881 628.516 139.707 628.819 139.396L631.913 136.202L635.787 140.201C635.696 140.505 635.687 140.828 635.76 141.136C635.833 141.444 635.986 141.726 636.203 141.952L652.988 159.269C653.145 159.432 653.332 159.561 653.538 159.649C653.744 159.737 653.964 159.782 654.187 159.782C654.41 159.782 654.631 159.737 654.836 159.649C655.042 159.561 655.229 159.432 655.387 159.269L656.548 158.07C656.706 157.908 656.831 157.715 656.916 157.502C657.001 157.29 657.045 157.062 657.045 156.832C657.045 156.602 657.001 156.374 656.916 156.162C656.831 155.949 656.706 155.756 656.548 155.594Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Artwork 64x64_4\">\n<g id=\"Group 384\">\n<path id=\"Vector_306\" d=\"M52.8686 119.407C50.5757 119.407 48.3342 120.087 46.4277 121.361C44.5213 122.634 43.0353 124.445 42.1579 126.563C41.2804 128.682 41.0508 131.013 41.4982 133.262C41.9455 135.51 43.0496 137.576 44.671 139.198C46.2923 140.819 48.358 141.923 50.6069 142.37C52.8557 142.818 55.1867 142.588 57.3051 141.711C59.4235 140.833 61.2341 139.347 62.5079 137.441C63.7818 135.534 64.4618 133.293 64.4618 131C64.4618 127.925 63.2403 124.976 61.0662 122.802C58.892 120.628 55.9433 119.407 52.8686 119.407Z\" fill=\"white\"/>\n<path id=\"Vector_307\" d=\"M52.8437 137.128C53.7583 137.128 54.4998 136.386 54.4998 135.472C54.4998 134.557 53.7583 133.815 52.8437 133.815C51.929 133.815 51.1875 134.557 51.1875 135.472C51.1875 136.386 51.929 137.128 52.8437 137.128Z\" fill=\"#206095\"/>\n<path id=\"Vector_308\" d=\"M54.3588 131.973C54.3524 132.079 54.306 132.178 54.2291 132.25C54.1521 132.322 54.0504 132.362 53.9447 132.362H51.7917C51.6861 132.362 51.5844 132.322 51.5074 132.25C51.4304 132.178 51.384 132.079 51.3777 131.973L50.9636 125.29C50.9602 125.234 50.9684 125.177 50.9877 125.124C51.007 125.071 51.037 125.023 51.0758 124.981C51.1146 124.94 51.1614 124.908 51.2133 124.885C51.2652 124.863 51.3212 124.851 51.3777 124.852H54.3422C54.3987 124.851 54.4547 124.863 54.5066 124.885C54.5585 124.908 54.6053 124.94 54.6441 124.981C54.6829 125.023 54.7129 125.071 54.7322 125.124C54.7515 125.177 54.7597 125.234 54.7563 125.29L54.3588 131.973Z\" fill=\"#206095\"/>\n</g>\n<path id=\"Vector_309\" d=\"M70.9162 146.415H65.3567C61.6706 146.415 58.1354 147.879 55.5289 150.485C52.9223 153.092 51.458 156.627 51.458 160.313H84.815C84.815 158.488 84.4555 156.681 83.757 154.994C83.0585 153.308 82.0347 151.776 80.7441 150.485C79.4535 149.195 77.9213 148.171 76.235 147.473C74.5488 146.774 72.7414 146.415 70.9162 146.415Z\" fill=\"#003C57\"/>\n<path id=\"Vector_310\" d=\"M68.1361 143.635C72.7418 143.635 76.4754 139.901 76.4754 135.295C76.4754 130.69 72.7418 126.956 68.1361 126.956C63.5305 126.956 59.7969 130.69 59.7969 135.295C59.7969 139.901 63.5305 143.635 68.1361 143.635Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Artwork 64x64_5\">\n<path id=\"Vector_311\" d=\"M194.282 124.463V159.748C194.282 160.108 194.425 160.453 194.68 160.708C194.934 160.962 195.279 161.105 195.639 161.105H220.068C220.428 161.105 220.773 160.962 221.028 160.708C221.282 160.453 221.425 160.108 221.425 159.748V131.248L213.282 123.105H195.639C195.279 123.105 194.934 123.248 194.68 123.503C194.425 123.757 194.282 124.103 194.282 124.463Z\" fill=\"#003C57\"/>\n<path id=\"Vector_312\" d=\"M214.639 131.248H221.425L213.282 123.105V129.891C213.282 130.251 213.425 130.596 213.68 130.851C213.934 131.105 214.279 131.248 214.639 131.248Z\" fill=\"#4D7789\"/>\n<path id=\"Vector_313\" d=\"M213.283 151.266H199.711C199.441 151.266 199.182 151.159 198.991 150.968C198.801 150.777 198.693 150.518 198.693 150.248C198.693 149.978 198.801 149.719 198.991 149.529C199.182 149.338 199.441 149.23 199.711 149.23H213.283C213.553 149.23 213.811 149.338 214.002 149.529C214.193 149.719 214.301 149.978 214.301 150.248C214.301 150.518 214.193 150.777 214.002 150.968C213.811 151.159 213.553 151.266 213.283 151.266Z\" fill=\"white\"/>\n<path id=\"Vector_314\" d=\"M213.283 146.516H199.711C199.441 146.516 199.182 146.409 198.991 146.218C198.801 146.027 198.693 145.768 198.693 145.498C198.693 145.228 198.801 144.969 198.991 144.779C199.182 144.588 199.441 144.48 199.711 144.48H213.283C213.553 144.48 213.811 144.588 214.002 144.779C214.193 144.969 214.301 145.228 214.301 145.498C214.301 145.768 214.193 146.027 214.002 146.218C213.811 146.409 213.553 146.516 213.283 146.516Z\" fill=\"white\"/>\n<path id=\"Vector_315\" d=\"M213.283 141.766H199.711C199.441 141.766 199.182 141.659 198.991 141.468C198.801 141.277 198.693 141.018 198.693 140.748C198.693 140.478 198.801 140.219 198.991 140.029C199.182 139.838 199.441 139.73 199.711 139.73H213.283C213.553 139.73 213.811 139.838 214.002 140.029C214.193 140.219 214.301 140.478 214.301 140.748C214.301 141.018 214.193 141.277 214.002 141.468C213.811 141.659 213.553 141.766 213.283 141.766Z\" fill=\"white\"/>\n<path id=\"Vector_316\" d=\"M207.854 137.016H199.711C199.441 137.016 199.182 136.909 198.991 136.718C198.801 136.527 198.693 136.268 198.693 135.998C198.693 135.728 198.801 135.469 198.991 135.279C199.182 135.088 199.441 134.98 199.711 134.98H207.854C208.124 134.98 208.383 135.088 208.574 135.279C208.765 135.469 208.872 135.728 208.872 135.998C208.872 136.268 208.765 136.527 208.574 136.718C208.383 136.909 208.124 137.016 207.854 137.016Z\" fill=\"white\"/>\n<g id=\"Vector_317\">\n<path d=\"M226.406 140.864L215.067 152.203C214.98 152.284 214.876 152.345 214.761 152.379L212.604 152.963C212.546 152.978 212.486 152.977 212.429 152.962C212.372 152.946 212.32 152.916 212.278 152.874C212.236 152.832 212.206 152.78 212.191 152.723C212.175 152.666 212.175 152.606 212.19 152.549L212.766 150.364C212.794 150.247 212.855 150.14 212.943 150.058L224.248 138.713C224.534 138.427 224.922 138.266 225.327 138.266C225.731 138.266 226.119 138.427 226.406 138.713C226.69 138.999 226.849 139.385 226.849 139.788C226.849 140.191 226.69 140.578 226.406 140.864Z\" fill=\"white\"/>\n<path d=\"M226.406 140.864L215.067 152.203C214.98 152.284 214.876 152.345 214.761 152.379L212.604 152.963C212.546 152.978 212.486 152.977 212.429 152.962C212.372 152.946 212.32 152.916 212.278 152.874C212.236 152.832 212.206 152.78 212.191 152.723C212.175 152.666 212.175 152.606 212.19 152.549L212.766 150.364C212.794 150.247 212.855 150.14 212.943 150.058L224.248 138.713C224.534 138.427 224.922 138.266 225.327 138.266C225.731 138.266 226.119 138.427 226.406 138.713C226.69 138.999 226.849 139.385 226.849 139.788C226.849 140.191 226.69 140.578 226.406 140.864Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n<g id=\"Group 386\">\n<g id=\"Artwork 64x64_6\">\n<path id=\"Vector_318\" d=\"M370 133.813V153.813C370 154.874 369.579 155.891 368.828 156.641C368.078 157.392 367.061 157.813 366 157.813H334C332.939 157.813 331.922 157.392 331.172 156.641C330.421 155.891 330 154.874 330 153.813V129.813C330 128.752 330.421 127.735 331.172 126.985C331.922 126.234 332.939 125.813 334 125.813H344.333C344.863 125.81 345.388 125.912 345.878 126.114C346.367 126.315 346.812 126.612 347.187 126.986L350 129.813H366C367.061 129.813 368.078 130.234 368.828 130.985C369.579 131.735 370 132.752 370 133.813Z\" fill=\"#003C57\"/>\n</g>\n<g id=\"Group 385\">\n<path id=\"Vector_319\" d=\"M346.333 145.229H343.667C341.899 145.229 340.203 145.932 338.953 147.182C337.702 148.432 337 150.128 337 151.896H353C353 151.021 352.828 150.154 352.493 149.345C352.157 148.536 351.666 147.801 351.047 147.182C350.428 146.563 349.693 146.072 348.885 145.737C348.076 145.402 347.209 145.229 346.333 145.229Z\" fill=\"white\"/>\n<path id=\"Vector_320\" d=\"M345 143.896C347.209 143.896 349 142.105 349 139.896C349 137.687 347.209 135.896 345 135.896C342.791 135.896 341 137.687 341 139.896C341 142.105 342.791 143.896 345 143.896Z\" fill=\"white\"/>\n</g>\n<g id=\"Union\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M373.813 143.561C374.027 143.363 374.027 143.024 373.813 142.826L366.365 135.947C366.045 135.651 365.526 135.878 365.526 136.314V139.72H359C358.448 139.72 358 140.167 358 140.72V145.667C358 146.219 358.448 146.667 359 146.667H365.526V150.073C365.526 150.509 366.045 150.736 366.365 150.44L373.813 143.561Z\" fill=\"white\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M373.813 143.561C374.027 143.363 374.027 143.024 373.813 142.826L366.365 135.947C366.045 135.651 365.526 135.878 365.526 136.314V139.72H359C358.448 139.72 358 140.167 358 140.72V145.667C358 146.219 358.448 146.667 359 146.667H365.526V150.073C365.526 150.509 366.045 150.736 366.365 150.44L373.813 143.561Z\" fill=\"#206095\" fill-opacity=\"0.7\"/>\n</g>\n</g>\n</g>\n</g>\n</g>\n<g id=\"Title\">\n <rect width=\"700\" height=\"90\" transform=\"translate(0 176.813)\" fill=\"white\"/>\n <rect width=\"700\" height=\"90\" transform=\"translate(0 176.813)\" fill=\"#206095\" fill-opacity=\"0.1\"/>\n <text id=\"Understanding domestic abuse data through the criminal justice system\" fill=\"#222222\" xml:space=\"preserve\" style=\"white-space: pre\" font-family=\"Open Sans\" font-size=\"22\" font-weight=\"bold\" letter-spacing=\"0em\"><tspan x=\"20\" y=\"212.748\">Understanding domestic abuse data through the</tspan><tspan x=\"20\" y=\"243.548\">criminal justice system</tspan></text>\n </g>\n\n</g>\n<defs>\n<clipPath id=\"clip0_1989_41087\">\n<rect width=\"170\" height=\"92\" fill=\"white\" transform=\"translate(307 37.813)\"/>\n</clipPath>\n<clipPath id=\"clip1_1989_41087\">\n<rect width=\"136\" height=\"112\" fill=\"white\" transform=\"matrix(-1 0 0 1 302.045 13.813)\"/>\n</clipPath>\n<clipPath id=\"clip2_1989_41087\">\n<rect width=\"84\" height=\"64\" fill=\"white\" transform=\"translate(100 61.813)\"/>\n</clipPath>\n<clipPath id=\"clip3_1989_41087\">\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(35 814.813)\"/>\n</clipPath>\n</defs>\n</svg>\n<div class=\"commentary\">\n <b>Notes on the data </b><br><br>\n <ul><li>\n Crime Survey for England and Wales (CSEW) data for the year ending March 2023, are not badged as National Statistics. They are based on eight months of data collection because of an error in the survey. Caution should be taken when using these. See section 2.1 of our <a href=\"https://www.ons.gov.uk/peoplepopulationandcommunity/crimeandjustice/methodologies/userguidetocrimestatisticsforenglandandwales#crime-survey-for-england-and-wales-csew\" >User guide to crime statistics for England and Wales: March 2023</a>. \n </li><br><li> \n Police recorded crime data are not designated as National Statistics. \n </li><br><li> \n Police recorded crime data for Devon and Cornwall Police Force Area have not been included for the year ending March 2023 because of issues with their supply of data following the implementation of new force IT systems. \n </li><br><li> \n Data from the Crown Prosecution Service (CPS) are not designated as official statistics. \n </li><br><li> \n In CPS data, a suspect or defendant represents one person (or on occasion “one company”) in a single set of proceedings, which may involve one or more charges. \n </li><br><li> \n A set of proceedings usually relates to an incident or series of related incidents that are the subject of a police file. If a set of proceedings relates to more than one person, then each is counted as a defendant. \n </li><br><li> \n Sometimes one person is involved in several sets of proceedings during the same year: if so, he or she is counted as a suspect or defendant on each occasion. \n </li><br><li> \n CPS data on the number of domestic abuse-related crimes referred by the police to the CPS relies on the police identifying and flagging the cases, by suspect, prior to being referred to the CPS. It also relies on the CPS administrators identifying and flagging those cases on the CPS case management system when they are first registered. \n </li><br><li> \n Total pre-charge decisions data are based on the date the charging advice was completed and provided to the police. Data on pre-charge decisions are also not directly comparable with data on the number of prosecutions. \n </li><br><li> \n CPS data on prosecutions cover domestic abuse-related cases, by suspect or defendant, finalised during that year, so are not directly comparable to data on pre-charge decisions. \n </li></ul>\n\n<br><br>\n<button class=\"button\" type=\"button\" on:click={()=>goTo.set(\"One\")}>◀ Back to start</button>\n<button class=\"button grey\" type=\"button\" on:click={()=>goTo.set(\"Six\")}>Back</button></div>\n<style>\n .button{\n background-color:rgb(15, 130, 67);\n height:40px;\n color:white;\n font-weight:bold;\n font-size:16px;\n border:none;\n padding-left:10px;\n padding-right:10px;\n }\n .grey{\n background-color:#666;\n }\n .source{\n color:grey\n }\n .commentary{\n font-weight:400;\n font-size:18px;\n background-color:rgba(32, 96, 149,0.1);\n padding:20px;\n }\n</style>","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","<script>\nimport One from './One.svelte'\nimport Two from './Two.svelte'\nimport Three from './Three.svelte'\nimport Four from './Four.svelte'\nimport Five from './Five.svelte'\nimport Six from './Six.svelte'\nimport Seven from './Seven.svelte'\nimport {writable} from \"svelte/store\"\nlet components={\nOne:One,\nTwo:Two,\nThree:Three,\nFour:Four,\nFive:Five,\nSix:Six,\nSeven:Seven\n}\n\t\nlet goTo=writable(\"One\")\n\n$: $goTo && window.scrollTo({ top: 0, behavior: 'smooth' });\n</script>\n\n<div class=\"container\" id=\"top\">\n<svelte:component this={components[$goTo]} {goTo}/>\n<!-- <One/>\n<Two/>\n<Three/>\n<Four/>\n<Five/>\n<Six/>\n<Seven/> -->\n</div>\n<style>\n html,body{ scroll-behavior: smooth}\n :global(.source){\n\npadding-left: 25px;\n }\n\n :global(ul){\n list-style-position: outside;\n text-align: left;\n\n }\n</style>","import App from './App.svelte';\n\nvar app = new App({\n\ttarget: document.body\n});\n\nexport default app;"],"names":["noop","run","fn","blank_object","Object","create","run_all","fns","forEach","is_function","thing","safe_not_equal","a","b","subscribe","store","callbacks","unsub","unsubscribe","append","target","node","appendChild","insert","anchor","insertBefore","detach","parentNode","removeChild","element","name","document","createElement","svg_element","createElementNS","text","data","createTextNode","space","listen","event","handler","options","addEventListener","removeEventListener","attr","attribute","value","removeAttribute","getAttribute","setAttribute","set_style","key","important","style","removeProperty","setProperty","construct_svelte_component","component","props","current_component","set_current_component","dirty_components","binding_callbacks","render_callbacks","flush_callbacks","resolved_promise","Promise","resolve","update_scheduled","add_render_callback","push","seen_callbacks","Set","flushidx","flush","saved_component","length","update","$$","e","pop","i","callback","has","add","clear","fragment","before_update","dirty","p","ctx","after_update","outroing","outros","transition_in","block","local","delete","transition_out","o","c","d","create_component","mount_component","customElement","m","new_on_destroy","on_mount","map","filter","on_destroy","destroy_component","detaching","filtered","targets","indexOf","flush_render_callbacks","make_dirty","then","fill","init","instance","create_fragment","not_equal","append_styles","parent_component","bound","on_disconnect","context","Map","skip_bound","root","ready","ret","rest","hydrate","nodes","Array","from","childNodes","children","l","intro","SvelteComponent","$destroy","this","$on","type","index","splice","$set","$$props","obj","$$set","keys","rect38","text3","rect39","text4","svg","g162","g156","g155","g123","g0","path0","path1","g1","path2","path3","path4","path5","path6","path7","path8","path9","path10","g2","path11","path12","path13","path14","path15","path16","path17","path18","path19","path20","path21","path22","path23","path24","path25","path26","path27","path28","path29","g3","path30","path31","path32","path33","path34","path35","path36","path37","path38","path39","path40","path41","path42","path43","path44","path45","path46","path47","path48","g4","path49","path50","path51","path52","path53","path54","path55","path56","path57","g5","path58","path59","path60","path61","path62","path63","path64","path65","path66","g6","path67","path68","path69","path70","path71","path72","path73","path74","path75","path76","path77","path78","path79","path80","g9","g7","path81","path82","g8","path83","path84","g16","g10","path85","path86","g11","path87","path88","g12","path89","path90","g13","path91","path92","g14","path93","path94","g15","path95","path96","g40","g17","path97","path98","path99","g18","path100","path101","path102","path103","path104","path105","path106","path107","path108","path109","path110","path111","path112","g19","path113","path114","path115","path116","g20","path117","path118","g21","path119","path120","g22","path121","path122","path123","g23","path124","path125","g24","path126","path127","g25","path128","path129","g26","path130","path131","g27","path132","path133","g28","path134","path135","g29","path136","path137","g30","path138","path139","g31","path140","path141","g38","g32","path142","path143","g33","path144","path145","g34","path146","path147","g35","path148","path149","g36","path150","path151","g37","path152","path153","g39","path154","path155","path156","path157","path158","path159","g92","g85","g41","rect0","rect1","g42","rect2","rect3","g43","path160","path161","g44","path162","path163","path164","path165","path166","path167","path168","g45","path169","path170","g46","path171","path172","g47","path173","path174","g48","path175","path176","g49","path177","path178","g50","path179","path180","g51","path181","path182","g52","path183","path184","g53","path185","path186","g54","path187","path188","g55","path189","path190","g56","path191","path192","g57","path193","path194","g58","path195","path196","g59","path197","path198","g60","path199","path200","g61","path201","path202","g62","path203","path204","g63","path205","path206","g64","path207","path208","g65","path209","path210","g66","path211","path212","g67","path213","path214","path215","g68","path216","path217","g69","rect4","rect5","g70","rect6","rect7","g71","rect8","rect9","g72","rect10","rect11","g73","rect12","rect13","g74","rect14","rect15","g75","rect16","rect17","g76","rect18","rect19","g77","rect20","rect21","g78","rect22","rect23","g79","rect24","rect25","g80","rect26","rect27","g81","rect28","rect29","g82","rect30","rect31","g83","rect32","rect33","g84","rect34","rect35","g91","g86","path218","g90","path219","g87","path220","path221","g88","path222","path223","g89","path224","path225","g99","g93","path226","path227","g94","path228","path229","g95","path230","path231","g96","path232","path233","g97","path234","path235","g98","path236","path237","g105","path238","path239","path240","path241","path242","path243","path244","path245","path246","g100","path247","path248","path249","path250","g101","path251","path252","path253","path254","g102","path255","path256","path257","g103","path258","path259","path260","path261","path262","path263","path264","path265","path266","path267","path268","path269","path270","path271","path272","path273","path274","path275","path276","path277","path278","path279","path280","path281","path282","path283","path284","path285","path286","path287","path288","path289","path290","g104","path291","path292","path293","path294","path295","path296","path297","path298","path299","path300","path301","path302","path303","path304","path305","path306","path307","path308","path309","path310","path311","path312","g122","path313","path314","g106","path315","path316","path317","path318","path319","g107","path320","path321","path322","g108","path323","path324","path325","g109","path326","path327","path328","path329","path330","path331","path332","path333","path334","g110","path335","path336","path337","g111","path338","path339","path340","path341","path342","path343","path344","g113","g112","path345","path346","path347","g114","path348","path349","g115","path350","path351","path352","path353","path354","path355","path356","path357","path358","path359","path360","path361","path362","path363","g116","path364","path365","g117","path366","path367","g118","path368","path369","g119","path370","path371","g120","path372","path373","g121","path374","path375","g130","g124","path376","path377","g125","path378","path379","g126","path380","path381","g127","path382","path383","g128","path384","path385","g129","path386","path387","g137","g131","path388","path389","g132","path390","path391","g133","path392","path393","g134","path394","path395","g135","path396","path397","g136","path398","path399","g154","g143","path400","g138","circle0","circle1","circle2","g139","circle3","circle4","circle5","g140","circle6","circle7","circle8","g141","circle9","circle10","circle11","g142","circle12","circle13","circle14","g144","path401","path402","path403","path404","path405","path406","path407","path408","g145","path409","path410","g147","g146","path411","path412","path413","path414","path415","g149","path416","path417","path418","path419","path420","path421","g148","path422","path423","g153","g150","path424","g151","path425","path426","g152","path427","path428","g157","rect36","rect37","text0","tspan0","tspan1","g161","g158","text1","tspan2","text2","tspan3","g160","line0","line1","line2","line3","line4","line5","path429","path430","text5","tspan4","path431","text6","tspan5","text7","tspan6","text8","tspan7","text9","tspan8","text10","tspan9","text11","tspan10","text12","tspan11","text13","tspan12","g159","text14","tspan13","tspan14","text15","tspan15","tspan16","text16","tspan17","tspan18","text17","tspan19","tspan20","text18","tspan21","tspan22","text19","tspan23","div","br0","br1","br2","br3","button","goTo","console","log","$goTo","set","rect40","rect41","rect42","g165","g164","g163","tspan24","path432","path433","path434","tspan25","text20","tspan26","text21","tspan27","br4","br5","br6","br7","ul","br9","br10","br11","button0","button1","mask","br8","br12","path435","path436","text_1","defs","clipPath0","clipPath1","clipPath2","clipPath3","subscriber_queue","switch_value","r","components","One","Two","Three","Four","Five","Six","Seven","start","stop","subscribers","new_value","run_queue","subscriber","invalidate","size","writable","window","scrollTo","top","behavior","body"],"mappings":"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","x_google_ignoreList":[0,8]}