Initial commit
533
static/css/careers.css
Normal file
@@ -0,0 +1,533 @@
|
||||
/* ══════════════════════════════════════════
|
||||
CAREERS — JOB BOARD
|
||||
══════════════════════════════════════════ */
|
||||
.careers-hero {
|
||||
background: var(--teal-pale);
|
||||
padding: 64px 64px 48px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.careers-hero h1 {
|
||||
font-family: var(--display);
|
||||
font-weight: 900;
|
||||
font-style: italic;
|
||||
font-size: clamp(2rem, 4vw, 3.2rem);
|
||||
letter-spacing: -0.03em;
|
||||
color: var(--black);
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.careers-hero h1 span {
|
||||
color: var(--teal);
|
||||
}
|
||||
|
||||
.careers-hero p {
|
||||
font-size: 17px;
|
||||
color: #555;
|
||||
font-weight: 300;
|
||||
max-width: 560px;
|
||||
margin: 0 auto;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
/* ── Filters ─────────────────────────────── */
|
||||
.careers-filters {
|
||||
padding: 28px 64px;
|
||||
border-bottom: 1px solid var(--gray);
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.filter-label {
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
color: #888;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: .08em;
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
.filter-chip {
|
||||
font-family: var(--body);
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
padding: 7px 18px;
|
||||
border-radius: 100px;
|
||||
border: 1.5px solid var(--gray-3);
|
||||
color: #555;
|
||||
background: var(--white);
|
||||
cursor: pointer;
|
||||
transition: all .15s;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.filter-chip:hover {
|
||||
border-color: var(--teal);
|
||||
color: var(--teal);
|
||||
}
|
||||
|
||||
.filter-chip.active {
|
||||
background: var(--teal);
|
||||
color: var(--white);
|
||||
border-color: var(--teal);
|
||||
}
|
||||
|
||||
/* ── Job grid ─────────────────────────────── */
|
||||
.jobs-grid {
|
||||
padding: 48px 64px;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
|
||||
gap: 24px;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.job-card {
|
||||
background: var(--white);
|
||||
border: 1.5px solid var(--gray);
|
||||
border-radius: 16px;
|
||||
padding: 28px;
|
||||
transition: border-color .2s, box-shadow .2s, transform .2s;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.job-card:hover {
|
||||
border-color: var(--teal);
|
||||
box-shadow: 0 8px 32px rgba(25, 112, 97, .12);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.job-card-header {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.job-dept-badge {
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
letter-spacing: .08em;
|
||||
text-transform: uppercase;
|
||||
padding: 4px 12px;
|
||||
border-radius: 100px;
|
||||
background: rgba(25, 112, 97, .1);
|
||||
color: var(--teal);
|
||||
}
|
||||
|
||||
.job-contract {
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
color: #888;
|
||||
padding: 4px 10px;
|
||||
border-radius: 100px;
|
||||
border: 1px solid var(--gray-3);
|
||||
}
|
||||
|
||||
.job-card-title {
|
||||
font-family: var(--display);
|
||||
font-weight: 700;
|
||||
font-size: 18px;
|
||||
color: var(--black);
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.job-card-meta {
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
font-size: 13px;
|
||||
color: #888;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.job-card-meta span {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.job-card-meta .material-icons-round {
|
||||
font-size: 16px;
|
||||
color: var(--teal-light);
|
||||
}
|
||||
|
||||
.job-card-footer {
|
||||
margin-top: auto;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.btn-apply {
|
||||
font-family: var(--body);
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
padding: 10px 22px;
|
||||
border-radius: 100px;
|
||||
background: var(--teal);
|
||||
color: var(--white);
|
||||
transition: filter .15s, transform .12s;
|
||||
}
|
||||
|
||||
.btn-apply:hover {
|
||||
filter: brightness(1.1);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.job-deadline {
|
||||
font-size: 12px;
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
.jobs-empty {
|
||||
grid-column: 1 / -1;
|
||||
text-align: center;
|
||||
padding: 80px 40px;
|
||||
color: #888;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
/* ══════════════════════════════════════════
|
||||
CAREERS — JOB DETAIL
|
||||
══════════════════════════════════════════ */
|
||||
.job-detail-hero {
|
||||
background: var(--teal-pale);
|
||||
padding: 64px 64px 48px;
|
||||
}
|
||||
|
||||
.job-detail-breadcrumb {
|
||||
font-size: 13px;
|
||||
color: #888;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.job-detail-breadcrumb a {
|
||||
color: var(--teal);
|
||||
}
|
||||
|
||||
.job-detail-breadcrumb a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.job-detail-title {
|
||||
font-family: var(--display);
|
||||
font-weight: 900;
|
||||
font-style: italic;
|
||||
font-size: clamp(2rem, 4vw, 3rem);
|
||||
letter-spacing: -0.03em;
|
||||
color: var(--black);
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.job-detail-tags {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
flex-wrap: wrap;
|
||||
margin-bottom: 28px;
|
||||
}
|
||||
|
||||
.job-tag {
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
padding: 6px 16px;
|
||||
border-radius: 100px;
|
||||
border: 1.5px solid var(--gray-3);
|
||||
color: #555;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.job-tag .material-icons-round {
|
||||
font-size: 15px;
|
||||
color: var(--teal);
|
||||
}
|
||||
|
||||
.btn-apply-lg {
|
||||
font-family: var(--display);
|
||||
font-size: 16px;
|
||||
font-weight: 800;
|
||||
padding: 14px 32px;
|
||||
border-radius: 100px;
|
||||
background: var(--teal);
|
||||
color: var(--white);
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
transition: filter .15s, transform .12s;
|
||||
}
|
||||
|
||||
.btn-apply-lg:hover {
|
||||
filter: brightness(1.1);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.job-detail-body {
|
||||
padding: 64px 64px;
|
||||
max-width: 860px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.job-section-title {
|
||||
font-family: var(--display);
|
||||
font-weight: 800;
|
||||
font-size: 1.3rem;
|
||||
color: var(--black);
|
||||
margin: 40px 0 16px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.job-section-title::before {
|
||||
content: '';
|
||||
display: block;
|
||||
width: 4px;
|
||||
height: 20px;
|
||||
background: var(--teal);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.job-detail-body p,
|
||||
.job-detail-body li {
|
||||
font-size: 16px;
|
||||
line-height: 1.75;
|
||||
color: #444;
|
||||
font-weight: 300;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.job-detail-body ul {
|
||||
list-style: disc;
|
||||
padding-left: 24px;
|
||||
}
|
||||
|
||||
.job-closed-banner {
|
||||
background: #fff3cd;
|
||||
border: 1px solid #ffc107;
|
||||
color: #856404;
|
||||
padding: 16px 24px;
|
||||
border-radius: 12px;
|
||||
margin-bottom: 32px;
|
||||
font-size: 15px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
/* ══════════════════════════════════════════
|
||||
CAREERS — APPLICATION FORM
|
||||
══════════════════════════════════════════ */
|
||||
.apply-wrapper {
|
||||
max-width: 700px;
|
||||
margin: 0 auto;
|
||||
padding: 64px 32px;
|
||||
}
|
||||
|
||||
.apply-job-ref {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
color: var(--teal);
|
||||
background: rgba(25, 112, 97, .1);
|
||||
padding: 6px 14px;
|
||||
border-radius: 100px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.apply-title {
|
||||
font-family: var(--display);
|
||||
font-weight: 900;
|
||||
font-style: italic;
|
||||
font-size: clamp(1.8rem, 3vw, 2.4rem);
|
||||
letter-spacing: -0.03em;
|
||||
color: var(--black);
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.apply-subtitle {
|
||||
font-size: 16px;
|
||||
color: #666;
|
||||
font-weight: 300;
|
||||
margin-bottom: 40px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* Form fields */
|
||||
.form-group {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.form-label {
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
color: var(--black);
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.form-label.required::after {
|
||||
content: ' *';
|
||||
color: #e53935;
|
||||
}
|
||||
|
||||
.form-input,
|
||||
.form-textarea,
|
||||
.form-file-input {
|
||||
width: 100%;
|
||||
font-family: var(--body);
|
||||
font-size: 15px;
|
||||
font-weight: 400;
|
||||
padding: 12px 16px;
|
||||
border-radius: 12px;
|
||||
border: 1.5px solid var(--gray-3);
|
||||
outline: none;
|
||||
background: var(--white);
|
||||
transition: border-color .2s;
|
||||
color: var(--black);
|
||||
}
|
||||
|
||||
.form-input:focus,
|
||||
.form-textarea:focus {
|
||||
border-color: var(--teal);
|
||||
box-shadow: 0 0 0 3px rgba(25, 112, 97, .08);
|
||||
}
|
||||
|
||||
.form-textarea {
|
||||
resize: vertical;
|
||||
min-height: 160px;
|
||||
}
|
||||
|
||||
.form-file-input {
|
||||
padding: 10px 16px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.form-help {
|
||||
font-size: 12px;
|
||||
color: #999;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.form-error {
|
||||
font-size: 13px;
|
||||
color: #e53935;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.form-row {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.btn-submit {
|
||||
font-family: var(--display);
|
||||
font-size: 16px;
|
||||
font-weight: 800;
|
||||
padding: 14px 36px;
|
||||
border-radius: 100px;
|
||||
background: var(--teal);
|
||||
color: var(--white);
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
transition: filter .15s, transform .12s;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.btn-submit:hover {
|
||||
filter: brightness(1.1);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/* ── Success page ─────────────────────────── */
|
||||
.success-wrapper {
|
||||
max-width: 560px;
|
||||
margin: 80px auto;
|
||||
padding: 0 32px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.success-icon {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border-radius: 50%;
|
||||
background: var(--teal-pale);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin: 0 auto 28px;
|
||||
}
|
||||
|
||||
.success-icon .material-icons-round {
|
||||
font-size: 40px;
|
||||
color: var(--teal);
|
||||
}
|
||||
|
||||
.success-title {
|
||||
font-family: var(--display);
|
||||
font-weight: 900;
|
||||
font-style: italic;
|
||||
font-size: 2rem;
|
||||
letter-spacing: -0.03em;
|
||||
color: var(--black);
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.success-body {
|
||||
font-size: 16px;
|
||||
color: #666;
|
||||
line-height: 1.7;
|
||||
font-weight: 300;
|
||||
margin-bottom: 36px;
|
||||
}
|
||||
|
||||
.btn-back {
|
||||
font-family: var(--body);
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
padding: 12px 28px;
|
||||
border-radius: 100px;
|
||||
border: 1.5px solid var(--teal);
|
||||
color: var(--teal);
|
||||
transition: all .15s;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.btn-back:hover {
|
||||
background: var(--teal);
|
||||
color: var(--white);
|
||||
}
|
||||
|
||||
/* ── Responsive ──────────────────────────── */
|
||||
@media (max-width: 768px) {
|
||||
.careers-hero,
|
||||
.careers-filters,
|
||||
.jobs-grid,
|
||||
.job-detail-hero,
|
||||
.job-detail-body {
|
||||
padding-left: 24px;
|
||||
padding-right: 24px;
|
||||
}
|
||||
|
||||
.jobs-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.form-row {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.apply-wrapper {
|
||||
padding: 40px 20px;
|
||||
}
|
||||
}
|
||||
1753
static/css/home.css
Normal file
BIN
static/img/JooL Monitor.jpg
Normal file
|
After Width: | Height: | Size: 513 KiB |
BIN
static/img/Kiriq AI.jpg
Normal file
|
After Width: | Height: | Size: 399 KiB |
BIN
static/img/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
static/img/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 511 B |
BIN
static/img/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
static/img/favicon.ico
Normal file
|
After Width: | Height: | Size: 533 B |
BIN
static/img/icon-192.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
static/img/icon-512.png
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
static/img/logo (2).png
Normal file
|
After Width: | Height: | Size: 119 KiB |
BIN
static/img/logo.png
Normal file
|
After Width: | Height: | Size: 119 KiB |
BIN
static/img/partenaires/Archetyp.jpeg
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
463
static/img/partenaires/Tony's_Chocolonely.svg
Normal file
@@ -0,0 +1,463 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="1000.0001"
|
||||
height="507.81265"
|
||||
viewBox="0 0 1000.0001 507.81266"
|
||||
version="1.1"
|
||||
id="svg53"
|
||||
sodipodi:docname="62baf26956eaf555635bcef2_Frame.svg"
|
||||
style="fill:none"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
||||
<metadata
|
||||
id="metadata57">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#111111"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1017"
|
||||
id="namedview55"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="0.45467033"
|
||||
inkscape:cx="513.51661"
|
||||
inkscape:cy="0.29789045"
|
||||
inkscape:window-x="1912"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg53" />
|
||||
<defs
|
||||
id="defs51">
|
||||
<clipPath
|
||||
id="clip0_871_2377">
|
||||
<rect
|
||||
width="181.356"
|
||||
height="50.653801"
|
||||
transform="translate(0.322021,0.904297)"
|
||||
id="rect48"
|
||||
x="0"
|
||||
y="0"
|
||||
style="fill:#ffffff" />
|
||||
</clipPath>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter2473"
|
||||
x="-0.020400483"
|
||||
width="1.040801"
|
||||
y="-0.020399516"
|
||||
height="1.040799">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.67422904"
|
||||
id="feGaussianBlur2475" />
|
||||
</filter>
|
||||
</defs>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path157"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="M 0.90383,227.1525 0,22.732402 l 161.7102,5.007 4.23684,193.584198 -28.34045,2.4961 -0.8345,-7.4982 c 0,0 -0.83202,-30.0119 -16.67245,-30.0119 -12.50745,0 -9.16701,30.0119 -9.16701,30.0119 l 0.12388,82.7508 c 0,0 2.25585,18.5717 15.60025,28.5681 6.86164,5.1531 20.99594,5.735 20.99594,5.735 l 3.90503,49.1111 -128.21671,-5.4972 -1.71603,-46.0108 c 0,0 8.33746,2.5035 18.34391,-7.503 9.99653,-10.0016 9.47158,-79.6777 9.47158,-79.6777 L 49.2498,200.4811 c 0,0 -0.052,-20.2877 -12.50248,-21.6745 -7.50545,-0.832 -8.33746,24.178 -8.33746,24.178 l 0.83201,27.506 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path161"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 274.57231,344.8154 c -27.50349,-0.8395 -27.4391,-27.4392 -27.4391,-27.4392 l -3.97188,-123.5736 c 0,0 -0.78991,-20.8327 27.2014,-17.6952 19.23535,2.1568 16.90027,22.717 16.90027,22.717 l 0.89144,125.5671 c 0,0 -2.68176,20.7558 -13.58213,20.4239 M 346.5167,40.140102 c -11.32132,-15.0977 -32.96606,-13.7778 -32.96606,-13.7778 l -94.27255,-1.711 c 0,0 -16.87302,0.1337 -26.38423,9.6424 -11.35598,11.3485 -14.68404,31.0742 -14.68404,31.0742 L 179.5866,327.0831 c 0,0 -3.33795,39.1814 6.6685,50.8469 10.00395,11.673 24.168,9.999 24.168,9.999 l 112.34904,3.7367 c 0,0 8.57022,0.5497 19.40621,-8.6198 10.83846,-9.167 9.77615,-38.0597 9.77615,-38.0597 l 4.94751,-249.440498 c 0,0 1.53774,-39.5182 -10.38531,-55.4056" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path165"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 362.51611,381.756 v -44.6042 c 0,0 12.10134,1.6168 16.93989,-3.2267 4.84103,-4.8385 4.84103,-20.1615 4.84103,-20.1615 l 1.04498,-119.7207 c 0,0 0.90877,-5.9677 -4.22446,-11.3262 -5.26447,-5.4972 -15.13471,-6.4135 -15.13471,-6.4135 l -5.07132,-151.854698 89.52561,4.0338 67.68776,262.589298 0.30458,-83.2732 c 0,0 -1.61699,-11.294 -5.65077,-13.7184 -4.03625,-2.4217 -12.9482,-2.4886 -12.9482,-2.4886 l -19.54736,-159.885098 90.33041,-4.8387 3.46424,169.636798 -2.92691,-0.3443 c 0,0 -9.9792,0.3443 -15.62006,4.3805 -5.65075,4.0287 -3.23148,11.2866 -3.23148,11.2866 l 18.42068,166.1427 -75.46311,2.2855 -59.10266,-112.0047 -0.23525,43.0912 c 0,0 -2.42175,14.5183 5.64581,19.3567 8.06509,4.8436 19.35916,6.4532 19.35916,6.4532 l 0.79983,45.4115 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path169"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 578.47878,22.029102 6.37631,148.417798 c 0,0 8.77822,0.9782 17.54656,6.827 8.7708,5.839 14.61718,14.6221 14.61718,14.6221 l 30.30906,54.5762 -2.52823,62.7947 c 0,0 1.94879,15.5904 -6.82697,22.4174 -8.77081,6.8243 -22.39503,5.5442 -22.39503,5.5442 l -4.82122,43.3909 133.70651,-2.3004 -1.5204,-49.2918 c 0,0 -21.459,2.6571 -29.2492,-5.1431 -7.7977,-7.7977 -6.2674,-21.5928 -6.2674,-21.5928 l -2.9244,-44.379 47.5684,-60.0238 c 0,0 3.3553,-6.3639 8.8104,-10.7591 5.1976,-4.1824 18.9159,-3.036 18.9159,-3.036 l 2.6447,-160.727098 -88.1836,1.2802 -0.7007,144.156298 c 0,0 11.4451,-0.4829 18.75,3.6276 9.682,5.4476 7.0572,14.5849 7.0572,14.5849 l -34.3007,37.7354 -26.58976,-40.8257 c 0,0 -3.92235,-8.3053 0,-12.0987 7.21079,-6.9782 19.26012,-7.2233 19.26012,-7.2233 l 0.73294,-138.376698 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path173"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 747.72345,281.4481 c 0,0 35.5859,0.8718 53.8159,-15.6151 18.2226,-16.4867 23.4301,-39.9242 4.3334,-55.5467 -19.0918,-15.6176 -49.4627,-10.4151 -54.6752,6.079 -5.21,16.4843 16.4917,35.5811 16.4917,35.5811 l -24.3017,-0.8692 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path177"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 93.40265,396.4284 3.18444,36.66063 -34.26112,1.59223 c 0,0 -0.38876,-23.55886 -17.13799,-23.90056 -19.12392,-0.4036 -25.32687,23.36569 -24.66325,38.31965 0.76762,17.33113 6.91364,32.3148 29.2839,32.05727 26.50556,-0.30954 25.89145,-24.03925 25.89145,-24.03925 l 0.12629,-6.52486 18.8144,0.35905 0.59677,51.28768 -23.0636,0.29962 -2.08746,-13.12154 c 0,0 -2.24595,11.15046 -29.67019,11.40055 -20.65672,0.20058 -41.41744,-26.99833 -39.84998,-54.97972 1.63184,-29.19225 8.95157,-55.76475 47.556,-57.20345 26.82005,-0.9979 29.82372,15.8009 29.82372,15.8009 l 1.38668,-8.7312 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path181"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 383.21022,402.6173 4.62311,41.63286 -20.6468,-2.07757 c 0,0 -4.89055,-22.73429 -20.32984,-23.06109 -24.72764,-0.5275 -28.02844,20.80277 -27.40692,35.25404 0.72307,16.74676 5.23475,30.04906 26.27033,29.36068 20.56262,-0.6884 21.1272,-18.29193 21.1272,-18.29193 l 24.04171,-1.15392 0.33429,37.15582 -20.95386,1.44117 -1.96365,-7.68125 c 0,0 -4.74693,9.6152 -30.5542,9.86035 -19.43345,0.18571 -36.64077,-23.25676 -35.17238,-50.3071 1.53774,-28.22159 4.53893,-50.32446 40.86523,-51.71606 25.22783,-0.9682 30.03915,16.5115 30.03915,16.5115 l 0.1833,-18.074 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path185"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 102.20169,390.5578 -1.24059,28.182 c 0,0 7.89917,1.513 8.37461,3.645 0.47543,2.13202 1.65659,8.28051 1.65659,8.28051 l 1.34213,53.81094 c 0,0 0.0817,2.45643 -3.22653,4.34579 -3.31072,1.8968 -5.52694,0.85926 -5.52694,0.85926 l -1.18365,12.78228 42.11324,0.94098 -3.30823,-18.68563 c 0,0 -6.77993,1.38421 -9.85787,-1.45355 -3.07548,-2.84023 -3.23396,-9.96188 -3.23396,-9.96188 l 0.0693,-22.44701 37.15582,-1.25298 2.36975,30.4081 c 0,0 -0.007,4.25417 -2.36975,5.91573 -2.36727,1.65411 -4.25664,1.41392 -4.25664,1.41392 l -9.90739,-0.55962 -1.65908,18.81438 49.98023,0.3739 -2.3648,-19.40372 c 0,0 -10.76664,1.84479 -13.40631,-1.19355 -1.88936,-2.17907 -1.99089,-3.89016 -1.99089,-3.89016 l 1.66402,-65.76619 c 0,0 -1.1861,-2.1271 1.6566,-4.0214 2.83033,-1.8918 5.43533,-1.1836 5.43533,-1.1836 l 0.71563,-17.5095 -37.73279,-2.7114 0.65619,17.3955 c 0,0 7.09689,-1.8993 8.98872,0.7082 1.8968,2.6025 1.41888,5.9157 1.41888,5.9157 l 0.55221,18.02448 -36.44021,0.0618 0.0891,-8.11956 c 0,0 -0.22533,-2.60002 3.07548,-4.02382 3.31072,-1.4164 6.39116,-0.7033 6.39116,-0.7033 l 0.71562,-29.3829 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path189"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 256.34107,492.24568 c -12.03943,1.20098 -30.66563,-14.72614 -29.46467,-44.81482 1.20841,-30.09366 11.10589,-34.33536 20.43633,-34.63506 16.84333,-0.5373 26.47834,12.64614 27.37968,38.22065 0.9063,25.57698 -6.31686,40.02331 -18.35134,41.22923 M 240.18118,398.5204 c -22.8655,0.3021 -40.32293,19.5597 -41.22674,45.43383 -0.90136,25.88156 10.23178,64.99857 46.94437,63.19587 36.71258,-1.80764 48.14781,-17.75704 47.84819,-52.9616 -0.30705,-35.212 -21.36987,-56.099 -53.56582,-55.6681" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path193"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 464.45879,454.49506 c -4.48444,27.19644 -13.68365,34.53845 -25.71813,35.74437 -12.03695,1.20345 -25.10154,-11.95276 -23.89314,-42.0439 1.20098,-30.08623 15.77607,-32.36433 25.10155,-32.66143 16.85074,-0.5448 28.66978,13.71331 24.50972,38.96096 M 445.63449,401.999 c -32.36432,-0.9014 -48.94516,24.25218 -49.84403,50.12878 -0.90136,25.88156 4.24921,53.07056 40.67702,55.4626 36.67793,2.4069 46.22131,-14.74348 51.45854,-50.9831 C 492.96267,421.7543 477.823,402.9053 445.63449,401.999" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path197"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 617.84293,485.46724 c -12.09144,0.36897 -22.4916,-9.011 -21.29063,-39.09471 1.20345,-30.10353 11.01179,-31.45063 20.33976,-31.75023 16.84825,-0.5448 24.50229,13.74803 25.40859,39.32254 0.89638,25.57945 -4.80142,30.91821 -24.45772,31.5224 m 45.5131,-30.06885 c -0.29962,-35.20949 -15.77854,-56.01729 -47.97942,-55.59389 -22.86551,0.3071 -40.53343,21.3031 -41.43477,47.18212 -0.90134,25.88156 12.71296,56.65863 49.47508,56.65863 32.82985,0 40.24368,-13.0423 39.93911,-48.24686" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path201"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 489.33625,395.5036 47.01618,1.3644 0.56209,14.3027 c 0,0 -13.09182,-0.2774 -14.78804,3.0977 -1.34459,2.6769 -0.83944,9.53105 -0.83944,9.53105 l 1.46097,58.26818 22.72685,-0.25504 c 0,0 5.33131,0 7.57477,-3.0854 2.241,-3.09281 0.48783,-21.26585 0.48783,-21.26585 h 13.73812 l 8.42662,49.35869 -84.30574,-2.33014 -0.28229,-10.93997 c 0,0 6.46049,-1.2208 8.42414,-5.42791 1.95621,-4.20959 1.29506,-9.90491 1.29506,-9.90491 l -2.24098,-56.9211 c 0,0 0.2798,-6.7304 -1.96613,-9.2487 -2.24099,-2.5208 -6.16581,-1.1242 -6.16581,-1.1242 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path205"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 839.80795,393.7417 42.5763,2.1742 0.9014,17.5193 c 0,0 -5.9603,0.064 -8.1666,2.8699 -2.2064,2.8031 -1.3966,9.4642 -1.3966,9.4642 l 3.4716,61.79928 18.0716,-0.12629 c 0,0 4.6602,0 6.6239,-3.07795 1.9587,-3.08786 0.676,-19.03726 0.676,-19.03726 l 23.2468,-0.006 0.7429,37.86899 -83.8179,-1.41394 0.8345,-10.59329 c 0,0 8.3399,0.56458 10.0535,-3.64255 1.721,-4.20464 0.8394,-9.21901 0.8394,-9.21901 l -2.2682,-54.52409 c 0,0 0.2427,-6.73039 -1.716,-9.24869 -1.9661,-2.5258 -9.9693,-1.1242 -9.9693,-1.1242 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path209"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 668.34439,505.22236 -1.1564,-20.92662 c 0,0 1.77794,0.19314 4.4696,-1.69622 2.69661,-1.88192 2.53318,-5.30655 2.53318,-5.30655 L 672.45989,420.466 c 0,0 0.047,-3.1473 -2.10975,-4.7643 -2.15432,-1.617 -5.89591,-1.2109 -5.89591,-1.2109 l -0.88401,-15.5705 26.39663,-0.5374 39.5157,60.56863 0.3491,-42.25683 c 0,0 0.2551,-4.019 -1.8819,-5.3809 -2.9666,-1.8869 -6.6314,-2.7189 -6.6314,-2.7189 l -0.9806,-19.4013 39.1839,-2.4935 -0.463,22.1177 c 0,0 -6.5868,-0.4136 -9.0111,1.7408 -2.4217,2.1543 -2.704,6.1361 -2.704,6.1361 l 2.1519,87.81697 -24.7822,-1.88688 -35.9102,-76.78789 1.3842,49.61869 c 0,0 -0.2155,5.13819 1.9413,6.48774 2.1568,1.34459 8.6198,1.81507 8.6198,1.81507 l 1.9686,22.54112 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path213"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 764.58065,398.9195 0.5348,9.1547 c 0,0 5.2942,-0.1685 6.6413,1.7135 1.3495,1.8869 1.4486,3.6822 1.4486,3.6822 l -0.4953,73.2097 c 0,0 0,1.87946 -2.1518,3.50634 -2.1544,1.61203 -5.6607,0.80726 -5.6607,0.80726 l -0.045,12.4381 74.7302,0.89144 -2.506,-40.2635 -16.5016,0.53487 c 0,0 0.8989,14.95395 -1.2604,17.65305 -2.1518,2.6867 -5.1159,2.15184 -5.1159,2.15184 l -26.0375,-2.76099 -0.1436,-25.34669 11.4575,-0.83697 c 0,0 4.0388,-0.5423 5.6557,1.0722 1.617,1.61945 1.0822,5.92809 1.0822,5.92809 h 7.0003 l 0.6562,-24.97276 -13.7654,-0.90879 c 0,0 -0.3071,6.54963 -1.6591,8.16662 -1.3421,1.61696 -3.1151,1.47582 -3.1151,1.47582 l -6.3639,0.0916 -0.1387,-32.30243 28.016,-0.8073 c 0,0 4.5786,0 5.9232,2.4193 1.3495,2.4267 0.3541,8.89216 0.3541,8.89216 l 9.9619,0.53735 0.9929,-27.20391 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path217"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 893.18555,397.6284 2.2262,16.8062 c 0,0 5.5913,-0.671 7.6862,2.3326 2.0973,3.0012 6.6363,7.68375 6.6363,7.68375 l 29.3606,36.07125 0.3071,27.87492 c 0,0 0.7032,2.0008 -1.7507,4.34084 -2.444,2.33508 -5.938,1.66897 -5.938,1.66897 l 0.3913,10.50663 42.081,-0.64876 -0.2625,-14.29527 c 0,0 -3.2835,-0.39125 -6.3292,-2.53318 -1.8844,-1.32478 -2.0503,-4.82618 -2.0503,-4.82618 l 0.7725,-24.44039 11.7943,-29.23933 c 0,0 0.6785,-4.73455 5.7201,-7.69855 3.7144,-2.189 9.3478,-1.4338 9.3478,-1.4338 l -0.2873,-18.3637 -37.8689,-2.1023 -0.1733,12.859 c 0,0 8.7906,-0.1361 9.6845,2.8328 0.4928,1.6368 -1.2307,3.7466 -1.2307,3.7466 l -16.197,25.58687 -25.3417,-28.23647 c 0,0 -2.2608,-3.0334 -0.9583,-4.269 2.6768,-2.5604 5.4997,-1.3941 5.4997,-1.3941 l -0.6859,-12.6734 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path221"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 989.09715,320.7912 c 0,0 -1.3545,-34.3428 -12.2648,-55.6507 -10.9003,-21.3154 -47.4222,-7.5749 -70.9217,-10.8658 -32.555,-4.566 -29.9846,-24.8638 -29.9846,-24.8638 l -2.5704,-61.8116 c 0,0 -5.1208,-16.3977 14.1839,-15.9196 24.527,0.5917 22.7367,32.5896 22.7367,32.5896 l 3.8704,44.171 76.2134,5.4527 9.64005,-206.658798 -42.24955,-1.1886 -10.1897,134.582998 c 0,0 -2.397,-87.569398 -4.2368,-101.104398 -3.9644,-29.1948 -36.0811,-31.7973 -36.0811,-31.7973 l -38.2207,2.4887 c 0,0 -19.0793,0 -47.6971,5.9206 -28.6302,5.9207 -29.9921,34.3304 -29.9921,34.3304 l 2.5282,95.062498 c 0,0 -0.2476,10.8881 0.1287,26.1986 8.0948,1.4683 16.1698,5.0465 23.0067,11.0959 22.4247,19.8272 16.3134,49.5716 -5.0936,70.5057 -1.6863,1.6492 -3.5113,3.1473 -5.423,4.5341 1.9042,3.9717 4.0908,7.0597 6.6091,8.9192 37.6882,28.0237 66.2292,14.3772 81.2228,20.2978 14.9911,5.9207 12.6511,23.8263 12.6511,23.8263 l -0.079,11.6208 c 0,0 -4.5266,8.865 -18.2919,9.1473 -56.0272,1.144 -54.8832,-28.5831 -54.8832,-28.5831 l -1.3099,-13.4064 -62.7205,-11.7546 2.5803,85.1278 47.6971,-1.1885 v -32.0772 c 0.8716,4.3161 2.5084,9.1993 5.4551,14.3176 9.541,16.5759 34.0705,18.9481 34.0705,18.9481 l 99.4924,1.1837 c 0,0 15.5433,-2.2633 24.4008,-10.1971 11.0564,-9.9149 8.3102,-27.6918 8.3102,-27.6918 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path229"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 9.24203,216.8137 8.75843,-172.786498 129.16264,7.0399 8.47118,163.327198 -9.38987,0.4805 -6.458,-41.0016 c 0,0 -3.50881,-18.7598 -25.89889,-16.3405 -23.45733,2.5356 -18.74507,43.5544 -18.74507,43.5544 l -2.14689,102.5654 c 0,0 -1.13659,19.0869 16.14997,31.7502 5.74981,4.2072 23.01161,4.9103 23.01161,4.9103 l -1.81507,31.4532 -94.91886,-1.4412 -6.09153,-36.8785 c 0,0 16.9077,3.6921 24.0442,-12.5298 4.84847,-11.0215 6.12124,-26.5302 6.12124,-26.5302 L 58.46207,173.8732 c 0,0 -0.28725,-29.4547 -25.05947,-30.6333 -12.70306,-0.6067 -10.85578,30.0168 -10.85578,30.0168 l 0.60915,46.5804 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path233"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 306.39212,175.6879 -4.71969,162.4729 c 0,0 -5.54923,17.6778 -33.70397,18.2052 -35.732,0.676 -33.70646,-24.2646 -33.70646,-24.2646 l -2.02554,-155.7449 c 0,0 -2.13452,-22.5262 35.732,-24.9381 44.49043,-2.8304 38.42366,24.2695 38.42366,24.2695 m 37.26478,160.2912 -4.22444,-233.1072 c 0,0 1.53774,-39.515698 -10.37788,-55.403198 -11.32875,-15.0901 -28.53856,-12.3712 -28.53856,-12.3712 l -53.52867,3.6401 c 0,0 -16.87303,0.1281 -26.37928,9.6498 -11.35598,11.3386 -14.69146,31.0642 -14.69146,31.0642 L 191.11123,329.3999 c 0,0 -4.95,25.1634 5.05151,36.8314 10.00645,11.668 24.1779,10.0065 24.1779,10.0065 l 94.14628,6.4208 c 0,0 8.56528,0.5547 19.40125,-8.6123 10.83352,-9.172 9.76873,-38.0672 9.76873,-38.0672" />
|
||||
<path
|
||||
d="m 111.6924,612.0832 c -21.897,-0.403 -39.319,-18.491 -38.909,-40.394 0.407,-21.899 18.499,-39.315 40.392,-38.915 21.902,0.411 39.323,18.495 38.913,40.394 -0.405,21.902 -18.487,39.328 -40.396,38.915"
|
||||
style="opacity:0.39500002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter2473)"
|
||||
id="path1550"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
transform="matrix(2.4436835,0,0,-2.4436835,-87.3569,1499.7094)" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path237"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 375.50048,373.4698 1.53525,-33.2507 c 0,0 8.98378,-2.2684 13.31221,-6.6587 4.32103,-4.3854 4.61075,-21.7784 4.61075,-21.7784 l 3.85549,-131.2625 c 0,0 0.81469,-5.4205 -3.77377,-10.2813 -4.70484,-4.9847 -13.52269,-5.8143 -13.52269,-5.8143 l -5.98753,-109.226398 64.0774,1.1514 82.00531,289.310398 5.30658,-162.0296 c 0,0 0.52743,-7.4833 -5.04657,-12.4356 -7.31726,-6.4977 -17.34104,-5.1061 -17.34104,-5.1061 l -11.31636,-114.748398 71.13714,-0.9806 -2.033,131.413498 c 0,0 -9.44186,-4.1377 -16.57587,3.6624 -4.2096,4.5933 -2.88482,10.2391 -2.88482,10.2391 l 13.23792,177.209 -58.7758,1.3198 -69.47311,-157.3891 -4.29872,96.5629 c 0,0 -1.09202,13.3817 6.11381,17.772 7.21077,4.3878 21.17177,8.4637 21.17177,8.4637 l -1.79527,33.3771 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path241"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 592.7701,44.775602 0.61907,100.913698 c 0,0 7.81249,0.8716 15.625,6.0791 7.81499,5.2101 13.02001,13.0225 13.02001,13.0225 l 34.47904,64.7262 -3.67473,91.2689 c 0,0 1.73088,13.8868 -6.08163,19.9659 -7.81498,6.0743 -19.9485,4.9351 -19.9485,4.9351 l -5.29666,25.1907 110.75435,-0.1263 -4.6999,-30.8984 c 0,0 -17.9081,4.9327 -24.849,-2.0132 -6.9458,-6.9359 -6.2425,-18.4775 -6.2425,-18.4775 l -1.825,-66.1477 49.5791,-70.2754 c 0,0 2.9912,-5.6705 7.8496,-9.5878 4.6207,-3.7218 16.8508,-2.7017 16.8508,-2.7017 l -2.3178,-131.074198 -55.6557,5.4402 -8.8352,108.676798 c 0,0 9.9346,0.083 16.6997,3.2389 21.407,9.9594 3.8604,31.3689 3.8604,31.3689 l -37.7353,49.6881 -39.18135,-64.7882 c 0,0 -4.74446,-8.0453 -3.16215,-12.6436 5.44523,-15.8454 26.01281,-12.0964 26.01281,-12.0964 L 658.93497,44.414002 Z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path245"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 822.08785,277.9564 c 32.7679,21.4294 77.5431,12.5124 90.8355,16.9672 17.5614,5.8835 16.2664,22.2216 16.2664,22.2216 l 1.503,13.5377 c 0,0 6.983,29.8311 -55.3511,27.7857 -49.6212,-1.6269 -50.3839,-36.8291 -50.3839,-36.8291 l -0.2476,-2.7634 -45.9514,-4.279 5.2075,60.5365 29.1725,0.4482 -0.5002,-50.827 c 0,0 9.4542,20.9314 18.0963,35.727 8.6346,14.783 30.2273,12.6461 30.2273,12.6461 l 85.0288,1.1167 c 0,0 13.5252,2.0776 26.7185,-7.3445 7.7927,-5.5665 7.8373,-17.5094 7.8373,-17.5094 l -1.8349,-26.617 c 0,0 0.8593,-24.0888 -9.0209,-43.1111 -9.8802,-19.0126 -39.9069,-17.1974 -61.2768,-14.9242 -48.9575,5.2123 -45.1045,-53.6303 -45.1045,-53.6303 l -2.3277,-55.1432 c 0,0 -3.7589,-29.2863 28.6797,-26.404 22.1251,1.9686 26.6641,27.392 26.6641,27.392 l 9.9841,61.8786 46.2337,2.2682 16.5808,-170.817798 -17.861,-0.098 -25.2501,150.898998 c 0,0 -14.3721,-110.229498 -16.041,-122.310998 -3.5906,-26.0351 -22.0509,-31.0692 -22.0509,-31.0692 l -13.5301,-1.5056 c 0,0 -37.3589,3.0458 -63.436,7.4831 -36.3883,6.1833 -28.9794,42.5343 -28.9794,42.5343 0,0 7.4089,83.191498 7.2851,89.376998 0,0 21.5779,1.877 28.4841,27.0207 12.5347,45.6096 -15.6572,65.3452 -15.6572,65.3452" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path249"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 757.42655,271.7193 c 0,0 21.4738,2.9616 35.7493,-9.952 14.2755,-12.9209 18.3588,-31.2748 3.3999,-43.5173 -14.9565,-12.235 -32.4436,-8.2878 -36.5269,4.6281 -4.0759,12.9136 20.9266,35.1551 20.9266,35.1551 l -25.0099,-0.6216 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path295"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 86.21539,98.307702 c 0.0273,-54.321 44.08928,-98.33859976 98.42521,-98.30629976 54.31114,0.028 98.33108,44.09669976 98.30633,98.42009976 C 282.90983,152.755 238.83784,196.7527 184.51925,196.728 130.19077,196.7 86.17825,152.6435 86.21539,98.307702" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path299"
|
||||
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 157.44936,108.6685 c -4.14026,-0.7479 -5.41304,-5.3908 -5.41304,-5.3908 l -15.98901,-5.564098 c 0,0 -1.45851,14.084798 8.85004,20.215998 10.35063,6.1436 17.10084,7.2627 17.10084,7.2627 l 35.93258,10.3359 c 14.65185,3.843 17.71742,-0.577 17.71742,-0.577 -20.30261,-9.4865 -21.18168,-14.117 -21.18168,-14.117 z m 82.02016,-7.1637 c 0.81715,4.2195 -0.0372,7.3568 -0.0372,7.3568 l 13.2107,2.3475 c -0.70821,3.6722 -1.69127,7.2183 -2.95415,10.6577 -10.71713,-2.4366 -27.10729,-6.2772 -30.96774,-7.9091 -5.84142,-2.4589 -4.51168,-4.8088 -3.16213,-5.4476 0,0 -0.14857,-3.977 -1.72099,-5.9629 -1.61945,-2.0156 -4.8336,-4.251598 -4.8336,-4.251598 0,0 -22.08797,6.762498 -8.15671,22.702098 5.89838,6.7649 17.27914,10.0038 17.27914,10.0038 l 23.64552,6.26 c -12.20038,17.7793 -32.51042,29.6132 -55.69783,30.0515 -36.42287,0.6736 -66.74925,-26.924 -70.06988,-62.6213 l 16.56845,4.3432 c 0,0 -2.11471,-7.3741 -2.0825,-9.652298 0.006,-2.2657 0.10901,-2.6693 0.10901,-2.6693 l -14.64195,-4.5142 c 0.17829,-2.0925 0.45562,-4.1354 0.80477,-6.1807 l 40.52104,12.6065 c 0,0 0.55962,4.231898 3.33299,5.046498 0,0 8.08491,2.6942 10.4497,-5.937998 2.36232,-8.6247 -5.40066,-13.4509 -11.09104,-15.7066 -4.43245,-1.7532 -28.13987,-8.5282 -38.51033,-11.4625 10.49674,-23.9453 34.17445,-40.8753 62.037,-41.4101 38.01755,-0.7057 69.43348,29.4547 70.32245,67.4477 l -17.00427,-4.0537 c 0,0 1.8324,4.9549 2.64955,8.956598 M 182.92729,0.04860224 C 128.70528,1.0466022 85.5644,45.836602 86.57966,100.0735 c 1.00782,54.227 45.80778,97.353 100.01987,96.3625 54.2344,-1.0177 97.37281,-45.7978 96.35754,-100.024898 C 281.9542,42.176702 237.17901,-0.97399776 182.92729,0.04860224 m 3.20672,64.81289976 4.2814,-3.4965 -10.78397,1.1639 2.8328,-1.9216 c 0,0 -21.64967,3.3603 -27.40691,6.8492 -5.76962,3.5039 -7.54012,5.5816 -7.54012,5.5816 0,0 10.04853,3.0234 12.91353,4.0881 2.85758,1.0475 5.08866,2.8155 5.08866,2.8155 4.39035,-1.5773 9.167,-1.5749 9.167,-1.5749 l 9.99406,-0.8617 -6.83686,-3.271 11.8859,-0.7553 -6.78486,-3.0309 18.74505,-1.8028 z m 28.94961,14.2607 -4.01149,-1.3695 2.40936,4.1131 -7.37669,-3.6847 3.60539,4.0834 -8.42661,-1.5675 5.87114,6.2425 -6.00981,-0.5348 6.0841,3.687 -1.63926,0.3963 3.72425,2.2311 c 0,0 5.75723,3.4222 8.38452,6.4085 2.61241,2.998598 2.33508,10.469498 2.33508,10.469498 0,0 2.47128,1.2331 5.77705,2.127 3.86786,1.0352 8.64946,1.9736 8.64946,1.9736 0,0 2.74862,-12.6709 -2.83776,-20.205998 -5.57647,-7.5476 -16.53873,-14.3695 -16.53873,-14.3695" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path303"
|
||||
style="fill:#f7941e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 234.34398,113.7034 c 0,0 -4.78408,-0.941 -8.65195,-1.9786 -3.31567,-0.8814 -5.76714,-2.127 -5.76714,-2.127 0,0 0.26248,-7.4683 -2.35489,-10.459598 -2.62233,-2.9913 -8.37957,-6.4134 -8.37957,-6.4134 l -3.7094,-2.2336 1.6467,-0.3887 -6.10639,-3.6822 6.02714,0.5274 -5.88352,-6.2425 8.42413,1.5675 -3.59052,-4.0834 7.36679,3.6748 -2.41929,-4.1107 4.00654,1.3719 c 0,0 10.97217,6.8195 16.55361,14.3769 5.58637,7.535298 2.83776,20.201198 2.83776,20.201198 m -51.51301,-43.254798 6.78238,3.0458 -11.88589,0.7452 6.82448,3.2663 -9.98663,0.8641 c 0,0 -4.77912,0 -9.15958,1.5749 0,0 -2.24346,-1.763 -5.07875,-2.8129 -2.87984,-1.0575 -12.916,-4.0958 -12.916,-4.0958 0,0 1.76059,-2.0774 7.52773,-5.5789 5.76466,-3.4865 27.40197,-6.8443 27.40197,-6.8443 l -2.84272,1.9291 10.80378,-1.1764 -4.27645,3.509 15.55817,3.7711 z m 32.71099,64.510698 c 0,0 -3.08043,4.4177 -17.7422,0.5696 l -35.93008,-10.321 c 0,0 -6.75764,-1.1366 -17.09342,-7.2727 -10.32588,-6.1385 -8.86243,-20.215898 -8.86243,-20.215898 l 16.00636,5.559098 c 0,0 1.27773,4.6429 5.43284,5.4007 l 36.98992,12.1583 c 0,0 0.87659,4.6355 21.19901,14.1219 M 183.37078,29.165002 c -27.86253,0.5248 -51.52291,17.4548 -62.02214,41.4049 10.35066,2.9343 34.05808,9.7143 38.50043,11.465 5.70771,2.2509 13.44593,7.0918 11.09847,15.7117 -2.37223,8.622098 -10.45464,5.928098 -10.45464,5.928098 -2.74862,-0.8171 -3.33054,-5.034198 -3.33054,-5.034198 l -40.51608,-12.6065 c -0.35409,2.0355 -0.63638,4.0808 -0.81467,6.1682 l 14.65928,4.5193 c 0,0 -0.11143,0.4085 -0.12629,2.6717 -0.0297,2.265698 2.08003,9.639998 2.08003,9.639998 l -16.5734,-4.3408 c 3.33795,35.6949 33.65443,63.3047 70.07234,62.6263 23.20476,-0.4407 43.49252,-12.2623 55.70775,-30.054 l -23.64056,-6.245 c 0,0 -11.38322,-3.2563 -17.29152,-10.0189 -13.92631,-15.9395 8.16909,-22.694598 8.16909,-22.694598 0,0 3.21166,2.233598 4.81875,4.241798 1.57982,1.9983 1.72839,5.9702 1.72839,5.9702 -1.33467,0.6315 -2.6669,2.9838 3.17454,5.4477 3.84558,1.6218 20.2407,5.4651 30.95536,7.9091 1.26038,-3.4395 2.25583,-6.9904 2.95166,-10.6553 l -13.19832,-2.3573 c 0,0 0.84687,-3.1374 0.0223,-7.352 -0.80724,-3.991698 -2.63223,-8.958998 -2.63223,-8.958998 l 16.99685,4.0586 c -0.88649,-37.9879 -32.30738,-68.1632 -70.33484,-67.445" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path307"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 102.39707,121.5017 c 0.1287,0.4606 0.43086,0.7678 0.91126,0.9262 0.48533,0.1578 1.0821,0.1318 1.78782,-0.054 0.72801,-0.2031 1.24555,-0.4953 1.57488,-0.8717 0.32687,-0.3837 0.4284,-0.8172 0.29221,-1.2974 -0.26743,-0.9832 -1.16879,-1.2605 -2.69661,-0.8421 -1.52288,0.4234 -2.14689,1.1318 -1.86956,2.1395 m 6.4902,-1.867 c 0.36401,1.3098 0.27238,2.4217 -0.26743,3.3379 -0.53735,0.9089 -1.48327,1.5525 -2.82043,1.9192 -1.3347,0.3714 -2.4688,0.3019 -3.40234,-0.1908 -0.94592,-0.5051 -1.58478,-1.3916 -1.94136,-2.6619 -0.34172,-1.2554 -0.24515,-2.345 0.29466,-3.2736 0.53735,-0.9236 1.45108,-1.565 2.73871,-1.9166 1.3446,-0.3789 2.501,-0.317 3.45188,0.169 0.94838,0.4927 1.6021,1.3717 1.94631,2.6173" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path311"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 100.2935,110.9949 c 0.057,0.4209 0.30211,0.7206 0.72555,0.9037 0.41847,0.1858 0.97811,0.2205 1.66649,0.1189 0.67107,-0.104 1.19355,-0.302 1.55756,-0.6017 0.36153,-0.2972 0.50762,-0.6463 0.44819,-1.0475 -0.057,-0.4059 -0.30705,-0.7031 -0.74287,-0.8962 -0.43086,-0.1932 -0.98553,-0.2353 -1.66154,-0.1356 -0.66858,0.104 -1.18365,0.3046 -1.54765,0.6043 -0.35409,0.3046 -0.50763,0.6586 -0.44573,1.0549 m -1.00038,1.9883 0.49772,-0.072 c -0.96079,-0.5398 -1.52041,-1.3148 -1.67145,-2.3177 -0.14356,-0.9832 0.12387,-1.825 0.78991,-2.5233 0.67354,-0.6959 1.64917,-1.1416 2.93929,-1.3372 1.32231,-0.1907 2.41926,-0.059 3.28595,0.4184 0.85926,0.4781 1.37184,1.2085 1.52041,2.2138 0.052,0.3963 0.0422,0.7677 -0.0644,1.1119 -0.0645,0.2154 -0.22286,0.5571 -0.46554,1.0227 l 1.24802,-0.1883 c 0.33429,-0.046 0.48039,-0.1956 0.44325,-0.4532 -0.0149,-0.104 -0.0544,-0.2252 -0.10159,-0.3614 -0.052,-0.1801 -0.0891,-0.322 -0.104,-0.4086 -0.0719,-0.4854 0.17588,-0.7751 0.73544,-0.8569 0.65124,-0.098 1.02516,0.1884 1.12421,0.8618 0.0321,0.1957 0.052,0.4879 0.0693,0.8964 0.0199,0.5052 0.0669,1.0005 0.13873,1.4882 0.0347,0.2006 0.14356,0.6563 0.33429,1.3546 0.0273,0.1282 0.0496,0.2229 0.0594,0.2897 0.0396,0.2797 -0.0223,0.5323 -0.18819,0.7429 -0.17587,0.208 -0.41849,0.3465 -0.7305,0.3887 -0.59923,0.089 -0.94095,-0.1281 -1.01773,-0.6561 -0.009,-0.089 -0.009,-0.169 0.006,-0.2502 0.013,-0.1956 0.0199,-0.2921 0.0199,-0.2799 -0.0297,-0.1931 -0.34419,-0.25 -0.96077,-0.1541 l -5.36847,0.7973 c -0.61409,0.089 -0.9063,0.2303 -0.87906,0.4136 0,0.03 0.0446,0.1244 0.12128,0.2822 0.0321,0.104 0.0594,0.1858 0.0693,0.2476 0.0793,0.5176 -0.1807,0.8196 -0.7924,0.9137 -0.30952,0.047 -0.58934,0 -0.81716,-0.1411 -0.23522,-0.143 -0.36894,-0.3492 -0.40857,-0.6216 l -0.013,-0.1096 v -0.5844 c 0.013,-0.076 0,-0.2353 -0.0372,-0.4731 -0.0544,-0.312 -0.12127,-0.6065 -0.21543,-0.8617 -0.0496,-0.1411 -0.0719,-0.2327 -0.0743,-0.3046 -0.047,-0.2674 0.12388,-0.4332 0.50764,-0.4902" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path315"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 100.05852,97.544702 3.54101,-0.4878 -4.75932,-1.3396 c -0.46554,-0.1393 -0.77011,-0.3245 -0.92116,-0.5423 -0.14356,-0.2179 -0.20057,-0.6216 -0.16584,-1.1862 0.0371,-0.6437 0.14616,-1.0623 0.31943,-1.2504 0.16845,-0.1881 0.56458,-0.3269 1.18116,-0.416 l 4.67761,-0.6463 -3.60541,-1.0945 c -0.0841,-0.022 -0.16101,-0.035 -0.2278,-0.043 -0.16584,-0.018 -0.24763,0.1189 -0.26992,0.3813 -0.0446,0.5375 -0.36647,0.78 -0.96573,0.7455 -0.64134,-0.039 -0.94344,-0.3715 -0.90877,-0.9856 0.0149,-0.1882 0.0496,-0.4656 0.11886,-0.8246 0.0594,-0.3516 0.0966,-0.619 0.10642,-0.8047 0.009,-0.1764 0.006,-0.4409 -0.009,-0.7901 -0.0223,-0.3515 -0.0273,-0.619 -0.0167,-0.7898 0.0167,-0.2847 0.1313,-0.5028 0.32439,-0.6736 0.20057,-0.1579 0.45315,-0.2327 0.76762,-0.2128 0.28725,0.019 0.51754,0.1021 0.6884,0.2525 0.18071,0.156 0.26248,0.3392 0.24762,0.5596 -0.006,0.074 -0.0149,0.1281 -0.0396,0.1579 -0.052,0.1504 -0.0743,0.2328 -0.0743,0.2377 -0.007,0.1485 0.17588,0.2849 0.56211,0.4136 0.0149,0 0.15842,0.065 0.45316,0.1783 l 4.16253,1.6218 c 0.68344,0.2552 1.01277,0.5646 0.98555,0.9262 0,0.1114 -0.0247,0.2698 -0.0719,0.4853 -0.0446,0.2204 -0.0693,0.3788 -0.0767,0.4929 -0.006,0.1095 0,0.2648 0.0167,0.4728 0.0199,0.213 0.0273,0.3666 0.0199,0.4606 -0.0223,0.4037 -0.46801,0.6563 -1.32974,0.7702 l -4.34084,0.5372 4.10807,1.2109 c 0.61164,0.1727 0.9905,0.317 1.14401,0.421 0.15601,0.098 0.22287,0.2651 0.21297,0.4953 -0.009,0.1208 -0.0371,0.2823 -0.0867,0.4853 -0.0422,0.203 -0.0669,0.3863 -0.0719,0.5399 -0.013,0.117 0,0.2945 0.013,0.5224 0.0167,0.2327 0.0247,0.4086 0.013,0.5275 -0.0199,0.3367 -0.31447,0.567 -0.87658,0.6834 l -5.04655,1.007898 c -0.34172,0.058 -0.52001,0.1881 -0.5324,0.406 -0.013,0.046 0,0.1133 0.0149,0.2106 0.0149,0.091 0.0199,0.1615 0.0199,0.203 -0.0273,0.4555 -0.35658,0.6685 -0.99544,0.629 -0.71563,-0.046 -1.04498,-0.3863 -1.00535,-1.0278 0.006,-0.1783 0.047,-0.4333 0.11385,-0.774998 0.0618,-0.3417 0.099,-0.6017 0.10901,-0.775 0.009,-0.1801 0.007,-0.468 -0.0167,-0.8519 -0.013,-0.3788 -0.0167,-0.6736 -0.002,-0.8543 0.0321,-0.5868 0.38134,-0.8617 1.03259,-0.8245 0.55466,0.039 0.83695,0.2674 0.84191,0.6884 0.013,0.2128 0.0273,0.3466 0.0544,0.3937 0.0199,0.052 0.0841,0.08 0.20057,0.084 l 0.13873,0.019 c 0.047,0 0.12128,0 0.23029,-0.02" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path319"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 101.80054,82.975602 c 0.0618,0.019 0.11886,0 0.16845,-0.019 0.0544,-0.024 0.0942,-0.1318 0.13372,-0.3292 l 0.38133,-1.7855 c 0.0371,-0.156 0.0422,-0.2574 0.009,-0.307 -0.0297,-0.043 -0.0915,-0.072 -0.18818,-0.099 -0.27733,-0.054 -0.53734,0.019 -0.80477,0.2155 -0.25754,0.1955 -0.42097,0.4606 -0.49029,0.7948 -0.0892,0.4283 0,0.8048 0.2699,1.1441 0.17086,0.2128 0.35411,0.3417 0.52001,0.3788 m 1.88935,-4.9204 c 0.45068,0.091 0.73297,0.2229 0.86669,0.3616 0.12127,0.143 0.14857,0.3813 0.0793,0.7108 l -0.84191,3.9024 c -0.0446,0.1956 -0.0496,0.3195 -0.0167,0.3739 0.0273,0.052 0.11143,0.098 0.26494,0.1356 0.45068,0.091 0.85679,0.031 1.22079,-0.1908 0.36648,-0.2252 0.58687,-0.5571 0.68344,-0.9904 0.0916,-0.4531 -0.0496,-0.9633 -0.44325,-1.5377 -0.2699,-0.3938 -0.36647,-0.7875 -0.28725,-1.1689 0.0693,-0.3195 0.22039,-0.5572 0.44325,-0.718 0.22039,-0.1616 0.47544,-0.2032 0.75526,-0.1486 0.61658,0.1393 1.06973,0.5869 1.35696,1.3544 0.29221,0.775 0.33429,1.6468 0.12128,2.62 -0.27734,1.2751 -0.87659,2.2013 -1.81012,2.7931 -0.92858,0.5967 -2.03795,0.7503 -3.32311,0.4729 -1.29506,-0.2699 -2.25336,-0.8766 -2.88727,-1.7978 -0.6364,-0.9185 -0.82459,-1.9933 -0.56211,-3.2116 0.24267,-1.1316 0.76268,-1.9662 1.56249,-2.5034 0.79487,-0.5399 1.73585,-0.6885 2.81797,-0.4582" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path323"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 109.64771,74.405702 c -0.0891,0.2475 -0.20304,0.5521 -0.35905,0.9185 0.0297,0.5275 0.19068,0.8469 0.47544,0.9435 0.55219,0.1783 1.03259,-0.3343 1.44117,-1.5649 0.42096,-1.2307 0.3541,-1.9365 -0.19811,-2.1272 -0.44572,-0.1467 -0.8122,0.1783 -1.07963,0.9906 -0.009,0.032 -0.0544,0.169 -0.14114,0.4185 z m -6.08161,-2.3995 c -0.0966,0.2823 -0.0817,0.562 0.0496,0.8196 0.12387,0.2501 0.33923,0.4284 0.63391,0.5298 0.29467,0.1059 0.57201,0.089 0.83697,-0.035 0.26,-0.1281 0.44572,-0.3318 0.54229,-0.6141 0.0916,-0.2922 0.0767,-0.5744 -0.0594,-0.8296 -0.13371,-0.255 -0.34172,-0.4309 -0.62649,-0.5275 -0.29219,-0.098 -0.57201,-0.084 -0.83696,0.037 -0.26249,0.1244 -0.44078,0.3319 -0.53982,0.6192 m -1.64421,-0.4211 0.20057,-0.5818 c -0.51507,-0.1883 -0.85926,-0.5003 -1.03754,-0.9386 -0.18071,-0.4407 -0.16102,-0.9583 0.0371,-1.56 0.17086,-0.4903 0.42839,-0.8493 0.78744,-1.0895 0.35411,-0.2451 0.73048,-0.2997 1.1143,-0.169 0.26001,0.087 0.44572,0.2402 0.56458,0.4731 0.12128,0.2252 0.13613,0.4802 0.0496,0.7378 -0.099,0.2897 -0.27982,0.463 -0.54229,0.5224 l -0.29962,0.072 c -0.0867,0.018 -0.14616,0.072 -0.1833,0.1634 -0.0669,0.2154 0.0421,0.3813 0.34172,0.4829 0.0719,0.019 0.1287,0.032 0.15841,0.032 0.69334,-0.874 1.5625,-1.139 2.61984,-0.78 0.79983,0.27 1.3347,0.7975 1.61452,1.5823 0.27237,0.7752 0.24514,1.6741 -0.0942,2.6794 -0.18572,0.5447 -0.48783,1.0548 -0.92612,1.5476 l -0.052,0.069 c 0.0669,0.1955 0.17086,0.3144 0.31447,0.364 0.34915,0.1207 0.64879,-0.061 0.89394,-0.525 0.0942,-0.1579 0.23771,-0.5325 0.42837,-1.1268 l 0.0618,-0.1727 0.33925,-0.9955 c 0.32439,-1.0004 0.77505,-1.7011 1.35449,-2.1121 0.57449,-0.4062 1.22079,-0.4879 1.9488,-0.2403 0.92363,0.3096 1.51546,0.9583 1.77546,1.9489 0.26,0.983 0.15842,2.1766 -0.31201,3.5607 -0.42343,1.243 -0.98801,2.1618 -1.70117,2.7561 -0.71564,0.5943 -1.45355,0.7577 -2.2187,0.5075 -0.82955,-0.2822 -1.22821,-1.0028 -1.19602,-2.1468 -0.44819,0.7751 -1.05984,1.0351 -1.83489,0.7751 -0.40362,-0.1392 -0.6884,-0.3417 -0.86173,-0.5943 -0.17086,-0.2626 -0.28229,-0.6637 -0.32439,-1.2108 -0.54229,0.2252 -1.06477,0.2648 -1.55507,0.091 -0.72554,-0.2428 -1.2282,-0.7578 -1.51545,-1.5502 -0.27486,-0.7899 -0.26,-1.6466 0.0496,-2.5728" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path327"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 107.91709,59.331702 0.68344,0.3765 c -0.45315,-1.2133 -0.42344,-2.283 0.0867,-3.2018 0.54723,-1.0028 1.31734,-1.4907 2.28307,-1.4907 0.50762,-0.02 1.17127,0.208 1.99089,0.6611 l 2.15432,1.1912 c 0.4804,0.2675 0.78249,0.3046 0.88898,0.117 0.0247,-0.046 0.0496,-0.1281 0.0594,-0.25 0.006,-0.058 0.0297,-0.1411 0.0767,-0.2328 0.23771,-0.4235 0.60172,-0.4978 1.10934,-0.2179 0.67105,0.3664 0.84687,0.8469 0.52991,1.4239 -0.0892,0.143 -0.23276,0.3664 -0.43581,0.6537 -0.208,0.2823 -0.34914,0.5002 -0.44078,0.6538 -0.1313,0.2401 -0.24761,0.5075 -0.35657,0.7948 -0.11385,0.2871 -0.22038,0.5225 -0.30952,0.6957 -0.31696,0.5572 -0.76516,0.681 -1.35202,0.3542 -0.50764,-0.2799 -0.66364,-0.6216 -0.47544,-1.0252 0.12387,-0.2748 0.0719,-0.473 -0.14616,-0.5844 l -2.00574,-1.1143 c -0.55469,-0.307 -0.98308,-0.4457 -1.28766,-0.4283 -0.30208,0.019 -0.55466,0.2006 -0.74287,0.5447 -0.2179,0.3913 -0.26247,0.7949 -0.13371,1.1936 0.1287,0.4012 0.39621,0.7106 0.80479,0.9483 l 1.49563,0.8198 c 0.4284,0.2401 0.70077,0.3614 0.81469,0.3688 0.11143,0.02 0.23029,-0.059 0.364,-0.2327 0.24019,-0.3195 0.59677,-0.3492 1.05735,-0.089 0.60419,0.3367 0.77011,0.7479 0.48782,1.2629 -0.0767,0.143 -0.19067,0.312 -0.33429,0.5028 -0.24515,0.3316 -0.41107,0.5818 -0.50764,0.7527 -0.099,0.1708 -0.21543,0.4383 -0.36895,0.7998 -0.15098,0.359 -0.27239,0.6241 -0.36649,0.7973 -0.3318,0.6042 -0.81963,0.7305 -1.45602,0.3739 -0.53238,-0.2972 -0.68095,-0.6734 -0.42591,-1.1316 0.0371,-0.072 0.10902,-0.1486 0.20058,-0.2279 0.0817,-0.076 0.13371,-0.1355 0.16584,-0.1931 0.0841,-0.1616 -0.14114,-0.3863 -0.67354,-0.6809 l -2.32269,-1.2851 c -0.54725,-0.2972 -0.86422,-0.3715 -0.95087,-0.208 -0.0199,0.039 -0.047,0.1207 -0.0719,0.25 -0.0321,0.1318 -0.0594,0.2228 -0.0942,0.2774 -0.24515,0.463 -0.63887,0.5447 -1.16384,0.2574 -0.28476,-0.1653 -0.47296,-0.3664 -0.56705,-0.624 -0.10159,-0.2624 -0.0743,-0.5224 0.0669,-0.7774 0.047,-0.076 0.16343,-0.2229 0.34172,-0.4483 0.10641,-0.1282 0.19066,-0.2452 0.25009,-0.3516 0.0544,-0.1133 0.14857,-0.3218 0.26496,-0.619 0.12127,-0.2971 0.17829,-0.4606 0.1981,-0.4879 0.14115,-0.2576 0.34666,-0.3144 0.6141,-0.169" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path331"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 118.86152,50.558102 -0.29219,-0.2106 c -0.006,0.084 -0.18071,0.5523 -0.52001,1.3992 -0.23029,0.567 -0.22039,0.9458 0.0371,1.134 0.40858,0.3021 0.78001,0.2154 1.12916,-0.2574 0.57448,-0.7776 0.45562,-1.4685 -0.3541,-2.0652 m 4.24427,0.1653 c -0.53487,0.7131 -1.17623,0.9904 -1.93889,0.8047 0.12127,1.045 -0.12629,1.9835 -0.7503,2.8255 -0.51258,0.7007 -1.1044,1.1117 -1.76803,1.2603 -0.67107,0.1467 -1.30994,-0.019 -1.92156,-0.458 -0.91869,-0.686 -1.22573,-1.5279 -0.90877,-2.5233 0.13873,-0.4259 0.33429,-0.8939 0.58934,-1.4041 0.35657,-0.6958 0.54476,-1.2133 0.57697,-1.5401 0.0321,-0.3245 -0.10159,-0.5869 -0.37887,-0.7975 -0.20306,-0.1504 -0.43582,-0.1857 -0.70078,-0.1133 -0.26001,0.061 -0.48287,0.2353 -0.67601,0.4853 -0.21048,0.2923 -0.23029,0.5102 -0.0422,0.6463 0.0594,0.046 0.12387,0.091 0.1882,0.1337 l 0.047,0.043 c 0.24762,0.1765 0.37637,0.4333 0.39619,0.7652 0.0149,0.3268 -0.0891,0.6439 -0.31696,0.9533 -0.25505,0.3491 -0.57448,0.5597 -0.95335,0.6266 -0.3739,0.067 -0.72801,-0.019 -1.03754,-0.2428 -0.47791,-0.3541 -0.6661,-0.8741 -0.56952,-1.5798 0.0942,-0.7058 0.46801,-1.4956 1.11677,-2.3772 0.70077,-0.9483 1.36935,-1.5402 2.00079,-1.7928 0.6884,-0.2624 1.46098,-0.083 2.32271,0.5522 l 2.73376,2.0158 c 0.27982,0.2104 0.47296,0.2475 0.57696,0.1058 0.047,-0.074 0.099,-0.1393 0.14616,-0.1981 0.0167,-0.03 0.0396,-0.054 0.0669,-0.097 0.14858,-0.2054 0.34915,-0.3219 0.59181,-0.3566 0.24021,-0.045 0.45811,0.019 0.65868,0.1616 0.28972,0.2104 0.42344,0.5126 0.41105,0.8964 -0.009,0.3986 -0.16343,0.7949 -0.46058,1.2059" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path335"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 125.18359,43.125702 -0.26249,-0.2502 c -0.0223,0.095 -0.25009,0.5299 -0.68344,1.3322 -0.29962,0.5374 -0.34172,0.9137 -0.10902,1.1317 0.36897,0.3442 0.74536,0.3046 1.15641,-0.1244 0.66362,-0.6983 0.63144,-1.3966 -0.10159,-2.0899 m 4.18978,0.6686 c -0.61658,0.6511 -1.28763,0.8443 -2.0206,0.567 0,1.0525 -0.36401,1.9562 -1.08706,2.7189 -0.58687,0.624 -1.22822,0.9732 -1.90917,1.0376 -0.67601,0.059 -1.2926,-0.169 -1.84232,-0.6834 -0.84193,-0.7875 -1.03508,-1.6667 -0.60668,-2.6175 0.19314,-0.4036 0.44819,-0.8443 0.75772,-1.3149 0.44077,-0.6561 0.69087,-1.1464 0.7602,-1.456 0.0693,-0.3219 -0.0223,-0.6042 -0.2798,-0.8419 -0.1807,-0.1764 -0.40611,-0.2401 -0.6785,-0.1955 -0.27486,0.037 -0.51258,0.1708 -0.73295,0.4011 -0.24268,0.2648 -0.29221,0.4728 -0.12127,0.6314 0.0544,0.05 0.10641,0.1059 0.16844,0.1505 l 0.0496,0.046 c 0.21294,0.208 0.3219,0.4855 0.29466,0.8073 -0.0247,0.3343 -0.17086,0.6365 -0.42591,0.9137 -0.29962,0.3145 -0.64383,0.4853 -1.02516,0.5102 -0.38629,0.022 -0.72058,-0.104 -1.00534,-0.3714 -0.42593,-0.4062 -0.55221,-0.9461 -0.3665,-1.6319 0.17588,-0.6859 0.64383,-1.4287 1.39909,-2.2188 0.80476,-0.8617 1.54021,-1.3817 2.20136,-1.5526 0.71315,-0.1857 1.46098,0.089 2.23356,0.8272 l 2.46384,2.3276 c 0.24515,0.2377 0.43829,0.2971 0.55468,0.1634 0.0669,-0.057 0.12388,-0.1188 0.17086,-0.1783 0.0273,-0.024 0.0544,-0.05 0.0841,-0.082 0.17086,-0.1838 0.38382,-0.2773 0.62154,-0.2847 0.24762,0 0.46305,0.067 0.64381,0.2426 0.26249,0.2451 0.35658,0.5645 0.30211,0.9484 -0.057,0.3863 -0.26001,0.7676 -0.6042,1.1342" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path339"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 128.28629,34.042602 0.89394,1.0597 c -0.24268,-0.5224 -0.37144,-0.9557 -0.37393,-1.2875 -0.0167,-0.7628 0.29964,-1.4288 0.96326,-1.9859 0.46305,-0.3863 0.9682,-0.5622 1.53031,-0.5301 0.56705,0.032 1.03506,0.2725 1.39907,0.7058 0.2922,0.3393 0.42592,0.7107 0.40857,1.102 -0.009,0.3863 -0.17086,0.7132 -0.48286,0.9732 -0.22533,0.1979 -0.49523,0.2921 -0.78248,0.2698 -0.29219,-0.019 -0.52991,-0.1263 -0.71069,-0.3441 -0.10158,-0.1189 -0.18818,-0.3245 -0.26,-0.6315 l -0.0719,0.069 c -0.56458,0.473 -0.69087,1.0846 -0.38381,1.8399 0.24515,0.6065 0.63144,1.2157 1.15392,1.8298 l 0.40611,0.4805 c 0.25008,0.302 0.43829,0.4754 0.55715,0.51 0.0693,0.024 0.156,0 0.24019,-0.065 0.0767,-0.069 0.16343,-0.1765 0.26,-0.3245 0.10159,-0.1504 0.18819,-0.2576 0.25754,-0.3144 0.1807,-0.1541 0.39372,-0.218 0.63638,-0.1982 0.23524,0.022 0.43829,0.1245 0.59678,0.312 0.20057,0.2476 0.29466,0.5251 0.27237,0.8246 -0.0247,0.3022 -0.15099,0.5522 -0.38629,0.7503 -0.12387,0.1059 -0.37886,0.2773 -0.7602,0.5275 -0.23029,0.1467 -0.50268,0.3541 -0.82211,0.6165 -0.31695,0.2699 -0.58687,0.5201 -0.80477,0.7479 -0.36896,0.3837 -0.59429,0.614 -0.6884,0.6909 -0.51505,0.4333 -1.0103,0.3813 -1.48078,-0.1839 -0.39619,-0.468 -0.39125,-0.8766 0.007,-1.2133 0.0743,-0.054 0.156,-0.1021 0.26248,-0.1485 0.10901,-0.045 0.1807,-0.076 0.22534,-0.117 0.14356,-0.1189 0.0149,-0.4086 -0.38135,-0.884 l -1.70611,-2.0305 c -0.40115,-0.4706 -0.67354,-0.6587 -0.81468,-0.5349 -0.0371,0.024 -0.0867,0.095 -0.15842,0.208 -0.0644,0.1115 -0.13372,0.1839 -0.1833,0.2229 -0.39868,0.3441 -0.7924,0.2797 -1.18363,-0.1764 -0.20554,-0.255 -0.31201,-0.5102 -0.31201,-0.7851 0,-0.2648 0.10642,-0.4902 0.31201,-0.6685 0.0841,-0.069 0.2179,-0.1579 0.39372,-0.2426 0.17587,-0.097 0.33923,-0.2056 0.468,-0.317 0.10159,-0.082 0.23276,-0.2229 0.39124,-0.4136 0.17828,-0.1956 0.30457,-0.3317 0.38878,-0.4086 0.26743,-0.2202 0.50515,-0.1979 0.72305,0.061" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path343"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 140.9235,22.477102 3.68957,6.3465 c 0.19563,0.3295 0.42097,0.4335 0.67601,0.2873 0.0767,-0.046 0.17829,-0.1207 0.30707,-0.2229 0.13371,-0.1114 0.2278,-0.1857 0.30704,-0.2327 0.61411,-0.3541 1.09698,-0.2228 1.4585,0.3912 0.1807,0.322 0.24267,0.6266 0.17587,0.9261 -0.0644,0.2996 -0.25009,0.5299 -0.53734,0.7007 -0.0618,0.037 -0.11384,0.06 -0.15358,0.072 l -0.9162,0.3987 c -0.26497,0.117 -0.70079,0.354 -1.31737,0.7031 -0.56705,0.3343 -0.9162,0.5498 -1.04744,0.6564 l -0.77753,0.6017 c -0.0297,0.03 -0.0867,0.067 -0.14857,0.1021 -0.32935,0.1908 -0.64136,0.2478 -0.95583,0.169 -0.30705,-0.083 -0.54973,-0.2724 -0.73297,-0.5844 -0.16344,-0.2847 -0.22038,-0.5546 -0.15099,-0.8196 0.0594,-0.2624 0.22286,-0.473 0.48039,-0.6264 0.0916,-0.045 0.23029,-0.1133 0.41105,-0.1907 0.19068,-0.087 0.32686,-0.1468 0.41601,-0.1882 0.22286,-0.1411 0.27982,-0.3714 0.156,-0.7083 -0.0247,-0.069 -0.16343,-0.3194 -0.40858,-0.7453 l -2.27565,-3.9075 c -0.25753,-0.4433 -0.54972,-0.5744 -0.87162,-0.3839 -0.052,0.032 -0.15099,0.1022 -0.29221,0.2056 -0.15842,0.1635 -0.30209,0.2823 -0.43581,0.359 -0.55468,0.312 -1.00783,0.1579 -1.37926,-0.4728 -0.18572,-0.322 -0.23525,-0.6365 -0.15359,-0.9485 0.0867,-0.3021 0.29468,-0.5571 0.62401,-0.7479 0.16343,-0.098 0.42591,-0.2128 0.77011,-0.3565 0.35658,-0.1412 0.61163,-0.2574 0.76763,-0.3566 0.208,-0.1133 0.45315,-0.302 0.77258,-0.572 0.1287,-0.1189 0.27982,-0.2203 0.44077,-0.3144 0.2501,-0.143 0.47049,-0.1802 0.64878,-0.091 0.12629,0.08 0.28723,0.2576 0.45315,0.5521" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path347"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 149.63587,19.453102 c -0.5943,0.2501 -0.93851,0.7404 -1.03259,1.4684 -0.0966,0.7182 0.0693,1.5773 0.49523,2.5876 0.42593,1.0079 0.93355,1.7211 1.51795,2.1569 0.58437,0.4283 1.17124,0.5174 1.76059,0.2625 0.60667,-0.2452 0.95831,-0.7355 1.05488,-1.4537 0.099,-0.7131 -0.0669,-1.5772 -0.49029,-2.5876 -0.4383,-1.0201 -0.94345,-1.7433 -1.52785,-2.1741 -0.58439,-0.4259 -1.1762,-0.51 -1.77792,-0.26 m 3.67471,8.5207 c -1.43868,0.6091 -2.74366,0.6141 -3.92482,0.024 -1.18116,-0.5895 -2.12707,-1.7235 -2.83776,-3.4098 -0.70325,-1.6541 -0.8642,-3.12 -0.47543,-4.3953 0.38382,-1.2728 1.26783,-2.2013 2.63965,-2.7858 1.42137,-0.5967 2.72633,-0.6091 3.91988,-0.022 1.18116,0.5795 2.12461,1.6789 2.80062,3.3034 0.73297,1.716 0.91373,3.2116 0.54229,4.4819 -0.36401,1.2753 -1.25298,2.2039 -2.66443,2.803" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path351"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 160.78212,15.596802 c -0.61906,0.169 -1.02763,0.6068 -1.21831,1.3149 -0.19314,0.7009 -0.14114,1.5775 0.14115,2.6324 0.28972,1.0498 0.69333,1.8322 1.21583,2.3326 0.51752,0.5001 1.09449,0.671 1.71354,0.5001 0.62897,-0.1653 1.04002,-0.6041 1.23812,-1.3024 0.19562,-0.7009 0.14356,-1.5775 -0.14356,-2.6348 -0.28476,-1.0599 -0.6884,-1.8423 -1.21334,-2.3451 -0.52001,-0.5075 -1.09698,-0.6635 -1.73338,-0.4977 m 2.50596,8.9293 c -1.51051,0.4062 -2.80558,0.2502 -3.90006,-0.5025 -1.09451,-0.7429 -1.87699,-1.9909 -2.36233,-3.7541 -0.47049,-1.7333 -0.42839,-3.2116 0.12388,-4.4201 0.55219,-1.2059 1.55506,-2.0082 2.99376,-2.4043 1.49068,-0.4037 2.78327,-0.2403 3.88025,0.4977 1.1044,0.7355 1.88935,1.9488 2.34993,3.6449 0.4903,1.8028 0.4705,3.3108 -0.0669,4.5092 -0.53733,1.2135 -1.54516,2.0256 -3.01852,2.4292" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path355"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 178.59636,18.701802 c -0.12128,-1.0573 -0.50267,-1.5377 -1.14153,-1.4584 -0.68593,0.072 -0.96822,0.6511 -0.84687,1.7208 0.1287,1.0822 0.5299,1.5824 1.20838,1.5057 0.64136,-0.067 0.90879,-0.6636 0.78002,-1.7681 m -3.82578,0.421 c -0.11644,-0.9707 0.0422,-1.7409 0.4705,-2.3251 0.43086,-0.5746 1.10191,-0.9188 2.02554,-1.0228 1.86956,-0.2228 2.91948,0.6909 3.15472,2.7314 0.24515,2.0726 -0.58439,3.214 -2.47128,3.4294 -0.89638,0.1115 -1.63182,-0.084 -2.17661,-0.5794 -0.55962,-0.4803 -0.88895,-1.2306 -1.00287,-2.2335 m -3.31071,-4.8559 c -0.11885,-1.0896 -0.51258,-1.5873 -1.1465,-1.5155 -0.70077,0.084 -0.99296,0.6439 -0.87659,1.7036 0.12388,1.0971 0.5423,1.6022 1.23565,1.5255 0.64877,-0.087 0.91124,-0.6415 0.78744,-1.7136 m -0.72554,7.3865 4.24425,-8.4761 c -0.24514,0.218 -0.52247,0.3517 -0.82705,0.3839 -0.32686,0.039 -0.65868,-0.022 -0.99297,-0.1857 0.0644,0.1981 0.104,0.3913 0.12628,0.567 0.24764,2.1147 -0.57201,3.286 -2.46383,3.5015 -0.92116,0.1095 -1.66156,-0.089 -2.21128,-0.5821 -0.56211,-0.4977 -0.90134,-1.2703 -1.02516,-2.3053 -0.11143,-0.9559 0.0496,-1.721 0.48286,-2.2856 0.42344,-0.567 1.09202,-0.9037 1.99089,-1.0151 0.82706,-0.091 1.54517,0.022 2.17165,0.359 l 0.45811,0.2451 c 0.61905,0.3343 1.1663,0.473 1.6467,0.4184 0.58686,-0.069 1.07467,-0.3738 1.46345,-0.9063 l 0.13873,-0.198 c 0.18819,-0.2626 0.44076,-0.4135 0.75773,-0.4483 0.44323,-0.052 0.68591,0.06 0.71562,0.3295 0.013,0.1244 -0.0867,0.4086 -0.30458,0.8368 l -5.04161,10.1304 c -0.12127,0.2549 -0.24018,0.416 -0.34172,0.5027 -0.12628,0.1021 -0.31694,0.1708 -0.56705,0.198 -0.44325,0.061 -0.67354,-0.037 -0.70572,-0.2649 -0.0199,-0.1281 0.0793,-0.3937 0.28476,-0.8049" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path359"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 189.44769,13.250102 c 0.84193,0.059 1.52784,0.3491 2.06766,0.8593 0.0817,-0.468 0.39619,-0.6784 0.94096,-0.6389 0.55221,0.045 0.81468,0.2576 0.78744,0.6439 -0.007,0.1356 -0.0396,0.2797 -0.0966,0.4431 -0.047,0.1932 -0.0743,0.3741 -0.0915,0.5524 0,0.032 0,0.117 -0.002,0.26 -0.006,0.1411 -0.0223,0.2624 -0.0347,0.3738 v 0.067 c -0.0396,0.5744 -0.35411,0.8418 -0.93106,0.7973 -0.41353,-0.032 -0.75772,-0.2625 -1.02764,-0.6859 -0.3343,-0.5274 -0.76763,-0.7999 -1.30745,-0.837 -0.62153,-0.046 -0.95335,0.1411 -0.99049,0.5794 -0.0167,0.2255 0.0743,0.3963 0.27486,0.5078 0.19811,0.104 0.73297,0.2674 1.60956,0.4853 0.70076,0.1881 1.22324,0.3714 1.55506,0.5669 0.33182,0.1839 0.59677,0.4409 0.78497,0.7604 0.25009,0.416 0.35162,0.879 0.31448,1.4064 -0.0644,0.8296 -0.43582,1.4956 -1.1143,2.0058 -0.67848,0.5075 -1.49564,0.723 -2.45643,0.6487 -0.9583,-0.069 -1.81011,-0.4383 -2.55051,-1.1117 -0.0422,0.52 -0.33182,0.7651 -0.87163,0.7205 -0.59429,-0.039 -0.86668,-0.3045 -0.83201,-0.7776 0.007,-0.117 0.0273,-0.2822 0.0669,-0.5125 0.0421,-0.2229 0.0618,-0.3938 0.0719,-0.5002 0.009,-0.1021 0.009,-0.2451 0.009,-0.4483 0,-0.1956 0,-0.3441 0.013,-0.4383 0.0297,-0.4951 0.35904,-0.7156 0.9682,-0.671 0.29714,0.02 0.51009,0.089 0.66362,0.1802 0.14114,0.1021 0.28972,0.2873 0.45068,0.5547 0.24019,0.4309 0.47048,0.7132 0.69087,0.8641 0.22037,0.1393 0.55466,0.2329 1.00038,0.2601 0.7825,0.059 1.19108,-0.1579 1.23565,-0.6488 0.0247,-0.3417 -0.27735,-0.5967 -0.90136,-0.7725 l -0.92858,-0.2675 c -0.76516,-0.2154 -1.30496,-0.4234 -1.61203,-0.6141 -0.30705,-0.1858 -0.54229,-0.4705 -0.70324,-0.8345 -0.15841,-0.3616 -0.22039,-0.7776 -0.18571,-1.2406 0.0618,-0.8195 0.38133,-1.4584 0.9583,-1.9364 0.57695,-0.4705 1.30496,-0.676 2.17412,-0.6018" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path363"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 198.83285,11.829702 c 0.30211,0.058 0.41354,0.2799 0.35411,0.6786 l -1.28269,7.6564 c -0.0867,0.5349 -0.0247,0.8272 0.18571,0.8668 0.0793,0.018 0.16845,0.018 0.24019,-0.028 0.0693,-0.028 0.15359,-0.032 0.26249,-0.019 0.48038,0.072 0.6661,0.3988 0.56952,0.9634 -0.12387,0.7553 -0.51751,1.087 -1.15887,0.9731 -0.007,0 -0.40609,-0.1021 -1.20839,-0.3022 -0.24515,-0.054 -0.50268,-0.1114 -0.78497,-0.1615 -0.23525,-0.037 -0.49029,-0.061 -0.76515,-0.073 -0.46058,-0.028 -0.7503,-0.052 -0.86916,-0.067 -0.28725,-0.05 -0.51258,-0.1881 -0.65869,-0.4235 -0.15098,-0.2228 -0.19808,-0.4977 -0.14615,-0.8295 0.104,-0.5917 0.41847,-0.8543 0.94095,-0.77 0.0669,0 0.14616,0.05 0.25753,0.104 0.0966,0.061 0.19068,0.098 0.25754,0.1095 0.17327,0.032 0.31943,-0.2549 0.41601,-0.8641 l 0.89887,-5.3784 c 0.104,-0.6041 0.0618,-0.9286 -0.12128,-0.9559 -0.0743,0 -0.17086,0 -0.29714,0.019 -0.0669,0 -0.16102,0 -0.26248,-0.019 -0.51754,-0.083 -0.72305,-0.4234 -0.62401,-1.0103 0.0544,-0.3318 0.18819,-0.5794 0.40611,-0.7404 0.21047,-0.1616 0.48038,-0.2154 0.79238,-0.169 0.0817,0.022 0.26743,0.061 0.53736,0.1411 0.35657,0.099 0.63143,0.1653 0.81219,0.1956 0.25258,0.045 0.47048,0.059 0.66116,0.052 0.25257,0 0.44572,0.032 0.58686,0.045" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path367"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 205.17374,21.255102 0.0966,-0.3468 c -0.0867,0.022 -0.58439,0.024 -1.49316,0.022 -0.61907,0 -0.96573,0.1337 -1.05241,0.4409 -0.13371,0.4853 0.0867,0.8023 0.6562,0.9607 0.92858,0.2502 1.53527,-0.1095 1.7928,-1.0771 m 1.39659,4.009 c -0.86915,-0.2278 -1.35451,-0.738 -1.46594,-1.508 -0.92115,0.4951 -1.89182,0.5991 -2.90461,0.3343 -0.83202,-0.2279 -1.43374,-0.634 -1.81754,-1.2084 -0.38136,-0.567 -0.46801,-1.2159 -0.26993,-1.9414 0.30211,-1.1068 0.97316,-1.6963 2.0231,-1.7656 0.44819,-0.024 0.9583,-0.018 1.52039,0.039 0.78001,0.076 1.32974,0.072 1.6467,-0.022 0.312,-0.089 0.50762,-0.3045 0.60419,-0.6412 0.0619,-0.2353 0.0149,-0.4731 -0.14616,-0.6959 -0.15841,-0.2154 -0.39372,-0.3688 -0.69829,-0.4506 -0.35658,-0.089 -0.55469,-0.024 -0.61658,0.1956 -0.0223,0.069 -0.0422,0.143 -0.0544,0.2154 l -0.0199,0.069 c -0.0841,0.2873 -0.27239,0.5102 -0.56954,0.6439 -0.30211,0.1319 -0.63887,0.1467 -1.0004,0.05 -0.42344,-0.1115 -0.73296,-0.3319 -0.93849,-0.6612 -0.1981,-0.3294 -0.25257,-0.6834 -0.15099,-1.0575 0.15601,-0.5694 0.57695,-0.936 1.26039,-1.1042 0.69583,-0.1635 1.56499,-0.1022 2.61739,0.1838 1.13906,0.3072 1.94383,0.7084 2.40441,1.2109 0.50268,0.5399 0.61907,1.3297 0.33182,2.3623 l -0.88402,3.2787 c -0.0942,0.3343 -0.0544,0.5224 0.11645,0.562 0.0867,0.03 0.16101,0.045 0.23772,0.069 0.0347,0 0.0669,0.019 0.11143,0.032 0.24265,0.065 0.42343,0.1982 0.54229,0.4136 0.12629,0.2105 0.16343,0.4333 0.0891,0.6734 -0.0891,0.3444 -0.31943,0.5821 -0.69086,0.7182 -0.37144,0.1393 -0.79983,0.1393 -1.27774,0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path371"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 214.34322,24.411302 0.13371,-0.3343 c -0.0891,0.022 -0.57201,-0.032 -1.47831,-0.1504 -0.60668,-0.082 -0.97316,0.022 -1.08955,0.312 -0.19065,0.4755 -0.0149,0.8148 0.52993,1.0278 0.89887,0.3688 1.53031,0.083 1.90422,-0.8543 m 0.9063,4.15 c -0.83202,-0.3367 -1.24802,-0.8963 -1.26041,-1.6714 -0.98059,0.3764 -1.95622,0.3714 -2.92691,-0.022 -0.79981,-0.3219 -1.35696,-0.7875 -1.65906,-1.394 -0.30954,-0.6192 -0.31697,-1.2679 -0.0371,-1.9761 0.4284,-1.0649 1.16878,-1.565 2.20879,-1.5056 0.45811,0.024 0.95583,0.099 1.50803,0.2205 0.76268,0.1578 1.30994,0.2202 1.6368,0.1653 0.31943,-0.052 0.54229,-0.2353 0.67352,-0.5646 0.0942,-0.2377 0.0743,-0.463 -0.0594,-0.6983 -0.1313,-0.2377 -0.35162,-0.421 -0.63887,-0.5423 -0.33676,-0.1263 -0.54723,-0.091 -0.63638,0.1207 -0.0273,0.069 -0.0544,0.1412 -0.0767,0.213 l -0.0297,0.06 c -0.11143,0.2798 -0.32686,0.4704 -0.63887,0.5744 -0.3219,0.097 -0.65123,0.072 -1.00781,-0.074 -0.40611,-0.1616 -0.68097,-0.4184 -0.84687,-0.7676 -0.16343,-0.3467 -0.17328,-0.7007 -0.0223,-1.0673 0.22286,-0.5471 0.68344,-0.8617 1.38668,-0.9384 0.70325,-0.087 1.56002,0.082 2.57032,0.4927 1.10194,0.4383 1.84728,0.9336 2.24843,1.4857 0.43086,0.5969 0.44572,1.3918 0.047,2.3872 l -1.27277,3.1424 c -0.13372,0.3218 -0.11645,0.5224 0.0422,0.5818 0.0867,0.037 0.16101,0.067 0.23029,0.097 0.0297,0.02 0.0719,0.022 0.10641,0.043 0.23029,0.091 0.40362,0.255 0.49772,0.4779 0.099,0.2278 0.099,0.4507 0.007,0.6834 -0.1313,0.3343 -0.39125,0.5373 -0.77505,0.629 -0.38629,0.087 -0.80973,0.043 -1.27527,-0.1504" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path375"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 225.93197,23.418902 c 0.057,-0.1115 0.16585,-0.2155 0.30954,-0.3195 -0.0594,-0.08 -0.14858,-0.1504 -0.26001,-0.2154 -0.46553,-0.2452 -0.82707,-0.1467 -1.06479,0.3094 l -0.15359,0.2873 c -0.10158,0.1857 -0.0421,0.3367 0.17829,0.4507 l 0.42591,0.2277 c 0.55962,0.2923 0.70572,0.7084 0.43086,1.2233 -0.28229,0.5474 -0.69583,0.6761 -1.23069,0.3988 l -0.47544,-0.2526 c -0.21294,-0.1114 -0.38876,-0.045 -0.51752,0.203 l -1.52288,2.8898 c -0.16584,0.3045 -0.2501,0.4804 -0.2501,0.5101 -0.0841,0.2155 -0.0321,0.3739 0.14114,0.468 0.0396,0.019 0.1287,0.052 0.2699,0.117 0.12128,0.037 0.23772,0.084 0.35164,0.1505 0.45315,0.2425 0.53487,0.624 0.25752,1.1562 -0.14115,0.2701 -0.34419,0.4433 -0.59677,0.5325 -0.25257,0.089 -0.51258,0.061 -0.76762,-0.067 -0.013,0 -0.29715,-0.1955 -0.83451,-0.5521 -0.1833,-0.117 -0.45562,-0.2799 -0.81962,-0.468 -0.40858,-0.2205 -0.74534,-0.3815 -1.01277,-0.4829 -0.44079,-0.169 -0.70822,-0.2823 -0.80973,-0.3343 -0.26743,-0.143 -0.43582,-0.3517 -0.50764,-0.6091 -0.0669,-0.2701 -0.0247,-0.5473 0.1287,-0.837 0.28476,-0.5399 0.66115,-0.6885 1.14153,-0.4359 0.0743,0.037 0.14857,0.1021 0.23278,0.1907 0.0743,0.089 0.1313,0.1337 0.16584,0.1541 0.18331,0.097 0.40611,-0.1281 0.69334,-0.6711 l 1.52041,-2.8749 c 0.11143,-0.2054 0.12388,-0.3466 0.052,-0.4185 -0.0273,-0.031 -0.0892,-0.082 -0.16845,-0.1337 l -0.34915,-0.1801 c -0.51258,-0.2701 -0.63638,-0.6563 -0.37143,-1.1589 0.29467,-0.5622 0.71315,-0.7009 1.24802,-0.416 l 0.25753,0.1337 c 0.16845,0.089 0.28476,0.1133 0.36154,0.089 0.0767,-0.03 0.17829,-0.1468 0.29466,-0.3393 0.37639,-0.6488 0.91868,-1.0376 1.61698,-1.1639 0.70326,-0.1189 1.46841,0.035 2.30289,0.473 0.6884,0.3738 1.1787,0.8047 1.45107,1.3074 0.27486,0.4978 0.28478,0.9806 0.0396,1.4486 -0.15359,0.2897 -0.3863,0.4731 -0.70079,0.5522 -0.30952,0.089 -0.62895,0.039 -0.95087,-0.1319 -0.25752,-0.1393 -0.44076,-0.317 -0.53238,-0.5423 -0.0966,-0.2303 -0.0867,-0.4582 0.0247,-0.6686" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path379"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 229.26844,29.800502 -1.08459,3.6203 3.02596,-2.3079 c 0.0767,-0.054 0.18071,-0.1262 0.30705,-0.2252 0.0966,-0.072 0.15842,-0.143 0.1833,-0.1858 0.0916,-0.1262 0.0297,-0.2897 -0.17327,-0.4928 -0.28723,-0.3121 -0.28723,-0.6761 0.006,-1.1143 0.34668,-0.5126 0.76516,-0.6092 1.25049,-0.2723 0.16343,0.104 0.39125,0.2871 0.6983,0.5423 0.29221,0.2526 0.52001,0.4357 0.68593,0.5497 0.25008,0.169 0.50762,0.3219 0.78001,0.4506 0.27237,0.1262 0.45809,0.2278 0.56705,0.3045 0.53487,0.3592 0.60419,0.8172 0.22039,1.3942 -0.36401,0.5399 -0.78001,0.6588 -1.24308,0.3417 -0.0167,-0.019 -0.0422,-0.024 -0.0693,-0.046 -0.0321,-0.02 -0.0544,-0.043 -0.0618,-0.046 -0.0544,-0.061 -0.0966,-0.1133 -0.15358,-0.1579 -0.15099,-0.097 -0.3764,-0.039 -0.66363,0.1653 -0.10901,0.074 -0.34915,0.2526 -0.7503,0.525 l -3.23148,2.2435 c -0.77754,0.5596 -1.42136,0.6338 -1.91909,0.2451 l -0.61162,-0.4754 -0.66611,-0.3913 c -0.009,0 -0.0247,-0.019 -0.052,-0.043 -0.42838,-0.2849 -0.5522,-0.7678 -0.38876,-1.4438 l 1.1663,-4.7443 c 0.0743,-0.3417 0.10902,-0.5622 0.099,-0.6513 -0.007,-0.089 -0.0544,-0.1653 -0.14115,-0.2253 -0.009,0 -0.0371,-0.024 -0.0719,-0.043 -0.0273,-0.022 -0.0496,-0.037 -0.0693,-0.05 -0.0693,-0.054 -0.14356,-0.104 -0.2278,-0.156 -0.18071,-0.1244 -0.28229,-0.2897 -0.30458,-0.52 -0.0199,-0.2178 0.0496,-0.4431 0.19809,-0.6686 0.40363,-0.5967 0.88897,-0.7081 1.43373,-0.3367 0.13873,0.087 0.34172,0.2502 0.58687,0.4731 0.24764,0.2228 0.44325,0.3788 0.58193,0.4754 0.18818,0.1244 0.5299,0.3243 1.02763,0.5893 0.29218,0.1616 0.51011,0.2947 0.64133,0.3764 0.49526,0.3343 0.56458,0.7602 0.21297,1.2752 -0.31697,0.473 -0.66859,0.6067 -1.05984,0.3889 -0.24266,-0.1208 -0.42094,-0.1171 -0.52495,0.039 -0.0297,0.05 -0.099,0.2451 -0.20306,0.5967" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path383"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 239.34026,34.574002 -0.91124,1.0474 c 0.48037,-0.3218 0.88401,-0.5126 1.2183,-0.5744 0.75524,-0.1337 1.45849,0.08 2.10975,0.6413 0.45315,0.3987 0.71067,0.8741 0.76267,1.4361 0.052,0.5622 -0.10642,1.0575 -0.47544,1.4858 -0.29219,0.3369 -0.63887,0.5274 -1.02267,0.5746 -0.38382,0.037 -0.73544,-0.061 -1.04251,-0.3343 -0.22286,-0.1958 -0.35657,-0.4457 -0.38876,-0.7306 -0.0347,-0.2847 0.047,-0.5373 0.22782,-0.7477 0.10642,-0.117 0.29466,-0.2279 0.58438,-0.3444 l -0.0743,-0.058 c -0.55219,-0.4829 -1.18116,-0.5126 -1.87697,-0.097 -0.55715,0.3417 -1.10193,0.8146 -1.63431,1.4287 l -0.40858,0.4704 c -0.26,0.2972 -0.39868,0.5078 -0.41849,0.6341 -0.013,0.08 0.0273,0.1486 0.10901,0.2253 0.0743,0.061 0.18819,0.1281 0.36648,0.208 0.15842,0.08 0.27735,0.1393 0.34421,0.1981 0.1807,0.156 0.2798,0.354 0.29715,0.5943 0.0148,0.2402 -0.0544,0.4532 -0.2204,0.6389 -0.20553,0.2401 -0.46057,0.3714 -0.77011,0.4011 -0.30458,0.019 -0.56705,-0.072 -0.79238,-0.27 -0.12629,-0.1114 -0.34668,-0.3269 -0.64879,-0.6611 -0.1833,-0.2081 -0.43086,-0.4482 -0.74038,-0.718 -0.31449,-0.2701 -0.59925,-0.5004 -0.85925,-0.6835 -0.43087,-0.2971 -0.69334,-0.4953 -0.78249,-0.572 -0.51258,-0.4457 -0.52992,-0.9434 -0.0496,-1.4982 0.40115,-0.4531 0.79487,-0.5125 1.18612,-0.1727 0.0793,0.06 0.13613,0.1412 0.19561,0.2377 0.052,0.1022 0.10159,0.169 0.14858,0.2006 0.13613,0.1244 0.40362,-0.043 0.80972,-0.5003 l 1.74079,-2.0082 c 0.40858,-0.4656 0.54478,-0.7627 0.40115,-0.889 -0.0321,-0.028 -0.104,-0.069 -0.22286,-0.1263 -0.12128,-0.045 -0.21048,-0.095 -0.25752,-0.1411 -0.39372,-0.3442 -0.39868,-0.7403 0,-1.1934 0.21543,-0.2428 0.45315,-0.3964 0.72552,-0.4285 0.26744,-0.046 0.50269,0.02 0.70326,0.203 0.0817,0.074 0.18572,0.1838 0.30458,0.3443 0.11384,0.1653 0.2501,0.302 0.37639,0.4134 0.10159,0.089 0.26,0.2006 0.47295,0.3319 0.22039,0.1319 0.37392,0.2353 0.46306,0.3144 0.25505,0.2229 0.27238,0.4632 0.0496,0.7182" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path387"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 246.05059,39.387602 c -0.27733,-0.2998 -0.416,-0.6538 -0.40362,-1.0698 0.009,-0.4136 0.15359,-0.7651 0.45068,-1.0474 0.29962,-0.2823 0.6562,-0.4285 1.06478,-0.416 0.40857,0.019 0.76268,0.1616 1.04497,0.4654 0.29219,0.2997 0.42838,0.6489 0.42344,1.0649 -0.0149,0.406 -0.16585,0.7577 -0.46554,1.0448 -0.30458,0.2898 -0.65868,0.4261 -1.0722,0.4187 -0.40364,0 -0.75773,-0.1635 -1.04251,-0.4606 m 0.19564,1.0994 c 0.208,0.2203 0.16101,0.4803 -0.14616,0.7774 l -3.55588,3.4098 c -0.40608,0.3815 -0.5398,0.6463 -0.38876,0.7975 0.0321,0.032 0.0966,0.074 0.20058,0.1263 0.11384,0.052 0.19561,0.1095 0.24761,0.1615 0.31944,0.3343 0.26744,0.6885 -0.15358,1.0995 -0.54973,0.5324 -1.05737,0.5646 -1.49813,0.095 -0.0767,-0.074 -0.26743,-0.3144 -0.58191,-0.7081 -0.1833,-0.2478 -0.416,-0.5102 -0.69087,-0.7975 -0.13371,-0.1412 -0.34667,-0.3293 -0.63639,-0.5819 -0.29962,-0.2427 -0.51505,-0.4383 -0.64383,-0.5696 -0.20304,-0.208 -0.29466,-0.4605 -0.27486,-0.7328 0.0199,-0.27 0.14356,-0.52 0.37392,-0.738 0.44819,-0.4333 0.85677,-0.4606 1.21335,-0.084 l 0.22286,0.3839 c 0.0199,0.037 0.0422,0.074 0.057,0.091 0.13873,0.1467 0.4259,0.018 0.87409,-0.4185 l 1.91909,-1.8399 c 0.44572,-0.4234 0.6042,-0.7057 0.48038,-0.8468 -0.0247,-0.019 -0.11886,-0.065 -0.27237,-0.143 -0.0867,-0.061 -0.16102,-0.1189 -0.20307,-0.169 -0.35904,-0.3789 -0.3219,-0.7776 0.11886,-1.1961 0.23525,-0.2302 0.49525,-0.3467 0.77259,-0.3541 0.26992,0 0.51506,0.1021 0.72307,0.3194 0.0891,0.087 0.19561,0.2255 0.3318,0.4112 0.22782,0.3144 0.42344,0.5596 0.57697,0.7206 0.13371,0.1356 0.312,0.2971 0.54476,0.4802 0.23772,0.1783 0.36154,0.2873 0.38878,0.3072" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path391"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 250.44392,44.356302 c -0.26247,-0.3169 -0.38133,-0.6835 -0.33923,-1.0995 0.0321,-0.4134 0.21543,-0.7453 0.53486,-1.0103 0.32438,-0.2624 0.68591,-0.3714 1.09696,-0.3293 0.41601,0.045 0.74783,0.2229 1.01279,0.5423 0.26495,0.3219 0.37887,0.6933 0.33676,1.0995 -0.0347,0.4061 -0.22039,0.7378 -0.54972,1.0004 -0.30705,0.26 -0.66362,0.3763 -1.07716,0.3343 -0.41105,-0.037 -0.75526,-0.213 -1.01526,-0.5374 m -9.23137,4.6975 c -0.11886,0.095 -0.25754,0.1541 -0.40364,0.1764 0.0297,0.076 0.0916,0.1634 0.15099,0.2478 0.24265,0.2847 0.53733,0.3788 0.87658,0.2847 0.35162,-0.091 0.84438,-0.411 1.49317,-0.9435 l 3.76386,-3.0977 c 0.48782,-0.3938 0.66115,-0.671 0.53982,-0.8222 -0.0446,-0.046 -0.1313,-0.1207 -0.25257,-0.203 -0.12388,-0.087 -0.19811,-0.156 -0.24019,-0.1982 -0.29468,-0.3565 -0.20058,-0.7354 0.26494,-1.1265 0.56954,-0.4606 1.05736,-0.4457 1.46841,0.05 0.0966,0.1282 0.23276,0.3221 0.40611,0.5919 0.15842,0.2674 0.28972,0.4582 0.39866,0.5893 0.10159,0.1263 0.27735,0.3021 0.51754,0.5274 0.23772,0.2255 0.364,0.3542 0.39125,0.3789 0.19066,0.2329 0.12127,0.4879 -0.20553,0.7603 l -5.78695,4.7618 c -0.47048,0.3813 -0.87659,0.6463 -1.20592,0.7824 -0.33429,0.1356 -0.73297,0.1839 -1.17869,0.156 -0.97316,-0.054 -1.83489,-0.5348 -2.57776,-1.4337 -0.51258,-0.624 -0.80477,-1.243 -0.87411,-1.8498 -0.0693,-0.6091 0.099,-1.0747 0.51258,-1.4188 0.29467,-0.2452 0.63639,-0.3417 1.00783,-0.2972 0.38133,0.047 0.69087,0.2229 0.95087,0.5325 0.2179,0.2648 0.3219,0.5447 0.31696,0.8368 -0.002,0.2947 -0.11886,0.5325 -0.33429,0.7158" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path395"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 251.65877,51.290702 c -0.0544,0.037 -0.0867,0.082 -0.104,0.1282 -0.0199,0.058 0.0247,0.1634 0.13372,0.3269 l 1.03258,1.5106 c 0.0892,0.1281 0.16102,0.208 0.20801,0.2178 0.0594,0.019 0.1313,-0.019 0.208,-0.067 0.23276,-0.1616 0.36401,-0.4012 0.40115,-0.728 0.0347,-0.3245 -0.047,-0.6291 -0.23029,-0.9088 -0.24764,-0.3591 -0.58687,-0.5547 -1.01773,-0.5918 -0.27735,-0.028 -0.48535,0.018 -0.63144,0.1114 m 2.24594,4.7668 c -0.38134,0.255 -0.66612,0.3763 -0.8543,0.364 -0.19068,0 -0.38134,-0.1486 -0.57201,-0.426 l -2.24594,-3.3082 c -0.10641,-0.1616 -0.19563,-0.2526 -0.25257,-0.265 -0.057,-0.03 -0.15099,0.018 -0.28229,0.1021 -0.3764,0.2576 -0.61411,0.5967 -0.70573,1.0153 -0.0867,0.411 -0.006,0.8072 0.25258,1.1738 0.25008,0.3837 0.72305,0.624 1.41145,0.7402 0.47543,0.082 0.82705,0.2701 1.04248,0.5969 0.18572,0.2723 0.26001,0.5423 0.22287,0.8146 -0.0446,0.2748 -0.18331,0.4854 -0.41354,0.6489 -0.52991,0.3566 -1.16878,0.3714 -1.92154,0.046 -0.75773,-0.3269 -1.41145,-0.8989 -1.9711,-1.721 -0.73791,-1.0772 -0.99295,-2.1493 -0.78001,-3.2315 0.22286,-1.087 0.86669,-2.0007 1.94881,-2.7386 1.09202,-0.738 2.19393,-1.0227 3.29585,-0.842 1.10687,0.1801 2.0107,0.7826 2.709,1.8152 0.65125,0.9532 0.8964,1.9091 0.73544,2.855 -0.16102,0.941 -0.70077,1.7285 -1.61945,2.3599" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path399"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 259.4693,65.024902 c 0.14616,-0.067 0.31447,-0.097 0.50515,-0.059 0.057,-0.3046 0.0223,-0.5943 -0.11143,-0.8716 -0.20058,-0.4383 -0.54726,-0.7107 -1.03012,-0.8123 -0.49277,-0.1096 -1.04249,-0.019 -1.63678,0.2576 -0.62401,0.2897 -1.06479,0.6635 -1.30498,1.1267 -0.24268,0.458 -0.24762,0.9286 -0.0297,1.4065 0.22039,0.4852 0.6463,0.7205 1.27527,0.7107 0.39372,-0.019 0.65372,0 0.79734,0.067 0.1807,0.083 0.33925,0.2722 0.47543,0.5694 0.15842,0.3393 0.18071,0.6587 0.0743,0.9683 -0.104,0.2996 -0.31696,0.52 -0.63144,0.6686 -0.67848,0.307 -1.41145,0.255 -2.20385,-0.169 -0.8023,-0.4235 -1.41392,-1.0971 -1.83489,-2.0058 -0.54476,-1.1737 -0.60915,-2.2707 -0.21294,-3.2959 0.39372,-1.0276 1.19353,-1.82 2.40441,-2.382 1.22079,-0.5598 2.35242,-0.6513 3.39491,-0.27 1.0425,0.3838 1.84727,1.1837 2.40195,2.3896 0.40609,0.8742 0.53487,1.6887 0.3863,2.4464 -0.14858,0.7578 -0.54479,1.2902 -1.1688,1.5874 -0.40115,0.1801 -0.78001,0.1981 -1.14153,0.058 -0.35657,-0.1467 -0.63886,-0.4234 -0.82458,-0.8296 -0.15359,-0.3393 -0.19564,-0.6463 -0.12127,-0.936 0.0719,-0.2921 0.25753,-0.4927 0.53735,-0.624" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path403"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 267.01982,71.110302 -2.85758,0.9236 c 0.5324,0.3218 0.91373,0.6067 1.14402,0.8691 0.22039,0.255 0.40611,0.6068 0.55715,1.0599 0.31201,0.9583 0.22533,1.7458 -0.24515,2.3425 -0.3219,0.3987 -0.92611,0.7453 -1.8126,1.0302 l -2.69414,0.8691 c -0.52248,0.169 -0.7503,0.3566 -0.68095,0.567 0.0273,0.08 0.0719,0.1504 0.1287,0.2006 0.0594,0.05 0.10159,0.1281 0.14115,0.2253 0.14355,0.4605 -0.052,0.78 -0.58687,0.9583 -0.74534,0.2377 -1.21335,0.05 -1.41392,-0.567 -0.0544,-0.1709 -0.11385,-0.4383 -0.18572,-0.7973 -0.0719,-0.3566 -0.1313,-0.6216 -0.19068,-0.7999 -0.052,-0.1616 -0.14615,-0.4036 -0.29961,-0.7182 -0.14115,-0.3094 -0.25011,-0.5471 -0.30458,-0.718 -0.0841,-0.2551 -0.0644,-0.4929 0.0669,-0.7131 0.12127,-0.2255 0.32686,-0.3789 0.61905,-0.4656 0.52991,-0.1764 0.87412,-0.072 1.02763,0.3096 0.0743,0.1727 0.15099,0.26 0.2501,0.2797 0.0942,0.018 0.24268,-0.019 0.4383,-0.08 l 2.39451,-0.7677 c 0.85925,-0.2773 1.18612,-0.7453 0.97315,-1.394 -0.28476,-0.8891 -1.04991,-1.1392 -2.2806,-0.7355 l -1.84975,0.5893 c -0.21294,0.076 -0.34915,0.1393 -0.38629,0.203 -0.0446,0.072 -0.0446,0.213 -0.013,0.426 0.0496,0.3343 -0.15359,0.5843 -0.62154,0.7355 -0.6884,0.2154 -1.11926,0.043 -1.30992,-0.5301 -0.0396,-0.1207 -0.0867,-0.3539 -0.14616,-0.6882 -0.0669,-0.3393 -0.14114,-0.6415 -0.22782,-0.9138 -0.0743,-0.2154 -0.16101,-0.4433 -0.27486,-0.686 -0.1833,-0.4012 -0.29466,-0.6537 -0.33676,-0.7676 -0.0867,-0.2847 -0.0669,-0.5447 0.0669,-0.78 0.13613,-0.2401 0.35657,-0.4061 0.66115,-0.5076 0.5943,-0.1907 0.97316,-0.028 1.13659,0.4803 0.0199,0.059 0.0321,0.156 0.0273,0.2799 -0.002,0.1244 0.006,0.2154 0.0247,0.2749 0.052,0.1782 0.37639,0.169 0.9583,-0.021 l 5.19266,-1.6738 c 0.58439,-0.1882 0.8444,-0.3665 0.78744,-0.5474 -0.0199,-0.072 -0.0743,-0.1578 -0.14356,-0.2574 -0.047,-0.061 -0.0793,-0.1392 -0.11143,-0.2427 -0.16585,-0.5027 0.0422,-0.8444 0.60915,-1.0276 0.31448,-0.1021 0.5943,-0.096 0.83944,0.021 0.25258,0.1133 0.42344,0.317 0.51009,0.5993 0.0422,0.1318 0.0892,0.3343 0.14858,0.6115 0.0496,0.2626 0.099,0.4632 0.14616,0.6044 0.099,0.3218 0.21296,0.5991 0.31943,0.8245 0.104,0.2179 0.17588,0.3938 0.21047,0.5201 0.0942,0.2772 -0.0446,0.4828 -0.40608,0.5943" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path407"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 266.18112,83.743902 c -0.0892,-0.4778 -0.36401,-0.8097 -0.83202,-1.0053 -0.4581,-0.2006 -1.0524,-0.2327 -1.77051,-0.095 -0.72553,0.1356 -1.26782,0.3789 -1.62193,0.7306 -0.35904,0.3516 -0.48286,0.77 -0.39619,1.2653 0.19562,0.9979 1.05735,1.3544 2.59756,1.0673 1.54269,-0.2923 2.2187,-0.9484 2.02309,-1.9637 m -6.59668,1.3 c -0.2501,-1.3298 -0.0618,-2.4266 0.55219,-3.2933 0.60916,-0.8618 1.60213,-1.4288 2.95662,-1.6839 1.35202,-0.25 2.47871,-0.097 3.3652,0.4828 0.89144,0.5795 1.46345,1.5181 1.70613,2.8181 0.24266,1.2727 0.0544,2.3523 -0.55715,3.2265 -0.61412,0.879 -1.57242,1.4387 -2.87987,1.6863 -1.37183,0.255 -2.51336,0.104 -3.41719,-0.463 -0.9063,-0.5672 -1.48327,-1.4908 -1.72593,-2.7735" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path411"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 266.65977,94.285202 c 0.16584,-0.018 0.33429,0.032 0.50515,0.1356 0.15841,-0.2674 0.22533,-0.5497 0.20304,-0.8543 -0.0371,-0.478 -0.26,-0.8593 -0.68095,-1.1318 -0.42096,-0.2674 -0.95336,-0.3812 -1.61945,-0.3268 -0.68344,0.044 -1.2208,0.2403 -1.60709,0.5868 -0.39123,0.3468 -0.56952,0.7801 -0.53238,1.3001 0.0396,0.5374 0.35409,0.9113 0.95335,1.1217 0.35904,0.1263 0.59676,0.2403 0.70819,0.3467 0.14115,0.1412 0.22039,0.3715 0.24021,0.7007 0.0247,0.3691 -0.057,0.6786 -0.26496,0.9286 -0.20801,0.2403 -0.4903,0.3765 -0.83698,0.4012 -0.73791,0.05 -1.41145,-0.26 -2.00574,-0.9409 -0.59677,-0.681 -0.93353,-1.5204 -1.00535,-2.5233 -0.0966,-1.2828 0.22782,-2.335 0.96326,-3.1572 0.73791,-0.8196 1.7705,-1.2727 3.09777,-1.3669 1.33716,-0.098 2.43165,0.213 3.26862,0.9384 0.84191,0.7307 1.30745,1.7582 1.40896,3.0856 0.0594,0.9557 -0.10901,1.7654 -0.51258,2.4265 -0.40608,0.6612 -0.9583,1.0103 -1.65659,1.0674 -0.43334,0.024 -0.79734,-0.095 -1.0821,-0.3542 -0.28478,-0.2648 -0.45068,-0.6166 -0.4804,-1.0647 -0.0273,-0.3739 0.0496,-0.6785 0.22039,-0.9212 0.17086,-0.2451 0.41352,-0.3738 0.71563,-0.3987" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path415"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 267.55888,102.7502 c 0.0149,-0.4828 -0.17829,-0.8766 -0.58687,-1.1737 -0.40857,-0.2922 -0.97563,-0.463 -1.7086,-0.4951 -0.74286,-0.03 -1.32477,0.089 -1.75564,0.3515 -0.42343,0.26 -0.64876,0.6439 -0.67601,1.1491 -0.0422,1.0201 0.72554,1.5624 2.29794,1.6293 1.57241,0.067 2.37718,-0.4235 2.42918,-1.4611 m -6.74029,-0.2228 c 0.0618,-1.3545 0.49029,-2.3821 1.28269,-3.085398 0.79487,-0.7057 1.8844,-1.0326 3.27356,-0.9707 1.37431,0.054 2.43415,0.473 3.17206,1.2358 0.73544,0.765098 1.07716,1.809998 1.02021,3.129798 -0.052,1.2951 -0.47792,2.3054 -1.27279,3.0161 -0.79734,0.7206 -1.86707,1.045 -3.19928,0.9904 -1.38916,-0.061 -2.46632,-0.468 -3.22654,-1.2305 -0.75276,-0.7628 -1.10191,-1.7855 -1.04991,-3.0855" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path419"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 271.22717,112.1993 c -0.0422,0.2972 -0.26495,0.421 -0.6661,0.364 l -7.67632,-1.0697 c -0.5423,-0.074 -0.83449,0 -0.8543,0.2104 -0.0167,0.089 -0.006,0.1653 0.0199,0.2377 0.0396,0.074 0.0446,0.1616 0.0273,0.2626 -0.0644,0.4853 -0.38135,0.6835 -0.96326,0.5992 -0.75277,-0.104 -1.09202,-0.4779 -0.99791,-1.1316 0,-0.019 0.0941,-0.416 0.26494,-1.2233 0.0618,-0.2426 0.104,-0.5026 0.14115,-0.7825 0.0371,-0.2377 0.0544,-0.4977 0.0544,-0.7776 0.0167,-0.4579 0.0297,-0.7402 0.0496,-0.8665 0.0422,-0.2923 0.16844,-0.5126 0.39621,-0.6686 0.23029,-0.1541 0.50515,-0.213 0.82952,-0.1709 0.60173,0.084 0.87412,0.3912 0.8023,0.9236 -0.0149,0.067 -0.0396,0.1542 -0.104,0.255 -0.0496,0.1096 -0.0841,0.1982 -0.0966,0.2674 -0.0247,0.1783 0.26496,0.312 0.87411,0.3938 l 5.40066,0.7627 c 0.60668,0.082 0.92611,0.028 0.95087,-0.1467 0.006,-0.082 0,-0.1839 -0.0247,-0.307 -0.013,-0.069 -0.013,-0.1579 0.002,-0.2624 0.0793,-0.5152 0.40858,-0.7405 0.99544,-0.6513 0.33429,0.039 0.5844,0.1653 0.75526,0.3812 0.16343,0.2131 0.22533,0.4731 0.18819,0.7875 -0.0149,0.082 -0.057,0.2674 -0.12629,0.5449 -0.0916,0.359 -0.14858,0.6288 -0.17588,0.822 -0.0347,0.2427 -0.0395,0.4631 -0.0297,0.6489 -0.006,0.2574 -0.0167,0.4555 -0.0371,0.5967" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path423"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 261.99802,118.7405 0.34915,0.08 c -0.0321,-0.08 -0.047,-0.577 -0.0669,-1.4907 -0.006,-0.6166 -0.16101,-0.9557 -0.47049,-1.03 -0.48781,-0.1189 -0.8023,0.1058 -0.93602,0.6734 -0.23029,0.941 0.15099,1.5303 1.12422,1.768 m -3.97435,1.5006 c 0.2179,-0.8715 0.70324,-1.3717 1.47582,-1.503 -0.52,-0.9137 -0.65372,-1.877 -0.40609,-2.8972 0.19809,-0.8344 0.57695,-1.456 1.13906,-1.8447 0.56458,-0.3963 1.21335,-0.5027 1.94385,-0.3194 1.1143,0.2674 1.72593,0.9211 1.81507,1.9686 0.0371,0.4431 0.0396,0.9557 0.002,1.5178 -0.0544,0.7851 -0.0297,1.3348 0.0693,1.6468 0.099,0.307 0.31448,0.5051 0.65373,0.5843 0.24265,0.065 0.4779,0 0.69333,-0.1653 0.21544,-0.1616 0.36154,-0.4012 0.43583,-0.7108 0.0793,-0.3491 0.0167,-0.5545 -0.2105,-0.6041 -0.0719,-0.019 -0.14857,-0.043 -0.22533,-0.058 l -0.0618,-0.019 c -0.29715,-0.069 -0.5225,-0.2549 -0.66115,-0.5497 -0.13873,-0.2995 -0.16585,-0.6264 -0.0767,-0.9978 0.0966,-0.4211 0.30953,-0.7453 0.63143,-0.9485 0.3244,-0.2178 0.67107,-0.2773 1.05488,-0.1857 0.57201,0.1393 0.95336,0.5423 1.13165,1.2357 0.1833,0.6785 0.15359,1.5575 -0.10642,2.6149 -0.28229,1.1489 -0.66362,1.966 -1.14649,2.4441 -0.52496,0.5126 -1.31488,0.6463 -2.35242,0.3937 l -3.29834,-0.7999 c -0.33429,-0.082 -0.52495,-0.03 -0.56705,0.1337 -0.0247,0.082 -0.0371,0.1635 -0.057,0.2428 -0.013,0.028 -0.0167,0.061 -0.0273,0.1058 -0.057,0.2452 -0.19314,0.4285 -0.39868,0.5572 -0.21047,0.1337 -0.43829,0.1653 -0.67601,0.1096 -0.34667,-0.084 -0.58686,-0.3072 -0.73048,-0.6761 -0.14114,-0.3714 -0.156,-0.7948 -0.0446,-1.2777" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path427"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 262.21518,128.3785 c 0.14115,-0.3813 0.0793,-0.7552 -0.17829,-1.1316 -0.2699,-0.3715 -0.70076,-0.6909 -1.30002,-0.9633 0,0 -0.0693,-0.028 -0.20304,-0.072 -0.61907,-0.2353 -1.15888,-0.2997 -1.6046,-0.1981 -0.45068,0.1021 -0.74783,0.3566 -0.9063,0.7701 -0.17587,0.4432 -0.11644,0.879 0.16845,1.3149 0.28229,0.4259 0.74039,0.7602 1.38422,1.0077 0.62152,0.2353 1.17124,0.2849 1.6566,0.156 0.4779,-0.1355 0.80724,-0.4308 0.98306,-0.884 m 2.13946,0.1958 c -0.30458,0.775 -0.87163,1.3743 -1.72099,1.8025 l 1.09451,0.416 c 0.36894,0.1412 0.60172,0.082 0.69581,-0.1727 0.0199,-0.065 0.0618,-0.1857 0.10901,-0.3738 0.0149,-0.1542 0.047,-0.2923 0.0942,-0.4235 0.0743,-0.1931 0.22037,-0.3318 0.42838,-0.3963 0.21792,-0.067 0.44572,-0.061 0.69335,0.032 0.65124,0.25 0.84439,0.7156 0.58438,1.4139 -0.0891,0.2278 -0.15842,0.3838 -0.20551,0.4852 -0.18821,0.3938 -0.32193,0.6638 -0.37393,0.8073 -0.0544,0.1208 -0.11644,0.3269 -0.1833,0.5968 -0.0719,0.2626 -0.13613,0.4557 -0.18572,0.5746 -0.0891,0.26 -0.22039,0.4134 -0.37392,0.4654 -0.156,0.05 -0.39123,0.018 -0.7082,-0.1096 l -7.00029,-2.6595 c -0.5225,-0.2031 -0.81965,-0.2031 -0.8964,-0.019 -0.0199,0.059 -0.0297,0.1485 -0.0273,0.2549 0.007,0.067 -0.013,0.156 -0.0446,0.2576 -0.17327,0.4383 -0.51752,0.5596 -1.03258,0.359 -0.31695,-0.1188 -0.54724,-0.2971 -0.68591,-0.5176 -0.14115,-0.2377 -0.16102,-0.4778 -0.0669,-0.7328 l 0.0347,-0.087 0.29715,-0.5076 c 0.0644,-0.1114 0.14355,-0.2823 0.2278,-0.5101 0.10158,-0.2624 0.16844,-0.4879 0.22039,-0.6636 0.0618,-0.27 0.099,-0.4136 0.104,-0.4335 0.12629,-0.312 0.36896,-0.4059 0.7404,-0.2648 l 0.56458,0.2179 c -0.70079,-0.8742 -0.85183,-1.8424 -0.44821,-2.9097 0.36153,-0.936 1.04001,-1.5624 2.04042,-1.8768 1.0004,-0.312 2.08993,-0.2428 3.26366,0.2005 1.18859,0.4532 2.04289,1.1218 2.54804,1.9984 0.50764,0.879 0.57697,1.7977 0.21297,2.7683" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path431"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 257.67824,137.0451 c -0.052,-0.024 -0.11143,-0.043 -0.16343,-0.032 -0.052,0 -0.12128,0.097 -0.22286,0.2724 l -0.85679,1.6219 c -0.0719,0.143 -0.10159,0.2451 -0.0891,0.2923 0.0167,0.058 0.0693,0.1021 0.15601,0.1467 0.25506,0.1319 0.53486,0.1393 0.83944,0.022 0.30953,-0.1207 0.53982,-0.3293 0.6983,-0.6363 0.208,-0.3788 0.22286,-0.7752 0.0421,-1.1787 -0.10641,-0.26 -0.24514,-0.4285 -0.40362,-0.5076 m -3.15719,4.2195 c -0.40858,-0.2106 -0.65621,-0.4086 -0.73544,-0.5746 -0.0817,-0.1727 -0.0422,-0.411 0.11645,-0.7105 l 1.86709,-3.5287 c 0.0915,-0.1838 0.13371,-0.2923 0.12387,-0.3541 -0.0167,-0.065 -0.0867,-0.1208 -0.2179,-0.1932 -0.40858,-0.2253 -0.81469,-0.2724 -1.22078,-0.1486 -0.40115,0.1133 -0.71068,0.3715 -0.92611,0.7702 -0.21297,0.4036 -0.21297,0.936 0.009,1.5996 0.15842,0.4507 0.14356,0.8493 -0.0422,1.1936 -0.15359,0.2921 -0.36153,0.4877 -0.61907,0.572 -0.26,0.095 -0.51009,0.074 -0.76515,-0.05 -0.55715,-0.3046 -0.86916,-0.8668 -0.93602,-1.6813 -0.0693,-0.8222 0.13372,-1.6741 0.59679,-2.5432 0.60666,-1.1515 1.43867,-1.8869 2.49851,-2.2064 1.05983,-0.3144 2.16422,-0.1727 3.32805,0.4409 1.1663,0.624 1.9265,1.4585 2.29051,2.5208 0.35906,1.0599 0.2501,2.1394 -0.33676,3.2439 -0.5423,1.0177 -1.26784,1.6837 -2.17908,1.9859 -0.91869,0.2995 -1.87203,0.1907 -2.85262,-0.3367" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path435"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 109.67074,140.4781 c 0.20057,0.3144 0.58193,0.2897 1.15641,-0.069 l 3.98673,-2.5183 c 0.61905,-0.3913 0.78248,-0.8148 0.49772,-1.2679 -0.28724,-0.4481 -0.58935,-0.5795 -0.90136,-0.3765 -0.099,0.058 -0.22286,0.156 -0.39866,0.312 -0.16343,0.1505 -0.2922,0.2626 -0.38878,0.3221 -0.82209,0.515 -1.45602,0.4333 -1.89182,-0.2626 -0.20058,-0.3269 -0.2625,-0.6413 -0.16845,-0.9632 0.0916,-0.3146 0.31694,-0.5844 0.66609,-0.8049 0.11645,-0.076 0.34915,-0.1881 0.68344,-0.3539 0.2625,-0.1282 0.49526,-0.2502 0.69583,-0.3789 0.11143,-0.067 0.32686,-0.2303 0.63887,-0.4879 0.21296,-0.1708 0.39372,-0.3021 0.53239,-0.3913 0.41105,-0.2526 0.74287,-0.1801 1.00039,0.2279 0.13613,0.2178 0.29467,0.5001 0.468,0.8344 0.40611,0.785 1.02269,1.8548 1.86956,3.1869 0.8543,1.3472 1.55013,2.3748 2.085,3.0731 0.2278,0.3096 0.416,0.5622 0.54229,0.7676 0.26248,0.4234 0.19562,0.7603 -0.21296,1.0153 -0.13613,0.087 -0.36154,0.1981 -0.65373,0.3441 -0.29218,0.1319 -0.50268,0.2502 -0.63886,0.3369 -0.15099,0.097 -0.36648,0.2476 -0.64877,0.4606 -0.35906,0.2823 -0.56954,0.4431 -0.61907,0.4802 -0.35162,0.2181 -0.69581,0.3022 -1.01773,0.2428 -0.32437,-0.065 -0.58438,-0.2526 -0.78495,-0.567 -0.43087,-0.6909 -0.26001,-1.2902 0.5398,-1.7929 0.10902,-0.069 0.26497,-0.1467 0.46554,-0.2402 0.20553,-0.087 0.35411,-0.1653 0.44572,-0.2178 0.33429,-0.2154 0.3764,-0.52 0.11645,-0.9312 -0.16845,-0.2574 -0.35658,-0.4036 -0.56705,-0.4283 -0.20554,-0.02 -0.4804,0.074 -0.82459,0.2847 l -3.98673,2.5184 c -0.56458,0.359 -0.7602,0.6933 -0.56211,1.0127 0.0693,0.1021 0.17828,0.2477 0.32935,0.421 0.16343,0.1839 0.2699,0.3194 0.33429,0.4184 0.35409,0.5524 0.24514,1.0055 -0.30458,1.3547 -0.72801,0.4605 -1.31488,0.3465 -1.7507,-0.3492 -0.16585,-0.2674 -0.34915,-0.5943 -0.54725,-0.9856 -0.29715,-0.5893 -0.56458,-1.0846 -0.81716,-1.4733 -0.26,-0.4136 -0.58191,-0.8742 -0.98306,-1.3843 -0.26496,-0.3343 -0.49029,-0.6413 -0.66115,-0.9186 -0.43333,-0.6935 -0.32439,-1.2506 0.35411,-1.674 0.61162,-0.3837 1.08953,-0.2972 1.44859,0.265 0.0644,0.1021 0.13873,0.2576 0.24019,0.4778 0.0916,0.2229 0.16845,0.3839 0.23276,0.4805" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path439"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 120.28708,148.0106 c -0.29715,-0.3814 -0.70077,-0.5423 -1.20592,-0.4903 -0.50019,0.043 -1.03505,0.2922 -1.60459,0.7552 -0.58191,0.468 -0.94098,0.9336 -1.08955,1.4188 -0.14858,0.4755 -0.0645,0.9063 0.25506,1.2976 0.63391,0.8023 1.56746,0.6909 2.78823,-0.2847 1.22821,-0.993 1.5105,-1.8943 0.85677,-2.6966 m -5.19512,4.2814 c -0.8543,-1.0573 -1.21335,-2.1098 -1.08459,-3.1697 0.13613,-1.0498 0.7404,-2.0105 1.82499,-2.8847 1.0722,-0.8617 2.13697,-1.2579 3.19184,-1.1687 1.06231,0.087 2.00081,0.6412 2.83776,1.6788 0.81716,1.0103 1.15394,2.0454 1.03259,3.1052 -0.12127,1.0573 -0.70572,2.0058 -1.74574,2.8501 -1.08459,0.8765 -2.16918,1.2827 -3.24138,1.2134 -1.06477,-0.069 -2.00328,-0.6165 -2.81547,-1.6244" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path443"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 126.86025,153.4182 -0.55222,0.5669 c 1.28766,-0.117 2.31282,0.1932 3.07054,0.9411 0.81467,0.7924 1.08459,1.659 0.82706,2.595 -0.12871,0.4903 -0.52248,1.0649 -1.17869,1.7409 l -1.72346,1.7532 c -0.38133,0.3961 -0.50515,0.676 -0.34419,0.8246 0.0371,0.044 0.11644,0.082 0.21543,0.1244 0.0719,0.019 0.13372,0.067 0.21543,0.1467 0.33925,0.3343 0.31201,0.7033 -0.0916,1.1167 -0.54476,0.5524 -1.04248,0.5969 -1.51298,0.1319 -0.11886,-0.1207 -0.29466,-0.3194 -0.51009,-0.5967 -0.22286,-0.2725 -0.39621,-0.473 -0.51507,-0.5943 -0.20057,-0.1907 -0.42343,-0.3789 -0.67105,-0.5646 -0.24515,-0.1857 -0.44325,-0.3369 -0.5844,-0.4754 -0.468,-0.4532 -0.46304,-0.9188 0.009,-1.3942 0.40611,-0.4136 0.78001,-0.4704 1.12422,-0.1839 0.22533,0.1884 0.43086,0.1958 0.60666,0.019 l 1.6046,-1.6367 c 0.44325,-0.4556 0.69336,-0.8246 0.75526,-1.1268 0.0719,-0.2945 -0.047,-0.5868 -0.32191,-0.8543 -0.31943,-0.3168 -0.69335,-0.4654 -1.1143,-0.4481 -0.42096,0.019 -0.79487,0.1907 -1.12422,0.5274 l -1.19106,1.2133 c -0.34419,0.3542 -0.54476,0.5821 -0.58191,0.6835 -0.0446,0.1114 0,0.2477 0.1313,0.4111 0.23276,0.3169 0.16845,0.6586 -0.20306,1.0449 -0.48533,0.4903 -0.93601,0.5375 -1.34706,0.1337 -0.11886,-0.1188 -0.25258,-0.2797 -0.40115,-0.463 -0.24268,-0.3218 -0.43829,-0.5521 -0.57697,-0.6933 -0.14356,-0.1355 -0.37143,-0.322 -0.67848,-0.5597 -0.30954,-0.2426 -0.52991,-0.4259 -0.66858,-0.572 -0.49525,-0.4755 -0.48534,-0.9806 0.0273,-1.5055 0.43086,-0.4358 0.83448,-0.468 1.20345,-0.1021 0.0618,0.059 0.12127,0.1411 0.17828,0.2476 0.052,0.104 0.0867,0.1764 0.13131,0.2106 0.1313,0.1281 0.41104,-0.024 0.84191,-0.4582 l 1.8547,-1.8967 c 0.43334,-0.4483 0.59183,-0.7355 0.45562,-0.8668 -0.0273,-0.03 -0.10641,-0.076 -0.22286,-0.1393 -0.11143,-0.058 -0.19562,-0.1095 -0.23772,-0.1578 -0.37143,-0.369 -0.35657,-0.7602 0.0693,-1.1936 0.22782,-0.2351 0.47544,-0.3614 0.7503,-0.3813 0.27239,-0.02 0.5225,0.065 0.72059,0.2749 0.0719,0.054 0.1833,0.213 0.34914,0.4481 0.0867,0.1411 0.18071,0.2526 0.26744,0.3319 0.0942,0.097 0.27239,0.2401 0.52992,0.4258 0.25505,0.1958 0.39866,0.2998 0.41848,0.3245 0.2179,0.1981 0.21047,0.4184 -0.006,0.6314" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path447"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 133.98757,162.444 -1.24059,3.4865 2.92938,-2.0254 c 0.23029,-0.1505 0.37639,-0.2823 0.45563,-0.3889 0.0817,-0.099 0.0618,-0.2179 -0.0347,-0.3813 l -0.16344,-0.2576 c -0.1313,-0.2179 -0.0841,-0.4654 0.14115,-0.7626 0.16584,-0.218 0.36152,-0.3517 0.60172,-0.4011 0.23276,-0.046 0.44572,0 0.63887,0.1467 0.12387,0.098 0.31695,0.2674 0.55962,0.5027 0.24268,0.2378 0.4284,0.4062 0.55962,0.515 0.13874,0.099 0.3665,0.2378 0.66859,0.416 0.3021,0.1728 0.52743,0.3146 0.66115,0.4235 0.52744,0.3963 0.57944,0.8816 0.14616,1.4437 -0.156,0.203 -0.34419,0.3293 -0.57695,0.3962 -0.23029,0.059 -0.42839,0.035 -0.5943,-0.097 -0.0421,-0.024 -0.0867,-0.074 -0.15358,-0.1579 -0.0719,-0.08 -0.12388,-0.1318 -0.16102,-0.1578 -0.15842,-0.1244 -0.38135,-0.084 -0.68097,0.1058 l -0.51011,0.3269 -3.34291,2.08 c -1.03259,0.6488 -1.71603,1.0499 -2.05526,1.2157 -0.33925,0.1653 -0.75278,0.3146 -1.25545,0.4484 -1.36194,0.359 -2.553,0.1467 -3.55834,-0.6092 -0.61907,-0.4706 -1.01773,-1.0079 -1.19602,-1.6096 -0.17587,-0.5993 -0.0891,-1.1217 0.26248,-1.5873 0.24267,-0.3269 0.54476,-0.5052 0.90383,-0.562 0.35904,-0.046 0.69333,0.045 1.00534,0.2847 0.27239,0.2056 0.42839,0.4507 0.46801,0.7304 0.047,0.2873 -0.0297,0.5572 -0.21544,0.8172 -0.0767,0.091 -0.15098,0.1883 -0.22286,0.2849 0.0719,0.1318 0.16343,0.2451 0.26744,0.3168 0.23524,0.1764 0.55715,0.2032 0.97562,0.084 0.41354,-0.117 0.69336,-0.2725 0.83945,-0.4632 0.13613,-0.1783 0.31696,-0.7328 0.55221,-1.659 l 1.14649,-4.5538 c 0.0719,-0.317 0.0644,-0.5224 -0.0396,-0.5993 -0.009,0 -0.0767,-0.058 -0.19811,-0.1486 -0.009,0 -0.0199,-0.019 -0.047,-0.039 -0.0273,-0.02 -0.057,-0.039 -0.0693,-0.05 -0.44573,-0.3317 -0.47791,-0.7477 -0.10401,-1.2406 0.18331,-0.2452 0.41354,-0.3887 0.69336,-0.4407 0.27486,-0.058 0.52991,0 0.76267,0.1764 0.13371,0.1022 0.32686,0.2797 0.57943,0.515 0.24764,0.2427 0.44079,0.421 0.57697,0.525 0.16845,0.1263 0.46058,0.3195 0.87659,0.5819 0.416,0.2624 0.64382,0.4035 0.66611,0.416 0.47791,0.369 0.52744,0.8023 0.14616,1.3098 -0.2699,0.3518 -0.60668,0.4261 -1.02269,0.208 -0.20304,-0.1114 -0.35409,-0.1021 -0.45315,0.03 -0.0496,0.072 -0.11644,0.2005 -0.18819,0.4061" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path451"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 141.84341,163.3717 c 0.24762,-0.3963 0.57944,-0.6564 1.00288,-0.7752 0.416,-0.1114 0.81962,-0.052 1.19106,0.1708 0.45315,0.2799 0.71564,0.7084 0.78497,1.2754 0.0793,0.5744 -0.052,1.1291 -0.38876,1.6789 -0.6884,1.1291 -1.90671,2.0057 -3.65492,2.6199 -0.42343,0.156 -0.73793,0.1653 -0.94344,0.037 -0.34421,-0.2106 -0.39868,-0.4977 -0.16343,-0.8816 0.14114,-0.2353 0.39619,-0.4383 0.76762,-0.6067 1.03259,-0.463 1.61203,-0.8122 1.7606,-1.0573 0.0793,-0.1282 0.0371,-0.2897 -0.14114,-0.4903 -0.56954,-0.6166 -0.64134,-1.2703 -0.21544,-1.971" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path455"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 148.35267,168.3357 c 0.7503,0.3813 1.2827,0.9039 1.59717,1.5699 0.24515,-0.3911 0.61164,-0.4704 1.10441,-0.2277 0.49525,0.2425 0.66115,0.5497 0.48533,0.9063 -0.057,0.1058 -0.14356,0.2377 -0.25504,0.3614 -0.12128,0.1616 -0.20801,0.3194 -0.29219,0.473 -0.0167,0.03 -0.047,0.1189 -0.104,0.2452 -0.0669,0.1262 -0.12128,0.2377 -0.17328,0.3393 l -0.0223,0.059 c -0.25753,0.5174 -0.64135,0.6463 -1.16383,0.3911 -0.37143,-0.1857 -0.60419,-0.5248 -0.69334,-1.035 -0.11143,-0.6116 -0.41353,-1.0326 -0.89144,-1.2727 -0.56954,-0.2775 -0.95087,-0.2255 -1.14402,0.1653 -0.10159,0.2056 -0.0793,0.3961 0.0644,0.5696 0.15099,0.1764 0.58191,0.5298 1.30497,1.0623 0.58935,0.4333 0.99544,0.8023 1.23812,1.1069 0.22782,0.2945 0.38876,0.624 0.44076,1.0002 0.0693,0.4656 -0.009,0.9411 -0.24515,1.4091 -0.364,0.7428 -0.9583,1.2207 -1.77792,1.4387 -0.81716,0.2128 -1.6566,0.1096 -2.51833,-0.317 -0.86173,-0.4234 -1.50555,-1.0896 -1.93642,-1.9784 -0.23772,0.4704 -0.59676,0.5892 -1.09202,0.3391 -0.52247,-0.255 -0.68591,-0.6066 -0.46551,-1.0326 0.0396,-0.091 0.1313,-0.2426 0.25257,-0.4431 0.12127,-0.1958 0.20305,-0.3444 0.25505,-0.4433 0.0396,-0.084 0.10158,-0.2205 0.17327,-0.4012 0.0719,-0.1881 0.1287,-0.317 0.17829,-0.411 0.21047,-0.4383 0.59676,-0.5274 1.14649,-0.2526 0.26743,0.1282 0.44078,0.2675 0.54229,0.4134 0.0966,0.1468 0.16585,0.3741 0.20554,0.6787 0.0719,0.4778 0.17327,0.8368 0.32439,1.0548 0.15359,0.2129 0.42837,0.4209 0.82209,0.6166 0.71069,0.3516 1.17127,0.3046 1.38917,-0.1337 0.14857,-0.3096 -0.0273,-0.6537 -0.53734,-1.0599 l -0.76515,-0.5943 c -0.62648,-0.4927 -1.04745,-0.8766 -1.26288,-1.1663 -0.21543,-0.2921 -0.32439,-0.6413 -0.33429,-1.0376 -0.009,-0.4036 0.0867,-0.8097 0.28972,-1.2157 0.35658,-0.7306 0.90134,-1.206 1.61449,-1.4337 0.70822,-0.2106 1.45852,-0.1319 2.24596,0.255" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path459"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 162.12424,170.8208 c 1.00534,0.2897 1.76803,0.9163 2.29298,1.8746 0.007,-0.037 0.0167,-0.089 0.0496,-0.1578 0.16845,-0.5893 0.57201,-0.7849 1.19851,-0.6018 0.29962,0.087 0.50762,0.2502 0.63391,0.4829 0.13873,0.2403 0.15099,0.5078 0.0693,0.8023 -0.0446,0.1356 -0.10901,0.3319 -0.21543,0.5895 -0.17587,0.4085 -0.28725,0.7155 -0.34172,0.9063 -0.0422,0.1337 -0.0841,0.3367 -0.1313,0.6165 -0.0371,0.2773 -0.0793,0.4877 -0.11645,0.6265 -0.0942,0.3244 -0.29467,0.5547 -0.58439,0.676 -0.29466,0.1318 -0.63391,0.143 -1.01525,0.032 -0.79735,-0.2378 -1.08954,-0.6785 -0.86915,-1.3346 l 0.14356,-0.4953 c 0.11384,-0.3417 0.0594,-0.671 -0.16845,-0.9856 -0.22039,-0.3094 -0.55964,-0.5349 -1.00536,-0.6636 -1.39411,-0.416 -2.41679,0.4977 -3.08538,2.7165 -0.32686,1.1613 -0.41104,2.0503 -0.22286,2.6818 0.18331,0.6338 0.6463,1.0548 1.3867,1.2727 0.46305,0.1411 0.87162,0.1411 1.23067,0 0.35411,-0.1282 0.57201,-0.3664 0.66858,-0.7108 l 0.16343,-0.5744 c 0.0841,-0.3293 0.2724,-0.5622 0.54973,-0.6959 0.26992,-0.1337 0.58935,-0.1504 0.92611,-0.046 0.4383,0.1244 0.74287,0.369 0.91126,0.7429 0.16845,0.3714 0.18071,0.8097 0.0371,1.3098 -0.29964,0.9955 -0.92612,1.6964 -1.91661,2.0975 -0.97811,0.4012 -2.08499,0.4086 -3.33301,0.047 -1.52784,-0.4482 -2.59014,-1.2902 -3.19433,-2.5308 -0.59677,-1.2332 -0.64134,-2.6966 -0.14858,-4.3803 0.51011,-1.7384 1.30498,-2.9914 2.397,-3.759 1.08706,-0.7677 2.32022,-0.9484 3.68957,-0.5449" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path463"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 170.72566,173.6494 -0.48287,2.9591 c 0.52744,-0.3269 0.95584,-0.5299 1.2926,-0.6116 0.33678,-0.084 0.73297,-0.089 1.19355,0 1.00287,0.1634 1.66649,0.5893 1.98346,1.2902 0.21296,0.468 0.24267,1.1563 0.0891,2.0774 l -0.46058,2.7858 c -0.0817,0.5399 -0.0223,0.8246 0.19315,0.8617 0.0891,0.019 0.16844,0 0.24514,-0.022 0.0669,-0.03 0.15359,-0.035 0.26001,-0.022 0.4779,0.08 0.66611,0.4038 0.57448,0.9583 -0.1287,0.7752 -0.50762,1.1069 -1.14153,0.9931 -0.1833,-0.02 -0.45315,-0.095 -0.79983,-0.1932 -0.34915,-0.098 -0.61905,-0.169 -0.8023,-0.2005 -0.17086,-0.022 -0.43333,-0.043 -0.77505,-0.052 -0.35164,-0.019 -0.61164,-0.039 -0.78002,-0.065 -0.27239,-0.043 -0.47792,-0.1653 -0.61411,-0.3813 -0.13371,-0.2104 -0.17587,-0.468 -0.1313,-0.7652 0.0942,-0.5547 0.34668,-0.8097 0.77012,-0.7726 0.1807,0.022 0.30457,-0.018 0.36151,-0.089 0.0644,-0.082 0.10159,-0.2229 0.13613,-0.4234 l 0.40858,-2.4714 c 0.14616,-0.8914 -0.12127,-1.3966 -0.80477,-1.5104 -0.92611,-0.1486 -1.49563,0.4136 -1.70364,1.6937 l -0.31943,1.9068 c -0.0297,0.2228 -0.0273,0.3762 0.007,0.4357 0.0396,0.072 0.16584,0.1411 0.37637,0.2031 0.32935,0.1133 0.45068,0.406 0.37887,0.8915 -0.11886,0.7156 -0.47791,1.0201 -1.07221,0.9211 -0.12387,-0.02 -0.3541,-0.082 -0.68591,-0.1782 -0.31943,-0.097 -0.62649,-0.169 -0.90383,-0.2205 -0.23029,-0.035 -0.47047,-0.059 -0.73544,-0.069 -0.44076,-0.019 -0.72305,-0.032 -0.83944,-0.05 -0.29219,-0.05 -0.51258,-0.1908 -0.66611,-0.4185 -0.14356,-0.2303 -0.19066,-0.4953 -0.14356,-0.8147 0.099,-0.6216 0.41354,-0.8816 0.93602,-0.7899 0.0668,0.019 0.15358,0.039 0.26249,0.1022 0.10641,0.061 0.19066,0.095 0.25504,0.104 0.18572,0.032 0.32687,-0.26 0.42097,-0.8642 l 0.88895,-5.3882 c 0.0916,-0.5993 0.0496,-0.9137 -0.12628,-0.9509 -0.0767,0 -0.17829,0 -0.30458,0.019 -0.0669,0.019 -0.15359,0 -0.26001,-0.019 -0.52,-0.082 -0.72801,-0.416 -0.63143,-1.0153 0.0496,-0.317 0.18571,-0.5595 0.39868,-0.733 0.21296,-0.169 0.47047,-0.2277 0.75772,-0.1801 0.13873,0.018 0.34172,0.067 0.61411,0.1467 0.26001,0.076 0.45562,0.1244 0.59677,0.1467 0.33182,0.061 0.62154,0.089 0.87163,0.091 0.24763,0.019 0.43335,0.022 0.56706,0.05 0.29219,0.046 0.40115,0.2576 0.34419,0.6365" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path467"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 181.27416,178.8503 c -0.48287,-0.028 -0.87659,0.169 -1.17869,0.567 -0.29962,0.4061 -0.46552,0.9731 -0.50515,1.7112 -0.0446,0.7477 0.0618,1.3395 0.32439,1.7704 0.2501,0.4234 0.63144,0.6537 1.13412,0.681 1.0202,0.054 1.57239,-0.7057 1.6566,-2.2757 0.0817,-1.5798 -0.39621,-2.3995 -1.43127,-2.4539 m -0.30211,6.7452 c -1.35202,-0.08 -2.37469,-0.515 -3.06805,-1.3247 -0.70323,-0.7975 -1.01277,-1.8969 -0.93352,-3.2736 0.0767,-1.3768 0.49523,-2.4417 1.27277,-3.1697 0.77259,-0.728 1.8225,-1.0548 3.13738,-0.9854 1.29755,0.069 2.30042,0.5052 3.00615,1.3123 0.70573,0.8049 1.02763,1.877 0.95087,3.2044 -0.0719,1.394 -0.49772,2.4737 -1.26288,3.219 -0.77011,0.7453 -1.80764,1.0846 -3.10272,1.0177" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path471"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 191.47004,179.6981 c -0.009,-0.1653 0.0371,-0.3317 0.13371,-0.5002 -0.26,-0.1652 -0.54478,-0.2401 -0.84936,-0.2303 -0.48037,0.021 -0.85924,0.2354 -1.14649,0.6514 -0.28229,0.4134 -0.40857,0.9532 -0.38382,1.6168 0.0273,0.6935 0.20554,1.2382 0.5423,1.6418 0.33429,0.4085 0.76268,0.5942 1.28269,0.5746 0.53487,-0.019 0.91869,-0.3269 1.14649,-0.9164 0.13372,-0.3664 0.26,-0.5991 0.364,-0.7057 0.14616,-0.1393 0.38383,-0.2128 0.71316,-0.2303 0.37639,-0.019 0.6785,0.089 0.92116,0.3072 0.23524,0.2104 0.35657,0.4903 0.37886,0.8419 0.0321,0.7428 -0.30705,1.4064 -1.00534,1.981 -0.70326,0.5794 -1.55507,0.8864 -2.5629,0.9286 -1.28763,0.045 -2.32518,-0.3096 -3.12252,-1.0673 -0.79487,-0.7628 -1.21831,-1.815 -1.27031,-3.1474 -0.0544,-1.3371 0.29219,-2.4241 1.04992,-3.2487 0.75277,-0.8172 1.80021,-1.2505 3.13491,-1.3025 0.96077,-0.039 1.76306,0.156 2.41185,0.5843 0.64134,0.421 0.98553,0.9906 1.0103,1.6889 0.0167,0.4357 -0.10901,0.7949 -0.38382,1.0746 -0.27486,0.2748 -0.63144,0.4284 -1.07469,0.4383 -0.37638,0.019 -0.67601,-0.065 -0.91867,-0.2452 -0.23772,-0.1838 -0.35658,-0.4282 -0.37143,-0.7354" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path475"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 199.38579,178.0658 c -0.47544,0.076 -0.8221,0.3393 -1.03259,0.7973 -0.21294,0.4531 -0.26247,1.0474 -0.15359,1.778 0.10902,0.7305 0.33923,1.2778 0.67601,1.6492 0.34419,0.364 0.76267,0.51 1.26288,0.4357 1.00039,-0.156 1.38917,-1.0103 1.15145,-2.5703 -0.24021,-1.5476 -0.87165,-2.2459 -1.90424,-2.0899 m 1.08955,6.6487 c -1.33963,0.1955 -2.43414,-0.019 -3.28101,-0.6588 -0.83944,-0.6463 -1.37678,-1.6566 -1.58725,-3.0258 -0.20306,-1.3571 -0.013,-2.4738 0.60419,-3.348 0.6042,-0.874 1.55507,-1.4064 2.86252,-1.612 1.29012,-0.1905 2.35985,0.024 3.22158,0.6712 0.84934,0.6363 1.38174,1.6219 1.58974,2.9367 0.208,1.3768 0.0199,2.5184 -0.5844,3.4074 -0.59676,0.8814 -1.54268,1.4311 -2.82537,1.6293" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path479"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 206.55498,171.9022 c 0.29714,-0.076 0.49276,0.076 0.59429,0.473 l 1.94385,7.5104 c 0.14114,0.5323 0.31447,0.7652 0.52495,0.7082 0.0867,-0.02 0.15358,-0.058 0.208,-0.1114 0.0594,-0.05 0.13613,-0.095 0.24268,-0.1189 0.46553,-0.1189 0.77258,0.098 0.91126,0.6636 0.19561,0.7354 -0.0247,1.1886 -0.66116,1.3546 -0.0149,0 -0.42343,0.074 -1.23069,0.2178 -0.25258,0.035 -0.51258,0.091 -0.78991,0.1635 -0.23029,0.065 -0.47297,0.1411 -0.73297,0.2451 -0.42591,0.1653 -0.69583,0.2699 -0.81469,0.2972 -0.28972,0.08 -0.54229,0.035 -0.77752,-0.1133 -0.23029,-0.1412 -0.38878,-0.3839 -0.47297,-0.6983 -0.15099,-0.5895 0.0396,-0.9535 0.5522,-1.0872 0.0644,-0.022 0.156,-0.024 0.27486,-0.019 0.11886,0 0.21543,0 0.27735,-0.019 0.1807,-0.043 0.19561,-0.3688 0.0396,-0.9583 l -1.36934,-5.2842 c -0.14858,-0.5893 -0.31201,-0.8617 -0.49526,-0.8121 -0.0793,0.019 -0.16844,0.058 -0.27239,0.1337 -0.0594,0.035 -0.13613,0.069 -0.24761,0.089 -0.51258,0.1356 -0.83449,-0.084 -0.98306,-0.6611 -0.0841,-0.3295 -0.0693,-0.6092 0.0644,-0.8469 0.13613,-0.2329 0.34915,-0.3937 0.65622,-0.4706 0.0867,-0.028 0.2699,-0.058 0.55219,-0.095 0.3739,-0.058 0.65125,-0.098 0.82458,-0.1504 0.24515,-0.069 0.45068,-0.1393 0.62154,-0.2203 0.23523,-0.097 0.41848,-0.1578 0.55962,-0.1981" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path483"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 214.2979,174.1836 c -0.44325,0.169 -0.72801,0.5027 -0.8444,0.993 -0.11143,0.4927 -0.0396,1.0796 0.22039,1.768 0.25753,0.6883 0.59677,1.1836 1.0004,1.4808 0.40362,0.2921 0.84687,0.3417 1.31239,0.1615 0.95088,-0.3417 1.15394,-1.2628 0.59926,-2.7363 -0.5522,-1.4757 -1.31735,-2.0281 -2.28804,-1.6665 m 2.42422,6.2823 c -1.26039,0.4829 -2.37718,0.4877 -3.33299,0.03 -0.96079,-0.4582 -1.68384,-1.3347 -2.16918,-2.6348 -0.47792,-1.2926 -0.52001,-2.4167 -0.104,-3.3925 0.41352,-0.9806 1.24059,-1.7011 2.48118,-2.1641 1.21335,-0.4582 2.31033,-0.4582 3.2711,0 0.9682,0.4507 1.68878,1.3024 2.15432,2.5456 0.49276,1.3149 0.53733,2.4613 0.13371,3.4543 -0.4061,0.9881 -1.21334,1.7135 -2.43414,2.1692" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path487"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 221.3814,169.6237 0.37886,0.6882 c 0.26249,-1.2703 0.87165,-2.1517 1.8027,-2.6619 0.99792,-0.5398 1.90918,-0.5547 2.7288,-0.022 0.43335,0.26 0.87165,0.8121 1.31984,1.6343 l 1.1762,2.1543 c 0.25754,0.5001 0.4903,0.6909 0.6785,0.5869 0.047,-0.024 0.10902,-0.087 0.1807,-0.1802 0.0347,-0.058 0.0942,-0.104 0.19068,-0.1616 0.41601,-0.2278 0.76516,-0.082 1.04745,0.4235 0.364,0.6784 0.25504,1.1687 -0.3244,1.4857 -0.15359,0.08 -0.38629,0.1881 -0.72058,0.3144 -0.32686,0.1356 -0.56705,0.2353 -0.72058,0.3221 -0.24268,0.1281 -0.48287,0.2871 -0.73048,0.468 -0.25507,0.1838 -0.46058,0.3242 -0.6364,0.4184 -0.56705,0.3096 -1.00535,0.169 -1.32478,-0.411 -0.27486,-0.5152 -0.21792,-0.8816 0.156,-1.1342 0.25009,-0.1578 0.31695,-0.3541 0.19809,-0.572 l -1.09696,-2.0256 c -0.29963,-0.5521 -0.59429,-0.9111 -0.8543,-1.0573 -0.26743,-0.1504 -0.57201,-0.1281 -0.92115,0.059 -0.39373,0.2131 -0.64383,0.52 -0.75279,0.9286 -0.10902,0.411 -0.052,0.8222 0.17327,1.2332 l 0.81716,1.5056 c 0.23523,0.4309 0.39619,0.6808 0.48533,0.7453 0.0892,0.082 0.23276,0.082 0.42591,0 0.37886,-0.1319 0.69336,0.032 0.94097,0.5075 0.33182,0.5969 0.24019,1.0376 -0.26743,1.3199 -0.14857,0.08 -0.32686,0.1579 -0.55715,0.2452 -0.37391,0.1467 -0.65373,0.2724 -0.82954,0.3616 -0.16845,0.095 -0.41848,0.255 -0.73545,0.4728 -0.32437,0.2255 -0.572,0.3839 -0.74533,0.4754 -0.6042,0.3343 -1.07963,0.1709 -1.43621,-0.4704 -0.28725,-0.5473 -0.20553,-0.9336 0.25504,-1.1886 0.0767,-0.043 0.17086,-0.069 0.28972,-0.083 0.11385,-0.019 0.19315,-0.035 0.24515,-0.065 0.16102,-0.084 0.0966,-0.3962 -0.19562,-0.9411 l -1.26783,-2.33 c -0.29468,-0.5473 -0.52248,-0.7776 -0.6884,-0.6908 -0.0371,0.024 -0.104,0.076 -0.19809,0.1782 -0.0841,0.089 -0.16343,0.1542 -0.22039,0.1783 -0.46058,0.25 -0.83697,0.1096 -1.12173,-0.4111 -0.156,-0.2946 -0.21296,-0.5745 -0.14616,-0.8443 0.057,-0.26 0.22039,-0.468 0.47793,-0.6142 0.0767,-0.037 0.25257,-0.1058 0.52743,-0.1881 0.15842,-0.05 0.29466,-0.098 0.40362,-0.1616 0.11143,-0.054 0.29962,-0.1931 0.55468,-0.3789 0.26001,-0.1955 0.39866,-0.2971 0.42838,-0.312 0.26249,-0.1411 0.46554,-0.072 0.60915,0.1982" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path491"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 231.34674,166.0987 c 0.0396,0.058 0.0817,0.087 0.13874,0.099 0.052,0.022 0.15841,-0.028 0.31694,-0.1486 l 1.48327,-1.0822 c 0.13371,-0.097 0.20553,-0.1708 0.21296,-0.2228 0.009,-0.06 -0.013,-0.1208 -0.0743,-0.203 -0.17086,-0.2303 -0.42096,-0.3542 -0.74782,-0.3813 -0.32934,-0.022 -0.62897,0.067 -0.90135,0.2698 -0.35657,0.255 -0.53982,0.6042 -0.56211,1.0376 -0.009,0.2797 0.0372,0.4903 0.13372,0.6315 m 4.69493,-2.4194 c 0.26991,0.3715 0.40611,0.6514 0.39868,0.8445 0,0.1881 -0.13371,0.3887 -0.40858,0.5843 l -3.22901,2.3673 c -0.15841,0.1133 -0.24761,0.203 -0.26496,0.26 -0.0149,0.061 0.0167,0.156 0.10902,0.2749 0.2699,0.369 0.61658,0.5919 1.03011,0.6635 0.42095,0.074 0.81467,-0.02 1.17125,-0.2871 0.37392,-0.2674 0.60668,-0.7503 0.69087,-1.4363 0.057,-0.4829 0.2501,-0.8294 0.56458,-1.0647 0.26743,-0.1932 0.53735,-0.2773 0.80725,-0.2452 0.27734,0.03 0.49773,0.1579 0.65869,0.3913 0.36894,0.51 0.41105,1.1465 0.11384,1.9166 -0.29714,0.7626 -0.84687,1.4362 -1.65164,2.0305 -1.04744,0.7701 -2.1147,1.0623 -3.20672,0.884 -1.09698,-0.1783 -2.0305,-0.7925 -2.79319,-1.8498 -0.78497,-1.0623 -1.10191,-2.1593 -0.96573,-3.2662 0.14115,-1.1143 0.71316,-2.0378 1.72593,-2.7709 0.93354,-0.6834 1.87203,-0.9657 2.83282,-0.8394 0.94838,0.1319 1.75564,0.6489 2.41679,1.5427" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path495"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 235.24657,155.9961 c 0.23028,-0.203 0.4779,-0.1579 0.7478,0.143 l 5.19266,5.7721 c 0.364,0.411 0.6265,0.5323 0.78744,0.3911 0.0719,-0.059 0.11644,-0.1244 0.14356,-0.1931 0.0199,-0.072 0.0743,-0.1468 0.156,-0.2129 0.35409,-0.3244 0.72553,-0.2724 1.10935,0.1542 0.51258,0.5672 0.52248,1.0797 0.0371,1.5106 -0.009,0 -0.33925,0.2674 -0.99049,0.7652 -0.20057,0.1485 -0.40857,0.3242 -0.61658,0.515 -0.17587,0.156 -0.3541,0.3393 -0.54478,0.5497 -0.30209,0.3417 -0.49772,0.5571 -0.58438,0.6388 -0.22039,0.1956 -0.46554,0.2823 -0.7404,0.2576 -0.27239,-0.024 -0.51753,-0.1634 -0.73791,-0.4085 -0.41106,-0.4508 -0.41353,-0.8594 -0.0149,-1.2159 0.047,-0.043 0.1287,-0.095 0.23771,-0.1393 0.11143,-0.052 0.19066,-0.095 0.23772,-0.1412 0.13873,-0.1244 0,-0.411 -0.40858,-0.8691 l -3.64748,-4.0535 c -0.40611,-0.4531 -0.6785,-0.6166 -0.81716,-0.4929 -0.0544,0.046 -0.11886,0.1244 -0.1807,0.2377 -0.0347,0.06 -0.0916,0.1245 -0.17086,0.2032 -0.38629,0.3466 -0.79238,0.302 -1.19106,-0.1486 -0.22039,-0.2525 -0.32933,-0.5101 -0.31944,-0.7776 0.006,-0.2724 0.12128,-0.5101 0.35411,-0.7256 0.0669,-0.058 0.2179,-0.1634 0.45809,-0.3343 0.29468,-0.208 0.51754,-0.3862 0.65621,-0.5099 0.18331,-0.1635 0.3343,-0.3269 0.44573,-0.4879 0.16343,-0.1881 0.29961,-0.3319 0.40115,-0.4285" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path499"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 243.38419,155.2945 3.3652,1.5277 -1.7705,-3.0779 c -0.13873,-0.2377 -0.25257,-0.4086 -0.34915,-0.4927 -0.0891,-0.08 -0.21792,-0.08 -0.38878,0.018 l -0.27733,0.1393 c -0.21543,0.1133 -0.46305,0.043 -0.74534,-0.2054 -0.20057,-0.1857 -0.312,-0.3987 -0.34421,-0.634 -0.0247,-0.2351 0.0371,-0.4383 0.20058,-0.619 0.10902,-0.1207 0.28725,-0.2947 0.54229,-0.52 0.26744,-0.2279 0.45068,-0.3988 0.55964,-0.525 0.11385,-0.1263 0.27238,-0.3343 0.47295,-0.6215 0.20306,-0.2897 0.3665,-0.5027 0.48535,-0.6266 0.43334,-0.4903 0.91867,-0.5051 1.44611,-0.03 0.1833,0.1709 0.29468,0.3765 0.34172,0.6118 0.047,0.2401 0,0.4357 -0.14114,0.5818 -0.0273,0.037 -0.0867,0.084 -0.16585,0.1467 -0.0916,0.061 -0.14857,0.104 -0.1807,0.1412 -0.1313,0.1504 -0.10902,0.3763 0.0496,0.6909 l 0.28725,0.5322 1.79279,3.504 c 0.54972,1.0821 0.89887,1.8027 1.0425,2.1567 0.14356,0.3491 0.25009,0.7776 0.33676,1.2851 0.24268,1.3818 -0.0669,2.5481 -0.9063,3.4965 -0.52248,0.5819 -1.08954,0.9286 -1.70117,1.0549 -0.60419,0.1282 -1.13163,0 -1.56002,-0.3887 -0.30211,-0.27 -0.46801,-0.5943 -0.48287,-0.9509 -0.0223,-0.364 0.10159,-0.6908 0.36154,-0.9831 0.23029,-0.2526 0.48286,-0.3837 0.76762,-0.4086 0.28972,-0.019 0.55469,0.08 0.7924,0.2947 0.0867,0.074 0.17829,0.1616 0.26744,0.2401 0.14356,-0.065 0.25257,-0.143 0.34172,-0.2401 0.19314,-0.2154 0.24761,-0.5373 0.16343,-0.9657 -0.0841,-0.4259 -0.21543,-0.7206 -0.39372,-0.879 -0.15842,-0.1467 -0.69087,-0.3789 -1.59717,-0.6786 l -4.44732,-1.5253 c -0.312,-0.1059 -0.50515,-0.1133 -0.59925,-0.019 -0.007,0 -0.0644,0.065 -0.15842,0.1839 -0.006,0 -0.0273,0.02 -0.0496,0.046 -0.0223,0.024 -0.0422,0.043 -0.052,0.058 -0.37391,0.4184 -0.78745,0.4184 -1.24307,0 -0.23029,-0.1958 -0.35904,-0.4359 -0.38876,-0.7232 -0.0297,-0.2847 0.0544,-0.5323 0.24515,-0.7453 0.11886,-0.1263 0.29715,-0.3046 0.56458,-0.5349 0.26247,-0.2252 0.45315,-0.411 0.56458,-0.5348 0.13873,-0.1579 0.35905,-0.4333 0.65124,-0.827 0.29714,-0.3938 0.46306,-0.6018 0.48286,-0.6291 0.40115,-0.4433 0.83697,-0.4531 1.30745,-0.035 0.33429,0.2947 0.37143,0.6463 0.12127,1.04 -0.12628,0.1957 -0.13371,0.3393 -0.007,0.4531 0.0669,0.054 0.20058,0.1356 0.3962,0.2155" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 105 KiB |
BIN
static/img/partenaires/apromac.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
static/img/partenaires/pmci.jpeg
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
static/img/partenaires/sodexam.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
463
static/img/partenaires/tonys_chocolonely.svg
Normal file
@@ -0,0 +1,463 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="1000.0001"
|
||||
height="507.81265"
|
||||
viewBox="0 0 1000.0001 507.81266"
|
||||
version="1.1"
|
||||
id="svg53"
|
||||
sodipodi:docname="62baf26956eaf555635bcef2_Frame.svg"
|
||||
style="fill:none"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
||||
<metadata
|
||||
id="metadata57">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#111111"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1017"
|
||||
id="namedview55"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="0.45467033"
|
||||
inkscape:cx="513.51661"
|
||||
inkscape:cy="0.29789045"
|
||||
inkscape:window-x="1912"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg53" />
|
||||
<defs
|
||||
id="defs51">
|
||||
<clipPath
|
||||
id="clip0_871_2377">
|
||||
<rect
|
||||
width="181.356"
|
||||
height="50.653801"
|
||||
transform="translate(0.322021,0.904297)"
|
||||
id="rect48"
|
||||
x="0"
|
||||
y="0"
|
||||
style="fill:#ffffff" />
|
||||
</clipPath>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter2473"
|
||||
x="-0.020400483"
|
||||
width="1.040801"
|
||||
y="-0.020399516"
|
||||
height="1.040799">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.67422904"
|
||||
id="feGaussianBlur2475" />
|
||||
</filter>
|
||||
</defs>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path157"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="M 0.90383,227.1525 0,22.732402 l 161.7102,5.007 4.23684,193.584198 -28.34045,2.4961 -0.8345,-7.4982 c 0,0 -0.83202,-30.0119 -16.67245,-30.0119 -12.50745,0 -9.16701,30.0119 -9.16701,30.0119 l 0.12388,82.7508 c 0,0 2.25585,18.5717 15.60025,28.5681 6.86164,5.1531 20.99594,5.735 20.99594,5.735 l 3.90503,49.1111 -128.21671,-5.4972 -1.71603,-46.0108 c 0,0 8.33746,2.5035 18.34391,-7.503 9.99653,-10.0016 9.47158,-79.6777 9.47158,-79.6777 L 49.2498,200.4811 c 0,0 -0.052,-20.2877 -12.50248,-21.6745 -7.50545,-0.832 -8.33746,24.178 -8.33746,24.178 l 0.83201,27.506 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path161"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 274.57231,344.8154 c -27.50349,-0.8395 -27.4391,-27.4392 -27.4391,-27.4392 l -3.97188,-123.5736 c 0,0 -0.78991,-20.8327 27.2014,-17.6952 19.23535,2.1568 16.90027,22.717 16.90027,22.717 l 0.89144,125.5671 c 0,0 -2.68176,20.7558 -13.58213,20.4239 M 346.5167,40.140102 c -11.32132,-15.0977 -32.96606,-13.7778 -32.96606,-13.7778 l -94.27255,-1.711 c 0,0 -16.87302,0.1337 -26.38423,9.6424 -11.35598,11.3485 -14.68404,31.0742 -14.68404,31.0742 L 179.5866,327.0831 c 0,0 -3.33795,39.1814 6.6685,50.8469 10.00395,11.673 24.168,9.999 24.168,9.999 l 112.34904,3.7367 c 0,0 8.57022,0.5497 19.40621,-8.6198 10.83846,-9.167 9.77615,-38.0597 9.77615,-38.0597 l 4.94751,-249.440498 c 0,0 1.53774,-39.5182 -10.38531,-55.4056" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path165"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 362.51611,381.756 v -44.6042 c 0,0 12.10134,1.6168 16.93989,-3.2267 4.84103,-4.8385 4.84103,-20.1615 4.84103,-20.1615 l 1.04498,-119.7207 c 0,0 0.90877,-5.9677 -4.22446,-11.3262 -5.26447,-5.4972 -15.13471,-6.4135 -15.13471,-6.4135 l -5.07132,-151.854698 89.52561,4.0338 67.68776,262.589298 0.30458,-83.2732 c 0,0 -1.61699,-11.294 -5.65077,-13.7184 -4.03625,-2.4217 -12.9482,-2.4886 -12.9482,-2.4886 l -19.54736,-159.885098 90.33041,-4.8387 3.46424,169.636798 -2.92691,-0.3443 c 0,0 -9.9792,0.3443 -15.62006,4.3805 -5.65075,4.0287 -3.23148,11.2866 -3.23148,11.2866 l 18.42068,166.1427 -75.46311,2.2855 -59.10266,-112.0047 -0.23525,43.0912 c 0,0 -2.42175,14.5183 5.64581,19.3567 8.06509,4.8436 19.35916,6.4532 19.35916,6.4532 l 0.79983,45.4115 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path169"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 578.47878,22.029102 6.37631,148.417798 c 0,0 8.77822,0.9782 17.54656,6.827 8.7708,5.839 14.61718,14.6221 14.61718,14.6221 l 30.30906,54.5762 -2.52823,62.7947 c 0,0 1.94879,15.5904 -6.82697,22.4174 -8.77081,6.8243 -22.39503,5.5442 -22.39503,5.5442 l -4.82122,43.3909 133.70651,-2.3004 -1.5204,-49.2918 c 0,0 -21.459,2.6571 -29.2492,-5.1431 -7.7977,-7.7977 -6.2674,-21.5928 -6.2674,-21.5928 l -2.9244,-44.379 47.5684,-60.0238 c 0,0 3.3553,-6.3639 8.8104,-10.7591 5.1976,-4.1824 18.9159,-3.036 18.9159,-3.036 l 2.6447,-160.727098 -88.1836,1.2802 -0.7007,144.156298 c 0,0 11.4451,-0.4829 18.75,3.6276 9.682,5.4476 7.0572,14.5849 7.0572,14.5849 l -34.3007,37.7354 -26.58976,-40.8257 c 0,0 -3.92235,-8.3053 0,-12.0987 7.21079,-6.9782 19.26012,-7.2233 19.26012,-7.2233 l 0.73294,-138.376698 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path173"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 747.72345,281.4481 c 0,0 35.5859,0.8718 53.8159,-15.6151 18.2226,-16.4867 23.4301,-39.9242 4.3334,-55.5467 -19.0918,-15.6176 -49.4627,-10.4151 -54.6752,6.079 -5.21,16.4843 16.4917,35.5811 16.4917,35.5811 l -24.3017,-0.8692 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path177"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 93.40265,396.4284 3.18444,36.66063 -34.26112,1.59223 c 0,0 -0.38876,-23.55886 -17.13799,-23.90056 -19.12392,-0.4036 -25.32687,23.36569 -24.66325,38.31965 0.76762,17.33113 6.91364,32.3148 29.2839,32.05727 26.50556,-0.30954 25.89145,-24.03925 25.89145,-24.03925 l 0.12629,-6.52486 18.8144,0.35905 0.59677,51.28768 -23.0636,0.29962 -2.08746,-13.12154 c 0,0 -2.24595,11.15046 -29.67019,11.40055 -20.65672,0.20058 -41.41744,-26.99833 -39.84998,-54.97972 1.63184,-29.19225 8.95157,-55.76475 47.556,-57.20345 26.82005,-0.9979 29.82372,15.8009 29.82372,15.8009 l 1.38668,-8.7312 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path181"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 383.21022,402.6173 4.62311,41.63286 -20.6468,-2.07757 c 0,0 -4.89055,-22.73429 -20.32984,-23.06109 -24.72764,-0.5275 -28.02844,20.80277 -27.40692,35.25404 0.72307,16.74676 5.23475,30.04906 26.27033,29.36068 20.56262,-0.6884 21.1272,-18.29193 21.1272,-18.29193 l 24.04171,-1.15392 0.33429,37.15582 -20.95386,1.44117 -1.96365,-7.68125 c 0,0 -4.74693,9.6152 -30.5542,9.86035 -19.43345,0.18571 -36.64077,-23.25676 -35.17238,-50.3071 1.53774,-28.22159 4.53893,-50.32446 40.86523,-51.71606 25.22783,-0.9682 30.03915,16.5115 30.03915,16.5115 l 0.1833,-18.074 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path185"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 102.20169,390.5578 -1.24059,28.182 c 0,0 7.89917,1.513 8.37461,3.645 0.47543,2.13202 1.65659,8.28051 1.65659,8.28051 l 1.34213,53.81094 c 0,0 0.0817,2.45643 -3.22653,4.34579 -3.31072,1.8968 -5.52694,0.85926 -5.52694,0.85926 l -1.18365,12.78228 42.11324,0.94098 -3.30823,-18.68563 c 0,0 -6.77993,1.38421 -9.85787,-1.45355 -3.07548,-2.84023 -3.23396,-9.96188 -3.23396,-9.96188 l 0.0693,-22.44701 37.15582,-1.25298 2.36975,30.4081 c 0,0 -0.007,4.25417 -2.36975,5.91573 -2.36727,1.65411 -4.25664,1.41392 -4.25664,1.41392 l -9.90739,-0.55962 -1.65908,18.81438 49.98023,0.3739 -2.3648,-19.40372 c 0,0 -10.76664,1.84479 -13.40631,-1.19355 -1.88936,-2.17907 -1.99089,-3.89016 -1.99089,-3.89016 l 1.66402,-65.76619 c 0,0 -1.1861,-2.1271 1.6566,-4.0214 2.83033,-1.8918 5.43533,-1.1836 5.43533,-1.1836 l 0.71563,-17.5095 -37.73279,-2.7114 0.65619,17.3955 c 0,0 7.09689,-1.8993 8.98872,0.7082 1.8968,2.6025 1.41888,5.9157 1.41888,5.9157 l 0.55221,18.02448 -36.44021,0.0618 0.0891,-8.11956 c 0,0 -0.22533,-2.60002 3.07548,-4.02382 3.31072,-1.4164 6.39116,-0.7033 6.39116,-0.7033 l 0.71562,-29.3829 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path189"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 256.34107,492.24568 c -12.03943,1.20098 -30.66563,-14.72614 -29.46467,-44.81482 1.20841,-30.09366 11.10589,-34.33536 20.43633,-34.63506 16.84333,-0.5373 26.47834,12.64614 27.37968,38.22065 0.9063,25.57698 -6.31686,40.02331 -18.35134,41.22923 M 240.18118,398.5204 c -22.8655,0.3021 -40.32293,19.5597 -41.22674,45.43383 -0.90136,25.88156 10.23178,64.99857 46.94437,63.19587 36.71258,-1.80764 48.14781,-17.75704 47.84819,-52.9616 -0.30705,-35.212 -21.36987,-56.099 -53.56582,-55.6681" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path193"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 464.45879,454.49506 c -4.48444,27.19644 -13.68365,34.53845 -25.71813,35.74437 -12.03695,1.20345 -25.10154,-11.95276 -23.89314,-42.0439 1.20098,-30.08623 15.77607,-32.36433 25.10155,-32.66143 16.85074,-0.5448 28.66978,13.71331 24.50972,38.96096 M 445.63449,401.999 c -32.36432,-0.9014 -48.94516,24.25218 -49.84403,50.12878 -0.90136,25.88156 4.24921,53.07056 40.67702,55.4626 36.67793,2.4069 46.22131,-14.74348 51.45854,-50.9831 C 492.96267,421.7543 477.823,402.9053 445.63449,401.999" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path197"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 617.84293,485.46724 c -12.09144,0.36897 -22.4916,-9.011 -21.29063,-39.09471 1.20345,-30.10353 11.01179,-31.45063 20.33976,-31.75023 16.84825,-0.5448 24.50229,13.74803 25.40859,39.32254 0.89638,25.57945 -4.80142,30.91821 -24.45772,31.5224 m 45.5131,-30.06885 c -0.29962,-35.20949 -15.77854,-56.01729 -47.97942,-55.59389 -22.86551,0.3071 -40.53343,21.3031 -41.43477,47.18212 -0.90134,25.88156 12.71296,56.65863 49.47508,56.65863 32.82985,0 40.24368,-13.0423 39.93911,-48.24686" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path201"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 489.33625,395.5036 47.01618,1.3644 0.56209,14.3027 c 0,0 -13.09182,-0.2774 -14.78804,3.0977 -1.34459,2.6769 -0.83944,9.53105 -0.83944,9.53105 l 1.46097,58.26818 22.72685,-0.25504 c 0,0 5.33131,0 7.57477,-3.0854 2.241,-3.09281 0.48783,-21.26585 0.48783,-21.26585 h 13.73812 l 8.42662,49.35869 -84.30574,-2.33014 -0.28229,-10.93997 c 0,0 6.46049,-1.2208 8.42414,-5.42791 1.95621,-4.20959 1.29506,-9.90491 1.29506,-9.90491 l -2.24098,-56.9211 c 0,0 0.2798,-6.7304 -1.96613,-9.2487 -2.24099,-2.5208 -6.16581,-1.1242 -6.16581,-1.1242 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path205"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 839.80795,393.7417 42.5763,2.1742 0.9014,17.5193 c 0,0 -5.9603,0.064 -8.1666,2.8699 -2.2064,2.8031 -1.3966,9.4642 -1.3966,9.4642 l 3.4716,61.79928 18.0716,-0.12629 c 0,0 4.6602,0 6.6239,-3.07795 1.9587,-3.08786 0.676,-19.03726 0.676,-19.03726 l 23.2468,-0.006 0.7429,37.86899 -83.8179,-1.41394 0.8345,-10.59329 c 0,0 8.3399,0.56458 10.0535,-3.64255 1.721,-4.20464 0.8394,-9.21901 0.8394,-9.21901 l -2.2682,-54.52409 c 0,0 0.2427,-6.73039 -1.716,-9.24869 -1.9661,-2.5258 -9.9693,-1.1242 -9.9693,-1.1242 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path209"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 668.34439,505.22236 -1.1564,-20.92662 c 0,0 1.77794,0.19314 4.4696,-1.69622 2.69661,-1.88192 2.53318,-5.30655 2.53318,-5.30655 L 672.45989,420.466 c 0,0 0.047,-3.1473 -2.10975,-4.7643 -2.15432,-1.617 -5.89591,-1.2109 -5.89591,-1.2109 l -0.88401,-15.5705 26.39663,-0.5374 39.5157,60.56863 0.3491,-42.25683 c 0,0 0.2551,-4.019 -1.8819,-5.3809 -2.9666,-1.8869 -6.6314,-2.7189 -6.6314,-2.7189 l -0.9806,-19.4013 39.1839,-2.4935 -0.463,22.1177 c 0,0 -6.5868,-0.4136 -9.0111,1.7408 -2.4217,2.1543 -2.704,6.1361 -2.704,6.1361 l 2.1519,87.81697 -24.7822,-1.88688 -35.9102,-76.78789 1.3842,49.61869 c 0,0 -0.2155,5.13819 1.9413,6.48774 2.1568,1.34459 8.6198,1.81507 8.6198,1.81507 l 1.9686,22.54112 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path213"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 764.58065,398.9195 0.5348,9.1547 c 0,0 5.2942,-0.1685 6.6413,1.7135 1.3495,1.8869 1.4486,3.6822 1.4486,3.6822 l -0.4953,73.2097 c 0,0 0,1.87946 -2.1518,3.50634 -2.1544,1.61203 -5.6607,0.80726 -5.6607,0.80726 l -0.045,12.4381 74.7302,0.89144 -2.506,-40.2635 -16.5016,0.53487 c 0,0 0.8989,14.95395 -1.2604,17.65305 -2.1518,2.6867 -5.1159,2.15184 -5.1159,2.15184 l -26.0375,-2.76099 -0.1436,-25.34669 11.4575,-0.83697 c 0,0 4.0388,-0.5423 5.6557,1.0722 1.617,1.61945 1.0822,5.92809 1.0822,5.92809 h 7.0003 l 0.6562,-24.97276 -13.7654,-0.90879 c 0,0 -0.3071,6.54963 -1.6591,8.16662 -1.3421,1.61696 -3.1151,1.47582 -3.1151,1.47582 l -6.3639,0.0916 -0.1387,-32.30243 28.016,-0.8073 c 0,0 4.5786,0 5.9232,2.4193 1.3495,2.4267 0.3541,8.89216 0.3541,8.89216 l 9.9619,0.53735 0.9929,-27.20391 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path217"
|
||||
style="fill:#0073bd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 893.18555,397.6284 2.2262,16.8062 c 0,0 5.5913,-0.671 7.6862,2.3326 2.0973,3.0012 6.6363,7.68375 6.6363,7.68375 l 29.3606,36.07125 0.3071,27.87492 c 0,0 0.7032,2.0008 -1.7507,4.34084 -2.444,2.33508 -5.938,1.66897 -5.938,1.66897 l 0.3913,10.50663 42.081,-0.64876 -0.2625,-14.29527 c 0,0 -3.2835,-0.39125 -6.3292,-2.53318 -1.8844,-1.32478 -2.0503,-4.82618 -2.0503,-4.82618 l 0.7725,-24.44039 11.7943,-29.23933 c 0,0 0.6785,-4.73455 5.7201,-7.69855 3.7144,-2.189 9.3478,-1.4338 9.3478,-1.4338 l -0.2873,-18.3637 -37.8689,-2.1023 -0.1733,12.859 c 0,0 8.7906,-0.1361 9.6845,2.8328 0.4928,1.6368 -1.2307,3.7466 -1.2307,3.7466 l -16.197,25.58687 -25.3417,-28.23647 c 0,0 -2.2608,-3.0334 -0.9583,-4.269 2.6768,-2.5604 5.4997,-1.3941 5.4997,-1.3941 l -0.6859,-12.6734 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path221"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 989.09715,320.7912 c 0,0 -1.3545,-34.3428 -12.2648,-55.6507 -10.9003,-21.3154 -47.4222,-7.5749 -70.9217,-10.8658 -32.555,-4.566 -29.9846,-24.8638 -29.9846,-24.8638 l -2.5704,-61.8116 c 0,0 -5.1208,-16.3977 14.1839,-15.9196 24.527,0.5917 22.7367,32.5896 22.7367,32.5896 l 3.8704,44.171 76.2134,5.4527 9.64005,-206.658798 -42.24955,-1.1886 -10.1897,134.582998 c 0,0 -2.397,-87.569398 -4.2368,-101.104398 -3.9644,-29.1948 -36.0811,-31.7973 -36.0811,-31.7973 l -38.2207,2.4887 c 0,0 -19.0793,0 -47.6971,5.9206 -28.6302,5.9207 -29.9921,34.3304 -29.9921,34.3304 l 2.5282,95.062498 c 0,0 -0.2476,10.8881 0.1287,26.1986 8.0948,1.4683 16.1698,5.0465 23.0067,11.0959 22.4247,19.8272 16.3134,49.5716 -5.0936,70.5057 -1.6863,1.6492 -3.5113,3.1473 -5.423,4.5341 1.9042,3.9717 4.0908,7.0597 6.6091,8.9192 37.6882,28.0237 66.2292,14.3772 81.2228,20.2978 14.9911,5.9207 12.6511,23.8263 12.6511,23.8263 l -0.079,11.6208 c 0,0 -4.5266,8.865 -18.2919,9.1473 -56.0272,1.144 -54.8832,-28.5831 -54.8832,-28.5831 l -1.3099,-13.4064 -62.7205,-11.7546 2.5803,85.1278 47.6971,-1.1885 v -32.0772 c 0.8716,4.3161 2.5084,9.1993 5.4551,14.3176 9.541,16.5759 34.0705,18.9481 34.0705,18.9481 l 99.4924,1.1837 c 0,0 15.5433,-2.2633 24.4008,-10.1971 11.0564,-9.9149 8.3102,-27.6918 8.3102,-27.6918 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path229"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 9.24203,216.8137 8.75843,-172.786498 129.16264,7.0399 8.47118,163.327198 -9.38987,0.4805 -6.458,-41.0016 c 0,0 -3.50881,-18.7598 -25.89889,-16.3405 -23.45733,2.5356 -18.74507,43.5544 -18.74507,43.5544 l -2.14689,102.5654 c 0,0 -1.13659,19.0869 16.14997,31.7502 5.74981,4.2072 23.01161,4.9103 23.01161,4.9103 l -1.81507,31.4532 -94.91886,-1.4412 -6.09153,-36.8785 c 0,0 16.9077,3.6921 24.0442,-12.5298 4.84847,-11.0215 6.12124,-26.5302 6.12124,-26.5302 L 58.46207,173.8732 c 0,0 -0.28725,-29.4547 -25.05947,-30.6333 -12.70306,-0.6067 -10.85578,30.0168 -10.85578,30.0168 l 0.60915,46.5804 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path233"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 306.39212,175.6879 -4.71969,162.4729 c 0,0 -5.54923,17.6778 -33.70397,18.2052 -35.732,0.676 -33.70646,-24.2646 -33.70646,-24.2646 l -2.02554,-155.7449 c 0,0 -2.13452,-22.5262 35.732,-24.9381 44.49043,-2.8304 38.42366,24.2695 38.42366,24.2695 m 37.26478,160.2912 -4.22444,-233.1072 c 0,0 1.53774,-39.515698 -10.37788,-55.403198 -11.32875,-15.0901 -28.53856,-12.3712 -28.53856,-12.3712 l -53.52867,3.6401 c 0,0 -16.87303,0.1281 -26.37928,9.6498 -11.35598,11.3386 -14.69146,31.0642 -14.69146,31.0642 L 191.11123,329.3999 c 0,0 -4.95,25.1634 5.05151,36.8314 10.00645,11.668 24.1779,10.0065 24.1779,10.0065 l 94.14628,6.4208 c 0,0 8.56528,0.5547 19.40125,-8.6123 10.83352,-9.172 9.76873,-38.0672 9.76873,-38.0672" />
|
||||
<path
|
||||
d="m 111.6924,612.0832 c -21.897,-0.403 -39.319,-18.491 -38.909,-40.394 0.407,-21.899 18.499,-39.315 40.392,-38.915 21.902,0.411 39.323,18.495 38.913,40.394 -0.405,21.902 -18.487,39.328 -40.396,38.915"
|
||||
style="opacity:0.39500002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter2473)"
|
||||
id="path1550"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
transform="matrix(2.4436835,0,0,-2.4436835,-87.3569,1499.7094)" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path237"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 375.50048,373.4698 1.53525,-33.2507 c 0,0 8.98378,-2.2684 13.31221,-6.6587 4.32103,-4.3854 4.61075,-21.7784 4.61075,-21.7784 l 3.85549,-131.2625 c 0,0 0.81469,-5.4205 -3.77377,-10.2813 -4.70484,-4.9847 -13.52269,-5.8143 -13.52269,-5.8143 l -5.98753,-109.226398 64.0774,1.1514 82.00531,289.310398 5.30658,-162.0296 c 0,0 0.52743,-7.4833 -5.04657,-12.4356 -7.31726,-6.4977 -17.34104,-5.1061 -17.34104,-5.1061 l -11.31636,-114.748398 71.13714,-0.9806 -2.033,131.413498 c 0,0 -9.44186,-4.1377 -16.57587,3.6624 -4.2096,4.5933 -2.88482,10.2391 -2.88482,10.2391 l 13.23792,177.209 -58.7758,1.3198 -69.47311,-157.3891 -4.29872,96.5629 c 0,0 -1.09202,13.3817 6.11381,17.772 7.21077,4.3878 21.17177,8.4637 21.17177,8.4637 l -1.79527,33.3771 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path241"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 592.7701,44.775602 0.61907,100.913698 c 0,0 7.81249,0.8716 15.625,6.0791 7.81499,5.2101 13.02001,13.0225 13.02001,13.0225 l 34.47904,64.7262 -3.67473,91.2689 c 0,0 1.73088,13.8868 -6.08163,19.9659 -7.81498,6.0743 -19.9485,4.9351 -19.9485,4.9351 l -5.29666,25.1907 110.75435,-0.1263 -4.6999,-30.8984 c 0,0 -17.9081,4.9327 -24.849,-2.0132 -6.9458,-6.9359 -6.2425,-18.4775 -6.2425,-18.4775 l -1.825,-66.1477 49.5791,-70.2754 c 0,0 2.9912,-5.6705 7.8496,-9.5878 4.6207,-3.7218 16.8508,-2.7017 16.8508,-2.7017 l -2.3178,-131.074198 -55.6557,5.4402 -8.8352,108.676798 c 0,0 9.9346,0.083 16.6997,3.2389 21.407,9.9594 3.8604,31.3689 3.8604,31.3689 l -37.7353,49.6881 -39.18135,-64.7882 c 0,0 -4.74446,-8.0453 -3.16215,-12.6436 5.44523,-15.8454 26.01281,-12.0964 26.01281,-12.0964 L 658.93497,44.414002 Z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path245"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 822.08785,277.9564 c 32.7679,21.4294 77.5431,12.5124 90.8355,16.9672 17.5614,5.8835 16.2664,22.2216 16.2664,22.2216 l 1.503,13.5377 c 0,0 6.983,29.8311 -55.3511,27.7857 -49.6212,-1.6269 -50.3839,-36.8291 -50.3839,-36.8291 l -0.2476,-2.7634 -45.9514,-4.279 5.2075,60.5365 29.1725,0.4482 -0.5002,-50.827 c 0,0 9.4542,20.9314 18.0963,35.727 8.6346,14.783 30.2273,12.6461 30.2273,12.6461 l 85.0288,1.1167 c 0,0 13.5252,2.0776 26.7185,-7.3445 7.7927,-5.5665 7.8373,-17.5094 7.8373,-17.5094 l -1.8349,-26.617 c 0,0 0.8593,-24.0888 -9.0209,-43.1111 -9.8802,-19.0126 -39.9069,-17.1974 -61.2768,-14.9242 -48.9575,5.2123 -45.1045,-53.6303 -45.1045,-53.6303 l -2.3277,-55.1432 c 0,0 -3.7589,-29.2863 28.6797,-26.404 22.1251,1.9686 26.6641,27.392 26.6641,27.392 l 9.9841,61.8786 46.2337,2.2682 16.5808,-170.817798 -17.861,-0.098 -25.2501,150.898998 c 0,0 -14.3721,-110.229498 -16.041,-122.310998 -3.5906,-26.0351 -22.0509,-31.0692 -22.0509,-31.0692 l -13.5301,-1.5056 c 0,0 -37.3589,3.0458 -63.436,7.4831 -36.3883,6.1833 -28.9794,42.5343 -28.9794,42.5343 0,0 7.4089,83.191498 7.2851,89.376998 0,0 21.5779,1.877 28.4841,27.0207 12.5347,45.6096 -15.6572,65.3452 -15.6572,65.3452" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path249"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 757.42655,271.7193 c 0,0 21.4738,2.9616 35.7493,-9.952 14.2755,-12.9209 18.3588,-31.2748 3.3999,-43.5173 -14.9565,-12.235 -32.4436,-8.2878 -36.5269,4.6281 -4.0759,12.9136 20.9266,35.1551 20.9266,35.1551 l -25.0099,-0.6216 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path295"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 86.21539,98.307702 c 0.0273,-54.321 44.08928,-98.33859976 98.42521,-98.30629976 54.31114,0.028 98.33108,44.09669976 98.30633,98.42009976 C 282.90983,152.755 238.83784,196.7527 184.51925,196.728 130.19077,196.7 86.17825,152.6435 86.21539,98.307702" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path299"
|
||||
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 157.44936,108.6685 c -4.14026,-0.7479 -5.41304,-5.3908 -5.41304,-5.3908 l -15.98901,-5.564098 c 0,0 -1.45851,14.084798 8.85004,20.215998 10.35063,6.1436 17.10084,7.2627 17.10084,7.2627 l 35.93258,10.3359 c 14.65185,3.843 17.71742,-0.577 17.71742,-0.577 -20.30261,-9.4865 -21.18168,-14.117 -21.18168,-14.117 z m 82.02016,-7.1637 c 0.81715,4.2195 -0.0372,7.3568 -0.0372,7.3568 l 13.2107,2.3475 c -0.70821,3.6722 -1.69127,7.2183 -2.95415,10.6577 -10.71713,-2.4366 -27.10729,-6.2772 -30.96774,-7.9091 -5.84142,-2.4589 -4.51168,-4.8088 -3.16213,-5.4476 0,0 -0.14857,-3.977 -1.72099,-5.9629 -1.61945,-2.0156 -4.8336,-4.251598 -4.8336,-4.251598 0,0 -22.08797,6.762498 -8.15671,22.702098 5.89838,6.7649 17.27914,10.0038 17.27914,10.0038 l 23.64552,6.26 c -12.20038,17.7793 -32.51042,29.6132 -55.69783,30.0515 -36.42287,0.6736 -66.74925,-26.924 -70.06988,-62.6213 l 16.56845,4.3432 c 0,0 -2.11471,-7.3741 -2.0825,-9.652298 0.006,-2.2657 0.10901,-2.6693 0.10901,-2.6693 l -14.64195,-4.5142 c 0.17829,-2.0925 0.45562,-4.1354 0.80477,-6.1807 l 40.52104,12.6065 c 0,0 0.55962,4.231898 3.33299,5.046498 0,0 8.08491,2.6942 10.4497,-5.937998 2.36232,-8.6247 -5.40066,-13.4509 -11.09104,-15.7066 -4.43245,-1.7532 -28.13987,-8.5282 -38.51033,-11.4625 10.49674,-23.9453 34.17445,-40.8753 62.037,-41.4101 38.01755,-0.7057 69.43348,29.4547 70.32245,67.4477 l -17.00427,-4.0537 c 0,0 1.8324,4.9549 2.64955,8.956598 M 182.92729,0.04860224 C 128.70528,1.0466022 85.5644,45.836602 86.57966,100.0735 c 1.00782,54.227 45.80778,97.353 100.01987,96.3625 54.2344,-1.0177 97.37281,-45.7978 96.35754,-100.024898 C 281.9542,42.176702 237.17901,-0.97399776 182.92729,0.04860224 m 3.20672,64.81289976 4.2814,-3.4965 -10.78397,1.1639 2.8328,-1.9216 c 0,0 -21.64967,3.3603 -27.40691,6.8492 -5.76962,3.5039 -7.54012,5.5816 -7.54012,5.5816 0,0 10.04853,3.0234 12.91353,4.0881 2.85758,1.0475 5.08866,2.8155 5.08866,2.8155 4.39035,-1.5773 9.167,-1.5749 9.167,-1.5749 l 9.99406,-0.8617 -6.83686,-3.271 11.8859,-0.7553 -6.78486,-3.0309 18.74505,-1.8028 z m 28.94961,14.2607 -4.01149,-1.3695 2.40936,4.1131 -7.37669,-3.6847 3.60539,4.0834 -8.42661,-1.5675 5.87114,6.2425 -6.00981,-0.5348 6.0841,3.687 -1.63926,0.3963 3.72425,2.2311 c 0,0 5.75723,3.4222 8.38452,6.4085 2.61241,2.998598 2.33508,10.469498 2.33508,10.469498 0,0 2.47128,1.2331 5.77705,2.127 3.86786,1.0352 8.64946,1.9736 8.64946,1.9736 0,0 2.74862,-12.6709 -2.83776,-20.205998 -5.57647,-7.5476 -16.53873,-14.3695 -16.53873,-14.3695" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path303"
|
||||
style="fill:#f7941e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 234.34398,113.7034 c 0,0 -4.78408,-0.941 -8.65195,-1.9786 -3.31567,-0.8814 -5.76714,-2.127 -5.76714,-2.127 0,0 0.26248,-7.4683 -2.35489,-10.459598 -2.62233,-2.9913 -8.37957,-6.4134 -8.37957,-6.4134 l -3.7094,-2.2336 1.6467,-0.3887 -6.10639,-3.6822 6.02714,0.5274 -5.88352,-6.2425 8.42413,1.5675 -3.59052,-4.0834 7.36679,3.6748 -2.41929,-4.1107 4.00654,1.3719 c 0,0 10.97217,6.8195 16.55361,14.3769 5.58637,7.535298 2.83776,20.201198 2.83776,20.201198 m -51.51301,-43.254798 6.78238,3.0458 -11.88589,0.7452 6.82448,3.2663 -9.98663,0.8641 c 0,0 -4.77912,0 -9.15958,1.5749 0,0 -2.24346,-1.763 -5.07875,-2.8129 -2.87984,-1.0575 -12.916,-4.0958 -12.916,-4.0958 0,0 1.76059,-2.0774 7.52773,-5.5789 5.76466,-3.4865 27.40197,-6.8443 27.40197,-6.8443 l -2.84272,1.9291 10.80378,-1.1764 -4.27645,3.509 15.55817,3.7711 z m 32.71099,64.510698 c 0,0 -3.08043,4.4177 -17.7422,0.5696 l -35.93008,-10.321 c 0,0 -6.75764,-1.1366 -17.09342,-7.2727 -10.32588,-6.1385 -8.86243,-20.215898 -8.86243,-20.215898 l 16.00636,5.559098 c 0,0 1.27773,4.6429 5.43284,5.4007 l 36.98992,12.1583 c 0,0 0.87659,4.6355 21.19901,14.1219 M 183.37078,29.165002 c -27.86253,0.5248 -51.52291,17.4548 -62.02214,41.4049 10.35066,2.9343 34.05808,9.7143 38.50043,11.465 5.70771,2.2509 13.44593,7.0918 11.09847,15.7117 -2.37223,8.622098 -10.45464,5.928098 -10.45464,5.928098 -2.74862,-0.8171 -3.33054,-5.034198 -3.33054,-5.034198 l -40.51608,-12.6065 c -0.35409,2.0355 -0.63638,4.0808 -0.81467,6.1682 l 14.65928,4.5193 c 0,0 -0.11143,0.4085 -0.12629,2.6717 -0.0297,2.265698 2.08003,9.639998 2.08003,9.639998 l -16.5734,-4.3408 c 3.33795,35.6949 33.65443,63.3047 70.07234,62.6263 23.20476,-0.4407 43.49252,-12.2623 55.70775,-30.054 l -23.64056,-6.245 c 0,0 -11.38322,-3.2563 -17.29152,-10.0189 -13.92631,-15.9395 8.16909,-22.694598 8.16909,-22.694598 0,0 3.21166,2.233598 4.81875,4.241798 1.57982,1.9983 1.72839,5.9702 1.72839,5.9702 -1.33467,0.6315 -2.6669,2.9838 3.17454,5.4477 3.84558,1.6218 20.2407,5.4651 30.95536,7.9091 1.26038,-3.4395 2.25583,-6.9904 2.95166,-10.6553 l -13.19832,-2.3573 c 0,0 0.84687,-3.1374 0.0223,-7.352 -0.80724,-3.991698 -2.63223,-8.958998 -2.63223,-8.958998 l 16.99685,4.0586 c -0.88649,-37.9879 -32.30738,-68.1632 -70.33484,-67.445" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path307"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 102.39707,121.5017 c 0.1287,0.4606 0.43086,0.7678 0.91126,0.9262 0.48533,0.1578 1.0821,0.1318 1.78782,-0.054 0.72801,-0.2031 1.24555,-0.4953 1.57488,-0.8717 0.32687,-0.3837 0.4284,-0.8172 0.29221,-1.2974 -0.26743,-0.9832 -1.16879,-1.2605 -2.69661,-0.8421 -1.52288,0.4234 -2.14689,1.1318 -1.86956,2.1395 m 6.4902,-1.867 c 0.36401,1.3098 0.27238,2.4217 -0.26743,3.3379 -0.53735,0.9089 -1.48327,1.5525 -2.82043,1.9192 -1.3347,0.3714 -2.4688,0.3019 -3.40234,-0.1908 -0.94592,-0.5051 -1.58478,-1.3916 -1.94136,-2.6619 -0.34172,-1.2554 -0.24515,-2.345 0.29466,-3.2736 0.53735,-0.9236 1.45108,-1.565 2.73871,-1.9166 1.3446,-0.3789 2.501,-0.317 3.45188,0.169 0.94838,0.4927 1.6021,1.3717 1.94631,2.6173" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path311"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 100.2935,110.9949 c 0.057,0.4209 0.30211,0.7206 0.72555,0.9037 0.41847,0.1858 0.97811,0.2205 1.66649,0.1189 0.67107,-0.104 1.19355,-0.302 1.55756,-0.6017 0.36153,-0.2972 0.50762,-0.6463 0.44819,-1.0475 -0.057,-0.4059 -0.30705,-0.7031 -0.74287,-0.8962 -0.43086,-0.1932 -0.98553,-0.2353 -1.66154,-0.1356 -0.66858,0.104 -1.18365,0.3046 -1.54765,0.6043 -0.35409,0.3046 -0.50763,0.6586 -0.44573,1.0549 m -1.00038,1.9883 0.49772,-0.072 c -0.96079,-0.5398 -1.52041,-1.3148 -1.67145,-2.3177 -0.14356,-0.9832 0.12387,-1.825 0.78991,-2.5233 0.67354,-0.6959 1.64917,-1.1416 2.93929,-1.3372 1.32231,-0.1907 2.41926,-0.059 3.28595,0.4184 0.85926,0.4781 1.37184,1.2085 1.52041,2.2138 0.052,0.3963 0.0422,0.7677 -0.0644,1.1119 -0.0645,0.2154 -0.22286,0.5571 -0.46554,1.0227 l 1.24802,-0.1883 c 0.33429,-0.046 0.48039,-0.1956 0.44325,-0.4532 -0.0149,-0.104 -0.0544,-0.2252 -0.10159,-0.3614 -0.052,-0.1801 -0.0891,-0.322 -0.104,-0.4086 -0.0719,-0.4854 0.17588,-0.7751 0.73544,-0.8569 0.65124,-0.098 1.02516,0.1884 1.12421,0.8618 0.0321,0.1957 0.052,0.4879 0.0693,0.8964 0.0199,0.5052 0.0669,1.0005 0.13873,1.4882 0.0347,0.2006 0.14356,0.6563 0.33429,1.3546 0.0273,0.1282 0.0496,0.2229 0.0594,0.2897 0.0396,0.2797 -0.0223,0.5323 -0.18819,0.7429 -0.17587,0.208 -0.41849,0.3465 -0.7305,0.3887 -0.59923,0.089 -0.94095,-0.1281 -1.01773,-0.6561 -0.009,-0.089 -0.009,-0.169 0.006,-0.2502 0.013,-0.1956 0.0199,-0.2921 0.0199,-0.2799 -0.0297,-0.1931 -0.34419,-0.25 -0.96077,-0.1541 l -5.36847,0.7973 c -0.61409,0.089 -0.9063,0.2303 -0.87906,0.4136 0,0.03 0.0446,0.1244 0.12128,0.2822 0.0321,0.104 0.0594,0.1858 0.0693,0.2476 0.0793,0.5176 -0.1807,0.8196 -0.7924,0.9137 -0.30952,0.047 -0.58934,0 -0.81716,-0.1411 -0.23522,-0.143 -0.36894,-0.3492 -0.40857,-0.6216 l -0.013,-0.1096 v -0.5844 c 0.013,-0.076 0,-0.2353 -0.0372,-0.4731 -0.0544,-0.312 -0.12127,-0.6065 -0.21543,-0.8617 -0.0496,-0.1411 -0.0719,-0.2327 -0.0743,-0.3046 -0.047,-0.2674 0.12388,-0.4332 0.50764,-0.4902" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path315"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 100.05852,97.544702 3.54101,-0.4878 -4.75932,-1.3396 c -0.46554,-0.1393 -0.77011,-0.3245 -0.92116,-0.5423 -0.14356,-0.2179 -0.20057,-0.6216 -0.16584,-1.1862 0.0371,-0.6437 0.14616,-1.0623 0.31943,-1.2504 0.16845,-0.1881 0.56458,-0.3269 1.18116,-0.416 l 4.67761,-0.6463 -3.60541,-1.0945 c -0.0841,-0.022 -0.16101,-0.035 -0.2278,-0.043 -0.16584,-0.018 -0.24763,0.1189 -0.26992,0.3813 -0.0446,0.5375 -0.36647,0.78 -0.96573,0.7455 -0.64134,-0.039 -0.94344,-0.3715 -0.90877,-0.9856 0.0149,-0.1882 0.0496,-0.4656 0.11886,-0.8246 0.0594,-0.3516 0.0966,-0.619 0.10642,-0.8047 0.009,-0.1764 0.006,-0.4409 -0.009,-0.7901 -0.0223,-0.3515 -0.0273,-0.619 -0.0167,-0.7898 0.0167,-0.2847 0.1313,-0.5028 0.32439,-0.6736 0.20057,-0.1579 0.45315,-0.2327 0.76762,-0.2128 0.28725,0.019 0.51754,0.1021 0.6884,0.2525 0.18071,0.156 0.26248,0.3392 0.24762,0.5596 -0.006,0.074 -0.0149,0.1281 -0.0396,0.1579 -0.052,0.1504 -0.0743,0.2328 -0.0743,0.2377 -0.007,0.1485 0.17588,0.2849 0.56211,0.4136 0.0149,0 0.15842,0.065 0.45316,0.1783 l 4.16253,1.6218 c 0.68344,0.2552 1.01277,0.5646 0.98555,0.9262 0,0.1114 -0.0247,0.2698 -0.0719,0.4853 -0.0446,0.2204 -0.0693,0.3788 -0.0767,0.4929 -0.006,0.1095 0,0.2648 0.0167,0.4728 0.0199,0.213 0.0273,0.3666 0.0199,0.4606 -0.0223,0.4037 -0.46801,0.6563 -1.32974,0.7702 l -4.34084,0.5372 4.10807,1.2109 c 0.61164,0.1727 0.9905,0.317 1.14401,0.421 0.15601,0.098 0.22287,0.2651 0.21297,0.4953 -0.009,0.1208 -0.0371,0.2823 -0.0867,0.4853 -0.0422,0.203 -0.0669,0.3863 -0.0719,0.5399 -0.013,0.117 0,0.2945 0.013,0.5224 0.0167,0.2327 0.0247,0.4086 0.013,0.5275 -0.0199,0.3367 -0.31447,0.567 -0.87658,0.6834 l -5.04655,1.007898 c -0.34172,0.058 -0.52001,0.1881 -0.5324,0.406 -0.013,0.046 0,0.1133 0.0149,0.2106 0.0149,0.091 0.0199,0.1615 0.0199,0.203 -0.0273,0.4555 -0.35658,0.6685 -0.99544,0.629 -0.71563,-0.046 -1.04498,-0.3863 -1.00535,-1.0278 0.006,-0.1783 0.047,-0.4333 0.11385,-0.774998 0.0618,-0.3417 0.099,-0.6017 0.10901,-0.775 0.009,-0.1801 0.007,-0.468 -0.0167,-0.8519 -0.013,-0.3788 -0.0167,-0.6736 -0.002,-0.8543 0.0321,-0.5868 0.38134,-0.8617 1.03259,-0.8245 0.55466,0.039 0.83695,0.2674 0.84191,0.6884 0.013,0.2128 0.0273,0.3466 0.0544,0.3937 0.0199,0.052 0.0841,0.08 0.20057,0.084 l 0.13873,0.019 c 0.047,0 0.12128,0 0.23029,-0.02" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path319"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 101.80054,82.975602 c 0.0618,0.019 0.11886,0 0.16845,-0.019 0.0544,-0.024 0.0942,-0.1318 0.13372,-0.3292 l 0.38133,-1.7855 c 0.0371,-0.156 0.0422,-0.2574 0.009,-0.307 -0.0297,-0.043 -0.0915,-0.072 -0.18818,-0.099 -0.27733,-0.054 -0.53734,0.019 -0.80477,0.2155 -0.25754,0.1955 -0.42097,0.4606 -0.49029,0.7948 -0.0892,0.4283 0,0.8048 0.2699,1.1441 0.17086,0.2128 0.35411,0.3417 0.52001,0.3788 m 1.88935,-4.9204 c 0.45068,0.091 0.73297,0.2229 0.86669,0.3616 0.12127,0.143 0.14857,0.3813 0.0793,0.7108 l -0.84191,3.9024 c -0.0446,0.1956 -0.0496,0.3195 -0.0167,0.3739 0.0273,0.052 0.11143,0.098 0.26494,0.1356 0.45068,0.091 0.85679,0.031 1.22079,-0.1908 0.36648,-0.2252 0.58687,-0.5571 0.68344,-0.9904 0.0916,-0.4531 -0.0496,-0.9633 -0.44325,-1.5377 -0.2699,-0.3938 -0.36647,-0.7875 -0.28725,-1.1689 0.0693,-0.3195 0.22039,-0.5572 0.44325,-0.718 0.22039,-0.1616 0.47544,-0.2032 0.75526,-0.1486 0.61658,0.1393 1.06973,0.5869 1.35696,1.3544 0.29221,0.775 0.33429,1.6468 0.12128,2.62 -0.27734,1.2751 -0.87659,2.2013 -1.81012,2.7931 -0.92858,0.5967 -2.03795,0.7503 -3.32311,0.4729 -1.29506,-0.2699 -2.25336,-0.8766 -2.88727,-1.7978 -0.6364,-0.9185 -0.82459,-1.9933 -0.56211,-3.2116 0.24267,-1.1316 0.76268,-1.9662 1.56249,-2.5034 0.79487,-0.5399 1.73585,-0.6885 2.81797,-0.4582" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path323"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 109.64771,74.405702 c -0.0891,0.2475 -0.20304,0.5521 -0.35905,0.9185 0.0297,0.5275 0.19068,0.8469 0.47544,0.9435 0.55219,0.1783 1.03259,-0.3343 1.44117,-1.5649 0.42096,-1.2307 0.3541,-1.9365 -0.19811,-2.1272 -0.44572,-0.1467 -0.8122,0.1783 -1.07963,0.9906 -0.009,0.032 -0.0544,0.169 -0.14114,0.4185 z m -6.08161,-2.3995 c -0.0966,0.2823 -0.0817,0.562 0.0496,0.8196 0.12387,0.2501 0.33923,0.4284 0.63391,0.5298 0.29467,0.1059 0.57201,0.089 0.83697,-0.035 0.26,-0.1281 0.44572,-0.3318 0.54229,-0.6141 0.0916,-0.2922 0.0767,-0.5744 -0.0594,-0.8296 -0.13371,-0.255 -0.34172,-0.4309 -0.62649,-0.5275 -0.29219,-0.098 -0.57201,-0.084 -0.83696,0.037 -0.26249,0.1244 -0.44078,0.3319 -0.53982,0.6192 m -1.64421,-0.4211 0.20057,-0.5818 c -0.51507,-0.1883 -0.85926,-0.5003 -1.03754,-0.9386 -0.18071,-0.4407 -0.16102,-0.9583 0.0371,-1.56 0.17086,-0.4903 0.42839,-0.8493 0.78744,-1.0895 0.35411,-0.2451 0.73048,-0.2997 1.1143,-0.169 0.26001,0.087 0.44572,0.2402 0.56458,0.4731 0.12128,0.2252 0.13613,0.4802 0.0496,0.7378 -0.099,0.2897 -0.27982,0.463 -0.54229,0.5224 l -0.29962,0.072 c -0.0867,0.018 -0.14616,0.072 -0.1833,0.1634 -0.0669,0.2154 0.0421,0.3813 0.34172,0.4829 0.0719,0.019 0.1287,0.032 0.15841,0.032 0.69334,-0.874 1.5625,-1.139 2.61984,-0.78 0.79983,0.27 1.3347,0.7975 1.61452,1.5823 0.27237,0.7752 0.24514,1.6741 -0.0942,2.6794 -0.18572,0.5447 -0.48783,1.0548 -0.92612,1.5476 l -0.052,0.069 c 0.0669,0.1955 0.17086,0.3144 0.31447,0.364 0.34915,0.1207 0.64879,-0.061 0.89394,-0.525 0.0942,-0.1579 0.23771,-0.5325 0.42837,-1.1268 l 0.0618,-0.1727 0.33925,-0.9955 c 0.32439,-1.0004 0.77505,-1.7011 1.35449,-2.1121 0.57449,-0.4062 1.22079,-0.4879 1.9488,-0.2403 0.92363,0.3096 1.51546,0.9583 1.77546,1.9489 0.26,0.983 0.15842,2.1766 -0.31201,3.5607 -0.42343,1.243 -0.98801,2.1618 -1.70117,2.7561 -0.71564,0.5943 -1.45355,0.7577 -2.2187,0.5075 -0.82955,-0.2822 -1.22821,-1.0028 -1.19602,-2.1468 -0.44819,0.7751 -1.05984,1.0351 -1.83489,0.7751 -0.40362,-0.1392 -0.6884,-0.3417 -0.86173,-0.5943 -0.17086,-0.2626 -0.28229,-0.6637 -0.32439,-1.2108 -0.54229,0.2252 -1.06477,0.2648 -1.55507,0.091 -0.72554,-0.2428 -1.2282,-0.7578 -1.51545,-1.5502 -0.27486,-0.7899 -0.26,-1.6466 0.0496,-2.5728" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path327"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 107.91709,59.331702 0.68344,0.3765 c -0.45315,-1.2133 -0.42344,-2.283 0.0867,-3.2018 0.54723,-1.0028 1.31734,-1.4907 2.28307,-1.4907 0.50762,-0.02 1.17127,0.208 1.99089,0.6611 l 2.15432,1.1912 c 0.4804,0.2675 0.78249,0.3046 0.88898,0.117 0.0247,-0.046 0.0496,-0.1281 0.0594,-0.25 0.006,-0.058 0.0297,-0.1411 0.0767,-0.2328 0.23771,-0.4235 0.60172,-0.4978 1.10934,-0.2179 0.67105,0.3664 0.84687,0.8469 0.52991,1.4239 -0.0892,0.143 -0.23276,0.3664 -0.43581,0.6537 -0.208,0.2823 -0.34914,0.5002 -0.44078,0.6538 -0.1313,0.2401 -0.24761,0.5075 -0.35657,0.7948 -0.11385,0.2871 -0.22038,0.5225 -0.30952,0.6957 -0.31696,0.5572 -0.76516,0.681 -1.35202,0.3542 -0.50764,-0.2799 -0.66364,-0.6216 -0.47544,-1.0252 0.12387,-0.2748 0.0719,-0.473 -0.14616,-0.5844 l -2.00574,-1.1143 c -0.55469,-0.307 -0.98308,-0.4457 -1.28766,-0.4283 -0.30208,0.019 -0.55466,0.2006 -0.74287,0.5447 -0.2179,0.3913 -0.26247,0.7949 -0.13371,1.1936 0.1287,0.4012 0.39621,0.7106 0.80479,0.9483 l 1.49563,0.8198 c 0.4284,0.2401 0.70077,0.3614 0.81469,0.3688 0.11143,0.02 0.23029,-0.059 0.364,-0.2327 0.24019,-0.3195 0.59677,-0.3492 1.05735,-0.089 0.60419,0.3367 0.77011,0.7479 0.48782,1.2629 -0.0767,0.143 -0.19067,0.312 -0.33429,0.5028 -0.24515,0.3316 -0.41107,0.5818 -0.50764,0.7527 -0.099,0.1708 -0.21543,0.4383 -0.36895,0.7998 -0.15098,0.359 -0.27239,0.6241 -0.36649,0.7973 -0.3318,0.6042 -0.81963,0.7305 -1.45602,0.3739 -0.53238,-0.2972 -0.68095,-0.6734 -0.42591,-1.1316 0.0371,-0.072 0.10902,-0.1486 0.20058,-0.2279 0.0817,-0.076 0.13371,-0.1355 0.16584,-0.1931 0.0841,-0.1616 -0.14114,-0.3863 -0.67354,-0.6809 l -2.32269,-1.2851 c -0.54725,-0.2972 -0.86422,-0.3715 -0.95087,-0.208 -0.0199,0.039 -0.047,0.1207 -0.0719,0.25 -0.0321,0.1318 -0.0594,0.2228 -0.0942,0.2774 -0.24515,0.463 -0.63887,0.5447 -1.16384,0.2574 -0.28476,-0.1653 -0.47296,-0.3664 -0.56705,-0.624 -0.10159,-0.2624 -0.0743,-0.5224 0.0669,-0.7774 0.047,-0.076 0.16343,-0.2229 0.34172,-0.4483 0.10641,-0.1282 0.19066,-0.2452 0.25009,-0.3516 0.0544,-0.1133 0.14857,-0.3218 0.26496,-0.619 0.12127,-0.2971 0.17829,-0.4606 0.1981,-0.4879 0.14115,-0.2576 0.34666,-0.3144 0.6141,-0.169" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path331"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 118.86152,50.558102 -0.29219,-0.2106 c -0.006,0.084 -0.18071,0.5523 -0.52001,1.3992 -0.23029,0.567 -0.22039,0.9458 0.0371,1.134 0.40858,0.3021 0.78001,0.2154 1.12916,-0.2574 0.57448,-0.7776 0.45562,-1.4685 -0.3541,-2.0652 m 4.24427,0.1653 c -0.53487,0.7131 -1.17623,0.9904 -1.93889,0.8047 0.12127,1.045 -0.12629,1.9835 -0.7503,2.8255 -0.51258,0.7007 -1.1044,1.1117 -1.76803,1.2603 -0.67107,0.1467 -1.30994,-0.019 -1.92156,-0.458 -0.91869,-0.686 -1.22573,-1.5279 -0.90877,-2.5233 0.13873,-0.4259 0.33429,-0.8939 0.58934,-1.4041 0.35657,-0.6958 0.54476,-1.2133 0.57697,-1.5401 0.0321,-0.3245 -0.10159,-0.5869 -0.37887,-0.7975 -0.20306,-0.1504 -0.43582,-0.1857 -0.70078,-0.1133 -0.26001,0.061 -0.48287,0.2353 -0.67601,0.4853 -0.21048,0.2923 -0.23029,0.5102 -0.0422,0.6463 0.0594,0.046 0.12387,0.091 0.1882,0.1337 l 0.047,0.043 c 0.24762,0.1765 0.37637,0.4333 0.39619,0.7652 0.0149,0.3268 -0.0891,0.6439 -0.31696,0.9533 -0.25505,0.3491 -0.57448,0.5597 -0.95335,0.6266 -0.3739,0.067 -0.72801,-0.019 -1.03754,-0.2428 -0.47791,-0.3541 -0.6661,-0.8741 -0.56952,-1.5798 0.0942,-0.7058 0.46801,-1.4956 1.11677,-2.3772 0.70077,-0.9483 1.36935,-1.5402 2.00079,-1.7928 0.6884,-0.2624 1.46098,-0.083 2.32271,0.5522 l 2.73376,2.0158 c 0.27982,0.2104 0.47296,0.2475 0.57696,0.1058 0.047,-0.074 0.099,-0.1393 0.14616,-0.1981 0.0167,-0.03 0.0396,-0.054 0.0669,-0.097 0.14858,-0.2054 0.34915,-0.3219 0.59181,-0.3566 0.24021,-0.045 0.45811,0.019 0.65868,0.1616 0.28972,0.2104 0.42344,0.5126 0.41105,0.8964 -0.009,0.3986 -0.16343,0.7949 -0.46058,1.2059" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path335"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 125.18359,43.125702 -0.26249,-0.2502 c -0.0223,0.095 -0.25009,0.5299 -0.68344,1.3322 -0.29962,0.5374 -0.34172,0.9137 -0.10902,1.1317 0.36897,0.3442 0.74536,0.3046 1.15641,-0.1244 0.66362,-0.6983 0.63144,-1.3966 -0.10159,-2.0899 m 4.18978,0.6686 c -0.61658,0.6511 -1.28763,0.8443 -2.0206,0.567 0,1.0525 -0.36401,1.9562 -1.08706,2.7189 -0.58687,0.624 -1.22822,0.9732 -1.90917,1.0376 -0.67601,0.059 -1.2926,-0.169 -1.84232,-0.6834 -0.84193,-0.7875 -1.03508,-1.6667 -0.60668,-2.6175 0.19314,-0.4036 0.44819,-0.8443 0.75772,-1.3149 0.44077,-0.6561 0.69087,-1.1464 0.7602,-1.456 0.0693,-0.3219 -0.0223,-0.6042 -0.2798,-0.8419 -0.1807,-0.1764 -0.40611,-0.2401 -0.6785,-0.1955 -0.27486,0.037 -0.51258,0.1708 -0.73295,0.4011 -0.24268,0.2648 -0.29221,0.4728 -0.12127,0.6314 0.0544,0.05 0.10641,0.1059 0.16844,0.1505 l 0.0496,0.046 c 0.21294,0.208 0.3219,0.4855 0.29466,0.8073 -0.0247,0.3343 -0.17086,0.6365 -0.42591,0.9137 -0.29962,0.3145 -0.64383,0.4853 -1.02516,0.5102 -0.38629,0.022 -0.72058,-0.104 -1.00534,-0.3714 -0.42593,-0.4062 -0.55221,-0.9461 -0.3665,-1.6319 0.17588,-0.6859 0.64383,-1.4287 1.39909,-2.2188 0.80476,-0.8617 1.54021,-1.3817 2.20136,-1.5526 0.71315,-0.1857 1.46098,0.089 2.23356,0.8272 l 2.46384,2.3276 c 0.24515,0.2377 0.43829,0.2971 0.55468,0.1634 0.0669,-0.057 0.12388,-0.1188 0.17086,-0.1783 0.0273,-0.024 0.0544,-0.05 0.0841,-0.082 0.17086,-0.1838 0.38382,-0.2773 0.62154,-0.2847 0.24762,0 0.46305,0.067 0.64381,0.2426 0.26249,0.2451 0.35658,0.5645 0.30211,0.9484 -0.057,0.3863 -0.26001,0.7676 -0.6042,1.1342" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path339"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 128.28629,34.042602 0.89394,1.0597 c -0.24268,-0.5224 -0.37144,-0.9557 -0.37393,-1.2875 -0.0167,-0.7628 0.29964,-1.4288 0.96326,-1.9859 0.46305,-0.3863 0.9682,-0.5622 1.53031,-0.5301 0.56705,0.032 1.03506,0.2725 1.39907,0.7058 0.2922,0.3393 0.42592,0.7107 0.40857,1.102 -0.009,0.3863 -0.17086,0.7132 -0.48286,0.9732 -0.22533,0.1979 -0.49523,0.2921 -0.78248,0.2698 -0.29219,-0.019 -0.52991,-0.1263 -0.71069,-0.3441 -0.10158,-0.1189 -0.18818,-0.3245 -0.26,-0.6315 l -0.0719,0.069 c -0.56458,0.473 -0.69087,1.0846 -0.38381,1.8399 0.24515,0.6065 0.63144,1.2157 1.15392,1.8298 l 0.40611,0.4805 c 0.25008,0.302 0.43829,0.4754 0.55715,0.51 0.0693,0.024 0.156,0 0.24019,-0.065 0.0767,-0.069 0.16343,-0.1765 0.26,-0.3245 0.10159,-0.1504 0.18819,-0.2576 0.25754,-0.3144 0.1807,-0.1541 0.39372,-0.218 0.63638,-0.1982 0.23524,0.022 0.43829,0.1245 0.59678,0.312 0.20057,0.2476 0.29466,0.5251 0.27237,0.8246 -0.0247,0.3022 -0.15099,0.5522 -0.38629,0.7503 -0.12387,0.1059 -0.37886,0.2773 -0.7602,0.5275 -0.23029,0.1467 -0.50268,0.3541 -0.82211,0.6165 -0.31695,0.2699 -0.58687,0.5201 -0.80477,0.7479 -0.36896,0.3837 -0.59429,0.614 -0.6884,0.6909 -0.51505,0.4333 -1.0103,0.3813 -1.48078,-0.1839 -0.39619,-0.468 -0.39125,-0.8766 0.007,-1.2133 0.0743,-0.054 0.156,-0.1021 0.26248,-0.1485 0.10901,-0.045 0.1807,-0.076 0.22534,-0.117 0.14356,-0.1189 0.0149,-0.4086 -0.38135,-0.884 l -1.70611,-2.0305 c -0.40115,-0.4706 -0.67354,-0.6587 -0.81468,-0.5349 -0.0371,0.024 -0.0867,0.095 -0.15842,0.208 -0.0644,0.1115 -0.13372,0.1839 -0.1833,0.2229 -0.39868,0.3441 -0.7924,0.2797 -1.18363,-0.1764 -0.20554,-0.255 -0.31201,-0.5102 -0.31201,-0.7851 0,-0.2648 0.10642,-0.4902 0.31201,-0.6685 0.0841,-0.069 0.2179,-0.1579 0.39372,-0.2426 0.17587,-0.097 0.33923,-0.2056 0.468,-0.317 0.10159,-0.082 0.23276,-0.2229 0.39124,-0.4136 0.17828,-0.1956 0.30457,-0.3317 0.38878,-0.4086 0.26743,-0.2202 0.50515,-0.1979 0.72305,0.061" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path343"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 140.9235,22.477102 3.68957,6.3465 c 0.19563,0.3295 0.42097,0.4335 0.67601,0.2873 0.0767,-0.046 0.17829,-0.1207 0.30707,-0.2229 0.13371,-0.1114 0.2278,-0.1857 0.30704,-0.2327 0.61411,-0.3541 1.09698,-0.2228 1.4585,0.3912 0.1807,0.322 0.24267,0.6266 0.17587,0.9261 -0.0644,0.2996 -0.25009,0.5299 -0.53734,0.7007 -0.0618,0.037 -0.11384,0.06 -0.15358,0.072 l -0.9162,0.3987 c -0.26497,0.117 -0.70079,0.354 -1.31737,0.7031 -0.56705,0.3343 -0.9162,0.5498 -1.04744,0.6564 l -0.77753,0.6017 c -0.0297,0.03 -0.0867,0.067 -0.14857,0.1021 -0.32935,0.1908 -0.64136,0.2478 -0.95583,0.169 -0.30705,-0.083 -0.54973,-0.2724 -0.73297,-0.5844 -0.16344,-0.2847 -0.22038,-0.5546 -0.15099,-0.8196 0.0594,-0.2624 0.22286,-0.473 0.48039,-0.6264 0.0916,-0.045 0.23029,-0.1133 0.41105,-0.1907 0.19068,-0.087 0.32686,-0.1468 0.41601,-0.1882 0.22286,-0.1411 0.27982,-0.3714 0.156,-0.7083 -0.0247,-0.069 -0.16343,-0.3194 -0.40858,-0.7453 l -2.27565,-3.9075 c -0.25753,-0.4433 -0.54972,-0.5744 -0.87162,-0.3839 -0.052,0.032 -0.15099,0.1022 -0.29221,0.2056 -0.15842,0.1635 -0.30209,0.2823 -0.43581,0.359 -0.55468,0.312 -1.00783,0.1579 -1.37926,-0.4728 -0.18572,-0.322 -0.23525,-0.6365 -0.15359,-0.9485 0.0867,-0.3021 0.29468,-0.5571 0.62401,-0.7479 0.16343,-0.098 0.42591,-0.2128 0.77011,-0.3565 0.35658,-0.1412 0.61163,-0.2574 0.76763,-0.3566 0.208,-0.1133 0.45315,-0.302 0.77258,-0.572 0.1287,-0.1189 0.27982,-0.2203 0.44077,-0.3144 0.2501,-0.143 0.47049,-0.1802 0.64878,-0.091 0.12629,0.08 0.28723,0.2576 0.45315,0.5521" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path347"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 149.63587,19.453102 c -0.5943,0.2501 -0.93851,0.7404 -1.03259,1.4684 -0.0966,0.7182 0.0693,1.5773 0.49523,2.5876 0.42593,1.0079 0.93355,1.7211 1.51795,2.1569 0.58437,0.4283 1.17124,0.5174 1.76059,0.2625 0.60667,-0.2452 0.95831,-0.7355 1.05488,-1.4537 0.099,-0.7131 -0.0669,-1.5772 -0.49029,-2.5876 -0.4383,-1.0201 -0.94345,-1.7433 -1.52785,-2.1741 -0.58439,-0.4259 -1.1762,-0.51 -1.77792,-0.26 m 3.67471,8.5207 c -1.43868,0.6091 -2.74366,0.6141 -3.92482,0.024 -1.18116,-0.5895 -2.12707,-1.7235 -2.83776,-3.4098 -0.70325,-1.6541 -0.8642,-3.12 -0.47543,-4.3953 0.38382,-1.2728 1.26783,-2.2013 2.63965,-2.7858 1.42137,-0.5967 2.72633,-0.6091 3.91988,-0.022 1.18116,0.5795 2.12461,1.6789 2.80062,3.3034 0.73297,1.716 0.91373,3.2116 0.54229,4.4819 -0.36401,1.2753 -1.25298,2.2039 -2.66443,2.803" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path351"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 160.78212,15.596802 c -0.61906,0.169 -1.02763,0.6068 -1.21831,1.3149 -0.19314,0.7009 -0.14114,1.5775 0.14115,2.6324 0.28972,1.0498 0.69333,1.8322 1.21583,2.3326 0.51752,0.5001 1.09449,0.671 1.71354,0.5001 0.62897,-0.1653 1.04002,-0.6041 1.23812,-1.3024 0.19562,-0.7009 0.14356,-1.5775 -0.14356,-2.6348 -0.28476,-1.0599 -0.6884,-1.8423 -1.21334,-2.3451 -0.52001,-0.5075 -1.09698,-0.6635 -1.73338,-0.4977 m 2.50596,8.9293 c -1.51051,0.4062 -2.80558,0.2502 -3.90006,-0.5025 -1.09451,-0.7429 -1.87699,-1.9909 -2.36233,-3.7541 -0.47049,-1.7333 -0.42839,-3.2116 0.12388,-4.4201 0.55219,-1.2059 1.55506,-2.0082 2.99376,-2.4043 1.49068,-0.4037 2.78327,-0.2403 3.88025,0.4977 1.1044,0.7355 1.88935,1.9488 2.34993,3.6449 0.4903,1.8028 0.4705,3.3108 -0.0669,4.5092 -0.53733,1.2135 -1.54516,2.0256 -3.01852,2.4292" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path355"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 178.59636,18.701802 c -0.12128,-1.0573 -0.50267,-1.5377 -1.14153,-1.4584 -0.68593,0.072 -0.96822,0.6511 -0.84687,1.7208 0.1287,1.0822 0.5299,1.5824 1.20838,1.5057 0.64136,-0.067 0.90879,-0.6636 0.78002,-1.7681 m -3.82578,0.421 c -0.11644,-0.9707 0.0422,-1.7409 0.4705,-2.3251 0.43086,-0.5746 1.10191,-0.9188 2.02554,-1.0228 1.86956,-0.2228 2.91948,0.6909 3.15472,2.7314 0.24515,2.0726 -0.58439,3.214 -2.47128,3.4294 -0.89638,0.1115 -1.63182,-0.084 -2.17661,-0.5794 -0.55962,-0.4803 -0.88895,-1.2306 -1.00287,-2.2335 m -3.31071,-4.8559 c -0.11885,-1.0896 -0.51258,-1.5873 -1.1465,-1.5155 -0.70077,0.084 -0.99296,0.6439 -0.87659,1.7036 0.12388,1.0971 0.5423,1.6022 1.23565,1.5255 0.64877,-0.087 0.91124,-0.6415 0.78744,-1.7136 m -0.72554,7.3865 4.24425,-8.4761 c -0.24514,0.218 -0.52247,0.3517 -0.82705,0.3839 -0.32686,0.039 -0.65868,-0.022 -0.99297,-0.1857 0.0644,0.1981 0.104,0.3913 0.12628,0.567 0.24764,2.1147 -0.57201,3.286 -2.46383,3.5015 -0.92116,0.1095 -1.66156,-0.089 -2.21128,-0.5821 -0.56211,-0.4977 -0.90134,-1.2703 -1.02516,-2.3053 -0.11143,-0.9559 0.0496,-1.721 0.48286,-2.2856 0.42344,-0.567 1.09202,-0.9037 1.99089,-1.0151 0.82706,-0.091 1.54517,0.022 2.17165,0.359 l 0.45811,0.2451 c 0.61905,0.3343 1.1663,0.473 1.6467,0.4184 0.58686,-0.069 1.07467,-0.3738 1.46345,-0.9063 l 0.13873,-0.198 c 0.18819,-0.2626 0.44076,-0.4135 0.75773,-0.4483 0.44323,-0.052 0.68591,0.06 0.71562,0.3295 0.013,0.1244 -0.0867,0.4086 -0.30458,0.8368 l -5.04161,10.1304 c -0.12127,0.2549 -0.24018,0.416 -0.34172,0.5027 -0.12628,0.1021 -0.31694,0.1708 -0.56705,0.198 -0.44325,0.061 -0.67354,-0.037 -0.70572,-0.2649 -0.0199,-0.1281 0.0793,-0.3937 0.28476,-0.8049" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path359"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 189.44769,13.250102 c 0.84193,0.059 1.52784,0.3491 2.06766,0.8593 0.0817,-0.468 0.39619,-0.6784 0.94096,-0.6389 0.55221,0.045 0.81468,0.2576 0.78744,0.6439 -0.007,0.1356 -0.0396,0.2797 -0.0966,0.4431 -0.047,0.1932 -0.0743,0.3741 -0.0915,0.5524 0,0.032 0,0.117 -0.002,0.26 -0.006,0.1411 -0.0223,0.2624 -0.0347,0.3738 v 0.067 c -0.0396,0.5744 -0.35411,0.8418 -0.93106,0.7973 -0.41353,-0.032 -0.75772,-0.2625 -1.02764,-0.6859 -0.3343,-0.5274 -0.76763,-0.7999 -1.30745,-0.837 -0.62153,-0.046 -0.95335,0.1411 -0.99049,0.5794 -0.0167,0.2255 0.0743,0.3963 0.27486,0.5078 0.19811,0.104 0.73297,0.2674 1.60956,0.4853 0.70076,0.1881 1.22324,0.3714 1.55506,0.5669 0.33182,0.1839 0.59677,0.4409 0.78497,0.7604 0.25009,0.416 0.35162,0.879 0.31448,1.4064 -0.0644,0.8296 -0.43582,1.4956 -1.1143,2.0058 -0.67848,0.5075 -1.49564,0.723 -2.45643,0.6487 -0.9583,-0.069 -1.81011,-0.4383 -2.55051,-1.1117 -0.0422,0.52 -0.33182,0.7651 -0.87163,0.7205 -0.59429,-0.039 -0.86668,-0.3045 -0.83201,-0.7776 0.007,-0.117 0.0273,-0.2822 0.0669,-0.5125 0.0421,-0.2229 0.0618,-0.3938 0.0719,-0.5002 0.009,-0.1021 0.009,-0.2451 0.009,-0.4483 0,-0.1956 0,-0.3441 0.013,-0.4383 0.0297,-0.4951 0.35904,-0.7156 0.9682,-0.671 0.29714,0.02 0.51009,0.089 0.66362,0.1802 0.14114,0.1021 0.28972,0.2873 0.45068,0.5547 0.24019,0.4309 0.47048,0.7132 0.69087,0.8641 0.22037,0.1393 0.55466,0.2329 1.00038,0.2601 0.7825,0.059 1.19108,-0.1579 1.23565,-0.6488 0.0247,-0.3417 -0.27735,-0.5967 -0.90136,-0.7725 l -0.92858,-0.2675 c -0.76516,-0.2154 -1.30496,-0.4234 -1.61203,-0.6141 -0.30705,-0.1858 -0.54229,-0.4705 -0.70324,-0.8345 -0.15841,-0.3616 -0.22039,-0.7776 -0.18571,-1.2406 0.0618,-0.8195 0.38133,-1.4584 0.9583,-1.9364 0.57695,-0.4705 1.30496,-0.676 2.17412,-0.6018" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path363"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 198.83285,11.829702 c 0.30211,0.058 0.41354,0.2799 0.35411,0.6786 l -1.28269,7.6564 c -0.0867,0.5349 -0.0247,0.8272 0.18571,0.8668 0.0793,0.018 0.16845,0.018 0.24019,-0.028 0.0693,-0.028 0.15359,-0.032 0.26249,-0.019 0.48038,0.072 0.6661,0.3988 0.56952,0.9634 -0.12387,0.7553 -0.51751,1.087 -1.15887,0.9731 -0.007,0 -0.40609,-0.1021 -1.20839,-0.3022 -0.24515,-0.054 -0.50268,-0.1114 -0.78497,-0.1615 -0.23525,-0.037 -0.49029,-0.061 -0.76515,-0.073 -0.46058,-0.028 -0.7503,-0.052 -0.86916,-0.067 -0.28725,-0.05 -0.51258,-0.1881 -0.65869,-0.4235 -0.15098,-0.2228 -0.19808,-0.4977 -0.14615,-0.8295 0.104,-0.5917 0.41847,-0.8543 0.94095,-0.77 0.0669,0 0.14616,0.05 0.25753,0.104 0.0966,0.061 0.19068,0.098 0.25754,0.1095 0.17327,0.032 0.31943,-0.2549 0.41601,-0.8641 l 0.89887,-5.3784 c 0.104,-0.6041 0.0618,-0.9286 -0.12128,-0.9559 -0.0743,0 -0.17086,0 -0.29714,0.019 -0.0669,0 -0.16102,0 -0.26248,-0.019 -0.51754,-0.083 -0.72305,-0.4234 -0.62401,-1.0103 0.0544,-0.3318 0.18819,-0.5794 0.40611,-0.7404 0.21047,-0.1616 0.48038,-0.2154 0.79238,-0.169 0.0817,0.022 0.26743,0.061 0.53736,0.1411 0.35657,0.099 0.63143,0.1653 0.81219,0.1956 0.25258,0.045 0.47048,0.059 0.66116,0.052 0.25257,0 0.44572,0.032 0.58686,0.045" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path367"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 205.17374,21.255102 0.0966,-0.3468 c -0.0867,0.022 -0.58439,0.024 -1.49316,0.022 -0.61907,0 -0.96573,0.1337 -1.05241,0.4409 -0.13371,0.4853 0.0867,0.8023 0.6562,0.9607 0.92858,0.2502 1.53527,-0.1095 1.7928,-1.0771 m 1.39659,4.009 c -0.86915,-0.2278 -1.35451,-0.738 -1.46594,-1.508 -0.92115,0.4951 -1.89182,0.5991 -2.90461,0.3343 -0.83202,-0.2279 -1.43374,-0.634 -1.81754,-1.2084 -0.38136,-0.567 -0.46801,-1.2159 -0.26993,-1.9414 0.30211,-1.1068 0.97316,-1.6963 2.0231,-1.7656 0.44819,-0.024 0.9583,-0.018 1.52039,0.039 0.78001,0.076 1.32974,0.072 1.6467,-0.022 0.312,-0.089 0.50762,-0.3045 0.60419,-0.6412 0.0619,-0.2353 0.0149,-0.4731 -0.14616,-0.6959 -0.15841,-0.2154 -0.39372,-0.3688 -0.69829,-0.4506 -0.35658,-0.089 -0.55469,-0.024 -0.61658,0.1956 -0.0223,0.069 -0.0422,0.143 -0.0544,0.2154 l -0.0199,0.069 c -0.0841,0.2873 -0.27239,0.5102 -0.56954,0.6439 -0.30211,0.1319 -0.63887,0.1467 -1.0004,0.05 -0.42344,-0.1115 -0.73296,-0.3319 -0.93849,-0.6612 -0.1981,-0.3294 -0.25257,-0.6834 -0.15099,-1.0575 0.15601,-0.5694 0.57695,-0.936 1.26039,-1.1042 0.69583,-0.1635 1.56499,-0.1022 2.61739,0.1838 1.13906,0.3072 1.94383,0.7084 2.40441,1.2109 0.50268,0.5399 0.61907,1.3297 0.33182,2.3623 l -0.88402,3.2787 c -0.0942,0.3343 -0.0544,0.5224 0.11645,0.562 0.0867,0.03 0.16101,0.045 0.23772,0.069 0.0347,0 0.0669,0.019 0.11143,0.032 0.24265,0.065 0.42343,0.1982 0.54229,0.4136 0.12629,0.2105 0.16343,0.4333 0.0891,0.6734 -0.0891,0.3444 -0.31943,0.5821 -0.69086,0.7182 -0.37144,0.1393 -0.79983,0.1393 -1.27774,0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path371"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 214.34322,24.411302 0.13371,-0.3343 c -0.0891,0.022 -0.57201,-0.032 -1.47831,-0.1504 -0.60668,-0.082 -0.97316,0.022 -1.08955,0.312 -0.19065,0.4755 -0.0149,0.8148 0.52993,1.0278 0.89887,0.3688 1.53031,0.083 1.90422,-0.8543 m 0.9063,4.15 c -0.83202,-0.3367 -1.24802,-0.8963 -1.26041,-1.6714 -0.98059,0.3764 -1.95622,0.3714 -2.92691,-0.022 -0.79981,-0.3219 -1.35696,-0.7875 -1.65906,-1.394 -0.30954,-0.6192 -0.31697,-1.2679 -0.0371,-1.9761 0.4284,-1.0649 1.16878,-1.565 2.20879,-1.5056 0.45811,0.024 0.95583,0.099 1.50803,0.2205 0.76268,0.1578 1.30994,0.2202 1.6368,0.1653 0.31943,-0.052 0.54229,-0.2353 0.67352,-0.5646 0.0942,-0.2377 0.0743,-0.463 -0.0594,-0.6983 -0.1313,-0.2377 -0.35162,-0.421 -0.63887,-0.5423 -0.33676,-0.1263 -0.54723,-0.091 -0.63638,0.1207 -0.0273,0.069 -0.0544,0.1412 -0.0767,0.213 l -0.0297,0.06 c -0.11143,0.2798 -0.32686,0.4704 -0.63887,0.5744 -0.3219,0.097 -0.65123,0.072 -1.00781,-0.074 -0.40611,-0.1616 -0.68097,-0.4184 -0.84687,-0.7676 -0.16343,-0.3467 -0.17328,-0.7007 -0.0223,-1.0673 0.22286,-0.5471 0.68344,-0.8617 1.38668,-0.9384 0.70325,-0.087 1.56002,0.082 2.57032,0.4927 1.10194,0.4383 1.84728,0.9336 2.24843,1.4857 0.43086,0.5969 0.44572,1.3918 0.047,2.3872 l -1.27277,3.1424 c -0.13372,0.3218 -0.11645,0.5224 0.0422,0.5818 0.0867,0.037 0.16101,0.067 0.23029,0.097 0.0297,0.02 0.0719,0.022 0.10641,0.043 0.23029,0.091 0.40362,0.255 0.49772,0.4779 0.099,0.2278 0.099,0.4507 0.007,0.6834 -0.1313,0.3343 -0.39125,0.5373 -0.77505,0.629 -0.38629,0.087 -0.80973,0.043 -1.27527,-0.1504" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path375"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 225.93197,23.418902 c 0.057,-0.1115 0.16585,-0.2155 0.30954,-0.3195 -0.0594,-0.08 -0.14858,-0.1504 -0.26001,-0.2154 -0.46553,-0.2452 -0.82707,-0.1467 -1.06479,0.3094 l -0.15359,0.2873 c -0.10158,0.1857 -0.0421,0.3367 0.17829,0.4507 l 0.42591,0.2277 c 0.55962,0.2923 0.70572,0.7084 0.43086,1.2233 -0.28229,0.5474 -0.69583,0.6761 -1.23069,0.3988 l -0.47544,-0.2526 c -0.21294,-0.1114 -0.38876,-0.045 -0.51752,0.203 l -1.52288,2.8898 c -0.16584,0.3045 -0.2501,0.4804 -0.2501,0.5101 -0.0841,0.2155 -0.0321,0.3739 0.14114,0.468 0.0396,0.019 0.1287,0.052 0.2699,0.117 0.12128,0.037 0.23772,0.084 0.35164,0.1505 0.45315,0.2425 0.53487,0.624 0.25752,1.1562 -0.14115,0.2701 -0.34419,0.4433 -0.59677,0.5325 -0.25257,0.089 -0.51258,0.061 -0.76762,-0.067 -0.013,0 -0.29715,-0.1955 -0.83451,-0.5521 -0.1833,-0.117 -0.45562,-0.2799 -0.81962,-0.468 -0.40858,-0.2205 -0.74534,-0.3815 -1.01277,-0.4829 -0.44079,-0.169 -0.70822,-0.2823 -0.80973,-0.3343 -0.26743,-0.143 -0.43582,-0.3517 -0.50764,-0.6091 -0.0669,-0.2701 -0.0247,-0.5473 0.1287,-0.837 0.28476,-0.5399 0.66115,-0.6885 1.14153,-0.4359 0.0743,0.037 0.14857,0.1021 0.23278,0.1907 0.0743,0.089 0.1313,0.1337 0.16584,0.1541 0.18331,0.097 0.40611,-0.1281 0.69334,-0.6711 l 1.52041,-2.8749 c 0.11143,-0.2054 0.12388,-0.3466 0.052,-0.4185 -0.0273,-0.031 -0.0892,-0.082 -0.16845,-0.1337 l -0.34915,-0.1801 c -0.51258,-0.2701 -0.63638,-0.6563 -0.37143,-1.1589 0.29467,-0.5622 0.71315,-0.7009 1.24802,-0.416 l 0.25753,0.1337 c 0.16845,0.089 0.28476,0.1133 0.36154,0.089 0.0767,-0.03 0.17829,-0.1468 0.29466,-0.3393 0.37639,-0.6488 0.91868,-1.0376 1.61698,-1.1639 0.70326,-0.1189 1.46841,0.035 2.30289,0.473 0.6884,0.3738 1.1787,0.8047 1.45107,1.3074 0.27486,0.4978 0.28478,0.9806 0.0396,1.4486 -0.15359,0.2897 -0.3863,0.4731 -0.70079,0.5522 -0.30952,0.089 -0.62895,0.039 -0.95087,-0.1319 -0.25752,-0.1393 -0.44076,-0.317 -0.53238,-0.5423 -0.0966,-0.2303 -0.0867,-0.4582 0.0247,-0.6686" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path379"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 229.26844,29.800502 -1.08459,3.6203 3.02596,-2.3079 c 0.0767,-0.054 0.18071,-0.1262 0.30705,-0.2252 0.0966,-0.072 0.15842,-0.143 0.1833,-0.1858 0.0916,-0.1262 0.0297,-0.2897 -0.17327,-0.4928 -0.28723,-0.3121 -0.28723,-0.6761 0.006,-1.1143 0.34668,-0.5126 0.76516,-0.6092 1.25049,-0.2723 0.16343,0.104 0.39125,0.2871 0.6983,0.5423 0.29221,0.2526 0.52001,0.4357 0.68593,0.5497 0.25008,0.169 0.50762,0.3219 0.78001,0.4506 0.27237,0.1262 0.45809,0.2278 0.56705,0.3045 0.53487,0.3592 0.60419,0.8172 0.22039,1.3942 -0.36401,0.5399 -0.78001,0.6588 -1.24308,0.3417 -0.0167,-0.019 -0.0422,-0.024 -0.0693,-0.046 -0.0321,-0.02 -0.0544,-0.043 -0.0618,-0.046 -0.0544,-0.061 -0.0966,-0.1133 -0.15358,-0.1579 -0.15099,-0.097 -0.3764,-0.039 -0.66363,0.1653 -0.10901,0.074 -0.34915,0.2526 -0.7503,0.525 l -3.23148,2.2435 c -0.77754,0.5596 -1.42136,0.6338 -1.91909,0.2451 l -0.61162,-0.4754 -0.66611,-0.3913 c -0.009,0 -0.0247,-0.019 -0.052,-0.043 -0.42838,-0.2849 -0.5522,-0.7678 -0.38876,-1.4438 l 1.1663,-4.7443 c 0.0743,-0.3417 0.10902,-0.5622 0.099,-0.6513 -0.007,-0.089 -0.0544,-0.1653 -0.14115,-0.2253 -0.009,0 -0.0371,-0.024 -0.0719,-0.043 -0.0273,-0.022 -0.0496,-0.037 -0.0693,-0.05 -0.0693,-0.054 -0.14356,-0.104 -0.2278,-0.156 -0.18071,-0.1244 -0.28229,-0.2897 -0.30458,-0.52 -0.0199,-0.2178 0.0496,-0.4431 0.19809,-0.6686 0.40363,-0.5967 0.88897,-0.7081 1.43373,-0.3367 0.13873,0.087 0.34172,0.2502 0.58687,0.4731 0.24764,0.2228 0.44325,0.3788 0.58193,0.4754 0.18818,0.1244 0.5299,0.3243 1.02763,0.5893 0.29218,0.1616 0.51011,0.2947 0.64133,0.3764 0.49526,0.3343 0.56458,0.7602 0.21297,1.2752 -0.31697,0.473 -0.66859,0.6067 -1.05984,0.3889 -0.24266,-0.1208 -0.42094,-0.1171 -0.52495,0.039 -0.0297,0.05 -0.099,0.2451 -0.20306,0.5967" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path383"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 239.34026,34.574002 -0.91124,1.0474 c 0.48037,-0.3218 0.88401,-0.5126 1.2183,-0.5744 0.75524,-0.1337 1.45849,0.08 2.10975,0.6413 0.45315,0.3987 0.71067,0.8741 0.76267,1.4361 0.052,0.5622 -0.10642,1.0575 -0.47544,1.4858 -0.29219,0.3369 -0.63887,0.5274 -1.02267,0.5746 -0.38382,0.037 -0.73544,-0.061 -1.04251,-0.3343 -0.22286,-0.1958 -0.35657,-0.4457 -0.38876,-0.7306 -0.0347,-0.2847 0.047,-0.5373 0.22782,-0.7477 0.10642,-0.117 0.29466,-0.2279 0.58438,-0.3444 l -0.0743,-0.058 c -0.55219,-0.4829 -1.18116,-0.5126 -1.87697,-0.097 -0.55715,0.3417 -1.10193,0.8146 -1.63431,1.4287 l -0.40858,0.4704 c -0.26,0.2972 -0.39868,0.5078 -0.41849,0.6341 -0.013,0.08 0.0273,0.1486 0.10901,0.2253 0.0743,0.061 0.18819,0.1281 0.36648,0.208 0.15842,0.08 0.27735,0.1393 0.34421,0.1981 0.1807,0.156 0.2798,0.354 0.29715,0.5943 0.0148,0.2402 -0.0544,0.4532 -0.2204,0.6389 -0.20553,0.2401 -0.46057,0.3714 -0.77011,0.4011 -0.30458,0.019 -0.56705,-0.072 -0.79238,-0.27 -0.12629,-0.1114 -0.34668,-0.3269 -0.64879,-0.6611 -0.1833,-0.2081 -0.43086,-0.4482 -0.74038,-0.718 -0.31449,-0.2701 -0.59925,-0.5004 -0.85925,-0.6835 -0.43087,-0.2971 -0.69334,-0.4953 -0.78249,-0.572 -0.51258,-0.4457 -0.52992,-0.9434 -0.0496,-1.4982 0.40115,-0.4531 0.79487,-0.5125 1.18612,-0.1727 0.0793,0.06 0.13613,0.1412 0.19561,0.2377 0.052,0.1022 0.10159,0.169 0.14858,0.2006 0.13613,0.1244 0.40362,-0.043 0.80972,-0.5003 l 1.74079,-2.0082 c 0.40858,-0.4656 0.54478,-0.7627 0.40115,-0.889 -0.0321,-0.028 -0.104,-0.069 -0.22286,-0.1263 -0.12128,-0.045 -0.21048,-0.095 -0.25752,-0.1411 -0.39372,-0.3442 -0.39868,-0.7403 0,-1.1934 0.21543,-0.2428 0.45315,-0.3964 0.72552,-0.4285 0.26744,-0.046 0.50269,0.02 0.70326,0.203 0.0817,0.074 0.18572,0.1838 0.30458,0.3443 0.11384,0.1653 0.2501,0.302 0.37639,0.4134 0.10159,0.089 0.26,0.2006 0.47295,0.3319 0.22039,0.1319 0.37392,0.2353 0.46306,0.3144 0.25505,0.2229 0.27238,0.4632 0.0496,0.7182" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path387"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 246.05059,39.387602 c -0.27733,-0.2998 -0.416,-0.6538 -0.40362,-1.0698 0.009,-0.4136 0.15359,-0.7651 0.45068,-1.0474 0.29962,-0.2823 0.6562,-0.4285 1.06478,-0.416 0.40857,0.019 0.76268,0.1616 1.04497,0.4654 0.29219,0.2997 0.42838,0.6489 0.42344,1.0649 -0.0149,0.406 -0.16585,0.7577 -0.46554,1.0448 -0.30458,0.2898 -0.65868,0.4261 -1.0722,0.4187 -0.40364,0 -0.75773,-0.1635 -1.04251,-0.4606 m 0.19564,1.0994 c 0.208,0.2203 0.16101,0.4803 -0.14616,0.7774 l -3.55588,3.4098 c -0.40608,0.3815 -0.5398,0.6463 -0.38876,0.7975 0.0321,0.032 0.0966,0.074 0.20058,0.1263 0.11384,0.052 0.19561,0.1095 0.24761,0.1615 0.31944,0.3343 0.26744,0.6885 -0.15358,1.0995 -0.54973,0.5324 -1.05737,0.5646 -1.49813,0.095 -0.0767,-0.074 -0.26743,-0.3144 -0.58191,-0.7081 -0.1833,-0.2478 -0.416,-0.5102 -0.69087,-0.7975 -0.13371,-0.1412 -0.34667,-0.3293 -0.63639,-0.5819 -0.29962,-0.2427 -0.51505,-0.4383 -0.64383,-0.5696 -0.20304,-0.208 -0.29466,-0.4605 -0.27486,-0.7328 0.0199,-0.27 0.14356,-0.52 0.37392,-0.738 0.44819,-0.4333 0.85677,-0.4606 1.21335,-0.084 l 0.22286,0.3839 c 0.0199,0.037 0.0422,0.074 0.057,0.091 0.13873,0.1467 0.4259,0.018 0.87409,-0.4185 l 1.91909,-1.8399 c 0.44572,-0.4234 0.6042,-0.7057 0.48038,-0.8468 -0.0247,-0.019 -0.11886,-0.065 -0.27237,-0.143 -0.0867,-0.061 -0.16102,-0.1189 -0.20307,-0.169 -0.35904,-0.3789 -0.3219,-0.7776 0.11886,-1.1961 0.23525,-0.2302 0.49525,-0.3467 0.77259,-0.3541 0.26992,0 0.51506,0.1021 0.72307,0.3194 0.0891,0.087 0.19561,0.2255 0.3318,0.4112 0.22782,0.3144 0.42344,0.5596 0.57697,0.7206 0.13371,0.1356 0.312,0.2971 0.54476,0.4802 0.23772,0.1783 0.36154,0.2873 0.38878,0.3072" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path391"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 250.44392,44.356302 c -0.26247,-0.3169 -0.38133,-0.6835 -0.33923,-1.0995 0.0321,-0.4134 0.21543,-0.7453 0.53486,-1.0103 0.32438,-0.2624 0.68591,-0.3714 1.09696,-0.3293 0.41601,0.045 0.74783,0.2229 1.01279,0.5423 0.26495,0.3219 0.37887,0.6933 0.33676,1.0995 -0.0347,0.4061 -0.22039,0.7378 -0.54972,1.0004 -0.30705,0.26 -0.66362,0.3763 -1.07716,0.3343 -0.41105,-0.037 -0.75526,-0.213 -1.01526,-0.5374 m -9.23137,4.6975 c -0.11886,0.095 -0.25754,0.1541 -0.40364,0.1764 0.0297,0.076 0.0916,0.1634 0.15099,0.2478 0.24265,0.2847 0.53733,0.3788 0.87658,0.2847 0.35162,-0.091 0.84438,-0.411 1.49317,-0.9435 l 3.76386,-3.0977 c 0.48782,-0.3938 0.66115,-0.671 0.53982,-0.8222 -0.0446,-0.046 -0.1313,-0.1207 -0.25257,-0.203 -0.12388,-0.087 -0.19811,-0.156 -0.24019,-0.1982 -0.29468,-0.3565 -0.20058,-0.7354 0.26494,-1.1265 0.56954,-0.4606 1.05736,-0.4457 1.46841,0.05 0.0966,0.1282 0.23276,0.3221 0.40611,0.5919 0.15842,0.2674 0.28972,0.4582 0.39866,0.5893 0.10159,0.1263 0.27735,0.3021 0.51754,0.5274 0.23772,0.2255 0.364,0.3542 0.39125,0.3789 0.19066,0.2329 0.12127,0.4879 -0.20553,0.7603 l -5.78695,4.7618 c -0.47048,0.3813 -0.87659,0.6463 -1.20592,0.7824 -0.33429,0.1356 -0.73297,0.1839 -1.17869,0.156 -0.97316,-0.054 -1.83489,-0.5348 -2.57776,-1.4337 -0.51258,-0.624 -0.80477,-1.243 -0.87411,-1.8498 -0.0693,-0.6091 0.099,-1.0747 0.51258,-1.4188 0.29467,-0.2452 0.63639,-0.3417 1.00783,-0.2972 0.38133,0.047 0.69087,0.2229 0.95087,0.5325 0.2179,0.2648 0.3219,0.5447 0.31696,0.8368 -0.002,0.2947 -0.11886,0.5325 -0.33429,0.7158" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path395"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 251.65877,51.290702 c -0.0544,0.037 -0.0867,0.082 -0.104,0.1282 -0.0199,0.058 0.0247,0.1634 0.13372,0.3269 l 1.03258,1.5106 c 0.0892,0.1281 0.16102,0.208 0.20801,0.2178 0.0594,0.019 0.1313,-0.019 0.208,-0.067 0.23276,-0.1616 0.36401,-0.4012 0.40115,-0.728 0.0347,-0.3245 -0.047,-0.6291 -0.23029,-0.9088 -0.24764,-0.3591 -0.58687,-0.5547 -1.01773,-0.5918 -0.27735,-0.028 -0.48535,0.018 -0.63144,0.1114 m 2.24594,4.7668 c -0.38134,0.255 -0.66612,0.3763 -0.8543,0.364 -0.19068,0 -0.38134,-0.1486 -0.57201,-0.426 l -2.24594,-3.3082 c -0.10641,-0.1616 -0.19563,-0.2526 -0.25257,-0.265 -0.057,-0.03 -0.15099,0.018 -0.28229,0.1021 -0.3764,0.2576 -0.61411,0.5967 -0.70573,1.0153 -0.0867,0.411 -0.006,0.8072 0.25258,1.1738 0.25008,0.3837 0.72305,0.624 1.41145,0.7402 0.47543,0.082 0.82705,0.2701 1.04248,0.5969 0.18572,0.2723 0.26001,0.5423 0.22287,0.8146 -0.0446,0.2748 -0.18331,0.4854 -0.41354,0.6489 -0.52991,0.3566 -1.16878,0.3714 -1.92154,0.046 -0.75773,-0.3269 -1.41145,-0.8989 -1.9711,-1.721 -0.73791,-1.0772 -0.99295,-2.1493 -0.78001,-3.2315 0.22286,-1.087 0.86669,-2.0007 1.94881,-2.7386 1.09202,-0.738 2.19393,-1.0227 3.29585,-0.842 1.10687,0.1801 2.0107,0.7826 2.709,1.8152 0.65125,0.9532 0.8964,1.9091 0.73544,2.855 -0.16102,0.941 -0.70077,1.7285 -1.61945,2.3599" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path399"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 259.4693,65.024902 c 0.14616,-0.067 0.31447,-0.097 0.50515,-0.059 0.057,-0.3046 0.0223,-0.5943 -0.11143,-0.8716 -0.20058,-0.4383 -0.54726,-0.7107 -1.03012,-0.8123 -0.49277,-0.1096 -1.04249,-0.019 -1.63678,0.2576 -0.62401,0.2897 -1.06479,0.6635 -1.30498,1.1267 -0.24268,0.458 -0.24762,0.9286 -0.0297,1.4065 0.22039,0.4852 0.6463,0.7205 1.27527,0.7107 0.39372,-0.019 0.65372,0 0.79734,0.067 0.1807,0.083 0.33925,0.2722 0.47543,0.5694 0.15842,0.3393 0.18071,0.6587 0.0743,0.9683 -0.104,0.2996 -0.31696,0.52 -0.63144,0.6686 -0.67848,0.307 -1.41145,0.255 -2.20385,-0.169 -0.8023,-0.4235 -1.41392,-1.0971 -1.83489,-2.0058 -0.54476,-1.1737 -0.60915,-2.2707 -0.21294,-3.2959 0.39372,-1.0276 1.19353,-1.82 2.40441,-2.382 1.22079,-0.5598 2.35242,-0.6513 3.39491,-0.27 1.0425,0.3838 1.84727,1.1837 2.40195,2.3896 0.40609,0.8742 0.53487,1.6887 0.3863,2.4464 -0.14858,0.7578 -0.54479,1.2902 -1.1688,1.5874 -0.40115,0.1801 -0.78001,0.1981 -1.14153,0.058 -0.35657,-0.1467 -0.63886,-0.4234 -0.82458,-0.8296 -0.15359,-0.3393 -0.19564,-0.6463 -0.12127,-0.936 0.0719,-0.2921 0.25753,-0.4927 0.53735,-0.624" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path403"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 267.01982,71.110302 -2.85758,0.9236 c 0.5324,0.3218 0.91373,0.6067 1.14402,0.8691 0.22039,0.255 0.40611,0.6068 0.55715,1.0599 0.31201,0.9583 0.22533,1.7458 -0.24515,2.3425 -0.3219,0.3987 -0.92611,0.7453 -1.8126,1.0302 l -2.69414,0.8691 c -0.52248,0.169 -0.7503,0.3566 -0.68095,0.567 0.0273,0.08 0.0719,0.1504 0.1287,0.2006 0.0594,0.05 0.10159,0.1281 0.14115,0.2253 0.14355,0.4605 -0.052,0.78 -0.58687,0.9583 -0.74534,0.2377 -1.21335,0.05 -1.41392,-0.567 -0.0544,-0.1709 -0.11385,-0.4383 -0.18572,-0.7973 -0.0719,-0.3566 -0.1313,-0.6216 -0.19068,-0.7999 -0.052,-0.1616 -0.14615,-0.4036 -0.29961,-0.7182 -0.14115,-0.3094 -0.25011,-0.5471 -0.30458,-0.718 -0.0841,-0.2551 -0.0644,-0.4929 0.0669,-0.7131 0.12127,-0.2255 0.32686,-0.3789 0.61905,-0.4656 0.52991,-0.1764 0.87412,-0.072 1.02763,0.3096 0.0743,0.1727 0.15099,0.26 0.2501,0.2797 0.0942,0.018 0.24268,-0.019 0.4383,-0.08 l 2.39451,-0.7677 c 0.85925,-0.2773 1.18612,-0.7453 0.97315,-1.394 -0.28476,-0.8891 -1.04991,-1.1392 -2.2806,-0.7355 l -1.84975,0.5893 c -0.21294,0.076 -0.34915,0.1393 -0.38629,0.203 -0.0446,0.072 -0.0446,0.213 -0.013,0.426 0.0496,0.3343 -0.15359,0.5843 -0.62154,0.7355 -0.6884,0.2154 -1.11926,0.043 -1.30992,-0.5301 -0.0396,-0.1207 -0.0867,-0.3539 -0.14616,-0.6882 -0.0669,-0.3393 -0.14114,-0.6415 -0.22782,-0.9138 -0.0743,-0.2154 -0.16101,-0.4433 -0.27486,-0.686 -0.1833,-0.4012 -0.29466,-0.6537 -0.33676,-0.7676 -0.0867,-0.2847 -0.0669,-0.5447 0.0669,-0.78 0.13613,-0.2401 0.35657,-0.4061 0.66115,-0.5076 0.5943,-0.1907 0.97316,-0.028 1.13659,0.4803 0.0199,0.059 0.0321,0.156 0.0273,0.2799 -0.002,0.1244 0.006,0.2154 0.0247,0.2749 0.052,0.1782 0.37639,0.169 0.9583,-0.021 l 5.19266,-1.6738 c 0.58439,-0.1882 0.8444,-0.3665 0.78744,-0.5474 -0.0199,-0.072 -0.0743,-0.1578 -0.14356,-0.2574 -0.047,-0.061 -0.0793,-0.1392 -0.11143,-0.2427 -0.16585,-0.5027 0.0422,-0.8444 0.60915,-1.0276 0.31448,-0.1021 0.5943,-0.096 0.83944,0.021 0.25258,0.1133 0.42344,0.317 0.51009,0.5993 0.0422,0.1318 0.0892,0.3343 0.14858,0.6115 0.0496,0.2626 0.099,0.4632 0.14616,0.6044 0.099,0.3218 0.21296,0.5991 0.31943,0.8245 0.104,0.2179 0.17588,0.3938 0.21047,0.5201 0.0942,0.2772 -0.0446,0.4828 -0.40608,0.5943" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path407"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 266.18112,83.743902 c -0.0892,-0.4778 -0.36401,-0.8097 -0.83202,-1.0053 -0.4581,-0.2006 -1.0524,-0.2327 -1.77051,-0.095 -0.72553,0.1356 -1.26782,0.3789 -1.62193,0.7306 -0.35904,0.3516 -0.48286,0.77 -0.39619,1.2653 0.19562,0.9979 1.05735,1.3544 2.59756,1.0673 1.54269,-0.2923 2.2187,-0.9484 2.02309,-1.9637 m -6.59668,1.3 c -0.2501,-1.3298 -0.0618,-2.4266 0.55219,-3.2933 0.60916,-0.8618 1.60213,-1.4288 2.95662,-1.6839 1.35202,-0.25 2.47871,-0.097 3.3652,0.4828 0.89144,0.5795 1.46345,1.5181 1.70613,2.8181 0.24266,1.2727 0.0544,2.3523 -0.55715,3.2265 -0.61412,0.879 -1.57242,1.4387 -2.87987,1.6863 -1.37183,0.255 -2.51336,0.104 -3.41719,-0.463 -0.9063,-0.5672 -1.48327,-1.4908 -1.72593,-2.7735" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path411"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 266.65977,94.285202 c 0.16584,-0.018 0.33429,0.032 0.50515,0.1356 0.15841,-0.2674 0.22533,-0.5497 0.20304,-0.8543 -0.0371,-0.478 -0.26,-0.8593 -0.68095,-1.1318 -0.42096,-0.2674 -0.95336,-0.3812 -1.61945,-0.3268 -0.68344,0.044 -1.2208,0.2403 -1.60709,0.5868 -0.39123,0.3468 -0.56952,0.7801 -0.53238,1.3001 0.0396,0.5374 0.35409,0.9113 0.95335,1.1217 0.35904,0.1263 0.59676,0.2403 0.70819,0.3467 0.14115,0.1412 0.22039,0.3715 0.24021,0.7007 0.0247,0.3691 -0.057,0.6786 -0.26496,0.9286 -0.20801,0.2403 -0.4903,0.3765 -0.83698,0.4012 -0.73791,0.05 -1.41145,-0.26 -2.00574,-0.9409 -0.59677,-0.681 -0.93353,-1.5204 -1.00535,-2.5233 -0.0966,-1.2828 0.22782,-2.335 0.96326,-3.1572 0.73791,-0.8196 1.7705,-1.2727 3.09777,-1.3669 1.33716,-0.098 2.43165,0.213 3.26862,0.9384 0.84191,0.7307 1.30745,1.7582 1.40896,3.0856 0.0594,0.9557 -0.10901,1.7654 -0.51258,2.4265 -0.40608,0.6612 -0.9583,1.0103 -1.65659,1.0674 -0.43334,0.024 -0.79734,-0.095 -1.0821,-0.3542 -0.28478,-0.2648 -0.45068,-0.6166 -0.4804,-1.0647 -0.0273,-0.3739 0.0496,-0.6785 0.22039,-0.9212 0.17086,-0.2451 0.41352,-0.3738 0.71563,-0.3987" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path415"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 267.55888,102.7502 c 0.0149,-0.4828 -0.17829,-0.8766 -0.58687,-1.1737 -0.40857,-0.2922 -0.97563,-0.463 -1.7086,-0.4951 -0.74286,-0.03 -1.32477,0.089 -1.75564,0.3515 -0.42343,0.26 -0.64876,0.6439 -0.67601,1.1491 -0.0422,1.0201 0.72554,1.5624 2.29794,1.6293 1.57241,0.067 2.37718,-0.4235 2.42918,-1.4611 m -6.74029,-0.2228 c 0.0618,-1.3545 0.49029,-2.3821 1.28269,-3.085398 0.79487,-0.7057 1.8844,-1.0326 3.27356,-0.9707 1.37431,0.054 2.43415,0.473 3.17206,1.2358 0.73544,0.765098 1.07716,1.809998 1.02021,3.129798 -0.052,1.2951 -0.47792,2.3054 -1.27279,3.0161 -0.79734,0.7206 -1.86707,1.045 -3.19928,0.9904 -1.38916,-0.061 -2.46632,-0.468 -3.22654,-1.2305 -0.75276,-0.7628 -1.10191,-1.7855 -1.04991,-3.0855" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path419"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 271.22717,112.1993 c -0.0422,0.2972 -0.26495,0.421 -0.6661,0.364 l -7.67632,-1.0697 c -0.5423,-0.074 -0.83449,0 -0.8543,0.2104 -0.0167,0.089 -0.006,0.1653 0.0199,0.2377 0.0396,0.074 0.0446,0.1616 0.0273,0.2626 -0.0644,0.4853 -0.38135,0.6835 -0.96326,0.5992 -0.75277,-0.104 -1.09202,-0.4779 -0.99791,-1.1316 0,-0.019 0.0941,-0.416 0.26494,-1.2233 0.0618,-0.2426 0.104,-0.5026 0.14115,-0.7825 0.0371,-0.2377 0.0544,-0.4977 0.0544,-0.7776 0.0167,-0.4579 0.0297,-0.7402 0.0496,-0.8665 0.0422,-0.2923 0.16844,-0.5126 0.39621,-0.6686 0.23029,-0.1541 0.50515,-0.213 0.82952,-0.1709 0.60173,0.084 0.87412,0.3912 0.8023,0.9236 -0.0149,0.067 -0.0396,0.1542 -0.104,0.255 -0.0496,0.1096 -0.0841,0.1982 -0.0966,0.2674 -0.0247,0.1783 0.26496,0.312 0.87411,0.3938 l 5.40066,0.7627 c 0.60668,0.082 0.92611,0.028 0.95087,-0.1467 0.006,-0.082 0,-0.1839 -0.0247,-0.307 -0.013,-0.069 -0.013,-0.1579 0.002,-0.2624 0.0793,-0.5152 0.40858,-0.7405 0.99544,-0.6513 0.33429,0.039 0.5844,0.1653 0.75526,0.3812 0.16343,0.2131 0.22533,0.4731 0.18819,0.7875 -0.0149,0.082 -0.057,0.2674 -0.12629,0.5449 -0.0916,0.359 -0.14858,0.6288 -0.17588,0.822 -0.0347,0.2427 -0.0395,0.4631 -0.0297,0.6489 -0.006,0.2574 -0.0167,0.4555 -0.0371,0.5967" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path423"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 261.99802,118.7405 0.34915,0.08 c -0.0321,-0.08 -0.047,-0.577 -0.0669,-1.4907 -0.006,-0.6166 -0.16101,-0.9557 -0.47049,-1.03 -0.48781,-0.1189 -0.8023,0.1058 -0.93602,0.6734 -0.23029,0.941 0.15099,1.5303 1.12422,1.768 m -3.97435,1.5006 c 0.2179,-0.8715 0.70324,-1.3717 1.47582,-1.503 -0.52,-0.9137 -0.65372,-1.877 -0.40609,-2.8972 0.19809,-0.8344 0.57695,-1.456 1.13906,-1.8447 0.56458,-0.3963 1.21335,-0.5027 1.94385,-0.3194 1.1143,0.2674 1.72593,0.9211 1.81507,1.9686 0.0371,0.4431 0.0396,0.9557 0.002,1.5178 -0.0544,0.7851 -0.0297,1.3348 0.0693,1.6468 0.099,0.307 0.31448,0.5051 0.65373,0.5843 0.24265,0.065 0.4779,0 0.69333,-0.1653 0.21544,-0.1616 0.36154,-0.4012 0.43583,-0.7108 0.0793,-0.3491 0.0167,-0.5545 -0.2105,-0.6041 -0.0719,-0.019 -0.14857,-0.043 -0.22533,-0.058 l -0.0618,-0.019 c -0.29715,-0.069 -0.5225,-0.2549 -0.66115,-0.5497 -0.13873,-0.2995 -0.16585,-0.6264 -0.0767,-0.9978 0.0966,-0.4211 0.30953,-0.7453 0.63143,-0.9485 0.3244,-0.2178 0.67107,-0.2773 1.05488,-0.1857 0.57201,0.1393 0.95336,0.5423 1.13165,1.2357 0.1833,0.6785 0.15359,1.5575 -0.10642,2.6149 -0.28229,1.1489 -0.66362,1.966 -1.14649,2.4441 -0.52496,0.5126 -1.31488,0.6463 -2.35242,0.3937 l -3.29834,-0.7999 c -0.33429,-0.082 -0.52495,-0.03 -0.56705,0.1337 -0.0247,0.082 -0.0371,0.1635 -0.057,0.2428 -0.013,0.028 -0.0167,0.061 -0.0273,0.1058 -0.057,0.2452 -0.19314,0.4285 -0.39868,0.5572 -0.21047,0.1337 -0.43829,0.1653 -0.67601,0.1096 -0.34667,-0.084 -0.58686,-0.3072 -0.73048,-0.6761 -0.14114,-0.3714 -0.156,-0.7948 -0.0446,-1.2777" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path427"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 262.21518,128.3785 c 0.14115,-0.3813 0.0793,-0.7552 -0.17829,-1.1316 -0.2699,-0.3715 -0.70076,-0.6909 -1.30002,-0.9633 0,0 -0.0693,-0.028 -0.20304,-0.072 -0.61907,-0.2353 -1.15888,-0.2997 -1.6046,-0.1981 -0.45068,0.1021 -0.74783,0.3566 -0.9063,0.7701 -0.17587,0.4432 -0.11644,0.879 0.16845,1.3149 0.28229,0.4259 0.74039,0.7602 1.38422,1.0077 0.62152,0.2353 1.17124,0.2849 1.6566,0.156 0.4779,-0.1355 0.80724,-0.4308 0.98306,-0.884 m 2.13946,0.1958 c -0.30458,0.775 -0.87163,1.3743 -1.72099,1.8025 l 1.09451,0.416 c 0.36894,0.1412 0.60172,0.082 0.69581,-0.1727 0.0199,-0.065 0.0618,-0.1857 0.10901,-0.3738 0.0149,-0.1542 0.047,-0.2923 0.0942,-0.4235 0.0743,-0.1931 0.22037,-0.3318 0.42838,-0.3963 0.21792,-0.067 0.44572,-0.061 0.69335,0.032 0.65124,0.25 0.84439,0.7156 0.58438,1.4139 -0.0891,0.2278 -0.15842,0.3838 -0.20551,0.4852 -0.18821,0.3938 -0.32193,0.6638 -0.37393,0.8073 -0.0544,0.1208 -0.11644,0.3269 -0.1833,0.5968 -0.0719,0.2626 -0.13613,0.4557 -0.18572,0.5746 -0.0891,0.26 -0.22039,0.4134 -0.37392,0.4654 -0.156,0.05 -0.39123,0.018 -0.7082,-0.1096 l -7.00029,-2.6595 c -0.5225,-0.2031 -0.81965,-0.2031 -0.8964,-0.019 -0.0199,0.059 -0.0297,0.1485 -0.0273,0.2549 0.007,0.067 -0.013,0.156 -0.0446,0.2576 -0.17327,0.4383 -0.51752,0.5596 -1.03258,0.359 -0.31695,-0.1188 -0.54724,-0.2971 -0.68591,-0.5176 -0.14115,-0.2377 -0.16102,-0.4778 -0.0669,-0.7328 l 0.0347,-0.087 0.29715,-0.5076 c 0.0644,-0.1114 0.14355,-0.2823 0.2278,-0.5101 0.10158,-0.2624 0.16844,-0.4879 0.22039,-0.6636 0.0618,-0.27 0.099,-0.4136 0.104,-0.4335 0.12629,-0.312 0.36896,-0.4059 0.7404,-0.2648 l 0.56458,0.2179 c -0.70079,-0.8742 -0.85183,-1.8424 -0.44821,-2.9097 0.36153,-0.936 1.04001,-1.5624 2.04042,-1.8768 1.0004,-0.312 2.08993,-0.2428 3.26366,0.2005 1.18859,0.4532 2.04289,1.1218 2.54804,1.9984 0.50764,0.879 0.57697,1.7977 0.21297,2.7683" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path431"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 257.67824,137.0451 c -0.052,-0.024 -0.11143,-0.043 -0.16343,-0.032 -0.052,0 -0.12128,0.097 -0.22286,0.2724 l -0.85679,1.6219 c -0.0719,0.143 -0.10159,0.2451 -0.0891,0.2923 0.0167,0.058 0.0693,0.1021 0.15601,0.1467 0.25506,0.1319 0.53486,0.1393 0.83944,0.022 0.30953,-0.1207 0.53982,-0.3293 0.6983,-0.6363 0.208,-0.3788 0.22286,-0.7752 0.0421,-1.1787 -0.10641,-0.26 -0.24514,-0.4285 -0.40362,-0.5076 m -3.15719,4.2195 c -0.40858,-0.2106 -0.65621,-0.4086 -0.73544,-0.5746 -0.0817,-0.1727 -0.0422,-0.411 0.11645,-0.7105 l 1.86709,-3.5287 c 0.0915,-0.1838 0.13371,-0.2923 0.12387,-0.3541 -0.0167,-0.065 -0.0867,-0.1208 -0.2179,-0.1932 -0.40858,-0.2253 -0.81469,-0.2724 -1.22078,-0.1486 -0.40115,0.1133 -0.71068,0.3715 -0.92611,0.7702 -0.21297,0.4036 -0.21297,0.936 0.009,1.5996 0.15842,0.4507 0.14356,0.8493 -0.0422,1.1936 -0.15359,0.2921 -0.36153,0.4877 -0.61907,0.572 -0.26,0.095 -0.51009,0.074 -0.76515,-0.05 -0.55715,-0.3046 -0.86916,-0.8668 -0.93602,-1.6813 -0.0693,-0.8222 0.13372,-1.6741 0.59679,-2.5432 0.60666,-1.1515 1.43867,-1.8869 2.49851,-2.2064 1.05983,-0.3144 2.16422,-0.1727 3.32805,0.4409 1.1663,0.624 1.9265,1.4585 2.29051,2.5208 0.35906,1.0599 0.2501,2.1394 -0.33676,3.2439 -0.5423,1.0177 -1.26784,1.6837 -2.17908,1.9859 -0.91869,0.2995 -1.87203,0.1907 -2.85262,-0.3367" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path435"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 109.67074,140.4781 c 0.20057,0.3144 0.58193,0.2897 1.15641,-0.069 l 3.98673,-2.5183 c 0.61905,-0.3913 0.78248,-0.8148 0.49772,-1.2679 -0.28724,-0.4481 -0.58935,-0.5795 -0.90136,-0.3765 -0.099,0.058 -0.22286,0.156 -0.39866,0.312 -0.16343,0.1505 -0.2922,0.2626 -0.38878,0.3221 -0.82209,0.515 -1.45602,0.4333 -1.89182,-0.2626 -0.20058,-0.3269 -0.2625,-0.6413 -0.16845,-0.9632 0.0916,-0.3146 0.31694,-0.5844 0.66609,-0.8049 0.11645,-0.076 0.34915,-0.1881 0.68344,-0.3539 0.2625,-0.1282 0.49526,-0.2502 0.69583,-0.3789 0.11143,-0.067 0.32686,-0.2303 0.63887,-0.4879 0.21296,-0.1708 0.39372,-0.3021 0.53239,-0.3913 0.41105,-0.2526 0.74287,-0.1801 1.00039,0.2279 0.13613,0.2178 0.29467,0.5001 0.468,0.8344 0.40611,0.785 1.02269,1.8548 1.86956,3.1869 0.8543,1.3472 1.55013,2.3748 2.085,3.0731 0.2278,0.3096 0.416,0.5622 0.54229,0.7676 0.26248,0.4234 0.19562,0.7603 -0.21296,1.0153 -0.13613,0.087 -0.36154,0.1981 -0.65373,0.3441 -0.29218,0.1319 -0.50268,0.2502 -0.63886,0.3369 -0.15099,0.097 -0.36648,0.2476 -0.64877,0.4606 -0.35906,0.2823 -0.56954,0.4431 -0.61907,0.4802 -0.35162,0.2181 -0.69581,0.3022 -1.01773,0.2428 -0.32437,-0.065 -0.58438,-0.2526 -0.78495,-0.567 -0.43087,-0.6909 -0.26001,-1.2902 0.5398,-1.7929 0.10902,-0.069 0.26497,-0.1467 0.46554,-0.2402 0.20553,-0.087 0.35411,-0.1653 0.44572,-0.2178 0.33429,-0.2154 0.3764,-0.52 0.11645,-0.9312 -0.16845,-0.2574 -0.35658,-0.4036 -0.56705,-0.4283 -0.20554,-0.02 -0.4804,0.074 -0.82459,0.2847 l -3.98673,2.5184 c -0.56458,0.359 -0.7602,0.6933 -0.56211,1.0127 0.0693,0.1021 0.17828,0.2477 0.32935,0.421 0.16343,0.1839 0.2699,0.3194 0.33429,0.4184 0.35409,0.5524 0.24514,1.0055 -0.30458,1.3547 -0.72801,0.4605 -1.31488,0.3465 -1.7507,-0.3492 -0.16585,-0.2674 -0.34915,-0.5943 -0.54725,-0.9856 -0.29715,-0.5893 -0.56458,-1.0846 -0.81716,-1.4733 -0.26,-0.4136 -0.58191,-0.8742 -0.98306,-1.3843 -0.26496,-0.3343 -0.49029,-0.6413 -0.66115,-0.9186 -0.43333,-0.6935 -0.32439,-1.2506 0.35411,-1.674 0.61162,-0.3837 1.08953,-0.2972 1.44859,0.265 0.0644,0.1021 0.13873,0.2576 0.24019,0.4778 0.0916,0.2229 0.16845,0.3839 0.23276,0.4805" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path439"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 120.28708,148.0106 c -0.29715,-0.3814 -0.70077,-0.5423 -1.20592,-0.4903 -0.50019,0.043 -1.03505,0.2922 -1.60459,0.7552 -0.58191,0.468 -0.94098,0.9336 -1.08955,1.4188 -0.14858,0.4755 -0.0645,0.9063 0.25506,1.2976 0.63391,0.8023 1.56746,0.6909 2.78823,-0.2847 1.22821,-0.993 1.5105,-1.8943 0.85677,-2.6966 m -5.19512,4.2814 c -0.8543,-1.0573 -1.21335,-2.1098 -1.08459,-3.1697 0.13613,-1.0498 0.7404,-2.0105 1.82499,-2.8847 1.0722,-0.8617 2.13697,-1.2579 3.19184,-1.1687 1.06231,0.087 2.00081,0.6412 2.83776,1.6788 0.81716,1.0103 1.15394,2.0454 1.03259,3.1052 -0.12127,1.0573 -0.70572,2.0058 -1.74574,2.8501 -1.08459,0.8765 -2.16918,1.2827 -3.24138,1.2134 -1.06477,-0.069 -2.00328,-0.6165 -2.81547,-1.6244" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path443"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 126.86025,153.4182 -0.55222,0.5669 c 1.28766,-0.117 2.31282,0.1932 3.07054,0.9411 0.81467,0.7924 1.08459,1.659 0.82706,2.595 -0.12871,0.4903 -0.52248,1.0649 -1.17869,1.7409 l -1.72346,1.7532 c -0.38133,0.3961 -0.50515,0.676 -0.34419,0.8246 0.0371,0.044 0.11644,0.082 0.21543,0.1244 0.0719,0.019 0.13372,0.067 0.21543,0.1467 0.33925,0.3343 0.31201,0.7033 -0.0916,1.1167 -0.54476,0.5524 -1.04248,0.5969 -1.51298,0.1319 -0.11886,-0.1207 -0.29466,-0.3194 -0.51009,-0.5967 -0.22286,-0.2725 -0.39621,-0.473 -0.51507,-0.5943 -0.20057,-0.1907 -0.42343,-0.3789 -0.67105,-0.5646 -0.24515,-0.1857 -0.44325,-0.3369 -0.5844,-0.4754 -0.468,-0.4532 -0.46304,-0.9188 0.009,-1.3942 0.40611,-0.4136 0.78001,-0.4704 1.12422,-0.1839 0.22533,0.1884 0.43086,0.1958 0.60666,0.019 l 1.6046,-1.6367 c 0.44325,-0.4556 0.69336,-0.8246 0.75526,-1.1268 0.0719,-0.2945 -0.047,-0.5868 -0.32191,-0.8543 -0.31943,-0.3168 -0.69335,-0.4654 -1.1143,-0.4481 -0.42096,0.019 -0.79487,0.1907 -1.12422,0.5274 l -1.19106,1.2133 c -0.34419,0.3542 -0.54476,0.5821 -0.58191,0.6835 -0.0446,0.1114 0,0.2477 0.1313,0.4111 0.23276,0.3169 0.16845,0.6586 -0.20306,1.0449 -0.48533,0.4903 -0.93601,0.5375 -1.34706,0.1337 -0.11886,-0.1188 -0.25258,-0.2797 -0.40115,-0.463 -0.24268,-0.3218 -0.43829,-0.5521 -0.57697,-0.6933 -0.14356,-0.1355 -0.37143,-0.322 -0.67848,-0.5597 -0.30954,-0.2426 -0.52991,-0.4259 -0.66858,-0.572 -0.49525,-0.4755 -0.48534,-0.9806 0.0273,-1.5055 0.43086,-0.4358 0.83448,-0.468 1.20345,-0.1021 0.0618,0.059 0.12127,0.1411 0.17828,0.2476 0.052,0.104 0.0867,0.1764 0.13131,0.2106 0.1313,0.1281 0.41104,-0.024 0.84191,-0.4582 l 1.8547,-1.8967 c 0.43334,-0.4483 0.59183,-0.7355 0.45562,-0.8668 -0.0273,-0.03 -0.10641,-0.076 -0.22286,-0.1393 -0.11143,-0.058 -0.19562,-0.1095 -0.23772,-0.1578 -0.37143,-0.369 -0.35657,-0.7602 0.0693,-1.1936 0.22782,-0.2351 0.47544,-0.3614 0.7503,-0.3813 0.27239,-0.02 0.5225,0.065 0.72059,0.2749 0.0719,0.054 0.1833,0.213 0.34914,0.4481 0.0867,0.1411 0.18071,0.2526 0.26744,0.3319 0.0942,0.097 0.27239,0.2401 0.52992,0.4258 0.25505,0.1958 0.39866,0.2998 0.41848,0.3245 0.2179,0.1981 0.21047,0.4184 -0.006,0.6314" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path447"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 133.98757,162.444 -1.24059,3.4865 2.92938,-2.0254 c 0.23029,-0.1505 0.37639,-0.2823 0.45563,-0.3889 0.0817,-0.099 0.0618,-0.2179 -0.0347,-0.3813 l -0.16344,-0.2576 c -0.1313,-0.2179 -0.0841,-0.4654 0.14115,-0.7626 0.16584,-0.218 0.36152,-0.3517 0.60172,-0.4011 0.23276,-0.046 0.44572,0 0.63887,0.1467 0.12387,0.098 0.31695,0.2674 0.55962,0.5027 0.24268,0.2378 0.4284,0.4062 0.55962,0.515 0.13874,0.099 0.3665,0.2378 0.66859,0.416 0.3021,0.1728 0.52743,0.3146 0.66115,0.4235 0.52744,0.3963 0.57944,0.8816 0.14616,1.4437 -0.156,0.203 -0.34419,0.3293 -0.57695,0.3962 -0.23029,0.059 -0.42839,0.035 -0.5943,-0.097 -0.0421,-0.024 -0.0867,-0.074 -0.15358,-0.1579 -0.0719,-0.08 -0.12388,-0.1318 -0.16102,-0.1578 -0.15842,-0.1244 -0.38135,-0.084 -0.68097,0.1058 l -0.51011,0.3269 -3.34291,2.08 c -1.03259,0.6488 -1.71603,1.0499 -2.05526,1.2157 -0.33925,0.1653 -0.75278,0.3146 -1.25545,0.4484 -1.36194,0.359 -2.553,0.1467 -3.55834,-0.6092 -0.61907,-0.4706 -1.01773,-1.0079 -1.19602,-1.6096 -0.17587,-0.5993 -0.0891,-1.1217 0.26248,-1.5873 0.24267,-0.3269 0.54476,-0.5052 0.90383,-0.562 0.35904,-0.046 0.69333,0.045 1.00534,0.2847 0.27239,0.2056 0.42839,0.4507 0.46801,0.7304 0.047,0.2873 -0.0297,0.5572 -0.21544,0.8172 -0.0767,0.091 -0.15098,0.1883 -0.22286,0.2849 0.0719,0.1318 0.16343,0.2451 0.26744,0.3168 0.23524,0.1764 0.55715,0.2032 0.97562,0.084 0.41354,-0.117 0.69336,-0.2725 0.83945,-0.4632 0.13613,-0.1783 0.31696,-0.7328 0.55221,-1.659 l 1.14649,-4.5538 c 0.0719,-0.317 0.0644,-0.5224 -0.0396,-0.5993 -0.009,0 -0.0767,-0.058 -0.19811,-0.1486 -0.009,0 -0.0199,-0.019 -0.047,-0.039 -0.0273,-0.02 -0.057,-0.039 -0.0693,-0.05 -0.44573,-0.3317 -0.47791,-0.7477 -0.10401,-1.2406 0.18331,-0.2452 0.41354,-0.3887 0.69336,-0.4407 0.27486,-0.058 0.52991,0 0.76267,0.1764 0.13371,0.1022 0.32686,0.2797 0.57943,0.515 0.24764,0.2427 0.44079,0.421 0.57697,0.525 0.16845,0.1263 0.46058,0.3195 0.87659,0.5819 0.416,0.2624 0.64382,0.4035 0.66611,0.416 0.47791,0.369 0.52744,0.8023 0.14616,1.3098 -0.2699,0.3518 -0.60668,0.4261 -1.02269,0.208 -0.20304,-0.1114 -0.35409,-0.1021 -0.45315,0.03 -0.0496,0.072 -0.11644,0.2005 -0.18819,0.4061" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path451"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 141.84341,163.3717 c 0.24762,-0.3963 0.57944,-0.6564 1.00288,-0.7752 0.416,-0.1114 0.81962,-0.052 1.19106,0.1708 0.45315,0.2799 0.71564,0.7084 0.78497,1.2754 0.0793,0.5744 -0.052,1.1291 -0.38876,1.6789 -0.6884,1.1291 -1.90671,2.0057 -3.65492,2.6199 -0.42343,0.156 -0.73793,0.1653 -0.94344,0.037 -0.34421,-0.2106 -0.39868,-0.4977 -0.16343,-0.8816 0.14114,-0.2353 0.39619,-0.4383 0.76762,-0.6067 1.03259,-0.463 1.61203,-0.8122 1.7606,-1.0573 0.0793,-0.1282 0.0371,-0.2897 -0.14114,-0.4903 -0.56954,-0.6166 -0.64134,-1.2703 -0.21544,-1.971" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path455"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 148.35267,168.3357 c 0.7503,0.3813 1.2827,0.9039 1.59717,1.5699 0.24515,-0.3911 0.61164,-0.4704 1.10441,-0.2277 0.49525,0.2425 0.66115,0.5497 0.48533,0.9063 -0.057,0.1058 -0.14356,0.2377 -0.25504,0.3614 -0.12128,0.1616 -0.20801,0.3194 -0.29219,0.473 -0.0167,0.03 -0.047,0.1189 -0.104,0.2452 -0.0669,0.1262 -0.12128,0.2377 -0.17328,0.3393 l -0.0223,0.059 c -0.25753,0.5174 -0.64135,0.6463 -1.16383,0.3911 -0.37143,-0.1857 -0.60419,-0.5248 -0.69334,-1.035 -0.11143,-0.6116 -0.41353,-1.0326 -0.89144,-1.2727 -0.56954,-0.2775 -0.95087,-0.2255 -1.14402,0.1653 -0.10159,0.2056 -0.0793,0.3961 0.0644,0.5696 0.15099,0.1764 0.58191,0.5298 1.30497,1.0623 0.58935,0.4333 0.99544,0.8023 1.23812,1.1069 0.22782,0.2945 0.38876,0.624 0.44076,1.0002 0.0693,0.4656 -0.009,0.9411 -0.24515,1.4091 -0.364,0.7428 -0.9583,1.2207 -1.77792,1.4387 -0.81716,0.2128 -1.6566,0.1096 -2.51833,-0.317 -0.86173,-0.4234 -1.50555,-1.0896 -1.93642,-1.9784 -0.23772,0.4704 -0.59676,0.5892 -1.09202,0.3391 -0.52247,-0.255 -0.68591,-0.6066 -0.46551,-1.0326 0.0396,-0.091 0.1313,-0.2426 0.25257,-0.4431 0.12127,-0.1958 0.20305,-0.3444 0.25505,-0.4433 0.0396,-0.084 0.10158,-0.2205 0.17327,-0.4012 0.0719,-0.1881 0.1287,-0.317 0.17829,-0.411 0.21047,-0.4383 0.59676,-0.5274 1.14649,-0.2526 0.26743,0.1282 0.44078,0.2675 0.54229,0.4134 0.0966,0.1468 0.16585,0.3741 0.20554,0.6787 0.0719,0.4778 0.17327,0.8368 0.32439,1.0548 0.15359,0.2129 0.42837,0.4209 0.82209,0.6166 0.71069,0.3516 1.17127,0.3046 1.38917,-0.1337 0.14857,-0.3096 -0.0273,-0.6537 -0.53734,-1.0599 l -0.76515,-0.5943 c -0.62648,-0.4927 -1.04745,-0.8766 -1.26288,-1.1663 -0.21543,-0.2921 -0.32439,-0.6413 -0.33429,-1.0376 -0.009,-0.4036 0.0867,-0.8097 0.28972,-1.2157 0.35658,-0.7306 0.90134,-1.206 1.61449,-1.4337 0.70822,-0.2106 1.45852,-0.1319 2.24596,0.255" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path459"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 162.12424,170.8208 c 1.00534,0.2897 1.76803,0.9163 2.29298,1.8746 0.007,-0.037 0.0167,-0.089 0.0496,-0.1578 0.16845,-0.5893 0.57201,-0.7849 1.19851,-0.6018 0.29962,0.087 0.50762,0.2502 0.63391,0.4829 0.13873,0.2403 0.15099,0.5078 0.0693,0.8023 -0.0446,0.1356 -0.10901,0.3319 -0.21543,0.5895 -0.17587,0.4085 -0.28725,0.7155 -0.34172,0.9063 -0.0422,0.1337 -0.0841,0.3367 -0.1313,0.6165 -0.0371,0.2773 -0.0793,0.4877 -0.11645,0.6265 -0.0942,0.3244 -0.29467,0.5547 -0.58439,0.676 -0.29466,0.1318 -0.63391,0.143 -1.01525,0.032 -0.79735,-0.2378 -1.08954,-0.6785 -0.86915,-1.3346 l 0.14356,-0.4953 c 0.11384,-0.3417 0.0594,-0.671 -0.16845,-0.9856 -0.22039,-0.3094 -0.55964,-0.5349 -1.00536,-0.6636 -1.39411,-0.416 -2.41679,0.4977 -3.08538,2.7165 -0.32686,1.1613 -0.41104,2.0503 -0.22286,2.6818 0.18331,0.6338 0.6463,1.0548 1.3867,1.2727 0.46305,0.1411 0.87162,0.1411 1.23067,0 0.35411,-0.1282 0.57201,-0.3664 0.66858,-0.7108 l 0.16343,-0.5744 c 0.0841,-0.3293 0.2724,-0.5622 0.54973,-0.6959 0.26992,-0.1337 0.58935,-0.1504 0.92611,-0.046 0.4383,0.1244 0.74287,0.369 0.91126,0.7429 0.16845,0.3714 0.18071,0.8097 0.0371,1.3098 -0.29964,0.9955 -0.92612,1.6964 -1.91661,2.0975 -0.97811,0.4012 -2.08499,0.4086 -3.33301,0.047 -1.52784,-0.4482 -2.59014,-1.2902 -3.19433,-2.5308 -0.59677,-1.2332 -0.64134,-2.6966 -0.14858,-4.3803 0.51011,-1.7384 1.30498,-2.9914 2.397,-3.759 1.08706,-0.7677 2.32022,-0.9484 3.68957,-0.5449" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path463"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 170.72566,173.6494 -0.48287,2.9591 c 0.52744,-0.3269 0.95584,-0.5299 1.2926,-0.6116 0.33678,-0.084 0.73297,-0.089 1.19355,0 1.00287,0.1634 1.66649,0.5893 1.98346,1.2902 0.21296,0.468 0.24267,1.1563 0.0891,2.0774 l -0.46058,2.7858 c -0.0817,0.5399 -0.0223,0.8246 0.19315,0.8617 0.0891,0.019 0.16844,0 0.24514,-0.022 0.0669,-0.03 0.15359,-0.035 0.26001,-0.022 0.4779,0.08 0.66611,0.4038 0.57448,0.9583 -0.1287,0.7752 -0.50762,1.1069 -1.14153,0.9931 -0.1833,-0.02 -0.45315,-0.095 -0.79983,-0.1932 -0.34915,-0.098 -0.61905,-0.169 -0.8023,-0.2005 -0.17086,-0.022 -0.43333,-0.043 -0.77505,-0.052 -0.35164,-0.019 -0.61164,-0.039 -0.78002,-0.065 -0.27239,-0.043 -0.47792,-0.1653 -0.61411,-0.3813 -0.13371,-0.2104 -0.17587,-0.468 -0.1313,-0.7652 0.0942,-0.5547 0.34668,-0.8097 0.77012,-0.7726 0.1807,0.022 0.30457,-0.018 0.36151,-0.089 0.0644,-0.082 0.10159,-0.2229 0.13613,-0.4234 l 0.40858,-2.4714 c 0.14616,-0.8914 -0.12127,-1.3966 -0.80477,-1.5104 -0.92611,-0.1486 -1.49563,0.4136 -1.70364,1.6937 l -0.31943,1.9068 c -0.0297,0.2228 -0.0273,0.3762 0.007,0.4357 0.0396,0.072 0.16584,0.1411 0.37637,0.2031 0.32935,0.1133 0.45068,0.406 0.37887,0.8915 -0.11886,0.7156 -0.47791,1.0201 -1.07221,0.9211 -0.12387,-0.02 -0.3541,-0.082 -0.68591,-0.1782 -0.31943,-0.097 -0.62649,-0.169 -0.90383,-0.2205 -0.23029,-0.035 -0.47047,-0.059 -0.73544,-0.069 -0.44076,-0.019 -0.72305,-0.032 -0.83944,-0.05 -0.29219,-0.05 -0.51258,-0.1908 -0.66611,-0.4185 -0.14356,-0.2303 -0.19066,-0.4953 -0.14356,-0.8147 0.099,-0.6216 0.41354,-0.8816 0.93602,-0.7899 0.0668,0.019 0.15358,0.039 0.26249,0.1022 0.10641,0.061 0.19066,0.095 0.25504,0.104 0.18572,0.032 0.32687,-0.26 0.42097,-0.8642 l 0.88895,-5.3882 c 0.0916,-0.5993 0.0496,-0.9137 -0.12628,-0.9509 -0.0767,0 -0.17829,0 -0.30458,0.019 -0.0669,0.019 -0.15359,0 -0.26001,-0.019 -0.52,-0.082 -0.72801,-0.416 -0.63143,-1.0153 0.0496,-0.317 0.18571,-0.5595 0.39868,-0.733 0.21296,-0.169 0.47047,-0.2277 0.75772,-0.1801 0.13873,0.018 0.34172,0.067 0.61411,0.1467 0.26001,0.076 0.45562,0.1244 0.59677,0.1467 0.33182,0.061 0.62154,0.089 0.87163,0.091 0.24763,0.019 0.43335,0.022 0.56706,0.05 0.29219,0.046 0.40115,0.2576 0.34419,0.6365" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path467"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 181.27416,178.8503 c -0.48287,-0.028 -0.87659,0.169 -1.17869,0.567 -0.29962,0.4061 -0.46552,0.9731 -0.50515,1.7112 -0.0446,0.7477 0.0618,1.3395 0.32439,1.7704 0.2501,0.4234 0.63144,0.6537 1.13412,0.681 1.0202,0.054 1.57239,-0.7057 1.6566,-2.2757 0.0817,-1.5798 -0.39621,-2.3995 -1.43127,-2.4539 m -0.30211,6.7452 c -1.35202,-0.08 -2.37469,-0.515 -3.06805,-1.3247 -0.70323,-0.7975 -1.01277,-1.8969 -0.93352,-3.2736 0.0767,-1.3768 0.49523,-2.4417 1.27277,-3.1697 0.77259,-0.728 1.8225,-1.0548 3.13738,-0.9854 1.29755,0.069 2.30042,0.5052 3.00615,1.3123 0.70573,0.8049 1.02763,1.877 0.95087,3.2044 -0.0719,1.394 -0.49772,2.4737 -1.26288,3.219 -0.77011,0.7453 -1.80764,1.0846 -3.10272,1.0177" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path471"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 191.47004,179.6981 c -0.009,-0.1653 0.0371,-0.3317 0.13371,-0.5002 -0.26,-0.1652 -0.54478,-0.2401 -0.84936,-0.2303 -0.48037,0.021 -0.85924,0.2354 -1.14649,0.6514 -0.28229,0.4134 -0.40857,0.9532 -0.38382,1.6168 0.0273,0.6935 0.20554,1.2382 0.5423,1.6418 0.33429,0.4085 0.76268,0.5942 1.28269,0.5746 0.53487,-0.019 0.91869,-0.3269 1.14649,-0.9164 0.13372,-0.3664 0.26,-0.5991 0.364,-0.7057 0.14616,-0.1393 0.38383,-0.2128 0.71316,-0.2303 0.37639,-0.019 0.6785,0.089 0.92116,0.3072 0.23524,0.2104 0.35657,0.4903 0.37886,0.8419 0.0321,0.7428 -0.30705,1.4064 -1.00534,1.981 -0.70326,0.5794 -1.55507,0.8864 -2.5629,0.9286 -1.28763,0.045 -2.32518,-0.3096 -3.12252,-1.0673 -0.79487,-0.7628 -1.21831,-1.815 -1.27031,-3.1474 -0.0544,-1.3371 0.29219,-2.4241 1.04992,-3.2487 0.75277,-0.8172 1.80021,-1.2505 3.13491,-1.3025 0.96077,-0.039 1.76306,0.156 2.41185,0.5843 0.64134,0.421 0.98553,0.9906 1.0103,1.6889 0.0167,0.4357 -0.10901,0.7949 -0.38382,1.0746 -0.27486,0.2748 -0.63144,0.4284 -1.07469,0.4383 -0.37638,0.019 -0.67601,-0.065 -0.91867,-0.2452 -0.23772,-0.1838 -0.35658,-0.4282 -0.37143,-0.7354" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path475"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 199.38579,178.0658 c -0.47544,0.076 -0.8221,0.3393 -1.03259,0.7973 -0.21294,0.4531 -0.26247,1.0474 -0.15359,1.778 0.10902,0.7305 0.33923,1.2778 0.67601,1.6492 0.34419,0.364 0.76267,0.51 1.26288,0.4357 1.00039,-0.156 1.38917,-1.0103 1.15145,-2.5703 -0.24021,-1.5476 -0.87165,-2.2459 -1.90424,-2.0899 m 1.08955,6.6487 c -1.33963,0.1955 -2.43414,-0.019 -3.28101,-0.6588 -0.83944,-0.6463 -1.37678,-1.6566 -1.58725,-3.0258 -0.20306,-1.3571 -0.013,-2.4738 0.60419,-3.348 0.6042,-0.874 1.55507,-1.4064 2.86252,-1.612 1.29012,-0.1905 2.35985,0.024 3.22158,0.6712 0.84934,0.6363 1.38174,1.6219 1.58974,2.9367 0.208,1.3768 0.0199,2.5184 -0.5844,3.4074 -0.59676,0.8814 -1.54268,1.4311 -2.82537,1.6293" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path479"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 206.55498,171.9022 c 0.29714,-0.076 0.49276,0.076 0.59429,0.473 l 1.94385,7.5104 c 0.14114,0.5323 0.31447,0.7652 0.52495,0.7082 0.0867,-0.02 0.15358,-0.058 0.208,-0.1114 0.0594,-0.05 0.13613,-0.095 0.24268,-0.1189 0.46553,-0.1189 0.77258,0.098 0.91126,0.6636 0.19561,0.7354 -0.0247,1.1886 -0.66116,1.3546 -0.0149,0 -0.42343,0.074 -1.23069,0.2178 -0.25258,0.035 -0.51258,0.091 -0.78991,0.1635 -0.23029,0.065 -0.47297,0.1411 -0.73297,0.2451 -0.42591,0.1653 -0.69583,0.2699 -0.81469,0.2972 -0.28972,0.08 -0.54229,0.035 -0.77752,-0.1133 -0.23029,-0.1412 -0.38878,-0.3839 -0.47297,-0.6983 -0.15099,-0.5895 0.0396,-0.9535 0.5522,-1.0872 0.0644,-0.022 0.156,-0.024 0.27486,-0.019 0.11886,0 0.21543,0 0.27735,-0.019 0.1807,-0.043 0.19561,-0.3688 0.0396,-0.9583 l -1.36934,-5.2842 c -0.14858,-0.5893 -0.31201,-0.8617 -0.49526,-0.8121 -0.0793,0.019 -0.16844,0.058 -0.27239,0.1337 -0.0594,0.035 -0.13613,0.069 -0.24761,0.089 -0.51258,0.1356 -0.83449,-0.084 -0.98306,-0.6611 -0.0841,-0.3295 -0.0693,-0.6092 0.0644,-0.8469 0.13613,-0.2329 0.34915,-0.3937 0.65622,-0.4706 0.0867,-0.028 0.2699,-0.058 0.55219,-0.095 0.3739,-0.058 0.65125,-0.098 0.82458,-0.1504 0.24515,-0.069 0.45068,-0.1393 0.62154,-0.2203 0.23523,-0.097 0.41848,-0.1578 0.55962,-0.1981" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path483"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 214.2979,174.1836 c -0.44325,0.169 -0.72801,0.5027 -0.8444,0.993 -0.11143,0.4927 -0.0396,1.0796 0.22039,1.768 0.25753,0.6883 0.59677,1.1836 1.0004,1.4808 0.40362,0.2921 0.84687,0.3417 1.31239,0.1615 0.95088,-0.3417 1.15394,-1.2628 0.59926,-2.7363 -0.5522,-1.4757 -1.31735,-2.0281 -2.28804,-1.6665 m 2.42422,6.2823 c -1.26039,0.4829 -2.37718,0.4877 -3.33299,0.03 -0.96079,-0.4582 -1.68384,-1.3347 -2.16918,-2.6348 -0.47792,-1.2926 -0.52001,-2.4167 -0.104,-3.3925 0.41352,-0.9806 1.24059,-1.7011 2.48118,-2.1641 1.21335,-0.4582 2.31033,-0.4582 3.2711,0 0.9682,0.4507 1.68878,1.3024 2.15432,2.5456 0.49276,1.3149 0.53733,2.4613 0.13371,3.4543 -0.4061,0.9881 -1.21334,1.7135 -2.43414,2.1692" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path487"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 221.3814,169.6237 0.37886,0.6882 c 0.26249,-1.2703 0.87165,-2.1517 1.8027,-2.6619 0.99792,-0.5398 1.90918,-0.5547 2.7288,-0.022 0.43335,0.26 0.87165,0.8121 1.31984,1.6343 l 1.1762,2.1543 c 0.25754,0.5001 0.4903,0.6909 0.6785,0.5869 0.047,-0.024 0.10902,-0.087 0.1807,-0.1802 0.0347,-0.058 0.0942,-0.104 0.19068,-0.1616 0.41601,-0.2278 0.76516,-0.082 1.04745,0.4235 0.364,0.6784 0.25504,1.1687 -0.3244,1.4857 -0.15359,0.08 -0.38629,0.1881 -0.72058,0.3144 -0.32686,0.1356 -0.56705,0.2353 -0.72058,0.3221 -0.24268,0.1281 -0.48287,0.2871 -0.73048,0.468 -0.25507,0.1838 -0.46058,0.3242 -0.6364,0.4184 -0.56705,0.3096 -1.00535,0.169 -1.32478,-0.411 -0.27486,-0.5152 -0.21792,-0.8816 0.156,-1.1342 0.25009,-0.1578 0.31695,-0.3541 0.19809,-0.572 l -1.09696,-2.0256 c -0.29963,-0.5521 -0.59429,-0.9111 -0.8543,-1.0573 -0.26743,-0.1504 -0.57201,-0.1281 -0.92115,0.059 -0.39373,0.2131 -0.64383,0.52 -0.75279,0.9286 -0.10902,0.411 -0.052,0.8222 0.17327,1.2332 l 0.81716,1.5056 c 0.23523,0.4309 0.39619,0.6808 0.48533,0.7453 0.0892,0.082 0.23276,0.082 0.42591,0 0.37886,-0.1319 0.69336,0.032 0.94097,0.5075 0.33182,0.5969 0.24019,1.0376 -0.26743,1.3199 -0.14857,0.08 -0.32686,0.1579 -0.55715,0.2452 -0.37391,0.1467 -0.65373,0.2724 -0.82954,0.3616 -0.16845,0.095 -0.41848,0.255 -0.73545,0.4728 -0.32437,0.2255 -0.572,0.3839 -0.74533,0.4754 -0.6042,0.3343 -1.07963,0.1709 -1.43621,-0.4704 -0.28725,-0.5473 -0.20553,-0.9336 0.25504,-1.1886 0.0767,-0.043 0.17086,-0.069 0.28972,-0.083 0.11385,-0.019 0.19315,-0.035 0.24515,-0.065 0.16102,-0.084 0.0966,-0.3962 -0.19562,-0.9411 l -1.26783,-2.33 c -0.29468,-0.5473 -0.52248,-0.7776 -0.6884,-0.6908 -0.0371,0.024 -0.104,0.076 -0.19809,0.1782 -0.0841,0.089 -0.16343,0.1542 -0.22039,0.1783 -0.46058,0.25 -0.83697,0.1096 -1.12173,-0.4111 -0.156,-0.2946 -0.21296,-0.5745 -0.14616,-0.8443 0.057,-0.26 0.22039,-0.468 0.47793,-0.6142 0.0767,-0.037 0.25257,-0.1058 0.52743,-0.1881 0.15842,-0.05 0.29466,-0.098 0.40362,-0.1616 0.11143,-0.054 0.29962,-0.1931 0.55468,-0.3789 0.26001,-0.1955 0.39866,-0.2971 0.42838,-0.312 0.26249,-0.1411 0.46554,-0.072 0.60915,0.1982" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path491"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 231.34674,166.0987 c 0.0396,0.058 0.0817,0.087 0.13874,0.099 0.052,0.022 0.15841,-0.028 0.31694,-0.1486 l 1.48327,-1.0822 c 0.13371,-0.097 0.20553,-0.1708 0.21296,-0.2228 0.009,-0.06 -0.013,-0.1208 -0.0743,-0.203 -0.17086,-0.2303 -0.42096,-0.3542 -0.74782,-0.3813 -0.32934,-0.022 -0.62897,0.067 -0.90135,0.2698 -0.35657,0.255 -0.53982,0.6042 -0.56211,1.0376 -0.009,0.2797 0.0372,0.4903 0.13372,0.6315 m 4.69493,-2.4194 c 0.26991,0.3715 0.40611,0.6514 0.39868,0.8445 0,0.1881 -0.13371,0.3887 -0.40858,0.5843 l -3.22901,2.3673 c -0.15841,0.1133 -0.24761,0.203 -0.26496,0.26 -0.0149,0.061 0.0167,0.156 0.10902,0.2749 0.2699,0.369 0.61658,0.5919 1.03011,0.6635 0.42095,0.074 0.81467,-0.02 1.17125,-0.2871 0.37392,-0.2674 0.60668,-0.7503 0.69087,-1.4363 0.057,-0.4829 0.2501,-0.8294 0.56458,-1.0647 0.26743,-0.1932 0.53735,-0.2773 0.80725,-0.2452 0.27734,0.03 0.49773,0.1579 0.65869,0.3913 0.36894,0.51 0.41105,1.1465 0.11384,1.9166 -0.29714,0.7626 -0.84687,1.4362 -1.65164,2.0305 -1.04744,0.7701 -2.1147,1.0623 -3.20672,0.884 -1.09698,-0.1783 -2.0305,-0.7925 -2.79319,-1.8498 -0.78497,-1.0623 -1.10191,-2.1593 -0.96573,-3.2662 0.14115,-1.1143 0.71316,-2.0378 1.72593,-2.7709 0.93354,-0.6834 1.87203,-0.9657 2.83282,-0.8394 0.94838,0.1319 1.75564,0.6489 2.41679,1.5427" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path495"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 235.24657,155.9961 c 0.23028,-0.203 0.4779,-0.1579 0.7478,0.143 l 5.19266,5.7721 c 0.364,0.411 0.6265,0.5323 0.78744,0.3911 0.0719,-0.059 0.11644,-0.1244 0.14356,-0.1931 0.0199,-0.072 0.0743,-0.1468 0.156,-0.2129 0.35409,-0.3244 0.72553,-0.2724 1.10935,0.1542 0.51258,0.5672 0.52248,1.0797 0.0371,1.5106 -0.009,0 -0.33925,0.2674 -0.99049,0.7652 -0.20057,0.1485 -0.40857,0.3242 -0.61658,0.515 -0.17587,0.156 -0.3541,0.3393 -0.54478,0.5497 -0.30209,0.3417 -0.49772,0.5571 -0.58438,0.6388 -0.22039,0.1956 -0.46554,0.2823 -0.7404,0.2576 -0.27239,-0.024 -0.51753,-0.1634 -0.73791,-0.4085 -0.41106,-0.4508 -0.41353,-0.8594 -0.0149,-1.2159 0.047,-0.043 0.1287,-0.095 0.23771,-0.1393 0.11143,-0.052 0.19066,-0.095 0.23772,-0.1412 0.13873,-0.1244 0,-0.411 -0.40858,-0.8691 l -3.64748,-4.0535 c -0.40611,-0.4531 -0.6785,-0.6166 -0.81716,-0.4929 -0.0544,0.046 -0.11886,0.1244 -0.1807,0.2377 -0.0347,0.06 -0.0916,0.1245 -0.17086,0.2032 -0.38629,0.3466 -0.79238,0.302 -1.19106,-0.1486 -0.22039,-0.2525 -0.32933,-0.5101 -0.31944,-0.7776 0.006,-0.2724 0.12128,-0.5101 0.35411,-0.7256 0.0669,-0.058 0.2179,-0.1634 0.45809,-0.3343 0.29468,-0.208 0.51754,-0.3862 0.65621,-0.5099 0.18331,-0.1635 0.3343,-0.3269 0.44573,-0.4879 0.16343,-0.1881 0.29961,-0.3319 0.40115,-0.4285" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path499"
|
||||
style="fill:#ed1d24;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.47622991"
|
||||
d="m 243.38419,155.2945 3.3652,1.5277 -1.7705,-3.0779 c -0.13873,-0.2377 -0.25257,-0.4086 -0.34915,-0.4927 -0.0891,-0.08 -0.21792,-0.08 -0.38878,0.018 l -0.27733,0.1393 c -0.21543,0.1133 -0.46305,0.043 -0.74534,-0.2054 -0.20057,-0.1857 -0.312,-0.3987 -0.34421,-0.634 -0.0247,-0.2351 0.0371,-0.4383 0.20058,-0.619 0.10902,-0.1207 0.28725,-0.2947 0.54229,-0.52 0.26744,-0.2279 0.45068,-0.3988 0.55964,-0.525 0.11385,-0.1263 0.27238,-0.3343 0.47295,-0.6215 0.20306,-0.2897 0.3665,-0.5027 0.48535,-0.6266 0.43334,-0.4903 0.91867,-0.5051 1.44611,-0.03 0.1833,0.1709 0.29468,0.3765 0.34172,0.6118 0.047,0.2401 0,0.4357 -0.14114,0.5818 -0.0273,0.037 -0.0867,0.084 -0.16585,0.1467 -0.0916,0.061 -0.14857,0.104 -0.1807,0.1412 -0.1313,0.1504 -0.10902,0.3763 0.0496,0.6909 l 0.28725,0.5322 1.79279,3.504 c 0.54972,1.0821 0.89887,1.8027 1.0425,2.1567 0.14356,0.3491 0.25009,0.7776 0.33676,1.2851 0.24268,1.3818 -0.0669,2.5481 -0.9063,3.4965 -0.52248,0.5819 -1.08954,0.9286 -1.70117,1.0549 -0.60419,0.1282 -1.13163,0 -1.56002,-0.3887 -0.30211,-0.27 -0.46801,-0.5943 -0.48287,-0.9509 -0.0223,-0.364 0.10159,-0.6908 0.36154,-0.9831 0.23029,-0.2526 0.48286,-0.3837 0.76762,-0.4086 0.28972,-0.019 0.55469,0.08 0.7924,0.2947 0.0867,0.074 0.17829,0.1616 0.26744,0.2401 0.14356,-0.065 0.25257,-0.143 0.34172,-0.2401 0.19314,-0.2154 0.24761,-0.5373 0.16343,-0.9657 -0.0841,-0.4259 -0.21543,-0.7206 -0.39372,-0.879 -0.15842,-0.1467 -0.69087,-0.3789 -1.59717,-0.6786 l -4.44732,-1.5253 c -0.312,-0.1059 -0.50515,-0.1133 -0.59925,-0.019 -0.007,0 -0.0644,0.065 -0.15842,0.1839 -0.006,0 -0.0273,0.02 -0.0496,0.046 -0.0223,0.024 -0.0422,0.043 -0.052,0.058 -0.37391,0.4184 -0.78745,0.4184 -1.24307,0 -0.23029,-0.1958 -0.35904,-0.4359 -0.38876,-0.7232 -0.0297,-0.2847 0.0544,-0.5323 0.24515,-0.7453 0.11886,-0.1263 0.29715,-0.3046 0.56458,-0.5349 0.26247,-0.2252 0.45315,-0.411 0.56458,-0.5348 0.13873,-0.1579 0.35905,-0.4333 0.65124,-0.827 0.29714,-0.3938 0.46306,-0.6018 0.48286,-0.6291 0.40115,-0.4433 0.83697,-0.4531 1.30745,-0.035 0.33429,0.2947 0.37143,0.6463 0.12127,1.04 -0.12628,0.1957 -0.13371,0.3393 -0.007,0.4531 0.0669,0.054 0.20058,0.1356 0.3962,0.2155" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 105 KiB |
BIN
static/img/partenaires/trci.jpg
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
21
static/js/all.js
Normal file
@@ -0,0 +1,21 @@
|
||||
document.currentScript.insertAdjacentHTML('afterend', Array.from({ length: 48 }, (_, i) => {
|
||||
const greens = ['rgba(25,112,97,.8)', 'rgba(34,145,120,.6)', 'rgba(16,80,65,.9)', 'rgba(45,160,130,.5)'];
|
||||
return `<div class="dm-cell" style="background:${greens[i % 4]}"></div>`;
|
||||
}).join(''));
|
||||
|
||||
/* FAQ toggle */
|
||||
function toggleFaq(btn) {
|
||||
btn.parentElement.classList.toggle('open');
|
||||
}
|
||||
|
||||
/* Scroll reveal */
|
||||
const revealEls = document.querySelectorAll('.reveal');
|
||||
const io = new IntersectionObserver((entries) => {
|
||||
entries.forEach(e => {
|
||||
if (e.isIntersecting) {
|
||||
e.target.classList.add('visible');
|
||||
io.unobserve(e.target);
|
||||
}
|
||||
});
|
||||
}, { threshold: 0.12 });
|
||||
revealEls.forEach(el => io.observe(el));
|
||||
3
static/js/faq_toggle.js
Normal file
@@ -0,0 +1,3 @@
|
||||
function toggleFaq(btn) {
|
||||
btn.parentElement.classList.toggle('open');
|
||||
}
|
||||
20
static/js/hamburger.js
Normal file
@@ -0,0 +1,20 @@
|
||||
(function () {
|
||||
var btn = document.getElementById('nav-hamburger');
|
||||
var drawer = document.getElementById('nav-drawer');
|
||||
if (!btn || !drawer) return;
|
||||
|
||||
btn.addEventListener('click', function () {
|
||||
var isOpen = drawer.classList.toggle('open');
|
||||
btn.classList.toggle('open', isOpen);
|
||||
btn.setAttribute('aria-expanded', String(isOpen));
|
||||
});
|
||||
|
||||
// Ferme le drawer quand on clique sur un lien
|
||||
drawer.querySelectorAll('a').forEach(function (a) {
|
||||
a.addEventListener('click', function () {
|
||||
drawer.classList.remove('open');
|
||||
btn.classList.remove('open');
|
||||
btn.setAttribute('aria-expanded', 'false');
|
||||
});
|
||||
});
|
||||
})();
|
||||
10
static/js/scroll_reveal.js
Normal file
@@ -0,0 +1,10 @@
|
||||
const revealEls = document.querySelectorAll('.reveal');
|
||||
const io = new IntersectionObserver((entries) => {
|
||||
entries.forEach(e => {
|
||||
if (e.isIntersecting) {
|
||||
e.target.classList.add('visible');
|
||||
io.unobserve(e.target);
|
||||
}
|
||||
});
|
||||
}, { threshold: 0.12 });
|
||||
revealEls.forEach(el => io.observe(el));
|
||||