Merge pull request #2479 from XRPLF/apex-banner

New Apex banner
This commit is contained in:
Aria Keshmiri
2024-03-22 09:17:40 -07:00
committed by GitHub
7 changed files with 1122 additions and 306 deletions

View File

@@ -1,26 +1,24 @@
import * as React from 'react';
import styled from 'styled-components';
import { useThemeConfig } from '@theme/hooks/useThemeConfig';
import { LanguagePicker } from '@theme/i18n/LanguagePicker';
import { useI18n, useTranslate } from '@portal/hooks';
import * as React from "react";
import styled from "styled-components";
import { useThemeConfig } from "@theme/hooks/useThemeConfig";
import { LanguagePicker } from "@theme/i18n/LanguagePicker";
import { useI18n, useTranslate } from "@portal/hooks";
import { slugify } from "../../helpers";
import { Link } from "@portal/Link";
import { ColorModeSwitcher } from "@theme/components/ColorModeSwitcher/ColorModeSwitcher";
import { Search } from "@theme/components/Search/Search";
import { slugify } from '../../helpers';
import { Link } from '@portal/Link';
import { ColorModeSwitcher } from '@theme/components/ColorModeSwitcher/ColorModeSwitcher';
import { Search } from '@theme/components/Search/Search';
import { useLocation } from 'react-router-dom';
import { useLocation } from "react-router-dom";
// @ts-ignore
// import navbar from '../../../top-nav.yaml';
// const alertBanner = {
// show: true,
// message: 'This is the draft Redocly version of the site!',
// button: 'Cool',
// link: 'https://github.com/ripple/xrpl-org-dev-portal',
// };
const alertBanner = {
show: true,
message: "XRP Ledger Apex is back in Amsterdam",
button: "Register Now",
link: "https://www.xrpledgerapex.com/?utm_source=xrplorg&utm_medium=web&utm_campaign=banner",
};
export function Navbar(props) {
// const [isOpen, setIsOpen] = useMobileMenu(false);
@@ -30,11 +28,19 @@ export function Navbar(props) {
const logo = themeConfig.logo;
const { href, altText, items } = props;
const pathPrefix = '';
const pathPrefix = "";
const navItems = menu.map((item, index) => {
if (item.type === 'group') {
return <NavDropdown key={index} label={item.label} labelTranslationKey={item.labelTranslationKey} items={item.items} pathPrefix={pathPrefix} />;
if (item.type === "group") {
return (
<NavDropdown
key={index}
label={item.label}
labelTranslationKey={item.labelTranslationKey}
items={item.items}
pathPrefix={pathPrefix}
/>
);
} else {
return (
<NavItem key={index}>
@@ -46,76 +52,77 @@ export function Navbar(props) {
}
});
const { pathname } = useLocation();
const blogNavs = getBlogNavigationConfig();
const { pathname } = useLocation();
const blogNavs = getBlogNavigationConfig();
const blogNavItems = [];
for (const blogNav of blogNavs) {
if (blogNav.type === "group") {
blogNavItems.push(
<NavDropdown
key={blogNav.index}
label={blogNav.label}
items={blogNav.items}
pathPrefix={pathPrefix}
/>
);
} else {
blogNavItems.push(
<NavItem key={blogNav.index}>
<Link to={blogNav.link} className="nav-link">
{blogNav.label}
</Link>
</NavItem>
);
}
}
const blogNavItems = [];
for (const blogNav of blogNavs) {
if (blogNav.type === "group") {
blogNavItems.push(
<NavDropdown
key={blogNav.index}
label={blogNav.label}
items={blogNav.items}
pathPrefix={pathPrefix}
/>
);
} else {
blogNavItems.push(
<NavItem key={blogNav.index}>
<Link to={blogNav.link} className="nav-link">
{blogNav.label}
</Link>
</NavItem>
);
}
}
React.useEffect(() => {
// Turns out jQuery is necessary for firing events on Bootstrap v4
// dropdowns. These events set classes so that the search bar and other
// submenus collapse on mobile when you expand one submenu.
const dds = $('#topnav-pages .dropdown');
const top_main_nav = document.querySelector('#top-main-nav');
dds.on('show.bs.dropdown', evt => {
top_main_nav.classList.add('submenu-expanded');
const dds = $("#topnav-pages .dropdown");
const top_main_nav = document.querySelector("#top-main-nav");
dds.on("show.bs.dropdown", (evt) => {
top_main_nav.classList.add("submenu-expanded");
});
dds.on('hidden.bs.dropdown', evt => {
top_main_nav.classList.remove('submenu-expanded');
dds.on("hidden.bs.dropdown", (evt) => {
top_main_nav.classList.remove("submenu-expanded");
});
// Close navbar on .dropdown-item click
const toggleNavbar = () => {
const navbarToggler = document.querySelector('.navbar-toggler');
const isNavbarCollapsed = navbarToggler.getAttribute('aria-expanded') === 'true';
if (isNavbarCollapsed) {
navbarToggler.click(); // Simulate click to toggle navbar
}
};
const toggleNavbar = () => {
const navbarToggler = document.querySelector(".navbar-toggler");
const isNavbarCollapsed =
navbarToggler.getAttribute("aria-expanded") === "true";
if (isNavbarCollapsed) {
navbarToggler.click(); // Simulate click to toggle navbar
}
};
const dropdownItems = document.querySelectorAll('.dropdown-item');
dropdownItems.forEach(item => {
item.addEventListener('click', toggleNavbar);
});
// Cleanup function to remove event listeners
return () => {
dropdownItems.forEach(item => {
item.removeEventListener('click', toggleNavbar);
const dropdownItems = document.querySelectorAll(".dropdown-item");
dropdownItems.forEach((item) => {
item.addEventListener("click", toggleNavbar);
});
};
},[]);
// Cleanup function to remove event listeners
return () => {
dropdownItems.forEach((item) => {
item.removeEventListener("click", toggleNavbar);
});
};
}, []);
// Render a different top nav for the Blog site.
if (pathname.includes("blog")) {
return (
<>
{/* <AlertBanner
show={alertBanner.show}
message={alertBanner.message}
button={alertBanner.button}
link={alertBanner.link}
/> */}
<NavWrapper>
<AlertBanner
show={alertBanner.show}
message={alertBanner.message}
button={alertBanner.button}
link={alertBanner.link}
/>
<NavWrapper belowAlertBanner={true}>
<LogoBlock to={href} img={logo} alt={altText} />
<NavControls>
<MobileMenuIcon />
@@ -143,13 +150,13 @@ export function Navbar(props) {
} else {
return (
<>
{/* <AlertBanner
show={alertBanner.show}
message={alertBanner.message}
button={alertBanner.button}
link={alertBanner.link}
/> */}
<NavWrapper>
<AlertBanner
show={alertBanner.show}
message={alertBanner.message}
button={alertBanner.button}
link={alertBanner.link}
/>
<NavWrapper belowAlertBanner={true}>
<LogoBlock to={href} img={logo} alt={altText} />
<NavControls>
<MobileMenuIcon />
@@ -179,16 +186,15 @@ const StyledColorModeSwitcher = styled(ColorModeSwitcher)`
`;
export function AlertBanner(props) {
const { show, message, button, link } = props;
const { message, button, link } = props;
return (
<div className="top-banner fixed-top">
<div className="d-flex justify-content-center">
<div className="inner-apex">
<span>
<p className="mb-0">{message}</p>
<p className="mb-0 apex-banner-text">{message}</p>
</span>
<span>
<a href={link} target="_blank" className="btn btn-outline-secondary">
<a href={link} target="_blank" className="apex-btn">
{button}
</a>
</span>
@@ -199,7 +205,10 @@ export function AlertBanner(props) {
export function TopNavCollapsible(props) {
return (
<div className="collapse navbar-collapse justify-content-between" id="top-main-nav">
<div
className="collapse navbar-collapse justify-content-between"
id="top-main-nav"
>
{props.children}
</div>
);
@@ -212,7 +221,9 @@ export function NavDropdown(props) {
const dropdownGroups = items.map((item, index) => {
if (item.items) {
const groupLinks = item.items.map((item2, index2) => {
const cls2 = item2.external ? 'dropdown-item external-link' : 'dropdown-item';
const cls2 = item2.external
? "dropdown-item external-link"
: "dropdown-item";
let item2_href = item2.link;
if (item2_href && !item2_href.match(/^https?:/)) {
item2_href = pathPrefix + item2_href;
@@ -224,7 +235,7 @@ export function NavDropdown(props) {
);
});
const clnm = 'navcol col-for-' + slugify(item.label);
const clnm = "navcol col-for-" + slugify(item.label);
return (
<div key={index} className={clnm}>
@@ -233,19 +244,24 @@ export function NavDropdown(props) {
</div>
);
} else if (item.icon) {
const hero_id = 'dropdown-hero-for-' + slugify(label);
const img_alt = item.label + ' icon';
const hero_id = "dropdown-hero-for-" + slugify(label);
const img_alt = item.label + " icon";
let hero_href = item.link;
if (hero_href && !hero_href.match(/^https?:/)) {
hero_href = pathPrefix + hero_href;
}
const splitlabel = item.label.split(" || ")
const newlabel = splitlabel[0]
const description = splitlabel[1] // might be undefined, that's ok
const splitlabel = item.label.split(" || ");
const newlabel = splitlabel[0];
const description = splitlabel[1]; // might be undefined, that's ok
return (
<a key={index} className="dropdown-item dropdown-hero" id={hero_id} href={hero_href}>
<a
key={index}
className="dropdown-item dropdown-hero"
id={hero_id}
href={hero_href}
>
<img id={item.hero} alt={img_alt} src={item.icon} />
<div className="dropdown-hero-text">
<h4>{newlabel}</h4>
@@ -254,7 +270,9 @@ export function NavDropdown(props) {
</a>
);
} else {
const cls = item.external ? 'dropdown-item ungrouped external-link' : 'dropdown-item ungrouped';
const cls = item.external
? "dropdown-item ungrouped external-link"
: "dropdown-item ungrouped";
let item_href = item.link;
if (item_href && !item_href.match(/^https?:/)) {
item_href = pathPrefix + item_href;
@@ -267,8 +285,8 @@ export function NavDropdown(props) {
}
});
const toggler_id = 'topnav_' + slugify(label);
const dd_id = 'topnav_dd_' + slugify(label);
const toggler_id = "topnav_" + slugify(label);
const dd_id = "topnav_dd_" + slugify(label);
return (
<li className="nav-item dropdown">
@@ -294,7 +312,7 @@ export function NavWrapper(props) {
return (
<nav
className="top-nav navbar navbar-expand-lg navbar-dark fixed-top"
style={props.belowAlertBanner ? { marginTop: '46px' } : {}}
style={props.belowAlertBanner ? { marginTop: "46px" } : {}}
>
{props.children}
</nav>
@@ -329,7 +347,11 @@ export function GetStartedButton() {
const { translate } = useTranslate();
return (
<a className="btn btn-primary" href={"/docs/tutorials"} style={{ height: "38px", paddingTop: "11px"}}>
<a
className="btn btn-primary"
href={"/docs/tutorials"}
style={{ height: "38px", paddingTop: "11px" }}
>
{translate("Get Started")}
</a>
);
@@ -358,28 +380,33 @@ export function LogoBlock(props) {
export class ThemeToggle extends React.Component {
auto_update_theme() {
const upc = window.localStorage.getItem('user-prefers-color');
let theme = 'dark'; // Default to dark theme
const upc = window.localStorage.getItem("user-prefers-color");
let theme = "dark"; // Default to dark theme
if (!upc) {
// User hasn't saved a preference specifically for this site; check
// the browser-level preferences.
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: light)').matches) {
theme = 'light';
if (
window.matchMedia &&
window.matchMedia("(prefers-color-scheme: light)").matches
) {
theme = "light";
}
} else {
// Follow user's saved setting.
theme = upc == 'light' ? 'light' : 'dark';
theme = upc == "light" ? "light" : "dark";
}
const disable_theme = theme == 'dark' ? 'light' : 'dark';
const disable_theme = theme == "dark" ? "light" : "dark";
document.documentElement.classList.add(theme);
document.documentElement.classList.remove(disable_theme);
}
user_choose_theme() {
const new_theme = document.documentElement.classList.contains('dark') ? 'light' : 'dark';
window.localStorage.setItem('user-prefers-color', new_theme);
document.body.style.transition = 'background-color .2s ease';
const disable_theme = new_theme == 'dark' ? 'light' : 'dark';
const new_theme = document.documentElement.classList.contains("dark")
? "light"
: "dark";
window.localStorage.setItem("user-prefers-color", new_theme);
document.body.style.transition = "background-color .2s ease";
const disable_theme = new_theme == "dark" ? "light" : "dark";
document.documentElement.classList.add(new_theme);
document.documentElement.classList.remove(disable_theme);
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,306 @@
<svg width="1024" height="46" viewBox="0 0 1024 46" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_377_62523)">
<rect width="1024" height="46" fill="#111112"/>
<g clip-path="url(#clip1_377_62523)">
<path d="M53.821 254.758C-27.8655 92.9389 -15.8644 -91.7194 69.533 -237.232C117.569 -319.13 188.881 -388.628 279.805 -434.686C409.512 -500.372 553.92 -505.575 680.989 -460.799C801.285 -418.442 906.058 -331.293 968.148 -208.319C1095.82 44.5718 994.629 353.248 742.132 481.125C489.666 609.001 181.475 507.665 53.821 254.758Z" fill="url(#paint0_linear_377_62523)"/>
<path d="M274.957 -309.212C392.237 -392.755 538.571 -405.234 662.909 -355.286C732.879 -327.196 795.9 -279.303 842.847 -213.19C909.8 -118.876 931.039 -5.80316 911 99.5509C892.051 199.29 836.104 292.133 746.98 355.621C563.695 486.187 309.429 443.181 179.091 259.599C48.7522 76.0159 91.6562 -178.646 274.957 -309.212Z" fill="url(#paint1_linear_377_62523)"/>
<path d="M293.733 -176.527C364.208 -253.427 465.964 -284.396 561.547 -267.82C615.331 -258.504 667.188 -234.115 710.392 -194.4C772.024 -137.729 804.111 -60.8604 805.801 16.7831C807.412 90.2826 781.783 164.494 728.236 222.936C618.094 343.11 431.556 351.098 311.561 240.793C191.581 130.488 183.591 -56.3685 293.733 -176.543V-176.527Z" fill="url(#paint2_linear_377_62523)"/>
<path d="M372.514 -139.738C430.008 -188.754 505.915 -201.945 573.169 -181.525C611.02 -170.043 646.123 -147.884 673.662 -115.475C712.95 -69.2437 729.183 -11.1178 723.514 44.8569C718.146 97.8424 693.133 148.93 649.455 186.162C559.604 262.762 424.766 251.896 348.306 161.899C271.831 71.9033 282.679 -63.1385 372.529 -139.738H372.514Z" fill="url(#paint3_linear_377_62523)"/>
<path d="M480.745 146.462C437.256 135.754 404.585 103.757 391.068 64.2633C383.457 42.0411 381.909 17.4305 387.925 -7.06932C396.5 -42.0397 418.781 -70.035 447.647 -86.7057C474.965 -102.506 508.173 -108.169 541.208 -100.039C609.172 -83.3209 650.718 -14.5664 634.027 53.4923C617.336 121.567 548.709 163.196 480.745 146.462Z" fill="url(#paint4_linear_377_62523)"/>
<mask id="mask0_377_62523" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="-2" y="-490" width="1026" height="1027">
<path d="M742.117 481.111C994.613 353.234 1095.8 44.5578 968.132 -208.333C906.058 -331.307 801.285 -418.44 680.99 -460.797C553.92 -505.558 409.512 -500.37 279.79 -434.684C188.865 -388.642 117.554 -319.128 69.5176 -237.23C-15.8798 -91.7176 -27.8967 92.9407 53.7898 254.744C181.46 507.635 489.635 608.972 742.101 481.111H742.117ZM159.684 -184.039C197.914 -249.203 254.666 -304.514 327.036 -341.161C430.246 -393.434 545.156 -397.578 646.266 -361.943C741.99 -328.238 825.366 -258.899 874.776 -161.042C976.375 40.2083 895.841 285.839 694.933 387.603C494.025 489.367 248.776 408.718 147.177 207.468C82.1661 78.7057 91.7354 -68.23 159.684 -184.039Z" fill="white"/>
</mask>
<g mask="url(#mask0_377_62523)">
<path d="M741.375 481.332L279.174 -434.209" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M641.466 519.403L379.415 -472.39" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M535.824 535.821L485.372 -488.855" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M429.093 529.889L592.434 -482.908" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M325.915 501.862L695.928 -454.786" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M230.822 452.958L791.321 -405.739" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M147.951 385.31L874.445 -337.886" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M80.9347 301.893L941.667 -254.217" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M32.6932 206.346L990.05 -158.367" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M5.34341 102.827L1017.49 -54.5323" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M0.0692444 -4.1095L1022.77 52.7352" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M17.1236 -109.811L1005.67 158.77" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M55.7321 -209.662L966.932 258.92" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M114.238 -299.278L908.253 348.821" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M190.066 -374.754L832.204 424.52" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
</g>
<mask id="mask1_377_62523" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="103" y="-386" width="816" height="818">
<path d="M731.788 366.425C921.043 244.258 975.6 -8.4278 853.647 -197.973C794.352 -290.136 704.217 -350.413 605.508 -373.964C501.241 -398.844 387.372 -382.758 290.148 -320.014C221.994 -276.028 171.305 -215.103 140.071 -146.301C84.5181 -24.0387 90.2818 123.087 168.305 244.368C290.258 433.93 542.55 488.56 731.788 366.409V366.425ZM242.633 -99.4204C265.245 -149.195 301.912 -193.276 351.227 -225.099C421.56 -270.492 503.925 -282.149 579.359 -264.134C650.765 -247.1 715.982 -203.509 758.886 -136.811C847.125 0.334595 807.648 183.142 670.741 271.509C533.833 359.877 351.306 320.351 263.082 183.221C206.629 95.4712 202.461 -10.9742 242.648 -99.4204H242.633Z" fill="white"/>
</mask>
<g mask="url(#mask1_377_62523)">
<path d="M731.204 366.661L289.69 -319.572" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M655.281 405.08L365.865 -358.101" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M573.026 426.844L448.357 -379.943" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M488.071 431.003L533.581 -384.119" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M404.095 417.385L617.826 -370.438" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M324.793 386.574L697.364 -339.532" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M253.607 339.915L768.771 -292.731" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M193.665 279.449L828.903 -232.09" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M147.587 207.832L875.123 -160.251" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M117.379 128.18L905.41 -80.3456" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M104.367 43.9718L918.469 4.11401" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M109.121 -41.0894L913.7 89.4447" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M131.433 -123.32L891.324 171.928" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M170.31 -199.097L852.32 247.942" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M224.078 -265.131L798.394 314.166" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
</g>
<mask id="mask2_377_62523" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="216" y="-273" width="590" height="592">
<path d="M697.554 251.974C823.708 148.755 842.436 -37.3422 739.384 -163.685C689.28 -225.116 619.594 -261.115 546.719 -270.004C469.739 -279.415 389.189 -258.584 324.383 -205.551C278.953 -168.382 247.465 -120.458 230.585 -68.4534C200.566 23.9628 216.642 129.269 282.569 210.108C385.62 336.45 571.416 355.193 697.554 251.99V251.974ZM308.118 -43.1152C320.341 -80.7428 343.127 -115.413 375.988 -142.301C422.871 -180.656 481.14 -195.729 536.834 -188.928C589.544 -182.491 639.965 -156.457 676.221 -112.012C750.77 -20.6083 737.221 114.038 645.965 188.708C554.71 263.378 420.281 249.823 345.732 158.403C298.028 99.9139 286.39 23.7256 308.118 -43.1152Z" fill="white"/>
</mask>
<g mask="url(#mask2_377_62523)">
<path d="M697.602 252.765L323.609 -205.788" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M645.997 286.645L375.372 -239.778" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M588.502 309.04L433.04 -262.238" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M527.596 318.973L494.135 -272.186" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M465.98 316L555.941 -269.212" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M406.322 300.262L615.789 -253.428" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M351.227 272.441L671.057 -225.527" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M303.113 233.754L719.314 -186.713" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M264.077 185.893L758.475 -138.71" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M235.827 130.962L786.804 -83.6058" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M219.61 71.3338L803.085 -23.8027" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M216.12 9.633L806.574 38.087" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M225.5 -51.4344L797.163 99.3606" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M247.371 -109.228L775.23 157.312" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M280.753 -161.201L741.753 209.46" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
</g>
<mask id="mask3_377_62523" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="297" y="-191" width="428" height="428">
<path d="M627.947 201.946C726.498 137.241 754.038 4.76151 689.421 -93.9496C658.013 -141.953 610.593 -173.127 558.83 -185.037C504.162 -197.643 444.63 -188.754 393.989 -155.508C358.507 -132.21 332.215 -100.102 316.139 -63.9772C287.558 0.237976 291.174 77.2172 332.515 140.388C397.115 239.1 529.38 266.668 627.931 201.962L627.947 201.946ZM395.015 -28.6905C404.584 -50.201 420.233 -69.2916 441.346 -83.1627C471.475 -102.949 506.91 -108.232 539.439 -100.735C570.247 -93.6491 598.466 -75.0805 617.162 -46.5158C655.613 12.2427 639.222 91.0883 580.574 129.602C521.927 168.115 443.193 151.713 404.742 92.9547C380.14 55.3587 377.993 9.53809 394.999 -28.6747L395.015 -28.6905Z" fill="white"/>
</mask>
<g mask="url(#mask3_377_62523)">
<path d="M627.916 202.516L393.452 -155.745" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M588.233 222.982L433.261 -176.275" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M545.171 234.734L476.449 -188.074" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M500.609 237.265L521.153 -190.604" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M456.489 230.464L565.415 -183.787" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M414.754 214.615L607.277 -167.892" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M377.219 190.432L644.938 -143.629" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M345.51 158.957L676.725 -112.06" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M321.05 121.567L701.28 -74.5425" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M304.88 79.8904L717.497 -32.7551" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M297.696 35.7622L724.698 11.5154" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M299.843 -8.88824L722.535 56.3076" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M311.213 -52.1304L711.134 99.6769" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M331.299 -92.0514L690.985 139.724" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M359.249 -126.911L662.956 174.695" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
</g>
<mask id="mask4_377_62523" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="383" y="-105" width="255" height="256">
<path d="M580.591 129.587C639.254 91.0734 655.629 12.2279 617.178 -46.5306C598.482 -75.0953 570.263 -93.6482 539.455 -100.75C506.91 -108.247 471.491 -102.964 441.346 -83.1776C420.218 -69.3065 404.585 -50.2001 395.016 -28.7054C378.009 9.50742 380.156 55.328 404.759 92.9239C443.21 151.667 521.927 168.084 580.575 129.571L580.591 129.587Z" fill="white"/>
</mask>
<g mask="url(#mask4_377_62523)">
<path d="M544.256 146.242L477.318 -99.7369" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M518.027 150.513L503.61 -104.023" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M491.498 149.232L530.233 -102.742" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M465.807 142.463L556.004 -95.9401" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M442.089 130.49L579.801 -83.9353" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M421.371 113.835L600.582 -67.2174" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M404.553 93.2254L617.431 -46.5455" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M392.394 69.5638L629.637 -22.8207" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M385.415 43.8941L636.648 2.9292" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M383.899 17.3224L638.149 29.5803" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M387.942 -8.9657L634.091 55.9612" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M397.369 -33.8607L624.648 80.9201" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M411.739 -56.2255L610.231 103.363" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M430.435 -75.1265L591.471 122.312" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M452.653 -89.7086L569.19 136.943" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
</g>
<mask id="mask5_377_62523" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="5" y="-492" width="742" height="581">
<path d="M746.759 -433.055C730.652 -421.889 715.035 -409.868 699.781 -397.389C653.482 -359.524 609.109 -315.744 583.449 -259.058C554.978 -196.155 552.12 -123.431 533.992 -56.0995C515.88 11.2315 472.881 80.2233 409.07 87.7362C340.111 95.8501 284.906 31.2395 226.495 -9.67795C161.594 -55.1505 82.9237 -73.4186 5.6745 -69.0216C28.4766 -196.487 99.2042 -315.444 212.883 -396.408C375.119 -511.964 581.586 -519.366 746.759 -433.055Z" fill="white"/>
</mask>
<g mask="url(#mask5_377_62523)">
<path d="M53.2372 253.416C-28.4493 91.5967 -16.4482 -93.0615 68.9492 -238.574C116.985 -320.472 188.297 -389.97 279.221 -436.028C408.928 -501.714 553.336 -506.902 680.406 -462.141C800.701 -419.784 905.474 -332.635 967.564 -209.661C1095.23 43.2297 994.045 351.906 741.548 479.782C489.083 607.659 180.891 506.323 53.2372 253.416Z" fill="url(#paint5_linear_377_62523)"/>
<path d="M201.988 288.26C108.001 179.094 81.9455 34.3247 119.986 -94.3271C141.383 -166.735 183.102 -234.035 244.434 -287.02C331.932 -362.592 442.358 -394.336 548.947 -384.181C649.866 -374.597 747.375 -327.479 818.798 -244.521C965.685 -73.9238 946.673 183.649 776.352 330.774C606.031 477.884 348.891 458.873 202.004 288.26H201.988Z" fill="url(#paint6_linear_377_62523)"/>
<path d="M365.835 279.323C275.006 228.157 221.68 135.993 215.979 38.9905C212.758 -15.5924 224.632 -71.7096 253.372 -122.924C294.381 -195.964 361.792 -244.79 436.878 -264.165C507.953 -282.513 585.945 -274.462 654.967 -235.585C796.927 -155.616 847.269 24.4867 767.43 166.662C687.591 308.837 507.795 359.276 365.835 279.307V279.323Z" fill="url(#paint7_linear_377_62523)"/>
<path d="M459.427 229.675C386.11 211.629 331.016 157.678 308.229 91.1064C295.391 53.637 292.801 12.166 302.939 -29.1785C317.404 -88.1268 354.97 -135.323 403.622 -163.461C449.669 -190.096 505.663 -199.649 561.374 -185.936C675.953 -157.735 746.017 -41.8475 717.862 72.9174C689.707 187.682 574.006 257.86 459.427 229.659V229.675Z" fill="url(#paint8_linear_377_62523)"/>
<path d="M480.161 145.135C436.673 134.428 404.001 102.431 390.484 62.9367C382.873 40.7144 381.326 16.1039 387.342 -8.39598C395.916 -43.3664 418.197 -71.3617 447.063 -88.0323C474.382 -103.833 507.59 -109.495 540.625 -101.366C608.589 -84.6476 650.135 -15.893 633.444 52.1656C616.753 120.24 548.125 161.869 480.161 145.135Z" fill="url(#paint9_linear_377_62523)"/>
<mask id="mask6_377_62523" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="-3" y="-492" width="1026" height="1028">
<path d="M741.533 479.768C994.03 351.891 1095.22 43.2152 967.548 -209.676C905.474 -332.649 800.701 -419.783 680.406 -462.14C553.336 -506.9 408.928 -501.713 279.206 -436.026C188.282 -389.984 116.97 -320.471 68.9338 -238.573C-16.4635 -93.0602 -28.4804 91.598 53.2061 253.401C180.876 506.292 489.052 607.629 741.517 479.768H741.533ZM159.1 -185.381C197.33 -250.546 254.083 -305.856 326.452 -342.503C429.662 -394.777 544.572 -398.921 645.682 -363.286C741.406 -329.581 824.783 -260.241 874.192 -162.384C975.791 38.8657 895.257 284.497 694.349 386.26C493.441 488.008 248.192 407.376 146.594 206.126C81.5824 77.3632 91.1517 -69.5726 159.1 -185.381Z" fill="white"/>
</mask>
<g mask="url(#mask6_377_62523)">
<path d="M740.791 480.005L278.59 -435.552" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M640.881 518.059L378.831 -473.718" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M535.24 534.477L484.788 -490.199" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M428.51 528.546L591.851 -484.252" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M325.331 500.519L695.344 -456.13" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M230.238 451.614L790.737 -407.082" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M147.367 383.982L873.861 -339.23" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M80.3508 300.551L941.083 -255.544" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M32.1094 205.003L989.466 -159.696" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M4.75949 101.499L1016.91 -55.8757" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M-0.514694 -5.45294L1022.18 51.3918" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M16.5395 -111.155L1005.08 157.426" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M55.1484 -210.989L966.348 257.577" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M113.654 -300.622L907.669 347.478" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M189.482 -376.098L831.62 423.192" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
</g>
<mask id="mask7_377_62523" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="102" y="-387" width="817" height="818">
<path d="M731.205 365.095C920.46 242.928 975.017 -9.7572 853.064 -199.303C793.769 -291.466 703.634 -351.743 604.925 -375.294C500.658 -400.173 386.789 -384.088 289.565 -321.343C221.411 -277.357 170.722 -216.432 139.488 -147.63C83.9351 -25.3681 89.6988 121.757 167.722 243.039C289.675 432.6 541.967 487.231 731.205 365.079V365.095ZM242.05 -100.75C264.662 -150.525 301.329 -194.605 350.644 -226.428C420.977 -271.822 503.342 -283.478 578.776 -265.463C650.182 -248.429 715.399 -204.839 758.303 -138.14C846.542 -0.994812 807.065 181.813 670.158 270.18C533.25 358.547 350.723 319.022 262.499 181.892C206.046 94.1418 201.878 -12.3036 242.065 -100.75H242.05Z" fill="white"/>
</mask>
<g mask="url(#mask7_377_62523)">
<path d="M730.621 365.334L289.106 -320.915" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M654.698 403.752L365.281 -359.444" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M572.443 425.516L447.773 -381.271" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M487.488 429.675L532.997 -385.447" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M403.512 416.042L617.242 -371.781" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M324.21 385.231L696.781 -340.875" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M253.024 338.572L768.187 -294.074" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M193.082 278.106L828.319 -233.433" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M147.004 206.488L874.539 -161.579" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M116.796 126.836L904.826 -81.6896" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M103.784 42.6443L917.885 2.77075" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M108.537 -42.4324L913.117 88.1174" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M130.85 -124.663L890.741 170.585" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M169.726 -200.44L851.737 246.599" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
<path d="M223.495 -266.474L797.811 312.839" stroke="black" stroke-width="31.5" stroke-miterlimit="10"/>
</g>
<mask id="mask8_377_62523" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="215" y="-274" width="591" height="592">
<path d="M696.97 250.648C823.124 147.429 841.852 -38.6683 738.801 -165.011C688.696 -226.442 619.01 -262.441 546.135 -271.33C469.155 -280.741 388.605 -259.91 323.799 -206.877C278.369 -169.708 246.881 -121.784 230.001 -69.7795C199.982 22.6367 216.058 127.943 281.985 208.782C385.036 335.124 570.832 353.867 696.97 250.664V250.648ZM307.534 -44.4571C319.757 -82.0847 342.543 -116.755 375.404 -143.643C422.287 -181.998 480.556 -197.071 536.25 -190.27C588.96 -183.833 639.381 -157.799 675.637 -113.354C750.186 -21.9502 736.637 112.696 645.381 187.366C554.126 262.036 419.697 248.481 345.148 157.062C297.444 98.572 285.806 22.3836 307.534 -44.4571Z" fill="white"/>
</mask>
<g mask="url(#mask8_377_62523)">
<path d="M697.018 251.422L323.026 -207.131" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M645.413 285.301L374.788 -241.105" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M587.918 307.698L432.457 -263.565" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M527.013 317.63L493.552 -273.529" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M465.396 314.657L555.357 -270.555" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M405.739 298.919L615.205 -254.771" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M350.644 271.098L670.473 -226.855" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M302.529 232.427L718.731 -188.056" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M263.494 184.566L757.892 -140.053" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M235.244 129.619L786.221 -84.9487" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M219.026 70.0063L802.501 -25.1303" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M215.537 8.30658L805.991 36.7448" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M224.917 -52.7773L796.58 98.0177" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M246.787 -110.571L774.646 155.985" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
<path d="M280.169 -162.528L741.17 208.117" stroke="black" stroke-width="23.625" stroke-miterlimit="10"/>
</g>
<mask id="mask9_377_62523" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="296" y="-192" width="428" height="428">
<path d="M627.364 200.605C725.915 135.9 753.454 3.42007 688.838 -95.291C657.429 -143.294 610.009 -174.469 558.247 -186.379C503.578 -198.984 444.047 -190.095 393.405 -156.849C357.923 -133.551 331.631 -101.444 315.556 -65.3187C286.974 -1.10345 290.59 75.8757 331.931 139.047C396.532 237.758 528.797 265.326 627.348 200.621L627.364 200.605ZM394.432 -30.0319C404.001 -51.5424 419.65 -70.633 440.762 -84.5041C470.891 -104.291 506.326 -109.573 538.855 -102.076C569.663 -94.9905 597.882 -76.4219 616.578 -47.8572C655.029 10.9013 638.638 89.7468 579.991 128.26C521.343 166.773 442.61 150.372 404.159 91.6132C379.556 54.0173 377.409 8.1967 394.416 -30.0161L394.432 -30.0319Z" fill="white"/>
</mask>
<g mask="url(#mask9_377_62523)">
<path d="M627.332 201.173L392.868 -157.088" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M587.65 221.639L432.677 -177.618" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M544.587 233.391L475.881 -189.417" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M500.026 235.922L520.57 -191.947" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M455.906 229.121L564.831 -185.13" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M414.17 213.288L606.693 -169.235" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M376.635 189.089L644.355 -144.972" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M344.927 157.614L676.142 -113.386" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M320.467 120.224L700.697 -75.8856" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M304.297 78.5633L716.914 -34.098" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M297.112 34.4352L724.115 10.1725" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M299.26 -10.2313L721.952 54.9645" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M310.629 -53.4581L710.55 98.3333" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M330.715 -93.3792L690.401 138.381" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
<path d="M358.665 -128.254L662.372 173.352" stroke="black" stroke-width="14.625" stroke-miterlimit="10"/>
</g>
<mask id="mask10_377_62523" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="383" y="-106" width="255" height="256">
<path d="M580.007 128.243C638.671 89.7301 655.046 10.8846 616.595 -47.8739C597.898 -76.4386 569.68 -94.9914 538.872 -102.093C506.327 -109.59 470.908 -104.307 440.763 -84.5209C419.635 -70.6498 404.002 -51.5434 394.432 -30.0487C377.425 8.16414 379.573 53.9847 404.175 91.5806C442.626 150.323 521.344 166.741 579.991 128.228L580.007 128.243Z" fill="white"/>
</mask>
<g mask="url(#mask10_377_62523)">
<path d="M543.672 144.899L476.735 -101.08" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M517.444 149.185L503.027 -105.366" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M490.915 147.904L529.65 -104.085" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M465.223 141.119L555.421 -97.2835" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M441.505 129.146L579.218 -85.2635" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M420.787 112.491L599.999 -68.5608" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M403.97 91.8818L616.848 -47.889" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M391.811 68.2204L629.054 -24.1641" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M384.831 42.5507L636.065 1.58582" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M383.316 15.9944L637.566 28.2364" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M387.358 -10.3091L633.507 54.6179" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M396.785 -35.1877L624.064 79.5772" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M411.155 -57.569L609.647 102.02" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M429.852 -76.4698L590.888 120.984" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
<path d="M452.069 -91.0521L568.607 135.615" stroke="black" stroke-width="6.75" stroke-miterlimit="10"/>
</g>
</g>
</g>
<rect width="1024" height="46" fill="url(#paint10_linear_377_62523)"/>
</g>
<defs>
<linearGradient id="paint0_linear_377_62523" x1="968.504" y1="-207.566" x2="53.5376" y2="254.269" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFDF00"/>
<stop offset="0.39" stop-color="#FF0093"/>
<stop offset="0.58" stop-color="#FF24D2"/>
<stop offset="0.75" stop-color="#D942FF"/>
<stop offset="1" stop-color="#A94BFF"/>
</linearGradient>
<linearGradient id="paint1_linear_377_62523" x1="747.306" y1="355.507" x2="274.235" y2="-308.599" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFDF00"/>
<stop offset="0.39" stop-color="#FF0093"/>
<stop offset="0.58" stop-color="#FF24D2"/>
<stop offset="0.75" stop-color="#D942FF"/>
<stop offset="1" stop-color="#A94BFF"/>
</linearGradient>
<linearGradient id="paint2_linear_377_62523" x1="728.105" y1="222.999" x2="292.957" y2="-175.793" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFDF00"/>
<stop offset="0.39" stop-color="#FF0093"/>
<stop offset="0.58" stop-color="#FF24D2"/>
<stop offset="0.75" stop-color="#D942FF"/>
<stop offset="1" stop-color="#A94BFF"/>
</linearGradient>
<linearGradient id="paint3_linear_377_62523" x1="649.172" y1="186.19" x2="371.728" y2="-139.278" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFDF00"/>
<stop offset="0.39" stop-color="#FF0093"/>
<stop offset="0.58" stop-color="#FF24D2"/>
<stop offset="0.75" stop-color="#D942FF"/>
<stop offset="1" stop-color="#A94BFF"/>
</linearGradient>
<linearGradient id="paint4_linear_377_62523" x1="540.804" y1="-100.412" x2="480.167" y2="146.055" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFDF00"/>
<stop offset="0.39" stop-color="#FF0093"/>
<stop offset="0.58" stop-color="#FF24D2"/>
<stop offset="0.75" stop-color="#D942FF"/>
<stop offset="1" stop-color="#A94BFF"/>
</linearGradient>
<linearGradient id="paint5_linear_377_62523" x1="967.919" y1="-208.898" x2="52.9673" y2="252.93" gradientUnits="userSpaceOnUse">
<stop stop-color="#A775F7"/>
<stop offset="0.26" stop-color="#6000E1"/>
<stop offset="0.66" stop-color="#3B54EE"/>
<stop offset="0.75" stop-color="#17A2F4"/>
<stop offset="1" stop-color="#1AF387"/>
</linearGradient>
<linearGradient id="paint6_linear_377_62523" x1="819.279" y1="-243.761" x2="201.578" y2="287.997" gradientUnits="userSpaceOnUse">
<stop stop-color="#A775F7"/>
<stop offset="0.26" stop-color="#6000E1"/>
<stop offset="0.66" stop-color="#3B54EE"/>
<stop offset="0.75" stop-color="#17A2F4"/>
<stop offset="1" stop-color="#1AF387"/>
</linearGradient>
<linearGradient id="paint7_linear_377_62523" x1="655.587" y1="-234.869" x2="365.703" y2="279.6" gradientUnits="userSpaceOnUse">
<stop stop-color="#A775F7"/>
<stop offset="0.26" stop-color="#6000E1"/>
<stop offset="0.66" stop-color="#3B54EE"/>
<stop offset="0.75" stop-color="#17A2F4"/>
<stop offset="1" stop-color="#1AF387"/>
</linearGradient>
<linearGradient id="paint8_linear_377_62523" x1="560.956" y1="-186.299" x2="458.721" y2="229.25" gradientUnits="userSpaceOnUse">
<stop stop-color="#A775F7"/>
<stop offset="0.26" stop-color="#6000E1"/>
<stop offset="0.66" stop-color="#3B54EE"/>
<stop offset="0.75" stop-color="#17A2F4"/>
<stop offset="1" stop-color="#1AF387"/>
</linearGradient>
<linearGradient id="paint9_linear_377_62523" x1="540.221" y1="-101.743" x2="479.584" y2="144.724" gradientUnits="userSpaceOnUse">
<stop stop-color="#A775F7"/>
<stop offset="0.26" stop-color="#6000E1"/>
<stop offset="0.66" stop-color="#3B54EE"/>
<stop offset="0.75" stop-color="#17A2F4"/>
<stop offset="1" stop-color="#1AF387"/>
</linearGradient>
<linearGradient id="paint10_linear_377_62523" x1="0" y1="23" x2="1024" y2="23" gradientUnits="userSpaceOnUse">
<stop stop-color="#111112" stop-opacity="0"/>
<stop offset="0.5" stop-color="#111112" stop-opacity="0.8"/>
<stop offset="1" stop-color="#111112" stop-opacity="0"/>
</linearGradient>
<clipPath id="clip0_377_62523">
<rect width="1024" height="46" fill="white"/>
</clipPath>
<clipPath id="clip1_377_62523">
<rect width="1026" height="1028.25" fill="white" transform="translate(-2 -491.34)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 31 KiB

View File

@@ -0,0 +1,306 @@
<svg width="375" height="46" viewBox="0 0 375 46" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_377_62301)">
<rect width="375" height="46" fill="#111112"/>
<g clip-path="url(#clip1_377_62301)">
<path d="M18.5112 108.023C-11.5042 48.5627 -7.09442 -19.2893 24.2845 -72.7572C41.9352 -102.85 68.1385 -128.387 101.548 -145.311C149.209 -169.447 202.271 -171.359 248.962 -154.906C293.164 -139.342 331.663 -107.32 354.477 -62.1334C401.389 30.7905 364.208 144.212 271.429 191.2C178.661 238.188 65.4172 200.952 18.5112 108.023Z" fill="url(#paint0_linear_377_62301)"/>
<path d="M99.767 -99.2062C142.861 -129.904 196.631 -134.489 242.318 -116.136C268.029 -105.814 291.186 -88.2162 308.436 -63.9232C333.038 -29.2678 340.842 12.2803 333.479 50.9923C326.516 87.6411 305.958 121.756 273.21 145.084C205.862 193.06 112.433 177.258 64.5411 109.801C16.6487 42.3444 32.4136 -51.2303 99.767 -99.2062Z" fill="url(#paint1_linear_377_62301)"/>
<path d="M106.666 -50.4515C132.562 -78.7081 169.952 -90.0875 205.073 -83.9968C224.836 -80.5737 243.891 -71.612 259.766 -57.0187C282.412 -36.1953 294.203 -7.95023 294.824 20.5796C295.415 47.5867 285.998 74.8554 266.323 96.3297C225.851 140.487 157.309 143.422 113.217 102.891C69.1307 62.3602 66.1947 -6.2997 106.666 -50.4573V-50.4515Z" fill="url(#paint2_linear_377_62301)"/>
<path d="M135.614 -36.9336C156.74 -54.9441 184.632 -59.7911 209.344 -52.2882C223.252 -48.0688 236.15 -39.9266 246.27 -28.0184C260.706 -11.0307 266.671 10.3275 264.588 30.8952C262.615 50.3645 253.424 69.1364 237.375 82.8173C204.36 110.964 154.814 106.971 126.719 73.9021C98.6181 40.8333 102.604 -8.78732 135.619 -36.9336H135.614Z" fill="url(#paint3_linear_377_62301)"/>
<path d="M175.383 68.2296C159.403 64.295 147.398 52.5379 142.431 38.026C139.635 29.8605 139.066 20.8174 141.277 11.8151C144.427 -1.03469 152.614 -11.3215 163.221 -17.447C173.259 -23.2529 185.461 -25.3336 197.6 -22.3463C222.573 -16.2033 237.839 9.0603 231.706 34.0682C225.573 59.0819 200.356 74.3784 175.383 68.2296Z" fill="url(#paint4_linear_377_62301)"/>
<mask id="mask0_377_62301" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="-2" y="-166" width="377" height="378">
<path d="M271.423 191.195C364.202 144.207 401.383 30.7853 354.472 -62.1385C331.663 -107.325 293.164 -139.342 248.962 -154.905C202.271 -171.353 149.209 -169.446 101.543 -145.31C68.1328 -128.392 41.9295 -102.85 24.2789 -72.7566C-7.10009 -19.2886 -11.5157 48.5634 18.4998 108.017C65.4115 200.941 178.65 238.177 271.417 191.195H271.423ZM57.4101 -53.2117C71.4575 -77.1561 92.3111 -97.4797 118.903 -110.945C156.827 -130.153 199.051 -131.676 236.203 -118.582C271.376 -106.197 302.013 -80.7187 320.168 -44.7614C357.5 29.1871 327.909 119.443 254.086 156.836C180.263 194.229 90.1468 164.595 52.8147 90.6462C28.9265 43.3329 32.4427 -10.6582 57.4101 -53.2117Z" fill="white"/>
</mask>
<g mask="url(#mask0_377_62301)">
<path d="M271.15 191.277L101.316 -145.136" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M234.439 205.265L138.15 -159.165" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M195.622 211.298L177.083 -165.215" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M156.404 209.119L216.423 -163.03" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M118.491 198.82L254.451 -152.697" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M83.5497 180.85L289.503 -134.675" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M53.0991 155.993L320.046 -109.742" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M28.4741 125.342L344.747 -78.9983" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M10.7479 90.2339L362.525 -43.7789" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M0.698349 52.196L372.61 -5.625" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M-1.23962 12.9026L374.548 33.79" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M5.02689 -25.937L368.264 72.7521" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M19.2134 -62.6267L354.031 109.552" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M40.7111 -95.556L332.469 142.586" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M68.5739 -123.289L304.525 170.401" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
</g>
<mask id="mask1_377_62301" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="36" y="-128" width="301" height="301">
<path d="M267.628 149.054C337.169 104.164 357.216 11.3159 312.404 -58.3319C290.617 -92.1969 257.497 -114.345 221.227 -122.999C182.914 -132.141 141.073 -126.23 105.349 -103.175C80.3057 -87.0128 61.6803 -64.626 50.2033 -39.345C29.7907 5.57973 31.9086 59.6405 60.5779 104.205C105.389 173.859 198.093 193.932 267.628 149.048V149.054ZM87.8894 -22.119C96.1983 -40.4085 109.671 -56.6058 127.792 -68.2991C153.635 -84.9787 183.9 -89.262 211.618 -82.6424C237.856 -76.3832 261.82 -60.366 277.585 -35.8579C310.008 14.5356 295.502 81.7077 245.196 114.178C194.89 146.648 127.821 132.124 95.4034 81.7367C74.6601 49.4932 73.1283 10.3802 87.8952 -22.119H87.8894Z" fill="white"/>
</mask>
<g mask="url(#mask1_377_62301)">
<path d="M267.413 149.141L105.18 -103.013" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M239.516 163.258L133.171 -117.17" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M209.291 171.255L163.482 -125.196" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M178.075 172.783L194.797 -126.73" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M147.218 167.779L225.753 -121.703" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M118.079 156.458L254.979 -110.347" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M91.9219 139.313L281.217 -93.1503" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M69.8964 117.095L303.312 -70.868" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M52.9652 90.7796L320.296 -44.4711" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M41.8653 61.5119L331.424 -15.11" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M37.0842 30.57L336.223 15.9244" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M38.8307 -0.685425L334.471 47.2788" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M47.0294 -30.9007L326.249 77.587" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M61.3146 -58.7448L311.917 105.518" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M81.0715 -83.0089L292.102 129.852" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
</g>
<mask id="mask2_377_62301" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="78" y="-86" width="217" height="218">
<path d="M255.049 107C301.403 69.0723 308.285 0.691437 270.419 -45.7327C252.008 -68.3055 226.403 -81.533 199.625 -84.7992C171.339 -88.2572 141.741 -80.6031 117.928 -61.1164C101.235 -47.4588 89.6651 -29.8492 83.4625 -10.7402C72.4322 23.2177 78.339 61.9123 102.564 91.616C140.43 138.04 208.7 144.927 255.049 107.006V107ZM111.952 -1.42983C116.443 -15.256 124.816 -27.9953 136.89 -37.8752C154.117 -51.9687 175.528 -57.5073 195.993 -55.0082C215.361 -52.6429 233.888 -43.0767 247.21 -26.7458C274.603 6.84026 269.624 56.3156 236.092 83.7528C202.561 111.19 153.166 106.209 125.773 72.6175C108.244 51.1257 103.968 23.1306 111.952 -1.42983Z" fill="white"/>
</mask>
<g mask="url(#mask2_377_62301)">
<path d="M255.066 107.29L117.644 -61.2034" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M236.104 119.739L136.664 -73.6927" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M214.978 127.968L157.854 -81.9457" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M192.598 131.618L180.303 -85.6011" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M169.957 130.526L203.013 -84.5084" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M148.036 124.743L225.004 -78.7085" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M127.792 114.52L245.312 -68.4565" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M110.112 100.305L263.044 -54.1945" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M95.7689 82.7185L277.434 -36.5558" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M85.3886 62.534L287.843 -16.308" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M79.4296 40.624L293.825 5.66644" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M78.1473 17.9523L295.108 28.4076" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M81.594 -4.48669L291.65 50.9224" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M89.6302 -25.7228L283.59 72.2165" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M101.896 -44.8201L271.289 91.3779" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
</g>
<mask id="mask3_377_62301" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="108" y="-56" width="157" height="158">
<path d="M229.472 88.6172C265.684 64.8414 275.803 16.1623 252.06 -20.1087C240.519 -37.7474 223.095 -49.2023 204.075 -53.5785C183.987 -58.2105 162.113 -54.9443 143.505 -42.728C130.467 -34.1673 120.806 -22.3695 114.899 -9.09549C104.397 14.5002 105.726 42.7859 120.916 65.9979C144.654 102.269 193.254 112.399 229.466 88.623L229.472 88.6172ZM143.882 3.87049C147.398 -4.03347 153.148 -11.0482 160.906 -16.1451C171.977 -23.4156 184.997 -25.3567 196.95 -22.602C208.27 -19.9983 218.639 -13.1753 225.509 -2.67935C239.638 18.9112 233.615 47.8828 212.065 62.0343C190.515 76.1859 161.585 70.1591 147.456 48.5686C138.416 34.7541 137.627 17.9174 143.876 3.87629L143.882 3.87049Z" fill="white"/>
</mask>
<g mask="url(#mask3_377_62301)">
<path d="M229.46 88.8265L143.307 -42.8151" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M214.879 96.3468L157.935 -50.3589" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M199.056 100.665L173.804 -54.6945" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M182.682 101.595L190.231 -55.6242" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M166.47 99.0958L206.495 -53.1193" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M151.135 93.2723L221.877 -47.2787" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M137.343 84.3863L235.715 -38.3633" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M125.691 72.8209L247.395 -26.7632" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M116.704 59.0821L256.418 -12.9777" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M110.762 43.7681L262.377 2.37695" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M108.122 27.5534L265.023 18.644" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M108.911 11.1467L264.228 35.1027" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M113.089 -4.74243L260.038 51.0386" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M120.469 -19.4113L252.635 65.7539" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M130.74 -32.2203L242.336 78.6037" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
</g>
<mask id="mask4_377_62301" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="139" y="-24" width="95" height="94">
<path d="M212.071 62.0288C233.626 47.8773 239.643 18.9058 225.515 -2.68482C218.645 -13.1808 208.276 -19.998 196.956 -22.6075C184.997 -25.3622 171.983 -23.4211 160.906 -16.1506C153.142 -11.0537 147.398 -4.03315 143.882 3.865C137.633 17.9062 138.422 34.7428 147.462 48.5573C161.591 70.142 190.515 76.1746 212.065 62.023L212.071 62.0288Z" fill="white"/>
</mask>
<g mask="url(#mask4_377_62301)">
<path d="M198.72 68.1488L174.124 -22.2353" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M189.082 69.7181L183.785 -23.8101" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M179.334 69.2473L193.567 -23.3394" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M169.894 66.7601L203.037 -20.8401" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M161.179 62.3607L211.781 -16.429" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M153.566 56.2408L219.417 -10.2861" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M147.387 48.668L225.608 -2.69031" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M142.919 39.9737L230.093 6.02731" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M140.354 30.5414L232.669 15.489" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M139.797 20.7777L233.221 25.2818" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M141.283 11.1183L231.729 34.9754" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M144.747 1.9707L228.26 44.1465" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M150.027 -6.24719L222.962 52.3932" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M156.897 -13.1923L216.069 59.3556" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M165.061 -18.5504L207.882 64.7318" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
</g>
<mask id="mask5_377_62301" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="-167" width="274" height="214">
<path d="M273.129 -144.712C267.21 -140.609 261.472 -136.192 255.867 -131.606C238.854 -117.693 222.55 -101.606 213.121 -80.777C202.66 -57.6637 201.609 -30.9413 194.948 -6.20078C188.293 18.5398 172.493 43.8906 149.046 46.6512C123.707 49.6326 103.422 25.8916 81.9597 10.8567C58.1121 -5.85207 29.205 -12.5646 0.820007 -10.949C9.19856 -57.7857 35.1872 -101.496 76.9581 -131.246C136.571 -173.707 212.436 -176.427 273.129 -144.712Z" fill="white"/>
</mask>
<g mask="url(#mask5_377_62301)">
<path d="M18.297 107.529C-11.7184 48.0696 -7.30867 -19.7825 24.0703 -73.2504C41.721 -103.344 67.9242 -128.88 101.334 -145.804C148.994 -169.94 202.056 -171.847 248.748 -155.399C292.95 -139.835 331.448 -107.813 354.263 -62.6266C401.175 30.2973 363.993 143.719 271.214 190.707C178.447 237.695 65.2029 200.459 18.297 107.529Z" fill="url(#paint5_linear_377_62301)"/>
<path d="M72.9548 120.333C38.4193 80.22 28.8455 27.0252 42.8233 -20.2475C50.6855 -46.8536 66.0152 -71.5826 88.5514 -91.0519C120.702 -118.82 161.278 -130.484 200.443 -126.753C237.526 -123.231 273.355 -105.918 299.599 -75.4357C353.572 -12.7503 346.586 81.8938 284.003 135.955C221.419 190.01 126.934 183.024 72.9606 120.333H72.9548Z" fill="url(#paint6_linear_377_62301)"/>
<path d="M133.16 117.049C99.7847 98.248 80.1903 64.383 78.0956 28.7396C76.912 8.68331 81.2753 -11.9367 91.8355 -30.7551C106.904 -57.5937 131.674 -75.5345 159.264 -82.6539C185.381 -89.3955 214.038 -86.4374 239.4 -72.1521C291.563 -42.768 310.061 23.4103 280.724 75.6519C251.388 127.894 185.323 146.427 133.16 117.043V117.049Z" fill="url(#paint7_linear_377_62301)"/>
<path d="M167.55 98.806C140.61 92.1748 120.365 72.351 111.993 47.8894C107.275 34.1214 106.324 18.883 110.049 3.69112C115.364 -17.9692 129.168 -35.3114 147.044 -45.6505C163.964 -55.4375 184.539 -58.9478 205.01 -53.909C247.111 -43.5467 272.856 -0.964085 262.511 41.2059C252.165 83.3758 209.652 109.163 167.55 98.8002V98.806Z" fill="url(#paint8_linear_377_62301)"/>
<path d="M175.168 67.7421C159.189 63.8076 147.184 52.0505 142.217 37.5386C139.42 29.3731 138.852 20.33 141.062 11.3276C144.213 -1.52212 152.4 -11.8089 163.007 -17.9345C173.045 -23.7404 185.247 -25.821 197.385 -22.8337C222.359 -16.6907 237.625 8.57287 231.492 33.5808C225.358 58.5945 200.142 73.891 175.168 67.7421Z" fill="url(#paint9_linear_377_62301)"/>
<mask id="mask6_377_62301" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="-3" y="-167" width="378" height="379">
<path d="M271.208 190.702C363.988 143.714 401.169 30.2921 354.257 -62.6318C331.448 -107.818 292.95 -139.835 248.748 -155.399C202.056 -171.846 148.994 -169.94 101.328 -145.804C67.9183 -128.886 41.715 -103.343 24.0644 -73.2498C-7.31459 -19.7819 -11.7302 48.0701 18.2852 107.524C65.197 200.448 178.435 237.684 271.203 190.702H271.208ZM57.1956 -53.705C71.243 -77.6493 92.0966 -97.973 118.689 -111.439C156.613 -130.647 198.836 -132.169 235.988 -119.075C271.162 -106.691 301.798 -81.2119 319.954 -45.2547C357.286 28.6938 327.694 118.95 253.871 156.343C180.048 193.73 89.9323 164.101 52.6002 90.1529C28.712 42.8396 32.2282 -11.1514 57.1956 -53.705Z" fill="white"/>
</mask>
<g mask="url(#mask6_377_62301)">
<path d="M270.936 190.789L101.102 -145.629" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M234.224 204.772L137.935 -159.653" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M195.407 210.804L176.869 -165.709" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M156.189 208.625L216.208 -163.524" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M118.277 198.327L254.237 -153.19" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M83.3351 180.357L289.288 -135.168" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M52.8844 155.506L319.832 -110.236" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M28.2594 124.849L344.532 -79.4858" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M10.5333 89.7402L362.311 -44.2668" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M0.483658 51.7081L372.395 -6.11865" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M-1.45432 12.409L374.333 33.2964" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M4.81219 -26.4307L368.049 72.2584" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M18.9989 -63.1143L353.816 109.058" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M40.4964 -96.0496L332.255 142.092" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M68.3593 -123.783L304.311 169.913" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
</g>
<mask id="mask7_377_62301" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="36" y="-128" width="301" height="301">
<path d="M267.414 148.566C336.955 103.676 357.002 10.8274 312.19 -58.8204C290.403 -92.6854 257.283 -114.834 221.013 -123.488C182.7 -132.629 140.859 -126.719 105.134 -103.664C80.0916 -87.5013 61.4662 -65.1145 49.9892 -39.8335C29.5766 5.09126 31.6944 59.152 60.3637 103.716C105.175 173.37 197.879 193.444 267.414 148.56V148.566ZM87.6752 -22.6075C95.9842 -40.897 109.457 -57.0943 127.578 -68.7875C153.421 -85.4672 183.686 -89.7505 211.404 -83.1309C237.642 -76.8717 261.606 -60.8545 277.371 -36.3464C309.794 14.0471 295.288 81.2192 244.982 113.689C194.676 146.16 127.607 131.636 95.1892 81.2482C74.4459 49.0047 72.9141 9.89175 87.681 -22.6075H87.6752Z" fill="white"/>
</mask>
<g mask="url(#mask7_377_62301)">
<path d="M267.199 148.653L104.966 -103.506" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M239.301 162.77L132.956 -117.664" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M209.077 170.767L163.268 -125.684" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M177.861 172.295L194.583 -127.218" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M147.004 167.286L225.538 -122.197" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M117.865 155.965L254.765 -110.841" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M91.7076 138.82L281.003 -93.6439" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M69.6821 116.602L303.098 -71.3615" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M52.751 90.2859L320.081 -44.959" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M41.6511 61.018L331.21 -15.6039" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M36.87 30.0822L336.009 15.4308" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M38.6165 -1.17896L334.256 46.7911" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M46.8152 -31.3942L326.034 77.0934" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M61.1003 -59.2383L311.703 105.025" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
<path d="M80.8573 -83.5024L291.888 129.364" stroke="black" stroke-width="11.5746" stroke-miterlimit="10"/>
</g>
<mask id="mask8_377_62301" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="77" y="-87" width="218" height="219">
<path d="M254.834 106.512C301.189 68.585 308.07 0.204132 270.205 -46.22C251.794 -68.7928 226.188 -82.0203 199.41 -85.2865C171.124 -88.7445 141.526 -81.0904 117.714 -61.6037C101.02 -47.9461 89.4507 -30.3365 83.248 -11.2276C72.2178 22.7304 78.1245 61.425 102.349 91.1287C140.215 137.553 208.485 144.44 254.834 106.518V106.512ZM111.737 -1.92296C116.228 -15.7491 124.601 -28.4884 136.676 -38.3684C153.903 -52.4618 175.313 -58.0004 195.778 -55.5014C215.146 -53.136 233.673 -43.5699 246.995 -27.2389C274.388 6.34714 269.41 55.8224 235.878 83.2596C202.346 110.697 152.951 105.716 125.559 72.1244C108.03 50.6326 103.753 22.6374 111.737 -1.92296Z" fill="white"/>
</mask>
<g mask="url(#mask8_377_62301)">
<path d="M254.852 106.797L117.43 -61.6969" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M235.89 119.246L136.45 -74.1805" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M214.764 127.475L157.64 -82.4332" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M192.384 131.125L180.089 -86.0946" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M169.743 130.032L202.799 -85.0018" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M147.822 124.25L224.79 -79.202" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M127.578 114.027L245.098 -68.9443" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M109.898 99.817L262.83 -54.688" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M95.5547 82.2309L277.22 -37.0492" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M85.1745 62.0406L287.629 -16.8015" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M79.2155 40.1362L293.611 5.17865" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M77.9331 17.4649L294.893 27.9144" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M81.3798 -4.98016L291.435 50.4289" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M89.416 -26.2162L283.376 71.7289" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
<path d="M101.682 -45.3078L271.075 90.8844" stroke="black" stroke-width="8.68092" stroke-miterlimit="10"/>
</g>
<mask id="mask9_377_62301" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="107" y="-57" width="158" height="158">
<path d="M229.257 88.1243C265.47 64.3485 275.589 15.6694 251.846 -20.6017C240.305 -38.2403 222.881 -49.6952 203.861 -54.0714C183.773 -58.7034 161.898 -55.4372 143.29 -43.2209C130.252 -34.6602 120.592 -22.8624 114.685 -9.58841C104.183 14.0072 105.511 42.293 120.702 65.505C144.439 101.776 193.039 111.906 229.252 88.1301L229.257 88.1243ZM143.667 3.37757C147.184 -4.52639 152.934 -11.5412 160.691 -16.6381C171.762 -23.9085 184.783 -25.8496 196.735 -23.0949C208.056 -20.4912 218.424 -13.6682 225.294 -3.17225C239.423 18.4184 233.4 47.3898 211.85 61.5414C190.301 75.693 161.37 69.6662 147.242 48.0756C138.202 34.2611 137.412 17.4245 143.662 3.38339L143.667 3.37757Z" fill="white"/>
</mask>
<g mask="url(#mask9_377_62301)">
<path d="M229.246 88.333L143.093 -43.3087" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M214.665 95.8532L157.721 -50.8524" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M198.842 100.171L173.596 -55.188" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M182.468 101.101L190.016 -56.1177" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M166.256 98.6024L206.28 -53.6128" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M150.92 92.7846L221.662 -47.7723" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M137.128 83.8929L235.501 -38.8568" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M125.477 72.3275L247.181 -27.2507" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M116.489 58.5885L256.203 -13.4712" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M110.548 43.2805L262.163 1.88348" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M107.908 27.0658L264.808 18.1505" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M108.697 10.6532L264.013 34.6092" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M112.875 -5.23035L259.824 50.5449" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M120.255 -19.8992L252.42 65.2602" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
<path d="M130.525 -32.7138L242.121 78.1102" stroke="black" stroke-width="5.3739" stroke-miterlimit="10"/>
</g>
<mask id="mask10_377_62301" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="139" y="-25" width="94" height="95">
<path d="M211.857 61.5353C233.412 47.3837 239.429 18.4122 225.3 -3.17842C218.431 -13.6744 208.062 -20.4916 196.741 -23.101C184.783 -25.8558 171.768 -23.9147 160.692 -16.6442C152.928 -11.5473 147.184 -4.52674 143.668 3.3714C137.419 17.4126 138.208 34.2492 147.248 48.0636C161.376 69.6484 190.301 75.681 211.851 61.5294L211.857 61.5353Z" fill="white"/>
</mask>
<g mask="url(#mask10_377_62301)">
<path d="M198.505 67.6552L173.909 -22.7289" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M188.868 69.2303L183.57 -24.3038" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M179.12 68.7595L193.353 -23.8331" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M169.68 66.2665L202.822 -21.3338" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M160.964 61.8668L211.566 -16.9171" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M153.352 55.7472L219.202 -10.7797" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M147.172 48.1743L225.393 -3.18396" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M142.704 39.48L229.879 5.53366" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M140.14 30.0478L232.455 14.9954" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M139.583 20.2897L233.006 24.788" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M141.068 10.6246L231.515 34.4818" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M144.532 1.48309L228.045 43.653" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M149.812 -6.74084L222.748 51.8996" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M156.682 -13.6859L215.854 58.8678" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
<path d="M164.846 -19.0441L207.667 64.2439" stroke="black" stroke-width="2.48026" stroke-miterlimit="10"/>
</g>
</g>
</g>
<rect x="-42" width="458" height="46" fill="url(#paint10_linear_377_62301)"/>
</g>
<defs>
<linearGradient id="paint0_linear_377_62301" x1="354.608" y1="-61.8566" x2="18.4071" y2="107.843" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFDF00"/>
<stop offset="0.39" stop-color="#FF0093"/>
<stop offset="0.58" stop-color="#FF24D2"/>
<stop offset="0.75" stop-color="#D942FF"/>
<stop offset="1" stop-color="#A94BFF"/>
</linearGradient>
<linearGradient id="paint1_linear_377_62301" x1="273.33" y1="145.042" x2="99.5016" y2="-98.981" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFDF00"/>
<stop offset="0.39" stop-color="#FF0093"/>
<stop offset="0.58" stop-color="#FF24D2"/>
<stop offset="0.75" stop-color="#D942FF"/>
<stop offset="1" stop-color="#A94BFF"/>
</linearGradient>
<linearGradient id="paint2_linear_377_62301" x1="266.274" y1="96.3527" x2="106.381" y2="-50.1817" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFDF00"/>
<stop offset="0.39" stop-color="#FF0093"/>
<stop offset="0.58" stop-color="#FF24D2"/>
<stop offset="0.75" stop-color="#D942FF"/>
<stop offset="1" stop-color="#A94BFF"/>
</linearGradient>
<linearGradient id="paint3_linear_377_62301" x1="237.271" y1="82.8274" x2="135.325" y2="-36.7643" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFDF00"/>
<stop offset="0.39" stop-color="#FF0093"/>
<stop offset="0.58" stop-color="#FF24D2"/>
<stop offset="0.75" stop-color="#D942FF"/>
<stop offset="1" stop-color="#A94BFF"/>
</linearGradient>
<linearGradient id="paint4_linear_377_62301" x1="197.451" y1="-22.4835" x2="175.171" y2="68.0799" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFDF00"/>
<stop offset="0.39" stop-color="#FF0093"/>
<stop offset="0.58" stop-color="#FF24D2"/>
<stop offset="0.75" stop-color="#D942FF"/>
<stop offset="1" stop-color="#A94BFF"/>
</linearGradient>
<linearGradient id="paint5_linear_377_62301" x1="354.394" y1="-62.346" x2="18.1978" y2="107.351" gradientUnits="userSpaceOnUse">
<stop stop-color="#A775F7"/>
<stop offset="0.26" stop-color="#6000E1"/>
<stop offset="0.66" stop-color="#3B54EE"/>
<stop offset="0.75" stop-color="#17A2F4"/>
<stop offset="1" stop-color="#1AF387"/>
</linearGradient>
<linearGradient id="paint6_linear_377_62301" x1="299.776" y1="-75.1565" x2="72.8042" y2="120.236" gradientUnits="userSpaceOnUse">
<stop stop-color="#A775F7"/>
<stop offset="0.26" stop-color="#6000E1"/>
<stop offset="0.66" stop-color="#3B54EE"/>
<stop offset="0.75" stop-color="#17A2F4"/>
<stop offset="1" stop-color="#1AF387"/>
</linearGradient>
<linearGradient id="paint7_linear_377_62301" x1="239.628" y1="-71.8889" x2="133.111" y2="117.151" gradientUnits="userSpaceOnUse">
<stop stop-color="#A775F7"/>
<stop offset="0.26" stop-color="#6000E1"/>
<stop offset="0.66" stop-color="#3B54EE"/>
<stop offset="0.75" stop-color="#17A2F4"/>
<stop offset="1" stop-color="#1AF387"/>
</linearGradient>
<linearGradient id="paint8_linear_377_62301" x1="204.856" y1="-54.0424" x2="167.29" y2="98.6498" gradientUnits="userSpaceOnUse">
<stop stop-color="#A775F7"/>
<stop offset="0.26" stop-color="#6000E1"/>
<stop offset="0.66" stop-color="#3B54EE"/>
<stop offset="0.75" stop-color="#17A2F4"/>
<stop offset="1" stop-color="#1AF387"/>
</linearGradient>
<linearGradient id="paint9_linear_377_62301" x1="197.237" y1="-22.9724" x2="174.956" y2="67.5911" gradientUnits="userSpaceOnUse">
<stop stop-color="#A775F7"/>
<stop offset="0.26" stop-color="#6000E1"/>
<stop offset="0.66" stop-color="#3B54EE"/>
<stop offset="0.75" stop-color="#17A2F4"/>
<stop offset="1" stop-color="#1AF387"/>
</linearGradient>
<linearGradient id="paint10_linear_377_62301" x1="-42" y1="23" x2="416" y2="23" gradientUnits="userSpaceOnUse">
<stop stop-color="#111112" stop-opacity="0"/>
<stop offset="0.5" stop-color="#111112" stop-opacity="0.8"/>
<stop offset="1" stop-color="#111112" stop-opacity="0"/>
</linearGradient>
<clipPath id="clip0_377_62301">
<rect width="375" height="46" fill="white"/>
</clipPath>
<clipPath id="clip1_377_62301">
<rect width="377" height="377.827" fill="white" transform="translate(-2 -166.128)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 31 KiB

View File

@@ -1,127 +1,306 @@
<svg width="1440" height="46" viewBox="0 0 1440 46" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M963.166 -1642.26L792.956 -1470.12C741.574 -1418.22 658.318 -1418.22 606.936 -1470.12L436.853 -1642.13H437.363L213.348 -1868.73C132.26 -1950.72 0.808715 -1950.72 -80.2802 -1868.73L-304.295 -1642.13L-313.73 -1632.44L-540.039 -1408.53C-622.021 -1327.43 -622.021 -1195.96 -540.039 -1114.87L-313.475 -890.824V-891.334L-141.989 -721.613C-90.0976 -670.225 -90.0976 -586.959 -141.989 -535.571L-314.112 -365.34V-365.212L-540.039 -141.809C-622.021 -60.7099 -622.021 70.7567 -540.039 151.855L-313.475 375.897L-305.57 384.44L-81.6827 611.032C-0.593775 693.023 130.857 693.023 211.946 611.032L435.578 384.313L605.788 212.169C657.17 160.271 740.427 160.271 791.808 212.169L961.891 384.185H961.381L1185.4 610.777C1266.48 692.768 1397.94 692.768 1479.02 610.777L1703.04 384.185L1712.47 374.494L1939.04 150.453C2021.02 69.354 2021.02 -62.1126 1939.04 -143.211L1712.35 -367.125V-366.488L1540.86 -536.208C1488.97 -587.596 1488.97 -670.863 1540.86 -722.251L1712.98 -892.481V-892.864L1938.91 -1116.4C2020.89 -1197.49 2020.89 -1328.96 1938.91 -1410.06L1712.35 -1633.85L1704.44 -1642.39L1480.43 -1868.98C1399.34 -1950.97 1267.89 -1950.97 1186.8 -1868.98L962.784 -1642.39L963.166 -1642.26Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M963.166 -1642.26L792.956 -1470.12C741.574 -1418.22 658.318 -1418.22 606.936 -1470.12L436.853 -1642.13H437.363L213.348 -1868.73C132.26 -1950.72 0.808715 -1950.72 -80.2802 -1868.73L-304.295 -1642.13L-313.73 -1632.44L-540.039 -1408.53C-622.021 -1327.43 -622.021 -1195.96 -540.039 -1114.87L-313.475 -890.824V-891.334L-141.989 -721.613C-90.0976 -670.225 -90.0976 -586.959 -141.989 -535.571L-314.112 -365.34V-365.212L-540.039 -141.809C-622.021 -60.7099 -622.021 70.7567 -540.039 151.855L-313.475 375.897L-305.57 384.44L-81.6827 611.032C-0.593775 693.023 130.857 693.023 211.946 611.032L435.578 384.313L605.788 212.169C657.17 160.271 740.427 160.271 791.808 212.169L961.891 384.185H961.381L1185.4 610.777C1266.48 692.768 1397.94 692.768 1479.02 610.777L1703.04 384.185L1712.47 374.494L1939.04 150.453C2021.02 69.354 2021.02 -62.1126 1939.04 -143.211L1712.35 -367.125V-366.488L1540.86 -536.208C1488.97 -587.596 1488.97 -670.863 1540.86 -722.251L1712.98 -892.481V-892.864L1938.91 -1116.4C2020.89 -1197.49 2020.89 -1328.96 1938.91 -1410.06L1712.35 -1633.85L1704.44 -1642.39L1480.43 -1868.98C1399.34 -1950.97 1267.89 -1950.97 1186.8 -1868.98L962.784 -1642.39L963.166 -1642.26Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M960.871 -1633.21L792.191 -1462.72C741.319 -1411.21 658.827 -1411.21 607.955 -1462.72L439.403 -1633.21H439.913L217.938 -1857.76C137.614 -1938.98 7.31073 -1938.98 -73.0132 -1857.76L-294.988 -1633.21L-304.295 -1623.64L-528.947 -1401.51C-610.164 -1321.18 -610.164 -1190.86 -528.947 -1110.53L-304.423 -888.528V-889.038L-134.467 -720.975C-82.9581 -670.097 -82.9581 -587.596 -134.467 -536.718L-304.933 -368.017V-367.635L-528.947 -146.143C-610.164 -65.8099 -610.164 64.5091 -528.947 144.843L-304.423 366.844L-296.645 375.387L-74.6707 599.811C5.65323 681.037 135.957 681.037 216.28 599.811L438 375.132L606.68 204.647C657.552 153.131 740.044 153.131 790.916 204.647L959.468 375.132H958.958L1180.93 599.684C1261.26 680.91 1391.56 680.91 1471.88 599.684L1693.86 375.132L1703.17 365.569L1927.69 143.567C2008.91 63.2339 2008.91 -67.085 1927.69 -147.419L1703.17 -369.42V-368.91L1533.21 -537.1C1481.7 -587.978 1481.7 -670.479 1533.21 -721.357L1703.68 -890.058V-890.44L1927.56 -1111.93C2008.78 -1192.26 2008.78 -1322.58 1927.56 -1402.92L1703.04 -1624.92L1695.26 -1633.46L1473.29 -1858.01C1392.96 -1939.24 1262.66 -1939.24 1182.34 -1858.01L960.361 -1633.46L960.871 -1633.21Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M960.871 -1633.21L792.191 -1462.72C741.319 -1411.21 658.827 -1411.21 607.955 -1462.72L439.403 -1633.21H439.913L217.938 -1857.76C137.614 -1938.98 7.31073 -1938.98 -73.0132 -1857.76L-294.988 -1633.21L-304.295 -1623.64L-528.947 -1401.51C-610.164 -1321.18 -610.164 -1190.86 -528.947 -1110.53L-304.423 -888.528V-889.038L-134.467 -720.975C-82.9581 -670.097 -82.9581 -587.596 -134.467 -536.718L-304.933 -368.017V-367.635L-528.947 -146.143C-610.164 -65.8099 -610.164 64.5091 -528.947 144.843L-304.423 366.844L-296.645 375.387L-74.6707 599.811C5.65323 681.037 135.957 681.037 216.28 599.811L438 375.132L606.68 204.647C657.552 153.131 740.044 153.131 790.916 204.647L959.468 375.132H958.958L1180.93 599.684C1261.26 680.91 1391.56 680.91 1471.88 599.684L1693.86 375.132L1703.17 365.569L1927.69 143.567C2008.91 63.2339 2008.91 -67.085 1927.69 -147.419L1703.17 -369.42V-368.91L1533.21 -537.1C1481.7 -587.978 1481.7 -670.479 1533.21 -721.357L1703.68 -890.058V-890.44L1927.56 -1111.93C2008.78 -1192.26 2008.78 -1322.58 1927.56 -1402.92L1703.04 -1624.92L1695.26 -1633.46L1473.29 -1858.01C1392.96 -1939.24 1262.66 -1939.24 1182.34 -1858.01L960.361 -1633.46L960.871 -1633.21Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M958.449 -1624.03L791.299 -1455.07C740.809 -1404.07 659.083 -1404.07 608.721 -1455.07L441.698 -1624.03H442.208L222.273 -1846.54C142.587 -1927.13 13.5585 -1927.13 -66.128 -1846.54L-286.063 -1624.03L-295.243 -1614.59L-517.727 -1394.5C-598.306 -1314.81 -598.306 -1185.76 -517.727 -1106.07L-295.243 -886.105V-886.615L-126.817 -719.955C-75.8179 -669.459 -75.8179 -587.723 -126.817 -537.355L-295.88 -370.312V-369.93L-517.727 -150.479C-598.306 -70.7826 -598.306 58.2612 -517.727 137.957L-295.37 357.791L-287.72 366.207L-67.658 588.718C12.0285 669.307 141.057 669.307 220.743 588.718L440.423 366.079L607.446 197.124C657.935 146.118 739.662 146.118 790.024 197.124L957.046 366.079H956.536L1176.47 588.59C1256.16 669.179 1385.19 669.179 1464.87 588.59L1684.81 366.079L1693.99 356.643L1916.47 136.682C1997.05 56.9861 1997.05 -72.0577 1916.47 -151.754L1693.99 -371.715V-371.205L1525.56 -537.865C1474.56 -588.361 1474.56 -670.097 1525.56 -720.465L1694.5 -887.635V-888.018L1916.47 -1107.47C1997.05 -1187.16 1997.05 -1316.21 1916.47 -1395.9L1693.99 -1615.87L1686.34 -1624.28L1466.4 -1846.79C1386.72 -1927.38 1257.69 -1927.38 1178 -1846.79L958.066 -1624.28L958.449 -1624.03Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M958.449 -1624.03L791.299 -1455.07C740.809 -1404.07 659.083 -1404.07 608.721 -1455.07L441.698 -1624.03H442.208L222.273 -1846.54C142.587 -1927.13 13.5585 -1927.13 -66.128 -1846.54L-286.063 -1624.03L-295.243 -1614.59L-517.727 -1394.5C-598.306 -1314.81 -598.306 -1185.76 -517.727 -1106.07L-295.243 -886.105V-886.615L-126.817 -719.955C-75.8179 -669.459 -75.8179 -587.723 -126.817 -537.355L-295.88 -370.312V-369.93L-517.727 -150.479C-598.306 -70.7826 -598.306 58.2612 -517.727 137.957L-295.37 357.791L-287.72 366.207L-67.658 588.718C12.0285 669.307 141.057 669.307 220.743 588.718L440.423 366.079L607.446 197.124C657.935 146.118 739.662 146.118 790.024 197.124L957.046 366.079H956.536L1176.47 588.59C1256.16 669.179 1385.19 669.179 1464.87 588.59L1684.81 366.079L1693.99 356.643L1916.47 136.682C1997.05 56.9861 1997.05 -72.0577 1916.47 -151.754L1693.99 -371.715V-371.205L1525.56 -537.865C1474.56 -588.361 1474.56 -670.097 1525.56 -720.465L1694.5 -887.635V-888.018L1916.47 -1107.47C1997.05 -1187.16 1997.05 -1316.21 1916.47 -1395.9L1693.99 -1615.87L1686.34 -1624.28L1466.4 -1846.79C1386.72 -1927.38 1257.69 -1927.38 1178 -1846.79L958.066 -1624.28L958.449 -1624.03Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M956.025 -1614.97L790.533 -1447.55C740.553 -1397.05 659.592 -1397.05 609.612 -1447.55L444.12 -1614.97H444.63L226.735 -1835.44C147.814 -1915.27 19.9328 -1915.27 -58.9887 -1835.44L-276.883 -1614.97L-286.063 -1605.54L-506.635 -1387.49C-586.449 -1308.56 -586.449 -1180.66 -506.635 -1101.73L-286.191 -883.81V-884.32L-119.295 -719.19C-68.806 -669.205 -68.806 -588.234 -119.295 -538.249L-286.701 -372.736V-372.353L-506.635 -154.943C-586.449 -76.0116 -586.449 51.8845 -506.635 130.815L-286.191 348.864L-278.541 357.28L-60.6462 577.623C18.2753 657.447 146.156 657.447 225.078 577.623L442.717 357.025L608.337 189.599C658.317 139.104 739.278 139.104 789.258 189.599L954.75 357.025H954.24L1172.14 577.496C1251.06 657.319 1378.94 657.319 1457.86 577.496L1675.75 357.025L1684.93 347.589L1905.38 129.54C1985.19 50.6094 1985.19 -77.2867 1905.38 -156.218L1685.06 -374.138V-373.628L1518.17 -538.631C1467.68 -588.616 1467.68 -669.588 1518.17 -719.573L1685.57 -885.213V-885.596L1905.51 -1103.01C1985.32 -1181.94 1985.32 -1309.83 1905.51 -1388.76L1685.06 -1606.69L1677.41 -1615.1L1459.52 -1835.57C1380.59 -1915.4 1252.71 -1915.4 1173.79 -1835.57L955.898 -1615.1L956.025 -1614.97Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M956.025 -1614.97L790.533 -1447.55C740.553 -1397.05 659.592 -1397.05 609.612 -1447.55L444.12 -1614.97H444.63L226.735 -1835.44C147.814 -1915.27 19.9328 -1915.27 -58.9887 -1835.44L-276.883 -1614.97L-286.063 -1605.54L-506.635 -1387.49C-586.449 -1308.56 -586.449 -1180.66 -506.635 -1101.73L-286.191 -883.81V-884.32L-119.295 -719.19C-68.806 -669.205 -68.806 -588.234 -119.295 -538.249L-286.701 -372.736V-372.353L-506.635 -154.943C-586.449 -76.0116 -586.449 51.8845 -506.635 130.815L-286.191 348.864L-278.541 357.28L-60.6462 577.623C18.2753 657.447 146.156 657.447 225.078 577.623L442.717 357.025L608.337 189.599C658.317 139.104 739.278 139.104 789.258 189.599L954.75 357.025H954.24L1172.14 577.496C1251.06 657.319 1378.94 657.319 1457.86 577.496L1675.75 357.025L1684.93 347.589L1905.38 129.54C1985.19 50.6094 1985.19 -77.2867 1905.38 -156.218L1685.06 -374.138V-373.628L1518.17 -538.631C1467.68 -588.616 1467.68 -669.588 1518.17 -719.573L1685.57 -885.213V-885.596L1905.51 -1103.01C1985.32 -1181.94 1985.32 -1309.83 1905.51 -1388.76L1685.06 -1606.69L1677.41 -1615.1L1459.52 -1835.57C1380.59 -1915.4 1252.71 -1915.4 1173.79 -1835.57L955.898 -1615.1L956.025 -1614.97Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M953.731 -1605.92L789.641 -1440.03C740.172 -1389.91 659.848 -1389.91 610.378 -1440.03L446.415 -1605.92H446.925L230.943 -1824.35C152.787 -1903.41 26.0533 -1903.41 -52.1032 -1824.35L-268.085 -1605.92L-277.138 -1596.61L-495.415 -1380.48C-574.464 -1302.31 -574.464 -1175.56 -495.415 -1097.4L-277.01 -881.389V-881.898L-111.772 -718.426C-61.6656 -668.951 -61.6656 -588.617 -111.772 -539.142L-277.648 -375.032V-374.649L-495.542 -159.151C-574.591 -80.9854 -574.591 45.7631 -495.542 123.929L-277.138 339.937L-269.615 348.225L-53.6332 566.401C24.5233 645.46 151.257 645.46 229.413 566.401L445.013 347.843L609.103 181.948C658.573 131.835 738.897 131.835 788.366 181.948L952.456 347.843H951.946L1167.93 566.274C1246.09 645.332 1372.82 645.332 1450.97 566.274L1666.96 347.843L1676.01 338.534L1894.41 122.526C1973.46 44.3605 1973.46 -82.3881 1894.41 -160.554L1676.01 -376.562V-376.052L1510.64 -539.652C1460.54 -589.127 1460.54 -669.461 1510.64 -718.936L1676.52 -883.046V-883.429L1894.41 -1098.93C1973.46 -1177.09 1973.46 -1303.84 1894.41 -1382.01L1676.01 -1598.02L1668.49 -1606.3L1452.5 -1824.73C1374.35 -1903.79 1247.62 -1903.79 1169.46 -1824.73L953.476 -1606.3L953.731 -1605.92Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M953.731 -1605.92L789.641 -1440.03C740.172 -1389.91 659.848 -1389.91 610.378 -1440.03L446.415 -1605.92H446.925L230.943 -1824.35C152.787 -1903.41 26.0533 -1903.41 -52.1032 -1824.35L-268.085 -1605.92L-277.138 -1596.61L-495.415 -1380.48C-574.464 -1302.31 -574.464 -1175.56 -495.415 -1097.4L-277.01 -881.389V-881.898L-111.772 -718.426C-61.6656 -668.951 -61.6656 -588.617 -111.772 -539.142L-277.648 -375.032V-374.649L-495.542 -159.151C-574.591 -80.9854 -574.591 45.7631 -495.542 123.929L-277.138 339.937L-269.615 348.225L-53.6332 566.401C24.5233 645.46 151.257 645.46 229.413 566.401L445.013 347.843L609.103 181.948C658.573 131.835 738.897 131.835 788.366 181.948L952.456 347.843H951.946L1167.93 566.274C1246.09 645.332 1372.82 645.332 1450.97 566.274L1666.96 347.843L1676.01 338.534L1894.41 122.526C1973.46 44.3605 1973.46 -82.3881 1894.41 -160.554L1676.01 -376.562V-376.052L1510.64 -539.652C1460.54 -589.127 1460.54 -669.461 1510.64 -718.936L1676.52 -883.046V-883.429L1894.41 -1098.93C1973.46 -1177.09 1973.46 -1303.84 1894.41 -1382.01L1676.01 -1598.02L1668.49 -1606.3L1452.5 -1824.73C1374.35 -1903.79 1247.62 -1903.79 1169.46 -1824.73L953.476 -1606.3L953.731 -1605.92Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M951.309 -1596.74L788.748 -1432.38C739.661 -1382.77 660.23 -1382.77 611.143 -1432.38L448.838 -1596.74H449.348L235.406 -1813.13C158.014 -1891.42 32.4283 -1891.42 -44.9632 -1813.13L-258.905 -1596.74L-267.83 -1587.56L-484.195 -1373.59C-562.479 -1296.19 -562.479 -1170.59 -484.195 -1093.19L-267.958 -879.093V-879.604L-104.122 -717.534C-54.5256 -668.441 -54.5256 -589 -104.122 -539.907L-268.468 -377.455V-377.072L-484.323 -163.742C-562.607 -86.3411 -562.607 39.2598 -484.323 116.661L-267.958 330.628L-260.435 338.789L-46.4932 555.18C30.8983 633.473 156.484 633.473 233.876 555.18L447.563 338.662L610.123 174.297C659.21 124.694 738.642 124.694 787.728 174.297L950.161 338.534H949.651L1163.59 554.925C1240.98 633.218 1366.57 633.218 1443.96 554.925L1657.9 338.534L1666.83 329.353L1883.19 115.513C1961.48 38.1121 1961.48 -87.4888 1883.19 -164.89L1666.83 -378.857V-378.347L1502.99 -540.417C1453.4 -589.51 1453.4 -668.951 1502.99 -718.044L1667.34 -880.624V-881.006L1883.19 -1094.46C1961.48 -1171.86 1961.48 -1297.47 1883.19 -1374.87L1666.83 -1588.83L1659.31 -1597L1445.36 -1813.39C1367.97 -1891.68 1242.39 -1891.68 1165 -1813.39L951.054 -1597L951.309 -1596.74Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M951.309 -1596.74L788.748 -1432.38C739.661 -1382.77 660.23 -1382.77 611.143 -1432.38L448.838 -1596.74H449.348L235.406 -1813.13C158.014 -1891.42 32.4283 -1891.42 -44.9632 -1813.13L-258.905 -1596.74L-267.83 -1587.56L-484.195 -1373.59C-562.479 -1296.19 -562.479 -1170.59 -484.195 -1093.19L-267.958 -879.093V-879.604L-104.122 -717.534C-54.5256 -668.441 -54.5256 -589 -104.122 -539.907L-268.468 -377.455V-377.072L-484.323 -163.742C-562.607 -86.3411 -562.607 39.2598 -484.323 116.661L-267.958 330.628L-260.435 338.789L-46.4932 555.18C30.8983 633.473 156.484 633.473 233.876 555.18L447.563 338.662L610.123 174.297C659.21 124.694 738.642 124.694 787.728 174.297L950.161 338.534H949.651L1163.59 554.925C1240.98 633.218 1366.57 633.218 1443.96 554.925L1657.9 338.534L1666.83 329.353L1883.19 115.513C1961.48 38.1121 1961.48 -87.4888 1883.19 -164.89L1666.83 -378.857V-378.347L1502.99 -540.417C1453.4 -589.51 1453.4 -668.951 1502.99 -718.044L1667.34 -880.624V-881.006L1883.19 -1094.46C1961.48 -1171.86 1961.48 -1297.47 1883.19 -1374.87L1666.83 -1588.83L1659.31 -1597L1445.36 -1813.39C1367.97 -1891.68 1242.39 -1891.68 1165 -1813.39L951.054 -1597L951.309 -1596.74Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M949.014 -1587.69L787.983 -1424.85C739.406 -1375.76 660.612 -1375.76 612.035 -1424.85L451.132 -1587.56H451.642L239.74 -1801.91C162.986 -1879.44 38.6753 -1879.44 -38.0787 -1801.91L-249.981 -1587.56L-258.906 -1578.38L-473.231 -1366.45C-550.749 -1289.69 -550.749 -1165.36 -473.231 -1088.6L-258.906 -876.67V-877.18L-96.6004 -716.64C-47.5135 -668.058 -47.5135 -589.254 -96.6004 -540.672L-259.416 -379.877V-379.494L-473.231 -168.077C-550.749 -91.3135 -550.749 33.0123 -473.231 109.776L-258.906 321.703L-251.511 329.864L-39.6087 544.214C37.1453 621.743 161.456 621.743 238.21 544.214L449.857 329.737L610.888 166.902C659.465 117.809 738.259 117.809 786.836 166.902L947.739 329.609H947.229L1159.13 543.959C1235.88 621.488 1360.2 621.488 1436.95 543.959L1648.85 329.609L1657.78 320.428L1872.1 108.5C1949.62 31.7372 1949.62 -92.5887 1872.1 -169.352L1657.78 -381.28V-380.77L1495.47 -541.182C1446.38 -589.764 1446.38 -668.568 1495.47 -717.151L1658.29 -878.2V-878.583L1872.1 -1090C1949.62 -1166.76 1949.62 -1291.09 1872.1 -1367.85L1657.78 -1579.78L1650.38 -1587.94L1438.48 -1802.29C1361.73 -1879.82 1237.41 -1879.82 1160.66 -1802.29L948.631 -1587.81L949.014 -1587.69Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M949.014 -1587.69L787.983 -1424.85C739.406 -1375.76 660.612 -1375.76 612.035 -1424.85L451.132 -1587.56H451.642L239.74 -1801.91C162.986 -1879.44 38.6753 -1879.44 -38.0787 -1801.91L-249.981 -1587.56L-258.906 -1578.38L-473.231 -1366.45C-550.749 -1289.69 -550.749 -1165.36 -473.231 -1088.6L-258.906 -876.67V-877.18L-96.6004 -716.64C-47.5135 -668.058 -47.5135 -589.254 -96.6004 -540.672L-259.416 -379.877V-379.494L-473.231 -168.077C-550.749 -91.3135 -550.749 33.0123 -473.231 109.776L-258.906 321.703L-251.511 329.864L-39.6087 544.214C37.1453 621.743 161.456 621.743 238.21 544.214L449.857 329.737L610.888 166.902C659.465 117.809 738.259 117.809 786.836 166.902L947.739 329.609H947.229L1159.13 543.959C1235.88 621.488 1360.2 621.488 1436.95 543.959L1648.85 329.609L1657.78 320.428L1872.1 108.5C1949.62 31.7372 1949.62 -92.5887 1872.1 -169.352L1657.78 -381.28V-380.77L1495.47 -541.182C1446.38 -589.764 1446.38 -668.568 1495.47 -717.151L1658.29 -878.2V-878.583L1872.1 -1090C1949.62 -1166.76 1949.62 -1291.09 1872.1 -1367.85L1657.78 -1579.78L1650.38 -1587.94L1438.48 -1802.29C1361.73 -1879.82 1237.41 -1879.82 1160.66 -1802.29L948.631 -1587.81L949.014 -1587.69Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M946.591 -1578.5L787.091 -1417.2C739.024 -1368.49 660.995 -1368.49 612.801 -1417.2L453.428 -1578.38H453.938L244.076 -1790.69C168.087 -1867.58 44.9232 -1867.58 -31.0658 -1790.69L-240.928 -1578.5L-249.725 -1569.45L-462.01 -1359.56C-538.892 -1283.57 -538.892 -1160.39 -462.01 -1084.39L-249.725 -874.502V-875.012L-89.0776 -715.875C-40.3732 -667.802 -40.3732 -589.764 -89.0776 -541.564L-250.235 -382.172V-381.917L-462.01 -172.412C-538.892 -96.4139 -538.892 26.7642 -462.01 102.762L-249.725 312.65L-242.331 320.683L-32.4683 532.993C43.5207 609.884 166.684 609.884 242.673 532.993L452.28 320.556L611.781 159.251C659.848 110.541 737.877 110.541 786.071 159.251L945.444 320.428H945.061L1154.92 532.738C1230.91 609.629 1354.08 609.629 1430.06 532.738L1639.93 320.428L1648.72 311.375L1860.88 101.487C1937.76 25.4891 1937.76 -97.6891 1860.88 -173.687L1648.6 -383.575V-383.065L1487.82 -542.074C1439.12 -590.147 1439.12 -668.185 1487.82 -716.385L1649.11 -875.905V-876.16L1860.88 -1085.54C1937.76 -1161.54 1937.76 -1284.71 1860.88 -1360.71L1648.6 -1570.6L1641.2 -1578.63L1431.34 -1790.94C1355.35 -1867.83 1232.19 -1867.83 1156.2 -1790.94L946.336 -1578.63L946.591 -1578.5Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M946.591 -1578.5L787.091 -1417.2C739.024 -1368.49 660.995 -1368.49 612.801 -1417.2L453.428 -1578.38H453.938L244.076 -1790.69C168.087 -1867.58 44.9232 -1867.58 -31.0658 -1790.69L-240.928 -1578.5L-249.725 -1569.45L-462.01 -1359.56C-538.892 -1283.57 -538.892 -1160.39 -462.01 -1084.39L-249.725 -874.502V-875.012L-89.0776 -715.875C-40.3732 -667.802 -40.3732 -589.764 -89.0776 -541.564L-250.235 -382.172V-381.917L-462.01 -172.412C-538.892 -96.4139 -538.892 26.7642 -462.01 102.762L-249.725 312.65L-242.331 320.683L-32.4683 532.993C43.5207 609.884 166.684 609.884 242.673 532.993L452.28 320.556L611.781 159.251C659.848 110.541 737.877 110.541 786.071 159.251L945.444 320.428H945.061L1154.92 532.738C1230.91 609.629 1354.08 609.629 1430.06 532.738L1639.93 320.428L1648.72 311.375L1860.88 101.487C1937.76 25.4891 1937.76 -97.6891 1860.88 -173.687L1648.6 -383.575V-383.065L1487.82 -542.074C1439.12 -590.147 1439.12 -668.185 1487.82 -716.385L1649.11 -875.905V-876.16L1860.88 -1085.54C1937.76 -1161.54 1937.76 -1284.71 1860.88 -1360.71L1648.6 -1570.6L1641.2 -1578.63L1431.34 -1790.94C1355.35 -1867.83 1232.19 -1867.83 1156.2 -1790.94L946.336 -1578.63L946.591 -1578.5Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M944.169 -1569.45L786.198 -1409.68C738.514 -1361.48 661.25 -1361.48 613.566 -1409.68L455.723 -1569.32H456.105L248.283 -1779.59C173.059 -1855.72 51.0429 -1855.72 -24.1812 -1779.59L-232.003 -1569.32L-240.673 -1560.4L-450.918 -1352.55C-527.035 -1277.32 -527.035 -1155.29 -450.918 -1080.05L-240.673 -872.207V-872.717L-81.4279 -715.238C-33.2335 -667.547 -33.2335 -590.274 -81.4279 -542.584L-241.183 -384.595V-384.34L-450.918 -176.875C-527.035 -101.642 -527.035 20.3888 -450.918 95.6218L-240.673 303.469L-233.406 311.375L-25.5836 521.645C49.6404 597.771 171.656 597.771 246.88 521.645L454.448 311.247L612.418 151.473C660.102 103.273 737.366 103.273 785.051 151.473L942.894 311.12H942.511L1150.33 521.39C1225.56 597.516 1347.57 597.516 1422.8 521.39L1630.62 311.12L1639.29 302.194L1849.53 94.3467C1925.65 19.1136 1925.65 -102.917 1849.53 -178.15L1639.29 -385.997V-385.487L1480.3 -542.839C1432.1 -590.529 1432.1 -667.802 1480.3 -715.492L1640.05 -873.482V-873.737L1849.79 -1081.2C1925.91 -1156.43 1925.91 -1278.47 1849.79 -1353.7L1639.54 -1561.55L1632.28 -1569.45L1424.45 -1779.72C1349.23 -1855.85 1227.22 -1855.85 1151.99 -1779.72L944.169 -1569.45V-1569.45Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M944.169 -1569.45L786.198 -1409.68C738.514 -1361.48 661.25 -1361.48 613.566 -1409.68L455.723 -1569.32H456.105L248.283 -1779.59C173.059 -1855.72 51.0429 -1855.72 -24.1812 -1779.59L-232.003 -1569.32L-240.673 -1560.4L-450.918 -1352.55C-527.035 -1277.32 -527.035 -1155.29 -450.918 -1080.05L-240.673 -872.207V-872.717L-81.4279 -715.238C-33.2335 -667.547 -33.2335 -590.274 -81.4279 -542.584L-241.183 -384.595V-384.34L-450.918 -176.875C-527.035 -101.642 -527.035 20.3888 -450.918 95.6218L-240.673 303.469L-233.406 311.375L-25.5836 521.645C49.6404 597.771 171.656 597.771 246.88 521.645L454.448 311.247L612.418 151.473C660.102 103.273 737.366 103.273 785.051 151.473L942.894 311.12H942.511L1150.33 521.39C1225.56 597.516 1347.57 597.516 1422.8 521.39L1630.62 311.12L1639.29 302.194L1849.53 94.3467C1925.65 19.1136 1925.65 -102.917 1849.53 -178.15L1639.29 -385.997V-385.487L1480.3 -542.839C1432.1 -590.529 1432.1 -667.802 1480.3 -715.492L1640.05 -873.482V-873.737L1849.79 -1081.2C1925.91 -1156.43 1925.91 -1278.47 1849.79 -1353.7L1639.54 -1561.55L1632.28 -1569.45L1424.45 -1779.72C1349.23 -1855.85 1227.22 -1855.85 1151.99 -1779.72L944.169 -1569.45V-1569.45Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M941.874 -1560.27L785.434 -1402.15C738.259 -1354.46 661.76 -1354.46 614.586 -1402.15L458.273 -1560.27H458.655L252.746 -1768.5C178.159 -1843.86 57.4181 -1843.86 -17.1685 -1768.5L-223.078 -1560.27L-231.748 -1551.34L-439.953 -1345.41C-515.305 -1270.81 -515.305 -1150.06 -439.953 -1075.46L-231.748 -869.528V-870.038L-73.9052 -714.216C-26.2209 -667.036 -26.2209 -590.528 -73.9052 -543.348L-232.003 -386.889V-386.634L-439.698 -181.209C-515.05 -106.614 -515.05 14.1417 -439.698 88.7372L-231.493 294.672L-224.226 302.578L-18.3159 510.807C56.2706 586.168 177.011 586.168 251.598 510.807L457.253 302.45L613.693 144.333C660.868 96.6431 737.367 96.6431 784.541 144.333L940.854 302.45H940.472L1146.38 510.68C1220.97 586.04 1341.71 586.04 1416.3 510.68L1621.82 302.323L1630.49 293.397L1838.57 87.4621C1913.92 12.8666 1913.92 -107.889 1838.57 -182.484L1630.37 -388.419V-387.909L1472.78 -543.73C1425.09 -590.911 1425.09 -667.419 1472.78 -714.599L1630.88 -871.058V-871.313L1838.57 -1076.74C1913.92 -1151.33 1913.92 -1272.09 1838.57 -1346.68L1630.37 -1552.62L1623.1 -1560.52L1417.19 -1768.75C1342.6 -1844.11 1221.86 -1844.11 1147.27 -1768.75L941.364 -1560.52L941.874 -1560.27Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M941.874 -1560.27L785.434 -1402.15C738.259 -1354.46 661.76 -1354.46 614.586 -1402.15L458.273 -1560.27H458.655L252.746 -1768.5C178.159 -1843.86 57.4181 -1843.86 -17.1685 -1768.5L-223.078 -1560.27L-231.748 -1551.34L-439.953 -1345.41C-515.305 -1270.81 -515.305 -1150.06 -439.953 -1075.46L-231.748 -869.528V-870.038L-73.9052 -714.216C-26.2209 -667.036 -26.2209 -590.528 -73.9052 -543.348L-232.003 -386.889V-386.634L-439.698 -181.209C-515.05 -106.614 -515.05 14.1417 -439.698 88.7372L-231.493 294.672L-224.226 302.578L-18.3159 510.807C56.2706 586.168 177.011 586.168 251.598 510.807L457.253 302.45L613.693 144.333C660.868 96.6431 737.367 96.6431 784.541 144.333L940.854 302.45H940.472L1146.38 510.68C1220.97 586.04 1341.71 586.04 1416.3 510.68L1621.82 302.323L1630.49 293.397L1838.57 87.4621C1913.92 12.8666 1913.92 -107.889 1838.57 -182.484L1630.37 -388.419V-387.909L1472.78 -543.73C1425.09 -590.911 1425.09 -667.419 1472.78 -714.599L1630.88 -871.058V-871.313L1838.57 -1076.74C1913.92 -1151.33 1913.92 -1272.09 1838.57 -1346.68L1630.37 -1552.62L1623.1 -1560.52L1417.19 -1768.75C1342.6 -1844.11 1221.86 -1844.11 1147.27 -1768.75L941.364 -1560.52L941.874 -1560.27Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M939.451 -1551.22L784.541 -1394.63C737.749 -1347.32 662.015 -1347.32 615.35 -1394.63L460.567 -1551.09H460.95L257.08 -1757.28C183.258 -1831.87 63.6649 -1831.87 -10.1566 -1757.28L-213.899 -1551.09L-222.441 -1542.29L-428.606 -1338.4C-503.193 -1264.57 -503.193 -1144.96 -428.606 -1071.13L-222.441 -867.234V-867.744L-66.3835 -713.325C-19.0816 -666.527 -19.0816 -590.784 -66.3835 -544.114L-222.951 -389.313V-389.058L-428.606 -185.546C-503.193 -111.715 -503.193 7.89242 -428.606 81.7228L-222.441 285.617L-215.301 293.396L-11.4316 499.585C62.3899 574.181 181.983 574.181 255.805 499.585L459.42 293.268L614.33 136.681C661.122 89.3737 736.856 89.3737 783.521 136.681L938.304 293.268H937.921L1141.66 499.33C1215.48 573.926 1335.08 573.926 1408.9 499.33L1612.77 293.14L1621.31 284.342L1827.48 80.4477C1902.06 6.61729 1902.06 -112.99 1827.48 -186.821L1621.31 -390.715V-390.205L1465.25 -544.624C1417.95 -591.422 1417.95 -667.165 1465.25 -713.835L1621.82 -868.764V-869.019L1827.48 -1072.4C1902.06 -1146.23 1902.06 -1265.84 1827.48 -1339.67L1621.31 -1543.57L1614.17 -1551.34L1410.3 -1757.53C1336.48 -1832.13 1216.89 -1832.13 1143.07 -1757.53L939.196 -1551.34L939.451 -1551.22Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M939.451 -1551.22L784.541 -1394.63C737.749 -1347.32 662.015 -1347.32 615.35 -1394.63L460.567 -1551.09H460.95L257.08 -1757.28C183.258 -1831.87 63.6649 -1831.87 -10.1566 -1757.28L-213.899 -1551.09L-222.441 -1542.29L-428.606 -1338.4C-503.193 -1264.57 -503.193 -1144.96 -428.606 -1071.13L-222.441 -867.234V-867.744L-66.3835 -713.325C-19.0816 -666.527 -19.0816 -590.784 -66.3835 -544.114L-222.951 -389.313V-389.058L-428.606 -185.546C-503.193 -111.715 -503.193 7.89242 -428.606 81.7228L-222.441 285.617L-215.301 293.396L-11.4316 499.585C62.3899 574.181 181.983 574.181 255.805 499.585L459.42 293.268L614.33 136.681C661.122 89.3737 736.856 89.3737 783.521 136.681L938.304 293.268H937.921L1141.66 499.33C1215.48 573.926 1335.08 573.926 1408.9 499.33L1612.77 293.14L1621.31 284.342L1827.48 80.4477C1902.06 6.61729 1902.06 -112.99 1827.48 -186.821L1621.31 -390.715V-390.205L1465.25 -544.624C1417.95 -591.422 1417.95 -667.165 1465.25 -713.835L1621.82 -868.764V-869.019L1827.48 -1072.4C1902.06 -1146.23 1902.06 -1265.84 1827.48 -1339.67L1621.31 -1543.57L1614.17 -1551.34L1410.3 -1757.53C1336.48 -1832.13 1216.89 -1832.13 1143.07 -1757.53L939.196 -1551.34L939.451 -1551.22Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M937.157 -1542.04L783.777 -1386.98C737.495 -1340.18 662.526 -1340.18 616.244 -1386.98L462.991 -1542.04H463.373L261.543 -1746.18C188.487 -1820.02 70.0409 -1820.02 -3.01561 -1746.18L-204.846 -1542.04L-213.26 -1533.36L-417.385 -1331.51C-491.207 -1258.45 -491.207 -1139.98 -417.385 -1066.92L-213.26 -865.065V-865.575L-58.7324 -712.687C-11.9405 -666.399 -11.9405 -591.421 -58.7324 -545.134L-213.77 -391.607V-391.352L-417.513 -190.008C-491.334 -116.943 -491.334 1.5175 -417.513 74.5828L-213.388 276.437L-206.375 284.215L-4.54561 488.365C68.5109 562.195 186.957 562.195 260.014 488.365L461.588 284.088L614.969 129.031C661.251 82.2337 736.22 82.2337 782.502 129.031L935.882 284.088H935.5L1137.33 488.237C1210.39 562.068 1328.83 562.068 1401.89 488.237L1603.72 284.088L1612.13 275.417L1816.26 73.4352C1890.08 0.369882 1890.08 -118.09 1816.26 -191.156L1612.13 -393.01V-392.5L1457.61 -545.389C1410.81 -591.676 1410.81 -666.654 1457.61 -712.942L1612.64 -866.341V-866.595L1816.26 -1067.94C1890.08 -1141 1890.08 -1259.47 1816.26 -1332.53L1612.13 -1534.51L1605.12 -1542.29L1403.29 -1746.44C1330.23 -1820.27 1211.79 -1820.27 1138.73 -1746.44L936.902 -1542.16L937.157 -1542.04Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M937.157 -1542.04L783.777 -1386.98C737.495 -1340.18 662.526 -1340.18 616.244 -1386.98L462.991 -1542.04H463.373L261.543 -1746.18C188.487 -1820.02 70.0409 -1820.02 -3.01561 -1746.18L-204.846 -1542.04L-213.26 -1533.36L-417.385 -1331.51C-491.207 -1258.45 -491.207 -1139.98 -417.385 -1066.92L-213.26 -865.065V-865.575L-58.7324 -712.687C-11.9405 -666.399 -11.9405 -591.421 -58.7324 -545.134L-213.77 -391.607V-391.352L-417.513 -190.008C-491.334 -116.943 -491.334 1.5175 -417.513 74.5828L-213.388 276.437L-206.375 284.215L-4.54561 488.365C68.5109 562.195 186.957 562.195 260.014 488.365L461.588 284.088L614.969 129.031C661.251 82.2337 736.22 82.2337 782.502 129.031L935.882 284.088H935.5L1137.33 488.237C1210.39 562.068 1328.83 562.068 1401.89 488.237L1603.72 284.088L1612.13 275.417L1816.26 73.4352C1890.08 0.369882 1890.08 -118.09 1816.26 -191.156L1612.13 -393.01V-392.5L1457.61 -545.389C1410.81 -591.676 1410.81 -666.654 1457.61 -712.942L1612.64 -866.341V-866.595L1816.26 -1067.94C1890.08 -1141 1890.08 -1259.47 1816.26 -1332.53L1612.13 -1534.51L1605.12 -1542.29L1403.29 -1746.44C1330.23 -1820.27 1211.79 -1820.27 1138.73 -1746.44L936.902 -1542.16L937.157 -1542.04Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M934.734 -1532.98L782.883 -1379.46C737.111 -1333.17 662.78 -1333.17 617.008 -1379.46L465.285 -1532.85H465.667L265.877 -1734.96C193.586 -1808.16 76.2875 -1808.16 3.86842 -1734.96L-195.922 -1532.85L-204.336 -1524.18L-406.421 -1324.37C-479.605 -1252.07 -479.605 -1134.76 -406.421 -1062.33L-204.336 -862.516V-863.026L-51.3384 -711.667C-5.05645 -665.889 -5.05645 -591.549 -51.3384 -545.772L-204.719 -394.03V-393.775L-406.294 -194.344C-479.478 -122.044 -479.478 -4.73122 -406.294 67.6965L-204.209 267.51L-197.196 275.161L2.59344 477.27C74.885 550.463 192.183 550.463 264.603 477.27L464.137 275.034L615.86 121.507C661.632 75.2199 735.964 75.2199 781.736 121.507L933.459 275.034H933.076L1132.87 477.143C1205.16 550.336 1322.46 550.336 1394.88 477.143L1594.67 274.906L1603.08 266.235L1805.17 66.4214C1878.35 -5.87885 1878.35 -123.191 1805.17 -195.619L1603.08 -395.433V-394.923L1450.08 -546.282C1403.8 -592.059 1403.8 -666.4 1450.08 -712.177L1603.59 -864.046V-864.301L1805.17 -1063.73C1878.35 -1136.03 1878.35 -1253.35 1805.17 -1325.77L1603.08 -1525.59L1596.07 -1533.24L1396.28 -1735.35C1323.99 -1808.54 1206.69 -1808.54 1134.27 -1735.35L934.479 -1533.24L934.734 -1532.98Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M934.734 -1532.98L782.883 -1379.46C737.111 -1333.17 662.78 -1333.17 617.008 -1379.46L465.285 -1532.85H465.667L265.877 -1734.96C193.586 -1808.16 76.2875 -1808.16 3.86842 -1734.96L-195.922 -1532.85L-204.336 -1524.18L-406.421 -1324.37C-479.605 -1252.07 -479.605 -1134.76 -406.421 -1062.33L-204.336 -862.516V-863.026L-51.3384 -711.667C-5.05645 -665.889 -5.05645 -591.549 -51.3384 -545.772L-204.719 -394.03V-393.775L-406.294 -194.344C-479.478 -122.044 -479.478 -4.73122 -406.294 67.6965L-204.209 267.51L-197.196 275.161L2.59344 477.27C74.885 550.463 192.183 550.463 264.603 477.27L464.137 275.034L615.86 121.507C661.632 75.2199 735.964 75.2199 781.736 121.507L933.459 275.034H933.076L1132.87 477.143C1205.16 550.336 1322.46 550.336 1394.88 477.143L1594.67 274.906L1603.08 266.235L1805.17 66.4214C1878.35 -5.87885 1878.35 -123.191 1805.17 -195.619L1603.08 -395.433V-394.923L1450.08 -546.282C1403.8 -592.059 1403.8 -666.4 1450.08 -712.177L1603.59 -864.046V-864.301L1805.17 -1063.73C1878.35 -1136.03 1878.35 -1253.35 1805.17 -1325.77L1603.08 -1525.59L1596.07 -1533.24L1396.28 -1735.35C1323.99 -1808.54 1206.69 -1808.54 1134.27 -1735.35L934.479 -1533.24L934.734 -1532.98Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M932.312 -1523.93L781.991 -1371.93C736.602 -1326.03 663.163 -1326.03 617.773 -1371.93L467.58 -1523.8H467.963L270.213 -1723.87C198.559 -1796.3 82.5351 -1796.3 10.881 -1723.87L-186.869 -1523.8L-195.156 -1515.26L-395.201 -1317.49C-467.62 -1245.82 -467.62 -1129.79 -395.201 -1058.12L-195.156 -860.349V-860.859L-43.6883 -711.03C2.2111 -665.635 2.2111 -592.188 -43.6883 -546.793L-195.539 -396.454V-396.199L-395.201 -198.681C-467.62 -127.018 -467.62 -10.9804 -395.201 60.6822L-195.156 258.456L-188.271 265.979L9.47849 466.048C81.1326 538.476 197.156 538.476 268.81 466.048L466.305 265.852L616.626 113.855C662.015 67.9505 735.454 67.9505 780.844 113.855L931.037 265.724H930.654L1128.4 465.793C1200.06 538.221 1316.08 538.221 1387.74 465.793L1585.49 265.724L1593.77 257.181L1793.95 59.5346C1866.36 -12.128 1866.36 -128.165 1793.95 -199.828L1593.9 -397.602V-397.092L1442.43 -546.92C1396.53 -592.315 1396.53 -665.763 1442.43 -711.158L1594.41 -861.496V-861.751L1793.95 -1059.14C1866.36 -1130.81 1866.36 -1246.84 1793.95 -1318.51L1593.9 -1516.28L1587.02 -1523.8L1389.27 -1723.87C1317.61 -1796.3 1201.59 -1796.3 1129.93 -1723.87L932.057 -1524.06L932.312 -1523.93Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M932.312 -1523.93L781.991 -1371.93C736.602 -1326.03 663.163 -1326.03 617.773 -1371.93L467.58 -1523.8H467.963L270.213 -1723.87C198.559 -1796.3 82.5351 -1796.3 10.881 -1723.87L-186.869 -1523.8L-195.156 -1515.26L-395.201 -1317.49C-467.62 -1245.82 -467.62 -1129.79 -395.201 -1058.12L-195.156 -860.349V-860.859L-43.6883 -711.03C2.2111 -665.635 2.2111 -592.188 -43.6883 -546.793L-195.539 -396.454V-396.199L-395.201 -198.681C-467.62 -127.018 -467.62 -10.9804 -395.201 60.6822L-195.156 258.456L-188.271 265.979L9.47849 466.048C81.1326 538.476 197.156 538.476 268.81 466.048L466.305 265.852L616.626 113.855C662.015 67.9505 735.454 67.9505 780.844 113.855L931.037 265.724H930.654L1128.4 465.793C1200.06 538.221 1316.08 538.221 1387.74 465.793L1585.49 265.724L1593.77 257.181L1793.95 59.5346C1866.36 -12.128 1866.36 -128.165 1793.95 -199.828L1593.9 -397.602V-397.092L1442.43 -546.92C1396.53 -592.315 1396.53 -665.763 1442.43 -711.158L1594.41 -861.496V-861.751L1793.95 -1059.14C1866.36 -1130.81 1866.36 -1246.84 1793.95 -1318.51L1593.9 -1516.28L1587.02 -1523.8L1389.27 -1723.87C1317.61 -1796.3 1201.59 -1796.3 1129.93 -1723.87L932.057 -1524.06L932.312 -1523.93Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M930.017 -1514.75L781.226 -1364.28C736.347 -1318.89 663.546 -1318.89 618.666 -1364.28L470.003 -1514.62H470.386L274.548 -1712.65C203.659 -1784.31 88.783 -1784.31 17.894 -1712.65L-177.944 -1514.62L-186.103 -1506.2L-384.108 -1310.34C-455.762 -1239.45 -455.762 -1124.56 -384.108 -1053.66L-186.103 -857.797V-858.307L-36.1653 -710.009C9.22408 -665.124 9.22408 -592.314 -36.1653 -547.429L-186.613 -398.621V-398.366L-383.981 -203.142C-455.635 -132.245 -455.635 -17.3549 -383.981 53.5427L-185.976 249.404L-179.091 256.927L16.619 454.956C87.508 526.618 202.384 526.618 273.273 454.956L468.856 256.799L617.646 106.333C662.526 60.9385 735.327 60.9385 780.207 106.333L928.87 256.672H928.487L1124.2 454.701C1195.09 526.363 1309.96 526.363 1380.85 454.701L1576.69 256.672L1584.85 248.256L1782.85 52.3951C1854.51 -18.5025 1854.51 -133.392 1782.85 -204.29L1584.85 -400.023V-399.513L1434.91 -547.812C1389.52 -592.696 1389.52 -665.507 1434.91 -710.391L1585.36 -859.2V-859.455L1782.85 -1054.81C1854.51 -1125.7 1854.51 -1240.59 1782.85 -1311.49L1584.85 -1507.35L1577.96 -1514.87L1382.13 -1712.9C1311.24 -1784.57 1196.36 -1784.57 1125.47 -1712.9L929.634 -1514.87L930.017 -1514.75Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M930.017 -1514.75L781.226 -1364.28C736.347 -1318.89 663.546 -1318.89 618.666 -1364.28L470.003 -1514.62H470.386L274.548 -1712.65C203.659 -1784.31 88.783 -1784.31 17.894 -1712.65L-177.944 -1514.62L-186.103 -1506.2L-384.108 -1310.34C-455.762 -1239.45 -455.762 -1124.56 -384.108 -1053.66L-186.103 -857.797V-858.307L-36.1653 -710.009C9.22408 -665.124 9.22408 -592.314 -36.1653 -547.429L-186.613 -398.621V-398.366L-383.981 -203.142C-455.635 -132.245 -455.635 -17.3549 -383.981 53.5427L-185.976 249.404L-179.091 256.927L16.619 454.956C87.508 526.618 202.384 526.618 273.273 454.956L468.856 256.799L617.646 106.333C662.526 60.9385 735.327 60.9385 780.207 106.333L928.87 256.672H928.487L1124.2 454.701C1195.09 526.363 1309.96 526.363 1380.85 454.701L1576.69 256.672L1584.85 248.256L1782.85 52.3951C1854.51 -18.5025 1854.51 -133.392 1782.85 -204.29L1584.85 -400.023V-399.513L1434.91 -547.812C1389.52 -592.696 1389.52 -665.507 1434.91 -710.391L1585.36 -859.2V-859.455L1782.85 -1054.81C1854.51 -1125.7 1854.51 -1240.59 1782.85 -1311.49L1584.85 -1507.35L1577.96 -1514.87L1382.13 -1712.9C1311.24 -1784.57 1196.36 -1784.57 1125.47 -1712.9L929.634 -1514.87L930.017 -1514.75Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M927.594 -1505.69L780.334 -1356.76C735.964 -1311.87 663.928 -1311.87 619.431 -1356.76L472.298 -1505.57H472.68L278.883 -1701.56C208.759 -1772.45 95.0302 -1772.45 24.9061 -1701.56L-168.891 -1505.57L-177.051 -1497.15L-373.016 -1303.33C-443.905 -1233.2 -443.905 -1119.46 -373.016 -1049.32L-177.051 -855.502V-856.012L-28.6432 -709.244C16.2362 -664.87 16.2362 -592.824 -28.6432 -548.322L-177.434 -401.171V-400.916L-372.889 -207.478C-443.778 -137.345 -443.778 -23.6033 -372.889 46.5292L-176.924 240.35L-170.166 247.746L23.6311 443.734C93.7552 514.632 207.484 514.632 277.608 443.734L471.15 247.618L618.411 98.8098C662.78 53.925 734.817 53.925 779.314 98.8098L926.447 247.618H926.065L1119.86 443.607C1189.99 514.504 1303.71 514.504 1373.84 443.607L1567.64 247.618L1575.8 239.202L1771.76 45.3816C1842.65 -24.7509 1842.65 -138.493 1771.76 -208.626L1575.8 -402.446V-401.936L1427.39 -548.705C1382.51 -593.079 1382.51 -665.124 1427.39 -709.627L1576.31 -856.905V-857.16L1771.76 -1050.47C1842.65 -1120.6 1842.65 -1234.35 1771.76 -1304.48L1575.8 -1498.3L1569.04 -1505.69L1375.24 -1701.68C1305.12 -1772.58 1191.39 -1772.58 1121.26 -1701.68L927.467 -1505.69H927.594Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M927.594 -1505.69L780.334 -1356.76C735.964 -1311.87 663.928 -1311.87 619.431 -1356.76L472.298 -1505.57H472.68L278.883 -1701.56C208.759 -1772.45 95.0302 -1772.45 24.9061 -1701.56L-168.891 -1505.57L-177.051 -1497.15L-373.016 -1303.33C-443.905 -1233.2 -443.905 -1119.46 -373.016 -1049.32L-177.051 -855.502V-856.012L-28.6432 -709.244C16.2362 -664.87 16.2362 -592.824 -28.6432 -548.322L-177.434 -401.171V-400.916L-372.889 -207.478C-443.778 -137.345 -443.778 -23.6033 -372.889 46.5292L-176.924 240.35L-170.166 247.746L23.6311 443.734C93.7552 514.632 207.484 514.632 277.608 443.734L471.15 247.618L618.411 98.8098C662.78 53.925 734.817 53.925 779.314 98.8098L926.447 247.618H926.065L1119.86 443.607C1189.99 514.504 1303.71 514.504 1373.84 443.607L1567.64 247.618L1575.8 239.202L1771.76 45.3816C1842.65 -24.7509 1842.65 -138.493 1771.76 -208.626L1575.8 -402.446V-401.936L1427.39 -548.705C1382.51 -593.079 1382.51 -665.124 1427.39 -709.627L1576.31 -856.905V-857.16L1771.76 -1050.47C1842.65 -1120.6 1842.65 -1234.35 1771.76 -1304.48L1575.8 -1498.3L1569.04 -1505.69L1375.24 -1701.68C1305.12 -1772.58 1191.39 -1772.58 1121.26 -1701.68L927.467 -1505.69H927.594Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M925.299 -1496.51L779.569 -1349.24C735.582 -1304.73 664.31 -1304.73 620.323 -1349.24L474.72 -1496.51H475.102L283.345 -1690.46C213.986 -1760.72 101.405 -1760.72 31.9184 -1690.46L-159.839 -1496.51L-167.872 -1488.23L-361.796 -1296.45C-432.048 -1227.08 -432.048 -1114.48 -361.796 -1044.99L-167.872 -853.208V-853.718L-20.9934 -708.48C23.5035 -664.488 23.5035 -593.207 -20.9934 -549.215L-168.254 -403.467V-403.212L-361.669 -211.814C-431.92 -142.447 -431.92 -29.8521 -361.669 39.6429L-167.744 231.423L-160.987 238.819L30.6434 432.64C100.002 502.9 212.584 502.9 282.07 432.64L473.573 238.564L619.303 91.2859C663.29 46.7836 734.562 46.7836 778.548 91.2859L924.152 238.564H923.769L1115.53 432.512C1184.89 502.772 1297.47 502.772 1366.95 432.512L1558.71 238.564L1566.74 230.276L1760.67 38.4952C1830.92 -30.8722 1830.92 -143.467 1760.67 -212.962L1566.62 -404.742V-404.232L1419.74 -549.47C1375.24 -593.463 1375.24 -664.743 1419.74 -708.735L1567 -854.483V-854.738L1760.41 -1046.14C1830.66 -1115.5 1830.66 -1228.1 1760.41 -1297.59L1566.49 -1489.37L1559.73 -1496.77L1368.1 -1690.59C1298.74 -1760.85 1186.16 -1760.85 1116.67 -1690.59L924.917 -1496.64L925.299 -1496.51Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M925.299 -1496.51L779.569 -1349.24C735.582 -1304.73 664.31 -1304.73 620.323 -1349.24L474.72 -1496.51H475.102L283.345 -1690.46C213.986 -1760.72 101.405 -1760.72 31.9184 -1690.46L-159.839 -1496.51L-167.872 -1488.23L-361.796 -1296.45C-432.048 -1227.08 -432.048 -1114.48 -361.796 -1044.99L-167.872 -853.208V-853.718L-20.9934 -708.48C23.5035 -664.488 23.5035 -593.207 -20.9934 -549.215L-168.254 -403.467V-403.212L-361.669 -211.814C-431.92 -142.447 -431.92 -29.8521 -361.669 39.6429L-167.744 231.423L-160.987 238.819L30.6434 432.64C100.002 502.9 212.584 502.9 282.07 432.64L473.573 238.564L619.303 91.2859C663.29 46.7836 734.562 46.7836 778.548 91.2859L924.152 238.564H923.769L1115.53 432.512C1184.89 502.772 1297.47 502.772 1366.95 432.512L1558.71 238.564L1566.74 230.276L1760.67 38.4952C1830.92 -30.8722 1830.92 -143.467 1760.67 -212.962L1566.62 -404.742V-404.232L1419.74 -549.47C1375.24 -593.463 1375.24 -664.743 1419.74 -708.735L1567 -854.483V-854.738L1760.41 -1046.14C1830.66 -1115.5 1830.66 -1228.1 1760.41 -1297.59L1566.49 -1489.37L1559.73 -1496.77L1368.1 -1690.59C1298.74 -1760.85 1186.16 -1760.85 1116.67 -1690.59L924.917 -1496.64L925.299 -1496.51Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M922.877 -1487.46L778.676 -1341.71C735.199 -1297.72 664.692 -1297.72 621.088 -1341.71L477.015 -1487.46H477.397L287.68 -1679.37C218.958 -1748.86 107.652 -1748.86 38.9305 -1679.37L-150.787 -1487.33L-158.692 -1479.17L-350.577 -1289.43C-420.064 -1220.7 -420.064 -1109.38 -350.577 -1040.65L-158.692 -850.911V-851.421L-13.3438 -707.713C30.6431 -664.231 30.6431 -593.716 -13.3438 -550.107L-159.202 -405.889V-405.634L-350.577 -216.276C-420.064 -147.546 -420.064 -36.2265 -350.577 32.5034L-158.692 222.244L-152.062 229.512L37.6555 421.548C106.377 491.042 217.683 491.042 286.405 421.548L475.867 229.512L620.068 83.6364C663.545 39.6441 734.052 39.6441 777.656 83.6364L921.729 229.384H921.347L1111.06 421.293C1179.79 490.787 1291.09 490.787 1359.81 421.293L1549.53 229.384L1557.44 221.224L1749.32 31.4833C1818.81 -37.2466 1818.81 -148.566 1749.32 -217.296L1557.44 -407.036V-406.526L1412.09 -550.234C1368.1 -593.716 1368.1 -664.231 1412.09 -707.841L1557.82 -852.059V-852.314L1749.19 -1041.67C1818.68 -1110.4 1818.68 -1221.72 1749.19 -1290.45L1557.31 -1480.19L1550.68 -1487.46L1360.96 -1679.37C1292.24 -1748.86 1180.93 -1748.86 1112.21 -1679.37L922.494 -1487.46H922.877Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M922.877 -1487.46L778.676 -1341.71C735.199 -1297.72 664.692 -1297.72 621.088 -1341.71L477.015 -1487.46H477.397L287.68 -1679.37C218.958 -1748.86 107.652 -1748.86 38.9305 -1679.37L-150.787 -1487.33L-158.692 -1479.17L-350.577 -1289.43C-420.064 -1220.7 -420.064 -1109.38 -350.577 -1040.65L-158.692 -850.911V-851.421L-13.3438 -707.713C30.6431 -664.231 30.6431 -593.716 -13.3438 -550.107L-159.202 -405.889V-405.634L-350.577 -216.276C-420.064 -147.546 -420.064 -36.2265 -350.577 32.5034L-158.692 222.244L-152.062 229.512L37.6555 421.548C106.377 491.042 217.683 491.042 286.405 421.548L475.867 229.512L620.068 83.6364C663.545 39.6441 734.052 39.6441 777.656 83.6364L921.729 229.384H921.347L1111.06 421.293C1179.79 490.787 1291.09 490.787 1359.81 421.293L1549.53 229.384L1557.44 221.224L1749.32 31.4833C1818.81 -37.2466 1818.81 -148.566 1749.32 -217.296L1557.44 -407.036V-406.526L1412.09 -550.234C1368.1 -593.716 1368.1 -664.231 1412.09 -707.841L1557.82 -852.059V-852.314L1749.19 -1041.67C1818.68 -1110.4 1818.68 -1221.72 1749.19 -1290.45L1557.31 -1480.19L1550.68 -1487.46L1360.96 -1679.37C1292.24 -1748.86 1180.93 -1748.86 1112.21 -1679.37L922.494 -1487.46H922.877Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M920.454 -1478.28L777.783 -1334.06C734.689 -1290.58 664.947 -1290.58 621.98 -1334.06L479.437 -1478.28H479.82L292.142 -1668.15C224.185 -1736.88 114.027 -1736.88 46.0703 -1668.15L-141.607 -1478.28L-149.512 -1470.12L-339.357 -1282.29C-408.079 -1214.33 -408.079 -1104.16 -339.357 -1036.19L-149.64 -848.491V-849.001L-5.82147 -706.823C37.6555 -663.723 37.6555 -593.973 -5.82147 -551.001L-150.022 -408.186V-407.931L-339.485 -220.613C-408.206 -152.649 -408.206 -42.4767 -339.485 25.4881L-149.64 213.316L-143.01 220.456L44.6679 410.324C112.624 479.054 222.783 479.054 290.74 410.324L478.29 220.329L620.96 76.111C664.055 32.6288 733.796 32.6288 776.763 76.111L919.306 220.329H918.924L1106.73 410.197C1174.69 478.927 1284.84 478.927 1352.8 410.197L1540.61 220.329L1548.51 212.168L1738.36 24.4679C1807.08 -43.4969 1807.08 -153.669 1738.36 -221.633L1548.51 -409.461V-408.951L1404.69 -551.129C1361.22 -594.228 1361.22 -663.978 1404.69 -706.95L1548.89 -849.638V-849.893L1738.36 -1037.21C1807.08 -1105.18 1807.08 -1215.35 1738.36 -1283.31L1548.51 -1471.14L1541.88 -1478.28L1354.08 -1668.28C1286.12 -1737.01 1175.96 -1737.01 1108 -1668.28L920.199 -1478.41L920.454 -1478.28Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M920.454 -1478.28L777.783 -1334.06C734.689 -1290.58 664.947 -1290.58 621.98 -1334.06L479.437 -1478.28H479.82L292.142 -1668.15C224.185 -1736.88 114.027 -1736.88 46.0703 -1668.15L-141.607 -1478.28L-149.512 -1470.12L-339.357 -1282.29C-408.079 -1214.33 -408.079 -1104.16 -339.357 -1036.19L-149.64 -848.491V-849.001L-5.82147 -706.823C37.6555 -663.723 37.6555 -593.973 -5.82147 -551.001L-150.022 -408.186V-407.931L-339.485 -220.613C-408.206 -152.649 -408.206 -42.4767 -339.485 25.4881L-149.64 213.316L-143.01 220.456L44.6679 410.324C112.624 479.054 222.783 479.054 290.74 410.324L478.29 220.329L620.96 76.111C664.055 32.6288 733.796 32.6288 776.763 76.111L919.306 220.329H918.924L1106.73 410.197C1174.69 478.927 1284.84 478.927 1352.8 410.197L1540.61 220.329L1548.51 212.168L1738.36 24.4679C1807.08 -43.4969 1807.08 -153.669 1738.36 -221.633L1548.51 -409.461V-408.951L1404.69 -551.129C1361.22 -594.228 1361.22 -663.978 1404.69 -706.95L1548.89 -849.638V-849.893L1738.36 -1037.21C1807.08 -1105.18 1807.08 -1215.35 1738.36 -1283.31L1548.51 -1471.14L1541.88 -1478.28L1354.08 -1668.28C1286.12 -1737.01 1175.96 -1737.01 1108 -1668.28L920.199 -1478.41L920.454 -1478.28Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M918.159 -1469.23L777.019 -1326.54C734.434 -1283.44 665.458 -1283.44 622.873 -1326.54L481.86 -1469.23H482.243L296.477 -1656.93C229.286 -1724.89 120.275 -1724.89 52.9556 -1656.93L-132.81 -1469.1L-140.587 -1461.07L-328.392 -1275.28C-396.349 -1208.08 -396.349 -1099.05 -328.392 -1031.73L-140.587 -845.939V-846.45L1.7012 -705.802C44.7956 -663.212 44.7956 -594.228 1.7012 -551.638L-140.969 -410.608V-410.353L-328.265 -224.948C-396.221 -157.748 -396.221 -48.7242 -328.265 18.603L-140.459 204.39L-133.957 211.531L51.808 399.359C119 467.324 228.011 467.324 295.33 399.359L480.713 211.276L621.853 68.5884C664.438 25.4888 733.414 25.4888 775.999 68.5884L917.012 211.149H916.629L1102.39 398.976C1169.59 466.941 1278.6 466.941 1345.92 398.976L1531.55 211.149L1539.33 203.115L1727.14 17.3279C1795.09 -49.8718 1795.09 -158.896 1727.14 -226.223L1539.33 -412.011V-411.5L1397.04 -552.148C1353.95 -594.738 1353.95 -663.722 1397.04 -706.312L1539.71 -847.47V-847.725L1727.14 -1033C1795.09 -1100.2 1795.09 -1209.23 1727.14 -1276.55L1539.33 -1462.34L1532.83 -1469.48L1347.06 -1657.31C1279.87 -1725.27 1170.86 -1725.27 1103.54 -1657.31L917.777 -1469.48L918.159 -1469.23Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M918.159 -1469.23L777.019 -1326.54C734.434 -1283.44 665.458 -1283.44 622.873 -1326.54L481.86 -1469.23H482.243L296.477 -1656.93C229.286 -1724.89 120.275 -1724.89 52.9556 -1656.93L-132.81 -1469.1L-140.587 -1461.07L-328.392 -1275.28C-396.349 -1208.08 -396.349 -1099.05 -328.392 -1031.73L-140.587 -845.939V-846.45L1.7012 -705.802C44.7956 -663.212 44.7956 -594.228 1.7012 -551.638L-140.969 -410.608V-410.353L-328.265 -224.948C-396.221 -157.748 -396.221 -48.7242 -328.265 18.603L-140.459 204.39L-133.957 211.531L51.808 399.359C119 467.324 228.011 467.324 295.33 399.359L480.713 211.276L621.853 68.5884C664.438 25.4888 733.414 25.4888 775.999 68.5884L917.012 211.149H916.629L1102.39 398.976C1169.59 466.941 1278.6 466.941 1345.92 398.976L1531.55 211.149L1539.33 203.115L1727.14 17.3279C1795.09 -49.8718 1795.09 -158.896 1727.14 -226.223L1539.33 -412.011V-411.5L1397.04 -552.148C1353.95 -594.738 1353.95 -663.722 1397.04 -706.312L1539.71 -847.47V-847.725L1727.14 -1033C1795.09 -1100.2 1795.09 -1209.23 1727.14 -1276.55L1539.33 -1462.34L1532.83 -1469.48L1347.06 -1657.31C1279.87 -1725.27 1170.86 -1725.27 1103.54 -1657.31L917.777 -1469.48L918.159 -1469.23Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M915.737 -1460.04L776.253 -1319.01C734.179 -1276.43 665.84 -1276.43 623.765 -1319.01L484.282 -1460.04H484.665L300.94 -1645.83C234.385 -1713.03 126.649 -1713.03 60.0951 -1645.83L-123.63 -1460.04L-131.28 -1452.14L-317.045 -1268.39C-384.237 -1201.83 -384.237 -1094.08 -317.045 -1027.52L-131.28 -843.771V-844.281L9.35076 -705.164C51.9352 -663.084 51.9352 -594.737 9.35076 -552.658L-131.79 -413.03V-412.775L-317.173 -229.411C-384.364 -162.848 -384.364 -55.0994 -317.173 11.4627L-131.407 195.21L-125.033 202.223L58.6926 388.011C125.247 455.21 232.983 455.21 299.537 388.011L483.007 202.096L622.618 60.938C664.692 18.3485 733.032 18.3485 775.106 60.938L914.589 201.968H914.207L1097.93 387.755C1164.49 454.955 1272.22 454.955 1338.78 387.755L1522.5 201.968L1530.15 194.062L1715.92 10.3151C1783.11 -56.247 1783.11 -163.996 1715.92 -230.558L1530.15 -414.305V-413.668L1389.52 -552.785C1346.94 -594.865 1346.94 -663.212 1389.52 -705.291L1530.66 -844.919V-845.174L1716.04 -1028.54C1783.24 -1095.1 1783.24 -1202.85 1716.04 -1269.41L1530.28 -1453.16L1523.9 -1460.17L1340.05 -1645.96C1273.5 -1713.16 1165.76 -1713.16 1099.21 -1645.96L915.482 -1460.17L915.737 -1460.04Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M915.737 -1460.04L776.253 -1319.01C734.179 -1276.43 665.84 -1276.43 623.765 -1319.01L484.282 -1460.04H484.665L300.94 -1645.83C234.385 -1713.03 126.649 -1713.03 60.0951 -1645.83L-123.63 -1460.04L-131.28 -1452.14L-317.045 -1268.39C-384.237 -1201.83 -384.237 -1094.08 -317.045 -1027.52L-131.28 -843.771V-844.281L9.35076 -705.164C51.9352 -663.084 51.9352 -594.737 9.35076 -552.658L-131.79 -413.03V-412.775L-317.173 -229.411C-384.364 -162.848 -384.364 -55.0994 -317.173 11.4627L-131.407 195.21L-125.033 202.223L58.6926 388.011C125.247 455.21 232.983 455.21 299.537 388.011L483.007 202.096L622.618 60.938C664.692 18.3485 733.032 18.3485 775.106 60.938L914.589 201.968H914.207L1097.93 387.755C1164.49 454.955 1272.22 454.955 1338.78 387.755L1522.5 201.968L1530.15 194.062L1715.92 10.3151C1783.11 -56.247 1783.11 -163.996 1715.92 -230.558L1530.15 -414.305V-413.668L1389.52 -552.785C1346.94 -594.865 1346.94 -663.212 1389.52 -705.291L1530.66 -844.919V-845.174L1716.04 -1028.54C1783.24 -1095.1 1783.24 -1202.85 1716.04 -1269.41L1530.28 -1453.16L1523.9 -1460.17L1340.05 -1645.96C1273.5 -1713.16 1165.76 -1713.16 1099.21 -1645.96L915.482 -1460.17L915.737 -1460.04Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M913.441 -1450.99L775.361 -1311.37C733.669 -1269.29 666.222 -1269.29 624.53 -1311.37L486.577 -1450.87H486.959L305.274 -1634.61C239.485 -1701.17 132.897 -1701.17 67.1074 -1634.61L-114.705 -1450.99L-122.355 -1443.09L-305.953 -1261.38C-372.507 -1195.58 -372.507 -1088.98 -305.953 -1023.18L-122.228 -841.478V-841.988L16.8731 -704.401C58.9475 -662.704 58.9475 -595.249 16.8731 -553.552L-122.738 -415.327V-415.072L-305.953 -233.748C-372.507 -167.951 -372.507 -61.3492 -305.953 4.44784L-122.228 186.155L-115.853 193.168L65.8324 376.915C131.622 443.477 238.21 443.477 303.999 376.915L485.429 193.04L623.51 53.413C665.202 11.3335 732.649 11.3335 774.341 53.413L912.294 192.913H911.911L1093.6 376.66C1159.39 443.222 1265.97 443.222 1331.76 376.66L1513.45 192.913L1521.1 185.007L1704.82 3.30018C1771.38 -62.4969 1771.38 -169.098 1704.82 -234.895L1521.1 -416.602V-416.092L1382 -553.68C1339.92 -595.376 1339.92 -662.831 1382 -704.528L1521.61 -842.626V-842.88L1704.95 -1024.2C1771.51 -1090 1771.51 -1196.6 1704.95 -1262.4L1521.1 -1444.11L1514.72 -1451.12L1333.04 -1634.87C1267.25 -1701.43 1160.66 -1701.43 1094.87 -1634.87L913.186 -1451.12L913.441 -1450.99Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M913.441 -1450.99L775.361 -1311.37C733.669 -1269.29 666.222 -1269.29 624.53 -1311.37L486.577 -1450.87H486.959L305.274 -1634.61C239.485 -1701.17 132.897 -1701.17 67.1074 -1634.61L-114.705 -1450.99L-122.355 -1443.09L-305.953 -1261.38C-372.507 -1195.58 -372.507 -1088.98 -305.953 -1023.18L-122.228 -841.478V-841.988L16.8731 -704.401C58.9475 -662.704 58.9475 -595.249 16.8731 -553.552L-122.738 -415.327V-415.072L-305.953 -233.748C-372.507 -167.951 -372.507 -61.3492 -305.953 4.44784L-122.228 186.155L-115.853 193.168L65.8324 376.915C131.622 443.477 238.21 443.477 303.999 376.915L485.429 193.04L623.51 53.413C665.202 11.3335 732.649 11.3335 774.341 53.413L912.294 192.913H911.911L1093.6 376.66C1159.39 443.222 1265.97 443.222 1331.76 376.66L1513.45 192.913L1521.1 185.007L1704.82 3.30018C1771.38 -62.4969 1771.38 -169.098 1704.82 -234.895L1521.1 -416.602V-416.092L1382 -553.68C1339.92 -595.376 1339.92 -662.831 1382 -704.528L1521.61 -842.626V-842.88L1704.95 -1024.2C1771.51 -1090 1771.51 -1196.6 1704.95 -1262.4L1521.1 -1444.11L1514.72 -1451.12L1333.04 -1634.87C1267.25 -1701.43 1160.66 -1701.43 1094.87 -1634.87L913.186 -1451.12L913.441 -1450.99Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M911.02 -1441.81L774.469 -1303.71C733.287 -1262.02 666.478 -1262.02 625.296 -1303.71L488.873 -1441.68H489.256L309.61 -1623.39C244.586 -1689.19 139.145 -1689.19 74.121 -1623.39L-105.524 -1441.68L-113.047 -1433.9L-294.732 -1254.24C-360.521 -1189.21 -360.521 -1083.75 -294.732 -1018.72L-113.047 -839.054V-839.564L24.5242 -703.507C66.2161 -662.32 66.2161 -595.503 24.5242 -554.316L-113.557 -417.749V-417.494L-294.859 -238.209C-360.648 -173.177 -360.648 -67.7236 -294.859 -2.69162L-113.174 176.975L-106.927 183.861L72.7185 365.568C137.743 431.365 243.184 431.365 308.208 365.568L487.598 183.733L624.149 45.6361C665.331 3.93912 732.14 3.93912 773.322 45.6361L909.745 183.606H909.363L1089.01 365.313C1154.03 431.11 1259.47 431.11 1324.5 365.313L1504.52 183.861L1512.05 176.083L1693.73 -3.58423C1759.52 -68.6162 1759.52 -174.07 1693.73 -239.102L1512.05 -418.769V-418.259L1374.48 -554.316C1332.78 -595.503 1332.78 -662.32 1374.48 -703.507L1512.56 -840.074V-840.329L1693.86 -1019.61C1759.65 -1084.64 1759.65 -1190.1 1693.86 -1255.13L1512.05 -1435.05L1505.8 -1441.94L1326.03 -1623.77C1261 -1689.57 1155.56 -1689.57 1090.54 -1623.77L910.893 -1442.07L911.02 -1441.81Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M911.02 -1441.81L774.469 -1303.71C733.287 -1262.02 666.478 -1262.02 625.296 -1303.71L488.873 -1441.68H489.256L309.61 -1623.39C244.586 -1689.19 139.145 -1689.19 74.121 -1623.39L-105.524 -1441.68L-113.047 -1433.9L-294.732 -1254.24C-360.521 -1189.21 -360.521 -1083.75 -294.732 -1018.72L-113.047 -839.054V-839.564L24.5242 -703.507C66.2161 -662.32 66.2161 -595.503 24.5242 -554.316L-113.557 -417.749V-417.494L-294.859 -238.209C-360.648 -173.177 -360.648 -67.7236 -294.859 -2.69162L-113.174 176.975L-106.927 183.861L72.7185 365.568C137.743 431.365 243.184 431.365 308.208 365.568L487.598 183.733L624.149 45.6361C665.331 3.93912 732.14 3.93912 773.322 45.6361L909.745 183.606H909.363L1089.01 365.313C1154.03 431.11 1259.47 431.11 1324.5 365.313L1504.52 183.861L1512.05 176.083L1693.73 -3.58423C1759.52 -68.6162 1759.52 -174.07 1693.73 -239.102L1512.05 -418.769V-418.259L1374.48 -554.316C1332.78 -595.503 1332.78 -662.32 1374.48 -703.507L1512.56 -840.074V-840.329L1693.86 -1019.61C1759.65 -1084.64 1759.65 -1190.1 1693.86 -1255.13L1512.05 -1435.05L1505.8 -1441.94L1326.03 -1623.77C1261 -1689.57 1155.56 -1689.57 1090.54 -1623.77L910.893 -1442.07L911.02 -1441.81Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M908.597 -1432.76L773.577 -1296.32C732.905 -1255.13 666.861 -1255.13 626.061 -1296.32L491.168 -1432.76H491.55L313.818 -1612.42C249.558 -1677.45 145.265 -1677.45 80.8781 -1612.42L-96.8546 -1432.76L-104.25 -1425.11L-283.895 -1247.35C-348.919 -1183.08 -348.919 -1078.78 -283.895 -1014.38L-104.25 -836.63V-837.013L31.7912 -702.486C72.9732 -661.809 72.9732 -595.757 31.7912 -554.952L-104.505 -420.043V-419.788L-283.767 -242.544C-348.791 -178.277 -348.791 -73.9709 -283.767 -9.57653L-104.122 168.177L-97.8746 174.936L79.8581 354.602C144.117 419.634 248.411 419.634 312.798 354.602L490.275 174.808L625.296 38.241C665.968 -2.94586 732.012 -2.94586 772.812 38.241L907.705 174.681H907.322L1085.06 354.347C1149.31 419.379 1253.61 419.379 1317.99 354.347L1495.73 174.681L1503.12 167.03L1682.77 -10.7242C1747.79 -74.9911 1747.79 -179.297 1682.77 -243.692L1503.12 -421.446V-421.063L1366.83 -555.335C1325.64 -596.012 1325.64 -662.064 1366.83 -702.868L1503.25 -837.905V-838.16L1682.51 -1015.4C1747.54 -1079.67 1747.54 -1183.98 1682.51 -1248.37L1502.87 -1426.13L1496.62 -1432.88L1318.89 -1612.55C1254.63 -1677.58 1150.33 -1677.58 1085.95 -1612.55L908.215 -1432.88L908.597 -1432.76Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M908.597 -1432.76L773.577 -1296.32C732.905 -1255.13 666.861 -1255.13 626.061 -1296.32L491.168 -1432.76H491.55L313.818 -1612.42C249.558 -1677.45 145.265 -1677.45 80.8781 -1612.42L-96.8546 -1432.76L-104.25 -1425.11L-283.895 -1247.35C-348.919 -1183.08 -348.919 -1078.78 -283.895 -1014.38L-104.25 -836.63V-837.013L31.7912 -702.486C72.9732 -661.809 72.9732 -595.757 31.7912 -554.952L-104.505 -420.043V-419.788L-283.767 -242.544C-348.791 -178.277 -348.791 -73.9709 -283.767 -9.57653L-104.122 168.177L-97.8746 174.936L79.8581 354.602C144.117 419.634 248.411 419.634 312.798 354.602L490.275 174.808L625.296 38.241C665.968 -2.94586 732.012 -2.94586 772.812 38.241L907.705 174.681H907.322L1085.06 354.347C1149.31 419.379 1253.61 419.379 1317.99 354.347L1495.73 174.681L1503.12 167.03L1682.77 -10.7242C1747.79 -74.9911 1747.79 -179.297 1682.77 -243.692L1503.12 -421.446V-421.063L1366.83 -555.335C1325.64 -596.012 1325.64 -662.064 1366.83 -702.868L1503.25 -837.905V-838.16L1682.51 -1015.4C1747.54 -1079.67 1747.54 -1183.98 1682.51 -1248.37L1502.87 -1426.13L1496.62 -1432.88L1318.89 -1612.55C1254.63 -1677.58 1150.33 -1677.58 1085.95 -1612.55L908.215 -1432.88L908.597 -1432.76Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M906.302 -1423.7L772.811 -1288.79C732.521 -1248.12 667.242 -1248.12 626.953 -1288.79L493.589 -1423.58H493.972L318.279 -1601.2C254.657 -1665.47 151.639 -1665.47 88.017 -1601.2L-87.5482 -1423.58L-94.9431 -1416.05L-272.548 -1240.34C-336.807 -1176.71 -336.807 -1073.68 -272.548 -1010.05L-94.9431 -834.336V-834.718L39.5677 -701.721C80.2396 -661.427 80.2396 -596.14 39.5677 -555.846L-95.3256 -422.467V-422.212L-272.548 -246.88C-336.807 -183.251 -336.807 -80.2199 -272.548 -16.5905L-94.9431 159.123L-88.8232 165.881L86.8695 343.508C150.491 407.775 253.51 407.775 317.132 343.508L492.569 165.754L626.06 30.8445C666.35 -9.83238 731.629 -9.83238 771.918 30.8445L905.282 165.754H904.899L1080.59 343.38C1144.21 407.647 1247.23 407.647 1310.85 343.38L1486.55 165.754L1493.94 158.231L1671.55 -17.4832C1735.81 -81.1125 1735.81 -184.144 1671.55 -247.773L1493.94 -423.487V-423.104L1359.43 -556.101C1318.76 -596.395 1318.76 -661.682 1359.43 -701.976L1494.32 -835.483V-835.738L1671.55 -1011.07C1735.81 -1074.7 1735.81 -1177.73 1671.55 -1241.36L1493.94 -1417.07L1487.82 -1423.83L1312 -1601.46C1248.38 -1665.72 1145.36 -1665.72 1081.74 -1601.46L906.047 -1423.83L906.302 -1423.7Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M906.302 -1423.7L772.811 -1288.79C732.521 -1248.12 667.242 -1248.12 626.953 -1288.79L493.589 -1423.58H493.972L318.279 -1601.2C254.657 -1665.47 151.639 -1665.47 88.017 -1601.2L-87.5482 -1423.58L-94.9431 -1416.05L-272.548 -1240.34C-336.807 -1176.71 -336.807 -1073.68 -272.548 -1010.05L-94.9431 -834.336V-834.718L39.5677 -701.721C80.2396 -661.427 80.2396 -596.14 39.5677 -555.846L-95.3256 -422.467V-422.212L-272.548 -246.88C-336.807 -183.251 -336.807 -80.2199 -272.548 -16.5905L-94.9431 159.123L-88.8232 165.881L86.8695 343.508C150.491 407.775 253.51 407.775 317.132 343.508L492.569 165.754L626.06 30.8445C666.35 -9.83238 731.629 -9.83238 771.918 30.8445L905.282 165.754H904.899L1080.59 343.38C1144.21 407.647 1247.23 407.647 1310.85 343.38L1486.55 165.754L1493.94 158.231L1671.55 -17.4832C1735.81 -81.1125 1735.81 -184.144 1671.55 -247.773L1493.94 -423.487V-423.104L1359.43 -556.101C1318.76 -596.395 1318.76 -661.682 1359.43 -701.976L1494.32 -835.483V-835.738L1671.55 -1011.07C1735.81 -1074.7 1735.81 -1177.73 1671.55 -1241.36L1493.94 -1417.07L1487.82 -1423.83L1312 -1601.46C1248.38 -1665.72 1145.36 -1665.72 1081.74 -1601.46L906.047 -1423.83L906.302 -1423.7Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M903.879 -1414.52L771.918 -1281.14C732.139 -1240.85 667.625 -1240.85 627.718 -1281.14L496.012 -1414.52H496.394L322.742 -1590.11C259.885 -1653.74 158.014 -1653.74 95.157 -1590.11L-78.4957 -1414.52L-85.7631 -1407L-261.328 -1233.33C-324.95 -1170.46 -324.95 -1068.58 -261.328 -1005.72L-85.7631 -832.041V-832.424L47.2177 -700.957C87.5072 -661.173 87.5072 -596.651 47.2177 -556.739L-86.2731 -424.763V-424.508L-261.456 -251.344C-325.078 -188.48 -325.078 -86.5966 -261.456 -23.7324L-85.8906 149.941L-79.7707 156.572L93.882 332.286C156.739 395.915 258.61 395.915 321.467 332.286L494.864 156.572L626.825 23.1926C666.605 -17.1017 731.119 -17.1017 771.026 23.1926L902.859 156.572H902.477L1076.13 332.158C1138.99 395.788 1240.86 395.788 1303.71 332.158L1477.37 156.572L1484.63 149.049L1660.2 -24.625C1723.82 -87.4892 1723.82 -189.373 1660.2 -252.237L1484.63 -425.91V-425.528L1351.65 -556.995C1311.36 -596.779 1311.36 -661.301 1351.65 -701.212L1485.02 -833.189V-833.444L1660.2 -1006.74C1723.82 -1069.6 1723.82 -1171.48 1660.2 -1234.35L1484.63 -1408.02L1478.51 -1414.65L1304.86 -1590.24C1242 -1653.87 1140.13 -1653.87 1077.28 -1590.24L903.624 -1414.65L903.879 -1414.52Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M903.879 -1414.52L771.918 -1281.14C732.139 -1240.85 667.625 -1240.85 627.718 -1281.14L496.012 -1414.52H496.394L322.742 -1590.11C259.885 -1653.74 158.014 -1653.74 95.157 -1590.11L-78.4957 -1414.52L-85.7631 -1407L-261.328 -1233.33C-324.95 -1170.46 -324.95 -1068.58 -261.328 -1005.72L-85.7631 -832.041V-832.424L47.2177 -700.957C87.5072 -661.173 87.5072 -596.651 47.2177 -556.739L-86.2731 -424.763V-424.508L-261.456 -251.344C-325.078 -188.48 -325.078 -86.5966 -261.456 -23.7324L-85.8906 149.941L-79.7707 156.572L93.882 332.286C156.739 395.915 258.61 395.915 321.467 332.286L494.864 156.572L626.825 23.1926C666.605 -17.1017 731.119 -17.1017 771.026 23.1926L902.859 156.572H902.477L1076.13 332.158C1138.99 395.788 1240.86 395.788 1303.71 332.158L1477.37 156.572L1484.63 149.049L1660.2 -24.625C1723.82 -87.4892 1723.82 -189.373 1660.2 -252.237L1484.63 -425.91V-425.528L1351.65 -556.995C1311.36 -596.779 1311.36 -661.301 1351.65 -701.212L1485.02 -833.189V-833.444L1660.2 -1006.74C1723.82 -1069.6 1723.82 -1171.48 1660.2 -1234.35L1484.63 -1408.02L1478.51 -1414.65L1304.86 -1590.24C1242 -1653.87 1140.13 -1653.87 1077.28 -1590.24L903.624 -1414.65L903.879 -1414.52Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M901.585 -1405.47L771.154 -1273.62C731.757 -1233.84 668.008 -1233.84 628.611 -1273.62L498.307 -1405.47H498.69L327.077 -1579.02C264.985 -1641.88 164.262 -1641.88 102.042 -1579.02L-69.5703 -1405.47L-76.7102 -1398.07L-250.235 -1226.44C-313.092 -1164.34 -313.092 -1063.6 -250.235 -1001.38L-76.7102 -829.745V-830.127L54.7406 -700.191C94.5201 -660.789 94.5201 -597.032 54.7406 -557.631L-77.0927 -427.184V-426.929L-250.235 -255.678C-313.092 -193.579 -313.092 -92.8435 -250.235 -30.6168L-76.7102 141.017L-70.7178 147.647L100.895 321.193C162.987 384.058 263.71 384.058 325.93 321.193L497.287 147.52L627.718 15.6706C667.115 -24.1136 730.864 -24.1136 770.261 15.6706L900.437 147.392H900.055L1071.67 320.938C1133.76 383.803 1234.48 383.803 1296.7 320.938L1468.44 147.392L1475.58 139.996L1649.11 -31.637C1711.96 -93.7361 1711.96 -194.472 1649.11 -256.699L1475.58 -428.332V-427.949L1344.13 -557.886C1304.35 -597.287 1304.35 -661.044 1344.13 -700.446L1475.96 -830.892V-831.147L1649.11 -1002.4C1711.96 -1064.5 1711.96 -1165.23 1649.11 -1227.46L1475.58 -1399.09L1469.59 -1405.72L1297.98 -1579.14C1235.89 -1642.01 1135.16 -1642.01 1072.94 -1579.14L901.33 -1405.6L901.585 -1405.47Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M901.585 -1405.47L771.154 -1273.62C731.757 -1233.84 668.008 -1233.84 628.611 -1273.62L498.307 -1405.47H498.69L327.077 -1579.02C264.985 -1641.88 164.262 -1641.88 102.042 -1579.02L-69.5703 -1405.47L-76.7102 -1398.07L-250.235 -1226.44C-313.092 -1164.34 -313.092 -1063.6 -250.235 -1001.38L-76.7102 -829.745V-830.127L54.7406 -700.191C94.5201 -660.789 94.5201 -597.032 54.7406 -557.631L-77.0927 -427.184V-426.929L-250.235 -255.678C-313.092 -193.579 -313.092 -92.8435 -250.235 -30.6168L-76.7102 141.017L-70.7178 147.647L100.895 321.193C162.987 384.058 263.71 384.058 325.93 321.193L497.287 147.52L627.718 15.6706C667.115 -24.1136 730.864 -24.1136 770.261 15.6706L900.437 147.392H900.055L1071.67 320.938C1133.76 383.803 1234.48 383.803 1296.7 320.938L1468.44 147.392L1475.58 139.996L1649.11 -31.637C1711.96 -93.7361 1711.96 -194.472 1649.11 -256.699L1475.58 -428.332V-427.949L1344.13 -557.886C1304.35 -597.287 1304.35 -661.044 1344.13 -700.446L1475.96 -830.892V-831.147L1649.11 -1002.4C1711.96 -1064.5 1711.96 -1165.23 1649.11 -1227.46L1475.58 -1399.09L1469.59 -1405.72L1297.98 -1579.14C1235.89 -1642.01 1135.16 -1642.01 1072.94 -1579.14L901.33 -1405.6L901.585 -1405.47Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M899.162 -1396.29L770.262 -1265.97C731.375 -1226.69 668.39 -1226.69 629.503 -1265.97L500.73 -1396.29H501.113L331.54 -1567.79C270.086 -1629.89 170.637 -1629.89 109.183 -1567.79L-60.3902 -1396.29L-67.5301 -1389.02L-239.015 -1219.43C-301.107 -1157.96 -301.107 -1058.5 -239.015 -997.042L-67.5301 -827.449V-827.831L62.2632 -699.298C101.533 -660.406 101.533 -597.414 62.2632 -558.522L-68.0401 -429.606V-429.351L-239.143 -260.013C-301.235 -198.551 -301.235 -99.0907 -239.143 -37.6292L-67.6576 131.964L-61.6652 138.467L107.908 309.973C169.362 372.072 268.811 372.072 330.265 309.973L499.71 138.34L628.611 8.02071C667.498 -31.2535 730.482 -31.2535 769.369 8.02071L898.143 138.34H897.76L1067.33 309.845C1128.79 371.945 1228.24 371.945 1289.69 309.845L1459.26 138.34L1466.4 131.071L1637.89 -38.5218C1699.98 -99.9833 1699.98 -199.444 1637.89 -260.906L1466.4 -430.499V-430.244L1336.48 -558.777C1297.21 -597.669 1297.21 -660.661 1336.48 -699.553L1466.79 -828.469V-828.724L1637.89 -997.934C1699.98 -1059.4 1699.98 -1158.86 1637.89 -1220.32L1466.4 -1389.91L1460.41 -1396.41L1290.84 -1567.92C1229.38 -1630.02 1129.93 -1630.02 1068.48 -1567.92L898.908 -1396.41L899.162 -1396.29Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M899.162 -1396.29L770.262 -1265.97C731.375 -1226.69 668.39 -1226.69 629.503 -1265.97L500.73 -1396.29H501.113L331.54 -1567.79C270.086 -1629.89 170.637 -1629.89 109.183 -1567.79L-60.3902 -1396.29L-67.5301 -1389.02L-239.015 -1219.43C-301.107 -1157.96 -301.107 -1058.5 -239.015 -997.042L-67.5301 -827.449V-827.831L62.2632 -699.298C101.533 -660.406 101.533 -597.414 62.2632 -558.522L-68.0401 -429.606V-429.351L-239.143 -260.013C-301.235 -198.551 -301.235 -99.0907 -239.143 -37.6292L-67.6576 131.964L-61.6652 138.467L107.908 309.973C169.362 372.072 268.811 372.072 330.265 309.973L499.71 138.34L628.611 8.02071C667.498 -31.2535 730.482 -31.2535 769.369 8.02071L898.143 138.34H897.76L1067.33 309.845C1128.79 371.945 1228.24 371.945 1289.69 309.845L1459.26 138.34L1466.4 131.071L1637.89 -38.5218C1699.98 -99.9833 1699.98 -199.444 1637.89 -260.906L1466.4 -430.499V-430.244L1336.48 -558.777C1297.21 -597.669 1297.21 -660.661 1336.48 -699.553L1466.79 -828.469V-828.724L1637.89 -997.934C1699.98 -1059.4 1699.98 -1158.86 1637.89 -1220.32L1466.4 -1389.91L1460.41 -1396.41L1290.84 -1567.92C1229.38 -1630.02 1129.93 -1630.02 1068.48 -1567.92L898.908 -1396.41L899.162 -1396.29Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M896.74 -1387.24L769.369 -1258.45C730.992 -1219.56 668.645 -1219.56 630.268 -1258.45L503.025 -1387.11H503.407L335.747 -1556.57C275.058 -1617.91 176.756 -1617.91 116.067 -1556.57L-51.5931 -1387.11L-58.6055 -1379.84L-228.051 -1212.16C-289.378 -1151.46 -289.378 -1053.15 -228.051 -992.454L-58.6055 -824.773V-825.156L69.7853 -698.152C108.672 -659.771 108.672 -597.416 69.7853 -559.035L-58.988 -431.649V-431.394L-228.051 -264.478C-289.378 -203.782 -289.378 -105.469 -228.051 -44.7722L-58.6055 122.908L-52.7406 129.284L114.92 298.75C175.609 360.084 273.91 360.084 334.599 298.75L502.005 129.157L629.376 0.367682C667.753 -38.524 730.099 -38.524 768.476 0.367682L895.72 129.029H895.337L1063 298.495C1123.69 359.829 1221.99 359.829 1282.68 298.495L1450.34 129.029L1457.35 121.761L1626.8 -45.9198C1688.12 -106.616 1688.12 -204.929 1626.8 -265.626L1457.35 -433.051V-432.669L1328.96 -559.672C1290.07 -598.054 1290.07 -660.408 1328.96 -698.79L1457.73 -826.176V-826.431L1626.8 -993.601C1688.12 -1054.3 1688.12 -1152.61 1626.8 -1213.31L1457.35 -1380.86L1451.49 -1387.24L1283.82 -1556.7C1223.14 -1618.04 1124.83 -1618.04 1064.14 -1556.7L896.485 -1387.24H896.74Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M896.74 -1387.24L769.369 -1258.45C730.992 -1219.56 668.645 -1219.56 630.268 -1258.45L503.025 -1387.11H503.407L335.747 -1556.57C275.058 -1617.91 176.756 -1617.91 116.067 -1556.57L-51.5931 -1387.11L-58.6055 -1379.84L-228.051 -1212.16C-289.378 -1151.46 -289.378 -1053.15 -228.051 -992.454L-58.6055 -824.773V-825.156L69.7853 -698.152C108.672 -659.771 108.672 -597.416 69.7853 -559.035L-58.988 -431.649V-431.394L-228.051 -264.478C-289.378 -203.782 -289.378 -105.469 -228.051 -44.7722L-58.6055 122.908L-52.7406 129.284L114.92 298.75C175.609 360.084 273.91 360.084 334.599 298.75L502.005 129.157L629.376 0.367682C667.753 -38.524 730.099 -38.524 768.476 0.367682L895.72 129.029H895.337L1063 298.495C1123.69 359.829 1221.99 359.829 1282.68 298.495L1450.34 129.029L1457.35 121.761L1626.8 -45.9198C1688.12 -106.616 1688.12 -204.929 1626.8 -265.626L1457.35 -433.051V-432.669L1328.96 -559.672C1290.07 -598.054 1290.07 -660.408 1328.96 -698.79L1457.73 -826.176V-826.431L1626.8 -993.601C1688.12 -1054.3 1688.12 -1152.61 1626.8 -1213.31L1457.35 -1380.86L1451.49 -1387.24L1283.82 -1556.7C1223.14 -1618.04 1124.83 -1618.04 1064.14 -1556.7L896.485 -1387.24H896.74Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M894.445 -1378.05L768.604 -1250.79C730.609 -1212.41 669.155 -1212.41 631.161 -1250.79L505.447 -1377.93H505.83L340.209 -1545.35C280.285 -1605.92 183.131 -1605.92 123.08 -1545.35L-42.5407 -1377.93L-49.4256 -1370.78L-216.831 -1205.14C-277.393 -1145.21 -277.393 -1048.05 -216.831 -987.989L-49.4256 -822.349V-822.731L77.4353 -697.258C115.812 -659.259 115.812 -597.797 77.4353 -559.798L-49.8081 -433.942V-434.07L-216.831 -268.812C-277.393 -208.881 -277.393 -111.715 -216.831 -51.6565L-49.4256 113.984L-43.6881 120.359L121.932 287.657C181.856 348.226 279.01 348.226 339.062 287.657L504.427 120.104L630.268 -7.15426C668.263 -45.5359 729.717 -45.5359 767.711 -7.15426L893.425 119.977H893.042L1058.66 287.402C1118.59 347.971 1215.74 347.971 1275.79 287.402L1441.41 119.977L1448.3 112.836L1615.7 -52.8041C1676.26 -112.736 1676.26 -209.901 1615.7 -269.96L1448.3 -435.345V-434.962L1321.44 -560.436C1283.06 -598.435 1283.06 -659.897 1321.44 -697.896L1448.68 -823.751V-824.007L1615.7 -989.264C1676.26 -1049.2 1676.26 -1146.36 1615.7 -1206.42L1448.3 -1372.06L1442.56 -1378.44L1276.94 -1545.86C1217.02 -1606.43 1119.86 -1606.43 1059.81 -1545.86L894.19 -1378.44L894.445 -1378.05Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M894.445 -1378.05L768.604 -1250.79C730.609 -1212.41 669.155 -1212.41 631.161 -1250.79L505.447 -1377.93H505.83L340.209 -1545.35C280.285 -1605.92 183.131 -1605.92 123.08 -1545.35L-42.5407 -1377.93L-49.4256 -1370.78L-216.831 -1205.14C-277.393 -1145.21 -277.393 -1048.05 -216.831 -987.989L-49.4256 -822.349V-822.731L77.4353 -697.258C115.812 -659.259 115.812 -597.797 77.4353 -559.798L-49.8081 -433.942V-434.07L-216.831 -268.812C-277.393 -208.881 -277.393 -111.715 -216.831 -51.6565L-49.4256 113.984L-43.6881 120.359L121.932 287.657C181.856 348.226 279.01 348.226 339.062 287.657L504.427 120.104L630.268 -7.15426C668.263 -45.5359 729.717 -45.5359 767.711 -7.15426L893.425 119.977H893.042L1058.66 287.402C1118.59 347.971 1215.74 347.971 1275.79 287.402L1441.41 119.977L1448.3 112.836L1615.7 -52.8041C1676.26 -112.736 1676.26 -209.901 1615.7 -269.96L1448.3 -435.345V-434.962L1321.44 -560.436C1283.06 -598.435 1283.06 -659.897 1321.44 -697.896L1448.68 -823.751V-824.007L1615.7 -989.264C1676.26 -1049.2 1676.26 -1146.36 1615.7 -1206.42L1448.3 -1372.06L1442.56 -1378.44L1276.94 -1545.86C1217.02 -1606.43 1119.86 -1606.43 1059.81 -1545.86L894.19 -1378.44L894.445 -1378.05Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M892.022 -1369L767.711 -1243.27C730.227 -1205.4 669.41 -1205.4 631.925 -1243.27L507.742 -1368.87H508.124L344.544 -1534.26C285.385 -1594.19 189.378 -1594.19 130.092 -1534.26L-33.4887 -1368.87L-40.3736 -1361.86L-205.739 -1198.26C-265.663 -1139.09 -265.663 -1043.07 -205.739 -983.78L-40.3736 -820.18V-820.562L84.9573 -696.619C122.824 -659.13 122.824 -598.306 84.9573 -560.817L-40.7561 -436.619V-436.364L-205.739 -273.146C-265.663 -213.98 -265.663 -117.962 -205.739 -58.6684L-40.3736 104.932L-34.6362 111.18L128.944 276.565C188.103 336.496 284.11 336.496 343.396 276.565L506.722 111.052L631.033 -14.6762C668.517 -52.5478 729.334 -52.5478 766.819 -14.6762L891.002 110.925H890.62L1054.2 276.31C1113.36 336.241 1209.37 336.241 1268.65 276.31L1432.23 110.925L1439.12 103.911L1604.48 -59.6886C1664.41 -118.855 1664.41 -214.873 1604.48 -274.166L1439.12 -437.767V-437.384L1313.79 -561.327C1275.92 -598.816 1275.92 -659.64 1313.79 -697.129L1439.5 -821.455V-821.71L1604.48 -984.928C1664.41 -1044.09 1664.41 -1140.11 1604.48 -1199.41L1439.12 -1363.01L1433.38 -1369.25L1269.8 -1534.51C1210.64 -1594.44 1114.63 -1594.44 1055.35 -1534.51L891.767 -1369.13L892.022 -1369Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M892.022 -1369L767.711 -1243.27C730.227 -1205.4 669.41 -1205.4 631.925 -1243.27L507.742 -1368.87H508.124L344.544 -1534.26C285.385 -1594.19 189.378 -1594.19 130.092 -1534.26L-33.4887 -1368.87L-40.3736 -1361.86L-205.739 -1198.26C-265.663 -1139.09 -265.663 -1043.07 -205.739 -983.78L-40.3736 -820.18V-820.562L84.9573 -696.619C122.824 -659.13 122.824 -598.306 84.9573 -560.817L-40.7561 -436.619V-436.364L-205.739 -273.146C-265.663 -213.98 -265.663 -117.962 -205.739 -58.6684L-40.3736 104.932L-34.6362 111.18L128.944 276.565C188.103 336.496 284.11 336.496 343.396 276.565L506.722 111.052L631.033 -14.6762C668.517 -52.5478 729.334 -52.5478 766.819 -14.6762L891.002 110.925H890.62L1054.2 276.31C1113.36 336.241 1209.37 336.241 1268.65 276.31L1432.23 110.925L1439.12 103.911L1604.48 -59.6886C1664.41 -118.855 1664.41 -214.873 1604.48 -274.166L1439.12 -437.767V-437.384L1313.79 -561.327C1275.92 -598.816 1275.92 -659.64 1313.79 -697.129L1439.5 -821.455V-821.71L1604.48 -984.928C1664.41 -1044.09 1664.41 -1140.11 1604.48 -1199.41L1439.12 -1363.01L1433.38 -1369.25L1269.8 -1534.51C1210.64 -1594.44 1114.63 -1594.44 1055.35 -1534.51L891.767 -1369.13L892.022 -1369Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M889.728 -1359.82L766.947 -1235.75C729.845 -1198.26 669.92 -1198.26 632.818 -1235.75L510.165 -1359.82H510.548L349.007 -1523.16C290.485 -1582.33 195.754 -1582.33 137.232 -1523.16L-24.4357 -1359.82L-31.1931 -1352.81L-194.519 -1191.25C-253.678 -1132.72 -253.678 -1037.97 -194.519 -979.446L-31.1931 -817.887V-818.269L92.4803 -695.856C129.965 -658.75 129.965 -598.818 92.4803 -561.712L-31.5756 -438.916V-438.661L-194.519 -277.611C-253.678 -219.083 -253.678 -124.34 -194.519 -65.8113L-31.1931 95.7485L-25.5832 101.997L135.957 265.342C194.479 324.508 289.21 324.508 347.732 265.342L509.018 101.869L631.798 -22.2016C668.9 -59.6906 728.825 -59.6906 765.927 -22.2016L888.58 101.869H888.198L1049.74 265.214C1108.26 324.38 1202.99 324.38 1261.51 265.214L1423.05 101.869L1429.81 94.8559L1593.14 -66.7039C1652.3 -125.233 1652.3 -219.975 1593.14 -278.504L1429.81 -440.064V-439.681L1306.14 -562.094C1268.65 -599.201 1268.65 -659.26 1306.14 -696.239L1430.19 -819.034V-819.289L1593.14 -980.466C1652.3 -1039 1652.3 -1133.74 1593.14 -1192.27L1429.81 -1353.83L1424.2 -1360.07L1262.66 -1523.42C1204.14 -1582.59 1109.41 -1582.59 1050.89 -1523.42L889.345 -1360.07L889.728 -1359.82Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M889.728 -1359.82L766.947 -1235.75C729.845 -1198.26 669.92 -1198.26 632.818 -1235.75L510.165 -1359.82H510.548L349.007 -1523.16C290.485 -1582.33 195.754 -1582.33 137.232 -1523.16L-24.4357 -1359.82L-31.1931 -1352.81L-194.519 -1191.25C-253.678 -1132.72 -253.678 -1037.97 -194.519 -979.446L-31.1931 -817.887V-818.269L92.4803 -695.856C129.965 -658.75 129.965 -598.818 92.4803 -561.712L-31.5756 -438.916V-438.661L-194.519 -277.611C-253.678 -219.083 -253.678 -124.34 -194.519 -65.8113L-31.1931 95.7485L-25.5832 101.997L135.957 265.342C194.479 324.508 289.21 324.508 347.732 265.342L509.018 101.869L631.798 -22.2016C668.9 -59.6906 728.825 -59.6906 765.927 -22.2016L888.58 101.869H888.198L1049.74 265.214C1108.26 324.38 1202.99 324.38 1261.51 265.214L1423.05 101.869L1429.81 94.8559L1593.14 -66.7039C1652.3 -125.233 1652.3 -219.975 1593.14 -278.504L1429.81 -440.064V-439.681L1306.14 -562.094C1268.65 -599.201 1268.65 -659.26 1306.14 -696.239L1430.19 -819.034V-819.289L1593.14 -980.466C1652.3 -1039 1652.3 -1133.74 1593.14 -1192.27L1429.81 -1353.83L1424.2 -1360.07L1262.66 -1523.42C1204.14 -1582.59 1109.41 -1582.59 1050.89 -1523.42L889.345 -1360.07L889.728 -1359.82Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M887.305 -1350.77L766.054 -1228.23C729.462 -1191.25 670.175 -1191.25 633.583 -1228.23L512.46 -1350.77H512.842L353.342 -1512.07C295.585 -1570.47 202.001 -1570.47 144.245 -1512.07L-15.2558 -1350.77L-21.8857 -1343.88L-183.171 -1184.36C-241.565 -1126.6 -241.565 -1033 -183.171 -975.238L-21.8857 -815.719V-816.101L100.258 -695.218C137.232 -658.622 137.232 -599.328 100.258 -562.731L-22.2682 -441.466V-441.211L-183.426 -281.946C-241.82 -224.183 -241.82 -130.588 -183.426 -72.8239L-22.1407 86.6957L-16.5308 92.8164L142.97 254.121C200.726 312.522 294.31 312.522 352.067 254.121L511.44 92.6889L632.691 -29.8518C669.283 -66.8308 728.57 -66.8308 765.162 -29.8518L886.285 92.6889H885.903L1045.53 254.121C1103.29 312.522 1196.87 312.522 1254.63 254.121L1414.13 92.8164L1420.76 85.9306L1582.3 -73.7165C1640.69 -131.48 1640.69 -225.075 1582.3 -282.839L1421.01 -442.358V-441.976L1298.87 -562.859C1261.9 -599.455 1261.9 -658.749 1298.87 -695.346L1421.4 -816.611V-816.866L1582.3 -976.003C1640.69 -1033.77 1640.69 -1127.36 1582.3 -1185.13L1421.01 -1344.65L1415.4 -1350.77L1255.9 -1512.07C1198.15 -1570.47 1104.56 -1570.47 1046.81 -1512.07L887.05 -1350.89L887.305 -1350.77Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M887.305 -1350.77L766.054 -1228.23C729.462 -1191.25 670.175 -1191.25 633.583 -1228.23L512.46 -1350.77H512.842L353.342 -1512.07C295.585 -1570.47 202.001 -1570.47 144.245 -1512.07L-15.2558 -1350.77L-21.8857 -1343.88L-183.171 -1184.36C-241.565 -1126.6 -241.565 -1033 -183.171 -975.238L-21.8857 -815.719V-816.101L100.258 -695.218C137.232 -658.622 137.232 -599.328 100.258 -562.731L-22.2682 -441.466V-441.211L-183.426 -281.946C-241.82 -224.183 -241.82 -130.588 -183.426 -72.8239L-22.1407 86.6957L-16.5308 92.8164L142.97 254.121C200.726 312.522 294.31 312.522 352.067 254.121L511.44 92.6889L632.691 -29.8518C669.283 -66.8308 728.57 -66.8308 765.162 -29.8518L886.285 92.6889H885.903L1045.53 254.121C1103.29 312.522 1196.87 312.522 1254.63 254.121L1414.13 92.8164L1420.76 85.9306L1582.3 -73.7165C1640.69 -131.48 1640.69 -225.075 1582.3 -282.839L1421.01 -442.358V-441.976L1298.87 -562.859C1261.9 -599.455 1261.9 -658.749 1298.87 -695.346L1421.4 -816.611V-816.866L1582.3 -976.003C1640.69 -1033.77 1640.69 -1127.36 1582.3 -1185.13L1421.01 -1344.65L1415.4 -1350.77L1255.9 -1512.07C1198.15 -1570.47 1104.56 -1570.47 1046.81 -1512.07L887.05 -1350.89L887.305 -1350.77Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M884.882 -1341.71L765.161 -1220.7C729.079 -1184.23 670.43 -1184.23 634.348 -1220.7L514.754 -1341.71H515.137L357.549 -1500.98C300.557 -1558.61 208.121 -1558.61 151.001 -1500.98L-6.33171 -1341.58L-12.9616 -1334.83L-172.207 -1177.22C-229.836 -1120.22 -229.836 -1027.77 -172.207 -970.648L-12.9616 -813.041V-813.423L107.652 -694.07C144.116 -657.984 144.116 -599.328 107.652 -563.241L-13.3441 -443.506V-443.251L-172.335 -286.282C-229.964 -229.283 -229.964 -136.836 -172.335 -79.7097L-13.0891 77.8971L-7.6067 83.8903L149.981 243.155C206.973 300.791 299.409 300.791 356.529 243.155L513.862 83.6352L633.583 -37.3753C669.665 -73.8442 728.314 -73.8442 764.396 -37.3753L883.989 83.6352H883.607L1041.19 242.9C1098.19 300.536 1190.62 300.536 1247.74 242.9L1405.2 83.6352L1411.83 76.877L1571.08 -80.7299C1628.71 -137.728 1628.71 -230.176 1571.08 -287.302L1411.83 -444.909V-444.526L1291.22 -563.879C1254.75 -599.965 1254.75 -658.622 1291.22 -694.708L1412.21 -814.443V-814.698L1571.21 -971.923C1628.83 -1028.92 1628.83 -1121.37 1571.21 -1178.49L1411.96 -1336.1L1406.48 -1342.09L1248.89 -1501.36C1191.9 -1559 1099.46 -1559 1042.34 -1501.36L884.754 -1342.09L884.882 -1341.71Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M884.882 -1341.71L765.161 -1220.7C729.079 -1184.23 670.43 -1184.23 634.348 -1220.7L514.754 -1341.71H515.137L357.549 -1500.98C300.557 -1558.61 208.121 -1558.61 151.001 -1500.98L-6.33171 -1341.58L-12.9616 -1334.83L-172.207 -1177.22C-229.836 -1120.22 -229.836 -1027.77 -172.207 -970.648L-12.9616 -813.041V-813.423L107.652 -694.07C144.116 -657.984 144.116 -599.328 107.652 -563.241L-13.3441 -443.506V-443.251L-172.335 -286.282C-229.964 -229.283 -229.964 -136.836 -172.335 -79.7097L-13.0891 77.8971L-7.6067 83.8903L149.981 243.155C206.973 300.791 299.409 300.791 356.529 243.155L513.862 83.6352L633.583 -37.3753C669.665 -73.8442 728.314 -73.8442 764.396 -37.3753L883.989 83.6352H883.607L1041.19 242.9C1098.19 300.536 1190.62 300.536 1247.74 242.9L1405.2 83.6352L1411.83 76.877L1571.08 -80.7299C1628.71 -137.728 1628.71 -230.176 1571.08 -287.302L1411.83 -444.909V-444.526L1291.22 -563.879C1254.75 -599.965 1254.75 -658.622 1291.22 -694.708L1412.21 -814.443V-814.698L1571.21 -971.923C1628.83 -1028.92 1628.83 -1121.37 1571.21 -1178.49L1411.96 -1336.1L1406.48 -1342.09L1248.89 -1501.36C1191.9 -1559 1099.46 -1559 1042.34 -1501.36L884.754 -1342.09L884.882 -1341.71Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M882.587 -1332.53L764.396 -1213.05C728.697 -1176.97 670.94 -1176.97 635.241 -1213.05L517.177 -1332.53H517.56L362.012 -1489.76C305.657 -1546.63 214.496 -1546.63 158.142 -1489.76L2.59376 -1332.53L-3.90866 -1325.77L-161.114 -1170.21C-217.978 -1113.85 -217.978 -1022.67 -161.114 -966.313L-3.90866 -810.747V-811.129L115.175 -693.307C151.257 -657.603 151.257 -599.839 115.175 -564.135L-4.29114 -445.93V-445.675L-161.114 -290.746C-217.978 -234.385 -217.978 -143.213 -161.114 -86.8516L-3.90866 68.715L1.57379 74.7082L157.122 231.933C213.476 288.931 304.637 288.931 360.992 231.933L516.285 74.5807L634.476 -44.8996C670.175 -80.986 727.932 -80.986 763.632 -44.8996L881.695 74.5807H881.312L1036.86 231.805C1093.21 288.676 1184.38 288.676 1240.73 231.805L1396.28 74.5807L1402.78 67.8225L1559.99 -87.7442C1616.85 -144.105 1616.85 -235.278 1559.99 -291.639L1402.78 -447.205V-446.823L1283.7 -564.645C1247.62 -600.349 1247.62 -658.113 1283.7 -693.817L1403.16 -812.022V-812.277L1560.11 -967.461C1616.98 -1023.82 1616.98 -1114.99 1560.11 -1171.36L1402.91 -1326.92L1397.43 -1332.92L1241.88 -1490.14C1185.52 -1547.01 1094.36 -1547.01 1038.01 -1490.14L882.46 -1332.92L882.587 -1332.53Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M882.587 -1332.53L764.396 -1213.05C728.697 -1176.97 670.94 -1176.97 635.241 -1213.05L517.177 -1332.53H517.56L362.012 -1489.76C305.657 -1546.63 214.496 -1546.63 158.142 -1489.76L2.59376 -1332.53L-3.90866 -1325.77L-161.114 -1170.21C-217.978 -1113.85 -217.978 -1022.67 -161.114 -966.313L-3.90866 -810.747V-811.129L115.175 -693.307C151.257 -657.603 151.257 -599.839 115.175 -564.135L-4.29114 -445.93V-445.675L-161.114 -290.746C-217.978 -234.385 -217.978 -143.213 -161.114 -86.8516L-3.90866 68.715L1.57379 74.7082L157.122 231.933C213.476 288.931 304.637 288.931 360.992 231.933L516.285 74.5807L634.476 -44.8996C670.175 -80.986 727.932 -80.986 763.632 -44.8996L881.695 74.5807H881.312L1036.86 231.805C1093.21 288.676 1184.38 288.676 1240.73 231.805L1396.28 74.5807L1402.78 67.8225L1559.99 -87.7442C1616.85 -144.105 1616.85 -235.278 1559.99 -291.639L1402.78 -447.205V-446.823L1283.7 -564.645C1247.62 -600.349 1247.62 -658.113 1283.7 -693.817L1403.16 -812.022V-812.277L1560.11 -967.461C1616.98 -1023.82 1616.98 -1114.99 1560.11 -1171.36L1402.91 -1326.92L1397.43 -1332.92L1241.88 -1490.14C1185.52 -1547.01 1094.36 -1547.01 1038.01 -1490.14L882.46 -1332.92L882.587 -1332.53Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M880.165 -1323.48L763.504 -1205.53C728.315 -1169.95 671.196 -1169.95 636.006 -1205.53L519.473 -1323.48H519.855L366.347 -1478.66C310.758 -1534.9 220.744 -1534.9 165.155 -1478.66L11.6467 -1323.48L5.27179 -1316.85L-149.894 -1163.32C-206.12 -1107.72 -206.12 -1017.7 -149.894 -962.104L5.27179 -808.578V-808.96L122.825 -692.668C158.397 -657.474 158.397 -600.348 122.825 -565.154L4.88927 -448.479V-448.224L-150.021 -295.08C-206.248 -239.484 -206.248 -149.46 -150.021 -93.8639L5.14428 59.6625L10.4992 65.5281L164.007 220.712C219.596 276.946 309.61 276.946 365.2 220.712L518.453 65.4006L635.114 -52.5495C670.303 -88.1258 727.422 -88.1258 762.612 -52.5495L879.145 65.4006H878.763L1032.27 220.585C1087.86 276.818 1177.87 276.818 1233.46 220.585L1387.23 65.4006L1393.6 58.7699L1548.77 -94.7566C1604.99 -150.352 1604.99 -240.377 1548.77 -295.973L1393.6 -449.499V-449.117L1276.05 -565.409C1240.48 -600.603 1240.48 -657.729 1276.05 -692.923L1393.98 -809.598V-809.853L1548.89 -962.997C1605.12 -1018.59 1605.12 -1108.62 1548.89 -1164.21L1393.6 -1317.61L1388.25 -1323.48L1234.74 -1478.66C1179.15 -1534.9 1089.14 -1534.9 1033.55 -1478.66L880.038 -1323.48H880.165Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M880.165 -1323.48L763.504 -1205.53C728.315 -1169.95 671.196 -1169.95 636.006 -1205.53L519.473 -1323.48H519.855L366.347 -1478.66C310.758 -1534.9 220.744 -1534.9 165.155 -1478.66L11.6467 -1323.48L5.27179 -1316.85L-149.894 -1163.32C-206.12 -1107.72 -206.12 -1017.7 -149.894 -962.104L5.27179 -808.578V-808.96L122.825 -692.668C158.397 -657.474 158.397 -600.348 122.825 -565.154L4.88927 -448.479V-448.224L-150.021 -295.08C-206.248 -239.484 -206.248 -149.46 -150.021 -93.8639L5.14428 59.6625L10.4992 65.5281L164.007 220.712C219.596 276.946 309.61 276.946 365.2 220.712L518.453 65.4006L635.114 -52.5495C670.303 -88.1258 727.422 -88.1258 762.612 -52.5495L879.145 65.4006H878.763L1032.27 220.585C1087.86 276.818 1177.87 276.818 1233.46 220.585L1387.23 65.4006L1393.6 58.7699L1548.77 -94.7566C1604.99 -150.352 1604.99 -240.377 1548.77 -295.973L1393.6 -449.499V-449.117L1276.05 -565.409C1240.48 -600.603 1240.48 -657.729 1276.05 -692.923L1393.98 -809.598V-809.853L1548.89 -962.997C1605.12 -1018.59 1605.12 -1108.62 1548.89 -1164.21L1393.6 -1317.61L1388.25 -1323.48L1234.74 -1478.66C1179.15 -1534.9 1089.14 -1534.9 1033.55 -1478.66L880.038 -1323.48H880.165Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M877.87 -1314.3L762.739 -1197.88C728.059 -1162.81 671.705 -1162.81 637.025 -1197.88L522.022 -1314.17H522.404L370.936 -1467.44C316.112 -1522.91 227.246 -1522.91 172.294 -1467.44L20.8257 -1314.17L14.4508 -1307.67L-138.802 -1156.18C-194.264 -1101.35 -194.264 -1012.47 -138.802 -957.514L14.4508 -806.028V-806.41L130.474 -691.648C165.536 -656.964 165.536 -600.603 130.474 -565.92L14.0683 -450.775V-450.647L-138.802 -299.416C-194.264 -244.585 -194.264 -155.708 -138.802 -100.75L14.4508 50.7363L19.8057 56.6019L171.274 209.746C226.098 265.214 314.964 265.214 369.916 209.746L521.257 56.4744L636.388 -59.9455C671.067 -95.0118 727.422 -95.0118 762.101 -59.9455L877.105 56.3469H876.722L1028.19 209.618C1083.01 265.087 1171.88 265.087 1226.83 209.618L1378.3 56.3469L1384.68 49.8437L1537.67 -101.77C1593.14 -156.601 1593.14 -245.478 1537.67 -300.436L1384.42 -451.922V-451.54L1268.4 -566.302C1233.34 -600.986 1233.34 -657.347 1268.4 -692.031L1384.8 -807.175V-807.431L1537.67 -958.534C1593.14 -1013.37 1593.14 -1102.24 1537.67 -1157.2L1384.42 -1308.69L1379.07 -1314.55L1227.6 -1467.82C1172.77 -1523.29 1083.91 -1523.29 1028.96 -1467.82L877.487 -1314.55L877.87 -1314.3Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M877.87 -1314.3L762.739 -1197.88C728.059 -1162.81 671.705 -1162.81 637.025 -1197.88L522.022 -1314.17H522.404L370.936 -1467.44C316.112 -1522.91 227.246 -1522.91 172.294 -1467.44L20.8257 -1314.17L14.4508 -1307.67L-138.802 -1156.18C-194.264 -1101.35 -194.264 -1012.47 -138.802 -957.514L14.4508 -806.028V-806.41L130.474 -691.648C165.536 -656.964 165.536 -600.603 130.474 -565.92L14.0683 -450.775V-450.647L-138.802 -299.416C-194.264 -244.585 -194.264 -155.708 -138.802 -100.75L14.4508 50.7363L19.8057 56.6019L171.274 209.746C226.098 265.214 314.964 265.214 369.916 209.746L521.257 56.4744L636.388 -59.9455C671.067 -95.0118 727.422 -95.0118 762.101 -59.9455L877.105 56.3469H876.722L1028.19 209.618C1083.01 265.087 1171.88 265.087 1226.83 209.618L1378.3 56.3469L1384.68 49.8437L1537.67 -101.77C1593.14 -156.601 1593.14 -245.478 1537.67 -300.436L1384.42 -451.922V-451.54L1268.4 -566.302C1233.34 -600.986 1233.34 -657.347 1268.4 -692.031L1384.8 -807.175V-807.431L1537.67 -958.534C1593.14 -1013.37 1593.14 -1102.24 1537.67 -1157.2L1384.42 -1308.69L1379.07 -1314.55L1227.6 -1467.82C1172.77 -1523.29 1083.91 -1523.29 1028.96 -1467.82L877.487 -1314.55L877.87 -1314.3Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M875.447 -1305.24L761.846 -1190.35C727.549 -1155.67 671.959 -1155.67 637.79 -1190.35L524.316 -1305.12H524.571L375.143 -1456.35C321.084 -1511.05 233.365 -1511.05 179.178 -1456.35L29.7502 -1305.12L23.5027 -1298.61L-127.71 -1149.17C-182.407 -1095.1 -182.407 -1007.37 -127.71 -953.178L23.5027 -803.732V-804.114L137.996 -690.882C172.676 -656.581 172.676 -600.985 137.996 -566.811L23.1203 -453.197V-452.942L-127.71 -303.751C-182.407 -249.685 -182.407 -161.956 -127.71 -107.762L23.5027 41.556L28.7302 47.2942L178.158 198.525C232.218 253.229 319.936 253.229 374.123 198.525L523.424 47.2942L637.025 -67.5956C671.322 -102.279 726.911 -102.279 761.081 -67.5956L874.554 47.1666H874.299L1023.73 198.398C1077.79 253.101 1165.51 253.101 1219.69 198.398L1369.12 47.1666L1375.37 40.6634L1526.58 -108.783C1581.28 -162.848 1581.28 -250.578 1526.58 -304.771L1375.37 -454.217V-453.834L1260.87 -567.067C1226.19 -601.368 1226.19 -656.964 1260.87 -691.137L1375.75 -804.752V-805.007L1526.58 -954.198C1581.28 -1008.26 1581.28 -1095.99 1526.58 -1150.19L1375.37 -1299.63L1370.14 -1305.37L1220.71 -1456.6C1166.65 -1511.31 1078.93 -1511.31 1024.75 -1456.6L875.319 -1305.37L875.447 -1305.24Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M875.447 -1305.24L761.846 -1190.35C727.549 -1155.67 671.959 -1155.67 637.79 -1190.35L524.316 -1305.12H524.571L375.143 -1456.35C321.084 -1511.05 233.365 -1511.05 179.178 -1456.35L29.7502 -1305.12L23.5027 -1298.61L-127.71 -1149.17C-182.407 -1095.1 -182.407 -1007.37 -127.71 -953.178L23.5027 -803.732V-804.114L137.996 -690.882C172.676 -656.581 172.676 -600.985 137.996 -566.811L23.1203 -453.197V-452.942L-127.71 -303.751C-182.407 -249.685 -182.407 -161.956 -127.71 -107.762L23.5027 41.556L28.7302 47.2942L178.158 198.525C232.218 253.229 319.936 253.229 374.123 198.525L523.424 47.2942L637.025 -67.5956C671.322 -102.279 726.911 -102.279 761.081 -67.5956L874.554 47.1666H874.299L1023.73 198.398C1077.79 253.101 1165.51 253.101 1219.69 198.398L1369.12 47.1666L1375.37 40.6634L1526.58 -108.783C1581.28 -162.848 1581.28 -250.578 1526.58 -304.771L1375.37 -454.217V-453.834L1260.87 -567.067C1226.19 -601.368 1226.19 -656.964 1260.87 -691.137L1375.75 -804.752V-805.007L1526.58 -954.198C1581.28 -1008.26 1581.28 -1095.99 1526.58 -1150.19L1375.37 -1299.63L1370.14 -1305.37L1220.71 -1456.6C1166.65 -1511.31 1078.93 -1511.31 1024.75 -1456.6L875.319 -1305.37L875.447 -1305.24Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M873.024 -1296.06L760.953 -1182.83C727.166 -1148.66 672.342 -1148.66 638.555 -1182.83L526.611 -1296.06H526.866L379.351 -1445.25C325.929 -1499.19 239.485 -1499.19 186.063 -1445.25L38.5478 -1296.06L32.4278 -1289.69L-116.745 -1142.15C-170.677 -1088.73 -170.677 -1002.27 -116.745 -948.843L32.4278 -801.31V-801.692L145.391 -689.99C179.561 -656.199 179.561 -601.368 145.391 -567.577L32.1729 -455.493V-455.238L-116.618 -308.215C-170.55 -254.786 -170.55 -168.332 -116.618 -114.904L32.5553 32.6294L37.6553 38.24L185.171 187.431C238.593 241.369 325.037 241.369 378.458 187.431L525.719 38.24L637.79 -74.9922C671.577 -109.166 726.401 -109.166 760.188 -74.9922L872.132 38.24H871.877L1019.39 187.431C1072.81 241.369 1159.26 241.369 1212.68 187.431L1360.2 38.24L1366.32 31.8643L1515.49 -115.669C1569.42 -169.097 1569.42 -255.552 1515.49 -308.98L1366.32 -456.513V-456.13L1253.35 -567.832C1219.18 -601.624 1219.18 -656.454 1253.35 -690.246L1366.57 -802.33V-802.585L1515.36 -949.736C1569.29 -1003.16 1569.29 -1089.62 1515.36 -1143.05L1366.19 -1290.58L1361.09 -1296.19L1213.57 -1445.38C1160.15 -1499.32 1073.71 -1499.32 1020.29 -1445.38L872.769 -1296.19L873.024 -1296.06Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M873.024 -1296.06L760.953 -1182.83C727.166 -1148.66 672.342 -1148.66 638.555 -1182.83L526.611 -1296.06H526.866L379.351 -1445.25C325.929 -1499.19 239.485 -1499.19 186.063 -1445.25L38.5478 -1296.06L32.4278 -1289.69L-116.745 -1142.15C-170.677 -1088.73 -170.677 -1002.27 -116.745 -948.843L32.4278 -801.31V-801.692L145.391 -689.99C179.561 -656.199 179.561 -601.368 145.391 -567.577L32.1729 -455.493V-455.238L-116.618 -308.215C-170.55 -254.786 -170.55 -168.332 -116.618 -114.904L32.5553 32.6294L37.6553 38.24L185.171 187.431C238.593 241.369 325.037 241.369 378.458 187.431L525.719 38.24L637.79 -74.9922C671.577 -109.166 726.401 -109.166 760.188 -74.9922L872.132 38.24H871.877L1019.39 187.431C1072.81 241.369 1159.26 241.369 1212.68 187.431L1360.2 38.24L1366.32 31.8643L1515.49 -115.669C1569.42 -169.097 1569.42 -255.552 1515.49 -308.98L1366.32 -456.513V-456.13L1253.35 -567.832C1219.18 -601.624 1219.18 -656.454 1253.35 -690.246L1366.57 -802.33V-802.585L1515.36 -949.736C1569.29 -1003.16 1569.29 -1089.62 1515.36 -1143.05L1366.19 -1290.58L1361.09 -1296.19L1213.57 -1445.38C1160.15 -1499.32 1073.71 -1499.32 1020.29 -1445.38L872.769 -1296.19L873.024 -1296.06Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M870.73 -1287.01L760.189 -1175.31C726.785 -1141.64 672.726 -1141.64 639.448 -1175.31L529.035 -1287.01H529.29L383.814 -1434.03C331.157 -1487.33 245.734 -1487.33 193.204 -1434.03L47.7287 -1286.88L41.6087 -1280.63L-105.524 -1135.14C-158.819 -1082.48 -158.819 -997.169 -105.524 -944.506L41.6087 -799.013V-799.396L153.042 -689.224C186.702 -655.815 186.702 -601.749 153.042 -568.468L41.3537 -457.914V-457.659L-105.397 -312.676C-158.691 -260.013 -158.691 -174.706 -105.397 -122.043L41.7362 23.4502L46.8362 29.0608L192.312 176.212C244.969 229.512 330.265 229.512 382.922 176.212L528.142 29.0608L638.683 -82.6412C672.088 -116.305 726.147 -116.305 759.424 -82.6412L869.838 29.0608H869.583L1014.93 176.084C1067.59 229.385 1153.01 229.385 1205.54 176.084L1351.02 28.9333L1357.14 22.6851L1504.27 -122.808C1557.56 -175.471 1557.56 -260.905 1504.27 -313.441L1357.14 -458.934V-458.551L1245.7 -568.723C1212.04 -602.132 1212.04 -656.198 1245.7 -689.479L1357.39 -800.033V-800.288L1504.14 -945.399C1557.44 -998.062 1557.44 -1083.37 1504.14 -1136.03L1357.01 -1281.52L1351.91 -1287.14L1206.43 -1434.29C1153.78 -1487.59 1068.35 -1487.59 1015.82 -1434.29L870.475 -1287.14L870.73 -1287.01Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M870.73 -1287.01L760.189 -1175.31C726.785 -1141.64 672.726 -1141.64 639.448 -1175.31L529.035 -1287.01H529.29L383.814 -1434.03C331.157 -1487.33 245.734 -1487.33 193.204 -1434.03L47.7287 -1286.88L41.6087 -1280.63L-105.524 -1135.14C-158.819 -1082.48 -158.819 -997.169 -105.524 -944.506L41.6087 -799.013V-799.396L153.042 -689.224C186.702 -655.815 186.702 -601.749 153.042 -568.468L41.3537 -457.914V-457.659L-105.397 -312.676C-158.691 -260.013 -158.691 -174.706 -105.397 -122.043L41.7362 23.4502L46.8362 29.0608L192.312 176.212C244.969 229.512 330.265 229.512 382.922 176.212L528.142 29.0608L638.683 -82.6412C672.088 -116.305 726.147 -116.305 759.424 -82.6412L869.838 29.0608H869.583L1014.93 176.084C1067.59 229.385 1153.01 229.385 1205.54 176.084L1351.02 28.9333L1357.14 22.6851L1504.27 -122.808C1557.56 -175.471 1557.56 -260.905 1504.27 -313.441L1357.14 -458.934V-458.551L1245.7 -568.723C1212.04 -602.132 1212.04 -656.198 1245.7 -689.479L1357.39 -800.033V-800.288L1504.14 -945.399C1557.44 -998.062 1557.44 -1083.37 1504.14 -1136.03L1357.01 -1281.52L1351.91 -1287.14L1206.43 -1434.29C1153.78 -1487.59 1068.35 -1487.59 1015.82 -1434.29L870.475 -1287.14L870.73 -1287.01Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M868.308 -1277.83L759.297 -1167.66C726.402 -1134.37 673.108 -1134.37 640.213 -1167.66L531.329 -1277.83H531.584L388.149 -1422.94C336.257 -1475.47 251.981 -1475.47 200.089 -1422.94L56.6531 -1277.83L50.6607 -1271.58L-94.3049 -1128.25C-146.834 -1076.36 -146.834 -992.069 -94.3049 -940.171L50.7882 -796.718V-797.101L160.692 -688.459C193.969 -655.56 193.969 -602.26 160.692 -569.361L50.5332 -460.337V-460.082L-94.3049 -317.012C-146.834 -265.114 -146.834 -180.827 -94.3049 -128.929L50.7882 14.5236L55.7606 20.0067L199.196 165.117C251.088 217.653 335.364 217.653 387.256 165.117L530.437 19.8792L639.448 -90.2926C672.343 -123.574 725.637 -123.574 758.532 -90.2926L867.415 19.8792H867.16L1010.6 164.99C1062.49 217.525 1146.76 217.525 1198.66 164.99L1342.09 19.8792L1348.08 13.631L1493.05 -129.822C1545.58 -181.72 1545.58 -266.006 1493.05 -317.904L1347.96 -461.357V-460.975L1238.05 -569.616C1204.78 -602.515 1204.78 -655.815 1238.05 -688.714L1348.21 -797.738V-797.993L1492.92 -941.063C1545.45 -992.961 1545.45 -1077.25 1492.92 -1129.15L1347.83 -1272.6L1342.86 -1278.08L1199.42 -1423.19C1147.53 -1475.73 1063.25 -1475.73 1011.36 -1423.19L867.925 -1278.08L868.308 -1277.83Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M868.308 -1277.83L759.297 -1167.66C726.402 -1134.37 673.108 -1134.37 640.213 -1167.66L531.329 -1277.83H531.584L388.149 -1422.94C336.257 -1475.47 251.981 -1475.47 200.089 -1422.94L56.6531 -1277.83L50.6607 -1271.58L-94.3049 -1128.25C-146.834 -1076.36 -146.834 -992.069 -94.3049 -940.171L50.7882 -796.718V-797.101L160.692 -688.459C193.969 -655.56 193.969 -602.26 160.692 -569.361L50.5332 -460.337V-460.082L-94.3049 -317.012C-146.834 -265.114 -146.834 -180.827 -94.3049 -128.929L50.7882 14.5236L55.7606 20.0067L199.196 165.117C251.088 217.653 335.364 217.653 387.256 165.117L530.437 19.8792L639.448 -90.2926C672.343 -123.574 725.637 -123.574 758.532 -90.2926L867.415 19.8792H867.16L1010.6 164.99C1062.49 217.525 1146.76 217.525 1198.66 164.99L1342.09 19.8792L1348.08 13.631L1493.05 -129.822C1545.58 -181.72 1545.58 -266.006 1493.05 -317.904L1347.96 -461.357V-460.975L1238.05 -569.616C1204.78 -602.515 1204.78 -655.815 1238.05 -688.714L1348.21 -797.738V-797.993L1492.92 -941.063C1545.45 -992.961 1545.45 -1077.25 1492.92 -1129.15L1347.83 -1272.6L1342.86 -1278.08L1199.42 -1423.19C1147.53 -1475.73 1063.25 -1475.73 1011.36 -1423.19L867.925 -1278.08L868.308 -1277.83Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M866.012 -1268.77L758.531 -1160.13C726.147 -1127.36 673.49 -1127.36 641.105 -1160.13L533.751 -1268.77H534.006L392.611 -1411.84C341.357 -1463.62 258.355 -1463.62 207.228 -1411.84L65.8326 -1268.77L59.9677 -1262.65L-83.0855 -1121.24C-134.85 -1069.98 -134.85 -986.969 -83.0855 -935.836L59.9677 -794.424V-794.806L168.214 -687.695C200.981 -655.306 200.981 -602.643 168.214 -570.255L59.5852 -462.761V-462.506L-83.0855 -321.348C-134.85 -270.088 -134.85 -187.076 -83.0855 -135.943L59.9677 5.46947L64.9402 10.9525L206.336 154.023C257.59 205.793 340.592 205.793 391.718 154.023L532.987 10.9525L640.468 -97.6891C672.852 -130.46 725.509 -130.46 757.894 -97.6891L865.247 10.9525H864.992L1006.26 153.768C1057.51 205.538 1140.52 205.538 1191.64 153.768L1333.04 10.6975L1338.9 4.57686L1481.96 -136.836C1533.72 -188.096 1533.72 -271.108 1481.96 -322.241L1338.9 -463.653V-463.271L1230.66 -570.382C1197.89 -602.771 1197.89 -655.434 1230.66 -687.822L1339.29 -795.316V-795.571L1481.96 -936.729C1533.72 -987.989 1533.72 -1071 1481.96 -1122.13L1338.9 -1263.55L1333.93 -1269.03L1192.54 -1412.1C1141.28 -1463.87 1058.28 -1463.87 1007.15 -1412.1L865.757 -1268.9L866.012 -1268.77Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M866.012 -1268.77L758.531 -1160.13C726.147 -1127.36 673.49 -1127.36 641.105 -1160.13L533.751 -1268.77H534.006L392.611 -1411.84C341.357 -1463.62 258.355 -1463.62 207.228 -1411.84L65.8326 -1268.77L59.9677 -1262.65L-83.0855 -1121.24C-134.85 -1069.98 -134.85 -986.969 -83.0855 -935.836L59.9677 -794.424V-794.806L168.214 -687.695C200.981 -655.306 200.981 -602.643 168.214 -570.255L59.5852 -462.761V-462.506L-83.0855 -321.348C-134.85 -270.088 -134.85 -187.076 -83.0855 -135.943L59.9677 5.46947L64.9402 10.9525L206.336 154.023C257.59 205.793 340.592 205.793 391.718 154.023L532.987 10.9525L640.468 -97.6891C672.852 -130.46 725.509 -130.46 757.894 -97.6891L865.247 10.9525H864.992L1006.26 153.768C1057.51 205.538 1140.52 205.538 1191.64 153.768L1333.04 10.6975L1338.9 4.57686L1481.96 -136.836C1533.72 -188.096 1533.72 -271.108 1481.96 -322.241L1338.9 -463.653V-463.271L1230.66 -570.382C1197.89 -602.771 1197.89 -655.434 1230.66 -687.822L1339.29 -795.316V-795.571L1481.96 -936.729C1533.72 -987.989 1533.72 -1071 1481.96 -1122.13L1338.9 -1263.55L1333.93 -1269.03L1192.54 -1412.1C1141.28 -1463.87 1058.28 -1463.87 1007.15 -1412.1L865.757 -1268.9L866.012 -1268.77Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M863.591 -1259.59L757.639 -1152.48C725.637 -1120.22 673.873 -1120.22 641.871 -1152.48L536.047 -1259.59H536.302L396.946 -1400.62C346.457 -1451.63 264.603 -1451.63 214.241 -1400.62L74.8857 -1259.59L69.0207 -1253.6L-71.9924 -1114.23C-122.992 -1063.73 -122.992 -981.869 -71.9924 -931.501L69.0207 -792.129V-792.511L175.737 -686.93C207.994 -654.924 207.994 -603.154 175.737 -571.148L68.6382 -465.184V-464.929L-71.9924 -325.811C-122.992 -275.316 -122.992 -193.452 -71.9924 -143.084L69.0207 -3.71202L73.8657 1.64357L213.221 142.674C263.711 193.679 345.565 193.679 395.927 142.674L535.155 1.64357L641.106 -105.468C673.108 -137.729 724.872 -137.729 756.874 -105.468L862.698 1.64357H862.443L1001.8 142.674C1052.29 193.679 1134.14 193.679 1184.5 142.674L1323.86 1.64357L1329.72 -4.34959L1470.74 -143.722C1521.74 -194.217 1521.74 -276.081 1470.74 -326.449L1329.85 -465.949V-465.566L1223.14 -571.148C1190.88 -603.154 1190.88 -654.924 1223.14 -686.93L1330.23 -792.894V-793.149L1470.87 -932.266C1521.86 -982.761 1521.86 -1064.63 1470.87 -1114.99L1329.85 -1254.37L1325.01 -1259.72L1185.65 -1400.75C1135.16 -1451.76 1053.31 -1451.76 1002.95 -1400.75L863.591 -1259.72V-1259.59Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M863.591 -1259.59L757.639 -1152.48C725.637 -1120.22 673.873 -1120.22 641.871 -1152.48L536.047 -1259.59H536.302L396.946 -1400.62C346.457 -1451.63 264.603 -1451.63 214.241 -1400.62L74.8857 -1259.59L69.0207 -1253.6L-71.9924 -1114.23C-122.992 -1063.73 -122.992 -981.869 -71.9924 -931.501L69.0207 -792.129V-792.511L175.737 -686.93C207.994 -654.924 207.994 -603.154 175.737 -571.148L68.6382 -465.184V-464.929L-71.9924 -325.811C-122.992 -275.316 -122.992 -193.452 -71.9924 -143.084L69.0207 -3.71202L73.8657 1.64357L213.221 142.674C263.711 193.679 345.565 193.679 395.927 142.674L535.155 1.64357L641.106 -105.468C673.108 -137.729 724.872 -137.729 756.874 -105.468L862.698 1.64357H862.443L1001.8 142.674C1052.29 193.679 1134.14 193.679 1184.5 142.674L1323.86 1.64357L1329.72 -4.34959L1470.74 -143.722C1521.74 -194.217 1521.74 -276.081 1470.74 -326.449L1329.85 -465.949V-465.566L1223.14 -571.148C1190.88 -603.154 1190.88 -654.924 1223.14 -686.93L1330.23 -792.894V-793.149L1470.87 -932.266C1521.86 -982.761 1521.86 -1064.63 1470.87 -1114.99L1329.85 -1254.37L1325.01 -1259.72L1185.65 -1400.75C1135.16 -1451.76 1053.31 -1451.76 1002.95 -1400.75L863.591 -1259.72V-1259.59Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M861.167 -1250.54L756.746 -1144.96C725.254 -1113.08 674.127 -1113.08 642.635 -1144.96L538.342 -1250.41H538.597L401.153 -1389.4C351.429 -1439.64 270.722 -1439.64 220.998 -1389.4L83.5549 -1250.41L77.8174 -1244.42L-61.1558 -1106.96C-111.39 -1057.23 -111.39 -976.513 -61.1558 -926.782L77.8174 -789.323V-789.705L183.004 -685.654C214.878 -654.158 214.878 -603.025 183.004 -571.529L77.8174 -467.478V-467.223L-60.9008 -330.146C-111.135 -280.416 -111.135 -199.7 -60.9008 -149.969L78.0725 -12.5098L82.9174 -7.2817L220.361 131.708C270.085 181.949 350.791 181.949 400.516 131.708L537.704 -7.2817L642.125 -112.863C673.617 -144.741 724.744 -144.741 756.236 -112.863L860.53 -7.40926H860.275L997.718 131.581C1047.44 181.821 1128.15 181.821 1177.87 131.581L1315.32 -7.40926L1321.05 -13.4023L1460.03 -150.862C1510.26 -200.592 1510.26 -281.308 1460.03 -331.039L1321.05 -468.498V-468.116L1215.87 -572.167C1183.99 -603.663 1183.99 -654.796 1215.87 -686.292L1321.44 -790.725V-790.98L1460.03 -928.058C1510.26 -977.788 1510.26 -1058.5 1460.03 -1108.23L1321.05 -1245.69L1316.21 -1250.92L1178.77 -1389.91C1129.04 -1440.15 1048.33 -1440.15 998.611 -1389.91L861.167 -1250.92V-1250.54Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M861.167 -1250.54L756.746 -1144.96C725.254 -1113.08 674.127 -1113.08 642.635 -1144.96L538.342 -1250.41H538.597L401.153 -1389.4C351.429 -1439.64 270.722 -1439.64 220.998 -1389.4L83.5549 -1250.41L77.8174 -1244.42L-61.1558 -1106.96C-111.39 -1057.23 -111.39 -976.513 -61.1558 -926.782L77.8174 -789.323V-789.705L183.004 -685.654C214.878 -654.158 214.878 -603.025 183.004 -571.529L77.8174 -467.478V-467.223L-60.9008 -330.146C-111.135 -280.416 -111.135 -199.7 -60.9008 -149.969L78.0725 -12.5098L82.9174 -7.2817L220.361 131.708C270.085 181.949 350.791 181.949 400.516 131.708L537.704 -7.2817L642.125 -112.863C673.617 -144.741 724.744 -144.741 756.236 -112.863L860.53 -7.40926H860.275L997.718 131.581C1047.44 181.821 1128.15 181.821 1177.87 131.581L1315.32 -7.40926L1321.05 -13.4023L1460.03 -150.862C1510.26 -200.592 1510.26 -281.308 1460.03 -331.039L1321.05 -468.498V-468.116L1215.87 -572.167C1183.99 -603.663 1183.99 -654.796 1215.87 -686.292L1321.44 -790.725V-790.98L1460.03 -928.058C1510.26 -977.788 1510.26 -1058.5 1460.03 -1108.23L1321.05 -1245.69L1316.21 -1250.92L1178.77 -1389.91C1129.04 -1440.15 1048.33 -1440.15 998.611 -1389.91L861.167 -1250.92V-1250.54Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M858.872 -1241.49L755.981 -1137.44C724.999 -1106.07 674.637 -1106.07 643.527 -1137.44L540.764 -1241.36H541.019L405.616 -1378.31C356.656 -1427.91 277.097 -1427.91 228.138 -1378.31L92.7346 -1241.36L87.1247 -1235.49L-49.681 -1100.2C-99.2779 -1051.24 -99.2779 -971.668 -49.681 -922.703L87.2522 -787.283V-787.666L190.908 -685.145C222.273 -654.159 222.273 -603.791 190.908 -572.678L86.8697 -469.774V-469.519L-49.681 -334.482C-99.2779 -285.517 -99.2779 -205.949 -49.681 -156.983L87.2522 -21.5639L91.9696 -16.3359L227.373 120.614C276.332 170.217 355.891 170.217 404.851 120.614L539.999 -16.3359L642.89 -120.387C673.872 -151.755 724.234 -151.755 755.344 -120.387L858.107 -16.4633H857.852L993.255 120.486C1042.21 170.089 1121.77 170.089 1170.73 120.486L1306.14 -16.4633L1311.75 -22.3289L1448.68 -157.748C1498.28 -206.714 1498.28 -286.282 1448.68 -335.247L1311.75 -470.667V-470.284L1208.09 -572.805C1176.73 -603.791 1176.73 -654.159 1208.09 -685.272L1312.13 -788.176V-788.431L1448.68 -923.468C1498.28 -972.433 1498.28 -1052 1448.68 -1100.97L1311.75 -1236.39L1307.03 -1241.61L1171.63 -1378.56C1122.67 -1428.17 1043.11 -1428.17 994.148 -1378.56L858.745 -1241.61L858.872 -1241.49Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M858.872 -1241.49L755.981 -1137.44C724.999 -1106.07 674.637 -1106.07 643.527 -1137.44L540.764 -1241.36H541.019L405.616 -1378.31C356.656 -1427.91 277.097 -1427.91 228.138 -1378.31L92.7346 -1241.36L87.1247 -1235.49L-49.681 -1100.2C-99.2779 -1051.24 -99.2779 -971.668 -49.681 -922.703L87.2522 -787.283V-787.666L190.908 -685.145C222.273 -654.159 222.273 -603.791 190.908 -572.678L86.8697 -469.774V-469.519L-49.681 -334.482C-99.2779 -285.517 -99.2779 -205.949 -49.681 -156.983L87.2522 -21.5639L91.9696 -16.3359L227.373 120.614C276.332 170.217 355.891 170.217 404.851 120.614L539.999 -16.3359L642.89 -120.387C673.872 -151.755 724.234 -151.755 755.344 -120.387L858.107 -16.4633H857.852L993.255 120.486C1042.21 170.089 1121.77 170.089 1170.73 120.486L1306.14 -16.4633L1311.75 -22.3289L1448.68 -157.748C1498.28 -206.714 1498.28 -286.282 1448.68 -335.247L1311.75 -470.667V-470.284L1208.09 -572.805C1176.73 -603.791 1176.73 -654.159 1208.09 -685.272L1312.13 -788.176V-788.431L1448.68 -923.468C1498.28 -972.433 1498.28 -1052 1448.68 -1100.97L1311.75 -1236.39L1307.03 -1241.61L1171.63 -1378.56C1122.67 -1428.17 1043.11 -1428.17 994.148 -1378.56L858.745 -1241.61L858.872 -1241.49Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M856.45 -1232.31L755.089 -1129.78C724.489 -1098.93 674.893 -1098.93 644.421 -1129.78L543.187 -1232.31H543.442L410.079 -1367.22C361.757 -1416.05 283.473 -1416.05 235.278 -1367.22L101.915 -1232.31L96.3052 -1226.57L-38.588 -1093.19C-87.4199 -1044.86 -87.4199 -966.567 -38.588 -918.367L96.3052 -784.988V-785.37L198.431 -684.38C229.413 -653.776 229.413 -604.173 198.431 -573.698L95.9227 -472.324V-472.069L-38.588 -338.945C-87.4199 -290.617 -87.4199 -212.324 -38.588 -164.124L96.3052 -30.7445L101.023 -25.644L234.386 109.266C282.708 158.103 360.992 158.103 409.186 109.266L542.422 -25.644L643.783 -128.165C674.383 -159.023 723.979 -159.023 754.451 -128.165L855.685 -25.7715H855.43L988.793 109.138C1037.12 157.976 1115.4 157.976 1163.59 109.138L1296.96 -25.7715L1302.57 -31.5096L1437.46 -164.889C1486.29 -213.217 1486.29 -291.51 1437.46 -339.71L1302.57 -473.089V-472.707L1200.44 -573.698C1169.46 -604.301 1169.46 -653.904 1200.44 -684.38L1302.95 -785.753V-786.008L1437.46 -919.132C1486.29 -967.46 1486.29 -1045.75 1437.46 -1093.95L1302.57 -1227.33L1297.85 -1232.43L1164.49 -1367.34C1116.16 -1416.18 1037.88 -1416.18 989.686 -1367.34L856.323 -1232.43L856.45 -1232.31Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M856.45 -1232.31L755.089 -1129.78C724.489 -1098.93 674.893 -1098.93 644.421 -1129.78L543.187 -1232.31H543.442L410.079 -1367.22C361.757 -1416.05 283.473 -1416.05 235.278 -1367.22L101.915 -1232.31L96.3052 -1226.57L-38.588 -1093.19C-87.4199 -1044.86 -87.4199 -966.567 -38.588 -918.367L96.3052 -784.988V-785.37L198.431 -684.38C229.413 -653.776 229.413 -604.173 198.431 -573.698L95.9227 -472.324V-472.069L-38.588 -338.945C-87.4199 -290.617 -87.4199 -212.324 -38.588 -164.124L96.3052 -30.7445L101.023 -25.644L234.386 109.266C282.708 158.103 360.992 158.103 409.186 109.266L542.422 -25.644L643.783 -128.165C674.383 -159.023 723.979 -159.023 754.451 -128.165L855.685 -25.7715H855.43L988.793 109.138C1037.12 157.976 1115.4 157.976 1163.59 109.138L1296.96 -25.7715L1302.57 -31.5096L1437.46 -164.889C1486.29 -213.217 1486.29 -291.51 1437.46 -339.71L1302.57 -473.089V-472.707L1200.44 -573.698C1169.46 -604.301 1169.46 -653.904 1200.44 -684.38L1302.95 -785.753V-786.008L1437.46 -919.132C1486.29 -967.46 1486.29 -1045.75 1437.46 -1093.95L1302.57 -1227.33L1297.85 -1232.43L1164.49 -1367.34C1116.16 -1416.18 1037.88 -1416.18 989.686 -1367.34L856.323 -1232.43L856.45 -1232.31Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M854.155 -1223.25L754.324 -1122.39C724.234 -1091.91 675.402 -1091.91 645.313 -1122.39L545.609 -1223.25H545.864L414.413 -1355.99C366.856 -1404.07 289.72 -1404.07 242.163 -1355.99L110.84 -1223.12L105.357 -1217.51L-27.4961 -1086.17C-75.563 -1038.61 -75.563 -961.466 -27.4961 -913.904L105.357 -782.565V-782.947L205.953 -683.486C236.425 -653.393 236.425 -604.556 205.953 -574.462L105.102 -474.619V-474.364L-27.3686 -343.28C-75.4355 -295.718 -75.4355 -218.572 -27.3686 -171.009L105.485 -39.6702L110.075 -34.6971L241.398 98.1721C288.955 146.245 366.091 146.245 413.648 98.1721L544.844 -34.6971L644.675 -135.56C674.765 -166.036 723.597 -166.036 753.686 -135.56L853.39 -34.6971H853.135L984.458 98.1721C1032.02 146.245 1109.15 146.245 1156.71 98.1721L1288.03 -34.6971L1293.51 -40.3077L1426.37 -171.647C1474.43 -219.209 1474.43 -296.355 1426.37 -343.918L1293.51 -475.257V-474.874L1192.92 -574.335C1162.45 -604.428 1162.45 -653.266 1192.92 -683.359L1293.77 -783.202V-783.457L1426.24 -914.541C1474.31 -962.104 1474.31 -1039.25 1426.24 -1086.81L1293.39 -1218.15L1288.8 -1223.12L1157.47 -1355.99C1109.92 -1404.07 1032.78 -1404.07 985.223 -1355.99L853.9 -1223.12L854.155 -1223.25Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M854.155 -1223.25L754.324 -1122.39C724.234 -1091.91 675.402 -1091.91 645.313 -1122.39L545.609 -1223.25H545.864L414.413 -1355.99C366.856 -1404.07 289.72 -1404.07 242.163 -1355.99L110.84 -1223.12L105.357 -1217.51L-27.4961 -1086.17C-75.563 -1038.61 -75.563 -961.466 -27.4961 -913.904L105.357 -782.565V-782.947L205.953 -683.486C236.425 -653.393 236.425 -604.556 205.953 -574.462L105.102 -474.619V-474.364L-27.3686 -343.28C-75.4355 -295.718 -75.4355 -218.572 -27.3686 -171.009L105.485 -39.6702L110.075 -34.6971L241.398 98.1721C288.955 146.245 366.091 146.245 413.648 98.1721L544.844 -34.6971L644.675 -135.56C674.765 -166.036 723.597 -166.036 753.686 -135.56L853.39 -34.6971H853.135L984.458 98.1721C1032.02 146.245 1109.15 146.245 1156.71 98.1721L1288.03 -34.6971L1293.51 -40.3077L1426.37 -171.647C1474.43 -219.209 1474.43 -296.355 1426.37 -343.918L1293.51 -475.257V-474.874L1192.92 -574.335C1162.45 -604.428 1162.45 -653.266 1192.92 -683.359L1293.77 -783.202V-783.457L1426.24 -914.541C1474.31 -962.104 1474.31 -1039.25 1426.24 -1086.81L1293.39 -1218.15L1288.8 -1223.12L1157.47 -1355.99C1109.92 -1404.07 1032.78 -1404.07 985.223 -1355.99L853.9 -1223.12L854.155 -1223.25Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M851.733 -1214.07L753.432 -1114.74C723.725 -1084.77 675.658 -1084.77 646.078 -1114.74L547.905 -1214.07H548.16L418.876 -1344.9C372.084 -1392.21 296.095 -1392.21 249.303 -1344.9L119.893 -1214.07L114.538 -1208.46L-16.2757 -1079.16C-63.5775 -1032.36 -63.5775 -956.366 -16.2757 -909.568L114.538 -780.269V-780.652L213.604 -682.721C243.566 -653.011 243.566 -604.938 213.604 -575.355L114.283 -477.042V-476.787L-16.2757 -347.615C-63.5775 -300.818 -63.5775 -224.82 -16.2757 -178.022L114.538 -48.7234L119.128 -43.7504L248.411 87.0787C295.203 134.386 371.192 134.386 417.984 87.0787L547.14 -43.8779L645.441 -143.211C675.148 -173.177 723.215 -173.177 752.795 -143.211L850.968 -43.8779H850.713L979.997 86.9511C1026.79 134.259 1102.78 134.259 1149.57 86.9511L1278.85 -43.8779L1284.21 -49.4885L1415.02 -178.787C1462.32 -225.585 1462.32 -301.583 1415.02 -348.38L1284.21 -477.679V-477.424L1185.14 -575.355C1155.18 -605.065 1155.18 -653.138 1185.14 -682.721L1284.46 -781.034V-781.289L1414.89 -910.333C1462.2 -957.131 1462.2 -1033.13 1414.89 -1079.93L1284.08 -1209.23L1279.49 -1214.2L1150.21 -1345.03C1103.41 -1392.33 1027.43 -1392.33 980.634 -1345.03L851.351 -1214.2L851.733 -1214.07Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M851.733 -1214.07L753.432 -1114.74C723.725 -1084.77 675.658 -1084.77 646.078 -1114.74L547.905 -1214.07H548.16L418.876 -1344.9C372.084 -1392.21 296.095 -1392.21 249.303 -1344.9L119.893 -1214.07L114.538 -1208.46L-16.2757 -1079.16C-63.5775 -1032.36 -63.5775 -956.366 -16.2757 -909.568L114.538 -780.269V-780.652L213.604 -682.721C243.566 -653.011 243.566 -604.938 213.604 -575.355L114.283 -477.042V-476.787L-16.2757 -347.615C-63.5775 -300.818 -63.5775 -224.82 -16.2757 -178.022L114.538 -48.7234L119.128 -43.7504L248.411 87.0787C295.203 134.386 371.192 134.386 417.984 87.0787L547.14 -43.8779L645.441 -143.211C675.148 -173.177 723.215 -173.177 752.795 -143.211L850.968 -43.8779H850.713L979.997 86.9511C1026.79 134.259 1102.78 134.259 1149.57 86.9511L1278.85 -43.8779L1284.21 -49.4885L1415.02 -178.787C1462.32 -225.585 1462.32 -301.583 1415.02 -348.38L1284.21 -477.679V-477.424L1185.14 -575.355C1155.18 -605.065 1155.18 -653.138 1185.14 -682.721L1284.46 -781.034V-781.289L1414.89 -910.333C1462.2 -957.131 1462.2 -1033.13 1414.89 -1079.93L1284.08 -1209.23L1279.49 -1214.2L1150.21 -1345.03C1103.41 -1392.33 1027.43 -1392.33 980.634 -1345.03L851.351 -1214.2L851.733 -1214.07Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M849.31 -1205.02L752.539 -1107.21C723.342 -1077.63 676.04 -1077.63 646.843 -1107.21L550.199 -1205.02H550.454L423.083 -1333.81C376.929 -1380.48 302.215 -1380.48 256.188 -1333.81L128.817 -1205.02L123.462 -1199.53L-5.31116 -1072.15C-51.9755 -1025.99 -51.9755 -951.265 -5.31116 -905.233L123.462 -777.847V-778.102L220.998 -681.702C250.578 -652.501 250.578 -605.193 220.998 -575.993L123.207 -479.21V-478.955L-5.18365 -351.951C-51.848 -305.791 -51.848 -231.068 -5.18365 -185.036L123.59 -57.6499L128.052 -52.8044L255.423 75.9844C301.577 122.654 376.291 122.654 422.318 75.9844L549.434 -52.8044L646.205 -150.607C675.402 -180.191 722.704 -180.191 751.901 -150.607L848.545 -52.8044H848.29L975.661 75.9844C1021.82 122.654 1096.53 122.654 1142.56 75.9844L1269.93 -52.8044L1275.28 -58.2875L1404.06 -185.674C1450.72 -231.834 1450.72 -306.557 1404.06 -352.589L1275.28 -479.975V-479.72L1177.75 -576.12C1148.17 -605.321 1148.17 -652.629 1177.75 -681.829L1275.54 -778.612V-778.867L1403.93 -905.871C1450.59 -952.031 1450.59 -1026.75 1403.93 -1072.79L1275.15 -1200.17L1270.69 -1205.02L1143.32 -1333.81C1097.17 -1380.48 1022.45 -1380.48 976.426 -1333.81L849.055 -1205.02H849.31Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M849.31 -1205.02L752.539 -1107.21C723.342 -1077.63 676.04 -1077.63 646.843 -1107.21L550.199 -1205.02H550.454L423.083 -1333.81C376.929 -1380.48 302.215 -1380.48 256.188 -1333.81L128.817 -1205.02L123.462 -1199.53L-5.31116 -1072.15C-51.9755 -1025.99 -51.9755 -951.265 -5.31116 -905.233L123.462 -777.847V-778.102L220.998 -681.702C250.578 -652.501 250.578 -605.193 220.998 -575.993L123.207 -479.21V-478.955L-5.18365 -351.951C-51.848 -305.791 -51.848 -231.068 -5.18365 -185.036L123.59 -57.6499L128.052 -52.8044L255.423 75.9844C301.577 122.654 376.291 122.654 422.318 75.9844L549.434 -52.8044L646.205 -150.607C675.402 -180.191 722.704 -180.191 751.901 -150.607L848.545 -52.8044H848.29L975.661 75.9844C1021.82 122.654 1096.53 122.654 1142.56 75.9844L1269.93 -52.8044L1275.28 -58.2875L1404.06 -185.674C1450.72 -231.834 1450.72 -306.557 1404.06 -352.589L1275.28 -479.975V-479.72L1177.75 -576.12C1148.17 -605.321 1148.17 -652.629 1177.75 -681.829L1275.54 -778.612V-778.867L1403.93 -905.871C1450.59 -952.031 1450.59 -1026.75 1403.93 -1072.79L1275.15 -1200.17L1270.69 -1205.02L1143.32 -1333.81C1097.17 -1380.48 1022.45 -1380.48 976.426 -1333.81L849.055 -1205.02H849.31Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M847.016 -1195.84L751.774 -1099.56C723.087 -1070.49 676.423 -1070.49 647.736 -1099.56L552.622 -1195.84H552.877L427.546 -1322.59C382.156 -1368.49 308.59 -1368.49 263.328 -1322.59L137.997 -1195.84L132.77 -1190.48L6.03625 -1065.14C-39.8632 -1019.74 -39.8632 -946.165 6.03625 -900.898L132.77 -775.552V-775.807L228.776 -680.937C257.846 -652.246 257.846 -605.576 228.776 -576.886L132.515 -481.633V-481.506L6.03625 -356.415C-39.8632 -311.02 -39.8632 -237.444 6.03625 -192.177L132.77 -66.8311L137.105 -61.9856L262.435 64.763C307.825 110.668 381.391 110.668 426.653 64.763L551.857 -61.9856L647.098 -158.258C675.785 -187.332 722.45 -187.332 751.137 -158.258L846.25 -61.9856H845.995L971.326 64.763C1016.72 110.668 1090.28 110.668 1135.54 64.763L1260.88 -61.9856L1266.1 -67.3412L1392.84 -192.687C1438.74 -238.082 1438.74 -311.657 1392.84 -356.925L1266.1 -482.526V-482.271L1170.1 -577.141C1141.03 -605.831 1141.03 -652.501 1170.1 -681.192L1266.36 -776.445V-776.572L1392.84 -901.663C1438.74 -947.058 1438.74 -1020.63 1392.84 -1065.9L1266.1 -1191.25L1261.77 -1196.09L1136.44 -1322.84C1091.05 -1368.75 1017.48 -1368.75 972.219 -1322.84L846.888 -1196.09L847.016 -1195.84Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M847.016 -1195.84L751.774 -1099.56C723.087 -1070.49 676.423 -1070.49 647.736 -1099.56L552.622 -1195.84H552.877L427.546 -1322.59C382.156 -1368.49 308.59 -1368.49 263.328 -1322.59L137.997 -1195.84L132.77 -1190.48L6.03625 -1065.14C-39.8632 -1019.74 -39.8632 -946.165 6.03625 -900.898L132.77 -775.552V-775.807L228.776 -680.937C257.846 -652.246 257.846 -605.576 228.776 -576.886L132.515 -481.633V-481.506L6.03625 -356.415C-39.8632 -311.02 -39.8632 -237.444 6.03625 -192.177L132.77 -66.8311L137.105 -61.9856L262.435 64.763C307.825 110.668 381.391 110.668 426.653 64.763L551.857 -61.9856L647.098 -158.258C675.785 -187.332 722.45 -187.332 751.137 -158.258L846.25 -61.9856H845.995L971.326 64.763C1016.72 110.668 1090.28 110.668 1135.54 64.763L1260.88 -61.9856L1266.1 -67.3412L1392.84 -192.687C1438.74 -238.082 1438.74 -311.657 1392.84 -356.925L1266.1 -482.526V-482.271L1170.1 -577.141C1141.03 -605.831 1141.03 -652.501 1170.1 -681.192L1266.36 -776.445V-776.572L1392.84 -901.663C1438.74 -947.058 1438.74 -1020.63 1392.84 -1065.9L1266.1 -1191.25L1261.77 -1196.09L1136.44 -1322.84C1091.05 -1368.75 1017.48 -1368.75 972.219 -1322.84L846.888 -1196.09L847.016 -1195.84Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M844.593 -1186.78L751.009 -1092.04C722.704 -1063.48 676.932 -1063.48 648.628 -1092.04L555.044 -1186.78H555.299L432.008 -1311.49C387.383 -1356.63 314.964 -1356.63 270.34 -1311.49L147.049 -1186.78L141.949 -1181.43L17.2557 -1058.12C-27.8787 -1013.49 -27.8787 -941.065 17.2557 -896.436L141.949 -773.13V-773.385L236.425 -680.045C264.985 -651.737 264.985 -605.959 236.425 -577.651L141.567 -484.056V-483.801L17.1282 -360.751C-28.0062 -316.121 -28.0062 -243.693 17.1282 -199.063L141.822 -75.7577L146.157 -71.0397L269.447 53.6686C314.072 98.8085 386.491 98.8085 431.115 53.6686L554.279 -71.0397L647.99 -165.782C676.295 -194.345 722.067 -194.345 750.371 -165.782L843.955 -71.0397H843.7L966.991 53.6686C1011.62 98.8085 1084.03 98.8085 1128.66 53.6686L1251.95 -71.0397L1257.05 -76.3953L1381.74 -199.701C1426.88 -244.331 1426.88 -316.759 1381.74 -361.388L1257.05 -484.694V-484.439L1162.57 -577.779C1134.01 -606.087 1134.01 -651.864 1162.57 -680.172L1257.3 -773.895V-774.022L1381.74 -897.073C1426.88 -941.703 1426.88 -1014.13 1381.74 -1058.76L1257.05 -1182.07L1252.71 -1186.78L1129.42 -1311.49C1084.8 -1356.63 1012.38 -1356.63 967.756 -1311.49L844.465 -1186.78H844.593Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M844.593 -1186.78L751.009 -1092.04C722.704 -1063.48 676.932 -1063.48 648.628 -1092.04L555.044 -1186.78H555.299L432.008 -1311.49C387.383 -1356.63 314.964 -1356.63 270.34 -1311.49L147.049 -1186.78L141.949 -1181.43L17.2557 -1058.12C-27.8787 -1013.49 -27.8787 -941.065 17.2557 -896.436L141.949 -773.13V-773.385L236.425 -680.045C264.985 -651.737 264.985 -605.959 236.425 -577.651L141.567 -484.056V-483.801L17.1282 -360.751C-28.0062 -316.121 -28.0062 -243.693 17.1282 -199.063L141.822 -75.7577L146.157 -71.0397L269.447 53.6686C314.072 98.8085 386.491 98.8085 431.115 53.6686L554.279 -71.0397L647.99 -165.782C676.295 -194.345 722.067 -194.345 750.371 -165.782L843.955 -71.0397H843.7L966.991 53.6686C1011.62 98.8085 1084.03 98.8085 1128.66 53.6686L1251.95 -71.0397L1257.05 -76.3953L1381.74 -199.701C1426.88 -244.331 1426.88 -316.759 1381.74 -361.388L1257.05 -484.694V-484.439L1162.57 -577.779C1134.01 -606.087 1134.01 -651.864 1162.57 -680.172L1257.3 -773.895V-774.022L1381.74 -897.073C1426.88 -941.703 1426.88 -1014.13 1381.74 -1058.76L1257.05 -1182.07L1252.71 -1186.78L1129.42 -1311.49C1084.8 -1356.63 1012.38 -1356.63 967.756 -1311.49L844.465 -1186.78H844.593Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M842.298 -1177.6L750.116 -1084.39C722.322 -1056.21 677.187 -1056.21 649.393 -1084.39L557.339 -1177.47H557.594L436.343 -1300.14C392.483 -1344.52 321.212 -1344.52 277.352 -1300.14L156.102 -1177.47L151.002 -1172.25L28.3482 -1050.98C-16.0212 -1007.12 -16.0212 -935.836 28.3482 -891.971L151.002 -770.706V-770.961L243.82 -679.151C271.998 -651.353 271.998 -606.213 243.82 -578.415L150.619 -486.35V-486.223L28.2207 -365.212C-16.1487 -321.348 -16.1487 -250.067 28.2207 -206.203L150.874 -84.9373L155.082 -80.3468L276.332 42.3213C320.192 86.696 391.463 86.696 435.323 42.3213L556.446 -80.4743L648.628 -173.687C676.422 -201.867 721.557 -201.867 749.351 -173.687L841.405 -80.6018H841.15L962.401 42.0663C1006.26 86.441 1077.53 86.441 1121.39 42.0663L1242.64 -80.6018L1247.74 -85.8299L1370.4 -207.095C1414.77 -250.96 1414.77 -322.24 1370.4 -366.105L1247.74 -487.37V-487.115L1154.92 -578.925C1126.75 -606.723 1126.75 -651.863 1154.92 -679.661L1248.12 -771.853V-771.981L1370.52 -892.991C1414.89 -936.856 1414.89 -1008.14 1370.52 -1052L1247.87 -1173.27L1243.66 -1177.86L1122.41 -1300.52C1078.55 -1344.9 1007.28 -1344.9 963.421 -1300.52L842.17 -1177.86L842.298 -1177.6Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M842.298 -1177.6L750.116 -1084.39C722.322 -1056.21 677.187 -1056.21 649.393 -1084.39L557.339 -1177.47H557.594L436.343 -1300.14C392.483 -1344.52 321.212 -1344.52 277.352 -1300.14L156.102 -1177.47L151.002 -1172.25L28.3482 -1050.98C-16.0212 -1007.12 -16.0212 -935.836 28.3482 -891.971L151.002 -770.706V-770.961L243.82 -679.151C271.998 -651.353 271.998 -606.213 243.82 -578.415L150.619 -486.35V-486.223L28.2207 -365.212C-16.1487 -321.348 -16.1487 -250.067 28.2207 -206.203L150.874 -84.9373L155.082 -80.3468L276.332 42.3213C320.192 86.696 391.463 86.696 435.323 42.3213L556.446 -80.4743L648.628 -173.687C676.422 -201.867 721.557 -201.867 749.351 -173.687L841.405 -80.6018H841.15L962.401 42.0663C1006.26 86.441 1077.53 86.441 1121.39 42.0663L1242.64 -80.6018L1247.74 -85.8299L1370.4 -207.095C1414.77 -250.96 1414.77 -322.24 1370.4 -366.105L1247.74 -487.37V-487.115L1154.92 -578.925C1126.75 -606.723 1126.75 -651.863 1154.92 -679.661L1248.12 -771.853V-771.981L1370.52 -892.991C1414.89 -936.856 1414.89 -1008.14 1370.52 -1052L1247.87 -1173.27L1243.66 -1177.86L1122.41 -1300.52C1078.55 -1344.9 1007.28 -1344.9 963.421 -1300.52L842.17 -1177.86L842.298 -1177.6Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M839.875 -1168.55L749.223 -1076.87C721.939 -1049.2 677.569 -1049.2 650.157 -1076.87L559.633 -1168.42H559.888L440.677 -1289.05C397.456 -1332.66 327.459 -1332.66 284.365 -1289.05L165.154 -1168.42L160.181 -1163.32L39.5677 -1044.1C-4.03672 -1000.87 -4.03672 -930.863 39.5677 -887.763L160.181 -768.538V-768.793L251.47 -678.513C279.137 -651.225 279.137 -606.851 251.47 -579.435L159.799 -488.773V-488.646L39.4402 -369.675C-4.16423 -326.448 -4.16423 -256.443 39.4402 -213.344L160.054 -94.1184L164.261 -89.5279L283.472 31.1C326.694 74.7097 396.691 74.7097 439.785 31.1L558.868 -89.6554L649.52 -181.338C676.804 -209.008 721.174 -209.008 748.586 -181.338L839.11 -89.7829H838.855L958.066 30.845C1001.29 74.4546 1071.28 74.4546 1114.38 30.845L1233.59 -89.7829L1238.56 -94.8835L1359.18 -214.109C1402.78 -257.336 1402.78 -327.341 1359.18 -370.44L1238.56 -489.666V-489.411L1147.27 -579.69C1119.61 -606.978 1119.61 -651.353 1147.27 -678.768L1238.94 -769.431V-769.558L1359.3 -888.528C1402.91 -931.756 1402.91 -1001.76 1359.3 -1044.86L1238.69 -1164.09L1234.48 -1168.68L1115.27 -1289.3C1072.05 -1332.91 1002.05 -1332.91 958.958 -1289.3L839.747 -1168.68L839.875 -1168.55Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M839.875 -1168.55L749.223 -1076.87C721.939 -1049.2 677.569 -1049.2 650.157 -1076.87L559.633 -1168.42H559.888L440.677 -1289.05C397.456 -1332.66 327.459 -1332.66 284.365 -1289.05L165.154 -1168.42L160.181 -1163.32L39.5677 -1044.1C-4.03672 -1000.87 -4.03672 -930.863 39.5677 -887.763L160.181 -768.538V-768.793L251.47 -678.513C279.137 -651.225 279.137 -606.851 251.47 -579.435L159.799 -488.773V-488.646L39.4402 -369.675C-4.16423 -326.448 -4.16423 -256.443 39.4402 -213.344L160.054 -94.1184L164.261 -89.5279L283.472 31.1C326.694 74.7097 396.691 74.7097 439.785 31.1L558.868 -89.6554L649.52 -181.338C676.804 -209.008 721.174 -209.008 748.586 -181.338L839.11 -89.7829H838.855L958.066 30.845C1001.29 74.4546 1071.28 74.4546 1114.38 30.845L1233.59 -89.7829L1238.56 -94.8835L1359.18 -214.109C1402.78 -257.336 1402.78 -327.341 1359.18 -370.44L1238.56 -489.666V-489.411L1147.27 -579.69C1119.61 -606.978 1119.61 -651.353 1147.27 -678.768L1238.94 -769.431V-769.558L1359.3 -888.528C1402.91 -931.756 1402.91 -1001.76 1359.3 -1044.86L1238.69 -1164.09L1234.48 -1168.68L1115.27 -1289.3C1072.05 -1332.91 1002.05 -1332.91 958.958 -1289.3L839.747 -1168.68L839.875 -1168.55Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M837.453 -1159.49L748.332 -1069.47C721.43 -1042.31 677.825 -1042.31 650.923 -1069.47L561.929 -1159.49H562.184L444.886 -1278.08C402.429 -1321.05 333.58 -1321.05 291.123 -1278.08L173.824 -1159.49L168.98 -1154.39L50.4061 -1037.08C7.43917 -994.619 7.43917 -925.762 50.4061 -883.3L168.98 -765.987V-766.242L258.738 -677.493C285.896 -650.587 285.896 -606.978 258.738 -580.072L168.725 -490.94V-490.813L50.4061 -373.755C7.43917 -331.293 7.43917 -262.436 50.4061 -219.974L168.98 -102.661L173.06 -98.1982L290.358 20.3895C332.815 63.3616 401.664 63.3616 444.121 20.3895L561.164 -98.3258L650.286 -188.35C677.188 -215.511 720.792 -215.511 747.695 -188.35L836.688 -98.3258H836.433L953.732 20.2619C996.189 63.234 1065.04 63.234 1107.49 20.2619L1224.79 -98.3258L1229.64 -103.426L1348.21 -220.739C1391.18 -263.201 1391.18 -332.058 1348.21 -374.52L1229.64 -491.833V-491.578L1139.88 -580.327C1112.72 -607.233 1112.72 -650.842 1139.88 -677.748L1229.89 -766.88V-767.007L1348.21 -884.065C1391.18 -926.527 1391.18 -995.384 1348.21 -1037.85L1229.64 -1155.16L1225.56 -1159.62L1108.26 -1278.21C1065.8 -1321.18 996.954 -1321.18 954.497 -1278.21L837.198 -1159.62L837.453 -1159.49Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M837.453 -1159.49L748.332 -1069.47C721.43 -1042.31 677.825 -1042.31 650.923 -1069.47L561.929 -1159.49H562.184L444.886 -1278.08C402.429 -1321.05 333.58 -1321.05 291.123 -1278.08L173.824 -1159.49L168.98 -1154.39L50.4061 -1037.08C7.43917 -994.619 7.43917 -925.762 50.4061 -883.3L168.98 -765.987V-766.242L258.738 -677.493C285.896 -650.587 285.896 -606.978 258.738 -580.072L168.725 -490.94V-490.813L50.4061 -373.755C7.43917 -331.293 7.43917 -262.436 50.4061 -219.974L168.98 -102.661L173.06 -98.1982L290.358 20.3895C332.815 63.3616 401.664 63.3616 444.121 20.3895L561.164 -98.3258L650.286 -188.35C677.188 -215.511 720.792 -215.511 747.695 -188.35L836.688 -98.3258H836.433L953.732 20.2619C996.189 63.234 1065.04 63.234 1107.49 20.2619L1224.79 -98.3258L1229.64 -103.426L1348.21 -220.739C1391.18 -263.201 1391.18 -332.058 1348.21 -374.52L1229.64 -491.833V-491.578L1139.88 -580.327C1112.72 -607.233 1112.72 -650.842 1139.88 -677.748L1229.89 -766.88V-767.007L1348.21 -884.065C1391.18 -926.527 1391.18 -995.384 1348.21 -1037.85L1229.64 -1155.16L1225.56 -1159.62L1108.26 -1278.21C1065.8 -1321.18 996.954 -1321.18 954.497 -1278.21L837.198 -1159.62L837.453 -1159.49Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M835.158 -1150.31L747.566 -1061.82C721.174 -1035.04 678.335 -1035.04 651.942 -1061.82L564.479 -1150.31H564.734L449.475 -1266.86C407.783 -1309.07 340.081 -1309.07 298.389 -1266.86L183.131 -1150.31L178.286 -1145.34L61.7525 -1030.07C19.5506 -988.372 19.5506 -920.662 61.7525 -878.965L178.286 -763.693V-763.948L266.515 -676.601C293.29 -650.206 293.29 -607.361 266.515 -580.966L178.031 -493.364V-493.237L61.7525 -378.219C19.5506 -336.522 19.5506 -268.813 61.7525 -227.116L178.286 -111.843L182.366 -107.38L297.624 9.16713C339.316 51.3741 407.018 51.3741 448.71 9.16713L563.841 -107.508L651.432 -196.002C677.825 -222.78 720.664 -222.78 747.056 -196.002L834.52 -107.508H834.265L949.523 9.03965C991.215 51.2467 1058.92 51.2467 1100.61 9.03965L1215.87 -107.508L1220.71 -112.481L1337.25 -227.753C1379.45 -269.45 1379.45 -337.16 1337.25 -378.857L1220.71 -494.129V-494.002L1132.48 -581.349C1105.71 -607.744 1105.71 -650.588 1132.48 -676.984L1220.97 -764.586V-764.713L1337.25 -879.73C1379.45 -921.427 1379.45 -989.137 1337.25 -1030.83L1220.71 -1146.11L1216.63 -1150.57L1101.37 -1267.12C1059.68 -1309.32 991.981 -1309.32 950.289 -1267.12L835.03 -1150.57L835.158 -1150.31Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M835.158 -1150.31L747.566 -1061.82C721.174 -1035.04 678.335 -1035.04 651.942 -1061.82L564.479 -1150.31H564.734L449.475 -1266.86C407.783 -1309.07 340.081 -1309.07 298.389 -1266.86L183.131 -1150.31L178.286 -1145.34L61.7525 -1030.07C19.5506 -988.372 19.5506 -920.662 61.7525 -878.965L178.286 -763.693V-763.948L266.515 -676.601C293.29 -650.206 293.29 -607.361 266.515 -580.966L178.031 -493.364V-493.237L61.7525 -378.219C19.5506 -336.522 19.5506 -268.813 61.7525 -227.116L178.286 -111.843L182.366 -107.38L297.624 9.16713C339.316 51.3741 407.018 51.3741 448.71 9.16713L563.841 -107.508L651.432 -196.002C677.825 -222.78 720.664 -222.78 747.056 -196.002L834.52 -107.508H834.265L949.523 9.03965C991.215 51.2467 1058.92 51.2467 1100.61 9.03965L1215.87 -107.508L1220.71 -112.481L1337.25 -227.753C1379.45 -269.45 1379.45 -337.16 1337.25 -378.857L1220.71 -494.129V-494.002L1132.48 -581.349C1105.71 -607.744 1105.71 -650.588 1132.48 -676.984L1220.97 -764.586V-764.713L1337.25 -879.73C1379.45 -921.427 1379.45 -989.137 1337.25 -1030.83L1220.71 -1146.11L1216.63 -1150.57L1101.37 -1267.12C1059.68 -1309.32 991.981 -1309.32 950.289 -1267.12L835.03 -1150.57L835.158 -1150.31Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M832.735 -1141.26L746.674 -1054.3C720.664 -1028.03 678.59 -1028.03 652.708 -1054.3L566.774 -1141.26H567.029L453.811 -1255.77C412.884 -1297.21 346.329 -1297.21 305.402 -1255.77L192.184 -1141.26L187.466 -1136.41L72.973 -1023.18C31.536 -982.25 31.536 -915.688 72.973 -874.756L187.466 -761.524V-761.779L274.165 -675.963C300.43 -649.95 300.43 -607.87 274.165 -581.985L187.211 -495.913V-495.786L72.973 -382.809C31.536 -341.877 31.536 -275.315 72.973 -234.383L187.466 -121.151L191.419 -116.815L304.637 -2.30808C345.564 39.1339 412.119 39.1339 453.045 -2.30808L566.137 -116.943L652.198 -203.907C678.208 -230.175 720.282 -230.175 746.164 -203.907L832.098 -116.943H831.843L945.061 -2.43556C985.988 39.0064 1052.54 39.0064 1093.47 -2.43556L1206.69 -116.943L1211.41 -121.788L1325.9 -235.02C1367.34 -275.952 1367.34 -342.514 1325.9 -383.446L1211.41 -496.678V-496.423L1124.71 -582.24C1098.44 -608.253 1098.44 -650.332 1124.71 -676.218L1211.66 -762.289V-762.417L1325.9 -875.394C1367.34 -916.326 1367.34 -982.888 1325.9 -1023.82L1211.41 -1137.05L1207.45 -1141.39L1094.23 -1255.89C1053.31 -1297.34 986.754 -1297.34 945.827 -1255.89L832.608 -1141.39L832.735 -1141.26Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M832.735 -1141.26L746.674 -1054.3C720.664 -1028.03 678.59 -1028.03 652.708 -1054.3L566.774 -1141.26H567.029L453.811 -1255.77C412.884 -1297.21 346.329 -1297.21 305.402 -1255.77L192.184 -1141.26L187.466 -1136.41L72.973 -1023.18C31.536 -982.25 31.536 -915.688 72.973 -874.756L187.466 -761.524V-761.779L274.165 -675.963C300.43 -649.95 300.43 -607.87 274.165 -581.985L187.211 -495.913V-495.786L72.973 -382.809C31.536 -341.877 31.536 -275.315 72.973 -234.383L187.466 -121.151L191.419 -116.815L304.637 -2.30808C345.564 39.1339 412.119 39.1339 453.045 -2.30808L566.137 -116.943L652.198 -203.907C678.208 -230.175 720.282 -230.175 746.164 -203.907L832.098 -116.943H831.843L945.061 -2.43556C985.988 39.0064 1052.54 39.0064 1093.47 -2.43556L1206.69 -116.943L1211.41 -121.788L1325.9 -235.02C1367.34 -275.952 1367.34 -342.514 1325.9 -383.446L1211.41 -496.678V-496.423L1124.71 -582.24C1098.44 -608.253 1098.44 -650.332 1124.71 -676.218L1211.66 -762.289V-762.417L1325.9 -875.394C1367.34 -916.326 1367.34 -982.888 1325.9 -1023.82L1211.41 -1137.05L1207.45 -1141.39L1094.23 -1255.89C1053.31 -1297.34 986.754 -1297.34 945.827 -1255.89L832.608 -1141.39L832.735 -1141.26Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M830.44 -1132.08L745.909 -1046.64C720.409 -1020.89 679.1 -1020.89 653.6 -1046.64L569.196 -1132.08H569.451L458.273 -1244.55C417.983 -1285.22 352.704 -1285.22 312.542 -1244.55L201.363 -1132.08L196.646 -1127.23L84.1925 -1016.04C43.5205 -975.747 43.5205 -910.46 84.1925 -870.293L196.646 -759.102V-759.357L281.815 -675.07C307.57 -649.567 307.57 -608.253 281.815 -582.75L196.391 -498.209V-498.081L84.1925 -387.144C43.5205 -346.85 43.5205 -281.563 84.1925 -241.396L196.646 -130.204L200.598 -125.996L311.777 -13.5294C352.066 27.1474 417.346 27.1474 457.508 -13.5294L568.559 -126.124L653.09 -211.558C678.59 -237.316 719.899 -237.316 745.399 -211.558L829.803 -126.124H829.548L940.726 -13.6569C981.016 27.0199 1046.29 27.0199 1086.46 -13.6569L1197.64 -126.124L1202.35 -130.969L1314.81 -242.161C1355.48 -282.456 1355.48 -347.743 1314.81 -387.909L1202.35 -499.101V-498.846L1117.18 -583.133C1091.43 -608.636 1091.43 -649.95 1117.18 -675.453L1202.61 -759.994V-760.122L1314.81 -871.059C1355.48 -911.353 1355.48 -976.64 1314.81 -1016.81L1202.35 -1128L1198.4 -1132.21L1087.22 -1244.67C1046.93 -1285.35 981.653 -1285.35 941.491 -1244.67L830.313 -1132.21L830.44 -1132.08Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M830.44 -1132.08L745.909 -1046.64C720.409 -1020.89 679.1 -1020.89 653.6 -1046.64L569.196 -1132.08H569.451L458.273 -1244.55C417.983 -1285.22 352.704 -1285.22 312.542 -1244.55L201.363 -1132.08L196.646 -1127.23L84.1925 -1016.04C43.5205 -975.747 43.5205 -910.46 84.1925 -870.293L196.646 -759.102V-759.357L281.815 -675.07C307.57 -649.567 307.57 -608.253 281.815 -582.75L196.391 -498.209V-498.081L84.1925 -387.144C43.5205 -346.85 43.5205 -281.563 84.1925 -241.396L196.646 -130.204L200.598 -125.996L311.777 -13.5294C352.066 27.1474 417.346 27.1474 457.508 -13.5294L568.559 -126.124L653.09 -211.558C678.59 -237.316 719.899 -237.316 745.399 -211.558L829.803 -126.124H829.548L940.726 -13.6569C981.016 27.0199 1046.29 27.0199 1086.46 -13.6569L1197.64 -126.124L1202.35 -130.969L1314.81 -242.161C1355.48 -282.456 1355.48 -347.743 1314.81 -387.909L1202.35 -499.101V-498.846L1117.18 -583.133C1091.43 -608.636 1091.43 -649.95 1117.18 -675.453L1202.61 -759.994V-760.122L1314.81 -871.059C1355.48 -911.353 1355.48 -976.64 1314.81 -1016.81L1202.35 -1128L1198.4 -1132.21L1087.22 -1244.67C1046.93 -1285.35 981.653 -1285.35 941.491 -1244.67L830.313 -1132.21L830.44 -1132.08Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M828.017 -1123.03L745.016 -1039.12C720.026 -1013.75 679.354 -1013.75 654.365 -1039.12L571.491 -1123.03H571.746L462.607 -1233.45C423.083 -1273.49 358.951 -1273.49 319.427 -1233.45L210.288 -1123.03L205.698 -1118.31L95.2844 -1009.16C55.25 -969.628 55.25 -905.489 95.2844 -865.959L205.698 -756.808V-757.063L289.337 -674.306C314.709 -649.314 314.709 -608.637 289.337 -583.644L205.316 -500.633V-500.378L95.1569 -391.481C55.1224 -351.952 55.1224 -287.812 95.1569 -248.283L205.571 -139.132L209.395 -134.924L318.534 -24.4968C358.059 15.5425 422.19 15.5425 461.715 -24.4968L570.726 -135.051L653.727 -218.955C678.717 -244.33 719.389 -244.33 744.379 -218.955L827.253 -135.051H826.997L936.136 -24.6244C975.66 15.4149 1039.79 15.4149 1079.32 -24.6244L1188.46 -135.051L1193.05 -139.769L1303.46 -248.921C1343.49 -288.45 1343.49 -352.589 1303.46 -392.119L1193.05 -501.27V-501.015L1109.41 -583.772C1084.03 -608.764 1084.03 -649.441 1109.41 -674.434L1193.3 -757.445V-757.573L1303.46 -866.469C1343.49 -905.999 1343.49 -970.138 1303.46 -1009.67L1193.05 -1118.82L1189.22 -1123.03L1080.08 -1233.45C1040.56 -1273.49 976.426 -1273.49 936.901 -1233.45L827.762 -1123.03H828.017Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M828.017 -1123.03L745.016 -1039.12C720.026 -1013.75 679.354 -1013.75 654.365 -1039.12L571.491 -1123.03H571.746L462.607 -1233.45C423.083 -1273.49 358.951 -1273.49 319.427 -1233.45L210.288 -1123.03L205.698 -1118.31L95.2844 -1009.16C55.25 -969.628 55.25 -905.489 95.2844 -865.959L205.698 -756.808V-757.063L289.337 -674.306C314.709 -649.314 314.709 -608.637 289.337 -583.644L205.316 -500.633V-500.378L95.1569 -391.481C55.1224 -351.952 55.1224 -287.812 95.1569 -248.283L205.571 -139.132L209.395 -134.924L318.534 -24.4968C358.059 15.5425 422.19 15.5425 461.715 -24.4968L570.726 -135.051L653.727 -218.955C678.717 -244.33 719.389 -244.33 744.379 -218.955L827.253 -135.051H826.997L936.136 -24.6244C975.66 15.4149 1039.79 15.4149 1079.32 -24.6244L1188.46 -135.051L1193.05 -139.769L1303.46 -248.921C1343.49 -288.45 1343.49 -352.589 1303.46 -392.119L1193.05 -501.27V-501.015L1109.41 -583.772C1084.03 -608.764 1084.03 -649.441 1109.41 -674.434L1193.3 -757.445V-757.573L1303.46 -866.469C1343.49 -905.999 1343.49 -970.138 1303.46 -1009.67L1193.05 -1118.82L1189.22 -1123.03L1080.08 -1233.45C1040.56 -1273.49 976.426 -1273.49 936.901 -1233.45L827.762 -1123.03H828.017Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M825.595 -1113.84L744.124 -1031.47C719.517 -1006.61 679.737 -1006.61 655.13 -1031.47L573.786 -1113.84H574.041L466.815 -1222.23C428.056 -1261.51 365.072 -1261.51 326.312 -1222.23L219.086 -1113.84L214.623 -1109.25L106.25 -1002.02C66.9804 -963.251 66.9804 -900.259 106.25 -861.495L214.623 -754.256V-754.511L296.732 -673.285C321.595 -648.675 321.595 -608.891 296.732 -584.281L214.496 -502.927V-502.799L106.25 -395.815C66.9804 -357.051 66.9804 -294.059 106.25 -255.295L214.623 -148.056L218.321 -143.976L325.547 -35.5893C364.307 3.68495 427.291 3.68495 466.05 -35.5893L573.149 -144.103L654.62 -226.477C679.227 -251.342 719.007 -251.342 743.614 -226.477L824.958 -144.103H824.703L931.929 -35.7167C970.689 3.55746 1033.67 3.55746 1072.43 -35.7167L1179.66 -144.103L1184.12 -148.694L1292.49 -255.933C1331.76 -294.697 1331.76 -357.689 1292.49 -396.453L1184.12 -503.692V-503.437L1102.01 -584.663C1077.15 -609.273 1077.15 -649.057 1102.01 -673.668L1184.38 -755.149V-755.276L1292.49 -862.26C1331.76 -901.024 1331.76 -964.016 1292.49 -1002.78L1184.12 -1110.02L1180.42 -1114.1L1073.2 -1222.49C1034.44 -1261.76 971.453 -1261.76 932.694 -1222.49L825.468 -1114.1L825.595 -1113.84Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M825.595 -1113.84L744.124 -1031.47C719.517 -1006.61 679.737 -1006.61 655.13 -1031.47L573.786 -1113.84H574.041L466.815 -1222.23C428.056 -1261.51 365.072 -1261.51 326.312 -1222.23L219.086 -1113.84L214.623 -1109.25L106.25 -1002.02C66.9804 -963.251 66.9804 -900.259 106.25 -861.495L214.623 -754.256V-754.511L296.732 -673.285C321.595 -648.675 321.595 -608.891 296.732 -584.281L214.496 -502.927V-502.799L106.25 -395.815C66.9804 -357.051 66.9804 -294.059 106.25 -255.295L214.623 -148.056L218.321 -143.976L325.547 -35.5893C364.307 3.68495 427.291 3.68495 466.05 -35.5893L573.149 -144.103L654.62 -226.477C679.227 -251.342 719.007 -251.342 743.614 -226.477L824.958 -144.103H824.703L931.929 -35.7167C970.689 3.55746 1033.67 3.55746 1072.43 -35.7167L1179.66 -144.103L1184.12 -148.694L1292.49 -255.933C1331.76 -294.697 1331.76 -357.689 1292.49 -396.453L1184.12 -503.692V-503.437L1102.01 -584.663C1077.15 -609.273 1077.15 -649.057 1102.01 -673.668L1184.38 -755.149V-755.276L1292.49 -862.26C1331.76 -901.024 1331.76 -964.016 1292.49 -1002.78L1184.12 -1110.02L1180.42 -1114.1L1073.2 -1222.49C1034.44 -1261.76 971.453 -1261.76 932.694 -1222.49L825.468 -1114.1L825.595 -1113.84Z" stroke="#4A00B2" stroke-miterlimit="10" stroke-linecap="round"/>
<g clip-path="url(#clip0_377_62970)">
<rect width="1440" height="46" fill="#111112"/>
<g clip-path="url(#clip1_377_62970)">
<path d="M76.7909 350.213C-38.509 121.807 -21.5695 -138.837 98.9682 -344.227C166.771 -459.825 267.427 -557.921 395.766 -622.931C578.846 -715.647 782.677 -722.992 962.035 -659.79C1131.83 -600.004 1279.72 -476.993 1367.36 -303.417C1547.56 53.537 1404.73 489.231 1048.34 669.728C691.984 850.225 256.973 707.189 76.7909 350.213Z" fill="url(#paint0_linear_377_62970)"/>
<path d="M388.923 -445.826C554.462 -563.747 761.012 -581.361 936.514 -510.859C1035.28 -471.21 1124.23 -403.61 1190.49 -310.292C1285 -177.168 1314.98 -17.567 1286.69 131.14C1259.95 271.921 1180.98 402.968 1055.18 492.58C796.474 676.873 437.58 616.171 253.608 357.046C69.6365 97.92 130.195 -261.534 388.923 -445.826Z" fill="url(#paint1_linear_377_62970)"/>
<path d="M415.424 -258.542C514.899 -367.086 658.528 -410.798 793.442 -387.402C869.358 -374.252 942.554 -339.827 1003.54 -283.769C1090.53 -203.779 1135.82 -95.2798 1138.21 14.3134C1140.48 118.057 1104.3 222.806 1028.72 305.297C873.258 474.922 609.961 486.196 440.588 330.502C271.238 174.807 259.96 -88.9396 415.424 -258.565V-258.542Z" fill="url(#paint2_linear_377_62970)"/>
<path d="M526.623 -206.615C607.777 -275.8 714.919 -294.419 809.847 -265.598C863.273 -249.39 912.821 -218.112 951.693 -172.369C1007.15 -107.113 1030.06 -25.0685 1022.06 53.9395C1014.48 128.728 979.175 200.838 917.524 253.391C790.701 361.51 600.377 346.173 492.454 219.144C384.51 92.1151 399.822 -98.4953 526.645 -206.615H526.623Z" fill="url(#paint3_linear_377_62970)"/>
<path d="M679.39 197.354C618.007 182.24 571.892 137.077 552.812 81.3314C542.069 49.9649 539.885 15.2272 548.377 -19.3541C560.48 -68.7146 591.929 -108.23 632.673 -131.76C671.233 -154.063 718.106 -162.055 764.734 -150.58C860.665 -126.983 919.307 -29.9361 895.748 66.1281C872.188 162.215 775.321 220.974 679.39 197.354Z" fill="url(#paint4_linear_377_62970)"/>
<mask id="mask0_377_62970" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="-2" y="-701" width="1448" height="1449">
<path d="M1048.32 669.708C1404.71 489.211 1547.54 53.5171 1367.33 -303.436C1279.72 -477.013 1131.83 -600.001 962.035 -659.787C782.677 -722.967 578.846 -715.644 395.744 -622.929C267.405 -557.941 166.749 -459.823 98.9466 -344.224C-21.5911 -138.835 -38.5529 121.809 76.747 350.193C256.952 707.147 691.94 850.183 1048.29 669.708H1048.32ZM226.216 -269.145C280.177 -361.124 360.283 -439.194 462.432 -490.921C608.112 -564.705 770.307 -570.555 913.022 -520.256C1048.14 -472.682 1165.82 -374.809 1235.56 -236.685C1378.97 47.3777 1265.3 394.084 981.716 537.723C698.136 681.362 351.969 567.527 208.563 283.464C116.8 101.717 130.307 -105.682 226.216 -269.145Z" fill="white"/>
</mask>
<g mask="url(#mask0_377_62970)">
<path d="M1047.27 670.021L394.875 -622.258" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M906.247 723.758L536.365 -676.15" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M757.135 746.931L685.922 -699.391" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M606.485 738.559L837.04 -690.997" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M460.85 698.999L983.121 -651.303" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M326.627 629.97L1117.77 -582.073" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M209.655 534.486L1235.1 -486.3" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M115.062 416.745L1329.98 -368.201" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M46.9693 281.881L1398.27 -232.91" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M8.3653 135.763L1437.01 -86.3478" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M0.920837 -15.1764L1444.45 65.0595" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M24.9928 -164.374L1420.32 214.726" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M79.4884 -305.312L1365.64 356.087" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M162.068 -431.805L1282.82 482.983" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M269.099 -538.339L1175.47 589.83" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
</g>
<mask id="mask1_377_62970" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="146" y="-554" width="1152" height="1154">
<path d="M1033.74 507.83C1300.87 335.392 1377.88 -21.2716 1205.74 -288.814C1122.05 -418.901 994.821 -503.982 855.493 -537.224C708.321 -572.341 547.596 -549.636 410.364 -461.073C314.166 -398.987 242.619 -312.992 198.532 -215.878C120.12 -43.3063 128.255 164.36 238.384 335.548C410.52 603.113 766.628 680.223 1033.74 507.807V507.83ZM343.297 -149.707C375.215 -219.964 426.969 -282.183 496.577 -327.101C595.851 -391.174 712.11 -407.627 818.583 -382.199C919.373 -358.155 1011.43 -296.628 1071.98 -202.483C1196.53 -8.90356 1140.81 249.128 947.568 373.858C754.325 498.587 496.689 442.797 372.161 249.24C292.479 125.381 286.594 -24.8659 343.319 -149.707H343.297Z" fill="white"/>
</mask>
<g mask="url(#mask1_377_62970)">
<path d="M1032.91 508.163L409.718 -460.449" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M925.748 562.391L517.239 -514.833" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M809.645 593.111L633.676 -545.662" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M689.732 598.982L753.968 -551.557" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M571.2 579.76L872.879 -532.246" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M459.266 536.271L985.148 -488.623" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M358.788 470.412L1085.94 -422.564" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M274.18 385.064L1170.81 -336.969" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M209.141 283.977L1236.05 -235.569" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M166.503 171.549L1278.8 -122.783" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M148.137 52.69L1297.23 -3.56891" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M154.846 -67.3731L1290.5 116.875" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M186.34 -183.441L1258.92 233.299" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M241.214 -290.4L1203.87 340.593" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M317.108 -383.607L1127.75 434.067" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
</g>
<mask id="mask2_377_62970" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="305" y="-394" width="834" height="835">
<path d="M985.416 346.284C1163.48 200.591 1189.92 -62.084 1044.46 -240.416C973.736 -327.126 875.376 -377.937 772.513 -390.484C663.855 -403.767 550.16 -374.365 458.687 -299.51C394.562 -247.046 350.119 -179.402 326.292 -105.997C283.921 24.4474 306.611 173.087 399.667 287.19C545.123 465.521 807.373 491.977 985.416 346.306V346.284ZM435.73 -70.2326C452.981 -123.344 485.144 -172.28 531.527 -210.232C597.702 -264.37 679.948 -285.646 758.56 -276.046C832.96 -266.96 904.129 -230.213 955.304 -167.48C1060.53 -38.4642 1041.41 151.588 912.598 256.984C783.791 362.38 594.047 343.248 488.822 214.21C421.487 131.652 405.06 24.1126 435.73 -70.2326Z" fill="white"/>
</mask>
<g mask="url(#mask2_377_62970)">
<path d="M985.482 347.401L457.595 -299.844" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M912.643 395.221L530.657 -347.82" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M831.489 426.832L612.056 -379.523" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M745.521 440.853L698.291 -393.565" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M658.55 436.656L785.529 -389.367" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M574.343 414.442L870.004 -367.088" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M496.577 375.173L948.014 -327.706" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M428.664 320.566L1016.13 -272.921" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M373.566 253.011L1071.41 -205.164" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M333.691 175.476L1111.39 -127.385" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M310.801 91.3112L1134.37 -42.9734" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M305.875 4.22107L1139.3 44.3837" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M319.115 -81.9752L1126.01 130.871" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M349.985 -163.551L1095.05 212.669" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M397.103 -236.91L1047.8 286.275" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
</g>
<mask id="mask3_377_62970" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="420" y="-279" width="604" height="605">
<path d="M887.166 275.67C1026.27 184.339 1065.14 -2.65509 973.936 -141.985C929.604 -209.741 862.671 -253.744 789.608 -270.554C712.444 -288.347 628.415 -275.801 556.935 -228.874C506.852 -195.989 469.742 -150.669 447.052 -99.6793C406.709 -9.04001 411.813 99.6155 470.165 188.781C561.348 328.111 748.039 367.024 887.144 275.692L887.166 275.67ZM558.384 -49.8723C571.891 -80.2343 593.979 -107.18 623.779 -126.759C666.306 -154.688 716.322 -162.145 762.237 -151.562C805.723 -141.561 845.553 -115.351 871.943 -75.0326C926.216 7.9046 903.08 119.194 820.3 173.556C737.519 227.917 626.387 204.766 572.114 121.829C537.388 68.7625 534.357 4.08701 558.362 -49.8501L558.384 -49.8723Z" fill="white"/>
</mask>
<g mask="url(#mask3_377_62970)">
<path d="M887.121 276.474L556.177 -229.208" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M831.11 305.362L612.367 -258.187" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M770.328 321.949L673.327 -274.841" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M707.429 325.522L736.427 -278.412" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M645.154 315.922L798.902 -268.79" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M586.245 293.552L857.99 -246.355" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M533.264 259.418L911.148 -212.107" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M488.508 214.991L956.015 -167.547" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M453.983 162.215L990.675 -114.592" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M431.159 103.389L1013.57 -55.6094" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M421.018 41.1023L1023.73 6.87811" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M424.05 -21.9215L1020.68 70.1019" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M440.097 -82.9575L1004.58 131.317" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M468.449 -139.306L976.143 187.844" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M507.9 -188.51L936.58 237.205" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
</g>
<mask id="mask4_377_62970" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="542" y="-157" width="360" height="360">
<path d="M820.323 173.535C903.125 119.174 926.239 7.88371 871.966 -75.0535C845.576 -115.372 805.746 -141.56 762.26 -151.583C716.323 -162.165 666.329 -154.709 623.78 -126.78C593.958 -107.201 571.892 -80.2329 558.385 -49.8933C534.38 4.04379 537.411 68.7191 572.137 121.786C626.41 204.7 737.52 227.874 820.3 173.513L820.323 173.535Z" fill="white"/>
</mask>
<g mask="url(#mask4_377_62970)">
<path d="M769.036 197.044L674.554 -150.154" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M732.014 203.072L711.665 -156.203" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M694.569 201.264L749.244 -154.395" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M658.306 191.709L785.619 -144.794" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M624.828 174.809L819.208 -127.85" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M595.585 151.301L848.54 -104.253" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M571.847 122.211L872.322 -75.0745" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M554.685 88.8129L889.551 -41.5871" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M544.833 52.5803L899.448 -5.24133" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M542.694 15.0746L901.566 32.3765" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M548.4 -22.0308L895.837 69.6131" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M561.706 -57.1699L882.509 104.842" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M581.989 -88.7378L862.159 136.521" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M608.379 -115.416L835.68 163.266" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M639.739 -135.999L804.23 183.918" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
</g>
<mask id="mask5_377_62970" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="8" y="-703" width="1047" height="819">
<path d="M1054.87 -620.631C1032.13 -604.869 1010.09 -587.902 988.558 -570.288C923.208 -516.842 860.576 -455.046 824.357 -375.034C784.17 -286.247 780.136 -183.597 754.548 -88.56C728.983 6.47729 668.291 103.859 578.222 114.463C480.887 125.916 402.965 34.7184 320.519 -23.0363C228.912 -87.2205 117.869 -113.006 8.83249 -106.799C41.0175 -286.716 140.849 -454.622 301.306 -568.904C530.301 -732.01 821.727 -742.458 1054.87 -620.631Z" fill="white"/>
</mask>
<g mask="url(#mask5_377_62970)">
<path d="M75.9669 348.319C-39.3329 119.912 -22.3935 -140.732 98.1443 -346.121C165.947 -461.72 266.603 -559.815 394.942 -624.826C578.022 -717.541 781.853 -724.864 961.211 -661.684C1131.01 -601.898 1278.89 -478.887 1366.53 -305.311C1546.74 51.6426 1403.91 487.336 1047.51 667.833C691.16 848.331 256.149 705.295 75.9669 348.319Z" fill="url(#paint5_linear_377_62970)"/>
<path d="M285.928 397.5C153.265 243.414 116.488 39.0732 170.182 -142.518C200.383 -244.722 259.27 -339.714 345.84 -414.503C469.342 -521.171 625.208 -565.978 775.657 -551.645C918.105 -538.116 1055.74 -471.61 1156.55 -354.516C1363.88 -113.719 1337.04 249.843 1096.64 457.51C856.231 665.154 493.28 638.32 285.95 397.5H285.928Z" fill="url(#paint6_linear_377_62970)"/>
<path d="M517.196 384.887C388.991 312.665 313.722 182.578 305.676 45.6589C301.129 -31.3845 317.89 -110.593 358.456 -182.882C416.34 -285.978 511.49 -354.895 617.474 -382.243C717.795 -408.14 827.88 -396.777 925.304 -341.902C1125.68 -229.027 1196.74 25.187 1084.04 225.866C971.353 426.545 717.573 497.739 517.196 384.864V384.887Z" fill="url(#paint7_linear_377_62970)"/>
<path d="M649.301 314.809C545.815 289.336 468.049 213.186 435.886 119.22C417.766 66.3324 414.11 7.79639 428.42 -50.561C448.836 -133.766 501.861 -200.384 570.533 -240.1C635.527 -277.695 714.563 -291.179 793.198 -271.824C954.925 -232.018 1053.82 -68.4433 1014.08 93.5465C974.339 255.536 811.029 354.592 649.301 314.787V314.809Z" fill="url(#paint8_linear_377_62970)"/>
<path d="M678.567 195.482C617.183 180.368 571.068 135.204 551.989 79.4587C541.246 48.0922 539.061 13.3546 547.553 -21.2268C559.656 -70.5872 591.106 -110.102 631.85 -133.633C670.409 -155.935 717.282 -163.928 763.911 -152.453C859.841 -128.855 918.483 -31.8088 894.924 64.2555C871.365 160.342 774.498 219.101 678.567 195.482Z" fill="url(#paint9_linear_377_62970)"/>
<mask id="mask6_377_62970" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="-3" y="-703" width="1448" height="1449">
<path d="M1047.49 667.813C1403.89 487.316 1546.72 51.6218 1366.51 -305.332C1278.89 -478.908 1131.01 -601.896 961.211 -661.683C781.853 -724.862 578.022 -717.54 394.92 -624.824C266.581 -559.836 165.925 -461.718 98.1226 -346.12C-22.4151 -140.73 -39.3769 119.914 75.923 348.298C256.128 705.252 691.116 848.288 1047.47 667.813H1047.49ZM225.392 -271.041C279.353 -363.019 359.459 -441.09 461.608 -492.817C607.288 -566.601 769.483 -572.45 912.198 -522.152C1047.31 -474.577 1165 -376.705 1234.74 -238.58C1378.15 45.4824 1264.47 392.189 980.892 535.828C697.312 679.444 351.145 565.631 207.739 281.569C115.976 99.8214 129.483 -107.577 225.392 -271.041Z" fill="white"/>
</mask>
<g mask="url(#mask6_377_62970)">
<path d="M1046.44 668.148L394.051 -624.154" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M905.422 721.861L535.54 -678.025" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M756.311 745.035L685.098 -701.287" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M605.661 736.663L836.216 -692.893" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M460.026 697.103L982.296 -653.199" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M325.803 628.074L1116.94 -583.969" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M208.831 532.612L1234.27 -488.196" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M114.237 414.849L1329.15 -370.074" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M46.1451 279.984L1397.45 -234.785" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M7.54089 133.889L1436.18 -88.244" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M0.0964508 -17.0726L1443.63 63.1632" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M24.1684 -166.27L1419.49 212.83" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M78.6646 -307.185L1364.82 354.192" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M161.244 -433.701L1281.99 481.086" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M268.275 -540.235L1174.65 587.956" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
</g>
<mask id="mask7_377_62970" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="145" y="-555" width="1152" height="1153">
<path d="M1032.91 505.953C1300.05 333.515 1377.05 -23.1481 1204.92 -290.69C1121.22 -420.778 993.998 -505.858 854.671 -539.1C707.498 -574.217 546.773 -551.513 409.541 -462.95C313.343 -400.864 241.796 -314.868 197.709 -217.755C119.297 -45.1828 127.432 162.484 237.561 333.672C409.697 601.236 765.805 678.347 1032.91 505.931V505.953ZM342.474 -151.583C374.392 -221.84 426.146 -284.06 495.754 -328.978C595.029 -393.05 711.287 -409.504 817.76 -384.076C918.55 -360.032 1010.6 -298.504 1071.16 -204.36C1195.71 -10.78 1139.99 247.252 946.746 371.981C753.502 496.711 495.866 440.921 371.338 247.363C291.656 123.505 285.772 -26.7424 342.497 -151.583H342.474Z" fill="white"/>
</mask>
<g mask="url(#mask7_377_62970)">
<path d="M1032.09 506.29L408.895 -462.345" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M924.924 560.517L516.415 -516.728" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M808.822 591.237L632.852 -547.536" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M688.909 597.108L753.145 -553.431" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M570.377 577.864L872.056 -534.141" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M458.443 534.375L984.324 -490.518" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M357.964 468.516L1085.11 -424.459" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M273.357 383.169L1169.99 -338.865" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M208.318 282.08L1235.23 -237.443" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M165.679 169.652L1277.98 -124.68" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M147.313 50.8162L1296.41 -5.46497" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M154.022 -69.2689L1289.68 115.001" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M185.517 -185.337L1258.1 231.403" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M240.391 -292.295L1203.04 338.697" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
<path d="M316.284 -385.503L1126.93 432.193" stroke="black" stroke-width="44.462" stroke-miterlimit="10"/>
</g>
<mask id="mask8_377_62970" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="304" y="-396" width="834" height="835">
<path d="M984.591 344.412C1162.66 198.719 1189.09 -63.9559 1043.63 -242.288C972.912 -328.998 874.552 -379.809 771.689 -392.356C663.031 -405.639 549.336 -376.237 457.863 -301.382C393.738 -248.918 349.294 -181.273 325.468 -107.869C283.097 22.5756 305.787 171.215 398.842 285.318C544.299 463.65 806.549 490.105 984.591 344.434V344.412ZM434.906 -72.1268C452.157 -125.238 484.32 -174.174 530.703 -212.127C596.878 -266.265 679.124 -287.54 757.736 -277.941C832.136 -268.854 903.304 -232.107 954.479 -169.374C1059.7 -40.3584 1040.58 149.694 911.774 255.09C782.967 360.486 593.223 341.354 487.997 212.315C420.663 129.758 404.236 22.2184 434.906 -72.1268Z" fill="white"/>
</mask>
<g mask="url(#mask8_377_62970)">
<path d="M984.659 345.505L456.771 -301.74" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M911.819 393.325L529.834 -349.694" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M830.666 424.937L611.233 -381.396" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M744.698 438.957L697.468 -395.46" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M657.727 434.761L784.706 -391.262" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M573.52 412.546L869.181 -368.983" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M495.754 373.277L947.191 -329.58" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M427.841 318.693L1015.31 -274.816" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M372.742 251.138L1070.58 -207.059" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M332.868 173.58L1110.57 -129.28" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M309.977 89.4374L1133.55 -44.8472" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M305.051 2.34875L1138.47 42.489" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M318.291 -83.8708L1125.19 128.975" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M349.161 -165.446L1094.23 210.796" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
<path d="M396.28 -238.784L1046.98 284.379" stroke="black" stroke-width="33.3465" stroke-miterlimit="10"/>
</g>
<mask id="mask9_377_62970" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="420" y="-281" width="603" height="605">
<path d="M886.342 273.777C1025.45 182.445 1064.32 -4.5484 973.112 -143.878C928.78 -211.635 861.847 -255.637 788.784 -272.448C711.62 -290.241 627.591 -277.694 556.111 -230.767C506.028 -197.882 468.918 -152.563 446.228 -101.573C405.885 -10.9333 410.989 97.7222 469.341 186.888C560.525 326.218 747.215 365.13 886.32 273.799L886.342 273.777ZM557.56 -51.7656C571.067 -82.1276 593.155 -109.074 622.955 -128.653C665.482 -156.581 715.498 -164.038 761.413 -153.456C804.899 -143.454 844.729 -117.245 871.119 -76.9258C925.392 6.01135 902.256 117.301 819.476 171.662C736.695 226.024 625.563 202.873 571.29 119.936C536.564 66.8691 533.533 2.19379 557.538 -51.7433L557.56 -51.7656Z" fill="white"/>
</mask>
<g mask="url(#mask9_377_62970)">
<path d="M886.298 274.578L555.354 -231.104" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M830.286 303.466L611.544 -260.082" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M769.504 320.054L672.526 -276.737" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M706.606 323.626L735.603 -280.308" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M644.33 314.027L798.078 -270.686" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M585.421 291.679L857.166 -248.25" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M532.441 257.523L910.325 -214.003" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M487.685 213.096L955.192 -169.42" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M453.16 160.319L989.851 -116.488" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M430.336 101.516L1012.74 -57.505" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M420.194 39.2291L1022.91 4.9826" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M423.226 -23.8173L1019.85 68.2061" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M439.274 -84.8316L1003.76 129.421" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M467.625 -141.18L975.319 185.948" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
<path d="M507.076 -190.405L935.756 235.309" stroke="black" stroke-width="20.6431" stroke-miterlimit="10"/>
</g>
<mask id="mask10_377_62970" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="541" y="-159" width="360" height="361">
<path d="M819.499 171.639C902.302 117.278 925.415 5.98769 871.142 -76.9495C844.752 -117.268 804.922 -143.456 761.437 -153.479C715.499 -164.061 665.506 -156.605 622.956 -128.676C593.134 -109.097 571.068 -82.1289 557.561 -51.7893C533.556 2.14777 536.587 66.8231 571.313 119.89C625.587 202.804 736.696 225.978 819.477 171.616L819.499 171.639Z" fill="white"/>
</mask>
<g mask="url(#mask10_377_62970)">
<path d="M768.213 195.148L673.731 -152.05" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M731.191 201.198L710.841 -158.1" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M693.746 199.39L748.42 -156.291" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M657.482 189.813L784.796 -146.691" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M624.004 172.912L818.385 -129.725" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M594.761 149.405L847.717 -106.149" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M571.024 120.315L871.499 -76.9708" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M553.861 86.9167L888.728 -43.4833" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M544.01 50.6841L898.624 -7.13751" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M541.87 13.2001L900.742 30.4796" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M547.576 -23.9271L895.014 67.7168" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M560.882 -59.043L881.685 102.947" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M581.165 -90.6341L861.335 134.625" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M607.556 -117.312L834.857 161.392" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
<path d="M638.916 -137.895L803.407 182.044" stroke="black" stroke-width="9.52757" stroke-miterlimit="10"/>
</g>
</g>
</g>
<rect width="1439" height="46" fill="url(#paint10_linear_377_62970)"/>
</g>
<defs>
<clipPath id="clip0">
<linearGradient id="paint0_linear_377_62970" x1="1367.86" y1="-302.353" x2="76.3908" y2="349.522" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFDF00"/>
<stop offset="0.39" stop-color="#FF0093"/>
<stop offset="0.58" stop-color="#FF24D2"/>
<stop offset="0.75" stop-color="#D942FF"/>
<stop offset="1" stop-color="#A94BFF"/>
</linearGradient>
<linearGradient id="paint1_linear_377_62970" x1="1055.64" y1="492.42" x2="387.904" y2="-444.961" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFDF00"/>
<stop offset="0.39" stop-color="#FF0093"/>
<stop offset="0.58" stop-color="#FF24D2"/>
<stop offset="0.75" stop-color="#D942FF"/>
<stop offset="1" stop-color="#A94BFF"/>
</linearGradient>
<linearGradient id="paint2_linear_377_62970" x1="1028.54" y1="305.385" x2="414.33" y2="-257.506" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFDF00"/>
<stop offset="0.39" stop-color="#FF0093"/>
<stop offset="0.58" stop-color="#FF24D2"/>
<stop offset="0.75" stop-color="#D942FF"/>
<stop offset="1" stop-color="#A94BFF"/>
</linearGradient>
<linearGradient id="paint3_linear_377_62970" x1="917.125" y1="253.43" x2="525.515" y2="-205.965" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFDF00"/>
<stop offset="0.39" stop-color="#FF0093"/>
<stop offset="0.58" stop-color="#FF24D2"/>
<stop offset="0.75" stop-color="#D942FF"/>
<stop offset="1" stop-color="#A94BFF"/>
</linearGradient>
<linearGradient id="paint4_linear_377_62970" x1="764.163" y1="-151.107" x2="678.575" y2="196.779" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFDF00"/>
<stop offset="0.39" stop-color="#FF0093"/>
<stop offset="0.58" stop-color="#FF24D2"/>
<stop offset="0.75" stop-color="#D942FF"/>
<stop offset="1" stop-color="#A94BFF"/>
</linearGradient>
<linearGradient id="paint5_linear_377_62970" x1="1367.03" y1="-304.233" x2="75.586" y2="347.632" gradientUnits="userSpaceOnUse">
<stop stop-color="#A775F7"/>
<stop offset="0.26" stop-color="#6000E1"/>
<stop offset="0.66" stop-color="#3B54EE"/>
<stop offset="0.75" stop-color="#17A2F4"/>
<stop offset="1" stop-color="#1AF387"/>
</linearGradient>
<linearGradient id="paint6_linear_377_62970" x1="1157.23" y1="-353.443" x2="285.349" y2="397.13" gradientUnits="userSpaceOnUse">
<stop stop-color="#A775F7"/>
<stop offset="0.26" stop-color="#6000E1"/>
<stop offset="0.66" stop-color="#3B54EE"/>
<stop offset="0.75" stop-color="#17A2F4"/>
<stop offset="1" stop-color="#1AF387"/>
</linearGradient>
<linearGradient id="paint7_linear_377_62970" x1="926.18" y1="-340.891" x2="517.01" y2="385.278" gradientUnits="userSpaceOnUse">
<stop stop-color="#A775F7"/>
<stop offset="0.26" stop-color="#6000E1"/>
<stop offset="0.66" stop-color="#3B54EE"/>
<stop offset="0.75" stop-color="#17A2F4"/>
<stop offset="1" stop-color="#1AF387"/>
</linearGradient>
<linearGradient id="paint8_linear_377_62970" x1="792.608" y1="-272.336" x2="648.305" y2="314.209" gradientUnits="userSpaceOnUse">
<stop stop-color="#A775F7"/>
<stop offset="0.26" stop-color="#6000E1"/>
<stop offset="0.66" stop-color="#3B54EE"/>
<stop offset="0.75" stop-color="#17A2F4"/>
<stop offset="1" stop-color="#1AF387"/>
</linearGradient>
<linearGradient id="paint9_linear_377_62970" x1="763.34" y1="-152.985" x2="677.753" y2="194.901" gradientUnits="userSpaceOnUse">
<stop stop-color="#A775F7"/>
<stop offset="0.26" stop-color="#6000E1"/>
<stop offset="0.66" stop-color="#3B54EE"/>
<stop offset="0.75" stop-color="#17A2F4"/>
<stop offset="1" stop-color="#1AF387"/>
</linearGradient>
<linearGradient id="paint10_linear_377_62970" x1="0" y1="23" x2="1439" y2="23" gradientUnits="userSpaceOnUse">
<stop stop-color="#111112" stop-opacity="0"/>
<stop offset="0.5" stop-color="#111112" stop-opacity="0.8"/>
<stop offset="1" stop-color="#111112" stop-opacity="0"/>
</linearGradient>
<clipPath id="clip0_377_62970">
<rect width="1440" height="46" fill="white"/>
</clipPath>
<clipPath id="clip1_377_62970">
<rect width="1448.19" height="1451.37" fill="white" transform="translate(-2 -702.899)"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 142 KiB

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -1,88 +1,85 @@
/* "pencil banner" style, currently unused */
.top-banner {
display: flex;
align-items: center;
justify-content: center;
height: 46px;
background: url(../img/backgrounds/bg-apex-banner.svg);
background-position: left;
background-position: center !important;
background-size: cover;
background-color: $blue-purple-500;
// padding: 2px 0;
color: $white;
text-align: center;
font-size: 16px;
font-weight: bold;
line-height: 24px;
.btn {
margin-left: 4px;
font-size: 12px;
color: $white;
.inner-apex {
display: flex;
justify-content: center;
align-items: center;
}
.apex-banner-text {
color: #FFF;
font-family: "Work Sans";
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 24px;
}
.apex-btn {
margin-left: 16px;
color: var(--Gray-100, #000) !important;
font-family: "Work Sans";
font-size: 16px;
font-style: normal;
display: flex;
justify-content: center;
font-weight: 600;
align-items: center;
line-height: 100%;
letter-spacing: -0.16px;
padding: 2px 4px;
border: 1px solid $white;
border-radius: 2px;
border-radius: 100px !important;
background: #18FF83 !important;
text-decoration: none !important;
width: 135px;
height: 28px;
}
@include media-breakpoint-up(md) {
margin-top: 9px;
margin-left: 16px;
font-size: 16px;
padding: 4px 8px;
border: 1.5px solid $white;
border-radius: 4px;
@media (max-width: 1024px) {
background: url(../img/backgrounds/bg-apex-banner-md.svg);
.apex-banner-text {
font-size: 18px;
}
.apex-btn {
width: 122px;
height: 26px;
font-size: 14px;
letter-spacing: -0.14px;
}
}
.btn-outline-secondary {
&:not(:disabled):not(.disabled):hover {
color: $gray-900;
background-color: $white;
@media (max-width: 535px) {
background: url(../img/backgrounds/bg-apex-banner-sm.svg);
.apex-btn {
margin-left: 0;
width: 85px;
height: 16px;
font-size: 10px;
line-height: 100%;
letter-spacing: -0.1px;
}
.apex-banner-text {
font-size: 12px;
line-height: 12px;
}
.inner-apex {
flex-direction: column;
gap: 8px;
}
}
p {
font-size: 12px;
line-height: 20px;
text-align: center;
margin: auto;
@include media-breakpoint-up(md) {
padding-top: 11px;
font-size: 16px;
width: initial;
line-height: 24px;
}
}
}
$banner-top-offset: 108px;
.floating-nav {
top: $banner-top-offset;
}
article h1:before,
article h2:before,
article h3:before,
article h4:before,
article h5:before,
article h6:before,
.interactive-block:before {
margin-top: -$banner-top-offset;
height: $banner-top-offset;
}
article h1:first-child:before {
margin-top: -$banner-top-offset;
}
html.light {
.top-banner {
.btn-outline-secondary {
color: $white;
border-color: $white;
&:not(:disabled):not(.disabled):hover {
color: $gray-900;
background-color: $white;
border-color: $white;
}
}
}
}
}

View File

@@ -51,6 +51,7 @@ $line-height-base: 1.5;
@import "_use-cases.scss";
@import "_github-edit.scss";
@import "_top-nav.scss";
@import "_top-banner.scss";
@import "_content.scss";
@import "_code-tabs.scss";
@import "_diagrams.scss";