@font-face {
	font-family: "Cyberpunk";
	font-display: swap;
	src: url(/fonts/Cyberpunk.otf) format("truetype");
}

@font-face {
	font-family: "unscii16";
	font-display: swap;
	src: url(/fonts/unscii-16.woff) format("woff");
}

@font-face {
	font-family: "Rajdhani";
	font-display: swap;
	src: url(/fonts/Rajdhani-Regular.ttf) format("truetype");
}

:root {
	--logo-color: #fff000;
	--logo-shadow: #52bedc;
	--navlink-underlinecolor: #52bedc;
	--button-standard-image: linear-gradient(#73cefb, #4484ce);
	--button-hover-image: linear-gradient(#4484ce, #73cefb);
	--black-gradient-image: linear-gradient(to right, #ffffff22, #00000099);
	--background-gradient-image: linear-gradient(to right, #560a86, #7122fa, #f148fb, #ffacfc);
	--card-header-background-color: #7b61f8;
	--card-body-background-color: #a5d8f3;
	--blockquote-background-color: #181818aa;

	/* bg colors, images and patterns */
	--bg-black: black;
	--bg-white: white;
	--bg-dark: #1b1e1f;
	--bg-light: #f8f9fa;
	--bg-danger: #dc3545;
	--bg-info: #17a2b8;
	--bg-success: #28a745;
	--bg-darkblue: #1b2836;
	--bg-darklila: #6200ee;
	--bg-lightlila: #873df2;
	--bg-sci-fi: #2f404d;
	--bg-image: url(/pics/public_background.webp);
	--bg-pattern: radial-gradient(#575268 0.75px, transparent 0.75px), radial-gradient(#575268 0.75px, #222035 0.75px);

	/* text-colors */
	--text-dark: #1b1e1f;
	--text-danger: #dc3545;
	--text-success: #28a745;
	--text-secondary: #6c757d;
	--text-info: #17a2b8;
	--text-light: #f8f9fa;
	--text-bitcoin: #F7931A;

	/* linear-gradient's for .tabPage-border */
	--standard: linear-gradient(60deg, #08f7fe, #09fbd3, #ffacfc, #f148fb, #7122fa, #560a86, #33135c);
	--cyberpunk: linear-gradient(60deg, #a0ffe3, #65dc98, #8d8980, #575268, #222035);
	--rainbow: linear-gradient(rgba(255, 0, 0, 0.2), rgba(255, 165, 0, 0.2), rgba(255, 255, 0, 0.2), rgba(0, 255, 0, 0.2), rgba(0, 0, 255, 0.2), rgba(75, 0, 130, 0.2), rgba(238, 130, 238, 0.2));
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

::-webkit-scrollbar {
	background-color: #303443;
	width: 8px;
}

::-webkit-scrollbar-thumb {
	background-color: #1b2836;
}

::selection {
	color: #52bedc;
	background-color: #4484ce;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Rajdhani, unscii16, Inconsolata, monospace;
	font-size: 12pt;
	text-rendering: geometricPrecision;
}

/* header START */

.tabPage > header {
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.rainbow {
	background-image: var(--rainbow);
}

/* Tabs ANFANG */

.tabCtrl {
	display: none;
}

.tab {
	position: relative;
	padding: 16px 32px;
	font-weight: bold;
	background-color: var(--bg-sci-fi);
	box-shadow: 0 1px 5px var(--text-light), 1px 1px 5px var(--text-light);
	cursor: pointer;
	display: flex;
	justify-content: center;
	float: left;
	user-select: none;
	z-index: 99;
}

.tab-1 {
	width: 100%;
}

.tab-2 {
	width: 50%;
}

.tab-3 {
	width: 33.33%;
}

.tab-4 {
	width: 25%;
}

.tab-5 {
	width: 20%;
}

.tab-6 {
	width: 16.66%;
}

input#tab1:checked ~ label[for="tab1"] > span,
input#tab2:checked ~ label[for="tab2"] > span,
input#tab3:checked ~ label[for="tab3"] > span,
input#tab4:checked ~ label[for="tab4"] > span,
input#tab5:checked ~ label[for="tab5"] > span,
input#tab6:checked ~ label[for="tab6"] > span {
	background-color: rgba(77, 77, 255);
}

input#tab1:checked ~ div[data-target="tab1"],
input#tab2:checked ~ div[data-target="tab2"],
input#tab3:checked ~ div[data-target="tab3"],
input#tab4:checked ~ div[data-target="tab4"],
input#tab5:checked ~ div[data-target="tab5"],
input#tab6:checked ~ div[data-target="tab6"] {
	position: relative;
	left: unset;
	transform: rotateX(0deg);
	clear: left;
}

.tabPage {
	--border-width: 3px;

	position: absolute;
	left: -999em;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	min-height: calc(100vh - 32px - 5.5rem);
	padding: 15px;
	word-wrap: break-word;
	background-color: var(--bg-sci-fi);

	transform: rotateX(90deg);
	transform-origin: 0 0;
	transition: transform 250ms ease-in-out;
}

@media screen and (min-width: 995px) {
	main {
		position: absolute;
		top: 6.25%;
		left: 6.25%;
		right: 6.25%;
		bottom: 6.25%;
		overflow: hidden;
		margin-left: auto;
		margin-right: auto;
		width: 66.66%;
		border: 5px solid #303443;
		border-radius: 0.5em;
	}

	.body {
		overflow: auto;
		scrollbar-width: thin;
		scrollbar-color: #1b2836 #303443;
		height: calc(100% - 68px);
		scroll-behavior: smooth;
	}

	.tabPage {
		z-index: 1;
	}
}

/* Tabs ENDE */

.header-info {
	display: flex;
	color: white;
	align-items: center;
	justify-content: center;
	padding: 15.75% 15px;
}

.info-field {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #fff000;
	padding: 2px 4px;
	background-color: var(--bg-dark);
	border-radius: 0.25em;
}

.social-media-links {
	position: absolute;
	bottom: 0;
	right: 0;
	background-image: var(--black-gradient-image);
	padding: 4px 8px;
	border-top-left-radius: .25em;
}

.social-media-links a {
	margin-right: .25em;
	font-size: 20px;
}

/* header ENDE */

/* table START */

.tablewrapper {
	overflow-x: auto;
}

.tablewrapper > table {
	border-collapse: collapse;
}

table {
	border-collapse: collapse;
	width: 100%;
}

th {
	padding: 16px 32px;
	font-size: 10pt;
}

td {
	padding: 8px 16px;
	font-size: 8pt;
}

@media screen and (min-width: 997px) {
	th {
		font-size: 18pt;
	}

	td {
		font-size: 14pt;
	}
}

table,
th,
td {
	table-layout: fixed;
	border: 1px dotted var(--text-light);
}

/* table ENDE */

/* navbar START */

.navbar {
	position: relative;
	background-color: #303443;
	padding: 16px 8px;
	user-select: none;
	z-index: 999;
}

.navmenu-button {
	position: relative;
	float: right;
	user-select: none;
	padding: .5em .5em;
}

.navmenu-button-symbol {
	position: relative;
	outline: none;
	cursor: pointer;
	padding: 1em;
	background: none;
}

.navmenu-button-symbol::before {
	content: "";
	position: absolute;
	top: 40%;
	left: 0;
	width: 71%;
	height: 2px;
	background-color: white;

	transform-origin: 0 0;
	transform: rotate(45deg);

	transition: transform 250ms ease-in-out;
	transition: top 250ms ease-in-out;
}

.navmenu-toggler:checked ~ .navmenu-button > .navmenu-button-symbol:before {
	transform: rotate(-45deg);
	top: 60%;
}

.navmenu-button-symbol::after {
	content: "";
	position: absolute;
	top: 40%;
	right: 0;
	width: 71%;
	height: 2px;
	background-color: white;

	transform-origin: 100% 100%;
	transform: rotate(-45deg);

	transition: transform 250ms ease-in-out;
	transition: top 250ms ease-in-out;
}

.navmenu-toggler:checked ~ .navmenu-button > .navmenu-button-symbol::after {
	transform: rotate(45deg);
	top: 60%;
}

.navmenu-toggler {
	display: none;
}

.navmenu-toggler:checked ~ .navmenu {
	display: block;
}

.navmenu {
	position: relative;
	text-align: right;
	list-style: none;
	display: none;
}

.navitem {
	margin-bottom: 1em;
}

.navlink {
	position: relative;
	font-family: Rajdhani, unscii16, Inconsolata, monospace;
	text-transform: uppercase;
	text-decoration: none;
	padding: 8px 0;
	cursor: pointer;
}

.navmenu .navlink::after {
	content: " " attr(title);
}

.navlink:hover {
	text-decoration: none;
}

.navlink::before {
	content: "";
	position: absolute;
	bottom: 0;
	background-color: var(--navlink-underlinecolor);
	width: 100%;
	height: 5px;
	box-shadow: 0 0 10px var(--navlink-underlinecolor);

	transform: scaleX(0);
	transform-origin: right;
	transition: transform 250ms ease-in-out;
}

.navlink:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

@media screen and (min-width: 992px) {
	.navmenu-button {
		display: none;
	}

	.navmenu {
		all: unset;
		list-style: none;
		display: inline;
		margin: .5em;
		float: right;
	}

	.navitem {
		all: unset;
		margin-left: .5em;
		display: inline;
	}

	.navmenu .navlink::after {
		all: unset;
	}
}

.navlink-blueshadow {
	text-shadow: 2px 2px #52bedc;
}

/* navbar ENDE */

/* logo START */

.logo {
	text-transform: uppercase;
	text-decoration: none;
	font-family: Rajdhani, unscii16, Inconsolata, monospace;
	letter-spacing: .5rem;
	font-size: 2rem;
}

.logo:hover {
	text-decoration: none;
}

.blink {
	display: inline;
	animation: blink 1.5s linear 0s infinite alternate;
}

@keyframes blink {
	0% {
		text-shadow: 2px 2px 0px var(--logo-shadow);
		color: var(--logo-color);
	}
	75% {
		text-shadow: 0 0 10px var(--logo-shadow);
		color: var(--logo-color);
	}
	100% {
		text-shadow: 0 0 0px white;
		color: var(--logo-color);
	}
}

.alternate-logo {
	color: var(--logo-color);
	text-transform: uppercase;
	text-decoration: none;
	text-shadow: 3px 3px 0px var(--logo-shadow);
	font-family: "Cyberpunk", sans-serif;
	font-size: 2rem;
	display: inline;
}

/* Headline ENDE */

/* stylish-button tuxchan button START */

.stylish-button {
	position: relative;
	background-color: rgba(0, 0, 0, 0);
	font-family: Rajdhani, unscii16, sans-serif;
	font-size: 15px;
	outline: none;
	border: 1px dotted var(--text-light);
	color: var(--text-light);
	padding: 8px 18px;
	cursor: pointer;
	user-select: none;
}

.stylish-button:hover {
	text-decoration: none;
	color: var(--text-light);
}

.stylish-button::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background-color: var(--text-light);
	opacity: 0.5;

	transition: height 500ms ease-in-out;
}

.stylish-button:hover::before {
	height: 100%;
}

.stylish-button:active {
	border: 1px solid white;
}

.input-group {
	display: flex;
	justify-content: center;
}

.input-group > * {
	height: calc(1.5em + 0.75rem + 2px);
	padding: 4px 8px;
	border-radius: unset;
}

.input-group > *:first-child {
	border-top-left-radius: 0.25em;
	border-bottom-left-radius: 0.25em;
}

.input-group > *:last-child {
	border-top-right-radius: 0.25em;
	border-bottom-right-radius: 0.25em;
}

/* stylish-button tuxchan button ENDE */

/* container START */

.container {
	position: relative;
	width: 100%;
	padding: 15px;
	margin-right: auto;
	margin-left: auto;
	word-wrap: break-word;
	z-index: 1;
}

/* container ENDE */

/* inputfield START */

.inputfield {
	display: block;
	outline: none;
	width: 100%;
	height: calc(1.5em + 0.75rem + 2px);
	padding: 0.375rem 0.75rem;
	font-family: Rajdhani, unscii16, sans-serif;
	font-size: 12pt;
	font-weight: 400;
	line-height: 1.5;
	color: #e8e6e3;
	background-clip: padding-box;
	background-color: rgba(0, 0, 0, 0);
	border: 1px dotted var(--text-light);
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.textareafield {
	display: block;
	outline: none;
	width: 100%;
	padding: 0.375rem 0.75rem;
	font-family: Rajdhani, unscii16, sans-serif;
	font-size: 12pt;
	font-weight: 400;
	line-height: 1.5;
	color: #e8e6e3;
	background-color: rgba(0, 0, 0, 0);
	background-clip: padding-box;
	border: 1px dotted var(--text-light);
	resize: vertical;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.inputfield:placeholder,
.textareafield:placeholder {
	color: #625f5b;
	opacity: 1;
}

fieldset {
	border: none;
}

/* inputfield ENDE */

/* infobox START */

.infobox {
	position: relative;
	margin-right: auto;
	margin-left: auto;
	padding: 32px 16px;
	width: 25%;
	background-color: #2f404d;
	border: 1px solid #6287f8;
}

.infoheader {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 8px;
	font-weight: bold;
	background-color: #6287f8;
}

/* infobox ENDE */

/* selectmenu START */

.select-wrapper {
	position: relative;
	width: auto;
}

.select-wrapper .fa-caret-down {
	position: absolute;
	top: 10px;
	right: 15px;
	color: silver;
	z-index: 0;
}

select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	width: 100%;
	height: 40px;
	-moz-padding-start: calc(10px - 3px);
	padding-left: 10px;
	background: url(/pics/select_background.png) repeat;
	color: silver;
	font-family: Rajdhani, monospace, sans-serif;
	box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.3);
	border-radius: .25em;
	outline: none;
	cursor: pointer;
}

select option {
	color: silver;
}

select::-ms-expand {
	display: none;
}

select:focus::-ms-value {
	background-color: transparent;
}

/* selectmenu ENDE */

/* blockquote START */

.usersites {
	display: grid;
	grid-template-areas: "card";
	grid-row-gap: 0;
	grid-column-gap: 16px;
}

@media screen and (min-width: 992px) {
	.usersites {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

blockquote {
	margin: 0;
	border-radius: .25em;
	padding: .25em;
	border: 1px dotted var(--text-light);
	box-shadow: 0 0 5px var(--text-light);
}

.blockquote-header {
	margin: 0 0 1rem;
	font-size: 80%;
	color: #6c757d;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 5px;
	border-bottom: 1px dotted var(--text-light);
}

.blockquote-header::before {
	content: "\2014\00A0";
}

.blockquote-header > span {
	margin-left: .5em;
}

.blockquote-footer {
	font-size: 80%;
	color: #6c757d;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 5px;
	border-top: 1px dotted var(--text-light);
}

.blockquote-footer::before {
	content: "\2014\00A0";
}

.blockquote-footer > span {
	margin-left: .5em;
}

/* blockquote ENDE */

/* cols START */

.row-center {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.row {
	display: flex;
	flex-direction: column;
}

.items-center-align {
	align-items: center;
}

.items-baseline-align {
	justify-content: baseline !important;
}

.display-inline {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.col-big,
.col-small,
.col-middle {
	width: 100%;
	margin: .5em;
}

@media screen and (min-width: 992px) {
	.row-center {
		width: 75%;
	}

	.row {
		flex-direction: row;
	}

	.col-small {
		width: 25%;
	}

	.col-middle {
		width: 50%;
	}

	.col-big {
		width: 75%;
	}
}

/* cols ENDE */

/* .usersite START */

.usersite {
	position: relative;
	user-select: none;
	cursor: pointer;
	z-index: 10;

	transition: transform 250ms ease-in-out;
}

.usersite::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: .25em;
	background-color: var(--bg-darkblue);
	z-index: -1;

	transform: scaleX(0);
	transform-origin: left;
	transition: transform 500ms ease-in-out;
}

.usersite:hover::after {
	transform: scaleX(1);
	transform-origin: right;
}

.usersite:hover {
	transform: scale(1.05, 1.05);
}

/* .usersite ENDE */

/* card START */

.card {
	display: flex;
	flex-direction: column;
	word-wrap: break-word;
	border-radius: .25em;
	box-shadow: 0 0 10px gray;
	z-index: 0;
}

.card-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 8px 16px;
	font-weight: bold;
	border-bottom: 1px solid gray;
	background-color: #88888899;
	border-top-left-radius: .25em;
	border-top-right-radius: .25em;
}

.card-header > * {
	margin-right: .5em;
}

.card-footer {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 8px 16px;
	font-weight: bold;
	border-top: 1px solid gray;
	border-top-left-radius: .25em;
	border-top-right-radius: .25em;
}

.usercard-header-color {
	background-color: var(--card-header-background-color);
}

.card-body {
	padding: 16px 32px;
	border-bottom-left-radius: .25em;
	border-bottom-right-radius: .25em;
}

.usercard-body-color {
	background-color: var(--card-body-background-color);
}

.infos {
	display: grid;
	grid-template-areas: "item" "item" "item" "item";
	grid-column-gap: 1em;
}

@media screen and (min-width: 800px) {
	.infos {
		grid-template-areas: "item item item item";
	}
}

.item {
	word-wrap: break-word;
}

/* card ENDE */

/* modal START */

.modal {
	position: fixed;
	top: 150px;
	left: 10%;
	right: 10%;
	width: auto;
	background-color: var(--bg-sci-fi);
	border: 2px solid #303443;
	border-radius: .5em;
	z-index: 1010;

	transform: rotateX(90deg);
	transform-origin: 0 0;
	transition: transform 250ms ease-in-out;
}

@media screen and (min-width: 800px) {
	.modal {
		left: 35%;
		right: 35%;
	}
}

.modal-header {
	color: white;
	padding: 4px 8px;
	text-align: center;
	font-weight: bold;
}

.modal-header .close {
	float: right;
	cursor: pointer;
}

.modal-header .close:hover {
	color: red;
}

.modal-body {
	padding: 4px 8px;
}

.modal-body > form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-row-gap: 10px;
}

.modal-body > form > label {
	justify-self: center;
	align-self: center;
}

.modal-body > form > input {
	justify-self: start;
	align-self: center;
}

.modal-body > form > button {
	grid-column: 1 / 3;
	padding: 8px 16px;
}

.modal-footer {
	padding: 4px 8px;
	text-align: right;
	font-weight: bold;
}

.close-modal-button {
	display: none;
}

.close-modal-button:checked + .modal {
	transform: rotateX(0deg);
}

.cookieBannerCtrl {
	display: none;
}

.cookiebanner {
	z-index: 99999;
	font-weight: 900;
	border: 1px dotted var(--text-light);
	word-wrap: break-word;
	text-align: justify;
	display: flex;
	flex-direction: column;
	display: none;
}

.cookieBannerCtrl:checked + .cookiebanner {
	display: block;
}

/* modal ENDE */

/* accordion START */

.accordion {
	width: 100%;
	border-radius: 10px;
	border: 1px solid gray;
}

.accordion-header {
	width: 100%;
	padding: 8px 16px;
	border: 1px solid gray;
	font-weight: bold;
	border-radius: 10px;
	cursor: pointer;
	user-select: none;
}

.accordion-header:hover {
	background-color: var(--blockquote-background-color);
	color: black;

	transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
}

.accordion-body {
	width: 100%;
	padding: 8px 16px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	word-wrap: break-word;
}

.visible {
	display: block;
}

.invisible {
	display: none;
}

/* accordion ENDE */

/* a link START */

a {
	color: #52bedc;
	text-decoration: none;
	background-color: transparent;
}

a:hover {
	color: #4484ce;
	text-decoration: underline;
}

/* a link ENDE */

/* spinner START */

.spinner-round {
	border: 5px solid #4484ce;
	border-radius: 50%;
	border-bottom-color: transparent;
	width: 30px;
	height: 30px;
	box-shadow: 5px 0 10px #73cefb, -5px 0 10px #73cefb, 0 -5px 10px #73cefb;
	animation: spin .75s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* spinner ENDE */

/* Embed media START */

.embed-responsive {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
}

.embed-responsive::before {
	display: block;
	content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.embed-responsive-16by9::before {
	padding-top: 56.25%;
}
/* embed media ENDE */

/* headings START */

h1 {
	font-size: 32pt;
	margin: 0;
	padding: 0;
}

h2 {
	font-size: 28pt;
	margin: 0;
	padding: 0;
}

h3 {
	font-size: 24pt;
	margin: 0;
	padding: 0;
}

h4 {
	font-size: 20pt;
	margin: 0;
	padding: 0;
}

h5 {
	font-size: 14pt;
	margin: 0;
	padding: 0;
}

/* headings ENDE */

/* footer START */

.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
}

/* footer ENDE */

/* speechbubble START */

.speechbubble-right {
	position: relative;
	background-color: #01012b;
	color: white;
	padding: 8px 16px;
	border-radius: 1em;
	text-align: right;
}

.speechbubble-right::before {
	content: "";
	position: absolute;
	width: 50px;
	height: 50px;
	bottom: calc(-50px + 1em);
	right: 0;
	background-color: #01012b;
	border-radius: 50%;
}

.speechbubble-right::after {
	content: "";
	position: absolute;
	width: 50px;
	height: 50px;
	bottom: -50px;
	right: 1em;
	background-color: var(--bg-darkblue);
	border-top-right-radius: 50%;
}

.speechbubble-left {
	position: relative;
	background-color: #01012b;
	color: white;
	padding: 8px 16px;
	border-radius: 1em;
	text-align: left;
}

.speechbubble-left::before {
	content: "";
	position: absolute;
	width: 50px;
	height: 50px;
	bottom: calc(-50px + 1em);
	left: 0;
	background-color: #01012b;
	border-radius: 50%;
}

.speechbubble-left::after {
	content: "";
	position: absolute;
	width: 50px;
	height: 50px;
	bottom: -50px;
	left: 1em;
	background-color: var(--bg-darkblue);
	border-top-left-radius: 50%;
}

/* speechbubble ENDE */

/* Utilities START */

input {
	font-family: Rajdhani, monospace, sans-serif;
}

input[type="file"] {
	display: none;
}

.justify-content-centered {
	display: flex;
	align-items: center;
	justify-content: center;
}

.padding-top-small {
	padding-top: .5em;
}

.padding-bottom-small {
	padding-bottom: .5em;
}

.padding-big {
	padding: 2.5em;
}

.padding-middle {
	padding: 1.5em;
}

.padding-small {
	padding: .5em;
}

.mt-n15 {
	margin-top: -15px;
}

.ml-n15 {
	margin-left: -15px;
}

.mr-n15 {
	margin-right: -15px;
}

.mb-n15 {
	margin-bottom: -15px;
}

.ml-n50p {
	margin-left: -15px;
}

.mr-n50p {
	margin-right: -15px;
}

@media screen and (min-width: 992px) {
	.ml-n50p {
		margin-left: calc(-50% - 30px);
	}

	.mr-n50p {
		margin-right: calc(-50% - 30px);
	}
}

.margin-top-small {
	margin-top: .5em;
}

.margin-top-middle {
	margin-top: 1.5em;
}

.margin-top-big {
	margin-top: 2.5em;
}

.margin-bottom-big {
	margin-bottom: 2.5em;
}

.margin-bottom-middle {
	margin-bottom: 1.5em;
}

.margin-bottom-small {
	margin-bottom: .5em;
}

.margin-big {
	margin: 2.5em;
}

.margin-middle {
	margin: 1.5em;
}

.margin-small {
	margin: .5em;
}

.margin-left-small {
	margin-left: .5em;
}

.margin-left-middle {
	margin-left: 1.5em;
}

.margin-right-small {
	margin-right: .5em;
}

.margin-right-middle {
	margin-right: 1.5em;
}

.textSize-big {
	font-size: 22pt;
}

.textSize-middle {
	font-size: 16pt;
}

.textSize-small {
	font-size: 10pt;
	font-style: none;
}

.wd-break {
	word-wrap: break-word;
}

.img-75 {
	width: 75%;
}

.dotted-border {
	border: 1px dotted var(--text-light);
}

.dotted-border-top {
	border-top: 1px dotted var(--text-light);
}

.dotted-border-bottom {
	border-bottom: 1px dotted var(--text-light);
}

.bg-black {
	background-color: var(--bg-black);
}

.bg-white {
	background-color: var(--bg-white);
}

.bg-dark {
	background-color: var(--bg-dark);
}

.bg-light {
	background-color: var(--bg-light);
}

.bg-danger {
	background-color: var(--bg-danger);
}

.bg-info {
	background-color: var(--bg-info);
}

.bg-success {
	background-color: var(--bg-success);
}

.bg-darkblue {
	background-color: var(--bg-darkblue);
}

.bg-sci-fi {
	background-color: var(--bg-sci-fi);
}

.bg-image {
	background-image: var(--bg-image);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-attachment: fixed;
}

.bg-pattern {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='1980' height='1080' preserveAspectRatio='none' viewBox='0 0 1980 1080'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1032%26quot%3b)' fill='none'%3e%3crect width='1980' height='1080' x='0' y='0' fill='rgba(47%2c 64%2c 77%2c 1)'%3e%3c/rect%3e%3cg mask='url(%26quot%3b%23SvgjsMask1033%26quot%3b)'%3e%3cpath d='M862.5 37.5L1337.5 512.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M856.25 37.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1331.25 512.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M187.5 687.5L187.5 712.5L162.5 737.5L162.5 812.5L137.5 837.5L12.5 837.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M181.25 687.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM6.25 837.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1737.5 987.5L1737.5 737.5L1712.5 712.5L1512.5 712.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1731.25 987.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1506.25 712.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M962.5 687.5L1237.5 687.5L1337.5 787.5L1337.5 887.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M956.25 687.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1331.25 887.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1137.5 237.5L1112.5 237.5L1087.5 212.5L1087.5 12.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1131.25 237.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1081.25 12.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1562.5 37.5L1112.5 37.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1556.25 37.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1106.25 37.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1812.5 887.5L1762.5 837.5L1762.5 612.5L1737.5 587.5L1737.5 412.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1806.25 887.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1731.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M812.5 1012.5L812.5 1087.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M806.25 1012.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM806.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M262.5 937.5L412.5 787.5L437.5 787.5L487.5 737.5L487.5 512.5L512.5 487.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M256.25 937.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM506.25 487.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M362.5 912.5L837.5 437.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M356.25 912.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM831.25 437.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M962.5 537.5L862.5 637.5L862.5 1012.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M956.25 537.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM856.25 1012.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1537.5 362.5L1612.5 437.5L1662.5 437.5L1687.5 462.5L1712.5 462.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1531.25 362.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1706.25 462.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M137.5 962.5L462.5 637.5L462.5 487.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M131.25 962.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM456.25 487.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1587.5 337.5L1312.5 62.5L1112.5 62.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1581.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1106.25 62.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M637.5 287.5L637.5 612.5L512.5 737.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M631.25 287.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM506.25 737.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M262.5 962.5L237.5 937.5L187.5 937.5L37.5 1087.5L12.5 1087.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M256.25 962.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM6.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1062.5 512.5L1037.5 537.5L1037.5 562.5L1137.5 662.5L1312.5 662.5L1462.5 512.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1056.25 512.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1456.25 512.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M12.5 362.5L137.5 487.5L437.5 487.5L487.5 437.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M6.25 362.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM481.25 437.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1012.5 587.5L1012.5 212.5L962.5 162.5L912.5 162.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1006.25 587.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM906.25 162.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M187.5 362.5L187.5 412.5L237.5 462.5L437.5 462.5L562.5 337.5L612.5 337.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M181.25 362.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM606.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1887.5 362.5L1837.5 362.5L1762.5 437.5L1762.5 587.5L1962.5 787.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1881.25 362.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1956.25 787.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M737.5 187.5L737.5 337.5L662.5 412.5L662.5 587.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M731.25 187.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM656.25 587.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1487.5 862.5L1712.5 862.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1481.25 862.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1706.25 862.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1687.5 662.5L1737.5 612.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1681.25 662.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1731.25 612.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1487.5 12.5L1962.5 12.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1481.25 12.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1956.25 12.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1712.5 737.5L1512.5 737.5L1487.5 712.5L1487.5 637.5L1437.5 587.5L1437.5 562.5L1537.5 462.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1706.25 737.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1531.25 462.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M37.5 212.5L137.5 312.5L512.5 312.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M31.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM506.25 312.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M612.5 812.5L787.5 812.5L837.5 862.5L837.5 1062.5L862.5 1087.5L887.5 1087.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M606.25 812.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM881.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1662.5 137.5L1587.5 62.5L1462.5 62.5L1412.5 112.5L1412.5 137.5L1612.5 337.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1656.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1606.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M987.5 737.5L1112.5 862.5L1112.5 1037.5L1062.5 1087.5L987.5 1087.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M981.25 737.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM981.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M962.5 12.5L1062.5 12.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M956.25 12.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1056.25 12.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1287.5 312.5L1162.5 312.5L1112.5 262.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1281.25 312.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1106.25 262.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M612.5 787.5L612.5 737.5L587.5 712.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M606.25 787.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM581.25 712.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1162.5 262.5L1487.5 262.5L1637.5 412.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1156.25 262.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1631.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M337.5 1037.5L337.5 887.5L412.5 812.5L437.5 812.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M331.25 1037.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM431.25 812.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M662.5 862.5L512.5 1012.5L512.5 1087.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M656.25 862.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM506.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M287.5 687.5L387.5 687.5L412.5 662.5L412.5 587.5L437.5 562.5L437.5 512.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M281.25 687.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM431.25 512.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M912.5 137.5L762.5 287.5L762.5 387.5L687.5 462.5L687.5 562.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M906.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM681.25 562.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M862.5 362.5L787.5 362.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M856.25 362.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM781.25 362.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M562.5 287.5L562.5 312.5L437.5 437.5L237.5 437.5L212.5 412.5L212.5 337.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M556.25 287.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM206.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1787.5 962.5L1812.5 937.5L1862.5 937.5L1937.5 862.5L1987.5 862.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1781.25 962.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1981.25 862.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1687.5 1037.5L1337.5 1037.5L1287.5 1087.5L1212.5 1087.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1681.25 1037.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1206.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M987.5 537.5L987.5 662.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M981.25 537.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM981.25 662.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M12.5 762.5L12.5 812.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M6.25 762.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM6.25 812.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1862.5 212.5L1987.5 337.5L1987.5 487.5L1962.5 512.5L1787.5 512.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1856.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1781.25 512.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1962.5 462.5L1787.5 462.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1956.25 462.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1781.25 462.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1137.5 187.5L1137.5 212.5L1162.5 237.5L1462.5 237.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1131.25 187.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1456.25 237.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1287.5 587.5L1087.5 587.5L1062.5 562.5L1062.5 537.5L1187.5 412.5L1212.5 412.5L1287.5 487.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1281.25 587.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1281.25 487.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1962.5 362.5L1962.5 337.5L1762.5 137.5L1687.5 137.5L1587.5 37.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1956.25 362.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1581.25 37.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1762.5 1037.5L1812.5 1087.5L1987.5 1087.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1756.25 1037.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1981.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1937.5 687.5L1987.5 687.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1931.25 687.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1981.25 687.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M737.5 862.5L812.5 937.5L812.5 987.5L712.5 1087.5L537.5 1087.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M731.25 862.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM531.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1562.5 762.5L1687.5 762.5L1712.5 787.5L1712.5 837.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1556.25 762.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1706.25 837.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M337.5 12.5L437.5 12.5L712.5 287.5L712.5 337.5L662.5 387.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M331.25 12.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM656.25 387.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M62.5 937.5L37.5 937.5L12.5 912.5L12.5 862.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M56.25 937.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM6.25 862.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M62.5 362.5L162.5 362.5L187.5 337.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M56.25 362.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM181.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M987.5 287.5L787.5 287.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M981.25 287.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM781.25 287.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1812.5 162.5L1937.5 37.5L1987.5 37.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1806.25 162.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1981.25 37.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1762.5 312.5L1762.5 412.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1756.25 312.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1756.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M612.5 412.5L587.5 412.5L537.5 462.5L537.5 687.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M606.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM531.25 687.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M862.5 412.5L862.5 437.5L937.5 512.5L937.5 537.5L787.5 687.5L612.5 687.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M856.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM606.25 687.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1612.5 837.5L1687.5 837.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1606.25 837.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1681.25 837.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M487.5 862.5L612.5 862.5L637.5 837.5L787.5 837.5L812.5 862.5L812.5 912.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M481.25 862.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM806.25 912.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1962.5 762.5L1987.5 787.5L1987.5 837.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1956.25 762.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1981.25 837.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1137.5 812.5L1262.5 937.5L1262.5 1062.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1131.25 812.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1256.25 1062.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M887.5 37.5L1012.5 162.5L1062.5 162.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M881.25 37.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1056.25 162.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M862.5 512.5L862.5 462.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M856.25 512.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM856.25 462.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M387.5 1012.5L362.5 987.5L362.5 937.5L562.5 737.5L587.5 737.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M381.25 1012.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM581.25 737.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M487.5 1012.5L537.5 962.5L537.5 912.5L512.5 887.5L437.5 887.5L387.5 937.5L387.5 987.5L462.5 1062.5L462.5 1087.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M481.25 1012.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM456.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1087.5 737.5L1262.5 737.5L1312.5 787.5L1312.5 1037.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1081.25 737.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1306.25 1037.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M787.5 37.5L787.5 137.5L837.5 187.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M781.25 37.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM831.25 187.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M87.5 112.5L12.5 187.5L12.5 337.5L37.5 362.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M81.25 112.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM31.25 362.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M162.5 62.5L162.5 37.5L137.5 12.5L62.5 12.5L12.5 62.5L12.5 162.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M156.25 62.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM6.25 162.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M62.5 662.5L137.5 737.5L137.5 812.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M56.25 662.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM131.25 812.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1012.5 637.5L1037.5 662.5L1112.5 662.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1006.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1106.25 662.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M187.5 237.5L237.5 237.5L287.5 287.5L512.5 287.5L587.5 212.5L612.5 212.5L662.5 262.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M181.25 237.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM656.25 262.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1687.5 637.5L1712.5 612.5L1712.5 487.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1681.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1706.25 487.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M837.5 512.5L887.5 562.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M831.25 512.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM881.25 562.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M837.5 812.5L812.5 812.5L737.5 737.5L662.5 737.5L637.5 762.5L637.5 787.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M831.25 812.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM631.25 787.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1362.5 462.5L1362.5 487.5L1412.5 537.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1356.25 462.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1406.25 537.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M37.5 412.5L287.5 662.5L387.5 662.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M31.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM381.25 662.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1762.5 212.5L1962.5 412.5L1962.5 437.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1756.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1956.25 437.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M387.5 737.5L462.5 737.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M381.25 737.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM456.25 737.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1137.5 387.5L1112.5 387.5L1037.5 312.5L1037.5 237.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1131.25 387.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1031.25 237.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1837.5 262.5L1862.5 262.5L1937.5 337.5L1937.5 362.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1831.25 262.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1931.25 362.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1837.5 562.5L1987.5 562.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1831.25 562.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1981.25 562.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M937.5 487.5L962.5 512.5L987.5 512.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M931.25 487.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM981.25 512.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1362.5 812.5L1687.5 812.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1356.25 812.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1681.25 812.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1487.5 837.5L1337.5 987.5L1337.5 1012.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1481.25 837.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1331.25 1012.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1412.5 512.5L1437.5 487.5L1487.5 487.5L1562.5 412.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1406.25 512.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1556.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1162.5 187.5L1112.5 137.5L1112.5 87.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1156.25 187.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1106.25 87.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M387.5 412.5L312.5 337.5L237.5 337.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M381.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM231.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M787.5 462.5L937.5 312.5L987.5 312.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M781.25 462.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM981.25 312.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1487.5 537.5L1462.5 562.5L1462.5 587.5L1562.5 687.5L1737.5 687.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1481.25 537.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1731.25 687.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1937.5 637.5L1987.5 637.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1931.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1981.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M587.5 987.5L587.5 962.5L662.5 887.5L737.5 887.5L787.5 937.5L787.5 987.5L712.5 1062.5L637.5 1062.5L612.5 1037.5L587.5 1037.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M581.25 987.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM581.25 1037.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M337.5 62.5L362.5 37.5L437.5 37.5L587.5 187.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M331.25 62.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM581.25 187.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M337.5 812.5L362.5 812.5L412.5 762.5L437.5 762.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M331.25 812.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM431.25 762.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M762.5 562.5L812.5 612.5L837.5 612.5L862.5 587.5L862.5 562.5L837.5 537.5L762.5 537.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M756.25 562.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM756.25 537.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1487.5 762.5L1462.5 787.5L1362.5 787.5L1262.5 687.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1481.25 762.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1256.25 687.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1212.5 787.5L1287.5 787.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1206.25 787.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1281.25 787.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M887.5 912.5L1062.5 912.5L1087.5 887.5L1087.5 862.5L962.5 737.5L962.5 712.5L887.5 637.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M881.25 912.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM881.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M12.5 587.5L137.5 712.5L162.5 712.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M6.25 587.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM156.25 712.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M712.5 987.5L687.5 987.5L662.5 1012.5L662.5 1037.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M706.25 987.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM656.25 1037.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M137.5 637.5L137.5 687.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M131.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM131.25 687.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M112.5 437.5L87.5 412.5L87.5 387.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M106.25 437.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM81.25 387.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M437.5 237.5L262.5 237.5L237.5 212.5L137.5 212.5L112.5 237.5L112.5 262.5L137.5 287.5L237.5 287.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M431.25 237.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM231.25 287.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1987.5 112.5L1987.5 62.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1981.25 112.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1981.25 62.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1687.5 612.5L1687.5 487.5L1662.5 462.5L1562.5 462.5L1512.5 512.5L1512.5 537.5L1487.5 562.5L1487.5 587.5L1562.5 662.5L1587.5 662.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1681.25 612.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1581.25 662.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1637.5 337.5L1637.5 387.5L1687.5 437.5L1712.5 437.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1631.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1706.25 437.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1912.5 1037.5L1837.5 962.5L1812.5 962.5L1687.5 1087.5L1437.5 1087.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1906.25 1037.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1431.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M862.5 87.5L787.5 12.5L462.5 12.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M856.25 87.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM456.25 12.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1387.5 712.5L1387.5 612.5L1412.5 587.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1381.25 712.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1406.25 587.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1287.5 287.5L1462.5 462.5L1487.5 462.5L1537.5 412.5L1537.5 387.5L1462.5 312.5L1337.5 312.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1281.25 287.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1331.25 312.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1237.5 137.5L1237.5 87.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1231.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1231.25 87.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1587.5 187.5L1587.5 287.5L1612.5 312.5L1687.5 312.5L1712.5 337.5L1737.5 337.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1581.25 187.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1731.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1237.5 887.5L1112.5 762.5L1087.5 762.5L1037.5 712.5L987.5 712.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1231.25 887.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM981.25 712.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1387.5 912.5L1462.5 837.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1381.25 912.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1456.25 837.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M612.5 487.5L562.5 537.5L562.5 662.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M606.25 487.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM556.25 662.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1787.5 562.5L1787.5 587.5L1912.5 712.5L1962.5 712.5L1987.5 737.5L1987.5 762.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1781.25 562.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1981.25 762.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M237.5 112.5L237.5 12.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M231.25 112.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM231.25 12.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M937.5 212.5L887.5 262.5L812.5 262.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M931.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM806.25 262.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1937.5 212.5L1937.5 262.5L1987.5 312.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1931.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1981.25 312.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M887.5 887.5L887.5 662.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M881.25 887.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM881.25 662.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M637.5 87.5L587.5 87.5L537.5 37.5L487.5 37.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M631.25 87.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM481.25 37.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1212.5 187.5L1212.5 87.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1206.25 187.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1206.25 87.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M612.5 837.5L487.5 837.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M606.25 837.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM481.25 837.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M862.5 112.5L812.5 62.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M856.25 112.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM806.25 62.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M762.5 637.5L812.5 637.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M756.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM806.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1187.5 812.5L1287.5 912.5L1287.5 1062.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1181.25 812.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1281.25 1062.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M287.5 762.5L12.5 1037.5L12.5 1062.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M281.25 762.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM6.25 1062.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M887.5 962.5L887.5 1062.5L912.5 1087.5L937.5 1087.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M881.25 962.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM931.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1462.5 387.5L1512.5 387.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1456.25 387.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1506.25 387.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M962.5 762.5L912.5 812.5L912.5 862.5L937.5 887.5L1062.5 887.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M956.25 762.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1056.25 887.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M312.5 87.5L262.5 37.5L262.5 12.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M306.25 87.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM256.25 12.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1862.5 712.5L1787.5 787.5L1787.5 837.5L1862.5 912.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1856.25 712.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1856.25 912.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M837.5 337.5L787.5 337.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M831.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM781.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M512.5 587.5L512.5 512.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M506.25 587.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM506.25 512.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1912.5 187.5L1962.5 137.5L1962.5 62.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1906.25 187.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1956.25 62.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M237.5 562.5L212.5 562.5L162.5 512.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M231.25 562.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM156.25 512.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1337.5 212.5L1437.5 212.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1331.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1431.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1337.5 612.5L1337.5 537.5L1362.5 512.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1331.25 612.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1356.25 512.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1912.5 437.5L1812.5 437.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1906.25 437.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1806.25 437.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1062.5 962.5L1062.5 1037.5L1037.5 1062.5L987.5 1062.5L912.5 987.5L912.5 962.5L887.5 937.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1056.25 962.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM881.25 937.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1662.5 962.5L1612.5 1012.5L1587.5 1012.5L1462.5 887.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1656.25 962.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1456.25 887.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M712.5 112.5L712.5 162.5L662.5 212.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M706.25 112.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM656.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1812.5 487.5L1962.5 487.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1806.25 487.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1956.25 487.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M337.5 212.5L262.5 137.5L262.5 62.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M331.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM256.25 62.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M237.5 637.5L212.5 662.5L212.5 812.5L112.5 912.5L37.5 912.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M231.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM31.25 912.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1787.5 912.5L1787.5 937.5L1762.5 962.5L1762.5 987.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1781.25 912.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1756.25 987.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1462.5 337.5L1412.5 387.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1456.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1406.25 387.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M62.5 562.5L112.5 512.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M56.25 562.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM106.25 512.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M762.5 612.5L712.5 662.5L637.5 662.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M756.25 612.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM631.25 662.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1862.5 1012.5L1912.5 1062.5L1937.5 1062.5L1987.5 1012.5L1987.5 962.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1856.25 1012.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1981.25 962.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M187.5 1012.5L187.5 1087.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M181.25 1012.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM181.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1887.5 137.5L1887.5 112.5L1937.5 62.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1881.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1931.25 62.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M587.5 137.5L587.5 112.5L562.5 87.5L537.5 87.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M581.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM531.25 87.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1137.5 137.5L1137.5 87.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1131.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1131.25 87.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M437.5 712.5L462.5 687.5L462.5 662.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M431.25 712.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM456.25 662.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1412.5 62.5L1337.5 62.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1406.25 62.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1331.25 62.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M687.5 37.5L687.5 162.5L662.5 187.5L637.5 187.5L612.5 162.5L612.5 112.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M681.25 37.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM606.25 112.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M887.5 12.5L1012.5 137.5L1062.5 137.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M881.25 12.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1056.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1237.5 487.5L1162.5 487.5L1087.5 562.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1231.25 487.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1081.25 562.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M487.5 237.5L437.5 187.5L437.5 87.5L412.5 62.5L362.5 62.5L287.5 137.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M481.25 237.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM281.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M412.5 987.5L487.5 1062.5L487.5 1087.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M406.25 987.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM481.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1612.5 212.5L1612.5 287.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1606.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1606.25 287.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1012.5 62.5L987.5 37.5L937.5 37.5L912.5 12.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1006.25 62.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM906.25 12.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M112.5 337.5L37.5 262.5L37.5 237.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M106.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM31.25 237.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1962.5 987.5L1912.5 937.5L1912.5 912.5L1937.5 887.5L1987.5 887.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1956.25 987.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1981.25 887.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1637.5 37.5L1912.5 37.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1631.25 37.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1906.25 37.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M737.5 112.5L812.5 187.5L812.5 212.5L787.5 237.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M731.25 112.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM781.25 237.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M487.5 137.5L462.5 162.5L462.5 187.5L512.5 237.5L512.5 262.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M481.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM506.25 262.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1237.5 337.5L1187.5 337.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1231.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1181.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M87.5 712.5L12.5 637.5L12.5 612.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M81.25 712.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM6.25 612.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1087.5 712.5L1237.5 712.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1081.25 712.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1231.25 712.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M762.5 87.5L712.5 37.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M756.25 87.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM706.25 37.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M312.5 737.5L337.5 712.5L362.5 712.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M306.25 737.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM356.25 712.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M987.5 787.5L987.5 862.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M981.25 787.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM981.25 862.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1237.5 212.5L1262.5 187.5L1262.5 87.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1231.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1256.25 87.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1262.5 512.5L1162.5 512.5L1112.5 562.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1256.25 512.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1106.25 562.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1112.5 1087.5L1137.5 1087.5L1237.5 987.5L1237.5 937.5L1162.5 862.5L1137.5 862.5L1012.5 737.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1106.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1006.25 737.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M462.5 362.5L412.5 412.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M456.25 362.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM406.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1512.5 187.5L1512.5 112.5L1537.5 87.5L1587.5 87.5L1687.5 187.5L1787.5 187.5L1837.5 237.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1506.25 187.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1831.25 237.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1937.5 87.5L1937.5 112.5L1887.5 162.5L1887.5 212.5L1912.5 237.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1931.25 87.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1906.25 237.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1412.5 687.5L1462.5 687.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1406.25 687.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1456.25 687.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M212.5 112.5L162.5 112.5L87.5 37.5L62.5 37.5L37.5 62.5L37.5 137.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M206.25 112.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM31.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M837.5 737.5L812.5 762.5L787.5 762.5L737.5 712.5L612.5 712.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M831.25 737.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM606.25 712.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1212.5 12.5L1112.5 12.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1206.25 12.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1106.25 12.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M887.5 87.5L887.5 137.5L862.5 162.5L837.5 162.5L812.5 137.5L812.5 87.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M881.25 87.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM806.25 87.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1837.5 837.5L1837.5 762.5L1862.5 737.5L1887.5 737.5L1962.5 812.5L1962.5 837.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1831.25 837.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1956.25 837.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1587.5 112.5L1787.5 312.5L1837.5 312.5L1862.5 337.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1581.25 112.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1856.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M962.5 412.5L987.5 437.5L987.5 487.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M956.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM981.25 487.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1037.5 462.5L1037.5 512.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1031.25 462.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1031.25 512.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1012.5 112.5L1012.5 87.5L987.5 62.5L962.5 62.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1006.25 112.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM956.25 62.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1162.5 362.5L1062.5 262.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1156.25 362.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1056.25 262.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M37.5 562.5L37.5 587.5L112.5 662.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M31.25 562.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM106.25 662.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1912.5 1012.5L1887.5 987.5L1887.5 937.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1906.25 1012.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1881.25 937.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1362.5 387.5L1362.5 437.5L1337.5 462.5L1337.5 487.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1356.25 387.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1331.25 487.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1612.5 937.5L1712.5 937.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1606.25 937.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1706.25 937.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M912.5 1012.5L937.5 1037.5L937.5 1062.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M906.25 1012.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM931.25 1062.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M437.5 362.5L362.5 362.5L337.5 337.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M431.25 362.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM331.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M187.5 162.5L262.5 162.5L312.5 212.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M181.25 162.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM306.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M337.5 512.5L187.5 512.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M331.25 512.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM181.25 512.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M137.5 1037.5L162.5 1062.5L162.5 1087.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M131.25 1037.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM156.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1737.5 1012.5L1687.5 962.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1731.25 1012.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1681.25 962.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1037.5 862.5L1037.5 837.5L1012.5 812.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1031.25 862.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1006.25 812.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M762.5 587.5L712.5 637.5L662.5 637.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M756.25 587.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM656.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M112.5 762.5L37.5 762.5L12.5 737.5L12.5 662.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M106.25 762.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM6.25 662.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1037.5 362.5L1037.5 387.5L1112.5 462.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1031.25 362.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1106.25 462.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M962.5 937.5L1037.5 1012.5L1037.5 1037.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M956.25 937.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1031.25 1037.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1462.5 1012.5L1362.5 1012.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1456.25 1012.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1356.25 1012.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1212.5 212.5L1162.5 212.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1206.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1156.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M312.5 812.5L212.5 912.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M306.25 812.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM206.25 912.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1337.5 362.5L1312.5 337.5L1262.5 337.5L1237.5 362.5L1212.5 362.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1331.25 362.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1206.25 362.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1837.5 337.5L1787.5 387.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1831.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1781.25 387.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1512.5 562.5L1562.5 612.5L1562.5 637.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1506.25 562.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1556.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1187.5 637.5L1312.5 637.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1181.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1306.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1412.5 937.5L1437.5 912.5L1462.5 912.5L1562.5 1012.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1406.25 937.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1556.25 1012.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M62.5 537.5L12.5 487.5L12.5 387.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M56.25 537.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM6.25 387.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1712.5 112.5L1712.5 62.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1706.25 112.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1706.25 62.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M537.5 212.5L537.5 162.5L512.5 137.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M531.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM506.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1687.5 287.5L1737.5 287.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1681.25 287.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1731.25 287.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1287.5 862.5L1262.5 862.5L1212.5 812.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1281.25 862.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1206.25 812.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1162.5 612.5L1312.5 612.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1156.25 612.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1306.25 612.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1837.5 587.5L1787.5 537.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1831.25 587.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1781.25 537.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1962.5 212.5L1962.5 262.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1956.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1956.25 262.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1437.5 287.5L1487.5 287.5L1537.5 337.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1431.25 287.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1531.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1862.5 1062.5L1812.5 1012.5L1812.5 987.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1856.25 1062.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1806.25 987.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1137.5 987.5L1162.5 1012.5L1162.5 1037.5L1137.5 1062.5L1112.5 1062.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1131.25 987.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1106.25 1062.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1587.5 962.5L1587.5 887.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1581.25 962.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1581.25 887.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M762.5 437.5L762.5 462.5L737.5 487.5L712.5 487.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M756.25 437.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM706.25 487.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M337.5 787.5L362.5 787.5L387.5 762.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M331.25 787.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM381.25 762.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M337.5 1062.5L412.5 1062.5L437.5 1087.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M331.25 1062.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM431.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1662.5 562.5L1537.5 562.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1656.25 562.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1531.25 562.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1312.5 187.5L1287.5 162.5L1287.5 87.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1306.25 187.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1281.25 87.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1637.5 287.5L1662.5 262.5L1712.5 262.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1631.25 287.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1706.25 262.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1537.5 137.5L1537.5 237.5L1562.5 262.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1531.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1556.25 262.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M337.5 562.5L387.5 612.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M331.25 562.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM381.25 612.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1362.5 887.5L1387.5 887.5L1412.5 862.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1356.25 887.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1406.25 862.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M237.5 1012.5L312.5 1012.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M231.25 1012.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM306.25 1012.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1737.5 237.5L1762.5 237.5L1787.5 262.5L1787.5 287.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1731.25 237.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1781.25 287.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M162.5 412.5L137.5 387.5L112.5 387.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M156.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM106.25 387.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1612.5 187.5L1562.5 137.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1606.25 187.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1556.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M937.5 412.5L912.5 387.5L912.5 362.5L937.5 337.5L987.5 337.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M931.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM981.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M162.5 587.5L112.5 637.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M156.25 587.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM106.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1337.5 712.5L1362.5 687.5L1362.5 637.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1331.25 712.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1356.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1512.5 1062.5L1687.5 1062.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1506.25 1062.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1681.25 1062.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M287.5 612.5L262.5 612.5L237.5 587.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M281.25 612.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM231.25 587.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M212.5 1087.5L412.5 1087.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M206.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM406.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M987.5 362.5L987.5 412.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M981.25 362.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM981.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1837.5 862.5L1912.5 787.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1831.25 862.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1906.25 787.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1287.5 12.5L1462.5 12.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1281.25 12.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1456.25 12.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1437.5 762.5L1437.5 712.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1431.25 762.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1431.25 712.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M637.5 1037.5L637.5 937.5L662.5 912.5L737.5 912.5L762.5 937.5L762.5 962.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M631.25 1037.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM756.25 962.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1462.5 662.5L1437.5 662.5L1412.5 637.5L1412.5 612.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1456.25 662.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1406.25 612.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M212.5 262.5L137.5 262.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M206.25 262.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM131.25 262.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M112.5 112.5L137.5 112.5L162.5 137.5L237.5 137.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M106.25 112.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM231.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1787.5 1037.5L1812.5 1037.5L1837.5 1062.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1781.25 1037.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1831.25 1062.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M212.5 612.5L212.5 637.5L162.5 687.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M206.25 612.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM156.25 687.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M812.5 687.5L812.5 737.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M806.25 687.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM806.25 737.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1487.5 162.5L1487.5 112.5L1462.5 87.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1481.25 162.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1456.25 87.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M762.5 212.5L762.5 162.5L737.5 137.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M756.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM731.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1112.5 337.5L1062.5 287.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1106.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1056.25 287.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M312.5 137.5L387.5 212.5L437.5 212.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M306.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM431.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M537.5 387.5L562.5 362.5L612.5 362.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M531.25 387.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM606.25 362.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M262.5 1062.5L212.5 1062.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M256.25 1062.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM206.25 1062.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1462.5 412.5L1512.5 412.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1456.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1506.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M437.5 962.5L437.5 987.5L462.5 1012.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M431.25 962.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM456.25 1012.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M612.5 387.5L587.5 387.5L562.5 412.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M606.25 387.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM556.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M62.5 212.5L87.5 212.5L137.5 162.5L162.5 162.5L187.5 187.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M56.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM181.25 187.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1162.5 537.5L1312.5 537.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1156.25 537.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1306.25 537.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M287.5 12.5L287.5 37.5L312.5 62.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M281.25 12.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM306.25 62.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M737.5 662.5L787.5 662.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M731.25 662.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM781.25 662.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M987.5 237.5L937.5 187.5L912.5 187.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M981.25 237.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM906.25 187.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1087.5 462.5L1062.5 437.5L1037.5 437.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1081.25 462.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1031.25 437.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1087.5 937.5L987.5 937.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1081.25 937.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM981.25 937.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M937.5 737.5L912.5 762.5L912.5 787.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M931.25 737.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM906.25 787.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1262.5 412.5L1337.5 412.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1256.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1331.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M87.5 137.5L137.5 137.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M81.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM131.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1462.5 1062.5L1337.5 1062.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1456.25 1062.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1331.25 1062.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1862.5 887.5L1862.5 862.5L1912.5 812.5L1937.5 812.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1856.25 887.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1931.25 812.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1687.5 162.5L1762.5 162.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1681.25 162.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1756.25 162.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M487.5 162.5L512.5 187.5L512.5 212.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M481.25 162.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM506.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M237.5 712.5L312.5 712.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M231.25 712.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM306.25 712.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M137.5 537.5L112.5 537.5L87.5 562.5L87.5 612.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M131.25 537.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM81.25 612.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1812.5 62.5L1812.5 87.5L1787.5 112.5L1762.5 112.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1806.25 62.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1756.25 112.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M912.5 637.5L962.5 587.5L962.5 562.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M906.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM956.25 562.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M362.5 87.5L337.5 112.5L337.5 137.5L387.5 187.5L412.5 187.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M356.25 87.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM406.25 187.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1787.5 637.5L1787.5 762.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1781.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1781.25 762.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M187.5 987.5L212.5 962.5L237.5 962.5L262.5 987.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M181.25 987.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM256.25 987.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1187.5 112.5L1162.5 137.5L1162.5 162.5L1187.5 187.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1181.25 112.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1181.25 187.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M662.5 87.5L637.5 112.5L637.5 162.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M656.25 87.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM631.25 162.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M887.5 437.5L887.5 387.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M881.25 437.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM881.25 387.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M887.5 212.5L862.5 237.5L837.5 237.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M881.25 212.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM831.25 237.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1837.5 712.5L1837.5 687.5L1812.5 662.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1831.25 712.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1806.25 662.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1362.5 587.5L1387.5 562.5L1387.5 537.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1356.25 587.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1381.25 537.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M362.5 112.5L387.5 137.5L387.5 162.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M356.25 112.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM381.25 162.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M837.5 312.5L887.5 312.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M831.25 312.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM881.25 312.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1212.5 287.5L1162.5 287.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1206.25 287.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1156.25 287.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1162.5 962.5L1212.5 962.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1156.25 962.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1206.25 962.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1487.5 1012.5L1487.5 962.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1481.25 1012.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1481.25 962.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M387.5 262.5L287.5 262.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M381.25 262.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM281.25 262.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M437.5 337.5L487.5 337.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M431.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM481.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M687.5 1037.5L712.5 1037.5L737.5 1012.5L737.5 987.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M681.25 1037.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM731.25 987.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1362.5 137.5L1387.5 162.5L1387.5 187.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1356.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1381.25 187.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M287.5 637.5L362.5 637.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M281.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM356.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1362.5 987.5L1412.5 987.5L1437.5 962.5L1437.5 937.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1356.25 987.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1431.25 937.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1812.5 687.5L1812.5 737.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1806.25 687.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1806.25 737.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M587.5 587.5L587.5 637.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M581.25 587.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM581.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M612.5 62.5L662.5 62.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M606.25 62.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM656.25 62.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1837.5 112.5L1812.5 112.5L1787.5 137.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1831.25 112.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1781.25 137.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1687.5 987.5L1712.5 1012.5L1712.5 1037.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1681.25 987.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1706.25 1037.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M562.5 1012.5L537.5 1037.5L537.5 1062.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M556.25 1012.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM531.25 1062.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1162.5 1087.5L1187.5 1087.5L1212.5 1062.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1156.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1206.25 1062.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1912.5 387.5L1862.5 387.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1906.25 387.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1856.25 387.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M337.5 412.5L337.5 387.5L312.5 362.5L237.5 362.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M331.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM231.25 362.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M612.5 437.5L612.5 462.5L587.5 487.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M606.25 437.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM581.25 487.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M662.5 937.5L662.5 987.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M656.25 937.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM656.25 987.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1912.5 637.5L1912.5 687.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1906.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1906.25 687.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1062.5 387.5L1087.5 387.5L1112.5 412.5L1137.5 412.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1056.25 387.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1131.25 412.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1862.5 812.5L1862.5 762.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1856.25 812.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1856.25 762.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M37.5 737.5L37.5 687.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M31.25 737.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM31.25 687.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1587.5 637.5L1587.5 587.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1581.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1581.25 587.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1087.5 962.5L1087.5 1012.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1081.25 962.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1081.25 1012.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1612.5 487.5L1662.5 487.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1606.25 487.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1656.25 487.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M937.5 862.5L937.5 812.5L962.5 787.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M931.25 862.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM956.25 787.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M262.5 912.5L262.5 887.5L287.5 862.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M256.25 912.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM281.25 862.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1937.5 662.5L1987.5 662.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1931.25 662.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1981.25 662.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M237.5 787.5L237.5 737.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M231.25 787.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM231.25 737.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M487.5 462.5L512.5 437.5L537.5 437.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M481.25 462.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM531.25 437.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1212.5 562.5L1162.5 562.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1206.25 562.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1156.25 562.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M12.5 962.5L62.5 962.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M6.25 962.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM56.25 962.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1362.5 87.5L1412.5 87.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1356.25 87.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1406.25 87.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M112.5 1037.5L62.5 1087.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M106.25 1037.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM56.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M462.5 937.5L512.5 937.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M456.25 937.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM506.25 937.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M87.5 1087.5L112.5 1062.5L137.5 1062.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M81.25 1087.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM131.25 1062.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1187.5 937.5L1137.5 937.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1181.25 937.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1131.25 937.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M362.5 337.5L412.5 337.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M356.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM406.25 337.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1087.5 637.5L1037.5 637.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1081.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1031.25 637.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M887.5 487.5L912.5 512.5L912.5 537.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M881.25 487.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM906.25 537.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1862.5 612.5L1912.5 612.5L1937.5 587.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1856.25 612.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1931.25 587.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1612.5 587.5L1612.5 662.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1606.25 587.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1606.25 662.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M962.5 862.5L962.5 812.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M956.25 862.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM956.25 812.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M237.5 537.5L287.5 587.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M231.25 537.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM281.25 587.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M212.5 12.5L212.5 62.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M206.25 12.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM206.25 62.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1387.5 762.5L1387.5 737.5L1362.5 712.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1381.25 762.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1356.25 712.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1562.5 187.5L1562.5 237.5' stroke-width='4.17' stroke='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3cpath d='M1556.25 187.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0zM1556.25 237.5 a6.25 6.25 0 1 0 12.5 0 a6.25 6.25 0 1 0 -12.5 0z' fill='rgba(178%2c 69%2c 58%2c 1)'%3e%3c/path%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1032'%3e%3crect width='1980' height='1080' fill='white'%3e%3c/rect%3e%3c/mask%3e%3cmask id='SvgjsMask1033'%3e%3crect width='1980' height='1080' fill='white'%3e%3c/rect%3e%3cpath d='M859.37 37.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1334.37 512.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M184.37 687.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM9.37 837.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1734.37 987.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1509.37 712.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M959.37 687.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1334.37 887.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1134.37 237.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1084.37 12.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1559.37 37.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1109.37 37.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1809.37 887.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1734.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M809.37 1012.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM809.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M259.37 937.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM509.37 487.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M359.37 912.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM834.37 437.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M959.37 537.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM859.37 1012.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1534.37 362.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1709.37 462.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M134.37 962.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM459.37 487.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1584.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1109.37 62.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M634.37 287.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM509.37 737.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M259.37 962.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM9.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1059.37 512.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1459.37 512.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M9.37 362.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM484.37 437.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1009.37 587.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM909.37 162.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M184.37 362.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM609.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1884.37 362.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1959.37 787.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M734.37 187.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM659.37 587.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1484.37 862.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1709.37 862.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1684.37 662.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1734.37 612.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1484.37 12.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1959.37 12.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1709.37 737.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1534.37 462.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M34.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM509.37 312.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M609.37 812.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM884.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1659.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1609.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M984.37 737.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM984.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M959.37 12.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1059.37 12.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1284.37 312.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1109.37 262.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M609.37 787.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM584.37 712.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1159.37 262.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1634.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M334.37 1037.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM434.37 812.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M659.37 862.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM509.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M284.37 687.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM434.37 512.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M909.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM684.37 562.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M859.37 362.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM784.37 362.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M559.37 287.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM209.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1784.37 962.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1984.37 862.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1684.37 1037.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1209.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M984.37 537.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM984.37 662.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M9.37 762.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM9.37 812.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1859.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1784.37 512.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1959.37 462.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1784.37 462.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1134.37 187.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1459.37 237.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1284.37 587.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1284.37 487.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1959.37 362.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1584.37 37.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1759.37 1037.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1984.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1934.37 687.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1984.37 687.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M734.37 862.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM534.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1559.37 762.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1709.37 837.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M334.37 12.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM659.37 387.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M59.37 937.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM9.37 862.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M59.37 362.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM184.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M984.37 287.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM784.37 287.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1809.37 162.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1984.37 37.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1759.37 312.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1759.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M609.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM534.37 687.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M859.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM609.37 687.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1609.37 837.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1684.37 837.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M484.37 862.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM809.37 912.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1959.37 762.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1984.37 837.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1134.37 812.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1259.37 1062.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M884.37 37.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1059.37 162.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M859.37 512.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM859.37 462.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M384.37 1012.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM584.37 737.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M484.37 1012.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM459.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1084.37 737.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1309.37 1037.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M784.37 37.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM834.37 187.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M84.37 112.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM34.37 362.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M159.37 62.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM9.37 162.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M59.37 662.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM134.37 812.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1009.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1109.37 662.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M184.37 237.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM659.37 262.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1684.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1709.37 487.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M834.37 512.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM884.37 562.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M834.37 812.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM634.37 787.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1359.37 462.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1409.37 537.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M34.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM384.37 662.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1759.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1959.37 437.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M384.37 737.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM459.37 737.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1134.37 387.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1034.37 237.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1834.37 262.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1934.37 362.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1834.37 562.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1984.37 562.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M934.37 487.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM984.37 512.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1359.37 812.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1684.37 812.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1484.37 837.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1334.37 1012.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1409.37 512.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1559.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1159.37 187.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1109.37 87.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M384.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM234.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M784.37 462.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM984.37 312.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1484.37 537.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1734.37 687.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1934.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1984.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M584.37 987.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM584.37 1037.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M334.37 62.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM584.37 187.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M334.37 812.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM434.37 762.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M759.37 562.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM759.37 537.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1484.37 762.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1259.37 687.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1209.37 787.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1284.37 787.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M884.37 912.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM884.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M9.37 587.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM159.37 712.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M709.37 987.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM659.37 1037.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M134.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM134.37 687.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M109.37 437.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM84.37 387.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M434.37 237.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM234.37 287.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1984.37 112.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1984.37 62.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1684.37 612.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1584.37 662.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1634.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1709.37 437.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1909.37 1037.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1434.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M859.37 87.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM459.37 12.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1384.37 712.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1409.37 587.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1284.37 287.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1334.37 312.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1234.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1234.37 87.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1584.37 187.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1734.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1234.37 887.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM984.37 712.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1384.37 912.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1459.37 837.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M609.37 487.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM559.37 662.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1784.37 562.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1984.37 762.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M234.37 112.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM234.37 12.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M934.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM809.37 262.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1934.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1984.37 312.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M884.37 887.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM884.37 662.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M634.37 87.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM484.37 37.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1209.37 187.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1209.37 87.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M609.37 837.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM484.37 837.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M859.37 112.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM809.37 62.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M759.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM809.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1184.37 812.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1284.37 1062.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M284.37 762.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM9.37 1062.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M884.37 962.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM934.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1459.37 387.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1509.37 387.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M959.37 762.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1059.37 887.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M309.37 87.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM259.37 12.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1859.37 712.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1859.37 912.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M834.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM784.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M509.37 587.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM509.37 512.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1909.37 187.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1959.37 62.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M234.37 562.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM159.37 512.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1334.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1434.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1334.37 612.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1359.37 512.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1909.37 437.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1809.37 437.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1059.37 962.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM884.37 937.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1659.37 962.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1459.37 887.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M709.37 112.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM659.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1809.37 487.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1959.37 487.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M334.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM259.37 62.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M234.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM34.37 912.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1784.37 912.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1759.37 987.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1459.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1409.37 387.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M59.37 562.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM109.37 512.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M759.37 612.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM634.37 662.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1859.37 1012.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1984.37 962.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M184.37 1012.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM184.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1884.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1934.37 62.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M584.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM534.37 87.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1134.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1134.37 87.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M434.37 712.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM459.37 662.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1409.37 62.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1334.37 62.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M684.37 37.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM609.37 112.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M884.37 12.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1059.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1234.37 487.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1084.37 562.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M484.37 237.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM284.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M409.37 987.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM484.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1609.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1609.37 287.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1009.37 62.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM909.37 12.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M109.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM34.37 237.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1959.37 987.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1984.37 887.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1634.37 37.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1909.37 37.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M734.37 112.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM784.37 237.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M484.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM509.37 262.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1234.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1184.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M84.37 712.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM9.37 612.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1084.37 712.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1234.37 712.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M759.37 87.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM709.37 37.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M309.37 737.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM359.37 712.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M984.37 787.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM984.37 862.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1234.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1259.37 87.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1259.37 512.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1109.37 562.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1109.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1009.37 737.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M459.37 362.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM409.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1509.37 187.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1834.37 237.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1934.37 87.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1909.37 237.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1409.37 687.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1459.37 687.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M209.37 112.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM34.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M834.37 737.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM609.37 712.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1209.37 12.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1109.37 12.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M884.37 87.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM809.37 87.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1834.37 837.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1959.37 837.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1584.37 112.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1859.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M959.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM984.37 487.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1034.37 462.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1034.37 512.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1009.37 112.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM959.37 62.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1159.37 362.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1059.37 262.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M34.37 562.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM109.37 662.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1909.37 1012.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1884.37 937.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1359.37 387.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1334.37 487.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1609.37 937.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1709.37 937.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M909.37 1012.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM934.37 1062.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M434.37 362.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM334.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M184.37 162.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM309.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M334.37 512.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM184.37 512.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M134.37 1037.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM159.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1734.37 1012.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1684.37 962.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1034.37 862.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1009.37 812.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M759.37 587.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM659.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M109.37 762.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM9.37 662.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1034.37 362.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1109.37 462.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M959.37 937.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1034.37 1037.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1459.37 1012.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1359.37 1012.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1209.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1159.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M309.37 812.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM209.37 912.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1334.37 362.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1209.37 362.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1834.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1784.37 387.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1509.37 562.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1559.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1184.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1309.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1409.37 937.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1559.37 1012.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M59.37 537.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM9.37 387.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1709.37 112.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1709.37 62.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M534.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM509.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1684.37 287.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1734.37 287.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1284.37 862.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1209.37 812.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1159.37 612.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1309.37 612.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1834.37 587.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1784.37 537.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1959.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1959.37 262.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1434.37 287.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1534.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1859.37 1062.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1809.37 987.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1134.37 987.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1109.37 1062.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1584.37 962.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1584.37 887.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M759.37 437.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM709.37 487.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M334.37 787.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM384.37 762.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M334.37 1062.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM434.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1659.37 562.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1534.37 562.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1309.37 187.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1284.37 87.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1634.37 287.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1709.37 262.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1534.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1559.37 262.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M334.37 562.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM384.37 612.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1359.37 887.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1409.37 862.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M234.37 1012.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM309.37 1012.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1734.37 237.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1784.37 287.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M159.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM109.37 387.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1609.37 187.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1559.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M934.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM984.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M159.37 587.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM109.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1334.37 712.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1359.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1509.37 1062.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1684.37 1062.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M284.37 612.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM234.37 587.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M209.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM409.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M984.37 362.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM984.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1834.37 862.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1909.37 787.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1284.37 12.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1459.37 12.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1434.37 762.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1434.37 712.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M634.37 1037.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM759.37 962.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1459.37 662.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1409.37 612.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M209.37 262.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM134.37 262.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M109.37 112.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM234.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1784.37 1037.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1834.37 1062.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M209.37 612.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM159.37 687.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M809.37 687.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM809.37 737.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1484.37 162.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1459.37 87.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M759.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM734.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1109.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1059.37 287.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M309.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM434.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M534.37 387.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM609.37 362.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M259.37 1062.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM209.37 1062.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1459.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1509.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M434.37 962.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM459.37 1012.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M609.37 387.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM559.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M59.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM184.37 187.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1159.37 537.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1309.37 537.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M284.37 12.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM309.37 62.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M734.37 662.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM784.37 662.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M984.37 237.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM909.37 187.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1084.37 462.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1034.37 437.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1084.37 937.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM984.37 937.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M934.37 737.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM909.37 787.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1259.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1334.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M84.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM134.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1459.37 1062.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1334.37 1062.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1859.37 887.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1934.37 812.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1684.37 162.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1759.37 162.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M484.37 162.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM509.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M234.37 712.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM309.37 712.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M134.37 537.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM84.37 612.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1809.37 62.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1759.37 112.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M909.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM959.37 562.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M359.37 87.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM409.37 187.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1784.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1784.37 762.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M184.37 987.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM259.37 987.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1184.37 112.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1184.37 187.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M659.37 87.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM634.37 162.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M884.37 437.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM884.37 387.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M884.37 212.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM834.37 237.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1834.37 712.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1809.37 662.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1359.37 587.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1384.37 537.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M359.37 112.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM384.37 162.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M834.37 312.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM884.37 312.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1209.37 287.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1159.37 287.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1159.37 962.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1209.37 962.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1484.37 1012.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1484.37 962.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M384.37 262.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM284.37 262.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M434.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM484.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M684.37 1037.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM734.37 987.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1359.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1384.37 187.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M284.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM359.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1359.37 987.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1434.37 937.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1809.37 687.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1809.37 737.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M584.37 587.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM584.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M609.37 62.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM659.37 62.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1834.37 112.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1784.37 137.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1684.37 987.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1709.37 1037.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M559.37 1012.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM534.37 1062.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1159.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1209.37 1062.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1909.37 387.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1859.37 387.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M334.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM234.37 362.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M609.37 437.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM584.37 487.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M659.37 937.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM659.37 987.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1909.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1909.37 687.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1059.37 387.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1134.37 412.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1859.37 812.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1859.37 762.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M34.37 737.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM34.37 687.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1584.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1584.37 587.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1084.37 962.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1084.37 1012.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1609.37 487.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1659.37 487.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M934.37 862.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM959.37 787.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M259.37 912.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM284.37 862.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1934.37 662.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1984.37 662.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M234.37 787.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM234.37 737.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M484.37 462.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM534.37 437.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1209.37 562.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1159.37 562.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M9.37 962.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM59.37 962.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1359.37 87.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1409.37 87.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M109.37 1037.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM59.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M459.37 937.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM509.37 937.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M84.37 1087.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM134.37 1062.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1184.37 937.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1134.37 937.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M359.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM409.37 337.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1084.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1034.37 637.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M884.37 487.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM909.37 537.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1859.37 612.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1934.37 587.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1609.37 587.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1609.37 662.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M959.37 862.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM959.37 812.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M234.37 537.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM284.37 587.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M209.37 12.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM209.37 62.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1384.37 762.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1359.37 712.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3cpath d='M1559.37 187.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0zM1559.37 237.5 a3.13 3.13 0 1 0 6.26 0 a3.13 3.13 0 1 0 -6.26 0z' fill='black'%3e%3c/path%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
}

.bg-gold {
	background: conic-gradient(
		#edc800,
		#e3b600,
		#f3cf00,
		#ffe800,
		#edc800,
		#e3b600,
		#f3cf00,
		#ffe800,
		#edc800,
		#e3b600,
		#f3cf00,
		#ffe800,
		#edc800,
		#e3b600,
		#f3cf00,
		#ffe800
	);
}

.bg-silver {
	background: conic-gradient(
		#d7d7d7,
		#c3c3c3,
		#cccccc,
		#c6c6c6,
		#d7d7d7,
		#c3c3c3,
		#cccccc,
		#c6c6c6,
		#d7d7d7,
		#c3c3c3,
		#cccccc,
		#c6c6c6,
		#d7d7d7,
		#c3c3c3,
		#cccccc,
		#c6c6c6
	);
}

.bg-bronze {
	background: conic-gradient(
		#d95641,
		#b14439,
		#b2453a,
		#d25645,
		#d95641,
		#b14439,
		#b2453a,
		#d25645,
		#d95641,
		#b14439,
		#b2453a,
		#d25645,
		#d95641,
		#b14439,
		#b2453a,
		#d25645
	);
}

.bg-titanium {
	background: conic-gradient(
		#e6e9bf,
		#d2b5aa,
		#cbaea3,
		#d4b5ab,
		#e6e9bf,
		#d2b5aa,
		#cbaea3,
		#d4b5ab,
		#e6e9bf,
		#d2b5aa,
		#cbaea3,
		#d4b5ab,
		#e6e9bf,
		#d2b5aa,
		#cbaea3,
		#d4b5ab
	);
}

.noisy {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3OLi4ubm5uVlZWPj4+NjY19fX2JiYl/f39ra2uRkZGZmZlpaWmXl5dvb29xcXGTk5NnZ2c8TV1mAAAAG3RSTlNAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAvEOwtAAAFVklEQVR4XpWWB67c2BUFb3g557T/hRo9/WUMZHlgr4Bg8Z4qQgQJlHI4A8SzFVrapvmTF9O7dmYRFZ60YiBhJRCgh1FYhiLAmdvX0CzTOpNE77ME0Zty/nWWzchDtiqrmQDeuv3powQ5ta2eN0FY0InkqDD73lT9c9lEzwUNqgFHs9VQce3TVClFCQrSTfOiYkVJQBmpbq2L6iZavPnAPcoU0dSw0SUTqz/GtrGuXfbyyBniKykOWQWGqwwMA7QiYAxi+IlPdqo+hYHnUt5ZPfnsHJyNiDtnpJyayNBkF6cWoYGAMY92U2hXHF/C1M8uP/ZtYdiuj26UdAdQQSXQErwSOMzt/XWRWAz5GuSBIkwG1H3FabJ2OsUOUhGC6tK4EMtJO0ttC6IBD3kM0ve0tJwMdSfjZo+EEISaeTr9P3wYrGjXqyC1krcKdhMpxEnt5JetoulscpyzhXN5FRpuPHvbeQaKxFAEB6EN+cYN6xD7RYGpXpNndMmZgM5Dcs3YSNFDHUo2LGfZuukSWyUYirJAdYbF3MfqEKmjM+I2EfhA94iG3L7uKrR+GdWD73ydlIB+6hgref1QTlmgmbM3/LeX5GI1Ux1RWpgxpLuZ2+I+IjzZ8wqE4nilvQdkUdfhzI5QDWy+kw5Wgg2pGpeEVeCCA7b85BO3F9DzxB3cdqvBzWcmzbyMiqhzuYqtHRVG2y4x+KOlnyqla8AoWWpuBoYRxzXrfKuILl6SfiWCbjxoZJUaCBj1CjH7GIaDbc9kqBY3W/Rgjda1iqQcOJu2WW+76pZC9QG7M00dffe9hNnseupFL53r8F7YHSwJWUKP2q+k7RdsxyOB11n0xtOvnW4irMMFNV4H0uqwS5ExsmP9AxbDTc9JwgneAT5vTiUSm1E7BSflSt3bfa1tv8Di3R8n3Af7MNWzs49hmauE2wP+ttrq+AsWpFG2awvsuOqbipWHgtuvuaAE+A1Z/7gC9hesnr+7wqCwG8c5yAg3AL1fm8T9AZtp/bbJGwl1pNrE7RuOX7PeMRUERVaPpEs+yqeoSmuOlokqw49pgomjLeh7icHNlG19yjs6XXOMedYm5xH2YxpV2tc0Ro2jJfxC50ApuxGob7lMsxfTbeUv07TyYxpeLucEH1gNd4IKH2LAg5TdVhlCafZvpskfncCfx8pOhJzd76bJWeYFnFciwcYfubRc12Ip/ppIhA1/mSZ/RxjFDrJC5xifFjJpY2Xl5zXdguFqYyTR1zSp1Y9p+tktDYYSNflcxI0iyO4TPBdlRcpeqjK/piF5bklq77VSEaA+z8qmJTFzIWiitbnzR794USKBUaT0NTEsVjZqLaFVqJoPN9ODG70IPbfBHKK+/q/AWR0tJzYHRULOa4MP+W/HfGadZUbfw177G7j/OGbIs8TahLyynl4X4RinF793Oz+BU0saXtUHrVBFT/DnA3ctNPoGbs4hRIjTok8i+algT1lTHi4SxFvONKNrgQFAq2/gFnWMXgwffgYMJpiKYkmW3tTg3ZQ9Jq+f8XN+A5eeUKHWvJWJ2sgJ1Sop+wwhqFVijqWaJhwtD8MNlSBeWNNWTa5Z5kPZw5+LbVT99wqTdx29lMUH4OIG/D86ruKEauBjvH5xy6um/Sfj7ei6UUVk4AIl3MyD4MSSTOFgSwsH/QJWaQ5as7ZcmgBZkzjjU1UrQ74ci1gWBCSGHtuV1H2mhSnO3Wp/3fEV5a+4wz//6qy8JxjZsmxxy5+4w9CDNJY09T072iKG0EnOS0arEYgXqYnXcYHwjTtUNAcMelOd4xpkoqiTYICWFq0JSiPfPDQdnt+4/wuqcXY47QILbgAAAABJRU5ErkJggg==);
	background-color: black;
	animation: flicker 0.5s alternate infinite;
}

@keyframes flicker {
	50% {
		background-position: 100% 50%;
	}
}

.bg-scanlines {
	position: relative;
}

.bg-scanlines::after {
	content: "";
	position: fixed;
	top: 100%;
	background-color: black;
	opacity: 0.5;
	width: 100%;
	height: 1px;
	filter: blur(2px);
	animation: scanline 7.77s linear infinite;
}

@keyframes scanline {
	from {
		top: 100%;
	}
	to {
		top: 0%;
	}
}

.text-dark {
	color: var(--text-dark);
}

.text-danger {
	color: var(--text-danger);
}

.text-success {
	color: var(--text-success) !important;
}

.text-secondary {
	color: var(--text-secondary);
}

.text-info {
	color: var(--text-info) !important;
}

.text-light {
	color: var(--text-light) !important;
}

.text-bitcoin {
	color: var(--text-bitcoin);
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-light {
	color: #e8e6e3;
}

.text-justify {
	text-align: justify;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

.rounded-circle {
	border-radius: 50%;
}

.no-select {
	user-select: none;
}

.twitter-color,
.twitter-color:hover {
	color: #08bbee;
}

.linkedin-color,
.linkedin-color:hover {
	color: #0078b4;
}

.twitch-color,
.twitch-color:hover {
	color: #9a45ff;
}

.youtube-color,
.youtube-color:hover {
	color: #ff0000;
}

.discord-color,
.discord-color:hover {
	color: #738bd7;
}

.patreon-color,
.patreon-color:hover {
	color: #ff424d;
}

.brave-color,
.brave-color:hover {
	color: #ffffff00;
}

/* Utilities ENDE */

/* Brave Browser Icon */
@font-face {
	font-family: 'icomoon';
	src: url('/fonts/icomoon.eot?6u1liu');
	src: url('/fonts/icomoon.eot?6u1liu#iefix') format('embedded-opentype'),
		url('/fonts/icomoon.ttf?6u1liu') format('truetype'), url('/fonts/icomoon.woff?6u1liu') format('woff'),
		url('/fonts/icomoon.svg?6u1liu#common') format('svg');
	font-weight: normal;
	font-style: none;
	font-display: swap;
}

[class^="icon-"],
[class*=" icon-"] {
	font-family: 'icomoon' !important;
	speak: never;
	font-style: none;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-brave:before {
	content: "\e900";
	color: #fb542b;
}

/* tuxchan tilt easter-egg START */

.tilt {
	transform: rotate(-2deg);
	transition: transform 250ms ease-in;
}

/* tuxchan tilt easter-egg ENDE */

/* tuxchan barell-roll easter-egg START */

.barrel-roll {
	animation-name: barrelroll;
	animation-duration: 3s;
}

@keyframes barrelroll {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* tuxchan barell-roll easter-egg ENDE */

/* tuxchan disco easter-egg START */

.disco {
	animation-name: disco;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}

@keyframes disco {
	0% {
		background-color: #fec763;
		transform: scale(1.0, 1.0);
	}
	25% {
		background-color: #ea55b1;
		transform: scale(1.05, 1.05);
	}
	50% {
		background-color: #a992fa;
		transform: scale(1.0, 1.0);
	}
	75% {
		background-color: #00207f;
		transform: scale(1.05, 1.05);
	}
	100% {
		background-color: #fec763;
		transform: scale(1.0, 1.0);
	}
}

/* tuxchan disco easter-egg ENDE */

/* tuxchan matrix easter-egg START */

#matrix {
	position: absolute;
	top: 0;
	z-index: -1;
}

/* tuxchan matrix easter-egg ENDE */
