more print layout

This commit is contained in:
vitrinekast
2025-02-16 13:52:06 +01:00
parent 9a93d5c603
commit 24e7d1fdf8
30 changed files with 1680 additions and 159 deletions

13
app.py
View File

@ -100,9 +100,9 @@ env.filters["prettydate"] = prettydate
# translate a single file into HTML # translate a single file into HTML
def render_single_file(page, path, dist, name = False): def render_single_file(page, path, dist, name = False):
name = Path(path).stem
template = env.select_template([f"{name}.jinja", "post.jinja"]) template = env.select_template([f"{name}.jinja", "post.jinja"])
html = template.render(documents=documents, page=page, name=name) html = template.render(documents=documents, page=page, name=name)
name = Path(path).stem
if not os.path.exists(dist): if not os.path.exists(dist):
os.makedirs(dist) os.makedirs(dist)
@ -160,7 +160,7 @@ def get_page_data(path, isPreload=False):
page["has_passed"] = datetime.fromtimestamp(page["start_datetime"]) < now page["has_passed"] = datetime.fromtimestamp(page["start_datetime"]) < now
if ".include" in page.content: if "`include" in page.content:
latex = pypandoc.convert_text( latex = pypandoc.convert_text(
page.content, page.content,
to='md', to='md',
@ -225,6 +225,8 @@ def render_posts(path, output_path=OUTPUT_D):
render_posts(file_path, f"{output_path}/{name}") render_posts(file_path, f"{output_path}/{name}")
elif filename.endswith(".svg"): elif filename.endswith(".svg"):
save_circuit_svg(file_path, f"{output_path}/{name}", filename) save_circuit_svg(file_path, f"{output_path}/{name}", filename)
elif Path(filename).suffix in [".jpeg", ".mp3", ".jpg"]:
shutil.copyfile(file_path, f"{output_path}/{name}/{filename}")
else: else:
print("doing nothing with", filename) print("doing nothing with", filename)
@ -235,15 +237,17 @@ def preload_documents():
for subdir in os.listdir(CONTENT_D): for subdir in os.listdir(CONTENT_D):
path = os.path.join(CONTENT_D, subdir) path = os.path.join(CONTENT_D, subdir)
print(path)
if os.path.isdir(path): if os.path.isdir(path):
name = Path(path).stem name = Path(path).stem
documents.setdefault(name, []) documents.setdefault(name, [])
for filename in sorted(os.listdir(path)): for filename in sorted(os.listdir(path)):
cpath = os.path.join(path, filename)
if filename.endswith(".md"): if filename.endswith(".md"):
documents[name].append(get_page_data(os.path.join(path, filename), isPreload=True)) documents[name].append(get_page_data(cpath, isPreload=True))
elif os.path.isdir(cpath):
documents[name].append(get_page_data(os.path.join(cpath, "index.md"), isPreload=True))
elif Path(path).suffix == '.md': elif Path(path).suffix == '.md':
documents[Path(path).stem] = get_page_data(path, isPreload=True) documents[Path(path).stem] = get_page_data(path, isPreload=True)
@ -290,5 +294,4 @@ def main():
copy_assets() copy_assets()
main() main()

View File

@ -29,3 +29,4 @@ document.querySelectorAll("article img").forEach((img) => {
console.log(img); console.log(img);
img.addEventListener("click", showLightbox); img.addEventListener("click", showLightbox);
}) })

View File

@ -26,6 +26,13 @@ article header {
} }
aside + section p:first-child{
margin-top: 0;
}
.media--pcb {
width: 70mm;
}
dialog { dialog {
max-width: var(--main-w); max-width: var(--main-w);
height: 100%; height: 100%;
@ -47,12 +54,12 @@ dialog img {
dialog::backdrop { dialog::backdrop {
background-color: transparent; background-color: transparent;
transition: .2s linear; transition: 0.2s linear;
} }
dialog[open]::backdrop { dialog[open]::backdrop {
background-color: black; background-color: black;
opacity: .5; opacity: 0.5;
} }
sup li:before, sup li:before,
@ -67,21 +74,23 @@ li[count]:before {
color: var(--accent); color: var(--accent);
} }
li[count] { li[count], aside:not(.footnotes) {
float: right; float: right;
clear: right; clear: right;
width: var(--footnote-w); width: var(--footnote-w);
margin-right: calc((var(--footnote-w) * -1)); margin-right: calc((var(--footnote-w) * -1));
padding-left: 1rem; padding-left: var(--gap);
margin-top: -1em;
margin-bottom: 1em; margin-bottom: 1em;
} }
li[count] {
margin-top: -1em;
}
article:not(article article) { article:not(article article) {
/* padding-right: var(--footnote-w);;*/ /* padding-right: var(--footnote-w);;*/
} }
.list--frontpage { .list--frontpage {
display: grid; display: grid;
grid-template-columns: 1fr 1fr; grid-template-columns: 1fr 1fr;

View File

@ -102,7 +102,7 @@ body {
display: none; display: none;
} }
.meta:has([data-chapter-title]) { .meta:has([data-chapter-title]) {
break-before: page; /* break-before: page;*/
} }
.page--cover { .page--cover {
page: cover; page: cover;
@ -113,6 +113,11 @@ body {
counter-reset: page; counter-reset: page;
} }
[template-type="circuit"] {
page: circuit;
/* break-before: page;*/
}
.header-section-number { .header-section-number {
display: none; display: none;

View File

@ -1,66 +0,0 @@
/*:root {
font-size: 16px;
--background: transparent;
}
@page {
size: A5;
margin: 1cm;
font-family: sans-serif;
}
section.level1 {
page: default;
break-before: page;
padding-right: calc(var(--footnote-w) + 16px);
}
section.level1:has([data-template-type="chapter"]) {
page: chapter;
}
section.level1:has([data-template-type="bib"]) {
page: bib;
}
@page chapter {
size: A5;
margin: 1cm;
font-family: sans-serif;
margin-top: 20mm;
margin-bottom: 20mm;
bleed: 60mm;
@top-center {
content: "This is a chapter";
}
}
@page bib {
size: A5;
margin: 1cm;
font-family: sans-serif;
margin-top: 20mm;
margin-bottom: 20mm;
bleed: 6mm;
text-align: right;
@top-center {
content: "This is the bibliography";
}
}
.no-print {
display: none;
}
p {
break-inside: avoid;
}
article h1 {
margin-top: 0;
}
*/

View File

@ -3,10 +3,10 @@
--article-w: 800px; --article-w: 800px;
--main-w: calc(1200px - 2rem); --main-w: calc(1200px - 2rem);
--img-offset: -5ch; --img-offset: -5ch;
--accent: red;
--background: floralwhite; --background: floralwhite;
--text: black; --text: black;
--accent: orange; --accent: orange;
--gap: 2rem;
font-size: 11px; font-size: 11px;
} }
@ -44,3 +44,36 @@ body {
display: inline-block; display: inline-block;
} }
} }
.sample {
border-radius: 20px;
display: inline-flex;
gap: .25rem;
padding: 4px;
background-color: lightgrey;
transition: .2s linera;
cursor: pointer;
align-items: center;
}
.sample .icon {
display: inline-block;
width: 12px;
height: 12px;
}
.sample:not([active]) .pause {
display: none;
}
.sample[active] .play {
display: none;
}
.sample label {
line-height: 100%;
}
.sample[active], .sample:hover {
background-color: var(--accent);
}

View File

@ -27,6 +27,15 @@ h2,
h3 { h3 {
line-height: 125%; line-height: 125%;
} }
header.sm h2 {
font-weight: normal;
}
article header h2 {
font-weight:normal;
}
h3 { h3 {
} }
article { article {
@ -53,9 +62,7 @@ figure {
margin: 2rem 0; margin: 2rem 0;
} }
article img { article img {
border: 1px solid red;
max-width: 100%; max-width: 100%;
} }
ins { ins {
font-family: monospace; font-family: monospace;
@ -83,6 +90,7 @@ ins::before {
} }
sup:has(li), sup:has(li),
article li:has(.footnote-back), article li:has(.footnote-back),
aside, figcaption,
.footnote { .footnote {
font-family: monospace; font-family: monospace;
font-size: 80%; font-size: 80%;
@ -96,6 +104,8 @@ sup li p, article li:has(.footnote-back) p {
margin-top: 0; margin-top: 0;
} }
p { p {
break-inside: avoid; break-inside: avoid;
} }

View File

@ -16,3 +16,10 @@ Rule #17: If it sounds good and doesnt smoke, dont worry if you dont un
{{ show grid recipes}} {{ show grid recipes}}
How to Build a Paper Circuit PCB
Paper circuits use thick paper or cardboard as a base instead of traditional fiberglass PCBs. The conductive traces are made with copper tape, aluminum foil, or conductive ink. Inspired by Ciat-Lonbardes designs, this method allows for flexible, handmade circuits that are easy to modify and repair.
To make a paper PCB, start with a sturdy sheet of cardstock. Print or draw the circuit layout onto the surface. Lay down copper tape along the traced paths, ensuring clean connections at intersections. If using aluminum foil, glue it down with conductive adhesive or attach components with eyelets. Soldering directly onto paper is possible but requires low heat and quick contact to avoid burning. For durability, add a layer of clear tape over the traces to prevent oxidation. Finally, secure components with tape or conductive paint, creating a rugged yet flexible circuit ready for experimentation.

View File

@ -0,0 +1,7 @@
"Reference","Value","Datasheet","Footprint","Qty","DNP"
"BT1,BT2,BT3","Battery","~","TerminalBlock:TerminalBlock_bornier-2_P5.08mm","3",""
"C1,C2","10uF","","Capacitor_SMD:CP_Elec_4x5.3","2",""
"J1","+V","~","MountingHole:MountingHole_2.2mm_M2_DIN965_Pad","1",""
"J2","GND","~","MountingHole:MountingHole_2.2mm_M2_DIN965_Pad","1",""
"J3","-V","~","MountingHole:MountingHole_2.2mm_M2_DIN965_Pad","1",""
"R1,R2","10","","PCM_4ms_Resistor:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal","2",""
1 Reference Value Datasheet Footprint Qty DNP
2 BT1,BT2,BT3 Battery ~ TerminalBlock:TerminalBlock_bornier-2_P5.08mm 3
3 C1,C2 10uF Capacitor_SMD:CP_Elec_4x5.3 2
4 J1 +V ~ MountingHole:MountingHole_2.2mm_M2_DIN965_Pad 1
5 J2 GND ~ MountingHole:MountingHole_2.2mm_M2_DIN965_Pad 1
6 J3 -V ~ MountingHole:MountingHole_2.2mm_M2_DIN965_Pad 1
7 R1,R2 10 PCM_4ms_Resistor:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal 2

View File

@ -0,0 +1,413 @@
<svg width="180" height="161" viewBox="0 0 180 161" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M90.5111 30.4293L90.3894 29.7395L91.0391 29.9659L91.2073 30.9199L87.1579 31.6338L87.0532 31.0393L90.5111 30.4293Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M90.3039 32.4022L90.4997 32.4328L90.6856 32.4793L90.9048 32.5602L91.0288 32.621L91.2004 32.7242L91.3478 32.8402L91.4937 32.9959L91.6056 33.1706L91.683 33.3629L91.7155 33.5016L91.734 33.7125L91.7144 33.9181L91.6562 34.1181L91.5598 34.3127L91.4502 34.4703L91.3716 34.5633L91.2064 34.7251L91.0568 34.8415L90.892 34.9462L90.7117 35.0392L90.5159 35.1208L90.305 35.1903L90.0786 35.2482L89.8987 35.2841L89.6591 35.3188L89.4297 35.3377L89.2108 35.3404L89.0022 35.3268L88.8038 35.2969L88.6159 35.2508L88.4383 35.1884L88.2708 35.1102L88.0997 35.007L87.9258 34.8664L87.7859 34.7081L87.6801 34.5316L87.6087 34.3369L87.5857 34.2326L87.5671 34.0221L87.5732 33.9593H88.1068L88.1095 34.1358L88.1779 34.3203L88.3124 34.4733L88.4875 34.5826L88.6534 34.6483L88.839 34.6979L89.0373 34.7281L89.2494 34.7387L89.4743 34.7304L89.6716 34.7084L89.7948 34.6892L89.9962 34.6476L90.1844 34.5966L90.3934 34.5229L90.5832 34.4355L90.7544 34.3346L90.858 34.2594L91.0091 34.1215L91.1282 33.9582L91.1935 33.7677L91.191 33.5923L91.1225 33.4087L90.9887 33.256L90.8149 33.1467L90.6501 33.081L90.466 33.0311L90.2695 33.0009L90.0608 32.9891L89.8401 32.9971L89.6466 33.0182L89.5265 33.0371L89.3215 33.0791L89.13 33.1305L88.9519 33.1913L88.7554 33.2764L88.5782 33.3754L88.4451 33.468L88.2928 33.6052L88.1726 33.7681L88.1068 33.9593H87.5732L87.5867 33.8168L87.6446 33.6162L87.741 33.4208L87.8502 33.2616L87.9284 33.1675L88.0944 33.0054L88.2452 32.8886L88.4122 32.7832L88.5951 32.6898L88.7943 32.6074L89.0098 32.5371L89.2411 32.4781L89.4251 32.4419L89.6591 32.4078L89.884 32.3897L90.0987 32.3878L90.3039 32.4022Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M88.3047 129.504L88.1829 130.194L87.6504 129.759L87.8186 128.805L91.8676 129.519L91.7629 130.114L88.3047 129.504Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M90.1267 125.101L90.3591 125.124L90.5405 125.151L90.7778 125.201L90.9997 125.261L91.2061 125.334L91.3977 125.418L91.5738 125.514L91.7348 125.622L91.8803 125.741L92.0107 125.872L92.1362 126.027L92.2515 126.219L92.3286 126.415L92.3679 126.618L92.3683 126.825L92.3547 126.93L92.2999 127.135L92.2111 127.321L92.0882 127.49L91.931 127.641L91.7738 127.753L91.6683 127.814L91.4567 127.91L91.2748 127.968L91.0821 128.01L90.878 128.035L90.663 128.044L90.4366 128.037L90.1988 128.013L90.0136 127.984L89.782 127.936L89.5646 127.876L89.3621 127.805L89.1742 127.721L89.0007 127.625L88.8416 127.518L88.6636 127.367L88.5676 127.268L88.4418 127.112L88.3427 126.952L88.2592 126.756L88.2138 126.554L88.207 126.347L88.2123 126.299H88.7479L88.749 126.495L88.8223 126.684L88.9486 126.847L89.0809 126.964L89.2369 127.074L89.4112 127.17L89.6032 127.252L89.8133 127.321L90.0027 127.367L90.1221 127.39L90.3289 127.421L90.5262 127.438L90.7143 127.442L90.9279 127.429L91.1286 127.397L91.2855 127.355L91.4755 127.278L91.6441 127.166L91.7715 127.009L91.8289 126.842L91.8278 126.645L91.7537 126.456L91.6267 126.293L91.4933 126.175L91.3361 126.065L91.1596 125.969L90.9642 125.886L90.7499 125.817L90.5568 125.77L90.4347 125.746L90.2313 125.716L90.0367 125.7L89.8152 125.698L89.6069 125.715L89.4115 125.751L89.2887 125.786L89.0994 125.864L88.932 125.977L88.8053 126.133L88.7479 126.299H88.2123L88.2236 126.205L88.2781 126L88.3673 125.814L88.4901 125.646L88.6473 125.496L88.8046 125.385L88.91 125.325L89.1205 125.229L89.3008 125.171L89.4917 125.129L89.6928 125.103L89.9044 125.094L90.1267 125.101Z" fill="#7D7D7D"/>
<path d="M86.9316 43.2479L94.3762 41.9353" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M94.3761 41.9353L90.4382 19.6025" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M82.9937 20.9151L86.9315 43.248" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M90.4382 19.6025L82.9937 20.9151" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M96.4548 116.726L89.0103 115.413" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M89.0102 115.413L85.0723 137.746" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M92.5171 139.059L96.455 116.726" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M85.0723 137.746L92.5168 139.059" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M52.0236 70.0142H23.2236" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M23.2236 70.0142V108.414" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M52.0234 108.414V70.0142" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M28.0234 108.414V70.0142" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M23.2236 108.414H52.0236" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M51.759 19.3685H22.959" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22.959 19.3685V57.7685" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M51.759 57.7685V19.3685" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M27.759 57.7685V19.3685" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22.959 57.7686H51.759" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M92.7117 94.8117L93.0398 92.9506" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M91.9453 93.7172L93.8063 94.0452" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M94.554 92.2964L95.0585 92.3852" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M94.5538 92.2964L91.2905 87.6359" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M103.454 93.8657L102.949 93.7769" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M103.454 93.8657L108.114 90.6024" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M91.2905 87.6359L93.5582 74.7738" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M108.115 90.6025L110.383 77.7404" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M93.5583 74.7738L98.025 75.5614" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M110.382 77.7403L105.916 76.9526" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M130.129 37.6792L130.457 39.5402" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M131.224 38.4457L129.363 38.7737" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M129.258 40.6726L128.754 40.7618" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M129.258 40.6726L133.919 43.9362" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M120.358 42.2419L120.863 42.153" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M120.358 42.2419L117.094 46.9024" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M133.919 43.9362L136.186 56.798" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M117.094 46.9023L119.363 59.7645" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M136.186 56.798L131.72 57.5856" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M119.363 59.7645L123.829 58.9768" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M91.1854 47.1423C92.0337 47.1423 92.7214 46.4546 92.7214 45.6063C92.7214 44.758 92.0337 44.0703 91.1854 44.0703C90.3371 44.0703 89.6494 44.758 89.6494 45.6063C89.6494 46.4546 90.3371 47.1423 91.1854 47.1423Z" fill="#7D7D7D"/>
<path d="M86.1844 18.78C87.0328 18.78 87.7204 18.0923 87.7204 17.244C87.7204 16.3957 87.0328 15.708 86.1844 15.708C85.3361 15.708 84.6484 16.3957 84.6484 17.244C84.6484 18.0923 85.3361 18.78 86.1844 18.78Z" fill="#7D7D7D"/>
<path d="M93.2645 114.591C94.1128 114.591 94.8005 113.903 94.8005 113.055C94.8005 112.207 94.1128 111.519 93.2645 111.519C92.4162 111.519 91.7285 112.207 91.7285 113.055C91.7285 113.903 92.4162 114.591 93.2645 114.591Z" fill="#7D7D7D"/>
<path d="M88.263 142.953C89.1113 142.953 89.799 142.266 89.799 141.417C89.799 140.569 89.1113 139.881 88.263 139.881C87.4147 139.881 86.7271 140.569 86.7271 141.417C86.7271 142.266 87.4147 142.953 88.263 142.953Z" fill="#7D7D7D"/>
<path d="M37.6235 82.4866C39.2099 82.4866 40.4959 81.2006 40.4959 79.6141C40.4959 78.0277 39.2099 76.7417 37.6235 76.7417C36.037 76.7417 34.751 78.0277 34.751 79.6141C34.751 81.2006 36.037 82.4866 37.6235 82.4866Z" fill="#7D7D7D"/>
<path d="M37.6235 101.687C39.2099 101.687 40.4959 100.401 40.4959 98.8142C40.4959 97.2278 39.2099 95.9418 37.6235 95.9418C36.037 95.9418 34.751 97.2278 34.751 98.8142C34.751 100.401 36.037 101.687 37.6235 101.687Z" fill="#7D7D7D"/>
<path d="M37.3592 31.841C38.9456 31.841 40.2317 30.5549 40.2317 28.9685C40.2317 27.3821 38.9456 26.0961 37.3592 26.0961C35.7728 26.0961 34.4868 27.3821 34.4868 28.9685C34.4868 30.5549 35.7728 31.841 37.3592 31.841Z" fill="#7D7D7D"/>
<path d="M37.3592 51.041C38.9456 51.041 40.2317 49.7549 40.2317 48.1685C40.2317 46.5821 38.9456 45.2961 37.3592 45.2961C35.7728 45.2961 34.4868 46.5821 34.4868 48.1685C34.4868 49.7549 35.7728 51.041 37.3592 51.041Z" fill="#7D7D7D"/>
<path d="M141.75 76.3638C144.046 76.3638 145.907 74.5024 145.907 72.2063C145.907 69.9102 144.046 68.0488 141.75 68.0488C139.454 68.0488 137.592 69.9102 137.592 72.2063C137.592 74.5024 139.454 76.3638 141.75 76.3638Z" fill="#7D7D7D"/>
<path d="M120.622 143.715C122.918 143.715 124.779 141.854 124.779 139.558C124.779 137.261 122.918 135.4 120.622 135.4C118.326 135.4 116.464 137.261 116.464 139.558C116.464 141.854 118.326 143.715 120.622 143.715Z" fill="#7D7D7D"/>
<path d="M121.567 18.4236C123.863 18.4236 125.725 16.5622 125.725 14.2661C125.725 11.97 123.863 10.1086 121.567 10.1086C119.271 10.1086 117.41 11.97 117.41 14.2661C117.41 16.5622 119.271 18.4236 121.567 18.4236Z" fill="#7D7D7D"/>
<path d="M91.1854 48.2464C92.6434 48.2464 93.8254 47.0644 93.8254 45.6064C93.8254 44.1483 92.6434 42.9664 91.1854 42.9664C89.7274 42.9664 88.5454 44.1483 88.5454 45.6064C88.5454 47.0644 89.7274 48.2464 91.1854 48.2464Z" fill="#7D7D7D"/>
<path d="M86.1844 19.884C87.6425 19.884 88.8244 18.702 88.8244 17.244C88.8244 15.786 87.6425 14.604 86.1844 14.604C84.7264 14.604 83.5444 15.786 83.5444 17.244C83.5444 18.702 84.7264 19.884 86.1844 19.884Z" fill="#7D7D7D"/>
<path d="M93.2645 115.695C94.7225 115.695 95.9045 114.513 95.9045 113.055C95.9045 111.597 94.7225 110.415 93.2645 110.415C91.8065 110.415 90.6245 111.597 90.6245 113.055C90.6245 114.513 91.8065 115.695 93.2645 115.695Z" fill="#7D7D7D"/>
<path d="M88.2635 144.057C89.7216 144.057 90.9035 142.875 90.9035 141.417C90.9035 139.959 89.7216 138.777 88.2635 138.777C86.8055 138.777 85.6235 139.959 85.6235 141.417C85.6235 142.875 86.8055 144.057 88.2635 144.057Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.9546 73.9449H43.2932V85.2835H31.9546V73.9449Z" fill="#7D7D7D"/>
<path d="M37.6239 104.483C40.7549 104.483 43.2932 101.945 43.2932 98.8141C43.2932 95.6831 40.7549 93.1448 37.6239 93.1448C34.4928 93.1448 31.9546 95.6831 31.9546 98.8141C31.9546 101.945 34.4928 104.483 37.6239 104.483Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.6899 23.2992H43.0285V34.6378H31.6899V23.2992Z" fill="#7D7D7D"/>
<path d="M37.3592 53.8378C40.4903 53.8378 43.0285 51.2996 43.0285 48.1685C43.0285 45.0374 40.4903 42.4992 37.3592 42.4992C34.2282 42.4992 31.6899 45.0374 31.6899 48.1685C31.6899 51.2996 34.2282 53.8378 37.3592 53.8378Z" fill="#7D7D7D"/>
<path d="M141.749 79.3874C145.716 79.3874 148.931 76.1723 148.931 72.2063C148.931 68.2403 145.716 65.0252 141.749 65.0252C137.783 65.0252 134.568 68.2403 134.568 72.2063C134.568 76.1723 137.783 79.3874 141.749 79.3874Z" fill="#7D7D7D"/>
<path d="M120.622 146.739C124.588 146.739 127.803 143.523 127.803 139.557C127.803 135.591 124.588 132.376 120.622 132.376C116.656 132.376 113.441 135.591 113.441 139.557C113.441 143.523 116.656 146.739 120.622 146.739Z" fill="#7D7D7D"/>
<path d="M121.567 21.4472C125.533 21.4472 128.748 18.2321 128.748 14.2661C128.748 10.3001 125.533 7.08502 121.567 7.08502C117.601 7.08502 114.386 10.3001 114.386 14.2661C114.386 18.2321 117.601 21.4472 121.567 21.4472Z" fill="#7D7D7D"/>
<path d="M91.1854 47.1423C92.0337 47.1423 92.7214 46.4546 92.7214 45.6063C92.7214 44.758 92.0337 44.0703 91.1854 44.0703C90.3371 44.0703 89.6494 44.758 89.6494 45.6063C89.6494 46.4546 90.3371 47.1423 91.1854 47.1423Z" fill="#7D7D7D"/>
<path d="M86.1844 18.78C87.0328 18.78 87.7204 18.0923 87.7204 17.244C87.7204 16.3957 87.0328 15.708 86.1844 15.708C85.3361 15.708 84.6484 16.3957 84.6484 17.244C84.6484 18.0923 85.3361 18.78 86.1844 18.78Z" fill="#7D7D7D"/>
<path d="M93.2645 114.591C94.1128 114.591 94.8005 113.903 94.8005 113.055C94.8005 112.207 94.1128 111.519 93.2645 111.519C92.4162 111.519 91.7285 112.207 91.7285 113.055C91.7285 113.903 92.4162 114.591 93.2645 114.591Z" fill="#7D7D7D"/>
<path d="M88.263 142.953C89.1113 142.953 89.799 142.266 89.799 141.417C89.799 140.569 89.1113 139.881 88.263 139.881C87.4147 139.881 86.7271 140.569 86.7271 141.417C86.7271 142.266 87.4147 142.953 88.263 142.953Z" fill="#7D7D7D"/>
<path d="M37.6235 82.4866C39.2099 82.4866 40.4959 81.2006 40.4959 79.6141C40.4959 78.0277 39.2099 76.7417 37.6235 76.7417C36.037 76.7417 34.751 78.0277 34.751 79.6141C34.751 81.2006 36.037 82.4866 37.6235 82.4866Z" fill="#7D7D7D"/>
<path d="M37.6235 101.687C39.2099 101.687 40.4959 100.401 40.4959 98.8142C40.4959 97.2278 39.2099 95.9418 37.6235 95.9418C36.037 95.9418 34.751 97.2278 34.751 98.8142C34.751 100.401 36.037 101.687 37.6235 101.687Z" fill="#7D7D7D"/>
<path d="M37.3592 31.841C38.9456 31.841 40.2317 30.5549 40.2317 28.9685C40.2317 27.3821 38.9456 26.0961 37.3592 26.0961C35.7728 26.0961 34.4868 27.3821 34.4868 28.9685C34.4868 30.5549 35.7728 31.841 37.3592 31.841Z" fill="#7D7D7D"/>
<path d="M37.3592 51.041C38.9456 51.041 40.2317 49.7549 40.2317 48.1685C40.2317 46.5821 38.9456 45.2961 37.3592 45.2961C35.7728 45.2961 34.4868 46.5821 34.4868 48.1685C34.4868 49.7549 35.7728 51.041 37.3592 51.041Z" fill="#7D7D7D"/>
<path d="M141.75 76.3638C144.046 76.3638 145.907 74.5024 145.907 72.2063C145.907 69.9102 144.046 68.0488 141.75 68.0488C139.454 68.0488 137.592 69.9102 137.592 72.2063C137.592 74.5024 139.454 76.3638 141.75 76.3638Z" fill="#7D7D7D"/>
<path d="M120.622 143.715C122.918 143.715 124.779 141.854 124.779 139.558C124.779 137.261 122.918 135.4 120.622 135.4C118.326 135.4 116.464 137.261 116.464 139.558C116.464 141.854 118.326 143.715 120.622 143.715Z" fill="#7D7D7D"/>
<path d="M121.567 18.4236C123.863 18.4236 125.725 16.5622 125.725 14.2661C125.725 11.97 123.863 10.1086 121.567 10.1086C119.271 10.1086 117.41 11.97 117.41 14.2661C117.41 16.5622 119.271 18.4236 121.567 18.4236Z" fill="#7D7D7D"/>
<path d="M91.1854 47.1423C92.0337 47.1423 92.7214 46.4546 92.7214 45.6063C92.7214 44.758 92.0337 44.0703 91.1854 44.0703C90.3371 44.0703 89.6494 44.758 89.6494 45.6063C89.6494 46.4546 90.3371 47.1423 91.1854 47.1423Z" fill="#7D7D7D"/>
<path d="M86.1844 18.78C87.0328 18.78 87.7204 18.0923 87.7204 17.244C87.7204 16.3957 87.0328 15.708 86.1844 15.708C85.3361 15.708 84.6484 16.3957 84.6484 17.244C84.6484 18.0923 85.3361 18.78 86.1844 18.78Z" fill="#7D7D7D"/>
<path d="M93.2645 114.591C94.1128 114.591 94.8005 113.903 94.8005 113.055C94.8005 112.207 94.1128 111.519 93.2645 111.519C92.4162 111.519 91.7285 112.207 91.7285 113.055C91.7285 113.903 92.4162 114.591 93.2645 114.591Z" fill="#7D7D7D"/>
<path d="M88.263 142.953C89.1113 142.953 89.799 142.266 89.799 141.417C89.799 140.569 89.1113 139.881 88.263 139.881C87.4147 139.881 86.7271 140.569 86.7271 141.417C86.7271 142.266 87.4147 142.953 88.263 142.953Z" fill="#7D7D7D"/>
<path d="M37.6235 82.4866C39.2099 82.4866 40.4959 81.2006 40.4959 79.6141C40.4959 78.0277 39.2099 76.7417 37.6235 76.7417C36.037 76.7417 34.751 78.0277 34.751 79.6141C34.751 81.2006 36.037 82.4866 37.6235 82.4866Z" fill="#7D7D7D"/>
<path d="M37.6235 101.687C39.2099 101.687 40.4959 100.401 40.4959 98.8142C40.4959 97.2278 39.2099 95.9418 37.6235 95.9418C36.037 95.9418 34.751 97.2278 34.751 98.8142C34.751 100.401 36.037 101.687 37.6235 101.687Z" fill="#7D7D7D"/>
<path d="M37.3592 31.841C38.9456 31.841 40.2317 30.5549 40.2317 28.9685C40.2317 27.3821 38.9456 26.0961 37.3592 26.0961C35.7728 26.0961 34.4868 27.3821 34.4868 28.9685C34.4868 30.5549 35.7728 31.841 37.3592 31.841Z" fill="#7D7D7D"/>
<path d="M37.3592 51.041C38.9456 51.041 40.2317 49.7549 40.2317 48.1685C40.2317 46.5821 38.9456 45.2961 37.3592 45.2961C35.7728 45.2961 34.4868 46.5821 34.4868 48.1685C34.4868 49.7549 35.7728 51.041 37.3592 51.041Z" fill="#7D7D7D"/>
<path d="M141.75 76.3638C144.046 76.3638 145.907 74.5024 145.907 72.2063C145.907 69.9102 144.046 68.0488 141.75 68.0488C139.454 68.0488 137.592 69.9102 137.592 72.2063C137.592 74.5024 139.454 76.3638 141.75 76.3638Z" fill="#7D7D7D"/>
<path d="M120.622 143.715C122.918 143.715 124.779 141.854 124.779 139.558C124.779 137.261 122.918 135.4 120.622 135.4C118.326 135.4 116.464 137.261 116.464 139.558C116.464 141.854 118.326 143.715 120.622 143.715Z" fill="#7D7D7D"/>
<path d="M121.567 18.4236C123.863 18.4236 125.725 16.5622 125.725 14.2661C125.725 11.97 123.863 10.1086 121.567 10.1086C119.271 10.1086 117.41 11.97 117.41 14.2661C117.41 16.5622 119.271 18.4236 121.567 18.4236Z" fill="#7D7D7D"/>
<path d="M91.1854 47.1423C92.0337 47.1423 92.7214 46.4546 92.7214 45.6063C92.7214 44.758 92.0337 44.0703 91.1854 44.0703C90.3371 44.0703 89.6494 44.758 89.6494 45.6063C89.6494 46.4546 90.3371 47.1423 91.1854 47.1423Z" fill="#7D7D7D"/>
<path d="M86.1844 18.78C87.0328 18.78 87.7204 18.0923 87.7204 17.244C87.7204 16.3957 87.0328 15.708 86.1844 15.708C85.3361 15.708 84.6484 16.3957 84.6484 17.244C84.6484 18.0923 85.3361 18.78 86.1844 18.78Z" fill="#7D7D7D"/>
<path d="M93.2645 114.591C94.1128 114.591 94.8005 113.903 94.8005 113.055C94.8005 112.207 94.1128 111.519 93.2645 111.519C92.4162 111.519 91.7285 112.207 91.7285 113.055C91.7285 113.903 92.4162 114.591 93.2645 114.591Z" fill="#7D7D7D"/>
<path d="M88.263 142.953C89.1113 142.953 89.799 142.266 89.799 141.417C89.799 140.569 89.1113 139.881 88.263 139.881C87.4147 139.881 86.7271 140.569 86.7271 141.417C86.7271 142.266 87.4147 142.953 88.263 142.953Z" fill="#7D7D7D"/>
<path d="M37.6235 82.4866C39.2099 82.4866 40.4959 81.2006 40.4959 79.6141C40.4959 78.0277 39.2099 76.7417 37.6235 76.7417C36.037 76.7417 34.751 78.0277 34.751 79.6141C34.751 81.2006 36.037 82.4866 37.6235 82.4866Z" fill="#7D7D7D"/>
<path d="M37.6235 101.687C39.2099 101.687 40.4959 100.401 40.4959 98.8142C40.4959 97.2278 39.2099 95.9418 37.6235 95.9418C36.037 95.9418 34.751 97.2278 34.751 98.8142C34.751 100.401 36.037 101.687 37.6235 101.687Z" fill="#7D7D7D"/>
<path d="M37.3592 31.841C38.9456 31.841 40.2317 30.5549 40.2317 28.9685C40.2317 27.3821 38.9456 26.0961 37.3592 26.0961C35.7728 26.0961 34.4868 27.3821 34.4868 28.9685C34.4868 30.5549 35.7728 31.841 37.3592 31.841Z" fill="#7D7D7D"/>
<path d="M37.3592 51.041C38.9456 51.041 40.2317 49.7549 40.2317 48.1685C40.2317 46.5821 38.9456 45.2961 37.3592 45.2961C35.7728 45.2961 34.4868 46.5821 34.4868 48.1685C34.4868 49.7549 35.7728 51.041 37.3592 51.041Z" fill="#7D7D7D"/>
<path d="M141.75 76.3638C144.046 76.3638 145.907 74.5024 145.907 72.2063C145.907 69.9102 144.046 68.0488 141.75 68.0488C139.454 68.0488 137.592 69.9102 137.592 72.2063C137.592 74.5024 139.454 76.3638 141.75 76.3638Z" fill="#7D7D7D"/>
<path d="M120.622 143.715C122.918 143.715 124.779 141.854 124.779 139.558C124.779 137.261 122.918 135.4 120.622 135.4C118.326 135.4 116.464 137.261 116.464 139.558C116.464 141.854 118.326 143.715 120.622 143.715Z" fill="#7D7D7D"/>
<path d="M121.567 18.4236C123.863 18.4236 125.725 16.5622 125.725 14.2661C125.725 11.97 123.863 10.1086 121.567 10.1086C119.271 10.1086 117.41 11.97 117.41 14.2661C117.41 16.5622 119.271 18.4236 121.567 18.4236Z" fill="#7D7D7D"/>
<path d="M91.1854 48.2464C92.6434 48.2464 93.8254 47.0644 93.8254 45.6064C93.8254 44.1483 92.6434 42.9664 91.1854 42.9664C89.7274 42.9664 88.5454 44.1483 88.5454 45.6064C88.5454 47.0644 89.7274 48.2464 91.1854 48.2464Z" fill="#7D7D7D"/>
<path d="M86.1844 19.884C87.6425 19.884 88.8244 18.702 88.8244 17.244C88.8244 15.786 87.6425 14.604 86.1844 14.604C84.7264 14.604 83.5444 15.786 83.5444 17.244C83.5444 18.702 84.7264 19.884 86.1844 19.884Z" fill="#7D7D7D"/>
<path d="M93.2645 115.695C94.7225 115.695 95.9045 114.513 95.9045 113.055C95.9045 111.597 94.7225 110.415 93.2645 110.415C91.8065 110.415 90.6245 111.597 90.6245 113.055C90.6245 114.513 91.8065 115.695 93.2645 115.695Z" fill="#7D7D7D"/>
<path d="M88.2635 144.057C89.7216 144.057 90.9035 142.875 90.9035 141.417C90.9035 139.959 89.7216 138.777 88.2635 138.777C86.8055 138.777 85.6235 139.959 85.6235 141.417C85.6235 142.875 86.8055 144.057 88.2635 144.057Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.9546 73.9449H43.2932V85.2835H31.9546V73.9449Z" fill="#7D7D7D"/>
<path d="M37.6239 104.483C40.7549 104.483 43.2932 101.945 43.2932 98.8141C43.2932 95.6831 40.7549 93.1448 37.6239 93.1448C34.4928 93.1448 31.9546 95.6831 31.9546 98.8141C31.9546 101.945 34.4928 104.483 37.6239 104.483Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.6899 23.2992H43.0285V34.6378H31.6899V23.2992Z" fill="#7D7D7D"/>
<path d="M37.3592 53.8378C40.4903 53.8378 43.0285 51.2996 43.0285 48.1685C43.0285 45.0374 40.4903 42.4992 37.3592 42.4992C34.2282 42.4992 31.6899 45.0374 31.6899 48.1685C31.6899 51.2996 34.2282 53.8378 37.3592 53.8378Z" fill="#7D7D7D"/>
<path d="M141.749 79.3874C145.716 79.3874 148.931 76.1723 148.931 72.2063C148.931 68.2403 145.716 65.0252 141.749 65.0252C137.783 65.0252 134.568 68.2403 134.568 72.2063C134.568 76.1723 137.783 79.3874 141.749 79.3874Z" fill="#7D7D7D"/>
<path d="M120.622 146.739C124.588 146.739 127.803 143.523 127.803 139.557C127.803 135.591 124.588 132.376 120.622 132.376C116.656 132.376 113.441 135.591 113.441 139.557C113.441 143.523 116.656 146.739 120.622 146.739Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M96.4057 95.8464L96.0621 95.713L95.7956 95.4579L95.6471 95.1204L95.6392 94.7519L97.0176 86.9354L97.1509 86.5919L97.4061 86.3254L97.7436 86.1772L98.1121 86.1689L102.206 86.8908L102.55 87.0246L102.816 87.2794L102.965 87.6169L102.973 87.9858L101.595 95.8022L101.461 96.1458L101.206 96.4118L100.868 96.5604L100.5 96.5683L96.4057 95.8464Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M98.7682 82.4469L98.4247 82.3135L98.1586 82.0584L98.0101 81.7208L98.0017 81.3524L99.3801 73.5359L99.5139 73.1923L99.7687 72.9259L100.106 72.7773L100.475 72.7694L104.569 73.4913L104.913 73.6251L105.179 73.8798L105.328 74.2174L105.336 74.5858L103.957 82.4023L103.824 82.7462L103.569 83.0123L103.231 83.1609L102.863 83.1688L98.7682 82.4469Z" fill="#7D7D7D"/>
<path d="M121.567 21.4472C125.533 21.4472 128.748 18.2321 128.748 14.2661C128.748 10.3001 125.533 7.08502 121.567 7.08502C117.601 7.08502 114.386 10.3001 114.386 14.2661C114.386 18.2321 117.601 21.4472 121.567 21.4472Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M126.304 37.9698L126.673 37.9778L127.01 38.1263L127.265 38.3928L127.398 38.7363L128.777 46.5528L128.769 46.9213L128.62 47.2588L128.354 47.5135L128.01 47.6473L123.916 48.3692L123.547 48.3613L123.21 48.2127L122.955 47.9463L122.821 47.6027L121.443 39.7863L121.451 39.4178L121.6 39.0803L121.866 38.8255L122.21 38.6917L126.304 37.9698Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M128.667 51.3694L129.036 51.3773L129.373 51.5259L129.628 51.7923L129.762 52.1359L131.14 59.9523L131.132 60.3208L130.983 60.6583L130.717 60.9131L130.373 61.0469L126.279 61.7688L125.91 61.7608L125.573 61.6123L125.318 61.3458L125.185 61.0023L123.806 53.1858L123.814 52.8173L123.963 52.4798L124.229 52.2251L124.573 52.0913L128.667 51.3694Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M96.4057 95.8465L96.0621 95.7131L95.7956 95.4579L95.6471 95.1204L95.6392 94.7519L97.0176 86.9355L97.1509 86.5919L97.4061 86.3255L97.7436 86.1773L98.1121 86.169L102.206 86.8909L102.55 87.0247L102.816 87.2794L102.965 87.6169L102.973 87.9858L101.595 95.8023L101.461 96.1458L101.206 96.4119L100.868 96.5604L100.5 96.5684L96.4057 95.8465Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M98.7682 82.4469L98.4247 82.3135L98.1586 82.0584L98.0101 81.7208L98.0017 81.3524L99.3801 73.5359L99.5139 73.1923L99.7687 72.9259L100.106 72.7773L100.475 72.7694L104.569 73.4913L104.913 73.6251L105.179 73.8798L105.328 74.2174L105.336 74.5858L103.957 82.4023L103.824 82.7462L103.569 83.0123L103.231 83.1609L102.863 83.1688L98.7682 82.4469Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M126.304 37.9698L126.673 37.9778L127.01 38.1263L127.265 38.3928L127.398 38.7363L128.777 46.5528L128.769 46.9213L128.62 47.2588L128.354 47.5135L128.01 47.6473L123.916 48.3692L123.547 48.3613L123.21 48.2127L122.955 47.9463L122.821 47.6027L121.443 39.7863L121.451 39.4178L121.6 39.0803L121.866 38.8255L122.21 38.6917L126.304 37.9698Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M128.667 51.3694L129.036 51.3773L129.373 51.5259L129.628 51.7923L129.762 52.1359L131.14 59.9523L131.132 60.3208L130.983 60.6583L130.717 60.9131L130.373 61.0469L126.279 61.7688L125.91 61.7608L125.573 61.6123L125.318 61.3458L125.185 61.0023L123.806 53.1858L123.814 52.8173L123.963 52.4798L124.229 52.2251L124.573 52.0913L128.667 51.3694Z" fill="#7D7D7D"/>
<path d="M87.1563 49.9626L80.908 14.5284" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M96.4617 48.322L87.1565 49.9626" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M80.908 14.5284L90.2132 12.8878" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M90.2134 12.8878L96.4617 48.322" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M98.5403 110.339L92.292 145.774" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M89.2351 108.699L98.5403 110.339" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M92.292 145.774L82.9868 144.133" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M82.9868 144.133L89.2351 108.699" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M52.7416 69.3716H22.5054" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M52.7415 69.3716V109.057" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22.5054 109.057V69.3716" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22.5054 109.057H52.7416" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M52.4769 18.726H22.2407" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M52.4771 18.726V58.411" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22.2407 58.411V18.726" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22.2407 58.411H52.4769" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M141.75 80.3323C146.237 80.3323 149.876 76.6941 149.876 72.2063C149.876 67.7184 146.237 64.0803 141.75 64.0803C137.262 64.0803 133.624 67.7184 133.624 72.2063C133.624 76.6941 137.262 80.3323 141.75 80.3323Z" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M120.622 147.683C125.11 147.683 128.748 144.045 128.748 139.558C128.748 135.07 125.11 131.432 120.622 131.432C116.134 131.432 112.496 135.07 112.496 139.558C112.496 144.045 116.134 147.683 120.622 147.683Z" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M94.3801 96.449L102.197 97.8273" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M102.197 97.8273L102.82 94.2912" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M94.2593 92.7816L95.0039 92.9128" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M94.2592 92.7817L90.7336 87.7466" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M95.0038 92.9128L94.3801 96.449" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M102.82 94.2912L103.564 94.4224" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M103.564 94.4223L108.6 90.8968" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M90.7336 87.7466L93.1291 74.1607" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M108.6 90.8968L110.995 77.3109" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M93.1292 74.1607L98.154 75.047" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M98.1541 75.047L98.7773 71.5109" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M105.97 76.425L110.995 77.3109" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M98.7773 71.5109L106.594 72.8893" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M106.594 72.8892L105.97 76.425" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M121.567 22.3921C126.054 22.3921 129.693 18.754 129.693 14.2661C129.693 9.77825 126.054 6.14014 121.567 6.14014C117.079 6.14014 113.441 9.77825 113.441 14.2661C113.441 18.754 117.079 22.3921 121.567 22.3921Z" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M128.001 36.7112L120.184 38.0893" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M120.184 38.0892L120.808 41.6254" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M129.369 40.1158L128.624 40.247" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M129.369 40.1158L134.404 43.6414" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M128.624 40.247L128.001 36.7112" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M120.808 41.6254L120.063 41.7565" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M120.063 41.7565L116.538 46.7916" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M134.404 43.6414L136.799 57.2272" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M116.538 46.7916L118.933 60.3775" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M136.799 57.2272L131.774 58.1131" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M131.774 58.1132L132.398 61.6493" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M123.958 59.4916L118.933 60.3775" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M132.398 61.6493L124.582 63.0273" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M124.582 63.0273L123.958 59.4916" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M91.1854 47.1423C92.0337 47.1423 92.7214 46.4546 92.7214 45.6063C92.7214 44.758 92.0337 44.0703 91.1854 44.0703C90.3371 44.0703 89.6494 44.758 89.6494 45.6063C89.6494 46.4546 90.3371 47.1423 91.1854 47.1423Z" fill="#7D7D7D"/>
<path d="M86.1844 18.78C87.0328 18.78 87.7204 18.0923 87.7204 17.244C87.7204 16.3957 87.0328 15.708 86.1844 15.708C85.3361 15.708 84.6484 16.3957 84.6484 17.244C84.6484 18.0923 85.3361 18.78 86.1844 18.78Z" fill="#7D7D7D"/>
<path d="M93.2645 114.591C94.1128 114.591 94.8005 113.903 94.8005 113.055C94.8005 112.207 94.1128 111.519 93.2645 111.519C92.4162 111.519 91.7285 112.207 91.7285 113.055C91.7285 113.903 92.4162 114.591 93.2645 114.591Z" fill="#7D7D7D"/>
<path d="M88.263 142.953C89.1113 142.953 89.799 142.266 89.799 141.417C89.799 140.569 89.1113 139.881 88.263 139.881C87.4147 139.881 86.7271 140.569 86.7271 141.417C86.7271 142.266 87.4147 142.953 88.263 142.953Z" fill="#7D7D7D"/>
<path d="M37.6235 82.4866C39.2099 82.4866 40.4959 81.2006 40.4959 79.6141C40.4959 78.0277 39.2099 76.7417 37.6235 76.7417C36.037 76.7417 34.751 78.0277 34.751 79.6141C34.751 81.2006 36.037 82.4866 37.6235 82.4866Z" fill="#7D7D7D"/>
<path d="M37.6235 101.687C39.2099 101.687 40.4959 100.401 40.4959 98.8142C40.4959 97.2278 39.2099 95.9418 37.6235 95.9418C36.037 95.9418 34.751 97.2278 34.751 98.8142C34.751 100.401 36.037 101.687 37.6235 101.687Z" fill="#7D7D7D"/>
<path d="M37.3592 31.841C38.9456 31.841 40.2317 30.5549 40.2317 28.9685C40.2317 27.3821 38.9456 26.0961 37.3592 26.0961C35.7728 26.0961 34.4868 27.3821 34.4868 28.9685C34.4868 30.5549 35.7728 31.841 37.3592 31.841Z" fill="#7D7D7D"/>
<path d="M37.3592 51.041C38.9456 51.041 40.2317 49.7549 40.2317 48.1685C40.2317 46.5821 38.9456 45.2961 37.3592 45.2961C35.7728 45.2961 34.4868 46.5821 34.4868 48.1685C34.4868 49.7549 35.7728 51.041 37.3592 51.041Z" fill="#7D7D7D"/>
<path d="M141.75 76.3638C144.046 76.3638 145.907 74.5024 145.907 72.2063C145.907 69.9102 144.046 68.0488 141.75 68.0488C139.454 68.0488 137.592 69.9102 137.592 72.2063C137.592 74.5024 139.454 76.3638 141.75 76.3638Z" fill="#7D7D7D"/>
<path d="M120.622 143.715C122.918 143.715 124.779 141.854 124.779 139.558C124.779 137.261 122.918 135.4 120.622 135.4C118.326 135.4 116.464 137.261 116.464 139.558C116.464 141.854 118.326 143.715 120.622 143.715Z" fill="#7D7D7D"/>
<path d="M121.567 18.4236C123.863 18.4236 125.725 16.5622 125.725 14.2661C125.725 11.97 123.863 10.1086 121.567 10.1086C119.271 10.1086 117.41 11.97 117.41 14.2661C117.41 16.5622 119.271 18.4236 121.567 18.4236Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.0411 95.0123L19.2262 95.06L19.3971 95.1389L19.5543 95.2497L19.6378 95.3271L19.7614 95.4693L19.8631 95.6374L19.9168 95.7728L19.9565 95.9561L19.9799 96.1435L19.9905 96.3283L19.9923 96.4523V97.3636H15.9751V96.7634L15.9789 96.5733L15.9797 96.5612H16.4993V96.769H17.6955V96.5835L17.6861 96.4633H18.2198V96.769H19.4016V96.3952L19.3918 96.2044L19.3574 96.0218L19.2822 95.8457L19.2455 95.7943L19.105 95.6703L18.9239 95.6008L18.8143 95.591L18.6223 95.6231L18.4571 95.7199L18.3898 95.786L18.2931 95.9515L18.2439 96.1398L18.2228 96.3461L18.2198 96.4633H17.6861L17.6808 96.3941L17.6233 96.2127L17.5425 96.0997L17.3803 95.9943L17.197 95.9511L17.0901 95.9455L16.8924 95.9678L16.7223 96.0419L16.6497 96.1035L16.547 96.2683L16.5046 96.4535L16.4993 96.5612H15.9797L15.9925 96.3835L16.0231 96.1866L16.0378 96.1246L16.1021 95.9413L16.2038 95.772L16.248 95.7183L16.3852 95.5929L16.5473 95.4908L16.6305 95.4515L16.8047 95.3903L16.9952 95.3559L17.0984 95.351L17.3063 95.3721L17.4975 95.4356L17.6721 95.5411L17.8116 95.6681L17.8305 95.6889L17.9045 95.5195L18.0176 95.3563L18.1627 95.2198L18.2126 95.1839L18.3906 95.0853L18.5856 95.0229L18.7757 94.9983L18.8423 94.9965L19.0411 95.0123Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.9921 92.4997H19.7181L19.8477 92.6592L19.9456 92.8244L20.0186 93.019L20.0499 93.2208L20.0511 93.2722L20.0378 93.4612L19.9887 93.6657L19.9037 93.8531L19.7823 94.0232L19.6735 94.1343L19.5227 94.2493L19.3583 94.3403L19.1803 94.4076L18.9894 94.4511L18.7846 94.4711L18.7135 94.4722L18.5079 94.4605L18.3155 94.4246L18.1364 94.3653L17.9708 94.2821L17.8181 94.1752L17.7702 94.1343L17.642 94.0013L17.5256 93.8312L17.4459 93.6449L17.4016 93.4423L17.3926 93.2877L17.4028 93.1781H17.9168L17.9436 93.3724L18.0241 93.5436L18.1439 93.6785L18.2978 93.7836L18.4728 93.8497L18.6689 93.877L18.7109 93.8777L18.9032 93.8626L19.0919 93.8093L19.2544 93.7186L19.2978 93.6838L19.4282 93.5353L19.5045 93.3622L19.5269 93.1834L19.5053 92.9937L19.4316 92.813L19.3054 92.6618L19.15 92.5575L18.9709 92.4914L18.7672 92.4642L18.7237 92.4634L18.5348 92.4793L18.3477 92.5333L18.1852 92.6267L18.1413 92.6618L18.0135 92.8126L17.9387 92.991L17.9168 93.1781H17.4028L17.4096 93.0999L17.461 92.9207L17.5468 92.7503L17.667 92.5881L17.7509 92.4997H17.4515V91.932H19.9921V92.4997Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.9834 90.5876H19.9922V91.1822H17.9834V91.4187H17.4591V91.1822H16.5063V90.5876H17.4591V90.119H17.9834V90.5876Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.9834 89.1439H19.9922V89.7384H17.9834V89.975H17.4591V89.7384H16.5063V89.1439H17.4591V88.6752H17.9834V89.1439Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.4792 86.0224L19.6259 86.1376L19.6524 86.1615L19.785 86.3013L19.8795 86.4336L19.9641 86.6051L20.0095 86.7484L20.042 86.9351L20.0511 87.1131L20.0386 87.3176L20.0005 87.5062L19.9237 87.7065L19.8122 87.8857L19.6894 88.0225L19.5442 88.1389L19.3825 88.2311L19.2045 88.2995L19.0094 88.3434L18.7978 88.3634L18.7237 88.3649L18.5079 88.3532L18.308 88.3184L18.1239 88.2602L17.9561 88.1786L17.7804 88.0538L17.7573 88.0335L17.6152 87.8766L17.5079 87.6986L17.4357 87.5001L17.4016 87.3134L17.3926 87.1464L17.3937 87.1317H17.9168L17.9451 87.3142L17.9512 87.332L18.043 87.4971L18.0472 87.5017L18.1867 87.626L18.1976 87.6328L18.3696 87.7084L18.3968 87.716V86.5428L18.2101 86.6124L18.0524 86.7329L17.9549 86.8962L17.9176 87.1029L17.9168 87.1317H17.3937L17.405 86.9453L17.4428 86.7609L17.5184 86.5662L17.6284 86.3939L17.7497 86.2639L17.9176 86.1388L18.1118 86.0443L18.2993 85.988L18.506 85.954L18.6931 85.943L18.732 85.9426H18.8696V87.7549L19.0631 87.7198L19.2404 87.64L19.3503 87.5516L19.4649 87.3894L19.5186 87.2103L19.5269 87.0927L19.5045 86.9045L19.4263 86.7318L19.2936 86.5919L19.1338 86.4676L19.0533 86.4124L19.3201 85.9196L19.4792 86.0224Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.4515 85.3224V84.7278H17.6934L17.5641 84.5944L17.4591 84.4436L17.402 84.2671L17.3926 84.1435L17.4164 83.9534L17.481 83.772L17.5377 83.6635L18.1016 83.9292L18.0128 84.0925L17.9833 84.2524L18.0177 84.4376L18.1402 84.5937L18.3208 84.6813L18.5299 84.7203L18.6969 84.7278H19.9921V85.3224H17.4515Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5077 82.3044L17.4517 83.4364V82.7625L18.9038 81.9926L17.4517 81.2745V80.618L21.351 82.623V83.2867L19.5077 82.3044Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.7764 44.3666L18.9616 44.4143L19.1324 44.4932L19.2896 44.604L19.3732 44.6815L19.4968 44.8236L19.5985 44.9918L19.6521 45.1271L19.6918 45.3104L19.7152 45.4978L19.7258 45.6827L19.7277 45.8066V46.7179H15.7104V46.1177L15.7142 45.9276L15.7149 45.9155H16.2347V46.1234H17.4309V45.9378L17.4214 45.8176H17.9555V46.1234H19.137V45.7496L19.1271 45.5587L19.0927 45.3762L19.0175 45.2L18.9809 45.1486L18.8403 45.0247L18.6592 44.9551L18.5496 44.9453L18.3576 44.9774L18.1924 45.0738L18.1252 45.1403L18.0284 45.3059L17.9793 45.4941L17.9581 45.7004L17.9555 45.8176H17.4214L17.4161 45.7484L17.3587 45.567L17.2778 45.454L17.1157 45.3486L16.9323 45.3055L16.8254 45.2998L16.6277 45.3221L16.4576 45.3962L16.3851 45.4578L16.2823 45.6226L16.2399 45.8078L16.2347 45.9155H15.7149L15.7278 45.7378L15.7584 45.5409L15.7732 45.479L15.8374 45.2957L15.9391 45.1263L15.9837 45.0726L16.1205 44.9472L16.2827 44.8451L16.3658 44.8058L16.54 44.7446L16.7305 44.7102L16.8337 44.7053L17.0416 44.7264L17.2328 44.7899L17.4074 44.8954L17.5469 45.0224L17.5658 45.0432L17.6399 44.8738L17.7529 44.7106L17.898 44.5741L17.9479 44.5382L18.1259 44.4396L18.3209 44.3772L18.5111 44.3526L18.5776 44.3508L18.7764 44.3666Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.7278 41.854H19.4538L19.5833 42.0135L19.6813 42.1787L19.7542 42.3733L19.7856 42.5752L19.7867 42.6266L19.7735 42.8155L19.7243 43.02L19.6393 43.2075L19.518 43.3776L19.4091 43.4887L19.2583 43.6036L19.0939 43.6947L18.9159 43.7619L18.725 43.8054L18.5202 43.8254L18.4491 43.8266L18.2435 43.8149L18.0511 43.779L17.8724 43.7196L17.7064 43.6364L17.5538 43.5295L17.5057 43.4887L17.3777 43.3556L17.2612 43.1855L17.1815 42.9992L17.1373 42.7966L17.1282 42.6421L17.1384 42.5325H17.6524L17.6792 42.7267L17.7597 42.8979L17.8796 43.0329L18.0334 43.1379L18.2084 43.2041L18.4045 43.2313L18.4465 43.232L18.6389 43.2169L18.8275 43.1636L18.99 43.0729L19.0335 43.0381L19.1638 42.8896L19.2402 42.7165L19.2625 42.5377L19.241 42.348L19.1672 42.1673L19.041 42.0162L18.8856 41.9119L18.7065 41.8457L18.5028 41.8185L18.4593 41.8177L18.2703 41.8336L18.0833 41.8877L17.9207 41.981L17.8769 42.0162L17.7492 42.167L17.6743 42.3454L17.6524 42.5325H17.1384L17.1452 42.4542L17.1966 42.2751L17.2824 42.1046L17.4026 41.9425L17.4865 41.854H17.1872V41.2859H19.7278V41.854Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.7187 39.9419H19.7276V40.5365H17.7187V40.7731H17.1945V40.5365H16.2417V39.9419H17.1945V39.4733H17.7187V39.9419Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.7187 38.4982H19.7276V39.0927H17.7187V39.3293H17.1945V39.0927H16.2417V38.4982H17.1945V38.0295H17.7187V38.4982Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2149 35.3767L19.3615 35.4919L19.388 35.5158L19.5207 35.6556L19.6151 35.7879L19.6998 35.9595L19.7451 36.1027L19.7776 36.2894L19.7867 36.4675L19.7742 36.6719L19.7361 36.8605L19.6594 37.0608L19.5478 37.24L19.425 37.3768L19.2799 37.4932L19.1181 37.5854L18.9401 37.6538L18.7451 37.6977L18.5334 37.7177L18.4593 37.7192L18.2435 37.7075L18.0436 37.6727L17.8595 37.6145L17.6917 37.5329L17.5164 37.4082L17.4929 37.3878L17.3508 37.2309L17.2435 37.0529L17.1713 36.8545L17.1373 36.6678L17.1282 36.5007L17.1293 36.486H17.6524L17.6808 36.6685L17.6868 36.6863L17.7786 36.8515L17.7828 36.856L17.9222 36.9803L17.9332 36.9871L18.1052 37.0627L18.1324 37.0703V35.8971L17.9457 35.9667L17.7881 36.0872L17.6906 36.2505L17.6532 36.4572L17.6524 36.486H17.1293L17.1406 36.2996L17.1785 36.1152L17.2541 35.9206L17.364 35.7482L17.4853 35.6182L17.6532 35.4931L17.8474 35.3986L18.0349 35.3423L18.2416 35.3083L18.4287 35.2973L18.4676 35.2969H18.6052V37.1092L18.7987 37.0741L18.976 36.9943L19.0863 36.9059L19.2005 36.7437L19.2542 36.5646L19.2625 36.447L19.2405 36.2588L19.1619 36.0861L19.0293 35.9463L18.8694 35.8219L18.7889 35.7667L19.0558 35.2739L19.2149 35.3767Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.1872 34.6767V34.0822H17.429L17.2998 33.9488L17.1947 33.798L17.1376 33.6215L17.1282 33.4979L17.152 33.3078L17.2166 33.1264L17.2733 33.0179L17.8372 33.2836L17.7484 33.4469L17.7189 33.6067L17.7533 33.7919L17.8758 33.948L18.0564 34.0357L18.2654 34.0746L18.4325 34.0822H19.7278V34.6767H17.1872Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.243 31.6588L17.187 32.7907V32.1168L18.6391 31.3469L17.187 30.6288V29.9724L21.0863 31.9774V32.641L19.243 31.6588Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M137.91 82.6087H139.564V82.7425L139.559 82.9367L139.544 83.1215L139.514 83.32L139.47 83.5059L139.458 83.5502L139.388 83.7297L139.297 83.9028L139.182 84.0695L139.109 84.1594L138.965 84.3083L138.812 84.4372L138.649 84.5465L138.478 84.6356L138.296 84.7052L138.105 84.7547L137.905 84.7845L137.696 84.7944L137.49 84.7849L137.292 84.7562L137.101 84.7082L136.918 84.6413L136.743 84.5551L136.575 84.4497L136.415 84.3253L136.262 84.1817L136.122 84.0241L136 83.859L135.898 83.6858L135.814 83.5052L135.749 83.317L135.702 83.1212L135.674 82.9175L135.665 82.7066L135.674 82.4907L135.703 82.2833L135.75 82.0841L135.816 81.8936L135.902 81.7114L136.006 81.5376L136.13 81.3716L136.272 81.2148L136.428 81.0704L136.592 80.9457L136.765 80.8399L136.945 80.7537L137.134 80.6864L137.33 80.6384L137.536 80.6093L137.749 80.5999L137.951 80.6093L138.146 80.6373L138.336 80.6845L138.52 80.7503L138.622 80.7964L138.791 80.8939L138.959 81.0149L139.102 81.1369L139.244 81.2764L139.385 81.4333L138.954 81.8433L138.828 81.6902L138.695 81.5576L138.519 81.4208L138.332 81.3157L138.135 81.2424L137.928 81.2008L137.755 81.1906L137.561 81.2012L137.378 81.2333L137.171 81.2998L136.978 81.3973L136.8 81.5255L136.689 81.6283L136.565 81.7677L136.445 81.9488L136.354 82.1453L136.293 82.3573L136.266 82.5456L136.259 82.7035L136.271 82.9065L136.306 83.0981L136.364 83.278L136.446 83.4462L136.551 83.6031L136.68 83.7482L136.738 83.803L136.909 83.9391L137.085 84.0472L137.267 84.1269L137.453 84.1787L137.645 84.2021L137.71 84.2036L137.901 84.1896L138.083 84.1473L138.256 84.077L138.42 83.9784L138.511 83.9092L138.651 83.7739L138.775 83.6057L138.859 83.4228L138.905 83.2251L138.908 83.1994H137.91V82.6087Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M140.298 84.7354V80.4456L143.193 83.5093V80.7181H143.788V84.9792L140.893 81.9227V84.7354H140.298Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M145.813 80.7223L146.012 80.7347L146.221 80.7601L146.406 80.7967L146.545 80.8372L146.727 80.9063L146.901 80.9959L147.066 81.1055L147.223 81.2359L147.367 81.3829L147.492 81.5417L147.598 81.711L147.685 81.8921L147.752 82.084L147.8 82.287L147.829 82.5013L147.838 82.7266L147.829 82.953L147.798 83.168L147.748 83.3721L147.678 83.5649L147.588 83.7467L147.478 83.9175L147.348 84.0774L147.197 84.2259L147.034 84.3578L146.867 84.4678L146.696 84.5566L146.521 84.6235L146.339 84.6726L146.152 84.704L145.938 84.7244L145.733 84.7335L145.586 84.7354H144.763V84.1447H145.357H145.63L145.826 84.1394L146.024 84.1205L146.22 84.0842L146.308 84.0596L146.488 83.9855L146.655 83.8869L146.796 83.7754L146.948 83.6159L147.069 83.4394L147.159 83.2459L147.216 83.035L147.24 82.8464L147.244 82.7277L147.233 82.5297L147.201 82.3441L147.134 82.137L147.035 81.9476L146.906 81.7757L146.802 81.6706L146.64 81.5477L146.451 81.4502L146.274 81.3882L146.078 81.344L145.863 81.3176L145.678 81.3092L145.63 81.3089H145.357V84.1447H144.763V80.7181H145.597L145.813 80.7223Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M118.263 150.558H119.444V151.082H118.263V150.558Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M120.083 148.069L121.186 150.848L122.305 148.069H122.964L121.173 152.379L119.424 148.069H120.083Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M109.791 90.8503L109.672 91.5295L109.147 91.1013L109.313 90.162L113.299 90.8651L113.195 91.4505L109.791 90.8503Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M111.585 86.5163L111.814 86.539L111.992 86.5666L112.226 86.6146L112.444 86.6743L112.648 86.7457L112.836 86.8285L113.009 86.923L113.168 87.0288L113.311 87.1464L113.44 87.2753L113.563 87.4283L113.677 87.6165L113.752 87.8104L113.791 88.0093L113.791 88.2134L113.778 88.3173L113.724 88.5183L113.636 88.7017L113.516 88.8676L113.361 89.0161L113.206 89.1269L113.102 89.187L112.894 89.2815L112.715 89.3385L112.525 89.3797L112.325 89.4047L112.113 89.4133L111.89 89.4062L111.656 89.3827L111.474 89.3544L111.246 89.3071L111.032 89.2482L110.832 89.1775L110.647 89.0951L110.477 89.001L110.32 88.8955L110.145 88.747L110.05 88.6491L109.927 88.4957L109.829 88.3388L109.747 88.1457L109.702 87.9469L109.696 87.7424L109.701 87.6959H110.228L110.229 87.8891L110.301 88.075L110.426 88.2349L110.556 88.3509L110.709 88.459L110.881 88.5535L111.07 88.634L111.277 88.7013L111.463 88.747L111.58 88.7697L111.784 88.7999L111.978 88.8169L112.164 88.8207L112.374 88.8079L112.571 88.7761L112.726 88.7353L112.913 88.6597L113.079 88.5493L113.204 88.3948L113.261 88.2307L113.26 88.0369L113.187 87.8501L113.062 87.6899L112.93 87.5735L112.775 87.4654L112.602 87.3705L112.41 87.2893L112.198 87.2212L112.009 87.1751L111.888 87.1517L111.688 87.1222L111.497 87.106L111.278 87.1037L111.074 87.1207L110.881 87.1566L110.76 87.191L110.574 87.2677L110.409 87.3788L110.284 87.533L110.228 87.6959H109.701L109.712 87.6033L109.766 87.4019L109.853 87.2186L109.974 87.053L110.129 86.9056L110.284 86.7968L110.388 86.7371L110.595 86.6429L110.772 86.5855L110.96 86.5443L111.158 86.519L111.366 86.5095L111.585 86.5163Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M111.662 85.3496L113.089 85.6013L113.301 85.6217L113.501 85.5952L113.667 85.4981L113.767 85.3295L113.787 85.2479L113.789 85.0627L113.709 84.8926L113.543 84.7664L113.361 84.701L113.252 84.6776L111.824 84.4258L111.928 83.8404L113.369 84.0944L113.563 84.1375L113.749 84.2002L113.872 84.2584L114.03 84.3775L114.154 84.5271L114.178 84.5642L114.262 84.7373L114.311 84.9236L114.324 85.1239L114.308 85.3106L114.303 85.3382L114.258 85.5215L114.18 85.7079L114.074 85.8696L113.94 86.0065L113.921 86.0216L113.766 86.1244L113.592 86.1943L113.528 86.209L113.335 86.2253L113.142 86.2106L112.999 86.189L111.558 85.935L111.662 85.3496Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M111.55 80.8792L111.31 82.2428L112.24 82.4069L112.476 81.0723L113.058 81.1751L112.822 82.5097L114.713 82.843L114.61 83.4284L110.624 82.7258L110.968 80.7767L111.55 80.8792Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M118.382 24.9637V24.4913H119.505V23.3688H119.977V24.4913H121.159V24.9637H119.977V26.0863H119.505V24.9637H118.382Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M122.089 22.778L123.193 25.5563L124.311 22.778H124.971L123.18 27.0878L121.431 22.778H122.089Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.381 47.2973L114.261 46.6181L114.901 46.8411L115.066 47.7803L111.081 48.4829L110.978 47.8975L114.381 47.2973Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.177 49.2392L114.37 49.2691L114.553 49.3148L114.768 49.3946L114.891 49.4543L115.059 49.5559L115.205 49.6701L115.348 49.8235L115.458 49.9951L115.535 50.1848L115.567 50.3213L115.585 50.5288L115.566 50.731L115.508 50.9279L115.413 51.1191L115.305 51.2745L115.228 51.3659L115.065 51.5255L114.918 51.64L114.756 51.7431L114.578 51.8346L114.386 51.9147L114.178 51.9832L113.955 52.0402L113.778 52.0754L113.542 52.1098L113.317 52.1283L113.101 52.1309L112.896 52.1177L112.701 52.0882L112.515 52.0429L112.341 51.9816L112.176 51.9042L112.008 51.8025L111.837 51.6645L111.699 51.5085L111.595 51.3346L111.524 51.1433L111.502 51.0409L111.484 50.8334L111.489 50.7714H112.015L112.017 50.9453L112.085 51.1271L112.217 51.2775L112.389 51.3852L112.552 51.4499L112.735 51.4986L112.93 51.5281L113.139 51.5387L113.361 51.5304L113.555 51.5088L113.676 51.4899L113.874 51.4491L114.06 51.3988L114.265 51.3263L114.452 51.2405L114.621 51.1411L114.722 51.067L114.871 50.9313L114.988 50.7707L115.053 50.5832L115.05 50.4105L114.983 50.2295L114.851 50.0794L114.68 49.9717L114.518 49.9071L114.337 49.8583L114.143 49.8281L113.938 49.8167L113.72 49.8247L113.53 49.8455L113.412 49.864L113.21 49.9055L113.022 49.9558L112.847 50.0155L112.653 50.0994L112.479 50.197L112.348 50.288L112.198 50.4233L112.079 50.5836L112.015 50.7714H111.489L111.503 50.6312L111.56 50.4339L111.654 50.2416L111.762 50.0847L111.839 49.9925L112.002 49.8326L112.151 49.7177L112.315 49.6142L112.495 49.5219L112.691 49.4411L112.903 49.3719L113.131 49.314L113.312 49.2781L113.543 49.2445L113.763 49.2268L113.975 49.2249L114.177 49.2392Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.505 53.1057L113.078 53.3574L112.871 53.4107L112.692 53.5041L112.569 53.6522L112.534 53.8446L112.543 53.9281L112.604 54.1028L112.737 54.2354L112.936 54.297L113.13 54.2966L113.241 54.2811L114.668 54.0294L114.771 54.6149L113.331 54.8689L113.133 54.8949L112.936 54.8999L112.802 54.8874L112.613 54.8292L112.444 54.7309L112.409 54.7044L112.271 54.5706L112.161 54.4119L112.08 54.2282L112.032 54.0472L112.027 54.02L112.006 53.8321L112.016 53.6303L112.06 53.4425L112.14 53.2679L112.152 53.2471L112.263 53.0974L112.402 52.9723L112.457 52.9364L112.633 52.8555L112.82 52.803L112.961 52.7742L114.402 52.5203L114.505 53.1057Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M116.139 57.2681L115.899 55.9044L114.968 56.0688L115.203 57.4034L114.621 57.5058L114.386 56.1712L112.495 56.5046L112.392 55.9192L116.377 55.2166L116.721 57.1656L116.139 57.2681Z" fill="#7D7D7D"/>
<path d="M51.7971 70.3165H23.4507" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M23.4507 70.3165V108.112" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M27.9861 70.5055V107.923" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M51.7971 108.112V70.3165" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M23.4507 108.112H51.7971" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M51.5325 19.6708H23.186" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M23.186 19.6708V57.4661" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M27.7214 19.8599V57.2772" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M51.5325 57.4661V19.6708" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M23.186 57.4661H51.5325" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M94.7961 91.9169L103.357 93.4264" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M94.7959 91.9169L91.73 87.5383" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M103.357 93.4264L107.735 90.3605" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M95.7319 89.8741L95.9946 88.3853" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M95.1189 88.9984L96.6076 89.261" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M91.73 87.5383L93.896 75.2556" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M107.735 90.3605L109.901 78.0774" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M93.8962 75.2556L109.901 78.0774" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M100.488 92.228C104.662 92.228 108.047 88.8437 108.047 84.6689C108.047 80.4942 104.662 77.1099 100.488 77.1099C96.3128 77.1099 92.9285 80.4942 92.9285 84.6689C92.9285 88.8437 96.3128 92.228 100.488 92.228Z" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M129.161 41.1121L120.6 42.6217" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M129.161 41.1121L133.539 44.1777" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M120.6 42.6216L117.534 46.9999" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M128.98 43.3514L129.243 44.8402" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M129.856 43.9645L128.367 44.2272" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M133.539 44.1777L135.705 56.4608" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M117.534 46.9999L119.7 59.283" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M135.705 56.4608L119.7 59.2829" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M126.291 57.4284C130.466 57.4284 133.851 54.044 133.851 49.8693C133.851 45.6945 130.466 42.3102 126.291 42.3102C122.117 42.3102 118.732 45.6945 118.732 49.8693C118.732 54.044 122.117 57.4284 126.291 57.4284Z" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M91.1854 47.1423C92.0337 47.1423 92.7214 46.4546 92.7214 45.6063C92.7214 44.758 92.0337 44.0703 91.1854 44.0703C90.3371 44.0703 89.6494 44.758 89.6494 45.6063C89.6494 46.4546 90.3371 47.1423 91.1854 47.1423Z" fill="#7D7D7D"/>
<path d="M86.1844 18.78C87.0328 18.78 87.7204 18.0923 87.7204 17.244C87.7204 16.3957 87.0328 15.708 86.1844 15.708C85.3361 15.708 84.6484 16.3957 84.6484 17.244C84.6484 18.0923 85.3361 18.78 86.1844 18.78Z" fill="#7D7D7D"/>
<path d="M93.2645 114.591C94.1128 114.591 94.8005 113.903 94.8005 113.055C94.8005 112.207 94.1128 111.519 93.2645 111.519C92.4162 111.519 91.7285 112.207 91.7285 113.055C91.7285 113.903 92.4162 114.591 93.2645 114.591Z" fill="#7D7D7D"/>
<path d="M88.263 142.953C89.1113 142.953 89.799 142.266 89.799 141.417C89.799 140.569 89.1113 139.881 88.263 139.881C87.4147 139.881 86.7271 140.569 86.7271 141.417C86.7271 142.266 87.4147 142.953 88.263 142.953Z" fill="#7D7D7D"/>
<path d="M37.6235 82.4866C39.2099 82.4866 40.4959 81.2006 40.4959 79.6141C40.4959 78.0277 39.2099 76.7417 37.6235 76.7417C36.037 76.7417 34.751 78.0277 34.751 79.6141C34.751 81.2006 36.037 82.4866 37.6235 82.4866Z" fill="#7D7D7D"/>
<path d="M37.6235 101.687C39.2099 101.687 40.4959 100.401 40.4959 98.8142C40.4959 97.2278 39.2099 95.9418 37.6235 95.9418C36.037 95.9418 34.751 97.2278 34.751 98.8142C34.751 100.401 36.037 101.687 37.6235 101.687Z" fill="#7D7D7D"/>
<path d="M37.3592 31.841C38.9456 31.841 40.2317 30.5549 40.2317 28.9685C40.2317 27.3821 38.9456 26.0961 37.3592 26.0961C35.7728 26.0961 34.4868 27.3821 34.4868 28.9685C34.4868 30.5549 35.7728 31.841 37.3592 31.841Z" fill="#7D7D7D"/>
<path d="M37.3592 51.041C38.9456 51.041 40.2317 49.7549 40.2317 48.1685C40.2317 46.5821 38.9456 45.2961 37.3592 45.2961C35.7728 45.2961 34.4868 46.5821 34.4868 48.1685C34.4868 49.7549 35.7728 51.041 37.3592 51.041Z" fill="#7D7D7D"/>
<path d="M141.75 76.3638C144.046 76.3638 145.907 74.5024 145.907 72.2063C145.907 69.9102 144.046 68.0488 141.75 68.0488C139.454 68.0488 137.592 69.9102 137.592 72.2063C137.592 74.5024 139.454 76.3638 141.75 76.3638Z" fill="#7D7D7D"/>
<path d="M120.622 143.715C122.918 143.715 124.779 141.854 124.779 139.558C124.779 137.261 122.918 135.4 120.622 135.4C118.326 135.4 116.464 137.261 116.464 139.558C116.464 141.854 118.326 143.715 120.622 143.715Z" fill="#7D7D7D"/>
<path d="M121.567 18.4236C123.863 18.4236 125.725 16.5622 125.725 14.2661C125.725 11.97 123.863 10.1086 121.567 10.1086C119.271 10.1086 117.41 11.97 117.41 14.2661C117.41 16.5622 119.271 18.4236 121.567 18.4236Z" fill="#7D7D7D"/>
<path d="M91.1854 47.1423C92.0337 47.1423 92.7214 46.4546 92.7214 45.6063C92.7214 44.758 92.0337 44.0703 91.1854 44.0703C90.3371 44.0703 89.6494 44.758 89.6494 45.6063C89.6494 46.4546 90.3371 47.1423 91.1854 47.1423Z" fill="#7D7D7D"/>
<path d="M86.1844 18.78C87.0328 18.78 87.7204 18.0923 87.7204 17.244C87.7204 16.3957 87.0328 15.708 86.1844 15.708C85.3361 15.708 84.6484 16.3957 84.6484 17.244C84.6484 18.0923 85.3361 18.78 86.1844 18.78Z" fill="#7D7D7D"/>
<path d="M93.2645 114.591C94.1128 114.591 94.8005 113.903 94.8005 113.055C94.8005 112.207 94.1128 111.519 93.2645 111.519C92.4162 111.519 91.7285 112.207 91.7285 113.055C91.7285 113.903 92.4162 114.591 93.2645 114.591Z" fill="#7D7D7D"/>
<path d="M88.263 142.953C89.1113 142.953 89.799 142.266 89.799 141.417C89.799 140.569 89.1113 139.881 88.263 139.881C87.4147 139.881 86.7271 140.569 86.7271 141.417C86.7271 142.266 87.4147 142.953 88.263 142.953Z" fill="#7D7D7D"/>
<path d="M37.6235 82.4866C39.2099 82.4866 40.4959 81.2006 40.4959 79.6141C40.4959 78.0277 39.2099 76.7417 37.6235 76.7417C36.037 76.7417 34.751 78.0277 34.751 79.6141C34.751 81.2006 36.037 82.4866 37.6235 82.4866Z" fill="#7D7D7D"/>
<path d="M37.6235 101.687C39.2099 101.687 40.4959 100.401 40.4959 98.8142C40.4959 97.2278 39.2099 95.9418 37.6235 95.9418C36.037 95.9418 34.751 97.2278 34.751 98.8142C34.751 100.401 36.037 101.687 37.6235 101.687Z" fill="#7D7D7D"/>
<path d="M37.3592 31.841C38.9456 31.841 40.2317 30.5549 40.2317 28.9685C40.2317 27.3821 38.9456 26.0961 37.3592 26.0961C35.7728 26.0961 34.4868 27.3821 34.4868 28.9685C34.4868 30.5549 35.7728 31.841 37.3592 31.841Z" fill="#7D7D7D"/>
<path d="M37.3592 51.041C38.9456 51.041 40.2317 49.7549 40.2317 48.1685C40.2317 46.5821 38.9456 45.2961 37.3592 45.2961C35.7728 45.2961 34.4868 46.5821 34.4868 48.1685C34.4868 49.7549 35.7728 51.041 37.3592 51.041Z" fill="#7D7D7D"/>
<path d="M141.75 76.3638C144.046 76.3638 145.907 74.5024 145.907 72.2063C145.907 69.9102 144.046 68.0488 141.75 68.0488C139.454 68.0488 137.592 69.9102 137.592 72.2063C137.592 74.5024 139.454 76.3638 141.75 76.3638Z" fill="#7D7D7D"/>
<path d="M120.622 143.715C122.918 143.715 124.779 141.854 124.779 139.558C124.779 137.261 122.918 135.4 120.622 135.4C118.326 135.4 116.464 137.261 116.464 139.558C116.464 141.854 118.326 143.715 120.622 143.715Z" fill="#7D7D7D"/>
<path d="M121.567 18.4236C123.863 18.4236 125.725 16.5622 125.725 14.2661C125.725 11.97 123.863 10.1086 121.567 10.1086C119.271 10.1086 117.41 11.97 117.41 14.2661C117.41 16.5622 119.271 18.4236 121.567 18.4236Z" fill="#7D7D7D"/>
<path d="M141.749 79.3874C145.716 79.3874 148.931 76.1723 148.931 72.2063C148.931 68.2403 145.716 65.0252 141.749 65.0252C137.783 65.0252 134.568 68.2403 134.568 72.2063C134.568 76.1723 137.783 79.3874 141.749 79.3874Z" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M120.622 146.739C124.588 146.739 127.803 143.523 127.803 139.557C127.803 135.591 124.588 132.376 120.622 132.376C116.656 132.376 113.441 135.591 113.441 139.557C113.441 143.523 116.656 146.739 120.622 146.739Z" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M121.567 21.4472C125.533 21.4472 128.748 18.2321 128.748 14.2661C128.748 10.3001 125.533 7.08502 121.567 7.08502C117.601 7.08502 114.386 10.3001 114.386 14.2661C114.386 18.2321 117.601 21.4472 121.567 21.4472Z" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M91.1854 47.1423C92.0337 47.1423 92.7214 46.4546 92.7214 45.6063C92.7214 44.758 92.0337 44.0703 91.1854 44.0703C90.3371 44.0703 89.6494 44.758 89.6494 45.6063C89.6494 46.4546 90.3371 47.1423 91.1854 47.1423Z" fill="#7D7D7D"/>
<path d="M86.1844 18.78C87.0328 18.78 87.7204 18.0923 87.7204 17.244C87.7204 16.3957 87.0328 15.708 86.1844 15.708C85.3361 15.708 84.6484 16.3957 84.6484 17.244C84.6484 18.0923 85.3361 18.78 86.1844 18.78Z" fill="#7D7D7D"/>
<path d="M93.2645 114.591C94.1128 114.591 94.8005 113.903 94.8005 113.055C94.8005 112.207 94.1128 111.519 93.2645 111.519C92.4162 111.519 91.7285 112.207 91.7285 113.055C91.7285 113.903 92.4162 114.591 93.2645 114.591Z" fill="#7D7D7D"/>
<path d="M88.263 142.953C89.1113 142.953 89.799 142.266 89.799 141.417C89.799 140.569 89.1113 139.881 88.263 139.881C87.4147 139.881 86.7271 140.569 86.7271 141.417C86.7271 142.266 87.4147 142.953 88.263 142.953Z" fill="#7D7D7D"/>
<path d="M37.6235 82.4866C39.2099 82.4866 40.4959 81.2006 40.4959 79.6141C40.4959 78.0277 39.2099 76.7417 37.6235 76.7417C36.037 76.7417 34.751 78.0277 34.751 79.6141C34.751 81.2006 36.037 82.4866 37.6235 82.4866Z" fill="#7D7D7D"/>
<path d="M37.6235 101.687C39.2099 101.687 40.4959 100.401 40.4959 98.8142C40.4959 97.2278 39.2099 95.9418 37.6235 95.9418C36.037 95.9418 34.751 97.2278 34.751 98.8142C34.751 100.401 36.037 101.687 37.6235 101.687Z" fill="#7D7D7D"/>
<path d="M37.3592 31.841C38.9456 31.841 40.2317 30.5549 40.2317 28.9685C40.2317 27.3821 38.9456 26.0961 37.3592 26.0961C35.7728 26.0961 34.4868 27.3821 34.4868 28.9685C34.4868 30.5549 35.7728 31.841 37.3592 31.841Z" fill="#7D7D7D"/>
<path d="M37.3592 51.041C38.9456 51.041 40.2317 49.7549 40.2317 48.1685C40.2317 46.5821 38.9456 45.2961 37.3592 45.2961C35.7728 45.2961 34.4868 46.5821 34.4868 48.1685C34.4868 49.7549 35.7728 51.041 37.3592 51.041Z" fill="#7D7D7D"/>
<path d="M141.75 76.3638C144.046 76.3638 145.907 74.5024 145.907 72.2063C145.907 69.9102 144.046 68.0488 141.75 68.0488C139.454 68.0488 137.592 69.9102 137.592 72.2063C137.592 74.5024 139.454 76.3638 141.75 76.3638Z" fill="#7D7D7D"/>
<path d="M120.622 143.715C122.918 143.715 124.779 141.854 124.779 139.558C124.779 137.261 122.918 135.4 120.622 135.4C118.326 135.4 116.464 137.261 116.464 139.558C116.464 141.854 118.326 143.715 120.622 143.715Z" fill="#7D7D7D"/>
<path d="M121.567 18.4236C123.863 18.4236 125.725 16.5622 125.725 14.2661C125.725 11.97 123.863 10.1086 121.567 10.1086C119.271 10.1086 117.41 11.97 117.41 14.2661C117.41 16.5622 119.271 18.4236 121.567 18.4236Z" fill="#7D7D7D"/>
<path d="M91.1854 47.1423C92.0337 47.1423 92.7214 46.4546 92.7214 45.6063C92.7214 44.758 92.0337 44.0703 91.1854 44.0703C90.3371 44.0703 89.6494 44.758 89.6494 45.6063C89.6494 46.4546 90.3371 47.1423 91.1854 47.1423Z" fill="#7D7D7D"/>
<path d="M86.1844 18.78C87.0328 18.78 87.7204 18.0923 87.7204 17.244C87.7204 16.3957 87.0328 15.708 86.1844 15.708C85.3361 15.708 84.6484 16.3957 84.6484 17.244C84.6484 18.0923 85.3361 18.78 86.1844 18.78Z" fill="#7D7D7D"/>
<path d="M93.2645 114.591C94.1128 114.591 94.8005 113.903 94.8005 113.055C94.8005 112.207 94.1128 111.519 93.2645 111.519C92.4162 111.519 91.7285 112.207 91.7285 113.055C91.7285 113.903 92.4162 114.591 93.2645 114.591Z" fill="#7D7D7D"/>
<path d="M88.263 142.953C89.1113 142.953 89.799 142.266 89.799 141.417C89.799 140.569 89.1113 139.881 88.263 139.881C87.4147 139.881 86.7271 140.569 86.7271 141.417C86.7271 142.266 87.4147 142.953 88.263 142.953Z" fill="#7D7D7D"/>
<path d="M37.6235 82.4866C39.2099 82.4866 40.4959 81.2006 40.4959 79.6141C40.4959 78.0277 39.2099 76.7417 37.6235 76.7417C36.037 76.7417 34.751 78.0277 34.751 79.6141C34.751 81.2006 36.037 82.4866 37.6235 82.4866Z" fill="#7D7D7D"/>
<path d="M37.6235 101.687C39.2099 101.687 40.4959 100.401 40.4959 98.8142C40.4959 97.2278 39.2099 95.9418 37.6235 95.9418C36.037 95.9418 34.751 97.2278 34.751 98.8142C34.751 100.401 36.037 101.687 37.6235 101.687Z" fill="#7D7D7D"/>
<path d="M37.3592 31.841C38.9456 31.841 40.2317 30.5549 40.2317 28.9685C40.2317 27.3821 38.9456 26.0961 37.3592 26.0961C35.7728 26.0961 34.4868 27.3821 34.4868 28.9685C34.4868 30.5549 35.7728 31.841 37.3592 31.841Z" fill="#7D7D7D"/>
<path d="M37.3592 51.041C38.9456 51.041 40.2317 49.7549 40.2317 48.1685C40.2317 46.5821 38.9456 45.2961 37.3592 45.2961C35.7728 45.2961 34.4868 46.5821 34.4868 48.1685C34.4868 49.7549 35.7728 51.041 37.3592 51.041Z" fill="#7D7D7D"/>
<path d="M141.75 76.3638C144.046 76.3638 145.907 74.5024 145.907 72.2063C145.907 69.9102 144.046 68.0488 141.75 68.0488C139.454 68.0488 137.592 69.9102 137.592 72.2063C137.592 74.5024 139.454 76.3638 141.75 76.3638Z" fill="#7D7D7D"/>
<path d="M120.622 143.715C122.918 143.715 124.779 141.854 124.779 139.558C124.779 137.261 122.918 135.4 120.622 135.4C118.326 135.4 116.464 137.261 116.464 139.558C116.464 141.854 118.326 143.715 120.622 143.715Z" fill="#7D7D7D"/>
<path d="M121.567 18.4236C123.863 18.4236 125.725 16.5622 125.725 14.2661C125.725 11.97 123.863 10.1086 121.567 10.1086C119.271 10.1086 117.41 11.97 117.41 14.2661C117.41 16.5622 119.271 18.4236 121.567 18.4236Z" fill="#7D7D7D"/>
<path d="M91.1854 47.1423C92.0337 47.1423 92.7214 46.4546 92.7214 45.6063C92.7214 44.758 92.0337 44.0703 91.1854 44.0703C90.3371 44.0703 89.6494 44.758 89.6494 45.6063C89.6494 46.4546 90.3371 47.1423 91.1854 47.1423Z" fill="#7D7D7D"/>
<path d="M86.1844 18.78C87.0328 18.78 87.7204 18.0923 87.7204 17.244C87.7204 16.3957 87.0328 15.708 86.1844 15.708C85.3361 15.708 84.6484 16.3957 84.6484 17.244C84.6484 18.0923 85.3361 18.78 86.1844 18.78Z" fill="#7D7D7D"/>
<path d="M93.2645 114.591C94.1128 114.591 94.8005 113.903 94.8005 113.055C94.8005 112.207 94.1128 111.519 93.2645 111.519C92.4162 111.519 91.7285 112.207 91.7285 113.055C91.7285 113.903 92.4162 114.591 93.2645 114.591Z" fill="#7D7D7D"/>
<path d="M88.263 142.953C89.1113 142.953 89.799 142.266 89.799 141.417C89.799 140.569 89.1113 139.881 88.263 139.881C87.4147 139.881 86.7271 140.569 86.7271 141.417C86.7271 142.266 87.4147 142.953 88.263 142.953Z" fill="#7D7D7D"/>
<path d="M37.6235 82.4866C39.2099 82.4866 40.4959 81.2006 40.4959 79.6141C40.4959 78.0277 39.2099 76.7417 37.6235 76.7417C36.037 76.7417 34.751 78.0277 34.751 79.6141C34.751 81.2006 36.037 82.4866 37.6235 82.4866Z" fill="#7D7D7D"/>
<path d="M37.6235 101.687C39.2099 101.687 40.4959 100.401 40.4959 98.8142C40.4959 97.2278 39.2099 95.9418 37.6235 95.9418C36.037 95.9418 34.751 97.2278 34.751 98.8142C34.751 100.401 36.037 101.687 37.6235 101.687Z" fill="#7D7D7D"/>
<path d="M37.3592 31.841C38.9456 31.841 40.2317 30.5549 40.2317 28.9685C40.2317 27.3821 38.9456 26.0961 37.3592 26.0961C35.7728 26.0961 34.4868 27.3821 34.4868 28.9685C34.4868 30.5549 35.7728 31.841 37.3592 31.841Z" fill="#7D7D7D"/>
<path d="M37.3592 51.041C38.9456 51.041 40.2317 49.7549 40.2317 48.1685C40.2317 46.5821 38.9456 45.2961 37.3592 45.2961C35.7728 45.2961 34.4868 46.5821 34.4868 48.1685C34.4868 49.7549 35.7728 51.041 37.3592 51.041Z" fill="#7D7D7D"/>
<path d="M141.75 76.3638C144.046 76.3638 145.907 74.5024 145.907 72.2063C145.907 69.9102 144.046 68.0488 141.75 68.0488C139.454 68.0488 137.592 69.9102 137.592 72.2063C137.592 74.5024 139.454 76.3638 141.75 76.3638Z" fill="#7D7D7D"/>
<path d="M120.622 143.715C122.918 143.715 124.779 141.854 124.779 139.558C124.779 137.261 122.918 135.4 120.622 135.4C118.326 135.4 116.464 137.261 116.464 139.558C116.464 141.854 118.326 143.715 120.622 143.715Z" fill="#7D7D7D"/>
<path d="M121.567 18.4236C123.863 18.4236 125.725 16.5622 125.725 14.2661C125.725 11.97 123.863 10.1086 121.567 10.1086C119.271 10.1086 117.41 11.97 117.41 14.2661C117.41 16.5622 119.271 18.4236 121.567 18.4236Z" fill="#7D7D7D"/>
<path d="M91.1854 47.1423C92.0337 47.1423 92.7214 46.4546 92.7214 45.6063C92.7214 44.758 92.0337 44.0703 91.1854 44.0703C90.3371 44.0703 89.6494 44.758 89.6494 45.6063C89.6494 46.4546 90.3371 47.1423 91.1854 47.1423Z" fill="#7D7D7D"/>
<path d="M86.1844 18.78C87.0328 18.78 87.7204 18.0923 87.7204 17.244C87.7204 16.3957 87.0328 15.708 86.1844 15.708C85.3361 15.708 84.6484 16.3957 84.6484 17.244C84.6484 18.0923 85.3361 18.78 86.1844 18.78Z" fill="#7D7D7D"/>
<path d="M93.2645 114.591C94.1128 114.591 94.8005 113.903 94.8005 113.055C94.8005 112.207 94.1128 111.519 93.2645 111.519C92.4162 111.519 91.7285 112.207 91.7285 113.055C91.7285 113.903 92.4162 114.591 93.2645 114.591Z" fill="#7D7D7D"/>
<path d="M88.263 142.953C89.1113 142.953 89.799 142.266 89.799 141.417C89.799 140.569 89.1113 139.881 88.263 139.881C87.4147 139.881 86.7271 140.569 86.7271 141.417C86.7271 142.266 87.4147 142.953 88.263 142.953Z" fill="#7D7D7D"/>
<path d="M37.6235 82.4866C39.2099 82.4866 40.4959 81.2006 40.4959 79.6141C40.4959 78.0277 39.2099 76.7417 37.6235 76.7417C36.037 76.7417 34.751 78.0277 34.751 79.6141C34.751 81.2006 36.037 82.4866 37.6235 82.4866Z" fill="#7D7D7D"/>
<path d="M37.6235 101.687C39.2099 101.687 40.4959 100.401 40.4959 98.8142C40.4959 97.2278 39.2099 95.9418 37.6235 95.9418C36.037 95.9418 34.751 97.2278 34.751 98.8142C34.751 100.401 36.037 101.687 37.6235 101.687Z" fill="#7D7D7D"/>
<path d="M37.3592 31.841C38.9456 31.841 40.2317 30.5549 40.2317 28.9685C40.2317 27.3821 38.9456 26.0961 37.3592 26.0961C35.7728 26.0961 34.4868 27.3821 34.4868 28.9685C34.4868 30.5549 35.7728 31.841 37.3592 31.841Z" fill="#7D7D7D"/>
<path d="M37.3592 51.041C38.9456 51.041 40.2317 49.7549 40.2317 48.1685C40.2317 46.5821 38.9456 45.2961 37.3592 45.2961C35.7728 45.2961 34.4868 46.5821 34.4868 48.1685C34.4868 49.7549 35.7728 51.041 37.3592 51.041Z" fill="#7D7D7D"/>
<path d="M141.75 76.3638C144.046 76.3638 145.907 74.5024 145.907 72.2063C145.907 69.9102 144.046 68.0488 141.75 68.0488C139.454 68.0488 137.592 69.9102 137.592 72.2063C137.592 74.5024 139.454 76.3638 141.75 76.3638Z" fill="#7D7D7D"/>
<path d="M120.622 143.715C122.918 143.715 124.779 141.854 124.779 139.558C124.779 137.261 122.918 135.4 120.622 135.4C118.326 135.4 116.464 137.261 116.464 139.558C116.464 141.854 118.326 143.715 120.622 143.715Z" fill="#7D7D7D"/>
<path d="M121.567 18.4236C123.863 18.4236 125.725 16.5622 125.725 14.2661C125.725 11.97 123.863 10.1086 121.567 10.1086C119.271 10.1086 117.41 11.97 117.41 14.2661C117.41 16.5622 119.271 18.4236 121.567 18.4236Z" fill="#7D7D7D"/>
<path d="M91.1854 47.1423C92.0337 47.1423 92.7214 46.4546 92.7214 45.6063C92.7214 44.758 92.0337 44.0703 91.1854 44.0703C90.3371 44.0703 89.6494 44.758 89.6494 45.6063C89.6494 46.4546 90.3371 47.1423 91.1854 47.1423Z" fill="#7D7D7D"/>
<path d="M86.1844 18.78C87.0328 18.78 87.7204 18.0923 87.7204 17.244C87.7204 16.3957 87.0328 15.708 86.1844 15.708C85.3361 15.708 84.6484 16.3957 84.6484 17.244C84.6484 18.0923 85.3361 18.78 86.1844 18.78Z" fill="#7D7D7D"/>
<path d="M93.2645 114.591C94.1128 114.591 94.8005 113.903 94.8005 113.055C94.8005 112.207 94.1128 111.519 93.2645 111.519C92.4162 111.519 91.7285 112.207 91.7285 113.055C91.7285 113.903 92.4162 114.591 93.2645 114.591Z" fill="#7D7D7D"/>
<path d="M88.263 142.953C89.1113 142.953 89.799 142.266 89.799 141.417C89.799 140.569 89.1113 139.881 88.263 139.881C87.4147 139.881 86.7271 140.569 86.7271 141.417C86.7271 142.266 87.4147 142.953 88.263 142.953Z" fill="#7D7D7D"/>
<path d="M37.6235 82.4866C39.2099 82.4866 40.4959 81.2006 40.4959 79.6141C40.4959 78.0277 39.2099 76.7417 37.6235 76.7417C36.037 76.7417 34.751 78.0277 34.751 79.6141C34.751 81.2006 36.037 82.4866 37.6235 82.4866Z" fill="#7D7D7D"/>
<path d="M37.6235 101.687C39.2099 101.687 40.4959 100.401 40.4959 98.8142C40.4959 97.2278 39.2099 95.9418 37.6235 95.9418C36.037 95.9418 34.751 97.2278 34.751 98.8142C34.751 100.401 36.037 101.687 37.6235 101.687Z" fill="#7D7D7D"/>
<path d="M37.3592 31.841C38.9456 31.841 40.2317 30.5549 40.2317 28.9685C40.2317 27.3821 38.9456 26.0961 37.3592 26.0961C35.7728 26.0961 34.4868 27.3821 34.4868 28.9685C34.4868 30.5549 35.7728 31.841 37.3592 31.841Z" fill="#7D7D7D"/>
<path d="M37.3592 51.041C38.9456 51.041 40.2317 49.7549 40.2317 48.1685C40.2317 46.5821 38.9456 45.2961 37.3592 45.2961C35.7728 45.2961 34.4868 46.5821 34.4868 48.1685C34.4868 49.7549 35.7728 51.041 37.3592 51.041Z" fill="#7D7D7D"/>
<path d="M141.75 76.3638C144.046 76.3638 145.907 74.5024 145.907 72.2063C145.907 69.9102 144.046 68.0488 141.75 68.0488C139.454 68.0488 137.592 69.9102 137.592 72.2063C137.592 74.5024 139.454 76.3638 141.75 76.3638Z" fill="#7D7D7D"/>
<path d="M120.622 143.715C122.918 143.715 124.779 141.854 124.779 139.558C124.779 137.261 122.918 135.4 120.622 135.4C118.326 135.4 116.464 137.261 116.464 139.558C116.464 141.854 118.326 143.715 120.622 143.715Z" fill="#7D7D7D"/>
<path d="M121.567 18.4236C123.863 18.4236 125.725 16.5622 125.725 14.2661C125.725 11.97 123.863 10.1086 121.567 10.1086C119.271 10.1086 117.41 11.97 117.41 14.2661C117.41 16.5622 119.271 18.4236 121.567 18.4236Z" fill="#7D7D7D"/>
<path d="M91.1854 47.1423C92.0337 47.1423 92.7214 46.4546 92.7214 45.6063C92.7214 44.758 92.0337 44.0703 91.1854 44.0703C90.3371 44.0703 89.6494 44.758 89.6494 45.6063C89.6494 46.4546 90.3371 47.1423 91.1854 47.1423Z" fill="#7D7D7D"/>
<path d="M86.1844 18.78C87.0328 18.78 87.7204 18.0923 87.7204 17.244C87.7204 16.3957 87.0328 15.708 86.1844 15.708C85.3361 15.708 84.6484 16.3957 84.6484 17.244C84.6484 18.0923 85.3361 18.78 86.1844 18.78Z" fill="#7D7D7D"/>
<path d="M93.2645 114.591C94.1128 114.591 94.8005 113.903 94.8005 113.055C94.8005 112.207 94.1128 111.519 93.2645 111.519C92.4162 111.519 91.7285 112.207 91.7285 113.055C91.7285 113.903 92.4162 114.591 93.2645 114.591Z" fill="#7D7D7D"/>
<path d="M88.263 142.953C89.1113 142.953 89.799 142.266 89.799 141.417C89.799 140.569 89.1113 139.881 88.263 139.881C87.4147 139.881 86.7271 140.569 86.7271 141.417C86.7271 142.266 87.4147 142.953 88.263 142.953Z" fill="#7D7D7D"/>
<path d="M37.6235 82.4866C39.2099 82.4866 40.4959 81.2006 40.4959 79.6141C40.4959 78.0277 39.2099 76.7417 37.6235 76.7417C36.037 76.7417 34.751 78.0277 34.751 79.6141C34.751 81.2006 36.037 82.4866 37.6235 82.4866Z" fill="#7D7D7D"/>
<path d="M37.6235 101.687C39.2099 101.687 40.4959 100.401 40.4959 98.8142C40.4959 97.2278 39.2099 95.9418 37.6235 95.9418C36.037 95.9418 34.751 97.2278 34.751 98.8142C34.751 100.401 36.037 101.687 37.6235 101.687Z" fill="#7D7D7D"/>
<path d="M37.3592 31.841C38.9456 31.841 40.2317 30.5549 40.2317 28.9685C40.2317 27.3821 38.9456 26.0961 37.3592 26.0961C35.7728 26.0961 34.4868 27.3821 34.4868 28.9685C34.4868 30.5549 35.7728 31.841 37.3592 31.841Z" fill="#7D7D7D"/>
<path d="M37.3592 51.041C38.9456 51.041 40.2317 49.7549 40.2317 48.1685C40.2317 46.5821 38.9456 45.2961 37.3592 45.2961C35.7728 45.2961 34.4868 46.5821 34.4868 48.1685C34.4868 49.7549 35.7728 51.041 37.3592 51.041Z" fill="#7D7D7D"/>
<path d="M141.75 76.3638C144.046 76.3638 145.907 74.5024 145.907 72.2063C145.907 69.9102 144.046 68.0488 141.75 68.0488C139.454 68.0488 137.592 69.9102 137.592 72.2063C137.592 74.5024 139.454 76.3638 141.75 76.3638Z" fill="#7D7D7D"/>
<path d="M120.622 143.715C122.918 143.715 124.779 141.854 124.779 139.558C124.779 137.261 122.918 135.4 120.622 135.4C118.326 135.4 116.464 137.261 116.464 139.558C116.464 141.854 118.326 143.715 120.622 143.715Z" fill="#7D7D7D"/>
<path d="M121.567 18.4236C123.863 18.4236 125.725 16.5622 125.725 14.2661C125.725 11.97 123.863 10.1086 121.567 10.1086C119.271 10.1086 117.41 11.97 117.41 14.2661C117.41 16.5622 119.271 18.4236 121.567 18.4236Z" fill="#7D7D7D"/>
<path d="M91.1854 48.2464C92.6434 48.2464 93.8254 47.0644 93.8254 45.6064C93.8254 44.1483 92.6434 42.9664 91.1854 42.9664C89.7274 42.9664 88.5454 44.1483 88.5454 45.6064C88.5454 47.0644 89.7274 48.2464 91.1854 48.2464Z" fill="#7D7D7D"/>
<path d="M86.1844 19.884C87.6425 19.884 88.8244 18.702 88.8244 17.244C88.8244 15.786 87.6425 14.604 86.1844 14.604C84.7264 14.604 83.5444 15.786 83.5444 17.244C83.5444 18.702 84.7264 19.884 86.1844 19.884Z" fill="#7D7D7D"/>
<path d="M93.2645 115.695C94.7225 115.695 95.9045 114.513 95.9045 113.055C95.9045 111.597 94.7225 110.415 93.2645 110.415C91.8065 110.415 90.6245 111.597 90.6245 113.055C90.6245 114.513 91.8065 115.695 93.2645 115.695Z" fill="#7D7D7D"/>
<path d="M88.2635 144.057C89.7216 144.057 90.9035 142.875 90.9035 141.417C90.9035 139.959 89.7216 138.777 88.2635 138.777C86.8055 138.777 85.6235 139.959 85.6235 141.417C85.6235 142.875 86.8055 144.057 88.2635 144.057Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.9546 73.9449H43.2932V85.2835H31.9546V73.9449Z" fill="#7D7D7D"/>
<path d="M37.6239 104.483C40.7549 104.483 43.2932 101.945 43.2932 98.8141C43.2932 95.6831 40.7549 93.1448 37.6239 93.1448C34.4928 93.1448 31.9546 95.6831 31.9546 98.8141C31.9546 101.945 34.4928 104.483 37.6239 104.483Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.6899 23.2992H43.0285V34.6378H31.6899V23.2992Z" fill="#7D7D7D"/>
<path d="M37.3592 53.8378C40.4903 53.8378 43.0285 51.2996 43.0285 48.1685C43.0285 45.0374 40.4903 42.4992 37.3592 42.4992C34.2282 42.4992 31.6899 45.0374 31.6899 48.1685C31.6899 51.2996 34.2282 53.8378 37.3592 53.8378Z" fill="#7D7D7D"/>
<path d="M141.749 79.3874C145.716 79.3874 148.931 76.1723 148.931 72.2063C148.931 68.2403 145.716 65.0252 141.749 65.0252C137.783 65.0252 134.568 68.2403 134.568 72.2063C134.568 76.1723 137.783 79.3874 141.749 79.3874Z" fill="#7D7D7D"/>
<path d="M120.622 146.739C124.588 146.739 127.803 143.523 127.803 139.557C127.803 135.591 124.588 132.376 120.622 132.376C116.656 132.376 113.441 135.591 113.441 139.557C113.441 143.523 116.656 146.739 120.622 146.739Z" fill="#7D7D7D"/>
<path d="M121.567 21.4472C125.533 21.4472 128.748 18.2321 128.748 14.2661C128.748 10.3001 125.533 7.08502 121.567 7.08502C117.601 7.08502 114.386 10.3001 114.386 14.2661C114.386 18.2321 117.601 21.4472 121.567 21.4472Z" fill="#7D7D7D"/>
<path d="M91.1854 47.1423C92.0337 47.1423 92.7214 46.4546 92.7214 45.6063C92.7214 44.758 92.0337 44.0703 91.1854 44.0703C90.3371 44.0703 89.6494 44.758 89.6494 45.6063C89.6494 46.4546 90.3371 47.1423 91.1854 47.1423Z" fill="white"/>
<path d="M86.1844 18.78C87.0328 18.78 87.7204 18.0923 87.7204 17.244C87.7204 16.3957 87.0328 15.708 86.1844 15.708C85.3361 15.708 84.6484 16.3957 84.6484 17.244C84.6484 18.0923 85.3361 18.78 86.1844 18.78Z" fill="white"/>
<path d="M93.2645 114.591C94.1128 114.591 94.8005 113.903 94.8005 113.055C94.8005 112.207 94.1128 111.519 93.2645 111.519C92.4162 111.519 91.7285 112.207 91.7285 113.055C91.7285 113.903 92.4162 114.591 93.2645 114.591Z" fill="white"/>
<path d="M88.263 142.953C89.1113 142.953 89.799 142.266 89.799 141.417C89.799 140.569 89.1113 139.881 88.263 139.881C87.4147 139.881 86.7271 140.569 86.7271 141.417C86.7271 142.266 87.4147 142.953 88.263 142.953Z" fill="white"/>
<path d="M37.6235 82.4866C39.2099 82.4866 40.4959 81.2006 40.4959 79.6141C40.4959 78.0277 39.2099 76.7417 37.6235 76.7417C36.037 76.7417 34.751 78.0277 34.751 79.6141C34.751 81.2006 36.037 82.4866 37.6235 82.4866Z" fill="white"/>
<path d="M37.6235 101.687C39.2099 101.687 40.4959 100.401 40.4959 98.8142C40.4959 97.2278 39.2099 95.9418 37.6235 95.9418C36.037 95.9418 34.751 97.2278 34.751 98.8142C34.751 100.401 36.037 101.687 37.6235 101.687Z" fill="white"/>
<path d="M37.3592 31.841C38.9456 31.841 40.2317 30.5549 40.2317 28.9685C40.2317 27.3821 38.9456 26.0961 37.3592 26.0961C35.7728 26.0961 34.4868 27.3821 34.4868 28.9685C34.4868 30.5549 35.7728 31.841 37.3592 31.841Z" fill="white"/>
<path d="M37.3592 51.041C38.9456 51.041 40.2317 49.7549 40.2317 48.1685C40.2317 46.5821 38.9456 45.2961 37.3592 45.2961C35.7728 45.2961 34.4868 46.5821 34.4868 48.1685C34.4868 49.7549 35.7728 51.041 37.3592 51.041Z" fill="white"/>
<path d="M141.75 76.3638C144.046 76.3638 145.907 74.5024 145.907 72.2063C145.907 69.9102 144.046 68.0488 141.75 68.0488C139.454 68.0488 137.592 69.9102 137.592 72.2063C137.592 74.5024 139.454 76.3638 141.75 76.3638Z" fill="white"/>
<path d="M120.622 143.715C122.918 143.715 124.779 141.854 124.779 139.558C124.779 137.261 122.918 135.4 120.622 135.4C118.326 135.4 116.464 137.261 116.464 139.558C116.464 141.854 118.326 143.715 120.622 143.715Z" fill="white"/>
<path d="M121.567 18.4236C123.863 18.4236 125.724 16.5622 125.724 14.2661C125.724 11.97 123.863 10.1086 121.567 10.1086C119.271 10.1086 117.409 11.97 117.409 14.2661C117.409 16.5622 119.271 18.4236 121.567 18.4236Z" fill="white"/>
<path d="M1 1H178.638V159.74H1V1Z" stroke="black" stroke-width="0.755906" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M91.1854 48.2464C92.6434 48.2464 93.8254 47.0644 93.8254 45.6064C93.8254 44.1483 92.6434 42.9664 91.1854 42.9664C89.7274 42.9664 88.5454 44.1483 88.5454 45.6064C88.5454 47.0644 89.7274 48.2464 91.1854 48.2464Z" fill="#7D7D7D"/>
<path d="M86.1844 19.884C87.6425 19.884 88.8244 18.702 88.8244 17.244C88.8244 15.786 87.6425 14.604 86.1844 14.604C84.7264 14.604 83.5444 15.786 83.5444 17.244C83.5444 18.702 84.7264 19.884 86.1844 19.884Z" fill="#7D7D7D"/>
<path d="M93.2645 115.695C94.7225 115.695 95.9045 114.513 95.9045 113.055C95.9045 111.597 94.7225 110.415 93.2645 110.415C91.8065 110.415 90.6245 111.597 90.6245 113.055C90.6245 114.513 91.8065 115.695 93.2645 115.695Z" fill="#7D7D7D"/>
<path d="M88.2635 144.057C89.7216 144.057 90.9035 142.875 90.9035 141.417C90.9035 139.959 89.7216 138.777 88.2635 138.777C86.8055 138.777 85.6235 139.959 85.6235 141.417C85.6235 142.875 86.8055 144.057 88.2635 144.057Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.9546 73.9449H43.2932V85.2835H31.9546V73.9449Z" fill="#7D7D7D"/>
<path d="M37.6239 104.483C40.7549 104.483 43.2932 101.945 43.2932 98.8141C43.2932 95.6831 40.7549 93.1448 37.6239 93.1448C34.4928 93.1448 31.9546 95.6831 31.9546 98.8141C31.9546 101.945 34.4928 104.483 37.6239 104.483Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.6899 23.2992H43.0285V34.6378H31.6899V23.2992Z" fill="#7D7D7D"/>
<path d="M37.3592 53.8378C40.4903 53.8378 43.0285 51.2996 43.0285 48.1685C43.0285 45.0374 40.4903 42.4992 37.3592 42.4992C34.2282 42.4992 31.6899 45.0374 31.6899 48.1685C31.6899 51.2996 34.2282 53.8378 37.3592 53.8378Z" fill="#7D7D7D"/>
<path d="M141.749 79.3874C145.716 79.3874 148.931 76.1723 148.931 72.2063C148.931 68.2403 145.716 65.0252 141.749 65.0252C137.783 65.0252 134.568 68.2403 134.568 72.2063C134.568 76.1723 137.783 79.3874 141.749 79.3874Z" fill="#7D7D7D"/>
<path d="M120.622 146.739C124.588 146.739 127.803 143.523 127.803 139.557C127.803 135.591 124.588 132.376 120.622 132.376C116.656 132.376 113.441 135.591 113.441 139.557C113.441 143.523 116.656 146.739 120.622 146.739Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M96.4057 95.8464L96.0621 95.713L95.7956 95.4579L95.6471 95.1204L95.6392 94.7519L97.0176 86.9354L97.1509 86.5919L97.4061 86.3254L97.7436 86.1772L98.1121 86.1689L102.206 86.8908L102.55 87.0246L102.816 87.2794L102.965 87.6169L102.973 87.9858L101.595 95.8022L101.461 96.1458L101.206 96.4118L100.868 96.5604L100.5 96.5683L96.4057 95.8464Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M98.7682 82.4469L98.4247 82.3135L98.1586 82.0584L98.0101 81.7208L98.0017 81.3524L99.3801 73.5359L99.5139 73.1923L99.7687 72.9259L100.106 72.7773L100.475 72.7694L104.569 73.4913L104.913 73.6251L105.179 73.8798L105.328 74.2174L105.336 74.5858L103.957 82.4023L103.824 82.7462L103.569 83.0123L103.231 83.1609L102.863 83.1688L98.7682 82.4469Z" fill="#7D7D7D"/>
<path d="M121.567 21.4472C125.533 21.4472 128.748 18.2321 128.748 14.2661C128.748 10.3001 125.533 7.08502 121.567 7.08502C117.601 7.08502 114.386 10.3001 114.386 14.2661C114.386 18.2321 117.601 21.4472 121.567 21.4472Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M126.304 37.9698L126.673 37.9778L127.01 38.1263L127.265 38.3928L127.398 38.7363L128.777 46.5528L128.769 46.9213L128.62 47.2588L128.354 47.5135L128.01 47.6473L123.916 48.3692L123.547 48.3613L123.21 48.2127L122.955 47.9463L122.821 47.6027L121.443 39.7863L121.451 39.4178L121.6 39.0803L121.866 38.8255L122.21 38.6917L126.304 37.9698Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M128.667 51.3694L129.035 51.3773L129.373 51.5259L129.628 51.7923L129.761 52.1359L131.139 59.9523L131.131 60.3208L130.983 60.6583L130.717 60.9131L130.373 61.0469L126.279 61.7688L125.91 61.7608L125.573 61.6123L125.318 61.3458L125.184 61.0023L123.806 53.1858L123.814 52.8173L123.962 52.4798L124.229 52.2251L124.572 52.0913L128.667 51.3694Z" fill="#7D7D7D"/>
<path d="M83.115 14.1747L86.1844 17.244" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M37.3589 28.9685V28.704" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M86.9481 16.4802L86.1843 17.244" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M121.567 14.2661H92.2932" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M37.3589 28.7039L37.3664 28.6964" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M92.2932 14.2661C90.2885 14.2661 88.3658 15.0626 86.9482 16.4802" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M83.115 14.1747C81.6975 12.7571 79.7748 11.9607 77.77 11.9606" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M77.77 11.9606C62.6157 11.9607 48.0821 17.9807 37.3665 28.6964" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M58.6021 48.1685L59.9937 49.5597" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M126.2 56.5692H127.473" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M59.2961 74.9117L56.8076 77.4001" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M37.3589 48.1685H58.6021" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M37.6235 79.6142H100.024" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M61.51 54.1342V69.5667" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M127.473 56.5692L136.096 65.1926" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M100.023 79.6142L101.668 77.9694" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M51.4626 79.6142H37.6235" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M137.917 68.1051V68.3742" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M137.917 68.3743L141.75 72.2063" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M101.668 77.9694L120.855 58.783" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M126.2 56.5688C124.195 56.5689 122.272 57.3653 120.855 58.7829" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M137.918 68.1051C137.536 67.01 136.914 66.0147 136.096 65.1926" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M61.51 54.1341C61.5145 52.4852 60.9822 50.8795 59.9937 49.5598" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M59.2959 74.9117C60.7135 73.4941 61.5099 71.5714 61.5099 69.5667" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M51.4626 79.6142C53.4674 79.6142 55.3901 78.8178 56.8077 77.4001" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M110.872 141.417H88.2632" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M57.0195 129.662L39.8374 112.48" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M120.622 139.557L119.195 140.985" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M37.6235 107.135V98.8141" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M88.2631 141.417H85.3994" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M119.195 140.985H118.063" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M57.0195 129.662C64.5463 137.189 74.7548 141.417 85.3993 141.417" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M37.6235 107.135C37.6236 109.14 38.42 111.063 39.8376 112.48" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M110.872 141.417C113.275 141.414 115.677 141.27 118.063 140.985" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M91.1855 45.6063H119.542" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M124.887 43.3923L125.11 43.1693" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M119.542 45.6064C121.547 45.6064 123.469 44.8099 124.887 43.3923" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M99.3058 91.3689L95.4783 95.1964" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M93.2642 100.541V113.055" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M95.4782 95.1964C94.0606 96.614 93.2642 98.5366 93.2642 100.541" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M91.1854 47.1423C92.0337 47.1423 92.7214 46.4546 92.7214 45.6063C92.7214 44.758 92.0337 44.0703 91.1854 44.0703C90.3371 44.0703 89.6494 44.758 89.6494 45.6063C89.6494 46.4546 90.3371 47.1423 91.1854 47.1423Z" fill="white"/>
<path d="M86.1844 18.78C87.0328 18.78 87.7204 18.0923 87.7204 17.244C87.7204 16.3957 87.0328 15.708 86.1844 15.708C85.3361 15.708 84.6484 16.3957 84.6484 17.244C84.6484 18.0923 85.3361 18.78 86.1844 18.78Z" fill="white"/>
<path d="M93.2645 114.591C94.1128 114.591 94.8005 113.903 94.8005 113.055C94.8005 112.207 94.1128 111.519 93.2645 111.519C92.4162 111.519 91.7285 112.207 91.7285 113.055C91.7285 113.903 92.4162 114.591 93.2645 114.591Z" fill="white"/>
<path d="M88.263 142.953C89.1113 142.953 89.799 142.266 89.799 141.417C89.799 140.569 89.1113 139.881 88.263 139.881C87.4147 139.881 86.7271 140.569 86.7271 141.417C86.7271 142.266 87.4147 142.953 88.263 142.953Z" fill="white"/>
<path d="M37.6235 82.4866C39.2099 82.4866 40.4959 81.2006 40.4959 79.6141C40.4959 78.0277 39.2099 76.7417 37.6235 76.7417C36.037 76.7417 34.751 78.0277 34.751 79.6141C34.751 81.2006 36.037 82.4866 37.6235 82.4866Z" fill="white"/>
<path d="M37.6235 101.687C39.2099 101.687 40.4959 100.401 40.4959 98.8142C40.4959 97.2278 39.2099 95.9418 37.6235 95.9418C36.037 95.9418 34.751 97.2278 34.751 98.8142C34.751 100.401 36.037 101.687 37.6235 101.687Z" fill="white"/>
<path d="M37.3592 31.841C38.9456 31.841 40.2317 30.5549 40.2317 28.9685C40.2317 27.3821 38.9456 26.0961 37.3592 26.0961C35.7728 26.0961 34.4868 27.3821 34.4868 28.9685C34.4868 30.5549 35.7728 31.841 37.3592 31.841Z" fill="white"/>
<path d="M37.3592 51.041C38.9456 51.041 40.2317 49.7549 40.2317 48.1685C40.2317 46.5821 38.9456 45.2961 37.3592 45.2961C35.7728 45.2961 34.4868 46.5821 34.4868 48.1685C34.4868 49.7549 35.7728 51.041 37.3592 51.041Z" fill="white"/>
<path d="M141.75 76.3638C144.046 76.3638 145.907 74.5024 145.907 72.2063C145.907 69.9102 144.046 68.0488 141.75 68.0488C139.454 68.0488 137.592 69.9102 137.592 72.2063C137.592 74.5024 139.454 76.3638 141.75 76.3638Z" fill="white"/>
<path d="M120.622 143.715C122.918 143.715 124.779 141.854 124.779 139.558C124.779 137.261 122.918 135.4 120.622 135.4C118.326 135.4 116.464 137.261 116.464 139.558C116.464 141.854 118.326 143.715 120.622 143.715Z" fill="white"/>
<path d="M121.567 18.4236C123.863 18.4236 125.725 16.5622 125.725 14.2661C125.725 11.97 123.863 10.1086 121.567 10.1086C119.271 10.1086 117.41 11.97 117.41 14.2661C117.41 16.5622 119.271 18.4236 121.567 18.4236Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 94 KiB

View File

@ -0,0 +1,32 @@
---
title: Single Transistor Oscillator
BOM:
- "2x 10uF Capacitor"
- "x 10Ohm Resistor"
- "2x 9V Battery & Clips"
pcb: "/recipes/SingleTransistorOsc/PaperCircuit.svg"
---
This circuit converts a 9V power source into a stable 5V output, suitable for powering low-voltage circuits like microcontrollers, sensors, and small audio devices. It ensures a clean, regulated voltage with minimal noise, preventing fluctuations that could interfere with sound circuits.
Instructions:
Prepare Components: Gather all components and ensure they match the schematic.
Place the 7805 Regulator: Position the 7805 with its flat side facing you. The left pin is input (9V), the middle pin is ground, and the right pin is output (5V).
Add Capacitors: Connect a 10µF capacitor between the input pin and ground, and another between the output pin and ground. These smooth out voltage fluctuations.
Install the Diode: Place the 1N4007 in series with the power input to prevent accidental reverse polarity damage.
Connect Power: Attach a 9V battery clip or a DC jack to the input.
Test Output: Use a multimeter to verify that the output is a stable 5V.
Mount on PCB or Paper Circuit: If using a PCB, solder components as per the schematic. If using a paper circuit, glue aluminum or copper tape for traces and attach components using conductive paint or wire bridges.
Final Check: Before connecting sensitive circuits, double-check polarity and voltage output to avoid damage.
```{.include
BOM.csv
```

View File

@ -1,4 +0,0 @@
---
title: Power Supply
---

View File

@ -0,0 +1,7 @@
"Reference","Value","Datasheet","Footprint","Qty","DNP"
"BT1,BT2,BT3","Battery","~","TerminalBlock:TerminalBlock_bornier-2_P5.08mm","3",""
"C1,C2","10uF","","Capacitor_SMD:CP_Elec_4x5.3","2",""
"J1","+V","~","MountingHole:MountingHole_2.2mm_M2_DIN965_Pad","1",""
"J2","GND","~","MountingHole:MountingHole_2.2mm_M2_DIN965_Pad","1",""
"J3","-V","~","MountingHole:MountingHole_2.2mm_M2_DIN965_Pad","1",""
"R1,R2","10","","PCM_4ms_Resistor:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal","2",""
1 Reference Value Datasheet Footprint Qty DNP
2 BT1,BT2,BT3 Battery ~ TerminalBlock:TerminalBlock_bornier-2_P5.08mm 3
3 C1,C2 10uF Capacitor_SMD:CP_Elec_4x5.3 2
4 J1 +V ~ MountingHole:MountingHole_2.2mm_M2_DIN965_Pad 1
5 J2 GND ~ MountingHole:MountingHole_2.2mm_M2_DIN965_Pad 1
6 J3 -V ~ MountingHole:MountingHole_2.2mm_M2_DIN965_Pad 1
7 R1,R2 10 PCM_4ms_Resistor:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal 2

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

View File

@ -0,0 +1,824 @@
<svg width="199" height="320" viewBox="0 0 199 320" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M109.303 30.4293L109.182 29.7395L109.831 29.9659L110 30.9199L105.95 31.6338L105.845 31.0393L109.303 30.4293Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M109.096 32.4022L109.292 32.4328L109.478 32.4793L109.697 32.5602L109.821 32.621L109.993 32.7242L110.14 32.8402L110.286 32.9959L110.398 33.1706L110.475 33.3629L110.508 33.5016L110.526 33.7125L110.507 33.9181L110.448 34.1181L110.352 34.3127L110.242 34.4703L110.164 34.5633L109.999 34.7251L109.849 34.8415L109.684 34.9462L109.504 35.0392L109.308 35.1208L109.097 35.1903L108.871 35.2482L108.691 35.2841L108.451 35.3188L108.222 35.3377L108.003 35.3404L107.794 35.3268L107.596 35.2969L107.408 35.2508L107.231 35.1884L107.063 35.1102L106.892 35.007L106.718 34.8664L106.578 34.7081L106.472 34.5316L106.401 34.3369L106.378 34.2326L106.359 34.0221L106.365 33.9593H106.899L106.902 34.1358L106.97 34.3203L107.105 34.4733L107.28 34.5826L107.446 34.6483L107.631 34.6979L107.83 34.7281L108.042 34.7387L108.266 34.7304L108.464 34.7084L108.587 34.6892L108.788 34.6476L108.977 34.5966L109.186 34.5229L109.375 34.4355L109.547 34.3346L109.65 34.2594L109.801 34.1215L109.92 33.9582L109.986 33.7677L109.983 33.5923L109.915 33.4087L109.781 33.256L109.607 33.1467L109.442 33.081L109.258 33.0311L109.062 33.0009L108.853 32.9891L108.632 32.9971L108.439 33.0182L108.319 33.0371L108.114 33.0791L107.922 33.1305L107.744 33.1913L107.548 33.2764L107.37 33.3754L107.237 33.468L107.085 33.6052L106.965 33.7681L106.899 33.9593H106.365L106.379 33.8168L106.437 33.6162L106.533 33.4208L106.642 33.2616L106.721 33.1675L106.887 33.0054L107.037 32.8886L107.204 32.7832L107.387 32.6898L107.587 32.6074L107.802 32.5371L108.033 32.4781L108.217 32.4419L108.451 32.4078L108.676 32.3897L108.891 32.3878L109.096 32.4022Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M107.097 129.504L106.975 130.194L106.443 129.759L106.611 128.805L110.66 129.519L110.555 130.114L107.097 129.504Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M108.919 125.101L109.151 125.124L109.333 125.151L109.57 125.201L109.792 125.261L109.998 125.334L110.19 125.418L110.366 125.514L110.527 125.622L110.673 125.741L110.803 125.872L110.928 126.027L111.044 126.219L111.121 126.415L111.16 126.618L111.161 126.825L111.147 126.93L111.092 127.135L111.003 127.321L110.88 127.49L110.723 127.641L110.566 127.753L110.461 127.814L110.249 127.91L110.067 127.968L109.874 128.01L109.67 128.035L109.455 128.044L109.229 128.037L108.991 128.013L108.806 127.984L108.574 127.936L108.357 127.876L108.154 127.805L107.966 127.721L107.793 127.625L107.634 127.518L107.456 127.367L107.36 127.268L107.234 127.112L107.135 126.952L107.051 126.756L107.006 126.554L106.999 126.347L107.005 126.299H107.54L107.541 126.495L107.615 126.684L107.741 126.847L107.873 126.964L108.029 127.074L108.203 127.17L108.395 127.252L108.606 127.321L108.795 127.367L108.914 127.39L109.121 127.421L109.318 127.438L109.507 127.442L109.72 127.429L109.921 127.397L110.078 127.355L110.268 127.278L110.436 127.166L110.564 127.009L110.621 126.842L110.62 126.645L110.546 126.456L110.419 126.293L110.286 126.175L110.128 126.065L109.952 125.969L109.756 125.886L109.542 125.817L109.349 125.77L109.227 125.746L109.024 125.716L108.829 125.7L108.607 125.698L108.399 125.715L108.204 125.751L108.081 125.786L107.892 125.864L107.724 125.977L107.598 126.133L107.54 126.299H107.005L107.016 126.205L107.07 126L107.16 125.814L107.282 125.646L107.44 125.496L107.597 125.385L107.702 125.325L107.913 125.229L108.093 125.171L108.284 125.129L108.485 125.103L108.697 125.094L108.919 125.101Z" fill="#7D7D7D"/>
<path d="M105.724 43.2479L113.168 41.9353" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.168 41.9353L109.23 19.6025" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M101.786 20.9151L105.724 43.248" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M109.23 19.6025L101.786 20.9151" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M115.247 116.726L107.802 115.413" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M107.803 115.413L103.865 137.746" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M111.309 139.059L115.247 116.726" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M103.865 137.746L111.309 139.059" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M70.8159 70.0142H42.0159" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M42.0159 70.0142V108.414" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M70.8157 108.414V70.0142" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M46.8157 108.414V70.0142" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M42.0159 108.414H70.8159" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M70.5512 19.3685H41.7512" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M41.7512 19.3685V57.7685" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M70.5513 57.7685V19.3685" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M46.5513 57.7685V19.3685" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M41.7512 57.7686H70.5512" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M111.504 94.8117L111.832 92.9506" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M110.738 93.7172L112.599 94.0452" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.346 92.2964L113.851 92.3852" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.346 92.2964L110.083 87.6359" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M122.246 93.8657L121.741 93.7769" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M122.246 93.8657L126.907 90.6024" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M110.083 87.6359L112.35 74.7738" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M126.907 90.6025L129.175 77.7404" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M112.351 74.7738L116.817 75.5614" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M129.175 77.7403L124.708 76.9526" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M148.921 37.6792L149.249 39.5402" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M150.016 38.4457L148.155 38.7737" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M148.05 40.6726L147.546 40.7618" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M148.051 40.6726L152.711 43.9362" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M139.15 42.2419L139.655 42.153" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M139.15 42.2419L135.887 46.9024" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M152.711 43.9362L154.979 56.798" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M135.887 46.9023L138.155 59.7645" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M154.979 56.798L150.512 57.5856" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M138.155 59.7645L142.621 58.9768" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M109.978 47.1423C110.826 47.1423 111.514 46.4546 111.514 45.6063C111.514 44.758 110.826 44.0703 109.978 44.0703C109.129 44.0703 108.442 44.758 108.442 45.6063C108.442 46.4546 109.129 47.1423 109.978 47.1423Z" fill="#7D7D7D"/>
<path d="M104.977 18.78C105.825 18.78 106.513 18.0923 106.513 17.244C106.513 16.3957 105.825 15.708 104.977 15.708C104.128 15.708 103.441 16.3957 103.441 17.244C103.441 18.0923 104.128 18.78 104.977 18.78Z" fill="#7D7D7D"/>
<path d="M112.057 114.591C112.905 114.591 113.593 113.903 113.593 113.055C113.593 112.207 112.905 111.519 112.057 111.519C111.208 111.519 110.521 112.207 110.521 113.055C110.521 113.903 111.208 114.591 112.057 114.591Z" fill="#7D7D7D"/>
<path d="M107.055 142.953C107.904 142.953 108.591 142.266 108.591 141.417C108.591 140.569 107.904 139.881 107.055 139.881C106.207 139.881 105.519 140.569 105.519 141.417C105.519 142.266 106.207 142.953 107.055 142.953Z" fill="#7D7D7D"/>
<path d="M56.4157 82.4866C58.0021 82.4866 59.2881 81.2006 59.2881 79.6141C59.2881 78.0277 58.0021 76.7417 56.4157 76.7417C54.8293 76.7417 53.5432 78.0277 53.5432 79.6141C53.5432 81.2006 54.8293 82.4866 56.4157 82.4866Z" fill="#7D7D7D"/>
<path d="M56.4157 101.687C58.0021 101.687 59.2881 100.401 59.2881 98.8142C59.2881 97.2278 58.0021 95.9418 56.4157 95.9418C54.8293 95.9418 53.5432 97.2278 53.5432 98.8142C53.5432 100.401 54.8293 101.687 56.4157 101.687Z" fill="#7D7D7D"/>
<path d="M56.1515 31.841C57.7379 31.841 59.024 30.5549 59.024 28.9685C59.024 27.3821 57.7379 26.0961 56.1515 26.0961C54.5651 26.0961 53.2791 27.3821 53.2791 28.9685C53.2791 30.5549 54.5651 31.841 56.1515 31.841Z" fill="#7D7D7D"/>
<path d="M56.1515 51.041C57.7379 51.041 59.024 49.7549 59.024 48.1685C59.024 46.5821 57.7379 45.2961 56.1515 45.2961C54.5651 45.2961 53.2791 46.5821 53.2791 48.1685C53.2791 49.7549 54.5651 51.041 56.1515 51.041Z" fill="#7D7D7D"/>
<path d="M160.542 76.3638C162.838 76.3638 164.699 74.5024 164.699 72.2063C164.699 69.9102 162.838 68.0488 160.542 68.0488C158.246 68.0488 156.385 69.9102 156.385 72.2063C156.385 74.5024 158.246 76.3638 160.542 76.3638Z" fill="#7D7D7D"/>
<path d="M139.414 143.715C141.71 143.715 143.572 141.854 143.572 139.558C143.572 137.261 141.71 135.4 139.414 135.4C137.118 135.4 135.257 137.261 135.257 139.558C135.257 141.854 137.118 143.715 139.414 143.715Z" fill="#7D7D7D"/>
<path d="M140.359 18.4236C142.655 18.4236 144.517 16.5622 144.517 14.2661C144.517 11.97 142.655 10.1086 140.359 10.1086C138.063 10.1086 136.202 11.97 136.202 14.2661C136.202 16.5622 138.063 18.4236 140.359 18.4236Z" fill="#7D7D7D"/>
<path d="M109.978 48.2464C111.436 48.2464 112.618 47.0644 112.618 45.6064C112.618 44.1483 111.436 42.9664 109.978 42.9664C108.52 42.9664 107.338 44.1483 107.338 45.6064C107.338 47.0644 108.52 48.2464 109.978 48.2464Z" fill="#7D7D7D"/>
<path d="M104.977 19.884C106.435 19.884 107.617 18.702 107.617 17.244C107.617 15.786 106.435 14.604 104.977 14.604C103.519 14.604 102.337 15.786 102.337 17.244C102.337 18.702 103.519 19.884 104.977 19.884Z" fill="#7D7D7D"/>
<path d="M112.057 115.695C113.515 115.695 114.697 114.513 114.697 113.055C114.697 111.597 113.515 110.415 112.057 110.415C110.599 110.415 109.417 111.597 109.417 113.055C109.417 114.513 110.599 115.695 112.057 115.695Z" fill="#7D7D7D"/>
<path d="M107.056 144.057C108.514 144.057 109.696 142.875 109.696 141.417C109.696 139.959 108.514 138.777 107.056 138.777C105.598 138.777 104.416 139.959 104.416 141.417C104.416 142.875 105.598 144.057 107.056 144.057Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.7468 73.9449H62.0854V85.2835H50.7468V73.9449Z" fill="#7D7D7D"/>
<path d="M56.4161 104.483C59.5472 104.483 62.0854 101.945 62.0854 98.8141C62.0854 95.6831 59.5472 93.1448 56.4161 93.1448C53.2851 93.1448 50.7468 95.6831 50.7468 98.8141C50.7468 101.945 53.2851 104.483 56.4161 104.483Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.4822 23.2992H61.8208V34.6378H50.4822V23.2992Z" fill="#7D7D7D"/>
<path d="M56.1515 53.8378C59.2825 53.8378 61.8208 51.2996 61.8208 48.1685C61.8208 45.0374 59.2825 42.4992 56.1515 42.4992C53.0204 42.4992 50.4822 45.0374 50.4822 48.1685C50.4822 51.2996 53.0204 53.8378 56.1515 53.8378Z" fill="#7D7D7D"/>
<path d="M160.542 79.3874C164.508 79.3874 167.723 76.1723 167.723 72.2063C167.723 68.2403 164.508 65.0252 160.542 65.0252C156.576 65.0252 153.361 68.2403 153.361 72.2063C153.361 76.1723 156.576 79.3874 160.542 79.3874Z" fill="#7D7D7D"/>
<path d="M139.414 146.739C143.38 146.739 146.595 143.523 146.595 139.557C146.595 135.591 143.38 132.376 139.414 132.376C135.448 132.376 132.233 135.591 132.233 139.557C132.233 143.523 135.448 146.739 139.414 146.739Z" fill="#7D7D7D"/>
<path d="M140.359 21.4472C144.325 21.4472 147.54 18.2321 147.54 14.2661C147.54 10.3001 144.325 7.08502 140.359 7.08502C136.393 7.08502 133.178 10.3001 133.178 14.2661C133.178 18.2321 136.393 21.4472 140.359 21.4472Z" fill="#7D7D7D"/>
<path d="M109.978 47.1423C110.826 47.1423 111.514 46.4546 111.514 45.6063C111.514 44.758 110.826 44.0703 109.978 44.0703C109.129 44.0703 108.442 44.758 108.442 45.6063C108.442 46.4546 109.129 47.1423 109.978 47.1423Z" fill="#7D7D7D"/>
<path d="M104.977 18.78C105.825 18.78 106.513 18.0923 106.513 17.244C106.513 16.3957 105.825 15.708 104.977 15.708C104.128 15.708 103.441 16.3957 103.441 17.244C103.441 18.0923 104.128 18.78 104.977 18.78Z" fill="#7D7D7D"/>
<path d="M112.057 114.591C112.905 114.591 113.593 113.903 113.593 113.055C113.593 112.207 112.905 111.519 112.057 111.519C111.208 111.519 110.521 112.207 110.521 113.055C110.521 113.903 111.208 114.591 112.057 114.591Z" fill="#7D7D7D"/>
<path d="M107.055 142.953C107.904 142.953 108.591 142.266 108.591 141.417C108.591 140.569 107.904 139.881 107.055 139.881C106.207 139.881 105.519 140.569 105.519 141.417C105.519 142.266 106.207 142.953 107.055 142.953Z" fill="#7D7D7D"/>
<path d="M56.4157 82.4866C58.0021 82.4866 59.2881 81.2006 59.2881 79.6141C59.2881 78.0277 58.0021 76.7417 56.4157 76.7417C54.8293 76.7417 53.5432 78.0277 53.5432 79.6141C53.5432 81.2006 54.8293 82.4866 56.4157 82.4866Z" fill="#7D7D7D"/>
<path d="M56.4157 101.687C58.0021 101.687 59.2881 100.401 59.2881 98.8142C59.2881 97.2278 58.0021 95.9418 56.4157 95.9418C54.8293 95.9418 53.5432 97.2278 53.5432 98.8142C53.5432 100.401 54.8293 101.687 56.4157 101.687Z" fill="#7D7D7D"/>
<path d="M56.1515 31.841C57.7379 31.841 59.024 30.5549 59.024 28.9685C59.024 27.3821 57.7379 26.0961 56.1515 26.0961C54.5651 26.0961 53.2791 27.3821 53.2791 28.9685C53.2791 30.5549 54.5651 31.841 56.1515 31.841Z" fill="#7D7D7D"/>
<path d="M56.1515 51.041C57.7379 51.041 59.024 49.7549 59.024 48.1685C59.024 46.5821 57.7379 45.2961 56.1515 45.2961C54.5651 45.2961 53.2791 46.5821 53.2791 48.1685C53.2791 49.7549 54.5651 51.041 56.1515 51.041Z" fill="#7D7D7D"/>
<path d="M160.542 76.3638C162.838 76.3638 164.699 74.5024 164.699 72.2063C164.699 69.9102 162.838 68.0488 160.542 68.0488C158.246 68.0488 156.385 69.9102 156.385 72.2063C156.385 74.5024 158.246 76.3638 160.542 76.3638Z" fill="#7D7D7D"/>
<path d="M139.414 143.715C141.71 143.715 143.572 141.854 143.572 139.558C143.572 137.261 141.71 135.4 139.414 135.4C137.118 135.4 135.257 137.261 135.257 139.558C135.257 141.854 137.118 143.715 139.414 143.715Z" fill="#7D7D7D"/>
<path d="M140.359 18.4236C142.655 18.4236 144.517 16.5622 144.517 14.2661C144.517 11.97 142.655 10.1086 140.359 10.1086C138.063 10.1086 136.202 11.97 136.202 14.2661C136.202 16.5622 138.063 18.4236 140.359 18.4236Z" fill="#7D7D7D"/>
<path d="M109.978 47.1423C110.826 47.1423 111.514 46.4546 111.514 45.6063C111.514 44.758 110.826 44.0703 109.978 44.0703C109.129 44.0703 108.442 44.758 108.442 45.6063C108.442 46.4546 109.129 47.1423 109.978 47.1423Z" fill="#7D7D7D"/>
<path d="M104.977 18.78C105.825 18.78 106.513 18.0923 106.513 17.244C106.513 16.3957 105.825 15.708 104.977 15.708C104.128 15.708 103.441 16.3957 103.441 17.244C103.441 18.0923 104.128 18.78 104.977 18.78Z" fill="#7D7D7D"/>
<path d="M112.057 114.591C112.905 114.591 113.593 113.903 113.593 113.055C113.593 112.207 112.905 111.519 112.057 111.519C111.208 111.519 110.521 112.207 110.521 113.055C110.521 113.903 111.208 114.591 112.057 114.591Z" fill="#7D7D7D"/>
<path d="M107.055 142.953C107.904 142.953 108.591 142.266 108.591 141.417C108.591 140.569 107.904 139.881 107.055 139.881C106.207 139.881 105.519 140.569 105.519 141.417C105.519 142.266 106.207 142.953 107.055 142.953Z" fill="#7D7D7D"/>
<path d="M56.4157 82.4866C58.0021 82.4866 59.2881 81.2006 59.2881 79.6141C59.2881 78.0277 58.0021 76.7417 56.4157 76.7417C54.8293 76.7417 53.5432 78.0277 53.5432 79.6141C53.5432 81.2006 54.8293 82.4866 56.4157 82.4866Z" fill="#7D7D7D"/>
<path d="M56.4157 101.687C58.0021 101.687 59.2881 100.401 59.2881 98.8142C59.2881 97.2278 58.0021 95.9418 56.4157 95.9418C54.8293 95.9418 53.5432 97.2278 53.5432 98.8142C53.5432 100.401 54.8293 101.687 56.4157 101.687Z" fill="#7D7D7D"/>
<path d="M56.1515 31.841C57.7379 31.841 59.024 30.5549 59.024 28.9685C59.024 27.3821 57.7379 26.0961 56.1515 26.0961C54.5651 26.0961 53.2791 27.3821 53.2791 28.9685C53.2791 30.5549 54.5651 31.841 56.1515 31.841Z" fill="#7D7D7D"/>
<path d="M56.1515 51.041C57.7379 51.041 59.024 49.7549 59.024 48.1685C59.024 46.5821 57.7379 45.2961 56.1515 45.2961C54.5651 45.2961 53.2791 46.5821 53.2791 48.1685C53.2791 49.7549 54.5651 51.041 56.1515 51.041Z" fill="#7D7D7D"/>
<path d="M160.542 76.3638C162.838 76.3638 164.699 74.5024 164.699 72.2063C164.699 69.9102 162.838 68.0488 160.542 68.0488C158.246 68.0488 156.385 69.9102 156.385 72.2063C156.385 74.5024 158.246 76.3638 160.542 76.3638Z" fill="#7D7D7D"/>
<path d="M139.414 143.715C141.71 143.715 143.572 141.854 143.572 139.558C143.572 137.261 141.71 135.4 139.414 135.4C137.118 135.4 135.257 137.261 135.257 139.558C135.257 141.854 137.118 143.715 139.414 143.715Z" fill="#7D7D7D"/>
<path d="M140.359 18.4236C142.655 18.4236 144.517 16.5622 144.517 14.2661C144.517 11.97 142.655 10.1086 140.359 10.1086C138.063 10.1086 136.202 11.97 136.202 14.2661C136.202 16.5622 138.063 18.4236 140.359 18.4236Z" fill="#7D7D7D"/>
<path d="M109.978 47.1423C110.826 47.1423 111.514 46.4546 111.514 45.6063C111.514 44.758 110.826 44.0703 109.978 44.0703C109.129 44.0703 108.442 44.758 108.442 45.6063C108.442 46.4546 109.129 47.1423 109.978 47.1423Z" fill="#7D7D7D"/>
<path d="M104.977 18.78C105.825 18.78 106.513 18.0923 106.513 17.244C106.513 16.3957 105.825 15.708 104.977 15.708C104.128 15.708 103.441 16.3957 103.441 17.244C103.441 18.0923 104.128 18.78 104.977 18.78Z" fill="#7D7D7D"/>
<path d="M112.057 114.591C112.905 114.591 113.593 113.903 113.593 113.055C113.593 112.207 112.905 111.519 112.057 111.519C111.208 111.519 110.521 112.207 110.521 113.055C110.521 113.903 111.208 114.591 112.057 114.591Z" fill="#7D7D7D"/>
<path d="M107.055 142.953C107.904 142.953 108.591 142.266 108.591 141.417C108.591 140.569 107.904 139.881 107.055 139.881C106.207 139.881 105.519 140.569 105.519 141.417C105.519 142.266 106.207 142.953 107.055 142.953Z" fill="#7D7D7D"/>
<path d="M56.4157 82.4866C58.0021 82.4866 59.2881 81.2006 59.2881 79.6141C59.2881 78.0277 58.0021 76.7417 56.4157 76.7417C54.8293 76.7417 53.5432 78.0277 53.5432 79.6141C53.5432 81.2006 54.8293 82.4866 56.4157 82.4866Z" fill="#7D7D7D"/>
<path d="M56.4157 101.687C58.0021 101.687 59.2881 100.401 59.2881 98.8142C59.2881 97.2278 58.0021 95.9418 56.4157 95.9418C54.8293 95.9418 53.5432 97.2278 53.5432 98.8142C53.5432 100.401 54.8293 101.687 56.4157 101.687Z" fill="#7D7D7D"/>
<path d="M56.1515 31.841C57.7379 31.841 59.024 30.5549 59.024 28.9685C59.024 27.3821 57.7379 26.0961 56.1515 26.0961C54.5651 26.0961 53.2791 27.3821 53.2791 28.9685C53.2791 30.5549 54.5651 31.841 56.1515 31.841Z" fill="#7D7D7D"/>
<path d="M56.1515 51.041C57.7379 51.041 59.024 49.7549 59.024 48.1685C59.024 46.5821 57.7379 45.2961 56.1515 45.2961C54.5651 45.2961 53.2791 46.5821 53.2791 48.1685C53.2791 49.7549 54.5651 51.041 56.1515 51.041Z" fill="#7D7D7D"/>
<path d="M160.542 76.3638C162.838 76.3638 164.699 74.5024 164.699 72.2063C164.699 69.9102 162.838 68.0488 160.542 68.0488C158.246 68.0488 156.385 69.9102 156.385 72.2063C156.385 74.5024 158.246 76.3638 160.542 76.3638Z" fill="#7D7D7D"/>
<path d="M139.414 143.715C141.71 143.715 143.572 141.854 143.572 139.558C143.572 137.261 141.71 135.4 139.414 135.4C137.118 135.4 135.257 137.261 135.257 139.558C135.257 141.854 137.118 143.715 139.414 143.715Z" fill="#7D7D7D"/>
<path d="M140.359 18.4236C142.655 18.4236 144.517 16.5622 144.517 14.2661C144.517 11.97 142.655 10.1086 140.359 10.1086C138.063 10.1086 136.202 11.97 136.202 14.2661C136.202 16.5622 138.063 18.4236 140.359 18.4236Z" fill="#7D7D7D"/>
<path d="M109.978 48.2464C111.436 48.2464 112.618 47.0644 112.618 45.6064C112.618 44.1483 111.436 42.9664 109.978 42.9664C108.52 42.9664 107.338 44.1483 107.338 45.6064C107.338 47.0644 108.52 48.2464 109.978 48.2464Z" fill="#7D7D7D"/>
<path d="M104.977 19.884C106.435 19.884 107.617 18.702 107.617 17.244C107.617 15.786 106.435 14.604 104.977 14.604C103.519 14.604 102.337 15.786 102.337 17.244C102.337 18.702 103.519 19.884 104.977 19.884Z" fill="#7D7D7D"/>
<path d="M112.057 115.695C113.515 115.695 114.697 114.513 114.697 113.055C114.697 111.597 113.515 110.415 112.057 110.415C110.599 110.415 109.417 111.597 109.417 113.055C109.417 114.513 110.599 115.695 112.057 115.695Z" fill="#7D7D7D"/>
<path d="M107.056 144.057C108.514 144.057 109.696 142.875 109.696 141.417C109.696 139.959 108.514 138.777 107.056 138.777C105.598 138.777 104.416 139.959 104.416 141.417C104.416 142.875 105.598 144.057 107.056 144.057Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.7468 73.9449H62.0854V85.2835H50.7468V73.9449Z" fill="#7D7D7D"/>
<path d="M56.4161 104.483C59.5472 104.483 62.0854 101.945 62.0854 98.8141C62.0854 95.6831 59.5472 93.1448 56.4161 93.1448C53.2851 93.1448 50.7468 95.6831 50.7468 98.8141C50.7468 101.945 53.2851 104.483 56.4161 104.483Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.4822 23.2992H61.8208V34.6378H50.4822V23.2992Z" fill="#7D7D7D"/>
<path d="M56.1515 53.8378C59.2825 53.8378 61.8208 51.2996 61.8208 48.1685C61.8208 45.0374 59.2825 42.4992 56.1515 42.4992C53.0204 42.4992 50.4822 45.0374 50.4822 48.1685C50.4822 51.2996 53.0204 53.8378 56.1515 53.8378Z" fill="#7D7D7D"/>
<path d="M160.542 79.3874C164.508 79.3874 167.723 76.1723 167.723 72.2063C167.723 68.2403 164.508 65.0252 160.542 65.0252C156.576 65.0252 153.361 68.2403 153.361 72.2063C153.361 76.1723 156.576 79.3874 160.542 79.3874Z" fill="#7D7D7D"/>
<path d="M139.414 146.739C143.38 146.739 146.596 143.523 146.596 139.557C146.596 135.591 143.38 132.376 139.414 132.376C135.448 132.376 132.233 135.591 132.233 139.557C132.233 143.523 135.448 146.739 139.414 146.739Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M115.198 95.8464L114.854 95.713L114.588 95.4579L114.439 95.1204L114.431 94.7519L115.81 86.9354L115.943 86.5919L116.198 86.3254L116.536 86.1772L116.904 86.1689L120.999 86.8908L121.342 87.0246L121.609 87.2794L121.757 87.6169L121.765 87.9858L120.387 95.8022L120.253 96.1458L119.998 96.4118L119.661 96.5604L119.292 96.5683L115.198 95.8464Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M117.56 82.4469L117.217 82.3135L116.951 82.0584L116.802 81.7208L116.794 81.3524L118.172 73.5359L118.306 73.1923L118.561 72.9259L118.898 72.7773L119.267 72.7694L123.361 73.4913L123.705 73.6251L123.971 73.8798L124.12 74.2174L124.128 74.5858L122.749 82.4023L122.616 82.7462L122.361 83.0123L122.023 83.1609L121.655 83.1688L117.56 82.4469Z" fill="#7D7D7D"/>
<path d="M140.359 21.4472C144.325 21.4472 147.54 18.2321 147.54 14.2661C147.54 10.3001 144.325 7.08502 140.359 7.08502C136.393 7.08502 133.178 10.3001 133.178 14.2661C133.178 18.2321 136.393 21.4472 140.359 21.4472Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M145.096 37.9698L145.465 37.9778L145.802 38.1263L146.057 38.3928L146.191 38.7363L147.569 46.5528L147.561 46.9213L147.413 47.2588L147.146 47.5135L146.803 47.6473L142.708 48.3692L142.34 48.3613L142.002 48.2127L141.748 47.9463L141.614 47.6027L140.236 39.7863L140.244 39.4178L140.392 39.0803L140.658 38.8255L141.002 38.6917L145.096 37.9698Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M147.459 51.3694L147.828 51.3773L148.165 51.5259L148.42 51.7923L148.554 52.1359L149.932 59.9523L149.924 60.3208L149.775 60.6583L149.509 60.9131L149.166 61.0469L145.071 61.7688L144.702 61.7608L144.365 61.6123L144.11 61.3458L143.977 61.0023L142.598 53.1858L142.606 52.8173L142.755 52.4798L143.021 52.2251L143.365 52.0913L147.459 51.3694Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M115.198 95.8465L114.854 95.7131L114.588 95.4579L114.439 95.1204L114.431 94.7519L115.81 86.9355L115.943 86.5919L116.198 86.3255L116.536 86.1773L116.904 86.169L120.999 86.8909L121.342 87.0247L121.609 87.2794L121.757 87.6169L121.765 87.9858L120.387 95.8023L120.253 96.1458L119.998 96.4119L119.661 96.5604L119.292 96.5684L115.198 95.8465Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M117.56 82.4469L117.217 82.3135L116.951 82.0584L116.802 81.7208L116.794 81.3524L118.172 73.5359L118.306 73.1923L118.561 72.9259L118.898 72.7773L119.267 72.7694L123.361 73.4913L123.705 73.6251L123.971 73.8798L124.12 74.2174L124.128 74.5858L122.749 82.4023L122.616 82.7462L122.361 83.0123L122.023 83.1609L121.655 83.1688L117.56 82.4469Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M145.096 37.9698L145.465 37.9778L145.802 38.1263L146.057 38.3928L146.191 38.7363L147.569 46.5528L147.561 46.9213L147.413 47.2588L147.146 47.5135L146.803 47.6473L142.708 48.3692L142.34 48.3613L142.002 48.2127L141.748 47.9463L141.614 47.6027L140.236 39.7863L140.244 39.4178L140.392 39.0803L140.658 38.8255L141.002 38.6917L145.096 37.9698Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M147.459 51.3694L147.828 51.3773L148.165 51.5259L148.42 51.7923L148.554 52.1359L149.932 59.9523L149.924 60.3208L149.775 60.6583L149.509 60.9131L149.166 61.0469L145.071 61.7688L144.702 61.7608L144.365 61.6123L144.11 61.3458L143.977 61.0023L142.598 53.1858L142.606 52.8173L142.755 52.4798L143.021 52.2251L143.365 52.0913L147.459 51.3694Z" fill="#7D7D7D"/>
<path d="M105.949 49.9626L99.7002 14.5284" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M115.254 48.322L105.949 49.9626" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M99.7002 14.5284L109.005 12.8878" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M109.006 12.8878L115.254 48.322" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M117.333 110.339L111.084 145.774" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M108.027 108.699L117.333 110.339" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M111.084 145.774L101.779 144.133" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M101.779 144.133L108.027 108.699" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M71.5338 69.3716H41.2976" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M71.5337 69.3716V109.057" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M41.2976 109.057V69.3716" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M41.2976 109.057H71.5338" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M71.2692 18.726H41.033" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M71.2693 18.726V58.411" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M41.033 58.411V18.726" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M41.033 58.411H71.2692" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M160.542 80.3323C165.03 80.3323 168.668 76.6941 168.668 72.2063C168.668 67.7184 165.03 64.0803 160.542 64.0803C156.054 64.0803 152.416 67.7184 152.416 72.2063C152.416 76.6941 156.054 80.3323 160.542 80.3323Z" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M139.414 147.683C143.902 147.683 147.54 144.045 147.54 139.558C147.54 135.07 143.902 131.432 139.414 131.432C134.926 131.432 131.288 135.07 131.288 139.558C131.288 144.045 134.926 147.683 139.414 147.683Z" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.172 96.449L120.989 97.8273" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M120.989 97.8273L121.612 94.2912" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.052 92.7816L113.796 92.9128" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.051 92.7817L109.526 87.7466" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.796 92.9128L113.172 96.449" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M121.612 94.2912L122.357 94.4224" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M122.357 94.4223L127.392 90.8968" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M109.526 87.7466L111.921 74.1607" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M127.392 90.8968L129.788 77.3109" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M111.921 74.1607L116.946 75.047" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M116.946 75.047L117.57 71.5109" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M124.763 76.425L129.788 77.3109" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M117.57 71.5109L125.386 72.8893" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M125.386 72.8892L124.763 76.425" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M140.359 22.3921C144.847 22.3921 148.485 18.754 148.485 14.2661C148.485 9.77825 144.847 6.14014 140.359 6.14014C135.871 6.14014 132.233 9.77825 132.233 14.2661C132.233 18.754 135.871 22.3921 140.359 22.3921Z" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M146.793 36.7112L138.976 38.0893" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M138.976 38.0892L139.6 41.6254" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M148.161 40.1158L147.417 40.247" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M148.161 40.1158L153.196 43.6414" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M147.417 40.247L146.793 36.7112" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M139.6 41.6254L138.855 41.7565" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M138.855 41.7565L135.33 46.7916" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M153.196 43.6414L155.592 57.2272" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M135.33 46.7916L137.725 60.3775" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M155.592 57.2272L150.567 58.1131" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M150.567 58.1132L151.19 61.6493" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M142.75 59.4916L137.725 60.3775" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M151.19 61.6493L143.374 63.0273" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M143.374 63.0273L142.75 59.4916" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M109.978 47.1423C110.826 47.1423 111.514 46.4546 111.514 45.6063C111.514 44.758 110.826 44.0703 109.978 44.0703C109.129 44.0703 108.442 44.758 108.442 45.6063C108.442 46.4546 109.129 47.1423 109.978 47.1423Z" fill="#7D7D7D"/>
<path d="M104.977 18.78C105.825 18.78 106.513 18.0923 106.513 17.244C106.513 16.3957 105.825 15.708 104.977 15.708C104.128 15.708 103.441 16.3957 103.441 17.244C103.441 18.0923 104.128 18.78 104.977 18.78Z" fill="#7D7D7D"/>
<path d="M112.057 114.591C112.905 114.591 113.593 113.903 113.593 113.055C113.593 112.207 112.905 111.519 112.057 111.519C111.208 111.519 110.521 112.207 110.521 113.055C110.521 113.903 111.208 114.591 112.057 114.591Z" fill="#7D7D7D"/>
<path d="M107.055 142.953C107.904 142.953 108.591 142.266 108.591 141.417C108.591 140.569 107.904 139.881 107.055 139.881C106.207 139.881 105.519 140.569 105.519 141.417C105.519 142.266 106.207 142.953 107.055 142.953Z" fill="#7D7D7D"/>
<path d="M56.4157 82.4866C58.0021 82.4866 59.2881 81.2006 59.2881 79.6141C59.2881 78.0277 58.0021 76.7417 56.4157 76.7417C54.8293 76.7417 53.5432 78.0277 53.5432 79.6141C53.5432 81.2006 54.8293 82.4866 56.4157 82.4866Z" fill="#7D7D7D"/>
<path d="M56.4157 101.687C58.0021 101.687 59.2881 100.401 59.2881 98.8142C59.2881 97.2278 58.0021 95.9418 56.4157 95.9418C54.8293 95.9418 53.5432 97.2278 53.5432 98.8142C53.5432 100.401 54.8293 101.687 56.4157 101.687Z" fill="#7D7D7D"/>
<path d="M56.1515 31.841C57.7379 31.841 59.024 30.5549 59.024 28.9685C59.024 27.3821 57.7379 26.0961 56.1515 26.0961C54.5651 26.0961 53.2791 27.3821 53.2791 28.9685C53.2791 30.5549 54.5651 31.841 56.1515 31.841Z" fill="#7D7D7D"/>
<path d="M56.1515 51.041C57.7379 51.041 59.024 49.7549 59.024 48.1685C59.024 46.5821 57.7379 45.2961 56.1515 45.2961C54.5651 45.2961 53.2791 46.5821 53.2791 48.1685C53.2791 49.7549 54.5651 51.041 56.1515 51.041Z" fill="#7D7D7D"/>
<path d="M160.542 76.3638C162.838 76.3638 164.699 74.5024 164.699 72.2063C164.699 69.9102 162.838 68.0488 160.542 68.0488C158.246 68.0488 156.385 69.9102 156.385 72.2063C156.385 74.5024 158.246 76.3638 160.542 76.3638Z" fill="#7D7D7D"/>
<path d="M139.414 143.715C141.71 143.715 143.572 141.854 143.572 139.558C143.572 137.261 141.71 135.4 139.414 135.4C137.118 135.4 135.257 137.261 135.257 139.558C135.257 141.854 137.118 143.715 139.414 143.715Z" fill="#7D7D7D"/>
<path d="M140.359 18.4236C142.655 18.4236 144.517 16.5622 144.517 14.2661C144.517 11.97 142.655 10.1086 140.359 10.1086C138.063 10.1086 136.202 11.97 136.202 14.2661C136.202 16.5622 138.063 18.4236 140.359 18.4236Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M37.8331 95.0123L38.0182 95.06L38.1891 95.1389L38.3463 95.2497L38.4298 95.3271L38.5534 95.4693L38.6551 95.6374L38.7088 95.7728L38.7485 95.9561L38.7719 96.1435L38.7825 96.3283L38.7843 96.4523V97.3636H34.7671V96.7634L34.7709 96.5733L34.7716 96.5612H35.2913V96.769H36.4875V96.5835L36.4781 96.4633H37.0118V96.769H38.1936V96.3952L38.1838 96.2044L38.1494 96.0218L38.0742 95.8457L38.0375 95.7943L37.897 95.6703L37.7159 95.6008L37.6063 95.591L37.4143 95.6231L37.2491 95.7199L37.1818 95.786L37.0851 95.9515L37.0359 96.1398L37.0148 96.3461L37.0118 96.4633H36.4781L36.4728 96.3941L36.4153 96.2127L36.3345 96.0997L36.1723 95.9943L35.989 95.9511L35.882 95.9455L35.6844 95.9678L35.5143 96.0419L35.4417 96.1035L35.339 96.2683L35.2966 96.4535L35.2913 96.5612H34.7716L34.7845 96.3835L34.8151 96.1866L34.8298 96.1246L34.8941 95.9413L34.9958 95.772L35.04 95.7183L35.1772 95.5929L35.3393 95.4908L35.4225 95.4515L35.5967 95.3903L35.7872 95.3559L35.8903 95.351L36.0983 95.3721L36.2895 95.4356L36.4641 95.5411L36.6036 95.6681L36.6225 95.6889L36.6965 95.5195L36.8096 95.3563L36.9547 95.2198L37.0046 95.1839L37.1826 95.0853L37.3776 95.0229L37.5677 94.9983L37.6343 94.9965L37.8331 95.0123Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.7846 92.4997H38.5106L38.6402 92.6592L38.7381 92.8244L38.8111 93.019L38.8424 93.2208L38.8436 93.2722L38.8303 93.4612L38.7812 93.6657L38.6962 93.8531L38.5748 94.0232L38.466 94.1343L38.3152 94.2493L38.1508 94.3403L37.9727 94.4076L37.7819 94.4511L37.5771 94.4711L37.506 94.4722L37.3004 94.4605L37.108 94.4246L36.9288 94.3653L36.7633 94.2821L36.6106 94.1752L36.5626 94.1343L36.4345 94.0013L36.3181 93.8312L36.2383 93.6449L36.1941 93.4423L36.1851 93.2877L36.1953 93.1781H36.7093L36.7361 93.3724L36.8166 93.5436L36.9364 93.6785L37.0903 93.7836L37.2652 93.8497L37.4614 93.877L37.5034 93.8777L37.6957 93.8626L37.8843 93.8093L38.0469 93.7186L38.0903 93.6838L38.2207 93.5353L38.297 93.3622L38.3193 93.1834L38.2978 92.9937L38.2241 92.813L38.0979 92.6618L37.9425 92.5575L37.7634 92.4914L37.5596 92.4642L37.5162 92.4634L37.3272 92.4793L37.1401 92.5333L36.9776 92.6267L36.9337 92.6618L36.806 92.8126L36.7312 92.991L36.7093 93.1781H36.1953L36.2021 93.0999L36.2535 92.9207L36.3393 92.7503L36.4595 92.5881L36.5434 92.4997H36.244V91.932H38.7846V92.4997Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.7756 90.5876H38.7844V91.1822H36.7756V91.4187H36.2514V91.1822H35.2986V90.5876H36.2514V90.119H36.7756V90.5876Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.7756 89.1439H38.7844V89.7384H36.7756V89.975H36.2514V89.7384H35.2986V89.1439H36.2514V88.6752H36.7756V89.1439Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.2717 86.0224L38.4184 86.1376L38.4448 86.1615L38.5775 86.3013L38.6719 86.4336L38.7566 86.6051L38.802 86.7484L38.8345 86.9351L38.8436 87.1131L38.8311 87.3176L38.7929 87.5062L38.7162 87.7065L38.6047 87.8857L38.4819 88.0225L38.3367 88.1389L38.1749 88.2311L37.997 88.2995L37.8019 88.3434L37.5903 88.3634L37.5162 88.3649L37.3004 88.3532L37.1005 88.3184L36.9164 88.2602L36.7486 88.1786L36.5728 88.0538L36.5498 88.0335L36.4077 87.8766L36.3003 87.6986L36.2281 87.5001L36.1941 87.3134L36.1851 87.1464L36.1862 87.1317H36.7093L36.7376 87.3142L36.7437 87.332L36.8355 87.4971L36.8397 87.5017L36.9791 87.626L36.9901 87.6328L37.1621 87.7084L37.1893 87.716V86.5428L37.0025 86.6124L36.8449 86.7329L36.7474 86.8962L36.71 87.1029L36.7093 87.1317H36.1862L36.1975 86.9453L36.2353 86.7609L36.3109 86.5662L36.4209 86.3939L36.5422 86.2639L36.71 86.1388L36.9043 86.0443L37.0918 85.988L37.2985 85.954L37.4856 85.943L37.5245 85.9426H37.6621V87.7549L37.8556 87.7198L38.0328 87.64L38.1428 87.5516L38.2574 87.3894L38.311 87.2103L38.3193 87.0927L38.297 86.9045L38.2188 86.7318L38.0861 86.5919L37.9263 86.4676L37.8458 86.4124L38.1126 85.9196L38.2717 86.0224Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.244 85.3224V84.7278H36.4859L36.3566 84.5944L36.2516 84.4436L36.1945 84.2671L36.1851 84.1435L36.2089 83.9534L36.2735 83.772L36.3302 83.6635L36.8941 83.9292L36.8053 84.0925L36.7758 84.2524L36.8102 84.4376L36.9326 84.5937L37.1133 84.6813L37.3223 84.7203L37.4893 84.7278H38.7846V85.3224H36.244Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.3 82.3044L36.2439 83.4364V82.7625L37.696 81.9926L36.2439 81.2745V80.618L40.1433 82.623V83.2867L38.3 82.3044Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M37.5686 44.3666L37.7538 44.4143L37.9247 44.4932L38.0819 44.604L38.1654 44.6815L38.289 44.8236L38.3907 44.9918L38.4443 45.1271L38.484 45.3104L38.5075 45.4978L38.518 45.6827L38.5199 45.8066V46.7179H34.5027V46.1177L34.5064 45.9276L34.5072 45.9155H35.0269V46.1234H36.2231V45.9378L36.2137 45.8176H36.7477V46.1234H37.9292V45.7496L37.9193 45.5587L37.885 45.3762L37.8098 45.2L37.7731 45.1486L37.6325 45.0247L37.4515 44.9551L37.3418 44.9453L37.1498 44.9774L36.9847 45.0738L36.9174 45.1403L36.8207 45.3059L36.7715 45.4941L36.7504 45.7004L36.7477 45.8176H36.2137L36.2084 45.7484L36.1509 45.567L36.07 45.454L35.9079 45.3486L35.7246 45.3055L35.6176 45.2998L35.4199 45.3221L35.2499 45.3962L35.1773 45.4578L35.0745 45.6226L35.0322 45.8078L35.0269 45.9155H34.5072L34.52 45.7378L34.5507 45.5409L34.5654 45.479L34.6297 45.2957L34.7314 45.1263L34.7759 45.0726L34.9127 44.9472L35.0749 44.8451L35.1581 44.8058L35.3323 44.7446L35.5228 44.7102L35.6259 44.7053L35.8338 44.7264L36.0251 44.7899L36.1997 44.8954L36.3392 45.0224L36.358 45.0432L36.4321 44.8738L36.5451 44.7106L36.6903 44.5741L36.7401 44.5382L36.9182 44.4396L37.1132 44.3772L37.3033 44.3526L37.3698 44.3508L37.5686 44.3666Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.52 41.854H38.246L38.3756 42.0135L38.4735 42.1787L38.5465 42.3733L38.5778 42.5752L38.5789 42.6266L38.5657 42.8155L38.5166 43.02L38.4315 43.2075L38.3102 43.3776L38.2014 43.4887L38.0505 43.6036L37.8861 43.6947L37.7082 43.7619L37.5173 43.8054L37.3124 43.8254L37.2414 43.8266L37.0358 43.8149L36.8434 43.779L36.6646 43.7196L36.4987 43.6364L36.346 43.5295L36.298 43.4887L36.1699 43.3556L36.0535 43.1855L35.9737 42.9992L35.9295 42.7966L35.9204 42.6421L35.9306 42.5325H36.4446L36.4715 42.7267L36.552 42.8979L36.6718 43.0329L36.8256 43.1379L37.0006 43.2041L37.1968 43.2313L37.2387 43.232L37.4311 43.2169L37.6197 43.1636L37.7822 43.0729L37.8257 43.0381L37.9561 42.8896L38.0324 42.7165L38.0547 42.5377L38.0332 42.348L37.9595 42.1673L37.8332 42.0162L37.6779 41.9119L37.4988 41.8457L37.2951 41.8185L37.2516 41.8177L37.0626 41.8336L36.8755 41.8877L36.713 41.981L36.6692 42.0162L36.5414 42.167L36.4666 42.3454L36.4446 42.5325H35.9306L35.9374 42.4542L35.9888 42.2751L36.0746 42.1046L36.1948 41.9425L36.2787 41.854H35.9794V41.2859H38.52V41.854Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.5112 39.9419H38.52V40.5365H36.5112V40.7731H35.987V40.5365H35.0342V39.9419H35.987V39.4733H36.5112V39.9419Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.5112 38.4982H38.52V39.0927H36.5112V39.3293H35.987V39.0927H35.0342V38.4982H35.987V38.0295H36.5112V38.4982Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.0071 35.3767L38.1537 35.4919L38.1802 35.5158L38.3129 35.6556L38.4074 35.7879L38.492 35.9595L38.5373 36.1027L38.5699 36.2894L38.5789 36.4675L38.5665 36.6719L38.5283 36.8605L38.4516 37.0608L38.3401 37.24L38.2172 37.3768L38.0721 37.4932L37.9103 37.5854L37.7323 37.6538L37.5373 37.6977L37.3257 37.7177L37.2516 37.7192L37.0358 37.7075L36.8358 37.6727L36.6517 37.6145L36.484 37.5329L36.3086 37.4082L36.2851 37.3878L36.143 37.2309L36.0357 37.0529L35.9635 36.8545L35.9295 36.6678L35.9204 36.5007L35.9216 36.486H36.4446L36.473 36.6685L36.479 36.6863L36.5709 36.8515L36.575 36.856L36.7145 36.9803L36.7254 36.9871L36.8974 37.0627L36.9246 37.0703V35.8971L36.738 35.9667L36.5803 36.0872L36.4828 36.2505L36.4454 36.4572L36.4446 36.486H35.9216L35.9329 36.2996L35.9707 36.1152L36.0463 35.9206L36.1563 35.7482L36.2776 35.6182L36.4454 35.4931L36.6397 35.3986L36.8271 35.3423L37.0339 35.3083L37.2209 35.2973L37.2599 35.2969H37.3975V37.1092L37.591 37.0741L37.7682 36.9943L37.8786 36.9059L37.9928 36.7437L38.0464 36.5646L38.0547 36.447L38.0328 36.2588L37.9542 36.0861L37.8215 35.9463L37.6617 35.8219L37.5812 35.7667L37.848 35.2739L38.0071 35.3767Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M35.9794 34.6767V34.0822H36.2213L36.092 33.9488L35.987 33.798L35.9299 33.6215L35.9204 33.4979L35.9442 33.3078L36.0089 33.1264L36.0656 33.0179L36.6295 33.2836L36.5407 33.4469L36.5111 33.6067L36.5456 33.7919L36.668 33.948L36.8487 34.0357L37.0577 34.0746L37.2248 34.0822H38.52V34.6767H35.9794Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.0353 31.6588L35.9792 32.7907V32.1168L37.4313 31.3469L35.9792 30.6288V29.9724L39.8786 31.9774V32.641L38.0353 31.6588Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M156.702 82.6087H158.356V82.7425L158.351 82.9367L158.336 83.1215L158.306 83.32L158.263 83.5059L158.25 83.5502L158.181 83.7297L158.089 83.9028L157.974 84.0695L157.901 84.1594L157.757 84.3083L157.604 84.4372L157.442 84.5465L157.27 84.6356L157.088 84.7052L156.897 84.7547L156.697 84.7845L156.488 84.7944L156.282 84.7849L156.084 84.7562L155.894 84.7082L155.711 84.6413L155.535 84.5551L155.367 84.4497L155.207 84.3253L155.054 84.1817L154.914 84.0241L154.793 83.859L154.69 83.6858L154.606 83.5052L154.541 83.317L154.494 83.1212L154.466 82.9175L154.457 82.7066L154.466 82.4907L154.495 82.2833L154.542 82.0841L154.609 81.8936L154.694 81.7114L154.799 81.5376L154.922 81.3716L155.064 81.2148L155.22 81.0704L155.384 80.9457L155.557 80.8399L155.737 80.7537L155.926 80.6864L156.123 80.6384L156.328 80.6093L156.541 80.5999L156.743 80.6093L156.939 80.6373L157.128 80.6845L157.312 80.7503L157.415 80.7964L157.583 80.8939L157.751 81.0149L157.894 81.1369L158.036 81.2764L158.177 81.4333L157.747 81.8433L157.62 81.6902L157.487 81.5576L157.311 81.4208L157.125 81.3157L156.928 81.2424L156.72 81.2008L156.547 81.1906L156.353 81.2012L156.17 81.2333L155.963 81.2998L155.77 81.3973L155.592 81.5255L155.482 81.6283L155.358 81.7677L155.237 81.9488L155.146 82.1453L155.085 82.3573L155.058 82.5456L155.051 82.7035L155.063 82.9065L155.098 83.0981L155.157 83.278L155.239 83.4462L155.344 83.6031L155.473 83.7482L155.53 83.803L155.701 83.9391L155.877 84.0472L156.059 84.1269L156.245 84.1787L156.438 84.2021L156.503 84.2036L156.693 84.1896L156.875 84.1473L157.048 84.077L157.213 83.9784L157.303 83.9092L157.443 83.7739L157.567 83.6057L157.651 83.4228L157.697 83.2251L157.7 83.1994H156.702V82.6087Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M159.091 84.7354V80.4456L161.986 83.5093V80.7181H162.58V84.9792L159.685 81.9227V84.7354H159.091Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M164.606 80.7223L164.804 80.7347L165.013 80.7601L165.198 80.7967L165.337 80.8372L165.52 80.9063L165.693 80.9959L165.859 81.1055L166.015 81.2359L166.159 81.3829L166.285 81.5417L166.39 81.711L166.477 81.8921L166.544 82.084L166.592 82.287L166.621 82.5013L166.631 82.7266L166.621 82.953L166.591 83.168L166.541 83.3721L166.47 83.5649L166.38 83.7467L166.27 83.9175L166.14 84.0774L165.989 84.2259L165.826 84.3578L165.659 84.4678L165.488 84.5566L165.314 84.6235L165.131 84.6726L164.944 84.704L164.73 84.7244L164.526 84.7335L164.378 84.7354H163.555V84.1447H164.149H164.423L164.618 84.1394L164.817 84.1205L165.012 84.0842L165.1 84.0596L165.28 83.9855L165.447 83.8869L165.589 83.7754L165.741 83.6159L165.862 83.4394L165.951 83.2459L166.008 83.035L166.032 82.8464L166.036 82.7277L166.026 82.5297L165.993 82.3441L165.926 82.137L165.827 81.9476L165.698 81.7757L165.594 81.6706L165.432 81.5477L165.243 81.4502L165.066 81.3882L164.87 81.344L164.656 81.3176L164.471 81.3092L164.423 81.3089H164.149V84.1447H163.555V80.7181H164.389L164.606 80.7223Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M137.055 150.558H138.236V151.082H137.055V150.558Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M138.875 148.069L139.978 150.848L141.097 148.069H141.756L139.966 152.379L138.216 148.069H138.875Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M128.584 90.8503L128.464 91.5295L127.94 91.1013L128.105 90.162L132.091 90.8651L131.988 91.4505L128.584 90.8503Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M130.377 86.5163L130.606 86.539L130.785 86.5666L131.018 86.6146L131.237 86.6743L131.44 86.7457L131.628 86.8285L131.802 86.923L131.96 87.0288L132.103 87.1464L132.232 87.2753L132.355 87.4283L132.469 87.6165L132.545 87.8104L132.583 88.0093L132.584 88.2134L132.57 88.3173L132.516 88.5183L132.429 88.7017L132.308 88.8676L132.153 89.0161L131.999 89.1269L131.895 89.187L131.686 89.2815L131.508 89.3385L131.318 89.3797L131.117 89.4047L130.905 89.4133L130.682 89.4062L130.448 89.3827L130.266 89.3544L130.038 89.3071L129.824 89.2482L129.625 89.1775L129.439 89.0951L129.269 89.001L129.113 88.8955L128.937 88.747L128.843 88.6491L128.719 88.4957L128.622 88.3388L128.539 88.1457L128.495 87.9469L128.488 87.7424L128.493 87.6959H129.02L129.021 87.8891L129.094 88.075L129.218 88.2349L129.348 88.3509L129.501 88.459L129.673 88.5535L129.862 88.634L130.069 88.7013L130.255 88.747L130.373 88.7697L130.576 88.7999L130.771 88.8169L130.956 88.8207L131.166 88.8079L131.363 88.7761L131.518 88.7353L131.705 88.6597L131.871 88.5493L131.996 88.3948L132.053 88.2307L132.052 88.0369L131.979 87.8501L131.854 87.6899L131.723 87.5735L131.568 87.4654L131.394 87.3705L131.202 87.2893L130.991 87.2212L130.801 87.1751L130.681 87.1517L130.48 87.1222L130.289 87.106L130.071 87.1037L129.866 87.1207L129.673 87.1566L129.552 87.191L129.366 87.2677L129.201 87.3788L129.077 87.533L129.02 87.6959H128.493L128.504 87.6033L128.558 87.4019L128.645 87.2186L128.767 87.053L128.921 86.9056L129.076 86.7968L129.18 86.7371L129.387 86.6429L129.565 86.5855L129.752 86.5443L129.95 86.519L130.159 86.5095L130.377 86.5163Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M130.454 85.3496L131.881 85.6013L132.093 85.6217L132.293 85.5952L132.46 85.4981L132.559 85.3295L132.579 85.2479L132.581 85.0627L132.502 84.8926L132.335 84.7664L132.153 84.701L132.044 84.6776L130.616 84.4258L130.72 83.8404L132.161 84.0944L132.355 84.1375L132.542 84.2002L132.664 84.2584L132.822 84.3775L132.947 84.5271L132.97 84.5642L133.054 84.7373L133.103 84.9236L133.117 85.1239L133.1 85.3106L133.095 85.3382L133.05 85.5215L132.973 85.7079L132.866 85.8696L132.732 86.0065L132.713 86.0216L132.558 86.1244L132.384 86.1943L132.32 86.209L132.127 86.2253L131.934 86.2106L131.791 86.189L130.35 85.935L130.454 85.3496Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M130.342 80.8792L130.102 82.2428L131.033 82.4069L131.268 81.0723L131.85 81.1751L131.614 82.5097L133.505 82.843L133.402 83.4284L129.417 82.7258L129.76 80.7767L130.342 80.8792Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M137.175 24.9637V24.4913H138.297V23.3688H138.77V24.4913H139.951V24.9637H138.77V26.0863H138.297V24.9637H137.175Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M140.882 22.778L141.985 25.5563L143.104 22.778H143.763L141.972 27.0878L140.223 22.778H140.882Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M133.173 47.2973L133.053 46.6181L133.693 46.8411L133.858 47.7803L129.873 48.4829L129.77 47.8975L133.173 47.2973Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M132.97 49.2392L133.162 49.2691L133.345 49.3148L133.561 49.3946L133.683 49.4543L133.852 49.5559L133.997 49.6701L134.14 49.8235L134.25 49.9951L134.327 50.1848L134.359 50.3213L134.377 50.5288L134.358 50.731L134.3 50.9279L134.205 51.1191L134.097 51.2745L134.02 51.3659L133.857 51.5255L133.71 51.64L133.548 51.7431L133.371 51.8346L133.178 51.9147L132.97 51.9832L132.748 52.0402L132.57 52.0754L132.335 52.1098L132.109 52.1283L131.893 52.1309L131.688 52.1177L131.493 52.0882L131.308 52.0429L131.133 51.9816L130.968 51.9042L130.8 51.8025L130.629 51.6645L130.491 51.5085L130.387 51.3346L130.317 51.1433L130.294 51.0409L130.276 50.8334L130.282 50.7714H130.807L130.81 50.9453L130.877 51.1271L131.009 51.2775L131.181 51.3852L131.345 51.4499L131.527 51.4986L131.723 51.5281L131.931 51.5387L132.153 51.5304L132.347 51.5088L132.468 51.4899L132.666 51.4491L132.852 51.3988L133.058 51.3263L133.244 51.2405L133.413 51.1411L133.515 51.067L133.663 50.9313L133.781 50.7707L133.845 50.5832L133.842 50.4105L133.775 50.2295L133.643 50.0794L133.472 49.9717L133.31 49.9071L133.129 49.8583L132.936 49.8281L132.73 49.8167L132.513 49.8247L132.322 49.8455L132.204 49.864L132.002 49.9055L131.814 49.9558L131.639 50.0155L131.445 50.0994L131.271 50.197L131.14 50.288L130.99 50.4233L130.872 50.5836L130.807 50.7714H130.282L130.295 50.6312L130.352 50.4339L130.447 50.2416L130.554 50.0847L130.631 49.9925L130.794 49.8326L130.943 49.7177L131.107 49.6142L131.288 49.5219L131.483 49.4411L131.695 49.3719L131.923 49.314L132.104 49.2781L132.335 49.2445L132.556 49.2268L132.767 49.2249L132.97 49.2392Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M133.298 53.1057L131.87 53.3574L131.664 53.4107L131.485 53.5041L131.362 53.6522L131.326 53.8446L131.335 53.9281L131.396 54.1028L131.529 54.2354L131.729 54.297L131.922 54.2966L132.033 54.2811L133.461 54.0294L133.564 54.6149L132.123 54.8689L131.925 54.8949L131.728 54.8999L131.594 54.8874L131.405 54.8292L131.237 54.7309L131.201 54.7044L131.064 54.5706L130.954 54.4119L130.872 54.2282L130.824 54.0472L130.819 54.02L130.799 53.8321L130.808 53.6303L130.853 53.4425L130.932 53.2679L130.944 53.2471L131.055 53.0974L131.195 52.9723L131.249 52.9364L131.425 52.8555L131.612 52.803L131.754 52.7742L133.194 52.5203L133.298 53.1057Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M134.931 57.2681L134.691 55.9044L133.76 56.0688L133.995 57.4034L133.414 57.5058L133.178 56.1712L131.287 56.5046L131.184 55.9192L135.17 55.2166L135.513 57.1656L134.931 57.2681Z" fill="#7D7D7D"/>
<path d="M70.5894 70.3165H42.2429" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M42.2429 70.3165V108.112" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M46.7783 70.5055V107.923" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M70.5894 108.112V70.3165" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M42.2429 108.112H70.5894" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M70.3247 19.6708H41.9783" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M41.9783 19.6708V57.4661" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M46.5137 19.8599V57.2772" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M70.3247 57.4661V19.6708" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M41.9783 57.4661H70.3247" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.588 91.9169L122.149 93.4264" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.588 91.9169L110.522 87.5383" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M122.149 93.4264L126.527 90.3605" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M114.524 89.8741L114.787 88.3853" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.911 88.9984L115.4 89.261" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M110.522 87.5383L112.688 75.2556" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M126.527 90.3605L128.693 78.0774" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M112.688 75.2556L128.693 78.0774" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M119.28 92.228C123.455 92.228 126.839 88.8437 126.839 84.6689C126.839 80.4942 123.455 77.1099 119.28 77.1099C115.105 77.1099 111.721 80.4942 111.721 84.6689C111.721 88.8437 115.105 92.228 119.28 92.228Z" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M147.953 41.1121L139.392 42.6217" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M147.953 41.1121L152.331 44.1777" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M139.392 42.6216L136.327 46.9999" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M147.773 43.3514L148.035 44.8402" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M148.648 43.9645L147.159 44.2272" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M152.332 44.1777L154.498 56.4608" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M136.327 46.9999L138.492 59.283" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M154.498 56.4608L138.492 59.2829" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M145.084 57.4284C149.258 57.4284 152.643 54.044 152.643 49.8693C152.643 45.6945 149.258 42.3102 145.084 42.3102C140.909 42.3102 137.525 45.6945 137.525 49.8693C137.525 54.044 140.909 57.4284 145.084 57.4284Z" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M109.978 47.1423C110.826 47.1423 111.514 46.4546 111.514 45.6063C111.514 44.758 110.826 44.0703 109.978 44.0703C109.129 44.0703 108.442 44.758 108.442 45.6063C108.442 46.4546 109.129 47.1423 109.978 47.1423Z" fill="#7D7D7D"/>
<path d="M104.977 18.78C105.825 18.78 106.513 18.0923 106.513 17.244C106.513 16.3957 105.825 15.708 104.977 15.708C104.128 15.708 103.441 16.3957 103.441 17.244C103.441 18.0923 104.128 18.78 104.977 18.78Z" fill="#7D7D7D"/>
<path d="M112.057 114.591C112.905 114.591 113.593 113.903 113.593 113.055C113.593 112.207 112.905 111.519 112.057 111.519C111.208 111.519 110.521 112.207 110.521 113.055C110.521 113.903 111.208 114.591 112.057 114.591Z" fill="#7D7D7D"/>
<path d="M107.055 142.953C107.904 142.953 108.591 142.266 108.591 141.417C108.591 140.569 107.904 139.881 107.055 139.881C106.207 139.881 105.519 140.569 105.519 141.417C105.519 142.266 106.207 142.953 107.055 142.953Z" fill="#7D7D7D"/>
<path d="M56.4157 82.4866C58.0021 82.4866 59.2881 81.2006 59.2881 79.6141C59.2881 78.0277 58.0021 76.7417 56.4157 76.7417C54.8293 76.7417 53.5432 78.0277 53.5432 79.6141C53.5432 81.2006 54.8293 82.4866 56.4157 82.4866Z" fill="#7D7D7D"/>
<path d="M56.4157 101.687C58.0021 101.687 59.2881 100.401 59.2881 98.8142C59.2881 97.2278 58.0021 95.9418 56.4157 95.9418C54.8293 95.9418 53.5432 97.2278 53.5432 98.8142C53.5432 100.401 54.8293 101.687 56.4157 101.687Z" fill="#7D7D7D"/>
<path d="M56.1515 31.841C57.7379 31.841 59.024 30.5549 59.024 28.9685C59.024 27.3821 57.7379 26.0961 56.1515 26.0961C54.5651 26.0961 53.2791 27.3821 53.2791 28.9685C53.2791 30.5549 54.5651 31.841 56.1515 31.841Z" fill="#7D7D7D"/>
<path d="M56.1515 51.041C57.7379 51.041 59.024 49.7549 59.024 48.1685C59.024 46.5821 57.7379 45.2961 56.1515 45.2961C54.5651 45.2961 53.2791 46.5821 53.2791 48.1685C53.2791 49.7549 54.5651 51.041 56.1515 51.041Z" fill="#7D7D7D"/>
<path d="M160.542 76.3638C162.838 76.3638 164.699 74.5024 164.699 72.2063C164.699 69.9102 162.838 68.0488 160.542 68.0488C158.246 68.0488 156.385 69.9102 156.385 72.2063C156.385 74.5024 158.246 76.3638 160.542 76.3638Z" fill="#7D7D7D"/>
<path d="M139.414 143.715C141.71 143.715 143.572 141.854 143.572 139.558C143.572 137.261 141.71 135.4 139.414 135.4C137.118 135.4 135.257 137.261 135.257 139.558C135.257 141.854 137.118 143.715 139.414 143.715Z" fill="#7D7D7D"/>
<path d="M140.359 18.4236C142.655 18.4236 144.517 16.5622 144.517 14.2661C144.517 11.97 142.655 10.1086 140.359 10.1086C138.063 10.1086 136.202 11.97 136.202 14.2661C136.202 16.5622 138.063 18.4236 140.359 18.4236Z" fill="#7D7D7D"/>
<path d="M109.978 47.1423C110.826 47.1423 111.514 46.4546 111.514 45.6063C111.514 44.758 110.826 44.0703 109.978 44.0703C109.129 44.0703 108.442 44.758 108.442 45.6063C108.442 46.4546 109.129 47.1423 109.978 47.1423Z" fill="#7D7D7D"/>
<path d="M104.977 18.78C105.825 18.78 106.513 18.0923 106.513 17.244C106.513 16.3957 105.825 15.708 104.977 15.708C104.128 15.708 103.441 16.3957 103.441 17.244C103.441 18.0923 104.128 18.78 104.977 18.78Z" fill="#7D7D7D"/>
<path d="M112.057 114.591C112.905 114.591 113.593 113.903 113.593 113.055C113.593 112.207 112.905 111.519 112.057 111.519C111.208 111.519 110.521 112.207 110.521 113.055C110.521 113.903 111.208 114.591 112.057 114.591Z" fill="#7D7D7D"/>
<path d="M107.055 142.953C107.904 142.953 108.591 142.266 108.591 141.417C108.591 140.569 107.904 139.881 107.055 139.881C106.207 139.881 105.519 140.569 105.519 141.417C105.519 142.266 106.207 142.953 107.055 142.953Z" fill="#7D7D7D"/>
<path d="M56.4157 82.4866C58.0021 82.4866 59.2881 81.2006 59.2881 79.6141C59.2881 78.0277 58.0021 76.7417 56.4157 76.7417C54.8293 76.7417 53.5432 78.0277 53.5432 79.6141C53.5432 81.2006 54.8293 82.4866 56.4157 82.4866Z" fill="#7D7D7D"/>
<path d="M56.4157 101.687C58.0021 101.687 59.2881 100.401 59.2881 98.8142C59.2881 97.2278 58.0021 95.9418 56.4157 95.9418C54.8293 95.9418 53.5432 97.2278 53.5432 98.8142C53.5432 100.401 54.8293 101.687 56.4157 101.687Z" fill="#7D7D7D"/>
<path d="M56.1515 31.841C57.7379 31.841 59.024 30.5549 59.024 28.9685C59.024 27.3821 57.7379 26.0961 56.1515 26.0961C54.5651 26.0961 53.2791 27.3821 53.2791 28.9685C53.2791 30.5549 54.5651 31.841 56.1515 31.841Z" fill="#7D7D7D"/>
<path d="M56.1515 51.041C57.7379 51.041 59.024 49.7549 59.024 48.1685C59.024 46.5821 57.7379 45.2961 56.1515 45.2961C54.5651 45.2961 53.2791 46.5821 53.2791 48.1685C53.2791 49.7549 54.5651 51.041 56.1515 51.041Z" fill="#7D7D7D"/>
<path d="M160.542 76.3638C162.838 76.3638 164.699 74.5024 164.699 72.2063C164.699 69.9102 162.838 68.0488 160.542 68.0488C158.246 68.0488 156.385 69.9102 156.385 72.2063C156.385 74.5024 158.246 76.3638 160.542 76.3638Z" fill="#7D7D7D"/>
<path d="M139.414 143.715C141.71 143.715 143.572 141.854 143.572 139.558C143.572 137.261 141.71 135.4 139.414 135.4C137.118 135.4 135.257 137.261 135.257 139.558C135.257 141.854 137.118 143.715 139.414 143.715Z" fill="#7D7D7D"/>
<path d="M140.359 18.4236C142.655 18.4236 144.517 16.5622 144.517 14.2661C144.517 11.97 142.655 10.1086 140.359 10.1086C138.063 10.1086 136.202 11.97 136.202 14.2661C136.202 16.5622 138.063 18.4236 140.359 18.4236Z" fill="#7D7D7D"/>
<path d="M160.542 79.3874C164.508 79.3874 167.723 76.1723 167.723 72.2063C167.723 68.2403 164.508 65.0252 160.542 65.0252C156.576 65.0252 153.361 68.2403 153.361 72.2063C153.361 76.1723 156.576 79.3874 160.542 79.3874Z" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M139.414 146.739C143.38 146.739 146.595 143.523 146.595 139.557C146.595 135.591 143.38 132.376 139.414 132.376C135.448 132.376 132.233 135.591 132.233 139.557C132.233 143.523 135.448 146.739 139.414 146.739Z" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M140.359 21.4472C144.325 21.4472 147.54 18.2321 147.54 14.2661C147.54 10.3001 144.325 7.08502 140.359 7.08502C136.393 7.08502 133.178 10.3001 133.178 14.2661C133.178 18.2321 136.393 21.4472 140.359 21.4472Z" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M109.978 47.1423C110.826 47.1423 111.514 46.4546 111.514 45.6063C111.514 44.758 110.826 44.0703 109.978 44.0703C109.129 44.0703 108.442 44.758 108.442 45.6063C108.442 46.4546 109.129 47.1423 109.978 47.1423Z" fill="#7D7D7D"/>
<path d="M104.977 18.78C105.825 18.78 106.513 18.0923 106.513 17.244C106.513 16.3957 105.825 15.708 104.977 15.708C104.128 15.708 103.441 16.3957 103.441 17.244C103.441 18.0923 104.128 18.78 104.977 18.78Z" fill="#7D7D7D"/>
<path d="M112.057 114.591C112.905 114.591 113.593 113.903 113.593 113.055C113.593 112.207 112.905 111.519 112.057 111.519C111.208 111.519 110.521 112.207 110.521 113.055C110.521 113.903 111.208 114.591 112.057 114.591Z" fill="#7D7D7D"/>
<path d="M107.055 142.953C107.904 142.953 108.591 142.266 108.591 141.417C108.591 140.569 107.904 139.881 107.055 139.881C106.207 139.881 105.519 140.569 105.519 141.417C105.519 142.266 106.207 142.953 107.055 142.953Z" fill="#7D7D7D"/>
<path d="M56.4157 82.4866C58.0021 82.4866 59.2881 81.2006 59.2881 79.6141C59.2881 78.0277 58.0021 76.7417 56.4157 76.7417C54.8293 76.7417 53.5432 78.0277 53.5432 79.6141C53.5432 81.2006 54.8293 82.4866 56.4157 82.4866Z" fill="#7D7D7D"/>
<path d="M56.4157 101.687C58.0021 101.687 59.2881 100.401 59.2881 98.8142C59.2881 97.2278 58.0021 95.9418 56.4157 95.9418C54.8293 95.9418 53.5432 97.2278 53.5432 98.8142C53.5432 100.401 54.8293 101.687 56.4157 101.687Z" fill="#7D7D7D"/>
<path d="M56.1515 31.841C57.7379 31.841 59.024 30.5549 59.024 28.9685C59.024 27.3821 57.7379 26.0961 56.1515 26.0961C54.5651 26.0961 53.2791 27.3821 53.2791 28.9685C53.2791 30.5549 54.5651 31.841 56.1515 31.841Z" fill="#7D7D7D"/>
<path d="M56.1515 51.041C57.7379 51.041 59.024 49.7549 59.024 48.1685C59.024 46.5821 57.7379 45.2961 56.1515 45.2961C54.5651 45.2961 53.2791 46.5821 53.2791 48.1685C53.2791 49.7549 54.5651 51.041 56.1515 51.041Z" fill="#7D7D7D"/>
<path d="M160.542 76.3638C162.838 76.3638 164.699 74.5024 164.699 72.2063C164.699 69.9102 162.838 68.0488 160.542 68.0488C158.246 68.0488 156.385 69.9102 156.385 72.2063C156.385 74.5024 158.246 76.3638 160.542 76.3638Z" fill="#7D7D7D"/>
<path d="M139.414 143.715C141.71 143.715 143.572 141.854 143.572 139.558C143.572 137.261 141.71 135.4 139.414 135.4C137.118 135.4 135.257 137.261 135.257 139.558C135.257 141.854 137.118 143.715 139.414 143.715Z" fill="#7D7D7D"/>
<path d="M140.359 18.4236C142.655 18.4236 144.517 16.5622 144.517 14.2661C144.517 11.97 142.655 10.1086 140.359 10.1086C138.063 10.1086 136.202 11.97 136.202 14.2661C136.202 16.5622 138.063 18.4236 140.359 18.4236Z" fill="#7D7D7D"/>
<path d="M109.978 47.1423C110.826 47.1423 111.514 46.4546 111.514 45.6063C111.514 44.758 110.826 44.0703 109.978 44.0703C109.129 44.0703 108.442 44.758 108.442 45.6063C108.442 46.4546 109.129 47.1423 109.978 47.1423Z" fill="#7D7D7D"/>
<path d="M104.977 18.78C105.825 18.78 106.513 18.0923 106.513 17.244C106.513 16.3957 105.825 15.708 104.977 15.708C104.128 15.708 103.441 16.3957 103.441 17.244C103.441 18.0923 104.128 18.78 104.977 18.78Z" fill="#7D7D7D"/>
<path d="M112.057 114.591C112.905 114.591 113.593 113.903 113.593 113.055C113.593 112.207 112.905 111.519 112.057 111.519C111.208 111.519 110.521 112.207 110.521 113.055C110.521 113.903 111.208 114.591 112.057 114.591Z" fill="#7D7D7D"/>
<path d="M107.055 142.953C107.904 142.953 108.591 142.266 108.591 141.417C108.591 140.569 107.904 139.881 107.055 139.881C106.207 139.881 105.519 140.569 105.519 141.417C105.519 142.266 106.207 142.953 107.055 142.953Z" fill="#7D7D7D"/>
<path d="M56.4157 82.4866C58.0021 82.4866 59.2881 81.2006 59.2881 79.6141C59.2881 78.0277 58.0021 76.7417 56.4157 76.7417C54.8293 76.7417 53.5432 78.0277 53.5432 79.6141C53.5432 81.2006 54.8293 82.4866 56.4157 82.4866Z" fill="#7D7D7D"/>
<path d="M56.4157 101.687C58.0021 101.687 59.2881 100.401 59.2881 98.8142C59.2881 97.2278 58.0021 95.9418 56.4157 95.9418C54.8293 95.9418 53.5432 97.2278 53.5432 98.8142C53.5432 100.401 54.8293 101.687 56.4157 101.687Z" fill="#7D7D7D"/>
<path d="M56.1515 31.841C57.7379 31.841 59.024 30.5549 59.024 28.9685C59.024 27.3821 57.7379 26.0961 56.1515 26.0961C54.5651 26.0961 53.2791 27.3821 53.2791 28.9685C53.2791 30.5549 54.5651 31.841 56.1515 31.841Z" fill="#7D7D7D"/>
<path d="M56.1515 51.041C57.7379 51.041 59.024 49.7549 59.024 48.1685C59.024 46.5821 57.7379 45.2961 56.1515 45.2961C54.5651 45.2961 53.2791 46.5821 53.2791 48.1685C53.2791 49.7549 54.5651 51.041 56.1515 51.041Z" fill="#7D7D7D"/>
<path d="M160.542 76.3638C162.838 76.3638 164.699 74.5024 164.699 72.2063C164.699 69.9102 162.838 68.0488 160.542 68.0488C158.246 68.0488 156.385 69.9102 156.385 72.2063C156.385 74.5024 158.246 76.3638 160.542 76.3638Z" fill="#7D7D7D"/>
<path d="M139.414 143.715C141.71 143.715 143.572 141.854 143.572 139.558C143.572 137.261 141.71 135.4 139.414 135.4C137.118 135.4 135.257 137.261 135.257 139.558C135.257 141.854 137.118 143.715 139.414 143.715Z" fill="#7D7D7D"/>
<path d="M140.359 18.4236C142.655 18.4236 144.517 16.5622 144.517 14.2661C144.517 11.97 142.655 10.1086 140.359 10.1086C138.063 10.1086 136.202 11.97 136.202 14.2661C136.202 16.5622 138.063 18.4236 140.359 18.4236Z" fill="#7D7D7D"/>
<path d="M109.978 47.1423C110.826 47.1423 111.514 46.4546 111.514 45.6063C111.514 44.758 110.826 44.0703 109.978 44.0703C109.129 44.0703 108.442 44.758 108.442 45.6063C108.442 46.4546 109.129 47.1423 109.978 47.1423Z" fill="#7D7D7D"/>
<path d="M104.977 18.78C105.825 18.78 106.513 18.0923 106.513 17.244C106.513 16.3957 105.825 15.708 104.977 15.708C104.128 15.708 103.441 16.3957 103.441 17.244C103.441 18.0923 104.128 18.78 104.977 18.78Z" fill="#7D7D7D"/>
<path d="M112.057 114.591C112.905 114.591 113.593 113.903 113.593 113.055C113.593 112.207 112.905 111.519 112.057 111.519C111.208 111.519 110.521 112.207 110.521 113.055C110.521 113.903 111.208 114.591 112.057 114.591Z" fill="#7D7D7D"/>
<path d="M107.055 142.953C107.904 142.953 108.591 142.266 108.591 141.417C108.591 140.569 107.904 139.881 107.055 139.881C106.207 139.881 105.519 140.569 105.519 141.417C105.519 142.266 106.207 142.953 107.055 142.953Z" fill="#7D7D7D"/>
<path d="M56.4157 82.4866C58.0021 82.4866 59.2881 81.2006 59.2881 79.6141C59.2881 78.0277 58.0021 76.7417 56.4157 76.7417C54.8293 76.7417 53.5432 78.0277 53.5432 79.6141C53.5432 81.2006 54.8293 82.4866 56.4157 82.4866Z" fill="#7D7D7D"/>
<path d="M56.4157 101.687C58.0021 101.687 59.2881 100.401 59.2881 98.8142C59.2881 97.2278 58.0021 95.9418 56.4157 95.9418C54.8293 95.9418 53.5432 97.2278 53.5432 98.8142C53.5432 100.401 54.8293 101.687 56.4157 101.687Z" fill="#7D7D7D"/>
<path d="M56.1515 31.841C57.7379 31.841 59.024 30.5549 59.024 28.9685C59.024 27.3821 57.7379 26.0961 56.1515 26.0961C54.5651 26.0961 53.2791 27.3821 53.2791 28.9685C53.2791 30.5549 54.5651 31.841 56.1515 31.841Z" fill="#7D7D7D"/>
<path d="M56.1515 51.041C57.7379 51.041 59.024 49.7549 59.024 48.1685C59.024 46.5821 57.7379 45.2961 56.1515 45.2961C54.5651 45.2961 53.2791 46.5821 53.2791 48.1685C53.2791 49.7549 54.5651 51.041 56.1515 51.041Z" fill="#7D7D7D"/>
<path d="M160.542 76.3638C162.838 76.3638 164.699 74.5024 164.699 72.2063C164.699 69.9102 162.838 68.0488 160.542 68.0488C158.246 68.0488 156.385 69.9102 156.385 72.2063C156.385 74.5024 158.246 76.3638 160.542 76.3638Z" fill="#7D7D7D"/>
<path d="M139.414 143.715C141.71 143.715 143.572 141.854 143.572 139.558C143.572 137.261 141.71 135.4 139.414 135.4C137.118 135.4 135.257 137.261 135.257 139.558C135.257 141.854 137.118 143.715 139.414 143.715Z" fill="#7D7D7D"/>
<path d="M140.359 18.4236C142.655 18.4236 144.517 16.5622 144.517 14.2661C144.517 11.97 142.655 10.1086 140.359 10.1086C138.063 10.1086 136.202 11.97 136.202 14.2661C136.202 16.5622 138.063 18.4236 140.359 18.4236Z" fill="#7D7D7D"/>
<path d="M109.978 47.1423C110.826 47.1423 111.514 46.4546 111.514 45.6063C111.514 44.758 110.826 44.0703 109.978 44.0703C109.129 44.0703 108.442 44.758 108.442 45.6063C108.442 46.4546 109.129 47.1423 109.978 47.1423Z" fill="#7D7D7D"/>
<path d="M104.977 18.78C105.825 18.78 106.513 18.0923 106.513 17.244C106.513 16.3957 105.825 15.708 104.977 15.708C104.128 15.708 103.441 16.3957 103.441 17.244C103.441 18.0923 104.128 18.78 104.977 18.78Z" fill="#7D7D7D"/>
<path d="M112.057 114.591C112.905 114.591 113.593 113.903 113.593 113.055C113.593 112.207 112.905 111.519 112.057 111.519C111.208 111.519 110.521 112.207 110.521 113.055C110.521 113.903 111.208 114.591 112.057 114.591Z" fill="#7D7D7D"/>
<path d="M107.055 142.953C107.904 142.953 108.591 142.266 108.591 141.417C108.591 140.569 107.904 139.881 107.055 139.881C106.207 139.881 105.519 140.569 105.519 141.417C105.519 142.266 106.207 142.953 107.055 142.953Z" fill="#7D7D7D"/>
<path d="M56.4157 82.4866C58.0021 82.4866 59.2881 81.2006 59.2881 79.6141C59.2881 78.0277 58.0021 76.7417 56.4157 76.7417C54.8293 76.7417 53.5432 78.0277 53.5432 79.6141C53.5432 81.2006 54.8293 82.4866 56.4157 82.4866Z" fill="#7D7D7D"/>
<path d="M56.4157 101.687C58.0021 101.687 59.2881 100.401 59.2881 98.8142C59.2881 97.2278 58.0021 95.9418 56.4157 95.9418C54.8293 95.9418 53.5432 97.2278 53.5432 98.8142C53.5432 100.401 54.8293 101.687 56.4157 101.687Z" fill="#7D7D7D"/>
<path d="M56.1515 31.841C57.7379 31.841 59.024 30.5549 59.024 28.9685C59.024 27.3821 57.7379 26.0961 56.1515 26.0961C54.5651 26.0961 53.2791 27.3821 53.2791 28.9685C53.2791 30.5549 54.5651 31.841 56.1515 31.841Z" fill="#7D7D7D"/>
<path d="M56.1515 51.041C57.7379 51.041 59.024 49.7549 59.024 48.1685C59.024 46.5821 57.7379 45.2961 56.1515 45.2961C54.5651 45.2961 53.2791 46.5821 53.2791 48.1685C53.2791 49.7549 54.5651 51.041 56.1515 51.041Z" fill="#7D7D7D"/>
<path d="M160.542 76.3638C162.838 76.3638 164.699 74.5024 164.699 72.2063C164.699 69.9102 162.838 68.0488 160.542 68.0488C158.246 68.0488 156.385 69.9102 156.385 72.2063C156.385 74.5024 158.246 76.3638 160.542 76.3638Z" fill="#7D7D7D"/>
<path d="M139.414 143.715C141.71 143.715 143.572 141.854 143.572 139.558C143.572 137.261 141.71 135.4 139.414 135.4C137.118 135.4 135.257 137.261 135.257 139.558C135.257 141.854 137.118 143.715 139.414 143.715Z" fill="#7D7D7D"/>
<path d="M140.359 18.4236C142.655 18.4236 144.517 16.5622 144.517 14.2661C144.517 11.97 142.655 10.1086 140.359 10.1086C138.063 10.1086 136.202 11.97 136.202 14.2661C136.202 16.5622 138.063 18.4236 140.359 18.4236Z" fill="#7D7D7D"/>
<path d="M109.978 47.1423C110.826 47.1423 111.514 46.4546 111.514 45.6063C111.514 44.758 110.826 44.0703 109.978 44.0703C109.129 44.0703 108.442 44.758 108.442 45.6063C108.442 46.4546 109.129 47.1423 109.978 47.1423Z" fill="#7D7D7D"/>
<path d="M104.977 18.78C105.825 18.78 106.513 18.0923 106.513 17.244C106.513 16.3957 105.825 15.708 104.977 15.708C104.128 15.708 103.441 16.3957 103.441 17.244C103.441 18.0923 104.128 18.78 104.977 18.78Z" fill="#7D7D7D"/>
<path d="M112.057 114.591C112.905 114.591 113.593 113.903 113.593 113.055C113.593 112.207 112.905 111.519 112.057 111.519C111.208 111.519 110.521 112.207 110.521 113.055C110.521 113.903 111.208 114.591 112.057 114.591Z" fill="#7D7D7D"/>
<path d="M107.055 142.953C107.904 142.953 108.591 142.266 108.591 141.417C108.591 140.569 107.904 139.881 107.055 139.881C106.207 139.881 105.519 140.569 105.519 141.417C105.519 142.266 106.207 142.953 107.055 142.953Z" fill="#7D7D7D"/>
<path d="M56.4157 82.4866C58.0021 82.4866 59.2881 81.2006 59.2881 79.6141C59.2881 78.0277 58.0021 76.7417 56.4157 76.7417C54.8293 76.7417 53.5432 78.0277 53.5432 79.6141C53.5432 81.2006 54.8293 82.4866 56.4157 82.4866Z" fill="#7D7D7D"/>
<path d="M56.4157 101.687C58.0021 101.687 59.2881 100.401 59.2881 98.8142C59.2881 97.2278 58.0021 95.9418 56.4157 95.9418C54.8293 95.9418 53.5432 97.2278 53.5432 98.8142C53.5432 100.401 54.8293 101.687 56.4157 101.687Z" fill="#7D7D7D"/>
<path d="M56.1515 31.841C57.7379 31.841 59.024 30.5549 59.024 28.9685C59.024 27.3821 57.7379 26.0961 56.1515 26.0961C54.5651 26.0961 53.2791 27.3821 53.2791 28.9685C53.2791 30.5549 54.5651 31.841 56.1515 31.841Z" fill="#7D7D7D"/>
<path d="M56.1515 51.041C57.7379 51.041 59.024 49.7549 59.024 48.1685C59.024 46.5821 57.7379 45.2961 56.1515 45.2961C54.5651 45.2961 53.2791 46.5821 53.2791 48.1685C53.2791 49.7549 54.5651 51.041 56.1515 51.041Z" fill="#7D7D7D"/>
<path d="M160.542 76.3638C162.838 76.3638 164.699 74.5024 164.699 72.2063C164.699 69.9102 162.838 68.0488 160.542 68.0488C158.246 68.0488 156.385 69.9102 156.385 72.2063C156.385 74.5024 158.246 76.3638 160.542 76.3638Z" fill="#7D7D7D"/>
<path d="M139.414 143.715C141.71 143.715 143.572 141.854 143.572 139.558C143.572 137.261 141.71 135.4 139.414 135.4C137.118 135.4 135.257 137.261 135.257 139.558C135.257 141.854 137.118 143.715 139.414 143.715Z" fill="#7D7D7D"/>
<path d="M140.359 18.4236C142.655 18.4236 144.517 16.5622 144.517 14.2661C144.517 11.97 142.655 10.1086 140.359 10.1086C138.063 10.1086 136.202 11.97 136.202 14.2661C136.202 16.5622 138.063 18.4236 140.359 18.4236Z" fill="#7D7D7D"/>
<path d="M109.978 47.1423C110.826 47.1423 111.514 46.4546 111.514 45.6063C111.514 44.758 110.826 44.0703 109.978 44.0703C109.129 44.0703 108.442 44.758 108.442 45.6063C108.442 46.4546 109.129 47.1423 109.978 47.1423Z" fill="#7D7D7D"/>
<path d="M104.977 18.78C105.825 18.78 106.513 18.0923 106.513 17.244C106.513 16.3957 105.825 15.708 104.977 15.708C104.128 15.708 103.441 16.3957 103.441 17.244C103.441 18.0923 104.128 18.78 104.977 18.78Z" fill="#7D7D7D"/>
<path d="M112.057 114.591C112.905 114.591 113.593 113.903 113.593 113.055C113.593 112.207 112.905 111.519 112.057 111.519C111.208 111.519 110.521 112.207 110.521 113.055C110.521 113.903 111.208 114.591 112.057 114.591Z" fill="#7D7D7D"/>
<path d="M107.055 142.953C107.904 142.953 108.591 142.266 108.591 141.417C108.591 140.569 107.904 139.881 107.055 139.881C106.207 139.881 105.519 140.569 105.519 141.417C105.519 142.266 106.207 142.953 107.055 142.953Z" fill="#7D7D7D"/>
<path d="M56.4157 82.4866C58.0021 82.4866 59.2881 81.2006 59.2881 79.6141C59.2881 78.0277 58.0021 76.7417 56.4157 76.7417C54.8293 76.7417 53.5432 78.0277 53.5432 79.6141C53.5432 81.2006 54.8293 82.4866 56.4157 82.4866Z" fill="#7D7D7D"/>
<path d="M56.4157 101.687C58.0021 101.687 59.2881 100.401 59.2881 98.8142C59.2881 97.2278 58.0021 95.9418 56.4157 95.9418C54.8293 95.9418 53.5432 97.2278 53.5432 98.8142C53.5432 100.401 54.8293 101.687 56.4157 101.687Z" fill="#7D7D7D"/>
<path d="M56.1515 31.841C57.7379 31.841 59.024 30.5549 59.024 28.9685C59.024 27.3821 57.7379 26.0961 56.1515 26.0961C54.5651 26.0961 53.2791 27.3821 53.2791 28.9685C53.2791 30.5549 54.5651 31.841 56.1515 31.841Z" fill="#7D7D7D"/>
<path d="M56.1515 51.041C57.7379 51.041 59.024 49.7549 59.024 48.1685C59.024 46.5821 57.7379 45.2961 56.1515 45.2961C54.5651 45.2961 53.2791 46.5821 53.2791 48.1685C53.2791 49.7549 54.5651 51.041 56.1515 51.041Z" fill="#7D7D7D"/>
<path d="M160.542 76.3638C162.838 76.3638 164.699 74.5024 164.699 72.2063C164.699 69.9102 162.838 68.0488 160.542 68.0488C158.246 68.0488 156.385 69.9102 156.385 72.2063C156.385 74.5024 158.246 76.3638 160.542 76.3638Z" fill="#7D7D7D"/>
<path d="M139.414 143.715C141.71 143.715 143.572 141.854 143.572 139.558C143.572 137.261 141.71 135.4 139.414 135.4C137.118 135.4 135.257 137.261 135.257 139.558C135.257 141.854 137.118 143.715 139.414 143.715Z" fill="#7D7D7D"/>
<path d="M140.359 18.4236C142.655 18.4236 144.517 16.5622 144.517 14.2661C144.517 11.97 142.655 10.1086 140.359 10.1086C138.063 10.1086 136.202 11.97 136.202 14.2661C136.202 16.5622 138.063 18.4236 140.359 18.4236Z" fill="#7D7D7D"/>
<path d="M109.978 48.2464C111.436 48.2464 112.618 47.0644 112.618 45.6064C112.618 44.1483 111.436 42.9664 109.978 42.9664C108.52 42.9664 107.338 44.1483 107.338 45.6064C107.338 47.0644 108.52 48.2464 109.978 48.2464Z" fill="#7D7D7D"/>
<path d="M104.977 19.884C106.435 19.884 107.617 18.702 107.617 17.244C107.617 15.786 106.435 14.604 104.977 14.604C103.519 14.604 102.337 15.786 102.337 17.244C102.337 18.702 103.519 19.884 104.977 19.884Z" fill="#7D7D7D"/>
<path d="M112.057 115.695C113.515 115.695 114.697 114.513 114.697 113.055C114.697 111.597 113.515 110.415 112.057 110.415C110.599 110.415 109.417 111.597 109.417 113.055C109.417 114.513 110.599 115.695 112.057 115.695Z" fill="#7D7D7D"/>
<path d="M107.056 144.057C108.514 144.057 109.696 142.875 109.696 141.417C109.696 139.959 108.514 138.777 107.056 138.777C105.598 138.777 104.416 139.959 104.416 141.417C104.416 142.875 105.598 144.057 107.056 144.057Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.7468 73.9449H62.0854V85.2835H50.7468V73.9449Z" fill="#7D7D7D"/>
<path d="M56.4161 104.483C59.5472 104.483 62.0854 101.945 62.0854 98.8141C62.0854 95.6831 59.5472 93.1448 56.4161 93.1448C53.2851 93.1448 50.7468 95.6831 50.7468 98.8141C50.7468 101.945 53.2851 104.483 56.4161 104.483Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.4822 23.2992H61.8208V34.6378H50.4822V23.2992Z" fill="#7D7D7D"/>
<path d="M56.1515 53.8378C59.2825 53.8378 61.8208 51.2996 61.8208 48.1685C61.8208 45.0374 59.2825 42.4992 56.1515 42.4992C53.0204 42.4992 50.4822 45.0374 50.4822 48.1685C50.4822 51.2996 53.0204 53.8378 56.1515 53.8378Z" fill="#7D7D7D"/>
<path d="M160.542 79.3874C164.508 79.3874 167.723 76.1723 167.723 72.2063C167.723 68.2403 164.508 65.0252 160.542 65.0252C156.576 65.0252 153.361 68.2403 153.361 72.2063C153.361 76.1723 156.576 79.3874 160.542 79.3874Z" fill="#7D7D7D"/>
<path d="M139.414 146.739C143.38 146.739 146.595 143.523 146.595 139.557C146.595 135.591 143.38 132.376 139.414 132.376C135.448 132.376 132.233 135.591 132.233 139.557C132.233 143.523 135.448 146.739 139.414 146.739Z" fill="#7D7D7D"/>
<path d="M140.359 21.4472C144.325 21.4472 147.54 18.2321 147.54 14.2661C147.54 10.3001 144.325 7.08502 140.359 7.08502C136.393 7.08502 133.178 10.3001 133.178 14.2661C133.178 18.2321 136.393 21.4472 140.359 21.4472Z" fill="#7D7D7D"/>
<path d="M109.978 47.1423C110.826 47.1423 111.514 46.4546 111.514 45.6063C111.514 44.758 110.826 44.0703 109.978 44.0703C109.129 44.0703 108.442 44.758 108.442 45.6063C108.442 46.4546 109.129 47.1423 109.978 47.1423Z" fill="white"/>
<path d="M104.977 18.78C105.825 18.78 106.513 18.0923 106.513 17.244C106.513 16.3957 105.825 15.708 104.977 15.708C104.128 15.708 103.441 16.3957 103.441 17.244C103.441 18.0923 104.128 18.78 104.977 18.78Z" fill="white"/>
<path d="M112.057 114.591C112.905 114.591 113.593 113.903 113.593 113.055C113.593 112.207 112.905 111.519 112.057 111.519C111.208 111.519 110.521 112.207 110.521 113.055C110.521 113.903 111.208 114.591 112.057 114.591Z" fill="white"/>
<path d="M107.055 142.953C107.904 142.953 108.591 142.266 108.591 141.417C108.591 140.569 107.904 139.881 107.055 139.881C106.207 139.881 105.519 140.569 105.519 141.417C105.519 142.266 106.207 142.953 107.055 142.953Z" fill="white"/>
<path d="M56.4157 82.4866C58.0021 82.4866 59.2881 81.2006 59.2881 79.6141C59.2881 78.0277 58.0021 76.7417 56.4157 76.7417C54.8293 76.7417 53.5432 78.0277 53.5432 79.6141C53.5432 81.2006 54.8293 82.4866 56.4157 82.4866Z" fill="white"/>
<path d="M56.4157 101.687C58.0021 101.687 59.2881 100.401 59.2881 98.8142C59.2881 97.2278 58.0021 95.9418 56.4157 95.9418C54.8293 95.9418 53.5432 97.2278 53.5432 98.8142C53.5432 100.401 54.8293 101.687 56.4157 101.687Z" fill="white"/>
<path d="M56.1515 31.841C57.7379 31.841 59.024 30.5549 59.024 28.9685C59.024 27.3821 57.7379 26.0961 56.1515 26.0961C54.5651 26.0961 53.2791 27.3821 53.2791 28.9685C53.2791 30.5549 54.5651 31.841 56.1515 31.841Z" fill="white"/>
<path d="M56.1515 51.041C57.7379 51.041 59.024 49.7549 59.024 48.1685C59.024 46.5821 57.7379 45.2961 56.1515 45.2961C54.5651 45.2961 53.2791 46.5821 53.2791 48.1685C53.2791 49.7549 54.5651 51.041 56.1515 51.041Z" fill="white"/>
<path d="M160.542 76.3638C162.838 76.3638 164.699 74.5024 164.699 72.2063C164.699 69.9102 162.838 68.0488 160.542 68.0488C158.246 68.0488 156.385 69.9102 156.385 72.2063C156.385 74.5024 158.246 76.3638 160.542 76.3638Z" fill="white"/>
<path d="M139.414 143.715C141.71 143.715 143.572 141.854 143.572 139.558C143.572 137.261 141.71 135.4 139.414 135.4C137.118 135.4 135.257 137.261 135.257 139.558C135.257 141.854 137.118 143.715 139.414 143.715Z" fill="white"/>
<path d="M140.359 18.4236C142.655 18.4236 144.517 16.5622 144.517 14.2661C144.517 11.97 142.655 10.1086 140.359 10.1086C138.063 10.1086 136.202 11.97 136.202 14.2661C136.202 16.5622 138.063 18.4236 140.359 18.4236Z" fill="white"/>
<path d="M19.7922 1H197.43V159.74H19.7922V1Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="2 2"/>
<path d="M109.978 48.2464C111.436 48.2464 112.618 47.0644 112.618 45.6064C112.618 44.1483 111.436 42.9664 109.978 42.9664C108.52 42.9664 107.338 44.1483 107.338 45.6064C107.338 47.0644 108.52 48.2464 109.978 48.2464Z" fill="#7D7D7D"/>
<path d="M104.977 19.884C106.435 19.884 107.617 18.702 107.617 17.244C107.617 15.786 106.435 14.604 104.977 14.604C103.519 14.604 102.337 15.786 102.337 17.244C102.337 18.702 103.519 19.884 104.977 19.884Z" fill="#7D7D7D"/>
<path d="M112.057 115.695C113.515 115.695 114.697 114.513 114.697 113.055C114.697 111.597 113.515 110.415 112.057 110.415C110.599 110.415 109.417 111.597 109.417 113.055C109.417 114.513 110.599 115.695 112.057 115.695Z" fill="#7D7D7D"/>
<path d="M107.056 144.057C108.514 144.057 109.696 142.875 109.696 141.417C109.696 139.959 108.514 138.777 107.056 138.777C105.598 138.777 104.416 139.959 104.416 141.417C104.416 142.875 105.598 144.057 107.056 144.057Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.7468 73.9449H62.0854V85.2835H50.7468V73.9449Z" fill="#7D7D7D"/>
<path d="M56.4161 104.483C59.5472 104.483 62.0854 101.945 62.0854 98.8141C62.0854 95.6831 59.5472 93.1448 56.4161 93.1448C53.2851 93.1448 50.7468 95.6831 50.7468 98.8141C50.7468 101.945 53.2851 104.483 56.4161 104.483Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.4822 23.2992H61.8208V34.6378H50.4822V23.2992Z" fill="#7D7D7D"/>
<path d="M56.1515 53.8378C59.2825 53.8378 61.8208 51.2996 61.8208 48.1685C61.8208 45.0374 59.2825 42.4992 56.1515 42.4992C53.0204 42.4992 50.4822 45.0374 50.4822 48.1685C50.4822 51.2996 53.0204 53.8378 56.1515 53.8378Z" fill="#7D7D7D"/>
<path d="M160.542 79.3874C164.508 79.3874 167.723 76.1723 167.723 72.2063C167.723 68.2403 164.508 65.0252 160.542 65.0252C156.576 65.0252 153.361 68.2403 153.361 72.2063C153.361 76.1723 156.576 79.3874 160.542 79.3874Z" fill="#7D7D7D"/>
<path d="M139.414 146.739C143.38 146.739 146.596 143.523 146.596 139.557C146.596 135.591 143.38 132.376 139.414 132.376C135.448 132.376 132.233 135.591 132.233 139.557C132.233 143.523 135.448 146.739 139.414 146.739Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M115.198 95.8464L114.854 95.713L114.588 95.4579L114.439 95.1204L114.431 94.7519L115.81 86.9354L115.943 86.5919L116.198 86.3254L116.536 86.1772L116.904 86.1689L120.999 86.8908L121.342 87.0246L121.609 87.2794L121.757 87.6169L121.765 87.9858L120.387 95.8022L120.253 96.1458L119.998 96.4118L119.661 96.5604L119.292 96.5683L115.198 95.8464Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M117.56 82.4469L117.217 82.3135L116.951 82.0584L116.802 81.7208L116.794 81.3524L118.172 73.5359L118.306 73.1923L118.561 72.9259L118.898 72.7773L119.267 72.7694L123.361 73.4913L123.705 73.6251L123.971 73.8798L124.12 74.2174L124.128 74.5858L122.749 82.4023L122.616 82.7462L122.361 83.0123L122.023 83.1609L121.655 83.1688L117.56 82.4469Z" fill="#7D7D7D"/>
<path d="M140.359 21.4472C144.325 21.4472 147.54 18.2321 147.54 14.2661C147.54 10.3001 144.325 7.08502 140.359 7.08502C136.393 7.08502 133.178 10.3001 133.178 14.2661C133.178 18.2321 136.393 21.4472 140.359 21.4472Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M145.096 37.9698L145.465 37.9778L145.802 38.1263L146.057 38.3928L146.19 38.7363L147.569 46.5528L147.561 46.9213L147.412 47.2588L147.146 47.5135L146.802 47.6473L142.708 48.3692L142.339 48.3613L142.002 48.2127L141.747 47.9463L141.613 47.6027L140.235 39.7863L140.243 39.4178L140.392 39.0803L140.658 38.8255L141.002 38.6917L145.096 37.9698Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M147.459 51.3694L147.828 51.3773L148.165 51.5259L148.42 51.7923L148.554 52.1359L149.932 59.9523L149.924 60.3208L149.775 60.6583L149.509 60.9131L149.165 61.0469L145.071 61.7688L144.702 61.7608L144.365 61.6123L144.11 61.3458L143.977 61.0023L142.598 53.1858L142.606 52.8173L142.755 52.4798L143.021 52.2251L143.365 52.0913L147.459 51.3694Z" fill="#7D7D7D"/>
<path d="M101.907 14.1747L104.977 17.244" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M56.1511 28.9685V28.704" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M105.74 16.4802L104.977 17.244" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M140.359 14.2661H111.085" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M56.1511 28.7039L56.1587 28.6964" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M111.085 14.2661C109.081 14.2661 107.158 15.0626 105.74 16.4802" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M101.907 14.1747C100.49 12.7571 98.567 11.9607 96.5623 11.9606" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M96.5623 11.9606C81.408 11.9607 66.8744 17.9807 56.1587 28.6964" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M77.3943 48.1685L78.7859 49.5597" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M144.992 56.5692H146.265" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M78.0883 74.9117L75.5999 77.4001" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M56.1511 48.1685H77.3944" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M56.4158 79.6142H118.816" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M80.3022 54.1342V69.5667" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M146.265 56.5692L154.888 65.1926" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M118.816 79.6142L120.461 77.9694" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M70.2549 79.6142H56.4158" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M156.71 68.1051V68.3742" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M156.71 68.3743L160.542 72.2063" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M120.46 77.9694L139.647 58.783" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M144.992 56.5688C142.987 56.5689 141.065 57.3653 139.647 58.7829" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M156.71 68.1051C156.328 67.01 155.706 66.0147 154.888 65.1926" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M80.3022 54.1341C80.3067 52.4852 79.7745 50.8795 78.7859 49.5598" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M78.0884 74.9117C79.506 73.4941 80.3024 71.5714 80.3024 69.5667" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M70.2549 79.6142C72.2597 79.6142 74.1823 78.8178 75.5999 77.4001" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M129.664 141.417H107.055" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M75.812 129.662L58.6299 112.48" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M139.414 139.557L137.987 140.985" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M56.4158 107.135V98.8141" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M107.055 141.417H104.192" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M137.987 140.985H136.855" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M75.8118 129.662C83.3386 137.189 93.5471 141.417 104.192 141.417" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M56.4158 107.135C56.4158 109.14 57.2122 111.063 58.6298 112.48" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M129.664 141.417C132.067 141.414 134.469 141.27 136.855 140.985" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M109.978 45.6063H138.334" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M143.679 43.3923L143.902 43.1693" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M138.334 45.6064C140.339 45.6064 142.261 44.8099 143.679 43.3923" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M118.098 91.3689L114.271 95.1964" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M112.056 100.541V113.055" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M114.27 95.1964C112.853 96.614 112.056 98.5366 112.056 100.541" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M109.978 47.1423C110.826 47.1423 111.514 46.4546 111.514 45.6063C111.514 44.758 110.826 44.0703 109.978 44.0703C109.129 44.0703 108.442 44.758 108.442 45.6063C108.442 46.4546 109.129 47.1423 109.978 47.1423Z" fill="white"/>
<path d="M104.977 18.78C105.825 18.78 106.513 18.0923 106.513 17.244C106.513 16.3957 105.825 15.708 104.977 15.708C104.128 15.708 103.441 16.3957 103.441 17.244C103.441 18.0923 104.128 18.78 104.977 18.78Z" fill="white"/>
<path d="M112.057 114.591C112.905 114.591 113.593 113.903 113.593 113.055C113.593 112.207 112.905 111.519 112.057 111.519C111.208 111.519 110.521 112.207 110.521 113.055C110.521 113.903 111.208 114.591 112.057 114.591Z" fill="white"/>
<path d="M107.055 142.953C107.904 142.953 108.591 142.266 108.591 141.417C108.591 140.569 107.904 139.881 107.055 139.881C106.207 139.881 105.519 140.569 105.519 141.417C105.519 142.266 106.207 142.953 107.055 142.953Z" fill="white"/>
<path d="M56.4157 82.4866C58.0021 82.4866 59.2881 81.2006 59.2881 79.6141C59.2881 78.0277 58.0021 76.7417 56.4157 76.7417C54.8293 76.7417 53.5432 78.0277 53.5432 79.6141C53.5432 81.2006 54.8293 82.4866 56.4157 82.4866Z" fill="white"/>
<path d="M56.4157 101.687C58.0021 101.687 59.2881 100.401 59.2881 98.8142C59.2881 97.2278 58.0021 95.9418 56.4157 95.9418C54.8293 95.9418 53.5432 97.2278 53.5432 98.8142C53.5432 100.401 54.8293 101.687 56.4157 101.687Z" fill="white"/>
<path d="M56.1515 31.841C57.7379 31.841 59.024 30.5549 59.024 28.9685C59.024 27.3821 57.7379 26.0961 56.1515 26.0961C54.5651 26.0961 53.2791 27.3821 53.2791 28.9685C53.2791 30.5549 54.5651 31.841 56.1515 31.841Z" fill="white"/>
<path d="M56.1515 51.041C57.7379 51.041 59.024 49.7549 59.024 48.1685C59.024 46.5821 57.7379 45.2961 56.1515 45.2961C54.5651 45.2961 53.2791 46.5821 53.2791 48.1685C53.2791 49.7549 54.5651 51.041 56.1515 51.041Z" fill="white"/>
<path d="M160.542 76.3638C162.838 76.3638 164.699 74.5024 164.699 72.2063C164.699 69.9102 162.838 68.0488 160.542 68.0488C158.246 68.0488 156.385 69.9102 156.385 72.2063C156.385 74.5024 158.246 76.3638 160.542 76.3638Z" fill="white"/>
<path d="M139.414 143.715C141.71 143.715 143.572 141.854 143.572 139.558C143.572 137.261 141.71 135.4 139.414 135.4C137.118 135.4 135.257 137.261 135.257 139.558C135.257 141.854 137.118 143.715 139.414 143.715Z" fill="white"/>
<path d="M140.359 18.4236C142.655 18.4236 144.517 16.5622 144.517 14.2661C144.517 11.97 142.655 10.1086 140.359 10.1086C138.063 10.1086 136.202 11.97 136.202 14.2661C136.202 16.5622 138.063 18.4236 140.359 18.4236Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M109.303 289.051L109.182 289.741L109.831 289.514L110 288.56L105.95 287.847L105.845 288.441L109.303 289.051Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M109.096 287.078L109.292 287.048L109.478 287.001L109.697 286.92L109.821 286.859L109.993 286.756L110.14 286.64L110.286 286.484L110.398 286.31L110.475 286.117L110.508 285.979L110.526 285.768L110.507 285.562L110.448 285.362L110.352 285.168L110.242 285.01L110.164 284.917L109.999 284.755L109.849 284.639L109.684 284.534L109.504 284.441L109.308 284.36L109.097 284.29L108.871 284.232L108.691 284.196L108.451 284.162L108.222 284.143L108.003 284.14L107.794 284.154L107.596 284.183L107.408 284.23L107.231 284.292L107.063 284.37L106.892 284.473L106.718 284.614L106.578 284.772L106.472 284.949L106.401 285.143L106.378 285.248L106.359 285.458L106.365 285.521H106.899L106.902 285.345L106.97 285.16L107.105 285.007L107.28 284.898L107.446 284.832L107.631 284.782L107.83 284.752L108.042 284.742L108.266 284.75L108.464 284.772L108.587 284.791L108.788 284.833L108.977 284.884L109.186 284.957L109.375 285.045L109.547 285.146L109.65 285.221L109.801 285.359L109.92 285.522L109.986 285.713L109.983 285.888L109.915 286.072L109.781 286.224L109.607 286.334L109.442 286.399L109.258 286.449L109.062 286.479L108.853 286.491L108.632 286.483L108.439 286.462L108.319 286.443L108.114 286.401L107.922 286.35L107.744 286.289L107.548 286.204L107.37 286.105L107.237 286.012L107.085 285.875L106.965 285.712L106.899 285.521H106.365L106.379 285.663L106.437 285.864L106.533 286.06L106.642 286.219L106.721 286.313L106.887 286.475L107.037 286.592L107.204 286.697L107.387 286.791L107.587 286.873L107.802 286.943L108.033 287.002L108.217 287.038L108.451 287.073L108.676 287.091L108.891 287.093L109.096 287.078Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M107.097 189.976L106.975 189.287L106.443 189.721L106.611 190.676L110.66 189.962L110.555 189.367L107.097 189.976Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M108.919 194.38L109.151 194.356L109.333 194.329L109.57 194.28L109.792 194.219L109.998 194.147L110.19 194.062L110.366 193.966L110.527 193.859L110.673 193.74L110.803 193.609L110.928 193.453L111.044 193.262L111.121 193.065L111.16 192.863L111.161 192.656L111.147 192.55L111.092 192.346L111.003 192.159L110.88 191.99L110.723 191.84L110.566 191.727L110.461 191.666L110.249 191.57L110.067 191.512L109.874 191.47L109.67 191.445L109.455 191.436L109.229 191.444L108.991 191.467L108.806 191.496L108.574 191.544L108.357 191.604L108.154 191.676L107.966 191.76L107.793 191.855L107.634 191.963L107.456 192.113L107.36 192.213L107.234 192.368L107.135 192.528L107.051 192.724L107.006 192.926L106.999 193.134L107.005 193.181H107.54L107.541 192.985L107.615 192.796L107.741 192.634L107.873 192.516L108.029 192.406L108.203 192.31L108.395 192.228L108.606 192.16L108.795 192.113L108.914 192.09L109.121 192.06L109.318 192.042L109.507 192.039L109.72 192.051L109.921 192.083L110.078 192.125L110.268 192.202L110.436 192.314L110.564 192.471L110.621 192.638L110.62 192.835L110.546 193.025L110.419 193.187L110.286 193.305L110.128 193.415L109.952 193.512L109.756 193.595L109.542 193.663L109.349 193.711L109.227 193.734L109.024 193.764L108.829 193.78L108.607 193.783L108.399 193.766L108.204 193.729L108.081 193.694L107.892 193.616L107.724 193.503L107.598 193.347L107.54 193.181H107.005L107.016 193.276L107.07 193.48L107.16 193.666L107.282 193.834L107.44 193.984L107.597 194.095L107.702 194.155L107.913 194.251L108.093 194.309L108.284 194.351L108.485 194.377L108.697 194.386L108.919 194.38Z" fill="#7D7D7D"/>
<path d="M105.724 276.232L113.168 277.545" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.168 277.545L109.23 299.878" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M101.786 298.565L105.724 276.232" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M109.23 299.878L101.786 298.565" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M115.247 202.754L107.802 204.067" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M107.803 204.067L103.865 181.734" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M111.309 180.421L115.247 202.754" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M103.865 181.734L111.309 180.421" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M70.8159 249.466H42.0159" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M42.0159 249.466V211.066" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M70.8157 211.066V249.466" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M46.8157 211.066V249.466" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M42.0159 211.066H70.8159" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M70.5512 300.112H41.7512" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M41.7512 300.112V261.712" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M70.5513 261.712V300.112" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M46.5513 261.712V300.112" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M41.7512 261.712H70.5512" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M111.504 224.669L111.832 226.53" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M110.738 225.763L112.599 225.435" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.346 227.184L113.851 227.095" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.346 227.184L110.083 231.844" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M122.246 225.615L121.741 225.703" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M122.246 225.615L126.907 228.878" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M110.083 231.844L112.35 244.707" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M126.907 228.878L129.175 241.74" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M112.351 244.707L116.817 243.919" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M129.175 241.74L124.708 242.528" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M148.921 281.801L149.249 279.94" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M150.016 281.035L148.155 280.707" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M148.05 278.808L147.546 278.719" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M148.051 278.808L152.711 275.544" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M139.15 277.238L139.655 277.327" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M139.15 277.239L135.887 272.578" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M152.711 275.544L154.979 262.682" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M135.887 272.578L138.155 259.716" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M154.979 262.682L150.512 261.895" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M138.155 259.716L142.621 260.504" stroke="#7D7D7D" stroke-width="0.453543" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M109.978 272.338C110.826 272.338 111.514 273.026 111.514 273.874C111.514 274.722 110.826 275.41 109.978 275.41C109.129 275.41 108.442 274.722 108.442 273.874C108.442 273.026 109.129 272.338 109.978 272.338Z" fill="#7D7D7D"/>
<path d="M104.977 300.7C105.825 300.7 106.513 301.388 106.513 302.236C106.513 303.085 105.825 303.772 104.977 303.772C104.128 303.772 103.441 303.085 103.441 302.236C103.441 301.388 104.128 300.7 104.977 300.7Z" fill="#7D7D7D"/>
<path d="M112.057 204.889C112.905 204.889 113.593 205.577 113.593 206.425C113.593 207.274 112.905 207.961 112.057 207.961C111.208 207.961 110.521 207.274 110.521 206.425C110.521 205.577 111.208 204.889 112.057 204.889Z" fill="#7D7D7D"/>
<path d="M107.055 176.527C107.904 176.527 108.591 177.215 108.591 178.063C108.591 178.911 107.904 179.599 107.055 179.599C106.207 179.599 105.519 178.911 105.519 178.063C105.519 177.215 106.207 176.527 107.055 176.527Z" fill="#7D7D7D"/>
<path d="M56.4157 236.994C58.0021 236.994 59.2881 238.28 59.2881 239.866C59.2881 241.453 58.0021 242.739 56.4157 242.739C54.8293 242.739 53.5432 241.453 53.5432 239.866C53.5432 238.28 54.8293 236.994 56.4157 236.994Z" fill="#7D7D7D"/>
<path d="M56.4157 217.794C58.0021 217.794 59.2881 219.08 59.2881 220.666C59.2881 222.253 58.0021 223.539 56.4157 223.539C54.8293 223.539 53.5432 222.253 53.5432 220.666C53.5432 219.08 54.8293 217.794 56.4157 217.794Z" fill="#7D7D7D"/>
<path d="M56.1515 287.639C57.7379 287.639 59.024 288.925 59.024 290.512C59.024 292.098 57.7379 293.384 56.1515 293.384C54.5651 293.384 53.2791 292.098 53.2791 290.512C53.2791 288.925 54.5651 287.639 56.1515 287.639Z" fill="#7D7D7D"/>
<path d="M56.1515 268.439C57.7379 268.439 59.024 269.725 59.024 271.312C59.024 272.898 57.7379 274.184 56.1515 274.184C54.5651 274.184 53.2791 272.898 53.2791 271.312C53.2791 269.725 54.5651 268.439 56.1515 268.439Z" fill="#7D7D7D"/>
<path d="M160.542 243.117C162.838 243.117 164.699 244.978 164.699 247.274C164.699 249.57 162.838 251.432 160.542 251.432C158.246 251.432 156.385 249.57 156.385 247.274C156.385 244.978 158.246 243.117 160.542 243.117Z" fill="#7D7D7D"/>
<path d="M139.414 175.765C141.71 175.765 143.572 177.627 143.572 179.923C143.572 182.219 141.71 184.08 139.414 184.08C137.118 184.08 135.257 182.219 135.257 179.923C135.257 177.627 137.118 175.765 139.414 175.765Z" fill="#7D7D7D"/>
<path d="M140.359 301.057C142.655 301.057 144.517 302.918 144.517 305.214C144.517 307.51 142.655 309.372 140.359 309.372C138.063 309.372 136.202 307.51 136.202 305.214C136.202 302.918 138.063 301.057 140.359 301.057Z" fill="#7D7D7D"/>
<path d="M109.978 271.234C111.436 271.234 112.618 272.416 112.618 273.874C112.618 275.332 111.436 276.514 109.978 276.514C108.52 276.514 107.338 275.332 107.338 273.874C107.338 272.416 108.52 271.234 109.978 271.234Z" fill="#7D7D7D"/>
<path d="M104.977 299.596C106.435 299.596 107.617 300.778 107.617 302.236C107.617 303.694 106.435 304.876 104.977 304.876C103.519 304.876 102.337 303.694 102.337 302.236C102.337 300.778 103.519 299.596 104.977 299.596Z" fill="#7D7D7D"/>
<path d="M112.057 203.785C113.515 203.785 114.697 204.967 114.697 206.425C114.697 207.883 113.515 209.065 112.057 209.065C110.599 209.065 109.417 207.883 109.417 206.425C109.417 204.967 110.599 203.785 112.057 203.785Z" fill="#7D7D7D"/>
<path d="M107.056 175.423C108.514 175.423 109.696 176.605 109.696 178.063C109.696 179.521 108.514 180.703 107.056 180.703C105.598 180.703 104.416 179.521 104.416 178.063C104.416 176.605 105.598 175.423 107.056 175.423Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.7468 245.535H62.0854V234.197H50.7468V245.535Z" fill="#7D7D7D"/>
<path d="M56.4161 214.997C59.5472 214.997 62.0854 217.535 62.0854 220.666C62.0854 223.797 59.5472 226.336 56.4161 226.336C53.2851 226.336 50.7468 223.797 50.7468 220.666C50.7468 217.535 53.2851 214.997 56.4161 214.997Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.4822 296.181H61.8208V284.843H50.4822V296.181Z" fill="#7D7D7D"/>
<path d="M56.1515 265.642C59.2825 265.642 61.8208 268.181 61.8208 271.312C61.8208 274.443 59.2825 276.981 56.1515 276.981C53.0204 276.981 50.4822 274.443 50.4822 271.312C50.4822 268.181 53.0204 265.642 56.1515 265.642Z" fill="#7D7D7D"/>
<path d="M160.542 240.093C164.508 240.093 167.723 243.308 167.723 247.274C167.723 251.24 164.508 254.455 160.542 254.455C156.576 254.455 153.361 251.24 153.361 247.274C153.361 243.308 156.576 240.093 160.542 240.093Z" fill="#7D7D7D"/>
<path d="M139.414 172.742C143.38 172.742 146.595 175.957 146.595 179.923C146.595 183.889 143.38 187.104 139.414 187.104C135.448 187.104 132.233 183.889 132.233 179.923C132.233 175.957 135.448 172.742 139.414 172.742Z" fill="#7D7D7D"/>
<path d="M140.359 298.033C144.325 298.033 147.54 301.248 147.54 305.214C147.54 309.18 144.325 312.395 140.359 312.395C136.393 312.395 133.178 309.18 133.178 305.214C133.178 301.248 136.393 298.033 140.359 298.033Z" fill="#7D7D7D"/>
<path d="M109.978 272.338C110.826 272.338 111.514 273.026 111.514 273.874C111.514 274.722 110.826 275.41 109.978 275.41C109.129 275.41 108.442 274.722 108.442 273.874C108.442 273.026 109.129 272.338 109.978 272.338Z" fill="#7D7D7D"/>
<path d="M104.977 300.7C105.825 300.7 106.513 301.388 106.513 302.236C106.513 303.085 105.825 303.772 104.977 303.772C104.128 303.772 103.441 303.085 103.441 302.236C103.441 301.388 104.128 300.7 104.977 300.7Z" fill="#7D7D7D"/>
<path d="M112.057 204.889C112.905 204.889 113.593 205.577 113.593 206.425C113.593 207.274 112.905 207.961 112.057 207.961C111.208 207.961 110.521 207.274 110.521 206.425C110.521 205.577 111.208 204.889 112.057 204.889Z" fill="#7D7D7D"/>
<path d="M107.055 176.527C107.904 176.527 108.591 177.215 108.591 178.063C108.591 178.911 107.904 179.599 107.055 179.599C106.207 179.599 105.519 178.911 105.519 178.063C105.519 177.215 106.207 176.527 107.055 176.527Z" fill="#7D7D7D"/>
<path d="M56.4157 236.994C58.0021 236.994 59.2881 238.28 59.2881 239.866C59.2881 241.453 58.0021 242.739 56.4157 242.739C54.8293 242.739 53.5432 241.453 53.5432 239.866C53.5432 238.28 54.8293 236.994 56.4157 236.994Z" fill="#7D7D7D"/>
<path d="M56.4157 217.794C58.0021 217.794 59.2881 219.08 59.2881 220.666C59.2881 222.253 58.0021 223.539 56.4157 223.539C54.8293 223.539 53.5432 222.253 53.5432 220.666C53.5432 219.08 54.8293 217.794 56.4157 217.794Z" fill="#7D7D7D"/>
<path d="M56.1515 287.639C57.7379 287.639 59.024 288.925 59.024 290.512C59.024 292.098 57.7379 293.384 56.1515 293.384C54.5651 293.384 53.2791 292.098 53.2791 290.512C53.2791 288.925 54.5651 287.639 56.1515 287.639Z" fill="#7D7D7D"/>
<path d="M56.1515 268.439C57.7379 268.439 59.024 269.725 59.024 271.312C59.024 272.898 57.7379 274.184 56.1515 274.184C54.5651 274.184 53.2791 272.898 53.2791 271.312C53.2791 269.725 54.5651 268.439 56.1515 268.439Z" fill="#7D7D7D"/>
<path d="M160.542 243.117C162.838 243.117 164.699 244.978 164.699 247.274C164.699 249.57 162.838 251.432 160.542 251.432C158.246 251.432 156.385 249.57 156.385 247.274C156.385 244.978 158.246 243.117 160.542 243.117Z" fill="#7D7D7D"/>
<path d="M139.414 175.765C141.71 175.765 143.572 177.627 143.572 179.923C143.572 182.219 141.71 184.08 139.414 184.08C137.118 184.08 135.257 182.219 135.257 179.923C135.257 177.627 137.118 175.765 139.414 175.765Z" fill="#7D7D7D"/>
<path d="M140.359 301.057C142.655 301.057 144.517 302.918 144.517 305.214C144.517 307.51 142.655 309.372 140.359 309.372C138.063 309.372 136.202 307.51 136.202 305.214C136.202 302.918 138.063 301.057 140.359 301.057Z" fill="#7D7D7D"/>
<path d="M109.978 272.338C110.826 272.338 111.514 273.026 111.514 273.874C111.514 274.722 110.826 275.41 109.978 275.41C109.129 275.41 108.442 274.722 108.442 273.874C108.442 273.026 109.129 272.338 109.978 272.338Z" fill="#7D7D7D"/>
<path d="M104.977 300.7C105.825 300.7 106.513 301.388 106.513 302.236C106.513 303.085 105.825 303.772 104.977 303.772C104.128 303.772 103.441 303.085 103.441 302.236C103.441 301.388 104.128 300.7 104.977 300.7Z" fill="#7D7D7D"/>
<path d="M112.057 204.889C112.905 204.889 113.593 205.577 113.593 206.425C113.593 207.274 112.905 207.961 112.057 207.961C111.208 207.961 110.521 207.274 110.521 206.425C110.521 205.577 111.208 204.889 112.057 204.889Z" fill="#7D7D7D"/>
<path d="M107.055 176.527C107.904 176.527 108.591 177.215 108.591 178.063C108.591 178.911 107.904 179.599 107.055 179.599C106.207 179.599 105.519 178.911 105.519 178.063C105.519 177.215 106.207 176.527 107.055 176.527Z" fill="#7D7D7D"/>
<path d="M56.4157 236.994C58.0021 236.994 59.2881 238.28 59.2881 239.866C59.2881 241.453 58.0021 242.739 56.4157 242.739C54.8293 242.739 53.5432 241.453 53.5432 239.866C53.5432 238.28 54.8293 236.994 56.4157 236.994Z" fill="#7D7D7D"/>
<path d="M56.4157 217.794C58.0021 217.794 59.2881 219.08 59.2881 220.666C59.2881 222.253 58.0021 223.539 56.4157 223.539C54.8293 223.539 53.5432 222.253 53.5432 220.666C53.5432 219.08 54.8293 217.794 56.4157 217.794Z" fill="#7D7D7D"/>
<path d="M56.1515 287.639C57.7379 287.639 59.024 288.925 59.024 290.512C59.024 292.098 57.7379 293.384 56.1515 293.384C54.5651 293.384 53.2791 292.098 53.2791 290.512C53.2791 288.925 54.5651 287.639 56.1515 287.639Z" fill="#7D7D7D"/>
<path d="M56.1515 268.439C57.7379 268.439 59.024 269.725 59.024 271.312C59.024 272.898 57.7379 274.184 56.1515 274.184C54.5651 274.184 53.2791 272.898 53.2791 271.312C53.2791 269.725 54.5651 268.439 56.1515 268.439Z" fill="#7D7D7D"/>
<path d="M160.542 243.117C162.838 243.117 164.699 244.978 164.699 247.274C164.699 249.57 162.838 251.432 160.542 251.432C158.246 251.432 156.385 249.57 156.385 247.274C156.385 244.978 158.246 243.117 160.542 243.117Z" fill="#7D7D7D"/>
<path d="M139.414 175.765C141.71 175.765 143.572 177.627 143.572 179.923C143.572 182.219 141.71 184.08 139.414 184.08C137.118 184.08 135.257 182.219 135.257 179.923C135.257 177.627 137.118 175.765 139.414 175.765Z" fill="#7D7D7D"/>
<path d="M140.359 301.057C142.655 301.057 144.517 302.918 144.517 305.214C144.517 307.51 142.655 309.372 140.359 309.372C138.063 309.372 136.202 307.51 136.202 305.214C136.202 302.918 138.063 301.057 140.359 301.057Z" fill="#7D7D7D"/>
<path d="M109.978 272.338C110.826 272.338 111.514 273.026 111.514 273.874C111.514 274.722 110.826 275.41 109.978 275.41C109.129 275.41 108.442 274.722 108.442 273.874C108.442 273.026 109.129 272.338 109.978 272.338Z" fill="#7D7D7D"/>
<path d="M104.977 300.7C105.825 300.7 106.513 301.388 106.513 302.236C106.513 303.085 105.825 303.772 104.977 303.772C104.128 303.772 103.441 303.085 103.441 302.236C103.441 301.388 104.128 300.7 104.977 300.7Z" fill="#7D7D7D"/>
<path d="M112.057 204.889C112.905 204.889 113.593 205.577 113.593 206.425C113.593 207.274 112.905 207.961 112.057 207.961C111.208 207.961 110.521 207.274 110.521 206.425C110.521 205.577 111.208 204.889 112.057 204.889Z" fill="#7D7D7D"/>
<path d="M107.055 176.527C107.904 176.527 108.591 177.215 108.591 178.063C108.591 178.911 107.904 179.599 107.055 179.599C106.207 179.599 105.519 178.911 105.519 178.063C105.519 177.215 106.207 176.527 107.055 176.527Z" fill="#7D7D7D"/>
<path d="M56.4157 236.994C58.0021 236.994 59.2881 238.28 59.2881 239.866C59.2881 241.453 58.0021 242.739 56.4157 242.739C54.8293 242.739 53.5432 241.453 53.5432 239.866C53.5432 238.28 54.8293 236.994 56.4157 236.994Z" fill="#7D7D7D"/>
<path d="M56.4157 217.794C58.0021 217.794 59.2881 219.08 59.2881 220.666C59.2881 222.253 58.0021 223.539 56.4157 223.539C54.8293 223.539 53.5432 222.253 53.5432 220.666C53.5432 219.08 54.8293 217.794 56.4157 217.794Z" fill="#7D7D7D"/>
<path d="M56.1515 287.639C57.7379 287.639 59.024 288.925 59.024 290.512C59.024 292.098 57.7379 293.384 56.1515 293.384C54.5651 293.384 53.2791 292.098 53.2791 290.512C53.2791 288.925 54.5651 287.639 56.1515 287.639Z" fill="#7D7D7D"/>
<path d="M56.1515 268.439C57.7379 268.439 59.024 269.725 59.024 271.312C59.024 272.898 57.7379 274.184 56.1515 274.184C54.5651 274.184 53.2791 272.898 53.2791 271.312C53.2791 269.725 54.5651 268.439 56.1515 268.439Z" fill="#7D7D7D"/>
<path d="M160.542 243.117C162.838 243.117 164.699 244.978 164.699 247.274C164.699 249.57 162.838 251.432 160.542 251.432C158.246 251.432 156.385 249.57 156.385 247.274C156.385 244.978 158.246 243.117 160.542 243.117Z" fill="#7D7D7D"/>
<path d="M139.414 175.765C141.71 175.765 143.572 177.627 143.572 179.923C143.572 182.219 141.71 184.08 139.414 184.08C137.118 184.08 135.257 182.219 135.257 179.923C135.257 177.627 137.118 175.765 139.414 175.765Z" fill="#7D7D7D"/>
<path d="M140.359 301.057C142.655 301.057 144.517 302.918 144.517 305.214C144.517 307.51 142.655 309.372 140.359 309.372C138.063 309.372 136.202 307.51 136.202 305.214C136.202 302.918 138.063 301.057 140.359 301.057Z" fill="#7D7D7D"/>
<path d="M109.978 271.234C111.436 271.234 112.618 272.416 112.618 273.874C112.618 275.332 111.436 276.514 109.978 276.514C108.52 276.514 107.338 275.332 107.338 273.874C107.338 272.416 108.52 271.234 109.978 271.234Z" fill="#7D7D7D"/>
<path d="M104.977 299.596C106.435 299.596 107.617 300.778 107.617 302.236C107.617 303.694 106.435 304.876 104.977 304.876C103.519 304.876 102.337 303.694 102.337 302.236C102.337 300.778 103.519 299.596 104.977 299.596Z" fill="#7D7D7D"/>
<path d="M112.057 203.785C113.515 203.785 114.697 204.967 114.697 206.425C114.697 207.883 113.515 209.065 112.057 209.065C110.599 209.065 109.417 207.883 109.417 206.425C109.417 204.967 110.599 203.785 112.057 203.785Z" fill="#7D7D7D"/>
<path d="M107.056 175.423C108.514 175.423 109.696 176.605 109.696 178.063C109.696 179.521 108.514 180.703 107.056 180.703C105.598 180.703 104.416 179.521 104.416 178.063C104.416 176.605 105.598 175.423 107.056 175.423Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.7468 245.535H62.0854V234.197H50.7468V245.535Z" fill="#7D7D7D"/>
<path d="M56.4161 214.997C59.5472 214.997 62.0854 217.535 62.0854 220.666C62.0854 223.797 59.5472 226.336 56.4161 226.336C53.2851 226.336 50.7468 223.797 50.7468 220.666C50.7468 217.535 53.2851 214.997 56.4161 214.997Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.4822 296.181H61.8208V284.843H50.4822V296.181Z" fill="#7D7D7D"/>
<path d="M56.1515 265.642C59.2825 265.642 61.8208 268.181 61.8208 271.312C61.8208 274.443 59.2825 276.981 56.1515 276.981C53.0204 276.981 50.4822 274.443 50.4822 271.312C50.4822 268.181 53.0204 265.642 56.1515 265.642Z" fill="#7D7D7D"/>
<path d="M160.542 240.093C164.508 240.093 167.723 243.308 167.723 247.274C167.723 251.24 164.508 254.455 160.542 254.455C156.576 254.455 153.361 251.24 153.361 247.274C153.361 243.308 156.576 240.093 160.542 240.093Z" fill="#7D7D7D"/>
<path d="M139.414 172.742C143.38 172.742 146.596 175.957 146.596 179.923C146.596 183.889 143.38 187.104 139.414 187.104C135.448 187.104 132.233 183.889 132.233 179.923C132.233 175.957 135.448 172.742 139.414 172.742Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M115.198 223.634L114.854 223.767L114.588 224.022L114.439 224.36L114.431 224.728L115.81 232.545L115.943 232.888L116.198 233.155L116.536 233.303L116.904 233.311L120.999 232.59L121.342 232.456L121.609 232.201L121.757 231.863L121.765 231.495L120.387 223.678L120.253 223.335L119.998 223.069L119.661 222.92L119.292 222.912L115.198 223.634Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M117.56 237.033L117.217 237.167L116.951 237.422L116.802 237.76L116.794 238.128L118.172 245.944L118.306 246.288L118.561 246.554L118.898 246.703L119.267 246.711L123.361 245.989L123.705 245.855L123.971 245.601L124.12 245.263L124.128 244.895L122.749 237.078L122.616 236.734L122.361 236.468L122.023 236.319L121.655 236.312L117.56 237.033Z" fill="#7D7D7D"/>
<path d="M140.359 298.033C144.325 298.033 147.54 301.248 147.54 305.214C147.54 309.18 144.325 312.395 140.359 312.395C136.393 312.395 133.178 309.18 133.178 305.214C133.178 301.248 136.393 298.033 140.359 298.033Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M145.096 281.51L145.465 281.503L145.802 281.354L146.057 281.088L146.191 280.744L147.569 272.928L147.561 272.559L147.413 272.222L147.146 271.967L146.803 271.833L142.708 271.111L142.34 271.119L142.002 271.268L141.748 271.534L141.614 271.878L140.236 279.694L140.244 280.063L140.392 280.4L140.658 280.655L141.002 280.789L145.096 281.51Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M147.459 268.111L147.828 268.103L148.165 267.954L148.42 267.688L148.554 267.344L149.932 259.528L149.924 259.16L149.775 258.822L149.509 258.567L149.166 258.433L145.071 257.712L144.702 257.72L144.365 257.868L144.11 258.135L143.977 258.478L142.598 266.294L142.606 266.663L142.755 267.001L143.021 267.255L143.365 267.389L147.459 268.111Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M115.198 223.634L114.854 223.767L114.588 224.022L114.439 224.36L114.431 224.728L115.81 232.545L115.943 232.888L116.198 233.155L116.536 233.303L116.904 233.311L120.999 232.589L121.342 232.456L121.609 232.201L121.757 231.863L121.765 231.494L120.387 223.678L120.253 223.334L119.998 223.068L119.661 222.92L119.292 222.912L115.198 223.634Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M117.56 237.033L117.217 237.167L116.951 237.422L116.802 237.759L116.794 238.128L118.172 245.944L118.306 246.288L118.561 246.554L118.898 246.703L119.267 246.711L123.361 245.989L123.705 245.855L123.971 245.6L124.12 245.263L124.128 244.894L122.749 237.078L122.616 236.734L122.361 236.468L122.023 236.319L121.655 236.311L117.56 237.033Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M145.096 281.51L145.465 281.503L145.802 281.354L146.057 281.088L146.191 280.744L147.569 272.928L147.561 272.559L147.413 272.222L147.146 271.967L146.803 271.833L142.708 271.111L142.34 271.119L142.002 271.268L141.748 271.534L141.614 271.878L140.236 279.694L140.244 280.063L140.392 280.4L140.658 280.655L141.002 280.789L145.096 281.51Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M147.459 268.111L147.828 268.103L148.165 267.954L148.42 267.688L148.554 267.344L149.932 259.528L149.924 259.16L149.775 258.822L149.509 258.567L149.166 258.433L145.071 257.712L144.702 257.72L144.365 257.868L144.11 258.135L143.977 258.478L142.598 266.294L142.606 266.663L142.755 267.001L143.021 267.255L143.365 267.389L147.459 268.111Z" fill="#7D7D7D"/>
<path d="M105.949 269.518L99.7002 304.952" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M115.254 271.158L105.949 269.518" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M99.7002 304.952L109.005 306.593" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M109.006 306.593L115.254 271.158" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M117.333 209.141L111.084 173.707" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M108.027 210.782L117.333 209.141" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M111.084 173.707L101.779 175.347" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M101.779 175.347L108.027 210.782" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M71.5338 250.109H41.2976" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M71.5337 250.109V210.424" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M41.2976 210.424V250.109" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M41.2976 210.424H71.5338" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M71.2692 300.754H41.033" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M71.2693 300.754V261.069" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M41.033 261.069V300.754" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M41.033 261.069H71.2692" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M160.542 239.148C165.03 239.148 168.668 242.786 168.668 247.274C168.668 251.762 165.03 255.4 160.542 255.4C156.054 255.4 152.416 251.762 152.416 247.274C152.416 242.786 156.054 239.148 160.542 239.148Z" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M139.414 171.797C143.902 171.797 147.54 175.435 147.54 179.923C147.54 184.411 143.902 188.049 139.414 188.049C134.926 188.049 131.288 184.411 131.288 179.923C131.288 175.435 134.926 171.797 139.414 171.797Z" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.172 223.031L120.989 221.653" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M120.989 221.653L121.612 225.189" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.052 226.699L113.796 226.568" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.051 226.699L109.526 231.734" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.796 226.568L113.172 223.031" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M121.612 225.189L122.357 225.058" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M122.357 225.058L127.392 228.584" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M109.526 231.734L111.921 245.32" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M127.392 228.584L129.788 242.169" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M111.921 245.32L116.946 244.433" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M116.946 244.433L117.57 247.969" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M124.763 243.055L129.788 242.169" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M117.57 247.969L125.386 246.591" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M125.386 246.591L124.763 243.055" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M140.359 297.088C144.847 297.088 148.485 300.726 148.485 305.214C148.485 309.702 144.847 313.34 140.359 313.34C135.871 313.34 132.233 309.702 132.233 305.214C132.233 300.726 135.871 297.088 140.359 297.088Z" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M146.793 282.769L138.976 281.391" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M138.976 281.391L139.6 277.855" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M148.161 279.365L147.417 279.233" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M148.161 279.365L153.196 275.839" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M147.417 279.233L146.793 282.769" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M139.6 277.855L138.855 277.724" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M138.855 277.724L135.33 272.689" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M153.196 275.839L155.592 262.253" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M135.33 272.689L137.725 259.103" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M155.592 262.253L150.567 261.367" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M150.567 261.367L151.19 257.831" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M142.75 259.989L137.725 259.103" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M151.19 257.831L143.374 256.453" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M143.374 256.453L142.75 259.989" stroke="#7D7D7D" stroke-width="0.188976" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M109.978 272.338C110.826 272.338 111.514 273.026 111.514 273.874C111.514 274.722 110.826 275.41 109.978 275.41C109.129 275.41 108.442 274.722 108.442 273.874C108.442 273.026 109.129 272.338 109.978 272.338Z" fill="#7D7D7D"/>
<path d="M104.977 300.7C105.825 300.7 106.513 301.388 106.513 302.236C106.513 303.085 105.825 303.772 104.977 303.772C104.128 303.772 103.441 303.085 103.441 302.236C103.441 301.388 104.128 300.7 104.977 300.7Z" fill="#7D7D7D"/>
<path d="M112.057 204.889C112.905 204.889 113.593 205.577 113.593 206.425C113.593 207.274 112.905 207.961 112.057 207.961C111.208 207.961 110.521 207.274 110.521 206.425C110.521 205.577 111.208 204.889 112.057 204.889Z" fill="#7D7D7D"/>
<path d="M107.055 176.527C107.904 176.527 108.591 177.215 108.591 178.063C108.591 178.911 107.904 179.599 107.055 179.599C106.207 179.599 105.519 178.911 105.519 178.063C105.519 177.215 106.207 176.527 107.055 176.527Z" fill="#7D7D7D"/>
<path d="M56.4157 236.994C58.0021 236.994 59.2881 238.28 59.2881 239.866C59.2881 241.453 58.0021 242.739 56.4157 242.739C54.8293 242.739 53.5432 241.453 53.5432 239.866C53.5432 238.28 54.8293 236.994 56.4157 236.994Z" fill="#7D7D7D"/>
<path d="M56.4157 217.794C58.0021 217.794 59.2881 219.08 59.2881 220.666C59.2881 222.253 58.0021 223.539 56.4157 223.539C54.8293 223.539 53.5432 222.253 53.5432 220.666C53.5432 219.08 54.8293 217.794 56.4157 217.794Z" fill="#7D7D7D"/>
<path d="M56.1515 287.639C57.7379 287.639 59.024 288.925 59.024 290.512C59.024 292.098 57.7379 293.384 56.1515 293.384C54.5651 293.384 53.2791 292.098 53.2791 290.512C53.2791 288.925 54.5651 287.639 56.1515 287.639Z" fill="#7D7D7D"/>
<path d="M56.1515 268.439C57.7379 268.439 59.024 269.725 59.024 271.312C59.024 272.898 57.7379 274.184 56.1515 274.184C54.5651 274.184 53.2791 272.898 53.2791 271.312C53.2791 269.725 54.5651 268.439 56.1515 268.439Z" fill="#7D7D7D"/>
<path d="M160.542 243.117C162.838 243.117 164.699 244.978 164.699 247.274C164.699 249.57 162.838 251.432 160.542 251.432C158.246 251.432 156.385 249.57 156.385 247.274C156.385 244.978 158.246 243.117 160.542 243.117Z" fill="#7D7D7D"/>
<path d="M139.414 175.765C141.71 175.765 143.572 177.627 143.572 179.923C143.572 182.219 141.71 184.08 139.414 184.08C137.118 184.08 135.257 182.219 135.257 179.923C135.257 177.627 137.118 175.765 139.414 175.765Z" fill="#7D7D7D"/>
<path d="M140.359 301.057C142.655 301.057 144.517 302.918 144.517 305.214C144.517 307.51 142.655 309.372 140.359 309.372C138.063 309.372 136.202 307.51 136.202 305.214C136.202 302.918 138.063 301.057 140.359 301.057Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M37.8331 224.468L38.0182 224.42L38.1891 224.341L38.3463 224.231L38.4298 224.153L38.5534 224.011L38.6551 223.843L38.7088 223.708L38.7485 223.524L38.7719 223.337L38.7825 223.152L38.7843 223.028V222.117H34.7671V222.717L34.7709 222.907L34.7716 222.919H35.2913V222.711H36.4875V222.897L36.4781 223.017H37.0118V222.711H38.1936V223.085L38.1838 223.276L38.1494 223.459L38.0742 223.635L38.0375 223.686L37.897 223.81L37.7159 223.88L37.6063 223.889L37.4143 223.857L37.2491 223.76L37.1818 223.694L37.0851 223.529L37.0359 223.341L37.0148 223.134L37.0118 223.017H36.4781L36.4728 223.086L36.4153 223.268L36.3345 223.381L36.1723 223.486L35.989 223.529L35.882 223.535L35.6844 223.513L35.5143 223.438L35.4417 223.377L35.339 223.212L35.2966 223.027L35.2913 222.919H34.7716L34.7845 223.097L34.8151 223.294L34.8298 223.356L34.8941 223.539L34.9958 223.708L35.04 223.762L35.1772 223.887L35.3393 223.99L35.4225 224.029L35.5967 224.09L35.7872 224.124L35.8903 224.129L36.0983 224.108L36.2895 224.045L36.4641 223.939L36.6036 223.812L36.6225 223.791L36.6965 223.961L36.8096 224.124L36.9547 224.261L37.0046 224.296L37.1826 224.395L37.3776 224.457L37.5677 224.482L37.6343 224.484L37.8331 224.468Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.7846 226.981H38.5106L38.6402 226.821L38.7381 226.656L38.8111 226.461L38.8424 226.26L38.8436 226.208L38.8303 226.019L38.7812 225.815L38.6962 225.627L38.5748 225.457L38.466 225.346L38.3152 225.231L38.1508 225.14L37.9727 225.073L37.7819 225.029L37.5771 225.009L37.506 225.008L37.3004 225.02L37.108 225.056L36.9288 225.115L36.7633 225.198L36.6106 225.305L36.5626 225.346L36.4345 225.479L36.3181 225.649L36.2383 225.835L36.1941 226.038L36.1851 226.193L36.1953 226.302H36.7093L36.7361 226.108L36.8166 225.937L36.9364 225.802L37.0903 225.697L37.2652 225.631L37.4614 225.603L37.5034 225.603L37.6957 225.618L37.8843 225.671L38.0469 225.762L38.0903 225.797L38.2207 225.945L38.297 226.118L38.3193 226.297L38.2978 226.487L38.2241 226.667L38.0979 226.819L37.9425 226.923L37.7634 226.989L37.5596 227.016L37.5162 227.017L37.3272 227.001L37.1401 226.947L36.9776 226.854L36.9337 226.819L36.806 226.668L36.7312 226.489L36.7093 226.302H36.1953L36.2021 226.38L36.2535 226.56L36.3393 226.73L36.4595 226.892L36.5434 226.981H36.244V227.548H38.7846V226.981Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.7756 228.893H38.7844V228.298H36.7756V228.062H36.2514V228.298H35.2986V228.893H36.2514V229.361H36.7756V228.893Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.7756 230.336H38.7844V229.742H36.7756V229.505H36.2514V229.742H35.2986V230.336H36.2514V230.805H36.7756V230.336Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.2717 233.458L38.4184 233.343L38.4448 233.319L38.5775 233.179L38.6719 233.047L38.7566 232.875L38.802 232.732L38.8345 232.545L38.8436 232.367L38.8311 232.163L38.7929 231.974L38.7162 231.774L38.6047 231.595L38.4819 231.458L38.3367 231.341L38.1749 231.249L37.997 231.181L37.8019 231.137L37.5903 231.117L37.5162 231.115L37.3004 231.127L37.1005 231.162L36.9164 231.22L36.7486 231.302L36.5728 231.427L36.5498 231.447L36.4077 231.604L36.3003 231.782L36.2281 231.98L36.1941 232.167L36.1851 232.334L36.1862 232.349H36.7093L36.7376 232.166L36.7437 232.148L36.8355 231.983L36.8397 231.979L36.9791 231.854L36.9901 231.848L37.1621 231.772L37.1893 231.764V232.938L37.0025 232.868L36.8449 232.747L36.7474 232.584L36.71 232.377L36.7093 232.349H36.1862L36.1975 232.535L36.2353 232.719L36.3109 232.914L36.4209 233.086L36.5422 233.216L36.71 233.342L36.9043 233.436L37.0918 233.492L37.2985 233.526L37.4856 233.537L37.5245 233.538H37.6621V231.725L37.8556 231.761L38.0328 231.84L38.1428 231.929L38.2574 232.091L38.311 232.27L38.3193 232.388L38.297 232.576L38.2188 232.749L38.0861 232.888L37.9263 233.013L37.8458 233.068L38.1126 233.561L38.2717 233.458Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.244 234.158V234.753H36.4859L36.3566 234.886L36.2516 235.037L36.1945 235.213L36.1851 235.337L36.2089 235.527L36.2735 235.708L36.3302 235.817L36.8941 235.551L36.8053 235.388L36.7758 235.228L36.8102 235.043L36.9326 234.887L37.1133 234.799L37.3223 234.76L37.4893 234.753H38.7846V234.158H36.244Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.3 237.176L36.2439 236.044V236.718L37.696 237.488L36.2439 238.206V238.862L40.1433 236.857V236.194L38.3 237.176Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M37.5686 275.114L37.7538 275.066L37.9247 274.987L38.0819 274.876L38.1654 274.799L38.289 274.657L38.3907 274.489L38.4443 274.353L38.484 274.17L38.5075 273.982L38.518 273.798L38.5199 273.674V272.762H34.5027V273.363L34.5064 273.553L34.5072 273.565H35.0269V273.357H36.2231V273.542L36.2137 273.663H36.7477V273.357H37.9292V273.731L37.9193 273.922L37.885 274.104L37.8098 274.28L37.7731 274.332L37.6325 274.456L37.4515 274.525L37.3418 274.535L37.1498 274.503L36.9847 274.406L36.9174 274.34L36.8207 274.174L36.7715 273.986L36.7504 273.78L36.7477 273.663H36.2137L36.2084 273.732L36.1509 273.913L36.07 274.026L35.9079 274.132L35.7246 274.175L35.6176 274.18L35.4199 274.158L35.2499 274.084L35.1773 274.022L35.0745 273.858L35.0322 273.673L35.0269 273.565H34.5072L34.52 273.742L34.5507 273.939L34.5654 274.001L34.6297 274.185L34.7314 274.354L34.7759 274.408L34.9127 274.533L35.0749 274.635L35.1581 274.674L35.3323 274.736L35.5228 274.77L35.6259 274.775L35.8338 274.754L36.0251 274.69L36.1997 274.585L36.3392 274.458L36.358 274.437L36.4321 274.606L36.5451 274.77L36.6903 274.906L36.7401 274.942L36.9182 275.041L37.1132 275.103L37.3033 275.128L37.3698 275.13L37.5686 275.114Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.52 277.626H38.246L38.3756 277.467L38.4735 277.302L38.5465 277.107L38.5778 276.905L38.5789 276.854L38.5657 276.665L38.5166 276.46L38.4315 276.273L38.3102 276.103L38.2014 275.992L38.0505 275.877L37.8861 275.786L37.7082 275.718L37.5173 275.675L37.3124 275.655L37.2414 275.654L37.0358 275.665L36.8434 275.701L36.6646 275.761L36.4987 275.844L36.346 275.951L36.298 275.992L36.1699 276.125L36.0535 276.295L35.9737 276.481L35.9295 276.684L35.9204 276.838L35.9306 276.948H36.4446L36.4715 276.754L36.552 276.582L36.6718 276.447L36.8256 276.342L37.0006 276.276L37.1968 276.249L37.2387 276.248L37.4311 276.263L37.6197 276.317L37.7822 276.407L37.8257 276.442L37.9561 276.591L38.0324 276.764L38.0547 276.943L38.0332 277.132L37.9595 277.313L37.8332 277.464L37.6779 277.568L37.4988 277.635L37.2951 277.662L37.2516 277.663L37.0626 277.647L36.8755 277.593L36.713 277.499L36.6692 277.464L36.5414 277.313L36.4666 277.135L36.4446 276.948H35.9306L35.9374 277.026L35.9888 277.205L36.0746 277.376L36.1948 277.538L36.2787 277.626H35.9794V278.194H38.52V277.626Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.5112 279.538H38.52V278.944H36.5112V278.707H35.987V278.944H35.0342V279.538H35.987V280.007H36.5112V279.538Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.5112 280.982H38.52V280.388H36.5112V280.151H35.987V280.388H35.0342V280.982H35.987V281.451H36.5112V280.982Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.0071 284.104L38.1537 283.988L38.1802 283.965L38.3129 283.825L38.4074 283.693L38.492 283.521L38.5373 283.378L38.5699 283.191L38.5789 283.013L38.5665 282.808L38.5283 282.62L38.4516 282.42L38.3401 282.24L38.2172 282.104L38.0721 281.987L37.9103 281.895L37.7323 281.827L37.5373 281.783L37.3257 281.763L37.2516 281.761L37.0358 281.773L36.8358 281.808L36.6517 281.866L36.484 281.948L36.3086 282.072L36.2851 282.093L36.143 282.25L36.0357 282.428L35.9635 282.626L35.9295 282.813L35.9204 282.98L35.9216 282.994H36.4446L36.473 282.812L36.479 282.794L36.5709 282.629L36.575 282.624L36.7145 282.5L36.7254 282.493L36.8974 282.418L36.9246 282.41V283.583L36.738 283.514L36.5803 283.393L36.4828 283.23L36.4454 283.023L36.4446 282.994H35.9216L35.9329 283.181L35.9707 283.365L36.0463 283.56L36.1563 283.732L36.2776 283.862L36.4454 283.987L36.6397 284.082L36.8271 284.138L37.0339 284.172L37.2209 284.183L37.2599 284.183H37.3975V282.371L37.591 282.406L37.7682 282.486L37.8786 282.575L37.9928 282.737L38.0464 282.916L38.0547 283.033L38.0328 283.222L37.9542 283.394L37.8215 283.534L37.6617 283.658L37.5812 283.714L37.848 284.207L38.0071 284.104Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M35.9794 284.804V285.398H36.2213L36.092 285.532L35.987 285.682L35.9299 285.859L35.9204 285.983L35.9442 286.173L36.0089 286.354L36.0656 286.463L36.6295 286.197L36.5407 286.034L36.5111 285.874L36.5456 285.688L36.668 285.532L36.8487 285.445L37.0577 285.406L37.2248 285.398H38.52V284.804H35.9794Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.0353 287.822L35.9792 286.69V287.364L37.4313 288.133L35.9792 288.852V289.508L39.8786 287.503V286.839L38.0353 287.822Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M156.702 236.872H158.356V236.738L158.351 236.544L158.336 236.359L158.306 236.16L158.263 235.974L158.25 235.93L158.181 235.751L158.089 235.578L157.974 235.411L157.901 235.321L157.757 235.172L157.604 235.043L157.442 234.934L157.27 234.845L157.088 234.775L156.897 234.726L156.697 234.696L156.488 234.686L156.282 234.695L156.084 234.724L155.894 234.772L155.711 234.839L155.535 234.925L155.367 235.031L155.207 235.155L155.054 235.299L154.914 235.456L154.793 235.621L154.69 235.795L154.606 235.975L154.541 236.163L154.494 236.359L154.466 236.563L154.457 236.774L154.466 236.99L154.495 237.197L154.542 237.396L154.609 237.587L154.694 237.769L154.799 237.943L154.922 238.109L155.064 238.266L155.22 238.41L155.384 238.535L155.557 238.64L155.737 238.727L155.926 238.794L156.123 238.842L156.328 238.871L156.541 238.88L156.743 238.871L156.939 238.843L157.128 238.796L157.312 238.73L157.415 238.684L157.583 238.586L157.751 238.465L157.894 238.343L158.036 238.204L158.177 238.047L157.747 237.637L157.62 237.79L157.487 237.923L157.311 238.06L157.125 238.165L156.928 238.238L156.72 238.28L156.547 238.29L156.353 238.279L156.17 238.247L155.963 238.181L155.77 238.083L155.592 237.955L155.482 237.852L155.358 237.713L155.237 237.532L155.146 237.335L155.085 237.123L155.058 236.935L155.051 236.777L155.063 236.574L155.098 236.382L155.157 236.202L155.239 236.034L155.344 235.877L155.473 235.732L155.53 235.677L155.701 235.541L155.877 235.433L156.059 235.353L156.245 235.302L156.438 235.278L156.503 235.277L156.693 235.291L156.875 235.333L157.048 235.403L157.213 235.502L157.303 235.571L157.443 235.706L157.567 235.875L157.651 236.058L157.697 236.255L157.7 236.281H156.702V236.872Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M159.091 234.745V239.035L161.986 235.971V238.762H162.58V234.501L159.685 237.558V234.745H159.091Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M164.606 238.758L164.804 238.746L165.013 238.72L165.198 238.684L165.337 238.643L165.52 238.574L165.693 238.484L165.859 238.375L166.015 238.244L166.159 238.097L166.285 237.939L166.39 237.769L166.477 237.588L166.544 237.396L166.592 237.193L166.621 236.979L166.631 236.754L166.621 236.527L166.591 236.312L166.541 236.108L166.47 235.915L166.38 235.734L166.27 235.563L166.14 235.403L165.989 235.254L165.826 235.123L165.659 235.013L165.488 234.924L165.314 234.857L165.131 234.808L164.944 234.776L164.73 234.756L164.526 234.747L164.378 234.745H163.555V235.336H164.149H164.423L164.618 235.341L164.817 235.36L165.012 235.396L165.1 235.421L165.28 235.495L165.447 235.593L165.589 235.705L165.741 235.864L165.862 236.041L165.951 236.234L166.008 236.445L166.032 236.634L166.036 236.753L166.026 236.951L165.993 237.136L165.926 237.343L165.827 237.533L165.698 237.705L165.594 237.81L165.432 237.933L165.243 238.03L165.066 238.092L164.87 238.136L164.656 238.163L164.471 238.171L164.423 238.171H164.149V235.336H163.555V238.762H164.389L164.606 238.758Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M137.055 168.923H138.236V168.398H137.055V168.923Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M138.875 171.411L139.978 168.633L141.097 171.411H141.756L139.966 167.101L138.216 171.411H138.875Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M128.584 228.63L128.464 227.951L127.94 228.379L128.105 229.318L132.091 228.615L131.988 228.03L128.584 228.63Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M130.377 232.964L130.606 232.941L130.785 232.914L131.018 232.866L131.237 232.806L131.44 232.735L131.628 232.652L131.802 232.557L131.96 232.451L132.103 232.334L132.232 232.205L132.355 232.052L132.469 231.864L132.545 231.67L132.583 231.471L132.584 231.267L132.57 231.163L132.516 230.962L132.429 230.779L132.308 230.613L132.153 230.464L131.999 230.353L131.895 230.293L131.686 230.199L131.508 230.142L131.318 230.101L131.117 230.076L130.905 230.067L130.682 230.074L130.448 230.098L130.266 230.126L130.038 230.173L129.824 230.232L129.625 230.303L129.439 230.385L129.269 230.479L129.113 230.585L128.937 230.733L128.843 230.831L128.719 230.985L128.622 231.142L128.539 231.335L128.495 231.533L128.488 231.738L128.493 231.784H129.02L129.021 231.591L129.094 231.405L129.218 231.245L129.348 231.129L129.501 231.021L129.673 230.927L129.862 230.846L130.069 230.779L130.255 230.733L130.373 230.711L130.576 230.68L130.771 230.663L130.956 230.66L131.166 230.672L131.363 230.704L131.518 230.745L131.705 230.821L131.871 230.931L131.996 231.086L132.053 231.25L132.052 231.443L131.979 231.63L131.854 231.79L131.723 231.907L131.568 232.015L131.394 232.11L131.202 232.191L130.991 232.259L130.801 232.305L130.681 232.329L130.48 232.358L130.289 232.374L130.071 232.377L129.866 232.36L129.673 232.324L129.552 232.289L129.366 232.213L129.201 232.102L129.077 231.947L129.02 231.784H128.493L128.504 231.877L128.558 232.078L128.645 232.262L128.767 232.427L128.921 232.575L129.076 232.684L129.18 232.743L129.387 232.837L129.565 232.895L129.752 232.936L129.95 232.961L130.159 232.971L130.377 232.964Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M130.454 234.131L131.881 233.879L132.093 233.859L132.293 233.885L132.46 233.982L132.559 234.151L132.579 234.232L132.581 234.418L132.502 234.588L132.335 234.714L132.153 234.779L132.044 234.803L130.616 235.055L130.72 235.64L132.161 235.386L132.355 235.343L132.542 235.28L132.664 235.222L132.822 235.103L132.947 234.953L132.97 234.916L133.054 234.743L133.103 234.557L133.117 234.356L133.1 234.17L133.095 234.142L133.05 233.959L132.973 233.772L132.866 233.611L132.732 233.474L132.713 233.459L132.558 233.356L132.384 233.286L132.32 233.271L132.127 233.255L131.934 233.27L131.791 233.291L130.35 233.545L130.454 234.131Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M130.342 238.601L130.102 237.238L131.033 237.073L131.268 238.408L131.85 238.305L131.614 236.971L133.505 236.637L133.402 236.052L129.417 236.755L129.76 238.704L130.342 238.601Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M137.175 294.517V294.989H138.297V296.112H138.77V294.989H139.951V294.517H138.77V293.394H138.297V294.517H137.175Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M140.882 296.702L141.985 293.924L143.104 296.702H143.763L141.972 292.393L140.223 296.702H140.882Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M133.173 272.183L133.053 272.862L133.693 272.639L133.858 271.7L129.873 270.997L129.77 271.583L133.173 272.183Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M132.97 270.241L133.162 270.211L133.345 270.166L133.561 270.086L133.683 270.026L133.852 269.924L133.997 269.81L134.14 269.657L134.25 269.485L134.327 269.296L134.359 269.159L134.377 268.952L134.358 268.749L134.3 268.552L134.205 268.361L134.097 268.206L134.02 268.114L133.857 267.955L133.71 267.84L133.548 267.737L133.371 267.646L133.178 267.566L132.97 267.497L132.748 267.44L132.57 267.405L132.335 267.371L132.109 267.352L131.893 267.349L131.688 267.363L131.493 267.392L131.308 267.437L131.133 267.499L130.968 267.576L130.8 267.678L130.629 267.816L130.491 267.972L130.387 268.146L130.317 268.337L130.294 268.439L130.276 268.647L130.282 268.709H130.807L130.81 268.535L130.877 268.353L131.009 268.203L131.181 268.095L131.345 268.03L131.527 267.982L131.723 267.952L131.931 267.942L132.153 267.95L132.347 267.972L132.468 267.99L132.666 268.031L132.852 268.081L133.058 268.154L133.244 268.24L133.413 268.339L133.515 268.413L133.663 268.549L133.781 268.71L133.845 268.897L133.842 269.07L133.775 269.251L133.643 269.401L133.472 269.509L133.31 269.573L133.129 269.622L132.936 269.652L132.73 269.664L132.513 269.656L132.322 269.635L132.204 269.616L132.002 269.575L131.814 269.525L131.639 269.465L131.445 269.381L131.271 269.283L131.14 269.192L130.99 269.057L130.872 268.897L130.807 268.709H130.282L130.295 268.849L130.352 269.046L130.447 269.239L130.554 269.396L130.631 269.488L130.794 269.648L130.943 269.763L131.107 269.866L131.288 269.958L131.483 270.039L131.695 270.108L131.923 270.166L132.104 270.202L132.335 270.236L132.556 270.254L132.767 270.255L132.97 270.241Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M133.298 266.375L131.87 266.123L131.664 266.07L131.485 265.976L131.362 265.828L131.326 265.636L131.335 265.552L131.396 265.378L131.529 265.245L131.729 265.183L131.922 265.184L132.033 265.199L133.461 265.451L133.564 264.865L132.123 264.611L131.925 264.585L131.728 264.58L131.594 264.593L131.405 264.651L131.237 264.749L131.201 264.776L131.064 264.91L130.954 265.068L130.872 265.252L130.824 265.433L130.819 265.46L130.799 265.648L130.808 265.85L130.853 266.038L130.932 266.212L130.944 266.233L131.055 266.383L131.195 266.508L131.249 266.544L131.425 266.625L131.612 266.677L131.754 266.706L133.194 266.96L133.298 266.375Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M134.931 262.212L134.691 263.576L133.76 263.412L133.995 262.077L133.414 261.975L133.178 263.309L131.287 262.976L131.184 263.561L135.17 264.264L135.513 262.315L134.931 262.212Z" fill="#7D7D7D"/>
<path d="M70.5894 249.164H42.2429" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M42.2429 249.164V211.368" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M46.7783 248.975V211.557" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M70.5894 211.368V249.164" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M42.2429 211.369H70.5894" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M70.3247 299.809H41.9783" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M41.9783 299.809V262.014" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M46.5137 299.62V262.203" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M70.3247 262.014V299.809" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M41.9783 262.014H70.3247" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.588 227.563L122.149 226.054" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.588 227.563L110.522 231.942" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M122.149 226.054L126.527 229.12" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M114.524 229.606L114.787 231.095" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.911 230.482L115.4 230.219" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M110.522 231.942L112.688 244.225" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M126.527 229.12L128.693 241.403" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M112.688 244.225L128.693 241.403" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M119.28 227.252C123.455 227.252 126.839 230.637 126.839 234.811C126.839 238.986 123.455 242.37 119.28 242.37C115.105 242.37 111.721 238.986 111.721 234.811C111.721 230.637 115.105 227.252 119.28 227.252Z" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M147.953 278.368L139.392 276.859" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M147.953 278.368L152.331 275.303" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M139.392 276.859L136.327 272.48" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M147.773 276.129L148.035 274.64" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M148.648 275.516L147.159 275.253" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M152.332 275.303L154.498 263.02" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M136.327 272.48L138.492 260.197" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M154.498 263.02L138.492 260.197" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M145.084 262.052C149.258 262.052 152.643 265.436 152.643 269.611C152.643 273.786 149.258 277.17 145.084 277.17C140.909 277.17 137.525 273.786 137.525 269.611C137.525 265.436 140.909 262.052 145.084 262.052Z" stroke="#7D7D7D" stroke-width="0.377953" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M109.978 272.338C110.826 272.338 111.514 273.026 111.514 273.874C111.514 274.722 110.826 275.41 109.978 275.41C109.129 275.41 108.442 274.722 108.442 273.874C108.442 273.026 109.129 272.338 109.978 272.338Z" fill="#7D7D7D"/>
<path d="M104.977 300.7C105.825 300.7 106.513 301.388 106.513 302.236C106.513 303.085 105.825 303.772 104.977 303.772C104.128 303.772 103.441 303.085 103.441 302.236C103.441 301.388 104.128 300.7 104.977 300.7Z" fill="#7D7D7D"/>
<path d="M112.057 204.889C112.905 204.889 113.593 205.577 113.593 206.425C113.593 207.274 112.905 207.961 112.057 207.961C111.208 207.961 110.521 207.274 110.521 206.425C110.521 205.577 111.208 204.889 112.057 204.889Z" fill="#7D7D7D"/>
<path d="M107.055 176.527C107.904 176.527 108.591 177.215 108.591 178.063C108.591 178.911 107.904 179.599 107.055 179.599C106.207 179.599 105.519 178.911 105.519 178.063C105.519 177.215 106.207 176.527 107.055 176.527Z" fill="#7D7D7D"/>
<path d="M56.4157 236.994C58.0021 236.994 59.2881 238.28 59.2881 239.866C59.2881 241.453 58.0021 242.739 56.4157 242.739C54.8293 242.739 53.5432 241.453 53.5432 239.866C53.5432 238.28 54.8293 236.994 56.4157 236.994Z" fill="#7D7D7D"/>
<path d="M56.4157 217.794C58.0021 217.794 59.2881 219.08 59.2881 220.666C59.2881 222.253 58.0021 223.539 56.4157 223.539C54.8293 223.539 53.5432 222.253 53.5432 220.666C53.5432 219.08 54.8293 217.794 56.4157 217.794Z" fill="#7D7D7D"/>
<path d="M56.1515 287.639C57.7379 287.639 59.024 288.925 59.024 290.512C59.024 292.098 57.7379 293.384 56.1515 293.384C54.5651 293.384 53.2791 292.098 53.2791 290.512C53.2791 288.925 54.5651 287.639 56.1515 287.639Z" fill="#7D7D7D"/>
<path d="M56.1515 268.439C57.7379 268.439 59.024 269.725 59.024 271.312C59.024 272.898 57.7379 274.184 56.1515 274.184C54.5651 274.184 53.2791 272.898 53.2791 271.312C53.2791 269.725 54.5651 268.439 56.1515 268.439Z" fill="#7D7D7D"/>
<path d="M160.542 243.117C162.838 243.117 164.699 244.978 164.699 247.274C164.699 249.57 162.838 251.432 160.542 251.432C158.246 251.432 156.385 249.57 156.385 247.274C156.385 244.978 158.246 243.117 160.542 243.117Z" fill="#7D7D7D"/>
<path d="M139.414 175.765C141.71 175.765 143.572 177.627 143.572 179.923C143.572 182.219 141.71 184.08 139.414 184.08C137.118 184.08 135.257 182.219 135.257 179.923C135.257 177.627 137.118 175.765 139.414 175.765Z" fill="#7D7D7D"/>
<path d="M140.359 301.057C142.655 301.057 144.517 302.918 144.517 305.214C144.517 307.51 142.655 309.372 140.359 309.372C138.063 309.372 136.202 307.51 136.202 305.214C136.202 302.918 138.063 301.057 140.359 301.057Z" fill="#7D7D7D"/>
<path d="M109.978 272.338C110.826 272.338 111.514 273.026 111.514 273.874C111.514 274.722 110.826 275.41 109.978 275.41C109.129 275.41 108.442 274.722 108.442 273.874C108.442 273.026 109.129 272.338 109.978 272.338Z" fill="#7D7D7D"/>
<path d="M104.977 300.7C105.825 300.7 106.513 301.388 106.513 302.236C106.513 303.085 105.825 303.772 104.977 303.772C104.128 303.772 103.441 303.085 103.441 302.236C103.441 301.388 104.128 300.7 104.977 300.7Z" fill="#7D7D7D"/>
<path d="M112.057 204.889C112.905 204.889 113.593 205.577 113.593 206.425C113.593 207.274 112.905 207.961 112.057 207.961C111.208 207.961 110.521 207.274 110.521 206.425C110.521 205.577 111.208 204.889 112.057 204.889Z" fill="#7D7D7D"/>
<path d="M107.055 176.527C107.904 176.527 108.591 177.215 108.591 178.063C108.591 178.911 107.904 179.599 107.055 179.599C106.207 179.599 105.519 178.911 105.519 178.063C105.519 177.215 106.207 176.527 107.055 176.527Z" fill="#7D7D7D"/>
<path d="M56.4157 236.994C58.0021 236.994 59.2881 238.28 59.2881 239.866C59.2881 241.453 58.0021 242.739 56.4157 242.739C54.8293 242.739 53.5432 241.453 53.5432 239.866C53.5432 238.28 54.8293 236.994 56.4157 236.994Z" fill="#7D7D7D"/>
<path d="M56.4157 217.794C58.0021 217.794 59.2881 219.08 59.2881 220.666C59.2881 222.253 58.0021 223.539 56.4157 223.539C54.8293 223.539 53.5432 222.253 53.5432 220.666C53.5432 219.08 54.8293 217.794 56.4157 217.794Z" fill="#7D7D7D"/>
<path d="M56.1515 287.639C57.7379 287.639 59.024 288.925 59.024 290.512C59.024 292.098 57.7379 293.384 56.1515 293.384C54.5651 293.384 53.2791 292.098 53.2791 290.512C53.2791 288.925 54.5651 287.639 56.1515 287.639Z" fill="#7D7D7D"/>
<path d="M56.1515 268.439C57.7379 268.439 59.024 269.725 59.024 271.312C59.024 272.898 57.7379 274.184 56.1515 274.184C54.5651 274.184 53.2791 272.898 53.2791 271.312C53.2791 269.725 54.5651 268.439 56.1515 268.439Z" fill="#7D7D7D"/>
<path d="M160.542 243.117C162.838 243.117 164.699 244.978 164.699 247.274C164.699 249.57 162.838 251.432 160.542 251.432C158.246 251.432 156.385 249.57 156.385 247.274C156.385 244.978 158.246 243.117 160.542 243.117Z" fill="#7D7D7D"/>
<path d="M139.414 175.765C141.71 175.765 143.572 177.627 143.572 179.923C143.572 182.219 141.71 184.08 139.414 184.08C137.118 184.08 135.257 182.219 135.257 179.923C135.257 177.627 137.118 175.765 139.414 175.765Z" fill="#7D7D7D"/>
<path d="M140.359 301.057C142.655 301.057 144.517 302.918 144.517 305.214C144.517 307.51 142.655 309.372 140.359 309.372C138.063 309.372 136.202 307.51 136.202 305.214C136.202 302.918 138.063 301.057 140.359 301.057Z" fill="#7D7D7D"/>
<path d="M160.542 240.093C164.508 240.093 167.723 243.308 167.723 247.274C167.723 251.24 164.508 254.455 160.542 254.455C156.576 254.455 153.361 251.24 153.361 247.274C153.361 243.308 156.576 240.093 160.542 240.093Z" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M139.414 172.742C143.38 172.742 146.595 175.957 146.595 179.923C146.595 183.889 143.38 187.104 139.414 187.104C135.448 187.104 132.233 183.889 132.233 179.923C132.233 175.957 135.448 172.742 139.414 172.742Z" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M140.359 298.033C144.325 298.033 147.54 301.248 147.54 305.214C147.54 309.18 144.325 312.395 140.359 312.395C136.393 312.395 133.178 309.18 133.178 305.214C133.178 301.248 136.393 298.033 140.359 298.033Z" stroke="#7D7D7D" stroke-width="0.566929" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M109.978 272.338C110.826 272.338 111.514 273.026 111.514 273.874C111.514 274.722 110.826 275.41 109.978 275.41C109.129 275.41 108.442 274.722 108.442 273.874C108.442 273.026 109.129 272.338 109.978 272.338Z" fill="#7D7D7D"/>
<path d="M104.977 300.7C105.825 300.7 106.513 301.388 106.513 302.236C106.513 303.085 105.825 303.772 104.977 303.772C104.128 303.772 103.441 303.085 103.441 302.236C103.441 301.388 104.128 300.7 104.977 300.7Z" fill="#7D7D7D"/>
<path d="M112.057 204.889C112.905 204.889 113.593 205.577 113.593 206.425C113.593 207.274 112.905 207.961 112.057 207.961C111.208 207.961 110.521 207.274 110.521 206.425C110.521 205.577 111.208 204.889 112.057 204.889Z" fill="#7D7D7D"/>
<path d="M107.055 176.527C107.904 176.527 108.591 177.215 108.591 178.063C108.591 178.911 107.904 179.599 107.055 179.599C106.207 179.599 105.519 178.911 105.519 178.063C105.519 177.215 106.207 176.527 107.055 176.527Z" fill="#7D7D7D"/>
<path d="M56.4157 236.994C58.0021 236.994 59.2881 238.28 59.2881 239.866C59.2881 241.453 58.0021 242.739 56.4157 242.739C54.8293 242.739 53.5432 241.453 53.5432 239.866C53.5432 238.28 54.8293 236.994 56.4157 236.994Z" fill="#7D7D7D"/>
<path d="M56.4157 217.794C58.0021 217.794 59.2881 219.08 59.2881 220.666C59.2881 222.253 58.0021 223.539 56.4157 223.539C54.8293 223.539 53.5432 222.253 53.5432 220.666C53.5432 219.08 54.8293 217.794 56.4157 217.794Z" fill="#7D7D7D"/>
<path d="M56.1515 287.639C57.7379 287.639 59.024 288.925 59.024 290.512C59.024 292.098 57.7379 293.384 56.1515 293.384C54.5651 293.384 53.2791 292.098 53.2791 290.512C53.2791 288.925 54.5651 287.639 56.1515 287.639Z" fill="#7D7D7D"/>
<path d="M56.1515 268.439C57.7379 268.439 59.024 269.725 59.024 271.312C59.024 272.898 57.7379 274.184 56.1515 274.184C54.5651 274.184 53.2791 272.898 53.2791 271.312C53.2791 269.725 54.5651 268.439 56.1515 268.439Z" fill="#7D7D7D"/>
<path d="M160.542 243.117C162.838 243.117 164.699 244.978 164.699 247.274C164.699 249.57 162.838 251.432 160.542 251.432C158.246 251.432 156.385 249.57 156.385 247.274C156.385 244.978 158.246 243.117 160.542 243.117Z" fill="#7D7D7D"/>
<path d="M139.414 175.765C141.71 175.765 143.572 177.627 143.572 179.923C143.572 182.219 141.71 184.08 139.414 184.08C137.118 184.08 135.257 182.219 135.257 179.923C135.257 177.627 137.118 175.765 139.414 175.765Z" fill="#7D7D7D"/>
<path d="M140.359 301.057C142.655 301.057 144.517 302.918 144.517 305.214C144.517 307.51 142.655 309.372 140.359 309.372C138.063 309.372 136.202 307.51 136.202 305.214C136.202 302.918 138.063 301.057 140.359 301.057Z" fill="#7D7D7D"/>
<path d="M109.978 272.338C110.826 272.338 111.514 273.026 111.514 273.874C111.514 274.722 110.826 275.41 109.978 275.41C109.129 275.41 108.442 274.722 108.442 273.874C108.442 273.026 109.129 272.338 109.978 272.338Z" fill="#7D7D7D"/>
<path d="M104.977 300.7C105.825 300.7 106.513 301.388 106.513 302.236C106.513 303.085 105.825 303.772 104.977 303.772C104.128 303.772 103.441 303.085 103.441 302.236C103.441 301.388 104.128 300.7 104.977 300.7Z" fill="#7D7D7D"/>
<path d="M112.057 204.889C112.905 204.889 113.593 205.577 113.593 206.425C113.593 207.274 112.905 207.961 112.057 207.961C111.208 207.961 110.521 207.274 110.521 206.425C110.521 205.577 111.208 204.889 112.057 204.889Z" fill="#7D7D7D"/>
<path d="M107.055 176.527C107.904 176.527 108.591 177.215 108.591 178.063C108.591 178.911 107.904 179.599 107.055 179.599C106.207 179.599 105.519 178.911 105.519 178.063C105.519 177.215 106.207 176.527 107.055 176.527Z" fill="#7D7D7D"/>
<path d="M56.4157 236.994C58.0021 236.994 59.2881 238.28 59.2881 239.866C59.2881 241.453 58.0021 242.739 56.4157 242.739C54.8293 242.739 53.5432 241.453 53.5432 239.866C53.5432 238.28 54.8293 236.994 56.4157 236.994Z" fill="#7D7D7D"/>
<path d="M56.4157 217.794C58.0021 217.794 59.2881 219.08 59.2881 220.666C59.2881 222.253 58.0021 223.539 56.4157 223.539C54.8293 223.539 53.5432 222.253 53.5432 220.666C53.5432 219.08 54.8293 217.794 56.4157 217.794Z" fill="#7D7D7D"/>
<path d="M56.1515 287.639C57.7379 287.639 59.024 288.925 59.024 290.512C59.024 292.098 57.7379 293.384 56.1515 293.384C54.5651 293.384 53.2791 292.098 53.2791 290.512C53.2791 288.925 54.5651 287.639 56.1515 287.639Z" fill="#7D7D7D"/>
<path d="M56.1515 268.439C57.7379 268.439 59.024 269.725 59.024 271.312C59.024 272.898 57.7379 274.184 56.1515 274.184C54.5651 274.184 53.2791 272.898 53.2791 271.312C53.2791 269.725 54.5651 268.439 56.1515 268.439Z" fill="#7D7D7D"/>
<path d="M160.542 243.117C162.838 243.117 164.699 244.978 164.699 247.274C164.699 249.57 162.838 251.432 160.542 251.432C158.246 251.432 156.385 249.57 156.385 247.274C156.385 244.978 158.246 243.117 160.542 243.117Z" fill="#7D7D7D"/>
<path d="M139.414 175.765C141.71 175.765 143.572 177.627 143.572 179.923C143.572 182.219 141.71 184.08 139.414 184.08C137.118 184.08 135.257 182.219 135.257 179.923C135.257 177.627 137.118 175.765 139.414 175.765Z" fill="#7D7D7D"/>
<path d="M140.359 301.057C142.655 301.057 144.517 302.918 144.517 305.214C144.517 307.51 142.655 309.372 140.359 309.372C138.063 309.372 136.202 307.51 136.202 305.214C136.202 302.918 138.063 301.057 140.359 301.057Z" fill="#7D7D7D"/>
<path d="M109.978 272.338C110.826 272.338 111.514 273.026 111.514 273.874C111.514 274.722 110.826 275.41 109.978 275.41C109.129 275.41 108.442 274.722 108.442 273.874C108.442 273.026 109.129 272.338 109.978 272.338Z" fill="#7D7D7D"/>
<path d="M104.977 300.7C105.825 300.7 106.513 301.388 106.513 302.236C106.513 303.085 105.825 303.772 104.977 303.772C104.128 303.772 103.441 303.085 103.441 302.236C103.441 301.388 104.128 300.7 104.977 300.7Z" fill="#7D7D7D"/>
<path d="M112.057 204.889C112.905 204.889 113.593 205.577 113.593 206.425C113.593 207.274 112.905 207.961 112.057 207.961C111.208 207.961 110.521 207.274 110.521 206.425C110.521 205.577 111.208 204.889 112.057 204.889Z" fill="#7D7D7D"/>
<path d="M107.055 176.527C107.904 176.527 108.591 177.215 108.591 178.063C108.591 178.911 107.904 179.599 107.055 179.599C106.207 179.599 105.519 178.911 105.519 178.063C105.519 177.215 106.207 176.527 107.055 176.527Z" fill="#7D7D7D"/>
<path d="M56.4157 236.994C58.0021 236.994 59.2881 238.28 59.2881 239.866C59.2881 241.453 58.0021 242.739 56.4157 242.739C54.8293 242.739 53.5432 241.453 53.5432 239.866C53.5432 238.28 54.8293 236.994 56.4157 236.994Z" fill="#7D7D7D"/>
<path d="M56.4157 217.794C58.0021 217.794 59.2881 219.08 59.2881 220.666C59.2881 222.253 58.0021 223.539 56.4157 223.539C54.8293 223.539 53.5432 222.253 53.5432 220.666C53.5432 219.08 54.8293 217.794 56.4157 217.794Z" fill="#7D7D7D"/>
<path d="M56.1515 287.639C57.7379 287.639 59.024 288.925 59.024 290.512C59.024 292.098 57.7379 293.384 56.1515 293.384C54.5651 293.384 53.2791 292.098 53.2791 290.512C53.2791 288.925 54.5651 287.639 56.1515 287.639Z" fill="#7D7D7D"/>
<path d="M56.1515 268.439C57.7379 268.439 59.024 269.725 59.024 271.312C59.024 272.898 57.7379 274.184 56.1515 274.184C54.5651 274.184 53.2791 272.898 53.2791 271.312C53.2791 269.725 54.5651 268.439 56.1515 268.439Z" fill="#7D7D7D"/>
<path d="M160.542 243.117C162.838 243.117 164.699 244.978 164.699 247.274C164.699 249.57 162.838 251.432 160.542 251.432C158.246 251.432 156.385 249.57 156.385 247.274C156.385 244.978 158.246 243.117 160.542 243.117Z" fill="#7D7D7D"/>
<path d="M139.414 175.765C141.71 175.765 143.572 177.627 143.572 179.923C143.572 182.219 141.71 184.08 139.414 184.08C137.118 184.08 135.257 182.219 135.257 179.923C135.257 177.627 137.118 175.765 139.414 175.765Z" fill="#7D7D7D"/>
<path d="M140.359 301.057C142.655 301.057 144.517 302.918 144.517 305.214C144.517 307.51 142.655 309.372 140.359 309.372C138.063 309.372 136.202 307.51 136.202 305.214C136.202 302.918 138.063 301.057 140.359 301.057Z" fill="#7D7D7D"/>
<path d="M109.978 272.338C110.826 272.338 111.514 273.026 111.514 273.874C111.514 274.722 110.826 275.41 109.978 275.41C109.129 275.41 108.442 274.722 108.442 273.874C108.442 273.026 109.129 272.338 109.978 272.338Z" fill="#7D7D7D"/>
<path d="M104.977 300.7C105.825 300.7 106.513 301.388 106.513 302.236C106.513 303.085 105.825 303.772 104.977 303.772C104.128 303.772 103.441 303.085 103.441 302.236C103.441 301.388 104.128 300.7 104.977 300.7Z" fill="#7D7D7D"/>
<path d="M112.057 204.889C112.905 204.889 113.593 205.577 113.593 206.425C113.593 207.274 112.905 207.961 112.057 207.961C111.208 207.961 110.521 207.274 110.521 206.425C110.521 205.577 111.208 204.889 112.057 204.889Z" fill="#7D7D7D"/>
<path d="M107.055 176.527C107.904 176.527 108.591 177.215 108.591 178.063C108.591 178.911 107.904 179.599 107.055 179.599C106.207 179.599 105.519 178.911 105.519 178.063C105.519 177.215 106.207 176.527 107.055 176.527Z" fill="#7D7D7D"/>
<path d="M56.4157 236.994C58.0021 236.994 59.2881 238.28 59.2881 239.866C59.2881 241.453 58.0021 242.739 56.4157 242.739C54.8293 242.739 53.5432 241.453 53.5432 239.866C53.5432 238.28 54.8293 236.994 56.4157 236.994Z" fill="#7D7D7D"/>
<path d="M56.4157 217.794C58.0021 217.794 59.2881 219.08 59.2881 220.666C59.2881 222.253 58.0021 223.539 56.4157 223.539C54.8293 223.539 53.5432 222.253 53.5432 220.666C53.5432 219.08 54.8293 217.794 56.4157 217.794Z" fill="#7D7D7D"/>
<path d="M56.1515 287.639C57.7379 287.639 59.024 288.925 59.024 290.512C59.024 292.098 57.7379 293.384 56.1515 293.384C54.5651 293.384 53.2791 292.098 53.2791 290.512C53.2791 288.925 54.5651 287.639 56.1515 287.639Z" fill="#7D7D7D"/>
<path d="M56.1515 268.439C57.7379 268.439 59.024 269.725 59.024 271.312C59.024 272.898 57.7379 274.184 56.1515 274.184C54.5651 274.184 53.2791 272.898 53.2791 271.312C53.2791 269.725 54.5651 268.439 56.1515 268.439Z" fill="#7D7D7D"/>
<path d="M160.542 243.117C162.838 243.117 164.699 244.978 164.699 247.274C164.699 249.57 162.838 251.432 160.542 251.432C158.246 251.432 156.385 249.57 156.385 247.274C156.385 244.978 158.246 243.117 160.542 243.117Z" fill="#7D7D7D"/>
<path d="M139.414 175.765C141.71 175.765 143.572 177.627 143.572 179.923C143.572 182.219 141.71 184.08 139.414 184.08C137.118 184.08 135.257 182.219 135.257 179.923C135.257 177.627 137.118 175.765 139.414 175.765Z" fill="#7D7D7D"/>
<path d="M140.359 301.057C142.655 301.057 144.517 302.918 144.517 305.214C144.517 307.51 142.655 309.372 140.359 309.372C138.063 309.372 136.202 307.51 136.202 305.214C136.202 302.918 138.063 301.057 140.359 301.057Z" fill="#7D7D7D"/>
<path d="M109.978 272.338C110.826 272.338 111.514 273.026 111.514 273.874C111.514 274.722 110.826 275.41 109.978 275.41C109.129 275.41 108.442 274.722 108.442 273.874C108.442 273.026 109.129 272.338 109.978 272.338Z" fill="#7D7D7D"/>
<path d="M104.977 300.7C105.825 300.7 106.513 301.388 106.513 302.236C106.513 303.085 105.825 303.772 104.977 303.772C104.128 303.772 103.441 303.085 103.441 302.236C103.441 301.388 104.128 300.7 104.977 300.7Z" fill="#7D7D7D"/>
<path d="M112.057 204.889C112.905 204.889 113.593 205.577 113.593 206.425C113.593 207.274 112.905 207.961 112.057 207.961C111.208 207.961 110.521 207.274 110.521 206.425C110.521 205.577 111.208 204.889 112.057 204.889Z" fill="#7D7D7D"/>
<path d="M107.055 176.527C107.904 176.527 108.591 177.215 108.591 178.063C108.591 178.911 107.904 179.599 107.055 179.599C106.207 179.599 105.519 178.911 105.519 178.063C105.519 177.215 106.207 176.527 107.055 176.527Z" fill="#7D7D7D"/>
<path d="M56.4157 236.994C58.0021 236.994 59.2881 238.28 59.2881 239.866C59.2881 241.453 58.0021 242.739 56.4157 242.739C54.8293 242.739 53.5432 241.453 53.5432 239.866C53.5432 238.28 54.8293 236.994 56.4157 236.994Z" fill="#7D7D7D"/>
<path d="M56.4157 217.794C58.0021 217.794 59.2881 219.08 59.2881 220.666C59.2881 222.253 58.0021 223.539 56.4157 223.539C54.8293 223.539 53.5432 222.253 53.5432 220.666C53.5432 219.08 54.8293 217.794 56.4157 217.794Z" fill="#7D7D7D"/>
<path d="M56.1515 287.639C57.7379 287.639 59.024 288.925 59.024 290.512C59.024 292.098 57.7379 293.384 56.1515 293.384C54.5651 293.384 53.2791 292.098 53.2791 290.512C53.2791 288.925 54.5651 287.639 56.1515 287.639Z" fill="#7D7D7D"/>
<path d="M56.1515 268.439C57.7379 268.439 59.024 269.725 59.024 271.312C59.024 272.898 57.7379 274.184 56.1515 274.184C54.5651 274.184 53.2791 272.898 53.2791 271.312C53.2791 269.725 54.5651 268.439 56.1515 268.439Z" fill="#7D7D7D"/>
<path d="M160.542 243.117C162.838 243.117 164.699 244.978 164.699 247.274C164.699 249.57 162.838 251.432 160.542 251.432C158.246 251.432 156.385 249.57 156.385 247.274C156.385 244.978 158.246 243.117 160.542 243.117Z" fill="#7D7D7D"/>
<path d="M139.414 175.765C141.71 175.765 143.572 177.627 143.572 179.923C143.572 182.219 141.71 184.08 139.414 184.08C137.118 184.08 135.257 182.219 135.257 179.923C135.257 177.627 137.118 175.765 139.414 175.765Z" fill="#7D7D7D"/>
<path d="M140.359 301.057C142.655 301.057 144.517 302.918 144.517 305.214C144.517 307.51 142.655 309.372 140.359 309.372C138.063 309.372 136.202 307.51 136.202 305.214C136.202 302.918 138.063 301.057 140.359 301.057Z" fill="#7D7D7D"/>
<path d="M109.978 272.338C110.826 272.338 111.514 273.026 111.514 273.874C111.514 274.722 110.826 275.41 109.978 275.41C109.129 275.41 108.442 274.722 108.442 273.874C108.442 273.026 109.129 272.338 109.978 272.338Z" fill="#7D7D7D"/>
<path d="M104.977 300.7C105.825 300.7 106.513 301.388 106.513 302.236C106.513 303.085 105.825 303.772 104.977 303.772C104.128 303.772 103.441 303.085 103.441 302.236C103.441 301.388 104.128 300.7 104.977 300.7Z" fill="#7D7D7D"/>
<path d="M112.057 204.889C112.905 204.889 113.593 205.577 113.593 206.425C113.593 207.274 112.905 207.961 112.057 207.961C111.208 207.961 110.521 207.274 110.521 206.425C110.521 205.577 111.208 204.889 112.057 204.889Z" fill="#7D7D7D"/>
<path d="M107.055 176.527C107.904 176.527 108.591 177.215 108.591 178.063C108.591 178.911 107.904 179.599 107.055 179.599C106.207 179.599 105.519 178.911 105.519 178.063C105.519 177.215 106.207 176.527 107.055 176.527Z" fill="#7D7D7D"/>
<path d="M56.4157 236.994C58.0021 236.994 59.2881 238.28 59.2881 239.866C59.2881 241.453 58.0021 242.739 56.4157 242.739C54.8293 242.739 53.5432 241.453 53.5432 239.866C53.5432 238.28 54.8293 236.994 56.4157 236.994Z" fill="#7D7D7D"/>
<path d="M56.4157 217.794C58.0021 217.794 59.2881 219.08 59.2881 220.666C59.2881 222.253 58.0021 223.539 56.4157 223.539C54.8293 223.539 53.5432 222.253 53.5432 220.666C53.5432 219.08 54.8293 217.794 56.4157 217.794Z" fill="#7D7D7D"/>
<path d="M56.1515 287.639C57.7379 287.639 59.024 288.925 59.024 290.512C59.024 292.098 57.7379 293.384 56.1515 293.384C54.5651 293.384 53.2791 292.098 53.2791 290.512C53.2791 288.925 54.5651 287.639 56.1515 287.639Z" fill="#7D7D7D"/>
<path d="M56.1515 268.439C57.7379 268.439 59.024 269.725 59.024 271.312C59.024 272.898 57.7379 274.184 56.1515 274.184C54.5651 274.184 53.2791 272.898 53.2791 271.312C53.2791 269.725 54.5651 268.439 56.1515 268.439Z" fill="#7D7D7D"/>
<path d="M160.542 243.117C162.838 243.117 164.699 244.978 164.699 247.274C164.699 249.57 162.838 251.432 160.542 251.432C158.246 251.432 156.385 249.57 156.385 247.274C156.385 244.978 158.246 243.117 160.542 243.117Z" fill="#7D7D7D"/>
<path d="M139.414 175.765C141.71 175.765 143.572 177.627 143.572 179.923C143.572 182.219 141.71 184.08 139.414 184.08C137.118 184.08 135.257 182.219 135.257 179.923C135.257 177.627 137.118 175.765 139.414 175.765Z" fill="#7D7D7D"/>
<path d="M140.359 301.057C142.655 301.057 144.517 302.918 144.517 305.214C144.517 307.51 142.655 309.372 140.359 309.372C138.063 309.372 136.202 307.51 136.202 305.214C136.202 302.918 138.063 301.057 140.359 301.057Z" fill="#7D7D7D"/>
<path d="M109.978 271.234C111.436 271.234 112.618 272.416 112.618 273.874C112.618 275.332 111.436 276.514 109.978 276.514C108.52 276.514 107.338 275.332 107.338 273.874C107.338 272.416 108.52 271.234 109.978 271.234Z" fill="#7D7D7D"/>
<path d="M104.977 299.596C106.435 299.596 107.617 300.778 107.617 302.236C107.617 303.694 106.435 304.876 104.977 304.876C103.519 304.876 102.337 303.694 102.337 302.236C102.337 300.778 103.519 299.596 104.977 299.596Z" fill="#7D7D7D"/>
<path d="M112.057 203.785C113.515 203.785 114.697 204.967 114.697 206.425C114.697 207.883 113.515 209.065 112.057 209.065C110.599 209.065 109.417 207.883 109.417 206.425C109.417 204.967 110.599 203.785 112.057 203.785Z" fill="#7D7D7D"/>
<path d="M107.056 175.423C108.514 175.423 109.696 176.605 109.696 178.063C109.696 179.521 108.514 180.703 107.056 180.703C105.598 180.703 104.416 179.521 104.416 178.063C104.416 176.605 105.598 175.423 107.056 175.423Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.7468 245.535H62.0854V234.197H50.7468V245.535Z" fill="#7D7D7D"/>
<path d="M56.4161 214.997C59.5472 214.997 62.0854 217.535 62.0854 220.666C62.0854 223.797 59.5472 226.336 56.4161 226.336C53.2851 226.336 50.7468 223.797 50.7468 220.666C50.7468 217.535 53.2851 214.997 56.4161 214.997Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.4822 296.181H61.8208V284.843H50.4822V296.181Z" fill="#7D7D7D"/>
<path d="M56.1515 265.642C59.2825 265.642 61.8208 268.181 61.8208 271.312C61.8208 274.443 59.2825 276.981 56.1515 276.981C53.0204 276.981 50.4822 274.443 50.4822 271.312C50.4822 268.181 53.0204 265.642 56.1515 265.642Z" fill="#7D7D7D"/>
<path d="M160.542 240.093C164.508 240.093 167.723 243.308 167.723 247.274C167.723 251.24 164.508 254.455 160.542 254.455C156.576 254.455 153.361 251.24 153.361 247.274C153.361 243.308 156.576 240.093 160.542 240.093Z" fill="#7D7D7D"/>
<path d="M139.414 172.742C143.38 172.742 146.595 175.957 146.595 179.923C146.595 183.889 143.38 187.104 139.414 187.104C135.448 187.104 132.233 183.889 132.233 179.923C132.233 175.957 135.448 172.742 139.414 172.742Z" fill="#7D7D7D"/>
<path d="M140.359 298.033C144.325 298.033 147.54 301.248 147.54 305.214C147.54 309.18 144.325 312.395 140.359 312.395C136.393 312.395 133.178 309.18 133.178 305.214C133.178 301.248 136.393 298.033 140.359 298.033Z" fill="#7D7D7D"/>
<path d="M109.978 272.338C110.826 272.338 111.514 273.026 111.514 273.874C111.514 274.722 110.826 275.41 109.978 275.41C109.129 275.41 108.442 274.722 108.442 273.874C108.442 273.026 109.129 272.338 109.978 272.338Z" fill="white"/>
<path d="M104.977 300.7C105.825 300.7 106.513 301.388 106.513 302.236C106.513 303.085 105.825 303.772 104.977 303.772C104.128 303.772 103.441 303.085 103.441 302.236C103.441 301.388 104.128 300.7 104.977 300.7Z" fill="white"/>
<path d="M112.057 204.889C112.905 204.889 113.593 205.577 113.593 206.425C113.593 207.274 112.905 207.961 112.057 207.961C111.208 207.961 110.521 207.274 110.521 206.425C110.521 205.577 111.208 204.889 112.057 204.889Z" fill="white"/>
<path d="M107.055 176.527C107.904 176.527 108.591 177.215 108.591 178.063C108.591 178.911 107.904 179.599 107.055 179.599C106.207 179.599 105.519 178.911 105.519 178.063C105.519 177.215 106.207 176.527 107.055 176.527Z" fill="white"/>
<path d="M56.4157 236.994C58.0021 236.994 59.2881 238.28 59.2881 239.866C59.2881 241.453 58.0021 242.739 56.4157 242.739C54.8293 242.739 53.5432 241.453 53.5432 239.866C53.5432 238.28 54.8293 236.994 56.4157 236.994Z" fill="white"/>
<path d="M56.4157 217.794C58.0021 217.794 59.2881 219.08 59.2881 220.666C59.2881 222.253 58.0021 223.539 56.4157 223.539C54.8293 223.539 53.5432 222.253 53.5432 220.666C53.5432 219.08 54.8293 217.794 56.4157 217.794Z" fill="white"/>
<path d="M56.1515 287.639C57.7379 287.639 59.024 288.925 59.024 290.512C59.024 292.098 57.7379 293.384 56.1515 293.384C54.5651 293.384 53.2791 292.098 53.2791 290.512C53.2791 288.925 54.5651 287.639 56.1515 287.639Z" fill="white"/>
<path d="M56.1515 268.439C57.7379 268.439 59.024 269.725 59.024 271.312C59.024 272.898 57.7379 274.184 56.1515 274.184C54.5651 274.184 53.2791 272.898 53.2791 271.312C53.2791 269.725 54.5651 268.439 56.1515 268.439Z" fill="white"/>
<path d="M160.542 243.117C162.838 243.117 164.699 244.978 164.699 247.274C164.699 249.57 162.838 251.432 160.542 251.432C158.246 251.432 156.385 249.57 156.385 247.274C156.385 244.978 158.246 243.117 160.542 243.117Z" fill="white"/>
<path d="M139.414 175.765C141.71 175.765 143.572 177.627 143.572 179.923C143.572 182.219 141.71 184.08 139.414 184.08C137.118 184.08 135.257 182.219 135.257 179.923C135.257 177.627 137.118 175.765 139.414 175.765Z" fill="white"/>
<path d="M140.359 301.057C142.655 301.057 144.517 302.918 144.517 305.214C144.517 307.51 142.655 309.372 140.359 309.372C138.063 309.372 136.202 307.51 136.202 305.214C136.202 302.918 138.063 301.057 140.359 301.057Z" fill="white"/>
<path d="M19.7922 318.48H197.43V159.74H19.7922V318.48Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="2 2"/>
<path d="M109.978 271.234C111.436 271.234 112.618 272.416 112.618 273.874C112.618 275.332 111.436 276.514 109.978 276.514C108.52 276.514 107.338 275.332 107.338 273.874C107.338 272.416 108.52 271.234 109.978 271.234Z" fill="#7D7D7D"/>
<path d="M104.977 299.596C106.435 299.596 107.617 300.778 107.617 302.236C107.617 303.694 106.435 304.876 104.977 304.876C103.519 304.876 102.337 303.694 102.337 302.236C102.337 300.778 103.519 299.596 104.977 299.596Z" fill="#7D7D7D"/>
<path d="M112.057 203.785C113.515 203.785 114.697 204.967 114.697 206.425C114.697 207.883 113.515 209.065 112.057 209.065C110.599 209.065 109.417 207.883 109.417 206.425C109.417 204.967 110.599 203.785 112.057 203.785Z" fill="#7D7D7D"/>
<path d="M107.056 175.423C108.514 175.423 109.696 176.605 109.696 178.063C109.696 179.521 108.514 180.703 107.056 180.703C105.598 180.703 104.416 179.521 104.416 178.063C104.416 176.605 105.598 175.423 107.056 175.423Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.7468 245.535H62.0854V234.197H50.7468V245.535Z" fill="#7D7D7D"/>
<path d="M56.4161 214.997C59.5472 214.997 62.0854 217.535 62.0854 220.666C62.0854 223.797 59.5472 226.336 56.4161 226.336C53.2851 226.336 50.7468 223.797 50.7468 220.666C50.7468 217.535 53.2851 214.997 56.4161 214.997Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.4822 296.181H61.8208V284.843H50.4822V296.181Z" fill="#7D7D7D"/>
<path d="M56.1515 265.642C59.2825 265.642 61.8208 268.181 61.8208 271.312C61.8208 274.443 59.2825 276.981 56.1515 276.981C53.0204 276.981 50.4822 274.443 50.4822 271.312C50.4822 268.181 53.0204 265.642 56.1515 265.642Z" fill="#7D7D7D"/>
<path d="M160.542 240.093C164.508 240.093 167.723 243.308 167.723 247.274C167.723 251.24 164.508 254.455 160.542 254.455C156.576 254.455 153.361 251.24 153.361 247.274C153.361 243.308 156.576 240.093 160.542 240.093Z" fill="#7D7D7D"/>
<path d="M139.414 172.742C143.38 172.742 146.596 175.957 146.596 179.923C146.596 183.889 143.38 187.104 139.414 187.104C135.448 187.104 132.233 183.889 132.233 179.923C132.233 175.957 135.448 172.742 139.414 172.742Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M115.198 223.634L114.854 223.767L114.588 224.022L114.439 224.36L114.431 224.728L115.81 232.545L115.943 232.888L116.198 233.155L116.536 233.303L116.904 233.311L120.999 232.59L121.342 232.456L121.609 232.201L121.757 231.863L121.765 231.495L120.387 223.678L120.253 223.335L119.998 223.069L119.661 222.92L119.292 222.912L115.198 223.634Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M117.56 237.033L117.217 237.167L116.951 237.422L116.802 237.76L116.794 238.128L118.172 245.944L118.306 246.288L118.561 246.554L118.898 246.703L119.267 246.711L123.361 245.989L123.705 245.855L123.971 245.601L124.12 245.263L124.128 244.895L122.749 237.078L122.616 236.734L122.361 236.468L122.023 236.319L121.655 236.312L117.56 237.033Z" fill="#7D7D7D"/>
<path d="M140.359 298.033C144.325 298.033 147.54 301.248 147.54 305.214C147.54 309.18 144.325 312.395 140.359 312.395C136.393 312.395 133.178 309.18 133.178 305.214C133.178 301.248 136.393 298.033 140.359 298.033Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M145.096 281.51L145.465 281.503L145.802 281.354L146.057 281.088L146.19 280.744L147.569 272.928L147.561 272.559L147.412 272.222L147.146 271.967L146.802 271.833L142.708 271.111L142.339 271.119L142.002 271.268L141.747 271.534L141.613 271.878L140.235 279.694L140.243 280.063L140.392 280.4L140.658 280.655L141.002 280.789L145.096 281.51Z" fill="#7D7D7D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M147.459 268.111L147.828 268.103L148.165 267.954L148.42 267.688L148.554 267.344L149.932 259.528L149.924 259.16L149.775 258.822L149.509 258.567L149.165 258.433L145.071 257.712L144.702 257.72L144.365 257.868L144.11 258.135L143.977 258.478L142.598 266.294L142.606 266.663L142.755 267.001L143.021 267.255L143.365 267.389L147.459 268.111Z" fill="#7D7D7D"/>
<path d="M101.907 305.306L104.977 302.236" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M56.1511 290.512V290.776" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M105.74 303L104.977 302.236" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M140.359 305.214H111.085" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M56.1511 290.776L56.1587 290.784" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M111.085 305.214C109.081 305.214 107.158 304.418 105.74 303" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M101.907 305.306C100.49 306.723 98.567 307.52 96.5623 307.52" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M96.5623 307.52C81.408 307.52 66.8744 301.5 56.1587 290.784" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M77.3943 271.312L78.7859 269.921" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M144.992 262.911H146.265" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M78.0883 244.569L75.5999 242.08" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M56.1511 271.312H77.3944" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M56.4158 239.866H118.816" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M80.3022 265.346V249.914" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M146.265 262.911L154.888 254.288" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M118.816 239.866L120.461 241.511" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M70.2549 239.866H56.4158" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M156.71 251.375V251.106" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M156.71 251.106L160.542 247.274" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M120.46 241.511L139.647 260.698" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M144.992 262.911C142.987 262.911 141.065 262.115 139.647 260.697" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M156.71 251.375C156.328 252.47 155.706 253.466 154.888 254.288" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M80.3022 265.346C80.3067 266.995 79.7745 268.601 78.7859 269.921" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M78.0884 244.569C79.506 245.986 80.3024 247.909 80.3024 249.914" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M70.2549 239.866C72.2597 239.866 74.1823 240.663 75.5999 242.08" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M129.664 178.063H107.055" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M75.812 189.818L58.6299 207" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M139.414 179.923L137.987 178.496" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M56.4158 212.345V220.666" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M107.055 178.063H104.192" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M137.987 178.496H136.855" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M75.8118 189.818C83.3386 182.291 93.5471 178.063 104.192 178.063" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M56.4158 212.345C56.4158 210.34 57.2122 208.418 58.6298 207" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M129.664 178.063C132.067 178.066 134.469 178.21 136.855 178.496" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M109.978 273.874H138.334" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M143.679 276.088L143.902 276.311" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M138.334 273.874C140.339 273.874 142.261 274.671 143.679 276.088" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M118.098 228.112L114.271 224.284" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M112.056 218.939V206.425" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M114.27 224.284C112.853 222.866 112.056 220.944 112.056 218.939" stroke="#7D7D7D" stroke-width="0.944882" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M109.978 272.338C110.826 272.338 111.514 273.026 111.514 273.874C111.514 274.722 110.826 275.41 109.978 275.41C109.129 275.41 108.442 274.722 108.442 273.874C108.442 273.026 109.129 272.338 109.978 272.338Z" fill="white"/>
<path d="M104.977 300.7C105.825 300.7 106.513 301.388 106.513 302.236C106.513 303.085 105.825 303.772 104.977 303.772C104.128 303.772 103.441 303.085 103.441 302.236C103.441 301.388 104.128 300.7 104.977 300.7Z" fill="white"/>
<path d="M112.057 204.889C112.905 204.889 113.593 205.577 113.593 206.425C113.593 207.274 112.905 207.961 112.057 207.961C111.208 207.961 110.521 207.274 110.521 206.425C110.521 205.577 111.208 204.889 112.057 204.889Z" fill="white"/>
<path d="M107.055 176.527C107.904 176.527 108.591 177.215 108.591 178.063C108.591 178.911 107.904 179.599 107.055 179.599C106.207 179.599 105.519 178.911 105.519 178.063C105.519 177.215 106.207 176.527 107.055 176.527Z" fill="white"/>
<path d="M56.4157 236.994C58.0021 236.994 59.2881 238.28 59.2881 239.866C59.2881 241.453 58.0021 242.739 56.4157 242.739C54.8293 242.739 53.5432 241.453 53.5432 239.866C53.5432 238.28 54.8293 236.994 56.4157 236.994Z" fill="white"/>
<path d="M56.4157 217.794C58.0021 217.794 59.2881 219.08 59.2881 220.666C59.2881 222.253 58.0021 223.539 56.4157 223.539C54.8293 223.539 53.5432 222.253 53.5432 220.666C53.5432 219.08 54.8293 217.794 56.4157 217.794Z" fill="white"/>
<path d="M56.1515 287.639C57.7379 287.639 59.024 288.925 59.024 290.512C59.024 292.098 57.7379 293.384 56.1515 293.384C54.5651 293.384 53.2791 292.098 53.2791 290.512C53.2791 288.925 54.5651 287.639 56.1515 287.639Z" fill="white"/>
<path d="M56.1515 268.439C57.7379 268.439 59.024 269.725 59.024 271.312C59.024 272.898 57.7379 274.184 56.1515 274.184C54.5651 274.184 53.2791 272.898 53.2791 271.312C53.2791 269.725 54.5651 268.439 56.1515 268.439Z" fill="white"/>
<path d="M160.542 243.117C162.838 243.117 164.699 244.978 164.699 247.274C164.699 249.57 162.838 251.432 160.542 251.432C158.246 251.432 156.385 249.57 156.385 247.274C156.385 244.978 158.246 243.117 160.542 243.117Z" fill="white"/>
<path d="M139.414 175.765C141.71 175.765 143.572 177.627 143.572 179.923C143.572 182.219 141.71 184.08 139.414 184.08C137.118 184.08 135.257 182.219 135.257 179.923C135.257 177.627 137.118 175.765 139.414 175.765Z" fill="white"/>
<path d="M140.359 301.057C142.655 301.057 144.517 302.918 144.517 305.214C144.517 307.51 142.655 309.372 140.359 309.372C138.063 309.372 136.202 307.51 136.202 305.214C136.202 302.918 138.063 301.057 140.359 301.057Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 189 KiB

View File

@ -0,0 +1,29 @@
---
title: Power Supply
BOMTable: true
shortDescription:
"This circuit converts a 9V power source "
BOM:
- type: Capacitor
count: 2
value: "10uF"
- type: Resistor
count: 2
value: "10Ω"
- type: Misc
label: "2x 9V battery clips"
pcb: "/recipes/power-supply/PaperCircuit.svg"
sample: "/recipes/power-supply/sample.mp3"
---
This circuit converts a 9V power source into a stable 5V output, suitable for powering low-voltage circuits like microcontrollers, sensors, and small audio devices. It ensures a clean, regulated voltage with minimal noise, preventing fluctuations that could interfere with sound circuits.
![drawing](/recipes/power-supply/photo.jpeg)
Instructions:
Prepare Components[^what-is]: Gather all components and ensure they match the schematic.
[^what-is]: what really is a component anyways./
Place the 7805 Regulator: Position the 7805 with its flat side facing you. The left pin is input (9V), the middle pin is ground, and the right pin is output (5V).

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 KiB

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,47 @@
---
title: A single transistor Oscillator
description: This is the description
---
Transistors are used often used when making sound circuits. The oscillators I am aware of usually combine transistor with some sort of a chip, to create a fast frequency. This specific oscillator however, only uses one transistor.
_I could talk about the history of electronic music and transistors here, but at the moment I do not think this should happen_
Since this schematic uses only a couple of components, I think this recipe could actually be combined with the rc-filter recipe.
## Schematic
![Schematic of the Single Transistor Oscillator](http://www.seekic.com/uploadfile/ic-circuit/s201357212933141.jpg)
## Components
- 1 Transistor _I need to figure out if transistors are interchangable_
- 1 Resistor
- A speaker
- A battery
- A Capacitor
The size of the capacitor and the resistor decide upon the frequency of the pitch.
## Notes while making the circuit
- First time i've tried building this circuit, it did not work. Since, I've found a book[^transistor-book] that might be of use when I would like to do more with transistors.
I suspect that salvaging IC's will be slightly more difficult, which is why i've been focussing on transistors, but ye, if i cant get the simplest circuit to work, maybe I should step a way from the suspisions and see what i'll find.
[^transistor-book]: Turner, R. P. (1957). Transistor circuits. GERNSBACK LIBRARY INC. https://tubes.mit.edu/6S917/_static/2024/resources/turner_transistor_circuits.pdf
Additionally, i've learned from Ash that crystals and transistors could be used to make radios!
Turns out, this circuit above is actually called the "Relaxation oscillator". The wikipedia description is actually pretty visual: "It consists of an energy-storing element (a capacitor or, more rarely, an inductor) and a nonlinear switching device (a latch, Schmitt trigger, or negative resistance element) connected in a feedback loop.[22][23] "
There are various relaxation circuits:
- Using the 555 timer IC
- Using an op-amp! https://upload.wikimedia.org/wikipedia/commons/thumb/1/15/OpAmpHystereticOscillator.svg/440px-OpAmpHystereticOscillator.svg.png
Then there are also "RC Oscillators" https://en.wikipedia.org/wiki/RC_oscillator
AGain no luck with this schematic....
I'll try my luck with a 555 timer circuit now.

View File

@ -37,7 +37,29 @@
constructor(chunker, polisher, caller) { constructor(chunker, polisher, caller) {
super(chunker, polisher, caller); super(chunker, polisher, caller);
} }
afterRendered(pages) {
console.log(pages)
pages.forEach((p) => {
p.element.querySelectorAll(".sample").forEach((el) => {
el.addEventListener("click", function (e) {
const audioEl = e.currentTarget.querySelector("audio");
if(audioEl.paused) {
document.querySelectorAll(".sample").forEach((s) => {
s.removeAttribute("active");
s.querySelector("audio").pause();
})
e.currentTarget.setAttribute("active", true)
audioEl.play();
} else {
audioEl.pause();
e.currentTarget.removeAttribute("active")
}
})
})
})
}
beforeParsed(content) { beforeParsed(content) {
let count = 0; let count = 0;

View File

@ -1,11 +1,10 @@
{% extends "base.jinja" %} {% extends "base.jinja" %}
{% from 'snippets/page-detail.jinja' import showDetail with context %}
{% from 'snippets/page-circuit.jinja' import showCircuit with context %}
{% block content %} {% block content %}
{{ showDetail(page) }}
<article> {{ showCircuit(page) }}
{{ page['body'] | shortcode }}
</article>
{% endblock %} {% endblock %}
{% block aside %} {% endblock %} {% block aside %} {% endblock %}

View File

@ -0,0 +1 @@
pages

View File

@ -1,10 +1,25 @@
{% extends "base.jinja" %} {% extends "base.jinja" %}
{% from 'snippets/inventory.jinja' import inventory with context %} {% from 'snippets/inventory.jinja' import inventory with context %}
{% from 'snippets/page-detail.jinja' import showDetail with context %}
{% from 'snippets/page-circuit.jinja' import showCircuit with context %}
{% from 'snippets/pages-nest.jinja' import showNestedPages with context %}
{% from 'snippets/page-cover.jinja' import showCoverPage with context %}
{% block content %} {% block content %}
{% if page['front'] and page['nested'] %}
{{ showCoverPage(page, documents, "X") }}
{% endif %}
{{ showDetail(page, false) }}
{{ showCircuit(page) }}
{{ showNestedPages(page, documents) }}
{% if false %}
<header> <header>
<h2>tempalte: post</h2>
<h1>{{page['title']}}</h1> <h1>{{page['title']}}</h1>
</header> </header>
@ -40,4 +55,5 @@
{{inventory("type", (page.type.capitalize() | slugify)) }} {{inventory("type", (page.type.capitalize() | slugify)) }}
{% endif %} {% endif %}
</article> </article>
{% endif %}
{% endblock %} {% block aside %} {% endblock %} {% endblock %} {% block aside %} {% endblock %}

View File

@ -0,0 +1,13 @@
{%- macro showCircuit(content) -%}
{% if content['pcb'] %}
<article template-type="circuit">
<header class="sm">
<h2>Paper circuit: {{content['title']}}</h2>
</header>
<section class="section--pcb">
<img src="{{ content['pcb']}}" class="media--pcb" />
</section>
</article>
{% endif %}
{%- endmacro -%}

View File

@ -0,0 +1,24 @@
{% from 'snippets/page-detail.jinja' import showDetail with context %}
{% from 'snippets/page-front.jinja' import pageFront with context %}
{% from 'snippets/page-circuit.jinja' import showCircuit with context %}
{%- macro showCoverPage(chapter, documents, index) -%}
<section class="meta">
<span data-chapter-title>{{chapter['title']}}</span>
</section>
<header class="page--cover">
<h3>Chapter {{index}}</h3>
<h1>{{chapter['title']}}</h1>
{% if chapter['nested'] %}
<ul class="list--frontpage">
{% for nest in documents[chapter['nested']] %}
<li><h3>{{nest['title']}} +<ins> (pagenr/link)</ins></h3></li>
{% endfor %}
</ul>
{% endif %}
</header>
{%- endmacro -%}

View File

@ -0,0 +1,84 @@
{%- macro showDetail(content, parentChapter) -%}
<article>
<section class="meta">
<span data-chapter-title>{{content['title']}}</span>
</section>
<header>
<h2>[[chapter title]]</h2>
<h1>{{content['title']}}</h1>
{% if content['alsoKnownAs'] %}
<h5>Also known as {{content['alsoKnownAs']}}</h5>
{% endif %}
{% if content['shortDescription'] %}
<p>{{content['shortDescription'] }}</p>
{% endif %}
{% if content['sample'] %}
<div class="sample fn-sample">
<audio src="{{ content['sample'] }}"></audio>
<svg class="icon play" width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 2.52588V9.52588L9.5 6.02588L4 2.52588Z" fill="black"/>
</svg>
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" class="icon pause" xmlns="http://www.w3.org/2000/svg">
<path d="M3 9.5H5V2.5H3V9.5ZM7 2.5V9.5H9V2.5H7Z" fill="black"/>
</svg>
<label for="">play sample (web only)</label>
</div>
{% endif %}
</header>
{% if content['BOM'] %}
<aside>
<h4>BOM</h4>
<ul>
{% for thing in content['BOM'] %}
<li>
{% if thing['type'] %}
{% if thing['label'] %}{{ thing['label'] }}{% endif %}
{{ thing['count'] }}
{{ thing['value'] }}
<a href="/components/{{ thing['type'] |slugify }}.html">{{thing['type']}}</a>
{% else %}
{{ thing }}
{% endif %}
</li>
{% endfor %}
</ul>
</aside>
{% endif %}
<section>
{{content['body']}}
</section>
{% if content['image'] %}<img
src="{{ content['image'] }}"
alt=""
/>{% endif %} {% if content['material'] %}
<dl>
<dt>Material</dt>
<dd>{{content['material']}}</dd>
<dt>Usage</dt>
<dd>{{content['usage']}}</dd>
<dt>Typically found in</dt>
<dd>{{content['whereToFind']}}</dd>
{% if content['schematicSymbol'] %}
<dt>Schematic symbol</dt>
<dd><img src="{{content['schematicSymbol']}}" /></dd>
{% endif %}
</dl>
{% endif %}
</article>
{%- endmacro -%}

View File

@ -0,0 +1,30 @@
{%- macro showFront(content) -%}
<article>
<section class="meta">
<span data-chapter-title>{{detail['title']}}</span>
</section>
<header>
<h1>{{detail['title']}}</h1>
<h5>Also known as {{detail['alsoKnownAs']}}</h5>
</header>
{% if detail['image'] %}<img src="{{ detail['image'] }}" alt="" />{% endif %}
<dl>
<dt>Material</dt>
<dd>{{detail['material']}}</dd>
<dt>Usage</dt>
<dd>{{detail['usage']}}</dd>
<dt>Typically found in</dt>
<dd>{{detail['whereToFind']}}</dd>
{% if detail['schematicSymbol'] %}
<dt>Schematic symbol</dt>
<dd><img src="{{detail['schematicSymbol']}}" /></dd>
{% endif %}
</dl>
{{detail['body']}}
</article>
{%- endmacro -%}

View File

@ -0,0 +1,14 @@
{% from 'snippets/page-detail.jinja' import showDetail with context %}
{% from 'snippets/page-front.jinja' import pageFront with context %}
{% from 'snippets/page-circuit.jinja' import showCircuit with context %}
{%- macro showNestedPages(chapter, documents) -%}
{% if chapter['nested']%}
<pre>{{ documents[chapter['nested']]|length }} </pre>
{% for nest in documents[chapter['nested']] %}
{{ showDetail(nest, chapter) }}
{{ showCircuit(nest) }}
{% endfor %}
{% endif %}
{%- endmacro -%}

View File

@ -1,7 +1,15 @@
{% from 'snippets/page-detail.jinja' import showDetail with context %}
{% from 'snippets/page-front.jinja' import pageFront with context %}
{% from 'snippets/page-circuit.jinja' import showCircuit with context %}
{% from 'snippets/pages-nest.jinja' import showNestedPages with context %}
%}
{% from 'snippets/page-cover.jinja' import showCoverPage with context %}
{% extends "base.jinja" %} {% extends "base.jinja" %}
{% block content %} {% block content %}
<section template-type="front"> <section template-type="front" jinja="thesis.jinja">
<section class="meta"> <section class="meta">
<span data-generated-date>{{documents["meta"]["now"]}}</span> <span data-generated-date>{{documents["meta"]["now"]}}</span>
<span data-publication-title>{{page['title']}}</span> <span data-publication-title>{{page['title']}}</span>
@ -21,74 +29,27 @@
</article> </article>
</section> </section>
{% for result in documents['chapters'] %} {% for chapter in documents['chapters'] %}
<section template-type="chapter"> <section template-type="chapter">
{% if result['front'] %} {% if chapter['front'] %}
<section class="meta"> {{ showCoverPage(chapter, documents, loop.inex0) }}
<span data-chapter-title>{{result['title']}}</span>
</section>
<header class="page--cover">
<h3>Chapter {{loop.index0}}</h3>
<h1>{{result['title']}}</h1>
{% if result['nested'] %}
<ul class="list--frontpage">
{% for nest in documents[result['nested']] %}
<li><h3>{{nest['title']}} +<ins> (pagenr/link)</ins></h3></li>
{% endfor %}
</ul>
{% endif %}
</header>
{% endif %} {% endif %}
<article> <article>
{% if not result['front'] %} {% if not chapter['front'] %}
<section class="meta"> <section class="meta">
<span data-chapter-title>{{result['title']}}</span> <span data-chapter-title>{{chapter['title']}}</span>
</section> </section>
{% endif %} {% endif %}
<header> <header>
<h1>{{result['title']}}</h1> <h1>{{chapter['title']}}</h1>
</header> </header>
{{result['body'] | shortcode}} {{chapter['body'] | shortcode}}
</article> </article>
</section> </section>
{% if result['nested']%} {{ showNestedPages(chapter, documents) }}
{% for nest in documents[result['nested']] %}
<article>
<section class="meta">
<span data-chapter-title>{{nest['title']}}</span>
</section>
<header>
<h1>{{nest['title']}}</h1>
<h5>Also known as {{nest['alsoKnownAs']}}</h5>
</header>
{% if nest['image'] %}<img src="{{ nest['image'] }}" alt="" />{% endif %}
<dl>
<dt>Material</dt>
<dd>{{nest['material']}}</dd>
<dt>Usage</dt>
<dd>{{nest['usage']}}</dd>
<dt>Typically found in</dt>
<dd>{{nest['whereToFind']}}</dd>
{% if nest['schematicSymbol'] %}
<dt>Schematic symbol</dt>
<dd><img src="{{nest['schematicSymbol']}}" /></dd>
{% endif %}
</dl>
{{nest['body']}}
</article>
{% endfor %}
{% endif %}
{% endfor %} {% endfor %}