From 4eb5a6cfffa7224d73330075fc82f884f913c1d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Pailharey?= <rpailharey@grandlyon.com> Date: Mon, 4 Dec 2023 09:34:11 +0100 Subject: [PATCH 01/18] wip: window size --- .../annuaire-header/annuaire-header.component.html | 7 +------ src/app/annuaire/annuaire.component.html | 2 +- src/app/annuaire/annuaire.component.scss | 13 +++++-------- .../annuaire/result-list/result-list.component.html | 2 ++ .../annuaire/result-list/result-list.component.scss | 9 --------- src/styles.scss | 10 ++++++++-- 6 files changed, 17 insertions(+), 26 deletions(-) diff --git a/src/app/annuaire/annuaire-header/annuaire-header.component.html b/src/app/annuaire/annuaire-header/annuaire-header.component.html index a353f0bf9..7d02e7860 100644 --- a/src/app/annuaire/annuaire-header/annuaire-header.component.html +++ b/src/app/annuaire/annuaire-header/annuaire-header.component.html @@ -46,12 +46,7 @@ </div> </div> - <div - *ngIf="searchService.checkedFilterList.length" - fxLayout="row wrap" - fxLayoutGap="4px" - class="filterTags isntPhoneContent" - > + <div *ngIf="searchService.checkedFilterList.length" class="filterTags isntPhoneContent"> <div class="title">Filtres :</div> <app-button *ngFor="let filter of searchService.checkedFilterList" diff --git a/src/app/annuaire/annuaire.component.html b/src/app/annuaire/annuaire.component.html index 46359c3bd..b06530b3f 100644 --- a/src/app/annuaire/annuaire.component.html +++ b/src/app/annuaire/annuaire.component.html @@ -1,4 +1,4 @@ -<div class="content-container no-pt" [ngClass]="{ logged: userIsLoggedIn() }"> +<div class="annuaire-container" [ngClass]="{ logged: userIsLoggedIn() }"> <h1 class="visually-hidden">Annuaire</h1> <div *ngIf="userIsLoggedIn()"> <app-annuaire-header diff --git a/src/app/annuaire/annuaire.component.scss b/src/app/annuaire/annuaire.component.scss index 25f45664e..26a408aa1 100644 --- a/src/app/annuaire/annuaire.component.scss +++ b/src/app/annuaire/annuaire.component.scss @@ -1,12 +1,9 @@ @import 'layout'; +@import 'breakpoint'; -.content-container { - box-sizing: border-box; - display: flex; - flex-direction: column; - justify-content: center; - height: calc(100vh - $header-height - $footer-height); - &.logged { - justify-content: flex-start; +.annuaire-container { + margin: 1.5rem 6rem 0; + @media #{$tablet} { + margin: 1.5rem 0.5rem 0; } } diff --git a/src/app/annuaire/result-list/result-list.component.html b/src/app/annuaire/result-list/result-list.component.html index 90de1ba6f..02bf03b13 100644 --- a/src/app/annuaire/result-list/result-list.component.html +++ b/src/app/annuaire/result-list/result-list.component.html @@ -14,6 +14,7 @@ [ngClass]="{ filterActive: filterActive }" (scroll)="onScroll($event)" > + <h2>MEMBRES</h2> <div class="userNumber"> {{ userList.length }} utilisateur(s)<span *ngIf="showPagination"> sur {{ totalUserResult }} </span> </div> @@ -52,6 +53,7 @@ </div> <div *ngIf="isLogged && userList.length === 0" class="results empty"> + <h2>MEMBRES</h2> <div class="userNumber">0 utilisateur</div> <div class="noUser">Aucun résultat ne correspond à vos filtres</div> <app-button diff --git a/src/app/annuaire/result-list/result-list.component.scss b/src/app/annuaire/result-list/result-list.component.scss index 9ed2a610e..dff86ce75 100644 --- a/src/app/annuaire/result-list/result-list.component.scss +++ b/src/app/annuaire/result-list/result-list.component.scss @@ -3,18 +3,9 @@ @import 'breakpoint'; .results { - max-width: 980px; - padding: 1rem 2.5rem; - background: $white; - border-radius: 8px; margin: 1rem auto 0 auto; overflow-y: scroll; overflow-anchor: none; - box-sizing: border-box; - border: 1px solid $grey-6; - @media #{$tablet} { - margin: 1rem; - } .loader { display: flex; diff --git a/src/styles.scss b/src/styles.scss index e4054d1f4..8351e1d7d 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -26,8 +26,8 @@ body { height: 100%; margin: 0; padding: 0; - color: $black; - background-color: $grey-9; + color: $grey-1; + background-color: $grey-10; ::-webkit-scrollbar { width: 8px; } @@ -619,3 +619,9 @@ button { .warning { color: $info-warning; } + +h1, +h2, +p { + margin: 0; +} -- GitLab From cf9dfeea8c559a73c81c0fdfa0d78bb9feb25fd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Pailharey?= <rpailharey@grandlyon.com> Date: Mon, 4 Dec 2023 18:01:04 +0100 Subject: [PATCH 02/18] wip --- .../annuaire-header/annuaire-header.component.scss | 2 ++ .../annuaire/result-list/result-list.component.scss | 10 +++++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/app/annuaire/annuaire-header/annuaire-header.component.scss b/src/app/annuaire/annuaire-header/annuaire-header.component.scss index c5c373ff8..e5a07e8d0 100644 --- a/src/app/annuaire/annuaire-header/annuaire-header.component.scss +++ b/src/app/annuaire/annuaire-header/annuaire-header.component.scss @@ -4,6 +4,8 @@ display: flex; flex-direction: column; gap: 0.5rem; + border-bottom: none; + padding: 0.5rem 0; .content { .btn-container { @media #{$large-tablet} { diff --git a/src/app/annuaire/result-list/result-list.component.scss b/src/app/annuaire/result-list/result-list.component.scss index dff86ce75..7400b70b8 100644 --- a/src/app/annuaire/result-list/result-list.component.scss +++ b/src/app/annuaire/result-list/result-list.component.scss @@ -1,6 +1,7 @@ +@import 'breakpoint'; @import 'color'; @import 'layout'; -@import 'breakpoint'; +@import 'typography'; .results { margin: 1rem auto 0 auto; @@ -13,10 +14,13 @@ align-items: center; height: calc(100vh - $footer-height - $header-height - $header-height - 7rem); } + h2 { + @include font-bold-18; + } .userNumber { - font-size: 0.875rem; + @include font-regular-14; color: $grey-3; - padding: 1rem 0.75rem; + padding-block: 1rem; } &.empty { padding-bottom: 2rem; -- GitLab From dbf726cf483e7856e0e3aa2aac24ceafcb5f5451 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Pailharey?= <rpailharey@grandlyon.com> Date: Tue, 5 Dec 2023 14:19:23 +0100 Subject: [PATCH 03/18] style: footer scrolls --- .../annuaire/result-list/result-list.component.scss | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/src/app/annuaire/result-list/result-list.component.scss b/src/app/annuaire/result-list/result-list.component.scss index 7400b70b8..49d8daea0 100644 --- a/src/app/annuaire/result-list/result-list.component.scss +++ b/src/app/annuaire/result-list/result-list.component.scss @@ -4,9 +4,7 @@ @import 'typography'; .results { - margin: 1rem auto 0 auto; - overflow-y: scroll; - overflow-anchor: none; + margin-top: 1rem; .loader { display: flex; @@ -34,14 +32,6 @@ } } &.notEmpty { - //make sure it fits the correct height no matter the content length and screen height - max-height: calc(100vh - $footer-height - $header-height - $header-height - 2rem); - &.filterActive { - max-height: calc(100vh - $footer-height - $header-height - $header-height - 5rem); - } - @media #{$large-phone} { - height: 100%; - } .pagination { max-width: 380px; width: 100%; -- GitLab From a43e4e78068ea15c9d59532ff667f111ed7226d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Pailharey?= <rpailharey@grandlyon.com> Date: Tue, 5 Dec 2023 18:13:26 +0100 Subject: [PATCH 04/18] style: responsive --- src/app/annuaire/annuaire.component.scss | 6 +- .../result-list/result-list.component.html | 68 +++++------ .../result-list/result-list.component.scss | 109 +++++++++--------- .../result-list/result-list.component.ts | 6 +- .../svg-icon/svg-icon.component.scss | 1 + 5 files changed, 100 insertions(+), 90 deletions(-) diff --git a/src/app/annuaire/annuaire.component.scss b/src/app/annuaire/annuaire.component.scss index 26a408aa1..d7de656bf 100644 --- a/src/app/annuaire/annuaire.component.scss +++ b/src/app/annuaire/annuaire.component.scss @@ -2,8 +2,10 @@ @import 'breakpoint'; .annuaire-container { - margin: 1.5rem 6rem 0; + padding: 1.5rem 6rem 0; + margin: auto; + max-width: $content-desktop-width; @media #{$tablet} { - margin: 1.5rem 0.5rem 0; + padding: 1.5rem 0.5rem 0; } } diff --git a/src/app/annuaire/result-list/result-list.component.html b/src/app/annuaire/result-list/result-list.component.html index 02bf03b13..c6ae2d16a 100644 --- a/src/app/annuaire/result-list/result-list.component.html +++ b/src/app/annuaire/result-list/result-list.component.html @@ -18,36 +18,40 @@ <div class="userNumber"> {{ userList.length }} utilisateur(s)<span *ngIf="showPagination"> sur {{ totalUserResult }} </span> </div> - <div - *ngFor="let user of userList; let index = index" - class="singleUser" - tabindex="0" - role="link" - (click)="goToUser(user._id)" - (keyup.enter)="goToUser(user._id)" - > - <div class="avatar-container"> - <app-svg-icon class="avatar" [type]="'avatar'" [icon]="'defaultAvatar'" [iconClass]="'icon-40'" /> - </div> - <div class="identity"> - <p class="name">{{ user.name | userName }} {{ user.surname | uppercase }}</p> - <p *ngIf="user.job" class="job">{{ user.job.name }}</p> + <div class="users"> + <div + *ngFor="let user of userList; let index = index" + class="singleUser" + tabindex="0" + role="link" + (click)="goToUser(user._id)" + (keyup.enter)="goToUser(user._id)" + > + <div class="left"> + <app-svg-icon [type]="'avatar'" [icon]="'defaultAvatar'" [iconClass]="'icon-48'" /> + <div class="identity"> + <p class="name">{{ user.name | userName }} {{ user.surname | uppercase }}</p> + <p *ngIf="user.job" class="job">{{ user.job.name }}</p> + <div *ngIf="user.withAppointment" class="appointment"> + <app-svg-icon [iconClass]="'icon-20'" [type]="'tags'" [icon]="'rdv'" /> + <span>Rendez-vous</span> + </div> + </div> + </div> + <div class="right"> + <div *ngIf="user.employer" class="employer">{{ user.employer.name }}</div> + <app-svg-icon tabindex="0" [iconClass]="'icon-32'" [type]="'ico'" [icon]="'chevronRight'" /> + </div> </div> - <span *ngIf="user.withAppointment"> - <app-svg-icon [type]="'ico'" [icon]="'rdv'" [iconColor]="'black'" [iconClass]="'icon-22'" /> - </span> - <div *ngIf="user.employer" class="employer">{{ user.employer.name }}</div> </div> <div *ngIf="showPagination" class="pagination"> - <div class="text"> - {{ userList.length }} utilisateur(s) affiché(s) sur {{ totalUserResult }} utilisateur(s) trouvé(s). - </div> - <app-button - tabindex="0" - [style]="buttonTypeEnum.modalSecondary" - [type]="'form'" - [text]="'Voir plus'" - (click)="showMore()" + <p>{{ userList.length }} affichés sur {{ totalUserResult }} membres</p> + <app-v3-button + [label]="'Voir plus'" + [variant]="buttonTypeV3Enum.PrimaryBlack" + [size]="'medium'" + [wide]="true" + (action)="showMore()" /> </div> </div> @@ -68,14 +72,12 @@ <div *ngIf="!isLogged && totalUserResult" class="results unlogged"> <img src="../../assets/ico/annuaire-unlogged.svg" alt="Illustration annuaire" /> <div class="users" [ngPlural]="totalUserResult"> - <ng-template ngPluralCase="0">Aucun utilisateur n'est présent dans l'annuaire Rés'in</ng-template> - <ng-template ngPluralCase="1">1 utilisateur est présent dans l'annuaire Rés'in</ng-template> - <ng-template ngPluralCase="other" - >{{ totalUserResult }} utilisateurs sont présents dans l'annuaire Rés'in</ng-template - > + <ng-template ngPluralCase="0">Aucun membre n'est présent dans l'annuaire Rés'in</ng-template> + <ng-template ngPluralCase="1">1 membre est présent dans l'annuaire Rés'in</ng-template> + <ng-template ngPluralCase="other">{{ totalUserResult }} membres sont présents dans l'annuaire Rés'in</ng-template> </div> <div class="access"> - Pour accéder à l’annuaire de Rés'in et contacter les utilisateurs,<br /> + Pour accéder à l’annuaire de Rés'in et contacter les membres,<br /> veuillez vous connecter ou vous créer un compte. </div> <div class="buttons"> diff --git a/src/app/annuaire/result-list/result-list.component.scss b/src/app/annuaire/result-list/result-list.component.scss index 49d8daea0..762b77248 100644 --- a/src/app/annuaire/result-list/result-list.component.scss +++ b/src/app/annuaire/result-list/result-list.component.scss @@ -26,25 +26,17 @@ margin: 1.5rem 0.5rem; color: $grey-3; } - - ::ng-deep button { - max-width: 200px; - } } &.notEmpty { .pagination { - max-width: 380px; - width: 100%; - margin: 1rem auto; - @media #{$large-phone} { - max-width: 280px; - } - .text { - font-weight: bold; - font-size: 0.875rem; - color: $grey-1; - text-align: center; - margin-bottom: 1rem; + display: flex; + flex-direction: column; + align-items: center; + gap: 1rem; + padding-top: 1rem; + padding-bottom: 2rem; + p { + @include font-bold-14; } } } @@ -73,46 +65,57 @@ margin: 2rem auto; } } - .singleUser { + .users { display: flex; - align-items: center; - gap: 0.5rem; - height: 65px; - padding: 0.75rem; - box-sizing: border-box; - cursor: pointer; - transition: all 300ms ease; - border-radius: 8px; - @media #{$large-phone} { - height: 75px; - } - &:hover { - background: $grey-9; - } - &:not(:last-child) { - border-bottom: solid 1px $grey-9; - } - .avatar-container { - width: 40px; - height: 44px; - border-radius: 4px; - background: $grey-9; - } - .identity { - max-width: 330px; - p { - margin: 0; - } - .name { - font-weight: bold; + flex-direction: column; + gap: 1rem; + padding-bottom: 1rem; + + .singleUser { + display: flex; + align-items: center; + min-height: 100px; + padding: 1rem; + box-sizing: border-box; + cursor: pointer; + border-radius: 8px; + border: 1px solid $grey-7; + justify-content: space-between; + gap: 1rem; + + .left { + display: flex; + align-items: center; + gap: 1.5rem; + .identity { + display: flex; + flex-direction: column; + gap: 0.5rem; + max-width: 330px; + .name { + font-weight: bold; + } + .job { + color: $grey-3; + } + .appointment { + display: flex; + align-items: center; + gap: 0.5rem; + span { + @include font-bold-14; + } + } + } } - .job { - color: $grey-3; + .right { + display: flex; + align-items: center; + gap: 1.5rem; + .employer { + color: $grey-3; + } } } - .employer { - margin-left: auto; - color: $grey-3; - } } } diff --git a/src/app/annuaire/result-list/result-list.component.ts b/src/app/annuaire/result-list/result-list.component.ts index e62c052eb..a9dd62a55 100644 --- a/src/app/annuaire/result-list/result-list.component.ts +++ b/src/app/annuaire/result-list/result-list.component.ts @@ -2,6 +2,7 @@ import { AfterViewInit, Component, EventEmitter, Input, OnChanges, Output, Simpl import { Router } from '@angular/router'; import { UserAnnuary } from '../../models/user.model'; import { ButtonType } from '../../shared/components/button/buttonType.enum'; +import { ButtonTypeV3 } from '../../shared/components/v3/button/button.type'; import { WindowScrollService } from '../../shared/service/windowScroll.service'; @Component({ @@ -16,9 +17,10 @@ export class ResultListComponent implements OnChanges, AfterViewInit { @Input() isLogged: boolean; @Input() filterActive: boolean; @Input() isLoading: boolean; - @Output() resetEvent = new EventEmitter<any>(); - @Output() showMoreEvent = new EventEmitter<any>(); + @Output() resetEvent = new EventEmitter<void>(); + @Output() showMoreEvent = new EventEmitter<void>(); public maxPerPage = 20; + public buttonTypeV3Enum = ButtonTypeV3; public buttonTypeEnum = ButtonType; public showPagination = false; diff --git a/src/app/shared/components/svg-icon/svg-icon.component.scss b/src/app/shared/components/svg-icon/svg-icon.component.scss index fd4fb1f1c..cf12e5e7d 100644 --- a/src/app/shared/components/svg-icon/svg-icon.component.scss +++ b/src/app/shared/components/svg-icon/svg-icon.component.scss @@ -15,6 +15,7 @@ $sizes: ( 30: 30px, 32: 32px, 40: 40px, + 48: 48px, 52: 52px, 75: 75px, 80: 80px, -- GitLab From 624a56a0da600cd7e061ab9d6679d0b310346c13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Pailharey?= <rpailharey@grandlyon.com> Date: Wed, 6 Dec 2023 10:52:36 +0100 Subject: [PATCH 05/18] fix: keep scroll history --- src/app/annuaire/result-list/result-list.component.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/app/annuaire/result-list/result-list.component.scss b/src/app/annuaire/result-list/result-list.component.scss index 762b77248..397eb482d 100644 --- a/src/app/annuaire/result-list/result-list.component.scss +++ b/src/app/annuaire/result-list/result-list.component.scss @@ -5,6 +5,14 @@ .results { margin-top: 1rem; + padding-right: 0.5rem; + height: calc(100vh - $footer-height - $header-height - 7rem); + overflow-y: scroll; + overflow-anchor: none; + + @media #{$phone} { + height: calc(100vh - $header-height - 7rem); + } .loader { display: flex; -- GitLab From 2c7b07d747bf5bcb7166834a5f2026cb734baf0b Mon Sep 17 00:00:00 2001 From: Bastien Dumont <bdumont@grandlyon.com> Date: Wed, 6 Dec 2023 15:44:36 +0100 Subject: [PATCH 06/18] add hover effect --- src/app/annuaire/result-list/result-list.component.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app/annuaire/result-list/result-list.component.scss b/src/app/annuaire/result-list/result-list.component.scss index 397eb482d..78b87e076 100644 --- a/src/app/annuaire/result-list/result-list.component.scss +++ b/src/app/annuaire/result-list/result-list.component.scss @@ -90,6 +90,11 @@ border: 1px solid $grey-7; justify-content: space-between; gap: 1rem; + transition: all 0.2s ease-in-out; + + &:hover { + border-color: $grey-4; + } .left { display: flex; -- GitLab From 36f3e12a653f3fea91a07e69ad78623eb0429459 Mon Sep 17 00:00:00 2001 From: Bastien Dumont <bdumont@grandlyon.com> Date: Wed, 6 Dec 2023 16:08:46 +0100 Subject: [PATCH 07/18] add hover effect in profile --- .../profile-structure-member.component.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app/profile/profile-structure/profile-structure-member/profile-structure-member.component.scss b/src/app/profile/profile-structure/profile-structure-member/profile-structure-member.component.scss index 36776ecff..f89c8d4b6 100644 --- a/src/app/profile/profile-structure/profile-structure-member/profile-structure-member.component.scss +++ b/src/app/profile/profile-structure/profile-structure-member/profile-structure-member.component.scss @@ -18,6 +18,11 @@ border-radius: 4px; color: $grey-3; cursor: pointer; + transition: all 0.2s ease-in-out; + + &:hover { + border-color: $grey-4; + } .avatar { display: flex; -- GitLab From ebb4fab33a6bbe1a7b61e14684b3646ee0bfd939 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Pailharey?= <rpailharey@grandlyon.com> Date: Wed, 6 Dec 2023 16:28:37 +0100 Subject: [PATCH 08/18] review: don't use block class --- .../annuaire-header.component.html | 78 +++++++++---------- .../annuaire-header.component.scss | 16 ++-- src/app/annuaire/annuaire.component.scss | 4 +- 3 files changed, 45 insertions(+), 53 deletions(-) diff --git a/src/app/annuaire/annuaire-header/annuaire-header.component.html b/src/app/annuaire/annuaire-header/annuaire-header.component.html index 7d02e7860..273ea88cc 100644 --- a/src/app/annuaire/annuaire-header/annuaire-header.component.html +++ b/src/app/annuaire/annuaire-header/annuaire-header.component.html @@ -1,48 +1,42 @@ -<div class="block"> - <div class="content"> +<div class="annuaire-header"> + <div class="form"> <app-v3-search-bar [(value)]="searchInput" (search)="applyFilter()" /> - <div class="btn-container" (appClickOutside)="closeModal()"> - <div class="btnSection" fxLayout="row" fxLayoutAlign="space-between center" fxLayoutGap="4px"> - <button - class="btn-filter" - type="button" - fxLayout="row" - fxLayoutAlign="space-between center" - [ngClass]="{ - selected: modalTypeOpened === TypeModal.jobs, - containCheckedFilters: jobsFiltersActive - }" - (click)="openModal(TypeModal.jobs)" - > - <span>Fonction</span> - <div class="arrow"></div> - </button> - <button - class="btn-filter" - type="button" - fxLayout="row" - fxLayoutAlign="space-between center" - [ngClass]="{ - selected: modalTypeOpened === TypeModal.employers, - containCheckedFilters: employersFiltersActive - }" - (click)="openModal(TypeModal.employers)" - > - <span>Employeur</span> - <div class="arrow"></div> - </button> + <div class="btnSection isntPhoneContent"> + <button + class="btn-filter" + type="button" + [ngClass]="{ + selected: modalTypeOpened === TypeModal.jobs, + containCheckedFilters: jobsFiltersActive + }" + (click)="openModal(TypeModal.jobs)" + > + <span>Fonction</span> + <div class="arrow"></div> + </button> + <button + class="btn-filter" + type="button" + [ngClass]="{ + selected: modalTypeOpened === TypeModal.employers, + containCheckedFilters: employersFiltersActive + }" + (click)="openModal(TypeModal.employers)" + > + <span>Employeur</span> + <div class="arrow"></div> + </button> - <app-filter-modal - [modalType]="modalTypeOpened" - [checkedFilters]="searchService.checkedFilterList" - [employerFilterChecked]="employerFilterChecked" - [jobFilterChecked]="jobFilterChecked" - [filtersTypes]="getModalCategory()" - (fetchResults)="fetchResults($event)" - (closeEvent)="closeModal()" - /> - </div> + <app-filter-modal + [modalType]="modalTypeOpened" + [checkedFilters]="searchService.checkedFilterList" + [employerFilterChecked]="employerFilterChecked" + [jobFilterChecked]="jobFilterChecked" + [filtersTypes]="getModalCategory()" + (fetchResults)="fetchResults($event)" + (closeEvent)="closeModal()" + /> </div> </div> diff --git a/src/app/annuaire/annuaire-header/annuaire-header.component.scss b/src/app/annuaire/annuaire-header/annuaire-header.component.scss index e5a07e8d0..78055fa3a 100644 --- a/src/app/annuaire/annuaire-header/annuaire-header.component.scss +++ b/src/app/annuaire/annuaire-header/annuaire-header.component.scss @@ -1,16 +1,14 @@ @import 'search'; -.block { +.annuaire-header { display: flex; flex-direction: column; gap: 0.5rem; - border-bottom: none; - padding: 0.5rem 0; - .content { - .btn-container { - @media #{$large-tablet} { - display: none; - } - } + margin-top: 1.5rem; + margin-bottom: 1rem; + + .form { + display: flex; + gap: 0.5rem; } } diff --git a/src/app/annuaire/annuaire.component.scss b/src/app/annuaire/annuaire.component.scss index d7de656bf..53633e313 100644 --- a/src/app/annuaire/annuaire.component.scss +++ b/src/app/annuaire/annuaire.component.scss @@ -2,10 +2,10 @@ @import 'breakpoint'; .annuaire-container { - padding: 1.5rem 6rem 0; + padding-inline: 6rem; margin: auto; max-width: $content-desktop-width; @media #{$tablet} { - padding: 1.5rem 0.5rem 0; + padding-inline: 0.5rem; } } -- GitLab From 3ccf159505020302485205d811daa314951e4336 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Pailharey?= <rpailharey@grandlyon.com> Date: Wed, 6 Dec 2023 17:36:23 +0100 Subject: [PATCH 09/18] style: global uppercase class --- .../result-list/result-list.component.html | 4 +- .../orientation-recap.component.html | 4 +- .../orientation-recap.component.scss | 1 - .../post-header/post-header.component.html | 58 --------- .../post-list/post-list.component.scss | 13 -- .../post-modal-filters.component.html | 34 ----- .../post-modal-filters.component.scss | 122 ------------------ .../post-modal-filters.component.ts | 69 ---------- .../post-tag/post-tag.component.html | 4 +- .../post-tag/post-tag.component.scss | 1 - src/app/post/post.module.ts | 2 - .../personal-offer.component.html | 2 +- .../personal-offer.component.scss | 7 - .../profile-structure.component.html | 4 +- .../profile-structure.component.scss | 1 - src/app/profile/profile.component.html | 8 +- src/app/profile/profile.component.scss | 1 - .../structure-edition-summary.component.html | 42 +++--- .../structure-edition-summary.component.scss | 1 - .../structure-detail-print.component.html | 6 +- .../structure-details.component.html | 22 ++-- .../structure-details.component.scss | 1 - src/styles.scss | 3 + 23 files changed, 51 insertions(+), 359 deletions(-) delete mode 100644 src/app/post/components/post-modal-filters/post-modal-filters.component.html delete mode 100644 src/app/post/components/post-modal-filters/post-modal-filters.component.scss delete mode 100644 src/app/post/components/post-modal-filters/post-modal-filters.component.ts diff --git a/src/app/annuaire/result-list/result-list.component.html b/src/app/annuaire/result-list/result-list.component.html index c6ae2d16a..4ab8f97a9 100644 --- a/src/app/annuaire/result-list/result-list.component.html +++ b/src/app/annuaire/result-list/result-list.component.html @@ -14,7 +14,7 @@ [ngClass]="{ filterActive: filterActive }" (scroll)="onScroll($event)" > - <h2>MEMBRES</h2> + <h2 class="uppercase">membres</h2> <div class="userNumber"> {{ userList.length }} utilisateur(s)<span *ngIf="showPagination"> sur {{ totalUserResult }} </span> </div> @@ -57,7 +57,7 @@ </div> <div *ngIf="isLogged && userList.length === 0" class="results empty"> - <h2>MEMBRES</h2> + <h2 class="uppercase">membres</h2> <div class="userNumber">0 utilisateur</div> <div class="noUser">Aucun résultat ne correspond à vos filtres</div> <app-button diff --git a/src/app/form/orientation-form-view/global-components/orientation-recap/orientation-recap.component.html b/src/app/form/orientation-form-view/global-components/orientation-recap/orientation-recap.component.html index 955c8cd75..3d06e8202 100644 --- a/src/app/form/orientation-form-view/global-components/orientation-recap/orientation-recap.component.html +++ b/src/app/form/orientation-form-view/global-components/orientation-recap/orientation-recap.component.html @@ -2,7 +2,7 @@ <div class="container" [ngClass]="{ onlineMediation: recap }"> <div class="main"> <div *ngIf="isOrientator()" class="orientator header"> - <h3>Orienté par</h3> + <h3 class="uppercase">Orienté par</h3> <div class="content"> <div class="infos structureName">{{ orientator.structureName }}</div> <div *ngIf="orientator.structureMail" class="infos">{{ orientator.structureMail }}</div> @@ -10,7 +10,7 @@ </div> </div> <div class="beneficiary header"> - <h3>Bénéficiaire</h3> + <h3 class="uppercase">Bénéficiaire</h3> <div class="content"> <div fxLayout="row"> <div class="label">Nom</div> diff --git a/src/app/form/orientation-form-view/global-components/orientation-recap/orientation-recap.component.scss b/src/app/form/orientation-form-view/global-components/orientation-recap/orientation-recap.component.scss index 0263a428e..c636410a9 100644 --- a/src/app/form/orientation-form-view/global-components/orientation-recap/orientation-recap.component.scss +++ b/src/app/form/orientation-form-view/global-components/orientation-recap/orientation-recap.component.scss @@ -59,7 +59,6 @@ color: $grey-3; margin-bottom: 1.5rem; margin-top: 0.5rem; - text-transform: uppercase; } .header { diff --git a/src/app/post/components/post-header/post-header.component.html b/src/app/post/components/post-header/post-header.component.html index 903149717..c65171293 100644 --- a/src/app/post/components/post-header/post-header.component.html +++ b/src/app/post/components/post-header/post-header.component.html @@ -29,64 +29,6 @@ (action)="togglePublishNews()" /> </div> - <!-- <div - class="btnSection" - fxLayout="row" - fxLayoutAlign="space-between center" - fxLayoutGap="16px" - (appClickOutside)="closeModal()" - > - <button - *ngIf="tags.public && tags.public.length > 0" - type="button" - fxLayout="row" - [ngClass]="{ - selected: modalTypeOpened === TypeModal.public, - containCheckedFilters: checkedPublicTags.length > 0 - }" - fxLayoutAlign="space-between center" - (click)="openModal(TypeModal.public)" - > - <span class="text">Tout public</span> - <app-svg-icon - class="icon" - [type]="'ico'" - [iconClass]="modalTypeOpened === TypeModal.public ? 'white icon-32' : 'grey-1 icon-32'" - [icon]="'news-public'" - /> - <div class="arrow"></div> - </button> - <button - *ngIf="tags.commune && tags.commune.length > 0" - class="btn-filter-no-margin" - type="button" - fxLayout="row" - [ngClass]="{ - selected: modalTypeOpened === TypeModal.location, - containCheckedFilters: checkedLocationTags.length > 0 - }" - fxLayoutAlign="space-between center" - (click)="openModal(TypeModal.location)" - > - <span class="text">Toutes les communes</span> - <app-svg-icon - class="icon" - [type]="'ico'" - [iconClass]="modalTypeOpened === TypeModal.location ? 'white' : 'grey-1'" - [icon]="'news-location'" - /> - <div class="arrow"></div> - </button> - <div *ngIf="modalTypeOpened"> - <app-post-modal-filters - [modalType]="modalTypeOpened" - [tags]="getModalData()" - [inputCheckedTags]="getCheckedModalData()" - (searchEvent)="filter($event)" - (closeEvent)="closeModal()" - ></app-post-modal-filters> - </div> - </div> --> </div> </div> </div> diff --git a/src/app/post/components/post-list/post-list.component.scss b/src/app/post/components/post-list/post-list.component.scss index d13e23169..3d7f48d3f 100644 --- a/src/app/post/components/post-list/post-list.component.scss +++ b/src/app/post/components/post-list/post-list.component.scss @@ -3,11 +3,6 @@ @import 'shapes'; @import 'breakpoint'; -h2 { - font-style: italic !important; - text-transform: uppercase; -} - .last-child { ::ng-deep .post { border: 0; @@ -16,14 +11,6 @@ h2 { .list-container { width: 100%; - h2 { - @media #{$large-phone} { - @include font-bold-22; - } - @include font-bold-28; - color: $grey-2; - margin: 0; - } .columnPosts { @media #{$large-phone} { display: none !important; diff --git a/src/app/post/components/post-modal-filters/post-modal-filters.component.html b/src/app/post/components/post-modal-filters/post-modal-filters.component.html deleted file mode 100644 index 9d66bdc0d..000000000 --- a/src/app/post/components/post-modal-filters/post-modal-filters.component.html +++ /dev/null @@ -1,34 +0,0 @@ -<div *ngIf="modalType" fxLayout="column" fxLayoutAlign="space-between" [ngClass]="['modal', 'modal' + getModalType()]"> - <div class="body-wrap" fxLayout="column" fxLayoutAlign="space-between"> - <div class="titleFilter" fxLayout="row" fxLayoutAlign="space-between"> - <span>Filtres</span> - <div class="ico-close-details" tabindex="0" (click)="closeModal()" (keyup.enter)="closeModal()"></div> - </div> - <div *ngIf="tags.length > 0" class="contentModal" fxLayout="row wrap" fxLayoutAlign="flex-start"> - <div class="blockFiltre"> - <ul class="blockLigne"> - <div *ngFor="let tag of tags" fxLayout="row" class="ligneFiltre"> - <li class="checkbox"> - <div class="checkboxItem"> - <label> - <input - type="checkbox" - [checked]="getIndex(checkedTags, tag.slug) > -1" - [value]="tag.id" - (change)="onCheckboxChange($event, tag)" - /> - <span class="customCheck"></span> - <div class="label">{{ tag.name }}</div> - </label> - </div> - </li> - </div> - </ul> - </div> - </div> - <div class="footer" fxLayout="row" fxLayoutAlign="end center" fxLayoutGap="3vw"> - <a tabindex="0" (click)="clearFilters()" (keyup.enter)="clearFilters()">Effacer</a> - <app-button [text]="'Appliquer'" (click)="emit(checkedTags)" /> - </div> - </div> -</div> diff --git a/src/app/post/components/post-modal-filters/post-modal-filters.component.scss b/src/app/post/components/post-modal-filters/post-modal-filters.component.scss deleted file mode 100644 index cdfd4dab7..000000000 --- a/src/app/post/components/post-modal-filters/post-modal-filters.component.scss +++ /dev/null @@ -1,122 +0,0 @@ -@import 'icons'; -@import 'color'; -@import 'typography'; -@import 'breakpoint'; -@import 'shapes'; -@import 'hyperlink'; -@import 'z-index'; - -.modallocation { - margin-left: -341px; -} -.modalpublic { - @media #{$desktop} { - margin-left: -446px; - } - margin-left: -566px; -} -.modal { - max-width: 341px; - width: 94%; - z-index: $modal-z-index !important; - position: absolute; - border-radius: 6px; - margin-top: 24px; - @media #{$large-phone} { - height: 100%; - max-height: auto; - max-width: auto; - width: 100%; - position: fixed; - top: 0; - left: 0; - border: none; - padding: 0; - } - @include background-hash($grey-2); - border: 1px solid $grey-5; - .body-wrap { - @media #{$large-phone} { - height: 100vh; - height: -webkit-fill-available; - } - .titleFilter { - display: none !important; - margin: 27px 25px 0px 25px; - @include font-bold-26; - @media #{$large-phone} { - display: flex !important; - } - } - } - .contentModal { - overflow-y: auto; - max-width: 1100px; - border-bottom: 1px solid $grey; - margin-bottom: 16px; - max-height: 40vh; - @media #{$large-phone} { - max-height: none; - height: 100%; - } - .blockFiltre { - width: 100%; - margin: 0 32px; - padding: 40px 0; - border-bottom: 1px dashed $grey-5; - - &:last-child { - padding-bottom: 32px; - border-bottom: none; - } - @media #{$large-phone} { - margin: 0 18px; - padding: 25px 0; - } - } - .blockLigne { - padding-left: 0; - -moz-column-count: 1; - -moz-column-gap: 46px; - -webkit-column-count: 1; - -webkit-column-gap: 46px; - column-count: 1; - column-gap: 46px; - margin: 0px; - @media #{$large-phone} { - -moz-column-count: 1; - -webkit-column-count: 1; - column-count: 1; - } - } - .ligneFiltre { - padding: 5px 0; - } - h4 { - @include font-bold-16; - line-height: 17px; - text-transform: uppercase; - color: $grey-3; - display: flex; - align-items: center; - margin-top: 0; - margin-bottom: 9px; - } - .nbResult { - @include font-regular-14; - line-height: 16px; - color: $grey-3; - padding-top: 3px; - } - label { - @include font-regular-14; - } - } - .footer { - margin: 0px 20px 16px 0; - height: 32px; - } -} -a { - @include hyperlink; -} diff --git a/src/app/post/components/post-modal-filters/post-modal-filters.component.ts b/src/app/post/components/post-modal-filters/post-modal-filters.component.ts deleted file mode 100644 index 5b1b37504..000000000 --- a/src/app/post/components/post-modal-filters/post-modal-filters.component.ts +++ /dev/null @@ -1,69 +0,0 @@ -import { Component, EventEmitter, Input, OnChanges, OnInit, Output, SimpleChanges } from '@angular/core'; -import { Tag } from '../../models/tag.model'; -import { TypeModalNews } from '../../enum/typeModalNews.enum'; - -@Component({ - selector: 'app-post-modal-filters', - templateUrl: './post-modal-filters.component.html', - styleUrls: ['./post-modal-filters.component.scss'], -}) -export class PostModalFiltersComponent implements OnInit, OnChanges { - @Input() public modalType: TypeModalNews; - @Input() public tags: Tag[]; - @Output() searchEvent = new EventEmitter(); - @Output() closeEvent = new EventEmitter(); - // Checkbox variable - @Input() public inputCheckedTags: Tag[] = []; - public checkedTags: Tag[] = []; - - ngOnChanges(changes: SimpleChanges): void { - if (changes.inputCheckedTags) { - this.checkedTags = this.inputCheckedTags; - } - } - - ngOnInit(): void { - this.checkedTags = this.inputCheckedTags; - } - - // Management of the checkbox event (Check / Uncheck) - public onCheckboxChange(event, tag: Tag): void { - if (event.target.checked) { - this.checkedTags.push(tag); - } else { - // Check if the module is present in the list and remove it - if (this.getIndex(this.checkedTags, tag.slug) > -1) { - this.checkedTags.splice(this.getIndex(this.checkedTags, tag.slug), 1); - } - } - } - - // Clear only filters in the current modal - public clearFilters(): void { - this.checkedTags = []; - this.searchEvent.emit(this.checkedTags); - } - - public getModalType(): string { - switch (this.modalType) { - case TypeModalNews.location: - return 'location'; - case TypeModalNews.public: - return 'public'; - default: - return ''; - } - } - - public emit(data: Tag[]): void { - this.searchEvent.emit(data); - } - - public getIndex(array: Tag[], slug: string): number { - return array.findIndex((tag: Tag) => tag.slug === slug); - } - - public closeModal(): void { - this.closeEvent.emit(); - } -} diff --git a/src/app/post/components/post-tag/post-tag.component.html b/src/app/post/components/post-tag/post-tag.component.html index e1d9de9fd..700077f0d 100644 --- a/src/app/post/components/post-tag/post-tag.component.html +++ b/src/app/post/components/post-tag/post-tag.component.html @@ -1,8 +1,8 @@ <div> <div *ngIf="post.tags[0]" fxLayout="row" class="tag" fxLayoutAlign=" center" fxLayoutGap="12px"> - <span>{{ displayTag(post) }}</span> + <span class="uppercase">{{ displayTag(post) }}</span> </div> <div *ngIf="!post.tags[0]" fxLayout="row" class="tag" fxLayoutAlign=" center" fxLayoutGap="12px"> - <span>infos</span> + <span class="uppercase">infos</span> </div> </div> diff --git a/src/app/post/components/post-tag/post-tag.component.scss b/src/app/post/components/post-tag/post-tag.component.scss index 576bf3446..1d6abb44a 100644 --- a/src/app/post/components/post-tag/post-tag.component.scss +++ b/src/app/post/components/post-tag/post-tag.component.scss @@ -3,7 +3,6 @@ .tag { @include font-bold-16; - text-transform: uppercase; color: $primary-color; fill: $primary-color; stroke: $primary-color; diff --git a/src/app/post/post.module.ts b/src/app/post/post.module.ts index 80dbdc00b..9f57dd9ac 100644 --- a/src/app/post/post.module.ts +++ b/src/app/post/post.module.ts @@ -5,7 +5,6 @@ import { PostCardComponent } from './components/post-card/post-card.component'; import { PostDetailsComponent } from './components/post-details/post-details.component'; import { PostHeaderComponent } from './components/post-header/post-header.component'; import { PostListComponent } from './components/post-list/post-list.component'; -import { PostModalFiltersComponent } from './components/post-modal-filters/post-modal-filters.component'; import { PostPublishComponent } from './components/post-publish/post-publish.component'; import { PostTagComponent } from './components/post-tag/post-tag.component'; import { NewsComponent } from './news.component'; @@ -19,7 +18,6 @@ import { TagResolver } from './resolvers/tags.resolver'; PostListComponent, PostDetailsComponent, PostCardComponent, - PostModalFiltersComponent, PostPublishComponent, PostTagComponent, ], diff --git a/src/app/profile/profile-structure/personal-offer/personal-offer.component.html b/src/app/profile/profile-structure/personal-offer/personal-offer.component.html index fc6cefa43..659911941 100644 --- a/src/app/profile/profile-structure/personal-offer/personal-offer.component.html +++ b/src/app/profile/profile-structure/personal-offer/personal-offer.component.html @@ -1,6 +1,6 @@ <div *ngIf="this.personalOffer.categoriesDisplay" class="container"> <div class="header"> - <h2>mon offre de service</h2> + <h2 class="uppercase">mon offre de service</h2> <app-button *ngIf="!isPublic" class="hide-on-mobile" diff --git a/src/app/profile/profile-structure/personal-offer/personal-offer.component.scss b/src/app/profile/profile-structure/personal-offer/personal-offer.component.scss index ccd5a18bd..fcbbb2787 100644 --- a/src/app/profile/profile-structure/personal-offer/personal-offer.component.scss +++ b/src/app/profile/profile-structure/personal-offer/personal-offer.component.scss @@ -7,19 +7,12 @@ gap: 12px; h2 { - margin: 0; @include font-bold-18; - text-transform: uppercase; } .header { display: flex; align-items: center; justify-content: space-between; - p { - text-transform: uppercase; - @include font-bold-14; - color: $grey-3; - } } .content { display: flex; diff --git a/src/app/profile/profile-structure/profile-structure.component.html b/src/app/profile/profile-structure/profile-structure.component.html index 44aa52fed..bf666650b 100644 --- a/src/app/profile/profile-structure/profile-structure.component.html +++ b/src/app/profile/profile-structure/profile-structure.component.html @@ -34,7 +34,7 @@ <app-collapse-content> <div class="section"> <div class="sectionHeader"> - <p class="sectionTitle">informations</p> + <p class="sectionTitle uppercase">informations</p> <div class="sectionButtons"> <app-button class="hide-on-mobile" @@ -106,7 +106,7 @@ </div> <div *ngIf="membersWithJobWithPO.length > 0" class="section"> <div class="sectionHeader"> - <p class="sectionTitle">Accompagnant·es numériques</p> + <p class="sectionTitle uppercase">Accompagnant·es numériques</p> <app-button *ngIf="!isPublic && !isPending" class="hide-on-mobile" diff --git a/src/app/profile/profile-structure/profile-structure.component.scss b/src/app/profile/profile-structure/profile-structure.component.scss index 49319fcb3..74bcd23ed 100644 --- a/src/app/profile/profile-structure/profile-structure.component.scss +++ b/src/app/profile/profile-structure/profile-structure.component.scss @@ -63,7 +63,6 @@ align-items: center; .sectionTitle { @include font-bold-18; - text-transform: uppercase; color: $grey-1; } .sectionButtons { diff --git a/src/app/profile/profile.component.html b/src/app/profile/profile.component.html index c7597bd11..ee50fb4b2 100644 --- a/src/app/profile/profile.component.html +++ b/src/app/profile/profile.component.html @@ -12,7 +12,7 @@ <section> <div class="header"> - <h1>Profil</h1> + <h1 class="uppercase">Profil</h1> <app-button *ngIf="isPublic && userProfile.withAppointment" class="hide-on-mobile rdv" @@ -84,7 +84,7 @@ <!-- Private profile with pending structures --> <section *ngIf="!isPublic"> <div class="header"> - <h1 [ngPlural]="userProfile.structuresLink.length"> + <h1 class="uppercase" [ngPlural]="userProfile.structuresLink.length"> <ng-template ngPluralCase="1">Structure</ng-template> <ng-template ngPluralCase="other">Structures</ng-template> </h1> @@ -141,7 +141,7 @@ <!-- Public profile --> <section *ngIf="isPublic && userProfile.structuresLink.length > 0"> <div class="header"> - <h1 [ngPlural]="userProfile.structuresLink.length"> + <h1 class="uppercase" [ngPlural]="userProfile.structuresLink.length"> <ng-template ngPluralCase="1">Structure</ng-template> <ng-template ngPluralCase="other">Structures</ng-template> </h1> @@ -161,7 +161,7 @@ <section *ngIf="!isPublic"> <div class="header"> - <h1>Newsletter</h1> + <h1 class="uppercase">Newsletter</h1> </div> <app-profile-newsletter [userEmail]="this.userProfile.email" /> </section> diff --git a/src/app/profile/profile.component.scss b/src/app/profile/profile.component.scss index 5ba3c25a7..9feabeb5e 100644 --- a/src/app/profile/profile.component.scss +++ b/src/app/profile/profile.component.scss @@ -46,7 +46,6 @@ section { } h1 { @include font-bold-18; - text-transform: uppercase; } .backArrow { diff --git a/src/app/profile/structure-edition-summary/structure-edition-summary.component.html b/src/app/profile/structure-edition-summary/structure-edition-summary.component.html index 21f49a3b5..265fff4d2 100644 --- a/src/app/profile/structure-edition-summary/structure-edition-summary.component.html +++ b/src/app/profile/structure-edition-summary/structure-edition-summary.component.html @@ -23,7 +23,7 @@ <section class="nameAndAddress"> <div class="sectionHeader"> - <p>Nom et adresse</p> + <p class="uppercase">Nom et adresse</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -56,7 +56,7 @@ <section class="structureType" [ngClass]="{ warningBorder: !isFieldValid('structureType') }"> <div class="sectionHeader"> - <p>Type de structure</p> + <p class="uppercase">Type de structure</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -82,7 +82,7 @@ <section class="phoneAndMail" [ngClass]="{ warningBorder: requiredPhoneOrMailError() }"> <div class="sectionHeader"> - <p>Téléphone et email</p> + <p class="uppercase">Téléphone et email</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -116,7 +116,7 @@ <section class="description"> <div class="sectionHeader"> - <p>Présentation de la structure</p> + <p class="uppercase">Présentation de la structure</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -139,7 +139,7 @@ <section class="accessModality" [ngClass]="{ warningBorder: !isFieldValid('accessModality', 'categories') }"> <div class="sectionHeader"> - <p>Modalité d'accueil</p> + <p class="uppercase">Modalité d'accueil</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -168,7 +168,7 @@ <section class="hours"> <div class="sectionHeader"> - <p>Horaires</p> + <p class="uppercase">Horaires</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -206,7 +206,7 @@ <section class="PMR" [ngClass]="{ warningBorder: structure.pmrAccess === null }"> <div class="sectionHeader"> - <p>Accessibilité pour les personnes à mobilité réduite</p> + <p class="uppercase">Accessibilité pour les personnes à mobilité réduite</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -231,7 +231,7 @@ <section class="webAndSocialNetworks"> <div class="sectionHeader"> - <p>Présence sur internet</p> + <p class="uppercase">Présence sur internet</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -291,7 +291,7 @@ [ngClass]="{ warningBorder: !isFieldValid('age', 'categories') && structure.categoriesDisplay.age }" > <div class="sectionHeader"> - <p>Public admis</p> + <p class="uppercase">Public admis</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -326,7 +326,7 @@ <section class="publics"> <div class="sectionHeader"> - <p>Public spécifique admis</p> + <p class="uppercase">Public spécifique admis</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -408,7 +408,7 @@ <section class="proceduresAccompaniment"> <div class="sectionHeader"> - <p>Démarches en ligne</p> + <p class="uppercase">Démarches en ligne</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -435,7 +435,7 @@ <section class="proceduresAccompaniment"> <div class="sectionHeader"> - <p>Autres démarches proposées</p> + <p class="uppercase">Autres démarches proposées</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -460,7 +460,7 @@ <section class="learning"> <div class="sectionHeader"> - <p>Compétences numériques</p> + <p class="uppercase">Compétences numériques</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -533,7 +533,7 @@ [ngClass]="{ warningBorder: !isFieldValid('freeWorkShop') }" > <div class="sectionHeader"> - <p>Gratuité des ateliers</p> + <p class="uppercase">Gratuité des ateliers</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -556,7 +556,7 @@ <section class="wifi"> <div class="sectionHeader"> - <p>Wifi</p> + <p class="uppercase">Wifi</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -580,7 +580,7 @@ <section class="equipements"> <div class="sectionHeader"> - <p>Matériel mis à disposition</p> + <p class="uppercase">Matériel mis à disposition</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -614,7 +614,7 @@ <section class="labels"> <div class="sectionHeader"> - <p>Labelisations proposées</p> + <p class="uppercase">Labelisations proposées</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -639,7 +639,7 @@ <section class="solidarityMaterial"> <div class="sectionHeader"> - <p>Vente de matériel à prix solidaire</p> + <p class="uppercase">Vente de matériel à prix solidaire</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -664,7 +664,7 @@ <section class="covid"> <div class="sectionHeader"> - <p>Informations spécifiques à la période COVID</p> + <p class="uppercase">Informations spécifiques à la période COVID</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -687,7 +687,7 @@ <section class="dataShare"> <div class="sectionHeader"> - <p>Partage de données sur data.grandlyon.com</p> + <p class="uppercase">Partage de données sur data.grandlyon.com</p> <app-button class="hide-on-mobile" [text]="'Modifier'" @@ -709,7 +709,7 @@ <section class="members"> <div class="sectionHeader"> - <p>Gérer les membres de la structure</p> + <p class="uppercase">Gérer les membres de la structure</p> <app-button class="hide-on-mobile" [text]="'Modifier'" diff --git a/src/app/profile/structure-edition-summary/structure-edition-summary.component.scss b/src/app/profile/structure-edition-summary/structure-edition-summary.component.scss index 3d57f2344..4cd30cd7e 100644 --- a/src/app/profile/structure-edition-summary/structure-edition-summary.component.scss +++ b/src/app/profile/structure-edition-summary/structure-edition-summary.component.scss @@ -53,7 +53,6 @@ justify-content: space-between; align-items: center; @include font-bold-18; - text-transform: uppercase; } .content { .row { diff --git a/src/app/shared/components/structure-detail-print/structure-detail-print.component.html b/src/app/shared/components/structure-detail-print/structure-detail-print.component.html index 8033fd4fd..28dccfc51 100644 --- a/src/app/shared/components/structure-detail-print/structure-detail-print.component.html +++ b/src/app/shared/components/structure-detail-print/structure-detail-print.component.html @@ -36,7 +36,7 @@ <!-- Opening Hours --> <div class="w-100 mobile-column flex row mb20"> <div *ngIf="structure.hours.hasData()" class="timeContainer"> - <h3 class="subtitle">HORAIRES</h3> + <h3 class="subtitle uppercase">horaires</h3> <div *ngFor="let day of structure.hours"> <div *ngIf="day.value.open" class="mb4"> <h4>{{ day.key | day }}</h4> @@ -50,7 +50,7 @@ </div> <!-- accessModality --> <div *ngIf="tclStopPoints.length"> - <h3 class="subtitle">ACCÈS</h3> + <h3 class="subtitle uppercase">accès</h3> <div class="flex column container"> <div *ngFor="let tclStop of tclStopPoints | slice : 0 : 3" class="flex column tclStop"> <p>{{ tclStop.name }}</p> @@ -71,7 +71,7 @@ </div> </div> <div *ngIf="structure.exceptionalClosures" class="mb20"> - <h3 class="subtitle">PRÉCISIONS SUR LES HORAIRES</h3> + <h3 class="subtitle uppercase">précisions sur les horaires</h3> <p>{{ structure.exceptionalClosures }}</p> </div> <div *ngIf="structure.remoteAccompaniment" class="bold-info"> diff --git a/src/app/structure-list/components/structure-details/structure-details.component.html b/src/app/structure-list/components/structure-details/structure-details.component.html index c80bf50ba..ee614452c 100644 --- a/src/app/structure-list/components/structure-details/structure-details.component.html +++ b/src/app/structure-list/components/structure-details/structure-details.component.html @@ -127,7 +127,7 @@ <div fxLayout="column" fxLayoutGap="10px"> <!-- Informations--> <div fxLayout="column"> - <h2>Informations</h2> + <h2 class="uppercase">informations</h2> <div class="info-block"> <div> {{ structure.structureType?.name }} @@ -199,7 +199,7 @@ <div class="hours-services-block"> <!-- Opening Hours --> <div *ngIf="structure.hours.hasData()" fxLayout="column"> - <h2>Horaires</h2> + <h2 class="uppercase">horaires</h2> <div fxLayout="column" class="opening-hours"> <div *ngFor="let day of structure.hours"> <div *ngIf="day.value.open" class="opening-hour" fxLayout="row" fxLayoutAlign="flex-start flex-start"> @@ -220,7 +220,7 @@ *ngIf="structure.categoriesDisplay.accessModality && structure.categoriesDisplay.accessModality.length > 0" fxLayout="column" > - <h2>Modalités d'accès</h2> + <h2 class="uppercase">modalités d'accès</h2> <div fxLayout="column" fxLayoutGap="10px" class="services-block"> <div fxLayout="column" fxLayoutGap="8px"> <div @@ -250,7 +250,7 @@ fxLayoutAlign="baseline baseline" fxLayoutGap="8px" > - <h2>Publics Accueillis</h2> + <h2 class="uppercase">publics accueillis</h2> <div fxLayout="column" fxLayoutGap="8px" class="services-block"> <div *ngIf="structure.categoriesDisplay.age && structure.categoriesDisplay.age.length" @@ -303,7 +303,7 @@ fxLayoutAlign="baseline baseline" fxLayoutGap="8px" > - <h2>Labellisations</h2> + <h2 class="uppercase">labellisations</h2> <div class="wrapper"> <div *ngFor="let label of structure.categories.labelsQualifications.sort()"> <app-logo-card [name]="label" /> @@ -319,7 +319,7 @@ fxLayoutAlign="baseline baseline" fxLayoutGap="8px" > - <h2>Accompagnant·es numériques</h2> + <h2 class="uppercase">accompagnant·es numériques</h2> <div fxLayout="column" fxLayoutGap="8px" fxLayoutAlign="baseline baseline"> <div *ngFor="let member of membersWithJobWithPO" class="member-card"> <app-svg-icon class="avatar" [type]="'avatar'" [icon]="'defaultAvatar'" [iconClass]="'icon-40'" /> @@ -344,7 +344,7 @@ fxLayoutAlign="baseline baseline" fxLayoutGap="12px" > - <h2>Aides aux démarches en ligne</h2> + <h2 class="uppercase">aides aux démarches en ligne</h2> <div fxLayout="column"> <div class="wrapper"> <div *ngFor="let accompagnement of structure.categoriesDisplay.onlineProcedures.sort()"> @@ -368,7 +368,7 @@ fxLayoutAlign="baseline baseline" fxLayoutGap="8px" > - <h2>Compétences numériques</h2> + <h2 class="uppercase">compétences numériques</h2> <div *ngIf="structure.freeWorkShop !== FreeWorkshop.no"> <span class="bold-info"> L'accès à {{ multipleWorkshop() ? 'ces formations' : 'cette formation' }} est gratuit @@ -414,7 +414,7 @@ class="structure-details-block" fxLayoutAlign="baseline baseline" > - <h2>Matériel et wifi</h2> + <h2 class="uppercase">matériel et wifi</h2> <div fxLayout="column"> <div *ngIf="structure.categories.selfServiceMaterial.includes('wifiEnAccesLibre')"> {{ getEquipmentsLabel(Equipment.wifi) }} @@ -440,7 +440,7 @@ class="structure-details-block" fxLayoutAlign="baseline baseline" > - <h2>Vente de matériel a prix solidaire</h2> + <h2 class="uppercase">vente de matériel à prix solidaire</h2> <div fxLayout="column"> <p *ngFor="let equipement of structure.categoriesDisplay.solidarityMaterial" class="no-margin-bottom"> <span>{{ equipement }}</span> @@ -455,7 +455,7 @@ class="structure-details-block noSeparator" fxLayoutAlign="baseline baseline" > - <h2>Accès</h2> + <h2 class="uppercase">accès</h2> <div fxLayout="column wrap" fxLayoutGap="24px"> <div *ngFor="let tclStop of tclStopPoints | slice : 0 : 3"> {{ tclStop.name }} diff --git a/src/app/structure-list/components/structure-details/structure-details.component.scss b/src/app/structure-list/components/structure-details/structure-details.component.scss index be34ccbae..de2469bd7 100644 --- a/src/app/structure-list/components/structure-details/structure-details.component.scss +++ b/src/app/structure-list/components/structure-details/structure-details.component.scss @@ -22,7 +22,6 @@ h1 { h2 { @include font-bold-14; color: $grey-3; - text-transform: uppercase; margin-top: 0; margin-bottom: 12px; } diff --git a/src/styles.scss b/src/styles.scss index 523d80120..5fabaabf5 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -627,3 +627,6 @@ h2, p { margin: 0; } +.uppercase { + text-transform: uppercase; +} -- GitLab From 8db0b50a06fe68322970e94e1026a85d6c1822df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Pailharey?= <rpailharey@grandlyon.com> Date: Wed, 6 Dec 2023 17:54:18 +0100 Subject: [PATCH 10/18] review: improved scroll + not connected --- src/app/annuaire/result-list/result-list.component.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/annuaire/result-list/result-list.component.scss b/src/app/annuaire/result-list/result-list.component.scss index 397eb482d..cbdc1a29e 100644 --- a/src/app/annuaire/result-list/result-list.component.scss +++ b/src/app/annuaire/result-list/result-list.component.scss @@ -5,9 +5,8 @@ .results { margin-top: 1rem; - padding-right: 0.5rem; height: calc(100vh - $footer-height - $header-height - 7rem); - overflow-y: scroll; + overflow-y: auto; overflow-anchor: none; @media #{$phone} { @@ -36,6 +35,7 @@ } } &.notEmpty { + padding-right: 0.5rem; .pagination { display: flex; flex-direction: column; @@ -49,6 +49,7 @@ } } &.unlogged { + height: auto; text-align: center; padding: 70px 40px; @media #{$tablet} { -- GitLab From 8b2843c15f3fdcccb492cc57d6bce12c85c8cda0 Mon Sep 17 00:00:00 2001 From: Bastien DUMONT <bdumont@grandlyon.com> Date: Thu, 7 Dec 2023 08:06:52 +0000 Subject: [PATCH 11/18] Apply 1 suggestion(s) to 1 file(s) --- src/app/annuaire/result-list/result-list.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/annuaire/result-list/result-list.component.html b/src/app/annuaire/result-list/result-list.component.html index 4ab8f97a9..12e4de45b 100644 --- a/src/app/annuaire/result-list/result-list.component.html +++ b/src/app/annuaire/result-list/result-list.component.html @@ -20,7 +20,7 @@ </div> <div class="users"> <div - *ngFor="let user of userList; let index = index" + *ngFor="let user of userList;" class="singleUser" tabindex="0" role="link" -- GitLab From a092b243acc738379b9634a1272b4e7de654514a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Pailharey?= <rpailharey@grandlyon.com> Date: Thu, 7 Dec 2023 09:08:35 +0100 Subject: [PATCH 12/18] review: unused class --- src/app/annuaire/annuaire.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/annuaire/annuaire.component.html b/src/app/annuaire/annuaire.component.html index b06530b3f..3405fb5c3 100644 --- a/src/app/annuaire/annuaire.component.html +++ b/src/app/annuaire/annuaire.component.html @@ -1,4 +1,4 @@ -<div class="annuaire-container" [ngClass]="{ logged: userIsLoggedIn() }"> +<div class="annuaire-container"> <h1 class="visually-hidden">Annuaire</h1> <div *ngIf="userIsLoggedIn()"> <app-annuaire-header -- GitLab From bc95e983c901c194e3dccdef0cdd92790f54a852 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Pailharey?= <rpailharey@grandlyon.com> Date: Thu, 7 Dec 2023 09:14:34 +0100 Subject: [PATCH 13/18] review: update not connected illustration --- src/assets/ico/annuaire-unlogged.svg | 527 ++++++++++++++------------- 1 file changed, 275 insertions(+), 252 deletions(-) diff --git a/src/assets/ico/annuaire-unlogged.svg b/src/assets/ico/annuaire-unlogged.svg index 5b4b09a45..50cf46c77 100644 --- a/src/assets/ico/annuaire-unlogged.svg +++ b/src/assets/ico/annuaire-unlogged.svg @@ -1,253 +1,276 @@ <svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M142.603 137.347L160.313 147.345C166.65 150.922 166.706 156.799 160.439 160.417L104.045 192.976C97.8274 196.566 87.7464 196.566 81.5286 192.976L41.3924 169.804" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> -<path d="M66.5 94.4999L33.0409 74.8039C26.9259 71.2042 26.9744 65.4325 33.1496 61.8672L77.934 36.0109C84.1518 32.421 94.2329 32.421 100.451 36.0109L168.296 75.1812" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> -<path d="M87.3501 44.8181C88.2118 45.3162 88.2182 46.1259 87.3597 46.624L59.807 62.6264C58.9485 63.1245 57.5499 63.1245 56.6881 62.6264L27.6499 45.8721C26.7882 45.374 26.7818 44.5642 27.6403 44.0662L55.193 28.0637C56.0483 27.5657 57.4501 27.5657 58.3119 28.0637L87.3501 44.8181Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> -<path d="M46.8908 38.1021C46.8618 38.1182 46.8362 38.1343 46.8072 38.1503C45.9358 38.703 45.9358 39.5578 46.8072 40.1073C47.4085 40.4864 48.2702 40.6343 49.0773 40.5507C49.193 40.5378 49.2798 40.6085 49.2252 40.6696C48.2702 41.7043 48.4631 42.9993 49.8072 43.9215C49.8843 43.9729 50.0226 43.9761 50.1062 43.9279L56.9453 39.9819C57.0289 39.9337 57.0257 39.8534 56.9357 39.8084C55.3441 39.0276 53.1093 38.9119 51.3184 39.4614C51.2123 39.4935 51.0933 39.4421 51.1126 39.3746C51.2508 38.9248 51.0226 38.446 50.4245 38.1021C49.4567 37.5366 47.8715 37.5366 46.8908 38.1021Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M65.8648 38.7255C66.0545 38.8348 66.0545 39.0115 65.868 39.1208L49.8232 48.4394C49.6367 48.5487 49.3281 48.5487 49.1384 48.4394C48.9487 48.3302 48.9519 48.1535 49.1384 48.0442L65.1831 38.7255C65.3696 38.6195 65.6751 38.6163 65.8648 38.7255Z" fill="#706F6F"/> -<path d="M56.5017 46.8715C56.6914 46.9807 56.6914 47.1575 56.5049 47.2667L52.3474 49.6832C52.1609 49.7924 51.8555 49.7924 51.6658 49.6832C51.476 49.5739 51.4728 49.3972 51.6625 49.2879L55.82 46.8715C56.0065 46.7622 56.3152 46.7622 56.5017 46.8715Z" fill="#706F6F"/> -<path d="M67.9773 40.2487C68.1671 40.3579 68.1638 40.5347 67.9773 40.6439L59.7299 45.435C59.5434 45.5443 59.2379 45.5443 59.0482 45.435C58.8585 45.3257 58.8585 45.149 59.045 45.0398L67.2925 40.2487C67.479 40.1394 67.7844 40.1362 67.9773 40.2487Z" fill="#706F6F"/> -<path d="M62.5434 51.2802C62.7781 51.4151 62.7813 51.6369 62.5466 51.775L59.1286 53.7609C58.8939 53.8958 58.5113 53.8958 58.2766 53.7609L54.8361 51.775C54.6014 51.6401 54.5982 51.4183 54.8329 51.2802L58.2509 49.2943C58.4856 49.1594 58.8682 49.1594 59.1029 49.2943L62.5434 51.2802Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> -<path d="M67.9805 47.8771C68.2153 48.0121 68.2185 48.2338 67.9838 48.372L64.5658 50.3578C64.3311 50.4928 63.9484 50.4928 63.7137 50.3578L60.2732 48.372C60.0385 48.237 60.0353 48.0153 60.27 47.8771L63.688 45.8913C63.9227 45.7563 64.3053 45.7563 64.54 45.8913L67.9805 47.8771Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> -<path d="M73.7201 44.3265C74.0577 44.5225 74.0609 44.8406 73.7233 45.0334L70.3053 47.0192C69.9709 47.2153 69.4211 47.2153 69.0835 47.0192L65.643 45.0334C65.3054 44.8374 65.3022 44.5225 65.6398 44.3265L69.0578 42.3406C69.3922 42.1446 69.942 42.1446 70.2796 42.3406L73.7201 44.3265Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> -<path d="M60.0852 26.4489C60.4635 26.668 60.4678 27.0203 60.0895 27.2394L57.8798 28.524C57.5015 28.7431 56.891 28.7431 56.5127 28.524L54.2859 27.2394C53.9076 27.0203 53.9033 26.668 54.2816 26.4489L56.4913 25.1643C56.8696 24.9452 57.48 24.9452 57.8583 25.1643L60.0852 26.4489Z" fill="#DA3635"/> -<path d="M58.5455 26.6293C58.5756 26.6465 58.5928 26.6679 58.5971 26.6937C58.5928 26.7453 58.5197 26.7882 58.4337 26.7882H57.4149L57.3504 26.8226L57.3547 27.4112C57.3504 27.4627 57.2773 27.5057 57.1914 27.5057C57.1441 27.5057 57.1054 27.4971 57.0753 27.4799C57.0452 27.4628 57.028 27.437 57.028 27.4112L57.0237 26.8226L56.9592 26.7839H55.9403C55.8931 26.7839 55.8544 26.7754 55.8243 26.7582C55.7942 26.741 55.777 26.7152 55.777 26.6894C55.777 26.6379 55.8501 26.5949 55.9403 26.5949H56.9592L57.0237 26.5605V25.972C57.0237 25.9204 57.0968 25.8774 57.1871 25.8774C57.2343 25.8774 57.273 25.8903 57.3031 25.9075C57.3332 25.9247 57.3504 25.9462 57.3547 25.972V26.5605L57.4192 26.5992H58.438C58.4767 26.5992 58.5154 26.6121 58.5455 26.6293Z" fill="white"/> -<path d="M45.7227 53.7692C47.499 54.7931 47.5063 56.4537 45.7444 57.4811C43.9825 58.505 41.1136 58.505 39.3372 57.4811C37.5609 56.4573 37.5537 54.7967 39.3192 53.7692C41.0847 52.7418 43.95 52.7454 45.7227 53.7692Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> -<path d="M78.7227 34.7692C80.499 35.7931 80.5063 37.4537 78.7444 38.4811C76.9825 39.505 74.1136 39.505 72.3372 38.4811C70.5609 37.4573 70.5537 35.7967 72.3192 34.7692C74.0847 33.7418 76.95 33.7454 78.7227 34.7692Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> -<path fill-rule="evenodd" clip-rule="evenodd" d="M92.0481 60.1646C91.7298 59.9452 91.3135 59.929 90.9791 60.123L16.2987 103.428C15.6638 103.796 15.6286 104.7 16.2329 105.117L61.2513 136.136C61.2513 136.136 61.2514 136.136 61.2515 136.136C61.2515 136.136 61.2516 136.136 61.2517 136.136L107.428 157.563C107.724 157.701 108.068 157.685 108.35 157.521L182.833 114.331C183.533 113.925 183.486 112.9 182.752 112.559L137.846 91.7207C137.846 91.7207 137.846 91.7207 137.846 91.7207V91.7206C137.846 91.7206 137.846 91.7205 137.846 91.7206C137.846 91.7206 137.846 91.7206 137.846 91.7206L92.0481 60.1646Z" fill="white"/> -<path d="M137.846 91.7206L137.562 92.1323L137.846 91.7206ZM137.846 91.7207L137.635 92.1743L137.846 91.7207ZM182.833 114.331L183.084 114.764L182.833 114.331ZM182.752 112.559L182.542 113.013L182.752 112.559ZM107.428 157.563L107.638 157.11L107.428 157.563ZM108.35 157.521L108.601 157.954L108.35 157.521ZM61.2517 136.136L61.4621 135.682L61.2517 136.136ZM61.2513 136.136L60.9676 136.547L61.2513 136.136ZM90.9791 60.123L91.2299 60.5555L90.9791 60.123ZM92.0481 60.1646L92.3318 59.7529L92.0481 60.1646ZM16.2329 105.117L15.9492 105.528L16.2329 105.117ZM16.5495 103.861L91.2299 60.5555L90.7283 59.6904L16.0479 102.995L16.5495 103.861ZM61.535 135.724L16.5166 104.705L15.9492 105.528L60.9676 136.547L61.535 135.724ZM107.638 157.11L61.4621 135.682L61.0412 136.589L107.217 158.017L107.638 157.11ZM182.582 113.899L108.1 157.089L108.601 157.954L183.084 114.764L182.582 113.899ZM137.635 92.1743L182.542 113.013L182.963 112.105L138.056 91.2672L137.635 92.1743ZM137.346 91.7206V91.7207H138.346V91.7206H137.346ZM91.7644 60.5763L137.562 92.1323L138.129 91.3088L92.3318 59.7529L91.7644 60.5763ZM137.598 91.2865C137.77 91.1877 137.977 91.2038 138.129 91.3088L137.562 92.1323C137.715 92.2374 137.921 92.2534 138.094 92.1547L137.598 91.2865ZM138.346 91.7206C138.346 91.3367 137.931 91.0959 137.598 91.2865L138.094 92.1547C137.761 92.3451 137.346 92.1045 137.346 91.7206H138.346ZM138.056 91.2672C138.233 91.3491 138.346 91.526 138.346 91.7207H137.346C137.346 91.9153 137.459 92.0923 137.635 92.1743L138.056 91.2672ZM183.084 114.764C184.134 114.155 184.063 112.616 182.963 112.105L182.542 113.013C182.909 113.183 182.932 113.696 182.582 113.899L183.084 114.764ZM107.217 158.017C107.661 158.223 108.178 158.199 108.601 157.954L108.1 157.089C107.959 157.171 107.786 157.178 107.638 157.11L107.217 158.017ZM61.505 136.567C61.358 136.653 61.1842 136.656 61.0412 136.589L61.4621 135.682C61.319 135.616 61.1451 135.618 60.998 135.705L61.505 136.567ZM60.9676 136.547C61.1277 136.658 61.3373 136.665 61.505 136.567L60.998 135.705C61.1655 135.606 61.3749 135.614 61.535 135.724L60.9676 136.547ZM91.2299 60.5555C91.3971 60.4585 91.6052 60.4666 91.7644 60.5763L92.3318 59.7529C91.8543 59.4238 91.2299 59.3995 90.7283 59.6904L91.2299 60.5555ZM16.0479 102.995C15.0955 103.548 15.0427 104.904 15.9492 105.528L16.5166 104.705C16.2144 104.497 16.232 104.045 16.5495 103.861L16.0479 102.995Z" fill="#DA3635"/> -<path fill-rule="evenodd" clip-rule="evenodd" d="M93.2787 66.1783C92.9604 65.9589 92.5441 65.9427 92.2097 66.1366L24.8316 105.207C24.1967 105.575 24.1615 106.479 24.7659 106.896L64.8471 134.513C65.1654 134.732 65.5816 134.749 65.9161 134.555L133.294 95.484C133.929 95.1158 133.964 94.2119 133.36 93.7955L93.2787 66.1783ZM135.133 94.9109C134.837 94.7735 134.493 94.7892 134.21 94.9529L67.0302 133.909C66.3303 134.315 66.377 135.34 67.1109 135.681L107.098 154.236C107.394 154.374 107.738 154.358 108.02 154.194L175.2 115.239C175.9 114.833 175.853 113.807 175.12 113.466L135.133 94.9109Z" fill="#EDEDED"/> -<path d="M30.1357 104.232L90.864 69.0171C90.9506 68.9673 91.0688 68.9756 91.1987 69.0487L30.4704 104.263C30.3422 104.19 30.2223 104.182 30.1357 104.232Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M30.4703 104.263L91.1986 69.0486L92.6902 70.0735L31.9619 105.29L30.4703 104.263Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M31.9369 104.523L92.6652 69.3079C92.6818 69.298 92.7018 69.2897 92.7218 69.2847L31.9918 104.499C31.9718 104.504 31.9535 104.513 31.9369 104.523Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M31.9386 103.69L92.6669 68.4755C92.6919 68.4606 92.7202 68.4522 92.7501 68.4473L32.0218 103.662C31.9919 103.667 31.9636 103.675 31.9386 103.69Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M31.9419 102.818L92.6685 67.6034C92.6952 67.5885 92.7235 67.5785 92.7568 67.5752L32.0285 102.79C31.9968 102.793 31.9669 102.803 31.9419 102.818Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M31.9453 101.245L92.6736 66.0304C92.7552 65.9823 92.87 65.9906 92.9932 66.0603L32.2649 101.277C32.1418 101.205 32.0285 101.199 31.9453 101.245Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M69.1141 130.918L129.841 95.7034L129.846 95.7084L69.1191 130.923L69.1141 130.918Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M69.119 130.923L129.846 95.7085H129.852L69.124 130.923H69.119Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M132.121 98.4875L71.3931 133.702C71.493 133.644 71.5545 133.521 71.5562 133.345C71.5562 133.264 71.5429 133.177 71.5179 133.091L132.246 97.8762C132.271 97.9626 132.285 98.049 132.285 98.1304C132.283 98.3048 132.221 98.4294 132.121 98.4875Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M106 148.5V144L166 109L168.5 114L108 149.5L106 148.5Z" fill="white"/> -<path d="M168.851 114.705L108.122 149.92C108.217 149.865 108.272 149.739 108.257 149.564C108.234 149.272 108.029 148.945 107.745 148.784L168.473 113.569C168.759 113.73 168.962 114.057 168.986 114.35C168.999 114.524 168.946 114.651 168.851 114.705Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M107.745 148.784C108.031 148.945 108.234 149.272 108.257 149.564C108.282 149.875 108.092 150.031 107.833 149.912L71.518 133.091C71.5429 133.177 71.5563 133.264 71.5563 133.345C71.5546 133.697 71.3049 133.84 70.9969 133.662L67.2312 131.493C66.9233 131.315 66.6736 130.885 66.6752 130.533C66.6752 130.451 66.6902 130.38 66.7152 130.323L30.422 105.315C30.164 105.137 29.9759 104.763 30.0025 104.483C30.0275 104.219 30.2322 104.127 30.472 104.265L31.9619 105.29C31.8554 105.122 31.7938 104.925 31.8088 104.76C31.8221 104.616 31.892 104.526 31.9936 104.501C31.8687 104.325 31.7954 104.107 31.8121 103.928C31.8271 103.77 31.9086 103.679 32.0235 103.664C31.8837 103.483 31.7971 103.247 31.8154 103.056C31.8304 102.896 31.9136 102.805 32.0318 102.79C31.8887 102.607 31.8004 102.37 31.8188 102.177C31.8287 102.067 31.872 101.991 31.9353 101.948C31.8537 101.797 31.8088 101.629 31.8221 101.484C31.8454 101.232 32.0418 101.145 32.2699 101.277L68.9942 126.581L105.98 143.742C106.253 143.897 106.448 144.207 106.469 144.486C106.483 144.644 106.436 144.76 106.353 144.817C106.416 144.932 106.458 145.058 106.468 145.179C106.484 145.393 106.394 145.528 106.251 145.546C106.368 145.694 106.451 145.883 106.464 146.059C106.481 146.27 106.394 146.407 106.255 146.427C106.368 146.573 106.449 146.759 106.463 146.933C106.478 147.131 106.403 147.262 106.278 147.294C106.378 147.435 106.448 147.604 106.459 147.764C106.474 147.947 106.411 148.071 106.303 148.116L107.745 148.784Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M68.9893 126.581L129.718 91.3662L166.703 108.529L105.975 143.744L68.9893 126.581Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M32.2649 101.277L92.9932 66.062L129.717 91.3662L68.9892 126.581L32.2649 101.277Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M132.571 136.269C133.477 136.79 133.482 137.636 132.581 138.157L127.092 141.34C126.193 141.862 124.732 141.862 123.826 141.34L120.934 139.674L129.678 134.604L132.571 136.269Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M139.708 131.26C140.612 131.782 140.617 132.626 139.718 133.147L134.229 136.33C133.33 136.852 131.868 136.852 130.964 136.33L128.073 134.664L136.816 129.594L139.708 131.26Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M147.226 126.047C148.13 126.569 148.135 127.413 147.236 127.935L141.747 131.117C140.848 131.639 139.386 131.639 138.482 131.117L135.591 129.451L144.334 124.381L147.226 126.047Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M154.72 120.788C155.624 121.31 155.629 122.154 154.73 122.675L149.242 125.858C148.343 126.38 146.881 126.38 145.977 125.858L143.085 124.192L151.829 119.122L154.72 120.788Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M162.292 115.713C163.197 116.235 163.202 117.081 162.303 117.601L156.815 120.783C155.916 121.305 154.452 121.305 153.547 120.783L150.655 119.117L159.398 114.047L162.292 115.713Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M169.488 110.237C170.392 110.759 170.397 111.602 169.498 112.124L164.01 115.307C163.111 115.828 161.649 115.828 160.745 115.307L157.853 113.641L166.597 108.571L169.488 110.237Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M92.6487 75.7591C93.3749 75.3399 94.5521 75.3399 95.2783 75.7591L98.1088 77.3933C98.7516 77.7644 98.8354 78.3493 98.3071 78.7764L93.4469 82.7048C92.9725 83.0883 92.1203 83.2483 91.3459 83.0993L88.2927 82.5117C86.1133 85.4647 86.1133 88.8261 88.2927 91.7792L91.3459 91.1916C92.1203 91.0426 92.9725 91.2026 93.4469 91.5861L98.3071 95.5145C98.8354 95.9415 98.7516 96.5265 98.1088 96.8975L95.2783 98.5318C94.5521 98.951 93.3749 98.951 92.6487 98.5318L90.0192 97.0136C80.5794 91.5636 80.5794 82.7273 90.0192 77.2773L92.6487 75.7591Z" fill="#DA3635"/> -<rect width="3.69092" height="31.2471" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 62.4653 92.2888)" fill="#DA3635"/> -<rect width="3.69092" height="31.2471" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 57.9817 95.2778)" fill="#DA3635"/> -<rect width="3.69092" height="9.39302" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 53 99.2632)" fill="#DA3635"/> -<rect width="3.69092" height="9.39302" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 69.4397 109.725)" fill="#DA3635"/> -<rect width="3.82749" height="3.69147" rx="1.84574" transform="matrix(0.866025 -0.5 0.866025 0.5 62.9635 105.808)" fill="#DA3635"/> -<path d="M141 108.504L141.104 108.683C141.567 109.482 142.467 109.92 143.381 109.791L143.569 109.765C144.38 109.65 145.177 110.044 145.579 110.758V110.758C145.848 111.234 146.301 111.579 146.831 111.711L150 112.5" stroke="black" stroke-linecap="round"/> -<path d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" fill="white"/> -<path d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" fill="white"/> -<path d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" fill="white"/> -<path d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" fill="white"/> -<path d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" fill="white"/> -<path d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" fill="white"/> -<path d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" fill="white"/> -<path d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" fill="white"/> -<path d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" fill="white"/> -<path d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" fill="white"/> -<path d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" fill="white"/> -<path d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" fill="white"/> -<path d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" fill="white"/> -<path d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" fill="white"/> -<path d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M125.581 78.234C125.066 78.411 124.696 78.7374 124.314 79.1025C123.866 79.5341 123.169 79.9324 122.892 80.5244C122.477 81.4261 122.267 83.0914 122.184 84.0761C122.062 85.2711 122.151 86.4662 122.25 87.6667C122.25 87.6667 122.223 88.4301 124.043 87.5173C124.043 87.5173 123.75 89.6251 124.795 89.9737C125.869 90.5656 126.981 90.3388 128.192 90.3388C129.509 90.3222 130.776 90.0622 131.312 88.7787C131.628 88.231 131.307 86.6045 131.307 86.6045C132.192 87.1245 133.376 86.1951 133.376 86.1951C133.603 84.4966 132.491 82.6931 131.866 81.1661C131.534 80.3695 131.152 79.7443 130.582 79.0859C130.355 78.8093 130.062 78.2561 129.785 78.0625C129.337 77.7139 129.664 77.8356 129.144 77.9573C128.07 78.2174 126.333 80.209 125.725 78.2506C125.736 78.2506 125.725 78.1842 125.581 78.234Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M125.736 78.2506C126.344 80.209 128.076 78.2174 129.155 77.9573C129.675 77.8356 129.343 77.7139 129.797 78.0625C130.073 78.2506 130.366 78.8093 130.593 79.0859C131.163 79.7443 131.545 80.3695 131.877 81.1661C132.502 82.6931 133.608 84.4966 133.387 86.1951C133.387 86.1951 132.209 87.1245 131.318 86.6045C131.318 86.6045 131.639 88.231 131.323 88.7787C130.787 90.0622 129.52 90.3222 128.203 90.3388C126.992 90.3388 125.88 90.5656 124.806 89.9737C123.761 89.6251 124.054 87.5173 124.054 87.5173C122.228 88.4301 122.261 87.6667 122.261 87.6667C122.156 86.4717 122.073 85.2767 122.195 84.0761C122.284 83.0859 122.488 81.4261 122.903 80.5244C123.18 79.9324 123.877 79.5341 124.325 79.1025C124.707 78.7374 125.072 78.3944 125.592 78.234C125.581 78.234 125.675 78.1786 125.736 78.2506Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" fill="white"/> -<path d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" fill="#DA3635"/> -<path d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M122 80.4693L122.365 78.71L124.44 77.5039L126.149 78.0571L139.942 101.797L135.792 104.209L122 80.4693Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M135.792 104.209L136.135 102.405L138.21 101.205L139.942 101.797L140.755 107.976L135.792 104.209Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M138.614 106.35L138.857 105.869C139.045 105.492 139.444 105.26 139.87 105.282L140.406 105.31L140.76 107.982L138.614 106.35Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M124.44 77.5039L138.21 101.205L139.942 101.797L126.149 78.0571L124.44 77.5039Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M136.135 102.405L122.365 78.71L122 80.4693L135.792 104.209L136.135 102.405Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M122.903 87.4346C122.903 87.4346 124.707 87.1967 125.57 86.4056L124.956 85.2991C124.956 85.2991 123.357 85.9187 123.196 86.1455C123.036 86.3779 122.903 87.4346 122.903 87.4346Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M124.961 85.2989C124.961 85.2989 124.961 84.2975 125.348 83.9822C125.741 83.6724 125.348 84.718 125.348 84.718C125.348 84.718 126.272 83.9213 126.538 84.0043C126.803 84.0873 127.091 84.9504 127.008 85.3653C126.925 85.7802 125.719 86.2284 125.57 86.4054L124.961 85.2989Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M123.075 87.9048C123.075 87.9048 125.349 86.66 125.57 86.4055L124.956 85.2991C124.956 85.2991 123.639 85.7638 123.257 86.0847" fill="white"/> -<path d="M123.075 87.9048C123.075 87.9048 125.349 86.66 125.57 86.4055L124.956 85.2991C124.956 85.2991 123.639 85.7638 123.257 86.0847" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M131.821 84.6515C131.821 84.6515 129.592 84.1813 129.155 83.6335L130.355 85.9018C130.355 85.9018 131.152 86.7427 132.496 86.6044" fill="white"/> -<path d="M131.821 84.6515C131.821 84.6515 129.592 84.1813 129.155 83.6335L130.355 85.9018C130.355 85.9018 131.152 86.7427 132.496 86.6044" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M129.575 81.3542C129.575 81.3542 130.333 84.0375 131.135 84.4856L129.575 81.3542Z" fill="white"/> -<path d="M129.575 81.3542C129.575 81.3542 130.333 84.0375 131.135 84.4856" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M180.108 74.1322C183.506 76.0828 183.52 79.2464 180.149 81.2038C176.779 83.1544 171.29 83.1544 167.892 81.2038C164.493 79.2533 164.48 76.0897 167.857 74.1322C171.235 72.1748 176.716 72.1817 180.108 74.1322Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> -<path d="M63.8991 162.813L45.8808 152.411C45.5898 152.243 45.1113 152.243 44.8203 152.411L13.2624 170.75C13.1144 170.833 13.0453 170.947 13.0453 171.055L13.0404 173.019C13.0404 173.132 13.1144 173.241 13.2624 173.329L31.2807 183.732C31.5717 183.9 32.0501 183.9 32.3411 183.732L63.8991 165.393C64.0421 165.309 64.1161 165.201 64.1161 165.087L64.121 163.124C64.121 163.139 64.1161 163.154 64.1112 163.168C64.1358 163.04 64.0668 162.907 63.8991 162.813Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> -<path d="M62.5919 162.562L45.4319 152.653C45.1507 152.49 44.7019 152.49 44.4207 152.653L14.3622 170.118C14.2241 170.197 14.1551 170.306 14.1551 170.409L14.1501 172.279C14.1501 172.387 14.2192 172.491 14.3622 172.575L31.5223 182.484C31.8035 182.647 32.2523 182.647 32.5335 182.484L62.5919 165.018C62.73 164.939 62.7991 164.831 62.7991 164.727L62.804 162.858C62.804 162.873 62.7991 162.887 62.7991 162.902C62.8188 162.779 62.7547 162.656 62.5919 162.562Z" fill="#EDEDED"/> -<path d="M34.8074 128.015L36.4845 128C36.4154 128 36.3513 128.02 36.2822 128.054L34.6052 128.069C34.6693 128.035 34.7384 128.02 34.8074 128.015Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M15.117 168.698L13.4399 168.712C13.2476 168.712 13.0651 168.574 12.9812 168.333L14.6583 168.318C14.7421 168.56 14.9246 168.703 15.117 168.698Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M6.96854 144.982L5.2915 144.997L34.6052 128.074L36.2822 128.059L6.96854 144.982Z" fill="#706F6F" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M14.6582 168.323L12.9812 168.333L5.03992 145.846L6.72189 145.836L14.6582 168.323Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M6.72194 145.836L5.0449 145.85C4.93146 145.525 5.03997 145.145 5.29153 145.002L6.96857 144.987C6.71701 145.13 6.6085 145.51 6.72194 145.836Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M36.2821 128.059C36.5336 127.916 36.8296 128.059 36.943 128.385L44.8794 150.872C44.9928 151.193 44.8843 151.572 44.6327 151.72L15.3191 168.644C15.0675 168.787 14.7716 168.644 14.6581 168.323L6.72178 145.836C6.60834 145.51 6.71685 145.131 6.96841 144.988L36.2821 128.059Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M36.0454 130.062C36.2822 129.924 36.5633 130.062 36.6669 130.367L44.1544 151.572C44.2629 151.878 44.1593 152.233 43.9226 152.371L16.281 168.333C16.0443 168.471 15.7631 168.333 15.6546 168.032L8.16711 146.827C8.0586 146.521 8.16218 146.161 8.40387 146.028L36.0454 130.062Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M62.9075 161.581L62.9026 163.455C62.9026 163.559 62.8335 163.667 62.6954 163.746L62.7004 161.872C62.8335 161.793 62.9026 161.69 62.9075 161.581Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M14.0515 171.046L14.0564 169.172C14.0564 169.28 14.1255 169.384 14.2685 169.468L14.2636 171.342C14.1206 171.263 14.0515 171.154 14.0515 171.046Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M62.6956 161.872L62.6907 163.751L32.5089 181.291L32.5138 179.417L62.6956 161.872Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M31.4978 179.417L31.4928 181.291L14.2588 171.342L14.2637 169.468L31.4978 179.417Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M32.5137 179.417L32.5088 181.291C32.2276 181.454 31.7738 181.454 31.4927 181.291L31.4976 179.417C31.7788 179.579 32.2326 179.579 32.5137 179.417Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M62.6957 161.285C62.9768 161.448 62.9768 161.709 62.7006 161.872L32.5188 179.412C32.2377 179.575 31.7839 179.575 31.5028 179.412L14.2687 169.463C13.9876 169.3 13.9876 169.039 14.2687 168.876L44.4505 151.336C44.7316 151.173 45.1854 151.173 45.4666 151.336L62.6957 161.285Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M49.7676 167.835C49.8267 167.869 49.8267 167.924 49.7676 167.963L43.2962 171.722C43.237 171.756 43.1383 171.756 43.0791 171.722L39.3847 169.591C39.3255 169.556 39.3255 169.502 39.3847 169.463L45.8561 165.704C45.9153 165.67 46.014 165.67 46.0731 165.704L49.7676 167.835Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M23.2578 136.785C23.4866 136.67 23.6186 136.47 23.5526 136.339C23.4866 136.207 23.2476 136.194 23.0187 136.309C22.7899 136.424 22.6579 136.623 22.7239 136.755C22.7899 136.886 23.0289 136.9 23.2578 136.785Z" fill="#706F6F"/> -<path d="M25.3172 172.328C25.2432 172.328 25.1741 172.313 25.1297 172.289L23.9805 171.623L26.0225 170.434C26.0669 170.409 26.136 170.395 26.2099 170.395C26.2839 170.395 26.353 170.409 26.3974 170.434L27.5466 171.1L25.5046 172.289C25.4602 172.313 25.3862 172.328 25.3172 172.328Z" fill="white"/> -<path d="M26.2001 170.641C26.2396 170.641 26.2643 170.651 26.2692 170.651L27.0535 171.105L25.3813 172.077C25.3764 172.081 25.3518 172.086 25.3123 172.086C25.2728 172.086 25.2482 172.077 25.2482 172.077L24.4639 171.623L26.136 170.651C26.141 170.646 26.1656 170.641 26.2001 170.641ZM26.2001 170.148C26.0867 170.148 25.9732 170.173 25.8894 170.222L23.7882 171.44C23.6155 171.539 23.6205 171.702 23.7931 171.8L25.0016 172.501C25.0854 172.55 25.1988 172.575 25.3123 172.575C25.4257 172.575 25.5392 172.55 25.623 172.501L27.7243 171.282C27.8969 171.184 27.892 171.021 27.7243 170.922L26.5158 170.222C26.427 170.173 26.3136 170.148 26.2001 170.148Z" fill="#706F6F"/> -<path d="M22.93 170.952C22.856 170.952 22.7869 170.937 22.7425 170.913L21.5933 170.247L24.972 168.279C25.0164 168.254 25.0854 168.239 25.1594 168.239C25.2334 168.239 25.3025 168.254 25.3469 168.279L26.4961 168.945L23.1174 170.913C23.073 170.937 23.004 170.952 22.93 170.952Z" fill="white"/> -<path d="M25.1545 168.486C25.194 168.486 25.2187 168.496 25.2187 168.496L26.0029 168.949L22.9941 170.7C22.9892 170.705 22.9645 170.71 22.925 170.71C22.8856 170.71 22.8609 170.7 22.8609 170.7L22.0767 170.247L25.0855 168.5C25.0953 168.491 25.12 168.486 25.1545 168.486ZM25.1545 167.992C25.0411 167.992 24.9276 168.017 24.8438 168.066L21.4058 170.064C21.2332 170.163 21.2381 170.325 21.4108 170.424L22.6192 171.125C22.708 171.174 22.8165 171.199 22.93 171.199C23.0434 171.199 23.1569 171.174 23.2407 171.125L26.6787 169.127C26.8513 169.028 26.8513 168.865 26.6787 168.767L25.4702 168.066C25.3814 168.017 25.268 167.992 25.1545 167.992Z" fill="#706F6F"/> -<path d="M20.5476 169.576C20.4736 169.576 20.4045 169.561 20.3552 169.536L19.2059 168.87L20.3453 168.205C20.3897 168.18 20.4588 168.165 20.5328 168.165C20.6068 168.165 20.6758 168.18 20.7202 168.205L21.8695 168.87L20.7251 169.536C20.6906 169.561 20.6216 169.576 20.5476 169.576Z" fill="white"/> -<path d="M20.5377 168.407C20.5771 168.407 20.6018 168.417 20.6018 168.417L21.3861 168.87L20.6117 169.319C20.6067 169.324 20.5821 169.329 20.5475 169.329C20.5081 169.329 20.4834 169.319 20.4834 169.319L19.6992 168.866L20.4686 168.417C20.4736 168.417 20.4982 168.407 20.5377 168.407ZM20.5377 167.914C20.4242 167.914 20.3108 167.938 20.2269 167.988L19.0234 168.688C18.8508 168.787 18.8557 168.949 19.0283 169.048L20.2368 169.748C20.3256 169.798 20.439 169.822 20.5475 169.822C20.661 169.822 20.7744 169.798 20.8583 169.748L22.0618 169.048C22.2345 168.949 22.2345 168.787 22.0618 168.688L20.8534 167.988C20.7646 167.938 20.6511 167.914 20.5377 167.914Z" fill="#706F6F"/> -<path d="M36.2032 160.48C36.1292 160.48 36.0602 160.465 36.0158 160.441L34.8616 159.775L36.0059 159.109C36.0503 159.084 36.1194 159.069 36.1933 159.069C36.2673 159.069 36.3364 159.084 36.3857 159.114L37.535 159.78L36.3956 160.445C36.3462 160.465 36.2772 160.48 36.2032 160.48Z" fill="white"/> -<path d="M36.1883 159.311C36.2278 159.311 36.2524 159.321 36.2573 159.321L37.0416 159.775L36.2721 160.224C36.2672 160.229 36.2426 160.233 36.2031 160.233C36.1636 160.233 36.139 160.224 36.139 160.224L35.3547 159.77L36.1291 159.321C36.1291 159.316 36.1538 159.311 36.1883 159.311ZM36.1883 158.818C36.0748 158.818 35.9614 158.843 35.8776 158.892L34.674 159.592C34.5014 159.691 34.5014 159.854 34.674 159.952L35.8825 160.653C35.9713 160.702 36.0847 160.727 36.1932 160.727C36.3067 160.727 36.4201 160.702 36.504 160.653L37.7075 159.952C37.8801 159.854 37.8752 159.691 37.7026 159.592L36.4941 158.892C36.4152 158.843 36.3017 158.818 36.1883 158.818Z" fill="#706F6F"/> -<path d="M40.9682 163.232C40.8942 163.232 40.8251 163.218 40.7807 163.193L39.6315 162.527L40.7758 161.861C40.8202 161.837 40.8893 161.822 40.9633 161.822C41.0372 161.822 41.1063 161.837 41.1507 161.866L42.3 162.532L41.1605 163.198C41.1112 163.213 41.0422 163.232 40.9682 163.232Z" fill="white"/> -<path d="M40.9583 162.064C40.9978 162.064 41.0224 162.073 41.0274 162.073L41.8116 162.527L41.0422 162.976C41.0372 162.981 41.0126 162.986 40.9731 162.986C40.9336 162.986 40.909 162.976 40.909 162.976L40.1247 162.522L40.8991 162.073C40.8991 162.069 40.9238 162.064 40.9583 162.064ZM40.9583 161.57C40.8449 161.57 40.7314 161.595 40.6476 161.644L39.4441 162.345C39.2714 162.443 39.2714 162.606 39.4441 162.705L40.6525 163.405C40.7363 163.454 40.8498 163.479 40.9632 163.479C41.0767 163.479 41.1901 163.454 41.274 163.405L42.4775 162.705C42.6501 162.606 42.6452 162.443 42.4775 162.345L41.2691 161.644C41.1852 161.595 41.0718 161.57 40.9583 161.57Z" fill="#706F6F"/> -<path d="M47.5331 156.658C47.4591 156.658 47.3901 156.643 47.3457 156.618L43.8091 154.576L44.9534 153.91C44.9978 153.886 45.0669 153.871 45.1409 153.871C45.2148 153.871 45.2839 153.886 45.3283 153.91L48.8649 155.952L47.7205 156.618C47.6712 156.643 47.6022 156.658 47.5331 156.658Z" fill="white"/> -<path d="M45.1359 154.112C45.1754 154.112 45.2001 154.122 45.205 154.122L48.3716 155.952L47.5972 156.401C47.5923 156.406 47.5676 156.411 47.5282 156.411C47.4887 156.411 47.4641 156.401 47.4641 156.401L44.2974 154.571L45.0718 154.122C45.0767 154.117 45.1014 154.112 45.1359 154.112ZM45.1359 153.619C45.0225 153.619 44.909 153.644 44.8252 153.693L43.6217 154.394C43.449 154.492 43.454 154.655 43.6266 154.754L47.2174 156.83C47.3062 156.88 47.4147 156.904 47.5282 156.904C47.6416 156.904 47.7551 156.88 47.8389 156.83L49.0424 156.13C49.2151 156.031 49.2151 155.868 49.0424 155.77L45.4516 153.693C45.3628 153.644 45.2494 153.619 45.1359 153.619Z" fill="#706F6F"/> -<path d="M43.2072 161.93C43.1332 161.93 43.0641 161.916 43.0198 161.891L41.8705 161.225L43.0148 160.559C43.0592 160.535 43.1283 160.52 43.2023 160.52C43.2762 160.52 43.3453 160.535 43.3946 160.559L44.5439 161.225L43.4045 161.891C43.3502 161.916 43.2812 161.93 43.2072 161.93Z" fill="white"/> -<path d="M43.1925 160.766C43.2319 160.766 43.2566 160.776 43.2566 160.776L44.0408 161.23L43.2664 161.679C43.2615 161.684 43.2368 161.689 43.1974 161.689C43.1579 161.689 43.1333 161.679 43.1333 161.679L42.349 161.225L43.1234 160.776C43.1333 160.771 43.1579 160.766 43.1925 160.766ZM43.1925 160.273C43.079 160.273 42.9656 160.298 42.8817 160.347L41.6782 161.047C41.5055 161.146 41.5105 161.309 41.6831 161.407L42.8916 162.108C42.9754 162.157 43.0889 162.182 43.2023 162.182C43.3158 162.182 43.4292 162.157 43.5131 162.108L44.7166 161.407C44.8892 161.309 44.8843 161.146 44.7166 161.047L43.5081 160.347C43.4193 160.298 43.3059 160.273 43.1925 160.273Z" fill="#706F6F"/> -<path d="M45.5897 163.306C45.5158 163.306 45.4467 163.292 45.4023 163.267L44.2531 162.601L45.3974 161.935C45.4418 161.911 45.5108 161.896 45.5848 161.896C45.6588 161.896 45.7279 161.911 45.7723 161.935L46.9265 162.601L45.7821 163.267C45.7328 163.292 45.6637 163.306 45.5897 163.306Z" fill="white"/> -<path d="M45.5799 162.142C45.6194 162.142 45.644 162.152 45.644 162.152L46.4283 162.606L45.6539 163.055C45.6489 163.06 45.6243 163.065 45.5848 163.065C45.5454 163.065 45.5207 163.055 45.5207 163.055L44.7364 162.601L45.5108 162.152C45.5158 162.147 45.5404 162.142 45.5799 162.142ZM45.5799 161.649C45.4664 161.649 45.353 161.674 45.2691 161.723L44.0656 162.424C43.893 162.522 43.8979 162.685 44.0656 162.784L45.2741 163.484C45.3579 163.533 45.4714 163.558 45.5848 163.558C45.6983 163.558 45.8117 163.533 45.8956 163.484L47.0991 162.784C47.2717 162.685 47.2668 162.522 47.0991 162.424L45.8906 161.723C45.8068 161.674 45.6933 161.649 45.5799 161.649Z" fill="#706F6F"/> -<path d="M47.6809 159.331C47.607 159.331 47.5379 159.316 47.4935 159.292L46.3442 158.626L49.723 156.663C49.7674 156.638 49.8364 156.623 49.9104 156.623C49.9844 156.623 50.0535 156.638 50.0978 156.663L51.2471 157.328L47.8684 159.296C47.8191 159.316 47.75 159.331 47.6809 159.331Z" fill="white"/> -<path d="M49.9054 156.865C49.9448 156.865 49.9695 156.875 49.9744 156.875L50.7587 157.328L47.7499 159.079C47.745 159.084 47.7203 159.089 47.6858 159.089C47.6463 159.089 47.6216 159.079 47.6216 159.079L46.8374 158.626L49.8462 156.88C49.8413 156.875 49.8659 156.865 49.9054 156.865ZM49.9054 156.372C49.7919 156.372 49.6785 156.396 49.5946 156.446L46.1567 158.443C45.9841 158.542 45.989 158.705 46.1616 158.803L47.3701 159.504C47.4539 159.553 47.5674 159.578 47.6808 159.578C47.7943 159.578 47.9077 159.553 47.9916 159.504L51.4295 157.506C51.6021 157.407 51.5972 157.245 51.4295 157.146L50.221 156.446C50.1323 156.396 50.0188 156.372 49.9054 156.372Z" fill="#706F6F"/> -<path d="M52.298 159.41C52.2241 159.41 52.155 159.395 52.1106 159.37L50.9564 158.705L52.1007 158.039C52.1451 158.014 52.2142 157.999 52.2882 157.999C52.3622 157.999 52.4312 158.014 52.4756 158.039L53.6249 158.705L52.4805 159.37C52.4411 159.395 52.372 159.41 52.298 159.41Z" fill="white"/> -<path d="M52.2881 158.241C52.3276 158.241 52.3523 158.251 52.3523 158.251L53.1365 158.705L52.3621 159.154C52.3572 159.158 52.3325 159.163 52.2931 159.163C52.2536 159.163 52.2289 159.154 52.2289 159.154L51.4447 158.7L52.2191 158.251C52.2289 158.251 52.2536 158.241 52.2881 158.241ZM52.2881 157.748C52.1747 157.748 52.0612 157.772 51.9774 157.822L50.7739 158.522C50.6012 158.621 50.6062 158.784 50.7739 158.882L51.9823 159.583C52.0662 159.632 52.1796 159.657 52.2931 159.657C52.4065 159.657 52.52 159.632 52.6038 159.583L53.8073 158.882C53.98 158.784 53.975 158.621 53.8073 158.522L52.5989 157.822C52.515 157.772 52.4016 157.748 52.2881 157.748Z" fill="#706F6F"/> -<path d="M45.4419 160.633C45.3679 160.633 45.2989 160.618 45.2545 160.594L44.1052 159.928L45.2496 159.262C45.294 159.237 45.363 159.222 45.437 159.222C45.511 159.222 45.58 159.237 45.6244 159.262L46.7737 159.928L45.6294 160.594C45.585 160.618 45.5159 160.633 45.4419 160.633Z" fill="white"/> -<path d="M45.4319 159.464C45.4714 159.464 45.4961 159.474 45.4961 159.474L46.2803 159.928L45.5059 160.377C45.501 160.382 45.4763 160.387 45.4369 160.387C45.3974 160.387 45.3728 160.377 45.3728 160.377L44.5885 159.923L45.3629 159.474C45.3678 159.474 45.3925 159.464 45.4319 159.464ZM45.4319 158.971C45.3185 158.971 45.205 158.996 45.1212 159.045L43.9177 159.745C43.745 159.844 43.75 160.007 43.9226 160.105L45.1311 160.806C45.2149 160.855 45.3284 160.88 45.4418 160.88C45.5553 160.88 45.6687 160.855 45.7525 160.806L46.9561 160.105C47.1287 160.007 47.1238 159.844 46.9561 159.745L45.7476 159.045C45.6588 158.996 45.5454 158.971 45.4319 158.971Z" fill="#706F6F"/> -<path d="M50.0636 160.707C49.9896 160.707 49.9206 160.692 49.8762 160.668L48.7269 160.002L49.8663 159.336C49.9107 159.311 49.9847 159.297 50.0538 159.297C50.1278 159.297 50.1968 159.311 50.2412 159.336L51.3905 160.002L50.2511 160.668C50.2067 160.692 50.1376 160.707 50.0636 160.707Z" fill="white"/> -<path d="M50.0538 159.543C50.0932 159.543 50.1179 159.553 50.1179 159.553L50.9021 160.007L50.1278 160.456C50.1228 160.46 50.0982 160.465 50.0636 160.465C50.0242 160.465 49.9995 160.456 49.9995 160.456L49.2152 160.002L49.9847 159.553C49.9896 159.548 50.0143 159.543 50.0538 159.543ZM50.0538 159.05C49.9403 159.05 49.8269 159.074 49.743 159.124L48.5395 159.824C48.3669 159.923 48.3718 160.086 48.5395 160.184L49.748 160.885C49.8318 160.934 49.9453 160.959 50.0587 160.959C50.1721 160.959 50.2856 160.934 50.3694 160.885L51.573 160.184C51.7456 160.086 51.7456 159.923 51.573 159.824L50.3645 159.124C50.2757 159.074 50.1672 159.05 50.0538 159.05Z" fill="#706F6F"/> -<path d="M47.8242 162.009C47.7503 162.009 47.6812 161.994 47.6368 161.97L46.4875 161.304L47.6319 160.638C47.6763 160.613 47.7453 160.598 47.8193 160.598C47.8933 160.598 47.9624 160.613 48.0067 160.638L49.156 161.304L48.0117 161.97C47.9673 161.994 47.8982 162.009 47.8242 162.009Z" fill="white"/> -<path d="M47.8144 160.84C47.8539 160.84 47.8785 160.85 47.8785 160.85L48.6628 161.304L47.8884 161.753C47.8834 161.758 47.8588 161.763 47.8193 161.763C47.7799 161.763 47.7552 161.753 47.7552 161.753L46.9709 161.299L47.7453 160.85C47.7552 160.85 47.7799 160.84 47.8144 160.84ZM47.8144 160.347C47.7009 160.347 47.5875 160.372 47.5036 160.421L46.3001 161.121C46.1275 161.22 46.1324 161.383 46.3001 161.481L47.5086 162.182C47.5924 162.231 47.7059 162.256 47.8193 162.256C47.9328 162.256 48.0462 162.231 48.1301 162.182L49.3336 161.481C49.5062 161.383 49.5013 161.22 49.3336 161.121L48.1251 160.421C48.0413 160.372 47.9278 160.347 47.8144 160.347Z" fill="#706F6F"/> -<path d="M45.2938 157.955C45.2198 157.955 45.1507 157.94 45.1063 157.915L43.9521 157.25L45.0915 156.584C45.1359 156.559 45.205 156.544 45.279 156.544C45.353 156.544 45.422 156.559 45.4713 156.584L46.6206 157.25L45.4812 157.915C45.4368 157.94 45.3678 157.955 45.2938 157.955Z" fill="white"/> -<path d="M45.284 156.791C45.3235 156.791 45.3481 156.801 45.3481 156.801L46.1324 157.255L45.358 157.703C45.353 157.708 45.3284 157.713 45.2939 157.713C45.2593 157.713 45.2297 157.703 45.2297 157.703L44.4455 157.25L45.2199 156.801C45.2248 156.796 45.2495 156.791 45.284 156.791ZM45.284 156.298C45.1705 156.298 45.0571 156.322 44.9732 156.372L43.7697 157.072C43.5971 157.171 43.602 157.333 43.7747 157.432L44.9831 158.132C45.0719 158.182 45.1804 158.206 45.2939 158.206C45.4073 158.206 45.5207 158.182 45.6046 158.132L46.8081 157.432C46.9808 157.333 46.9808 157.171 46.8081 157.072L45.5997 156.372C45.5109 156.322 45.3974 156.298 45.284 156.298Z" fill="#706F6F"/> -<path d="M43.0594 159.257C42.9854 159.257 42.9163 159.242 42.8719 159.217L41.7227 158.552L42.867 157.886C42.9114 157.861 42.9804 157.846 43.0544 157.846C43.1284 157.846 43.1975 157.861 43.2419 157.886L44.3911 158.552L43.2468 159.217C43.2024 159.242 43.1284 159.257 43.0594 159.257Z" fill="white"/> -<path d="M43.0445 158.088C43.084 158.088 43.1086 158.098 43.1086 158.098L43.8929 158.552L43.1185 159C43.1136 159.005 43.0889 159.01 43.0544 159.01C43.0198 159.01 42.9903 159 42.9903 159L42.206 158.547L42.9804 158.098C42.9853 158.098 43.01 158.088 43.0445 158.088ZM43.0445 157.595C42.9311 157.595 42.8176 157.619 42.7338 157.669L41.5302 158.369C41.3576 158.468 41.3625 158.631 41.5352 158.729L42.7436 159.43C42.8324 159.479 42.9409 159.504 43.0544 159.504C43.1678 159.504 43.2813 159.479 43.3651 159.43L44.5686 158.729C44.7413 158.631 44.7413 158.468 44.5686 158.369L43.3602 157.669C43.2714 157.619 43.158 157.595 43.0445 157.595Z" fill="#706F6F"/> -<path d="M38.4376 159.178C38.3636 159.178 38.2945 159.163 38.2501 159.139L37.0959 158.473L38.2403 157.807C38.2847 157.782 38.3537 157.767 38.4277 157.767C38.5017 157.767 38.5708 157.782 38.6201 157.807L39.7693 158.473L38.625 159.139C38.5806 159.163 38.5116 159.178 38.4376 159.178Z" fill="white"/> -<path d="M38.4278 158.009C38.4673 158.009 38.4919 158.019 38.4969 158.019L39.2811 158.473L38.5067 158.922C38.5018 158.927 38.4771 158.931 38.4426 158.931C38.4031 158.931 38.3785 158.922 38.3785 158.922L37.5942 158.468L38.3686 158.019C38.3686 158.019 38.3933 158.009 38.4278 158.009ZM38.4278 157.516C38.3144 157.516 38.2009 157.541 38.1171 157.59L36.9135 158.29C36.7409 158.389 36.7458 158.552 36.9185 158.65L38.1269 159.351C38.2157 159.4 38.3291 159.425 38.4377 159.425C38.5511 159.425 38.6646 159.4 38.7484 159.351L39.9519 158.65C40.1246 158.552 40.1196 158.389 39.947 158.29L38.7385 157.59C38.6547 157.545 38.5412 157.516 38.4278 157.516Z" fill="#706F6F"/> -<path d="M40.82 160.554C40.746 160.554 40.6769 160.539 40.6325 160.515L39.4833 159.849L40.6276 159.183C40.672 159.158 40.741 159.144 40.815 159.144C40.889 159.144 40.9581 159.158 41.0074 159.183L42.1567 159.849L41.0123 160.515C40.963 160.539 40.894 160.554 40.82 160.554Z" fill="white"/> -<path d="M40.8103 159.385C40.8497 159.385 40.8744 159.395 40.8744 159.395L41.6586 159.849L40.8842 160.298C40.8793 160.303 40.8546 160.308 40.8201 160.308C40.7856 160.308 40.756 160.298 40.756 160.298L39.9717 159.844L40.7461 159.395C40.7511 159.395 40.7757 159.385 40.8103 159.385ZM40.8103 158.892C40.6968 158.892 40.5834 158.917 40.4995 158.966L39.296 159.666C39.1233 159.765 39.1283 159.928 39.3009 160.027L40.5094 160.727C40.5982 160.776 40.7067 160.801 40.8201 160.801C40.9336 160.801 41.047 160.776 41.1309 160.727L42.3344 160.027C42.507 159.928 42.507 159.765 42.3344 159.666L41.1259 158.966C41.0372 158.922 40.9237 158.892 40.8103 158.892Z" fill="#706F6F"/> -<path d="M38.5856 161.856C38.5116 161.856 38.4426 161.841 38.3982 161.817L37.2489 161.151L38.3932 160.485C38.4376 160.46 38.5067 160.446 38.5807 160.446C38.6547 160.446 38.7237 160.46 38.7681 160.49L39.9174 161.156L38.778 161.822C38.7286 161.837 38.6596 161.856 38.5856 161.856Z" fill="white"/> -<path d="M38.5756 160.687C38.6151 160.687 38.6397 160.697 38.6447 160.697L39.4289 161.151L38.6545 161.6C38.6496 161.605 38.625 161.61 38.5855 161.61C38.551 161.61 38.5263 161.6 38.5214 161.6L37.7371 161.146L38.5115 160.697C38.5115 160.692 38.5362 160.687 38.5756 160.687ZM38.5756 160.194C38.4622 160.194 38.3487 160.219 38.2649 160.268L37.0614 160.968C36.8887 161.067 36.8887 161.23 37.0614 161.329L38.2698 162.029C38.3586 162.078 38.4671 162.103 38.5806 162.103C38.694 162.103 38.8075 162.078 38.8913 162.029L40.0948 161.329C40.2675 161.23 40.2675 161.067 40.0948 160.968L38.8864 160.268C38.8025 160.219 38.6891 160.194 38.5756 160.194Z" fill="#706F6F"/> -<path d="M32.1734 171.105C32.0994 171.105 32.0303 171.09 31.9859 171.065L30.8367 170.399L31.9761 169.733C32.0205 169.709 32.0895 169.694 32.1635 169.694C32.2375 169.694 32.3065 169.709 32.3509 169.733L33.5002 170.399L32.3559 171.065C32.3164 171.09 32.2474 171.105 32.1734 171.105Z" fill="white"/> -<path d="M32.1635 169.936C32.203 169.936 32.2276 169.945 32.2276 169.945L33.0119 170.399L32.2375 170.848C32.2326 170.853 32.2079 170.858 32.1734 170.858C32.1339 170.858 32.1093 170.848 32.1093 170.848L31.325 170.394L32.0945 169.945C32.0994 169.945 32.1241 169.936 32.1635 169.936ZM32.1635 169.442C32.0501 169.442 31.9366 169.467 31.8528 169.516L30.6492 170.217C30.4766 170.315 30.4815 170.478 30.6492 170.577L31.8577 171.277C31.9416 171.327 32.055 171.351 32.1684 171.351C32.2819 171.351 32.3953 171.327 32.4792 171.277L33.6827 170.577C33.8554 170.478 33.8554 170.315 33.6827 170.217L32.4743 169.516C32.3855 169.467 32.277 169.442 32.1635 169.442Z" fill="#706F6F"/> -<path d="M34.4078 169.808C34.3338 169.808 34.2648 169.793 34.2204 169.768L33.0662 169.103L34.2105 168.437C34.2549 168.412 34.3239 168.397 34.3979 168.397C34.4719 168.397 34.541 168.412 34.5854 168.437L35.7346 169.103L34.5903 169.768C34.5508 169.788 34.4818 169.808 34.4078 169.808Z" fill="white"/> -<path d="M34.3979 168.639C34.4373 168.639 34.462 168.649 34.462 168.649L35.2462 169.102L34.4719 169.551C34.4669 169.556 34.4423 169.561 34.4028 169.561C34.3633 169.561 34.3387 169.551 34.3387 169.551L33.5544 169.097L34.3288 168.649C34.3387 168.644 34.3584 168.639 34.3979 168.639ZM34.3979 168.146C34.2844 168.146 34.171 168.17 34.0871 168.219L32.8836 168.92C32.711 169.019 32.7159 169.181 32.8836 169.28L34.0921 169.98C34.1759 170.03 34.2894 170.054 34.4028 170.054C34.5162 170.054 34.6297 170.03 34.7135 169.98L35.917 169.28C36.0897 169.181 36.0847 169.019 35.917 168.92L34.7086 168.219C34.6248 168.17 34.5113 168.146 34.3979 168.146Z" fill="#706F6F"/> -<path d="M33.9685 161.778C33.8946 161.778 33.8255 161.763 33.7811 161.738L32.6318 161.072L33.7762 160.406C33.8206 160.382 33.8896 160.367 33.9636 160.367C34.0376 160.367 34.1067 160.382 34.156 160.406L35.3053 161.072L34.1609 161.738C34.1066 161.763 34.0376 161.778 33.9685 161.778Z" fill="white"/> -<path d="M33.9538 160.609C33.9933 160.609 34.0179 160.619 34.0229 160.619L34.8071 161.072L34.0327 161.521C34.0278 161.526 34.0031 161.531 33.9686 161.531C33.9291 161.531 33.9045 161.521 33.8995 161.521L33.1153 161.067L33.8897 160.619C33.8946 160.619 33.9193 160.609 33.9538 160.609ZM33.9538 160.115C33.8404 160.115 33.7269 160.14 33.643 160.189L32.4395 160.89C32.2669 160.989 32.2718 161.151 32.4445 161.25L33.6529 161.95C33.7417 162 33.8551 162.024 33.9686 162.024C34.082 162.024 34.1955 162 34.2793 161.95L35.4829 161.25C35.6555 161.151 35.6506 160.989 35.4779 160.89L34.2695 160.189C34.1807 160.145 34.0672 160.115 33.9538 160.115Z" fill="#706F6F"/> -<path d="M31.7292 163.08C31.6552 163.08 31.5862 163.065 31.5368 163.04L30.3876 162.374L31.527 161.708C31.5714 161.684 31.6404 161.669 31.7144 161.669C31.7884 161.669 31.8575 161.684 31.9068 161.708L33.056 162.374L31.9166 163.04C31.8722 163.06 31.8032 163.08 31.7292 163.08Z" fill="white"/> -<path d="M31.7195 161.911C31.759 161.911 31.7837 161.921 31.7837 161.921L32.5679 162.374L31.7935 162.823C31.7886 162.828 31.7639 162.833 31.7294 162.833C31.69 162.833 31.6653 162.823 31.6604 162.823L30.8761 162.369L31.6456 161.921C31.6554 161.916 31.6801 161.911 31.7195 161.911ZM31.7195 161.417C31.6061 161.417 31.4926 161.442 31.4088 161.491L30.2053 162.192C30.0326 162.291 30.0376 162.453 30.2102 162.552L31.4187 163.252C31.5074 163.302 31.6209 163.326 31.7343 163.326C31.8478 163.326 31.9612 163.302 32.0451 163.252L33.2486 162.552C33.4212 162.453 33.4212 162.291 33.2486 162.192L32.0401 161.491C31.9464 161.442 31.833 161.417 31.7195 161.417Z" fill="#706F6F"/> -<path d="M36.3513 163.154C36.2773 163.154 36.2082 163.139 36.1638 163.114L35.0096 162.448L36.154 161.782C36.1984 161.758 36.2674 161.743 36.3414 161.743C36.4154 161.743 36.4845 161.758 36.5288 161.782L37.6781 162.448L36.5338 163.114C36.4894 163.139 36.4203 163.154 36.3513 163.154Z" fill="white"/> -<path d="M36.3364 161.985C36.3758 161.985 36.4005 161.995 36.4054 161.995L37.1897 162.448L36.4153 162.897C36.4104 162.902 36.3857 162.907 36.3512 162.907C36.3117 162.907 36.287 162.897 36.287 162.897L35.5028 162.443L36.2772 161.995C36.2772 161.995 36.3018 161.985 36.3364 161.985ZM36.3364 161.491C36.2229 161.491 36.1095 161.516 36.0256 161.565L34.8221 162.266C34.6495 162.364 34.6544 162.527 34.827 162.626L36.0355 163.326C36.1243 163.376 36.2328 163.4 36.3462 163.4C36.4597 163.4 36.5731 163.376 36.657 163.326L37.8605 162.626C38.0331 162.527 38.0331 162.364 37.8605 162.266L36.652 161.565C36.5633 161.521 36.4498 161.491 36.3364 161.491Z" fill="#706F6F"/> -<path d="M29.495 164.377C29.421 164.377 29.352 164.362 29.3076 164.338L28.1583 163.672L29.2977 163.006C29.3421 162.981 29.4112 162.966 29.4852 162.966C29.5591 162.966 29.6282 162.981 29.6726 163.006L30.8219 163.672L29.6825 164.338C29.6381 164.362 29.5641 164.377 29.495 164.377Z" fill="white"/> -<path d="M29.4803 163.208C29.5197 163.208 29.5444 163.218 29.5493 163.218L30.3336 163.672L29.5641 164.121C29.5592 164.126 29.5345 164.13 29.4951 164.13C29.4556 164.13 29.431 164.121 29.431 164.121L28.6467 163.667L29.4211 163.218C29.4211 163.218 29.4458 163.208 29.4803 163.208ZM29.4803 162.715C29.3668 162.715 29.2534 162.739 29.1695 162.789L27.966 163.489C27.7934 163.588 27.7934 163.751 27.966 163.849L29.1745 164.55C29.2633 164.599 29.3767 164.624 29.4852 164.624C29.5987 164.624 29.7121 164.599 29.796 164.55L30.9995 163.849C31.1721 163.751 31.1672 163.588 30.9945 163.489L29.7861 162.789C29.7072 162.739 29.5937 162.715 29.4803 162.715Z" fill="#706F6F"/> -<path d="M34.1117 164.456C34.0377 164.456 33.9687 164.441 33.9243 164.416L32.775 163.751L33.9144 163.085C33.9588 163.06 34.0279 163.045 34.1019 163.045C34.1758 163.045 34.2449 163.06 34.2942 163.085L35.4435 163.751L34.2992 164.416C34.2548 164.436 34.1857 164.456 34.1117 164.456Z" fill="white"/> -<path d="M34.1019 163.287C34.1413 163.287 34.166 163.297 34.166 163.297L34.9503 163.751L34.1759 164.199C34.1709 164.204 34.1463 164.209 34.1068 164.209C34.0723 164.209 34.0427 164.199 34.0427 164.199L33.2584 163.746L34.0279 163.297C34.0427 163.292 34.0674 163.287 34.1019 163.287ZM34.1019 162.794C33.9884 162.794 33.875 162.818 33.7911 162.868L32.5876 163.568C32.415 163.667 32.4199 163.83 32.5925 163.928L33.801 164.629C33.8898 164.678 33.9983 164.703 34.1117 164.703C34.2252 164.703 34.3386 164.678 34.4225 164.629L35.626 163.928C35.7987 163.83 35.7987 163.667 35.626 163.568L34.4176 162.868C34.3288 162.818 34.2153 162.794 34.1019 162.794Z" fill="#706F6F"/> -<path d="M27.2556 165.679C27.1816 165.679 27.1125 165.664 27.0632 165.64L25.9139 164.974L27.0583 164.308C27.1027 164.283 27.1717 164.268 27.2457 164.268C27.3197 164.268 27.3888 164.283 27.4331 164.308L28.5873 164.974L27.443 165.64C27.3986 165.659 27.3296 165.679 27.2556 165.679Z" fill="white"/> -<path d="M27.2458 164.51C27.2853 164.51 27.3099 164.52 27.3099 164.52L28.0942 164.974L27.3198 165.423C27.3149 165.428 27.2902 165.432 27.2557 165.432C27.2162 165.432 27.1915 165.423 27.1866 165.423L26.4023 164.969L27.1767 164.52C27.1866 164.515 27.2113 164.51 27.2458 164.51ZM27.2458 164.017C27.1324 164.017 27.0189 164.041 26.9351 164.091L25.7315 164.791C25.5589 164.89 25.5638 165.053 25.7365 165.151L26.9449 165.852C27.0337 165.901 27.1472 165.926 27.2606 165.926C27.374 165.926 27.4875 165.901 27.5713 165.852L28.7749 165.151C28.9475 165.053 28.9426 164.89 28.7699 164.791L27.5615 164.091C27.4727 164.041 27.3592 164.017 27.2458 164.017Z" fill="#706F6F"/> -<path d="M31.8774 165.753C31.8034 165.753 31.7343 165.738 31.6899 165.714L30.5406 165.048L31.6801 164.382C31.7244 164.357 31.7935 164.342 31.8675 164.342C31.9415 164.342 32.0105 164.357 32.0599 164.387L33.2091 165.053L32.0697 165.718C32.0204 165.738 31.9464 165.753 31.8774 165.753Z" fill="white"/> -<path d="M31.8674 164.584C31.9069 164.584 31.9315 164.594 31.9364 164.594L32.7207 165.048L31.9463 165.497C31.9414 165.502 31.9167 165.506 31.8773 165.506C31.8427 165.506 31.8181 165.497 31.8131 165.497L31.0289 165.043L31.8033 164.594C31.8033 164.594 31.8279 164.584 31.8674 164.584ZM31.8674 164.091C31.7539 164.091 31.6405 164.115 31.5566 164.165L30.3531 164.865C30.1805 164.964 30.1805 165.127 30.3531 165.225L31.5616 165.926C31.6504 165.975 31.7589 166 31.8723 166C31.9858 166 32.0992 165.975 32.1831 165.926L33.3866 165.225C33.5592 165.127 33.5592 164.964 33.3866 164.865L32.1781 164.165C32.0894 164.12 31.9759 164.091 31.8674 164.091Z" fill="#706F6F"/> -<path d="M25.0212 166.976C24.9472 166.976 24.8782 166.962 24.8288 166.932L23.6796 166.266L24.819 165.6C24.8634 165.576 24.9324 165.561 25.0064 165.561C25.0804 165.561 25.1494 165.576 25.1938 165.6L26.3431 166.266L25.2037 166.932C25.1642 166.962 25.0952 166.976 25.0212 166.976Z" fill="white"/> -<path d="M25.0114 165.807C25.0509 165.807 25.0755 165.817 25.0755 165.817L25.8598 166.271L25.0854 166.72C25.0805 166.725 25.0558 166.73 25.0213 166.73C24.9818 166.73 24.9572 166.72 24.9522 166.72L24.168 166.266L24.9374 165.817C24.9473 165.817 24.972 165.807 25.0114 165.807ZM25.0114 165.314C24.898 165.314 24.7845 165.339 24.7007 165.388L23.4972 166.088C23.3245 166.187 23.3294 166.35 23.5021 166.448L24.7105 167.149C24.7993 167.198 24.9128 167.223 25.0262 167.223C25.1397 167.223 25.2531 167.198 25.337 167.149L26.5405 166.448C26.7131 166.35 26.7131 166.187 26.5405 166.088L25.332 165.388C25.2383 165.339 25.1249 165.314 25.0114 165.314Z" fill="#706F6F"/> -<path d="M29.6381 167.055C29.5641 167.055 29.495 167.04 29.4507 167.016L28.3014 166.35L29.4457 165.684C29.4901 165.659 29.5592 165.645 29.6332 165.645C29.7071 165.645 29.7762 165.659 29.8255 165.684L30.9748 166.35L29.8305 167.016C29.7811 167.035 29.7121 167.055 29.6381 167.055Z" fill="white"/> -<path d="M29.6281 165.886C29.6676 165.886 29.6922 165.896 29.6922 165.896L30.4765 166.35L29.7021 166.799C29.6972 166.804 29.6725 166.809 29.6331 166.809C29.5985 166.809 29.5689 166.799 29.5689 166.799L28.7847 166.345L29.5591 165.896C29.5689 165.891 29.5936 165.886 29.6281 165.886ZM29.6281 165.393C29.5147 165.393 29.4012 165.418 29.3174 165.467L28.1139 166.167C27.9412 166.266 27.9461 166.429 28.1188 166.528L29.3272 167.228C29.416 167.277 29.5245 167.302 29.638 167.302C29.7514 167.302 29.8649 167.277 29.9487 167.228L31.1523 166.528C31.3249 166.429 31.3249 166.266 31.1523 166.167L29.9438 165.467C29.855 165.418 29.7416 165.393 29.6281 165.393Z" fill="#706F6F"/> -<path d="M34.2599 167.129C34.1859 167.129 34.1169 167.114 34.0725 167.09L32.9232 166.424L34.0675 165.758C34.1119 165.733 34.181 165.719 34.255 165.719C34.329 165.719 34.398 165.733 34.4474 165.763L35.5966 166.429L34.4572 167.095C34.403 167.114 34.3339 167.129 34.2599 167.129Z" fill="white"/> -<path d="M34.25 165.96C34.2894 165.96 34.3141 165.97 34.319 165.97L35.1033 166.424L34.3338 166.873C34.3289 166.878 34.3042 166.883 34.2647 166.883C34.2253 166.883 34.2006 166.873 34.2006 166.873L33.4164 166.419L34.1908 165.97C34.1908 165.97 34.2105 165.96 34.25 165.96ZM34.25 165.467C34.1365 165.467 34.0231 165.492 33.9392 165.541L32.7357 166.241C32.563 166.34 32.563 166.503 32.7357 166.602L33.9441 167.302C34.028 167.351 34.1414 167.376 34.2549 167.376C34.3683 167.376 34.4818 167.351 34.5656 167.302L35.7692 166.602C35.9418 166.503 35.9369 166.34 35.7692 166.241L34.5607 165.541C34.4768 165.497 34.3634 165.467 34.25 165.467Z" fill="#706F6F"/> -<path d="M27.4035 168.353C27.3295 168.353 27.2604 168.338 27.216 168.313L26.0668 167.647L27.2062 166.982C27.2506 166.957 27.3196 166.942 27.3936 166.942C27.4676 166.942 27.5367 166.957 27.581 166.982L28.7303 167.647L27.586 168.313C27.5465 168.338 27.4775 168.353 27.4035 168.353Z" fill="white"/> -<path d="M27.3935 167.184C27.433 167.184 27.4576 167.194 27.4576 167.194L28.2419 167.648L27.4675 168.096C27.4626 168.101 27.4379 168.106 27.4034 168.106C27.3688 168.106 27.3392 168.096 27.3392 168.096L26.555 167.643L27.3244 167.194C27.3294 167.194 27.354 167.184 27.3935 167.184ZM27.3935 166.691C27.28 166.691 27.1666 166.715 27.0828 166.765L25.8792 167.465C25.7066 167.564 25.7115 167.726 25.8842 167.825L27.0926 168.526C27.1814 168.575 27.2899 168.6 27.4034 168.6C27.5168 168.6 27.6303 168.575 27.7141 168.526L28.9176 167.825C29.0903 167.726 29.0903 167.564 28.9176 167.465L27.7092 166.765C27.6204 166.715 27.5069 166.691 27.3935 166.691Z" fill="#706F6F"/> -<path d="M32.0254 168.432C31.9514 168.432 31.8824 168.417 31.838 168.392L30.6887 167.726L31.833 167.06C31.8774 167.036 31.9465 167.021 32.0205 167.021C32.0945 167.021 32.1635 167.036 32.2079 167.06L33.3572 167.726L32.2128 168.392C32.1685 168.412 32.0994 168.432 32.0254 168.432Z" fill="white"/> -<path d="M32.0155 167.263C32.0549 167.263 32.0796 167.272 32.0845 167.272L32.8688 167.726L32.0944 168.175C32.0894 168.18 32.0648 168.185 32.0253 168.185C31.9859 168.185 31.9612 168.175 31.9612 168.175L31.1769 167.721L31.9513 167.272C31.9513 167.267 31.976 167.263 32.0155 167.263ZM32.0155 166.769C31.902 166.769 31.7886 166.794 31.7047 166.843L30.5012 167.544C30.3285 167.642 30.3335 167.805 30.5061 167.904L31.7146 168.604C31.7984 168.654 31.9119 168.678 32.0253 168.678C32.1388 168.678 32.2522 168.654 32.3361 168.604L33.5396 167.904C33.7122 167.805 33.7073 167.642 33.5396 167.544L32.3311 166.843C32.2374 166.794 32.124 166.769 32.0155 166.769Z" fill="#706F6F"/> -<path d="M28.4641 170.498C28.3901 170.498 28.3211 170.483 28.2767 170.459L27.1274 169.793L29.5937 168.357C29.6381 168.333 29.7071 168.318 29.7811 168.318C29.8551 168.318 29.9241 168.333 29.9685 168.357L31.1178 169.023L28.6516 170.459C28.6072 170.483 28.5332 170.498 28.4641 170.498Z" fill="white"/> -<path d="M29.7762 168.56C29.8156 168.56 29.8403 168.57 29.8403 168.57L30.6246 169.023L28.5283 170.242C28.5233 170.247 28.4987 170.251 28.4592 170.251C28.4198 170.251 28.3951 170.242 28.3951 170.242L27.6108 169.788L29.7071 168.57C29.717 168.57 29.7417 168.56 29.7762 168.56ZM29.7762 168.066C29.6627 168.066 29.5493 168.091 29.4654 168.14L26.94 169.61C26.7674 169.709 26.7674 169.872 26.94 169.97L28.1485 170.671C28.2323 170.72 28.3458 170.745 28.4592 170.745C28.5727 170.745 28.6861 170.72 28.77 170.671L31.2954 169.201C31.468 169.102 31.468 168.939 31.2954 168.841L30.0869 168.14C30.0031 168.091 29.8896 168.066 29.7762 168.066Z" fill="#706F6F"/> -<path d="M22.7866 168.279C22.7127 168.279 22.6436 168.264 22.5992 168.239L21.45 167.573L22.5943 166.907C22.6387 166.883 22.7077 166.868 22.7817 166.868C22.8557 166.868 22.9248 166.883 22.9691 166.907L24.1234 167.573L22.9839 168.239C22.9297 168.259 22.8557 168.279 22.7866 168.279Z" fill="white"/> -<path d="M22.7719 167.11C22.8114 167.11 22.8361 167.12 22.841 167.12L23.6253 167.573L22.8558 168.022C22.8509 168.027 22.8262 168.032 22.7867 168.032C22.7473 168.032 22.7226 168.022 22.7226 168.022L21.9383 167.568L22.7127 167.12C22.7127 167.115 22.7374 167.11 22.7719 167.11ZM22.7719 166.616C22.6585 166.616 22.545 166.641 22.4612 166.69L21.2577 167.391C21.085 167.49 21.085 167.652 21.2577 167.751L22.4661 168.451C22.5549 168.501 22.6634 168.525 22.7769 168.525C22.8903 168.525 23.0038 168.501 23.0876 168.451L24.2911 167.751C24.4638 167.652 24.4589 167.49 24.2862 167.391L23.0777 166.69C22.9988 166.641 22.8854 166.616 22.7719 166.616Z" fill="#706F6F"/> -<path d="M40.6771 157.881C40.6031 157.881 40.534 157.866 40.4847 157.841L39.3354 157.175L42.7142 155.212C42.7586 155.188 42.8276 155.173 42.9016 155.173C42.9756 155.173 43.0447 155.188 43.0891 155.212L44.2383 155.878L40.8596 157.846C40.8201 157.866 40.7461 157.881 40.6771 157.881Z" fill="white"/> -<path d="M42.9016 155.41C42.9411 155.41 42.9657 155.42 42.9657 155.42L43.75 155.873L40.7412 157.624C40.7362 157.629 40.7116 157.634 40.6771 157.634C40.6376 157.634 40.6129 157.624 40.6129 157.624L39.8287 157.171L42.8375 155.42C42.8375 155.42 42.8621 155.41 42.9016 155.41ZM42.9016 154.917C42.7881 154.917 42.6747 154.941 42.5908 154.99L39.1529 156.988C38.9803 157.087 38.9852 157.25 39.1578 157.348L40.3663 158.049C40.4551 158.098 40.5685 158.123 40.6771 158.123C40.7905 158.123 40.9039 158.098 40.9878 158.049L44.4257 156.051C44.5984 155.952 44.5984 155.79 44.4257 155.691L43.2173 154.99C43.1285 154.946 43.015 154.917 42.9016 154.917Z" fill="#706F6F"/> -<path d="M27.6995 173.705C27.6255 173.705 27.5564 173.69 27.5121 173.665L26.3628 172.999L29.7415 171.031C29.7859 171.007 29.855 170.992 29.929 170.992C30.0029 170.992 30.072 171.007 30.1164 171.031L31.2657 171.697L27.8869 173.66C27.8425 173.69 27.7735 173.705 27.6995 173.705Z" fill="white"/> -<path d="M29.924 171.238C29.9635 171.238 29.9882 171.248 29.9882 171.248L30.7724 171.702L27.7636 173.448C27.7587 173.453 27.734 173.458 27.6946 173.458C27.6551 173.458 27.6304 173.448 27.6304 173.448L26.8462 172.994L29.855 171.248C29.8649 171.243 29.8895 171.238 29.924 171.238ZM29.924 170.745C29.8106 170.745 29.6971 170.77 29.6133 170.819L26.1754 172.817C26.0027 172.915 26.0077 173.078 26.1754 173.177L27.3838 173.877C27.4677 173.927 27.5811 173.951 27.6946 173.951C27.808 173.951 27.9215 173.927 28.0053 173.877L31.4432 171.88C31.6159 171.781 31.6109 171.618 31.4432 171.52L30.2348 170.819C30.1509 170.77 30.0375 170.745 29.924 170.745Z" fill="#706F6F"/> -<path d="M38.7335 164.53C38.6595 164.53 38.5904 164.515 38.546 164.49L37.3918 163.824L38.5362 163.158C38.5806 163.134 38.6496 163.119 38.7236 163.119C38.7976 163.119 38.8667 163.134 38.916 163.158L40.0652 163.824L38.9209 164.49C38.8765 164.515 38.8075 164.53 38.7335 164.53Z" fill="white"/> -<path d="M38.7236 163.366C38.763 163.366 38.7877 163.375 38.7877 163.375L39.572 163.829L38.7976 164.278C38.7926 164.283 38.768 164.288 38.7285 164.288C38.6891 164.288 38.6644 164.278 38.6644 164.278L37.8801 163.824L38.6545 163.375C38.6595 163.37 38.6841 163.366 38.7236 163.366ZM38.7236 162.872C38.6101 162.872 38.4967 162.897 38.4128 162.946L37.2093 163.647C37.0367 163.745 37.0416 163.908 37.2142 164.007L38.4227 164.707C38.5065 164.756 38.62 164.781 38.7334 164.781C38.8469 164.781 38.9603 164.756 39.0442 164.707L40.2477 164.007C40.4203 163.908 40.4154 163.745 40.2477 163.647L39.0393 162.946C38.9505 162.897 38.837 162.872 38.7236 162.872Z" fill="#706F6F"/> -<path d="M36.4991 165.832C36.4251 165.832 36.356 165.817 36.3116 165.792L35.1624 165.126L36.3018 164.461C36.3461 164.436 36.4152 164.421 36.4892 164.421C36.5632 164.421 36.6322 164.436 36.6766 164.461L37.8259 165.126L36.6816 165.792C36.6421 165.812 36.5681 165.832 36.4991 165.832Z" fill="white"/> -<path d="M36.4843 164.663C36.5238 164.663 36.5484 164.673 36.5484 164.673L37.3327 165.127L36.5583 165.575C36.5534 165.58 36.5287 165.585 36.4893 165.585C36.4498 165.585 36.4251 165.575 36.4251 165.575L35.6409 165.122L36.4103 164.673C36.4251 164.668 36.4498 164.663 36.4843 164.663ZM36.4843 164.17C36.3709 164.17 36.2574 164.194 36.1736 164.244L34.9701 164.944C34.7974 165.043 34.8024 165.205 34.975 165.304L36.1834 166.005C36.2673 166.054 36.3807 166.079 36.4942 166.079C36.6076 166.079 36.7211 166.054 36.8049 166.005L38.0085 165.304C38.1811 165.205 38.1811 165.043 38.0085 164.944L36.8 164.244C36.7112 164.194 36.5978 164.17 36.4843 164.17Z" fill="#706F6F"/> -<path d="M36.6422 168.505C36.5683 168.505 36.4992 168.491 36.4548 168.466L35.3055 167.8L43.1038 163.262C43.1482 163.237 43.2172 163.223 43.2912 163.223C43.3652 163.223 43.4343 163.237 43.4786 163.262L44.6279 163.928L36.8297 168.466C36.7853 168.491 36.7162 168.505 36.6422 168.505Z" fill="white"/> -<path d="M43.2911 163.469C43.3306 163.469 43.3552 163.479 43.3552 163.479L44.1395 163.933L36.7112 168.254C36.7063 168.259 36.6816 168.264 36.6421 168.264C36.6027 168.264 36.578 168.254 36.578 168.254L35.7938 167.8L43.227 163.479C43.2319 163.474 43.2566 163.469 43.2911 163.469ZM43.2911 162.976C43.1777 162.976 43.0642 163.001 42.9804 163.05L35.118 167.618C34.9454 167.716 34.9454 167.879 35.118 167.978L36.3265 168.678C36.4103 168.727 36.5238 168.752 36.6372 168.752C36.7507 168.752 36.8641 168.727 36.948 168.678L44.8103 164.111C44.983 164.012 44.978 163.849 44.8103 163.75L43.6019 163.05C43.518 163.001 43.4046 162.976 43.2911 162.976Z" fill="#706F6F"/> -<path d="M174.875 67.8423C175.692 67.6577 176.641 66.7988 177.299 66.3492C178.541 65.4904 184.122 65.2656 182.664 64.8563C182.139 64.7037 187.429 68.1232 187.295 70.1781C187.237 71.1333 187.47 72.9233 187.37 73.8946C187.295 74.6812 187.529 75.219 187.47 76.0217C186.929 75.5562 186.771 74.4324 186.054 74.0632C185.413 73.7501 184.463 74.2478 183.847 74.4003C183.289 74.5287 182.681 74.5127 182.164 74.7695C181.606 75.0505 181.506 75.4197 181.314 75.9655C180.981 76.8806 180.831 77.6111 180.773 78.5743C180.423 77.9562 180.115 77.5067 179.648 76.9288C179.182 76.3669 178.466 76.11 177.807 75.7167C176.141 74.6893 175.208 73.6056 175.092 71.5748C175.017 70.451 175.558 68.8296 174.875 67.8423Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" fill="white"/> -<path d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" fill="white"/> -<path d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" fill="white"/> -<path d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" fill="white"/> -<path d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" fill="white"/> -<path d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" fill="white"/> -<path d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M171.976 67.4891C173.759 67.3768 174.359 68.2918 175.525 69.1908C177.483 70.6999 177.774 72.811 178.216 74.8097C178.624 76.68 177.632 79.7944 175.175 79.4733C172.31 79.0961 170.818 77.4746 169.652 75.1228C169.094 73.9669 168.894 72.0083 169.052 70.6999C169.144 69.841 170.535 67.4651 171.976 67.4891Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" fill="white"/> -<path d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" fill="white"/> -<path d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M174.708 73.14C174.692 72.9313 174.634 72.7146 174.417 72.6182C174.259 72.5621 174.109 72.6182 173.992 72.7306C173.667 73.0276 173.742 73.5333 174.05 73.8303C174.325 74.0952 174.65 73.9828 174.75 73.6457C174.85 73.2523 174.65 72.8269 174.267 72.6584C174.192 72.6423 174.134 72.6423 174.075 72.6985C173.767 73.1239 173.742 73.9507 174.442 74.0069C174.5 74.0069 174.559 73.9668 174.575 73.9106C174.708 73.5574 174.708 73.1801 174.475 72.8671C174.434 72.8109 174.317 72.7707 174.259 72.851C174.084 73.0597 173.892 73.5815 174.317 73.6537C174.492 73.6698 174.567 73.4289 174.392 73.3888C174.217 73.3727 174.409 73.0918 174.45 73.0356C174.375 73.0356 174.317 73.0196 174.234 73.0196C174.425 73.2845 174.409 73.5814 174.309 73.8784C174.35 73.8383 174.409 73.8222 174.442 73.7821C173.975 73.742 174.134 73.1079 174.309 72.8671C174.25 72.8831 174.175 72.9072 174.117 72.9072C174.35 73.0035 174.484 73.1881 174.484 73.445C174.484 73.5574 174.467 73.8222 174.292 73.7259C174.059 73.6135 173.984 73.2764 174.075 73.0757C174.117 73.0195 174.192 72.8911 174.267 72.9072C174.384 72.9072 174.425 73.0918 174.425 73.1881C174.475 73.3085 174.742 73.3085 174.708 73.14Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M174.625 73.7983C175.067 73.8545 175.325 74.1756 175.592 74.4726C175.867 74.7695 176.15 75.0505 176.483 75.2752C177.183 75.7649 177.957 76.1341 178.749 76.4311C179.54 76.7121 180.223 76.993 180.548 77.7957C180.823 78.4298 180.956 79.1201 181.073 79.8104C181.09 79.979 181.364 79.9068 181.348 79.7382C181.231 79.0078 181.056 78.3014 180.765 77.6111C180.473 76.9609 179.99 76.6238 179.315 76.3589C178.407 76.0057 177.491 75.6685 176.683 75.1067C176.241 74.8097 175.925 74.4565 175.575 74.0792C175.325 73.7982 175.05 73.6137 174.684 73.5575C174.534 73.5173 174.45 73.7742 174.625 73.7983Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M174.026 72.45C174.201 72.45 174.201 72.1851 174.026 72.1851C173.851 72.1931 173.851 72.45 174.026 72.45Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M174.142 72.4499C174.492 71.9844 174.317 71.278 174.317 70.7321C174.317 70.5636 174.042 70.5636 174.042 70.7321C174.042 71.2138 174.217 71.9041 173.909 72.3215C173.809 72.474 174.042 72.6024 174.142 72.4499Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M172.709 68.8697C171.86 68.7974 171.085 69.247 170.577 69.8811C170.019 70.6115 169.935 71.3581 170.11 72.2169C170.327 73.2604 170.61 74.328 171.177 75.2752C171.585 75.9816 172.168 76.6157 172.768 77.1615C173.351 77.6833 174.067 78.2211 174.883 78.2612C175.642 78.3013 176.258 77.7957 176.666 77.2338C177.133 76.5595 177.366 75.7407 177.399 74.938C177.441 74.0952 177.208 73.3888 176.874 72.6263C176.45 71.6952 176 70.6276 175.192 69.9613C174.534 69.4476 173.601 68.8135 172.709 68.8697C172.534 68.8697 172.534 69.1506 172.709 69.1346C173.467 69.0784 174.242 69.6001 174.8 70.0336C175.417 70.5232 175.825 71.1574 176.158 71.8477C176.508 72.538 176.916 73.2685 177.049 74.015C177.183 74.7454 177.124 75.508 176.874 76.2143C176.641 76.9047 176.158 77.6672 175.425 77.9481C174.667 78.2291 173.876 77.7635 173.309 77.314C172.035 76.3026 171.143 74.9782 170.693 73.4691C170.402 72.538 170.052 71.4544 170.502 70.5393C170.893 69.7205 171.726 69.0623 172.709 69.1586C172.884 69.1506 172.884 68.8857 172.709 68.8697Z" fill="white"/> -<path d="M172.709 68.8697C171.86 68.7974 171.085 69.247 170.577 69.8811C170.019 70.6115 169.935 71.3581 170.11 72.2169C170.327 73.2604 170.61 74.328 171.177 75.2752C171.585 75.9816 172.168 76.6157 172.768 77.1615C173.351 77.6833 174.067 78.2211 174.883 78.2612C175.642 78.3013 176.258 77.7957 176.666 77.2338C177.133 76.5595 177.366 75.7407 177.399 74.938C177.441 74.0952 177.208 73.3888 176.874 72.6263C176.45 71.6952 176 70.6276 175.192 69.9613C174.534 69.4476 173.601 68.8135 172.709 68.8697ZM172.709 68.8697C172.534 68.8697 172.534 69.1506 172.709 69.1346C173.467 69.0784 174.242 69.6001 174.8 70.0336C175.417 70.5232 175.825 71.1574 176.158 71.8477C176.508 72.538 176.916 73.2685 177.049 74.015C177.183 74.7454 177.124 75.508 176.874 76.2143C176.641 76.9047 176.158 77.6672 175.425 77.9481C174.667 78.2291 173.876 77.7635 173.309 77.314C172.035 76.3026 171.143 74.9782 170.693 73.4691C170.402 72.538 170.052 71.4544 170.502 70.5393C170.893 69.7205 171.726 69.0623 172.709 69.1586C172.884 69.1506 172.884 68.8857 172.709 68.8697Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M172.709 68.8697C171.86 68.7974 171.085 69.247 170.577 69.8811C170.019 70.6115 169.935 71.3581 170.11 72.2169C170.327 73.2604 170.61 74.328 171.177 75.2752C171.585 75.9816 172.168 76.6157 172.768 77.1615C173.351 77.6833 174.067 78.2211 174.883 78.2612C175.642 78.3013 176.258 77.7957 176.666 77.2338C177.133 76.5595 177.366 75.7407 177.399 74.938C177.441 74.0952 177.208 73.3888 176.874 72.6263C176.45 71.6952 176 70.6276 175.192 69.9613C174.534 69.4476 173.601 68.8135 172.709 68.8697ZM172.709 68.8697C172.534 68.8697 172.534 69.1506 172.709 69.1346C173.467 69.0784 174.242 69.6001 174.8 70.0336C175.417 70.5232 175.825 71.1574 176.158 71.8477C176.508 72.538 176.916 73.2685 177.049 74.015C177.183 74.7454 177.124 75.508 176.874 76.2143C176.641 76.9047 176.158 77.6672 175.425 77.9481C174.667 78.2291 173.876 77.7635 173.309 77.314C172.035 76.3026 171.143 74.9782 170.693 73.4691C170.402 72.538 170.052 71.4544 170.502 70.5393C170.893 69.7205 171.726 69.0623 172.709 69.1586C172.884 69.1506 172.884 68.8857 172.709 68.8697Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M180.656 79.7865C179.34 79.2085 178.857 82.7725 180.815 82.941C182.589 83.1096 182.689 79.8587 180.656 79.7865Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M180.656 80.8701C180.581 80.8701 180.556 80.9263 180.498 81.0226C180.398 81.3357 180.498 81.5845 180.864 81.5283C180.964 81.2233 180.848 80.8862 180.656 80.8701Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M180.806 53.6989C181.348 53.6026 182.239 53.7391 182.764 53.5464C183.755 53.2093 183.172 52.2942 182.589 51.7564C181.214 50.4721 179.873 51.1785 178.249 51.331C178.207 52.0936 177.766 55.5692 179.082 55.4167C179.099 55.0795 178.757 53.6989 179.04 53.4742C179.49 53.121 180.556 54.7746 180.806 53.6989Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" fill="white"/> -<path d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" fill="white"/> -<path d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" fill="white"/> -<path d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" fill="white"/> -<path d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M183.813 69.8973C183.197 70.1381 183.93 72.811 184.005 73.3488C184.08 73.8305 184.197 74.2639 184.372 74.7294C184.505 75.1067 184.505 75.8853 184.696 76.1823C184.946 76.5596 185.721 76.6479 186.029 76.3509C186.379 76.0138 186.396 76.5195 186.396 76.086C186.396 74.9622 186.221 72.5782 186.104 71.4785C186.029 70.7481 185.771 68.4364 185.021 68.2838C184.297 68.1394 184.372 69.6163 183.813 69.8973Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" fill="white"/> -<path d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" fill="white"/> -<path d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" fill="white"/> -<path d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" fill="white"/> -<path d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" fill="white"/> -<path d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" fill="white"/> -<path d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M184.913 76.4473C184.696 77.3062 186.97 78.6307 187.912 78.1089C188.628 77.7156 187.737 76.6881 187.179 76.351C186.712 76.054 184.705 76.1664 184.913 76.4473Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" fill="white"/> -<path d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" fill="white"/> -<path d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" fill="white"/> -<path d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373ZM182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" fill="white"/> -<path d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373ZM182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M181.739 56.42C183.23 56.2514 184.53 57.929 184.105 59.3337C183.872 60.1204 182.939 59.7431 182.614 60.3451C182.322 60.8829 182.672 62.1913 182.689 62.7933C182.764 64.3265 182.497 66.1165 181.331 67.2162C180.056 68.4684 178.099 68.0912 176.45 67.8503C175.175 67.6657 174.783 68.7815 175.133 66.2289C175.325 64.8081 176.183 63.8048 176.45 62.4562C175.95 62.1913 175.5 62.6088 175.058 62.2716C174.559 61.8783 174.883 61.1318 175.042 60.5699C175.408 59.2856 176.091 58.3705 177.133 57.5117C177.557 57.1585 178.082 56.7812 178.665 56.8374C179.498 56.9337 179.557 57.921 180.173 58.1056C180.989 58.3464 180.698 57.303 180.989 56.9096C181.289 56.5163 181.231 56.3638 181.739 56.42Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" fill="white"/> -<path d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" fill="white"/> -<path d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -<path d="M180.306 79.7301C181.856 79.5776 182.939 82.5877 181.198 82.8686C181.123 82.8847 181.156 83.0211 181.239 82.9971C183.139 82.7001 182.014 79.4491 180.331 79.6016C180.206 79.6177 180.206 79.7461 180.306 79.7301Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> -</svg> + <g clip-path="url(#clip0_14421_57490)"> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M120.104 52.7464C120.131 52.7466 120.159 52.7467 120.187 52.7467C120.214 52.7467 120.242 52.7466 120.27 52.7464H190.285V52.72C190.514 52.7374 190.745 52.7462 190.978 52.7462C195.961 52.7462 200 48.7067 200 43.7238C200 38.9571 196.304 35.0537 191.621 34.724C191.654 34.2581 191.671 33.7878 191.671 33.3134C191.671 22.5809 182.971 13.8806 172.238 13.8806C171.662 13.8806 171.092 13.9056 170.528 13.9548C166.088 5.65012 157.332 0 147.256 0C132.691 0 120.883 11.8077 120.883 26.3731L120.883 26.3916C120.652 26.3796 120.42 26.3735 120.187 26.3735C112.904 26.3735 107 32.2774 107 39.5601C107 46.6106 112.533 52.3687 119.494 52.7288V52.7464H120.104Z" + fill="#FFDDDD" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M10.8947 90.1842C5.43002 90.1842 1 85.7542 1 80.2895C1 74.8248 5.43002 70.3947 10.8947 70.3947C12.9017 70.3947 14.7691 70.9922 16.3287 72.0191C16.0098 70.4971 15.8421 68.9194 15.8421 67.3026C15.8421 54.6655 26.0865 44.4211 38.7237 44.4211C41.0154 44.4211 43.2284 44.758 45.3159 45.3849C50.1664 40.2235 57.0555 37 64.6974 37C79.3838 37 91.2895 48.9057 91.2895 63.5921C91.2895 66.5533 90S.8055 69.4014 89.9123 72.0617C92.9366 73.6455 95.0003 76.8141 95.0003 80.4648C95.0003 85.7001 90.7562 89.9441 85.5209 89.9441C85.3816 89.9441 85.2431 89.9411 85.1053 89.9352V90.1842H64.6974H38.7237H10.8947Z" + fill="#FFDDDD" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M176.232 57.1337C176.21 57.1338 176.188 57.1339 176.166 57.1339C176.144 57.1339 176.122 57.1338 176.099 57.1337H161.258V57.0833C158.851 56.7386 157 54.6679 157 52.1649C157 49.4208 159.225 47.1962 161.969 47.1962C162.86 47.1962 163.696 47.4308 164.42 47.8417C164.21 46.9508 164.099 46.0218 164.099 45.0669C164.099 38.4026 169.502 33 176.166 33C181.083 33 185.314 35.9416 187.194 40.1611C187.534 40.1197 187.881 40.0984 188.233 40.0984C192.627 40.0984 196.244 43.4259 196.702 47.6986C197.36 47.3768 198.1 47.1962 198.882 47.1962C201.626 47.1962 203.85 49.4208 203.85 52.1649C203.85 54.9091 201.626 57.1337 198.882 57.1337C198.64 57.1337 198.402 57.1164 198.169 57.083V57.1337H188.312C188.286 57.1339 188.259 57.1341 188.233 57.1341C188.206 57.1341 188.18 57.1339 188.153 57.1337H176.232Z" + fill="white" /> + <rect width="112.945" height="112.945" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 87.0557)" + fill="#A0C7F0" /> + <path + d="M99.7217 69.6358L197.531 123.472L197.535 126.108L99.7217 182.58L1.90882 126.108L1.90903 123.47L99.7217 69.6358Z" + fill="#4277AF" /> + <rect width="112.945" height="112.945" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 67)" + fill="url(#paint0_linear_14421_57490)" /> + <path d="M21.5653 117.3C22.232 112.8 22.7653 104.3 19.5653 106.3C15.5653 108.8 20.0653 120.3 21.5653 117.3Z" + fill="#3D8C5C" /> + <path d="M21.0673 117.8C18.734 115.133 13.8673 110.7 13.0673 114.3C12.0673 118.8 22.5673 120.3 21.0673 117.8Z" + fill="#66AF82" /> + <path + d="M128.626 77.1345C129.293 72.3011 132.326 62.9345 139.126 64.1345C147.626 65.6345 127.626 82.1346 128.626 77.1345Z" + fill="#66AF82" /> + <path + d="M129.625 77.6344C130.792 74.4678 132.425 67.2344 129.625 63.6344C126.125 59.1344 126.125 80.1344 129.625 77.6344Z" + fill="#3D8C5C" /> + <path + d="M191.608 122.513C190.108 117.846 188.208 108.613 192.608 109.013C198.108 109.513 192.446 125.512 191.608 122.513Z" + fill="#66AF82" /> + <path + d="M191.61 123.012C192.11 121.346 191.91 118.112 187.11 118.512C181.11 119.012 189.61 123.512 191.61 123.012Z" + fill="#3D8C5C" /> + <rect width="75.8342" height="89.8068" rx="2" transform="matrix(0.866025 0.5 -0.866025 0.5 104.641 76.9985)" + fill="#769FCB" /> + <path + d="M106.332 88.5715C106.33 88.5697 106.327 88.5679 106.325 88.5661C106.289 88.5409 106.253 88.5138 106.219 88.4868C106.215 88.4832 106.21 88.4796 106.206 88.476C106.172 88.449 106.139 88.4183 106.107 88.3895C106.103 88.3859 106.1 88.3823 106.096 88.3787C106.062 88.3481 106.03 88.3139 105.999 88.2796C105.997 88.2778 105.993 88.2742 105.992 88.2724C105.957 88.2364 105.925 88.1985 105.893 88.1589L105.891 88.1571C105.858 88.1175 105.826 88.0778 105.795 88.0364C105.794 88.0328 105.792 88.031 105.788 88.0274C105.763 87.9914 105.738 87.9553 105.712 87.9175C105.696 87.8923 105.68 87.867 105.666 87.8418C105.653 87.8202 105.639 87.7986 105.626 87.777C105.621 87.7662 105.615 87.7553 105.608 87.7463C105.588 87.7103 105.568 87.6743 105.548 87.6364C105.547 87.6328 105.545 87.6292 105.543 87.6238C105.52 87.5788 105.5 87.5337 105.478 87.4887C105.476 87.4869 105.476 87.4833 105.475 87.4815C105.455 87.4365 105.437 87.3914 105.421 87.3464C105.419 87.3428 105.419 87.341 105.417 87.3374C105.401 87.2905 105.385 87.2437 105.37 87.1968C105.37 87.195 105.368 87.1914 105.368 87.1896C105.356 87.1446 105.343 87.0995 105.332 87.0545C105.33 87.0509 105.33 87.0455 105.329 87.0419C105.318 86.995 105.309 86.95 105.302 86.9032V86.9014C105.294 86.8545 105.289 86.8095 105.285 86.7626C105.285 86.759 105.285 86.7554 105.285 86.7518C105.282 86.7068 105.28 86.6617 105.28 86.6167L41.7881 123.514C41.7881 123.533 41.7881 123.549 41.7881 123.567C41.7881 123.585 41.7899 123.605 41.7899 123.623C41.7899 123.632 41.7917 123.641 41.7917 123.65C41.7917 123.653 41.7917 123.657 41.7935 123.66C41.7935 123.668 41.7935 123.673 41.7953 123.68C41.7971 123.7 41.7989 123.718 41.8025 123.738C41.8043 123.758 41.8079 123.778 41.8115 123.797V123.799V123.801C41.8151 123.819 41.8169 123.837 41.8205 123.855C41.8241 123.875 41.8277 123.896 41.8331 123.916C41.8349 123.923 41.8367 123.931 41.8385 123.938C41.8403 123.941 41.8403 123.947 41.8421 123.95C41.8439 123.959 41.8457 123.969 41.8475 123.978C41.8529 123.999 41.8584 124.019 41.8638 124.041C41.8674 124.057 41.8728 124.071 41.8764 124.087C41.8764 124.089 41.8782 124.093 41.8782 124.095C41.8782 124.096 41.88 124.1 41.88 124.102C41.8854 124.122 41.8926 124.143 41.8998 124.163C41.907 124.183 41.9142 124.203 41.9214 124.223C41.9232 124.226 41.925 124.23 41.925 124.233C41.9268 124.237 41.9268 124.239 41.9286 124.242C41.934 124.255 41.9376 124.268 41.943 124.28C41.9502 124.3 41.9574 124.318 41.9664 124.338C41.9719 124.352 41.9773 124.365 41.9845 124.379C41.9863 124.381 41.9863 124.385 41.9881 124.386C41.9899 124.39 41.9899 124.392 41.9917 124.395C42.0007 124.415 42.0079 124.433 42.0169 124.453C42.0259 124.473 42.0367 124.495 42.0475 124.514C42.0493 124.518 42.0511 124.52 42.0529 124.523C42.0547 124.527 42.0565 124.531 42.0583 124.534C42.0673 124.55 42.0745 124.567 42.0836 124.585C42.0944 124.604 42.1052 124.624 42.1178 124.644C42.1232 124.655 42.1286 124.664 42.1358 124.675C42.1376 124.678 42.1412 124.684 42.143 124.687C42.1538 124.705 42.1646 124.722 42.1754 124.74C42.1917 124.765 42.2061 124.79 42.2223 124.815C42.2259 124.819 42.2277 124.824 42.2295 124.828C42.2511 124.86 42.2745 124.893 42.298 124.925C42.2998 124.927 42.3016 124.931 42.3034 124.932C42.3034 124.932 42.3034 124.932 42.3034 124.934C42.3196 124.958 42.3376 124.981 42.3556 125.003C42.37 125.021 42.3826 125.037 42.397 125.053C42.397 125.055 42.3988 125.055 42.3988 125.057L42.4006 125.059C42.4151 125.077 42.4313 125.095 42.4457 125.111C42.4601 125.129 42.4763 125.145 42.4907 125.161C42.4925 125.163 42.4961 125.167 42.4979 125.168C42.4997 125.17 42.5033 125.174 42.5051 125.176C42.516 125.188 42.5286 125.199 42.5394 125.212C42.5556 125.228 42.5718 125.244 42.588 125.26C42.5934 125.266 42.597 125.269 42.6024 125.275C42.606 125.278 42.6096 125.282 42.6132 125.286C42.6222 125.293 42.6313 125.302 42.6385 125.309C42.6565 125.325 42.6727 125.34 42.6907 125.354C42.6979 125.359 42.7051 125.367 42.7123 125.372C42.7159 125.376 42.7195 125.379 42.7231 125.381C42.7285 125.386 42.7358 125.392 42.7412 125.395C42.7574 125.408 42.7754 125.422 42.7916 125.435C42.8042 125.444 42.8168 125.453 42.8276 125.46C42.8294 125.462 42.833 125.464 42.8348 125.466C42.8366 125.467 42.8402 125.469 42.8421 125.471C42.8583 125.482 42.8745 125.493 42.8925 125.504C42.9087 125.514 42.9249 125.523 42.9411 125.534C42.9447 125.536 42.9483 125.538 42.952 125.541L106.442 88.6454C106.41 88.6237 106.37 88.5985 106.332 88.5715Z" + fill="#A0C7F1" /> + <path d="M105.278 86.6166L41.7881 123.514L41.8025 118.427L105.293 81.5305L105.278 86.6166Z" fill="#EDF7FF" /> + <path + d="M105.318 81.2804C105.32 81.275 105.32 81.2714 105.322 81.266C105.329 81.2318 105.338 81.1994 105.347 81.1687C105.349 81.1633 105.351 81.1579 105.352 81.1507C105.361 81.1219 105.374 81.0931 105.385 81.066C105.387 81.0624 105.387 81.0606 105.388 81.057C105.403 81.0264 105.419 80.9994 105.435 80.9724C105.459 80.9345 105.487 80.9021 105.516 80.8715C105.523 80.8643 105.531 80.857 105.538 80.8498C105.569 80.821 105.601 80.7958 105.637 80.7742L42.1487 117.672C42.1126 117.694 42.0802 117.719 42.0496 117.748C42.0424 117.755 42.0351 117.762 42.0279 117.769C41.9991 117.8 41.9703 117.832 41.9469 117.87L41.9451 117.872C41.9288 117.897 41.9144 117.924 41.9 117.953C41.9 117.953 41.9 117.955 41.8982 117.955C41.8964 117.958 41.8964 117.96 41.8946 117.964C41.8856 117.982 41.8784 118 41.8712 118.02C41.8676 118.029 41.864 118.04 41.8622 118.049C41.8604 118.054 41.8586 118.059 41.8568 118.067C41.855 118.072 41.8532 118.077 41.8514 118.083C41.846 118.103 41.8406 118.122 41.8352 118.142C41.8334 118.149 41.8316 118.157 41.8316 118.164C41.8298 118.169 41.8298 118.173 41.828 118.178C41.8262 118.185 41.8244 118.193 41.8244 118.2C41.8208 118.218 41.8189 118.238 41.8153 118.256C41.8135 118.267 41.8135 118.277 41.8117 118.288C41.8117 118.292 41.8117 118.295 41.8099 118.299C41.8099 118.303 41.8081 118.308 41.8081 118.312C41.8063 118.33 41.8063 118.348 41.8045 118.367C41.8045 118.385 41.8027 118.405 41.8027 118.423C41.8027 118.425 41.8027 118.425 41.8027 118.427L105.293 81.5309C105.293 81.4858 105.295 81.4426 105.298 81.4029C105.298 81.3993 105.298 81.3957 105.3 81.3921C105.305 81.3525 105.311 81.3165 105.318 81.2804Z" + fill="#EDF7FF" /> + <path d="M149.939 113.753L86.4493 150.649L42.9629 125.543L106.453 88.6467L149.939 113.753Z" fill="#A0C7F1" /> + <path + d="M85.3583 145.598C85.3583 145.674 85.3547 145.746 85.3475 145.816C85.3475 145.824 85.3457 145.829 85.3457 145.836C85.3385 145.901 85.3295 145.962 85.3187 146.022C85.3169 146.029 85.3151 146.038 85.3133 146.045C85.3006 146.103 85.2862 146.157 85.27 146.211C85.2664 146.222 85.2628 146.231 85.261 146.24C85.2448 146.289 85.2268 146.337 85.2052 146.382C85.2034 146.388 85.2016 146.393 85.198 146.398C85.1745 146.449 85.1475 146.498 85.1187 146.543C85.1151 146.548 85.1097 146.553 85.1061 146.561C85.0826 146.597 85.0556 146.631 85.0286 146.661C85.0196 146.672 85.0088 146.683 84.998 146.696C84.9745 146.721 84.9493 146.746 84.9241 146.768C84.9133 146.777 84.9025 146.788 84.8917 146.795C84.8556 146.824 84.8178 146.851 84.7764 146.874L145.822 111.398C145.861 111.374 145.899 111.347 145.937 111.318C145.948 111.309 145.959 111.3 145.969 111.291C145.995 111.268 146.02 111.245 146.043 111.219C146.054 111.209 146.063 111.198 146.074 111.185C146.101 111.153 146.126 111.119 146.151 111.082C146.155 111.077 146.16 111.072 146.164 111.064C146.164 111.063 146.166 111.063 146.168 111.061C146.195 111.018 146.22 110.973 146.243 110.926C146.243 110.924 146.245 110.922 146.245 110.92C146.247 110.915 146.249 110.91 146.252 110.904C146.267 110.873 146.279 110.843 146.292 110.812C146.297 110.796 146.303 110.78 146.308 110.764C146.312 110.755 146.315 110.744 146.317 110.735C146.321 110.726 146.323 110.717 146.326 110.708C146.335 110.675 146.344 110.641 146.353 110.607C146.357 110.594 146.359 110.582 146.36 110.569C146.362 110.562 146.364 110.553 146.366 110.546C146.368 110.533 146.371 110.522 146.373 110.51C146.378 110.479 146.384 110.446 146.387 110.414C146.389 110.396 146.391 110.378 146.393 110.36C146.393 110.353 146.395 110.347 146.395 110.34C146.395 110.333 146.396 110.326 146.396 110.319C146.398 110.288 146.4 110.257 146.402 110.225C146.404 110.192 146.404 110.162 146.404 110.129C146.404 110.128 146.404 110.126 146.404 110.124L146.418 105.231L85.3709 140.705L85.3583 145.598Z" + fill="#4277AF" /> + <path + d="M109.541 81.6489C109.519 81.6362 109.499 81.6254 109.478 81.6128C109.451 81.5984 109.424 81.584 109.397 81.5714C109.379 81.5624 109.363 81.5552 109.345 81.5462C109.341 81.5444 109.336 81.5426 109.332 81.5408C109.327 81.5389 109.321 81.5353 109.316 81.5335C109.289 81.5209 109.262 81.5101 109.236 81.4993C109.209 81.4885 109.182 81.4777 109.155 81.4687C109.15 81.4669 109.146 81.4651 109.141 81.4651C109.137 81.4633 109.132 81.4633 109.128 81.4615C109.11 81.4561 109.092 81.4489 109.074 81.4435C109.047 81.4345 109.018 81.4272 108.991 81.42C108.979 81.4164 108.966 81.4146 108.952 81.411C108.946 81.4092 108.941 81.4092 108.934 81.4074C108.925 81.4056 108.918 81.4038 108.909 81.402C108.88 81.3966 108.851 81.3912 108.822 81.3876C108.804 81.3858 108.788 81.384 108.77 81.3822C108.764 81.3822 108.757 81.3804 108.752 81.3804C108.746 81.3804 108.739 81.3786 108.734 81.3786C108.701 81.3768 108.671 81.375 108.64 81.375C108.626 81.375 108.613 81.3768 108.6 81.3768C108.59 81.3768 108.581 81.3768 108.57 81.3786C108.559 81.3786 108.548 81.3786 108.537 81.3804C108.498 81.384 108.46 81.3894 108.422 81.3966H108.42C108.411 81.3984 108.404 81.402 108.397 81.4038C108.359 81.4128 108.321 81.4218 108.283 81.4345C108.28 81.4363 108.278 81.4381 108.274 81.4381C108.222 81.4579 108.17 81.4813 108.121 81.5083L42.752 114.516C42.8006 114.488 42.851 114.466 42.9051 114.446C42.9447 114.432 42.9844 114.421 43.0258 114.412C43.0348 114.41 43.042 114.406 43.051 114.405C43.0997 114.396 43.1483 114.388 43.2006 114.387C43.2114 114.387 43.2204 114.385 43.2312 114.385C43.2798 114.383 43.3303 114.383 43.3825 114.388C43.3879 114.388 43.3951 114.39 43.4005 114.39C43.4546 114.396 43.5086 114.403 43.5645 114.415C43.5699 114.417 43.5753 114.417 43.5825 114.419C43.6402 114.432 43.6978 114.448 43.7573 114.468C43.7609 114.47 43.7663 114.47 43.7699 114.471C43.8311 114.493 43.8942 114.518 43.9591 114.547C43.9627 114.549 43.9681 114.551 43.9717 114.552C44.0365 114.583 44.1014 114.615 44.1681 114.655L83.39 137.271L144.435 101.795L109.541 81.6489Z" + fill="white" /> + <path + d="M84.7181 138.631C84.7398 138.667 84.7632 138.702 84.7848 138.74C84.7956 138.758 84.8046 138.774 84.8136 138.792C84.8479 138.853 84.8821 138.914 84.9145 138.977C84.9181 138.985 84.9217 138.992 84.9253 138.999C84.9632 139.075 84.9992 139.152 85.0334 139.23C85.0352 139.233 85.037 139.237 85.0388 139.24C85.0713 139.316 85.1037 139.394 85.1307 139.471C85.1325 139.476 85.1343 139.482 85.1361 139.485C85.1649 139.565 85.192 139.644 85.2154 139.721C85.2172 139.727 85.219 139.73 85.219 139.736C85.2424 139.812 85.2622 139.889 85.2803 139.965C85.2821 139.972 85.2839 139.979 85.2857 139.986C85.3037 140.064 85.3199 140.143 85.3307 140.221C85.3307 140.222 85.3307 140.224 85.3307 140.224C85.3433 140.303 85.3523 140.381 85.3595 140.458C85.3595 140.464 85.3613 140.471 85.3613 140.478C85.3667 140.556 85.3703 140.633 85.3703 140.709L146.416 105.232C146.416 105.204 146.416 105.173 146.414 105.142C146.412 105.11 146.412 105.079 146.41 105.047C146.408 105.032 146.408 105.018 146.407 105.002C146.407 104.995 146.405 104.989 146.405 104.984C146.403 104.973 146.403 104.962 146.403 104.95C146.399 104.917 146.396 104.885 146.392 104.852C146.389 104.82 146.383 104.786 146.378 104.753C146.378 104.751 146.378 104.751 146.378 104.75C146.378 104.748 146.378 104.746 146.378 104.746C146.372 104.715 146.367 104.685 146.362 104.652C146.354 104.618 146.347 104.584 146.34 104.548C146.336 104.535 146.335 104.523 146.331 104.51C146.329 104.503 146.327 104.496 146.326 104.488C146.322 104.474 146.318 104.458 146.315 104.443C146.306 104.407 146.297 104.373 146.288 104.337C146.281 104.312 146.273 104.285 146.264 104.26C146.262 104.254 146.262 104.251 146.261 104.247C146.259 104.242 146.259 104.238 146.257 104.233C146.246 104.198 146.235 104.164 146.225 104.13C146.214 104.096 146.201 104.061 146.189 104.029C146.187 104.022 146.183 104.016 146.181 104.009C146.18 104.004 146.178 103.998 146.176 103.995C146.169 103.973 146.16 103.953 146.153 103.932C146.14 103.899 146.127 103.867 146.113 103.834C146.104 103.811 146.093 103.788 146.082 103.764C146.081 103.761 146.079 103.757 146.077 103.753C146.075 103.75 146.073 103.744 146.072 103.741C146.057 103.708 146.043 103.676 146.028 103.645C146.012 103.609 145.994 103.575 145.978 103.541C145.974 103.535 145.972 103.53 145.969 103.525C145.965 103.517 145.962 103.51 145.958 103.503C145.944 103.476 145.929 103.447 145.915 103.42C145.897 103.386 145.877 103.352 145.857 103.317C145.848 103.299 145.837 103.283 145.828 103.265C145.825 103.258 145.821 103.251 145.817 103.245C145.799 103.216 145.781 103.188 145.763 103.159C145.736 103.116 145.711 103.072 145.682 103.031C145.679 103.024 145.673 103.016 145.67 103.011C145.628 102.95 145.587 102.89 145.544 102.831C145.515 102.791 145.486 102.753 145.455 102.716C145.43 102.685 145.407 102.654 145.381 102.624C145.381 102.624 145.381 102.622 145.38 102.622C145.38 102.622 145.38 102.62 145.378 102.62C145.353 102.589 145.327 102.559 145.3 102.53C145.275 102.501 145.25 102.472 145.223 102.444C145.219 102.438 145.214 102.435 145.21 102.429C145.207 102.424 145.201 102.42 145.198 102.415C145.18 102.395 145.162 102.375 145.142 102.357C145.115 102.328 145.086 102.301 145.057 102.274C145.048 102.265 145.039 102.258 145.03 102.249C145.023 102.244 145.018 102.236 145.01 102.231C144.996 102.218 144.983 102.206 144.969 102.191C144.94 102.164 144.909 102.139 144.881 102.114C144.868 102.103 144.854 102.092 144.841 102.081C144.834 102.076 144.828 102.071 144.821 102.065C144.812 102.058 144.801 102.049 144.792 102.042C144.764 102.018 144.735 101.997 144.706 101.975C144.684 101.959 144.663 101.944 144.643 101.93C144.639 101.926 144.636 101.925 144.63 101.921C144.627 101.919 144.623 101.916 144.619 101.914C144.591 101.894 144.564 101.876 144.535 101.858C144.508 101.84 144.479 101.824 144.45 101.806C144.443 101.802 144.437 101.799 144.43 101.795L83.3867 137.271C83.4534 137.311 83.52 137.352 83.5867 137.397C83.5903 137.401 83.5939 137.403 83.5993 137.406C83.6606 137.45 83.72 137.495 83.7795 137.543C83.7867 137.549 83.7921 137.554 83.7993 137.559C83.857 137.606 83.9128 137.657 83.9687 137.707C83.9759 137.713 83.9813 137.72 83.9885 137.725C84.0443 137.777 84.1002 137.833 84.1542 137.891C84.1578 137.896 84.1632 137.9 84.1668 137.905C84.2245 137.967 84.2803 138.03 84.3344 138.096L84.3362 138.098C84.392 138.165 84.4461 138.235 84.4983 138.305C84.4983 138.305 84.4983 138.305 84.4983 138.307C84.5452 138.372 84.592 138.439 84.6371 138.505C84.6659 138.545 84.6911 138.588 84.7181 138.631Z" + fill="white" /> + <path + d="M83.3878 137.271C84.4868 137.905 85.3751 139.446 85.3715 140.707L85.357 145.6C85.3534 146.863 84.4598 147.371 83.359 146.737L44.1389 124.119C43.0399 123.485 42.1517 121.948 42.1553 120.683L42.1697 115.79C42.1733 114.529 43.0669 114.017 44.1659 114.653L83.3878 137.271Z" + fill="#4277AF" /> + <path + d="M150.828 115.256C150.828 115.241 150.827 115.227 150.827 115.212C150.825 115.198 150.825 115.184 150.823 115.169C150.821 115.155 150.819 115.14 150.818 115.126C150.816 115.111 150.814 115.095 150.81 115.081V115.079C150.809 115.065 150.805 115.05 150.803 115.036C150.8 115.02 150.798 115.005 150.794 114.989C150.791 114.973 150.787 114.958 150.783 114.942C150.78 114.926 150.776 114.91 150.771 114.895C150.767 114.883 150.764 114.87 150.76 114.857C150.76 114.856 150.76 114.856 150.76 114.854C150.76 114.852 150.758 114.848 150.758 114.847C150.753 114.83 150.749 114.816 150.744 114.8C150.738 114.785 150.733 114.769 150.728 114.755C150.722 114.74 150.717 114.726 150.711 114.712C150.706 114.697 150.7 114.683 150.693 114.668C150.688 114.657 150.684 114.647 150.679 114.634C150.679 114.632 150.679 114.632 150.677 114.63C150.675 114.629 150.675 114.627 150.673 114.623C150.666 114.609 150.661 114.594 150.654 114.58C150.646 114.564 150.639 114.548 150.63 114.533C150.621 114.515 150.612 114.497 150.603 114.479C150.592 114.459 150.582 114.441 150.571 114.421C150.569 114.418 150.567 114.414 150.565 114.412C150.564 114.409 150.562 114.405 150.558 114.402C150.537 114.366 150.515 114.33 150.492 114.295C150.473 114.268 150.454 114.241 150.436 114.214C150.423 114.196 150.41 114.18 150.396 114.162C150.385 114.148 150.373 114.133 150.362 114.119C150.351 114.104 150.338 114.092 150.328 114.079C150.317 114.067 150.304 114.054 150.293 114.041C150.292 114.039 150.288 114.036 150.286 114.034C150.284 114.032 150.284 114.032 150.283 114.03C150.273 114.021 150.264 114.012 150.255 114.003C150.243 113.991 150.23 113.978 150.218 113.966C150.205 113.953 150.192 113.94 150.178 113.93C150.165 113.917 150.151 113.906 150.138 113.895C150.131 113.89 150.124 113.885 150.119 113.879C150.117 113.877 150.115 113.877 150.113 113.876C150.108 113.872 150.102 113.867 150.099 113.863C150.086 113.852 150.072 113.843 150.059 113.832C150.046 113.823 150.034 113.814 150.019 113.805C150.007 113.796 149.994 113.789 149.982 113.78C149.969 113.773 149.956 113.764 149.944 113.757C149.94 113.755 149.938 113.753 149.935 113.751L86.4482 150.649C86.5095 150.685 86.569 150.726 86.6266 150.773C86.6284 150.775 86.6302 150.775 86.6302 150.777C86.6879 150.824 86.7419 150.874 86.7942 150.93C86.796 150.932 86.796 150.932 86.7978 150.934C86.85 150.99 86.9005 151.051 86.9473 151.114C86.9941 151.177 87.0374 151.244 87.077 151.312C87.0788 151.316 87.0806 151.319 87.0824 151.321C87.1221 151.389 87.1563 151.458 87.1869 151.528C87.1869 151.53 87.1869 151.53 87.1887 151.532C87.2194 151.604 87.2482 151.678 87.2698 151.752C87.2698 151.753 87.2698 151.753 87.2698 151.755C87.2914 151.829 87.3094 151.903 87.3202 151.977C87.3311 152.051 87.3383 152.123 87.3383 152.195C87.3383 152.265 87.3311 152.328 87.3202 152.388C87.3202 152.389 87.3202 152.391 87.3184 152.393C87.3058 152.451 87.2896 152.505 87.268 152.552C87.268 152.552 87.268 152.553 87.2662 152.553C87.2482 152.593 87.223 152.625 87.1995 152.658C87.1905 152.669 87.1833 152.679 87.1743 152.688C87.1455 152.719 87.1131 152.748 87.077 152.77L150.567 115.874C150.603 115.852 150.636 115.825 150.664 115.792C150.673 115.783 150.681 115.773 150.69 115.762C150.7 115.749 150.713 115.737 150.722 115.722C150.735 115.702 150.746 115.683 150.756 115.661C150.756 115.659 150.756 115.659 150.758 115.657C150.758 115.656 150.758 115.656 150.76 115.654C150.767 115.639 150.773 115.625 150.78 115.609C150.785 115.594 150.791 115.578 150.796 115.562C150.8 115.547 150.805 115.531 150.809 115.517C150.81 115.51 150.81 115.504 150.812 115.497C150.812 115.495 150.812 115.493 150.814 115.492C150.816 115.486 150.816 115.479 150.818 115.474C150.819 115.459 150.823 115.445 150.825 115.43C150.827 115.416 150.828 115.402 150.828 115.387C150.83 115.373 150.83 115.358 150.83 115.346C150.83 115.331 150.832 115.317 150.832 115.302V115.301C150.83 115.283 150.83 115.27 150.828 115.256Z" + fill="#EDF7FF" /> + <path + d="M106.463 78.8123C106.433 78.7943 106.4 78.7763 106.37 78.76C106.33 78.7384 106.289 78.7168 106.249 78.697C106.222 78.6844 106.197 78.6718 106.17 78.6592C106.164 78.6556 106.157 78.6537 106.152 78.6501C106.144 78.6465 106.137 78.6429 106.13 78.6393C106.09 78.6213 106.051 78.6051 106.011 78.5889C105.971 78.5727 105.932 78.5583 105.892 78.5438C105.885 78.542 105.878 78.5384 105.871 78.5366C105.865 78.5348 105.858 78.533 105.853 78.5312C105.826 78.5222 105.8 78.5132 105.773 78.506C105.732 78.4934 105.692 78.4826 105.651 78.4718C105.631 78.4664 105.611 78.4628 105.591 78.4592C105.582 78.4574 105.575 78.4556 105.566 78.4538C105.553 78.452 105.541 78.4484 105.53 78.4448C105.487 78.4357 105.444 78.4285 105.4 78.4231C105.373 78.4195 105.346 78.4177 105.321 78.4141C105.312 78.4141 105.303 78.4123 105.294 78.4105C105.285 78.4105 105.278 78.4087 105.269 78.4087C105.222 78.4051 105.175 78.4033 105.13 78.4033C105.11 78.4033 105.089 78.4051 105.069 78.4069C105.053 78.4069 105.038 78.4087 105.022 78.4087C105.006 78.4105 104.99 78.4087 104.975 78.4105C104.917 78.4159 104.86 78.4249 104.804 78.4358C104.802 78.4358 104.802 78.4357 104.8 78.4376C104.786 78.4412 104.773 78.4448 104.761 78.4484C104.705 78.461 104.649 78.4754 104.597 78.4934C104.59 78.4952 104.584 78.4988 104.577 78.5006C104.568 78.5042 104.559 78.5078 104.55 78.5114C104.483 78.5384 104.417 78.5673 104.355 78.6033L40.8652 115.503C40.9265 115.467 40.9932 115.436 41.0598 115.411C41.0688 115.407 41.0778 115.404 41.0868 115.4C41.1463 115.379 41.2075 115.362 41.2688 115.348C41.2832 115.344 41.2958 115.339 41.3084 115.337C41.3805 115.323 41.4544 115.314 41.53 115.308C41.5445 115.307 41.5607 115.307 41.5769 115.307C41.6508 115.303 41.7246 115.305 41.8021 115.31C41.8111 115.31 41.8201 115.312 41.8291 115.314C41.9102 115.321 41.9913 115.334 42.0741 115.352C42.0831 115.353 42.0904 115.355 42.0994 115.357C42.184 115.377 42.2723 115.4 42.3606 115.429C42.366 115.431 42.3732 115.433 42.3786 115.434C42.4705 115.467 42.5642 115.503 42.6597 115.546C42.6651 115.55 42.6723 115.552 42.6777 115.555C42.775 115.6 42.8723 115.651 42.9714 115.708" + fill="#EDF7FF" /> + <path d="M42.9746 115.708L86.461 140.814L149.951 103.918L106.465 78.8123" fill="#EDF7FF" /> + <path + d="M42.989 115.697L86.4754 140.803C86.9708 141.09 87.369 141.78 87.3672 142.349C87.3654 142.918 86.9636 143.146 86.47 142.861L42.9817 117.753C42.335 117.378 41.8053 117.681 41.8035 118.425L41.7891 123.513C41.7873 124.257 42.3115 125.169 42.9601 125.542L86.4465 150.649C86.942 150.936 87.3402 151.626 87.3384 152.193C87.3366 152.761 86.9348 152.99 86.4411 152.705L42.9547 127.599C41.3206 126.655 39.9946 124.36 40 122.481L40.0144 117.393C40.0198 115.514 41.3531 114.753 42.989 115.697Z" + fill="#4277AF" /> + <path + d="M150.853 105.412C150.853 105.397 150.852 105.383 150.852 105.368C150.85 105.354 150.85 105.339 150.848 105.325C150.846 105.311 150.844 105.296 150.843 105.282C150.841 105.267 150.839 105.251 150.835 105.237C150.835 105.237 150.835 105.237 150.835 105.235C150.834 105.221 150.83 105.206 150.828 105.192C150.825 105.175 150.823 105.161 150.819 105.145C150.816 105.129 150.812 105.114 150.808 105.098C150.805 105.082 150.801 105.066 150.796 105.051C150.792 105.039 150.789 105.026 150.785 105.015C150.785 105.013 150.785 105.013 150.783 105.012C150.783 105.01 150.781 105.006 150.781 105.004C150.776 104.988 150.772 104.974 150.767 104.957C150.762 104.943 150.756 104.927 150.751 104.912C150.745 104.898 150.74 104.884 150.735 104.869C150.729 104.855 150.724 104.84 150.717 104.826C150.711 104.815 150.708 104.804 150.702 104.794C150.702 104.792 150.702 104.792 150.7 104.79C150.699 104.788 150.699 104.785 150.697 104.783C150.69 104.768 150.684 104.754 150.677 104.739C150.67 104.723 150.663 104.709 150.654 104.693C150.644 104.675 150.635 104.657 150.626 104.639C150.616 104.619 150.605 104.601 150.594 104.581C150.592 104.577 150.59 104.574 150.589 104.572C150.587 104.568 150.585 104.565 150.581 104.559C150.56 104.523 150.538 104.487 150.515 104.453C150.497 104.426 150.477 104.399 150.459 104.372C150.446 104.354 150.432 104.338 150.419 104.32C150.408 104.305 150.396 104.291 150.385 104.276C150.374 104.262 150.362 104.249 150.351 104.237C150.34 104.224 150.327 104.212 150.317 104.199C150.315 104.197 150.311 104.194 150.309 104.192C150.308 104.19 150.308 104.19 150.306 104.188C150.297 104.179 150.288 104.17 150.279 104.161C150.266 104.149 150.254 104.136 150.241 104.123C150.228 104.111 150.216 104.098 150.201 104.087C150.189 104.075 150.174 104.064 150.162 104.053C150.154 104.048 150.147 104.042 150.142 104.037C150.14 104.035 150.138 104.035 150.138 104.033C150.133 104.03 150.127 104.024 150.124 104.021C150.111 104.01 150.097 104.001 150.084 103.99C150.072 103.981 150.059 103.972 150.045 103.963C150.032 103.954 150.019 103.947 150.007 103.938C149.994 103.931 149.981 103.922 149.969 103.914C149.965 103.913 149.963 103.911 149.96 103.909L86.4697 140.805C86.531 140.841 86.5904 140.882 86.6481 140.929C86.6499 140.931 86.6517 140.931 86.6535 140.933C86.7093 140.98 86.7652 141.03 86.8174 141.086C86.8192 141.088 86.8192 141.088 86.8211 141.09C86.9255 141.201 87.021 141.331 87.1003 141.468C87.1021 141.472 87.1039 141.475 87.1057 141.479C87.1453 141.547 87.1796 141.616 87.2102 141.686C87.2102 141.688 87.2102 141.688 87.212 141.69C87.2444 141.762 87.2715 141.835 87.2931 141.909C87.2931 141.911 87.2931 141.911 87.2949 141.913C87.3165 141.987 87.3345 142.061 87.3453 142.135C87.3561 142.208 87.3633 142.28 87.3633 142.353C87.3633 142.423 87.3561 142.486 87.3453 142.545C87.3453 142.547 87.3453 142.549 87.3435 142.551C87.3309 142.608 87.3147 142.661 87.2931 142.709C87.2931 142.709 87.2931 142.711 87.2913 142.713C87.2733 142.753 87.248 142.785 87.2246 142.817C87.2156 142.828 87.2084 142.839 87.1994 142.848C87.1706 142.879 87.1381 142.907 87.1021 142.929L150.592 106.033C150.628 106.011 150.661 105.984 150.69 105.952C150.699 105.943 150.706 105.932 150.715 105.921C150.726 105.909 150.738 105.896 150.747 105.882C150.76 105.862 150.771 105.842 150.781 105.82C150.781 105.819 150.781 105.819 150.783 105.817C150.783 105.817 150.783 105.815 150.785 105.813C150.792 105.799 150.798 105.784 150.805 105.768C150.81 105.754 150.816 105.738 150.821 105.721C150.825 105.707 150.83 105.691 150.834 105.676C150.835 105.669 150.835 105.664 150.837 105.657C150.837 105.655 150.837 105.653 150.839 105.651C150.841 105.646 150.841 105.639 150.843 105.633C150.844 105.619 150.848 105.604 150.85 105.59C150.852 105.575 150.853 105.561 150.853 105.547C150.855 105.532 150.855 105.518 150.855 105.505C150.855 105.491 150.857 105.476 150.857 105.462V105.46C150.853 105.439 150.853 105.426 150.853 105.412Z" + fill="#EDF7FF" /> + <rect width="49.6086" height="66.5482" rx="2" transform="matrix(0.866025 0.5 -0.866025 0.5 103.832 80.3882)" + fill="#769FCB" /> + <path + d="M43.6889 106.376C43.6915 106.376 43.6915 106.376 43.694 106.376C43.7479 106.381 43.8043 106.394 43.8633 106.412H43.8659C43.9249 106.432 43.989 106.46 44.0506 106.496L109.267 68.6002C109.257 68.595 109.247 68.5899 109.239 68.5848C109.226 68.5771 109.213 68.572 109.201 68.5643C109.188 68.5591 109.175 68.5514 109.162 68.5463C109.149 68.5412 109.136 68.536 109.126 68.5309C109.113 68.5258 109.101 68.5207 109.09 68.5181C109.088 68.5181 109.085 68.5155 109.083 68.5155H109.08C109.072 68.513 109.062 68.5104 109.054 68.5078C109.042 68.5027 109.029 68.5001 109.016 68.4976C109.003 68.495 108.99 68.4924 108.977 68.4899C108.965 68.4873 108.949 68.4847 108.936 68.4822C108.926 68.4822 108.918 68.4796 108.908 68.4796C108.906 68.4796 108.906 68.4796 108.903 68.4796C108.9 68.4796 108.898 68.4796 108.893 68.4796C108.877 68.4796 108.865 68.4771 108.849 68.4771C108.834 68.4771 108.818 68.4771 108.8 68.4796C108.782 68.4822 108.764 68.4847 108.747 68.4873C108.747 68.4873 108.747 68.4873 108.744 68.4873H108.741C108.721 68.4924 108.7 68.4976 108.68 68.5053C108.654 68.5155 108.629 68.5258 108.605 68.5386L43.3965 106.435C43.4375 106.412 43.4837 106.394 43.5324 106.384C43.5324 106.384 43.5324 106.384 43.535 106.384C43.5812 106.373 43.635 106.371 43.6889 106.376Z" + fill="white" /> + <path d="M153.933 94.3866L88.7162 132.285L44.0508 106.499L109.267 68.6001L153.933 94.3866Z" fill="#FF9C9B" /> + <path + d="M91.0878 130.054C91.0878 130.116 91.0853 130.175 91.0801 130.231C91.0801 130.236 91.0801 130.242 91.0776 130.247C91.0724 130.298 91.0647 130.349 91.0545 130.398C91.0545 130.406 91.0519 130.411 91.0519 130.419C91.0416 130.465 91.0314 130.511 91.016 130.552C91.0134 130.56 91.0109 130.567 91.0083 130.575C90.9955 130.616 90.9801 130.655 90.9621 130.69C90.9596 130.696 90.9596 130.698 90.957 130.703C90.9365 130.744 90.916 130.785 90.8929 130.821C90.8903 130.826 90.8852 130.829 90.8826 130.834C90.8621 130.862 90.8416 130.89 90.8185 130.916C90.8108 130.926 90.8031 130.934 90.7928 130.944C90.7723 130.965 90.7544 130.985 90.7313 131.003C90.7236 131.011 90.7133 131.019 90.7056 131.026C90.6748 131.05 90.6441 131.073 90.6133 131.091L140.219 102.267C140.252 102.249 140.283 102.226 140.311 102.203C140.322 102.195 140.329 102.187 140.337 102.18C140.357 102.162 140.378 102.141 140.399 102.121C140.406 102.113 140.416 102.103 140.424 102.093C140.447 102.067 140.468 102.039 140.488 102.01C140.491 102.005 140.496 102.003 140.499 101.998L140.501 101.995C140.524 101.959 140.545 101.923 140.563 101.885C140.563 101.882 140.563 101.882 140.565 101.88C140.568 101.875 140.568 101.872 140.57 101.867C140.581 101.844 140.593 101.818 140.601 101.792C140.606 101.78 140.609 101.767 140.614 101.751C140.617 101.744 140.619 101.736 140.622 101.728C140.624 101.721 140.627 101.716 140.629 101.708C140.637 101.682 140.645 101.654 140.65 101.626C140.652 101.615 140.655 101.605 140.655 101.595C140.658 101.587 140.658 101.582 140.66 101.574C140.663 101.564 140.665 101.554 140.665 101.546C140.67 101.521 140.673 101.495 140.678 101.469C140.681 101.454 140.681 101.438 140.683 101.426C140.683 101.421 140.683 101.415 140.686 101.41C140.686 101.405 140.688 101.397 140.688 101.392C140.691 101.367 140.691 101.341 140.694 101.315C140.694 101.29 140.696 101.264 140.696 101.236C140.696 101.233 140.696 101.233 140.696 101.231L91.0878 130.054Z" + fill="#FF9C9B" /> + <path d="M91.095 128.407L140.696 99.5811L140.69 101.228L91.0898 130.054L91.095 128.407Z" fill="#FF9C9B" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M96.3284 72.1122C96.3354 72.1154 96.3425 72.1186 96.3502 72.1224C96.3569 72.1257 96.3638 72.1291 96.3709 72.1325C96.3857 72.1396 96.4013 72.1471 96.4169 72.1558C96.43 72.1614 96.4417 72.1683 96.454 72.1757C96.4586 72.1784 96.4633 72.1812 96.4682 72.184L88.6371 76.7353L96.4689 72.1839L139.085 96.7906L89.4843 125.614L46.8677 101.011L46.8651 101.013C46.8112 100.982 46.7599 100.956 46.706 100.931C46.7048 100.929 46.7028 100.929 46.7009 100.928C46.699 100.927 46.6971 100.927 46.6958 100.925C46.6445 100.902 46.5932 100.882 46.5419 100.864C46.5406 100.864 46.5387 100.863 46.5367 100.863C46.5348 100.862 46.5329 100.861 46.5316 100.861C46.4829 100.843 46.4341 100.831 46.388 100.82C46.3869 100.82 46.3854 100.82 46.3836 100.819C46.3812 100.819 46.3781 100.818 46.3751 100.818C46.329 100.807 46.2854 100.802 46.2418 100.797C46.2366 100.795 46.2315 100.795 46.2264 100.795L46.2263 100.795C46.1853 100.792 46.1443 100.79 46.1032 100.792H46.0776C46.0366 100.795 45.9955 100.8 45.957 100.807C45.9509 100.807 45.9465 100.809 45.941 100.811C45.9396 100.812 45.9381 100.812 45.9365 100.813C45.9032 100.82 45.8698 100.831 45.839 100.841C45.8017 100.855 45.7623 100.871 45.7266 100.891L95.3165 72.0634C95.355 72.0403 95.396 72.0224 95.4396 72.007C95.4409 72.007 95.4422 72.0063 95.4435 72.0057C95.4447 72.0051 95.446 72.0044 95.4473 72.0044C95.4755 71.9942 95.5063 71.9865 95.537 71.9788L95.5371 71.9788C95.5432 71.9788 95.5476 71.9772 95.5531 71.9752C95.5545 71.9747 95.556 71.9742 95.5576 71.9736H95.5602C95.5884 71.9685 95.6217 71.9634 95.6525 71.9608H95.6782H95.7038C95.7166 71.9583 95.7269 71.9583 95.7372 71.9583C95.7628 71.9583 95.7885 71.9583 95.8141 71.9608C95.8192 71.9634 95.8244 71.9634 95.8295 71.9634C95.8346 71.9659 95.8398 71.9659 95.8449 71.9659C95.8526 71.9672 95.8596 71.9679 95.8667 71.9685C95.8737 71.9692 95.8808 71.9698 95.8885 71.9711C95.9002 71.9734 95.9114 71.9752 95.9222 71.977C95.9352 71.9791 95.9478 71.9811 95.9603 71.9839C95.9642 71.9852 95.9674 71.9858 95.9706 71.9865C95.9738 71.9871 95.977 71.9878 95.9808 71.989C95.9819 71.989 95.9834 71.9895 95.9852 71.99C95.9877 71.9907 95.9907 71.9916 95.9937 71.9916L96.0244 71.9993C96.0475 72.0044 96.0681 72.0096 96.0911 72.0172C96.0988 72.0198 96.1059 72.0224 96.1129 72.0249C96.12 72.0275 96.127 72.0301 96.1347 72.0326C96.136 72.0326 96.1379 72.0333 96.1399 72.0339C96.1418 72.0346 96.1437 72.0352 96.145 72.0352C96.1476 72.0352 96.1527 72.0352 96.1553 72.0378C96.1637 72.0409 96.1722 72.0445 96.1808 72.0482C96.1931 72.0535 96.2058 72.0589 96.2194 72.0634C96.2296 72.0685 96.2406 72.073 96.2515 72.0775C96.2624 72.082 96.2733 72.0865 96.2835 72.0916C96.2873 72.0916 96.2896 72.093 96.2927 72.0948C96.2938 72.0954 96.295 72.0961 96.2963 72.0968C96.2976 72.098 96.2995 72.0987 96.3015 72.0993C96.3034 72.1 96.3053 72.1006 96.3066 72.1019C96.3143 72.1057 96.3213 72.1089 96.3284 72.1122Z" + fill="#FF9C9B" /> + <path + d="M89.7985 125.835C89.8037 125.84 89.8088 125.842 89.8139 125.847C89.8601 125.886 89.9063 125.927 89.9524 125.968C89.9576 125.973 89.9627 125.978 89.9678 125.983C90.014 126.027 90.0576 126.071 90.1012 126.117C90.1038 126.122 90.1089 126.124 90.1115 126.13C90.1576 126.178 90.2038 126.232 90.2474 126.283C90.2474 126.283 90.2474 126.283 90.25 126.286C90.2962 126.34 90.3398 126.396 90.3808 126.455C90.3834 126.458 90.3834 126.46 90.3859 126.463C90.4218 126.514 90.4578 126.566 90.4937 126.619C90.5168 126.653 90.5373 126.689 90.5604 126.725C90.5783 126.753 90.5963 126.781 90.6142 126.812C90.6219 126.827 90.6296 126.84 90.6373 126.855C90.6655 126.904 90.6937 126.956 90.7194 127.004C90.722 127.009 90.7245 127.015 90.7271 127.02C90.7579 127.081 90.7887 127.143 90.8143 127.207C90.8169 127.209 90.8169 127.215 90.8194 127.217C90.8451 127.279 90.8707 127.34 90.8938 127.404C90.8964 127.41 90.8964 127.412 90.8989 127.417C90.922 127.481 90.9451 127.545 90.9631 127.61C90.9631 127.615 90.9656 127.617 90.9656 127.622C90.9836 127.684 91.0016 127.746 91.0144 127.807C91.0169 127.812 91.0169 127.82 91.0195 127.825C91.0349 127.889 91.0477 127.953 91.058 128.017V128.02C91.0682 128.084 91.0759 128.148 91.0811 128.21C91.0811 128.215 91.0811 128.22 91.0811 128.225C91.0862 128.289 91.0888 128.351 91.0888 128.412L140.692 99.5812C140.692 99.5581 140.692 99.5325 140.692 99.5094C140.692 99.4837 140.689 99.4581 140.689 99.4299C140.689 99.417 140.687 99.4068 140.687 99.3939C140.687 99.3888 140.687 99.3837 140.687 99.3786C140.687 99.3683 140.684 99.3606 140.684 99.3503C140.682 99.3247 140.679 99.2965 140.677 99.2708C140.674 99.2426 140.669 99.217 140.664 99.1887V99.1862V99.1836C140.659 99.158 140.656 99.1323 140.651 99.1067C140.646 99.0784 140.641 99.0502 140.633 99.022C140.63 99.0118 140.628 99.0015 140.625 98.9938C140.623 98.9887 140.623 98.981 140.62 98.9758C140.618 98.963 140.615 98.9502 140.612 98.9374C140.605 98.9092 140.597 98.8809 140.589 98.8527C140.584 98.8322 140.576 98.8117 140.571 98.7912C140.571 98.786 140.569 98.7835 140.569 98.7783C140.569 98.7732 140.566 98.7706 140.566 98.7655C140.559 98.7373 140.548 98.7091 140.541 98.6809C140.53 98.6526 140.523 98.627 140.512 98.5988C140.51 98.5936 140.51 98.5885 140.507 98.5834C140.505 98.5783 140.505 98.5757 140.502 98.5706C140.494 98.5526 140.489 98.5347 140.482 98.5167C140.471 98.491 140.461 98.4654 140.451 98.4372C140.443 98.4192 140.435 98.4013 140.428 98.3808C140.425 98.3782 140.425 98.3731 140.423 98.3705C140.42 98.3654 140.42 98.3628 140.417 98.3577C140.405 98.332 140.394 98.3064 140.382 98.2807C140.369 98.2525 140.353 98.2243 140.34 98.1961C140.338 98.1909 140.335 98.1884 140.335 98.1832C140.333 98.1781 140.33 98.173 140.328 98.1653C140.315 98.1422 140.305 98.1191 140.292 98.0986C140.276 98.0704 140.261 98.0447 140.246 98.0165C140.238 98.0011 140.23 97.9883 140.22 97.9729C140.217 97.9678 140.215 97.9626 140.21 97.9549C140.197 97.9319 140.181 97.9088 140.166 97.8857C140.146 97.8498 140.122 97.8139 140.099 97.7805C140.097 97.7754 140.092 97.7677 140.089 97.7626C140.058 97.7164 140.025 97.6702 139.992 97.6241C139.989 97.6215 139.989 97.6189 139.987 97.6164C139.963 97.5856 139.94 97.5522 139.915 97.5215C139.894 97.4958 139.876 97.4727 139.856 97.4471C139.856 97.4471 139.856 97.4445 139.853 97.4445C139.833 97.4189 139.812 97.3958 139.792 97.3727C139.771 97.3496 139.751 97.3265 139.727 97.3034C139.725 97.3009 139.72 97.2957 139.717 97.2932C139.715 97.2906 139.709 97.2855 139.707 97.2829C139.692 97.2675 139.676 97.2521 139.661 97.2367C139.638 97.2136 139.615 97.1906 139.591 97.17C139.584 97.1623 139.576 97.1572 139.571 97.1495C139.566 97.1444 139.561 97.1393 139.556 97.1341C139.545 97.1239 139.532 97.1136 139.522 97.1033C139.499 97.0828 139.473 97.0623 139.45 97.0418C139.44 97.0341 139.43 97.0238 139.42 97.0161C139.414 97.011 139.409 97.0084 139.404 97.0033C139.397 96.9956 139.389 96.9905 139.381 96.9828C139.358 96.9648 139.335 96.9469 139.309 96.9289C139.291 96.9161 139.276 96.9033 139.258 96.893C139.255 96.8904 139.25 96.8879 139.248 96.8853C139.245 96.8828 139.243 96.8802 139.24 96.8802C139.217 96.8648 139.194 96.8494 139.171 96.834C139.148 96.8186 139.125 96.8058 139.102 96.793C139.096 96.7904 139.091 96.7878 139.086 96.7827L89.4805 125.614C89.5343 125.645 89.5882 125.681 89.6421 125.717C89.6446 125.719 89.6472 125.722 89.6523 125.724C89.7011 125.76 89.7498 125.796 89.7985 125.835Z" + fill="#FF9C9B" /> + <path + d="M89.4801 125.614C90.3727 126.129 91.0935 127.379 91.0909 128.407L91.0858 130.054C91.0832 131.08 90.3573 131.496 89.4647 130.98L46.8462 106.376C45.9536 105.86 45.2328 104.611 45.2354 103.583L45.2405 101.936C45.2431 100.91 45.969 100.494 46.8616 101.01L89.4801 125.614Z" + fill="#DA3635" /> + <path + d="M154.793 94.4714C154.765 94.4893 154.731 94.5021 154.7 94.515C154.677 94.5227 154.652 94.5304 154.629 94.5355C154.623 94.5355 154.618 94.5381 154.613 94.5406C154.585 94.5458 154.554 94.5509 154.523 94.5509C154.518 94.5509 154.511 94.5509 154.505 94.5509C154.475 94.5509 154.444 94.5509 154.413 94.5483C154.411 94.5483 154.405 94.5483 154.403 94.5483C154.37 94.5458 154.336 94.5406 154.303 94.5329C154.3 94.5329 154.295 94.5304 154.293 94.5304C154.257 94.5227 154.223 94.5124 154.187 94.4996C154.185 94.4996 154.182 94.497 154.18 94.497C154.141 94.4842 154.103 94.4688 154.064 94.4508C154.062 94.4508 154.059 94.4483 154.057 94.4483C154.018 94.4303 153.977 94.4098 153.936 94.3867L88.7168 132.285C88.7296 132.293 88.7424 132.301 88.7553 132.306C88.7707 132.314 88.7886 132.324 88.804 132.332C88.8143 132.337 88.8245 132.342 88.8374 132.347C88.8399 132.347 88.8425 132.35 88.845 132.35C88.8476 132.352 88.8502 132.352 88.8553 132.355C88.8707 132.362 88.8887 132.368 88.904 132.375C88.9194 132.383 88.9374 132.388 88.9528 132.393C88.9554 132.393 88.9579 132.396 88.9605 132.396C88.963 132.396 88.9656 132.398 88.9682 132.398C88.9784 132.401 88.9887 132.406 89.0015 132.409C89.0195 132.414 89.0349 132.419 89.0503 132.421C89.058 132.424 89.0656 132.424 89.0733 132.427C89.0759 132.427 89.081 132.429 89.0836 132.429C89.0887 132.429 89.0939 132.432 89.099 132.432C89.117 132.434 89.1349 132.437 89.1529 132.439C89.1631 132.442 89.1734 132.442 89.1862 132.442C89.1888 132.442 89.1939 132.442 89.1965 132.442C89.199 132.442 89.2042 132.442 89.2067 132.442C89.2247 132.445 89.2452 132.445 89.2632 132.445C89.2709 132.445 89.2785 132.445 89.2888 132.445C89.2939 132.445 89.3016 132.445 89.3068 132.445C89.3119 132.445 89.3196 132.445 89.3247 132.445C89.3478 132.442 89.3709 132.439 89.394 132.434C89.394 132.434 89.394 132.434 89.3965 132.434C89.4017 132.434 89.4068 132.432 89.4119 132.429C89.435 132.424 89.4581 132.419 89.4786 132.411C89.4812 132.411 89.4812 132.409 89.4838 132.409C89.5171 132.396 89.5479 132.383 89.5761 132.365L154.793 94.4714Z" + fill="#FF9C9B" /> + <path + d="M91.7668 132.657C91.7668 132.773 91.7617 132.883 91.7514 132.991C91.7514 133.001 91.7488 133.009 91.7488 133.019C91.7386 133.116 91.7257 133.211 91.7078 133.304C91.7052 133.317 91.7027 133.329 91.7001 133.34C91.6821 133.427 91.659 133.511 91.636 133.591C91.6308 133.606 91.6257 133.622 91.6206 133.635C91.5949 133.712 91.5667 133.783 91.5359 133.853C91.5334 133.86 91.5308 133.868 91.5282 133.873C91.4923 133.953 91.4513 134.024 91.4051 134.094C91.3974 134.104 91.3923 134.112 91.3846 134.122C91.3487 134.176 91.3102 134.227 91.2692 134.276C91.2538 134.294 91.2384 134.312 91.223 134.327C91.1871 134.366 91.1486 134.404 91.1076 134.437C91.0922 134.453 91.0742 134.466 91.0588 134.481C91.0024 134.527 90.9434 134.568 90.8818 134.604L156.099 96.7054C156.16 96.6695 156.219 96.6285 156.275 96.5823C156.293 96.5695 156.309 96.5541 156.324 96.5387C156.363 96.5054 156.401 96.4669 156.44 96.4284C156.455 96.4104 156.47 96.3951 156.486 96.3771C156.527 96.3284 156.565 96.2771 156.604 96.2232C156.612 96.2129 156.617 96.2052 156.624 96.195C156.627 96.1924 156.627 96.1899 156.629 96.1873C156.67 96.1232 156.709 96.0513 156.745 95.9795C156.745 95.977 156.747 95.9744 156.747 95.9718C156.75 95.9641 156.753 95.9564 156.755 95.9513C156.776 95.9051 156.799 95.8564 156.817 95.8051C156.824 95.782 156.832 95.7564 156.842 95.7307C156.847 95.7153 156.853 95.6999 156.858 95.6871C156.863 95.6743 156.868 95.6589 156.871 95.6461C156.886 95.5948 156.899 95.5435 156.912 95.4922C156.917 95.4742 156.919 95.4537 156.922 95.4357C156.924 95.4229 156.927 95.4126 156.93 95.3998C156.932 95.3819 156.937 95.3639 156.94 95.3434C156.948 95.2972 156.955 95.2485 156.96 95.1972C156.963 95.1715 156.965 95.1433 156.968 95.1151C156.968 95.1048 156.971 95.0971 156.971 95.0869C156.971 95.074 156.973 95.0638 156.973 95.051C156.978 95.0048 156.981 94.9561 156.981 94.9073C156.983 94.8586 156.983 94.8098 156.983 94.7611C156.983 94.7585 156.983 94.756 156.983 94.7534L91.7668 132.657Z" + fill="#FF9C9B" /> + <mask id="path-37-inside-1_14421_57490" fill="white"> + <path + d="M153.962 84.2752L109.297 58.486C109.286 58.4809 109.276 58.4758 109.268 58.4706C109.255 58.463 109.243 58.4578 109.23 58.4501C109.222 58.445 109.214 58.4424 109.207 58.4399C109.204 58.4399 109.202 58.4373 109.202 58.4373C109.199 58.4373 109.196 58.4347 109.194 58.4347C109.181 58.4296 109.168 58.4245 109.158 58.4193C109.145 58.4142 109.132 58.4091 109.122 58.4065C109.12 58.4065 109.117 58.404 109.117 58.404C109.114 58.404 109.114 58.404 109.112 58.4014C109.104 58.3988 109.094 58.3963 109.086 58.3937C109.073 58.3911 109.061 58.386 109.048 58.3834C109.043 58.3809 109.035 58.3809 109.03 58.3783C109.027 58.3783 109.025 58.3783 109.022 58.3757C109.017 58.3757 109.014 58.3732 109.009 58.3732C108.996 58.3706 108.981 58.368 108.968 58.3655C108.961 58.3655 108.953 58.3629 108.945 58.3629C108.943 58.3629 108.94 58.3629 108.937 58.3629C108.935 58.3629 108.932 58.3629 108.93 58.3629C108.914 58.3629 108.902 58.3604 108.886 58.3604C108.881 58.3604 108.873 58.3604 108.868 58.3604C108.863 58.3604 108.858 58.3604 108.853 58.3604C108.848 58.3604 108.843 58.3604 108.837 58.3604C108.819 58.3629 108.801 58.3655 108.784 58.368C108.781 58.368 108.776 58.3706 108.773 58.3706C108.755 58.3757 108.737 58.3783 108.719 58.386C108.717 58.386 108.717 58.3886 108.714 58.3886C108.689 58.3963 108.666 58.4091 108.645 58.4219L43.4258 96.3207C43.4489 96.3078 43.472 96.2976 43.495 96.2873C43.513 96.2796 43.5309 96.2745 43.5515 96.2719C43.554 96.2719 43.5592 96.2694 43.5617 96.2694C43.5848 96.2642 43.6079 96.2617 43.631 96.2617C43.6361 96.2617 43.6412 96.2617 43.6464 96.2617C43.6695 96.2617 43.6925 96.2617 43.7156 96.2642C43.7182 96.2642 43.7208 96.2642 43.7233 96.2642C43.749 96.2668 43.7746 96.2694 43.8003 96.2771C43.8028 96.2771 43.8054 96.2771 43.808 96.2796C43.8336 96.2848 43.8618 96.2925 43.8901 96.3027C43.8926 96.3027 43.8926 96.3027 43.8952 96.3053C43.9234 96.3155 43.9542 96.3258 43.9824 96.3412C43.985 96.3412 43.985 96.3438 43.9875 96.3438C44.0183 96.3566 44.0491 96.3745 44.0799 96.3899L88.7478 122.179L153.962 84.2752Z" /> + </mask> + <path + d="M153.962 84.2752L109.297 58.486C109.286 58.4809 109.276 58.4758 109.268 58.4706C109.255 58.463 109.243 58.4578 109.23 58.4501C109.222 58.445 109.214 58.4424 109.207 58.4399C109.204 58.4399 109.202 58.4373 109.202 58.4373C109.199 58.4373 109.196 58.4347 109.194 58.4347C109.181 58.4296 109.168 58.4245 109.158 58.4193C109.145 58.4142 109.132 58.4091 109.122 58.4065C109.12 58.4065 109.117 58.404 109.117 58.404C109.114 58.404 109.114 58.404 109.112 58.4014C109.104 58.3988 109.094 58.3963 109.086 58.3937C109.073 58.3911 109.061 58.386 109.048 58.3834C109.043 58.3809 109.035 58.3809 109.03 58.3783C109.027 58.3783 109.025 58.3783 109.022 58.3757C109.017 58.3757 109.014 58.3732 109.009 58.3732C108.996 58.3706 108.981 58.368 108.968 58.3655C108.961 58.3655 108.953 58.3629 108.945 58.3629C108.943 58.3629 108.94 58.3629 108.937 58.3629C108.935 58.3629 108.932 58.3629 108.93 58.3629C108.914 58.3629 108.902 58.3604 108.886 58.3604C108.881 58.3604 108.873 58.3604 108.868 58.3604C108.863 58.3604 108.858 58.3604 108.853 58.3604C108.848 58.3604 108.843 58.3604 108.837 58.3604C108.819 58.3629 108.801 58.3655 108.784 58.368C108.781 58.368 108.776 58.3706 108.773 58.3706C108.755 58.3757 108.737 58.3783 108.719 58.386C108.717 58.386 108.717 58.3886 108.714 58.3886C108.689 58.3963 108.666 58.4091 108.645 58.4219L43.4258 96.3207C43.4489 96.3078 43.472 96.2976 43.495 96.2873C43.513 96.2796 43.5309 96.2745 43.5515 96.2719C43.554 96.2719 43.5592 96.2694 43.5617 96.2694C43.5848 96.2642 43.6079 96.2617 43.631 96.2617C43.6361 96.2617 43.6412 96.2617 43.6464 96.2617C43.6695 96.2617 43.6925 96.2617 43.7156 96.2642C43.7182 96.2642 43.7208 96.2642 43.7233 96.2642C43.749 96.2668 43.7746 96.2694 43.8003 96.2771C43.8028 96.2771 43.8054 96.2771 43.808 96.2796C43.8336 96.2848 43.8618 96.2925 43.8901 96.3027C43.8926 96.3027 43.8926 96.3027 43.8952 96.3053C43.9234 96.3155 43.9542 96.3258 43.9824 96.3412C43.985 96.3412 43.985 96.3438 43.9875 96.3438C44.0183 96.3566 44.0491 96.3745 44.0799 96.3899L88.7478 122.179L153.962 84.2752Z" + fill="white" /> + <path + d="M153.962 84.2752L154.464 85.1397C154.773 84.9605 154.962 84.6305 154.962 84.2737C154.961 83.917 154.771 83.5875 154.462 83.4091L153.962 84.2752ZM109.297 58.486L109.797 57.62C109.779 57.61 109.762 57.6006 109.744 57.5916L109.297 58.486ZM109.268 58.4706L109.823 57.6386C109.81 57.6298 109.796 57.6213 109.783 57.6132L109.268 58.4706ZM109.23 58.4501L108.675 59.2822C108.688 59.291 108.702 59.2995 108.715 59.3076L109.23 58.4501ZM109.207 58.4399L109.523 57.4912C109.421 57.4572 109.314 57.4399 109.207 57.4399V58.4399ZM109.202 58.4373L109.908 57.7295C109.721 57.5424 109.466 57.4373 109.202 57.4373V58.4373ZM109.194 58.4347L108.823 59.3632C108.941 59.4105 109.067 59.4347 109.194 59.4347V58.4347ZM109.158 58.4193L109.605 57.5249C109.58 57.5125 109.555 57.5012 109.529 57.4909L109.158 58.4193ZM109.122 58.4065L109.365 57.4364C109.285 57.4165 109.204 57.4065 109.122 57.4065V58.4065ZM109.117 58.404L109.823 57.6962C109.636 57.509 109.382 57.404 109.117 57.404V58.404ZM109.112 58.4014L109.819 57.6943C109.709 57.5845 109.575 57.5018 109.428 57.4527L109.112 58.4014ZM109.086 58.3937L109.402 57.445C109.363 57.4319 109.323 57.4212 109.282 57.4131L109.086 58.3937ZM109.048 58.3834L108.6 59.2779C108.68 59.3176 108.764 59.3466 108.852 59.364L109.048 58.3834ZM109.03 58.3783L109.477 57.4839C109.338 57.4145 109.185 57.3783 109.03 57.3783V58.3783ZM109.022 58.3757L109.729 57.6686C109.542 57.4811 109.287 57.3757 109.022 57.3757V58.3757ZM109.009 58.3732L108.813 59.3538C108.878 59.3667 108.943 59.3732 109.009 59.3732V58.3732ZM108.968 58.3655L109.164 57.3849C109.1 57.372 109.034 57.3655 108.968 57.3655V58.3655ZM108.837 58.3604V57.3604C108.79 57.3604 108.743 57.3637 108.696 57.3704L108.837 58.3604ZM108.784 58.368V59.368C108.831 59.368 108.878 59.3647 108.925 59.358L108.784 58.368ZM108.773 58.3706V57.3706C108.68 57.3706 108.588 57.3836 108.499 57.4091L108.773 58.3706ZM108.719 58.386V59.386C108.855 59.386 108.989 59.3585 109.113 59.3051L108.719 58.386ZM108.714 58.3886V57.3886C108.617 57.3886 108.52 57.4028 108.427 57.4307L108.714 58.3886ZM108.645 58.4219L109.147 59.2865C109.157 59.2811 109.166 59.2756 109.175 59.2699L108.645 58.4219ZM43.4258 96.3207L42.9234 95.4561C42.4491 95.7316 42.2854 96.3378 42.5564 96.8147C42.8274 97.2916 43.4319 97.4612 43.9114 97.1948L43.4258 96.3207ZM43.495 96.2873L43.1011 95.3681L43.0889 95.3735L43.495 96.2873ZM43.5515 96.2719V95.2719C43.51 95.2719 43.4686 95.2745 43.4274 95.2797L43.5515 96.2719ZM43.5617 96.2694V97.2694C43.6347 97.2694 43.7074 97.2614 43.7787 97.2456L43.5617 96.2694ZM43.7156 96.2642L43.6052 97.2581C43.6419 97.2622 43.6787 97.2642 43.7156 97.2642V96.2642ZM43.7233 96.2642L43.8228 95.2692C43.7898 95.2659 43.7566 95.2642 43.7233 95.2642V96.2642ZM43.8003 96.2771L43.5129 97.2349C43.6062 97.2629 43.703 97.2771 43.8003 97.2771V96.2771ZM43.808 96.2796L43.1009 96.9867C43.2405 97.1263 43.4183 97.2215 43.6119 97.2602L43.808 96.2796ZM43.8901 96.3027L43.5483 97.2425C43.6578 97.2823 43.7735 97.3027 43.8901 97.3027V96.3027ZM43.8952 96.3053L43.1881 97.0124C43.2914 97.1157 43.4161 97.1951 43.5534 97.2451L43.8952 96.3053ZM43.9824 96.3412L43.5035 97.2191C43.6504 97.2992 43.8151 97.3412 43.9824 97.3412V96.3412ZM43.9875 96.3438L44.3721 95.4207C44.2503 95.3699 44.1196 95.3438 43.9875 95.3438V96.3438ZM44.0799 96.3899L44.5799 95.5239C44.5626 95.5139 44.545 95.5044 44.5271 95.4955L44.0799 96.3899ZM88.7478 122.179L88.2478 123.045C88.5581 123.224 88.9406 123.224 89.2503 123.044L88.7478 122.179ZM154.462 83.4091L109.797 57.62L108.796 59.3521L153.462 85.1412L154.462 83.4091ZM109.744 57.5916C109.736 57.5879 109.743 57.5913 109.752 57.596C109.758 57.5989 109.766 57.6037 109.777 57.6102C109.788 57.6165 109.804 57.6261 109.823 57.6386L108.714 59.3027C108.756 59.3312 108.793 59.3512 108.811 59.3607C108.829 59.3705 108.847 59.3791 108.849 59.3805L109.744 57.5916ZM109.783 57.6132C109.759 57.5987 109.738 57.5875 109.723 57.5798C109.71 57.5728 109.698 57.5668 109.696 57.5659C109.692 57.5636 109.697 57.5664 109.704 57.5701C109.712 57.5743 109.727 57.582 109.744 57.5926L108.715 59.3076C108.739 59.3221 108.76 59.3333 108.775 59.3409C108.788 59.348 108.8 59.354 108.802 59.3549C108.807 59.3572 108.801 59.3544 108.794 59.3507C108.786 59.3464 108.771 59.3387 108.754 59.3281L109.783 57.6132ZM109.785 57.6181C109.715 57.572 109.652 57.5413 109.603 57.521C109.58 57.5112 109.56 57.504 109.546 57.4993C109.534 57.4949 109.524 57.4914 109.523 57.4912L108.891 59.3886C108.907 59.3942 108.793 59.361 108.675 59.2822L109.785 57.6181ZM109.207 57.4399C109.369 57.4399 109.497 57.4793 109.576 57.5109C109.657 57.5433 109.718 57.5802 109.757 57.6062C109.798 57.6333 109.83 57.6588 109.852 57.6779C109.864 57.6879 109.874 57.6973 109.883 57.7057C109.888 57.71 109.892 57.7141 109.896 57.7181C109.898 57.7201 109.9 57.722 109.902 57.7239C109.903 57.7248 109.904 57.7258 109.905 57.7267C109.906 57.7272 109.906 57.7277 109.907 57.7281C109.907 57.7284 109.907 57.7286 109.907 57.7288C109.907 57.7289 109.908 57.7291 109.908 57.7292C109.908 57.7293 109.908 57.7295 109.202 58.4373C108.495 59.1451 108.495 59.1453 108.496 59.1454C108.496 59.1455 108.496 59.1457 108.496 59.1458C108.496 59.146 108.496 59.1463 108.497 59.1465C108.497 59.1469 108.498 59.1474 108.498 59.1479C108.499 59.1488 108.5 59.1498 108.501 59.1507C108.503 59.1526 108.505 59.1546 108.507 59.1566C108.511 59.1606 108.515 59.1648 108.52 59.1691C108.529 59.1777 108.54 59.1873 108.552 59.1975C108.575 59.217 108.607 59.2433 108.649 59.271C108.7 59.3046 108.905 59.4399 109.207 59.4399V57.4399ZM109.202 57.4373C109.285 57.4373 109.357 57.4477 109.414 57.4603C109.443 57.4667 109.469 57.4737 109.492 57.4806C109.514 57.4874 109.534 57.4944 109.551 57.5007C109.568 57.507 109.583 57.513 109.594 57.5181C109.606 57.5232 109.616 57.5278 109.624 57.5313C109.631 57.5348 109.637 57.5376 109.64 57.5393C109.644 57.5409 109.646 57.5422 109.646 57.5419C109.646 57.5419 109.645 57.5418 109.645 57.5416C109.645 57.5415 109.644 57.5413 109.644 57.5411C109.643 57.5406 109.641 57.5398 109.639 57.5388C109.636 57.537 109.629 57.534 109.622 57.5303C109.614 57.5267 109.604 57.522 109.592 57.5168C109.579 57.5115 109.564 57.5054 109.547 57.4989C109.53 57.4925 109.51 57.4854 109.487 57.4785C109.464 57.4715 109.438 57.4644 109.409 57.458C109.35 57.4452 109.278 57.4347 109.194 57.4347V59.4347C109.111 59.4347 109.039 59.4244 108.981 59.4117C108.952 59.4054 108.926 59.3984 108.904 59.3915C108.881 59.3846 108.861 59.3777 108.844 59.3713C108.828 59.365 108.813 59.359 108.801 59.3539C108.789 59.3488 108.779 59.3443 108.772 59.3408C108.764 59.3373 108.759 59.3344 108.755 59.3327C108.752 59.3312 108.749 59.3298 108.75 59.3302C108.75 59.3302 108.75 59.3303 108.75 59.3304C108.751 59.3305 108.751 59.3307 108.752 59.331C108.753 59.3315 108.754 59.3323 108.756 59.3332C108.76 59.335 108.766 59.3381 108.774 59.3417C108.782 59.3454 108.792 59.3501 108.804 59.3553C108.816 59.3605 108.831 59.3667 108.848 59.3731C108.865 59.3795 108.886 59.3866 108.908 59.3936C108.931 59.4006 108.958 59.4077 108.987 59.4141C109.045 59.4268 109.118 59.4373 109.202 59.4373V57.4373ZM109.565 57.5063C109.562 57.5048 109.561 57.5044 109.56 57.504C109.559 57.5038 109.56 57.5043 109.563 57.5054C109.566 57.5064 109.57 57.5085 109.577 57.5115C109.583 57.5144 109.593 57.5189 109.605 57.5249L108.711 59.3138C108.766 59.3414 108.822 59.3628 108.823 59.3632L109.565 57.5063ZM109.529 57.4909C109.526 57.4894 109.506 57.4815 109.485 57.4736C109.465 57.4664 109.421 57.4504 109.365 57.4364L108.88 59.3767C108.855 59.3704 108.835 59.3643 108.822 59.3602C108.809 59.356 108.799 59.3524 108.793 59.3503C108.784 59.347 108.778 59.3442 108.787 59.3478L109.529 57.4909ZM109.122 57.4065C109.284 57.4065 109.412 57.446 109.491 57.4775C109.572 57.5099 109.634 57.5469 109.673 57.5729C109.713 57.5999 109.745 57.6255 109.768 57.6446C109.779 57.6545 109.79 57.6639 109.799 57.6724C109.803 57.6767 109.808 57.6808 109.812 57.6847C109.814 57.6867 109.816 57.6886 109.818 57.6906C109.819 57.6915 109.82 57.6924 109.821 57.6934C109.821 57.6938 109.822 57.6943 109.822 57.6948C109.822 57.695 109.822 57.6952 109.823 57.6955C109.823 57.6956 109.823 57.6958 109.823 57.6958C109.823 57.696 109.823 57.6962 109.117 58.404C108.411 59.1118 108.411 59.1119 108.411 59.1121C108.411 59.1122 108.411 59.1123 108.411 59.1124C108.411 59.1127 108.412 59.1129 108.412 59.1131C108.412 59.1136 108.413 59.1141 108.413 59.1145C108.414 59.1155 108.415 59.1164 108.416 59.1174C108.418 59.1193 108.42 59.1212 108.422 59.1232C108.426 59.1272 108.431 59.1314 108.435 59.1357C108.445 59.1444 108.455 59.1539 108.467 59.1642C108.49 59.1837 108.523 59.2099 108.564 59.2376C108.615 59.2713 108.82 59.4065 109.122 59.4065V57.4065ZM109.117 57.404C109.098 57.404 109.155 57.4028 109.215 57.4089C109.303 57.4178 109.428 57.4422 109.563 57.51C109.681 57.5689 109.758 57.6375 109.783 57.6604C109.807 57.6814 109.828 57.7028 109.819 57.6943L108.405 59.1085C108.405 59.1085 108.405 59.1088 108.405 59.109C108.406 59.1093 108.406 59.1098 108.407 59.1103C108.408 59.1114 108.41 59.1135 108.412 59.116C108.417 59.1203 108.428 59.1316 108.443 59.1453C108.47 59.1689 108.548 59.238 108.666 59.2973C108.801 59.3654 108.927 59.39 109.016 59.3989C109.053 59.4027 109.083 59.4035 109.096 59.4038C109.103 59.4039 109.109 59.4039 109.112 59.4039C109.114 59.404 109.115 59.404 109.116 59.404C109.116 59.404 109.116 59.404 109.117 59.404C109.117 59.404 109.117 59.404 109.117 59.404V57.404ZM109.428 57.4527C109.411 57.4471 109.397 57.4429 109.39 57.4407C109.382 57.4384 109.375 57.4364 109.374 57.436C109.371 57.4351 109.373 57.4358 109.376 57.4368C109.38 57.4378 109.39 57.4407 109.402 57.445L108.77 59.3424C108.787 59.348 108.801 59.3521 108.808 59.3544C108.816 59.3567 108.823 59.3587 108.824 59.3591C108.828 59.36 108.825 59.3593 108.822 59.3583C108.818 59.3573 108.809 59.3544 108.796 59.3501L109.428 57.4527ZM109.282 57.4131C109.31 57.4186 109.331 57.4242 109.342 57.4272C109.347 57.4287 109.352 57.43 109.354 57.4305C109.355 57.431 109.356 57.4314 109.354 57.4307C109.353 57.4304 109.349 57.4291 109.344 57.4277C109.339 57.4262 109.331 57.424 109.322 57.4216C109.305 57.4168 109.278 57.4096 109.244 57.4029L108.852 59.364C108.824 59.3585 108.803 59.353 108.792 59.35C108.786 59.3484 108.782 59.3472 108.78 59.3466C108.779 59.3461 108.778 59.3458 108.78 59.3464C108.781 59.3467 108.785 59.348 108.79 59.3495C108.795 59.351 108.802 59.3531 108.811 59.3556C108.829 59.3603 108.856 59.3675 108.89 59.3743L109.282 57.4131ZM109.495 57.489C109.45 57.4666 109.41 57.4506 109.378 57.4393C109.346 57.428 109.318 57.4201 109.298 57.4148C109.278 57.4095 109.261 57.4058 109.251 57.4037C109.246 57.4026 109.242 57.4018 109.24 57.4012C109.237 57.4007 109.235 57.4003 109.235 57.4003C109.234 57.4001 109.235 57.4004 109.237 57.4008C109.239 57.4011 109.242 57.4018 109.247 57.4028C109.255 57.4045 109.27 57.4078 109.288 57.4127C109.307 57.4177 109.333 57.4251 109.364 57.4359C109.395 57.4467 109.433 57.4621 109.477 57.4839L108.583 59.2727C108.627 59.2952 108.668 59.3111 108.7 59.3224C108.732 59.3337 108.759 59.3416 108.78 59.3469C108.8 59.3522 108.816 59.3559 108.826 59.358C108.831 59.3591 108.835 59.36 108.838 59.3605C108.84 59.361 108.843 59.3614 108.843 59.3615C108.843 59.3616 108.842 59.3613 108.84 59.361C108.838 59.3606 108.835 59.3599 108.831 59.359C108.823 59.3572 108.808 59.3539 108.789 59.349C108.77 59.3441 108.744 59.3366 108.714 59.3258C108.683 59.315 108.644 59.2996 108.6 59.2779L109.495 57.489ZM109.03 57.3783C109.01 57.3783 109.131 57.3735 109.268 57.4078C109.439 57.4505 109.6 57.539 109.729 57.6686L108.315 59.0828C108.628 59.3963 109.012 59.3783 109.03 59.3783V57.3783ZM109.022 57.3757C109.064 57.3757 109.104 57.3784 109.142 57.3831C109.18 57.3878 109.215 57.3943 109.244 57.401C109.272 57.4076 109.295 57.4142 109.31 57.4188C109.317 57.421 109.323 57.4229 109.327 57.4241C109.33 57.4251 109.333 57.4261 109.332 57.4258C109.332 57.4258 109.332 57.4257 109.331 57.4256C109.331 57.4255 109.331 57.4254 109.33 57.4252C109.329 57.4248 109.327 57.4243 109.325 57.4236C109.321 57.4223 109.315 57.4202 109.307 57.4178C109.291 57.413 109.267 57.406 109.238 57.3992C109.208 57.3923 109.172 57.3856 109.133 57.3807C109.093 57.3759 109.052 57.3732 109.009 57.3732V59.3732C108.968 59.3732 108.928 59.3706 108.889 59.3658C108.851 59.3611 108.817 59.3547 108.788 59.348C108.759 59.3414 108.736 59.3347 108.721 59.3302C108.714 59.3279 108.708 59.326 108.705 59.3248C108.701 59.3238 108.699 59.3229 108.699 59.3231C108.699 59.3231 108.7 59.3232 108.7 59.3233C108.7 59.3234 108.701 59.3235 108.701 59.3237C108.702 59.3241 108.704 59.3246 108.706 59.3253C108.71 59.3266 108.716 59.3287 108.724 59.3311C108.74 59.3359 108.764 59.3429 108.794 59.3497C108.824 59.3567 108.859 59.3633 108.898 59.3682C108.938 59.373 108.979 59.3757 109.022 59.3757V57.3757ZM109.205 57.3926C109.196 57.3908 109.188 57.3892 109.182 57.3881C109.176 57.387 109.171 57.386 109.168 57.3855C109.164 57.3848 109.162 57.3845 109.161 57.3843C109.16 57.3841 109.162 57.3843 109.164 57.3849L108.772 59.3461C108.781 59.3479 108.789 59.3494 108.795 59.3505C108.801 59.3516 108.807 59.3526 108.81 59.3532C108.814 59.3539 108.815 59.3542 108.816 59.3544C108.817 59.3546 108.816 59.3543 108.813 59.3538L109.205 57.3926ZM108.968 57.3655C108.995 57.3655 109.018 57.3666 109.038 57.368C109.058 57.3694 109.074 57.3713 109.086 57.3728C109.099 57.3743 109.108 57.3758 109.114 57.3767C109.119 57.3774 109.123 57.3781 109.121 57.3778C109.121 57.3778 109.115 57.3768 109.108 57.3757C109.101 57.3746 109.089 57.3728 109.075 57.371C109.061 57.3692 109.042 57.3672 109.021 57.3657C108.999 57.3641 108.974 57.3629 108.945 57.3629V59.3629C108.918 59.3629 108.895 59.3618 108.875 59.3604C108.856 59.359 108.839 59.3571 108.827 59.3556C108.815 59.3541 108.805 59.3526 108.799 59.3517C108.794 59.351 108.79 59.3503 108.792 59.3506C108.792 59.3506 108.798 59.3516 108.805 59.3527C108.813 59.3538 108.824 59.3556 108.838 59.3574C108.853 59.3592 108.871 59.3612 108.893 59.3627C108.914 59.3643 108.94 59.3655 108.968 59.3655V57.3655ZM108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629H108.945C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629H108.945C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.945 57.3629 108.945 57.3629C108.945 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629H108.944C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629H108.944C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.944 57.3629 108.944 57.3629 108.944 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629H108.943C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629H108.943C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.943 57.3629 108.943 57.3629C108.943 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629H108.942C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629H108.942C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.942 57.3629 108.942 57.3629 108.942 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629H108.941C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629H108.941C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.941 57.3629 108.941 57.3629C108.941 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629H108.94C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629H108.94C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.94 57.3629 108.94 57.3629 108.94 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629H108.939C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629H108.939C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.939 57.3629 108.939 57.3629C108.939 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629H108.938C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629H108.938C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.938 57.3629 108.938 57.3629C108.938 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629V59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629H108.938C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629H108.938C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.938 59.3629 108.938 59.3629C108.938 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629H108.939C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629H108.939C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.939 59.3629C108.939 59.3629 108.939 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629H108.94C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629H108.94C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.94 59.3629 108.94 59.3629C108.94 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629H108.941C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629H108.941C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.941 59.3629C108.941 59.3629 108.941 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629H108.942C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629H108.942C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.942 59.3629 108.942 59.3629C108.942 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629H108.943C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629H108.943C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.943 59.3629C108.943 59.3629 108.943 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629H108.944C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629H108.944C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.944 59.3629 108.944 59.3629C108.944 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629H108.945C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629H108.945C108.945 59.3629 108.945 59.3629 108.945 59.3629C108.945 59.3629 108.945 59.3629 108.945 59.3629V57.3629ZM108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629H108.937C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629H108.937C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.937 57.3629 108.937 57.3629 108.937 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629H108.936C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629H108.936C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.936 57.3629 108.936 57.3629C108.936 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629H108.935C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629H108.935C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.935 57.3629 108.935 57.3629 108.935 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629H108.934C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629H108.934C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.934 57.3629 108.934 57.3629C108.934 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629H108.933C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629H108.933C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.933 57.3629 108.933 57.3629 108.933 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629H108.932C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629H108.932C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.932 57.3629 108.932 57.3629C108.932 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629H108.931C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629H108.931C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.931 57.3629 108.931 57.3629 108.931 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629H108.93C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629C108.93 57.3629 108.93 57.3629 108.93 57.3629V59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629H108.93C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.93 59.3629C108.93 59.3629 108.93 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629H108.931C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629H108.931C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.931 59.3629 108.931 59.3629C108.931 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629H108.932C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629H108.932C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.932 59.3629C108.932 59.3629 108.932 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629H108.933C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629H108.933C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.933 59.3629 108.933 59.3629C108.933 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629H108.934C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629H108.934C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.934 59.3629C108.934 59.3629 108.934 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629H108.935C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629H108.935C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.935 59.3629 108.935 59.3629C108.935 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629H108.936C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629H108.936C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.936 59.3629C108.936 59.3629 108.936 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629H108.937C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629H108.937C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629C108.937 59.3629 108.937 59.3629 108.937 59.3629V57.3629ZM108.93 57.3629C108.954 57.3629 108.973 57.3639 108.985 57.3647C108.991 57.3651 108.996 57.3655 108.998 57.3657C108.999 57.3658 109.001 57.3659 108.998 57.3657C108.997 57.3656 108.992 57.3652 108.987 57.3647C108.981 57.3643 108.973 57.3636 108.964 57.363C108.944 57.3617 108.918 57.3604 108.886 57.3604V59.3604C108.862 59.3604 108.843 59.3593 108.831 59.3585C108.825 59.3581 108.82 59.3578 108.818 59.3576C108.816 59.3574 108.815 59.3573 108.817 59.3575C108.819 59.3576 108.823 59.3581 108.829 59.3585C108.834 59.359 108.843 59.3597 108.852 59.3603C108.871 59.3616 108.898 59.3629 108.93 59.3629V57.3629ZM108.886 57.3604C108.886 57.3604 108.886 57.3604 108.886 57.3604C108.886 57.3604 108.886 57.3604 108.886 57.3604C108.886 57.3604 108.886 57.3604 108.886 57.3604C108.886 57.3604 108.886 57.3604 108.886 57.3604C108.886 57.3604 108.886 57.3604 108.886 57.3604C108.886 57.3604 108.886 57.3604 108.886 57.3604C108.886 57.3604 108.886 57.3604 108.886 57.3604C108.886 57.3604 108.886 57.3604 108.886 57.3604C108.886 57.3604 108.886 57.3604 108.886 57.3604C108.886 57.3604 108.886 57.3604 108.886 57.3604C108.886 57.3604 108.886 57.3604 108.886 57.3604C108.886 57.3604 108.886 57.3604 108.886 57.3604C108.886 57.3604 108.886 57.3604 108.886 57.3604C108.886 57.3604 108.886 57.3604 108.886 57.3604C108.886 57.3604 108.886 57.3604 108.886 57.3604C108.886 57.3604 108.886 57.3604 108.886 57.3604C108.886 57.3604 108.886 57.3604 108.886 57.3604C108.886 57.3604 108.886 57.3604 108.886 57.3604C108.886 57.3604 108.886 57.3604 108.886 57.3604C108.886 57.3604 108.886 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.885 57.3604 108.885 57.3604 108.885 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.884 57.3604 108.884 57.3604 108.884 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.883 57.3604C108.883 57.3604 108.883 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.882 57.3604 108.882 57.3604 108.882 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.881 57.3604C108.881 57.3604 108.881 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.88 57.3604C108.88 57.3604 108.88 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.879 57.3604 108.879 57.3604C108.879 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.878 57.3604 108.878 57.3604 108.878 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.877 57.3604C108.877 57.3604 108.877 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.876 57.3604 108.876 57.3604C108.876 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.875 57.3604 108.875 57.3604C108.875 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.874 57.3604 108.874 57.3604C108.874 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.873 57.3604 108.873 57.3604 108.873 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.872 57.3604 108.872 57.3604C108.872 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.871 57.3604 108.871 57.3604C108.871 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.87 57.3604C108.87 57.3604 108.87 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.869 57.3604 108.869 57.3604C108.869 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604V59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.869 59.3604 108.869 59.3604 108.869 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.87 59.3604 108.87 59.3604C108.87 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.871 59.3604 108.871 59.3604C108.871 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.872 59.3604C108.872 59.3604 108.872 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.873 59.3604 108.873 59.3604C108.873 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.874 59.3604 108.874 59.3604C108.874 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.875 59.3604 108.875 59.3604C108.875 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.876 59.3604 108.876 59.3604 108.876 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.877 59.3604C108.877 59.3604 108.877 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.878 59.3604 108.878 59.3604C108.878 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.879 59.3604 108.879 59.3604 108.879 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.88 59.3604 108.88 59.3604 108.88 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.881 59.3604C108.881 59.3604 108.881 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.882 59.3604 108.882 59.3604 108.882 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.883 59.3604C108.883 59.3604 108.883 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.884 59.3604C108.884 59.3604 108.884 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.885 59.3604 108.885 59.3604 108.885 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604C108.886 59.3604 108.886 59.3604 108.886 59.3604V57.3604ZM108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.868 57.3604C108.868 57.3604 108.868 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.867 57.3604 108.867 57.3604 108.867 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.866 57.3604 108.866 57.3604C108.866 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.865 57.3604 108.865 57.3604C108.865 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.864 57.3604C108.864 57.3604 108.864 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.863 57.3604 108.863 57.3604 108.863 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.862 57.3604 108.862 57.3604C108.862 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.861 57.3604 108.861 57.3604C108.861 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.86 57.3604C108.86 57.3604 108.86 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.859 57.3604 108.859 57.3604 108.859 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.858 57.3604 108.858 57.3604C108.858 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.857 57.3604 108.857 57.3604C108.857 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.856 57.3604C108.856 57.3604 108.856 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.855 57.3604 108.855 57.3604 108.855 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.854 57.3604 108.854 57.3604C108.854 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604V59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.854 59.3604C108.854 59.3604 108.854 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.855 59.3604 108.855 59.3604 108.855 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.856 59.3604 108.856 59.3604C108.856 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.857 59.3604 108.857 59.3604C108.857 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.858 59.3604C108.858 59.3604 108.858 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.859 59.3604 108.859 59.3604 108.859 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.86 59.3604 108.86 59.3604C108.86 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.861 59.3604 108.861 59.3604C108.861 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.862 59.3604C108.862 59.3604 108.862 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.863 59.3604 108.863 59.3604 108.863 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.864 59.3604 108.864 59.3604C108.864 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.865 59.3604 108.865 59.3604C108.865 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.866 59.3604C108.866 59.3604 108.866 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.867 59.3604 108.867 59.3604 108.867 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604C108.868 59.3604 108.868 59.3604 108.868 59.3604V57.3604ZM108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.853 57.3604C108.853 57.3604 108.853 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.852 57.3604 108.852 57.3604 108.852 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.851 57.3604 108.851 57.3604C108.851 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.85 57.3604 108.85 57.3604C108.85 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.849 57.3604C108.849 57.3604 108.849 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.848 57.3604 108.848 57.3604 108.848 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.847 57.3604 108.847 57.3604C108.847 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.846 57.3604 108.846 57.3604C108.846 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.845 57.3604C108.845 57.3604 108.845 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.844 57.3604 108.844 57.3604 108.844 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.843 57.3604 108.843 57.3604C108.843 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.842 57.3604 108.842 57.3604C108.842 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.841 57.3604C108.841 57.3604 108.841 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.84 57.3604 108.84 57.3604C108.84 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.839 57.3604 108.839 57.3604C108.839 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.838 57.3604C108.838 57.3604 108.838 57.3604 108.837 57.3604C108.837 57.3604 108.837 57.3604 108.837 57.3604C108.837 57.3604 108.837 57.3604 108.837 57.3604C108.837 57.3604 108.837 57.3604 108.837 57.3604C108.837 57.3604 108.837 57.3604 108.837 57.3604V59.3604C108.837 59.3604 108.837 59.3604 108.837 59.3604C108.837 59.3604 108.837 59.3604 108.837 59.3604C108.837 59.3604 108.837 59.3604 108.837 59.3604C108.837 59.3604 108.837 59.3604 108.837 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.838 59.3604 108.838 59.3604C108.838 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.839 59.3604 108.839 59.3604C108.839 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.84 59.3604 108.84 59.3604 108.84 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.841 59.3604 108.841 59.3604C108.841 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.842 59.3604 108.842 59.3604C108.842 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.843 59.3604C108.843 59.3604 108.843 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.844 59.3604 108.844 59.3604 108.844 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.845 59.3604 108.845 59.3604C108.845 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.846 59.3604 108.846 59.3604C108.846 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.847 59.3604C108.847 59.3604 108.847 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.848 59.3604 108.848 59.3604 108.848 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.849 59.3604 108.849 59.3604C108.849 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.85 59.3604 108.85 59.3604C108.85 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.851 59.3604C108.851 59.3604 108.851 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.852 59.3604 108.852 59.3604 108.852 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604C108.853 59.3604 108.853 59.3604 108.853 59.3604V57.3604ZM108.696 57.3704C108.687 57.3717 108.678 57.373 108.669 57.3743C108.66 57.3755 108.651 57.3768 108.642 57.3781L108.925 59.358C108.934 59.3567 108.943 59.3554 108.952 59.3541C108.961 59.3529 108.97 59.3516 108.979 59.3503L108.696 57.3704ZM108.784 57.368C108.742 57.368 108.707 57.3706 108.679 57.3735C108.65 57.3765 108.626 57.3803 108.606 57.3839C108.586 57.3875 108.569 57.3912 108.554 57.3945C108.54 57.3978 108.528 57.401 108.518 57.4037C108.508 57.4064 108.5 57.4089 108.493 57.4109C108.486 57.413 108.48 57.4148 108.476 57.4162C108.472 57.4175 108.468 57.4187 108.466 57.4194C108.465 57.4198 108.464 57.4201 108.463 57.4203C108.463 57.4204 108.462 57.4206 108.462 57.4206C108.462 57.4208 108.463 57.4204 108.464 57.4199C108.466 57.4193 108.469 57.4183 108.473 57.4171C108.477 57.4159 108.482 57.4142 108.488 57.4123C108.495 57.4104 108.503 57.408 108.513 57.4054C108.522 57.4028 108.534 57.3998 108.548 57.3966C108.561 57.3934 108.578 57.3897 108.598 57.3862C108.617 57.3827 108.641 57.379 108.669 57.376C108.697 57.3731 108.732 57.3706 108.773 57.3706V59.3706C108.814 59.3706 108.85 59.3681 108.878 59.3651C108.907 59.3621 108.931 59.3583 108.951 59.3548C108.971 59.3512 108.988 59.3475 109.002 59.3442C109.016 59.3409 109.029 59.3377 109.039 59.335C109.049 59.3323 109.057 59.3298 109.064 59.3277C109.071 59.3257 109.077 59.3239 109.081 59.3225C109.085 59.3211 109.089 59.32 109.091 59.3193C109.092 59.3189 109.093 59.3186 109.093 59.3184C109.094 59.3182 109.094 59.3181 109.095 59.318C109.095 59.3179 109.094 59.3183 109.092 59.3188C109.091 59.3193 109.088 59.3203 109.084 59.3215C109.08 59.3228 109.075 59.3244 109.068 59.3263C109.062 59.3283 109.054 59.3306 109.044 59.3332C109.035 59.3358 109.023 59.3389 109.009 59.3421C108.996 59.3453 108.979 59.3489 108.959 59.3524C108.94 59.3559 108.915 59.3597 108.887 59.3626C108.859 59.3655 108.824 59.368 108.784 59.368V57.368ZM108.499 57.4091C108.507 57.4067 108.513 57.405 108.518 57.4038C108.522 57.4027 108.525 57.402 108.525 57.402C108.533 57.4002 108.513 57.4049 108.504 57.4072C108.476 57.4142 108.407 57.432 108.325 57.4669L109.113 59.3051C109.05 59.3323 108.999 59.3449 108.989 59.3475C108.986 59.3482 108.984 59.3486 108.985 59.3483C108.986 59.3482 108.986 59.3481 108.988 59.3477C108.99 59.3473 108.992 59.3468 108.994 59.3462C109.003 59.3441 109.023 59.3392 109.048 59.3321L108.499 57.4091ZM108.719 57.386C108.677 57.386 108.633 57.3886 108.587 57.3947C108.541 57.4008 108.495 57.4102 108.449 57.4231C108.403 57.436 108.359 57.4519 108.317 57.4702C108.275 57.4884 108.238 57.5084 108.204 57.5286C108.137 57.5689 108.087 57.6094 108.056 57.6364C108.041 57.6499 108.029 57.6613 108.022 57.6683C108.018 57.6719 108.015 57.6748 108.013 57.6766C108.012 57.6775 108.012 57.6783 108.011 57.6787C108.011 57.679 108.011 57.6792 108.011 57.6793C108.011 57.6793 108.01 57.6794 108.01 57.6794C108.01 57.6795 108.01 57.6795 108.01 57.6795C108.01 57.6798 108.011 57.6784 108.013 57.6769C108.015 57.6751 108.018 57.6723 108.021 57.6688C108.028 57.6619 108.04 57.6507 108.055 57.6374C108.086 57.6106 108.135 57.5704 108.202 57.5304C108.235 57.5102 108.273 57.4904 108.314 57.4723C108.356 57.4541 108.4 57.4383 108.446 57.4255C108.491 57.4126 108.537 57.4033 108.583 57.3972C108.629 57.3912 108.673 57.3886 108.714 57.3886V59.3886C108.756 59.3886 108.8 59.3859 108.846 59.3798C108.892 59.3737 108.938 59.3644 108.985 59.3515C109.031 59.3385 109.075 59.3227 109.117 59.3044C109.158 59.2861 109.196 59.2662 109.23 59.2459C109.297 59.2057 109.347 59.1652 109.377 59.1382C109.393 59.1247 109.405 59.1133 109.412 59.1062C109.416 59.1027 109.419 59.0997 109.42 59.098C109.421 59.097 109.422 59.0963 109.422 59.0958C109.423 59.0956 109.423 59.0954 109.423 59.0953C109.423 59.0952 109.423 59.0952 109.423 59.0951C109.423 59.0951 109.423 59.0951 109.423 59.0951C109.424 59.0948 109.422 59.0961 109.421 59.0977C109.419 59.0994 109.416 59.1023 109.412 59.1058C109.405 59.1126 109.393 59.1239 109.378 59.1372C109.348 59.1639 109.299 59.2042 109.232 59.2442C109.198 59.2643 109.161 59.2841 109.119 59.3023C109.078 59.3205 109.034 59.3363 108.988 59.3491C108.942 59.3619 108.896 59.3713 108.85 59.3773C108.805 59.3834 108.761 59.386 108.719 59.386V57.386ZM108.427 57.4307C108.273 57.4768 108.161 57.5453 108.115 57.5739L109.175 59.2699C109.17 59.2728 109.152 59.2842 109.125 59.2977C109.097 59.3115 109.056 59.3302 109.002 59.3464L108.427 57.4307ZM108.143 57.5573L42.9234 95.4561L43.9282 97.1853L109.147 59.2865L108.143 57.5573ZM43.9114 97.1948C43.8984 97.202 43.8893 97.2064 43.8874 97.2073C43.8865 97.2077 43.8868 97.2076 43.8892 97.2065C43.8919 97.2053 43.895 97.2039 43.9012 97.2011L43.0889 95.3735C43.0712 95.3814 43.0081 95.4088 42.9401 95.4465L43.9114 97.1948ZM43.889 97.2065C43.8265 97.2332 43.7539 97.2544 43.6755 97.2642L43.4274 95.2797C43.308 95.2946 43.1995 95.326 43.1011 95.3682L43.889 97.2065ZM43.5515 97.2719C43.5926 97.2719 43.6282 97.2694 43.6564 97.2664C43.6849 97.2635 43.7095 97.2596 43.7294 97.2561C43.7493 97.2525 43.7667 97.2487 43.7808 97.2455C43.7949 97.2421 43.8072 97.239 43.8171 97.2362C43.8271 97.2335 43.8357 97.231 43.8425 97.229C43.8494 97.2269 43.8552 97.2251 43.8595 97.2237C43.8638 97.2223 43.8673 97.2212 43.8694 97.2205C43.8705 97.2201 43.8714 97.2198 43.872 97.2196C43.8725 97.2194 43.873 97.2193 43.8731 97.2192C43.8736 97.2191 43.8723 97.2195 43.8708 97.22C43.8692 97.2205 43.8662 97.2215 43.8623 97.2228C43.8585 97.224 43.8532 97.2257 43.8468 97.2276C43.8405 97.2295 43.8323 97.2319 43.8228 97.2345C43.8133 97.2371 43.8014 97.2401 43.7877 97.2434C43.774 97.2465 43.7571 97.2502 43.7375 97.2537C43.718 97.2572 43.6938 97.261 43.6656 97.2639C43.6378 97.2669 43.6025 97.2694 43.5617 97.2694V95.2694C43.5206 95.2694 43.485 95.2719 43.4568 95.2749C43.4283 95.2779 43.4037 95.2817 43.3838 95.2852C43.3639 95.2888 43.3465 95.2926 43.3324 95.2959C43.3183 95.2992 43.306 95.3024 43.2961 95.3051C43.2861 95.3078 43.2775 95.3103 43.2707 95.3124C43.2638 95.3144 43.258 95.3162 43.2537 95.3176C43.2494 95.319 43.2459 95.3201 43.2438 95.3208C43.2427 95.3212 43.2418 95.3215 43.2412 95.3217C43.2407 95.3219 43.2402 95.322 43.2401 95.3221C43.2396 95.3222 43.2409 95.3218 43.2424 95.3213C43.244 95.3208 43.247 95.3198 43.2509 95.3186C43.2547 95.3173 43.26 95.3157 43.2664 95.3137C43.2727 95.3118 43.2809 95.3094 43.2904 95.3068C43.2999 95.3042 43.3118 95.3012 43.3255 95.298C43.3392 95.2948 43.3561 95.2911 43.3757 95.2876C43.3952 95.2841 43.4194 95.2803 43.4476 95.2774C43.4754 95.2744 43.5107 95.2719 43.5515 95.2719V97.2719ZM43.7787 97.2456C43.7323 97.2559 43.6826 97.2617 43.631 97.2617V95.2617C43.5332 95.2617 43.4374 95.2726 43.3448 95.2932L43.7787 97.2456ZM43.631 97.2617C43.631 97.2617 43.631 97.2617 43.631 97.2617C43.631 97.2617 43.631 97.2617 43.631 97.2617C43.6311 97.2617 43.6311 97.2617 43.6311 97.2617C43.6311 97.2617 43.6311 97.2617 43.6311 97.2617C43.6311 97.2617 43.6311 97.2617 43.6311 97.2617C43.6311 97.2617 43.6312 97.2617 43.6312 97.2617C43.6312 97.2617 43.6312 97.2617 43.6312 97.2617C43.6312 97.2617 43.6312 97.2617 43.6312 97.2617C43.6312 97.2617 43.6312 97.2617 43.6313 97.2617C43.6313 97.2617 43.6313 97.2617 43.6313 97.2617C43.6313 97.2617 43.6313 97.2617 43.6313 97.2617C43.6313 97.2617 43.6313 97.2617 43.6313 97.2617C43.6314 97.2617 43.6314 97.2617 43.6314 97.2617C43.6314 97.2617 43.6314 97.2617 43.6314 97.2617C43.6314 97.2617 43.6314 97.2617 43.6314 97.2617C43.6314 97.2617 43.6315 97.2617 43.6315 97.2617C43.6315 97.2617 43.6315 97.2617 43.6315 97.2617C43.6315 97.2617 43.6315 97.2617 43.6315 97.2617C43.6315 97.2617 43.6315 97.2617 43.6316 97.2617C43.6316 97.2617 43.6316 97.2617 43.6316 97.2617C43.6316 97.2617 43.6316 97.2617 43.6316 97.2617C43.6316 97.2617 43.6316 97.2617 43.6316 97.2617C43.6317 97.2617 43.6317 97.2617 43.6317 97.2617C43.6317 97.2617 43.6317 97.2617 43.6317 97.2617C43.6317 97.2617 43.6317 97.2617 43.6317 97.2617C43.6317 97.2617 43.6318 97.2617 43.6318 97.2617C43.6318 97.2617 43.6318 97.2617 43.6318 97.2617C43.6318 97.2617 43.6318 97.2617 43.6318 97.2617C43.6318 97.2617 43.6318 97.2617 43.6319 97.2617C43.6319 97.2617 43.6319 97.2617 43.6319 97.2617C43.6319 97.2617 43.6319 97.2617 43.6319 97.2617C43.6319 97.2617 43.6319 97.2617 43.6319 97.2617C43.632 97.2617 43.632 97.2617 43.632 97.2617C43.632 97.2617 43.632 97.2617 43.632 97.2617C43.632 97.2617 43.632 97.2617 43.632 97.2617C43.632 97.2617 43.6321 97.2617 43.6321 97.2617C43.6321 97.2617 43.6321 97.2617 43.6321 97.2617C43.6321 97.2617 43.6321 97.2617 43.6321 97.2617C43.6321 97.2617 43.6321 97.2617 43.6322 97.2617C43.6322 97.2617 43.6322 97.2617 43.6322 97.2617C43.6322 97.2617 43.6322 97.2617 43.6322 97.2617C43.6322 97.2617 43.6322 97.2617 43.6322 97.2617C43.6323 97.2617 43.6323 97.2617 43.6323 97.2617C43.6323 97.2617 43.6323 97.2617 43.6323 97.2617C43.6323 97.2617 43.6323 97.2617 43.6323 97.2617C43.6323 97.2617 43.6324 97.2617 43.6324 97.2617C43.6324 97.2617 43.6324 97.2617 43.6324 97.2617C43.6324 97.2617 43.6324 97.2617 43.6324 97.2617C43.6324 97.2617 43.6324 97.2617 43.6325 97.2617C43.6325 97.2617 43.6325 97.2617 43.6325 97.2617C43.6325 97.2617 43.6325 97.2617 43.6325 97.2617C43.6325 97.2617 43.6325 97.2617 43.6325 97.2617C43.6326 97.2617 43.6326 97.2617 43.6326 97.2617C43.6326 97.2617 43.6326 97.2617 43.6326 97.2617C43.6326 97.2617 43.6326 97.2617 43.6326 97.2617C43.6326 97.2617 43.6327 97.2617 43.6327 97.2617C43.6327 97.2617 43.6327 97.2617 43.6327 97.2617C43.6327 97.2617 43.6327 97.2617 43.6327 97.2617C43.6327 97.2617 43.6327 97.2617 43.6328 97.2617C43.6328 97.2617 43.6328 97.2617 43.6328 97.2617C43.6328 97.2617 43.6328 97.2617 43.6328 97.2617C43.6328 97.2617 43.6328 97.2617 43.6328 97.2617C43.6329 97.2617 43.6329 97.2617 43.6329 97.2617C43.6329 97.2617 43.6329 97.2617 43.6329 97.2617C43.6329 97.2617 43.6329 97.2617 43.6329 97.2617C43.6329 97.2617 43.633 97.2617 43.633 97.2617C43.633 97.2617 43.633 97.2617 43.633 97.2617C43.633 97.2617 43.633 97.2617 43.633 97.2617C43.633 97.2617 43.633 97.2617 43.6331 97.2617C43.6331 97.2617 43.6331 97.2617 43.6331 97.2617C43.6331 97.2617 43.6331 97.2617 43.6331 97.2617C43.6331 97.2617 43.6331 97.2617 43.6331 97.2617C43.6332 97.2617 43.6332 97.2617 43.6332 97.2617C43.6332 97.2617 43.6332 97.2617 43.6332 97.2617C43.6332 97.2617 43.6332 97.2617 43.6332 97.2617C43.6332 97.2617 43.6333 97.2617 43.6333 97.2617C43.6333 97.2617 43.6333 97.2617 43.6333 97.2617C43.6333 97.2617 43.6333 97.2617 43.6333 97.2617C43.6333 97.2617 43.6333 97.2617 43.6334 97.2617C43.6334 97.2617 43.6334 97.2617 43.6334 97.2617C43.6334 97.2617 43.6334 97.2617 43.6334 97.2617C43.6334 97.2617 43.6334 97.2617 43.6334 97.2617C43.6335 97.2617 43.6335 97.2617 43.6335 97.2617C43.6335 97.2617 43.6335 97.2617 43.6335 97.2617C43.6335 97.2617 43.6335 97.2617 43.6335 97.2617C43.6336 97.2617 43.6336 97.2617 43.6336 97.2617C43.6336 97.2617 43.6336 97.2617 43.6336 97.2617C43.6336 97.2617 43.6336 97.2617 43.6336 97.2617C43.6336 97.2617 43.6337 97.2617 43.6337 97.2617C43.6337 97.2617 43.6337 97.2617 43.6337 97.2617C43.6337 97.2617 43.6337 97.2617 43.6337 97.2617C43.6337 97.2617 43.6337 97.2617 43.6338 97.2617C43.6338 97.2617 43.6338 97.2617 43.6338 97.2617C43.6338 97.2617 43.6338 97.2617 43.6338 97.2617C43.6338 97.2617 43.6338 97.2617 43.6338 97.2617C43.6339 97.2617 43.6339 97.2617 43.6339 97.2617C43.6339 97.2617 43.6339 97.2617 43.6339 97.2617C43.6339 97.2617 43.6339 97.2617 43.6339 97.2617C43.6339 97.2617 43.634 97.2617 43.634 97.2617C43.634 97.2617 43.634 97.2617 43.634 97.2617C43.634 97.2617 43.634 97.2617 43.634 97.2617C43.634 97.2617 43.634 97.2617 43.6341 97.2617C43.6341 97.2617 43.6341 97.2617 43.6341 97.2617C43.6341 97.2617 43.6341 97.2617 43.6341 97.2617C43.6341 97.2617 43.6341 97.2617 43.6341 97.2617C43.6342 97.2617 43.6342 97.2617 43.6342 97.2617C43.6342 97.2617 43.6342 97.2617 43.6342 97.2617C43.6342 97.2617 43.6342 97.2617 43.6342 97.2617C43.6342 97.2617 43.6343 97.2617 43.6343 97.2617C43.6343 97.2617 43.6343 97.2617 43.6343 97.2617C43.6343 97.2617 43.6343 97.2617 43.6343 97.2617C43.6343 97.2617 43.6343 97.2617 43.6344 97.2617C43.6344 97.2617 43.6344 97.2617 43.6344 97.2617C43.6344 97.2617 43.6344 97.2617 43.6344 97.2617C43.6344 97.2617 43.6344 97.2617 43.6344 97.2617C43.6345 97.2617 43.6345 97.2617 43.6345 97.2617C43.6345 97.2617 43.6345 97.2617 43.6345 97.2617C43.6345 97.2617 43.6345 97.2617 43.6345 97.2617C43.6345 97.2617 43.6346 97.2617 43.6346 97.2617C43.6346 97.2617 43.6346 97.2617 43.6346 97.2617C43.6346 97.2617 43.6346 97.2617 43.6346 97.2617C43.6346 97.2617 43.6346 97.2617 43.6347 97.2617C43.6347 97.2617 43.6347 97.2617 43.6347 97.2617C43.6347 97.2617 43.6347 97.2617 43.6347 97.2617C43.6347 97.2617 43.6347 97.2617 43.6347 97.2617C43.6348 97.2617 43.6348 97.2617 43.6348 97.2617C43.6348 97.2617 43.6348 97.2617 43.6348 97.2617C43.6348 97.2617 43.6348 97.2617 43.6348 97.2617C43.6348 97.2617 43.6349 97.2617 43.6349 97.2617C43.6349 97.2617 43.6349 97.2617 43.6349 97.2617C43.6349 97.2617 43.6349 97.2617 43.6349 97.2617C43.6349 97.2617 43.6349 97.2617 43.635 97.2617C43.635 97.2617 43.635 97.2617 43.635 97.2617C43.635 97.2617 43.635 97.2617 43.635 97.2617C43.635 97.2617 43.635 97.2617 43.635 97.2617C43.6351 97.2617 43.6351 97.2617 43.6351 97.2617C43.6351 97.2617 43.6351 97.2617 43.6351 97.2617C43.6351 97.2617 43.6351 97.2617 43.6351 97.2617C43.6351 97.2617 43.6352 97.2617 43.6352 97.2617C43.6352 97.2617 43.6352 97.2617 43.6352 97.2617C43.6352 97.2617 43.6352 97.2617 43.6352 97.2617C43.6352 97.2617 43.6352 97.2617 43.6353 97.2617C43.6353 97.2617 43.6353 97.2617 43.6353 97.2617C43.6353 97.2617 43.6353 97.2617 43.6353 97.2617C43.6353 97.2617 43.6353 97.2617 43.6353 97.2617C43.6354 97.2617 43.6354 97.2617 43.6354 97.2617C43.6354 97.2617 43.6354 97.2617 43.6354 97.2617C43.6354 97.2617 43.6354 97.2617 43.6354 97.2617C43.6354 97.2617 43.6355 97.2617 43.6355 97.2617C43.6355 97.2617 43.6355 97.2617 43.6355 97.2617C43.6355 97.2617 43.6355 97.2617 43.6355 97.2617C43.6355 97.2617 43.6355 97.2617 43.6356 97.2617C43.6356 97.2617 43.6356 97.2617 43.6356 97.2617C43.6356 97.2617 43.6356 97.2617 43.6356 97.2617C43.6356 97.2617 43.6356 97.2617 43.6356 97.2617C43.6357 97.2617 43.6357 97.2617 43.6357 97.2617C43.6357 97.2617 43.6357 97.2617 43.6357 97.2617C43.6357 97.2617 43.6357 97.2617 43.6357 97.2617C43.6357 97.2617 43.6358 97.2617 43.6358 97.2617C43.6358 97.2617 43.6358 97.2617 43.6358 97.2617C43.6358 97.2617 43.6358 97.2617 43.6358 97.2617C43.6358 97.2617 43.6358 97.2617 43.6359 97.2617C43.6359 97.2617 43.6359 97.2617 43.6359 97.2617C43.6359 97.2617 43.6359 97.2617 43.6359 97.2617C43.6359 97.2617 43.6359 97.2617 43.6359 97.2617C43.636 97.2617 43.636 97.2617 43.636 97.2617C43.636 97.2617 43.636 97.2617 43.636 97.2617C43.636 97.2617 43.636 97.2617 43.636 97.2617C43.636 97.2617 43.6361 97.2617 43.6361 97.2617C43.6361 97.2617 43.6361 97.2617 43.6361 97.2617C43.6361 97.2617 43.6361 97.2617 43.6361 97.2617C43.6361 97.2617 43.6361 97.2617 43.6362 97.2617C43.6362 97.2617 43.6362 97.2617 43.6362 97.2617C43.6362 97.2617 43.6362 97.2617 43.6362 97.2617C43.6362 97.2617 43.6362 97.2617 43.6362 97.2617C43.6363 97.2617 43.6363 97.2617 43.6363 97.2617C43.6363 97.2617 43.6363 97.2617 43.6363 97.2617C43.6363 97.2617 43.6363 97.2617 43.6363 97.2617C43.6363 97.2617 43.6364 97.2617 43.6364 97.2617C43.6364 97.2617 43.6364 97.2617 43.6364 97.2617C43.6364 97.2617 43.6364 97.2617 43.6364 97.2617C43.6364 97.2617 43.6364 97.2617 43.6365 97.2617C43.6365 97.2617 43.6365 97.2617 43.6365 97.2617C43.6365 97.2617 43.6365 97.2617 43.6365 97.2617C43.6365 97.2617 43.6365 97.2617 43.6365 97.2617C43.6366 97.2617 43.6366 97.2617 43.6366 97.2617C43.6366 97.2617 43.6366 97.2617 43.6366 97.2617C43.6366 97.2617 43.6366 97.2617 43.6366 97.2617C43.6366 97.2617 43.6367 97.2617 43.6367 97.2617C43.6367 97.2617 43.6367 97.2617 43.6367 97.2617C43.6367 97.2617 43.6367 97.2617 43.6367 97.2617C43.6367 97.2617 43.6367 97.2617 43.6368 97.2617C43.6368 97.2617 43.6368 97.2617 43.6368 97.2617C43.6368 97.2617 43.6368 97.2617 43.6368 97.2617C43.6368 97.2617 43.6368 97.2617 43.6368 97.2617C43.6369 97.2617 43.6369 97.2617 43.6369 97.2617C43.6369 97.2617 43.6369 97.2617 43.6369 97.2617C43.6369 97.2617 43.6369 97.2617 43.6369 97.2617C43.6369 97.2617 43.637 97.2617 43.637 97.2617C43.637 97.2617 43.637 97.2617 43.637 97.2617C43.637 97.2617 43.637 97.2617 43.637 97.2617C43.637 97.2617 43.637 97.2617 43.6371 97.2617C43.6371 97.2617 43.6371 97.2617 43.6371 97.2617C43.6371 97.2617 43.6371 97.2617 43.6371 97.2617C43.6371 97.2617 43.6371 97.2617 43.6371 97.2617C43.6372 97.2617 43.6372 97.2617 43.6372 97.2617C43.6372 97.2617 43.6372 97.2617 43.6372 97.2617C43.6372 97.2617 43.6372 97.2617 43.6372 97.2617C43.6372 97.2617 43.6373 97.2617 43.6373 97.2617C43.6373 97.2617 43.6373 97.2617 43.6373 97.2617C43.6373 97.2617 43.6373 97.2617 43.6373 97.2617C43.6373 97.2617 43.6373 97.2617 43.6374 97.2617C43.6374 97.2617 43.6374 97.2617 43.6374 97.2617C43.6374 97.2617 43.6374 97.2617 43.6374 97.2617C43.6374 97.2617 43.6374 97.2617 43.6374 97.2617C43.6375 97.2617 43.6375 97.2617 43.6375 97.2617C43.6375 97.2617 43.6375 97.2617 43.6375 97.2617C43.6375 97.2617 43.6375 97.2617 43.6375 97.2617C43.6375 97.2617 43.6376 97.2617 43.6376 97.2617C43.6376 97.2617 43.6376 97.2617 43.6376 97.2617C43.6376 97.2617 43.6376 97.2617 43.6376 97.2617C43.6376 97.2617 43.6376 97.2617 43.6377 97.2617C43.6377 97.2617 43.6377 97.2617 43.6377 97.2617C43.6377 97.2617 43.6377 97.2617 43.6377 97.2617C43.6377 97.2617 43.6377 97.2617 43.6377 97.2617C43.6378 97.2617 43.6378 97.2617 43.6378 97.2617C43.6378 97.2617 43.6378 97.2617 43.6378 97.2617C43.6378 97.2617 43.6378 97.2617 43.6378 97.2617C43.6378 97.2617 43.6379 97.2617 43.6379 97.2617C43.6379 97.2617 43.6379 97.2617 43.6379 97.2617C43.6379 97.2617 43.6379 97.2617 43.6379 97.2617C43.6379 97.2617 43.6379 97.2617 43.638 97.2617C43.638 97.2617 43.638 97.2617 43.638 97.2617C43.638 97.2617 43.638 97.2617 43.638 97.2617C43.638 97.2617 43.638 97.2617 43.638 97.2617C43.6381 97.2617 43.6381 97.2617 43.6381 97.2617C43.6381 97.2617 43.6381 97.2617 43.6381 97.2617C43.6381 97.2617 43.6381 97.2617 43.6381 97.2617C43.6381 97.2617 43.6382 97.2617 43.6382 97.2617C43.6382 97.2617 43.6382 97.2617 43.6382 97.2617C43.6382 97.2617 43.6382 97.2617 43.6382 97.2617C43.6382 97.2617 43.6382 97.2617 43.6383 97.2617C43.6383 97.2617 43.6383 97.2617 43.6383 97.2617C43.6383 97.2617 43.6383 97.2617 43.6383 97.2617C43.6383 97.2617 43.6383 97.2617 43.6384 97.2617C43.6384 97.2617 43.6384 97.2617 43.6384 97.2617C43.6384 97.2617 43.6384 97.2617 43.6384 97.2617C43.6384 97.2617 43.6384 97.2617 43.6384 97.2617C43.6385 97.2617 43.6385 97.2617 43.6385 97.2617C43.6385 97.2617 43.6385 97.2617 43.6385 97.2617C43.6385 97.2617 43.6385 97.2617 43.6385 97.2617C43.6385 97.2617 43.6386 97.2617 43.6386 97.2617C43.6386 97.2617 43.6386 97.2617 43.6386 97.2617C43.6386 97.2617 43.6386 97.2617 43.6386 97.2617C43.6386 97.2617 43.6386 97.2617 43.6387 97.2617C43.6387 97.2617 43.6387 97.2617 43.6387 97.2617C43.6387 97.2617 43.6387 97.2617 43.6387 97.2617C43.6387 97.2617 43.6387 97.2617 43.6387 97.2617C43.6388 97.2617 43.6388 97.2617 43.6388 97.2617C43.6388 97.2617 43.6388 97.2617 43.6388 97.2617C43.6388 97.2617 43.6388 97.2617 43.6388 97.2617C43.6388 97.2617 43.6389 97.2617 43.6389 97.2617C43.6389 97.2617 43.6389 97.2617 43.6389 97.2617C43.6389 97.2617 43.6389 97.2617 43.6389 97.2617C43.6389 97.2617 43.6389 97.2617 43.639 97.2617C43.639 97.2617 43.639 97.2617 43.639 97.2617C43.639 97.2617 43.639 97.2617 43.639 97.2617C43.639 97.2617 43.639 97.2617 43.639 97.2617C43.6391 97.2617 43.6391 97.2617 43.6391 97.2617C43.6391 97.2617 43.6391 97.2617 43.6391 97.2617C43.6391 97.2617 43.6391 97.2617 43.6391 97.2617C43.6391 97.2617 43.6392 97.2617 43.6392 97.2617C43.6392 97.2617 43.6392 97.2617 43.6392 97.2617C43.6392 97.2617 43.6392 97.2617 43.6392 97.2617C43.6392 97.2617 43.6392 97.2617 43.6393 97.2617C43.6393 97.2617 43.6393 97.2617 43.6393 97.2617C43.6393 97.2617 43.6393 97.2617 43.6393 97.2617C43.6393 97.2617 43.6393 97.2617 43.6393 97.2617C43.6394 97.2617 43.6394 97.2617 43.6394 97.2617C43.6394 97.2617 43.6394 97.2617 43.6394 97.2617C43.6394 97.2617 43.6394 97.2617 43.6394 97.2617C43.6394 97.2617 43.6395 97.2617 43.6395 97.2617C43.6395 97.2617 43.6395 97.2617 43.6395 97.2617C43.6395 97.2617 43.6395 97.2617 43.6395 97.2617C43.6395 97.2617 43.6395 97.2617 43.6396 97.2617C43.6396 97.2617 43.6396 97.2617 43.6396 97.2617C43.6396 97.2617 43.6396 97.2617 43.6396 97.2617C43.6396 97.2617 43.6396 97.2617 43.6396 97.2617C43.6397 97.2617 43.6397 97.2617 43.6397 97.2617C43.6397 97.2617 43.6397 97.2617 43.6397 97.2617C43.6397 97.2617 43.6397 97.2617 43.6397 97.2617C43.6397 97.2617 43.6398 97.2617 43.6398 97.2617C43.6398 97.2617 43.6398 97.2617 43.6398 97.2617C43.6398 97.2617 43.6398 97.2617 43.6398 97.2617C43.6398 97.2617 43.6398 97.2617 43.6399 97.2617C43.6399 97.2617 43.6399 97.2617 43.6399 97.2617C43.6399 97.2617 43.6399 97.2617 43.6399 97.2617C43.6399 97.2617 43.6399 97.2617 43.6399 97.2617C43.64 97.2617 43.64 97.2617 43.64 97.2617C43.64 97.2617 43.64 97.2617 43.64 97.2617C43.64 97.2617 43.64 97.2617 43.64 97.2617C43.64 97.2617 43.6401 97.2617 43.6401 97.2617C43.6401 97.2617 43.6401 97.2617 43.6401 97.2617C43.6401 97.2617 43.6401 97.2617 43.6401 97.2617C43.6401 97.2617 43.6401 97.2617 43.6402 97.2617C43.6402 97.2617 43.6402 97.2617 43.6402 97.2617C43.6402 97.2617 43.6402 97.2617 43.6402 97.2617C43.6402 97.2617 43.6402 97.2617 43.6402 97.2617C43.6403 97.2617 43.6403 97.2617 43.6403 97.2617C43.6403 97.2617 43.6403 97.2617 43.6403 97.2617C43.6403 97.2617 43.6403 97.2617 43.6403 97.2617C43.6403 97.2617 43.6404 97.2617 43.6404 97.2617C43.6404 97.2617 43.6404 97.2617 43.6404 97.2617C43.6404 97.2617 43.6404 97.2617 43.6404 97.2617C43.6404 97.2617 43.6404 97.2617 43.6405 97.2617C43.6405 97.2617 43.6405 97.2617 43.6405 97.2617C43.6405 97.2617 43.6405 97.2617 43.6405 97.2617C43.6405 97.2617 43.6405 97.2617 43.6405 97.2617C43.6406 97.2617 43.6406 97.2617 43.6406 97.2617C43.6406 97.2617 43.6406 97.2617 43.6406 97.2617C43.6406 97.2617 43.6406 97.2617 43.6406 97.2617C43.6406 97.2617 43.6407 97.2617 43.6407 97.2617C43.6407 97.2617 43.6407 97.2617 43.6407 97.2617C43.6407 97.2617 43.6407 97.2617 43.6407 97.2617C43.6407 97.2617 43.6407 97.2617 43.6408 97.2617C43.6408 97.2617 43.6408 97.2617 43.6408 97.2617C43.6408 97.2617 43.6408 97.2617 43.6408 97.2617C43.6408 97.2617 43.6408 97.2617 43.6408 97.2617C43.6409 97.2617 43.6409 97.2617 43.6409 97.2617C43.6409 97.2617 43.6409 97.2617 43.6409 97.2617C43.6409 97.2617 43.6409 97.2617 43.6409 97.2617C43.6409 97.2617 43.641 97.2617 43.641 97.2617C43.641 97.2617 43.641 97.2617 43.641 97.2617C43.641 97.2617 43.641 97.2617 43.641 97.2617C43.641 97.2617 43.641 97.2617 43.6411 97.2617C43.6411 97.2617 43.6411 97.2617 43.6411 97.2617C43.6411 97.2617 43.6411 97.2617 43.6411 97.2617C43.6411 97.2617 43.6411 97.2617 43.6411 97.2617C43.6412 97.2617 43.6412 97.2617 43.6412 97.2617C43.6412 97.2617 43.6412 97.2617 43.6412 97.2617C43.6412 97.2617 43.6412 97.2617 43.6412 97.2617C43.6412 97.2617 43.6413 97.2617 43.6413 97.2617C43.6413 97.2617 43.6413 97.2617 43.6413 97.2617C43.6413 97.2617 43.6413 97.2617 43.6413 97.2617C43.6413 97.2617 43.6413 97.2617 43.6414 97.2617C43.6414 97.2617 43.6414 97.2617 43.6414 97.2617C43.6414 97.2617 43.6414 97.2617 43.6414 97.2617C43.6414 97.2617 43.6414 97.2617 43.6414 97.2617C43.6415 97.2617 43.6415 97.2617 43.6415 97.2617C43.6415 97.2617 43.6415 97.2617 43.6415 97.2617C43.6415 97.2617 43.6415 97.2617 43.6415 97.2617C43.6415 97.2617 43.6416 97.2617 43.6416 97.2617C43.6416 97.2617 43.6416 97.2617 43.6416 97.2617C43.6416 97.2617 43.6416 97.2617 43.6416 97.2617C43.6416 97.2617 43.6416 97.2617 43.6417 97.2617C43.6417 97.2617 43.6417 97.2617 43.6417 97.2617C43.6417 97.2617 43.6417 97.2617 43.6417 97.2617C43.6417 97.2617 43.6417 97.2617 43.6417 97.2617C43.6418 97.2617 43.6418 97.2617 43.6418 97.2617C43.6418 97.2617 43.6418 97.2617 43.6418 97.2617C43.6418 97.2617 43.6418 97.2617 43.6418 97.2617C43.6418 97.2617 43.6419 97.2617 43.6419 97.2617C43.6419 97.2617 43.6419 97.2617 43.6419 97.2617C43.6419 97.2617 43.6419 97.2617 43.6419 97.2617C43.6419 97.2617 43.6419 97.2617 43.642 97.2617C43.642 97.2617 43.642 97.2617 43.642 97.2617C43.642 97.2617 43.642 97.2617 43.642 97.2617C43.642 97.2617 43.642 97.2617 43.642 97.2617C43.6421 97.2617 43.6421 97.2617 43.6421 97.2617C43.6421 97.2617 43.6421 97.2617 43.6421 97.2617C43.6421 97.2617 43.6421 97.2617 43.6421 97.2617C43.6421 97.2617 43.6422 97.2617 43.6422 97.2617C43.6422 97.2617 43.6422 97.2617 43.6422 97.2617C43.6422 97.2617 43.6422 97.2617 43.6422 97.2617C43.6422 97.2617 43.6422 97.2617 43.6423 97.2617C43.6423 97.2617 43.6423 97.2617 43.6423 97.2617C43.6423 97.2617 43.6423 97.2617 43.6423 97.2617C43.6423 97.2617 43.6423 97.2617 43.6423 97.2617C43.6424 97.2617 43.6424 97.2617 43.6424 97.2617C43.6424 97.2617 43.6424 97.2617 43.6424 97.2617C43.6424 97.2617 43.6424 97.2617 43.6424 97.2617C43.6424 97.2617 43.6425 97.2617 43.6425 97.2617C43.6425 97.2617 43.6425 97.2617 43.6425 97.2617C43.6425 97.2617 43.6425 97.2617 43.6425 97.2617C43.6425 97.2617 43.6425 97.2617 43.6426 97.2617C43.6426 97.2617 43.6426 97.2617 43.6426 97.2617C43.6426 97.2617 43.6426 97.2617 43.6426 97.2617C43.6426 97.2617 43.6426 97.2617 43.6426 97.2617C43.6427 97.2617 43.6427 97.2617 43.6427 97.2617C43.6427 97.2617 43.6427 97.2617 43.6427 97.2617C43.6427 97.2617 43.6427 97.2617 43.6427 97.2617C43.6427 97.2617 43.6428 97.2617 43.6428 97.2617C43.6428 97.2617 43.6428 97.2617 43.6428 97.2617C43.6428 97.2617 43.6428 97.2617 43.6428 97.2617C43.6428 97.2617 43.6428 97.2617 43.6429 97.2617C43.6429 97.2617 43.6429 97.2617 43.6429 97.2617C43.6429 97.2617 43.6429 97.2617 43.6429 97.2617C43.6429 97.2617 43.6429 97.2617 43.6429 97.2617C43.643 97.2617 43.643 97.2617 43.643 97.2617C43.643 97.2617 43.643 97.2617 43.643 97.2617C43.643 97.2617 43.643 97.2617 43.643 97.2617C43.643 97.2617 43.6431 97.2617 43.6431 97.2617C43.6431 97.2617 43.6431 97.2617 43.6431 97.2617C43.6431 97.2617 43.6431 97.2617 43.6431 97.2617C43.6431 97.2617 43.6432 97.2617 43.6432 97.2617C43.6432 97.2617 43.6432 97.2617 43.6432 97.2617C43.6432 97.2617 43.6432 97.2617 43.6432 97.2617C43.6432 97.2617 43.6432 97.2617 43.6433 97.2617C43.6433 97.2617 43.6433 97.2617 43.6433 97.2617C43.6433 97.2617 43.6433 97.2617 43.6433 97.2617C43.6433 97.2617 43.6433 97.2617 43.6433 97.2617C43.6434 97.2617 43.6434 97.2617 43.6434 97.2617C43.6434 97.2617 43.6434 97.2617 43.6434 97.2617C43.6434 97.2617 43.6434 97.2617 43.6434 97.2617C43.6434 97.2617 43.6435 97.2617 43.6435 97.2617C43.6435 97.2617 43.6435 97.2617 43.6435 97.2617C43.6435 97.2617 43.6435 97.2617 43.6435 97.2617C43.6435 97.2617 43.6435 97.2617 43.6436 97.2617C43.6436 97.2617 43.6436 97.2617 43.6436 97.2617C43.6436 97.2617 43.6436 97.2617 43.6436 97.2617C43.6436 97.2617 43.6436 97.2617 43.6436 97.2617C43.6437 97.2617 43.6437 97.2617 43.6437 97.2617C43.6437 97.2617 43.6437 97.2617 43.6437 97.2617C43.6437 97.2617 43.6437 97.2617 43.6437 97.2617C43.6437 97.2617 43.6438 97.2617 43.6438 97.2617C43.6438 97.2617 43.6438 97.2617 43.6438 97.2617C43.6438 97.2617 43.6438 97.2617 43.6438 97.2617C43.6438 97.2617 43.6438 97.2617 43.6439 97.2617C43.6439 97.2617 43.6439 97.2617 43.6439 97.2617C43.6439 97.2617 43.6439 97.2617 43.6439 97.2617C43.6439 97.2617 43.6439 97.2617 43.6439 97.2617C43.644 97.2617 43.644 97.2617 43.644 97.2617C43.644 97.2617 43.644 97.2617 43.644 97.2617C43.644 97.2617 43.644 97.2617 43.644 97.2617C43.644 97.2617 43.6441 97.2617 43.6441 97.2617C43.6441 97.2617 43.6441 97.2617 43.6441 97.2617C43.6441 97.2617 43.6441 97.2617 43.6441 97.2617C43.6441 97.2617 43.6441 97.2617 43.6442 97.2617C43.6442 97.2617 43.6442 97.2617 43.6442 97.2617C43.6442 97.2617 43.6442 97.2617 43.6442 97.2617C43.6442 97.2617 43.6442 97.2617 43.6442 97.2617C43.6443 97.2617 43.6443 97.2617 43.6443 97.2617C43.6443 97.2617 43.6443 97.2617 43.6443 97.2617C43.6443 97.2617 43.6443 97.2617 43.6443 97.2617C43.6443 97.2617 43.6444 97.2617 43.6444 97.2617C43.6444 97.2617 43.6444 97.2617 43.6444 97.2617C43.6444 97.2617 43.6444 97.2617 43.6444 97.2617C43.6444 97.2617 43.6444 97.2617 43.6445 97.2617C43.6445 97.2617 43.6445 97.2617 43.6445 97.2617C43.6445 97.2617 43.6445 97.2617 43.6445 97.2617C43.6445 97.2617 43.6445 97.2617 43.6445 97.2617C43.6446 97.2617 43.6446 97.2617 43.6446 97.2617C43.6446 97.2617 43.6446 97.2617 43.6446 97.2617C43.6446 97.2617 43.6446 97.2617 43.6446 97.2617C43.6446 97.2617 43.6447 97.2617 43.6447 97.2617C43.6447 97.2617 43.6447 97.2617 43.6447 97.2617C43.6447 97.2617 43.6447 97.2617 43.6447 97.2617C43.6447 97.2617 43.6447 97.2617 43.6448 97.2617C43.6448 97.2617 43.6448 97.2617 43.6448 97.2617C43.6448 97.2617 43.6448 97.2617 43.6448 97.2617C43.6448 97.2617 43.6448 97.2617 43.6448 97.2617C43.6449 97.2617 43.6449 97.2617 43.6449 97.2617C43.6449 97.2617 43.6449 97.2617 43.6449 97.2617C43.6449 97.2617 43.6449 97.2617 43.6449 97.2617C43.6449 97.2617 43.645 97.2617 43.645 97.2617C43.645 97.2617 43.645 97.2617 43.645 97.2617C43.645 97.2617 43.645 97.2617 43.645 97.2617C43.645 97.2617 43.645 97.2617 43.6451 97.2617C43.6451 97.2617 43.6451 97.2617 43.6451 97.2617C43.6451 97.2617 43.6451 97.2617 43.6451 97.2617C43.6451 97.2617 43.6451 97.2617 43.6451 97.2617C43.6452 97.2617 43.6452 97.2617 43.6452 97.2617C43.6452 97.2617 43.6452 97.2617 43.6452 97.2617C43.6452 97.2617 43.6452 97.2617 43.6452 97.2617C43.6452 97.2617 43.6453 97.2617 43.6453 97.2617C43.6453 97.2617 43.6453 97.2617 43.6453 97.2617C43.6453 97.2617 43.6453 97.2617 43.6453 97.2617C43.6453 97.2617 43.6453 97.2617 43.6454 97.2617C43.6454 97.2617 43.6454 97.2617 43.6454 97.2617C43.6454 97.2617 43.6454 97.2617 43.6454 97.2617C43.6454 97.2617 43.6454 97.2617 43.6454 97.2617C43.6455 97.2617 43.6455 97.2617 43.6455 97.2617C43.6455 97.2617 43.6455 97.2617 43.6455 97.2617C43.6455 97.2617 43.6455 97.2617 43.6455 97.2617C43.6455 97.2617 43.6456 97.2617 43.6456 97.2617C43.6456 97.2617 43.6456 97.2617 43.6456 97.2617C43.6456 97.2617 43.6456 97.2617 43.6456 97.2617C43.6456 97.2617 43.6456 97.2617 43.6457 97.2617C43.6457 97.2617 43.6457 97.2617 43.6457 97.2617C43.6457 97.2617 43.6457 97.2617 43.6457 97.2617C43.6457 97.2617 43.6457 97.2617 43.6457 97.2617C43.6458 97.2617 43.6458 97.2617 43.6458 97.2617C43.6458 97.2617 43.6458 97.2617 43.6458 97.2617C43.6458 97.2617 43.6458 97.2617 43.6458 97.2617C43.6458 97.2617 43.6459 97.2617 43.6459 97.2617C43.6459 97.2617 43.6459 97.2617 43.6459 97.2617C43.6459 97.2617 43.6459 97.2617 43.6459 97.2617C43.6459 97.2617 43.6459 97.2617 43.646 97.2617C43.646 97.2617 43.646 97.2617 43.646 97.2617C43.646 97.2617 43.646 97.2617 43.646 97.2617C43.646 97.2617 43.646 97.2617 43.646 97.2617C43.6461 97.2617 43.6461 97.2617 43.6461 97.2617C43.6461 97.2617 43.6461 97.2617 43.6461 97.2617C43.6461 97.2617 43.6461 97.2617 43.6461 97.2617C43.6461 97.2617 43.6462 97.2617 43.6462 97.2617C43.6462 97.2617 43.6462 97.2617 43.6462 97.2617C43.6462 97.2617 43.6462 97.2617 43.6462 97.2617C43.6462 97.2617 43.6462 97.2617 43.6463 97.2617C43.6463 97.2617 43.6463 97.2617 43.6463 97.2617C43.6463 97.2617 43.6463 97.2617 43.6463 97.2617C43.6463 97.2617 43.6463 97.2617 43.6463 97.2617C43.6464 97.2617 43.6464 97.2617 43.6464 97.2617V95.2617C43.6464 95.2617 43.6464 95.2617 43.6463 95.2617C43.6463 95.2617 43.6463 95.2617 43.6463 95.2617C43.6463 95.2617 43.6463 95.2617 43.6463 95.2617C43.6463 95.2617 43.6463 95.2617 43.6463 95.2617C43.6462 95.2617 43.6462 95.2617 43.6462 95.2617C43.6462 95.2617 43.6462 95.2617 43.6462 95.2617C43.6462 95.2617 43.6462 95.2617 43.6462 95.2617C43.6462 95.2617 43.6461 95.2617 43.6461 95.2617C43.6461 95.2617 43.6461 95.2617 43.6461 95.2617C43.6461 95.2617 43.6461 95.2617 43.6461 95.2617C43.6461 95.2617 43.6461 95.2617 43.646 95.2617C43.646 95.2617 43.646 95.2617 43.646 95.2617C43.646 95.2617 43.646 95.2617 43.646 95.2617C43.646 95.2617 43.646 95.2617 43.646 95.2617C43.6459 95.2617 43.6459 95.2617 43.6459 95.2617C43.6459 95.2617 43.6459 95.2617 43.6459 95.2617C43.6459 95.2617 43.6459 95.2617 43.6459 95.2617C43.6459 95.2617 43.6458 95.2617 43.6458 95.2617C43.6458 95.2617 43.6458 95.2617 43.6458 95.2617C43.6458 95.2617 43.6458 95.2617 43.6458 95.2617C43.6458 95.2617 43.6458 95.2617 43.6457 95.2617C43.6457 95.2617 43.6457 95.2617 43.6457 95.2617C43.6457 95.2617 43.6457 95.2617 43.6457 95.2617C43.6457 95.2617 43.6457 95.2617 43.6457 95.2617C43.6456 95.2617 43.6456 95.2617 43.6456 95.2617C43.6456 95.2617 43.6456 95.2617 43.6456 95.2617C43.6456 95.2617 43.6456 95.2617 43.6456 95.2617C43.6456 95.2617 43.6455 95.2617 43.6455 95.2617C43.6455 95.2617 43.6455 95.2617 43.6455 95.2617C43.6455 95.2617 43.6455 95.2617 43.6455 95.2617C43.6455 95.2617 43.6455 95.2617 43.6454 95.2617C43.6454 95.2617 43.6454 95.2617 43.6454 95.2617C43.6454 95.2617 43.6454 95.2617 43.6454 95.2617C43.6454 95.2617 43.6454 95.2617 43.6454 95.2617C43.6453 95.2617 43.6453 95.2617 43.6453 95.2617C43.6453 95.2617 43.6453 95.2617 43.6453 95.2617C43.6453 95.2617 43.6453 95.2617 43.6453 95.2617C43.6453 95.2617 43.6452 95.2617 43.6452 95.2617C43.6452 95.2617 43.6452 95.2617 43.6452 95.2617C43.6452 95.2617 43.6452 95.2617 43.6452 95.2617C43.6452 95.2617 43.6452 95.2617 43.6451 95.2617C43.6451 95.2617 43.6451 95.2617 43.6451 95.2617C43.6451 95.2617 43.6451 95.2617 43.6451 95.2617C43.6451 95.2617 43.6451 95.2617 43.6451 95.2617C43.645 95.2617 43.645 95.2617 43.645 95.2617C43.645 95.2617 43.645 95.2617 43.645 95.2617C43.645 95.2617 43.645 95.2617 43.645 95.2617C43.645 95.2617 43.6449 95.2617 43.6449 95.2617C43.6449 95.2617 43.6449 95.2617 43.6449 95.2617C43.6449 95.2617 43.6449 95.2617 43.6449 95.2617C43.6449 95.2617 43.6449 95.2617 43.6448 95.2617C43.6448 95.2617 43.6448 95.2617 43.6448 95.2617C43.6448 95.2617 43.6448 95.2617 43.6448 95.2617C43.6448 95.2617 43.6448 95.2617 43.6448 95.2617C43.6447 95.2617 43.6447 95.2617 43.6447 95.2617C43.6447 95.2617 43.6447 95.2617 43.6447 95.2617C43.6447 95.2617 43.6447 95.2617 43.6447 95.2617C43.6447 95.2617 43.6446 95.2617 43.6446 95.2617C43.6446 95.2617 43.6446 95.2617 43.6446 95.2617C43.6446 95.2617 43.6446 95.2617 43.6446 95.2617C43.6446 95.2617 43.6446 95.2617 43.6445 95.2617C43.6445 95.2617 43.6445 95.2617 43.6445 95.2617C43.6445 95.2617 43.6445 95.2617 43.6445 95.2617C43.6445 95.2617 43.6445 95.2617 43.6445 95.2617C43.6444 95.2617 43.6444 95.2617 43.6444 95.2617C43.6444 95.2617 43.6444 95.2617 43.6444 95.2617C43.6444 95.2617 43.6444 95.2617 43.6444 95.2617C43.6444 95.2617 43.6443 95.2617 43.6443 95.2617C43.6443 95.2617 43.6443 95.2617 43.6443 95.2617C43.6443 95.2617 43.6443 95.2617 43.6443 95.2617C43.6443 95.2617 43.6443 95.2617 43.6442 95.2617C43.6442 95.2617 43.6442 95.2617 43.6442 95.2617C43.6442 95.2617 43.6442 95.2617 43.6442 95.2617C43.6442 95.2617 43.6442 95.2617 43.6442 95.2617C43.6441 95.2617 43.6441 95.2617 43.6441 95.2617C43.6441 95.2617 43.6441 95.2617 43.6441 95.2617C43.6441 95.2617 43.6441 95.2617 43.6441 95.2617C43.6441 95.2617 43.644 95.2617 43.644 95.2617C43.644 95.2617 43.644 95.2617 43.644 95.2617C43.644 95.2617 43.644 95.2617 43.644 95.2617C43.644 95.2617 43.644 95.2617 43.6439 95.2617C43.6439 95.2617 43.6439 95.2617 43.6439 95.2617C43.6439 95.2617 43.6439 95.2617 43.6439 95.2617C43.6439 95.2617 43.6439 95.2617 43.6439 95.2617C43.6438 95.2617 43.6438 95.2617 43.6438 95.2617C43.6438 95.2617 43.6438 95.2617 43.6438 95.2617C43.6438 95.2617 43.6438 95.2617 43.6438 95.2617C43.6438 95.2617 43.6437 95.2617 43.6437 95.2617C43.6437 95.2617 43.6437 95.2617 43.6437 95.2617C43.6437 95.2617 43.6437 95.2617 43.6437 95.2617C43.6437 95.2617 43.6437 95.2617 43.6436 95.2617C43.6436 95.2617 43.6436 95.2617 43.6436 95.2617C43.6436 95.2617 43.6436 95.2617 43.6436 95.2617C43.6436 95.2617 43.6436 95.2617 43.6436 95.2617C43.6435 95.2617 43.6435 95.2617 43.6435 95.2617C43.6435 95.2617 43.6435 95.2617 43.6435 95.2617C43.6435 95.2617 43.6435 95.2617 43.6435 95.2617C43.6435 95.2617 43.6434 95.2617 43.6434 95.2617C43.6434 95.2617 43.6434 95.2617 43.6434 95.2617C43.6434 95.2617 43.6434 95.2617 43.6434 95.2617C43.6434 95.2617 43.6434 95.2617 43.6433 95.2617C43.6433 95.2617 43.6433 95.2617 43.6433 95.2617C43.6433 95.2617 43.6433 95.2617 43.6433 95.2617C43.6433 95.2617 43.6433 95.2617 43.6433 95.2617C43.6432 95.2617 43.6432 95.2617 43.6432 95.2617C43.6432 95.2617 43.6432 95.2617 43.6432 95.2617C43.6432 95.2617 43.6432 95.2617 43.6432 95.2617C43.6432 95.2617 43.6431 95.2617 43.6431 95.2617C43.6431 95.2617 43.6431 95.2617 43.6431 95.2617C43.6431 95.2617 43.6431 95.2617 43.6431 95.2617C43.6431 95.2617 43.643 95.2617 43.643 95.2617C43.643 95.2617 43.643 95.2617 43.643 95.2617C43.643 95.2617 43.643 95.2617 43.643 95.2617C43.643 95.2617 43.643 95.2617 43.6429 95.2617C43.6429 95.2617 43.6429 95.2617 43.6429 95.2617C43.6429 95.2617 43.6429 95.2617 43.6429 95.2617C43.6429 95.2617 43.6429 95.2617 43.6429 95.2617C43.6428 95.2617 43.6428 95.2617 43.6428 95.2617C43.6428 95.2617 43.6428 95.2617 43.6428 95.2617C43.6428 95.2617 43.6428 95.2617 43.6428 95.2617C43.6428 95.2617 43.6427 95.2617 43.6427 95.2617C43.6427 95.2617 43.6427 95.2617 43.6427 95.2617C43.6427 95.2617 43.6427 95.2617 43.6427 95.2617C43.6427 95.2617 43.6427 95.2617 43.6426 95.2617C43.6426 95.2617 43.6426 95.2617 43.6426 95.2617C43.6426 95.2617 43.6426 95.2617 43.6426 95.2617C43.6426 95.2617 43.6426 95.2617 43.6426 95.2617C43.6425 95.2617 43.6425 95.2617 43.6425 95.2617C43.6425 95.2617 43.6425 95.2617 43.6425 95.2617C43.6425 95.2617 43.6425 95.2617 43.6425 95.2617C43.6425 95.2617 43.6424 95.2617 43.6424 95.2617C43.6424 95.2617 43.6424 95.2617 43.6424 95.2617C43.6424 95.2617 43.6424 95.2617 43.6424 95.2617C43.6424 95.2617 43.6424 95.2617 43.6423 95.2617C43.6423 95.2617 43.6423 95.2617 43.6423 95.2617C43.6423 95.2617 43.6423 95.2617 43.6423 95.2617C43.6423 95.2617 43.6423 95.2617 43.6423 95.2617C43.6422 95.2617 43.6422 95.2617 43.6422 95.2617C43.6422 95.2617 43.6422 95.2617 43.6422 95.2617C43.6422 95.2617 43.6422 95.2617 43.6422 95.2617C43.6422 95.2617 43.6421 95.2617 43.6421 95.2617C43.6421 95.2617 43.6421 95.2617 43.6421 95.2617C43.6421 95.2617 43.6421 95.2617 43.6421 95.2617C43.6421 95.2617 43.6421 95.2617 43.642 95.2617C43.642 95.2617 43.642 95.2617 43.642 95.2617C43.642 95.2617 43.642 95.2617 43.642 95.2617C43.642 95.2617 43.642 95.2617 43.642 95.2617C43.6419 95.2617 43.6419 95.2617 43.6419 95.2617C43.6419 95.2617 43.6419 95.2617 43.6419 95.2617C43.6419 95.2617 43.6419 95.2617 43.6419 95.2617C43.6419 95.2617 43.6418 95.2617 43.6418 95.2617C43.6418 95.2617 43.6418 95.2617 43.6418 95.2617C43.6418 95.2617 43.6418 95.2617 43.6418 95.2617C43.6418 95.2617 43.6418 95.2617 43.6417 95.2617C43.6417 95.2617 43.6417 95.2617 43.6417 95.2617C43.6417 95.2617 43.6417 95.2617 43.6417 95.2617C43.6417 95.2617 43.6417 95.2617 43.6417 95.2617C43.6416 95.2617 43.6416 95.2617 43.6416 95.2617C43.6416 95.2617 43.6416 95.2617 43.6416 95.2617C43.6416 95.2617 43.6416 95.2617 43.6416 95.2617C43.6416 95.2617 43.6415 95.2617 43.6415 95.2617C43.6415 95.2617 43.6415 95.2617 43.6415 95.2617C43.6415 95.2617 43.6415 95.2617 43.6415 95.2617C43.6415 95.2617 43.6415 95.2617 43.6414 95.2617C43.6414 95.2617 43.6414 95.2617 43.6414 95.2617C43.6414 95.2617 43.6414 95.2617 43.6414 95.2617C43.6414 95.2617 43.6414 95.2617 43.6414 95.2617C43.6413 95.2617 43.6413 95.2617 43.6413 95.2617C43.6413 95.2617 43.6413 95.2617 43.6413 95.2617C43.6413 95.2617 43.6413 95.2617 43.6413 95.2617C43.6413 95.2617 43.6412 95.2617 43.6412 95.2617C43.6412 95.2617 43.6412 95.2617 43.6412 95.2617C43.6412 95.2617 43.6412 95.2617 43.6412 95.2617C43.6412 95.2617 43.6412 95.2617 43.6411 95.2617C43.6411 95.2617 43.6411 95.2617 43.6411 95.2617C43.6411 95.2617 43.6411 95.2617 43.6411 95.2617C43.6411 95.2617 43.6411 95.2617 43.6411 95.2617C43.641 95.2617 43.641 95.2617 43.641 95.2617C43.641 95.2617 43.641 95.2617 43.641 95.2617C43.641 95.2617 43.641 95.2617 43.641 95.2617C43.641 95.2617 43.6409 95.2617 43.6409 95.2617C43.6409 95.2617 43.6409 95.2617 43.6409 95.2617C43.6409 95.2617 43.6409 95.2617 43.6409 95.2617C43.6409 95.2617 43.6409 95.2617 43.6408 95.2617C43.6408 95.2617 43.6408 95.2617 43.6408 95.2617C43.6408 95.2617 43.6408 95.2617 43.6408 95.2617C43.6408 95.2617 43.6408 95.2617 43.6408 95.2617C43.6407 95.2617 43.6407 95.2617 43.6407 95.2617C43.6407 95.2617 43.6407 95.2617 43.6407 95.2617C43.6407 95.2617 43.6407 95.2617 43.6407 95.2617C43.6407 95.2617 43.6406 95.2617 43.6406 95.2617C43.6406 95.2617 43.6406 95.2617 43.6406 95.2617C43.6406 95.2617 43.6406 95.2617 43.6406 95.2617C43.6406 95.2617 43.6406 95.2617 43.6405 95.2617C43.6405 95.2617 43.6405 95.2617 43.6405 95.2617C43.6405 95.2617 43.6405 95.2617 43.6405 95.2617C43.6405 95.2617 43.6405 95.2617 43.6405 95.2617C43.6404 95.2617 43.6404 95.2617 43.6404 95.2617C43.6404 95.2617 43.6404 95.2617 43.6404 95.2617C43.6404 95.2617 43.6404 95.2617 43.6404 95.2617C43.6404 95.2617 43.6403 95.2617 43.6403 95.2617C43.6403 95.2617 43.6403 95.2617 43.6403 95.2617C43.6403 95.2617 43.6403 95.2617 43.6403 95.2617C43.6403 95.2617 43.6403 95.2617 43.6402 95.2617C43.6402 95.2617 43.6402 95.2617 43.6402 95.2617C43.6402 95.2617 43.6402 95.2617 43.6402 95.2617C43.6402 95.2617 43.6402 95.2617 43.6402 95.2617C43.6401 95.2617 43.6401 95.2617 43.6401 95.2617C43.6401 95.2617 43.6401 95.2617 43.6401 95.2617C43.6401 95.2617 43.6401 95.2617 43.6401 95.2617C43.6401 95.2617 43.64 95.2617 43.64 95.2617C43.64 95.2617 43.64 95.2617 43.64 95.2617C43.64 95.2617 43.64 95.2617 43.64 95.2617C43.64 95.2617 43.64 95.2617 43.6399 95.2617C43.6399 95.2617 43.6399 95.2617 43.6399 95.2617C43.6399 95.2617 43.6399 95.2617 43.6399 95.2617C43.6399 95.2617 43.6399 95.2617 43.6399 95.2617C43.6398 95.2617 43.6398 95.2617 43.6398 95.2617C43.6398 95.2617 43.6398 95.2617 43.6398 95.2617C43.6398 95.2617 43.6398 95.2617 43.6398 95.2617C43.6398 95.2617 43.6397 95.2617 43.6397 95.2617C43.6397 95.2617 43.6397 95.2617 43.6397 95.2617C43.6397 95.2617 43.6397 95.2617 43.6397 95.2617C43.6397 95.2617 43.6397 95.2617 43.6396 95.2617C43.6396 95.2617 43.6396 95.2617 43.6396 95.2617C43.6396 95.2617 43.6396 95.2617 43.6396 95.2617C43.6396 95.2617 43.6396 95.2617 43.6396 95.2617C43.6395 95.2617 43.6395 95.2617 43.6395 95.2617C43.6395 95.2617 43.6395 95.2617 43.6395 95.2617C43.6395 95.2617 43.6395 95.2617 43.6395 95.2617C43.6395 95.2617 43.6394 95.2617 43.6394 95.2617C43.6394 95.2617 43.6394 95.2617 43.6394 95.2617C43.6394 95.2617 43.6394 95.2617 43.6394 95.2617C43.6394 95.2617 43.6394 95.2617 43.6393 95.2617C43.6393 95.2617 43.6393 95.2617 43.6393 95.2617C43.6393 95.2617 43.6393 95.2617 43.6393 95.2617C43.6393 95.2617 43.6393 95.2617 43.6393 95.2617C43.6392 95.2617 43.6392 95.2617 43.6392 95.2617C43.6392 95.2617 43.6392 95.2617 43.6392 95.2617C43.6392 95.2617 43.6392 95.2617 43.6392 95.2617C43.6392 95.2617 43.6391 95.2617 43.6391 95.2617C43.6391 95.2617 43.6391 95.2617 43.6391 95.2617C43.6391 95.2617 43.6391 95.2617 43.6391 95.2617C43.6391 95.2617 43.6391 95.2617 43.639 95.2617C43.639 95.2617 43.639 95.2617 43.639 95.2617C43.639 95.2617 43.639 95.2617 43.639 95.2617C43.639 95.2617 43.639 95.2617 43.639 95.2617C43.6389 95.2617 43.6389 95.2617 43.6389 95.2617C43.6389 95.2617 43.6389 95.2617 43.6389 95.2617C43.6389 95.2617 43.6389 95.2617 43.6389 95.2617C43.6389 95.2617 43.6388 95.2617 43.6388 95.2617C43.6388 95.2617 43.6388 95.2617 43.6388 95.2617C43.6388 95.2617 43.6388 95.2617 43.6388 95.2617C43.6388 95.2617 43.6388 95.2617 43.6387 95.2617C43.6387 95.2617 43.6387 95.2617 43.6387 95.2617C43.6387 95.2617 43.6387 95.2617 43.6387 95.2617C43.6387 95.2617 43.6387 95.2617 43.6387 95.2617C43.6386 95.2617 43.6386 95.2617 43.6386 95.2617C43.6386 95.2617 43.6386 95.2617 43.6386 95.2617C43.6386 95.2617 43.6386 95.2617 43.6386 95.2617C43.6386 95.2617 43.6385 95.2617 43.6385 95.2617C43.6385 95.2617 43.6385 95.2617 43.6385 95.2617C43.6385 95.2617 43.6385 95.2617 43.6385 95.2617C43.6385 95.2617 43.6385 95.2617 43.6384 95.2617C43.6384 95.2617 43.6384 95.2617 43.6384 95.2617C43.6384 95.2617 43.6384 95.2617 43.6384 95.2617C43.6384 95.2617 43.6384 95.2617 43.6384 95.2617C43.6383 95.2617 43.6383 95.2617 43.6383 95.2617C43.6383 95.2617 43.6383 95.2617 43.6383 95.2617C43.6383 95.2617 43.6383 95.2617 43.6383 95.2617C43.6382 95.2617 43.6382 95.2617 43.6382 95.2617C43.6382 95.2617 43.6382 95.2617 43.6382 95.2617C43.6382 95.2617 43.6382 95.2617 43.6382 95.2617C43.6382 95.2617 43.6381 95.2617 43.6381 95.2617C43.6381 95.2617 43.6381 95.2617 43.6381 95.2617C43.6381 95.2617 43.6381 95.2617 43.6381 95.2617C43.6381 95.2617 43.6381 95.2617 43.638 95.2617C43.638 95.2617 43.638 95.2617 43.638 95.2617C43.638 95.2617 43.638 95.2617 43.638 95.2617C43.638 95.2617 43.638 95.2617 43.638 95.2617C43.6379 95.2617 43.6379 95.2617 43.6379 95.2617C43.6379 95.2617 43.6379 95.2617 43.6379 95.2617C43.6379 95.2617 43.6379 95.2617 43.6379 95.2617C43.6379 95.2617 43.6378 95.2617 43.6378 95.2617C43.6378 95.2617 43.6378 95.2617 43.6378 95.2617C43.6378 95.2617 43.6378 95.2617 43.6378 95.2617C43.6378 95.2617 43.6378 95.2617 43.6377 95.2617C43.6377 95.2617 43.6377 95.2617 43.6377 95.2617C43.6377 95.2617 43.6377 95.2617 43.6377 95.2617C43.6377 95.2617 43.6377 95.2617 43.6377 95.2617C43.6376 95.2617 43.6376 95.2617 43.6376 95.2617C43.6376 95.2617 43.6376 95.2617 43.6376 95.2617C43.6376 95.2617 43.6376 95.2617 43.6376 95.2617C43.6376 95.2617 43.6375 95.2617 43.6375 95.2617C43.6375 95.2617 43.6375 95.2617 43.6375 95.2617C43.6375 95.2617 43.6375 95.2617 43.6375 95.2617C43.6375 95.2617 43.6375 95.2617 43.6374 95.2617C43.6374 95.2617 43.6374 95.2617 43.6374 95.2617C43.6374 95.2617 43.6374 95.2617 43.6374 95.2617C43.6374 95.2617 43.6374 95.2617 43.6374 95.2617C43.6373 95.2617 43.6373 95.2617 43.6373 95.2617C43.6373 95.2617 43.6373 95.2617 43.6373 95.2617C43.6373 95.2617 43.6373 95.2617 43.6373 95.2617C43.6373 95.2617 43.6372 95.2617 43.6372 95.2617C43.6372 95.2617 43.6372 95.2617 43.6372 95.2617C43.6372 95.2617 43.6372 95.2617 43.6372 95.2617C43.6372 95.2617 43.6372 95.2617 43.6371 95.2617C43.6371 95.2617 43.6371 95.2617 43.6371 95.2617C43.6371 95.2617 43.6371 95.2617 43.6371 95.2617C43.6371 95.2617 43.6371 95.2617 43.6371 95.2617C43.637 95.2617 43.637 95.2617 43.637 95.2617C43.637 95.2617 43.637 95.2617 43.637 95.2617C43.637 95.2617 43.637 95.2617 43.637 95.2617C43.637 95.2617 43.6369 95.2617 43.6369 95.2617C43.6369 95.2617 43.6369 95.2617 43.6369 95.2617C43.6369 95.2617 43.6369 95.2617 43.6369 95.2617C43.6369 95.2617 43.6369 95.2617 43.6368 95.2617C43.6368 95.2617 43.6368 95.2617 43.6368 95.2617C43.6368 95.2617 43.6368 95.2617 43.6368 95.2617C43.6368 95.2617 43.6368 95.2617 43.6368 95.2617C43.6367 95.2617 43.6367 95.2617 43.6367 95.2617C43.6367 95.2617 43.6367 95.2617 43.6367 95.2617C43.6367 95.2617 43.6367 95.2617 43.6367 95.2617C43.6367 95.2617 43.6366 95.2617 43.6366 95.2617C43.6366 95.2617 43.6366 95.2617 43.6366 95.2617C43.6366 95.2617 43.6366 95.2617 43.6366 95.2617C43.6366 95.2617 43.6366 95.2617 43.6365 95.2617C43.6365 95.2617 43.6365 95.2617 43.6365 95.2617C43.6365 95.2617 43.6365 95.2617 43.6365 95.2617C43.6365 95.2617 43.6365 95.2617 43.6365 95.2617C43.6364 95.2617 43.6364 95.2617 43.6364 95.2617C43.6364 95.2617 43.6364 95.2617 43.6364 95.2617C43.6364 95.2617 43.6364 95.2617 43.6364 95.2617C43.6364 95.2617 43.6363 95.2617 43.6363 95.2617C43.6363 95.2617 43.6363 95.2617 43.6363 95.2617C43.6363 95.2617 43.6363 95.2617 43.6363 95.2617C43.6363 95.2617 43.6363 95.2617 43.6362 95.2617C43.6362 95.2617 43.6362 95.2617 43.6362 95.2617C43.6362 95.2617 43.6362 95.2617 43.6362 95.2617C43.6362 95.2617 43.6362 95.2617 43.6362 95.2617C43.6361 95.2617 43.6361 95.2617 43.6361 95.2617C43.6361 95.2617 43.6361 95.2617 43.6361 95.2617C43.6361 95.2617 43.6361 95.2617 43.6361 95.2617C43.6361 95.2617 43.636 95.2617 43.636 95.2617C43.636 95.2617 43.636 95.2617 43.636 95.2617C43.636 95.2617 43.636 95.2617 43.636 95.2617C43.636 95.2617 43.636 95.2617 43.6359 95.2617C43.6359 95.2617 43.6359 95.2617 43.6359 95.2617C43.6359 95.2617 43.6359 95.2617 43.6359 95.2617C43.6359 95.2617 43.6359 95.2617 43.6359 95.2617C43.6358 95.2617 43.6358 95.2617 43.6358 95.2617C43.6358 95.2617 43.6358 95.2617 43.6358 95.2617C43.6358 95.2617 43.6358 95.2617 43.6358 95.2617C43.6358 95.2617 43.6357 95.2617 43.6357 95.2617C43.6357 95.2617 43.6357 95.2617 43.6357 95.2617C43.6357 95.2617 43.6357 95.2617 43.6357 95.2617C43.6357 95.2617 43.6357 95.2617 43.6356 95.2617C43.6356 95.2617 43.6356 95.2617 43.6356 95.2617C43.6356 95.2617 43.6356 95.2617 43.6356 95.2617C43.6356 95.2617 43.6356 95.2617 43.6356 95.2617C43.6355 95.2617 43.6355 95.2617 43.6355 95.2617C43.6355 95.2617 43.6355 95.2617 43.6355 95.2617C43.6355 95.2617 43.6355 95.2617 43.6355 95.2617C43.6355 95.2617 43.6354 95.2617 43.6354 95.2617C43.6354 95.2617 43.6354 95.2617 43.6354 95.2617C43.6354 95.2617 43.6354 95.2617 43.6354 95.2617C43.6354 95.2617 43.6354 95.2617 43.6353 95.2617C43.6353 95.2617 43.6353 95.2617 43.6353 95.2617C43.6353 95.2617 43.6353 95.2617 43.6353 95.2617C43.6353 95.2617 43.6353 95.2617 43.6353 95.2617C43.6352 95.2617 43.6352 95.2617 43.6352 95.2617C43.6352 95.2617 43.6352 95.2617 43.6352 95.2617C43.6352 95.2617 43.6352 95.2617 43.6352 95.2617C43.6352 95.2617 43.6351 95.2617 43.6351 95.2617C43.6351 95.2617 43.6351 95.2617 43.6351 95.2617C43.6351 95.2617 43.6351 95.2617 43.6351 95.2617C43.6351 95.2617 43.6351 95.2617 43.635 95.2617C43.635 95.2617 43.635 95.2617 43.635 95.2617C43.635 95.2617 43.635 95.2617 43.635 95.2617C43.635 95.2617 43.635 95.2617 43.635 95.2617C43.6349 95.2617 43.6349 95.2617 43.6349 95.2617C43.6349 95.2617 43.6349 95.2617 43.6349 95.2617C43.6349 95.2617 43.6349 95.2617 43.6349 95.2617C43.6349 95.2617 43.6348 95.2617 43.6348 95.2617C43.6348 95.2617 43.6348 95.2617 43.6348 95.2617C43.6348 95.2617 43.6348 95.2617 43.6348 95.2617C43.6348 95.2617 43.6348 95.2617 43.6347 95.2617C43.6347 95.2617 43.6347 95.2617 43.6347 95.2617C43.6347 95.2617 43.6347 95.2617 43.6347 95.2617C43.6347 95.2617 43.6347 95.2617 43.6347 95.2617C43.6346 95.2617 43.6346 95.2617 43.6346 95.2617C43.6346 95.2617 43.6346 95.2617 43.6346 95.2617C43.6346 95.2617 43.6346 95.2617 43.6346 95.2617C43.6346 95.2617 43.6345 95.2617 43.6345 95.2617C43.6345 95.2617 43.6345 95.2617 43.6345 95.2617C43.6345 95.2617 43.6345 95.2617 43.6345 95.2617C43.6345 95.2617 43.6345 95.2617 43.6344 95.2617C43.6344 95.2617 43.6344 95.2617 43.6344 95.2617C43.6344 95.2617 43.6344 95.2617 43.6344 95.2617C43.6344 95.2617 43.6344 95.2617 43.6344 95.2617C43.6343 95.2617 43.6343 95.2617 43.6343 95.2617C43.6343 95.2617 43.6343 95.2617 43.6343 95.2617C43.6343 95.2617 43.6343 95.2617 43.6343 95.2617C43.6343 95.2617 43.6342 95.2617 43.6342 95.2617C43.6342 95.2617 43.6342 95.2617 43.6342 95.2617C43.6342 95.2617 43.6342 95.2617 43.6342 95.2617C43.6342 95.2617 43.6342 95.2617 43.6341 95.2617C43.6341 95.2617 43.6341 95.2617 43.6341 95.2617C43.6341 95.2617 43.6341 95.2617 43.6341 95.2617C43.6341 95.2617 43.6341 95.2617 43.6341 95.2617C43.634 95.2617 43.634 95.2617 43.634 95.2617C43.634 95.2617 43.634 95.2617 43.634 95.2617C43.634 95.2617 43.634 95.2617 43.634 95.2617C43.634 95.2617 43.6339 95.2617 43.6339 95.2617C43.6339 95.2617 43.6339 95.2617 43.6339 95.2617C43.6339 95.2617 43.6339 95.2617 43.6339 95.2617C43.6339 95.2617 43.6339 95.2617 43.6338 95.2617C43.6338 95.2617 43.6338 95.2617 43.6338 95.2617C43.6338 95.2617 43.6338 95.2617 43.6338 95.2617C43.6338 95.2617 43.6338 95.2617 43.6338 95.2617C43.6337 95.2617 43.6337 95.2617 43.6337 95.2617C43.6337 95.2617 43.6337 95.2617 43.6337 95.2617C43.6337 95.2617 43.6337 95.2617 43.6337 95.2617C43.6337 95.2617 43.6336 95.2617 43.6336 95.2617C43.6336 95.2617 43.6336 95.2617 43.6336 95.2617C43.6336 95.2617 43.6336 95.2617 43.6336 95.2617C43.6336 95.2617 43.6336 95.2617 43.6335 95.2617C43.6335 95.2617 43.6335 95.2617 43.6335 95.2617C43.6335 95.2617 43.6335 95.2617 43.6335 95.2617C43.6335 95.2617 43.6335 95.2617 43.6334 95.2617C43.6334 95.2617 43.6334 95.2617 43.6334 95.2617C43.6334 95.2617 43.6334 95.2617 43.6334 95.2617C43.6334 95.2617 43.6334 95.2617 43.6334 95.2617C43.6333 95.2617 43.6333 95.2617 43.6333 95.2617C43.6333 95.2617 43.6333 95.2617 43.6333 95.2617C43.6333 95.2617 43.6333 95.2617 43.6333 95.2617C43.6333 95.2617 43.6332 95.2617 43.6332 95.2617C43.6332 95.2617 43.6332 95.2617 43.6332 95.2617C43.6332 95.2617 43.6332 95.2617 43.6332 95.2617C43.6332 95.2617 43.6332 95.2617 43.6331 95.2617C43.6331 95.2617 43.6331 95.2617 43.6331 95.2617C43.6331 95.2617 43.6331 95.2617 43.6331 95.2617C43.6331 95.2617 43.6331 95.2617 43.6331 95.2617C43.633 95.2617 43.633 95.2617 43.633 95.2617C43.633 95.2617 43.633 95.2617 43.633 95.2617C43.633 95.2617 43.633 95.2617 43.633 95.2617C43.633 95.2617 43.6329 95.2617 43.6329 95.2617C43.6329 95.2617 43.6329 95.2617 43.6329 95.2617C43.6329 95.2617 43.6329 95.2617 43.6329 95.2617C43.6329 95.2617 43.6329 95.2617 43.6328 95.2617C43.6328 95.2617 43.6328 95.2617 43.6328 95.2617C43.6328 95.2617 43.6328 95.2617 43.6328 95.2617C43.6328 95.2617 43.6328 95.2617 43.6328 95.2617C43.6327 95.2617 43.6327 95.2617 43.6327 95.2617C43.6327 95.2617 43.6327 95.2617 43.6327 95.2617C43.6327 95.2617 43.6327 95.2617 43.6327 95.2617C43.6327 95.2617 43.6326 95.2617 43.6326 95.2617C43.6326 95.2617 43.6326 95.2617 43.6326 95.2617C43.6326 95.2617 43.6326 95.2617 43.6326 95.2617C43.6326 95.2617 43.6326 95.2617 43.6325 95.2617C43.6325 95.2617 43.6325 95.2617 43.6325 95.2617C43.6325 95.2617 43.6325 95.2617 43.6325 95.2617C43.6325 95.2617 43.6325 95.2617 43.6325 95.2617C43.6324 95.2617 43.6324 95.2617 43.6324 95.2617C43.6324 95.2617 43.6324 95.2617 43.6324 95.2617C43.6324 95.2617 43.6324 95.2617 43.6324 95.2617C43.6324 95.2617 43.6323 95.2617 43.6323 95.2617C43.6323 95.2617 43.6323 95.2617 43.6323 95.2617C43.6323 95.2617 43.6323 95.2617 43.6323 95.2617C43.6323 95.2617 43.6323 95.2617 43.6322 95.2617C43.6322 95.2617 43.6322 95.2617 43.6322 95.2617C43.6322 95.2617 43.6322 95.2617 43.6322 95.2617C43.6322 95.2617 43.6322 95.2617 43.6322 95.2617C43.6321 95.2617 43.6321 95.2617 43.6321 95.2617C43.6321 95.2617 43.6321 95.2617 43.6321 95.2617C43.6321 95.2617 43.6321 95.2617 43.6321 95.2617C43.6321 95.2617 43.632 95.2617 43.632 95.2617C43.632 95.2617 43.632 95.2617 43.632 95.2617C43.632 95.2617 43.632 95.2617 43.632 95.2617C43.632 95.2617 43.632 95.2617 43.6319 95.2617C43.6319 95.2617 43.6319 95.2617 43.6319 95.2617C43.6319 95.2617 43.6319 95.2617 43.6319 95.2617C43.6319 95.2617 43.6319 95.2617 43.6319 95.2617C43.6318 95.2617 43.6318 95.2617 43.6318 95.2617C43.6318 95.2617 43.6318 95.2617 43.6318 95.2617C43.6318 95.2617 43.6318 95.2617 43.6318 95.2617C43.6318 95.2617 43.6317 95.2617 43.6317 95.2617C43.6317 95.2617 43.6317 95.2617 43.6317 95.2617C43.6317 95.2617 43.6317 95.2617 43.6317 95.2617C43.6317 95.2617 43.6317 95.2617 43.6316 95.2617C43.6316 95.2617 43.6316 95.2617 43.6316 95.2617C43.6316 95.2617 43.6316 95.2617 43.6316 95.2617C43.6316 95.2617 43.6316 95.2617 43.6316 95.2617C43.6315 95.2617 43.6315 95.2617 43.6315 95.2617C43.6315 95.2617 43.6315 95.2617 43.6315 95.2617C43.6315 95.2617 43.6315 95.2617 43.6315 95.2617C43.6315 95.2617 43.6314 95.2617 43.6314 95.2617C43.6314 95.2617 43.6314 95.2617 43.6314 95.2617C43.6314 95.2617 43.6314 95.2617 43.6314 95.2617C43.6314 95.2617 43.6314 95.2617 43.6313 95.2617C43.6313 95.2617 43.6313 95.2617 43.6313 95.2617C43.6313 95.2617 43.6313 95.2617 43.6313 95.2617C43.6313 95.2617 43.6313 95.2617 43.6313 95.2617C43.6312 95.2617 43.6312 95.2617 43.6312 95.2617C43.6312 95.2617 43.6312 95.2617 43.6312 95.2617C43.6312 95.2617 43.6312 95.2617 43.6312 95.2617C43.6312 95.2617 43.6311 95.2617 43.6311 95.2617C43.6311 95.2617 43.6311 95.2617 43.6311 95.2617C43.6311 95.2617 43.6311 95.2617 43.6311 95.2617C43.6311 95.2617 43.6311 95.2617 43.631 95.2617C43.631 95.2617 43.631 95.2617 43.631 95.2617C43.631 95.2617 43.631 95.2617 43.631 95.2617V97.2617ZM43.6464 97.2617C43.6527 97.2617 43.655 97.2617 43.6567 97.2617C43.658 97.2617 43.6565 97.2617 43.6532 97.2616C43.6469 97.2614 43.6294 97.2608 43.6052 97.2581L43.8261 95.2704C43.7389 95.2607 43.6605 95.2617 43.6464 95.2617V97.2617ZM43.7156 97.2642C43.7156 97.2642 43.7156 97.2642 43.7156 97.2642C43.7157 97.2642 43.7157 97.2642 43.7157 97.2642C43.7157 97.2642 43.7157 97.2642 43.7157 97.2642C43.7157 97.2642 43.7157 97.2642 43.7157 97.2642C43.7157 97.2642 43.7157 97.2642 43.7157 97.2642C43.7157 97.2642 43.7157 97.2642 43.7157 97.2642C43.7157 97.2642 43.7157 97.2642 43.7157 97.2642C43.7157 97.2642 43.7157 97.2642 43.7158 97.2642C43.7158 97.2642 43.7158 97.2642 43.7158 97.2642C43.7158 97.2642 43.7158 97.2642 43.7158 97.2642C43.7158 97.2642 43.7158 97.2642 43.7158 97.2642C43.7158 97.2642 43.7158 97.2642 43.7158 97.2642C43.7158 97.2642 43.7158 97.2642 43.7158 97.2642C43.7158 97.2642 43.7158 97.2642 43.7158 97.2642C43.7158 97.2642 43.7159 97.2642 43.7159 97.2642C43.7159 97.2642 43.7159 97.2642 43.7159 97.2642C43.7159 97.2642 43.7159 97.2642 43.7159 97.2642C43.7159 97.2642 43.7159 97.2642 43.7159 97.2642C43.7159 97.2642 43.7159 97.2642 43.7159 97.2642C43.7159 97.2642 43.7159 97.2642 43.7159 97.2642C43.7159 97.2642 43.7159 97.2642 43.7159 97.2642C43.716 97.2642 43.716 97.2642 43.716 97.2642C43.716 97.2642 43.716 97.2642 43.716 97.2642C43.716 97.2642 43.716 97.2642 43.716 97.2642C43.716 97.2642 43.716 97.2642 43.716 97.2642C43.716 97.2642 43.716 97.2642 43.716 97.2642C43.716 97.2642 43.716 97.2642 43.716 97.2642C43.716 97.2642 43.716 97.2642 43.7161 97.2642C43.7161 97.2642 43.7161 97.2642 43.7161 97.2642C43.7161 97.2642 43.7161 97.2642 43.7161 97.2642C43.7161 97.2642 43.7161 97.2642 43.7161 97.2642C43.7161 97.2642 43.7161 97.2642 43.7161 97.2642C43.7161 97.2642 43.7161 97.2642 43.7161 97.2642C43.7161 97.2642 43.7161 97.2642 43.7161 97.2642C43.7161 97.2642 43.7162 97.2642 43.7162 97.2642C43.7162 97.2642 43.7162 97.2642 43.7162 97.2642C43.7162 97.2642 43.7162 97.2642 43.7162 97.2642C43.7162 97.2642 43.7162 97.2642 43.7162 97.2642C43.7162 97.2642 43.7162 97.2642 43.7162 97.2642C43.7162 97.2642 43.7162 97.2642 43.7162 97.2642C43.7162 97.2642 43.7162 97.2642 43.7162 97.2642C43.7163 97.2642 43.7163 97.2642 43.7163 97.2642C43.7163 97.2642 43.7163 97.2642 43.7163 97.2642C43.7163 97.2642 43.7163 97.2642 43.7163 97.2642C43.7163 97.2642 43.7163 97.2642 43.7163 97.2642C43.7163 97.2642 43.7163 97.2642 43.7163 97.2642C43.7163 97.2642 43.7163 97.2642 43.7163 97.2642C43.7163 97.2642 43.7163 97.2642 43.7164 97.2642C43.7164 97.2642 43.7164 97.2642 43.7164 97.2642C43.7164 97.2642 43.7164 97.2642 43.7164 97.2642C43.7164 97.2642 43.7164 97.2642 43.7164 97.2642C43.7164 97.2642 43.7164 97.2642 43.7164 97.2642C43.7164 97.2642 43.7164 97.2642 43.7164 97.2642C43.7164 97.2642 43.7164 97.2642 43.7164 97.2642C43.7164 97.2642 43.7165 97.2642 43.7165 97.2642C43.7165 97.2642 43.7165 97.2642 43.7165 97.2642C43.7165 97.2642 43.7165 97.2642 43.7165 97.2642C43.7165 97.2642 43.7165 97.2642 43.7165 97.2642C43.7165 97.2642 43.7165 97.2642 43.7165 97.2642C43.7165 97.2642 43.7165 97.2642 43.7165 97.2642C43.7165 97.2642 43.7165 97.2642 43.7165 97.2642C43.7166 97.2642 43.7166 97.2642 43.7166 97.2642C43.7166 97.2642 43.7166 97.2642 43.7166 97.2642C43.7166 97.2642 43.7166 97.2642 43.7166 97.2642C43.7166 97.2642 43.7166 97.2642 43.7166 97.2642C43.7166 97.2642 43.7166 97.2642 43.7166 97.2642C43.7166 97.2642 43.7166 97.2642 43.7166 97.2642C43.7166 97.2642 43.7166 97.2642 43.7167 97.2642C43.7167 97.2642 43.7167 97.2642 43.7167 97.2642C43.7167 97.2642 43.7167 97.2642 43.7167 97.2642C43.7167 97.2642 43.7167 97.2642 43.7167 97.2642C43.7167 97.2642 43.7167 97.2642 43.7167 97.2642C43.7167 97.2642 43.7167 97.2642 43.7167 97.2642C43.7167 97.2642 43.7167 97.2642 43.7167 97.2642C43.7167 97.2642 43.7168 97.2642 43.7168 97.2642C43.7168 97.2642 43.7168 97.2642 43.7168 97.2642C43.7168 97.2642 43.7168 97.2642 43.7168 97.2642C43.7168 97.2642 43.7168 97.2642 43.7168 97.2642C43.7168 97.2642 43.7168 97.2642 43.7168 97.2642C43.7168 97.2642 43.7168 97.2642 43.7168 97.2642C43.7168 97.2642 43.7168 97.2642 43.7168 97.2642C43.7169 97.2642 43.7169 97.2642 43.7169 97.2642C43.7169 97.2642 43.7169 97.2642 43.7169 97.2642C43.7169 97.2642 43.7169 97.2642 43.7169 97.2642C43.7169 97.2642 43.7169 97.2642 43.7169 97.2642C43.7169 97.2642 43.7169 97.2642 43.7169 97.2642C43.7169 97.2642 43.7169 97.2642 43.7169 97.2642C43.7169 97.2642 43.7169 97.2642 43.717 97.2642C43.717 97.2642 43.717 97.2642 43.717 97.2642C43.717 97.2642 43.717 97.2642 43.717 97.2642C43.717 97.2642 43.717 97.2642 43.717 97.2642C43.717 97.2642 43.717 97.2642 43.717 97.2642C43.717 97.2642 43.717 97.2642 43.717 97.2642C43.717 97.2642 43.717 97.2642 43.717 97.2642C43.7171 97.2642 43.7171 97.2642 43.7171 97.2642C43.7171 97.2642 43.7171 97.2642 43.7171 97.2642C43.7171 97.2642 43.7171 97.2642 43.7171 97.2642C43.7171 97.2642 43.7171 97.2642 43.7171 97.2642C43.7171 97.2642 43.7171 97.2642 43.7171 97.2642C43.7171 97.2642 43.7171 97.2642 43.7171 97.2642C43.7171 97.2642 43.7171 97.2642 43.7172 97.2642C43.7172 97.2642 43.7172 97.2642 43.7172 97.2642C43.7172 97.2642 43.7172 97.2642 43.7172 97.2642C43.7172 97.2642 43.7172 97.2642 43.7172 97.2642C43.7172 97.2642 43.7172 97.2642 43.7172 97.2642C43.7172 97.2642 43.7172 97.2642 43.7172 97.2642C43.7172 97.2642 43.7172 97.2642 43.7172 97.2642C43.7172 97.2642 43.7173 97.2642 43.7173 97.2642C43.7173 97.2642 43.7173 97.2642 43.7173 97.2642C43.7173 97.2642 43.7173 97.2642 43.7173 97.2642C43.7173 97.2642 43.7173 97.2642 43.7173 97.2642C43.7173 97.2642 43.7173 97.2642 43.7173 97.2642C43.7173 97.2642 43.7173 97.2642 43.7173 97.2642C43.7173 97.2642 43.7173 97.2642 43.7173 97.2642C43.7174 97.2642 43.7174 97.2642 43.7174 97.2642C43.7174 97.2642 43.7174 97.2642 43.7174 97.2642C43.7174 97.2642 43.7174 97.2642 43.7174 97.2642C43.7174 97.2642 43.7174 97.2642 43.7174 97.2642C43.7174 97.2642 43.7174 97.2642 43.7174 97.2642C43.7174 97.2642 43.7174 97.2642 43.7174 97.2642C43.7174 97.2642 43.7174 97.2642 43.7175 97.2642C43.7175 97.2642 43.7175 97.2642 43.7175 97.2642C43.7175 97.2642 43.7175 97.2642 43.7175 97.2642C43.7175 97.2642 43.7175 97.2642 43.7175 97.2642C43.7175 97.2642 43.7175 97.2642 43.7175 97.2642C43.7175 97.2642 43.7175 97.2642 43.7175 97.2642C43.7175 97.2642 43.7175 97.2642 43.7175 97.2642C43.7175 97.2642 43.7176 97.2642 43.7176 97.2642C43.7176 97.2642 43.7176 97.2642 43.7176 97.2642C43.7176 97.2642 43.7176 97.2642 43.7176 97.2642C43.7176 97.2642 43.7176 97.2642 43.7176 97.2642C43.7176 97.2642 43.7176 97.2642 43.7176 97.2642C43.7176 97.2642 43.7176 97.2642 43.7176 97.2642C43.7176 97.2642 43.7176 97.2642 43.7176 97.2642C43.7177 97.2642 43.7177 97.2642 43.7177 97.2642C43.7177 97.2642 43.7177 97.2642 43.7177 97.2642C43.7177 97.2642 43.7177 97.2642 43.7177 97.2642C43.7177 97.2642 43.7177 97.2642 43.7177 97.2642C43.7177 97.2642 43.7177 97.2642 43.7177 97.2642C43.7177 97.2642 43.7177 97.2642 43.7177 97.2642C43.7177 97.2642 43.7177 97.2642 43.7178 97.2642C43.7178 97.2642 43.7178 97.2642 43.7178 97.2642C43.7178 97.2642 43.7178 97.2642 43.7178 97.2642C43.7178 97.2642 43.7178 97.2642 43.7178 97.2642C43.7178 97.2642 43.7178 97.2642 43.7178 97.2642C43.7178 97.2642 43.7178 97.2642 43.7178 97.2642C43.7178 97.2642 43.7178 97.2642 43.7178 97.2642C43.7178 97.2642 43.7179 97.2642 43.7179 97.2642C43.7179 97.2642 43.7179 97.2642 43.7179 97.2642C43.7179 97.2642 43.7179 97.2642 43.7179 97.2642C43.7179 97.2642 43.7179 97.2642 43.7179 97.2642C43.7179 97.2642 43.7179 97.2642 43.7179 97.2642C43.7179 97.2642 43.7179 97.2642 43.7179 97.2642C43.7179 97.2642 43.7179 97.2642 43.7179 97.2642C43.718 97.2642 43.718 97.2642 43.718 97.2642C43.718 97.2642 43.718 97.2642 43.718 97.2642C43.718 97.2642 43.718 97.2642 43.718 97.2642C43.718 97.2642 43.718 97.2642 43.718 97.2642C43.718 97.2642 43.718 97.2642 43.718 97.2642C43.718 97.2642 43.718 97.2642 43.718 97.2642C43.718 97.2642 43.718 97.2642 43.7181 97.2642C43.7181 97.2642 43.7181 97.2642 43.7181 97.2642C43.7181 97.2642 43.7181 97.2642 43.7181 97.2642C43.7181 97.2642 43.7181 97.2642 43.7181 97.2642C43.7181 97.2642 43.7181 97.2642 43.7181 97.2642C43.7181 97.2642 43.7181 97.2642 43.7181 97.2642C43.7181 97.2642 43.7181 97.2642 43.7181 97.2642C43.7181 97.2642 43.7182 97.2642 43.7182 97.2642C43.7182 97.2642 43.7182 97.2642 43.7182 97.2642C43.7182 97.2642 43.7182 97.2642 43.7182 97.2642C43.7182 97.2642 43.7182 97.2642 43.7182 97.2642C43.7182 97.2642 43.7182 97.2642 43.7182 97.2642C43.7182 97.2642 43.7182 97.2642 43.7182 97.2642C43.7182 97.2642 43.7182 97.2642 43.7182 97.2642C43.7183 97.2642 43.7183 97.2642 43.7183 97.2642C43.7183 97.2642 43.7183 97.2642 43.7183 97.2642C43.7183 97.2642 43.7183 97.2642 43.7183 97.2642C43.7183 97.2642 43.7183 97.2642 43.7183 97.2642C43.7183 97.2642 43.7183 97.2642 43.7183 97.2642C43.7183 97.2642 43.7183 97.2642 43.7183 97.2642C43.7183 97.2642 43.7183 97.2642 43.7184 97.2642C43.7184 97.2642 43.7184 97.2642 43.7184 97.2642C43.7184 97.2642 43.7184 97.2642 43.7184 97.2642C43.7184 97.2642 43.7184 97.2642 43.7184 97.2642C43.7184 97.2642 43.7184 97.2642 43.7184 97.2642C43.7184 97.2642 43.7184 97.2642 43.7184 97.2642C43.7184 97.2642 43.7184 97.2642 43.7184 97.2642C43.7184 97.2642 43.7185 97.2642 43.7185 97.2642C43.7185 97.2642 43.7185 97.2642 43.7185 97.2642C43.7185 97.2642 43.7185 97.2642 43.7185 97.2642C43.7185 97.2642 43.7185 97.2642 43.7185 97.2642C43.7185 97.2642 43.7185 97.2642 43.7185 97.2642C43.7185 97.2642 43.7185 97.2642 43.7185 97.2642C43.7185 97.2642 43.7185 97.2642 43.7185 97.2642C43.7186 97.2642 43.7186 97.2642 43.7186 97.2642C43.7186 97.2642 43.7186 97.2642 43.7186 97.2642C43.7186 97.2642 43.7186 97.2642 43.7186 97.2642C43.7186 97.2642 43.7186 97.2642 43.7186 97.2642C43.7186 97.2642 43.7186 97.2642 43.7186 97.2642C43.7186 97.2642 43.7186 97.2642 43.7186 97.2642C43.7186 97.2642 43.7186 97.2642 43.7187 97.2642C43.7187 97.2642 43.7187 97.2642 43.7187 97.2642C43.7187 97.2642 43.7187 97.2642 43.7187 97.2642C43.7187 97.2642 43.7187 97.2642 43.7187 97.2642C43.7187 97.2642 43.7187 97.2642 43.7187 97.2642C43.7187 97.2642 43.7187 97.2642 43.7187 97.2642C43.7187 97.2642 43.7187 97.2642 43.7187 97.2642C43.7187 97.2642 43.7188 97.2642 43.7188 97.2642C43.7188 97.2642 43.7188 97.2642 43.7188 97.2642C43.7188 97.2642 43.7188 97.2642 43.7188 97.2642C43.7188 97.2642 43.7188 97.2642 43.7188 97.2642C43.7188 97.2642 43.7188 97.2642 43.7188 97.2642C43.7188 97.2642 43.7188 97.2642 43.7188 97.2642C43.7188 97.2642 43.7188 97.2642 43.7188 97.2642C43.7189 97.2642 43.7189 97.2642 43.7189 97.2642C43.7189 97.2642 43.7189 97.2642 43.7189 97.2642C43.7189 97.2642 43.7189 97.2642 43.7189 97.2642C43.7189 97.2642 43.7189 97.2642 43.7189 97.2642C43.7189 97.2642 43.7189 97.2642 43.7189 97.2642C43.7189 97.2642 43.7189 97.2642 43.7189 97.2642C43.7189 97.2642 43.7189 97.2642 43.719 97.2642C43.719 97.2642 43.719 97.2642 43.719 97.2642C43.719 97.2642 43.719 97.2642 43.719 97.2642C43.719 97.2642 43.719 97.2642 43.719 97.2642C43.719 97.2642 43.719 97.2642 43.719 97.2642C43.719 97.2642 43.719 97.2642 43.719 97.2642C43.719 97.2642 43.719 97.2642 43.719 97.2642C43.719 97.2642 43.7191 97.2642 43.7191 97.2642C43.7191 97.2642 43.7191 97.2642 43.7191 97.2642C43.7191 97.2642 43.7191 97.2642 43.7191 97.2642C43.7191 97.2642 43.7191 97.2642 43.7191 97.2642C43.7191 97.2642 43.7191 97.2642 43.7191 97.2642C43.7191 97.2642 43.7191 97.2642 43.7191 97.2642C43.7191 97.2642 43.7191 97.2642 43.7191 97.2642C43.7192 97.2642 43.7192 97.2642 43.7192 97.2642C43.7192 97.2642 43.7192 97.2642 43.7192 97.2642C43.7192 97.2642 43.7192 97.2642 43.7192 97.2642C43.7192 97.2642 43.7192 97.2642 43.7192 97.2642C43.7192 97.2642 43.7192 97.2642 43.7192 97.2642C43.7192 97.2642 43.7192 97.2642 43.7192 97.2642C43.7192 97.2642 43.7192 97.2642 43.7193 97.2642C43.7193 97.2642 43.7193 97.2642 43.7193 97.2642C43.7193 97.2642 43.7193 97.2642 43.7193 97.2642C43.7193 97.2642 43.7193 97.2642 43.7193 97.2642C43.7193 97.2642 43.7193 97.2642 43.7193 97.2642C43.7193 97.2642 43.7193 97.2642 43.7193 97.2642C43.7193 97.2642 43.7193 97.2642 43.7193 97.2642C43.7193 97.2642 43.7194 97.2642 43.7194 97.2642C43.7194 97.2642 43.7194 97.2642 43.7194 97.2642C43.7194 97.2642 43.7194 97.2642 43.7194 97.2642C43.7194 97.2642 43.7194 97.2642 43.7194 97.2642C43.7194 97.2642 43.7194 97.2642 43.7194 97.2642C43.7194 97.2642 43.7194 97.2642 43.7194 97.2642C43.7194 97.2642 43.7194 97.2642 43.7194 97.2642C43.7195 97.2642 43.7195 97.2642 43.7195 97.2642C43.7195 97.2642 43.7195 97.2642 43.7195 97.2642C43.7195 97.2642 43.7195 97.2642 43.7195 97.2642C43.7195 97.2642 43.7195 97.2642 43.7195 97.2642C43.7195 97.2642 43.7195 97.2642 43.7195 97.2642C43.7195 97.2642 43.7195 97.2642 43.7195 97.2642C43.7195 97.2642 43.7195 97.2642 43.7196 97.2642C43.7196 97.2642 43.7196 97.2642 43.7196 97.2642C43.7196 97.2642 43.7196 97.2642 43.7196 97.2642C43.7196 97.2642 43.7196 97.2642 43.7196 97.2642C43.7196 97.2642 43.7196 97.2642 43.7196 97.2642C43.7196 97.2642 43.7196 97.2642 43.7196 97.2642C43.7196 97.2642 43.7196 97.2642 43.7196 97.2642C43.7197 97.2642 43.7197 97.2642 43.7197 97.2642C43.7197 97.2642 43.7197 97.2642 43.7197 97.2642C43.7197 97.2642 43.7197 97.2642 43.7197 97.2642C43.7197 97.2642 43.7197 97.2642 43.7197 97.2642C43.7197 97.2642 43.7197 97.2642 43.7197 97.2642C43.7197 97.2642 43.7197 97.2642 43.7197 97.2642C43.7197 97.2642 43.7197 97.2642 43.7198 97.2642C43.7198 97.2642 43.7198 97.2642 43.7198 97.2642C43.7198 97.2642 43.7198 97.2642 43.7198 97.2642C43.7198 97.2642 43.7198 97.2642 43.7198 97.2642C43.7198 97.2642 43.7198 97.2642 43.7198 97.2642C43.7198 97.2642 43.7198 97.2642 43.7198 97.2642C43.7198 97.2642 43.7198 97.2642 43.7198 97.2642C43.7198 97.2642 43.7199 97.2642 43.7199 97.2642C43.7199 97.2642 43.7199 97.2642 43.7199 97.2642C43.7199 97.2642 43.7199 97.2642 43.7199 97.2642C43.7199 97.2642 43.7199 97.2642 43.7199 97.2642C43.7199 97.2642 43.7199 97.2642 43.7199 97.2642C43.7199 97.2642 43.7199 97.2642 43.7199 97.2642C43.7199 97.2642 43.7199 97.2642 43.7199 97.2642C43.72 97.2642 43.72 97.2642 43.72 97.2642C43.72 97.2642 43.72 97.2642 43.72 97.2642C43.72 97.2642 43.72 97.2642 43.72 97.2642C43.72 97.2642 43.72 97.2642 43.72 97.2642C43.72 97.2642 43.72 97.2642 43.72 97.2642C43.72 97.2642 43.72 97.2642 43.72 97.2642C43.72 97.2642 43.72 97.2642 43.7201 97.2642C43.7201 97.2642 43.7201 97.2642 43.7201 97.2642C43.7201 97.2642 43.7201 97.2642 43.7201 97.2642C43.7201 97.2642 43.7201 97.2642 43.7201 97.2642C43.7201 97.2642 43.7201 97.2642 43.7201 97.2642C43.7201 97.2642 43.7201 97.2642 43.7201 97.2642C43.7201 97.2642 43.7201 97.2642 43.7201 97.2642C43.7201 97.2642 43.7202 97.2642 43.7202 97.2642C43.7202 97.2642 43.7202 97.2642 43.7202 97.2642C43.7202 97.2642 43.7202 97.2642 43.7202 97.2642C43.7202 97.2642 43.7202 97.2642 43.7202 97.2642C43.7202 97.2642 43.7202 97.2642 43.7202 97.2642C43.7202 97.2642 43.7202 97.2642 43.7202 97.2642C43.7202 97.2642 43.7202 97.2642 43.7202 97.2642C43.7203 97.2642 43.7203 97.2642 43.7203 97.2642C43.7203 97.2642 43.7203 97.2642 43.7203 97.2642C43.7203 97.2642 43.7203 97.2642 43.7203 97.2642C43.7203 97.2642 43.7203 97.2642 43.7203 97.2642C43.7203 97.2642 43.7203 97.2642 43.7203 97.2642C43.7203 97.2642 43.7203 97.2642 43.7203 97.2642C43.7203 97.2642 43.7203 97.2642 43.7204 97.2642C43.7204 97.2642 43.7204 97.2642 43.7204 97.2642C43.7204 97.2642 43.7204 97.2642 43.7204 97.2642C43.7204 97.2642 43.7204 97.2642 43.7204 97.2642C43.7204 97.2642 43.7204 97.2642 43.7204 97.2642C43.7204 97.2642 43.7204 97.2642 43.7204 97.2642C43.7204 97.2642 43.7204 97.2642 43.7204 97.2642C43.7204 97.2642 43.7205 97.2642 43.7205 97.2642C43.7205 97.2642 43.7205 97.2642 43.7205 97.2642C43.7205 97.2642 43.7205 97.2642 43.7205 97.2642C43.7205 97.2642 43.7205 97.2642 43.7205 97.2642C43.7205 97.2642 43.7205 97.2642 43.7205 97.2642C43.7205 97.2642 43.7205 97.2642 43.7205 97.2642C43.7205 97.2642 43.7205 97.2642 43.7205 97.2642C43.7206 97.2642 43.7206 97.2642 43.7206 97.2642C43.7206 97.2642 43.7206 97.2642 43.7206 97.2642C43.7206 97.2642 43.7206 97.2642 43.7206 97.2642C43.7206 97.2642 43.7206 97.2642 43.7206 97.2642C43.7206 97.2642 43.7206 97.2642 43.7206 97.2642C43.7206 97.2642 43.7206 97.2642 43.7206 97.2642C43.7206 97.2642 43.7206 97.2642 43.7207 97.2642C43.7207 97.2642 43.7207 97.2642 43.7207 97.2642C43.7207 97.2642 43.7207 97.2642 43.7207 97.2642C43.7207 97.2642 43.7207 97.2642 43.7207 97.2642C43.7207 97.2642 43.7207 97.2642 43.7207 97.2642C43.7207 97.2642 43.7207 97.2642 43.7207 97.2642C43.7207 97.2642 43.7207 97.2642 43.7207 97.2642C43.7207 97.2642 43.7208 97.2642 43.7208 97.2642C43.7208 97.2642 43.7208 97.2642 43.7208 97.2642C43.7208 97.2642 43.7208 97.2642 43.7208 97.2642C43.7208 97.2642 43.7208 97.2642 43.7208 97.2642C43.7208 97.2642 43.7208 97.2642 43.7208 97.2642C43.7208 97.2642 43.7208 97.2642 43.7208 97.2642C43.7208 97.2642 43.7208 97.2642 43.7208 97.2642C43.7209 97.2642 43.7209 97.2642 43.7209 97.2642C43.7209 97.2642 43.7209 97.2642 43.7209 97.2642C43.7209 97.2642 43.7209 97.2642 43.7209 97.2642C43.7209 97.2642 43.7209 97.2642 43.7209 97.2642C43.7209 97.2642 43.7209 97.2642 43.7209 97.2642C43.7209 97.2642 43.7209 97.2642 43.7209 97.2642C43.7209 97.2642 43.7209 97.2642 43.721 97.2642C43.721 97.2642 43.721 97.2642 43.721 97.2642C43.721 97.2642 43.721 97.2642 43.721 97.2642C43.721 97.2642 43.721 97.2642 43.721 97.2642C43.721 97.2642 43.721 97.2642 43.721 97.2642C43.721 97.2642 43.721 97.2642 43.721 97.2642C43.721 97.2642 43.721 97.2642 43.721 97.2642C43.721 97.2642 43.7211 97.2642 43.7211 97.2642C43.7211 97.2642 43.7211 97.2642 43.7211 97.2642C43.7211 97.2642 43.7211 97.2642 43.7211 97.2642C43.7211 97.2642 43.7211 97.2642 43.7211 97.2642C43.7211 97.2642 43.7211 97.2642 43.7211 97.2642C43.7211 97.2642 43.7211 97.2642 43.7211 97.2642C43.7211 97.2642 43.7211 97.2642 43.7211 97.2642C43.7212 97.2642 43.7212 97.2642 43.7212 97.2642C43.7212 97.2642 43.7212 97.2642 43.7212 97.2642C43.7212 97.2642 43.7212 97.2642 43.7212 97.2642C43.7212 97.2642 43.7212 97.2642 43.7212 97.2642C43.7212 97.2642 43.7212 97.2642 43.7212 97.2642C43.7212 97.2642 43.7212 97.2642 43.7212 97.2642C43.7212 97.2642 43.7212 97.2642 43.7213 97.2642C43.7213 97.2642 43.7213 97.2642 43.7213 97.2642C43.7213 97.2642 43.7213 97.2642 43.7213 97.2642C43.7213 97.2642 43.7213 97.2642 43.7213 97.2642C43.7213 97.2642 43.7213 97.2642 43.7213 97.2642C43.7213 97.2642 43.7213 97.2642 43.7213 97.2642C43.7213 97.2642 43.7213 97.2642 43.7213 97.2642C43.7213 97.2642 43.7214 97.2642 43.7214 97.2642C43.7214 97.2642 43.7214 97.2642 43.7214 97.2642C43.7214 97.2642 43.7214 97.2642 43.7214 97.2642C43.7214 97.2642 43.7214 97.2642 43.7214 97.2642C43.7214 97.2642 43.7214 97.2642 43.7214 97.2642C43.7214 97.2642 43.7214 97.2642 43.7214 97.2642C43.7214 97.2642 43.7214 97.2642 43.7214 97.2642C43.7215 97.2642 43.7215 97.2642 43.7215 97.2642C43.7215 97.2642 43.7215 97.2642 43.7215 97.2642C43.7215 97.2642 43.7215 97.2642 43.7215 97.2642C43.7215 97.2642 43.7215 97.2642 43.7215 97.2642C43.7215 97.2642 43.7215 97.2642 43.7215 97.2642C43.7215 97.2642 43.7215 97.2642 43.7215 97.2642C43.7215 97.2642 43.7215 97.2642 43.7216 97.2642C43.7216 97.2642 43.7216 97.2642 43.7216 97.2642C43.7216 97.2642 43.7216 97.2642 43.7216 97.2642C43.7216 97.2642 43.7216 97.2642 43.7216 97.2642C43.7216 97.2642 43.7216 97.2642 43.7216 97.2642C43.7216 97.2642 43.7216 97.2642 43.7216 97.2642C43.7216 97.2642 43.7216 97.2642 43.7216 97.2642C43.7216 97.2642 43.7217 97.2642 43.7217 97.2642C43.7217 97.2642 43.7217 97.2642 43.7217 97.2642C43.7217 97.2642 43.7217 97.2642 43.7217 97.2642C43.7217 97.2642 43.7217 97.2642 43.7217 97.2642C43.7217 97.2642 43.7217 97.2642 43.7217 97.2642C43.7217 97.2642 43.7217 97.2642 43.7217 97.2642C43.7217 97.2642 43.7217 97.2642 43.7217 97.2642C43.7218 97.2642 43.7218 97.2642 43.7218 97.2642C43.7218 97.2642 43.7218 97.2642 43.7218 97.2642C43.7218 97.2642 43.7218 97.2642 43.7218 97.2642C43.7218 97.2642 43.7218 97.2642 43.7218 97.2642C43.7218 97.2642 43.7218 97.2642 43.7218 97.2642C43.7218 97.2642 43.7218 97.2642 43.7218 97.2642C43.7218 97.2642 43.7218 97.2642 43.7219 97.2642C43.7219 97.2642 43.7219 97.2642 43.7219 97.2642C43.7219 97.2642 43.7219 97.2642 43.7219 97.2642C43.7219 97.2642 43.7219 97.2642 43.7219 97.2642C43.7219 97.2642 43.7219 97.2642 43.7219 97.2642C43.7219 97.2642 43.7219 97.2642 43.7219 97.2642C43.7219 97.2642 43.7219 97.2642 43.7219 97.2642C43.7219 97.2642 43.722 97.2642 43.722 97.2642C43.722 97.2642 43.722 97.2642 43.722 97.2642C43.722 97.2642 43.722 97.2642 43.722 97.2642C43.722 97.2642 43.722 97.2642 43.722 97.2642C43.722 97.2642 43.722 97.2642 43.722 97.2642C43.722 97.2642 43.722 97.2642 43.722 97.2642C43.722 97.2642 43.722 97.2642 43.722 97.2642C43.7221 97.2642 43.7221 97.2642 43.7221 97.2642C43.7221 97.2642 43.7221 97.2642 43.7221 97.2642C43.7221 97.2642 43.7221 97.2642 43.7221 97.2642C43.7221 97.2642 43.7221 97.2642 43.7221 97.2642C43.7221 97.2642 43.7221 97.2642 43.7221 97.2642C43.7221 97.2642 43.7221 97.2642 43.7221 97.2642C43.7221 97.2642 43.7221 97.2642 43.7222 97.2642C43.7222 97.2642 43.7222 97.2642 43.7222 97.2642C43.7222 97.2642 43.7222 97.2642 43.7222 97.2642C43.7222 97.2642 43.7222 97.2642 43.7222 97.2642C43.7222 97.2642 43.7222 97.2642 43.7222 97.2642C43.7222 97.2642 43.7222 97.2642 43.7222 97.2642C43.7222 97.2642 43.7222 97.2642 43.7222 97.2642C43.7223 97.2642 43.7223 97.2642 43.7223 97.2642C43.7223 97.2642 43.7223 97.2642 43.7223 97.2642C43.7223 97.2642 43.7223 97.2642 43.7223 97.2642C43.7223 97.2642 43.7223 97.2642 43.7223 97.2642C43.7223 97.2642 43.7223 97.2642 43.7223 97.2642C43.7223 97.2642 43.7223 97.2642 43.7223 97.2642C43.7223 97.2642 43.7223 97.2642 43.7224 97.2642C43.7224 97.2642 43.7224 97.2642 43.7224 97.2642C43.7224 97.2642 43.7224 97.2642 43.7224 97.2642C43.7224 97.2642 43.7224 97.2642 43.7224 97.2642C43.7224 97.2642 43.7224 97.2642 43.7224 97.2642C43.7224 97.2642 43.7224 97.2642 43.7224 97.2642C43.7224 97.2642 43.7224 97.2642 43.7224 97.2642C43.7224 97.2642 43.7225 97.2642 43.7225 97.2642C43.7225 97.2642 43.7225 97.2642 43.7225 97.2642C43.7225 97.2642 43.7225 97.2642 43.7225 97.2642C43.7225 97.2642 43.7225 97.2642 43.7225 97.2642C43.7225 97.2642 43.7225 97.2642 43.7225 97.2642C43.7225 97.2642 43.7225 97.2642 43.7225 97.2642C43.7225 97.2642 43.7225 97.2642 43.7225 97.2642C43.7226 97.2642 43.7226 97.2642 43.7226 97.2642C43.7226 97.2642 43.7226 97.2642 43.7226 97.2642C43.7226 97.2642 43.7226 97.2642 43.7226 97.2642C43.7226 97.2642 43.7226 97.2642 43.7226 97.2642C43.7226 97.2642 43.7226 97.2642 43.7226 97.2642C43.7226 97.2642 43.7226 97.2642 43.7226 97.2642C43.7226 97.2642 43.7226 97.2642 43.7227 97.2642C43.7227 97.2642 43.7227 97.2642 43.7227 97.2642C43.7227 97.2642 43.7227 97.2642 43.7227 97.2642C43.7227 97.2642 43.7227 97.2642 43.7227 97.2642C43.7227 97.2642 43.7227 97.2642 43.7227 97.2642C43.7227 97.2642 43.7227 97.2642 43.7227 97.2642C43.7227 97.2642 43.7227 97.2642 43.7227 97.2642C43.7227 97.2642 43.7228 97.2642 43.7228 97.2642C43.7228 97.2642 43.7228 97.2642 43.7228 97.2642C43.7228 97.2642 43.7228 97.2642 43.7228 97.2642C43.7228 97.2642 43.7228 97.2642 43.7228 97.2642C43.7228 97.2642 43.7228 97.2642 43.7228 97.2642C43.7228 97.2642 43.7228 97.2642 43.7228 97.2642C43.7228 97.2642 43.7228 97.2642 43.7228 97.2642C43.7229 97.2642 43.7229 97.2642 43.7229 97.2642C43.7229 97.2642 43.7229 97.2642 43.7229 97.2642C43.7229 97.2642 43.7229 97.2642 43.7229 97.2642C43.7229 97.2642 43.7229 97.2642 43.7229 97.2642C43.7229 97.2642 43.7229 97.2642 43.7229 97.2642C43.7229 97.2642 43.7229 97.2642 43.7229 97.2642C43.7229 97.2642 43.7229 97.2642 43.723 97.2642C43.723 97.2642 43.723 97.2642 43.723 97.2642C43.723 97.2642 43.723 97.2642 43.723 97.2642C43.723 97.2642 43.723 97.2642 43.723 97.2642C43.723 97.2642 43.723 97.2642 43.723 97.2642C43.723 97.2642 43.723 97.2642 43.723 97.2642C43.723 97.2642 43.723 97.2642 43.723 97.2642C43.723 97.2642 43.7231 97.2642 43.7231 97.2642C43.7231 97.2642 43.7231 97.2642 43.7231 97.2642C43.7231 97.2642 43.7231 97.2642 43.7231 97.2642C43.7231 97.2642 43.7231 97.2642 43.7231 97.2642C43.7231 97.2642 43.7231 97.2642 43.7231 97.2642C43.7231 97.2642 43.7231 97.2642 43.7231 97.2642C43.7231 97.2642 43.7231 97.2642 43.7231 97.2642C43.7232 97.2642 43.7232 97.2642 43.7232 97.2642C43.7232 97.2642 43.7232 97.2642 43.7232 97.2642C43.7232 97.2642 43.7232 97.2642 43.7232 97.2642C43.7232 97.2642 43.7232 97.2642 43.7232 97.2642C43.7232 97.2642 43.7232 97.2642 43.7232 97.2642C43.7232 97.2642 43.7232 97.2642 43.7232 97.2642C43.7232 97.2642 43.7232 97.2642 43.7233 97.2642C43.7233 97.2642 43.7233 97.2642 43.7233 97.2642C43.7233 97.2642 43.7233 97.2642 43.7233 97.2642C43.7233 97.2642 43.7233 97.2642 43.7233 97.2642C43.7233 97.2642 43.7233 97.2642 43.7233 97.2642C43.7233 97.2642 43.7233 97.2642 43.7233 97.2642V95.2642C43.7233 95.2642 43.7233 95.2642 43.7233 95.2642C43.7233 95.2642 43.7233 95.2642 43.7233 95.2642C43.7233 95.2642 43.7233 95.2642 43.7233 95.2642C43.7233 95.2642 43.7233 95.2642 43.7233 95.2642C43.7233 95.2642 43.7233 95.2642 43.7233 95.2642C43.7232 95.2642 43.7232 95.2642 43.7232 95.2642C43.7232 95.2642 43.7232 95.2642 43.7232 95.2642C43.7232 95.2642 43.7232 95.2642 43.7232 95.2642C43.7232 95.2642 43.7232 95.2642 43.7232 95.2642C43.7232 95.2642 43.7232 95.2642 43.7232 95.2642C43.7232 95.2642 43.7232 95.2642 43.7232 95.2642C43.7232 95.2642 43.7232 95.2642 43.7231 95.2642C43.7231 95.2642 43.7231 95.2642 43.7231 95.2642C43.7231 95.2642 43.7231 95.2642 43.7231 95.2642C43.7231 95.2642 43.7231 95.2642 43.7231 95.2642C43.7231 95.2642 43.7231 95.2642 43.7231 95.2642C43.7231 95.2642 43.7231 95.2642 43.7231 95.2642C43.7231 95.2642 43.7231 95.2642 43.7231 95.2642C43.7231 95.2642 43.723 95.2642 43.723 95.2642C43.723 95.2642 43.723 95.2642 43.723 95.2642C43.723 95.2642 43.723 95.2642 43.723 95.2642C43.723 95.2642 43.723 95.2642 43.723 95.2642C43.723 95.2642 43.723 95.2642 43.723 95.2642C43.723 95.2642 43.723 95.2642 43.723 95.2642C43.723 95.2642 43.723 95.2642 43.723 95.2642C43.7229 95.2642 43.7229 95.2642 43.7229 95.2642C43.7229 95.2642 43.7229 95.2642 43.7229 95.2642C43.7229 95.2642 43.7229 95.2642 43.7229 95.2642C43.7229 95.2642 43.7229 95.2642 43.7229 95.2642C43.7229 95.2642 43.7229 95.2642 43.7229 95.2642C43.7229 95.2642 43.7229 95.2642 43.7229 95.2642C43.7229 95.2642 43.7229 95.2642 43.7228 95.2642C43.7228 95.2642 43.7228 95.2642 43.7228 95.2642C43.7228 95.2642 43.7228 95.2642 43.7228 95.2642C43.7228 95.2642 43.7228 95.2642 43.7228 95.2642C43.7228 95.2642 43.7228 95.2642 43.7228 95.2642C43.7228 95.2642 43.7228 95.2642 43.7228 95.2642C43.7228 95.2642 43.7228 95.2642 43.7228 95.2642C43.7228 95.2642 43.7227 95.2642 43.7227 95.2642C43.7227 95.2642 43.7227 95.2642 43.7227 95.2642C43.7227 95.2642 43.7227 95.2642 43.7227 95.2642C43.7227 95.2642 43.7227 95.2642 43.7227 95.2642C43.7227 95.2642 43.7227 95.2642 43.7227 95.2642C43.7227 95.2642 43.7227 95.2642 43.7227 95.2642C43.7227 95.2642 43.7227 95.2642 43.7227 95.2642C43.7226 95.2642 43.7226 95.2642 43.7226 95.2642C43.7226 95.2642 43.7226 95.2642 43.7226 95.2642C43.7226 95.2642 43.7226 95.2642 43.7226 95.2642C43.7226 95.2642 43.7226 95.2642 43.7226 95.2642C43.7226 95.2642 43.7226 95.2642 43.7226 95.2642C43.7226 95.2642 43.7226 95.2642 43.7226 95.2642C43.7226 95.2642 43.7226 95.2642 43.7225 95.2642C43.7225 95.2642 43.7225 95.2642 43.7225 95.2642C43.7225 95.2642 43.7225 95.2642 43.7225 95.2642C43.7225 95.2642 43.7225 95.2642 43.7225 95.2642C43.7225 95.2642 43.7225 95.2642 43.7225 95.2642C43.7225 95.2642 43.7225 95.2642 43.7225 95.2642C43.7225 95.2642 43.7225 95.2642 43.7225 95.2642C43.7225 95.2642 43.7224 95.2642 43.7224 95.2642C43.7224 95.2642 43.7224 95.2642 43.7224 95.2642C43.7224 95.2642 43.7224 95.2642 43.7224 95.2642C43.7224 95.2642 43.7224 95.2642 43.7224 95.2642C43.7224 95.2642 43.7224 95.2642 43.7224 95.2642C43.7224 95.2642 43.7224 95.2642 43.7224 95.2642C43.7224 95.2642 43.7224 95.2642 43.7224 95.2642C43.7223 95.2642 43.7223 95.2642 43.7223 95.2642C43.7223 95.2642 43.7223 95.2642 43.7223 95.2642C43.7223 95.2642 43.7223 95.2642 43.7223 95.2642C43.7223 95.2642 43.7223 95.2642 43.7223 95.2642C43.7223 95.2642 43.7223 95.2642 43.7223 95.2642C43.7223 95.2642 43.7223 95.2642 43.7223 95.2642C43.7223 95.2642 43.7223 95.2642 43.7222 95.2642C43.7222 95.2642 43.7222 95.2642 43.7222 95.2642C43.7222 95.2642 43.7222 95.2642 43.7222 95.2642C43.7222 95.2642 43.7222 95.2642 43.7222 95.2642C43.7222 95.2642 43.7222 95.2642 43.7222 95.2642C43.7222 95.2642 43.7222 95.2642 43.7222 95.2642C43.7222 95.2642 43.7222 95.2642 43.7222 95.2642C43.7221 95.2642 43.7221 95.2642 43.7221 95.2642C43.7221 95.2642 43.7221 95.2642 43.7221 95.2642C43.7221 95.2642 43.7221 95.2642 43.7221 95.2642C43.7221 95.2642 43.7221 95.2642 43.7221 95.2642C43.7221 95.2642 43.7221 95.2642 43.7221 95.2642C43.7221 95.2642 43.7221 95.2642 43.7221 95.2642C43.7221 95.2642 43.7221 95.2642 43.722 95.2642C43.722 95.2642 43.722 95.2642 43.722 95.2642C43.722 95.2642 43.722 95.2642 43.722 95.2642C43.722 95.2642 43.722 95.2642 43.722 95.2642C43.722 95.2642 43.722 95.2642 43.722 95.2642C43.722 95.2642 43.722 95.2642 43.722 95.2642C43.722 95.2642 43.722 95.2642 43.722 95.2642C43.722 95.2642 43.7219 95.2642 43.7219 95.2642C43.7219 95.2642 43.7219 95.2642 43.7219 95.2642C43.7219 95.2642 43.7219 95.2642 43.7219 95.2642C43.7219 95.2642 43.7219 95.2642 43.7219 95.2642C43.7219 95.2642 43.7219 95.2642 43.7219 95.2642C43.7219 95.2642 43.7219 95.2642 43.7219 95.2642C43.7219 95.2642 43.7219 95.2642 43.7219 95.2642C43.7218 95.2642 43.7218 95.2642 43.7218 95.2642C43.7218 95.2642 43.7218 95.2642 43.7218 95.2642C43.7218 95.2642 43.7218 95.2642 43.7218 95.2642C43.7218 95.2642 43.7218 95.2642 43.7218 95.2642C43.7218 95.2642 43.7218 95.2642 43.7218 95.2642C43.7218 95.2642 43.7218 95.2642 43.7218 95.2642C43.7218 95.2642 43.7218 95.2642 43.7217 95.2642C43.7217 95.2642 43.7217 95.2642 43.7217 95.2642C43.7217 95.2642 43.7217 95.2642 43.7217 95.2642C43.7217 95.2642 43.7217 95.2642 43.7217 95.2642C43.7217 95.2642 43.7217 95.2642 43.7217 95.2642C43.7217 95.2642 43.7217 95.2642 43.7217 95.2642C43.7217 95.2642 43.7217 95.2642 43.7217 95.2642C43.7217 95.2642 43.7216 95.2642 43.7216 95.2642C43.7216 95.2642 43.7216 95.2642 43.7216 95.2642C43.7216 95.2642 43.7216 95.2642 43.7216 95.2642C43.7216 95.2642 43.7216 95.2642 43.7216 95.2642C43.7216 95.2642 43.7216 95.2642 43.7216 95.2642C43.7216 95.2642 43.7216 95.2642 43.7216 95.2642C43.7216 95.2642 43.7216 95.2642 43.7216 95.2642C43.7215 95.2642 43.7215 95.2642 43.7215 95.2642C43.7215 95.2642 43.7215 95.2642 43.7215 95.2642C43.7215 95.2642 43.7215 95.2642 43.7215 95.2642C43.7215 95.2642 43.7215 95.2642 43.7215 95.2642C43.7215 95.2642 43.7215 95.2642 43.7215 95.2642C43.7215 95.2642 43.7215 95.2642 43.7215 95.2642C43.7215 95.2642 43.7215 95.2642 43.7214 95.2642C43.7214 95.2642 43.7214 95.2642 43.7214 95.2642C43.7214 95.2642 43.7214 95.2642 43.7214 95.2642C43.7214 95.2642 43.7214 95.2642 43.7214 95.2642C43.7214 95.2642 43.7214 95.2642 43.7214 95.2642C43.7214 95.2642 43.7214 95.2642 43.7214 95.2642C43.7214 95.2642 43.7214 95.2642 43.7214 95.2642C43.7214 95.2642 43.7213 95.2642 43.7213 95.2642C43.7213 95.2642 43.7213 95.2642 43.7213 95.2642C43.7213 95.2642 43.7213 95.2642 43.7213 95.2642C43.7213 95.2642 43.7213 95.2642 43.7213 95.2642C43.7213 95.2642 43.7213 95.2642 43.7213 95.2642C43.7213 95.2642 43.7213 95.2642 43.7213 95.2642C43.7213 95.2642 43.7213 95.2642 43.7213 95.2642C43.7212 95.2642 43.7212 95.2642 43.7212 95.2642C43.7212 95.2642 43.7212 95.2642 43.7212 95.2642C43.7212 95.2642 43.7212 95.2642 43.7212 95.2642C43.7212 95.2642 43.7212 95.2642 43.7212 95.2642C43.7212 95.2642 43.7212 95.2642 43.7212 95.2642C43.7212 95.2642 43.7212 95.2642 43.7212 95.2642C43.7212 95.2642 43.7212 95.2642 43.7211 95.2642C43.7211 95.2642 43.7211 95.2642 43.7211 95.2642C43.7211 95.2642 43.7211 95.2642 43.7211 95.2642C43.7211 95.2642 43.7211 95.2642 43.7211 95.2642C43.7211 95.2642 43.7211 95.2642 43.7211 95.2642C43.7211 95.2642 43.7211 95.2642 43.7211 95.2642C43.7211 95.2642 43.7211 95.2642 43.7211 95.2642C43.7211 95.2642 43.721 95.2642 43.721 95.2642C43.721 95.2642 43.721 95.2642 43.721 95.2642C43.721 95.2642 43.721 95.2642 43.721 95.2642C43.721 95.2642 43.721 95.2642 43.721 95.2642C43.721 95.2642 43.721 95.2642 43.721 95.2642C43.721 95.2642 43.721 95.2642 43.721 95.2642C43.721 95.2642 43.721 95.2642 43.721 95.2642C43.7209 95.2642 43.7209 95.2642 43.7209 95.2642C43.7209 95.2642 43.7209 95.2642 43.7209 95.2642C43.7209 95.2642 43.7209 95.2642 43.7209 95.2642C43.7209 95.2642 43.7209 95.2642 43.7209 95.2642C43.7209 95.2642 43.7209 95.2642 43.7209 95.2642C43.7209 95.2642 43.7209 95.2642 43.7209 95.2642C43.7209 95.2642 43.7209 95.2642 43.7208 95.2642C43.7208 95.2642 43.7208 95.2642 43.7208 95.2642C43.7208 95.2642 43.7208 95.2642 43.7208 95.2642C43.7208 95.2642 43.7208 95.2642 43.7208 95.2642C43.7208 95.2642 43.7208 95.2642 43.7208 95.2642C43.7208 95.2642 43.7208 95.2642 43.7208 95.2642C43.7208 95.2642 43.7208 95.2642 43.7208 95.2642C43.7208 95.2642 43.7207 95.2642 43.7207 95.2642C43.7207 95.2642 43.7207 95.2642 43.7207 95.2642C43.7207 95.2642 43.7207 95.2642 43.7207 95.2642C43.7207 95.2642 43.7207 95.2642 43.7207 95.2642C43.7207 95.2642 43.7207 95.2642 43.7207 95.2642C43.7207 95.2642 43.7207 95.2642 43.7207 95.2642C43.7207 95.2642 43.7207 95.2642 43.7207 95.2642C43.7206 95.2642 43.7206 95.2642 43.7206 95.2642C43.7206 95.2642 43.7206 95.2642 43.7206 95.2642C43.7206 95.2642 43.7206 95.2642 43.7206 95.2642C43.7206 95.2642 43.7206 95.2642 43.7206 95.2642C43.7206 95.2642 43.7206 95.2642 43.7206 95.2642C43.7206 95.2642 43.7206 95.2642 43.7206 95.2642C43.7206 95.2642 43.7206 95.2642 43.7205 95.2642C43.7205 95.2642 43.7205 95.2642 43.7205 95.2642C43.7205 95.2642 43.7205 95.2642 43.7205 95.2642C43.7205 95.2642 43.7205 95.2642 43.7205 95.2642C43.7205 95.2642 43.7205 95.2642 43.7205 95.2642C43.7205 95.2642 43.7205 95.2642 43.7205 95.2642C43.7205 95.2642 43.7205 95.2642 43.7205 95.2642C43.7205 95.2642 43.7204 95.2642 43.7204 95.2642C43.7204 95.2642 43.7204 95.2642 43.7204 95.2642C43.7204 95.2642 43.7204 95.2642 43.7204 95.2642C43.7204 95.2642 43.7204 95.2642 43.7204 95.2642C43.7204 95.2642 43.7204 95.2642 43.7204 95.2642C43.7204 95.2642 43.7204 95.2642 43.7204 95.2642C43.7204 95.2642 43.7204 95.2642 43.7204 95.2642C43.7203 95.2642 43.7203 95.2642 43.7203 95.2642C43.7203 95.2642 43.7203 95.2642 43.7203 95.2642C43.7203 95.2642 43.7203 95.2642 43.7203 95.2642C43.7203 95.2642 43.7203 95.2642 43.7203 95.2642C43.7203 95.2642 43.7203 95.2642 43.7203 95.2642C43.7203 95.2642 43.7203 95.2642 43.7203 95.2642C43.7203 95.2642 43.7203 95.2642 43.7202 95.2642C43.7202 95.2642 43.7202 95.2642 43.7202 95.2642C43.7202 95.2642 43.7202 95.2642 43.7202 95.2642C43.7202 95.2642 43.7202 95.2642 43.7202 95.2642C43.7202 95.2642 43.7202 95.2642 43.7202 95.2642C43.7202 95.2642 43.7202 95.2642 43.7202 95.2642C43.7202 95.2642 43.7202 95.2642 43.7202 95.2642C43.7202 95.2642 43.7201 95.2642 43.7201 95.2642C43.7201 95.2642 43.7201 95.2642 43.7201 95.2642C43.7201 95.2642 43.7201 95.2642 43.7201 95.2642C43.7201 95.2642 43.7201 95.2642 43.7201 95.2642C43.7201 95.2642 43.7201 95.2642 43.7201 95.2642C43.7201 95.2642 43.7201 95.2642 43.7201 95.2642C43.7201 95.2642 43.7201 95.2642 43.7201 95.2642C43.72 95.2642 43.72 95.2642 43.72 95.2642C43.72 95.2642 43.72 95.2642 43.72 95.2642C43.72 95.2642 43.72 95.2642 43.72 95.2642C43.72 95.2642 43.72 95.2642 43.72 95.2642C43.72 95.2642 43.72 95.2642 43.72 95.2642C43.72 95.2642 43.72 95.2642 43.72 95.2642C43.72 95.2642 43.72 95.2642 43.7199 95.2642C43.7199 95.2642 43.7199 95.2642 43.7199 95.2642C43.7199 95.2642 43.7199 95.2642 43.7199 95.2642C43.7199 95.2642 43.7199 95.2642 43.7199 95.2642C43.7199 95.2642 43.7199 95.2642 43.7199 95.2642C43.7199 95.2642 43.7199 95.2642 43.7199 95.2642C43.7199 95.2642 43.7199 95.2642 43.7199 95.2642C43.7199 95.2642 43.7198 95.2642 43.7198 95.2642C43.7198 95.2642 43.7198 95.2642 43.7198 95.2642C43.7198 95.2642 43.7198 95.2642 43.7198 95.2642C43.7198 95.2642 43.7198 95.2642 43.7198 95.2642C43.7198 95.2642 43.7198 95.2642 43.7198 95.2642C43.7198 95.2642 43.7198 95.2642 43.7198 95.2642C43.7198 95.2642 43.7198 95.2642 43.7198 95.2642C43.7197 95.2642 43.7197 95.2642 43.7197 95.2642C43.7197 95.2642 43.7197 95.2642 43.7197 95.2642C43.7197 95.2642 43.7197 95.2642 43.7197 95.2642C43.7197 95.2642 43.7197 95.2642 43.7197 95.2642C43.7197 95.2642 43.7197 95.2642 43.7197 95.2642C43.7197 95.2642 43.7197 95.2642 43.7197 95.2642C43.7197 95.2642 43.7197 95.2642 43.7196 95.2642C43.7196 95.2642 43.7196 95.2642 43.7196 95.2642C43.7196 95.2642 43.7196 95.2642 43.7196 95.2642C43.7196 95.2642 43.7196 95.2642 43.7196 95.2642C43.7196 95.2642 43.7196 95.2642 43.7196 95.2642C43.7196 95.2642 43.7196 95.2642 43.7196 95.2642C43.7196 95.2642 43.7196 95.2642 43.7196 95.2642C43.7195 95.2642 43.7195 95.2642 43.7195 95.2642C43.7195 95.2642 43.7195 95.2642 43.7195 95.2642C43.7195 95.2642 43.7195 95.2642 43.7195 95.2642C43.7195 95.2642 43.7195 95.2642 43.7195 95.2642C43.7195 95.2642 43.7195 95.2642 43.7195 95.2642C43.7195 95.2642 43.7195 95.2642 43.7195 95.2642C43.7195 95.2642 43.7195 95.2642 43.7194 95.2642C43.7194 95.2642 43.7194 95.2642 43.7194 95.2642C43.7194 95.2642 43.7194 95.2642 43.7194 95.2642C43.7194 95.2642 43.7194 95.2642 43.7194 95.2642C43.7194 95.2642 43.7194 95.2642 43.7194 95.2642C43.7194 95.2642 43.7194 95.2642 43.7194 95.2642C43.7194 95.2642 43.7194 95.2642 43.7194 95.2642C43.7194 95.2642 43.7193 95.2642 43.7193 95.2642C43.7193 95.2642 43.7193 95.2642 43.7193 95.2642C43.7193 95.2642 43.7193 95.2642 43.7193 95.2642C43.7193 95.2642 43.7193 95.2642 43.7193 95.2642C43.7193 95.2642 43.7193 95.2642 43.7193 95.2642C43.7193 95.2642 43.7193 95.2642 43.7193 95.2642C43.7193 95.2642 43.7193 95.2642 43.7193 95.2642C43.7192 95.2642 43.7192 95.2642 43.7192 95.2642C43.7192 95.2642 43.7192 95.2642 43.7192 95.2642C43.7192 95.2642 43.7192 95.2642 43.7192 95.2642C43.7192 95.2642 43.7192 95.2642 43.7192 95.2642C43.7192 95.2642 43.7192 95.2642 43.7192 95.2642C43.7192 95.2642 43.7192 95.2642 43.7192 95.2642C43.7192 95.2642 43.7192 95.2642 43.7191 95.2642C43.7191 95.2642 43.7191 95.2642 43.7191 95.2642C43.7191 95.2642 43.7191 95.2642 43.7191 95.2642C43.7191 95.2642 43.7191 95.2642 43.7191 95.2642C43.7191 95.2642 43.7191 95.2642 43.7191 95.2642C43.7191 95.2642 43.7191 95.2642 43.7191 95.2642C43.7191 95.2642 43.7191 95.2642 43.7191 95.2642C43.7191 95.2642 43.719 95.2642 43.719 95.2642C43.719 95.2642 43.719 95.2642 43.719 95.2642C43.719 95.2642 43.719 95.2642 43.719 95.2642C43.719 95.2642 43.719 95.2642 43.719 95.2642C43.719 95.2642 43.719 95.2642 43.719 95.2642C43.719 95.2642 43.719 95.2642 43.719 95.2642C43.719 95.2642 43.719 95.2642 43.719 95.2642C43.7189 95.2642 43.7189 95.2642 43.7189 95.2642C43.7189 95.2642 43.7189 95.2642 43.7189 95.2642C43.7189 95.2642 43.7189 95.2642 43.7189 95.2642C43.7189 95.2642 43.7189 95.2642 43.7189 95.2642C43.7189 95.2642 43.7189 95.2642 43.7189 95.2642C43.7189 95.2642 43.7189 95.2642 43.7189 95.2642C43.7189 95.2642 43.7189 95.2642 43.7188 95.2642C43.7188 95.2642 43.7188 95.2642 43.7188 95.2642C43.7188 95.2642 43.7188 95.2642 43.7188 95.2642C43.7188 95.2642 43.7188 95.2642 43.7188 95.2642C43.7188 95.2642 43.7188 95.2642 43.7188 95.2642C43.7188 95.2642 43.7188 95.2642 43.7188 95.2642C43.7188 95.2642 43.7188 95.2642 43.7188 95.2642C43.7188 95.2642 43.7187 95.2642 43.7187 95.2642C43.7187 95.2642 43.7187 95.2642 43.7187 95.2642C43.7187 95.2642 43.7187 95.2642 43.7187 95.2642C43.7187 95.2642 43.7187 95.2642 43.7187 95.2642C43.7187 95.2642 43.7187 95.2642 43.7187 95.2642C43.7187 95.2642 43.7187 95.2642 43.7187 95.2642C43.7187 95.2642 43.7187 95.2642 43.7187 95.2642C43.7186 95.2642 43.7186 95.2642 43.7186 95.2642C43.7186 95.2642 43.7186 95.2642 43.7186 95.2642C43.7186 95.2642 43.7186 95.2642 43.7186 95.2642C43.7186 95.2642 43.7186 95.2642 43.7186 95.2642C43.7186 95.2642 43.7186 95.2642 43.7186 95.2642C43.7186 95.2642 43.7186 95.2642 43.7186 95.2642C43.7186 95.2642 43.7186 95.2642 43.7185 95.2642C43.7185 95.2642 43.7185 95.2642 43.7185 95.2642C43.7185 95.2642 43.7185 95.2642 43.7185 95.2642C43.7185 95.2642 43.7185 95.2642 43.7185 95.2642C43.7185 95.2642 43.7185 95.2642 43.7185 95.2642C43.7185 95.2642 43.7185 95.2642 43.7185 95.2642C43.7185 95.2642 43.7185 95.2642 43.7185 95.2642C43.7185 95.2642 43.7184 95.2642 43.7184 95.2642C43.7184 95.2642 43.7184 95.2642 43.7184 95.2642C43.7184 95.2642 43.7184 95.2642 43.7184 95.2642C43.7184 95.2642 43.7184 95.2642 43.7184 95.2642C43.7184 95.2642 43.7184 95.2642 43.7184 95.2642C43.7184 95.2642 43.7184 95.2642 43.7184 95.2642C43.7184 95.2642 43.7184 95.2642 43.7184 95.2642C43.7183 95.2642 43.7183 95.2642 43.7183 95.2642C43.7183 95.2642 43.7183 95.2642 43.7183 95.2642C43.7183 95.2642 43.7183 95.2642 43.7183 95.2642C43.7183 95.2642 43.7183 95.2642 43.7183 95.2642C43.7183 95.2642 43.7183 95.2642 43.7183 95.2642C43.7183 95.2642 43.7183 95.2642 43.7183 95.2642C43.7183 95.2642 43.7183 95.2642 43.7182 95.2642C43.7182 95.2642 43.7182 95.2642 43.7182 95.2642C43.7182 95.2642 43.7182 95.2642 43.7182 95.2642C43.7182 95.2642 43.7182 95.2642 43.7182 95.2642C43.7182 95.2642 43.7182 95.2642 43.7182 95.2642C43.7182 95.2642 43.7182 95.2642 43.7182 95.2642C43.7182 95.2642 43.7182 95.2642 43.7182 95.2642C43.7182 95.2642 43.7181 95.2642 43.7181 95.2642C43.7181 95.2642 43.7181 95.2642 43.7181 95.2642C43.7181 95.2642 43.7181 95.2642 43.7181 95.2642C43.7181 95.2642 43.7181 95.2642 43.7181 95.2642C43.7181 95.2642 43.7181 95.2642 43.7181 95.2642C43.7181 95.2642 43.7181 95.2642 43.7181 95.2642C43.7181 95.2642 43.7181 95.2642 43.7181 95.2642C43.718 95.2642 43.718 95.2642 43.718 95.2642C43.718 95.2642 43.718 95.2642 43.718 95.2642C43.718 95.2642 43.718 95.2642 43.718 95.2642C43.718 95.2642 43.718 95.2642 43.718 95.2642C43.718 95.2642 43.718 95.2642 43.718 95.2642C43.718 95.2642 43.718 95.2642 43.718 95.2642C43.718 95.2642 43.718 95.2642 43.7179 95.2642C43.7179 95.2642 43.7179 95.2642 43.7179 95.2642C43.7179 95.2642 43.7179 95.2642 43.7179 95.2642C43.7179 95.2642 43.7179 95.2642 43.7179 95.2642C43.7179 95.2642 43.7179 95.2642 43.7179 95.2642C43.7179 95.2642 43.7179 95.2642 43.7179 95.2642C43.7179 95.2642 43.7179 95.2642 43.7179 95.2642C43.7179 95.2642 43.7178 95.2642 43.7178 95.2642C43.7178 95.2642 43.7178 95.2642 43.7178 95.2642C43.7178 95.2642 43.7178 95.2642 43.7178 95.2642C43.7178 95.2642 43.7178 95.2642 43.7178 95.2642C43.7178 95.2642 43.7178 95.2642 43.7178 95.2642C43.7178 95.2642 43.7178 95.2642 43.7178 95.2642C43.7178 95.2642 43.7178 95.2642 43.7178 95.2642C43.7177 95.2642 43.7177 95.2642 43.7177 95.2642C43.7177 95.2642 43.7177 95.2642 43.7177 95.2642C43.7177 95.2642 43.7177 95.2642 43.7177 95.2642C43.7177 95.2642 43.7177 95.2642 43.7177 95.2642C43.7177 95.2642 43.7177 95.2642 43.7177 95.2642C43.7177 95.2642 43.7177 95.2642 43.7177 95.2642C43.7177 95.2642 43.7177 95.2642 43.7176 95.2642C43.7176 95.2642 43.7176 95.2642 43.7176 95.2642C43.7176 95.2642 43.7176 95.2642 43.7176 95.2642C43.7176 95.2642 43.7176 95.2642 43.7176 95.2642C43.7176 95.2642 43.7176 95.2642 43.7176 95.2642C43.7176 95.2642 43.7176 95.2642 43.7176 95.2642C43.7176 95.2642 43.7176 95.2642 43.7176 95.2642C43.7176 95.2642 43.7175 95.2642 43.7175 95.2642C43.7175 95.2642 43.7175 95.2642 43.7175 95.2642C43.7175 95.2642 43.7175 95.2642 43.7175 95.2642C43.7175 95.2642 43.7175 95.2642 43.7175 95.2642C43.7175 95.2642 43.7175 95.2642 43.7175 95.2642C43.7175 95.2642 43.7175 95.2642 43.7175 95.2642C43.7175 95.2642 43.7175 95.2642 43.7175 95.2642C43.7174 95.2642 43.7174 95.2642 43.7174 95.2642C43.7174 95.2642 43.7174 95.2642 43.7174 95.2642C43.7174 95.2642 43.7174 95.2642 43.7174 95.2642C43.7174 95.2642 43.7174 95.2642 43.7174 95.2642C43.7174 95.2642 43.7174 95.2642 43.7174 95.2642C43.7174 95.2642 43.7174 95.2642 43.7174 95.2642C43.7174 95.2642 43.7174 95.2642 43.7173 95.2642C43.7173 95.2642 43.7173 95.2642 43.7173 95.2642C43.7173 95.2642 43.7173 95.2642 43.7173 95.2642C43.7173 95.2642 43.7173 95.2642 43.7173 95.2642C43.7173 95.2642 43.7173 95.2642 43.7173 95.2642C43.7173 95.2642 43.7173 95.2642 43.7173 95.2642C43.7173 95.2642 43.7173 95.2642 43.7173 95.2642C43.7173 95.2642 43.7172 95.2642 43.7172 95.2642C43.7172 95.2642 43.7172 95.2642 43.7172 95.2642C43.7172 95.2642 43.7172 95.2642 43.7172 95.2642C43.7172 95.2642 43.7172 95.2642 43.7172 95.2642C43.7172 95.2642 43.7172 95.2642 43.7172 95.2642C43.7172 95.2642 43.7172 95.2642 43.7172 95.2642C43.7172 95.2642 43.7172 95.2642 43.7172 95.2642C43.7171 95.2642 43.7171 95.2642 43.7171 95.2642C43.7171 95.2642 43.7171 95.2642 43.7171 95.2642C43.7171 95.2642 43.7171 95.2642 43.7171 95.2642C43.7171 95.2642 43.7171 95.2642 43.7171 95.2642C43.7171 95.2642 43.7171 95.2642 43.7171 95.2642C43.7171 95.2642 43.7171 95.2642 43.7171 95.2642C43.7171 95.2642 43.7171 95.2642 43.717 95.2642C43.717 95.2642 43.717 95.2642 43.717 95.2642C43.717 95.2642 43.717 95.2642 43.717 95.2642C43.717 95.2642 43.717 95.2642 43.717 95.2642C43.717 95.2642 43.717 95.2642 43.717 95.2642C43.717 95.2642 43.717 95.2642 43.717 95.2642C43.717 95.2642 43.717 95.2642 43.717 95.2642C43.7169 95.2642 43.7169 95.2642 43.7169 95.2642C43.7169 95.2642 43.7169 95.2642 43.7169 95.2642C43.7169 95.2642 43.7169 95.2642 43.7169 95.2642C43.7169 95.2642 43.7169 95.2642 43.7169 95.2642C43.7169 95.2642 43.7169 95.2642 43.7169 95.2642C43.7169 95.2642 43.7169 95.2642 43.7169 95.2642C43.7169 95.2642 43.7169 95.2642 43.7168 95.2642C43.7168 95.2642 43.7168 95.2642 43.7168 95.2642C43.7168 95.2642 43.7168 95.2642 43.7168 95.2642C43.7168 95.2642 43.7168 95.2642 43.7168 95.2642C43.7168 95.2642 43.7168 95.2642 43.7168 95.2642C43.7168 95.2642 43.7168 95.2642 43.7168 95.2642C43.7168 95.2642 43.7168 95.2642 43.7168 95.2642C43.7168 95.2642 43.7167 95.2642 43.7167 95.2642C43.7167 95.2642 43.7167 95.2642 43.7167 95.2642C43.7167 95.2642 43.7167 95.2642 43.7167 95.2642C43.7167 95.2642 43.7167 95.2642 43.7167 95.2642C43.7167 95.2642 43.7167 95.2642 43.7167 95.2642C43.7167 95.2642 43.7167 95.2642 43.7167 95.2642C43.7167 95.2642 43.7167 95.2642 43.7167 95.2642C43.7166 95.2642 43.7166 95.2642 43.7166 95.2642C43.7166 95.2642 43.7166 95.2642 43.7166 95.2642C43.7166 95.2642 43.7166 95.2642 43.7166 95.2642C43.7166 95.2642 43.7166 95.2642 43.7166 95.2642C43.7166 95.2642 43.7166 95.2642 43.7166 95.2642C43.7166 95.2642 43.7166 95.2642 43.7166 95.2642C43.7166 95.2642 43.7166 95.2642 43.7165 95.2642C43.7165 95.2642 43.7165 95.2642 43.7165 95.2642C43.7165 95.2642 43.7165 95.2642 43.7165 95.2642C43.7165 95.2642 43.7165 95.2642 43.7165 95.2642C43.7165 95.2642 43.7165 95.2642 43.7165 95.2642C43.7165 95.2642 43.7165 95.2642 43.7165 95.2642C43.7165 95.2642 43.7165 95.2642 43.7165 95.2642C43.7165 95.2642 43.7164 95.2642 43.7164 95.2642C43.7164 95.2642 43.7164 95.2642 43.7164 95.2642C43.7164 95.2642 43.7164 95.2642 43.7164 95.2642C43.7164 95.2642 43.7164 95.2642 43.7164 95.2642C43.7164 95.2642 43.7164 95.2642 43.7164 95.2642C43.7164 95.2642 43.7164 95.2642 43.7164 95.2642C43.7164 95.2642 43.7164 95.2642 43.7164 95.2642C43.7163 95.2642 43.7163 95.2642 43.7163 95.2642C43.7163 95.2642 43.7163 95.2642 43.7163 95.2642C43.7163 95.2642 43.7163 95.2642 43.7163 95.2642C43.7163 95.2642 43.7163 95.2642 43.7163 95.2642C43.7163 95.2642 43.7163 95.2642 43.7163 95.2642C43.7163 95.2642 43.7163 95.2642 43.7163 95.2642C43.7163 95.2642 43.7163 95.2642 43.7162 95.2642C43.7162 95.2642 43.7162 95.2642 43.7162 95.2642C43.7162 95.2642 43.7162 95.2642 43.7162 95.2642C43.7162 95.2642 43.7162 95.2642 43.7162 95.2642C43.7162 95.2642 43.7162 95.2642 43.7162 95.2642C43.7162 95.2642 43.7162 95.2642 43.7162 95.2642C43.7162 95.2642 43.7162 95.2642 43.7162 95.2642C43.7162 95.2642 43.7161 95.2642 43.7161 95.2642C43.7161 95.2642 43.7161 95.2642 43.7161 95.2642C43.7161 95.2642 43.7161 95.2642 43.7161 95.2642C43.7161 95.2642 43.7161 95.2642 43.7161 95.2642C43.7161 95.2642 43.7161 95.2642 43.7161 95.2642C43.7161 95.2642 43.7161 95.2642 43.7161 95.2642C43.7161 95.2642 43.7161 95.2642 43.7161 95.2642C43.716 95.2642 43.716 95.2642 43.716 95.2642C43.716 95.2642 43.716 95.2642 43.716 95.2642C43.716 95.2642 43.716 95.2642 43.716 95.2642C43.716 95.2642 43.716 95.2642 43.716 95.2642C43.716 95.2642 43.716 95.2642 43.716 95.2642C43.716 95.2642 43.716 95.2642 43.716 95.2642C43.716 95.2642 43.716 95.2642 43.7159 95.2642C43.7159 95.2642 43.7159 95.2642 43.7159 95.2642C43.7159 95.2642 43.7159 95.2642 43.7159 95.2642C43.7159 95.2642 43.7159 95.2642 43.7159 95.2642C43.7159 95.2642 43.7159 95.2642 43.7159 95.2642C43.7159 95.2642 43.7159 95.2642 43.7159 95.2642C43.7159 95.2642 43.7159 95.2642 43.7159 95.2642C43.7159 95.2642 43.7158 95.2642 43.7158 95.2642C43.7158 95.2642 43.7158 95.2642 43.7158 95.2642C43.7158 95.2642 43.7158 95.2642 43.7158 95.2642C43.7158 95.2642 43.7158 95.2642 43.7158 95.2642C43.7158 95.2642 43.7158 95.2642 43.7158 95.2642C43.7158 95.2642 43.7158 95.2642 43.7158 95.2642C43.7158 95.2642 43.7158 95.2642 43.7158 95.2642C43.7157 95.2642 43.7157 95.2642 43.7157 95.2642C43.7157 95.2642 43.7157 95.2642 43.7157 95.2642C43.7157 95.2642 43.7157 95.2642 43.7157 95.2642C43.7157 95.2642 43.7157 95.2642 43.7157 95.2642C43.7157 95.2642 43.7157 95.2642 43.7157 95.2642C43.7157 95.2642 43.7157 95.2642 43.7157 95.2642C43.7157 95.2642 43.7157 95.2642 43.7156 95.2642C43.7156 95.2642 43.7156 95.2642 43.7156 95.2642V97.2642ZM43.6238 97.2593C43.6406 97.261 43.629 97.26 43.6135 97.2577C43.5946 97.2548 43.5584 97.2485 43.5129 97.2349L44.0876 95.3192C43.9554 95.2796 43.8349 95.2704 43.8228 95.2692L43.6238 97.2593ZM43.8003 97.2771C43.8204 97.2771 43.699 97.2818 43.5618 97.2476C43.391 97.2049 43.2305 97.1164 43.1009 96.9867L44.5151 95.5725C44.2015 95.2589 43.8172 95.2771 43.8003 95.2771V97.2771ZM43.6119 97.2602C43.5893 97.2557 43.5687 97.2499 43.5483 97.2425L44.2318 95.3629C44.155 95.335 44.078 95.3138 44.0041 95.2991L43.6119 97.2602ZM43.8901 97.3027C43.9093 97.3027 43.8527 97.3038 43.7924 97.2978C43.7047 97.2891 43.5805 97.2649 43.446 97.1977C43.3284 97.1391 43.2509 97.0707 43.2249 97.0473C43.2011 97.0258 43.1799 97.0042 43.1881 97.0124L44.6023 95.5982C44.6022 95.5981 44.602 95.5979 44.6017 95.5976C44.6014 95.5972 44.6008 95.5967 44.6002 95.5961C44.5991 95.595 44.5969 95.5928 44.5942 95.5901C44.5896 95.5856 44.5779 95.5742 44.5624 95.5603C44.5356 95.5362 44.4575 95.4673 44.3393 95.4083C44.2041 95.3408 44.0792 95.3165 43.9907 95.3077C43.9533 95.304 43.9236 95.3032 43.9107 95.3029C43.9035 95.3028 43.8978 95.3027 43.8949 95.3027C43.8933 95.3027 43.892 95.3027 43.8913 95.3027C43.8909 95.3027 43.8906 95.3027 43.8904 95.3027C43.8902 95.3027 43.8901 95.3027 43.8901 95.3027V97.3027ZM43.5534 97.2451C43.559 97.2471 43.5642 97.249 43.5677 97.2502C43.5717 97.2517 43.5738 97.2524 43.5758 97.2531C43.5797 97.2545 43.5782 97.254 43.5743 97.2525C43.5675 97.2498 43.5399 97.2389 43.5035 97.2191L44.4613 95.4633C44.3966 95.4281 44.3396 95.4043 44.3032 95.3901C44.2847 95.3828 44.2684 95.3769 44.2577 95.373C44.2295 95.3628 44.2564 95.3726 44.2369 95.3655L43.5534 97.2451ZM43.9824 97.3412C43.9408 97.3412 43.8969 97.3386 43.8513 97.3325C43.8056 97.3265 43.7596 97.3171 43.7137 97.3043C43.6678 97.2915 43.624 97.2756 43.5824 97.2574C43.5409 97.2392 43.5033 97.2194 43.4696 97.1992C43.4027 97.1591 43.3533 97.1187 43.3229 97.0919C43.3078 97.0785 43.2959 97.0673 43.2888 97.0604C43.2852 97.0569 43.2823 97.054 43.2806 97.0523C43.279 97.0507 43.2777 97.0494 43.2779 97.0497C43.2779 97.0497 43.278 97.0497 43.278 97.0497C43.278 97.0498 43.2781 97.0498 43.2781 97.0499C43.2783 97.05 43.2784 97.0502 43.2787 97.0504C43.2791 97.0509 43.2799 97.0516 43.2808 97.0525C43.2826 97.0543 43.2856 97.0573 43.2893 97.0609C43.2966 97.0679 43.3086 97.0793 43.3239 97.0929C43.3547 97.12 43.4044 97.1606 43.4716 97.2009C43.5056 97.2213 43.5434 97.2412 43.5851 97.2595C43.6269 97.2778 43.671 97.2937 43.7172 97.3066C43.7633 97.3196 43.8096 97.3289 43.8556 97.335C43.9014 97.3411 43.9456 97.3438 43.9875 97.3438V95.3438C44.0292 95.3438 44.073 95.3464 44.1186 95.3524C44.1643 95.3585 44.2103 95.3678 44.2562 95.3807C44.3021 95.3935 44.346 95.4093 44.3875 95.4275C44.4291 95.4457 44.4667 95.4656 44.5004 95.4858C44.5672 95.5259 44.6166 95.5662 44.647 95.593C44.6622 95.6064 44.674 95.6177 44.6811 95.6246C44.6847 95.6281 44.6876 95.6309 44.6893 95.6327C44.6909 95.6342 44.6923 95.6356 44.692 95.6353C44.692 95.6353 44.692 95.6353 44.6919 95.6352C44.6919 95.6352 44.6919 95.6352 44.6918 95.6351C44.6917 95.635 44.6915 95.6348 44.6912 95.6345C44.6908 95.6341 44.69 95.6333 44.6891 95.6324C44.6873 95.6306 44.6843 95.6277 44.6806 95.6241C44.6734 95.6171 44.6613 95.6056 44.646 95.5921C44.6153 95.565 44.5655 95.5244 44.4983 95.484C44.4644 95.4637 44.4266 95.4437 44.3848 95.4255C44.343 95.4071 44.2989 95.3912 44.2528 95.3783C44.2066 95.3654 44.1604 95.356 44.1144 95.3499C44.0685 95.3438 44.0243 95.3412 43.9824 95.3412V97.3412ZM43.6029 97.2668C43.5892 97.2611 43.5793 97.2564 43.5747 97.2542C43.5702 97.252 43.5685 97.2511 43.5718 97.2528C43.5734 97.2536 43.5754 97.2547 43.5788 97.2565C43.5814 97.2578 43.5869 97.2608 43.5912 97.2631C43.6007 97.2681 43.6156 97.2759 43.6327 97.2844L44.5271 95.4955C44.5287 95.4963 44.5282 95.4961 44.5223 95.493C44.5197 95.4916 44.5054 95.4841 44.4956 95.479C44.4736 95.4675 44.4279 95.4439 44.3721 95.4207L43.6029 97.2668ZM43.5799 97.256L88.2478 123.045L89.2478 121.313L44.5799 95.5239L43.5799 97.256ZM89.2503 123.044L154.464 85.1397L153.459 83.4106L88.2453 121.314L89.2503 123.044Z" + fill="#FF9C9B" mask="url(#path-37-inside-1_14421_57490)" /> + <path + d="M44.078 96.3848L88.7459 122.174C90.4261 123.144 91.7855 125.501 91.7804 127.432L91.765 132.657C91.7599 134.586 90.3902 135.369 88.71 134.399L44.0446 108.61C43.5368 108.317 43.1264 107.607 43.1289 107.022C43.1315 106.44 43.5419 106.204 44.0523 106.496L88.7152 132.285C89.3821 132.67 89.9233 132.36 89.9259 131.595L89.9413 126.37C89.9438 125.603 89.4052 124.67 88.7383 124.285L44.0729 98.4984C43.565 98.206 43.1546 97.4929 43.1571 96.9106C43.1571 96.3284 43.5701 96.0924 44.078 96.3848Z" + fill="#DA3635" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M89.3765 122.615C89.3662 122.605 89.356 122.597 89.3457 122.59C89.2559 122.515 89.1636 122.446 89.0712 122.379C89.0687 122.377 89.0655 122.375 89.0623 122.373C89.0591 122.371 89.0559 122.369 89.0533 122.367C88.9533 122.297 88.8506 122.233 88.748 122.174L153.965 84.2703C153.97 84.2728 153.975 84.276 153.98 84.2792C153.985 84.2824 153.99 84.2857 153.995 84.2882C154.039 84.3139 154.08 84.3395 154.124 84.3677C154.146 84.3818 154.167 84.396 154.188 84.4101C154.209 84.4242 154.23 84.4383 154.252 84.4524C154.254 84.4538 154.256 84.455 154.258 84.4561C154.262 84.4591 154.266 84.4615 154.27 84.4652C154.273 84.4678 154.276 84.4697 154.279 84.4716C154.282 84.4735 154.285 84.4755 154.288 84.478C154.303 84.4896 154.319 84.5011 154.335 84.5127C154.351 84.5242 154.367 84.5357 154.383 84.5473C154.396 84.5573 154.409 84.5673 154.423 84.5774C154.454 84.6009 154.486 84.6248 154.516 84.6499L154.562 84.6884C154.567 84.6922 154.573 84.6967 154.578 84.7012C154.583 84.7057 154.588 84.7102 154.593 84.714C154.614 84.732 154.632 84.7474 154.652 84.7628C154.698 84.8012 154.744 84.8397 154.788 84.8807C154.798 84.891 154.809 84.9012 154.82 84.9115C154.831 84.9218 154.842 84.932 154.852 84.9423C154.857 84.9474 154.862 84.9519 154.868 84.9564C154.873 84.9609 154.878 84.9654 154.883 84.9705C154.889 84.9769 154.896 84.9827 154.902 84.9885C154.909 84.9943 154.915 85 154.921 85.0064C154.965 85.0475 155.009 85.0885 155.05 85.1321C155.08 85.1603 155.109 85.1911 155.137 85.2219L155.157 85.2424C155.159 85.244 155.161 85.2457 155.163 85.2474C155.167 85.2511 155.172 85.2551 155.175 85.2604C155.195 85.2822 155.215 85.304 155.234 85.3258C155.254 85.3476 155.274 85.3694 155.293 85.3912C155.334 85.4372 155.373 85.4833 155.411 85.5293L155.411 85.5297L155.414 85.5323L155.419 85.5374C155.458 85.581 155.493 85.6272 155.529 85.6734L155.53 85.674C155.576 85.7327 155.622 85.7915 155.665 85.8503V85.8529C155.667 85.8555 155.669 85.858 155.67 85.8606C155.672 85.8632 155.674 85.8657 155.676 85.8683C155.737 85.9529 155.799 86.0402 155.858 86.1274C155.862 86.1325 155.865 86.1383 155.868 86.1441C155.871 86.1498 155.874 86.1556 155.878 86.1607C155.922 86.2274 155.963 86.294 156.004 86.3607L156.004 86.3608L156.004 86.3612C156.032 86.4047 156.06 86.4481 156.086 86.4916C156.089 86.4967 156.092 86.5019 156.095 86.507C156.098 86.5121 156.101 86.5173 156.104 86.5224C156.112 86.5352 156.119 86.5487 156.127 86.5621C156.135 86.5756 156.142 86.5891 156.15 86.6019C156.164 86.6276 156.179 86.6538 156.194 86.6801C156.208 86.7064 156.223 86.7327 156.237 86.7584C156.26 86.7994 156.284 86.8405 156.304 86.8841L156.319 86.9148C156.322 86.9187 156.324 86.9225 156.326 86.9264C156.328 86.9302 156.33 86.9341 156.332 86.9379L156.409 87.0995C156.417 87.1179 156.425 87.136 156.433 87.1539C156.447 87.1858 156.461 87.2171 156.476 87.2483C156.477 87.2521 156.478 87.2554 156.48 87.2586C156.481 87.2618 156.482 87.265 156.484 87.2688C156.485 87.2714 156.486 87.2746 156.487 87.2778C156.489 87.281 156.49 87.2842 156.491 87.2868L156.537 87.3945C156.548 87.4188 156.557 87.4438 156.567 87.4688C156.577 87.4938 156.586 87.5189 156.596 87.5433C156.603 87.5587 156.609 87.5747 156.614 87.5907C156.62 87.6068 156.626 87.6228 156.632 87.6382L156.64 87.6613C156.641 87.6664 156.643 87.6715 156.645 87.6767C156.647 87.6818 156.649 87.6869 156.65 87.6921C156.668 87.745 156.686 87.7955 156.703 87.846L156.704 87.8485C156.722 87.8998 156.74 87.9537 156.755 88.005C156.755 88.0111 156.757 88.0156 156.759 88.0211C156.76 88.0225 156.76 88.0239 156.761 88.0255C156.761 88.0316 156.762 88.0361 156.764 88.0415C156.765 88.0429 156.765 88.0444 156.766 88.046C156.768 88.054 156.771 88.0619 156.773 88.0697C156.783 88.1021 156.793 88.1335 156.802 88.1666C156.817 88.2205 156.832 88.2743 156.845 88.3282L156.861 88.3974C156.862 88.4026 156.863 88.4083 156.865 88.4141C156.866 88.4199 156.867 88.4257 156.868 88.4308C156.87 88.4479 156.874 88.4632 156.879 88.4797C156.879 88.483 156.88 88.4863 156.881 88.4898C156.894 88.5437 156.904 88.595 156.915 88.6488C156.923 88.6892 156.93 88.7315 156.937 88.7723L156.94 88.7899V88.7976V88.8027L156.94 88.8032C156.948 88.8543 156.956 88.9055 156.961 88.9566L156.976 89.1054C156.977 89.1144 156.978 89.1227 156.979 89.1311C156.979 89.1394 156.98 89.1477 156.981 89.1567C156.981 89.1644 156.984 89.1747 156.984 89.1849C156.985 89.1954 156.986 89.2067 156.986 89.2182C156.987 89.2291 156.988 89.2404 156.989 89.2516C156.992 89.2841 156.993 89.3166 156.995 89.3491C156.995 89.3654 156.996 89.3816 156.997 89.3978C156.999 89.4439 156.999 89.4873 156.999 89.5334V89.5338L156.984 94.7588L91.7671 132.658L91.7825 127.433C91.7825 127.317 91.7774 127.199 91.7671 127.081C91.7671 127.078 91.7666 127.073 91.766 127.069C91.7653 127.064 91.7646 127.058 91.7646 127.053C91.7543 126.932 91.7389 126.814 91.721 126.694V126.689C91.703 126.568 91.6799 126.45 91.6517 126.33C91.6504 126.324 91.6491 126.319 91.6478 126.313C91.6466 126.307 91.6453 126.301 91.644 126.296C91.6184 126.178 91.5876 126.063 91.5517 125.945C91.5517 125.939 91.5501 125.934 91.5481 125.929C91.5476 125.927 91.5471 125.926 91.5465 125.924C91.5106 125.804 91.4696 125.683 91.426 125.563L91.4183 125.54C91.3747 125.422 91.3285 125.304 91.2772 125.188C91.2759 125.186 91.2746 125.182 91.2734 125.179C91.2721 125.176 91.2708 125.173 91.2695 125.17C91.2182 125.05 91.1618 124.932 91.1028 124.816L91.0874 124.785C91.0387 124.69 90.9873 124.596 90.9335 124.503C90.9258 124.49 90.9181 124.477 90.9104 124.463C90.9027 124.45 90.895 124.437 90.8873 124.424L90.7873 124.262C90.7462 124.195 90.7052 124.129 90.6616 124.062C90.5949 123.962 90.5282 123.865 90.4589 123.77C90.4538 123.767 90.4512 123.762 90.4487 123.757C90.3692 123.649 90.2871 123.544 90.2024 123.441L90.1973 123.436C90.1152 123.336 90.028 123.239 89.9408 123.144L89.9203 123.123C89.8382 123.036 89.7536 122.951 89.6663 122.869C89.6612 122.864 89.6561 122.86 89.651 122.855C89.6458 122.851 89.6407 122.846 89.6356 122.841C89.5509 122.764 89.4637 122.687 89.3765 122.615Z" + fill="#FF9C9B" /> + <path + d="M111.342 64.8872C112.191 64.3972 113.567 64.3972 114.416 64.8872L117.724 66.7973C118.475 67.231 118.573 67.9147 117.956 68.4138L112.275 73.0052C111.721 73.4535 110.725 73.6405 109.819 73.4663L106.251 72.7795C103.704 76.231 103.704 80.1598 106.251 83.6112L109.819 82.9245C110.725 82.7503 111.721 82.9373 112.275 83.3855L117.956 87.977C118.573 88.4761 118.475 89.1598 117.724 89.5935L114.416 91.5035C113.567 91.9935 112.191 91.9935 111.342 91.5035L108.269 89.7291C97.2358 83.3592 97.2358 73.0315 108.269 66.6616L111.342 64.8872Z" + fill="#DA3635" /> + <rect width="4.31389" height="36.5211" rx="2.15694" + transform="matrix(0.866025 -0.5 0.866025 0.5 76.0625 84.207)" fill="#DA3635" /> + <rect width="4.31389" height="36.5211" rx="2.15694" + transform="matrix(0.866025 -0.5 0.866025 0.5 70.8203 87.7002)" fill="#DA3635" /> + <rect width="4.31389" height="10.9784" rx="2.15694" transform="matrix(0.866025 -0.5 0.866025 0.5 65 92.3584)" + fill="#DA3635" /> + <rect width="4.31389" height="10.9784" rx="2.15694" + transform="matrix(0.866025 -0.5 0.866025 0.5 84.2188 104.586)" fill="#DA3635" /> + <rect width="4.47351" height="4.31453" rx="2.15726" + transform="matrix(0.866025 -0.5 0.866025 0.5 76.6484 100.008)" fill="#DA3635" /> + <path + d="M103.608 165.513C102.108 160.846 100.208 151.613 104.608 152.013C110.108 152.513 104.446 168.512 103.608 165.513Z" + fill="#66AF82" /> + <path + d="M103.61 166.012C104.11 164.346 103.91 161.112 99.1097 161.512C93.1097 162.012 101.61 166.512 103.61 166.012Z" + fill="#3D8C5C" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M87.1442 20.8288C88.5439 19.9651 90.3788 20.3997 91.2424 21.7994L96.6402 30.5476C97.5039 31.9473 97.0693 33.7822 95.6696 34.6458C94.2698 35.5095 92.435 35.0749 91.5713 33.6752L86.1735 24.9271C85.3099 23.5273 85.7444 21.6925 87.1442 20.8288Z" + fill="#DA3635" /> + <path + d="M75.6797 43.7432V29.4713C75.6797 26.3341 77.1743 23.3846 79.7042 21.5293C80.734 20.7742 81.9008 20.2265 83.1396 19.9168L86.3338 19.1182C86.915 18.9729 87.5235 18.9767 88.1028 19.1291C89.6664 19.5406 90.7562 20.9543 90.7562 22.5711V41.8695C90.7562 42.1872 90.705 42.5027 90.6046 42.8041C90.4595 43.2393 90.2151 43.6348 89.8907 43.9592L89.0285 44.8214C87.2958 46.5541 84.8733 47.4117 82.4364 47.1552L78.3656 46.7267C76.8388 46.566 75.6797 45.2785 75.6797 43.7432Z" + fill="#A0C7F1" /> + <rect width="6.42493" height="2.591" rx="1.2955" transform="matrix(0.866025 0.5 -0.866025 0.5 76.5879 87.2681)" + fill="#DA3635" /> + <path + d="M75.2134 87.1181C75.2957 86.0895 77.6411 85.7493 78.5558 86.6332L81.4604 89.4404C81.8668 89.8332 81.759 90.3352 81.1986 90.6587C80.4972 91.0637 79.351 91.0458 78.6883 90.6197L76.4568 89.1846C75.5982 88.6324 75.1502 87.9075 75.2095 87.1662L75.2134 87.1181Z" + fill="#FF9C9B" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M76.7833 87.1751L79.5509 89.6171C79.6919 89.7415 79.7727 89.9205 79.7727 90.1085C79.7727 90.5291 79.3822 90.8408 78.9721 90.7476L78.8819 90.7271C78.814 90.695 78.7496 90.6595 78.6891 90.6206L76.4576 89.1855C75.599 88.6333 75.151 87.9084 75.2103 87.1671L75.2141 87.1191C75.2463 86.7175 75.6233 86.4208 76.1254 86.261C76.1665 86.2998 76.2026 86.3444 76.2325 86.3941L76.4885 86.8209C76.568 86.9534 76.6674 87.0728 76.7833 87.1751Z" + fill="white" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M81.4153 89.3936L81.4644 89.4409C81.8708 89.8337 81.7629 90.3357 81.2026 90.6593C80.5012 91.0642 79.3549 91.0464 78.6923 90.6203L78.29 90.3616C78.4259 90.1374 78.6698 89.9985 78.9348 89.9985H79.3994H80.4685C80.7329 89.9985 80.9818 89.874 81.1405 89.6625L81.2051 89.5763C81.2625 89.4998 81.3345 89.4381 81.4153 89.3936Z" + fill="#769FCB" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M80.0153 89.011C79.7484 89.1974 79.4961 89.4226 79.347 89.5716C79.2744 89.6443 79.1565 89.6443 79.0838 89.5716C79.0111 89.4989 79.0111 89.3811 79.0838 89.3084C79.245 89.1473 79.5138 88.9071 79.8022 88.7058C79.9464 88.605 80.0993 88.5114 80.2489 88.4422C80.3957 88.3743 80.5538 88.3232 80.7045 88.3232C80.8073 88.3232 80.8906 88.4066 80.8906 88.5094C80.8906 88.6122 80.8073 88.6955 80.7045 88.6955C80.6318 88.6955 80.5309 88.722 80.4051 88.7801C80.282 88.837 80.1487 88.9178 80.0153 89.011Z" + fill="#DA3635" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M79.5692 87.4953C79.6152 87.5872 79.5779 87.699 79.486 87.745C79.4645 87.7557 79.4191 87.7974 79.362 87.9021C79.3085 88 79.2581 88.1282 79.2126 88.2721C79.1219 88.5592 79.0586 88.8838 79.0286 89.0939C79.0141 89.1956 78.9198 89.2663 78.818 89.2518C78.7163 89.2373 78.6456 89.143 78.6601 89.0412C78.6921 88.817 78.7592 88.4715 78.8577 88.1599C78.9068 88.0044 78.9657 87.8511 79.0352 87.7238C79.101 87.6031 79.1921 87.4757 79.3195 87.412C79.4115 87.3661 79.5233 87.4033 79.5692 87.4953Z" + fill="#DA3635" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M78.8269 87.6777C79.2735 87.7401 79.7315 87.8642 80.0186 87.96C80.1161 87.9925 80.1688 88.0979 80.1363 88.1954C80.1038 88.2929 79.9984 88.3456 79.9009 88.3131C79.6296 88.2227 79.1942 88.1049 78.7753 88.0463C78.5658 88.017 78.3661 88.0034 78.1961 88.0135C78.0218 88.0238 77.9005 88.0579 77.8294 88.1053C77.7439 88.1623 77.6283 88.1392 77.5713 88.0537C77.5143 87.9681 77.5374 87.8526 77.6229 87.7955C77.7752 87.694 77.975 87.6537 78.1741 87.6419C78.3775 87.6298 78.6037 87.6465 78.8269 87.6777Z" + fill="#DA3635" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M78.1382 87.2755C77.871 87.4248 77.6189 87.6049 77.4704 87.7237C77.3901 87.7879 77.273 87.7749 77.2088 87.6946C77.1445 87.6144 77.1576 87.4972 77.2378 87.433C77.3995 87.3037 77.6686 87.1115 77.9567 86.9505C78.2356 86.7947 78.5674 86.6477 78.8431 86.6477C78.9459 86.6477 79.0293 86.731 79.0293 86.8338C79.0293 86.9366 78.9459 87.02 78.8431 87.02C78.6722 87.02 78.4146 87.1211 78.1382 87.2755Z" + fill="#DA3635" /> + <rect width="6.17687" height="2.591" rx="1.2955" transform="matrix(0.866025 0.5 -0.866025 0.5 86.6953 81.8083)" + fill="#DA3635" /> + <path + d="M85.1021 81.5341C85.1843 80.5055 87.5297 80.1653 88.4444 81.0493L91.3491 83.8564C91.7555 84.2492 91.6476 84.7512 91.0873 85.0747C90.3859 85.4797 89.2396 85.4619 88.577 85.0357L86.3455 83.6006C85.4869 83.0484 85.0389 82.3235 85.0982 81.5822L85.1021 81.5341Z" + fill="#FF9C9B" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M86.6749 81.5894L89.4425 84.0314C89.5835 84.1558 89.6643 84.3348 89.6643 84.5228C89.6643 84.9434 89.2738 85.2551 88.8637 85.1619L88.7735 85.1414C88.7057 85.1093 88.6412 85.0738 88.5807 85.0349L86.3492 83.5998C85.4906 83.0476 85.0426 82.3227 85.1019 81.5815L85.1057 81.5334C85.1379 81.1318 85.5149 80.8352 86.017 80.6753C86.0581 80.7141 86.0942 80.7587 86.1241 80.8084L86.3801 81.2352C86.4596 81.3677 86.5591 81.4871 86.6749 81.5894Z" + fill="white" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M91.305 83.8098L91.354 83.8572C91.7605 84.25 91.6526 84.752 91.0922 85.0755C90.3908 85.4805 89.2446 85.4626 88.582 85.0365L88.1797 84.7778C88.3155 84.5537 88.5595 84.4148 88.8245 84.4148H89.2891H90.3581C90.6225 84.4148 90.8715 84.2903 91.0301 84.0788L91.0948 83.9926C91.1521 83.9161 91.2241 83.8544 91.305 83.8098Z" + fill="#769FCB" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M89.904 83.427C89.6371 83.6134 89.3848 83.8386 89.2357 83.9877C89.163 84.0603 89.0452 84.0603 88.9725 83.9877C88.8998 83.915 88.8998 83.7971 88.9725 83.7244C89.1336 83.5633 89.4025 83.3231 89.6909 83.1218C89.8351 83.0211 89.988 82.9274 90.1375 82.8582C90.2844 82.7904 90.4425 82.7393 90.5931 82.7393C90.6959 82.7393 90.7793 82.8226 90.7793 82.9254C90.7793 83.0282 90.6959 83.1115 90.5931 83.1115C90.5205 83.1115 90.4195 83.138 90.2937 83.1961C90.1707 83.253 90.0374 83.3338 89.904 83.427Z" + fill="#DA3635" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M89.4579 81.9113C89.5039 82.0032 89.4666 82.115 89.3747 82.161C89.3531 82.1718 89.3078 82.2134 89.2506 82.3181C89.1972 82.416 89.1468 82.5442 89.1013 82.6881C89.0106 82.9752 88.9473 83.2998 88.9173 83.5099C88.9028 83.6116 88.8085 83.6824 88.7067 83.6678C88.6049 83.6533 88.5342 83.559 88.5488 83.4572C88.5808 83.233 88.6478 82.8876 88.7463 82.5759C88.7955 82.4204 88.8544 82.2671 88.9239 82.1398C88.9897 82.0191 89.0808 81.8917 89.2082 81.828C89.3001 81.7821 89.4119 81.8193 89.4579 81.9113Z" + fill="#DA3635" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M88.7155 82.0937C89.1621 82.1561 89.6201 82.2803 89.9073 82.376C90.0048 82.4085 90.0575 82.5139 90.025 82.6114C89.9925 82.7089 89.8871 82.7616 89.7896 82.7291C89.5183 82.6387 89.0829 82.5209 88.664 82.4623C88.4544 82.4331 88.2548 82.4194 88.0848 82.4295C87.9105 82.4398 87.7892 82.4739 87.7181 82.5213C87.6326 82.5783 87.517 82.5552 87.46 82.4697C87.403 82.3841 87.4261 82.2686 87.5116 82.2116C87.6639 82.11 87.8637 82.0697 88.0628 82.0579C88.2662 82.0459 88.4923 82.0625 88.7155 82.0937Z" + fill="white" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M88.0269 81.6915C87.7597 81.8408 87.5076 82.0209 87.3591 82.1397C87.2788 82.2039 87.1617 82.1909 87.0974 82.1106C87.0332 82.0304 87.0462 81.9132 87.1265 81.849C87.2882 81.7197 87.5573 81.5275 87.8453 81.3666C88.1242 81.2107 88.4561 81.0637 88.7318 81.0637C88.8346 81.0637 88.9179 81.1471 88.9179 81.2499C88.9179 81.3526 88.8346 81.436 88.7318 81.436C88.5608 81.436 88.3033 81.5371 88.0269 81.6915Z" + fill="#DA3635" /> + <path + d="M86.3724 81.2493C86.7257 81.4533 87.2985 81.4533 87.6518 81.2493C87.8291 81.1469 87.9175 81.0125 87.9167 80.8783L87.9167 79.017L86.1074 79.017L86.1074 80.8783C86.1067 81.0125 86.195 81.1469 86.3724 81.2493Z" + fill="#FFCCB7" /> + <path + d="M86.3724 80.4683C86.7257 80.6723 87.2985 80.6723 87.6518 80.4683C87.8291 80.3659 87.9175 80.2315 87.9167 80.0973L87.9167 78.236L86.1074 78.236L86.1074 80.0973C86.1067 80.2315 86.195 80.3659 86.3724 80.4683Z" + fill="#D88775" /> + <path + d="M76.6273 86.7967C76.9806 87.0006 77.5534 87.0006 77.9067 86.7967C78.084 86.6943 78.1723 86.5599 78.1716 86.4257L78.1716 84.5643L76.3623 84.5643L76.3623 86.4257C76.3616 86.5599 76.4499 86.6943 76.6273 86.7967Z" + fill="#FFCCB7" /> + <path + d="M76.6273 86.052C76.9806 86.256 77.5534 86.256 77.9067 86.052C78.084 85.9496 78.1723 85.8153 78.1716 85.6811L78.1716 83.8197L76.3623 83.8197L76.3623 85.6811C76.3616 85.8153 76.4499 85.9496 76.6273 86.052Z" + fill="#D88775" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M90.6898 43.1931C90.5784 44.213 89.8477 45.2146 88.4976 45.9941C85.5548 47.6931 80.7834 47.6931 77.8405 45.9941C76.7103 45.3415 76.0142 44.5333 75.7521 43.6889C75.6905 43.9368 75.6655 44.1872 75.6771 44.4371L75.312 84.2052C75.2916 84.5155 75.4865 84.8296 75.8967 85.0664C76.6782 85.5176 77.9454 85.5176 78.7269 85.0664C79.1371 84.8296 79.332 84.5155 79.3116 84.2052L83.7902 58.7257L85.068 78.4585C85.0476 78.7687 85.2425 79.0828 85.6527 79.3196C86.4342 79.7709 87.7014 79.7709 88.4829 79.3196C88.8931 79.0828 89.088 78.7687 89.0676 78.4585L90.9287 44.5721C90.9747 44.1097 90.895 43.6438 90.6898 43.1931Z" + fill="#4C4D53" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M90.6423 42.3606C90.437 43.2813 89.7219 44.1714 88.4971 44.8785C85.5542 46.5776 80.7828 46.5776 77.84 44.8785C76.6151 44.1714 75.9 43.2813 75.6948 42.3606C75.4069 43.652 76.122 45.0036 77.84 45.9955C80.7828 47.6946 85.5542 47.6946 88.4971 45.9955C90.2151 45.0036 90.9301 43.652 90.6423 42.3606Z" + fill="#333333" /> + <rect width="2.23356" height="1.60324" rx="0.801622" + transform="matrix(0.866025 -0.5 2.20305e-08 1 86.8428 45.51)" fill="#D9D9D9" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M90.3419 55.4059L90.9398 44.5192C90.9429 44.4799 90.9451 44.4406 90.9463 44.4012L90.9465 44.3982L90.9464 44.3982C90.9588 43.9933 90.8752 43.5875 90.6954 43.1934C90.5945 44.1232 89.9788 45.0378 88.8485 45.783L88.4552 49.6178C88.2851 51.2759 86.8361 52.5038 85.1726 52.3996L83.7943 58.7752L84.714 72.8982L90.3419 55.4059ZM83.6861 59.3554L83.7612 58.9281L83.6836 59.2872L83.6861 59.3554Z" + fill="#333333" /> + <path + d="M84.0713 12.8039L85.4983 10.1272L89.4319 9.15856L91.9386 10.8666L103.009 55.8738L95.1416 57.811L84.0713 12.8039Z" + fill="#DA3635" /> + <path + d="M95.1448 57.8107L96.5569 55.0518L100.488 54.0921L103.012 55.8734L101.432 66.0338C101.418 66.1216 101.305 66.1493 101.253 66.0779L95.1448 57.8107Z" + fill="#A0C7F1" /> + <path + d="M98.6944 62.6195L99.3173 61.9554C99.8007 61.4353 100.556 61.248 101.236 61.4862L102.092 61.7858L101.434 66.0453C101.42 66.1332 101.307 66.161 101.254 66.0894L98.6944 62.6195Z" + fill="#DA3635" /> + <path d="M89.4336 9.15918L100.486 54.0931L103.011 55.8744L91.9403 10.8672L89.4336 9.15918Z" fill="#FF9C9B" /> + <path d="M96.5551 55.0522L85.4997 10.1272L84.0728 12.8039L95.143 57.8111L96.5551 55.0522Z" fill="#DA3635" /> + <path + d="M95.7145 26.4967C95.4089 27.1372 96.2667 33.559 97.6533 32.8127C99.3865 31.8798 97.2007 23.382 95.7145 26.4967Z" + fill="#4277AF" /> + <path + d="M95.6165 26.217C95.0088 27.1364 96.407 32.3338 97.0001 31.1497C97.5619 30.028 96.4364 24.9789 95.6165 26.217Z" + fill="#D88775" /> + <path + d="M95.6162 26.4975C95.0661 27.1621 96.1923 30.8264 96.7347 29.9742C97.2485 29.1669 96.3583 25.6026 95.6162 26.4975Z" + fill="#FFCCB7" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M77.3111 24.0592C78.7774 23.314 80.5701 23.8986 81.3153 25.3649L85.4087 33.4197L89.4334 31.5535L91.4809 34.5316C89.9561 36.8501 88.0818 39.4278 85.3074 39.376C83.1996 39.3367 81.149 38.1846 80.0989 36.1181L76.0054 28.0633C75.2603 26.597 75.8449 24.8043 77.3111 24.0592Z" + fill="#4277AF" /> + <path + d="M92.3215 29.3169C92.9305 29.5199 94.146 30.0478 94.146 30.535C94.146 31.144 91.7124 30.535 92.3215 29.3169Z" + fill="#D88775" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M92.625 34.0838L91.4272 34.4735L89.565 32.7262L89.4573 31.6096L90.3367 30.859C90.6823 30.3662 91.4954 29.348 91.9826 29.2168C92.2065 29.1856 92.6541 29.2749 92.6541 29.882C92.598 30.3896 93.1452 30.5529 93.5342 30.2876C93.6535 30.2062 93.7267 30.1519 93.78 30.1123C93.9006 30.0228 93.92 30.0084 94.1428 29.9261C94.4642 29.8075 94.7238 30.016 94.8028 30.2303C94.8059 30.2385 94.8094 30.2465 94.8134 30.2543C94.8748 30.3016 94.925 30.3658 94.9559 30.4445C95.2995 31.3172 95.0185 32.3119 94.269 32.8758L92.6792 34.0718C92.6611 34.0759 92.6431 34.0798 92.6252 34.0834L92.625 34.0838Z" + fill="#FFCCB7" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M91.4289 34.4719L92.6268 34.0821L92.6269 34.0817C92.6448 34.0781 92.6629 34.0742 92.681 34.0702L93.6228 33.3616C94.4579 32.7333 94.9179 31.7574 94.9084 30.7546L94.4546 30.9741C93.5445 32.3498 92.1262 33.2983 90.522 33.6209L91.4289 34.4719Z" + fill="#D88775" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M88.4515 10.5784L81.5096 11.8247L82.3184 16.3295L80.6729 16.3988L82.0802 18.7344L81.8671 19.9647C81.6674 21.118 82.4403 22.2148 83.5936 22.4145C84.1562 22.5119 84.7054 22.3779 85.1435 22.0811C85.7068 22.2844 86.3294 22.3468 86.9611 22.2334C88.8781 21.8892 90.153 20.0563 89.8089 18.1393L88.4515 10.5784Z" + fill="#FFCCB7" /> + <path + d="M87.2988 18.9758H88.046C88.1765 18.9758 88.2823 19.0816 88.2823 19.2121C88.2823 19.3138 88.2172 19.4041 88.1207 19.4363L87.8652 19.5214C87.7401 19.5632 87.6047 19.5632 87.4795 19.5214L87.2241 19.4363C87.1276 19.4041 87.0625 19.3138 87.0625 19.2121C87.0625 19.0816 87.1683 18.9758 87.2988 18.9758Z" + fill="#D88775" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M88.747 21.3427C88.2949 21.6767 87.7611 21.9146 87.1704 22.0207C85.1152 22.3896 83.1501 21.0227 82.7812 18.9676L82.4185 16.9476C82.355 16.5936 82.0397 16.341 81.6803 16.3561L81.4652 16.3652C81.2354 16.3749 81.0469 16.5502 81.0206 16.7787C81.0088 16.8812 81.0313 16.9848 81.0846 17.0732L81.7869 18.2387C81.8099 18.2769 81.8395 18.3107 81.8743 18.3385L82.0798 18.5029C82.1468 18.5564 82.2454 18.5395 82.2907 18.4667C82.3599 18.3554 82.5299 18.388 82.553 18.517L82.8544 20.1957C82.9963 20.9859 83.3911 21.667 83.9405 22.1706C84.1312 22.3453 84.3993 22.4159 84.644 22.3323C84.6618 22.3262 84.6796 22.3198 84.6972 22.3133C84.997 22.2018 85.325 22.1543 85.6384 22.2183C86.0639 22.3052 86.5127 22.3144 86.9663 22.2329C87.6591 22.1086 88.2681 21.7897 88.747 21.3427Z" + fill="#D88775" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M89.8128 16.7014H89.057C88.1283 16.7014 87.3188 16.0694 87.0936 15.1685L87.025 14.8941C86.81 14.034 85.9746 13.4798 85.0986 13.6161L84.7793 13.6658C83.9548 13.794 83.4184 14.6026 83.6208 15.4121C83.7177 15.8 83.6466 16.2107 83.4248 16.5434L82.5671 17.8299C82.4744 17.9691 82.3041 18.0349 82.1418 17.9943L81.4772 17.8282C80.652 16.9137 80.1484 15.6953 80.1484 14.3575C80.1484 11.5188 82.4159 9.21753 85.2129 9.21753C87.56 9.21753 89.5342 10.8381 90.1086 13.0369C90.7447 13.3532 91.1841 14.0287 91.1841 14.811C91.1841 15.7094 90.6044 16.4671 89.8128 16.7014Z" + fill="#333333" /> + <ellipse cx="82.279" cy="17.1257" rx="0.783843" ry="1.25415" fill="#FFCCB7" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M82.9162 17.2485C82.9238 17.1915 82.9278 17.1324 82.9278 17.0717C82.9278 16.6133 82.6992 16.2417 82.417 16.2417C82.1349 16.2417 81.9062 16.6133 81.9062 17.0717C81.9062 17.3711 82.0038 17.6335 82.15 17.7795C82.0751 17.6573 82.03 17.4994 82.03 17.3271C82.03 16.9392 82.2587 16.6247 82.5408 16.6247C82.6422 16.6247 82.6573 16.7693 82.6734 16.9224C82.6841 17.0243 82.6952 17.13 82.7323 17.1994C82.7614 17.2536 82.8327 17.2513 82.9005 17.249C82.9058 17.2488 82.911 17.2486 82.9162 17.2485Z" + fill="#D88775" /> + <ellipse cx="85.8639" cy="17.9328" rx="0.311123" ry="0.54464" transform="rotate(2.6285 85.8639 17.9328)" + fill="#333333" /> + <ellipse cx="88.8757" cy="17.4378" rx="0.311123" ry="0.544465" transform="rotate(2.6285 88.8757 17.4378)" + fill="#333333" /> + <path d="M85.2588 17.753C85.57 17.5547 85.9698 17.3435 86.5129 17.4863" stroke="#333333" stroke-width="0.5" + stroke-linecap="round" /> + <path d="M88.1019 17.3496L88.4443 18.6052C88.579 19.0991 88.2072 19.5858 87.6953 19.5858V19.5858" + stroke="#333333" stroke-width="0.5" stroke-linecap="round" /> + <path d="M88.7041 16.812C88.8214 16.812 89.038 16.812 89.3312 16.812" stroke="#333333" stroke-width="0.5" + stroke-linecap="round" /> + <path d="M87.1387 20.4293C87.3129 20.5696 87.7448 20.7323 88.0793 20.261" stroke="#333333" stroke-width="0.5" + stroke-linecap="round" /> + </g> + <defs> + <linearGradient id="paint0_linear_14421_57490" x1="89.7041" y1="56.4904" x2="23.917" y2="141.98" + gradientUnits="userSpaceOnUse"> + <stop stop-color="white" /> + <stop offset="1" stop-color="#D9EDFF" /> + </linearGradient> + <clipPath id="clip0_14421_57490"> + <rect width="200" height="200" fill="white" /> + </clipPath> + </defs> +</svg> \ No newline at end of file -- GitLab From 2260a404d62ae0a84e2c28f094b9302e63a48f82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Pailharey?= <rpailharey@grandlyon.com> Date: Thu, 7 Dec 2023 14:11:40 +0100 Subject: [PATCH 14/18] review: use tag + clean ico sprite --- .../annuaire-header.component.html | 20 +- src/app/models/structure.model.ts | 31 - .../components/button/button.component.html | 2 +- .../hour-picker/hour-picker.component.html | 4 +- .../collapse-header.component.ts | 4 +- src/assets/ico/calendar.svg | 4 - src/assets/ico/sprite.svg | 2510 ++--------------- 7 files changed, 256 insertions(+), 2319 deletions(-) delete mode 100644 src/assets/ico/calendar.svg diff --git a/src/app/annuaire/annuaire-header/annuaire-header.component.html b/src/app/annuaire/annuaire-header/annuaire-header.component.html index 273ea88cc..01775bdef 100644 --- a/src/app/annuaire/annuaire-header/annuaire-header.component.html +++ b/src/app/annuaire/annuaire-header/annuaire-header.component.html @@ -42,12 +42,24 @@ <div *ngIf="searchService.checkedFilterList.length" class="filterTags isntPhoneContent"> <div class="title">Filtres :</div> - <app-button + <app-v3-tag-item *ngFor="let filter of searchService.checkedFilterList" - [style]="buttonTypeEnum.TagCloudButton" - [text]="filter" + [label]="filter" + [size]="'small'" + [color]="'black'" + [iconFolder]="'ico'" + [iconName]="'cross'" + [iconPosition]="'right'" (action)="removeFilter(filter)" /> - <app-button [style]="buttonTypeEnum.TagCloudResetButton" (action)="resetFilters()" /> + <app-v3-tag-item + [label]="'Réinitialiser les filtres'" + [size]="'small'" + [color]="'white'" + [iconFolder]="'ico'" + [iconName]="'refresh'" + [iconPosition]="'right'" + (action)="resetFilters()" + /> </div> </div> diff --git a/src/app/models/structure.model.ts b/src/app/models/structure.model.ts index cb2ee1526..3e0d0a6f1 100644 --- a/src/app/models/structure.model.ts +++ b/src/app/models/structure.model.ts @@ -1,6 +1,5 @@ import { StructureCategoryEnum } from '../shared/enum/structureCategory.enum'; import { StructureCategoryIconEnum } from '../shared/enum/structureCategoryIcon.enum'; -import { Equipment } from '../structure-list/enum/equipment.enum'; import { Weekday } from '../structure-list/enum/weekday.enum'; import { Address } from './address.model'; import { Day } from './day.model'; @@ -158,36 +157,6 @@ export class Structure { return this.coord[0]; } - public getEquipmentsIcon(equipment: Equipment): string { - switch (equipment) { - case Equipment.wifi: - return 'wifiEnAccesLibre'; - case Equipment.printer: - return 'print'; - case Equipment.computer: - return 'computer'; - case Equipment.scanner: - return 'scan'; - default: - return null; - } - } - - public getEquipmentsTitle(equipment: Equipment): string { - switch (equipment) { - case Equipment.wifi: - return 'Wifi en accès libre'; - case Equipment.printer: - return this.nbPrinters > 1 ? 'Imprimantes' : 'Imprimante'; - case Equipment.computer: - return this.nbComputers > 1 ? 'Ordinateurs' : 'Ordinateur'; - case Equipment.scanner: - return this.nbScanners > 1 ? 'Scanners' : 'Scanner'; - default: - return null; - } - } - public getTypeStructureIcon(): StructureCategoryIconEnum { switch (this.structureType?.category) { case StructureCategoryEnum.public: diff --git a/src/app/shared/components/button/button.component.html b/src/app/shared/components/button/button.component.html index c0ea8b8c5..c6356e234 100644 --- a/src/app/shared/components/button/button.component.html +++ b/src/app/shared/components/button/button.component.html @@ -314,6 +314,6 @@ <ng-container *ngIf="style === buttonTypeEnum.TagCloudResetButton"> <button type="button" class="flex row btn-tags-cloud reset" (click)="doAction()"> <span>Supprimer les filtres</span> - <app-svg-icon [type]="'ico'" [icon]="'tagReset'" [iconClass]="'icon-16'" [iconColor]="'black'" /> + <app-svg-icon [type]="'ico'" [icon]="'refresh'" [iconClass]="'icon-16'" [iconColor]="'black'" /> </button> </ng-container> diff --git a/src/app/shared/components/hour-picker/hour-picker.component.html b/src/app/shared/components/hour-picker/hour-picker.component.html index 0c6eb0aaa..e189a180f 100644 --- a/src/app/shared/components/hour-picker/hour-picker.component.html +++ b/src/app/shared/components/hour-picker/hour-picker.component.html @@ -43,10 +43,10 @@ <div> <div *ngIf="hour.error === 'wrong' || hour.error === 'incomplete'" class="error-message"> - <app-svg-icon [iconClass]="'icon-32'" [type]="'ico'" [icon]="'nok'" /> + <app-svg-icon [iconClass]="'icon-32'" [type]="'form'" [icon]="'notValidate'" /> </div> <div *ngIf="hour.error === null" class="error-message"> - <app-svg-icon [iconClass]="'icon-32'" [type]="'ico'" [icon]="'ok'" /> + <app-svg-icon [iconClass]="'icon-32'" [type]="'form'" [icon]="'validate'" /> </div> </div> </div> diff --git a/src/app/shared/components/v3/collapse/collapse-header/collapse-header.component.ts b/src/app/shared/components/v3/collapse/collapse-header/collapse-header.component.ts index 44fb31448..75367ce5f 100644 --- a/src/app/shared/components/v3/collapse/collapse-header/collapse-header.component.ts +++ b/src/app/shared/components/v3/collapse/collapse-header/collapse-header.component.ts @@ -4,14 +4,14 @@ import { Component, EventEmitter, Output } from '@angular/core'; selector: 'app-collapse-header', template: `<div class="collapse-header" - [ngClass]="size" role="button" tabindex="0" + [ngClass]="size" (click)="toggle.emit()" (keyup.enter)="toggle.emit()" > <ng-content></ng-content> - <app-svg-icon [ngClass]="expanded && 'expanded'" [type]="'ico'" [icon]="'fold'" [iconClass]="'icon-32'" /> + <app-svg-icon [ngClass]="expanded && 'expanded'" [type]="'ico'" [icon]="'chevronDown'" [iconClass]="'icon-32'" /> </div>`, styleUrls: ['collapse-header.component.scss'], }) diff --git a/src/assets/ico/calendar.svg b/src/assets/ico/calendar.svg deleted file mode 100644 index aea6e88f6..000000000 --- a/src/assets/ico/calendar.svg +++ /dev/null @@ -1,4 +0,0 @@ -<symbol id="calendar" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M8 10H5V13H8V10Z" fill="#333333"/> -<path fill-rule="evenodd" clip-rule="evenodd" d="M6 2C5.44772 2 5 2.44772 5 3V4H3C2.44772 4 2 4.44772 2 5V19C2 19.5523 2.44772 20 3 20H19C19.5523 20 20 19.5523 20 19V5C20 4.44772 19.5523 4 19 4H17V3C17 2.44772 16.5523 2 16 2C15.4477 2 15 2.44772 15 3V4H7V3C7 2.44772 6.55229 2 6 2ZM4 9V18H18V9H4Z" fill="#333333"/> -</symbol> diff --git a/src/assets/ico/sprite.svg b/src/assets/ico/sprite.svg index d7f79f954..ff4e03b16 100644 --- a/src/assets/ico/sprite.svg +++ b/src/assets/ico/sprite.svg @@ -39,54 +39,6 @@ fill="#333333" /> </symbol> - <symbol id="tablet" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M16 18C16.5523 18 17 17.5523 17 17V4C17 3.44772 16.5523 3 16 3H6C5.44772 3 5 3.44772 5 4V17C5 17.5523 5.44772 18 6 18H16ZM16 4H6V16H16V4ZM11 17.5C11.2761 17.5 11.5 17.2761 11.5 17C11.5 16.7239 11.2761 16.5 11 16.5C10.7239 16.5 10.5 16.7239 10.5 17C10.5 17.2761 10.7239 17.5 11 17.5Z" - stroke="none" /> - </symbol> - - <symbol id="transport" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M7 4C5.89543 4 5 4.89543 5 6V23C5 24.1046 5.89543 25 7 25L7 26.5C7 27.3284 7.67157 28 8.5 28C9.32843 28 10 27.3284 10 26.5V25H21V26.5C21 27.3284 21.6716 28 22.5 28C23.3284 28 24 27.3284 24 26.5V25C25.1046 25 26 24.1046 26 23V6C26 4.89543 25.1046 4 24 4H7ZM24 9H7V18H24V9ZM12 22H19L18.125 23H12.875L12 22ZM10 6C9.44772 6 9 6.44772 9 7C9 7.55228 9.44772 8 10 8H21C21.5523 8 22 7.55228 22 7C22 6.44772 21.5523 6 21 6H10ZM10.6668 21.8754C10.4609 21.1805 9.89524 20.6514 9.18821 20.4923L7 20V23H11L10.6668 21.8754ZM21.8118 20.4923C21.1048 20.6514 20.5391 21.1805 20.3332 21.8754L20 23H24V20L21.8118 20.4923Z" - fill="black" /> - </symbol> - - <symbol id="paste" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M14 16L5 16V4H14L14 16Z" stroke="#333333" stroke-width="2" /> - <path - d="M19 21C19.5523 21 20 20.5523 20 20V7C20 6.44772 19.5523 6 19 6H16V17C16 17.5523 15.5523 18 15 18H9V20C9 20.5523 9.44772 21 10 21H19Z" - fill="#32383D" /> - </symbol> - - <symbol id="copy" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M4 4C4 3.44771 4.44772 3 5 3H14C14.5523 3 15 3.44772 15 4V6H9C8.44772 6 8 6.44772 8 7V18H5C4.44772 18 4 17.5523 4 17V4ZM10 7C9.44772 7 9 7.44772 9 8V20C9 20.5523 9.44771 21 10 21H19C19.5523 21 20 20.5523 20 20V8C20 7.44772 19.5523 7 19 7H10Z" - fill="#32383D" /> - </symbol> - - <symbol id="cancel" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> - <path - d="M16.9498 5.36385C17.3403 4.97332 17.9734 4.97332 18.364 5.36385C18.7545 5.75437 18.7545 6.38753 18.364 6.77806L7.05026 18.0918C6.65973 18.4823 6.02657 18.4823 5.63605 18.0918C5.24552 17.7012 5.24552 17.0681 5.63605 16.6776L16.9498 5.36385Z" - stroke="none" /> - <path - d="M18.364 16.6777C18.7545 17.0682 18.7545 17.7013 18.364 18.0919C17.9734 18.4824 17.3403 18.4824 16.9498 18.0919L5.63605 6.77816C5.24552 6.38764 5.24552 5.75447 5.63605 5.36395C6.02657 4.97343 6.65974 4.97343 7.05026 5.36395L18.364 16.6777Z" - stroke="none" /> - </symbol> - - <symbol id="nok" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> - <circle cx="16" cy="16" r="13" fill="#DA6C2E" /> - <path d="M16.25 17.5L16.25 9.00001" stroke="white" stroke-width="3" stroke-linecap="round" - stroke-linejoin="round" /> - <path d="M16.25 23.6065L16.25 22.9999" stroke="white" stroke-width="3" stroke-linecap="round" - stroke-linejoin="round" /> - </symbol> - - <symbol id="ok" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> - <circle cx="16" cy="16" r="13" fill="#47C562" /> - <path d="M11 16.8182L14.8889 20L21 13" stroke="white" stroke-width="3" stroke-linecap="round" - stroke-linejoin="round" /> - </symbol> - <symbol id="add" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M11 4.63605L11 17.364" stroke="#333333" stroke-width="1.5" stroke-linecap="round" /> <path d="M17.3638 11L4.63585 11" stroke="#333333" stroke-width="1.5" stroke-linecap="round" /> @@ -104,43 +56,23 @@ stroke-linejoin="round"></path> </symbol> - - <symbol id="delete" viewBox="0 0 27 17" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path - d="M18.0992 4.36723C17.7086 3.9767 17.0755 3.9767 16.6849 4.36723L13.1494 7.90276L9.61388 4.36723C9.22336 3.9767 8.59019 3.9767 8.19967 4.36723C7.80914 4.75775 7.80914 5.39092 8.19967 5.78144L11.7352 9.31698L8.19967 12.8525C7.80914 13.243 7.80914 13.8762 8.19967 14.2667C8.59019 14.6572 9.22336 14.6572 9.61388 14.2667L13.1494 10.7312L16.6849 14.2667C17.0755 14.6572 17.7086 14.6572 18.0992 14.2667C18.4897 13.8762 18.4897 13.243 18.0992 12.8525L14.5636 9.31698L18.0992 5.78144C18.4897 5.39092 18.4897 4.75775 18.0992 4.36723Z" - fill="white" /> - </symbol> - - <symbol id="remove" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> - <path - d="M6.97363 12.9062C6.34733 12.9062 5.89876 12.7877 5.62793 12.5507C5.36556 12.3053 5.23438 11.9879 5.23438 11.5986C5.23438 11.2092 5.36556 10.8961 5.62793 10.6591C5.89876 10.4137 6.34733 10.2952 6.97363 10.3036C14.44 10.3036 10.571 10.3036 17.0156 10.3036C17.6419 10.3036 18.0863 10.4221 18.3486 10.6591C18.6195 10.8961 18.7549 11.2092 18.7549 11.5986C18.7549 11.9879 18.6195 12.3053 18.3486 12.5507C18.0863 12.7877 17.6419 12.9062 17.0156 12.9062C9.63742 12.9062 13.3678 12.9062 6.97363 12.9062Z" - stroke="none" /> - </symbol> - - <symbol id="removeCross" width="22" height="23" viewBox="0 0 22 23" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="removeCross" viewBox="0 0 22 23" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M6.5 7L15.5 16" stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" /> <path d="M15.5 7L6.5 16" stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" /> </symbol> - <symbol id="removeCrossBlack" width="22" height="22" viewBox="0 0 22 22" fill="none" - xmlns="http://www.w3.org/2000/svg"> - <path d="M6.5 6.5L15.5 15.5" stroke="#333333" stroke-width="1.5" stroke-linecap="round" /> - <path d="M15.5 6.5L6.5 15.5" stroke="#333333" stroke-width="1.5" stroke-linecap="round" /> - </symbol> - - <symbol id="close" width="23" height="22" viewBox="0 0 23 22" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M7 6.5L16 15.5" stroke="#333333" stroke-width="1.5" stroke-linecap="round" /> - <path d="M16 6.5L7 15.5" stroke="#333333" stroke-width="1.5" stroke-linecap="round" /> + <symbol id="cross" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M2.5 2.5L9.5 9.5" stroke="currentColor" /> + <path d="M9.5 2.5L2.5 9.5" stroke="currentColor" /> </symbol> - <symbol id="check" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="check" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M18.9977 6.2526C19.4105 6.61952 19.4477 7.25159 19.0808 7.66437L10.9326 16.831C10.5785 17.2294 9.97428 17.28 9.55883 16.9462L4.37364 12.7795C3.94313 12.4336 3.87458 11.8041 4.22053 11.3736C4.56647 10.9431 5.19592 10.8746 5.62643 11.2205L10.0699 14.7912L17.586 6.33565C17.9529 5.92286 18.585 5.88568 18.9977 6.2526Z" fill="currentColor" /> </symbol> - <symbol id="deleteAccount" width="22" height="23" viewBox="0 0 22 23" fill="none" stroke="none" - xmlns="http://www.w3.org/2000/svg"> + <symbol id="deleteAccount" viewBox="0 0 22 23" fill="none" stroke="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_8047_46397)"> <path d="M11 20.2498V18.1687C11 17.572 10.7629 16.9997 10.3409 16.5777C9.91899 16.1558 9.3467 15.9187 8.74997 15.9187H4.24999C3.65325 15.9187 3.08096 16.1558 2.65901 16.5777C2.23705 16.9997 2 17.572 2 18.1687V20.2498" @@ -177,56 +109,19 @@ <rect x="10" y="21" width="15" height="1.5" rx="0.75" fill="white" /> </symbol> - <svg id="user" viewBox="0 0 28 25" xmlns="http://www.w3.org/2000/svg"> - <path - d="M21.0256 13.9213C22.2638 12.4488 23 10.5413 23 8.5C22.9665 3.81496 19.185 0 14.5 0C9.81496 0 6 3.81496 6 8.5C6 13.185 9.81496 17 14.5 17C16.5079 17 18.3819 16.2972 19.8209 15.126C20.2289 14.717 20.2289 14.717 21.0256 13.9213ZM7.67323 8.5C7.67323 4.7185 10.7185 1.67323 14.5 1.67323C18.2815 1.67323 21.3268 4.7185 21.3268 8.5C21.3268 12.2815 18.2815 15.3268 14.5 15.3268C10.7185 15.3268 7.67323 12.248 7.67323 8.5Z" - fill="#333333" /> - <path - d="M13.2564 17.0414C11.6597 16.8372 10.0864 16.1466 8.76423 15H8.68966C3.89049 15 0 19.1129 0 24.1864V23.9793C0 24.543 0.432277 25 0.965517 25C1.49876 25 1.93103 24.543 1.93103 23.9793V24.1864C1.93103 20.2403 4.95697 17.0414 8.68966 17.0414H13.2564Z" - fill="#333333" /> - <path - d="M15.3566 17.0414H19.3103C23.043 17.0414 26.069 20.2403 26.069 24.1864V23.9793C26.069 24.543 26.5012 25 27.0345 25C27.5677 25 28 24.543 28 23.9793V24.1864C28 19.335 24.4427 15.3619 19.9351 15.0234C18.5996 16.1728 16.9994 16.8552 15.3566 17.0414Z" - fill="#333333" /> - </svg> - - <symbol id="computer" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> - <rect x="2.5" y="3" width="17" height="11" rx="0.5" stroke-width="2" fill="none" /> - <rect x="2" y="12" width="18" height="2" stroke="none" /> - <rect x="9" y="15" width="4" height="2" stroke="none" /> - <path - d="M7 17.382C7 17.1479 7.13226 16.9339 7.34164 16.8292L8.78885 16.1056C8.92771 16.0361 9.08082 16 9.23607 16H12.7639C12.9192 16 13.0723 16.0361 13.2111 16.1056L14.6584 16.8292C14.8677 16.9339 15 17.1479 15 17.382C15 17.7233 14.7233 18 14.382 18H7.61803C7.2767 18 7 17.7233 7 17.382Z" /> - </symbol> - - <symbol id="date" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> - <path d="M8 10H5V13H8V10Z" fill="#333333" /> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M6 2C5.44772 2 5 2.44772 5 3V4H3C2.44771 4 2 4.44772 2 5V19C2 19.5523 2.44771 20 3 20H19C19.5523 20 20 19.5523 20 19V5C20 4.44772 19.5523 4 19 4H17V3C17 2.44772 16.5523 2 16 2C15.4477 2 15 2.44772 15 3V4H7V3C7 2.44772 6.55228 2 6 2ZM4 9V18H18V9H4Z" - fill="#333333" /> - </symbol> - <symbol id="email" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M3.5 4H19.5C20.3284 4 21 4.67157 21 5.5V16.0714C21 16.8998 20.3284 17.5714 19.5 17.5714H3.5C2.67157 17.5714 2 16.8998 2 16.0714V5.5C2 4.67157 2.67157 4 3.5 4ZM2.91716 6.02444C3.04832 5.78143 3.35163 5.69075 3.59464 5.8219L11.2431 9.94966C11.5474 10.1138 11.9148 10.1093 12.2149 9.93753L19.3945 5.82797C19.6341 5.69079 19.9396 5.77387 20.0768 6.01353C20.214 6.25318 20.1309 6.55867 19.8913 6.69585L12.7116 10.8054C12.1116 11.1489 11.3767 11.1581 10.7682 10.8297L3.11971 6.70192C2.8767 6.57077 2.78602 6.26745 2.91716 6.02444Z" stroke="none" /> </symbol> - <symbol id="emailOutline" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="emailOutline" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect x="2.75" y="6.1875" width="16.5" height="11.6875" rx="3" stroke="#333333" stroke-width="1.5" /> <path d="M5 9L9.60865 11.9261C10.6326 12.5762 11.9472 12.5458 12.94 11.8492L17 9" stroke="#333333" stroke-width="1.5" stroke-linecap="round" /> </symbol> - <symbol id="password" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M4.89603 10C4.40117 10 4.00001 10.4012 4.00001 10.896L4 18.2042C4 18.699 4.40116 19.1002 4.89602 19.1002H17.1043C17.5992 19.1002 18.0003 18.699 18.0003 18.2042L18.0003 10.896C18.0003 10.4012 17.5992 10 17.1043 10H4.89603ZM12.3442 13.4441C12.3442 13.9365 12.0794 14.367 11.6845 14.6011L12.3442 17.0002H9.65611L10.3158 14.6011C9.92088 14.367 9.65611 13.9365 9.65611 13.4441C9.65611 12.7018 10.2579 12.1 11.0001 12.1C11.7424 12.1 12.3442 12.7018 12.3442 13.4441Z" - stroke="none" /> - <path - d="M13.8017 10.0002V7.90011C13.8017 6.35368 12.5481 5.10005 11.0017 5.10005C9.45524 5.10005 8.20161 6.35368 8.20161 7.90011V10.0002H6.10156V7.90011C6.10156 5.19386 8.29542 3 11.0017 3C13.7079 3 15.9018 5.19385 15.9018 7.90011V10.0002H13.8017Z" - stroke="none" /> - </symbol> - - <symbol id="passwordOutline" width="22" height="22" viewBox="0 0 22 22" fill="none" - xmlns="http://www.w3.org/2000/svg"> + <symbol id="passwordOutline" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M4.89602 9C4.40116 9 4 9.40116 4 9.89602L4 18.604C4 19.0988 4.40116 19.5 4.89602 19.5H17.1043C17.5992 19.5 18.0003 19.0988 18.0003 18.604V9.89602C18.0003 9.40116 17.5992 9 17.1043 9H4.89602Z" stroke="#333333" stroke-width="1.5" /> @@ -238,53 +133,6 @@ fill="#333333" /> </symbol> - <symbol id="pass" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M1.55556 5C1.24873 5 1 5.24873 1 5.55556V14.4444C1 14.7513 1.24873 15 1.55556 15H20.4444C20.7513 15 21 14.7513 21 14.4444V5.55556C21 5.24873 20.7513 5 20.4444 5H1.55556ZM4.77222 8.76388C4.78333 8.77499 4.79722 8.78055 4.81389 8.78055H4.91667C4.93333 8.78055 4.94722 8.77499 4.95833 8.76388C4.96944 8.75277 4.97683 8.73888 4.98055 8.72221L5.03055 8.3861H5.43889L5.38889 8.72221C5.38705 8.73888 5.39167 8.75277 5.40278 8.76388C5.41389 8.77499 5.42778 8.78055 5.44444 8.78055H5.54722C5.56389 8.78055 5.57778 8.77499 5.58889 8.76388C5.6 8.75277 5.60739 8.73888 5.61111 8.72221L5.66111 8.3861H5.99444C6.01294 8.3861 6.02778 8.38055 6.03889 8.36943C6.05183 8.35832 6.05833 8.34349 6.05833 8.32499V8.23055C6.05833 8.21205 6.05183 8.19721 6.03889 8.1861C6.02778 8.17499 6.01294 8.16943 5.99444 8.16943H5.69444L5.76667 7.68055H6.06667C6.08517 7.68055 6.1 7.67499 6.11111 7.66388C6.12406 7.65277 6.13056 7.63793 6.13056 7.61943V7.52499C6.13056 7.50649 6.12406 7.49166 6.11111 7.48055C6.1 7.46943 6.08517 7.46388 6.06667 7.46388H5.79722L5.84722 7.12777C5.84905 7.1111 5.84444 7.09721 5.83333 7.0861C5.82222 7.07499 5.80833 7.06943 5.79167 7.06943H5.68889C5.67222 7.06943 5.65833 7.07499 5.64722 7.0861C5.63794 7.09721 5.6315 7.1111 5.62778 7.12777L5.57778 7.46388H5.16667L5.21667 7.12777C5.2185 7.1111 5.21389 7.09721 5.20278 7.0861C5.19167 7.07499 5.17778 7.06943 5.16111 7.06943H5.05833C5.04167 7.06943 5.02778 7.07499 5.01667 7.0861C5.00739 7.09721 5.00094 7.1111 4.99722 7.12777L4.94722 7.46388H4.60555C4.58705 7.46388 4.57222 7.46943 4.56111 7.48055C4.55 7.49166 4.54444 7.50649 4.54444 7.52499V7.61943C4.54444 7.63793 4.55 7.65277 4.56111 7.66388C4.57222 7.67499 4.58705 7.68055 4.60555 7.68055H4.91389L4.84167 8.16943H4.53333C4.51483 8.16943 4.5 8.17499 4.48889 8.1861C4.47778 8.19721 4.47222 8.21205 4.47222 8.23055V8.32499C4.47222 8.34349 4.47778 8.35832 4.48889 8.36943C4.5 8.38055 4.51483 8.3861 4.53333 8.3861H4.80833L4.75833 8.72221C4.7565 8.73888 4.76111 8.75277 4.77222 8.76388ZM6.34239 8.87221C6.3535 8.88332 6.3665 8.88888 6.38128 8.88888H6.52294C6.5415 8.88888 6.55628 8.88427 6.56739 8.87499C6.58039 8.86388 6.58872 8.85277 6.59239 8.84166L6.74517 8.44721H7.65628L7.80905 8.84166C7.81278 8.85277 7.82017 8.86388 7.83128 8.87499C7.84239 8.88427 7.85817 8.88888 7.8785 8.88888H8.02017C8.035 8.88888 8.04794 8.88332 8.05906 8.87221C8.07017 8.8611 8.07572 8.84816 8.07572 8.83332L8.07017 8.80277L7.38406 7.00555C7.36928 6.96482 7.33961 6.94443 7.29517 6.94443H7.10628C7.06183 6.94443 7.03222 6.96482 7.01739 7.00555L6.3285 8.80277C6.32667 8.80832 6.32572 8.81849 6.32572 8.83332C6.32572 8.84816 6.33128 8.8611 6.34239 8.87221ZM8.38939 8.87221C8.40239 8.88332 8.41811 8.88888 8.43661 8.88888H8.58383C8.60239 8.88888 8.61811 8.88332 8.63106 8.87221C8.64406 8.85927 8.6505 8.84349 8.6505 8.82499V8.13055H9.14217C9.35328 8.13055 9.51811 8.08054 9.63661 7.98054C9.757 7.87871 9.81717 7.73149 9.81717 7.53888C9.81717 7.34627 9.757 7.19904 9.63661 7.09721C9.51628 6.99538 9.35144 6.94443 9.14217 6.94443H8.43661C8.41811 6.94443 8.40239 6.95093 8.38939 6.96388C8.37828 6.97499 8.37272 6.99071 8.37272 7.0111V8.82499C8.37272 8.84349 8.37828 8.85927 8.38939 8.87221ZM10.5966 8.87221C10.6096 8.88332 10.6253 8.88888 10.6438 8.88888H10.7883C10.8068 8.88888 10.8226 8.88332 10.8355 8.87221C10.8485 8.85927 10.8549 8.84349 10.8549 8.82499V7.19166H11.3855C11.4041 7.19166 11.4198 7.1861 11.4327 7.17499C11.4457 7.16205 11.4522 7.14627 11.4522 7.12777V7.0111C11.4522 6.99071 11.4457 6.97499 11.4327 6.96388C11.4216 6.95093 11.4059 6.94443 11.3855 6.94443H10.0466C10.0281 6.94443 10.0124 6.95093 9.99939 6.96388C9.98828 6.97682 9.98272 6.9926 9.98272 7.0111V7.12777C9.98272 7.14627 9.98828 7.16205 9.99939 7.17499C10.0124 7.1861 10.0281 7.19166 10.0466 7.19166H10.5799V8.82499C10.5799 8.84349 10.5855 8.85927 10.5966 8.87221ZM11.7803 8.87221C11.7932 8.88332 11.8089 8.88888 11.8275 8.88888H11.9747C11.9932 8.88888 12.0081 8.88332 12.0192 8.87221C12.0321 8.85927 12.0386 8.84349 12.0386 8.82499V7.00832C12.0386 6.98982 12.0321 6.97499 12.0192 6.96388C12.0081 6.95093 11.9932 6.94443 11.9747 6.94443H11.8275C11.8089 6.94443 11.7932 6.95093 11.7803 6.96388C11.7692 6.97499 11.7636 6.98982 11.7636 7.00832V8.82499C11.7636 8.84349 11.7692 8.85927 11.7803 8.87221ZM12.6564 8.71666C12.7861 8.84999 12.975 8.91666 13.2231 8.91666C13.3879 8.91666 13.5278 8.88793 13.6426 8.83055C13.7574 8.77127 13.8444 8.69443 13.9037 8.59999C13.9629 8.50554 13.9953 8.40371 14.0009 8.29443C14.0028 8.27777 13.9972 8.26482 13.9842 8.25555C13.9731 8.24443 13.9592 8.23888 13.9426 8.23888H13.7898C13.7713 8.23888 13.7564 8.24349 13.7453 8.25277C13.7342 8.26204 13.7259 8.27871 13.7203 8.30277C13.6907 8.44166 13.6342 8.53982 13.5509 8.59721C13.4694 8.65277 13.3602 8.68055 13.2231 8.68055C12.9046 8.68055 12.7398 8.50371 12.7287 8.14999C12.7268 8.09627 12.7259 8.0176 12.7259 7.91388C12.7259 7.81016 12.7268 7.73332 12.7287 7.68332C12.7398 7.3296 12.9046 7.15277 13.2231 7.15277C13.3602 7.15277 13.4694 7.18149 13.5509 7.23888C13.6324 7.29443 13.6889 7.39166 13.7203 7.53055C13.7296 7.57316 13.7528 7.59443 13.7898 7.59443H13.9426C13.9574 7.59443 13.9703 7.58982 13.9814 7.58055C13.9944 7.56943 14.0009 7.55649 14.0009 7.54166V7.5361C13.9953 7.42871 13.9629 7.32777 13.9037 7.23332C13.8444 7.13888 13.7574 7.06293 13.6426 7.00555C13.5278 6.94627 13.3879 6.91666 13.2231 6.91666C12.9768 6.91666 12.7889 6.98427 12.6592 7.11943C12.5296 7.25277 12.4602 7.4361 12.4509 7.66943C12.4491 7.72127 12.4481 7.8046 12.4481 7.91943C12.4481 8.03238 12.4491 8.11388 12.4509 8.16388C12.4602 8.39904 12.5287 8.58332 12.6564 8.71666ZM4.25 11C4.11193 11 4 11.1119 4 11.25C4 11.3881 4.11193 11.5 4.25 11.5H12.7259C12.864 11.5 12.9759 11.3881 12.9759 11.25C12.9759 11.1119 12.864 11 12.7259 11H4.25ZM16.6144 11.9418H16.0068C16.0133 12.1185 16.0594 12.249 16.1451 12.3333C16.2321 12.4177 16.3749 12.4598 16.5735 12.4598C16.702 12.4598 16.8163 12.4398 16.9163 12.3996L17 12.9398C16.8273 12.9799 16.6566 13 16.4878 13C16.1373 13 15.8575 12.9063 15.6485 12.7189C15.4408 12.5315 15.3317 12.2724 15.3213 11.9418H15V11.6205H15.3213V11.3755H15V11.0562H15.3272C15.3518 10.7242 15.4726 10.4652 15.6894 10.2791C15.9062 10.093 16.1925 10 16.5482 10C16.6858 10 16.8364 10.0207 17 10.0622L16.9163 10.6044C16.815 10.5629 16.7066 10.5422 16.591 10.5422C16.4119 10.5422 16.2749 10.5843 16.1801 10.6687C16.0854 10.7517 16.0295 10.8809 16.0127 11.0562H16.6144V11.3755H16.0068V11.6205H16.6144V11.9418ZM9.12828 7.89721C9.2635 7.89721 9.36533 7.86666 9.43383 7.80554C9.50422 7.74443 9.53939 7.65554 9.53939 7.53888C9.53939 7.42221 9.50517 7.33332 9.43661 7.27221C9.36811 7.20927 9.26533 7.17777 9.12828 7.17777H8.64772V7.89721H9.12828ZM7.20072 7.22221L7.57572 8.20832H6.82572L7.20072 7.22221ZM5.54444 7.68055L5.47222 8.16943H5.06389L5.13611 7.68055H5.54444ZM19.75 6C19.6119 6 19.5 6.11193 19.5 6.25V6.75C19.5 6.88807 19.6119 7 19.75 7C19.8881 7 20 6.88807 20 6.75V6.25C20 6.11193 19.8881 6 19.75 6ZM19.5 8.25C19.5 8.11193 19.6119 8 19.75 8C19.8881 8 20 8.11193 20 8.25V10.75C20 10.8881 19.8881 11 19.75 11C19.6119 11 19.5 10.8881 19.5 10.75V8.25ZM19.75 12C19.6119 12 19.5 12.1119 19.5 12.25V13.75C19.5 13.8881 19.6119 14 19.75 14C19.8881 14 20 13.8881 20 13.75V12.25C20 12.1119 19.8881 12 19.75 12Z" - fill="#333333" /> - </symbol> - - <symbol id="scan" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> - <rect x="3" y="1" width="4" height="1" stroke="none" /> - <rect x="3" y="20" width="4" height="1" stroke="none" /> - <rect x="3" y="21" width="4" height="1" transform="rotate(-90 3 21)" stroke="none" /> - <rect x="3" y="5" width="4" height="1" transform="rotate(-90 3 5)" stroke="none" /> - <rect x="18" y="5" width="4" height="1" transform="rotate(-90 18 5)" stroke="none" /> - <rect x="18" y="21" width="4" height="1" transform="rotate(-90 18 21)" stroke="none" /> - <rect x="15" y="1" width="4" height="1" stroke="none" /> - <rect x="15" y="20" width="4" height="1" stroke="none" /> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M6 5C6 4.44772 6.44772 4 7 4H13V6C13 6.55228 13.4477 7 14 7H16V17C16 17.5523 15.5523 18 15 18H7C6.44772 18 6 17.5523 6 17V5ZM8.5 8C8.22386 8 8 8.22386 8 8.5C8 8.77614 8.22386 9 8.5 9H11.5C11.7761 9 12 8.77614 12 8.5C12 8.22386 11.7761 8 11.5 8H8.5ZM8 11.5C8 11.2239 8.22386 11 8.5 11H13.5C13.7761 11 14 11.2239 14 11.5C14 11.7761 13.7761 12 13.5 12H8.5C8.22386 12 8 11.7761 8 11.5ZM8.5 14C8.22386 14 8 14.2239 8 14.5C8 14.7761 8.22386 15 8.5 15H13.5C13.7761 15 14 14.7761 14 14.5C14 14.2239 13.7761 14 13.5 14H8.5Z" - stroke="none" /> - </symbol> - - <symbol id="network" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> - <g clip-path="url(#clip0)"> - <circle cx="11" cy="11" r="2.5" stroke="#333333" /> - <circle cx="11" cy="3.43506" r="1.5" stroke="#333333" /> - <path d="M11 4.93506V8.93506" stroke="#333333" /> - <circle r="1.5" transform="matrix(1 0 0 -1 11 18.4351)" stroke="#333333" /> - <path d="M11 16.9351V12.9351" stroke="#333333" /> - <circle cx="18.5" cy="10.9351" r="1.5" transform="rotate(90 18.5 10.9351)" stroke="#333333" /> - <path d="M17 10.9351L13 10.9351" stroke="#333333" /> - <circle r="1.5" transform="matrix(4.37114e-08 1 1 -4.37114e-08 3.5 10.9351)" stroke="#333333" /> - <path d="M5 10.9351L9 10.9351" stroke="#333333" /> - <circle cx="16.3047" cy="5.63171" r="1.5" transform="rotate(45 16.3047 5.63171)" stroke="#333333" /> - <path d="M15.2422 6.69238L12.4138 9.52081" stroke="#333333" /> - <circle r="1.5" transform="matrix(0.707107 0.707107 0.707107 -0.707107 5.69561 16.2383)" stroke="#333333" /> - <path d="M6.75781 15.1777L9.58624 12.3492" stroke="#333333" /> - <circle cx="16.3044" cy="16.2383" r="1.5" transform="rotate(135 16.3044 16.2383)" stroke="#333333" /> - <path d="M15.2422 15.1777L12.4138 12.3492" stroke="#333333" /> - <circle r="1.5" transform="matrix(-0.707107 0.707107 0.707107 0.707107 5.69531 5.63171)" stroke="#333333" /> - <path d="M6.75781 6.69238L9.58624 9.52081" stroke="#333333" /> - </g> - <defs> - <clipPath id="clip0"> - <rect width="22" height="22" fill="white" /> - </clipPath> - </defs> - </symbol> - <symbol id="facebook" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect width="30" height="30" rx="15" fill="#F4F4F4" /> <path fill-rule="evenodd" clip-rule="evenodd" @@ -319,24 +167,6 @@ fill="#696969" /> </symbol> - <symbol id="public" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> - <path - d="M13.0474 10.437C14.2168 9.73893 15 8.46093 15 7C15 4.79086 13.2091 3 11 3C8.79086 3 7 4.79086 7 7C7 8.46093 7.7832 9.73893 8.95263 10.437C7.21207 11.2192 6 12.9681 6 15V18H16V15C16 12.9681 14.7879 11.2192 13.0474 10.437Z" - fill="#333333" /> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M16.917 14H21V11.8C21 10.3099 20.1516 9.02743 18.9332 8.45382C19.7518 7.94188 20.3 7.00468 20.3 5.93333C20.3 4.3133 19.0464 3 17.5 3C16.542 3 15.6963 3.50407 15.1915 4.27286C15.7028 5.05718 16 5.99389 16 7C16 7.44599 15.9416 7.87827 15.832 8.28963C15.9075 8.34834 15.9858 8.40316 16.0668 8.45382C15.9493 8.50916 15.8352 8.57108 15.725 8.63916C15.5088 9.26223 15.173 9.82915 14.7453 10.3124C15.8722 11.214 16.6677 12.514 16.917 14ZM14.9929 7.24086C14.9976 7.16118 15 7.08087 15 7C15 6.48461 14.9025 5.99199 14.725 5.53957C14.7085 5.66836 14.7 5.79981 14.7 5.93333C14.7 6.40316 14.8054 6.84718 14.9929 7.24086ZM15.9 14H14V11.8C14 11.5447 14.0249 11.2955 14.0723 11.055C14.9949 11.7745 15.6585 12.8106 15.9 14Z" - fill="#333333" /> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M6.80852 4.27286C6.30371 3.50407 5.45804 3 4.5 3C2.9536 3 1.7 4.3133 1.7 5.93333C1.7 7.00468 2.24824 7.94188 3.06684 8.45382C1.84845 9.02743 1 10.3099 1 11.8V14H5.08296C5.33228 12.514 6.12778 11.214 7.25473 10.3124C6.82705 9.82915 6.49117 9.26223 6.27499 8.63916C6.16478 8.57108 6.05069 8.50916 5.93316 8.45382C6.01417 8.40316 6.09253 8.34834 6.16797 8.28963C6.05843 7.87827 6 7.44599 6 7C6 5.99389 6.29717 5.05718 6.80852 4.27286ZM7.9277 11.055C7.0051 11.7745 6.34145 12.8106 6.10002 14H8V11.8C8 11.5447 7.9751 11.2955 7.9277 11.055ZM7.27499 5.53957C7.29148 5.66836 7.3 5.79981 7.3 5.93333C7.3 6.40316 7.19457 6.84718 7.00713 7.24086C7.0024 7.16118 7 7.08087 7 7C7 6.48461 7.09747 5.99199 7.27499 5.53957Z" - fill="#333333" /> - </symbol> - - <symbol id="structure" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M11 3C11.2228 3.00746 11.4372 3.08448 11.612 3.21953L11.6211 3.21857L11.6971 3.28918L18.6775 9.0457C18.6952 9.06031 18.7119 9.07606 18.7275 9.09284C18.8592 9.23463 18.9477 9.40976 18.983 9.59841C19.0181 9.78692 18.9987 9.9816 18.9268 10.1599C18.8549 10.3383 18.7333 10.4933 18.5761 10.6073C18.4187 10.7214 18.232 10.7899 18.037 10.8052C18.0232 10.8063 18.0092 10.8068 17.9953 10.8068H17.2786L17.3466 17.9693L17.3466 17.974C17.3466 18.246 17.2364 18.5068 17.0402 18.6991C16.844 18.8913 16.5779 18.9994 16.3003 18.9994H13.1615C12.884 18.9994 12.6178 18.8913 12.4216 18.6991C12.2254 18.5068 12.1152 18.246 12.1152 17.974V14.493C12.1152 14.4908 12.1152 14.4886 12.1152 14.4864C12.1152 14.4837 12.1153 14.481 12.1154 14.4783C12.1389 13.6731 12.0857 13.088 11.9055 12.7135C11.8228 12.5416 11.7197 12.4288 11.5913 12.3537C11.4661 12.2806 11.2814 12.2228 11 12.2171V12.2177C10.7186 12.2234 10.5339 12.2812 10.4087 12.3543C10.2803 12.4294 10.1772 12.5422 10.0945 12.7141C9.91426 13.0886 9.86107 13.6737 9.88462 14.4789C9.88469 14.4815 9.88475 14.4841 9.88478 14.4867C9.88481 14.489 9.88483 14.4913 9.88483 14.4936V17.9746C9.88483 18.2466 9.77456 18.5074 9.57838 18.6997C9.38219 18.8919 9.11604 19 8.83854 19H5.69966C5.42215 19 5.156 18.8919 4.95982 18.6997C4.76364 18.5074 4.65336 18.2466 4.65336 17.9746L4.65339 17.9699L4.72135 10.8074H4.00466C3.99075 10.8074 3.97684 10.8069 3.96298 10.8058C3.76805 10.7905 3.58128 10.722 3.42389 10.6079C3.26667 10.4939 3.14509 10.3389 3.07317 10.1605C3.0013 9.9822 2.98192 9.78752 3.01705 9.599C3.0523 9.41035 3.14082 9.23522 3.27253 9.09344C3.28812 9.07666 3.30483 9.06091 3.32255 9.04629L10.3029 3.28978L10.3789 3.21917L10.388 3.22013C10.5628 3.08508 10.7772 3.00806 11 3.0006V3Z" - fill="#333333" /> - </symbol> - <symbol id="tel" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> <path d="M14.4979 12.1969L11.9719 14.7228L6.92 9.67091L9.44596 7.14494C9.74589 6.84502 9.74589 6.35946 9.44596 6.0603L5.61061 2.22494C5.31068 1.92502 4.82512 1.92502 4.52597 2.22494L2 4.75091C2 13.2401 8.40121 19.6428 16.8919 19.6428L19.4179 17.1169C19.7178 16.8169 19.7178 16.3314 19.4179 16.0322L15.5825 12.1969C15.2834 11.8977 14.7971 11.8977 14.4979 12.1969Z" @@ -394,8 +224,7 @@ <rect x="21.25" y="16.25" width="0.5" height="3" fill="#333333" /> </symbol> - <symbol id="modifyStructure" width="32" height="32" viewBox="0 0 32 32" fill="none" - xmlns="http://www.w3.org/2000/svg"> + <symbol id="modifyStructure" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6712_5383)"> <path d="M6.34589 21.7013L5.48826 26.3588C5.48826 26.7088 5.76325 26.9837 6.11324 26.9837L10.7707 26.1261C10.9332 26.1261 11.0957 26.0636 11.2082 25.9386L24.361 12.7984L19.6737 8.11108L6.53339 21.2513C6.40839 21.3763 6.34589 21.5263 6.34589 21.7013Z" @@ -431,12 +260,6 @@ stroke-linejoin="round" /> </symbol> - <symbol id="services" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"> - <path - d="M26.1416 18.2344C26.3994 18.349 26.4854 18.5495 26.3994 18.8359C25.9124 20.3542 25.1247 21.7005 24.0361 22.875C23.8643 23.0755 23.6637 23.1185 23.4346 23.0039L21.5869 21.9297C20.8135 22.5885 19.9398 23.0898 18.9658 23.4336V25.5391C18.9658 25.8255 18.8369 25.9974 18.5791 26.0547C17.0036 26.3984 15.4424 26.3984 13.8955 26.0547C13.609 25.9974 13.4658 25.8255 13.4658 25.5391V23.4336C12.4919 23.0898 11.6182 22.5885 10.8447 21.9297L9.04004 23.0039C8.78223 23.1185 8.56738 23.0755 8.39551 22.875C7.30697 21.7005 6.51921 20.3542 6.03223 18.8359C5.94629 18.5781 6.03223 18.3776 6.29004 18.2344L8.09473 17.1602C8.00879 16.6732 7.96582 16.1719 7.96582 15.6562C7.96582 15.1406 8.00879 14.6393 8.09473 14.1523L6.29004 13.0781C6.03223 12.9635 5.94629 12.763 6.03223 12.4766C6.51921 10.9583 7.30697 9.61198 8.39551 8.4375C8.56738 8.23698 8.78223 8.20833 9.04004 8.35156L10.8447 9.38281C11.6182 8.72396 12.4919 8.22266 13.4658 7.87891V5.77344C13.4658 5.48698 13.5947 5.3151 13.8525 5.25781C15.4281 4.91406 17.0036 4.91406 18.5791 5.25781C18.8369 5.3151 18.9658 5.48698 18.9658 5.77344V7.87891C19.9398 8.22266 20.8135 8.72396 21.5869 9.38281L23.3916 8.30859C23.6494 8.19401 23.8643 8.23698 24.0361 8.4375C25.1247 9.61198 25.9124 10.9583 26.3994 12.4766C26.4854 12.763 26.3994 12.9635 26.1416 13.0781L24.3369 14.1523C24.5088 15.1549 24.5088 16.1576 24.3369 17.1602L26.1416 18.2344ZM13.7666 18.1055C14.4541 18.7643 15.2705 19.0938 16.2158 19.0938C17.1611 19.0938 17.9632 18.7643 18.6221 18.1055C19.3096 17.418 19.6533 16.6016 19.6533 15.6562C19.6533 14.7109 19.3096 13.9089 18.6221 13.25C17.9632 12.5625 17.1611 12.2188 16.2158 12.2188C15.2705 12.2188 14.4541 12.5625 13.7666 13.25C13.1077 13.9089 12.7783 14.7109 12.7783 15.6562C12.7783 16.6016 13.1077 17.418 13.7666 18.1055Z" - fill="black" /> - </symbol> - <symbol id="print" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"> <rect x="10" y="8" width="12" height="5" stroke-width="2" fill="none" /> <rect x="10" y="17" width="12" height="8" stroke-width="2" fill="none" /> @@ -450,36 +273,6 @@ <rect x="9" y="21" width="14" height="1.5" rx="0.75" fill="#333333" /> </symbol> - <symbol id="news-location" viewBox="0 0 29 31" xmlns="http://www.w3.org/2000/svg"> - <path d="M13.8789 7.40777L13.8789 1.18555" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M13.3789 3.44639V1.86578C13.3665 1.85795 13.3533 1.84995 13.3392 1.84189C13.2087 1.76732 13.0017 1.68555 12.7122 1.68555C12.4228 1.68555 12.2158 1.76732 12.0853 1.84189C12.0712 1.84995 12.058 1.85795 12.0456 1.86578V3.44639C12.2373 3.38974 12.4598 3.35221 12.7122 3.35221C12.9647 3.35221 13.1872 3.38974 13.3789 3.44639Z" /> - <path - d="M11.0469 2.81338V4.39398C11.0345 4.40181 11.0212 4.40981 11.0071 4.41787C10.8766 4.49245 10.6696 4.57422 10.3802 4.57422C10.0908 4.57422 9.88378 4.49245 9.75328 4.41787C9.73917 4.40981 9.72592 4.40181 9.71354 4.39398V2.81338C9.90529 2.87003 10.1278 2.90755 10.3802 2.90755C10.6326 2.90755 10.8551 2.87003 11.0469 2.81338Z" /> - <path d="M4.34813 13.1299L14.2096 7.21298L24.0711 13.1299H4.34813Z" /> - <path - d="M3.04297 14.1299H25.3763V14.1854C25.3763 14.4616 25.1524 14.6854 24.8763 14.6854H3.54297C3.26683 14.6854 3.04297 14.4616 3.04297 14.1854V14.1299Z" - stroke-width="0.777778" /> - <path d="M3.04297 27.3521H25.3763V27.9076H3.04297V27.3521Z" stroke-width="0.777778" /> - <path d="M0.710938 29.6855H27.7109V30.2411H0.710938V29.6855Z" stroke-width="0.777778" /> - <rect x="5.37891" y="16.4634" width="1.33333" height="9.11111" /> - <rect x="10.8203" y="16.4634" width="1.33333" height="9.11111" /> - <rect x="16.2656" y="16.4634" width="1.33333" height="9.11111" /> - <rect x="21.7109" y="16.4634" width="1.33333" height="9.11111" /> - </symbol> - - <symbol id="news-public" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"> - <path - d="M23.5985 23.9446C24.6326 23.3273 25.3251 22.1973 25.3251 20.9055C25.3251 18.9522 23.7416 17.3687 21.7882 17.3687C19.8349 17.3687 18.2514 18.9522 18.2514 20.9055C18.2514 22.1973 18.9439 23.3273 19.9779 23.9446C18.4389 24.6362 17.3672 26.1825 17.3672 27.9792V29.5265H26.2093V27.9792C26.2093 26.1825 25.1376 24.6362 23.5985 23.9446Z" - stroke="none" /> - <path - d="M11.4423 23.9446C12.4763 23.3273 13.1688 22.1973 13.1688 20.9055C13.1688 18.9522 11.5853 17.3687 9.63199 17.3687C7.67865 17.3687 6.09515 18.9522 6.09515 20.9055C6.09515 22.1973 6.78766 23.3273 7.82169 23.9446C6.28266 24.6362 5.21094 26.1825 5.21094 27.9792V29.5265H14.053V27.9792C14.053 26.1825 12.9813 24.6362 11.4423 23.9446Z" - stroke="none" /> - <path - d="M16.9696 9.5759C18.0037 8.95863 18.6962 7.82861 18.6962 6.53684C18.6962 4.5835 17.1127 3 15.1593 3C13.206 3 11.6225 4.5835 11.6225 6.53684C11.6225 7.82861 12.315 8.95863 13.349 9.5759C11.81 10.2675 10.7383 11.8139 10.7383 13.6105V15.1579H19.5804V13.6105C19.5804 11.8139 18.5087 10.2675 16.9696 9.5759Z" - stroke="none" /> - </symbol> - <symbol id="news-header" viewBox="0 0 89 88" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M63.5 72H27.0391C29.1476 70.3259 30.5 67.7505 30.5 64.8571V17H70.5V65C70.5 68.866 67.3659 72 63.5 72Z" stroke="#828282" stroke-width="2" /> @@ -494,27 +287,6 @@ <rect x="34.5" y="24" width="32" height="20" rx="2" fill="#BDBDBD" /> </symbol> - - - <symbol id="calendar" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> - <path d="M8 10H5V13H8V10Z" fill="#333333" /> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M6 2C5.44772 2 5 2.44772 5 3V4H3C2.44772 4 2 4.44772 2 5V19C2 19.5523 2.44772 20 3 20H19C19.5523 20 20 19.5523 20 19V5C20 4.44772 19.5523 4 19 4H17V3C17 2.44772 16.5523 2 16 2C15.4477 2 15 2.44772 15 3V4H7V3C7 2.44772 6.55229 2 6 2ZM4 9V18H18V9H4Z" - fill="#333333" /> - </symbol> - - <symbol id="group" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> - <path - d="M13.0474 10.437C14.2168 9.73893 15 8.46093 15 7C15 4.79086 13.2091 3 11 3C8.79086 3 7 4.79086 7 7C7 8.46093 7.7832 9.73893 8.95263 10.437C7.21207 11.2192 6 12.9681 6 15V18H16V15C16 12.9681 14.7879 11.2192 13.0474 10.437Z" - fill="#333333" /> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M16.917 14H21V11.8C21 10.3099 20.1516 9.02743 18.9332 8.45382C19.7518 7.94188 20.3 7.00468 20.3 5.93333C20.3 4.3133 19.0464 3 17.5 3C16.542 3 15.6963 3.50407 15.1915 4.27286C15.7028 5.05718 16 5.99389 16 7C16 7.44599 15.9416 7.87827 15.832 8.28963C15.9075 8.34834 15.9858 8.40316 16.0668 8.45382C15.9493 8.50916 15.8352 8.57108 15.725 8.63916C15.5088 9.26223 15.173 9.82915 14.7453 10.3124C15.8722 11.214 16.6677 12.514 16.917 14ZM14.9929 7.24086C14.9976 7.16118 15 7.08087 15 7C15 6.48461 14.9025 5.99199 14.725 5.53957C14.7085 5.66836 14.7 5.79981 14.7 5.93333C14.7 6.40316 14.8054 6.84718 14.9929 7.24086ZM15.9 14H14V11.8C14 11.5447 14.0249 11.2955 14.0723 11.055C14.9949 11.7745 15.6585 12.8106 15.9 14Z" - fill="#333333" /> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M6.80852 4.27286C6.30371 3.50407 5.45804 3 4.5 3C2.9536 3 1.7 4.3133 1.7 5.93333C1.7 7.00468 2.24824 7.94188 3.06684 8.45382C1.84845 9.02743 1 10.3099 1 11.8V14H5.08296C5.33228 12.514 6.12778 11.214 7.25473 10.3124C6.82705 9.82915 6.49117 9.26223 6.27499 8.63916C6.16478 8.57108 6.05069 8.50916 5.93316 8.45382C6.01417 8.40316 6.09253 8.34834 6.16797 8.28963C6.05843 7.87827 6 7.44599 6 7C6 5.99389 6.29717 5.05718 6.80852 4.27286ZM7.9277 11.055C7.0051 11.7745 6.34145 12.8106 6.10002 14H8V11.8C8 11.5447 7.9751 11.2955 7.9277 11.055ZM7.27499 5.53957C7.29148 5.66836 7.3 5.79981 7.3 5.93333C7.3 6.40316 7.19457 6.84718 7.00713 7.24086C7.0024 7.16118 7 7.08087 7 7C7 6.48461 7.09747 5.99199 7.27499 5.53957Z" - fill="#333333" /> - </symbol> - <symbol id="mdm" viewBox="0 0 19 24" xmlns="http://www.w3.org/2000/svg"> <mask id="path-1-outside-1" maskUnits="userSpaceOnUse" x="0" y="-0.108661" width="19" height="24" fill="black"> <rect fill="white" y="-0.108661" width="19" height="24" /> @@ -529,14 +301,6 @@ stroke="none" /> </symbol> - <symbol id="mdm" viewBox="0 0 18 24" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M0 23.1087V7.95171C0 6.54134 0.84652 5.26877 2.1473 4.72368L3.5337 4.14271C3.83675 4.01572 4.11179 3.83024 4.34309 3.59687L7.17458 0.740107C8.17647 -0.270723 9.81889 -0.242424 10.7854 0.802322L13.3026 3.52342C13.5613 3.80309 13.8805 4.01994 14.2359 4.15738L15.7627 4.74798C17.1111 5.26956 18 6.56652 18 8.01228V23.1087H10V18.1087C10 17.5564 9.55229 17.1087 9 17.1087C8.44772 17.1087 8 17.5564 8 18.1087V23.1087H0ZM10.5 22.6087V18.1087C10.5 17.2802 9.82843 16.6087 9 16.6087C8.17157 16.6087 7.5 17.2802 7.5 18.1087V22.6087H0.5V7.95171C0.5 6.74282 1.22559 5.65205 2.34054 5.18483L3.72694 4.60386C4.0906 4.45147 4.42065 4.22889 4.69821 3.94885L7.5297 1.09209C8.33121 0.283422 9.64515 0.306061 10.4183 1.14186L12.9355 3.86296C13.246 4.19857 13.6291 4.45878 14.0555 4.62371L15.5823 5.21431C16.7381 5.66137 17.5 6.77306 17.5 8.01228V22.6087H10.5Z" - fill="white" /> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M2.34054 5.18483C1.22559 5.65205 0.5 6.74282 0.5 7.95171V22.6087L7.5 22.6087V18.1087C7.5 17.2802 8.17157 16.6087 9 16.6087C9.82843 16.6087 10.5 17.2802 10.5 18.1087V22.6087L17.5 22.6087V8.01228C17.5 6.77306 16.7381 5.66137 15.5823 5.21431L14.0555 4.62371C13.6291 4.45877 13.246 4.19856 12.9355 3.86296L10.4183 1.14186C9.64515 0.306061 8.33121 0.283422 7.5297 1.09209L4.69821 3.94885C4.42065 4.22889 4.0906 4.45147 3.72694 4.60386L2.34054 5.18483ZM10.5 4.10866C10.5 4.93709 9.82843 5.60866 9 5.60866C8.17157 5.60866 7.5 4.93709 7.5 4.10866C7.5 3.28023 8.17157 2.60866 9 2.60866C9.82843 2.60866 10.5 3.28023 10.5 4.10866ZM3.75 15.544C3.04057 15.6631 2.5 16.2801 2.5 17.0233V18.3587H3.75V15.544ZM2.5 21.5233V18.8587H3.75V21.5233H2.5ZM4.25 21.5233V18.8587H5.5V21.5233H4.25ZM5.5 17.0233V18.3587H4.25V15.544C4.95943 15.6631 5.5 16.2801 5.5 17.0233ZM12.5 17.0233C12.5 16.2801 13.0406 15.6631 13.75 15.544V18.3587H12.5V17.0233ZM12.5 18.8587V21.5233H13.75V18.8587H12.5ZM14.25 18.8587V21.5233H15.5V18.8587H14.25ZM15.5 18.3587V17.0233C15.5 16.2801 14.9594 15.6631 14.25 15.544V18.3587H15.5ZM13.75 7.60866C13.0406 7.72768 12.5 8.34467 12.5 9.08792V10.4233H13.75V7.60866ZM12.5 13.5879V10.9233H13.75V13.5879H12.5ZM14.25 13.5879V10.9233H15.5V13.5879H14.25ZM15.5 9.08792V10.4233H14.25V7.60866C14.9594 7.72768 15.5 8.34467 15.5 9.08792ZM7.5 9.08792C7.5 8.34467 8.04057 7.72768 8.75 7.60866V10.4233H7.5V9.08792ZM7.5 10.9233V13.5879H8.75V10.9233H7.5ZM9.25 10.9233V13.5879H10.5V10.9233H9.25ZM10.5 10.4233V9.08792C10.5 8.34467 9.95943 7.72768 9.25 7.60866V10.4233H10.5ZM3.75 7.60866C3.04057 7.72768 2.5 8.34467 2.5 9.08792V10.4233H3.75V7.60866ZM2.5 13.5879V10.9233H3.75V13.5879H2.5ZM4.25 13.5879V10.9233H5.5V13.5879H4.25ZM5.5 9.08792V10.4233H4.25V7.60866C4.95943 7.72768 5.5 8.34467 5.5 9.08792Z" /> - </symbol> - <symbol id="mdmActive" viewBox="0 0 18 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0 23.1087V7.95171C0 6.54134 0.84652 5.26877 2.1473 4.72368L3.5337 4.14271C3.83675 4.01572 4.11179 3.83024 4.34309 3.59687L7.17458 0.740107C8.17647 -0.270723 9.81889 -0.242424 10.7854 0.802322L13.3026 3.52342C13.5613 3.80309 13.8805 4.01994 14.2359 4.15738L15.7627 4.74798C17.1111 5.26956 18 6.56652 18 8.01228V23.1087H10V18.1087C10 17.5564 9.55229 17.1087 9 17.1087C8.44772 17.1087 8 17.5564 8 18.1087V23.1087H0ZM10.5 22.6087V18.1087C10.5 17.2802 9.82843 16.6087 9 16.6087C8.17157 16.6087 7.5 17.2802 7.5 18.1087V22.6087H0.5V7.95171C0.5 6.74282 1.22559 5.65205 2.34054 5.18483L3.72694 4.60386C4.0906 4.45147 4.42065 4.22889 4.69821 3.94885L7.5297 1.09209C8.33121 0.283422 9.64515 0.306061 10.4183 1.14186L12.9355 3.86296C13.246 4.19857 13.6291 4.45878 14.0555 4.62371L15.5823 5.21431C16.7381 5.66137 17.5 6.77306 17.5 8.01228V22.6087H10.5Z" @@ -546,14 +310,7 @@ fill="#ED3939" /> </symbol> - <symbol id="mdmHover" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M15 35.1087V19.9517C15 18.5413 15.8465 17.2688 17.1473 16.7237L18.5337 16.1427C18.8367 16.0157 19.1118 15.8302 19.3431 15.5969L22.1746 12.7401C23.1765 11.7293 24.8189 11.7576 25.7854 12.8023L28.3026 15.5234C28.5613 15.8031 28.8805 16.0199 29.2359 16.1574L30.7627 16.748C32.1111 17.2696 33 18.5665 33 20.0123V35.1087H25V30.1087C25 29.5564 24.5523 29.1087 24 29.1087C23.4477 29.1087 23 29.5564 23 30.1087V35.1087H15ZM25.5 34.6087V30.1087C25.5 29.2802 24.8284 28.6087 24 28.6087C23.1716 28.6087 22.5 29.2802 22.5 30.1087V34.6087H15.5V19.9517C15.5 18.7428 16.2256 17.652 17.3405 17.1848L18.7269 16.6039C19.0906 16.4515 19.4206 16.2289 19.6982 15.9488L22.5297 13.0921C23.3312 12.2834 24.6451 12.3061 25.4183 13.1419L27.9355 15.863C28.246 16.1986 28.6291 16.4588 29.0555 16.6237L30.5823 17.2143C31.7381 17.6614 32.5 18.7731 32.5 20.0123V34.6087H25.5Z" - fill="white" /> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M17.3405 17.1848C16.2256 17.652 15.5 18.7428 15.5 19.9517V34.6087L22.5 34.6087V30.1087C22.5 29.2802 23.1716 28.6087 24 28.6087C24.8284 28.6087 25.5 29.2802 25.5 30.1087V34.6087L32.5 34.6087V20.0123C32.5 18.7731 31.7381 17.6614 30.5823 17.2143L29.0555 16.6237C28.6291 16.4588 28.246 16.1986 27.9355 15.863L25.4183 13.1419C24.6451 12.3061 23.3312 12.2834 22.5297 13.0921L19.6982 15.9488C19.4206 16.2289 19.0906 16.4515 18.7269 16.6039L17.3405 17.1848ZM25.5 16.1087C25.5 16.9371 24.8284 17.6087 24 17.6087C23.1716 17.6087 22.5 16.9371 22.5 16.1087C22.5 15.2802 23.1716 14.6087 24 14.6087C24.8284 14.6087 25.5 15.2802 25.5 16.1087ZM18.75 27.544C18.0406 27.6631 17.5 28.2801 17.5 29.0233V30.3587H18.75V27.544ZM17.5 33.5233V30.8587H18.75V33.5233H17.5ZM19.25 33.5233V30.8587H20.5V33.5233H19.25ZM20.5 29.0233V30.3587H19.25V27.544C19.9594 27.6631 20.5 28.2801 20.5 29.0233ZM27.5 29.0233C27.5 28.2801 28.0406 27.6631 28.75 27.544V30.3587H27.5V29.0233ZM27.5 30.8587V33.5233H28.75V30.8587H27.5ZM29.25 30.8587V33.5233H30.5V30.8587H29.25ZM30.5 30.3587V29.0233C30.5 28.2801 29.9594 27.6631 29.25 27.544V30.3587H30.5ZM28.75 19.6087C28.0406 19.7277 27.5 20.3447 27.5 21.0879V22.4233H28.75V19.6087ZM27.5 25.5879V22.9233H28.75V25.5879H27.5ZM29.25 25.5879V22.9233H30.5V25.5879H29.25ZM30.5 21.0879V22.4233H29.25V19.6087C29.9594 19.7277 30.5 20.3447 30.5 21.0879ZM22.5 21.0879C22.5 20.3447 23.0406 19.7277 23.75 19.6087V22.4233H22.5V21.0879ZM22.5 22.9233V25.5879H23.75V22.9233H22.5ZM24.25 22.9233V25.5879H25.5V22.9233H24.25ZM25.5 22.4233V21.0879C25.5 20.3447 24.9594 19.7277 24.25 19.6087V22.4233H25.5ZM18.75 19.6087C18.0406 19.7277 17.5 20.3447 17.5 21.0879V22.4233H18.75V19.6087ZM17.5 25.5879V22.9233H18.75V25.5879H17.5ZM19.25 25.5879V22.9233H20.5V25.5879H19.25ZM20.5 21.0879V22.4233H19.25V19.6087C19.9594 19.7277 20.5 20.3447 20.5 21.0879Z" - fill="#BD9E6A" /> - </symbol> + <symbol id="user-location" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg"> <circle cx="17" cy="17" r="16.5" fill="#ED3939" fill-opacity="0.15" stroke="white" /> @@ -614,90 +371,25 @@ fill="#010176" /> </symbol> - <symbol id="borne" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> - <rect x="5" width="12" height="9" rx="1" stroke-width="1.9" fill="none" /> - <path d="M6 14H16L14.6364 22H7.36364L6 14Z" /> - <path - d="M5.04692 10.1658C5.12212 10.0617 5.24275 10 5.37119 10H16.6288C16.7573 10 16.8779 10.0617 16.9531 10.1658L18.542 12.3658C18.733 12.6303 18.544 13 18.2177 13H3.7823C3.45599 13 3.26698 12.6303 3.45803 12.3658L5.04692 10.1658Z" - stroke="none" /> - </symbol> - - <symbol id="wifi" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> - <path - d="M1.08488 8.63175C3.61838 6.09825 7.11838 4.53125 10.9844 4.53125C14.8504 4.53125 18.3504 6.09825 20.8839 8.63175L19.4697 10.046C17.2981 7.87439 14.2981 6.53125 10.9844 6.53125C7.67066 6.53125 4.67066 7.8744 2.49909 10.046L1.08488 8.63175Z" - stroke="none" /> - <path - d="M1.20434 28.5488C3.72784 31.0128 7.17878 32.5312 10.9844 32.5312C14.7486 32.5312 18.1658 31.0457 20.6818 28.6288C20.0912 29.196 19.4494 29.7127 18.7624 30.1718C16.4601 31.7102 13.7533 32.5312 10.9844 32.5312C8.21543 32.5312 5.50867 31.7102 3.20639 30.1718C2.48717 29.6913 1.81751 29.1474 1.20434 28.5488Z" - stroke="none" /> - <path - d="M18.0554 11.4602C16.2458 9.65054 13.7458 8.53125 10.9844 8.53125C8.22295 8.53125 5.72295 9.65054 3.91331 11.4602L5.32752 12.8744C6.77523 11.4267 8.77523 10.5312 10.9844 10.5312C13.1935 10.5312 15.1935 11.4267 16.6412 12.8744L18.0554 11.4602Z" - stroke="none" /> - <path - d="M15.227 14.2886C14.1412 13.2028 12.6412 12.5312 10.9844 12.5312C9.32752 12.5312 7.82752 13.2028 6.74173 14.2886L8.15595 15.7028C8.8798 14.979 9.8798 14.5312 10.9844 14.5312C12.0889 14.5312 13.0889 14.979 13.8128 15.7028L15.227 14.2886Z" - stroke="none" /> - <path - d="M12.3986 17.117C12.0367 16.7551 11.5367 16.5312 10.9844 16.5312C10.4321 16.5312 9.93209 16.7551 9.57016 17.117L10.9844 18.5312L12.3986 17.117Z" - stroke="none" /> - </symbol> - - <symbol id="moreOpts" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M11 7.66675C12.1 7.66675 13 6.76675 13 5.66675C13 4.56675 12.1 3.66675 11 3.66675C9.9 3.66675 9 4.56675 9 5.66675C9 6.76675 9.9 7.66675 11 7.66675ZM11 9.66675C9.9 9.66675 9 10.5667 9 11.6667C9 12.7667 9.9 13.6667 11 13.6667C12.1 13.6667 13 12.7667 13 11.6667C13 10.5667 12.1 9.66675 11 9.66675ZM9 17.6667C9 16.5667 9.9 15.6667 11 15.6667C12.1 15.6667 13 16.5667 13 17.6667C13 18.7667 12.1 19.6667 11 19.6667C9.9 19.6667 9 18.7667 9 17.6667Z" - stroke="none" /> - </symbol> - - <symbol id="camera" width="100" height="113" viewBox="0 0 100 113" fill="none" xmlns="http://www.w3.org/2000/svg"> - <rect width="100" height="113" rx="12" fill="#F8F8F8" /> - <path d="M27 11H15C13.8954 11 13 11.8954 13 13V25" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round" /> - <path d="M27 100H15C13.8954 100 13 99.1046 13 98V86" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round" /> - <path d="M73 11H85C86.1046 11 87 11.8954 87 13V25" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round" /> - <path d="M73 100H85C86.1046 100 87 99.1046 87 98V86" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round" /> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M61.1175 39.1429H72.7941C75.6692 39.1429 78 41.5002 78 44.4082V70.7347C78 73.6426 75.6692 76 72.7941 76H24.2059C21.3308 76 19 73.6426 19 70.7347V44.4082C19 41.5002 21.3308 39.1429 24.2059 39.1429H36.7502C37.8558 35.5825 41.1444 33 45.0294 33H52.8382C56.7232 33 60.0119 35.5825 61.1175 39.1429ZM49.5 70C56.9558 70 63 63.9558 63 56.5C63 49.0442 56.9558 43 49.5 43C42.0442 43 36 49.0442 36 56.5C36 63.9558 42.0442 70 49.5 70Z" - fill="#C4C4C4" /> - <circle cx="49.5" cy="56.5" r="10.5" fill="#BDBDBD" /> - </symbol> - - <symbol id="locateMe" width="25" height="34" viewBox="0 0 24 27" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M15.5591 23.2986C19.8303 19.413 23.125 16.4157 23.125 11.5C23.125 5.14873 17.9763 0 11.625 0C5.27373 0 0.125 5.14873 0.125 11.5C0.125 16.6933 2.79938 19.0768 7.87479 23.6001C9.00649 24.6087 10.2576 25.7237 11.625 27C12.9811 25.6439 14.3117 24.4334 15.5591 23.2986ZM11.625 16C14.1103 16 16.125 13.9853 16.125 11.5C16.125 9.01472 14.1103 7 11.625 7C9.13972 7 7.125 9.01472 7.125 11.5C7.125 13.9853 9.13972 16 11.625 16Z" - fill="#828282" /> - </symbol> - - <symbol id="passNumeric" width="25" height="45" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M1.875 9.49658H35.875V14.8452C34.0229 15.5776 32.7128 17.3841 32.7128 19.4966C32.7128 21.6091 34.0229 23.4157 35.875 24.148V29.4966H1.875V24.148C3.72706 23.4157 5.03717 21.6091 5.03717 19.4966C5.03717 17.3841 3.72706 15.5776 1.875 14.8452V9.49658Z" - fill="white" /> - <path - d="M35.875 9.49658H36.525C36.525 9.1376 36.234 8.84658 35.875 8.84658V9.49658ZM1.875 9.49658V8.84658C1.51601 8.84658 1.225 9.1376 1.225 9.49658H1.875ZM35.875 14.8452L36.114 15.4497C36.3621 15.3516 36.525 15.1119 36.525 14.8452H35.875ZM35.875 24.148H36.525C36.525 23.8813 36.3621 23.6417 36.114 23.5436L35.875 24.148ZM35.875 29.4966V30.1466C36.234 30.1466 36.525 29.8556 36.525 29.4966H35.875ZM1.875 29.4966H1.225C1.225 29.8556 1.51601 30.1466 1.875 30.1466L1.875 29.4966ZM1.875 24.148L1.63598 23.5436C1.38794 23.6417 1.225 23.8813 1.225 24.148H1.875ZM1.875 14.8452H1.225C1.225 15.1119 1.38794 15.3516 1.63598 15.4497L1.875 14.8452ZM35.875 8.84658H1.875V10.1466H35.875V8.84658ZM36.525 14.8452V9.49658H35.225V14.8452H36.525ZM33.3628 19.4966C33.3628 17.6598 34.5016 16.0873 36.114 15.4497L35.636 14.2407C33.5443 15.0679 32.0628 17.1084 32.0628 19.4966H33.3628ZM36.114 23.5436C34.5016 22.906 33.3628 21.3335 33.3628 19.4966H32.0628C32.0628 21.8848 33.5443 23.9254 35.636 24.7525L36.114 23.5436ZM36.525 29.4966V24.148H35.225V29.4966H36.525ZM1.875 30.1466H35.875V28.8466H1.875V30.1466ZM1.225 24.148V29.4966H2.525V24.148H1.225ZM4.38717 19.4966C4.38717 21.3335 3.24841 22.906 1.63598 23.5436L2.11402 24.7525C4.20571 23.9254 5.68717 21.8848 5.68717 19.4966H4.38717ZM1.63598 15.4497C3.24841 16.0873 4.38717 17.6597 4.38717 19.4966H5.68717C5.68717 17.1084 4.20571 15.0679 2.11402 14.2407L1.63598 15.4497ZM1.225 9.49658V14.8452H2.525V9.49658H1.225Z" - fill="#4F4F4F" /> - <line x1="28.6031" y1="10.1466" x2="28.6031" y2="28.8466" stroke="#4F4F4F" stroke-width="1.3" stroke-linecap="round" - stroke-dasharray="2 3" /> - <line x1="10.0176" y1="19.9287" x2="20.0176" y2="19.9287" stroke="#348899" stroke-width="2" - stroke-linecap="round" /> - <line x1="10.0176" y1="24.9287" x2="16.0176" y2="24.9287" stroke="#348899" stroke-width="2" - stroke-linecap="round" /> - </symbol> - <symbol id="search" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> <path d="M15.4996 14H14.7096L14.4296 13.73C15.6296 12.33 16.2496 10.42 15.9096 8.39C15.4396 5.61 13.1196 3.39 10.3196 3.05C6.08965 2.53 2.52965 6.09 3.04965 10.32C3.38965 13.12 5.60965 15.44 8.38965 15.91C10.4196 16.25 12.3296 15.63 13.7296 14.43L13.9996 14.71V15.5L18.2496 19.75C18.6596 20.16 19.3296 20.16 19.7396 19.75C20.1496 19.34 20.1496 18.67 19.7396 18.26L15.4996 14ZM9.49965 14C7.00965 14 4.99965 11.99 4.99965 9.5C4.99965 7.01 7.00965 5 9.49965 5C11.9896 5 13.9996 7.01 13.9996 9.5C13.9996 11.99 11.9896 14 9.49965 14Z" fill="currentColor" stroke-width="1" stroke-linecap="round" /> </symbol> - <symbol id="tagDelete" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="tagDelete" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M6.5 6.5L15.5 15.5" stroke="#BDBDBD" stroke-width="1.5" stroke-linecap="round" /> <path d="M15.5 6.5L6.5 15.5" stroke="#BDBDBD" stroke-width="1.5" stroke-linecap="round" /> </symbol> - <symbol id="tagReset" width="26" height="26" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M7.04307 8H7V14H13V13.9569L7.04307 8Z" fill="#696969" /> + <symbol id="refresh" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path - d="M10.3738 21.6869C11.5497 22.8501 13.0573 23.6202 14.6889 23.8913C16.3206 24.1623 17.9962 23.9209 19.485 23.2004C20.9738 22.4798 22.2027 21.3155 23.0025 19.8676C23.8023 18.4198 24.1336 16.7597 23.9509 15.1158C23.7683 13.4719 23.0805 11.925 21.9824 10.6881C20.8843 9.45121 19.4297 8.58509 17.819 8.20897C16.2083 7.83285 14.5207 7.96523 12.9883 8.58789C11.456 9.21054 10.1543 10.2929 9.26242 11.6859" - stroke="#696969" stroke-width="1.5" /> + d="M17.65 6.35C16.2 4.9 14.21 4 12 4C7.58001 4 4.01001 7.58 4.01001 12C4.01001 16.42 7.58001 20 12 20C15.73 20 18.84 17.45 19.73 14H17.65C16.83 16.33 14.61 18 12 18C8.69001 18 6.00001 15.31 6.00001 12C6.00001 8.69 8.69001 6 12 6C13.66 6 15.14 6.69 16.22 7.78L13 11H20V4L17.65 6.35Z" + fill="currentColor" /> + </symbol> - <symbol id="rdv" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="rdv" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M3 7H19V16C19 17.6569 17.6569 19 16 19H6C4.34315 19 3 17.6569 3 16V7Z" fill="white" /> <path d="M8.30078 13.1664L10.5756 15.1605L14.1502 10.7734" stroke="#333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /> @@ -707,13 +399,13 @@ <rect x="15" y="2" width="1" height="3" rx="0.5" fill="#333333" /> </symbol> - <symbol id="rdvDetail" width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="rdvDetail" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.8092 9.33333V4M21.4759 9.33333V4M9.47591 14.6667H22.8092M6.80924 28H25.4759C26.9487 28 28.1426 26.8061 28.1426 25.3333V9.33333C28.1426 7.86057 26.9487 6.66667 25.4759 6.66667H6.80924C5.33649 6.66667 4.14258 7.86057 4.14258 9.33333V25.3333C4.14258 26.8061 5.33649 28 6.80924 28Z" stroke="#333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /> </symbol> - <symbol id="closeModal" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="closeModal" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M27.0279 11.9135C27.5486 11.3928 28.2873 11.2873 28.6778 11.6778C29.0683 12.0683 28.9628 12.807 28.4421 13.3277L13.3572 28.4127C12.8365 28.9334 12.0978 29.0389 11.7072 28.6484C11.3167 28.2578 11.4222 27.5192 11.9429 26.9985L27.0279 11.9135Z" fill="#333333" /> @@ -722,53 +414,12 @@ fill="#333333" /> </symbol> - <symbol id="arrowBackSmall" width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="arrowBackSmall" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M15.8332 9.1666H6.5249L10.5916 5.09993C10.9166 4.77494 10.9166 4.2416 10.5916 3.9166C10.2666 3.5916 9.74157 3.5916 9.41657 3.9166L3.9249 9.40827C3.5999 9.73327 3.5999 10.2583 3.9249 10.5833L9.41657 16.0749C9.74157 16.3999 10.2666 16.3999 10.5916 16.0749C10.9166 15.7499 10.9166 15.2249 10.5916 14.8999L6.5249 10.8333H15.8332C16.2916 10.8333 16.6666 10.4583 16.6666 9.99994C16.6666 9.5416 16.2916 9.1666 15.8332 9.1666Z" fill="#333333" /> </symbol> - <symbol id="structureAvatar" fill="none" width="52" height="52" xmlns="http://www.w3.org/2000/svg" - viewBox="0 0 52 52"> - <path d="M0 4a4 4 0 0 1 4-4h44a4 4 0 0 1 4 4v44a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V4Z" fill="#fff" /> - <path - d="M7.4 34.5c-.5.3-.5.8 0 1L24 45.4a2 2 0 0 0 2 0l17.6-10.2c.5-.3.5-.8 0-1l-16.8-9.8c-.5-.3-1.3-.3-1.9 0L7.4 34.5Z" - fill="#DA3635" /> - <path d="M38.2 19.7v14.8l-13 7.4V27.1l13-7.4Z" fill="#fff" /> - <path d="M38.2 19.7v14.8l-13 7.4V27.1l13-7.4Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="m25.3 27-13-7.3 13-7.5 13 7.5-13 7.4Z" fill="#fff" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="m25.3 26-11-6.3 11-6.3 11 6.3-11 6.3Z" fill="#fff" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M12.4 19.7v14.8l12.9 7.4V27.1l-13-7.4Z" fill="#fff" /> - <path d="M12.4 19.7v14.8l12.9 7.4V27.1l-13-7.4Z" fill="#BDBDBD" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="m25.3 10.5 13 7.5-13 7.4-13-7.4 13-7.5Zm11 7.5-11-6.3-11 6.3 11 6.3 11-6.3Z" fill="#fff" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M38.2 18v2.6l-13 7.4v-2.6l13-7.4Z" fill="#fff" /> - <path d="M38.2 20.6V18l-13 7.4V28" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M25.3 25.4v2.5l-13-7.4V18l13 7.4Z" fill="#BDBDBD" /> - <path d="M25.3 27.9v-2.5l-13-7.4v2.5" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M25.3 11.7v1.7l-9.5 5.4-1.5-.8 11-6.3Z" fill="#fff" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path - d="m36.3 18-11-6.3v1.7l9.5 5.4 1.5-.8ZM29 28.2l.1 11.6 6-3.4V24.8l-6 3.4ZM18 24.8v4.6l-3.3-1.9V23l3.3 2ZM23 27.6V32l-3.4-1.9v-4.5l3.3 1.9ZM18 31.1v4.6l-3.4-1.9v-4.6l3.4 2ZM22.9 33.9v4.5l-3.3-1.9V32l3.3 2Z" - fill="#fff" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="m38.2 18-13 7.6" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M24.9 25.1 12 17.8l13.3-8 12.8 7.4-13.3 8Z" fill="#E9E9E9" /> - <path d="M25.6 10.1a.5.5 0 0 1 .5.9l-.5-.9Zm-13.1 8.2a.5.5 0 1 1-.5-1l.5 1Zm-.5-1 13.6-7.2.5.9-13.6 7.3-.5-1Z" - fill="#706F6F" /> - <path - d="M38.2 17a.5.5 0 0 1-.5.8l.5-.9Zm-12.4-6.1a.5.5 0 1 1 .5-1l-.5 1Zm11.9 6.9-12-7 .6-.8 11.9 7-.5.8ZM25.2 25.3a.5.5 0 0 1-.5.9l.5-.9Zm-12.9-6.6a.5.5 0 1 1 .5-.8l-.5.8Zm12.4 7.5-12.4-7.5.5-.8 12.4 7.4-.5.9Z" - fill="#706F6F" /> - <path d="M26 27.8 16 16.1l16-8.2 9.6 11-15.5 9Z" fill="#fff" stroke="#696969" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="m8.6 17.8 7.5-1.7 16-8.2L23 9.6 8.6 17.8Z" fill="#E9E9E9" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="m8.6 17.8 8-1.7 9.5 11.7-17.5-10Z" fill="#BDBDBD" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - </symbol> - <symbol id="profile" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M16 32C7.15594 32 0 24.8334 0 16C0 7.15594 7.16655 0 16 0C24.8441 0 32 7.16656 32 16C32.0106 24.8441 24.8441 32 16 32Z" @@ -781,1946 +432,255 @@ stroke="#333333" /> </symbol> - <symbol id="toastError" width="40" height="41" viewBox="0 0 40 41" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path - d="M26.8169 11.4821C27.3593 10.9397 28.2738 10.9749 28.8596 11.5607C29.4454 12.1464 29.4806 13.061 28.9382 13.6034L13.2247 29.3169C12.6823 29.8593 11.7677 29.8241 11.1819 29.2383C10.5962 28.6525 10.561 27.738 11.1034 27.1956L26.8169 11.4821Z" - fill="#FF0000" /> - <path - d="M28.8169 27.5179C29.3593 28.0603 29.3241 28.9749 28.7383 29.5607C28.1525 30.1464 27.2379 30.1816 26.6955 29.6392L10.9821 13.9257C10.4397 13.3833 10.4748 12.4688 11.0606 11.883C11.6464 11.2972 12.561 11.262 13.1034 11.8044L28.8169 27.5179Z" - fill="#FF0000" /> + <symbol id="searchPrintMarker" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M12.3519 15.8973C14.9053 13.5588 16.875 11.7548 16.875 8.7963C16.875 4.97377 13.797 1.875 10 1.875C6.20304 1.875 3.125 4.97377 3.125 8.7963C3.125 11.9219 4.72381 13.3564 7.75803 16.0788C8.43459 16.6858 9.18252 17.3569 10 18.125C10.8107 17.3088 11.6062 16.5803 12.3519 15.8973ZM10 11.5046C11.4858 11.5046 12.6902 10.2921 12.6902 8.7963C12.6902 7.30053 11.4858 6.08796 10 6.08796C8.51423 6.08796 7.30978 7.30053 7.30978 8.7963C7.30978 10.2921 8.51423 11.5046 10 11.5046Z" + stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" /> </symbol> - <symbol id="toastSuccess" width="40" height="41" viewBox="0 0 40 41" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M10 21.1364L17.3889 27.5L23.1944 20.5L29 13.5" stroke="#47C562" stroke-width="3" stroke-linecap="round" - stroke-linejoin="round" /> + <symbol id="searchPrintStructure" viewBox="0 0 13 14" fill="none" xmlns="http://www.w3.org/2000/svg"> + <g clip-path="url(#clip0_10059_198649)"> + <path + d="M1.77283 5.40455L6.55919 1.68182L11.3456 5.40455V11.2546C11.3456 11.5366 11.2335 11.8072 11.034 12.0067C10.8346 12.2061 10.564 12.3182 10.2819 12.3182H2.83646C2.55437 12.3182 2.28383 12.2061 2.08436 12.0067C1.88489 11.8072 1.77283 11.5366 1.77283 11.2546V5.40455Z" + stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /> + <path d="M4.96375 12.3182V7H8.15465V12.3182" stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" + stroke-linejoin="round" /> + </g> + <defs> + <clipPath id="clip0_10059_198649"> + <rect width="13" height="13" fill="white" transform="translate(0 0.5)" /> + </clipPath> + </defs> </symbol> - <symbol id="warningMini" width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"> - <circle cx="8" cy="8.5" r="8" fill="#DA6C2E" /> - <path d="M8.15415 9.423L8.15415 4.19224" stroke="white" stroke-width="2" stroke-linecap="round" - stroke-linejoin="round" /> - <path d="M8.15417 13.1808L8.15418 12.8075" stroke="white" stroke-width="2" stroke-linecap="round" + <symbol id="arrowBack" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M20 11L11 20L20 29" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <line x1="12.5679" y1="20.0684" x2="29.8861" y2="20.0684" stroke="black" stroke-width="1.5" + stroke-linecap="round" /> </symbol> - - <symbol id="annuaireUnlogged" width="200" height="200" viewBox="0 0 200 200" fill="none" - xmlns="http://www.w3.org/2000/svg"> - <path - d="M142.603 137.347L160.313 147.345C166.65 150.922 166.706 156.799 160.439 160.417L104.045 192.976C97.8274 196.566 87.7464 196.566 81.5286 192.976L41.3924 169.804" - stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8" /> - <path - d="M66.5 94.4999L33.0409 74.8039C26.9259 71.2042 26.9744 65.4325 33.1496 61.8672L77.934 36.0109C84.1518 32.421 94.2329 32.421 100.451 36.0109L168.296 75.1812" - stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8" /> - <path - d="M87.3501 44.8181C88.2118 45.3162 88.2182 46.1259 87.3597 46.624L59.807 62.6264C58.9485 63.1245 57.5499 63.1245 56.6881 62.6264L27.6499 45.8721C26.7882 45.374 26.7818 44.5642 27.6403 44.0662L55.193 28.0637C56.0483 27.5657 57.4501 27.5657 58.3119 28.0637L87.3501 44.8181Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" /> - <path - d="M46.8908 38.1021C46.8618 38.1182 46.8362 38.1343 46.8072 38.1503C45.9358 38.703 45.9358 39.5578 46.8072 40.1073C47.4085 40.4864 48.2702 40.6343 49.0773 40.5507C49.193 40.5378 49.2798 40.6085 49.2252 40.6696C48.2702 41.7043 48.4631 42.9993 49.8072 43.9215C49.8843 43.9729 50.0226 43.9761 50.1062 43.9279L56.9453 39.9819C57.0289 39.9337 57.0257 39.8534 56.9357 39.8084C55.3441 39.0276 53.1093 38.9119 51.3184 39.4614C51.2123 39.4935 51.0933 39.4421 51.1126 39.3746C51.2508 38.9248 51.0226 38.446 50.4245 38.1021C49.4567 37.5366 47.8715 37.5366 46.8908 38.1021Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M65.8648 38.7255C66.0545 38.8348 66.0545 39.0115 65.868 39.1208L49.8232 48.4394C49.6367 48.5487 49.3281 48.5487 49.1384 48.4394C48.9487 48.3302 48.9519 48.1535 49.1384 48.0442L65.1831 38.7255C65.3696 38.6195 65.6751 38.6163 65.8648 38.7255Z" - fill="#706F6F" /> - <path - d="M56.5017 46.8715C56.6914 46.9807 56.6914 47.1575 56.5049 47.2667L52.3474 49.6832C52.1609 49.7924 51.8555 49.7924 51.6658 49.6832C51.476 49.5739 51.4728 49.3972 51.6625 49.2879L55.82 46.8715C56.0065 46.7622 56.3152 46.7622 56.5017 46.8715Z" - fill="#706F6F" /> - <path - d="M67.9773 40.2487C68.1671 40.3579 68.1638 40.5347 67.9773 40.6439L59.7299 45.435C59.5434 45.5443 59.2379 45.5443 59.0482 45.435C58.8585 45.3257 58.8585 45.149 59.045 45.0398L67.2925 40.2487C67.479 40.1394 67.7844 40.1362 67.9773 40.2487Z" - fill="#706F6F" /> - <path - d="M62.5434 51.2802C62.7781 51.4151 62.7813 51.6369 62.5466 51.775L59.1286 53.7609C58.8939 53.8958 58.5113 53.8958 58.2766 53.7609L54.8361 51.775C54.6014 51.6401 54.5982 51.4183 54.8329 51.2802L58.2509 49.2943C58.4856 49.1594 58.8682 49.1594 59.1029 49.2943L62.5434 51.2802Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" /> - <path - d="M67.9805 47.8771C68.2153 48.0121 68.2185 48.2338 67.9838 48.372L64.5658 50.3578C64.3311 50.4928 63.9484 50.4928 63.7137 50.3578L60.2732 48.372C60.0385 48.237 60.0353 48.0153 60.27 47.8771L63.688 45.8913C63.9227 45.7563 64.3053 45.7563 64.54 45.8913L67.9805 47.8771Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" /> - <path - d="M73.7201 44.3265C74.0577 44.5225 74.0609 44.8406 73.7233 45.0334L70.3053 47.0192C69.9709 47.2153 69.4211 47.2153 69.0835 47.0192L65.643 45.0334C65.3054 44.8374 65.3022 44.5225 65.6398 44.3265L69.0578 42.3406C69.3922 42.1446 69.942 42.1446 70.2796 42.3406L73.7201 44.3265Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" /> - <path - d="M60.0852 26.4489C60.4635 26.668 60.4678 27.0203 60.0895 27.2394L57.8798 28.524C57.5015 28.7431 56.891 28.7431 56.5127 28.524L54.2859 27.2394C53.9076 27.0203 53.9033 26.668 54.2816 26.4489L56.4913 25.1643C56.8696 24.9452 57.48 24.9452 57.8583 25.1643L60.0852 26.4489Z" - fill="#DA3635" /> - <path - d="M58.5455 26.6293C58.5756 26.6465 58.5928 26.6679 58.5971 26.6937C58.5928 26.7453 58.5197 26.7882 58.4337 26.7882H57.4149L57.3504 26.8226L57.3547 27.4112C57.3504 27.4627 57.2773 27.5057 57.1914 27.5057C57.1441 27.5057 57.1054 27.4971 57.0753 27.4799C57.0452 27.4628 57.028 27.437 57.028 27.4112L57.0237 26.8226L56.9592 26.7839H55.9403C55.8931 26.7839 55.8544 26.7754 55.8243 26.7582C55.7942 26.741 55.777 26.7152 55.777 26.6894C55.777 26.6379 55.8501 26.5949 55.9403 26.5949H56.9592L57.0237 26.5605V25.972C57.0237 25.9204 57.0968 25.8774 57.1871 25.8774C57.2343 25.8774 57.273 25.8903 57.3031 25.9075C57.3332 25.9247 57.3504 25.9462 57.3547 25.972V26.5605L57.4192 26.5992H58.438C58.4767 26.5992 58.5154 26.6121 58.5455 26.6293Z" - fill="white" /> - <path - d="M45.7227 53.7692C47.499 54.7931 47.5063 56.4537 45.7444 57.4811C43.9825 58.505 41.1136 58.505 39.3372 57.4811C37.5609 56.4573 37.5537 54.7967 39.3192 53.7692C41.0847 52.7418 43.95 52.7454 45.7227 53.7692Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" /> - <path - d="M78.7227 34.7692C80.499 35.7931 80.5063 37.4537 78.7444 38.4811C76.9825 39.505 74.1136 39.505 72.3372 38.4811C70.5609 37.4573 70.5537 35.7967 72.3192 34.7692C74.0847 33.7418 76.95 33.7454 78.7227 34.7692Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" /> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M92.0481 60.1646C91.7298 59.9452 91.3135 59.929 90.9791 60.123L16.2987 103.428C15.6638 103.796 15.6286 104.7 16.2329 105.117L61.2513 136.136C61.2513 136.136 61.2514 136.136 61.2515 136.136C61.2515 136.136 61.2516 136.136 61.2517 136.136L107.428 157.563C107.724 157.701 108.068 157.685 108.35 157.521L182.833 114.331C183.533 113.925 183.486 112.9 182.752 112.559L137.846 91.7207C137.846 91.7207 137.846 91.7207 137.846 91.7207V91.7206C137.846 91.7206 137.846 91.7205 137.846 91.7206C137.846 91.7206 137.846 91.7206 137.846 91.7206L92.0481 60.1646Z" - fill="white" /> - <path - d="M137.846 91.7206L137.562 92.1323L137.846 91.7206ZM137.846 91.7207L137.635 92.1743L137.846 91.7207ZM182.833 114.331L183.084 114.764L182.833 114.331ZM182.752 112.559L182.542 113.013L182.752 112.559ZM107.428 157.563L107.638 157.11L107.428 157.563ZM108.35 157.521L108.601 157.954L108.35 157.521ZM61.2517 136.136L61.4621 135.682L61.2517 136.136ZM61.2513 136.136L60.9676 136.547L61.2513 136.136ZM90.9791 60.123L91.2299 60.5555L90.9791 60.123ZM92.0481 60.1646L92.3318 59.7529L92.0481 60.1646ZM16.2329 105.117L15.9492 105.528L16.2329 105.117ZM16.5495 103.861L91.2299 60.5555L90.7283 59.6904L16.0479 102.995L16.5495 103.861ZM61.535 135.724L16.5166 104.705L15.9492 105.528L60.9676 136.547L61.535 135.724ZM107.638 157.11L61.4621 135.682L61.0412 136.589L107.217 158.017L107.638 157.11ZM182.582 113.899L108.1 157.089L108.601 157.954L183.084 114.764L182.582 113.899ZM137.635 92.1743L182.542 113.013L182.963 112.105L138.056 91.2672L137.635 92.1743ZM137.346 91.7206V91.7207H138.346V91.7206H137.346ZM91.7644 60.5763L137.562 92.1323L138.129 91.3088L92.3318 59.7529L91.7644 60.5763ZM137.598 91.2865C137.77 91.1877 137.977 91.2038 138.129 91.3088L137.562 92.1323C137.715 92.2374 137.921 92.2534 138.094 92.1547L137.598 91.2865ZM138.346 91.7206C138.346 91.3367 137.931 91.0959 137.598 91.2865L138.094 92.1547C137.761 92.3451 137.346 92.1045 137.346 91.7206H138.346ZM138.056 91.2672C138.233 91.3491 138.346 91.526 138.346 91.7207H137.346C137.346 91.9153 137.459 92.0923 137.635 92.1743L138.056 91.2672ZM183.084 114.764C184.134 114.155 184.063 112.616 182.963 112.105L182.542 113.013C182.909 113.183 182.932 113.696 182.582 113.899L183.084 114.764ZM107.217 158.017C107.661 158.223 108.178 158.199 108.601 157.954L108.1 157.089C107.959 157.171 107.786 157.178 107.638 157.11L107.217 158.017ZM61.505 136.567C61.358 136.653 61.1842 136.656 61.0412 136.589L61.4621 135.682C61.319 135.616 61.1451 135.618 60.998 135.705L61.505 136.567ZM60.9676 136.547C61.1277 136.658 61.3373 136.665 61.505 136.567L60.998 135.705C61.1655 135.606 61.3749 135.614 61.535 135.724L60.9676 136.547ZM91.2299 60.5555C91.3971 60.4585 91.6052 60.4666 91.7644 60.5763L92.3318 59.7529C91.8543 59.4238 91.2299 59.3995 90.7283 59.6904L91.2299 60.5555ZM16.0479 102.995C15.0955 103.548 15.0427 104.904 15.9492 105.528L16.5166 104.705C16.2144 104.497 16.232 104.045 16.5495 103.861L16.0479 102.995Z" - fill="#DA3635" /> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M93.2787 66.1783C92.9604 65.9589 92.5441 65.9427 92.2097 66.1366L24.8316 105.207C24.1967 105.575 24.1615 106.479 24.7659 106.896L64.8471 134.513C65.1654 134.732 65.5816 134.749 65.9161 134.555L133.294 95.484C133.929 95.1158 133.964 94.2119 133.36 93.7955L93.2787 66.1783ZM135.133 94.9109C134.837 94.7735 134.493 94.7892 134.21 94.9529L67.0302 133.909C66.3303 134.315 66.377 135.34 67.1109 135.681L107.098 154.236C107.394 154.374 107.738 154.358 108.02 154.194L175.2 115.239C175.9 114.833 175.853 113.807 175.12 113.466L135.133 94.9109Z" - fill="#EDEDED" /> - <path - d="M30.1357 104.232L90.864 69.0171C90.9506 68.9673 91.0688 68.9756 91.1987 69.0487L30.4704 104.263C30.3422 104.19 30.2223 104.182 30.1357 104.232Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M30.4703 104.263L91.1986 69.0486L92.6902 70.0735L31.9619 105.29L30.4703 104.263Z" fill="white" - stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M31.9369 104.523L92.6652 69.3079C92.6818 69.298 92.7018 69.2897 92.7218 69.2847L31.9918 104.499C31.9718 104.504 31.9535 104.513 31.9369 104.523Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M31.9386 103.69L92.6669 68.4755C92.6919 68.4606 92.7202 68.4522 92.7501 68.4473L32.0218 103.662C31.9919 103.667 31.9636 103.675 31.9386 103.69Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M31.9419 102.818L92.6685 67.6034C92.6952 67.5885 92.7235 67.5785 92.7568 67.5752L32.0285 102.79C31.9968 102.793 31.9669 102.803 31.9419 102.818Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <symbol id="structureCategory_privateLucrative" viewBox="0 0 52 52" fill="none" xmlns="http://www.w3.org/2000/svg"> + <rect width="52" height="52" rx="4" fill="white" /> <path - d="M31.9453 101.245L92.6736 66.0304C92.7552 65.9823 92.87 65.9906 92.9932 66.0603L32.2649 101.277C32.1418 101.205 32.0285 101.199 31.9453 101.245Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M69.1141 130.918L129.841 95.7034L129.846 95.7084L69.1191 130.923L69.1141 130.918Z" fill="white" - stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M69.119 130.923L129.846 95.7085H129.852L69.124 130.923H69.119Z" fill="white" stroke="#DA3635" + d="M7.32104 39.6816C6.79673 39.9831 6.79461 40.4777 7.31467 40.7791L24.0607 50.5117C24.5828 50.8152 25.4319 50.8131 25.9562 50.5117L43.6044 40.3227C44.1287 40.0213 44.1329 39.5288 43.6107 39.2253L26.8647 29.4927C26.3447 29.1912 25.4935 29.1912 24.9692 29.4927L7.32104 39.6816Z" + fill="#DFB74F" /> + <path d="M38.1703 24.863V39.6774L25.2197 47.0856V32.2691L38.1703 24.863Z" fill="white" /> + <path d="M38.1703 24.863V39.6774L25.2197 47.0856V32.2691L38.1703 24.863Z" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.2197 32.2692L12.2861 24.8525L25.2197 17.4294L38.1703 24.8631L25.2197 32.2692Z" fill="white" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M25.2112 31.1761L14.2071 24.8653L25.2112 18.5503L36.228 24.8738L25.2112 31.1761Z" fill="white" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M12.286 24.8528L12.2669 39.6777L25.2197 47.086V32.2695L12.286 24.8528Z" fill="white" /> + <path d="M12.286 24.8528L12.2669 39.6777L25.2197 47.086V32.2695L12.286 24.8528Z" fill="#BDBDBD" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> <path - d="M132.121 98.4875L71.3931 133.702C71.493 133.644 71.5545 133.521 71.5562 133.345C71.5562 133.264 71.5429 133.177 71.5179 133.091L132.246 97.8762C132.271 97.9626 132.285 98.049 132.285 98.1304C132.283 98.3048 132.221 98.4294 132.121 98.4875Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M106 148.5V144L166 109L168.5 114L108 149.5L106 148.5Z" fill="white" /> - <path - d="M168.851 114.705L108.122 149.92C108.217 149.865 108.272 149.739 108.257 149.564C108.234 149.272 108.029 148.945 107.745 148.784L168.473 113.569C168.759 113.73 168.962 114.057 168.986 114.35C168.999 114.524 168.946 114.651 168.851 114.705Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M107.745 148.784C108.031 148.945 108.234 149.272 108.257 149.564C108.282 149.875 108.092 150.031 107.833 149.912L71.518 133.091C71.5429 133.177 71.5563 133.264 71.5563 133.345C71.5546 133.697 71.3049 133.84 70.9969 133.662L67.2312 131.493C66.9233 131.315 66.6736 130.885 66.6752 130.533C66.6752 130.451 66.6902 130.38 66.7152 130.323L30.422 105.315C30.164 105.137 29.9759 104.763 30.0025 104.483C30.0275 104.219 30.2322 104.127 30.472 104.265L31.9619 105.29C31.8554 105.122 31.7938 104.925 31.8088 104.76C31.8221 104.616 31.892 104.526 31.9936 104.501C31.8687 104.325 31.7954 104.107 31.8121 103.928C31.8271 103.77 31.9086 103.679 32.0235 103.664C31.8837 103.483 31.7971 103.247 31.8154 103.056C31.8304 102.896 31.9136 102.805 32.0318 102.79C31.8887 102.607 31.8004 102.37 31.8188 102.177C31.8287 102.067 31.872 101.991 31.9353 101.948C31.8537 101.797 31.8088 101.629 31.8221 101.484C31.8454 101.232 32.0418 101.145 32.2699 101.277L68.9942 126.581L105.98 143.742C106.253 143.897 106.448 144.207 106.469 144.486C106.483 144.644 106.436 144.76 106.353 144.817C106.416 144.932 106.458 145.058 106.468 145.179C106.484 145.393 106.394 145.528 106.251 145.546C106.368 145.694 106.451 145.883 106.464 146.059C106.481 146.27 106.394 146.407 106.255 146.427C106.368 146.573 106.449 146.759 106.463 146.933C106.478 147.131 106.403 147.262 106.278 147.294C106.378 147.435 106.448 147.604 106.459 147.764C106.474 147.947 106.411 148.071 106.303 148.116L107.745 148.784Z" - fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M68.9893 126.581L129.718 91.3662L166.703 108.529L105.975 143.744L68.9893 126.581Z" fill="white" - stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M32.2649 101.277L92.9932 66.062L129.717 91.3662L68.9892 126.581L32.2649 101.277Z" fill="white" - stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M132.571 136.269C133.477 136.79 133.482 137.636 132.581 138.157L127.092 141.34C126.193 141.862 124.732 141.862 123.826 141.34L120.934 139.674L129.678 134.604L132.571 136.269Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M139.708 131.26C140.612 131.782 140.617 132.626 139.718 133.147L134.229 136.33C133.33 136.852 131.868 136.852 130.964 136.33L128.073 134.664L136.816 129.594L139.708 131.26Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M147.226 126.047C148.13 126.569 148.135 127.413 147.236 127.935L141.747 131.117C140.848 131.639 139.386 131.639 138.482 131.117L135.591 129.451L144.334 124.381L147.226 126.047Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M154.72 120.788C155.624 121.31 155.629 122.154 154.73 122.675L149.242 125.858C148.343 126.38 146.881 126.38 145.977 125.858L143.085 124.192L151.829 119.122L154.72 120.788Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M162.292 115.713C163.197 116.235 163.202 117.081 162.303 117.601L156.815 120.783C155.916 121.305 154.452 121.305 153.547 120.783L150.655 119.117L159.398 114.047L162.292 115.713Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M169.488 110.237C170.392 110.759 170.397 111.602 169.498 112.124L164.01 115.307C163.111 115.828 161.649 115.828 160.745 115.307L157.853 113.641L166.597 108.571L169.488 110.237Z" - fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M92.6487 75.7591C93.3749 75.3399 94.5521 75.3399 95.2783 75.7591L98.1088 77.3933C98.7516 77.7644 98.8354 78.3493 98.3071 78.7764L93.4469 82.7048C92.9725 83.0883 92.1203 83.2483 91.3459 83.0993L88.2927 82.5117C86.1133 85.4647 86.1133 88.8261 88.2927 91.7792L91.3459 91.1916C92.1203 91.0426 92.9725 91.2026 93.4469 91.5861L98.3071 95.5145C98.8354 95.9415 98.7516 96.5265 98.1088 96.8975L95.2783 98.5318C94.5521 98.951 93.3749 98.951 92.6487 98.5318L90.0192 97.0136C80.5794 91.5636 80.5794 82.7273 90.0192 77.2773L92.6487 75.7591Z" - fill="#DA3635" /> - <rect width="3.69092" height="31.2471" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 62.4653 92.2888)" - fill="#DA3635" /> - <rect width="3.69092" height="31.2471" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 57.9817 95.2778)" - fill="#DA3635" /> - <rect width="3.69092" height="9.39302" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 53 99.2632)" - fill="#DA3635" /> - <rect width="3.69092" height="9.39302" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 69.4397 109.725)" - fill="#DA3635" /> - <rect width="3.82749" height="3.69147" rx="1.84574" transform="matrix(0.866025 -0.5 0.866025 0.5 62.9635 105.808)" - fill="#DA3635" /> - <path - d="M141 108.504L141.104 108.683C141.567 109.482 142.467 109.92 143.381 109.791L143.569 109.765C144.38 109.65 145.177 110.044 145.579 110.758V110.758C145.848 111.234 146.301 111.579 146.831 111.711L150 112.5" - stroke="black" stroke-linecap="round" /> - <path - d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" - fill="white" /> - <path - d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" - fill="white" /> - <path - d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" - fill="white" /> - <path - d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" - fill="white" /> - <path - d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" - fill="white" /> - <path - d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" - fill="white" /> - <path - d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" - fill="white" /> - <path - d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" - fill="white" /> - <path - d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" - fill="white" /> - <path - d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" - fill="white" /> - <path - d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" - stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" - fill="white" /> - <path - d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" - fill="white" /> - <path - d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" - fill="white" /> - <path - d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" - fill="white" /> - <path - d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" - stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M125.581 78.234C125.066 78.411 124.696 78.7374 124.314 79.1025C123.866 79.5341 123.169 79.9324 122.892 80.5244C122.477 81.4261 122.267 83.0914 122.184 84.0761C122.062 85.2711 122.151 86.4662 122.25 87.6667C122.25 87.6667 122.223 88.4301 124.043 87.5173C124.043 87.5173 123.75 89.6251 124.795 89.9737C125.869 90.5656 126.981 90.3388 128.192 90.3388C129.509 90.3222 130.776 90.0622 131.312 88.7787C131.628 88.231 131.307 86.6045 131.307 86.6045C132.192 87.1245 133.376 86.1951 133.376 86.1951C133.603 84.4966 132.491 82.6931 131.866 81.1661C131.534 80.3695 131.152 79.7443 130.582 79.0859C130.355 78.8093 130.062 78.2561 129.785 78.0625C129.337 77.7139 129.664 77.8356 129.144 77.9573C128.07 78.2174 126.333 80.209 125.725 78.2506C125.736 78.2506 125.725 78.1842 125.581 78.234Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M125.736 78.2506C126.344 80.209 128.076 78.2174 129.155 77.9573C129.675 77.8356 129.343 77.7139 129.797 78.0625C130.073 78.2506 130.366 78.8093 130.593 79.0859C131.163 79.7443 131.545 80.3695 131.877 81.1661C132.502 82.6931 133.608 84.4966 133.387 86.1951C133.387 86.1951 132.209 87.1245 131.318 86.6045C131.318 86.6045 131.639 88.231 131.323 88.7787C130.787 90.0622 129.52 90.3222 128.203 90.3388C126.992 90.3388 125.88 90.5656 124.806 89.9737C123.761 89.6251 124.054 87.5173 124.054 87.5173C122.228 88.4301 122.261 87.6667 122.261 87.6667C122.156 86.4717 122.073 85.2767 122.195 84.0761C122.284 83.0859 122.488 81.4261 122.903 80.5244C123.18 79.9324 123.877 79.5341 124.325 79.1025C124.707 78.7374 125.072 78.3944 125.592 78.234C125.581 78.234 125.675 78.1786 125.736 78.2506Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" - fill="white" /> - <path - d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" - fill="#DA3635" /> - <path - d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" - stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path d="M122 80.4693L122.365 78.71L124.44 77.5039L126.149 78.0571L139.942 101.797L135.792 104.209L122 80.4693Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path d="M135.792 104.209L136.135 102.405L138.21 101.205L139.942 101.797L140.755 107.976L135.792 104.209Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M138.614 106.35L138.857 105.869C139.045 105.492 139.444 105.26 139.87 105.282L140.406 105.31L140.76 107.982L138.614 106.35Z" - fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path d="M124.44 77.5039L138.21 101.205L139.942 101.797L126.149 78.0571L124.44 77.5039Z" fill="white" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path d="M136.135 102.405L122.365 78.71L122 80.4693L135.792 104.209L136.135 102.405Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M122.903 87.4346C122.903 87.4346 124.707 87.1967 125.57 86.4056L124.956 85.2991C124.956 85.2991 123.357 85.9187 123.196 86.1455C123.036 86.3779 122.903 87.4346 122.903 87.4346Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M124.961 85.2989C124.961 85.2989 124.961 84.2975 125.348 83.9822C125.741 83.6724 125.348 84.718 125.348 84.718C125.348 84.718 126.272 83.9213 126.538 84.0043C126.803 84.0873 127.091 84.9504 127.008 85.3653C126.925 85.7802 125.719 86.2284 125.57 86.4054L124.961 85.2989Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M123.075 87.9048C123.075 87.9048 125.349 86.66 125.57 86.4055L124.956 85.2991C124.956 85.2991 123.639 85.7638 123.257 86.0847" - fill="white" /> - <path - d="M123.075 87.9048C123.075 87.9048 125.349 86.66 125.57 86.4055L124.956 85.2991C124.956 85.2991 123.639 85.7638 123.257 86.0847" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M131.821 84.6515C131.821 84.6515 129.592 84.1813 129.155 83.6335L130.355 85.9018C130.355 85.9018 131.152 86.7427 132.496 86.6044" - fill="white" /> - <path - d="M131.821 84.6515C131.821 84.6515 129.592 84.1813 129.155 83.6335L130.355 85.9018C130.355 85.9018 131.152 86.7427 132.496 86.6044" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path d="M129.575 81.3542C129.575 81.3542 130.333 84.0375 131.135 84.4856L129.575 81.3542Z" fill="white" /> - <path d="M129.575 81.3542C129.575 81.3542 130.333 84.0375 131.135 84.4856" stroke="#706F6F" stroke-miterlimit="10" - stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M180.108 74.1322C183.506 76.0828 183.52 79.2464 180.149 81.2038C176.779 83.1544 171.29 83.1544 167.892 81.2038C164.493 79.2533 164.48 76.0897 167.857 74.1322C171.235 72.1748 176.716 72.1817 180.108 74.1322Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" /> - <path - d="M63.8991 162.813L45.8808 152.411C45.5898 152.243 45.1113 152.243 44.8203 152.411L13.2624 170.75C13.1144 170.833 13.0453 170.947 13.0453 171.055L13.0404 173.019C13.0404 173.132 13.1144 173.241 13.2624 173.329L31.2807 183.732C31.5717 183.9 32.0501 183.9 32.3411 183.732L63.8991 165.393C64.0421 165.309 64.1161 165.201 64.1161 165.087L64.121 163.124C64.121 163.139 64.1161 163.154 64.1112 163.168C64.1358 163.04 64.0668 162.907 63.8991 162.813Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M62.5919 162.562L45.4319 152.653C45.1507 152.49 44.7019 152.49 44.4207 152.653L14.3622 170.118C14.2241 170.197 14.1551 170.306 14.1551 170.409L14.1501 172.279C14.1501 172.387 14.2192 172.491 14.3622 172.575L31.5223 182.484C31.8035 182.647 32.2523 182.647 32.5335 182.484L62.5919 165.018C62.73 164.939 62.7991 164.831 62.7991 164.727L62.804 162.858C62.804 162.873 62.7991 162.887 62.7991 162.902C62.8188 162.779 62.7547 162.656 62.5919 162.562Z" - fill="#EDEDED" /> - <path - d="M34.8074 128.015L36.4845 128C36.4154 128 36.3513 128.02 36.2822 128.054L34.6052 128.069C34.6693 128.035 34.7384 128.02 34.8074 128.015Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M15.117 168.698L13.4399 168.712C13.2476 168.712 13.0651 168.574 12.9812 168.333L14.6583 168.318C14.7421 168.56 14.9246 168.703 15.117 168.698Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M6.96854 144.982L5.2915 144.997L34.6052 128.074L36.2822 128.059L6.96854 144.982Z" fill="#706F6F" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M14.6582 168.323L12.9812 168.333L5.03992 145.846L6.72189 145.836L14.6582 168.323Z" fill="white" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M6.72194 145.836L5.0449 145.85C4.93146 145.525 5.03997 145.145 5.29153 145.002L6.96857 144.987C6.71701 145.13 6.6085 145.51 6.72194 145.836Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M36.2821 128.059C36.5336 127.916 36.8296 128.059 36.943 128.385L44.8794 150.872C44.9928 151.193 44.8843 151.572 44.6327 151.72L15.3191 168.644C15.0675 168.787 14.7716 168.644 14.6581 168.323L6.72178 145.836C6.60834 145.51 6.71685 145.131 6.96841 144.988L36.2821 128.059Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M36.0454 130.062C36.2822 129.924 36.5633 130.062 36.6669 130.367L44.1544 151.572C44.2629 151.878 44.1593 152.233 43.9226 152.371L16.281 168.333C16.0443 168.471 15.7631 168.333 15.6546 168.032L8.16711 146.827C8.0586 146.521 8.16218 146.161 8.40387 146.028L36.0454 130.062Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M62.9075 161.581L62.9026 163.455C62.9026 163.559 62.8335 163.667 62.6954 163.746L62.7004 161.872C62.8335 161.793 62.9026 161.69 62.9075 161.581Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M14.0515 171.046L14.0564 169.172C14.0564 169.28 14.1255 169.384 14.2685 169.468L14.2636 171.342C14.1206 171.263 14.0515 171.154 14.0515 171.046Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M62.6956 161.872L62.6907 163.751L32.5089 181.291L32.5138 179.417L62.6956 161.872Z" fill="white" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M31.4978 179.417L31.4928 181.291L14.2588 171.342L14.2637 169.468L31.4978 179.417Z" fill="white" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M32.5137 179.417L32.5088 181.291C32.2276 181.454 31.7738 181.454 31.4927 181.291L31.4976 179.417C31.7788 179.579 32.2326 179.579 32.5137 179.417Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M62.6957 161.285C62.9768 161.448 62.9768 161.709 62.7006 161.872L32.5188 179.412C32.2377 179.575 31.7839 179.575 31.5028 179.412L14.2687 169.463C13.9876 169.3 13.9876 169.039 14.2687 168.876L44.4505 151.336C44.7316 151.173 45.1854 151.173 45.4666 151.336L62.6957 161.285Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M49.7676 167.835C49.8267 167.869 49.8267 167.924 49.7676 167.963L43.2962 171.722C43.237 171.756 43.1383 171.756 43.0791 171.722L39.3847 169.591C39.3255 169.556 39.3255 169.502 39.3847 169.463L45.8561 165.704C45.9153 165.67 46.014 165.67 46.0731 165.704L49.7676 167.835Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M23.2578 136.785C23.4866 136.67 23.6186 136.47 23.5526 136.339C23.4866 136.207 23.2476 136.194 23.0187 136.309C22.7899 136.424 22.6579 136.623 22.7239 136.755C22.7899 136.886 23.0289 136.9 23.2578 136.785Z" - fill="#706F6F" /> - <path - d="M25.3172 172.328C25.2432 172.328 25.1741 172.313 25.1297 172.289L23.9805 171.623L26.0225 170.434C26.0669 170.409 26.136 170.395 26.2099 170.395C26.2839 170.395 26.353 170.409 26.3974 170.434L27.5466 171.1L25.5046 172.289C25.4602 172.313 25.3862 172.328 25.3172 172.328Z" - fill="white" /> - <path - d="M26.2001 170.641C26.2396 170.641 26.2643 170.651 26.2692 170.651L27.0535 171.105L25.3813 172.077C25.3764 172.081 25.3518 172.086 25.3123 172.086C25.2728 172.086 25.2482 172.077 25.2482 172.077L24.4639 171.623L26.136 170.651C26.141 170.646 26.1656 170.641 26.2001 170.641ZM26.2001 170.148C26.0867 170.148 25.9732 170.173 25.8894 170.222L23.7882 171.44C23.6155 171.539 23.6205 171.702 23.7931 171.8L25.0016 172.501C25.0854 172.55 25.1988 172.575 25.3123 172.575C25.4257 172.575 25.5392 172.55 25.623 172.501L27.7243 171.282C27.8969 171.184 27.892 171.021 27.7243 170.922L26.5158 170.222C26.427 170.173 26.3136 170.148 26.2001 170.148Z" - fill="#706F6F" /> - <path - d="M22.93 170.952C22.856 170.952 22.7869 170.937 22.7425 170.913L21.5933 170.247L24.972 168.279C25.0164 168.254 25.0854 168.239 25.1594 168.239C25.2334 168.239 25.3025 168.254 25.3469 168.279L26.4961 168.945L23.1174 170.913C23.073 170.937 23.004 170.952 22.93 170.952Z" - fill="white" /> - <path - d="M25.1545 168.486C25.194 168.486 25.2187 168.496 25.2187 168.496L26.0029 168.949L22.9941 170.7C22.9892 170.705 22.9645 170.71 22.925 170.71C22.8856 170.71 22.8609 170.7 22.8609 170.7L22.0767 170.247L25.0855 168.5C25.0953 168.491 25.12 168.486 25.1545 168.486ZM25.1545 167.992C25.0411 167.992 24.9276 168.017 24.8438 168.066L21.4058 170.064C21.2332 170.163 21.2381 170.325 21.4108 170.424L22.6192 171.125C22.708 171.174 22.8165 171.199 22.93 171.199C23.0434 171.199 23.1569 171.174 23.2407 171.125L26.6787 169.127C26.8513 169.028 26.8513 168.865 26.6787 168.767L25.4702 168.066C25.3814 168.017 25.268 167.992 25.1545 167.992Z" - fill="#706F6F" /> - <path - d="M20.5476 169.576C20.4736 169.576 20.4045 169.561 20.3552 169.536L19.2059 168.87L20.3453 168.205C20.3897 168.18 20.4588 168.165 20.5328 168.165C20.6068 168.165 20.6758 168.18 20.7202 168.205L21.8695 168.87L20.7251 169.536C20.6906 169.561 20.6216 169.576 20.5476 169.576Z" - fill="white" /> - <path - d="M20.5377 168.407C20.5771 168.407 20.6018 168.417 20.6018 168.417L21.3861 168.87L20.6117 169.319C20.6067 169.324 20.5821 169.329 20.5475 169.329C20.5081 169.329 20.4834 169.319 20.4834 169.319L19.6992 168.866L20.4686 168.417C20.4736 168.417 20.4982 168.407 20.5377 168.407ZM20.5377 167.914C20.4242 167.914 20.3108 167.938 20.2269 167.988L19.0234 168.688C18.8508 168.787 18.8557 168.949 19.0283 169.048L20.2368 169.748C20.3256 169.798 20.439 169.822 20.5475 169.822C20.661 169.822 20.7744 169.798 20.8583 169.748L22.0618 169.048C22.2345 168.949 22.2345 168.787 22.0618 168.688L20.8534 167.988C20.7646 167.938 20.6511 167.914 20.5377 167.914Z" - fill="#706F6F" /> - <path - d="M36.2032 160.48C36.1292 160.48 36.0602 160.465 36.0158 160.441L34.8616 159.775L36.0059 159.109C36.0503 159.084 36.1194 159.069 36.1933 159.069C36.2673 159.069 36.3364 159.084 36.3857 159.114L37.535 159.78L36.3956 160.445C36.3462 160.465 36.2772 160.48 36.2032 160.48Z" - fill="white" /> - <path - d="M36.1883 159.311C36.2278 159.311 36.2524 159.321 36.2573 159.321L37.0416 159.775L36.2721 160.224C36.2672 160.229 36.2426 160.233 36.2031 160.233C36.1636 160.233 36.139 160.224 36.139 160.224L35.3547 159.77L36.1291 159.321C36.1291 159.316 36.1538 159.311 36.1883 159.311ZM36.1883 158.818C36.0748 158.818 35.9614 158.843 35.8776 158.892L34.674 159.592C34.5014 159.691 34.5014 159.854 34.674 159.952L35.8825 160.653C35.9713 160.702 36.0847 160.727 36.1932 160.727C36.3067 160.727 36.4201 160.702 36.504 160.653L37.7075 159.952C37.8801 159.854 37.8752 159.691 37.7026 159.592L36.4941 158.892C36.4152 158.843 36.3017 158.818 36.1883 158.818Z" - fill="#706F6F" /> - <path - d="M40.9682 163.232C40.8942 163.232 40.8251 163.218 40.7807 163.193L39.6315 162.527L40.7758 161.861C40.8202 161.837 40.8893 161.822 40.9633 161.822C41.0372 161.822 41.1063 161.837 41.1507 161.866L42.3 162.532L41.1605 163.198C41.1112 163.213 41.0422 163.232 40.9682 163.232Z" - fill="white" /> - <path - d="M40.9583 162.064C40.9978 162.064 41.0224 162.073 41.0274 162.073L41.8116 162.527L41.0422 162.976C41.0372 162.981 41.0126 162.986 40.9731 162.986C40.9336 162.986 40.909 162.976 40.909 162.976L40.1247 162.522L40.8991 162.073C40.8991 162.069 40.9238 162.064 40.9583 162.064ZM40.9583 161.57C40.8449 161.57 40.7314 161.595 40.6476 161.644L39.4441 162.345C39.2714 162.443 39.2714 162.606 39.4441 162.705L40.6525 163.405C40.7363 163.454 40.8498 163.479 40.9632 163.479C41.0767 163.479 41.1901 163.454 41.274 163.405L42.4775 162.705C42.6501 162.606 42.6452 162.443 42.4775 162.345L41.2691 161.644C41.1852 161.595 41.0718 161.57 40.9583 161.57Z" - fill="#706F6F" /> - <path - d="M47.5331 156.658C47.4591 156.658 47.3901 156.643 47.3457 156.618L43.8091 154.576L44.9534 153.91C44.9978 153.886 45.0669 153.871 45.1409 153.871C45.2148 153.871 45.2839 153.886 45.3283 153.91L48.8649 155.952L47.7205 156.618C47.6712 156.643 47.6022 156.658 47.5331 156.658Z" - fill="white" /> - <path - d="M45.1359 154.112C45.1754 154.112 45.2001 154.122 45.205 154.122L48.3716 155.952L47.5972 156.401C47.5923 156.406 47.5676 156.411 47.5282 156.411C47.4887 156.411 47.4641 156.401 47.4641 156.401L44.2974 154.571L45.0718 154.122C45.0767 154.117 45.1014 154.112 45.1359 154.112ZM45.1359 153.619C45.0225 153.619 44.909 153.644 44.8252 153.693L43.6217 154.394C43.449 154.492 43.454 154.655 43.6266 154.754L47.2174 156.83C47.3062 156.88 47.4147 156.904 47.5282 156.904C47.6416 156.904 47.7551 156.88 47.8389 156.83L49.0424 156.13C49.2151 156.031 49.2151 155.868 49.0424 155.77L45.4516 153.693C45.3628 153.644 45.2494 153.619 45.1359 153.619Z" - fill="#706F6F" /> - <path - d="M43.2072 161.93C43.1332 161.93 43.0641 161.916 43.0198 161.891L41.8705 161.225L43.0148 160.559C43.0592 160.535 43.1283 160.52 43.2023 160.52C43.2762 160.52 43.3453 160.535 43.3946 160.559L44.5439 161.225L43.4045 161.891C43.3502 161.916 43.2812 161.93 43.2072 161.93Z" - fill="white" /> - <path - d="M43.1925 160.766C43.2319 160.766 43.2566 160.776 43.2566 160.776L44.0408 161.23L43.2664 161.679C43.2615 161.684 43.2368 161.689 43.1974 161.689C43.1579 161.689 43.1333 161.679 43.1333 161.679L42.349 161.225L43.1234 160.776C43.1333 160.771 43.1579 160.766 43.1925 160.766ZM43.1925 160.273C43.079 160.273 42.9656 160.298 42.8817 160.347L41.6782 161.047C41.5055 161.146 41.5105 161.309 41.6831 161.407L42.8916 162.108C42.9754 162.157 43.0889 162.182 43.2023 162.182C43.3158 162.182 43.4292 162.157 43.5131 162.108L44.7166 161.407C44.8892 161.309 44.8843 161.146 44.7166 161.047L43.5081 160.347C43.4193 160.298 43.3059 160.273 43.1925 160.273Z" - fill="#706F6F" /> - <path - d="M45.5897 163.306C45.5158 163.306 45.4467 163.292 45.4023 163.267L44.2531 162.601L45.3974 161.935C45.4418 161.911 45.5108 161.896 45.5848 161.896C45.6588 161.896 45.7279 161.911 45.7723 161.935L46.9265 162.601L45.7821 163.267C45.7328 163.292 45.6637 163.306 45.5897 163.306Z" - fill="white" /> - <path - d="M45.5799 162.142C45.6194 162.142 45.644 162.152 45.644 162.152L46.4283 162.606L45.6539 163.055C45.6489 163.06 45.6243 163.065 45.5848 163.065C45.5454 163.065 45.5207 163.055 45.5207 163.055L44.7364 162.601L45.5108 162.152C45.5158 162.147 45.5404 162.142 45.5799 162.142ZM45.5799 161.649C45.4664 161.649 45.353 161.674 45.2691 161.723L44.0656 162.424C43.893 162.522 43.8979 162.685 44.0656 162.784L45.2741 163.484C45.3579 163.533 45.4714 163.558 45.5848 163.558C45.6983 163.558 45.8117 163.533 45.8956 163.484L47.0991 162.784C47.2717 162.685 47.2668 162.522 47.0991 162.424L45.8906 161.723C45.8068 161.674 45.6933 161.649 45.5799 161.649Z" - fill="#706F6F" /> - <path - d="M47.6809 159.331C47.607 159.331 47.5379 159.316 47.4935 159.292L46.3442 158.626L49.723 156.663C49.7674 156.638 49.8364 156.623 49.9104 156.623C49.9844 156.623 50.0535 156.638 50.0978 156.663L51.2471 157.328L47.8684 159.296C47.8191 159.316 47.75 159.331 47.6809 159.331Z" - fill="white" /> - <path - d="M49.9054 156.865C49.9448 156.865 49.9695 156.875 49.9744 156.875L50.7587 157.328L47.7499 159.079C47.745 159.084 47.7203 159.089 47.6858 159.089C47.6463 159.089 47.6216 159.079 47.6216 159.079L46.8374 158.626L49.8462 156.88C49.8413 156.875 49.8659 156.865 49.9054 156.865ZM49.9054 156.372C49.7919 156.372 49.6785 156.396 49.5946 156.446L46.1567 158.443C45.9841 158.542 45.989 158.705 46.1616 158.803L47.3701 159.504C47.4539 159.553 47.5674 159.578 47.6808 159.578C47.7943 159.578 47.9077 159.553 47.9916 159.504L51.4295 157.506C51.6021 157.407 51.5972 157.245 51.4295 157.146L50.221 156.446C50.1323 156.396 50.0188 156.372 49.9054 156.372Z" - fill="#706F6F" /> - <path - d="M52.298 159.41C52.2241 159.41 52.155 159.395 52.1106 159.37L50.9564 158.705L52.1007 158.039C52.1451 158.014 52.2142 157.999 52.2882 157.999C52.3622 157.999 52.4312 158.014 52.4756 158.039L53.6249 158.705L52.4805 159.37C52.4411 159.395 52.372 159.41 52.298 159.41Z" - fill="white" /> - <path - d="M52.2881 158.241C52.3276 158.241 52.3523 158.251 52.3523 158.251L53.1365 158.705L52.3621 159.154C52.3572 159.158 52.3325 159.163 52.2931 159.163C52.2536 159.163 52.2289 159.154 52.2289 159.154L51.4447 158.7L52.2191 158.251C52.2289 158.251 52.2536 158.241 52.2881 158.241ZM52.2881 157.748C52.1747 157.748 52.0612 157.772 51.9774 157.822L50.7739 158.522C50.6012 158.621 50.6062 158.784 50.7739 158.882L51.9823 159.583C52.0662 159.632 52.1796 159.657 52.2931 159.657C52.4065 159.657 52.52 159.632 52.6038 159.583L53.8073 158.882C53.98 158.784 53.975 158.621 53.8073 158.522L52.5989 157.822C52.515 157.772 52.4016 157.748 52.2881 157.748Z" - fill="#706F6F" /> - <path - d="M45.4419 160.633C45.3679 160.633 45.2989 160.618 45.2545 160.594L44.1052 159.928L45.2496 159.262C45.294 159.237 45.363 159.222 45.437 159.222C45.511 159.222 45.58 159.237 45.6244 159.262L46.7737 159.928L45.6294 160.594C45.585 160.618 45.5159 160.633 45.4419 160.633Z" - fill="white" /> - <path - d="M45.4319 159.464C45.4714 159.464 45.4961 159.474 45.4961 159.474L46.2803 159.928L45.5059 160.377C45.501 160.382 45.4763 160.387 45.4369 160.387C45.3974 160.387 45.3728 160.377 45.3728 160.377L44.5885 159.923L45.3629 159.474C45.3678 159.474 45.3925 159.464 45.4319 159.464ZM45.4319 158.971C45.3185 158.971 45.205 158.996 45.1212 159.045L43.9177 159.745C43.745 159.844 43.75 160.007 43.9226 160.105L45.1311 160.806C45.2149 160.855 45.3284 160.88 45.4418 160.88C45.5553 160.88 45.6687 160.855 45.7525 160.806L46.9561 160.105C47.1287 160.007 47.1238 159.844 46.9561 159.745L45.7476 159.045C45.6588 158.996 45.5454 158.971 45.4319 158.971Z" - fill="#706F6F" /> - <path - d="M50.0636 160.707C49.9896 160.707 49.9206 160.692 49.8762 160.668L48.7269 160.002L49.8663 159.336C49.9107 159.311 49.9847 159.297 50.0538 159.297C50.1278 159.297 50.1968 159.311 50.2412 159.336L51.3905 160.002L50.2511 160.668C50.2067 160.692 50.1376 160.707 50.0636 160.707Z" - fill="white" /> - <path - d="M50.0538 159.543C50.0932 159.543 50.1179 159.553 50.1179 159.553L50.9021 160.007L50.1278 160.456C50.1228 160.46 50.0982 160.465 50.0636 160.465C50.0242 160.465 49.9995 160.456 49.9995 160.456L49.2152 160.002L49.9847 159.553C49.9896 159.548 50.0143 159.543 50.0538 159.543ZM50.0538 159.05C49.9403 159.05 49.8269 159.074 49.743 159.124L48.5395 159.824C48.3669 159.923 48.3718 160.086 48.5395 160.184L49.748 160.885C49.8318 160.934 49.9453 160.959 50.0587 160.959C50.1721 160.959 50.2856 160.934 50.3694 160.885L51.573 160.184C51.7456 160.086 51.7456 159.923 51.573 159.824L50.3645 159.124C50.2757 159.074 50.1672 159.05 50.0538 159.05Z" - fill="#706F6F" /> - <path - d="M47.8242 162.009C47.7503 162.009 47.6812 161.994 47.6368 161.97L46.4875 161.304L47.6319 160.638C47.6763 160.613 47.7453 160.598 47.8193 160.598C47.8933 160.598 47.9624 160.613 48.0067 160.638L49.156 161.304L48.0117 161.97C47.9673 161.994 47.8982 162.009 47.8242 162.009Z" - fill="white" /> - <path - d="M47.8144 160.84C47.8539 160.84 47.8785 160.85 47.8785 160.85L48.6628 161.304L47.8884 161.753C47.8834 161.758 47.8588 161.763 47.8193 161.763C47.7799 161.763 47.7552 161.753 47.7552 161.753L46.9709 161.299L47.7453 160.85C47.7552 160.85 47.7799 160.84 47.8144 160.84ZM47.8144 160.347C47.7009 160.347 47.5875 160.372 47.5036 160.421L46.3001 161.121C46.1275 161.22 46.1324 161.383 46.3001 161.481L47.5086 162.182C47.5924 162.231 47.7059 162.256 47.8193 162.256C47.9328 162.256 48.0462 162.231 48.1301 162.182L49.3336 161.481C49.5062 161.383 49.5013 161.22 49.3336 161.121L48.1251 160.421C48.0413 160.372 47.9278 160.347 47.8144 160.347Z" - fill="#706F6F" /> - <path - d="M45.2938 157.955C45.2198 157.955 45.1507 157.94 45.1063 157.915L43.9521 157.25L45.0915 156.584C45.1359 156.559 45.205 156.544 45.279 156.544C45.353 156.544 45.422 156.559 45.4713 156.584L46.6206 157.25L45.4812 157.915C45.4368 157.94 45.3678 157.955 45.2938 157.955Z" - fill="white" /> - <path - d="M45.284 156.791C45.3235 156.791 45.3481 156.801 45.3481 156.801L46.1324 157.255L45.358 157.703C45.353 157.708 45.3284 157.713 45.2939 157.713C45.2593 157.713 45.2297 157.703 45.2297 157.703L44.4455 157.25L45.2199 156.801C45.2248 156.796 45.2495 156.791 45.284 156.791ZM45.284 156.298C45.1705 156.298 45.0571 156.322 44.9732 156.372L43.7697 157.072C43.5971 157.171 43.602 157.333 43.7747 157.432L44.9831 158.132C45.0719 158.182 45.1804 158.206 45.2939 158.206C45.4073 158.206 45.5207 158.182 45.6046 158.132L46.8081 157.432C46.9808 157.333 46.9808 157.171 46.8081 157.072L45.5997 156.372C45.5109 156.322 45.3974 156.298 45.284 156.298Z" - fill="#706F6F" /> - <path - d="M43.0594 159.257C42.9854 159.257 42.9163 159.242 42.8719 159.217L41.7227 158.552L42.867 157.886C42.9114 157.861 42.9804 157.846 43.0544 157.846C43.1284 157.846 43.1975 157.861 43.2419 157.886L44.3911 158.552L43.2468 159.217C43.2024 159.242 43.1284 159.257 43.0594 159.257Z" - fill="white" /> - <path - d="M43.0445 158.088C43.084 158.088 43.1086 158.098 43.1086 158.098L43.8929 158.552L43.1185 159C43.1136 159.005 43.0889 159.01 43.0544 159.01C43.0198 159.01 42.9903 159 42.9903 159L42.206 158.547L42.9804 158.098C42.9853 158.098 43.01 158.088 43.0445 158.088ZM43.0445 157.595C42.9311 157.595 42.8176 157.619 42.7338 157.669L41.5302 158.369C41.3576 158.468 41.3625 158.631 41.5352 158.729L42.7436 159.43C42.8324 159.479 42.9409 159.504 43.0544 159.504C43.1678 159.504 43.2813 159.479 43.3651 159.43L44.5686 158.729C44.7413 158.631 44.7413 158.468 44.5686 158.369L43.3602 157.669C43.2714 157.619 43.158 157.595 43.0445 157.595Z" - fill="#706F6F" /> - <path - d="M38.4376 159.178C38.3636 159.178 38.2945 159.163 38.2501 159.139L37.0959 158.473L38.2403 157.807C38.2847 157.782 38.3537 157.767 38.4277 157.767C38.5017 157.767 38.5708 157.782 38.6201 157.807L39.7693 158.473L38.625 159.139C38.5806 159.163 38.5116 159.178 38.4376 159.178Z" - fill="white" /> - <path - d="M38.4278 158.009C38.4673 158.009 38.4919 158.019 38.4969 158.019L39.2811 158.473L38.5067 158.922C38.5018 158.927 38.4771 158.931 38.4426 158.931C38.4031 158.931 38.3785 158.922 38.3785 158.922L37.5942 158.468L38.3686 158.019C38.3686 158.019 38.3933 158.009 38.4278 158.009ZM38.4278 157.516C38.3144 157.516 38.2009 157.541 38.1171 157.59L36.9135 158.29C36.7409 158.389 36.7458 158.552 36.9185 158.65L38.1269 159.351C38.2157 159.4 38.3291 159.425 38.4377 159.425C38.5511 159.425 38.6646 159.4 38.7484 159.351L39.9519 158.65C40.1246 158.552 40.1196 158.389 39.947 158.29L38.7385 157.59C38.6547 157.545 38.5412 157.516 38.4278 157.516Z" - fill="#706F6F" /> - <path - d="M40.82 160.554C40.746 160.554 40.6769 160.539 40.6325 160.515L39.4833 159.849L40.6276 159.183C40.672 159.158 40.741 159.144 40.815 159.144C40.889 159.144 40.9581 159.158 41.0074 159.183L42.1567 159.849L41.0123 160.515C40.963 160.539 40.894 160.554 40.82 160.554Z" - fill="white" /> - <path - d="M40.8103 159.385C40.8497 159.385 40.8744 159.395 40.8744 159.395L41.6586 159.849L40.8842 160.298C40.8793 160.303 40.8546 160.308 40.8201 160.308C40.7856 160.308 40.756 160.298 40.756 160.298L39.9717 159.844L40.7461 159.395C40.7511 159.395 40.7757 159.385 40.8103 159.385ZM40.8103 158.892C40.6968 158.892 40.5834 158.917 40.4995 158.966L39.296 159.666C39.1233 159.765 39.1283 159.928 39.3009 160.027L40.5094 160.727C40.5982 160.776 40.7067 160.801 40.8201 160.801C40.9336 160.801 41.047 160.776 41.1309 160.727L42.3344 160.027C42.507 159.928 42.507 159.765 42.3344 159.666L41.1259 158.966C41.0372 158.922 40.9237 158.892 40.8103 158.892Z" - fill="#706F6F" /> - <path - d="M38.5856 161.856C38.5116 161.856 38.4426 161.841 38.3982 161.817L37.2489 161.151L38.3932 160.485C38.4376 160.46 38.5067 160.446 38.5807 160.446C38.6547 160.446 38.7237 160.46 38.7681 160.49L39.9174 161.156L38.778 161.822C38.7286 161.837 38.6596 161.856 38.5856 161.856Z" - fill="white" /> - <path - d="M38.5756 160.687C38.6151 160.687 38.6397 160.697 38.6447 160.697L39.4289 161.151L38.6545 161.6C38.6496 161.605 38.625 161.61 38.5855 161.61C38.551 161.61 38.5263 161.6 38.5214 161.6L37.7371 161.146L38.5115 160.697C38.5115 160.692 38.5362 160.687 38.5756 160.687ZM38.5756 160.194C38.4622 160.194 38.3487 160.219 38.2649 160.268L37.0614 160.968C36.8887 161.067 36.8887 161.23 37.0614 161.329L38.2698 162.029C38.3586 162.078 38.4671 162.103 38.5806 162.103C38.694 162.103 38.8075 162.078 38.8913 162.029L40.0948 161.329C40.2675 161.23 40.2675 161.067 40.0948 160.968L38.8864 160.268C38.8025 160.219 38.6891 160.194 38.5756 160.194Z" - fill="#706F6F" /> - <path - d="M32.1734 171.105C32.0994 171.105 32.0303 171.09 31.9859 171.065L30.8367 170.399L31.9761 169.733C32.0205 169.709 32.0895 169.694 32.1635 169.694C32.2375 169.694 32.3065 169.709 32.3509 169.733L33.5002 170.399L32.3559 171.065C32.3164 171.09 32.2474 171.105 32.1734 171.105Z" - fill="white" /> - <path - d="M32.1635 169.936C32.203 169.936 32.2276 169.945 32.2276 169.945L33.0119 170.399L32.2375 170.848C32.2326 170.853 32.2079 170.858 32.1734 170.858C32.1339 170.858 32.1093 170.848 32.1093 170.848L31.325 170.394L32.0945 169.945C32.0994 169.945 32.1241 169.936 32.1635 169.936ZM32.1635 169.442C32.0501 169.442 31.9366 169.467 31.8528 169.516L30.6492 170.217C30.4766 170.315 30.4815 170.478 30.6492 170.577L31.8577 171.277C31.9416 171.327 32.055 171.351 32.1684 171.351C32.2819 171.351 32.3953 171.327 32.4792 171.277L33.6827 170.577C33.8554 170.478 33.8554 170.315 33.6827 170.217L32.4743 169.516C32.3855 169.467 32.277 169.442 32.1635 169.442Z" - fill="#706F6F" /> - <path - d="M34.4078 169.808C34.3338 169.808 34.2648 169.793 34.2204 169.768L33.0662 169.103L34.2105 168.437C34.2549 168.412 34.3239 168.397 34.3979 168.397C34.4719 168.397 34.541 168.412 34.5854 168.437L35.7346 169.103L34.5903 169.768C34.5508 169.788 34.4818 169.808 34.4078 169.808Z" - fill="white" /> - <path - d="M34.3979 168.639C34.4373 168.639 34.462 168.649 34.462 168.649L35.2462 169.102L34.4719 169.551C34.4669 169.556 34.4423 169.561 34.4028 169.561C34.3633 169.561 34.3387 169.551 34.3387 169.551L33.5544 169.097L34.3288 168.649C34.3387 168.644 34.3584 168.639 34.3979 168.639ZM34.3979 168.146C34.2844 168.146 34.171 168.17 34.0871 168.219L32.8836 168.92C32.711 169.019 32.7159 169.181 32.8836 169.28L34.0921 169.98C34.1759 170.03 34.2894 170.054 34.4028 170.054C34.5162 170.054 34.6297 170.03 34.7135 169.98L35.917 169.28C36.0897 169.181 36.0847 169.019 35.917 168.92L34.7086 168.219C34.6248 168.17 34.5113 168.146 34.3979 168.146Z" - fill="#706F6F" /> - <path - d="M33.9685 161.778C33.8946 161.778 33.8255 161.763 33.7811 161.738L32.6318 161.072L33.7762 160.406C33.8206 160.382 33.8896 160.367 33.9636 160.367C34.0376 160.367 34.1067 160.382 34.156 160.406L35.3053 161.072L34.1609 161.738C34.1066 161.763 34.0376 161.778 33.9685 161.778Z" - fill="white" /> - <path - d="M33.9538 160.609C33.9933 160.609 34.0179 160.619 34.0229 160.619L34.8071 161.072L34.0327 161.521C34.0278 161.526 34.0031 161.531 33.9686 161.531C33.9291 161.531 33.9045 161.521 33.8995 161.521L33.1153 161.067L33.8897 160.619C33.8946 160.619 33.9193 160.609 33.9538 160.609ZM33.9538 160.115C33.8404 160.115 33.7269 160.14 33.643 160.189L32.4395 160.89C32.2669 160.989 32.2718 161.151 32.4445 161.25L33.6529 161.95C33.7417 162 33.8551 162.024 33.9686 162.024C34.082 162.024 34.1955 162 34.2793 161.95L35.4829 161.25C35.6555 161.151 35.6506 160.989 35.4779 160.89L34.2695 160.189C34.1807 160.145 34.0672 160.115 33.9538 160.115Z" - fill="#706F6F" /> - <path - d="M31.7292 163.08C31.6552 163.08 31.5862 163.065 31.5368 163.04L30.3876 162.374L31.527 161.708C31.5714 161.684 31.6404 161.669 31.7144 161.669C31.7884 161.669 31.8575 161.684 31.9068 161.708L33.056 162.374L31.9166 163.04C31.8722 163.06 31.8032 163.08 31.7292 163.08Z" - fill="white" /> - <path - d="M31.7195 161.911C31.759 161.911 31.7837 161.921 31.7837 161.921L32.5679 162.374L31.7935 162.823C31.7886 162.828 31.7639 162.833 31.7294 162.833C31.69 162.833 31.6653 162.823 31.6604 162.823L30.8761 162.369L31.6456 161.921C31.6554 161.916 31.6801 161.911 31.7195 161.911ZM31.7195 161.417C31.6061 161.417 31.4926 161.442 31.4088 161.491L30.2053 162.192C30.0326 162.291 30.0376 162.453 30.2102 162.552L31.4187 163.252C31.5074 163.302 31.6209 163.326 31.7343 163.326C31.8478 163.326 31.9612 163.302 32.0451 163.252L33.2486 162.552C33.4212 162.453 33.4212 162.291 33.2486 162.192L32.0401 161.491C31.9464 161.442 31.833 161.417 31.7195 161.417Z" - fill="#706F6F" /> - <path - d="M36.3513 163.154C36.2773 163.154 36.2082 163.139 36.1638 163.114L35.0096 162.448L36.154 161.782C36.1984 161.758 36.2674 161.743 36.3414 161.743C36.4154 161.743 36.4845 161.758 36.5288 161.782L37.6781 162.448L36.5338 163.114C36.4894 163.139 36.4203 163.154 36.3513 163.154Z" - fill="white" /> - <path - d="M36.3364 161.985C36.3758 161.985 36.4005 161.995 36.4054 161.995L37.1897 162.448L36.4153 162.897C36.4104 162.902 36.3857 162.907 36.3512 162.907C36.3117 162.907 36.287 162.897 36.287 162.897L35.5028 162.443L36.2772 161.995C36.2772 161.995 36.3018 161.985 36.3364 161.985ZM36.3364 161.491C36.2229 161.491 36.1095 161.516 36.0256 161.565L34.8221 162.266C34.6495 162.364 34.6544 162.527 34.827 162.626L36.0355 163.326C36.1243 163.376 36.2328 163.4 36.3462 163.4C36.4597 163.4 36.5731 163.376 36.657 163.326L37.8605 162.626C38.0331 162.527 38.0331 162.364 37.8605 162.266L36.652 161.565C36.5633 161.521 36.4498 161.491 36.3364 161.491Z" - fill="#706F6F" /> - <path - d="M29.495 164.377C29.421 164.377 29.352 164.362 29.3076 164.338L28.1583 163.672L29.2977 163.006C29.3421 162.981 29.4112 162.966 29.4852 162.966C29.5591 162.966 29.6282 162.981 29.6726 163.006L30.8219 163.672L29.6825 164.338C29.6381 164.362 29.5641 164.377 29.495 164.377Z" - fill="white" /> - <path - d="M29.4803 163.208C29.5197 163.208 29.5444 163.218 29.5493 163.218L30.3336 163.672L29.5641 164.121C29.5592 164.126 29.5345 164.13 29.4951 164.13C29.4556 164.13 29.431 164.121 29.431 164.121L28.6467 163.667L29.4211 163.218C29.4211 163.218 29.4458 163.208 29.4803 163.208ZM29.4803 162.715C29.3668 162.715 29.2534 162.739 29.1695 162.789L27.966 163.489C27.7934 163.588 27.7934 163.751 27.966 163.849L29.1745 164.55C29.2633 164.599 29.3767 164.624 29.4852 164.624C29.5987 164.624 29.7121 164.599 29.796 164.55L30.9995 163.849C31.1721 163.751 31.1672 163.588 30.9945 163.489L29.7861 162.789C29.7072 162.739 29.5937 162.715 29.4803 162.715Z" - fill="#706F6F" /> - <path - d="M34.1117 164.456C34.0377 164.456 33.9687 164.441 33.9243 164.416L32.775 163.751L33.9144 163.085C33.9588 163.06 34.0279 163.045 34.1019 163.045C34.1758 163.045 34.2449 163.06 34.2942 163.085L35.4435 163.751L34.2992 164.416C34.2548 164.436 34.1857 164.456 34.1117 164.456Z" - fill="white" /> - <path - d="M34.1019 163.287C34.1413 163.287 34.166 163.297 34.166 163.297L34.9503 163.751L34.1759 164.199C34.1709 164.204 34.1463 164.209 34.1068 164.209C34.0723 164.209 34.0427 164.199 34.0427 164.199L33.2584 163.746L34.0279 163.297C34.0427 163.292 34.0674 163.287 34.1019 163.287ZM34.1019 162.794C33.9884 162.794 33.875 162.818 33.7911 162.868L32.5876 163.568C32.415 163.667 32.4199 163.83 32.5925 163.928L33.801 164.629C33.8898 164.678 33.9983 164.703 34.1117 164.703C34.2252 164.703 34.3386 164.678 34.4225 164.629L35.626 163.928C35.7987 163.83 35.7987 163.667 35.626 163.568L34.4176 162.868C34.3288 162.818 34.2153 162.794 34.1019 162.794Z" - fill="#706F6F" /> - <path - d="M27.2556 165.679C27.1816 165.679 27.1125 165.664 27.0632 165.64L25.9139 164.974L27.0583 164.308C27.1027 164.283 27.1717 164.268 27.2457 164.268C27.3197 164.268 27.3888 164.283 27.4331 164.308L28.5873 164.974L27.443 165.64C27.3986 165.659 27.3296 165.679 27.2556 165.679Z" - fill="white" /> - <path - d="M27.2458 164.51C27.2853 164.51 27.3099 164.52 27.3099 164.52L28.0942 164.974L27.3198 165.423C27.3149 165.428 27.2902 165.432 27.2557 165.432C27.2162 165.432 27.1915 165.423 27.1866 165.423L26.4023 164.969L27.1767 164.52C27.1866 164.515 27.2113 164.51 27.2458 164.51ZM27.2458 164.017C27.1324 164.017 27.0189 164.041 26.9351 164.091L25.7315 164.791C25.5589 164.89 25.5638 165.053 25.7365 165.151L26.9449 165.852C27.0337 165.901 27.1472 165.926 27.2606 165.926C27.374 165.926 27.4875 165.901 27.5713 165.852L28.7749 165.151C28.9475 165.053 28.9426 164.89 28.7699 164.791L27.5615 164.091C27.4727 164.041 27.3592 164.017 27.2458 164.017Z" - fill="#706F6F" /> - <path - d="M31.8774 165.753C31.8034 165.753 31.7343 165.738 31.6899 165.714L30.5406 165.048L31.6801 164.382C31.7244 164.357 31.7935 164.342 31.8675 164.342C31.9415 164.342 32.0105 164.357 32.0599 164.387L33.2091 165.053L32.0697 165.718C32.0204 165.738 31.9464 165.753 31.8774 165.753Z" - fill="white" /> - <path - d="M31.8674 164.584C31.9069 164.584 31.9315 164.594 31.9364 164.594L32.7207 165.048L31.9463 165.497C31.9414 165.502 31.9167 165.506 31.8773 165.506C31.8427 165.506 31.8181 165.497 31.8131 165.497L31.0289 165.043L31.8033 164.594C31.8033 164.594 31.8279 164.584 31.8674 164.584ZM31.8674 164.091C31.7539 164.091 31.6405 164.115 31.5566 164.165L30.3531 164.865C30.1805 164.964 30.1805 165.127 30.3531 165.225L31.5616 165.926C31.6504 165.975 31.7589 166 31.8723 166C31.9858 166 32.0992 165.975 32.1831 165.926L33.3866 165.225C33.5592 165.127 33.5592 164.964 33.3866 164.865L32.1781 164.165C32.0894 164.12 31.9759 164.091 31.8674 164.091Z" - fill="#706F6F" /> - <path - d="M25.0212 166.976C24.9472 166.976 24.8782 166.962 24.8288 166.932L23.6796 166.266L24.819 165.6C24.8634 165.576 24.9324 165.561 25.0064 165.561C25.0804 165.561 25.1494 165.576 25.1938 165.6L26.3431 166.266L25.2037 166.932C25.1642 166.962 25.0952 166.976 25.0212 166.976Z" - fill="white" /> - <path - d="M25.0114 165.807C25.0509 165.807 25.0755 165.817 25.0755 165.817L25.8598 166.271L25.0854 166.72C25.0805 166.725 25.0558 166.73 25.0213 166.73C24.9818 166.73 24.9572 166.72 24.9522 166.72L24.168 166.266L24.9374 165.817C24.9473 165.817 24.972 165.807 25.0114 165.807ZM25.0114 165.314C24.898 165.314 24.7845 165.339 24.7007 165.388L23.4972 166.088C23.3245 166.187 23.3294 166.35 23.5021 166.448L24.7105 167.149C24.7993 167.198 24.9128 167.223 25.0262 167.223C25.1397 167.223 25.2531 167.198 25.337 167.149L26.5405 166.448C26.7131 166.35 26.7131 166.187 26.5405 166.088L25.332 165.388C25.2383 165.339 25.1249 165.314 25.0114 165.314Z" - fill="#706F6F" /> - <path - d="M29.6381 167.055C29.5641 167.055 29.495 167.04 29.4507 167.016L28.3014 166.35L29.4457 165.684C29.4901 165.659 29.5592 165.645 29.6332 165.645C29.7071 165.645 29.7762 165.659 29.8255 165.684L30.9748 166.35L29.8305 167.016C29.7811 167.035 29.7121 167.055 29.6381 167.055Z" - fill="white" /> - <path - d="M29.6281 165.886C29.6676 165.886 29.6922 165.896 29.6922 165.896L30.4765 166.35L29.7021 166.799C29.6972 166.804 29.6725 166.809 29.6331 166.809C29.5985 166.809 29.5689 166.799 29.5689 166.799L28.7847 166.345L29.5591 165.896C29.5689 165.891 29.5936 165.886 29.6281 165.886ZM29.6281 165.393C29.5147 165.393 29.4012 165.418 29.3174 165.467L28.1139 166.167C27.9412 166.266 27.9461 166.429 28.1188 166.528L29.3272 167.228C29.416 167.277 29.5245 167.302 29.638 167.302C29.7514 167.302 29.8649 167.277 29.9487 167.228L31.1523 166.528C31.3249 166.429 31.3249 166.266 31.1523 166.167L29.9438 165.467C29.855 165.418 29.7416 165.393 29.6281 165.393Z" - fill="#706F6F" /> - <path - d="M34.2599 167.129C34.1859 167.129 34.1169 167.114 34.0725 167.09L32.9232 166.424L34.0675 165.758C34.1119 165.733 34.181 165.719 34.255 165.719C34.329 165.719 34.398 165.733 34.4474 165.763L35.5966 166.429L34.4572 167.095C34.403 167.114 34.3339 167.129 34.2599 167.129Z" - fill="white" /> - <path - d="M34.25 165.96C34.2894 165.96 34.3141 165.97 34.319 165.97L35.1033 166.424L34.3338 166.873C34.3289 166.878 34.3042 166.883 34.2647 166.883C34.2253 166.883 34.2006 166.873 34.2006 166.873L33.4164 166.419L34.1908 165.97C34.1908 165.97 34.2105 165.96 34.25 165.96ZM34.25 165.467C34.1365 165.467 34.0231 165.492 33.9392 165.541L32.7357 166.241C32.563 166.34 32.563 166.503 32.7357 166.602L33.9441 167.302C34.028 167.351 34.1414 167.376 34.2549 167.376C34.3683 167.376 34.4818 167.351 34.5656 167.302L35.7692 166.602C35.9418 166.503 35.9369 166.34 35.7692 166.241L34.5607 165.541C34.4768 165.497 34.3634 165.467 34.25 165.467Z" - fill="#706F6F" /> - <path - d="M27.4035 168.353C27.3295 168.353 27.2604 168.338 27.216 168.313L26.0668 167.647L27.2062 166.982C27.2506 166.957 27.3196 166.942 27.3936 166.942C27.4676 166.942 27.5367 166.957 27.581 166.982L28.7303 167.647L27.586 168.313C27.5465 168.338 27.4775 168.353 27.4035 168.353Z" - fill="white" /> - <path - d="M27.3935 167.184C27.433 167.184 27.4576 167.194 27.4576 167.194L28.2419 167.648L27.4675 168.096C27.4626 168.101 27.4379 168.106 27.4034 168.106C27.3688 168.106 27.3392 168.096 27.3392 168.096L26.555 167.643L27.3244 167.194C27.3294 167.194 27.354 167.184 27.3935 167.184ZM27.3935 166.691C27.28 166.691 27.1666 166.715 27.0828 166.765L25.8792 167.465C25.7066 167.564 25.7115 167.726 25.8842 167.825L27.0926 168.526C27.1814 168.575 27.2899 168.6 27.4034 168.6C27.5168 168.6 27.6303 168.575 27.7141 168.526L28.9176 167.825C29.0903 167.726 29.0903 167.564 28.9176 167.465L27.7092 166.765C27.6204 166.715 27.5069 166.691 27.3935 166.691Z" - fill="#706F6F" /> - <path - d="M32.0254 168.432C31.9514 168.432 31.8824 168.417 31.838 168.392L30.6887 167.726L31.833 167.06C31.8774 167.036 31.9465 167.021 32.0205 167.021C32.0945 167.021 32.1635 167.036 32.2079 167.06L33.3572 167.726L32.2128 168.392C32.1685 168.412 32.0994 168.432 32.0254 168.432Z" - fill="white" /> - <path - d="M32.0155 167.263C32.0549 167.263 32.0796 167.272 32.0845 167.272L32.8688 167.726L32.0944 168.175C32.0894 168.18 32.0648 168.185 32.0253 168.185C31.9859 168.185 31.9612 168.175 31.9612 168.175L31.1769 167.721L31.9513 167.272C31.9513 167.267 31.976 167.263 32.0155 167.263ZM32.0155 166.769C31.902 166.769 31.7886 166.794 31.7047 166.843L30.5012 167.544C30.3285 167.642 30.3335 167.805 30.5061 167.904L31.7146 168.604C31.7984 168.654 31.9119 168.678 32.0253 168.678C32.1388 168.678 32.2522 168.654 32.3361 168.604L33.5396 167.904C33.7122 167.805 33.7073 167.642 33.5396 167.544L32.3311 166.843C32.2374 166.794 32.124 166.769 32.0155 166.769Z" - fill="#706F6F" /> - <path - d="M28.4641 170.498C28.3901 170.498 28.3211 170.483 28.2767 170.459L27.1274 169.793L29.5937 168.357C29.6381 168.333 29.7071 168.318 29.7811 168.318C29.8551 168.318 29.9241 168.333 29.9685 168.357L31.1178 169.023L28.6516 170.459C28.6072 170.483 28.5332 170.498 28.4641 170.498Z" - fill="white" /> - <path - d="M29.7762 168.56C29.8156 168.56 29.8403 168.57 29.8403 168.57L30.6246 169.023L28.5283 170.242C28.5233 170.247 28.4987 170.251 28.4592 170.251C28.4198 170.251 28.3951 170.242 28.3951 170.242L27.6108 169.788L29.7071 168.57C29.717 168.57 29.7417 168.56 29.7762 168.56ZM29.7762 168.066C29.6627 168.066 29.5493 168.091 29.4654 168.14L26.94 169.61C26.7674 169.709 26.7674 169.872 26.94 169.97L28.1485 170.671C28.2323 170.72 28.3458 170.745 28.4592 170.745C28.5727 170.745 28.6861 170.72 28.77 170.671L31.2954 169.201C31.468 169.102 31.468 168.939 31.2954 168.841L30.0869 168.14C30.0031 168.091 29.8896 168.066 29.7762 168.066Z" - fill="#706F6F" /> - <path - d="M22.7866 168.279C22.7127 168.279 22.6436 168.264 22.5992 168.239L21.45 167.573L22.5943 166.907C22.6387 166.883 22.7077 166.868 22.7817 166.868C22.8557 166.868 22.9248 166.883 22.9691 166.907L24.1234 167.573L22.9839 168.239C22.9297 168.259 22.8557 168.279 22.7866 168.279Z" - fill="white" /> - <path - d="M22.7719 167.11C22.8114 167.11 22.8361 167.12 22.841 167.12L23.6253 167.573L22.8558 168.022C22.8509 168.027 22.8262 168.032 22.7867 168.032C22.7473 168.032 22.7226 168.022 22.7226 168.022L21.9383 167.568L22.7127 167.12C22.7127 167.115 22.7374 167.11 22.7719 167.11ZM22.7719 166.616C22.6585 166.616 22.545 166.641 22.4612 166.69L21.2577 167.391C21.085 167.49 21.085 167.652 21.2577 167.751L22.4661 168.451C22.5549 168.501 22.6634 168.525 22.7769 168.525C22.8903 168.525 23.0038 168.501 23.0876 168.451L24.2911 167.751C24.4638 167.652 24.4589 167.49 24.2862 167.391L23.0777 166.69C22.9988 166.641 22.8854 166.616 22.7719 166.616Z" - fill="#706F6F" /> - <path - d="M40.6771 157.881C40.6031 157.881 40.534 157.866 40.4847 157.841L39.3354 157.175L42.7142 155.212C42.7586 155.188 42.8276 155.173 42.9016 155.173C42.9756 155.173 43.0447 155.188 43.0891 155.212L44.2383 155.878L40.8596 157.846C40.8201 157.866 40.7461 157.881 40.6771 157.881Z" - fill="white" /> - <path - d="M42.9016 155.41C42.9411 155.41 42.9657 155.42 42.9657 155.42L43.75 155.873L40.7412 157.624C40.7362 157.629 40.7116 157.634 40.6771 157.634C40.6376 157.634 40.6129 157.624 40.6129 157.624L39.8287 157.171L42.8375 155.42C42.8375 155.42 42.8621 155.41 42.9016 155.41ZM42.9016 154.917C42.7881 154.917 42.6747 154.941 42.5908 154.99L39.1529 156.988C38.9803 157.087 38.9852 157.25 39.1578 157.348L40.3663 158.049C40.4551 158.098 40.5685 158.123 40.6771 158.123C40.7905 158.123 40.9039 158.098 40.9878 158.049L44.4257 156.051C44.5984 155.952 44.5984 155.79 44.4257 155.691L43.2173 154.99C43.1285 154.946 43.015 154.917 42.9016 154.917Z" - fill="#706F6F" /> - <path - d="M27.6995 173.705C27.6255 173.705 27.5564 173.69 27.5121 173.665L26.3628 172.999L29.7415 171.031C29.7859 171.007 29.855 170.992 29.929 170.992C30.0029 170.992 30.072 171.007 30.1164 171.031L31.2657 171.697L27.8869 173.66C27.8425 173.69 27.7735 173.705 27.6995 173.705Z" - fill="white" /> - <path - d="M29.924 171.238C29.9635 171.238 29.9882 171.248 29.9882 171.248L30.7724 171.702L27.7636 173.448C27.7587 173.453 27.734 173.458 27.6946 173.458C27.6551 173.458 27.6304 173.448 27.6304 173.448L26.8462 172.994L29.855 171.248C29.8649 171.243 29.8895 171.238 29.924 171.238ZM29.924 170.745C29.8106 170.745 29.6971 170.77 29.6133 170.819L26.1754 172.817C26.0027 172.915 26.0077 173.078 26.1754 173.177L27.3838 173.877C27.4677 173.927 27.5811 173.951 27.6946 173.951C27.808 173.951 27.9215 173.927 28.0053 173.877L31.4432 171.88C31.6159 171.781 31.6109 171.618 31.4432 171.52L30.2348 170.819C30.1509 170.77 30.0375 170.745 29.924 170.745Z" - fill="#706F6F" /> - <path - d="M38.7335 164.53C38.6595 164.53 38.5904 164.515 38.546 164.49L37.3918 163.824L38.5362 163.158C38.5806 163.134 38.6496 163.119 38.7236 163.119C38.7976 163.119 38.8667 163.134 38.916 163.158L40.0652 163.824L38.9209 164.49C38.8765 164.515 38.8075 164.53 38.7335 164.53Z" - fill="white" /> - <path - d="M38.7236 163.366C38.763 163.366 38.7877 163.375 38.7877 163.375L39.572 163.829L38.7976 164.278C38.7926 164.283 38.768 164.288 38.7285 164.288C38.6891 164.288 38.6644 164.278 38.6644 164.278L37.8801 163.824L38.6545 163.375C38.6595 163.37 38.6841 163.366 38.7236 163.366ZM38.7236 162.872C38.6101 162.872 38.4967 162.897 38.4128 162.946L37.2093 163.647C37.0367 163.745 37.0416 163.908 37.2142 164.007L38.4227 164.707C38.5065 164.756 38.62 164.781 38.7334 164.781C38.8469 164.781 38.9603 164.756 39.0442 164.707L40.2477 164.007C40.4203 163.908 40.4154 163.745 40.2477 163.647L39.0393 162.946C38.9505 162.897 38.837 162.872 38.7236 162.872Z" - fill="#706F6F" /> - <path - d="M36.4991 165.832C36.4251 165.832 36.356 165.817 36.3116 165.792L35.1624 165.126L36.3018 164.461C36.3461 164.436 36.4152 164.421 36.4892 164.421C36.5632 164.421 36.6322 164.436 36.6766 164.461L37.8259 165.126L36.6816 165.792C36.6421 165.812 36.5681 165.832 36.4991 165.832Z" - fill="white" /> - <path - d="M36.4843 164.663C36.5238 164.663 36.5484 164.673 36.5484 164.673L37.3327 165.127L36.5583 165.575C36.5534 165.58 36.5287 165.585 36.4893 165.585C36.4498 165.585 36.4251 165.575 36.4251 165.575L35.6409 165.122L36.4103 164.673C36.4251 164.668 36.4498 164.663 36.4843 164.663ZM36.4843 164.17C36.3709 164.17 36.2574 164.194 36.1736 164.244L34.9701 164.944C34.7974 165.043 34.8024 165.205 34.975 165.304L36.1834 166.005C36.2673 166.054 36.3807 166.079 36.4942 166.079C36.6076 166.079 36.7211 166.054 36.8049 166.005L38.0085 165.304C38.1811 165.205 38.1811 165.043 38.0085 164.944L36.8 164.244C36.7112 164.194 36.5978 164.17 36.4843 164.17Z" - fill="#706F6F" /> - <path - d="M36.6422 168.505C36.5683 168.505 36.4992 168.491 36.4548 168.466L35.3055 167.8L43.1038 163.262C43.1482 163.237 43.2172 163.223 43.2912 163.223C43.3652 163.223 43.4343 163.237 43.4786 163.262L44.6279 163.928L36.8297 168.466C36.7853 168.491 36.7162 168.505 36.6422 168.505Z" - fill="white" /> - <path - d="M43.2911 163.469C43.3306 163.469 43.3552 163.479 43.3552 163.479L44.1395 163.933L36.7112 168.254C36.7063 168.259 36.6816 168.264 36.6421 168.264C36.6027 168.264 36.578 168.254 36.578 168.254L35.7938 167.8L43.227 163.479C43.2319 163.474 43.2566 163.469 43.2911 163.469ZM43.2911 162.976C43.1777 162.976 43.0642 163.001 42.9804 163.05L35.118 167.618C34.9454 167.716 34.9454 167.879 35.118 167.978L36.3265 168.678C36.4103 168.727 36.5238 168.752 36.6372 168.752C36.7507 168.752 36.8641 168.727 36.948 168.678L44.8103 164.111C44.983 164.012 44.978 163.849 44.8103 163.75L43.6019 163.05C43.518 163.001 43.4046 162.976 43.2911 162.976Z" - fill="#706F6F" /> - <path - d="M174.875 67.8423C175.692 67.6577 176.641 66.7988 177.299 66.3492C178.541 65.4904 184.122 65.2656 182.664 64.8563C182.139 64.7037 187.429 68.1232 187.295 70.1781C187.237 71.1333 187.47 72.9233 187.37 73.8946C187.295 74.6812 187.529 75.219 187.47 76.0217C186.929 75.5562 186.771 74.4324 186.054 74.0632C185.413 73.7501 184.463 74.2478 183.847 74.4003C183.289 74.5287 182.681 74.5127 182.164 74.7695C181.606 75.0505 181.506 75.4197 181.314 75.9655C180.981 76.8806 180.831 77.6111 180.773 78.5743C180.423 77.9562 180.115 77.5067 179.648 76.9288C179.182 76.3669 178.466 76.11 177.807 75.7167C176.141 74.6893 175.208 73.6056 175.092 71.5748C175.017 70.451 175.558 68.8296 174.875 67.8423Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" - fill="white" /> - <path - d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" - fill="white" /> - <path - d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" - fill="white" /> - <path - d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" - fill="white" /> - <path - d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" - fill="white" /> - <path - d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" - fill="white" /> - <path - d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" - stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M171.976 67.4891C173.759 67.3768 174.359 68.2918 175.525 69.1908C177.483 70.6999 177.774 72.811 178.216 74.8097C178.624 76.68 177.632 79.7944 175.175 79.4733C172.31 79.0961 170.818 77.4746 169.652 75.1228C169.094 73.9669 168.894 72.0083 169.052 70.6999C169.144 69.841 170.535 67.4651 171.976 67.4891Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" - fill="white" /> - <path - d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" - fill="white" /> - <path - d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M174.708 73.14C174.692 72.9313 174.634 72.7146 174.417 72.6182C174.259 72.5621 174.109 72.6182 173.992 72.7306C173.667 73.0276 173.742 73.5333 174.05 73.8303C174.325 74.0952 174.65 73.9828 174.75 73.6457C174.85 73.2523 174.65 72.8269 174.267 72.6584C174.192 72.6423 174.134 72.6423 174.075 72.6985C173.767 73.1239 173.742 73.9507 174.442 74.0069C174.5 74.0069 174.559 73.9668 174.575 73.9106C174.708 73.5574 174.708 73.1801 174.475 72.8671C174.434 72.8109 174.317 72.7707 174.259 72.851C174.084 73.0597 173.892 73.5815 174.317 73.6537C174.492 73.6698 174.567 73.4289 174.392 73.3888C174.217 73.3727 174.409 73.0918 174.45 73.0356C174.375 73.0356 174.317 73.0196 174.234 73.0196C174.425 73.2845 174.409 73.5814 174.309 73.8784C174.35 73.8383 174.409 73.8222 174.442 73.7821C173.975 73.742 174.134 73.1079 174.309 72.8671C174.25 72.8831 174.175 72.9072 174.117 72.9072C174.35 73.0035 174.484 73.1881 174.484 73.445C174.484 73.5574 174.467 73.8222 174.292 73.7259C174.059 73.6135 173.984 73.2764 174.075 73.0757C174.117 73.0195 174.192 72.8911 174.267 72.9072C174.384 72.9072 174.425 73.0918 174.425 73.1881C174.475 73.3085 174.742 73.3085 174.708 73.14Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M174.625 73.7983C175.067 73.8545 175.325 74.1756 175.592 74.4726C175.867 74.7695 176.15 75.0505 176.483 75.2752C177.183 75.7649 177.957 76.1341 178.749 76.4311C179.54 76.7121 180.223 76.993 180.548 77.7957C180.823 78.4298 180.956 79.1201 181.073 79.8104C181.09 79.979 181.364 79.9068 181.348 79.7382C181.231 79.0078 181.056 78.3014 180.765 77.6111C180.473 76.9609 179.99 76.6238 179.315 76.3589C178.407 76.0057 177.491 75.6685 176.683 75.1067C176.241 74.8097 175.925 74.4565 175.575 74.0792C175.325 73.7982 175.05 73.6137 174.684 73.5575C174.534 73.5173 174.45 73.7742 174.625 73.7983Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M174.026 72.45C174.201 72.45 174.201 72.1851 174.026 72.1851C173.851 72.1931 173.851 72.45 174.026 72.45Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M174.142 72.4499C174.492 71.9844 174.317 71.278 174.317 70.7321C174.317 70.5636 174.042 70.5636 174.042 70.7321C174.042 71.2138 174.217 71.9041 173.909 72.3215C173.809 72.474 174.042 72.6024 174.142 72.4499Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M172.709 68.8697C171.86 68.7974 171.085 69.247 170.577 69.8811C170.019 70.6115 169.935 71.3581 170.11 72.2169C170.327 73.2604 170.61 74.328 171.177 75.2752C171.585 75.9816 172.168 76.6157 172.768 77.1615C173.351 77.6833 174.067 78.2211 174.883 78.2612C175.642 78.3013 176.258 77.7957 176.666 77.2338C177.133 76.5595 177.366 75.7407 177.399 74.938C177.441 74.0952 177.208 73.3888 176.874 72.6263C176.45 71.6952 176 70.6276 175.192 69.9613C174.534 69.4476 173.601 68.8135 172.709 68.8697C172.534 68.8697 172.534 69.1506 172.709 69.1346C173.467 69.0784 174.242 69.6001 174.8 70.0336C175.417 70.5232 175.825 71.1574 176.158 71.8477C176.508 72.538 176.916 73.2685 177.049 74.015C177.183 74.7454 177.124 75.508 176.874 76.2143C176.641 76.9047 176.158 77.6672 175.425 77.9481C174.667 78.2291 173.876 77.7635 173.309 77.314C172.035 76.3026 171.143 74.9782 170.693 73.4691C170.402 72.538 170.052 71.4544 170.502 70.5393C170.893 69.7205 171.726 69.0623 172.709 69.1586C172.884 69.1506 172.884 68.8857 172.709 68.8697Z" - fill="white" /> - <path - d="M172.709 68.8697C171.86 68.7974 171.085 69.247 170.577 69.8811C170.019 70.6115 169.935 71.3581 170.11 72.2169C170.327 73.2604 170.61 74.328 171.177 75.2752C171.585 75.9816 172.168 76.6157 172.768 77.1615C173.351 77.6833 174.067 78.2211 174.883 78.2612C175.642 78.3013 176.258 77.7957 176.666 77.2338C177.133 76.5595 177.366 75.7407 177.399 74.938C177.441 74.0952 177.208 73.3888 176.874 72.6263C176.45 71.6952 176 70.6276 175.192 69.9613C174.534 69.4476 173.601 68.8135 172.709 68.8697ZM172.709 68.8697C172.534 68.8697 172.534 69.1506 172.709 69.1346C173.467 69.0784 174.242 69.6001 174.8 70.0336C175.417 70.5232 175.825 71.1574 176.158 71.8477C176.508 72.538 176.916 73.2685 177.049 74.015C177.183 74.7454 177.124 75.508 176.874 76.2143C176.641 76.9047 176.158 77.6672 175.425 77.9481C174.667 78.2291 173.876 77.7635 173.309 77.314C172.035 76.3026 171.143 74.9782 170.693 73.4691C170.402 72.538 170.052 71.4544 170.502 70.5393C170.893 69.7205 171.726 69.0623 172.709 69.1586C172.884 69.1506 172.884 68.8857 172.709 68.8697Z" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M172.709 68.8697C171.86 68.7974 171.085 69.247 170.577 69.8811C170.019 70.6115 169.935 71.3581 170.11 72.2169C170.327 73.2604 170.61 74.328 171.177 75.2752C171.585 75.9816 172.168 76.6157 172.768 77.1615C173.351 77.6833 174.067 78.2211 174.883 78.2612C175.642 78.3013 176.258 77.7957 176.666 77.2338C177.133 76.5595 177.366 75.7407 177.399 74.938C177.441 74.0952 177.208 73.3888 176.874 72.6263C176.45 71.6952 176 70.6276 175.192 69.9613C174.534 69.4476 173.601 68.8135 172.709 68.8697ZM172.709 68.8697C172.534 68.8697 172.534 69.1506 172.709 69.1346C173.467 69.0784 174.242 69.6001 174.8 70.0336C175.417 70.5232 175.825 71.1574 176.158 71.8477C176.508 72.538 176.916 73.2685 177.049 74.015C177.183 74.7454 177.124 75.508 176.874 76.2143C176.641 76.9047 176.158 77.6672 175.425 77.9481C174.667 78.2291 173.876 77.7635 173.309 77.314C172.035 76.3026 171.143 74.9782 170.693 73.4691C170.402 72.538 170.052 71.4544 170.502 70.5393C170.893 69.7205 171.726 69.0623 172.709 69.1586C172.884 69.1506 172.884 68.8857 172.709 68.8697Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M180.656 79.7865C179.34 79.2085 178.857 82.7725 180.815 82.941C182.589 83.1096 182.689 79.8587 180.656 79.7865Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M180.656 80.8701C180.581 80.8701 180.556 80.9263 180.498 81.0226C180.398 81.3357 180.498 81.5845 180.864 81.5283C180.964 81.2233 180.848 80.8862 180.656 80.8701Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M180.806 53.6989C181.348 53.6026 182.239 53.7391 182.764 53.5464C183.755 53.2093 183.172 52.2942 182.589 51.7564C181.214 50.4721 179.873 51.1785 178.249 51.331C178.207 52.0936 177.766 55.5692 179.082 55.4167C179.099 55.0795 178.757 53.6989 179.04 53.4742C179.49 53.121 180.556 54.7746 180.806 53.6989Z" - fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" - fill="white" /> - <path - d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" - fill="white" /> - <path - d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" - fill="white" /> - <path - d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" - fill="white" /> - <path - d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M183.813 69.8973C183.197 70.1381 183.93 72.811 184.005 73.3488C184.08 73.8305 184.197 74.2639 184.372 74.7294C184.505 75.1067 184.505 75.8853 184.696 76.1823C184.946 76.5596 185.721 76.6479 186.029 76.3509C186.379 76.0138 186.396 76.5195 186.396 76.086C186.396 74.9622 186.221 72.5782 186.104 71.4785C186.029 70.7481 185.771 68.4364 185.021 68.2838C184.297 68.1394 184.372 69.6163 183.813 69.8973Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" - fill="white" /> - <path - d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" - fill="white" /> - <path - d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" - fill="white" /> - <path - d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" - fill="white" /> - <path - d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" - fill="white" /> - <path - d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" - fill="white" /> - <path - d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" - stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M184.913 76.4473C184.696 77.3062 186.97 78.6307 187.912 78.1089C188.628 77.7156 187.737 76.6881 187.179 76.351C186.712 76.054 184.705 76.1664 184.913 76.4473Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" - fill="white" /> - <path - d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" - fill="white" /> - <path - d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" - fill="white" /> - <path - d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373ZM182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" - fill="white" /> - <path - d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373ZM182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" - stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M181.739 56.42C183.23 56.2514 184.53 57.929 184.105 59.3337C183.872 60.1204 182.939 59.7431 182.614 60.3451C182.322 60.8829 182.672 62.1913 182.689 62.7933C182.764 64.3265 182.497 66.1165 181.331 67.2162C180.056 68.4684 178.099 68.0912 176.45 67.8503C175.175 67.6657 174.783 68.7815 175.133 66.2289C175.325 64.8081 176.183 63.8048 176.45 62.4562C175.95 62.1913 175.5 62.6088 175.058 62.2716C174.559 61.8783 174.883 61.1318 175.042 60.5699C175.408 59.2856 176.091 58.3705 177.133 57.5117C177.557 57.1585 178.082 56.7812 178.665 56.8374C179.498 56.9337 179.557 57.921 180.173 58.1056C180.989 58.3464 180.698 57.303 180.989 56.9096C181.289 56.5163 181.231 56.3638 181.739 56.42Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" - fill="white" /> - <path - d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" - fill="white" /> - <path - d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M180.306 79.7301C181.856 79.5776 182.939 82.5877 181.198 82.8686C181.123 82.8847 181.156 83.0211 181.239 82.9971C183.139 82.7001 182.014 79.4491 180.331 79.6016C180.206 79.6177 180.206 79.7461 180.306 79.7301Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - </symbol> - - <symbol id="check" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M18.9977 6.2526C19.4105 6.61952 19.4477 7.25159 19.0808 7.66437L10.9326 16.831C10.5785 17.2294 9.97428 17.28 9.55883 16.9462L4.37364 12.7795C3.94313 12.4336 3.87458 11.8041 4.22053 11.3736C4.56647 10.9431 5.19592 10.8746 5.62643 11.2205L10.0699 14.7912L17.586 6.33565C17.9529 5.92286 18.585 5.88568 18.9977 6.2526Z" - fill="#696969" /> - </symbol> - - <symbol id="unfold" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M6 10L12.5 17L19 10" stroke="black" stroke-linecap="round" stroke-linejoin="round" /> - </symbol> - - <symbol id="fold" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M9.33203 13.3333L15.9987 20L22.6654 13.3333H9.33203Z" fill="#333333" /> - </symbol> - - <symbol id="searchPrintMarker" width="20" height="20" viewBox="0 0 20 20" fill="none" - xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M12.3519 15.8973C14.9053 13.5588 16.875 11.7548 16.875 8.7963C16.875 4.97377 13.797 1.875 10 1.875C6.20304 1.875 3.125 4.97377 3.125 8.7963C3.125 11.9219 4.72381 13.3564 7.75803 16.0788C8.43459 16.6858 9.18252 17.3569 10 18.125C10.8107 17.3088 11.6062 16.5803 12.3519 15.8973ZM10 11.5046C11.4858 11.5046 12.6902 10.2921 12.6902 8.7963C12.6902 7.30053 11.4858 6.08796 10 6.08796C8.51423 6.08796 7.30978 7.30053 7.30978 8.7963C7.30978 10.2921 8.51423 11.5046 10 11.5046Z" - stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" /> - </symbol> - - <symbol id="searchPrintStructure" width="13" height="14" viewBox="0 0 13 14" fill="none" - xmlns="http://www.w3.org/2000/svg"> - <g clip-path="url(#clip0_10059_198649)"> - <path - d="M1.77283 5.40455L6.55919 1.68182L11.3456 5.40455V11.2546C11.3456 11.5366 11.2335 11.8072 11.034 12.0067C10.8346 12.2061 10.564 12.3182 10.2819 12.3182H2.83646C2.55437 12.3182 2.28383 12.2061 2.08436 12.0067C1.88489 11.8072 1.77283 11.5366 1.77283 11.2546V5.40455Z" - stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /> - <path d="M4.96375 12.3182V7H8.15465V12.3182" stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" - stroke-linejoin="round" /> - </g> - <defs> - <clipPath id="clip0_10059_198649"> - <rect width="13" height="13" fill="white" transform="translate(0 0.5)" /> - </clipPath> - </defs> - </symbol> - - - <symbol id="conseillerFranceService" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"> - <path d="M24.1752 4.3111L12 11.3612V25.4094L23.5247 45.3111H24.8255L36.3503 25.4094V11.3612L24.1752 4.3111Z" /> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M24.1752 2L38.3503 10.2083V25.9467L25.9785 47.3111H22.3718L10 25.9467V10.2082L24.1752 2ZM12 25.4094V11.3612L24.1752 4.31111L36.3503 11.3612V25.4094L24.8255 45.3111H23.5247L12 25.4094Z" - fill="white" /> - <path - d="M27.661 16.3823H32.2657V13.7028L24.175 9.02002L16.0582 13.7028V23.0682L24.175 27.725L32.2657 23.0682V20.3887H27.661V16.3823Z" - fill="white" /> - <path d="M27.661 20.3886V16.3823L24.1749 14.3531L20.6889 16.3823V20.3886L24.1749 22.3918L27.661 20.3886Z" - fill="#000091" /> - </symbol> - - <symbol id="conseillerFranceServiceSelected" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M24.1752 4.3111L12 11.3612V25.4094L23.5247 45.3111H24.8255L36.3503 25.4094V11.3612L24.1752 4.3111Z" - fill="white" /> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M24.1752 2L38.3503 10.2083V25.9467L25.9785 47.3111H22.3718L10 25.9467V10.2082L24.1752 2ZM12 25.4094V11.3612L24.1752 4.31111L36.3503 11.3612V25.4094L24.8255 45.3111H23.5247L12 25.4094Z" - fill="#ED3939" /> - <path - d="M27.661 16.3823H32.2657V13.7028L24.175 9.02002L16.0582 13.7028V23.0682L24.175 27.725L32.2657 23.0682V20.3887H27.661V16.3823Z" - fill="#ED3939" /> - <path d="M27.661 20.3886V16.3823L24.1749 14.3531L20.6889 16.3823V20.3886L24.1749 22.3918L27.661 20.3886Z" - fill="#3B3BE7" /> - </symbol> - - <symbol id="conseillerFranceServiceAdded" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M24.1752 4.3111L12 11.3612V25.4094L23.5247 45.3111H24.8255L36.3503 25.4094V11.3612L24.1752 4.3111Z" - fill="#47C562" /> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M24.1752 2L38.3503 10.2083V25.9467L25.9785 47.3111H22.3718L10 25.9467V10.2082L24.1752 2ZM12 25.4094V11.3612L24.1752 4.31111L36.3503 11.3612V25.4094L24.8255 45.3111H23.5247L12 25.4094Z" - fill="white" /> - <path d="M32.5 23.5746V13.9001L24.25 9L16 13.9001V23.5746L24.25 28.4118L32.5 23.5746Z" fill="white" /> - <path - d="M30.6177 15.3789C29.9985 14.8285 29.0504 14.8843 28.5 15.5035L23.452 21.1104L20.4396 18.507C19.7939 17.988 18.8497 18.0909 18.3308 18.7366C17.8119 19.3824 17.9147 20.3266 18.5605 20.8455L22.6853 24.3429C23.3085 24.8436 24.2149 24.7677 24.746 24.1702L30.7422 17.4966C31.2926 16.8774 31.2368 15.9293 30.6177 15.3789Z" - fill="#47C562" /> - </symbol> - - <symbol id="conseillerFranceServiceHover" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M24.1752 4.3111L12 11.3612V25.4094L23.5247 45.3111H24.8255L36.3503 25.4094V11.3612L24.1752 4.3111Z" - fill="#A00000" /> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M24.1752 2L38.3503 10.2083V25.9467L25.9785 47.3111H22.3718L10 25.9467V10.2082L24.1752 2ZM12 25.4094V11.3612L24.1752 4.31111L36.3503 11.3612V25.4094L24.8255 45.3111H23.5247L12 25.4094Z" - fill="white" /> - <path - d="M27.661 16.3823H32.2657V13.7028L24.175 9.02002L16.0582 13.7028V23.0682L24.175 27.725L32.2657 23.0682V20.3887H27.661V16.3823Z" - fill="white" fill-opacity="0.8" /> - <path d="M27.661 20.3886V16.3823L24.1749 14.3531L20.6889 16.3823V20.3886L24.1749 22.3918L27.661 20.3886Z" - fill="#010176" /> - </symbol> - - <symbol id="borne" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> - <rect x="5" width="12" height="9" rx="1" stroke-width="1.9" fill="none" /> - <path d="M6 14H16L14.6364 22H7.36364L6 14Z" /> - <path - d="M5.04692 10.1658C5.12212 10.0617 5.24275 10 5.37119 10H16.6288C16.7573 10 16.8779 10.0617 16.9531 10.1658L18.542 12.3658C18.733 12.6303 18.544 13 18.2177 13H3.7823C3.45599 13 3.26698 12.6303 3.45803 12.3658L5.04692 10.1658Z" - stroke="none" /> - </symbol> - - <symbol id="wifi" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> - <path - d="M1.08488 8.63175C3.61838 6.09825 7.11838 4.53125 10.9844 4.53125C14.8504 4.53125 18.3504 6.09825 20.8839 8.63175L19.4697 10.046C17.2981 7.87439 14.2981 6.53125 10.9844 6.53125C7.67066 6.53125 4.67066 7.8744 2.49909 10.046L1.08488 8.63175Z" - stroke="none" /> - <path - d="M1.20434 28.5488C3.72784 31.0128 7.17878 32.5312 10.9844 32.5312C14.7486 32.5312 18.1658 31.0457 20.6818 28.6288C20.0912 29.196 19.4494 29.7127 18.7624 30.1718C16.4601 31.7102 13.7533 32.5312 10.9844 32.5312C8.21543 32.5312 5.50867 31.7102 3.20639 30.1718C2.48717 29.6913 1.81751 29.1474 1.20434 28.5488Z" - stroke="none" /> - <path - d="M18.0554 11.4602C16.2458 9.65054 13.7458 8.53125 10.9844 8.53125C8.22295 8.53125 5.72295 9.65054 3.91331 11.4602L5.32752 12.8744C6.77523 11.4267 8.77523 10.5312 10.9844 10.5312C13.1935 10.5312 15.1935 11.4267 16.6412 12.8744L18.0554 11.4602Z" - stroke="none" /> - <path - d="M15.227 14.2886C14.1412 13.2028 12.6412 12.5312 10.9844 12.5312C9.32752 12.5312 7.82752 13.2028 6.74173 14.2886L8.15595 15.7028C8.8798 14.979 9.8798 14.5312 10.9844 14.5312C12.0889 14.5312 13.0889 14.979 13.8128 15.7028L15.227 14.2886Z" - stroke="none" /> - <path - d="M12.3986 17.117C12.0367 16.7551 11.5367 16.5312 10.9844 16.5312C10.4321 16.5312 9.93209 16.7551 9.57016 17.117L10.9844 18.5312L12.3986 17.117Z" - stroke="none" /> - </symbol> - - <symbol id="moreOpts" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M11 7.66675C12.1 7.66675 13 6.76675 13 5.66675C13 4.56675 12.1 3.66675 11 3.66675C9.9 3.66675 9 4.56675 9 5.66675C9 6.76675 9.9 7.66675 11 7.66675ZM11 9.66675C9.9 9.66675 9 10.5667 9 11.6667C9 12.7667 9.9 13.6667 11 13.6667C12.1 13.6667 13 12.7667 13 11.6667C13 10.5667 12.1 9.66675 11 9.66675ZM9 17.6667C9 16.5667 9.9 15.6667 11 15.6667C12.1 15.6667 13 16.5667 13 17.6667C13 18.7667 12.1 19.6667 11 19.6667C9.9 19.6667 9 18.7667 9 17.6667Z" - stroke="none" /> - </symbol> - - <symbol id="camera" width="100" height="113" viewBox="0 0 100 113" fill="none" xmlns="http://www.w3.org/2000/svg"> - <rect width="100" height="113" rx="12" fill="#F8F8F8" /> - <path d="M27 11H15C13.8954 11 13 11.8954 13 13V25" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round" /> - <path d="M27 100H15C13.8954 100 13 99.1046 13 98V86" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round" /> - <path d="M73 11H85C86.1046 11 87 11.8954 87 13V25" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round" /> - <path d="M73 100H85C86.1046 100 87 99.1046 87 98V86" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round" /> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M61.1175 39.1429H72.7941C75.6692 39.1429 78 41.5002 78 44.4082V70.7347C78 73.6426 75.6692 76 72.7941 76H24.2059C21.3308 76 19 73.6426 19 70.7347V44.4082C19 41.5002 21.3308 39.1429 24.2059 39.1429H36.7502C37.8558 35.5825 41.1444 33 45.0294 33H52.8382C56.7232 33 60.0119 35.5825 61.1175 39.1429ZM49.5 70C56.9558 70 63 63.9558 63 56.5C63 49.0442 56.9558 43 49.5 43C42.0442 43 36 49.0442 36 56.5C36 63.9558 42.0442 70 49.5 70Z" - fill="#C4C4C4" /> - <circle cx="49.5" cy="56.5" r="10.5" fill="#BDBDBD" /> - </symbol> - - <symbol id="locateMe" width="25" height="34" viewBox="0 0 24 27" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M15.5591 23.2986C19.8303 19.413 23.125 16.4157 23.125 11.5C23.125 5.14873 17.9763 0 11.625 0C5.27373 0 0.125 5.14873 0.125 11.5C0.125 16.6933 2.79938 19.0768 7.87479 23.6001C9.00649 24.6087 10.2576 25.7237 11.625 27C12.9811 25.6439 14.3117 24.4334 15.5591 23.2986ZM11.625 16C14.1103 16 16.125 13.9853 16.125 11.5C16.125 9.01472 14.1103 7 11.625 7C9.13972 7 7.125 9.01472 7.125 11.5C7.125 13.9853 9.13972 16 11.625 16Z" - fill="#828282" /> - </symbol> - - <symbol id="passNumeric" width="25" height="45" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M1.875 9.49658H35.875V14.8452C34.0229 15.5776 32.7128 17.3841 32.7128 19.4966C32.7128 21.6091 34.0229 23.4157 35.875 24.148V29.4966H1.875V24.148C3.72706 23.4157 5.03717 21.6091 5.03717 19.4966C5.03717 17.3841 3.72706 15.5776 1.875 14.8452V9.49658Z" - fill="white" /> - <path - d="M35.875 9.49658H36.525C36.525 9.1376 36.234 8.84658 35.875 8.84658V9.49658ZM1.875 9.49658V8.84658C1.51601 8.84658 1.225 9.1376 1.225 9.49658H1.875ZM35.875 14.8452L36.114 15.4497C36.3621 15.3516 36.525 15.1119 36.525 14.8452H35.875ZM35.875 24.148H36.525C36.525 23.8813 36.3621 23.6417 36.114 23.5436L35.875 24.148ZM35.875 29.4966V30.1466C36.234 30.1466 36.525 29.8556 36.525 29.4966H35.875ZM1.875 29.4966H1.225C1.225 29.8556 1.51601 30.1466 1.875 30.1466L1.875 29.4966ZM1.875 24.148L1.63598 23.5436C1.38794 23.6417 1.225 23.8813 1.225 24.148H1.875ZM1.875 14.8452H1.225C1.225 15.1119 1.38794 15.3516 1.63598 15.4497L1.875 14.8452ZM35.875 8.84658H1.875V10.1466H35.875V8.84658ZM36.525 14.8452V9.49658H35.225V14.8452H36.525ZM33.3628 19.4966C33.3628 17.6598 34.5016 16.0873 36.114 15.4497L35.636 14.2407C33.5443 15.0679 32.0628 17.1084 32.0628 19.4966H33.3628ZM36.114 23.5436C34.5016 22.906 33.3628 21.3335 33.3628 19.4966H32.0628C32.0628 21.8848 33.5443 23.9254 35.636 24.7525L36.114 23.5436ZM36.525 29.4966V24.148H35.225V29.4966H36.525ZM1.875 30.1466H35.875V28.8466H1.875V30.1466ZM1.225 24.148V29.4966H2.525V24.148H1.225ZM4.38717 19.4966C4.38717 21.3335 3.24841 22.906 1.63598 23.5436L2.11402 24.7525C4.20571 23.9254 5.68717 21.8848 5.68717 19.4966H4.38717ZM1.63598 15.4497C3.24841 16.0873 4.38717 17.6597 4.38717 19.4966H5.68717C5.68717 17.1084 4.20571 15.0679 2.11402 14.2407L1.63598 15.4497ZM1.225 9.49658V14.8452H2.525V9.49658H1.225Z" - fill="#4F4F4F" /> - <line x1="28.6031" y1="10.1466" x2="28.6031" y2="28.8466" stroke="#4F4F4F" stroke-width="1.3" stroke-linecap="round" - stroke-dasharray="2 3" /> - <line x1="10.0176" y1="19.9287" x2="20.0176" y2="19.9287" stroke="#348899" stroke-width="2" - stroke-linecap="round" /> - <line x1="10.0176" y1="24.9287" x2="16.0176" y2="24.9287" stroke="#348899" stroke-width="2" - stroke-linecap="round" /> - </symbol> - - <symbol id="search" width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M19.8262 19.8262L24.0001 24.0001Z" fill="#333333" /> - <path d="M19.8262 19.8262L24.0001 24.0001" stroke="#828282" stroke-width="2" stroke-linecap="round" - stroke-linejoin="round" /> - <path - d="M14.6087 21.2174C18.2586 21.2174 21.2174 18.2586 21.2174 14.6087C21.2174 10.9588 18.2586 8 14.6087 8C10.9588 8 8 10.9588 8 14.6087C8 18.2586 10.9588 21.2174 14.6087 21.2174Z" - stroke="#828282" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /> - </symbol> - - <symbol id="tagDelete" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M6.5 6.5L15.5 15.5" stroke="#BDBDBD" stroke-width="1.5" stroke-linecap="round" /> - <path d="M15.5 6.5L6.5 15.5" stroke="#BDBDBD" stroke-width="1.5" stroke-linecap="round" /> - </symbol> - - - <symbol id="tagReset" width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path - d="M2.41783 4.91505L2.1416 4.63882V6.22461H3.72739L3.61783 6.11505L2.41783 4.91505L3.12493 4.20794L2.41783 4.91505Z" - stroke="#333333" stroke-width="2" /> - <path - d="M3.9742 12.838C4.88949 13.8222 6.09674 14.4863 7.41803 14.7325C8.73932 14.9786 10.1047 14.7938 11.313 14.2053C12.5214 13.6167 13.5086 12.6556 14.1293 11.4635C14.7501 10.2714 14.9714 8.91138 14.7607 7.58397C14.55 6.25656 13.9185 5.03194 12.9592 4.09061C11.9999 3.14928 10.7635 2.54103 9.43236 2.35552C8.1012 2.17 6.74565 2.41704 5.56551 3.06021C4.38537 3.70338 3.44307 4.70866 2.87749 5.92789" - stroke="#333333" stroke-width="1.5" /> - </symbol> - - <symbol id="closeModal" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path - d="M27.0279 11.9135C27.5486 11.3928 28.2873 11.2873 28.6778 11.6778C29.0683 12.0683 28.9628 12.807 28.4421 13.3277L13.3572 28.4127C12.8365 28.9334 12.0978 29.0389 11.7072 28.6484C11.3167 28.2578 11.4222 27.5192 11.9429 26.9985L27.0279 11.9135Z" - fill="#333333" /> - <path - d="M28.0279 27.0279C28.5486 27.5486 28.6541 28.2873 28.2636 28.6778C27.8731 29.0683 27.1344 28.9628 26.6137 28.4421L11.5287 13.3572C11.008 12.8365 10.9025 12.0978 11.293 11.7072C11.6836 11.3167 12.4223 11.4222 12.943 11.9429L28.0279 27.0279Z" - fill="#333333" /> - </symbol> - - <symbol id="arrowBack" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M20 11L11 20L20 29" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" - stroke-linejoin="round" /> - <line x1="12.5679" y1="20.0684" x2="29.8861" y2="20.0684" stroke="black" stroke-width="1.5" - stroke-linecap="round" /> - </symbol> - - <symbol id="structureCategory_privateLucrative" width="52" height="52" viewBox="0 0 52 52" fill="none" - xmlns="http://www.w3.org/2000/svg"> - <rect width="52" height="52" rx="4" fill="white" /> - <path - d="M7.32104 39.6816C6.79673 39.9831 6.79461 40.4777 7.31467 40.7791L24.0607 50.5117C24.5828 50.8152 25.4319 50.8131 25.9562 50.5117L43.6044 40.3227C44.1287 40.0213 44.1329 39.5288 43.6107 39.2253L26.8647 29.4927C26.3447 29.1912 25.4935 29.1912 24.9692 29.4927L7.32104 39.6816Z" - fill="#DFB74F" /> - <path d="M38.1703 24.863V39.6774L25.2197 47.0856V32.2691L38.1703 24.863Z" fill="white" /> - <path d="M38.1703 24.863V39.6774L25.2197 47.0856V32.2691L38.1703 24.863Z" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.2197 32.2692L12.2861 24.8525L25.2197 17.4294L38.1703 24.8631L25.2197 32.2692Z" fill="white" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M25.2112 31.1761L14.2071 24.8653L25.2112 18.5503L36.228 24.8738L25.2112 31.1761Z" fill="white" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M12.286 24.8528L12.2669 39.6777L25.2197 47.086V32.2695L12.286 24.8528Z" fill="white" /> - <path d="M12.286 24.8528L12.2669 39.6777L25.2197 47.086V32.2695L12.286 24.8528Z" fill="#BDBDBD" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M25.2196 15.7334L38.1724 23.1692L25.2196 30.5753L12.286 23.1565L25.2196 15.7334ZM36.228 23.1819L25.2111 16.8563L14.2092 23.1735L25.2111 29.4842L36.228 23.1819Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M38.1703 23.1692V25.8247L25.2198 33.2329V30.5753L38.1703 23.1692Z" fill="white" /> - <path d="M38.1703 25.8247V23.1692L25.2198 30.5753V33.2329" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.2197 30.5754V33.0866L12.2861 25.6677V23.1587L25.2197 30.5754Z" fill="#BDBDBD" /> - <path d="M25.2197 33.0866V30.5754L12.2861 23.1587V25.6677" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.2112 16.8562V18.5501L15.6846 24.0182L14.2072 23.1734L25.2112 16.8562Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M36.228 23.1819L25.2112 16.8562V18.5501L34.7655 24.0182L36.228 23.1819Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M29 33.394L29.0328 45L35 41.606L34.9672 30L29 33.394Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M38.1702 8.85376V23.6702L25.2175 31.0763V16.2599L38.1702 8.85376Z" fill="white" /> - <path d="M38.1702 8.85376V23.6702L31.6939 27.3733L25.2175 31.0763V16.2599L38.1702 8.85376Z" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M25.2175 16.2597L12.286 8.84301L25.2175 1.41992L38.1702 8.85362L25.2175 16.2597Z" fill="white" /> - <path d="M25.2175 16.2597L12.286 8.84301L25.2175 1.41992L38.1702 8.85362L25.2175 16.2597Z" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M12.286 8.84302L12.2669 23.6701L25.2175 31.0762V16.2597L12.286 8.84302Z" fill="white" /> - <path d="M12.286 8.84302L12.2669 23.6701L25.2175 31.0762V16.2597L12.286 8.84302Z" fill="#BDBDBD" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M32.6309 14.2322V18.8256L35.9467 16.922V12.3286L32.6309 14.2322Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M27.7376 16.9388V21.5322L31.0533 19.6315V15.0381L27.7376 16.9388Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M32.5775 20.5311V25.1273L35.8932 23.2238V18.6304L32.5775 20.5311Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M27.6868 23.2407V27.8341L31.0026 25.9306V21.3372L27.6868 23.2407Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M17.9226 14.0851V18.6786L14.5878 16.775V12.1843L17.9226 14.0851Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M22.8414 16.7919V21.3882L19.5066 19.4846V14.8911L22.8414 16.7919Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M17.9113 20.3837V24.98L14.5737 23.0764V18.4829L17.9113 20.3837Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M22.8301 23.0933V27.6896L19.4953 25.786V21.1897L22.8301 23.0933Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M17.9226 30.0272V34.6208L14.5878 32.7171V28.1265L17.9226 30.0272Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M22.8414 32.734V37.3303L19.5066 35.4268V30.8333L22.8414 32.734Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M17.9113 36.3258V40.9221L14.5737 39.0186V34.425L17.9113 36.3258Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M22.8301 39.0354V43.6318L19.4953 41.7282V37.1318L22.8301 39.0354Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M38.1702 8.08521V8.85362L25.1135 16.5633V15.7949L38.1702 8.08521Z" fill="white" /> - <path d="M38.1702 8.08521V8.85362L25.1135 16.5633V15.7949L38.1702 8.08521Z" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.1134 15.7948L12.3326 8.46727L25.3724 0.738525L38.1702 8.08519L25.1134 15.7948Z" fill="#E9E9E9" /> - <path d="M12.3328 8.46704L12.3137 9.24396L25.1136 16.563V15.7946L12.3328 8.46704Z" fill="white" /> - <path d="M12.3328 8.46704L12.3137 9.24396L25.1136 16.563V15.7946L12.3328 8.46704Z" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M25.7486 1.47656L12.1813 8.74474" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" - stroke-linejoin="round" /> - <path d="M37.8622 8.26004L25.9456 1.34131" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" - stroke-linejoin="round" /> - </symbol> - - <symbol id="structureCategory_private" width="52" height="52" viewBox="0 0 52 52" fill="none" - xmlns="http://www.w3.org/2000/svg"> - <rect width="52" height="52" rx="4" fill="white" /> - <path - d="M7.32104 39.6816C6.79673 39.9831 6.79461 40.4777 7.31467 40.7791L24.0607 50.5117C24.5828 50.8152 25.4319 50.8131 25.9562 50.5117L43.6044 40.3227C44.1287 40.0213 44.1329 39.5288 43.6107 39.2253L26.8647 29.4927C26.3447 29.1912 25.4935 29.1912 24.9692 29.4927L7.32104 39.6816Z" - fill="#1B7183" /> - <path d="M38.1703 24.863V39.6774L25.2197 47.0856V32.2691L38.1703 24.863Z" fill="white" /> - <path d="M38.1703 24.863V39.6774L25.2197 47.0856V32.2691L38.1703 24.863Z" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.2197 32.2692L12.2861 24.8525L25.2197 17.4294L38.1703 24.8631L25.2197 32.2692Z" fill="white" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M25.2112 31.1761L14.2071 24.8653L25.2112 18.5503L36.228 24.8738L25.2112 31.1761Z" fill="white" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M12.286 24.8528L12.2669 39.6777L25.2197 47.086V32.2695L12.286 24.8528Z" fill="white" /> - <path d="M12.286 24.8528L12.2669 39.6777L25.2197 47.086V32.2695L12.286 24.8528Z" fill="#BDBDBD" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M25.2196 15.7334L38.1724 23.1692L25.2196 30.5753L12.286 23.1565L25.2196 15.7334ZM36.228 23.1819L25.2111 16.8563L14.2092 23.1735L25.2111 29.4842L36.228 23.1819Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M38.1703 23.1692V25.8247L25.2198 33.2329V30.5753L38.1703 23.1692Z" fill="white" /> - <path d="M38.1703 25.8247V23.1692L25.2198 30.5753V33.2329" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.2197 30.5754V33.0866L12.2861 25.6677V23.1587L25.2197 30.5754Z" fill="#BDBDBD" /> - <path d="M25.2197 33.0866V30.5754L12.2861 23.1587V25.6677" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.2112 16.8562V18.5501L15.6846 24.0182L14.2072 23.1734L25.2112 16.8562Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M36.228 23.1819L25.2112 16.8562V18.5501L34.7655 24.0182L36.228 23.1819Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M29 33.394L29.0328 45L35 41.606L34.9672 30L29 33.394Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M38.1702 8.85376V23.6702L25.2175 31.0763V16.2599L38.1702 8.85376Z" fill="white" /> - <path d="M38.1702 8.85376V23.6702L31.6939 27.3733L25.2175 31.0763V16.2599L38.1702 8.85376Z" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M25.2175 16.2597L12.286 8.84301L25.2175 1.41992L38.1702 8.85362L25.2175 16.2597Z" fill="white" /> - <path d="M25.2175 16.2597L12.286 8.84301L25.2175 1.41992L38.1702 8.85362L25.2175 16.2597Z" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M12.286 8.84302L12.2669 23.6701L25.2175 31.0762V16.2597L12.286 8.84302Z" fill="white" /> - <path d="M12.286 8.84302L12.2669 23.6701L25.2175 31.0762V16.2597L12.286 8.84302Z" fill="#BDBDBD" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M32.6309 14.2322V18.8256L35.9467 16.922V12.3286L32.6309 14.2322Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M27.7376 16.9388V21.5322L31.0533 19.6315V15.0381L27.7376 16.9388Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M32.5775 20.5311V25.1273L35.8932 23.2238V18.6304L32.5775 20.5311Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M27.6868 23.2407V27.8341L31.0026 25.9306V21.3372L27.6868 23.2407Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M17.9226 14.0851V18.6786L14.5878 16.775V12.1843L17.9226 14.0851Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M22.8414 16.7919V21.3882L19.5066 19.4846V14.8911L22.8414 16.7919Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M17.9113 20.3837V24.98L14.5737 23.0764V18.4829L17.9113 20.3837Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M22.8301 23.0933V27.6896L19.4953 25.786V21.1897L22.8301 23.0933Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M17.9226 30.0272V34.6208L14.5878 32.7171V28.1265L17.9226 30.0272Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M22.8414 32.734V37.3303L19.5066 35.4268V30.8333L22.8414 32.734Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M17.9113 36.3258V40.9221L14.5737 39.0186V34.425L17.9113 36.3258Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M22.8301 39.0354V43.6318L19.4953 41.7282V37.1318L22.8301 39.0354Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M38.1702 8.08521V8.85362L25.1135 16.5633V15.7949L38.1702 8.08521Z" fill="white" /> - <path d="M38.1702 8.08521V8.85362L25.1135 16.5633V15.7949L38.1702 8.08521Z" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.1134 15.7948L12.3326 8.46727L25.3724 0.738525L38.1702 8.08519L25.1134 15.7948Z" fill="#E9E9E9" /> - <path d="M12.3328 8.46704L12.3137 9.24396L25.1136 16.563V15.7946L12.3328 8.46704Z" fill="white" /> - <path d="M12.3328 8.46704L12.3137 9.24396L25.1136 16.563V15.7946L12.3328 8.46704Z" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M25.7486 1.47656L12.1813 8.74474" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" - stroke-linejoin="round" /> - <path d="M37.8622 8.26004L25.9456 1.34131" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" - stroke-linejoin="round" /> - </symbol> - - <symbol id="structureCategory_public" width="52" height="52" viewBox="0 0 52 52" fill="none" - xmlns="http://www.w3.org/2000/svg"> - <rect width="52" height="52" rx="4" fill="white" /> - <path - d="M7.39483 34.4973C6.87052 34.7987 6.8684 35.2933 7.38846 35.5948L24.1344 45.3273C24.6566 45.6309 25.5057 45.6288 26.03 45.3273L43.6782 35.1384C44.2025 34.8369 44.2067 34.3445 43.6845 34.0409L26.9385 24.3083C26.4185 24.0069 25.5673 24.0069 25.043 24.3083L7.39483 34.4973Z" - fill="#DA3635" /> - <path d="M38.2441 19.6787V34.4931L25.2935 41.9013V27.0848L38.2441 19.6787Z" fill="white" /> - <path d="M38.2441 19.6787V34.4931L25.2935 41.9013V27.0848L38.2441 19.6787Z" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.2935 27.0849L12.3599 19.6682L25.2935 12.2451L38.2441 19.6788L25.2935 27.0849Z" fill="white" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M25.2851 25.9918L14.281 19.681L25.2851 13.366L36.3019 19.6895L25.2851 25.9918Z" fill="white" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M12.3599 19.6685L12.3408 34.4934L25.2935 41.9016V27.0852L12.3599 19.6685Z" fill="white" /> - <path d="M12.3599 19.6685L12.3408 34.4934L25.2935 41.9016V27.0852L12.3599 19.6685Z" fill="#BDBDBD" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M25.2935 10.5491L38.2462 17.9849L25.2935 25.391L12.3599 17.9721L25.2935 10.5491ZM36.3018 17.9976L25.285 11.672L14.283 17.9891L25.285 24.2999L36.3018 17.9976Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M38.2442 17.9849V20.6404L25.2936 28.0486V25.391L38.2442 17.9849Z" fill="white" /> - <path d="M38.2442 20.6404V17.9849L25.2936 25.391V28.0486" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.2936 25.3911V27.9022L12.36 20.4834V17.9744L25.2936 25.3911Z" fill="#BDBDBD" /> - <path d="M25.2936 27.9022V25.3911L12.36 17.9744V20.4834" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.2851 11.6719V13.3658L15.7584 18.8339L14.281 17.989L25.2851 11.6719Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M36.3019 17.9975L25.2851 11.6719V13.3658L34.8393 18.8339L36.3019 17.9975Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M29.0739 28.2097L29.1066 39.8157L35.0739 36.4216L35.0411 24.8157L29.0739 28.2097Z" fill="white" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M17.9965 24.8429V29.4364L14.6617 27.5328V22.9421L17.9965 24.8429Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M22.9153 27.5497V32.146L19.5805 30.2424V25.6489L22.9153 27.5497Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M17.9852 31.1415V35.7378L14.6476 33.8342V29.2407L17.9852 31.1415Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M22.904 33.8511V38.4474L19.5692 36.5438V31.9475L22.904 33.8511Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M38.244 17.9309L25.1873 25.6406" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M24.8546 25.1435L12.0738 17.8159L25.4462 9.81592L38.244 17.1626L24.8546 25.1435Z" fill="#E9E9E9" /> - <path d="M25.8224 10.554L12.2551 17.8221" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" - stroke-linejoin="round" /> - <path d="M37.936 17.3374L26.0194 10.4187" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" - stroke-linejoin="round" /> - <path d="M24.9904 25.7346L12.5738 18.3159" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" - stroke-linejoin="round" /> - <path d="M26.0738 27.8157L16.0922 16.083L32.0058 7.91253L41.5738 18.8157L26.0738 27.8157Z" fill="white" - stroke="#696969" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M8.57379 17.8157L16.0922 16.0831L32.0058 7.91256L22.9568 9.60935L8.57379 17.8157Z" fill="#E9E9E9" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M8.57375 17.8157L16.6255 16.0773L26.0738 27.8157L8.57375 17.8157Z" fill="#BDBDBD" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - </symbol> - - <symbol id="profile" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path - d="M22.7499 24.492V21.3125C22.7499 20.4008 22.3878 19.5265 21.7431 18.8818C21.0985 18.2372 20.2241 17.875 19.3124 17.875H12.4375C11.5258 17.875 10.6515 18.2372 10.0068 18.8818C9.36216 19.5265 9 20.4008 9 21.3125V24.492" - stroke="#333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M15.875 15.625C18.1877 15.625 20.0625 13.7502 20.0625 11.4375C20.0625 9.1248 18.1877 7.25 15.875 7.25C13.5623 7.25 11.6875 9.1248 11.6875 11.4375C11.6875 13.7502 13.5623 15.625 15.875 15.625Z" - stroke="#333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /> - </symbol> - - <symbol id="toastError" width="40" height="41" viewBox="0 0 40 41" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path - d="M26.8169 11.4821C27.3593 10.9397 28.2738 10.9749 28.8596 11.5607C29.4454 12.1464 29.4806 13.061 28.9382 13.6034L13.2247 29.3169C12.6823 29.8593 11.7677 29.8241 11.1819 29.2383C10.5962 28.6525 10.561 27.738 11.1034 27.1956L26.8169 11.4821Z" - fill="#FF0000" /> - <path - d="M28.8169 27.5179C29.3593 28.0603 29.3241 28.9749 28.7383 29.5607C28.1525 30.1464 27.2379 30.1816 26.6955 29.6392L10.9821 13.9257C10.4397 13.3833 10.4748 12.4688 11.0606 11.883C11.6464 11.2972 12.561 11.262 13.1034 11.8044L28.8169 27.5179Z" - fill="#FF0000" /> - </symbol> - - <symbol id="toastSuccess" width="40" height="41" viewBox="0 0 40 41" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M10 21.1364L17.3889 27.5L23.1944 20.5L29 13.5" stroke="#47C562" stroke-width="3" stroke-linecap="round" - stroke-linejoin="round" /> - </symbol> - - <symbol id="annuaireUnlogged" width="200" height="200" viewBox="0 0 200 200" fill="none" - xmlns="http://www.w3.org/2000/svg"> - <path - d="M142.603 137.347L160.313 147.345C166.65 150.922 166.706 156.799 160.439 160.417L104.045 192.976C97.8274 196.566 87.7464 196.566 81.5286 192.976L41.3924 169.804" - stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8" /> - <path - d="M66.5 94.4999L33.0409 74.8039C26.9259 71.2042 26.9744 65.4325 33.1496 61.8672L77.934 36.0109C84.1518 32.421 94.2329 32.421 100.451 36.0109L168.296 75.1812" - stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8" /> - <path - d="M87.3501 44.8181C88.2118 45.3162 88.2182 46.1259 87.3597 46.624L59.807 62.6264C58.9485 63.1245 57.5499 63.1245 56.6881 62.6264L27.6499 45.8721C26.7882 45.374 26.7818 44.5642 27.6403 44.0662L55.193 28.0637C56.0483 27.5657 57.4501 27.5657 58.3119 28.0637L87.3501 44.8181Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" /> - <path - d="M46.8908 38.1021C46.8618 38.1182 46.8362 38.1343 46.8072 38.1503C45.9358 38.703 45.9358 39.5578 46.8072 40.1073C47.4085 40.4864 48.2702 40.6343 49.0773 40.5507C49.193 40.5378 49.2798 40.6085 49.2252 40.6696C48.2702 41.7043 48.4631 42.9993 49.8072 43.9215C49.8843 43.9729 50.0226 43.9761 50.1062 43.9279L56.9453 39.9819C57.0289 39.9337 57.0257 39.8534 56.9357 39.8084C55.3441 39.0276 53.1093 38.9119 51.3184 39.4614C51.2123 39.4935 51.0933 39.4421 51.1126 39.3746C51.2508 38.9248 51.0226 38.446 50.4245 38.1021C49.4567 37.5366 47.8715 37.5366 46.8908 38.1021Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M65.8648 38.7255C66.0545 38.8348 66.0545 39.0115 65.868 39.1208L49.8232 48.4394C49.6367 48.5487 49.3281 48.5487 49.1384 48.4394C48.9487 48.3302 48.9519 48.1535 49.1384 48.0442L65.1831 38.7255C65.3696 38.6195 65.6751 38.6163 65.8648 38.7255Z" - fill="#706F6F" /> - <path - d="M56.5017 46.8715C56.6914 46.9807 56.6914 47.1575 56.5049 47.2667L52.3474 49.6832C52.1609 49.7924 51.8555 49.7924 51.6658 49.6832C51.476 49.5739 51.4728 49.3972 51.6625 49.2879L55.82 46.8715C56.0065 46.7622 56.3152 46.7622 56.5017 46.8715Z" - fill="#706F6F" /> - <path - d="M67.9773 40.2487C68.1671 40.3579 68.1638 40.5347 67.9773 40.6439L59.7299 45.435C59.5434 45.5443 59.2379 45.5443 59.0482 45.435C58.8585 45.3257 58.8585 45.149 59.045 45.0398L67.2925 40.2487C67.479 40.1394 67.7844 40.1362 67.9773 40.2487Z" - fill="#706F6F" /> - <path - d="M62.5434 51.2802C62.7781 51.4151 62.7813 51.6369 62.5466 51.775L59.1286 53.7609C58.8939 53.8958 58.5113 53.8958 58.2766 53.7609L54.8361 51.775C54.6014 51.6401 54.5982 51.4183 54.8329 51.2802L58.2509 49.2943C58.4856 49.1594 58.8682 49.1594 59.1029 49.2943L62.5434 51.2802Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" /> - <path - d="M67.9805 47.8771C68.2153 48.0121 68.2185 48.2338 67.9838 48.372L64.5658 50.3578C64.3311 50.4928 63.9484 50.4928 63.7137 50.3578L60.2732 48.372C60.0385 48.237 60.0353 48.0153 60.27 47.8771L63.688 45.8913C63.9227 45.7563 64.3053 45.7563 64.54 45.8913L67.9805 47.8771Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" /> - <path - d="M73.7201 44.3265C74.0577 44.5225 74.0609 44.8406 73.7233 45.0334L70.3053 47.0192C69.9709 47.2153 69.4211 47.2153 69.0835 47.0192L65.643 45.0334C65.3054 44.8374 65.3022 44.5225 65.6398 44.3265L69.0578 42.3406C69.3922 42.1446 69.942 42.1446 70.2796 42.3406L73.7201 44.3265Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" /> - <path - d="M60.0852 26.4489C60.4635 26.668 60.4678 27.0203 60.0895 27.2394L57.8798 28.524C57.5015 28.7431 56.891 28.7431 56.5127 28.524L54.2859 27.2394C53.9076 27.0203 53.9033 26.668 54.2816 26.4489L56.4913 25.1643C56.8696 24.9452 57.48 24.9452 57.8583 25.1643L60.0852 26.4489Z" - fill="#DA3635" /> - <path - d="M58.5455 26.6293C58.5756 26.6465 58.5928 26.6679 58.5971 26.6937C58.5928 26.7453 58.5197 26.7882 58.4337 26.7882H57.4149L57.3504 26.8226L57.3547 27.4112C57.3504 27.4627 57.2773 27.5057 57.1914 27.5057C57.1441 27.5057 57.1054 27.4971 57.0753 27.4799C57.0452 27.4628 57.028 27.437 57.028 27.4112L57.0237 26.8226L56.9592 26.7839H55.9403C55.8931 26.7839 55.8544 26.7754 55.8243 26.7582C55.7942 26.741 55.777 26.7152 55.777 26.6894C55.777 26.6379 55.8501 26.5949 55.9403 26.5949H56.9592L57.0237 26.5605V25.972C57.0237 25.9204 57.0968 25.8774 57.1871 25.8774C57.2343 25.8774 57.273 25.8903 57.3031 25.9075C57.3332 25.9247 57.3504 25.9462 57.3547 25.972V26.5605L57.4192 26.5992H58.438C58.4767 26.5992 58.5154 26.6121 58.5455 26.6293Z" - fill="white" /> - <path - d="M45.7227 53.7692C47.499 54.7931 47.5063 56.4537 45.7444 57.4811C43.9825 58.505 41.1136 58.505 39.3372 57.4811C37.5609 56.4573 37.5537 54.7967 39.3192 53.7692C41.0847 52.7418 43.95 52.7454 45.7227 53.7692Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" /> - <path - d="M78.7227 34.7692C80.499 35.7931 80.5063 37.4537 78.7444 38.4811C76.9825 39.505 74.1136 39.505 72.3372 38.4811C70.5609 37.4573 70.5537 35.7967 72.3192 34.7692C74.0847 33.7418 76.95 33.7454 78.7227 34.7692Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" /> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M92.0481 60.1646C91.7298 59.9452 91.3135 59.929 90.9791 60.123L16.2987 103.428C15.6638 103.796 15.6286 104.7 16.2329 105.117L61.2513 136.136C61.2513 136.136 61.2514 136.136 61.2515 136.136C61.2515 136.136 61.2516 136.136 61.2517 136.136L107.428 157.563C107.724 157.701 108.068 157.685 108.35 157.521L182.833 114.331C183.533 113.925 183.486 112.9 182.752 112.559L137.846 91.7207C137.846 91.7207 137.846 91.7207 137.846 91.7207V91.7206C137.846 91.7206 137.846 91.7205 137.846 91.7206C137.846 91.7206 137.846 91.7206 137.846 91.7206L92.0481 60.1646Z" - fill="white" /> - <path - d="M137.846 91.7206L137.562 92.1323L137.846 91.7206ZM137.846 91.7207L137.635 92.1743L137.846 91.7207ZM182.833 114.331L183.084 114.764L182.833 114.331ZM182.752 112.559L182.542 113.013L182.752 112.559ZM107.428 157.563L107.638 157.11L107.428 157.563ZM108.35 157.521L108.601 157.954L108.35 157.521ZM61.2517 136.136L61.4621 135.682L61.2517 136.136ZM61.2513 136.136L60.9676 136.547L61.2513 136.136ZM90.9791 60.123L91.2299 60.5555L90.9791 60.123ZM92.0481 60.1646L92.3318 59.7529L92.0481 60.1646ZM16.2329 105.117L15.9492 105.528L16.2329 105.117ZM16.5495 103.861L91.2299 60.5555L90.7283 59.6904L16.0479 102.995L16.5495 103.861ZM61.535 135.724L16.5166 104.705L15.9492 105.528L60.9676 136.547L61.535 135.724ZM107.638 157.11L61.4621 135.682L61.0412 136.589L107.217 158.017L107.638 157.11ZM182.582 113.899L108.1 157.089L108.601 157.954L183.084 114.764L182.582 113.899ZM137.635 92.1743L182.542 113.013L182.963 112.105L138.056 91.2672L137.635 92.1743ZM137.346 91.7206V91.7207H138.346V91.7206H137.346ZM91.7644 60.5763L137.562 92.1323L138.129 91.3088L92.3318 59.7529L91.7644 60.5763ZM137.598 91.2865C137.77 91.1877 137.977 91.2038 138.129 91.3088L137.562 92.1323C137.715 92.2374 137.921 92.2534 138.094 92.1547L137.598 91.2865ZM138.346 91.7206C138.346 91.3367 137.931 91.0959 137.598 91.2865L138.094 92.1547C137.761 92.3451 137.346 92.1045 137.346 91.7206H138.346ZM138.056 91.2672C138.233 91.3491 138.346 91.526 138.346 91.7207H137.346C137.346 91.9153 137.459 92.0923 137.635 92.1743L138.056 91.2672ZM183.084 114.764C184.134 114.155 184.063 112.616 182.963 112.105L182.542 113.013C182.909 113.183 182.932 113.696 182.582 113.899L183.084 114.764ZM107.217 158.017C107.661 158.223 108.178 158.199 108.601 157.954L108.1 157.089C107.959 157.171 107.786 157.178 107.638 157.11L107.217 158.017ZM61.505 136.567C61.358 136.653 61.1842 136.656 61.0412 136.589L61.4621 135.682C61.319 135.616 61.1451 135.618 60.998 135.705L61.505 136.567ZM60.9676 136.547C61.1277 136.658 61.3373 136.665 61.505 136.567L60.998 135.705C61.1655 135.606 61.3749 135.614 61.535 135.724L60.9676 136.547ZM91.2299 60.5555C91.3971 60.4585 91.6052 60.4666 91.7644 60.5763L92.3318 59.7529C91.8543 59.4238 91.2299 59.3995 90.7283 59.6904L91.2299 60.5555ZM16.0479 102.995C15.0955 103.548 15.0427 104.904 15.9492 105.528L16.5166 104.705C16.2144 104.497 16.232 104.045 16.5495 103.861L16.0479 102.995Z" - fill="#DA3635" /> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M93.2787 66.1783C92.9604 65.9589 92.5441 65.9427 92.2097 66.1366L24.8316 105.207C24.1967 105.575 24.1615 106.479 24.7659 106.896L64.8471 134.513C65.1654 134.732 65.5816 134.749 65.9161 134.555L133.294 95.484C133.929 95.1158 133.964 94.2119 133.36 93.7955L93.2787 66.1783ZM135.133 94.9109C134.837 94.7735 134.493 94.7892 134.21 94.9529L67.0302 133.909C66.3303 134.315 66.377 135.34 67.1109 135.681L107.098 154.236C107.394 154.374 107.738 154.358 108.02 154.194L175.2 115.239C175.9 114.833 175.853 113.807 175.12 113.466L135.133 94.9109Z" - fill="#EDEDED" /> - <path - d="M30.1357 104.232L90.864 69.0171C90.9506 68.9673 91.0688 68.9756 91.1987 69.0487L30.4704 104.263C30.3422 104.19 30.2223 104.182 30.1357 104.232Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M30.4703 104.263L91.1986 69.0486L92.6902 70.0735L31.9619 105.29L30.4703 104.263Z" fill="white" - stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M31.9369 104.523L92.6652 69.3079C92.6818 69.298 92.7018 69.2897 92.7218 69.2847L31.9918 104.499C31.9718 104.504 31.9535 104.513 31.9369 104.523Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M31.9386 103.69L92.6669 68.4755C92.6919 68.4606 92.7202 68.4522 92.7501 68.4473L32.0218 103.662C31.9919 103.667 31.9636 103.675 31.9386 103.69Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M31.9419 102.818L92.6685 67.6034C92.6952 67.5885 92.7235 67.5785 92.7568 67.5752L32.0285 102.79C31.9968 102.793 31.9669 102.803 31.9419 102.818Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M31.9453 101.245L92.6736 66.0304C92.7552 65.9823 92.87 65.9906 92.9932 66.0603L32.2649 101.277C32.1418 101.205 32.0285 101.199 31.9453 101.245Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M69.1141 130.918L129.841 95.7034L129.846 95.7084L69.1191 130.923L69.1141 130.918Z" fill="white" - stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M69.119 130.923L129.846 95.7085H129.852L69.124 130.923H69.119Z" fill="white" stroke="#DA3635" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M132.121 98.4875L71.3931 133.702C71.493 133.644 71.5545 133.521 71.5562 133.345C71.5562 133.264 71.5429 133.177 71.5179 133.091L132.246 97.8762C132.271 97.9626 132.285 98.049 132.285 98.1304C132.283 98.3048 132.221 98.4294 132.121 98.4875Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M106 148.5V144L166 109L168.5 114L108 149.5L106 148.5Z" fill="white" /> - <path - d="M168.851 114.705L108.122 149.92C108.217 149.865 108.272 149.739 108.257 149.564C108.234 149.272 108.029 148.945 107.745 148.784L168.473 113.569C168.759 113.73 168.962 114.057 168.986 114.35C168.999 114.524 168.946 114.651 168.851 114.705Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M107.745 148.784C108.031 148.945 108.234 149.272 108.257 149.564C108.282 149.875 108.092 150.031 107.833 149.912L71.518 133.091C71.5429 133.177 71.5563 133.264 71.5563 133.345C71.5546 133.697 71.3049 133.84 70.9969 133.662L67.2312 131.493C66.9233 131.315 66.6736 130.885 66.6752 130.533C66.6752 130.451 66.6902 130.38 66.7152 130.323L30.422 105.315C30.164 105.137 29.9759 104.763 30.0025 104.483C30.0275 104.219 30.2322 104.127 30.472 104.265L31.9619 105.29C31.8554 105.122 31.7938 104.925 31.8088 104.76C31.8221 104.616 31.892 104.526 31.9936 104.501C31.8687 104.325 31.7954 104.107 31.8121 103.928C31.8271 103.77 31.9086 103.679 32.0235 103.664C31.8837 103.483 31.7971 103.247 31.8154 103.056C31.8304 102.896 31.9136 102.805 32.0318 102.79C31.8887 102.607 31.8004 102.37 31.8188 102.177C31.8287 102.067 31.872 101.991 31.9353 101.948C31.8537 101.797 31.8088 101.629 31.8221 101.484C31.8454 101.232 32.0418 101.145 32.2699 101.277L68.9942 126.581L105.98 143.742C106.253 143.897 106.448 144.207 106.469 144.486C106.483 144.644 106.436 144.76 106.353 144.817C106.416 144.932 106.458 145.058 106.468 145.179C106.484 145.393 106.394 145.528 106.251 145.546C106.368 145.694 106.451 145.883 106.464 146.059C106.481 146.27 106.394 146.407 106.255 146.427C106.368 146.573 106.449 146.759 106.463 146.933C106.478 147.131 106.403 147.262 106.278 147.294C106.378 147.435 106.448 147.604 106.459 147.764C106.474 147.947 106.411 148.071 106.303 148.116L107.745 148.784Z" - fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M68.9893 126.581L129.718 91.3662L166.703 108.529L105.975 143.744L68.9893 126.581Z" fill="white" - stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M32.2649 101.277L92.9932 66.062L129.717 91.3662L68.9892 126.581L32.2649 101.277Z" fill="white" - stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M132.571 136.269C133.477 136.79 133.482 137.636 132.581 138.157L127.092 141.34C126.193 141.862 124.732 141.862 123.826 141.34L120.934 139.674L129.678 134.604L132.571 136.269Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M139.708 131.26C140.612 131.782 140.617 132.626 139.718 133.147L134.229 136.33C133.33 136.852 131.868 136.852 130.964 136.33L128.073 134.664L136.816 129.594L139.708 131.26Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M147.226 126.047C148.13 126.569 148.135 127.413 147.236 127.935L141.747 131.117C140.848 131.639 139.386 131.639 138.482 131.117L135.591 129.451L144.334 124.381L147.226 126.047Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M154.72 120.788C155.624 121.31 155.629 122.154 154.73 122.675L149.242 125.858C148.343 126.38 146.881 126.38 145.977 125.858L143.085 124.192L151.829 119.122L154.72 120.788Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M162.292 115.713C163.197 116.235 163.202 117.081 162.303 117.601L156.815 120.783C155.916 121.305 154.452 121.305 153.547 120.783L150.655 119.117L159.398 114.047L162.292 115.713Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M169.488 110.237C170.392 110.759 170.397 111.602 169.498 112.124L164.01 115.307C163.111 115.828 161.649 115.828 160.745 115.307L157.853 113.641L166.597 108.571L169.488 110.237Z" - fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M92.6487 75.7591C93.3749 75.3399 94.5521 75.3399 95.2783 75.7591L98.1088 77.3933C98.7516 77.7644 98.8354 78.3493 98.3071 78.7764L93.4469 82.7048C92.9725 83.0883 92.1203 83.2483 91.3459 83.0993L88.2927 82.5117C86.1133 85.4647 86.1133 88.8261 88.2927 91.7792L91.3459 91.1916C92.1203 91.0426 92.9725 91.2026 93.4469 91.5861L98.3071 95.5145C98.8354 95.9415 98.7516 96.5265 98.1088 96.8975L95.2783 98.5318C94.5521 98.951 93.3749 98.951 92.6487 98.5318L90.0192 97.0136C80.5794 91.5636 80.5794 82.7273 90.0192 77.2773L92.6487 75.7591Z" - fill="#DA3635" /> - <rect width="3.69092" height="31.2471" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 62.4653 92.2888)" - fill="#DA3635" /> - <rect width="3.69092" height="31.2471" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 57.9817 95.2778)" - fill="#DA3635" /> - <rect width="3.69092" height="9.39302" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 53 99.2632)" - fill="#DA3635" /> - <rect width="3.69092" height="9.39302" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 69.4397 109.725)" - fill="#DA3635" /> - <rect width="3.82749" height="3.69147" rx="1.84574" transform="matrix(0.866025 -0.5 0.866025 0.5 62.9635 105.808)" - fill="#DA3635" /> - <path - d="M141 108.504L141.104 108.683C141.567 109.482 142.467 109.92 143.381 109.791L143.569 109.765C144.38 109.65 145.177 110.044 145.579 110.758V110.758C145.848 111.234 146.301 111.579 146.831 111.711L150 112.5" - stroke="black" stroke-linecap="round" /> - <path - d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" - fill="white" /> - <path - d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" - fill="white" /> - <path - d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" - fill="white" /> - <path - d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" - fill="white" /> - <path - d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" - fill="white" /> - <path - d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" - fill="white" /> - <path - d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" - fill="white" /> - <path - d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" - fill="white" /> - <path - d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" - fill="white" /> - <path - d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" - fill="white" /> - <path - d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" - stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" - fill="white" /> - <path - d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" - fill="white" /> - <path - d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" - fill="white" /> - <path - d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" - fill="white" /> - <path - d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" - stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M125.581 78.234C125.066 78.411 124.696 78.7374 124.314 79.1025C123.866 79.5341 123.169 79.9324 122.892 80.5244C122.477 81.4261 122.267 83.0914 122.184 84.0761C122.062 85.2711 122.151 86.4662 122.25 87.6667C122.25 87.6667 122.223 88.4301 124.043 87.5173C124.043 87.5173 123.75 89.6251 124.795 89.9737C125.869 90.5656 126.981 90.3388 128.192 90.3388C129.509 90.3222 130.776 90.0622 131.312 88.7787C131.628 88.231 131.307 86.6045 131.307 86.6045C132.192 87.1245 133.376 86.1951 133.376 86.1951C133.603 84.4966 132.491 82.6931 131.866 81.1661C131.534 80.3695 131.152 79.7443 130.582 79.0859C130.355 78.8093 130.062 78.2561 129.785 78.0625C129.337 77.7139 129.664 77.8356 129.144 77.9573C128.07 78.2174 126.333 80.209 125.725 78.2506C125.736 78.2506 125.725 78.1842 125.581 78.234Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M125.736 78.2506C126.344 80.209 128.076 78.2174 129.155 77.9573C129.675 77.8356 129.343 77.7139 129.797 78.0625C130.073 78.2506 130.366 78.8093 130.593 79.0859C131.163 79.7443 131.545 80.3695 131.877 81.1661C132.502 82.6931 133.608 84.4966 133.387 86.1951C133.387 86.1951 132.209 87.1245 131.318 86.6045C131.318 86.6045 131.639 88.231 131.323 88.7787C130.787 90.0622 129.52 90.3222 128.203 90.3388C126.992 90.3388 125.88 90.5656 124.806 89.9737C123.761 89.6251 124.054 87.5173 124.054 87.5173C122.228 88.4301 122.261 87.6667 122.261 87.6667C122.156 86.4717 122.073 85.2767 122.195 84.0761C122.284 83.0859 122.488 81.4261 122.903 80.5244C123.18 79.9324 123.877 79.5341 124.325 79.1025C124.707 78.7374 125.072 78.3944 125.592 78.234C125.581 78.234 125.675 78.1786 125.736 78.2506Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" - fill="white" /> - <path - d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" - fill="#DA3635" /> - <path - d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" - stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path d="M122 80.4693L122.365 78.71L124.44 77.5039L126.149 78.0571L139.942 101.797L135.792 104.209L122 80.4693Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path d="M135.792 104.209L136.135 102.405L138.21 101.205L139.942 101.797L140.755 107.976L135.792 104.209Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M138.614 106.35L138.857 105.869C139.045 105.492 139.444 105.26 139.87 105.282L140.406 105.31L140.76 107.982L138.614 106.35Z" - fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path d="M124.44 77.5039L138.21 101.205L139.942 101.797L126.149 78.0571L124.44 77.5039Z" fill="white" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path d="M136.135 102.405L122.365 78.71L122 80.4693L135.792 104.209L136.135 102.405Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M122.903 87.4346C122.903 87.4346 124.707 87.1967 125.57 86.4056L124.956 85.2991C124.956 85.2991 123.357 85.9187 123.196 86.1455C123.036 86.3779 122.903 87.4346 122.903 87.4346Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M124.961 85.2989C124.961 85.2989 124.961 84.2975 125.348 83.9822C125.741 83.6724 125.348 84.718 125.348 84.718C125.348 84.718 126.272 83.9213 126.538 84.0043C126.803 84.0873 127.091 84.9504 127.008 85.3653C126.925 85.7802 125.719 86.2284 125.57 86.4054L124.961 85.2989Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M123.075 87.9048C123.075 87.9048 125.349 86.66 125.57 86.4055L124.956 85.2991C124.956 85.2991 123.639 85.7638 123.257 86.0847" - fill="white" /> - <path - d="M123.075 87.9048C123.075 87.9048 125.349 86.66 125.57 86.4055L124.956 85.2991C124.956 85.2991 123.639 85.7638 123.257 86.0847" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M131.821 84.6515C131.821 84.6515 129.592 84.1813 129.155 83.6335L130.355 85.9018C130.355 85.9018 131.152 86.7427 132.496 86.6044" - fill="white" /> - <path - d="M131.821 84.6515C131.821 84.6515 129.592 84.1813 129.155 83.6335L130.355 85.9018C130.355 85.9018 131.152 86.7427 132.496 86.6044" - stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path d="M129.575 81.3542C129.575 81.3542 130.333 84.0375 131.135 84.4856L129.575 81.3542Z" fill="white" /> - <path d="M129.575 81.3542C129.575 81.3542 130.333 84.0375 131.135 84.4856" stroke="#706F6F" stroke-miterlimit="10" - stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M180.108 74.1322C183.506 76.0828 183.52 79.2464 180.149 81.2038C176.779 83.1544 171.29 83.1544 167.892 81.2038C164.493 79.2533 164.48 76.0897 167.857 74.1322C171.235 72.1748 176.716 72.1817 180.108 74.1322Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" /> - <path - d="M63.8991 162.813L45.8808 152.411C45.5898 152.243 45.1113 152.243 44.8203 152.411L13.2624 170.75C13.1144 170.833 13.0453 170.947 13.0453 171.055L13.0404 173.019C13.0404 173.132 13.1144 173.241 13.2624 173.329L31.2807 183.732C31.5717 183.9 32.0501 183.9 32.3411 183.732L63.8991 165.393C64.0421 165.309 64.1161 165.201 64.1161 165.087L64.121 163.124C64.121 163.139 64.1161 163.154 64.1112 163.168C64.1358 163.04 64.0668 162.907 63.8991 162.813Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path - d="M62.5919 162.562L45.4319 152.653C45.1507 152.49 44.7019 152.49 44.4207 152.653L14.3622 170.118C14.2241 170.197 14.1551 170.306 14.1551 170.409L14.1501 172.279C14.1501 172.387 14.2192 172.491 14.3622 172.575L31.5223 182.484C31.8035 182.647 32.2523 182.647 32.5335 182.484L62.5919 165.018C62.73 164.939 62.7991 164.831 62.7991 164.727L62.804 162.858C62.804 162.873 62.7991 162.887 62.7991 162.902C62.8188 162.779 62.7547 162.656 62.5919 162.562Z" - fill="#EDEDED" /> - <path - d="M34.8074 128.015L36.4845 128C36.4154 128 36.3513 128.02 36.2822 128.054L34.6052 128.069C34.6693 128.035 34.7384 128.02 34.8074 128.015Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M15.117 168.698L13.4399 168.712C13.2476 168.712 13.0651 168.574 12.9812 168.333L14.6583 168.318C14.7421 168.56 14.9246 168.703 15.117 168.698Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M6.96854 144.982L5.2915 144.997L34.6052 128.074L36.2822 128.059L6.96854 144.982Z" fill="#706F6F" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M14.6582 168.323L12.9812 168.333L5.03992 145.846L6.72189 145.836L14.6582 168.323Z" fill="white" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M6.72194 145.836L5.0449 145.85C4.93146 145.525 5.03997 145.145 5.29153 145.002L6.96857 144.987C6.71701 145.13 6.6085 145.51 6.72194 145.836Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M36.2821 128.059C36.5336 127.916 36.8296 128.059 36.943 128.385L44.8794 150.872C44.9928 151.193 44.8843 151.572 44.6327 151.72L15.3191 168.644C15.0675 168.787 14.7716 168.644 14.6581 168.323L6.72178 145.836C6.60834 145.51 6.71685 145.131 6.96841 144.988L36.2821 128.059Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M36.0454 130.062C36.2822 129.924 36.5633 130.062 36.6669 130.367L44.1544 151.572C44.2629 151.878 44.1593 152.233 43.9226 152.371L16.281 168.333C16.0443 168.471 15.7631 168.333 15.6546 168.032L8.16711 146.827C8.0586 146.521 8.16218 146.161 8.40387 146.028L36.0454 130.062Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M62.9075 161.581L62.9026 163.455C62.9026 163.559 62.8335 163.667 62.6954 163.746L62.7004 161.872C62.8335 161.793 62.9026 161.69 62.9075 161.581Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M14.0515 171.046L14.0564 169.172C14.0564 169.28 14.1255 169.384 14.2685 169.468L14.2636 171.342C14.1206 171.263 14.0515 171.154 14.0515 171.046Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M62.6956 161.872L62.6907 163.751L32.5089 181.291L32.5138 179.417L62.6956 161.872Z" fill="white" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M31.4978 179.417L31.4928 181.291L14.2588 171.342L14.2637 169.468L31.4978 179.417Z" fill="white" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M32.5137 179.417L32.5088 181.291C32.2276 181.454 31.7738 181.454 31.4927 181.291L31.4976 179.417C31.7788 179.579 32.2326 179.579 32.5137 179.417Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M62.6957 161.285C62.9768 161.448 62.9768 161.709 62.7006 161.872L32.5188 179.412C32.2377 179.575 31.7839 179.575 31.5028 179.412L14.2687 169.463C13.9876 169.3 13.9876 169.039 14.2687 168.876L44.4505 151.336C44.7316 151.173 45.1854 151.173 45.4666 151.336L62.6957 161.285Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M49.7676 167.835C49.8267 167.869 49.8267 167.924 49.7676 167.963L43.2962 171.722C43.237 171.756 43.1383 171.756 43.0791 171.722L39.3847 169.591C39.3255 169.556 39.3255 169.502 39.3847 169.463L45.8561 165.704C45.9153 165.67 46.014 165.67 46.0731 165.704L49.7676 167.835Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M23.2578 136.785C23.4866 136.67 23.6186 136.47 23.5526 136.339C23.4866 136.207 23.2476 136.194 23.0187 136.309C22.7899 136.424 22.6579 136.623 22.7239 136.755C22.7899 136.886 23.0289 136.9 23.2578 136.785Z" - fill="#706F6F" /> - <path - d="M25.3172 172.328C25.2432 172.328 25.1741 172.313 25.1297 172.289L23.9805 171.623L26.0225 170.434C26.0669 170.409 26.136 170.395 26.2099 170.395C26.2839 170.395 26.353 170.409 26.3974 170.434L27.5466 171.1L25.5046 172.289C25.4602 172.313 25.3862 172.328 25.3172 172.328Z" - fill="white" /> - <path - d="M26.2001 170.641C26.2396 170.641 26.2643 170.651 26.2692 170.651L27.0535 171.105L25.3813 172.077C25.3764 172.081 25.3518 172.086 25.3123 172.086C25.2728 172.086 25.2482 172.077 25.2482 172.077L24.4639 171.623L26.136 170.651C26.141 170.646 26.1656 170.641 26.2001 170.641ZM26.2001 170.148C26.0867 170.148 25.9732 170.173 25.8894 170.222L23.7882 171.44C23.6155 171.539 23.6205 171.702 23.7931 171.8L25.0016 172.501C25.0854 172.55 25.1988 172.575 25.3123 172.575C25.4257 172.575 25.5392 172.55 25.623 172.501L27.7243 171.282C27.8969 171.184 27.892 171.021 27.7243 170.922L26.5158 170.222C26.427 170.173 26.3136 170.148 26.2001 170.148Z" - fill="#706F6F" /> - <path - d="M22.93 170.952C22.856 170.952 22.7869 170.937 22.7425 170.913L21.5933 170.247L24.972 168.279C25.0164 168.254 25.0854 168.239 25.1594 168.239C25.2334 168.239 25.3025 168.254 25.3469 168.279L26.4961 168.945L23.1174 170.913C23.073 170.937 23.004 170.952 22.93 170.952Z" - fill="white" /> - <path - d="M25.1545 168.486C25.194 168.486 25.2187 168.496 25.2187 168.496L26.0029 168.949L22.9941 170.7C22.9892 170.705 22.9645 170.71 22.925 170.71C22.8856 170.71 22.8609 170.7 22.8609 170.7L22.0767 170.247L25.0855 168.5C25.0953 168.491 25.12 168.486 25.1545 168.486ZM25.1545 167.992C25.0411 167.992 24.9276 168.017 24.8438 168.066L21.4058 170.064C21.2332 170.163 21.2381 170.325 21.4108 170.424L22.6192 171.125C22.708 171.174 22.8165 171.199 22.93 171.199C23.0434 171.199 23.1569 171.174 23.2407 171.125L26.6787 169.127C26.8513 169.028 26.8513 168.865 26.6787 168.767L25.4702 168.066C25.3814 168.017 25.268 167.992 25.1545 167.992Z" - fill="#706F6F" /> - <path - d="M20.5476 169.576C20.4736 169.576 20.4045 169.561 20.3552 169.536L19.2059 168.87L20.3453 168.205C20.3897 168.18 20.4588 168.165 20.5328 168.165C20.6068 168.165 20.6758 168.18 20.7202 168.205L21.8695 168.87L20.7251 169.536C20.6906 169.561 20.6216 169.576 20.5476 169.576Z" - fill="white" /> - <path - d="M20.5377 168.407C20.5771 168.407 20.6018 168.417 20.6018 168.417L21.3861 168.87L20.6117 169.319C20.6067 169.324 20.5821 169.329 20.5475 169.329C20.5081 169.329 20.4834 169.319 20.4834 169.319L19.6992 168.866L20.4686 168.417C20.4736 168.417 20.4982 168.407 20.5377 168.407ZM20.5377 167.914C20.4242 167.914 20.3108 167.938 20.2269 167.988L19.0234 168.688C18.8508 168.787 18.8557 168.949 19.0283 169.048L20.2368 169.748C20.3256 169.798 20.439 169.822 20.5475 169.822C20.661 169.822 20.7744 169.798 20.8583 169.748L22.0618 169.048C22.2345 168.949 22.2345 168.787 22.0618 168.688L20.8534 167.988C20.7646 167.938 20.6511 167.914 20.5377 167.914Z" - fill="#706F6F" /> - <path - d="M36.2032 160.48C36.1292 160.48 36.0602 160.465 36.0158 160.441L34.8616 159.775L36.0059 159.109C36.0503 159.084 36.1194 159.069 36.1933 159.069C36.2673 159.069 36.3364 159.084 36.3857 159.114L37.535 159.78L36.3956 160.445C36.3462 160.465 36.2772 160.48 36.2032 160.48Z" - fill="white" /> - <path - d="M36.1883 159.311C36.2278 159.311 36.2524 159.321 36.2573 159.321L37.0416 159.775L36.2721 160.224C36.2672 160.229 36.2426 160.233 36.2031 160.233C36.1636 160.233 36.139 160.224 36.139 160.224L35.3547 159.77L36.1291 159.321C36.1291 159.316 36.1538 159.311 36.1883 159.311ZM36.1883 158.818C36.0748 158.818 35.9614 158.843 35.8776 158.892L34.674 159.592C34.5014 159.691 34.5014 159.854 34.674 159.952L35.8825 160.653C35.9713 160.702 36.0847 160.727 36.1932 160.727C36.3067 160.727 36.4201 160.702 36.504 160.653L37.7075 159.952C37.8801 159.854 37.8752 159.691 37.7026 159.592L36.4941 158.892C36.4152 158.843 36.3017 158.818 36.1883 158.818Z" - fill="#706F6F" /> - <path - d="M40.9682 163.232C40.8942 163.232 40.8251 163.218 40.7807 163.193L39.6315 162.527L40.7758 161.861C40.8202 161.837 40.8893 161.822 40.9633 161.822C41.0372 161.822 41.1063 161.837 41.1507 161.866L42.3 162.532L41.1605 163.198C41.1112 163.213 41.0422 163.232 40.9682 163.232Z" - fill="white" /> - <path - d="M40.9583 162.064C40.9978 162.064 41.0224 162.073 41.0274 162.073L41.8116 162.527L41.0422 162.976C41.0372 162.981 41.0126 162.986 40.9731 162.986C40.9336 162.986 40.909 162.976 40.909 162.976L40.1247 162.522L40.8991 162.073C40.8991 162.069 40.9238 162.064 40.9583 162.064ZM40.9583 161.57C40.8449 161.57 40.7314 161.595 40.6476 161.644L39.4441 162.345C39.2714 162.443 39.2714 162.606 39.4441 162.705L40.6525 163.405C40.7363 163.454 40.8498 163.479 40.9632 163.479C41.0767 163.479 41.1901 163.454 41.274 163.405L42.4775 162.705C42.6501 162.606 42.6452 162.443 42.4775 162.345L41.2691 161.644C41.1852 161.595 41.0718 161.57 40.9583 161.57Z" - fill="#706F6F" /> - <path - d="M47.5331 156.658C47.4591 156.658 47.3901 156.643 47.3457 156.618L43.8091 154.576L44.9534 153.91C44.9978 153.886 45.0669 153.871 45.1409 153.871C45.2148 153.871 45.2839 153.886 45.3283 153.91L48.8649 155.952L47.7205 156.618C47.6712 156.643 47.6022 156.658 47.5331 156.658Z" - fill="white" /> - <path - d="M45.1359 154.112C45.1754 154.112 45.2001 154.122 45.205 154.122L48.3716 155.952L47.5972 156.401C47.5923 156.406 47.5676 156.411 47.5282 156.411C47.4887 156.411 47.4641 156.401 47.4641 156.401L44.2974 154.571L45.0718 154.122C45.0767 154.117 45.1014 154.112 45.1359 154.112ZM45.1359 153.619C45.0225 153.619 44.909 153.644 44.8252 153.693L43.6217 154.394C43.449 154.492 43.454 154.655 43.6266 154.754L47.2174 156.83C47.3062 156.88 47.4147 156.904 47.5282 156.904C47.6416 156.904 47.7551 156.88 47.8389 156.83L49.0424 156.13C49.2151 156.031 49.2151 155.868 49.0424 155.77L45.4516 153.693C45.3628 153.644 45.2494 153.619 45.1359 153.619Z" - fill="#706F6F" /> - <path - d="M43.2072 161.93C43.1332 161.93 43.0641 161.916 43.0198 161.891L41.8705 161.225L43.0148 160.559C43.0592 160.535 43.1283 160.52 43.2023 160.52C43.2762 160.52 43.3453 160.535 43.3946 160.559L44.5439 161.225L43.4045 161.891C43.3502 161.916 43.2812 161.93 43.2072 161.93Z" - fill="white" /> - <path - d="M43.1925 160.766C43.2319 160.766 43.2566 160.776 43.2566 160.776L44.0408 161.23L43.2664 161.679C43.2615 161.684 43.2368 161.689 43.1974 161.689C43.1579 161.689 43.1333 161.679 43.1333 161.679L42.349 161.225L43.1234 160.776C43.1333 160.771 43.1579 160.766 43.1925 160.766ZM43.1925 160.273C43.079 160.273 42.9656 160.298 42.8817 160.347L41.6782 161.047C41.5055 161.146 41.5105 161.309 41.6831 161.407L42.8916 162.108C42.9754 162.157 43.0889 162.182 43.2023 162.182C43.3158 162.182 43.4292 162.157 43.5131 162.108L44.7166 161.407C44.8892 161.309 44.8843 161.146 44.7166 161.047L43.5081 160.347C43.4193 160.298 43.3059 160.273 43.1925 160.273Z" - fill="#706F6F" /> - <path - d="M45.5897 163.306C45.5158 163.306 45.4467 163.292 45.4023 163.267L44.2531 162.601L45.3974 161.935C45.4418 161.911 45.5108 161.896 45.5848 161.896C45.6588 161.896 45.7279 161.911 45.7723 161.935L46.9265 162.601L45.7821 163.267C45.7328 163.292 45.6637 163.306 45.5897 163.306Z" - fill="white" /> - <path - d="M45.5799 162.142C45.6194 162.142 45.644 162.152 45.644 162.152L46.4283 162.606L45.6539 163.055C45.6489 163.06 45.6243 163.065 45.5848 163.065C45.5454 163.065 45.5207 163.055 45.5207 163.055L44.7364 162.601L45.5108 162.152C45.5158 162.147 45.5404 162.142 45.5799 162.142ZM45.5799 161.649C45.4664 161.649 45.353 161.674 45.2691 161.723L44.0656 162.424C43.893 162.522 43.8979 162.685 44.0656 162.784L45.2741 163.484C45.3579 163.533 45.4714 163.558 45.5848 163.558C45.6983 163.558 45.8117 163.533 45.8956 163.484L47.0991 162.784C47.2717 162.685 47.2668 162.522 47.0991 162.424L45.8906 161.723C45.8068 161.674 45.6933 161.649 45.5799 161.649Z" - fill="#706F6F" /> - <path - d="M47.6809 159.331C47.607 159.331 47.5379 159.316 47.4935 159.292L46.3442 158.626L49.723 156.663C49.7674 156.638 49.8364 156.623 49.9104 156.623C49.9844 156.623 50.0535 156.638 50.0978 156.663L51.2471 157.328L47.8684 159.296C47.8191 159.316 47.75 159.331 47.6809 159.331Z" - fill="white" /> - <path - d="M49.9054 156.865C49.9448 156.865 49.9695 156.875 49.9744 156.875L50.7587 157.328L47.7499 159.079C47.745 159.084 47.7203 159.089 47.6858 159.089C47.6463 159.089 47.6216 159.079 47.6216 159.079L46.8374 158.626L49.8462 156.88C49.8413 156.875 49.8659 156.865 49.9054 156.865ZM49.9054 156.372C49.7919 156.372 49.6785 156.396 49.5946 156.446L46.1567 158.443C45.9841 158.542 45.989 158.705 46.1616 158.803L47.3701 159.504C47.4539 159.553 47.5674 159.578 47.6808 159.578C47.7943 159.578 47.9077 159.553 47.9916 159.504L51.4295 157.506C51.6021 157.407 51.5972 157.245 51.4295 157.146L50.221 156.446C50.1323 156.396 50.0188 156.372 49.9054 156.372Z" - fill="#706F6F" /> - <path - d="M52.298 159.41C52.2241 159.41 52.155 159.395 52.1106 159.37L50.9564 158.705L52.1007 158.039C52.1451 158.014 52.2142 157.999 52.2882 157.999C52.3622 157.999 52.4312 158.014 52.4756 158.039L53.6249 158.705L52.4805 159.37C52.4411 159.395 52.372 159.41 52.298 159.41Z" - fill="white" /> - <path - d="M52.2881 158.241C52.3276 158.241 52.3523 158.251 52.3523 158.251L53.1365 158.705L52.3621 159.154C52.3572 159.158 52.3325 159.163 52.2931 159.163C52.2536 159.163 52.2289 159.154 52.2289 159.154L51.4447 158.7L52.2191 158.251C52.2289 158.251 52.2536 158.241 52.2881 158.241ZM52.2881 157.748C52.1747 157.748 52.0612 157.772 51.9774 157.822L50.7739 158.522C50.6012 158.621 50.6062 158.784 50.7739 158.882L51.9823 159.583C52.0662 159.632 52.1796 159.657 52.2931 159.657C52.4065 159.657 52.52 159.632 52.6038 159.583L53.8073 158.882C53.98 158.784 53.975 158.621 53.8073 158.522L52.5989 157.822C52.515 157.772 52.4016 157.748 52.2881 157.748Z" - fill="#706F6F" /> - <path - d="M45.4419 160.633C45.3679 160.633 45.2989 160.618 45.2545 160.594L44.1052 159.928L45.2496 159.262C45.294 159.237 45.363 159.222 45.437 159.222C45.511 159.222 45.58 159.237 45.6244 159.262L46.7737 159.928L45.6294 160.594C45.585 160.618 45.5159 160.633 45.4419 160.633Z" - fill="white" /> - <path - d="M45.4319 159.464C45.4714 159.464 45.4961 159.474 45.4961 159.474L46.2803 159.928L45.5059 160.377C45.501 160.382 45.4763 160.387 45.4369 160.387C45.3974 160.387 45.3728 160.377 45.3728 160.377L44.5885 159.923L45.3629 159.474C45.3678 159.474 45.3925 159.464 45.4319 159.464ZM45.4319 158.971C45.3185 158.971 45.205 158.996 45.1212 159.045L43.9177 159.745C43.745 159.844 43.75 160.007 43.9226 160.105L45.1311 160.806C45.2149 160.855 45.3284 160.88 45.4418 160.88C45.5553 160.88 45.6687 160.855 45.7525 160.806L46.9561 160.105C47.1287 160.007 47.1238 159.844 46.9561 159.745L45.7476 159.045C45.6588 158.996 45.5454 158.971 45.4319 158.971Z" - fill="#706F6F" /> - <path - d="M50.0636 160.707C49.9896 160.707 49.9206 160.692 49.8762 160.668L48.7269 160.002L49.8663 159.336C49.9107 159.311 49.9847 159.297 50.0538 159.297C50.1278 159.297 50.1968 159.311 50.2412 159.336L51.3905 160.002L50.2511 160.668C50.2067 160.692 50.1376 160.707 50.0636 160.707Z" - fill="white" /> - <path - d="M50.0538 159.543C50.0932 159.543 50.1179 159.553 50.1179 159.553L50.9021 160.007L50.1278 160.456C50.1228 160.46 50.0982 160.465 50.0636 160.465C50.0242 160.465 49.9995 160.456 49.9995 160.456L49.2152 160.002L49.9847 159.553C49.9896 159.548 50.0143 159.543 50.0538 159.543ZM50.0538 159.05C49.9403 159.05 49.8269 159.074 49.743 159.124L48.5395 159.824C48.3669 159.923 48.3718 160.086 48.5395 160.184L49.748 160.885C49.8318 160.934 49.9453 160.959 50.0587 160.959C50.1721 160.959 50.2856 160.934 50.3694 160.885L51.573 160.184C51.7456 160.086 51.7456 159.923 51.573 159.824L50.3645 159.124C50.2757 159.074 50.1672 159.05 50.0538 159.05Z" - fill="#706F6F" /> - <path - d="M47.8242 162.009C47.7503 162.009 47.6812 161.994 47.6368 161.97L46.4875 161.304L47.6319 160.638C47.6763 160.613 47.7453 160.598 47.8193 160.598C47.8933 160.598 47.9624 160.613 48.0067 160.638L49.156 161.304L48.0117 161.97C47.9673 161.994 47.8982 162.009 47.8242 162.009Z" - fill="white" /> - <path - d="M47.8144 160.84C47.8539 160.84 47.8785 160.85 47.8785 160.85L48.6628 161.304L47.8884 161.753C47.8834 161.758 47.8588 161.763 47.8193 161.763C47.7799 161.763 47.7552 161.753 47.7552 161.753L46.9709 161.299L47.7453 160.85C47.7552 160.85 47.7799 160.84 47.8144 160.84ZM47.8144 160.347C47.7009 160.347 47.5875 160.372 47.5036 160.421L46.3001 161.121C46.1275 161.22 46.1324 161.383 46.3001 161.481L47.5086 162.182C47.5924 162.231 47.7059 162.256 47.8193 162.256C47.9328 162.256 48.0462 162.231 48.1301 162.182L49.3336 161.481C49.5062 161.383 49.5013 161.22 49.3336 161.121L48.1251 160.421C48.0413 160.372 47.9278 160.347 47.8144 160.347Z" - fill="#706F6F" /> - <path - d="M45.2938 157.955C45.2198 157.955 45.1507 157.94 45.1063 157.915L43.9521 157.25L45.0915 156.584C45.1359 156.559 45.205 156.544 45.279 156.544C45.353 156.544 45.422 156.559 45.4713 156.584L46.6206 157.25L45.4812 157.915C45.4368 157.94 45.3678 157.955 45.2938 157.955Z" - fill="white" /> - <path - d="M45.284 156.791C45.3235 156.791 45.3481 156.801 45.3481 156.801L46.1324 157.255L45.358 157.703C45.353 157.708 45.3284 157.713 45.2939 157.713C45.2593 157.713 45.2297 157.703 45.2297 157.703L44.4455 157.25L45.2199 156.801C45.2248 156.796 45.2495 156.791 45.284 156.791ZM45.284 156.298C45.1705 156.298 45.0571 156.322 44.9732 156.372L43.7697 157.072C43.5971 157.171 43.602 157.333 43.7747 157.432L44.9831 158.132C45.0719 158.182 45.1804 158.206 45.2939 158.206C45.4073 158.206 45.5207 158.182 45.6046 158.132L46.8081 157.432C46.9808 157.333 46.9808 157.171 46.8081 157.072L45.5997 156.372C45.5109 156.322 45.3974 156.298 45.284 156.298Z" - fill="#706F6F" /> - <path - d="M43.0594 159.257C42.9854 159.257 42.9163 159.242 42.8719 159.217L41.7227 158.552L42.867 157.886C42.9114 157.861 42.9804 157.846 43.0544 157.846C43.1284 157.846 43.1975 157.861 43.2419 157.886L44.3911 158.552L43.2468 159.217C43.2024 159.242 43.1284 159.257 43.0594 159.257Z" - fill="white" /> - <path - d="M43.0445 158.088C43.084 158.088 43.1086 158.098 43.1086 158.098L43.8929 158.552L43.1185 159C43.1136 159.005 43.0889 159.01 43.0544 159.01C43.0198 159.01 42.9903 159 42.9903 159L42.206 158.547L42.9804 158.098C42.9853 158.098 43.01 158.088 43.0445 158.088ZM43.0445 157.595C42.9311 157.595 42.8176 157.619 42.7338 157.669L41.5302 158.369C41.3576 158.468 41.3625 158.631 41.5352 158.729L42.7436 159.43C42.8324 159.479 42.9409 159.504 43.0544 159.504C43.1678 159.504 43.2813 159.479 43.3651 159.43L44.5686 158.729C44.7413 158.631 44.7413 158.468 44.5686 158.369L43.3602 157.669C43.2714 157.619 43.158 157.595 43.0445 157.595Z" - fill="#706F6F" /> - <path - d="M38.4376 159.178C38.3636 159.178 38.2945 159.163 38.2501 159.139L37.0959 158.473L38.2403 157.807C38.2847 157.782 38.3537 157.767 38.4277 157.767C38.5017 157.767 38.5708 157.782 38.6201 157.807L39.7693 158.473L38.625 159.139C38.5806 159.163 38.5116 159.178 38.4376 159.178Z" - fill="white" /> - <path - d="M38.4278 158.009C38.4673 158.009 38.4919 158.019 38.4969 158.019L39.2811 158.473L38.5067 158.922C38.5018 158.927 38.4771 158.931 38.4426 158.931C38.4031 158.931 38.3785 158.922 38.3785 158.922L37.5942 158.468L38.3686 158.019C38.3686 158.019 38.3933 158.009 38.4278 158.009ZM38.4278 157.516C38.3144 157.516 38.2009 157.541 38.1171 157.59L36.9135 158.29C36.7409 158.389 36.7458 158.552 36.9185 158.65L38.1269 159.351C38.2157 159.4 38.3291 159.425 38.4377 159.425C38.5511 159.425 38.6646 159.4 38.7484 159.351L39.9519 158.65C40.1246 158.552 40.1196 158.389 39.947 158.29L38.7385 157.59C38.6547 157.545 38.5412 157.516 38.4278 157.516Z" - fill="#706F6F" /> - <path - d="M40.82 160.554C40.746 160.554 40.6769 160.539 40.6325 160.515L39.4833 159.849L40.6276 159.183C40.672 159.158 40.741 159.144 40.815 159.144C40.889 159.144 40.9581 159.158 41.0074 159.183L42.1567 159.849L41.0123 160.515C40.963 160.539 40.894 160.554 40.82 160.554Z" - fill="white" /> - <path - d="M40.8103 159.385C40.8497 159.385 40.8744 159.395 40.8744 159.395L41.6586 159.849L40.8842 160.298C40.8793 160.303 40.8546 160.308 40.8201 160.308C40.7856 160.308 40.756 160.298 40.756 160.298L39.9717 159.844L40.7461 159.395C40.7511 159.395 40.7757 159.385 40.8103 159.385ZM40.8103 158.892C40.6968 158.892 40.5834 158.917 40.4995 158.966L39.296 159.666C39.1233 159.765 39.1283 159.928 39.3009 160.027L40.5094 160.727C40.5982 160.776 40.7067 160.801 40.8201 160.801C40.9336 160.801 41.047 160.776 41.1309 160.727L42.3344 160.027C42.507 159.928 42.507 159.765 42.3344 159.666L41.1259 158.966C41.0372 158.922 40.9237 158.892 40.8103 158.892Z" - fill="#706F6F" /> - <path - d="M38.5856 161.856C38.5116 161.856 38.4426 161.841 38.3982 161.817L37.2489 161.151L38.3932 160.485C38.4376 160.46 38.5067 160.446 38.5807 160.446C38.6547 160.446 38.7237 160.46 38.7681 160.49L39.9174 161.156L38.778 161.822C38.7286 161.837 38.6596 161.856 38.5856 161.856Z" - fill="white" /> - <path - d="M38.5756 160.687C38.6151 160.687 38.6397 160.697 38.6447 160.697L39.4289 161.151L38.6545 161.6C38.6496 161.605 38.625 161.61 38.5855 161.61C38.551 161.61 38.5263 161.6 38.5214 161.6L37.7371 161.146L38.5115 160.697C38.5115 160.692 38.5362 160.687 38.5756 160.687ZM38.5756 160.194C38.4622 160.194 38.3487 160.219 38.2649 160.268L37.0614 160.968C36.8887 161.067 36.8887 161.23 37.0614 161.329L38.2698 162.029C38.3586 162.078 38.4671 162.103 38.5806 162.103C38.694 162.103 38.8075 162.078 38.8913 162.029L40.0948 161.329C40.2675 161.23 40.2675 161.067 40.0948 160.968L38.8864 160.268C38.8025 160.219 38.6891 160.194 38.5756 160.194Z" - fill="#706F6F" /> - <path - d="M32.1734 171.105C32.0994 171.105 32.0303 171.09 31.9859 171.065L30.8367 170.399L31.9761 169.733C32.0205 169.709 32.0895 169.694 32.1635 169.694C32.2375 169.694 32.3065 169.709 32.3509 169.733L33.5002 170.399L32.3559 171.065C32.3164 171.09 32.2474 171.105 32.1734 171.105Z" - fill="white" /> - <path - d="M32.1635 169.936C32.203 169.936 32.2276 169.945 32.2276 169.945L33.0119 170.399L32.2375 170.848C32.2326 170.853 32.2079 170.858 32.1734 170.858C32.1339 170.858 32.1093 170.848 32.1093 170.848L31.325 170.394L32.0945 169.945C32.0994 169.945 32.1241 169.936 32.1635 169.936ZM32.1635 169.442C32.0501 169.442 31.9366 169.467 31.8528 169.516L30.6492 170.217C30.4766 170.315 30.4815 170.478 30.6492 170.577L31.8577 171.277C31.9416 171.327 32.055 171.351 32.1684 171.351C32.2819 171.351 32.3953 171.327 32.4792 171.277L33.6827 170.577C33.8554 170.478 33.8554 170.315 33.6827 170.217L32.4743 169.516C32.3855 169.467 32.277 169.442 32.1635 169.442Z" - fill="#706F6F" /> - <path - d="M34.4078 169.808C34.3338 169.808 34.2648 169.793 34.2204 169.768L33.0662 169.103L34.2105 168.437C34.2549 168.412 34.3239 168.397 34.3979 168.397C34.4719 168.397 34.541 168.412 34.5854 168.437L35.7346 169.103L34.5903 169.768C34.5508 169.788 34.4818 169.808 34.4078 169.808Z" - fill="white" /> - <path - d="M34.3979 168.639C34.4373 168.639 34.462 168.649 34.462 168.649L35.2462 169.102L34.4719 169.551C34.4669 169.556 34.4423 169.561 34.4028 169.561C34.3633 169.561 34.3387 169.551 34.3387 169.551L33.5544 169.097L34.3288 168.649C34.3387 168.644 34.3584 168.639 34.3979 168.639ZM34.3979 168.146C34.2844 168.146 34.171 168.17 34.0871 168.219L32.8836 168.92C32.711 169.019 32.7159 169.181 32.8836 169.28L34.0921 169.98C34.1759 170.03 34.2894 170.054 34.4028 170.054C34.5162 170.054 34.6297 170.03 34.7135 169.98L35.917 169.28C36.0897 169.181 36.0847 169.019 35.917 168.92L34.7086 168.219C34.6248 168.17 34.5113 168.146 34.3979 168.146Z" - fill="#706F6F" /> - <path - d="M33.9685 161.778C33.8946 161.778 33.8255 161.763 33.7811 161.738L32.6318 161.072L33.7762 160.406C33.8206 160.382 33.8896 160.367 33.9636 160.367C34.0376 160.367 34.1067 160.382 34.156 160.406L35.3053 161.072L34.1609 161.738C34.1066 161.763 34.0376 161.778 33.9685 161.778Z" - fill="white" /> - <path - d="M33.9538 160.609C33.9933 160.609 34.0179 160.619 34.0229 160.619L34.8071 161.072L34.0327 161.521C34.0278 161.526 34.0031 161.531 33.9686 161.531C33.9291 161.531 33.9045 161.521 33.8995 161.521L33.1153 161.067L33.8897 160.619C33.8946 160.619 33.9193 160.609 33.9538 160.609ZM33.9538 160.115C33.8404 160.115 33.7269 160.14 33.643 160.189L32.4395 160.89C32.2669 160.989 32.2718 161.151 32.4445 161.25L33.6529 161.95C33.7417 162 33.8551 162.024 33.9686 162.024C34.082 162.024 34.1955 162 34.2793 161.95L35.4829 161.25C35.6555 161.151 35.6506 160.989 35.4779 160.89L34.2695 160.189C34.1807 160.145 34.0672 160.115 33.9538 160.115Z" - fill="#706F6F" /> - <path - d="M31.7292 163.08C31.6552 163.08 31.5862 163.065 31.5368 163.04L30.3876 162.374L31.527 161.708C31.5714 161.684 31.6404 161.669 31.7144 161.669C31.7884 161.669 31.8575 161.684 31.9068 161.708L33.056 162.374L31.9166 163.04C31.8722 163.06 31.8032 163.08 31.7292 163.08Z" - fill="white" /> - <path - d="M31.7195 161.911C31.759 161.911 31.7837 161.921 31.7837 161.921L32.5679 162.374L31.7935 162.823C31.7886 162.828 31.7639 162.833 31.7294 162.833C31.69 162.833 31.6653 162.823 31.6604 162.823L30.8761 162.369L31.6456 161.921C31.6554 161.916 31.6801 161.911 31.7195 161.911ZM31.7195 161.417C31.6061 161.417 31.4926 161.442 31.4088 161.491L30.2053 162.192C30.0326 162.291 30.0376 162.453 30.2102 162.552L31.4187 163.252C31.5074 163.302 31.6209 163.326 31.7343 163.326C31.8478 163.326 31.9612 163.302 32.0451 163.252L33.2486 162.552C33.4212 162.453 33.4212 162.291 33.2486 162.192L32.0401 161.491C31.9464 161.442 31.833 161.417 31.7195 161.417Z" - fill="#706F6F" /> - <path - d="M36.3513 163.154C36.2773 163.154 36.2082 163.139 36.1638 163.114L35.0096 162.448L36.154 161.782C36.1984 161.758 36.2674 161.743 36.3414 161.743C36.4154 161.743 36.4845 161.758 36.5288 161.782L37.6781 162.448L36.5338 163.114C36.4894 163.139 36.4203 163.154 36.3513 163.154Z" - fill="white" /> - <path - d="M36.3364 161.985C36.3758 161.985 36.4005 161.995 36.4054 161.995L37.1897 162.448L36.4153 162.897C36.4104 162.902 36.3857 162.907 36.3512 162.907C36.3117 162.907 36.287 162.897 36.287 162.897L35.5028 162.443L36.2772 161.995C36.2772 161.995 36.3018 161.985 36.3364 161.985ZM36.3364 161.491C36.2229 161.491 36.1095 161.516 36.0256 161.565L34.8221 162.266C34.6495 162.364 34.6544 162.527 34.827 162.626L36.0355 163.326C36.1243 163.376 36.2328 163.4 36.3462 163.4C36.4597 163.4 36.5731 163.376 36.657 163.326L37.8605 162.626C38.0331 162.527 38.0331 162.364 37.8605 162.266L36.652 161.565C36.5633 161.521 36.4498 161.491 36.3364 161.491Z" - fill="#706F6F" /> - <path - d="M29.495 164.377C29.421 164.377 29.352 164.362 29.3076 164.338L28.1583 163.672L29.2977 163.006C29.3421 162.981 29.4112 162.966 29.4852 162.966C29.5591 162.966 29.6282 162.981 29.6726 163.006L30.8219 163.672L29.6825 164.338C29.6381 164.362 29.5641 164.377 29.495 164.377Z" - fill="white" /> - <path - d="M29.4803 163.208C29.5197 163.208 29.5444 163.218 29.5493 163.218L30.3336 163.672L29.5641 164.121C29.5592 164.126 29.5345 164.13 29.4951 164.13C29.4556 164.13 29.431 164.121 29.431 164.121L28.6467 163.667L29.4211 163.218C29.4211 163.218 29.4458 163.208 29.4803 163.208ZM29.4803 162.715C29.3668 162.715 29.2534 162.739 29.1695 162.789L27.966 163.489C27.7934 163.588 27.7934 163.751 27.966 163.849L29.1745 164.55C29.2633 164.599 29.3767 164.624 29.4852 164.624C29.5987 164.624 29.7121 164.599 29.796 164.55L30.9995 163.849C31.1721 163.751 31.1672 163.588 30.9945 163.489L29.7861 162.789C29.7072 162.739 29.5937 162.715 29.4803 162.715Z" - fill="#706F6F" /> - <path - d="M34.1117 164.456C34.0377 164.456 33.9687 164.441 33.9243 164.416L32.775 163.751L33.9144 163.085C33.9588 163.06 34.0279 163.045 34.1019 163.045C34.1758 163.045 34.2449 163.06 34.2942 163.085L35.4435 163.751L34.2992 164.416C34.2548 164.436 34.1857 164.456 34.1117 164.456Z" - fill="white" /> - <path - d="M34.1019 163.287C34.1413 163.287 34.166 163.297 34.166 163.297L34.9503 163.751L34.1759 164.199C34.1709 164.204 34.1463 164.209 34.1068 164.209C34.0723 164.209 34.0427 164.199 34.0427 164.199L33.2584 163.746L34.0279 163.297C34.0427 163.292 34.0674 163.287 34.1019 163.287ZM34.1019 162.794C33.9884 162.794 33.875 162.818 33.7911 162.868L32.5876 163.568C32.415 163.667 32.4199 163.83 32.5925 163.928L33.801 164.629C33.8898 164.678 33.9983 164.703 34.1117 164.703C34.2252 164.703 34.3386 164.678 34.4225 164.629L35.626 163.928C35.7987 163.83 35.7987 163.667 35.626 163.568L34.4176 162.868C34.3288 162.818 34.2153 162.794 34.1019 162.794Z" - fill="#706F6F" /> - <path - d="M27.2556 165.679C27.1816 165.679 27.1125 165.664 27.0632 165.64L25.9139 164.974L27.0583 164.308C27.1027 164.283 27.1717 164.268 27.2457 164.268C27.3197 164.268 27.3888 164.283 27.4331 164.308L28.5873 164.974L27.443 165.64C27.3986 165.659 27.3296 165.679 27.2556 165.679Z" - fill="white" /> - <path - d="M27.2458 164.51C27.2853 164.51 27.3099 164.52 27.3099 164.52L28.0942 164.974L27.3198 165.423C27.3149 165.428 27.2902 165.432 27.2557 165.432C27.2162 165.432 27.1915 165.423 27.1866 165.423L26.4023 164.969L27.1767 164.52C27.1866 164.515 27.2113 164.51 27.2458 164.51ZM27.2458 164.017C27.1324 164.017 27.0189 164.041 26.9351 164.091L25.7315 164.791C25.5589 164.89 25.5638 165.053 25.7365 165.151L26.9449 165.852C27.0337 165.901 27.1472 165.926 27.2606 165.926C27.374 165.926 27.4875 165.901 27.5713 165.852L28.7749 165.151C28.9475 165.053 28.9426 164.89 28.7699 164.791L27.5615 164.091C27.4727 164.041 27.3592 164.017 27.2458 164.017Z" - fill="#706F6F" /> - <path - d="M31.8774 165.753C31.8034 165.753 31.7343 165.738 31.6899 165.714L30.5406 165.048L31.6801 164.382C31.7244 164.357 31.7935 164.342 31.8675 164.342C31.9415 164.342 32.0105 164.357 32.0599 164.387L33.2091 165.053L32.0697 165.718C32.0204 165.738 31.9464 165.753 31.8774 165.753Z" - fill="white" /> - <path - d="M31.8674 164.584C31.9069 164.584 31.9315 164.594 31.9364 164.594L32.7207 165.048L31.9463 165.497C31.9414 165.502 31.9167 165.506 31.8773 165.506C31.8427 165.506 31.8181 165.497 31.8131 165.497L31.0289 165.043L31.8033 164.594C31.8033 164.594 31.8279 164.584 31.8674 164.584ZM31.8674 164.091C31.7539 164.091 31.6405 164.115 31.5566 164.165L30.3531 164.865C30.1805 164.964 30.1805 165.127 30.3531 165.225L31.5616 165.926C31.6504 165.975 31.7589 166 31.8723 166C31.9858 166 32.0992 165.975 32.1831 165.926L33.3866 165.225C33.5592 165.127 33.5592 164.964 33.3866 164.865L32.1781 164.165C32.0894 164.12 31.9759 164.091 31.8674 164.091Z" - fill="#706F6F" /> - <path - d="M25.0212 166.976C24.9472 166.976 24.8782 166.962 24.8288 166.932L23.6796 166.266L24.819 165.6C24.8634 165.576 24.9324 165.561 25.0064 165.561C25.0804 165.561 25.1494 165.576 25.1938 165.6L26.3431 166.266L25.2037 166.932C25.1642 166.962 25.0952 166.976 25.0212 166.976Z" - fill="white" /> - <path - d="M25.0114 165.807C25.0509 165.807 25.0755 165.817 25.0755 165.817L25.8598 166.271L25.0854 166.72C25.0805 166.725 25.0558 166.73 25.0213 166.73C24.9818 166.73 24.9572 166.72 24.9522 166.72L24.168 166.266L24.9374 165.817C24.9473 165.817 24.972 165.807 25.0114 165.807ZM25.0114 165.314C24.898 165.314 24.7845 165.339 24.7007 165.388L23.4972 166.088C23.3245 166.187 23.3294 166.35 23.5021 166.448L24.7105 167.149C24.7993 167.198 24.9128 167.223 25.0262 167.223C25.1397 167.223 25.2531 167.198 25.337 167.149L26.5405 166.448C26.7131 166.35 26.7131 166.187 26.5405 166.088L25.332 165.388C25.2383 165.339 25.1249 165.314 25.0114 165.314Z" - fill="#706F6F" /> - <path - d="M29.6381 167.055C29.5641 167.055 29.495 167.04 29.4507 167.016L28.3014 166.35L29.4457 165.684C29.4901 165.659 29.5592 165.645 29.6332 165.645C29.7071 165.645 29.7762 165.659 29.8255 165.684L30.9748 166.35L29.8305 167.016C29.7811 167.035 29.7121 167.055 29.6381 167.055Z" - fill="white" /> - <path - d="M29.6281 165.886C29.6676 165.886 29.6922 165.896 29.6922 165.896L30.4765 166.35L29.7021 166.799C29.6972 166.804 29.6725 166.809 29.6331 166.809C29.5985 166.809 29.5689 166.799 29.5689 166.799L28.7847 166.345L29.5591 165.896C29.5689 165.891 29.5936 165.886 29.6281 165.886ZM29.6281 165.393C29.5147 165.393 29.4012 165.418 29.3174 165.467L28.1139 166.167C27.9412 166.266 27.9461 166.429 28.1188 166.528L29.3272 167.228C29.416 167.277 29.5245 167.302 29.638 167.302C29.7514 167.302 29.8649 167.277 29.9487 167.228L31.1523 166.528C31.3249 166.429 31.3249 166.266 31.1523 166.167L29.9438 165.467C29.855 165.418 29.7416 165.393 29.6281 165.393Z" - fill="#706F6F" /> - <path - d="M34.2599 167.129C34.1859 167.129 34.1169 167.114 34.0725 167.09L32.9232 166.424L34.0675 165.758C34.1119 165.733 34.181 165.719 34.255 165.719C34.329 165.719 34.398 165.733 34.4474 165.763L35.5966 166.429L34.4572 167.095C34.403 167.114 34.3339 167.129 34.2599 167.129Z" - fill="white" /> - <path - d="M34.25 165.96C34.2894 165.96 34.3141 165.97 34.319 165.97L35.1033 166.424L34.3338 166.873C34.3289 166.878 34.3042 166.883 34.2647 166.883C34.2253 166.883 34.2006 166.873 34.2006 166.873L33.4164 166.419L34.1908 165.97C34.1908 165.97 34.2105 165.96 34.25 165.96ZM34.25 165.467C34.1365 165.467 34.0231 165.492 33.9392 165.541L32.7357 166.241C32.563 166.34 32.563 166.503 32.7357 166.602L33.9441 167.302C34.028 167.351 34.1414 167.376 34.2549 167.376C34.3683 167.376 34.4818 167.351 34.5656 167.302L35.7692 166.602C35.9418 166.503 35.9369 166.34 35.7692 166.241L34.5607 165.541C34.4768 165.497 34.3634 165.467 34.25 165.467Z" - fill="#706F6F" /> - <path - d="M27.4035 168.353C27.3295 168.353 27.2604 168.338 27.216 168.313L26.0668 167.647L27.2062 166.982C27.2506 166.957 27.3196 166.942 27.3936 166.942C27.4676 166.942 27.5367 166.957 27.581 166.982L28.7303 167.647L27.586 168.313C27.5465 168.338 27.4775 168.353 27.4035 168.353Z" - fill="white" /> - <path - d="M27.3935 167.184C27.433 167.184 27.4576 167.194 27.4576 167.194L28.2419 167.648L27.4675 168.096C27.4626 168.101 27.4379 168.106 27.4034 168.106C27.3688 168.106 27.3392 168.096 27.3392 168.096L26.555 167.643L27.3244 167.194C27.3294 167.194 27.354 167.184 27.3935 167.184ZM27.3935 166.691C27.28 166.691 27.1666 166.715 27.0828 166.765L25.8792 167.465C25.7066 167.564 25.7115 167.726 25.8842 167.825L27.0926 168.526C27.1814 168.575 27.2899 168.6 27.4034 168.6C27.5168 168.6 27.6303 168.575 27.7141 168.526L28.9176 167.825C29.0903 167.726 29.0903 167.564 28.9176 167.465L27.7092 166.765C27.6204 166.715 27.5069 166.691 27.3935 166.691Z" - fill="#706F6F" /> - <path - d="M32.0254 168.432C31.9514 168.432 31.8824 168.417 31.838 168.392L30.6887 167.726L31.833 167.06C31.8774 167.036 31.9465 167.021 32.0205 167.021C32.0945 167.021 32.1635 167.036 32.2079 167.06L33.3572 167.726L32.2128 168.392C32.1685 168.412 32.0994 168.432 32.0254 168.432Z" - fill="white" /> - <path - d="M32.0155 167.263C32.0549 167.263 32.0796 167.272 32.0845 167.272L32.8688 167.726L32.0944 168.175C32.0894 168.18 32.0648 168.185 32.0253 168.185C31.9859 168.185 31.9612 168.175 31.9612 168.175L31.1769 167.721L31.9513 167.272C31.9513 167.267 31.976 167.263 32.0155 167.263ZM32.0155 166.769C31.902 166.769 31.7886 166.794 31.7047 166.843L30.5012 167.544C30.3285 167.642 30.3335 167.805 30.5061 167.904L31.7146 168.604C31.7984 168.654 31.9119 168.678 32.0253 168.678C32.1388 168.678 32.2522 168.654 32.3361 168.604L33.5396 167.904C33.7122 167.805 33.7073 167.642 33.5396 167.544L32.3311 166.843C32.2374 166.794 32.124 166.769 32.0155 166.769Z" - fill="#706F6F" /> - <path - d="M28.4641 170.498C28.3901 170.498 28.3211 170.483 28.2767 170.459L27.1274 169.793L29.5937 168.357C29.6381 168.333 29.7071 168.318 29.7811 168.318C29.8551 168.318 29.9241 168.333 29.9685 168.357L31.1178 169.023L28.6516 170.459C28.6072 170.483 28.5332 170.498 28.4641 170.498Z" - fill="white" /> - <path - d="M29.7762 168.56C29.8156 168.56 29.8403 168.57 29.8403 168.57L30.6246 169.023L28.5283 170.242C28.5233 170.247 28.4987 170.251 28.4592 170.251C28.4198 170.251 28.3951 170.242 28.3951 170.242L27.6108 169.788L29.7071 168.57C29.717 168.57 29.7417 168.56 29.7762 168.56ZM29.7762 168.066C29.6627 168.066 29.5493 168.091 29.4654 168.14L26.94 169.61C26.7674 169.709 26.7674 169.872 26.94 169.97L28.1485 170.671C28.2323 170.72 28.3458 170.745 28.4592 170.745C28.5727 170.745 28.6861 170.72 28.77 170.671L31.2954 169.201C31.468 169.102 31.468 168.939 31.2954 168.841L30.0869 168.14C30.0031 168.091 29.8896 168.066 29.7762 168.066Z" - fill="#706F6F" /> - <path - d="M22.7866 168.279C22.7127 168.279 22.6436 168.264 22.5992 168.239L21.45 167.573L22.5943 166.907C22.6387 166.883 22.7077 166.868 22.7817 166.868C22.8557 166.868 22.9248 166.883 22.9691 166.907L24.1234 167.573L22.9839 168.239C22.9297 168.259 22.8557 168.279 22.7866 168.279Z" - fill="white" /> - <path - d="M22.7719 167.11C22.8114 167.11 22.8361 167.12 22.841 167.12L23.6253 167.573L22.8558 168.022C22.8509 168.027 22.8262 168.032 22.7867 168.032C22.7473 168.032 22.7226 168.022 22.7226 168.022L21.9383 167.568L22.7127 167.12C22.7127 167.115 22.7374 167.11 22.7719 167.11ZM22.7719 166.616C22.6585 166.616 22.545 166.641 22.4612 166.69L21.2577 167.391C21.085 167.49 21.085 167.652 21.2577 167.751L22.4661 168.451C22.5549 168.501 22.6634 168.525 22.7769 168.525C22.8903 168.525 23.0038 168.501 23.0876 168.451L24.2911 167.751C24.4638 167.652 24.4589 167.49 24.2862 167.391L23.0777 166.69C22.9988 166.641 22.8854 166.616 22.7719 166.616Z" - fill="#706F6F" /> - <path - d="M40.6771 157.881C40.6031 157.881 40.534 157.866 40.4847 157.841L39.3354 157.175L42.7142 155.212C42.7586 155.188 42.8276 155.173 42.9016 155.173C42.9756 155.173 43.0447 155.188 43.0891 155.212L44.2383 155.878L40.8596 157.846C40.8201 157.866 40.7461 157.881 40.6771 157.881Z" - fill="white" /> - <path - d="M42.9016 155.41C42.9411 155.41 42.9657 155.42 42.9657 155.42L43.75 155.873L40.7412 157.624C40.7362 157.629 40.7116 157.634 40.6771 157.634C40.6376 157.634 40.6129 157.624 40.6129 157.624L39.8287 157.171L42.8375 155.42C42.8375 155.42 42.8621 155.41 42.9016 155.41ZM42.9016 154.917C42.7881 154.917 42.6747 154.941 42.5908 154.99L39.1529 156.988C38.9803 157.087 38.9852 157.25 39.1578 157.348L40.3663 158.049C40.4551 158.098 40.5685 158.123 40.6771 158.123C40.7905 158.123 40.9039 158.098 40.9878 158.049L44.4257 156.051C44.5984 155.952 44.5984 155.79 44.4257 155.691L43.2173 154.99C43.1285 154.946 43.015 154.917 42.9016 154.917Z" - fill="#706F6F" /> - <path - d="M27.6995 173.705C27.6255 173.705 27.5564 173.69 27.5121 173.665L26.3628 172.999L29.7415 171.031C29.7859 171.007 29.855 170.992 29.929 170.992C30.0029 170.992 30.072 171.007 30.1164 171.031L31.2657 171.697L27.8869 173.66C27.8425 173.69 27.7735 173.705 27.6995 173.705Z" - fill="white" /> - <path - d="M29.924 171.238C29.9635 171.238 29.9882 171.248 29.9882 171.248L30.7724 171.702L27.7636 173.448C27.7587 173.453 27.734 173.458 27.6946 173.458C27.6551 173.458 27.6304 173.448 27.6304 173.448L26.8462 172.994L29.855 171.248C29.8649 171.243 29.8895 171.238 29.924 171.238ZM29.924 170.745C29.8106 170.745 29.6971 170.77 29.6133 170.819L26.1754 172.817C26.0027 172.915 26.0077 173.078 26.1754 173.177L27.3838 173.877C27.4677 173.927 27.5811 173.951 27.6946 173.951C27.808 173.951 27.9215 173.927 28.0053 173.877L31.4432 171.88C31.6159 171.781 31.6109 171.618 31.4432 171.52L30.2348 170.819C30.1509 170.77 30.0375 170.745 29.924 170.745Z" - fill="#706F6F" /> - <path - d="M38.7335 164.53C38.6595 164.53 38.5904 164.515 38.546 164.49L37.3918 163.824L38.5362 163.158C38.5806 163.134 38.6496 163.119 38.7236 163.119C38.7976 163.119 38.8667 163.134 38.916 163.158L40.0652 163.824L38.9209 164.49C38.8765 164.515 38.8075 164.53 38.7335 164.53Z" - fill="white" /> - <path - d="M38.7236 163.366C38.763 163.366 38.7877 163.375 38.7877 163.375L39.572 163.829L38.7976 164.278C38.7926 164.283 38.768 164.288 38.7285 164.288C38.6891 164.288 38.6644 164.278 38.6644 164.278L37.8801 163.824L38.6545 163.375C38.6595 163.37 38.6841 163.366 38.7236 163.366ZM38.7236 162.872C38.6101 162.872 38.4967 162.897 38.4128 162.946L37.2093 163.647C37.0367 163.745 37.0416 163.908 37.2142 164.007L38.4227 164.707C38.5065 164.756 38.62 164.781 38.7334 164.781C38.8469 164.781 38.9603 164.756 39.0442 164.707L40.2477 164.007C40.4203 163.908 40.4154 163.745 40.2477 163.647L39.0393 162.946C38.9505 162.897 38.837 162.872 38.7236 162.872Z" - fill="#706F6F" /> - <path - d="M36.4991 165.832C36.4251 165.832 36.356 165.817 36.3116 165.792L35.1624 165.126L36.3018 164.461C36.3461 164.436 36.4152 164.421 36.4892 164.421C36.5632 164.421 36.6322 164.436 36.6766 164.461L37.8259 165.126L36.6816 165.792C36.6421 165.812 36.5681 165.832 36.4991 165.832Z" - fill="white" /> - <path - d="M36.4843 164.663C36.5238 164.663 36.5484 164.673 36.5484 164.673L37.3327 165.127L36.5583 165.575C36.5534 165.58 36.5287 165.585 36.4893 165.585C36.4498 165.585 36.4251 165.575 36.4251 165.575L35.6409 165.122L36.4103 164.673C36.4251 164.668 36.4498 164.663 36.4843 164.663ZM36.4843 164.17C36.3709 164.17 36.2574 164.194 36.1736 164.244L34.9701 164.944C34.7974 165.043 34.8024 165.205 34.975 165.304L36.1834 166.005C36.2673 166.054 36.3807 166.079 36.4942 166.079C36.6076 166.079 36.7211 166.054 36.8049 166.005L38.0085 165.304C38.1811 165.205 38.1811 165.043 38.0085 164.944L36.8 164.244C36.7112 164.194 36.5978 164.17 36.4843 164.17Z" - fill="#706F6F" /> - <path - d="M36.6422 168.505C36.5683 168.505 36.4992 168.491 36.4548 168.466L35.3055 167.8L43.1038 163.262C43.1482 163.237 43.2172 163.223 43.2912 163.223C43.3652 163.223 43.4343 163.237 43.4786 163.262L44.6279 163.928L36.8297 168.466C36.7853 168.491 36.7162 168.505 36.6422 168.505Z" - fill="white" /> - <path - d="M43.2911 163.469C43.3306 163.469 43.3552 163.479 43.3552 163.479L44.1395 163.933L36.7112 168.254C36.7063 168.259 36.6816 168.264 36.6421 168.264C36.6027 168.264 36.578 168.254 36.578 168.254L35.7938 167.8L43.227 163.479C43.2319 163.474 43.2566 163.469 43.2911 163.469ZM43.2911 162.976C43.1777 162.976 43.0642 163.001 42.9804 163.05L35.118 167.618C34.9454 167.716 34.9454 167.879 35.118 167.978L36.3265 168.678C36.4103 168.727 36.5238 168.752 36.6372 168.752C36.7507 168.752 36.8641 168.727 36.948 168.678L44.8103 164.111C44.983 164.012 44.978 163.849 44.8103 163.75L43.6019 163.05C43.518 163.001 43.4046 162.976 43.2911 162.976Z" - fill="#706F6F" /> - <path - d="M174.875 67.8423C175.692 67.6577 176.641 66.7988 177.299 66.3492C178.541 65.4904 184.122 65.2656 182.664 64.8563C182.139 64.7037 187.429 68.1232 187.295 70.1781C187.237 71.1333 187.47 72.9233 187.37 73.8946C187.295 74.6812 187.529 75.219 187.47 76.0217C186.929 75.5562 186.771 74.4324 186.054 74.0632C185.413 73.7501 184.463 74.2478 183.847 74.4003C183.289 74.5287 182.681 74.5127 182.164 74.7695C181.606 75.0505 181.506 75.4197 181.314 75.9655C180.981 76.8806 180.831 77.6111 180.773 78.5743C180.423 77.9562 180.115 77.5067 179.648 76.9288C179.182 76.3669 178.466 76.11 177.807 75.7167C176.141 74.6893 175.208 73.6056 175.092 71.5748C175.017 70.451 175.558 68.8296 174.875 67.8423Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" - fill="white" /> - <path - d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" - fill="white" /> - <path - d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" - fill="white" /> - <path - d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" - fill="white" /> - <path - d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" - fill="white" /> - <path - d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" - fill="white" /> - <path - d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" - stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M171.976 67.4891C173.759 67.3768 174.359 68.2918 175.525 69.1908C177.483 70.6999 177.774 72.811 178.216 74.8097C178.624 76.68 177.632 79.7944 175.175 79.4733C172.31 79.0961 170.818 77.4746 169.652 75.1228C169.094 73.9669 168.894 72.0083 169.052 70.6999C169.144 69.841 170.535 67.4651 171.976 67.4891Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" - fill="white" /> - <path - d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" - fill="white" /> - <path - d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M174.708 73.14C174.692 72.9313 174.634 72.7146 174.417 72.6182C174.259 72.5621 174.109 72.6182 173.992 72.7306C173.667 73.0276 173.742 73.5333 174.05 73.8303C174.325 74.0952 174.65 73.9828 174.75 73.6457C174.85 73.2523 174.65 72.8269 174.267 72.6584C174.192 72.6423 174.134 72.6423 174.075 72.6985C173.767 73.1239 173.742 73.9507 174.442 74.0069C174.5 74.0069 174.559 73.9668 174.575 73.9106C174.708 73.5574 174.708 73.1801 174.475 72.8671C174.434 72.8109 174.317 72.7707 174.259 72.851C174.084 73.0597 173.892 73.5815 174.317 73.6537C174.492 73.6698 174.567 73.4289 174.392 73.3888C174.217 73.3727 174.409 73.0918 174.45 73.0356C174.375 73.0356 174.317 73.0196 174.234 73.0196C174.425 73.2845 174.409 73.5814 174.309 73.8784C174.35 73.8383 174.409 73.8222 174.442 73.7821C173.975 73.742 174.134 73.1079 174.309 72.8671C174.25 72.8831 174.175 72.9072 174.117 72.9072C174.35 73.0035 174.484 73.1881 174.484 73.445C174.484 73.5574 174.467 73.8222 174.292 73.7259C174.059 73.6135 173.984 73.2764 174.075 73.0757C174.117 73.0195 174.192 72.8911 174.267 72.9072C174.384 72.9072 174.425 73.0918 174.425 73.1881C174.475 73.3085 174.742 73.3085 174.708 73.14Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M174.625 73.7983C175.067 73.8545 175.325 74.1756 175.592 74.4726C175.867 74.7695 176.15 75.0505 176.483 75.2752C177.183 75.7649 177.957 76.1341 178.749 76.4311C179.54 76.7121 180.223 76.993 180.548 77.7957C180.823 78.4298 180.956 79.1201 181.073 79.8104C181.09 79.979 181.364 79.9068 181.348 79.7382C181.231 79.0078 181.056 78.3014 180.765 77.6111C180.473 76.9609 179.99 76.6238 179.315 76.3589C178.407 76.0057 177.491 75.6685 176.683 75.1067C176.241 74.8097 175.925 74.4565 175.575 74.0792C175.325 73.7982 175.05 73.6137 174.684 73.5575C174.534 73.5173 174.45 73.7742 174.625 73.7983Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M174.026 72.45C174.201 72.45 174.201 72.1851 174.026 72.1851C173.851 72.1931 173.851 72.45 174.026 72.45Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M174.142 72.4499C174.492 71.9844 174.317 71.278 174.317 70.7321C174.317 70.5636 174.042 70.5636 174.042 70.7321C174.042 71.2138 174.217 71.9041 173.909 72.3215C173.809 72.474 174.042 72.6024 174.142 72.4499Z" - fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M172.709 68.8697C171.86 68.7974 171.085 69.247 170.577 69.8811C170.019 70.6115 169.935 71.3581 170.11 72.2169C170.327 73.2604 170.61 74.328 171.177 75.2752C171.585 75.9816 172.168 76.6157 172.768 77.1615C173.351 77.6833 174.067 78.2211 174.883 78.2612C175.642 78.3013 176.258 77.7957 176.666 77.2338C177.133 76.5595 177.366 75.7407 177.399 74.938C177.441 74.0952 177.208 73.3888 176.874 72.6263C176.45 71.6952 176 70.6276 175.192 69.9613C174.534 69.4476 173.601 68.8135 172.709 68.8697C172.534 68.8697 172.534 69.1506 172.709 69.1346C173.467 69.0784 174.242 69.6001 174.8 70.0336C175.417 70.5232 175.825 71.1574 176.158 71.8477C176.508 72.538 176.916 73.2685 177.049 74.015C177.183 74.7454 177.124 75.508 176.874 76.2143C176.641 76.9047 176.158 77.6672 175.425 77.9481C174.667 78.2291 173.876 77.7635 173.309 77.314C172.035 76.3026 171.143 74.9782 170.693 73.4691C170.402 72.538 170.052 71.4544 170.502 70.5393C170.893 69.7205 171.726 69.0623 172.709 69.1586C172.884 69.1506 172.884 68.8857 172.709 68.8697Z" - fill="white" /> - <path - d="M172.709 68.8697C171.86 68.7974 171.085 69.247 170.577 69.8811C170.019 70.6115 169.935 71.3581 170.11 72.2169C170.327 73.2604 170.61 74.328 171.177 75.2752C171.585 75.9816 172.168 76.6157 172.768 77.1615C173.351 77.6833 174.067 78.2211 174.883 78.2612C175.642 78.3013 176.258 77.7957 176.666 77.2338C177.133 76.5595 177.366 75.7407 177.399 74.938C177.441 74.0952 177.208 73.3888 176.874 72.6263C176.45 71.6952 176 70.6276 175.192 69.9613C174.534 69.4476 173.601 68.8135 172.709 68.8697ZM172.709 68.8697C172.534 68.8697 172.534 69.1506 172.709 69.1346C173.467 69.0784 174.242 69.6001 174.8 70.0336C175.417 70.5232 175.825 71.1574 176.158 71.8477C176.508 72.538 176.916 73.2685 177.049 74.015C177.183 74.7454 177.124 75.508 176.874 76.2143C176.641 76.9047 176.158 77.6672 175.425 77.9481C174.667 78.2291 173.876 77.7635 173.309 77.314C172.035 76.3026 171.143 74.9782 170.693 73.4691C170.402 72.538 170.052 71.4544 170.502 70.5393C170.893 69.7205 171.726 69.0623 172.709 69.1586C172.884 69.1506 172.884 68.8857 172.709 68.8697Z" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M172.709 68.8697C171.86 68.7974 171.085 69.247 170.577 69.8811C170.019 70.6115 169.935 71.3581 170.11 72.2169C170.327 73.2604 170.61 74.328 171.177 75.2752C171.585 75.9816 172.168 76.6157 172.768 77.1615C173.351 77.6833 174.067 78.2211 174.883 78.2612C175.642 78.3013 176.258 77.7957 176.666 77.2338C177.133 76.5595 177.366 75.7407 177.399 74.938C177.441 74.0952 177.208 73.3888 176.874 72.6263C176.45 71.6952 176 70.6276 175.192 69.9613C174.534 69.4476 173.601 68.8135 172.709 68.8697ZM172.709 68.8697C172.534 68.8697 172.534 69.1506 172.709 69.1346C173.467 69.0784 174.242 69.6001 174.8 70.0336C175.417 70.5232 175.825 71.1574 176.158 71.8477C176.508 72.538 176.916 73.2685 177.049 74.015C177.183 74.7454 177.124 75.508 176.874 76.2143C176.641 76.9047 176.158 77.6672 175.425 77.9481C174.667 78.2291 173.876 77.7635 173.309 77.314C172.035 76.3026 171.143 74.9782 170.693 73.4691C170.402 72.538 170.052 71.4544 170.502 70.5393C170.893 69.7205 171.726 69.0623 172.709 69.1586C172.884 69.1506 172.884 68.8857 172.709 68.8697Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M180.656 79.7865C179.34 79.2085 178.857 82.7725 180.815 82.941C182.589 83.1096 182.689 79.8587 180.656 79.7865Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M180.656 80.8701C180.581 80.8701 180.556 80.9263 180.498 81.0226C180.398 81.3357 180.498 81.5845 180.864 81.5283C180.964 81.2233 180.848 80.8862 180.656 80.8701Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M180.806 53.6989C181.348 53.6026 182.239 53.7391 182.764 53.5464C183.755 53.2093 183.172 52.2942 182.589 51.7564C181.214 50.4721 179.873 51.1785 178.249 51.331C178.207 52.0936 177.766 55.5692 179.082 55.4167C179.099 55.0795 178.757 53.6989 179.04 53.4742C179.49 53.121 180.556 54.7746 180.806 53.6989Z" - fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" - fill="white" /> - <path - d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" - fill="white" /> - <path - d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" - fill="white" /> - <path - d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" - fill="white" /> - <path - d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M183.813 69.8973C183.197 70.1381 183.93 72.811 184.005 73.3488C184.08 73.8305 184.197 74.2639 184.372 74.7294C184.505 75.1067 184.505 75.8853 184.696 76.1823C184.946 76.5596 185.721 76.6479 186.029 76.3509C186.379 76.0138 186.396 76.5195 186.396 76.086C186.396 74.9622 186.221 72.5782 186.104 71.4785C186.029 70.7481 185.771 68.4364 185.021 68.2838C184.297 68.1394 184.372 69.6163 183.813 69.8973Z" + d="M25.2196 15.7334L38.1724 23.1692L25.2196 30.5753L12.286 23.1565L25.2196 15.7334ZM36.228 23.1819L25.2111 16.8563L14.2092 23.1735L25.2111 29.4842L36.228 23.1819Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M38.1703 23.1692V25.8247L25.2198 33.2329V30.5753L38.1703 23.1692Z" fill="white" /> + <path d="M38.1703 25.8247V23.1692L25.2198 30.5753V33.2329" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.2197 30.5754V33.0866L12.2861 25.6677V23.1587L25.2197 30.5754Z" fill="#BDBDBD" /> + <path d="M25.2197 33.0866V30.5754L12.2861 23.1587V25.6677" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.2112 16.8562V18.5501L15.6846 24.0182L14.2072 23.1734L25.2112 16.8562Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M36.228 23.1819L25.2112 16.8562V18.5501L34.7655 24.0182L36.228 23.1819Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M29 33.394L29.0328 45L35 41.606L34.9672 30L29 33.394Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M38.1702 8.85376V23.6702L25.2175 31.0763V16.2599L38.1702 8.85376Z" fill="white" /> + <path d="M38.1702 8.85376V23.6702L31.6939 27.3733L25.2175 31.0763V16.2599L38.1702 8.85376Z" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M25.2175 16.2597L12.286 8.84301L25.2175 1.41992L38.1702 8.85362L25.2175 16.2597Z" fill="white" /> + <path d="M25.2175 16.2597L12.286 8.84301L25.2175 1.41992L38.1702 8.85362L25.2175 16.2597Z" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M12.286 8.84302L12.2669 23.6701L25.2175 31.0762V16.2597L12.286 8.84302Z" fill="white" /> + <path d="M12.286 8.84302L12.2669 23.6701L25.2175 31.0762V16.2597L12.286 8.84302Z" fill="#BDBDBD" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M32.6309 14.2322V18.8256L35.9467 16.922V12.3286L32.6309 14.2322Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M27.7376 16.9388V21.5322L31.0533 19.6315V15.0381L27.7376 16.9388Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M32.5775 20.5311V25.1273L35.8932 23.2238V18.6304L32.5775 20.5311Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M27.6868 23.2407V27.8341L31.0026 25.9306V21.3372L27.6868 23.2407Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M17.9226 14.0851V18.6786L14.5878 16.775V12.1843L17.9226 14.0851Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M22.8414 16.7919V21.3882L19.5066 19.4846V14.8911L22.8414 16.7919Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M17.9113 20.3837V24.98L14.5737 23.0764V18.4829L17.9113 20.3837Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M22.8301 23.0933V27.6896L19.4953 25.786V21.1897L22.8301 23.0933Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M17.9226 30.0272V34.6208L14.5878 32.7171V28.1265L17.9226 30.0272Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M22.8414 32.734V37.3303L19.5066 35.4268V30.8333L22.8414 32.734Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M17.9113 36.3258V40.9221L14.5737 39.0186V34.425L17.9113 36.3258Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M22.8301 39.0354V43.6318L19.4953 41.7282V37.1318L22.8301 39.0354Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M38.1702 8.08521V8.85362L25.1135 16.5633V15.7949L38.1702 8.08521Z" fill="white" /> + <path d="M38.1702 8.08521V8.85362L25.1135 16.5633V15.7949L38.1702 8.08521Z" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.1134 15.7948L12.3326 8.46727L25.3724 0.738525L38.1702 8.08519L25.1134 15.7948Z" fill="#E9E9E9" /> + <path d="M12.3328 8.46704L12.3137 9.24396L25.1136 16.563V15.7946L12.3328 8.46704Z" fill="white" /> + <path d="M12.3328 8.46704L12.3137 9.24396L25.1136 16.563V15.7946L12.3328 8.46704Z" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M25.7486 1.47656L12.1813 8.74474" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" + stroke-linejoin="round" /> + <path d="M37.8622 8.26004L25.9456 1.34131" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" + stroke-linejoin="round" /> + </symbol> + + <symbol id="structureCategory_private" viewBox="0 0 52 52" fill="none" xmlns="http://www.w3.org/2000/svg"> + <rect width="52" height="52" rx="4" fill="white" /> <path - d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" - fill="white" /> - <path - d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" - fill="white" /> - <path - d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" - fill="white" /> - <path - d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" - fill="white" /> - <path - d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" + d="M7.32104 39.6816C6.79673 39.9831 6.79461 40.4777 7.31467 40.7791L24.0607 50.5117C24.5828 50.8152 25.4319 50.8131 25.9562 50.5117L43.6044 40.3227C44.1287 40.0213 44.1329 39.5288 43.6107 39.2253L26.8647 29.4927C26.3447 29.1912 25.4935 29.1912 24.9692 29.4927L7.32104 39.6816Z" + fill="#1B7183" /> + <path d="M38.1703 24.863V39.6774L25.2197 47.0856V32.2691L38.1703 24.863Z" fill="white" /> + <path d="M38.1703 24.863V39.6774L25.2197 47.0856V32.2691L38.1703 24.863Z" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.2197 32.2692L12.2861 24.8525L25.2197 17.4294L38.1703 24.8631L25.2197 32.2692Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" - fill="white" /> - <path - d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" + <path d="M25.2112 31.1761L14.2071 24.8653L25.2112 18.5503L36.228 24.8738L25.2112 31.1761Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M12.286 24.8528L12.2669 39.6777L25.2197 47.086V32.2695L12.286 24.8528Z" fill="white" /> + <path d="M12.286 24.8528L12.2669 39.6777L25.2197 47.086V32.2695L12.286 24.8528Z" fill="#BDBDBD" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> <path - d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" - fill="white" /> - <path - d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" - stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M184.913 76.4473C184.696 77.3062 186.97 78.6307 187.912 78.1089C188.628 77.7156 187.737 76.6881 187.179 76.351C186.712 76.054 184.705 76.1664 184.913 76.4473Z" + d="M25.2196 15.7334L38.1724 23.1692L25.2196 30.5753L12.286 23.1565L25.2196 15.7334ZM36.228 23.1819L25.2111 16.8563L14.2092 23.1735L25.2111 29.4842L36.228 23.1819Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M38.1703 23.1692V25.8247L25.2198 33.2329V30.5753L38.1703 23.1692Z" fill="white" /> + <path d="M38.1703 25.8247V23.1692L25.2198 30.5753V33.2329" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.2197 30.5754V33.0866L12.2861 25.6677V23.1587L25.2197 30.5754Z" fill="#BDBDBD" /> + <path d="M25.2197 33.0866V30.5754L12.2861 23.1587V25.6677" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.2112 16.8562V18.5501L15.6846 24.0182L14.2072 23.1734L25.2112 16.8562Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M36.228 23.1819L25.2112 16.8562V18.5501L34.7655 24.0182L36.228 23.1819Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M29 33.394L29.0328 45L35 41.606L34.9672 30L29 33.394Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M38.1702 8.85376V23.6702L25.2175 31.0763V16.2599L38.1702 8.85376Z" fill="white" /> + <path d="M38.1702 8.85376V23.6702L31.6939 27.3733L25.2175 31.0763V16.2599L38.1702 8.85376Z" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M25.2175 16.2597L12.286 8.84301L25.2175 1.41992L38.1702 8.85362L25.2175 16.2597Z" fill="white" /> + <path d="M25.2175 16.2597L12.286 8.84301L25.2175 1.41992L38.1702 8.85362L25.2175 16.2597Z" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M12.286 8.84302L12.2669 23.6701L25.2175 31.0762V16.2597L12.286 8.84302Z" fill="white" /> + <path d="M12.286 8.84302L12.2669 23.6701L25.2175 31.0762V16.2597L12.286 8.84302Z" fill="#BDBDBD" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M32.6309 14.2322V18.8256L35.9467 16.922V12.3286L32.6309 14.2322Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M27.7376 16.9388V21.5322L31.0533 19.6315V15.0381L27.7376 16.9388Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M32.5775 20.5311V25.1273L35.8932 23.2238V18.6304L32.5775 20.5311Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M27.6868 23.2407V27.8341L31.0026 25.9306V21.3372L27.6868 23.2407Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M17.9226 14.0851V18.6786L14.5878 16.775V12.1843L17.9226 14.0851Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M22.8414 16.7919V21.3882L19.5066 19.4846V14.8911L22.8414 16.7919Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M17.9113 20.3837V24.98L14.5737 23.0764V18.4829L17.9113 20.3837Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M22.8301 23.0933V27.6896L19.4953 25.786V21.1897L22.8301 23.0933Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M17.9226 30.0272V34.6208L14.5878 32.7171V28.1265L17.9226 30.0272Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M22.8414 32.734V37.3303L19.5066 35.4268V30.8333L22.8414 32.734Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M17.9113 36.3258V40.9221L14.5737 39.0186V34.425L17.9113 36.3258Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M22.8301 39.0354V43.6318L19.4953 41.7282V37.1318L22.8301 39.0354Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M38.1702 8.08521V8.85362L25.1135 16.5633V15.7949L38.1702 8.08521Z" fill="white" /> + <path d="M38.1702 8.08521V8.85362L25.1135 16.5633V15.7949L38.1702 8.08521Z" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.1134 15.7948L12.3326 8.46727L25.3724 0.738525L38.1702 8.08519L25.1134 15.7948Z" fill="#E9E9E9" /> + <path d="M12.3328 8.46704L12.3137 9.24396L25.1136 16.563V15.7946L12.3328 8.46704Z" fill="white" /> + <path d="M12.3328 8.46704L12.3137 9.24396L25.1136 16.563V15.7946L12.3328 8.46704Z" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M25.7486 1.47656L12.1813 8.74474" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" + stroke-linejoin="round" /> + <path d="M37.8622 8.26004L25.9456 1.34131" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" + stroke-linejoin="round" /> + </symbol> + + <symbol id="structureCategory_public" viewBox="0 0 52 52" fill="none" xmlns="http://www.w3.org/2000/svg"> + <rect width="52" height="52" rx="4" fill="white" /> <path - d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" - fill="white" /> - <path - d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" - fill="white" /> - <path - d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" + d="M7.39483 34.4973C6.87052 34.7987 6.8684 35.2933 7.38846 35.5948L24.1344 45.3273C24.6566 45.6309 25.5057 45.6288 26.03 45.3273L43.6782 35.1384C44.2025 34.8369 44.2067 34.3445 43.6845 34.0409L26.9385 24.3083C26.4185 24.0069 25.5673 24.0069 25.043 24.3083L7.39483 34.4973Z" + fill="#DA3635" /> + <path d="M38.2441 19.6787V34.4931L25.2935 41.9013V27.0848L38.2441 19.6787Z" fill="white" /> + <path d="M38.2441 19.6787V34.4931L25.2935 41.9013V27.0848L38.2441 19.6787Z" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.2935 27.0849L12.3599 19.6682L25.2935 12.2451L38.2441 19.6788L25.2935 27.0849Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" - fill="white" /> - <path - d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373ZM182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" + <path d="M25.2851 25.9918L14.281 19.681L25.2851 13.366L36.3019 19.6895L25.2851 25.9918Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M12.3599 19.6685L12.3408 34.4934L25.2935 41.9016V27.0852L12.3599 19.6685Z" fill="white" /> + <path d="M12.3599 19.6685L12.3408 34.4934L25.2935 41.9016V27.0852L12.3599 19.6685Z" fill="#BDBDBD" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> <path - d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" - fill="white" /> - <path - d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373ZM182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" - stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M181.739 56.42C183.23 56.2514 184.53 57.929 184.105 59.3337C183.872 60.1204 182.939 59.7431 182.614 60.3451C182.322 60.8829 182.672 62.1913 182.689 62.7933C182.764 64.3265 182.497 66.1165 181.331 67.2162C180.056 68.4684 178.099 68.0912 176.45 67.8503C175.175 67.6657 174.783 68.7815 175.133 66.2289C175.325 64.8081 176.183 63.8048 176.45 62.4562C175.95 62.1913 175.5 62.6088 175.058 62.2716C174.559 61.8783 174.883 61.1318 175.042 60.5699C175.408 59.2856 176.091 58.3705 177.133 57.5117C177.557 57.1585 178.082 56.7812 178.665 56.8374C179.498 56.9337 179.557 57.921 180.173 58.1056C180.989 58.3464 180.698 57.303 180.989 56.9096C181.289 56.5163 181.231 56.3638 181.739 56.42Z" + d="M25.2935 10.5491L38.2462 17.9849L25.2935 25.391L12.3599 17.9721L25.2935 10.5491ZM36.3018 17.9976L25.285 11.672L14.283 17.9891L25.285 24.2999L36.3018 17.9976Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" - fill="white" /> - <path - d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" + <path d="M38.2442 17.9849V20.6404L25.2936 28.0486V25.391L38.2442 17.9849Z" fill="white" /> + <path d="M38.2442 20.6404V17.9849L25.2936 25.391V28.0486" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.2936 25.3911V27.9022L12.36 20.4834V17.9744L25.2936 25.3911Z" fill="#BDBDBD" /> + <path d="M25.2936 27.9022V25.3911L12.36 17.9744V20.4834" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.2851 11.6719V13.3658L15.7584 18.8339L14.281 17.989L25.2851 11.6719Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M36.3019 17.9975L25.2851 11.6719V13.3658L34.8393 18.8339L36.3019 17.9975Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M29.0739 28.2097L29.1066 39.8157L35.0739 36.4216L35.0411 24.8157L29.0739 28.2097Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" - fill="white" /> - <path - d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" + <path d="M17.9965 24.8429V29.4364L14.6617 27.5328V22.9421L17.9965 24.8429Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M22.9153 27.5497V32.146L19.5805 30.2424V25.6489L22.9153 27.5497Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M17.9852 31.1415V35.7378L14.6476 33.8342V29.2407L17.9852 31.1415Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M22.904 33.8511V38.4474L19.5692 36.5438V31.9475L22.904 33.8511Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M38.244 17.9309L25.1873 25.6406" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M24.8546 25.1435L12.0738 17.8159L25.4462 9.81592L38.244 17.1626L24.8546 25.1435Z" fill="#E9E9E9" /> + <path d="M25.8224 10.554L12.2551 17.8221" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" + stroke-linejoin="round" /> + <path d="M37.936 17.3374L26.0194 10.4187" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" + stroke-linejoin="round" /> + <path d="M24.9904 25.7346L12.5738 18.3159" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" + stroke-linejoin="round" /> + <path d="M26.0738 27.8157L16.0922 16.083L32.0058 7.91253L41.5738 18.8157L26.0738 27.8157Z" fill="white" + stroke="#696969" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M8.57379 17.8157L16.0922 16.0831L32.0058 7.91256L22.9568 9.60935L8.57379 17.8157Z" fill="#E9E9E9" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path - d="M180.306 79.7301C181.856 79.5776 182.939 82.5877 181.198 82.8686C181.123 82.8847 181.156 83.0211 181.239 82.9971C183.139 82.7001 182.014 79.4491 180.331 79.6016C180.206 79.6177 180.206 79.7461 180.306 79.7301Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - </symbol> - - <symbol id="check" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M18.9977 6.2526C19.4105 6.61952 19.4477 7.25159 19.0808 7.66437L10.9326 16.831C10.5785 17.2294 9.97428 17.28 9.55883 16.9462L4.37364 12.7795C3.94313 12.4336 3.87458 11.8041 4.22053 11.3736C4.56647 10.9431 5.19592 10.8746 5.62643 11.2205L10.0699 14.7912L17.586 6.33565C17.9529 5.92286 18.585 5.88568 18.9977 6.2526Z" - fill="#696969" /> - </symbol> - - <symbol id="unfold" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M6 10L12.5 17L19 10" stroke="black" stroke-linecap="round" stroke-linejoin="round" /> - </symbol> - - <symbol id="fold" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M6 16L12.5 9L19 16" stroke="black" stroke-linecap="round" stroke-linejoin="round" /> + <path d="M8.57375 17.8157L16.6255 16.0773L26.0738 27.8157L8.57375 17.8157Z" fill="#BDBDBD" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> </symbol> - <symbol id="appointement" width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="appointement" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M15.8333 3.83366H15V3.00033C15 2.54199 14.625 2.16699 14.1667 2.16699C13.7083 2.16699 13.3333 2.54199 13.3333 3.00033V3.83366H6.66667V3.00033C6.66667 2.54199 6.29167 2.16699 5.83333 2.16699C5.375 2.16699 5 2.54199 5 3.00033V3.83366H4.16667C3.24167 3.83366 2.50833 4.58366 2.50833 5.50033L2.5 17.167C2.5 18.0837 3.24167 18.8337 4.16667 18.8337H15.8333C16.75 18.8337 17.5 18.0837 17.5 17.167V5.50033C17.5 4.58366 16.75 3.83366 15.8333 3.83366ZM15.8333 16.3337C15.8333 16.792 15.4583 17.167 15 17.167H5C4.54167 17.167 4.16667 16.792 4.16667 16.3337V8.00033H15.8333V16.3337ZM5.83333 9.66699H7.5V11.3337H5.83333V9.66699ZM9.16667 9.66699H10.8333V11.3337H9.16667V9.66699ZM12.5 9.66699H14.1667V11.3337H12.5V9.66699Z" fill="white" /> </symbol> - <symbol id="chevronRight" width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="chevronRight" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M15 25.5L22.5 18L15 10.5V25.5Z" fill="#949494" /> </symbol> - <symbol id="chevronUp" width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> - <rect width="32" height="32" fill="white" /> + <symbol id="chevronUp" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M9.3335 18.6667L16.0002 12L22.6668 18.6667H9.3335Z" fill="#333333" /> </symbol> + + <symbol id="chevronDown" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M9.33203 13.3333L15.9987 20L22.6654 13.3333H9.33203Z" fill="#333333" /> + </symbol> </svg> \ No newline at end of file -- GitLab From f8fab7053aca349dcb73f02d367601490ae63139 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Pailharey?= <rpailharey@grandlyon.com> Date: Thu, 7 Dec 2023 14:23:46 +0100 Subject: [PATCH 15/18] review: fix text --- src/app/annuaire/result-list/result-list.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/annuaire/result-list/result-list.component.html b/src/app/annuaire/result-list/result-list.component.html index 12e4de45b..af40fba45 100644 --- a/src/app/annuaire/result-list/result-list.component.html +++ b/src/app/annuaire/result-list/result-list.component.html @@ -20,7 +20,7 @@ </div> <div class="users"> <div - *ngFor="let user of userList;" + *ngFor="let user of userList" class="singleUser" tabindex="0" role="link" @@ -45,7 +45,7 @@ </div> </div> <div *ngIf="showPagination" class="pagination"> - <p>{{ userList.length }} affichés sur {{ totalUserResult }} membres</p> + <p>{{ userList.length }} membres affichés sur {{ totalUserResult }}</p> <app-v3-button [label]="'Voir plus'" [variant]="buttonTypeV3Enum.PrimaryBlack" -- GitLab From ce731c69a4192cdb0987caf2015f4b79c97eae35 Mon Sep 17 00:00:00 2001 From: Bastien Dumont <bdumont@grandlyon.com> Date: Thu, 7 Dec 2023 14:51:42 +0100 Subject: [PATCH 16/18] adjust spacing --- .../annuaire-header/annuaire-header.component.scss | 12 ++++++------ .../annuaire/result-list/result-list.component.html | 4 ++-- .../annuaire/result-list/result-list.component.scss | 3 ++- src/assets/scss/_search.scss | 2 +- 4 files changed, 11 insertions(+), 10 deletions(-) diff --git a/src/app/annuaire/annuaire-header/annuaire-header.component.scss b/src/app/annuaire/annuaire-header/annuaire-header.component.scss index 78055fa3a..b9c05ec65 100644 --- a/src/app/annuaire/annuaire-header/annuaire-header.component.scss +++ b/src/app/annuaire/annuaire-header/annuaire-header.component.scss @@ -1,14 +1,14 @@ @import 'search'; .annuaire-header { - display: flex; - flex-direction: column; - gap: 0.5rem; - margin-top: 1.5rem; - margin-bottom: 1rem; - .form { + padding-top: 24px; + padding-bottom: 16px; display: flex; gap: 0.5rem; } + + .filterTags { + padding-block: 8px; + } } diff --git a/src/app/annuaire/result-list/result-list.component.html b/src/app/annuaire/result-list/result-list.component.html index af40fba45..35e15df17 100644 --- a/src/app/annuaire/result-list/result-list.component.html +++ b/src/app/annuaire/result-list/result-list.component.html @@ -16,7 +16,7 @@ > <h2 class="uppercase">membres</h2> <div class="userNumber"> - {{ userList.length }} utilisateur(s)<span *ngIf="showPagination"> sur {{ totalUserResult }} </span> + {{ userList.length }} membre(s)<span *ngIf="showPagination"> sur {{ totalUserResult }} </span> </div> <div class="users"> <div @@ -58,7 +58,7 @@ <div *ngIf="isLogged && userList.length === 0" class="results empty"> <h2 class="uppercase">membres</h2> - <div class="userNumber">0 utilisateur</div> + <div class="userNumber">0 membres</div> <div class="noUser">Aucun résultat ne correspond à vos filtres</div> <app-button tabindex="0" diff --git a/src/app/annuaire/result-list/result-list.component.scss b/src/app/annuaire/result-list/result-list.component.scss index 7be57b405..93cd7ed58 100644 --- a/src/app/annuaire/result-list/result-list.component.scss +++ b/src/app/annuaire/result-list/result-list.component.scss @@ -23,9 +23,10 @@ @include font-bold-18; } .userNumber { - @include font-regular-14; + @include font-bold-14; color: $grey-3; padding-block: 1rem; + margin-left: 0; } &.empty { padding-bottom: 2rem; diff --git a/src/assets/scss/_search.scss b/src/assets/scss/_search.scss index 3ab45321c..d74a8e503 100644 --- a/src/assets/scss/_search.scss +++ b/src/assets/scss/_search.scss @@ -186,7 +186,7 @@ a { flex-direction: row; flex-wrap: wrap; display: flex; - gap: 0.25rem; + gap: 12px; .title { color: $grey-3; } -- GitLab From 20186b0e69c9a427a5d5fcf2872f51c93f1e6ceb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Pailharey?= <rpailharey@grandlyon.com> Date: Thu, 7 Dec 2023 16:08:54 +0100 Subject: [PATCH 17/18] revert: moved sprite cleanup to #425 --- .../annuaire-header.component.html | 7 +- src/app/models/structure.model.ts | 31 + .../components/button/button.component.html | 2 +- .../hour-picker/hour-picker.component.html | 4 +- .../collapse-header.component.ts | 4 +- src/assets/ico/calendar.svg | 4 + src/assets/ico/sprite.svg | 2429 +++++++++++++++-- 7 files changed, 2277 insertions(+), 204 deletions(-) create mode 100644 src/assets/ico/calendar.svg diff --git a/src/app/annuaire/annuaire-header/annuaire-header.component.html b/src/app/annuaire/annuaire-header/annuaire-header.component.html index 01775bdef..fced69084 100644 --- a/src/app/annuaire/annuaire-header/annuaire-header.component.html +++ b/src/app/annuaire/annuaire-header/annuaire-header.component.html @@ -1,7 +1,6 @@ <div class="annuaire-header"> <div class="form"> <app-v3-search-bar [(value)]="searchInput" (search)="applyFilter()" /> - <div class="btnSection isntPhoneContent"> <button class="btn-filter" @@ -27,7 +26,6 @@ <span>Employeur</span> <div class="arrow"></div> </button> - <app-filter-modal [modalType]="modalTypeOpened" [checkedFilters]="searchService.checkedFilterList" @@ -39,7 +37,6 @@ /> </div> </div> - <div *ngIf="searchService.checkedFilterList.length" class="filterTags isntPhoneContent"> <div class="title">Filtres :</div> <app-v3-tag-item @@ -48,7 +45,7 @@ [size]="'small'" [color]="'black'" [iconFolder]="'ico'" - [iconName]="'cross'" + [iconName]="'tagDelete'" [iconPosition]="'right'" (action)="removeFilter(filter)" /> @@ -57,7 +54,7 @@ [size]="'small'" [color]="'white'" [iconFolder]="'ico'" - [iconName]="'refresh'" + [iconName]="'tagReset'" [iconPosition]="'right'" (action)="resetFilters()" /> diff --git a/src/app/models/structure.model.ts b/src/app/models/structure.model.ts index 3e0d0a6f1..cb2ee1526 100644 --- a/src/app/models/structure.model.ts +++ b/src/app/models/structure.model.ts @@ -1,5 +1,6 @@ import { StructureCategoryEnum } from '../shared/enum/structureCategory.enum'; import { StructureCategoryIconEnum } from '../shared/enum/structureCategoryIcon.enum'; +import { Equipment } from '../structure-list/enum/equipment.enum'; import { Weekday } from '../structure-list/enum/weekday.enum'; import { Address } from './address.model'; import { Day } from './day.model'; @@ -157,6 +158,36 @@ export class Structure { return this.coord[0]; } + public getEquipmentsIcon(equipment: Equipment): string { + switch (equipment) { + case Equipment.wifi: + return 'wifiEnAccesLibre'; + case Equipment.printer: + return 'print'; + case Equipment.computer: + return 'computer'; + case Equipment.scanner: + return 'scan'; + default: + return null; + } + } + + public getEquipmentsTitle(equipment: Equipment): string { + switch (equipment) { + case Equipment.wifi: + return 'Wifi en accès libre'; + case Equipment.printer: + return this.nbPrinters > 1 ? 'Imprimantes' : 'Imprimante'; + case Equipment.computer: + return this.nbComputers > 1 ? 'Ordinateurs' : 'Ordinateur'; + case Equipment.scanner: + return this.nbScanners > 1 ? 'Scanners' : 'Scanner'; + default: + return null; + } + } + public getTypeStructureIcon(): StructureCategoryIconEnum { switch (this.structureType?.category) { case StructureCategoryEnum.public: diff --git a/src/app/shared/components/button/button.component.html b/src/app/shared/components/button/button.component.html index c6356e234..c0ea8b8c5 100644 --- a/src/app/shared/components/button/button.component.html +++ b/src/app/shared/components/button/button.component.html @@ -314,6 +314,6 @@ <ng-container *ngIf="style === buttonTypeEnum.TagCloudResetButton"> <button type="button" class="flex row btn-tags-cloud reset" (click)="doAction()"> <span>Supprimer les filtres</span> - <app-svg-icon [type]="'ico'" [icon]="'refresh'" [iconClass]="'icon-16'" [iconColor]="'black'" /> + <app-svg-icon [type]="'ico'" [icon]="'tagReset'" [iconClass]="'icon-16'" [iconColor]="'black'" /> </button> </ng-container> diff --git a/src/app/shared/components/hour-picker/hour-picker.component.html b/src/app/shared/components/hour-picker/hour-picker.component.html index e189a180f..0c6eb0aaa 100644 --- a/src/app/shared/components/hour-picker/hour-picker.component.html +++ b/src/app/shared/components/hour-picker/hour-picker.component.html @@ -43,10 +43,10 @@ <div> <div *ngIf="hour.error === 'wrong' || hour.error === 'incomplete'" class="error-message"> - <app-svg-icon [iconClass]="'icon-32'" [type]="'form'" [icon]="'notValidate'" /> + <app-svg-icon [iconClass]="'icon-32'" [type]="'ico'" [icon]="'nok'" /> </div> <div *ngIf="hour.error === null" class="error-message"> - <app-svg-icon [iconClass]="'icon-32'" [type]="'form'" [icon]="'validate'" /> + <app-svg-icon [iconClass]="'icon-32'" [type]="'ico'" [icon]="'ok'" /> </div> </div> </div> diff --git a/src/app/shared/components/v3/collapse/collapse-header/collapse-header.component.ts b/src/app/shared/components/v3/collapse/collapse-header/collapse-header.component.ts index 75367ce5f..44fb31448 100644 --- a/src/app/shared/components/v3/collapse/collapse-header/collapse-header.component.ts +++ b/src/app/shared/components/v3/collapse/collapse-header/collapse-header.component.ts @@ -4,14 +4,14 @@ import { Component, EventEmitter, Output } from '@angular/core'; selector: 'app-collapse-header', template: `<div class="collapse-header" + [ngClass]="size" role="button" tabindex="0" - [ngClass]="size" (click)="toggle.emit()" (keyup.enter)="toggle.emit()" > <ng-content></ng-content> - <app-svg-icon [ngClass]="expanded && 'expanded'" [type]="'ico'" [icon]="'chevronDown'" [iconClass]="'icon-32'" /> + <app-svg-icon [ngClass]="expanded && 'expanded'" [type]="'ico'" [icon]="'fold'" [iconClass]="'icon-32'" /> </div>`, styleUrls: ['collapse-header.component.scss'], }) diff --git a/src/assets/ico/calendar.svg b/src/assets/ico/calendar.svg new file mode 100644 index 000000000..aea6e88f6 --- /dev/null +++ b/src/assets/ico/calendar.svg @@ -0,0 +1,4 @@ +<symbol id="calendar" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> +<path d="M8 10H5V13H8V10Z" fill="#333333"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M6 2C5.44772 2 5 2.44772 5 3V4H3C2.44772 4 2 4.44772 2 5V19C2 19.5523 2.44772 20 3 20H19C19.5523 20 20 19.5523 20 19V5C20 4.44772 19.5523 4 19 4H17V3C17 2.44772 16.5523 2 16 2C15.4477 2 15 2.44772 15 3V4H7V3C7 2.44772 6.55229 2 6 2ZM4 9V18H18V9H4Z" fill="#333333"/> +</symbol> diff --git a/src/assets/ico/sprite.svg b/src/assets/ico/sprite.svg index ff4e03b16..84693d360 100644 --- a/src/assets/ico/sprite.svg +++ b/src/assets/ico/sprite.svg @@ -39,6 +39,54 @@ fill="#333333" /> </symbol> + <symbol id="tablet" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M16 18C16.5523 18 17 17.5523 17 17V4C17 3.44772 16.5523 3 16 3H6C5.44772 3 5 3.44772 5 4V17C5 17.5523 5.44772 18 6 18H16ZM16 4H6V16H16V4ZM11 17.5C11.2761 17.5 11.5 17.2761 11.5 17C11.5 16.7239 11.2761 16.5 11 16.5C10.7239 16.5 10.5 16.7239 10.5 17C10.5 17.2761 10.7239 17.5 11 17.5Z" + stroke="none" /> + </symbol> + + <symbol id="transport" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M7 4C5.89543 4 5 4.89543 5 6V23C5 24.1046 5.89543 25 7 25L7 26.5C7 27.3284 7.67157 28 8.5 28C9.32843 28 10 27.3284 10 26.5V25H21V26.5C21 27.3284 21.6716 28 22.5 28C23.3284 28 24 27.3284 24 26.5V25C25.1046 25 26 24.1046 26 23V6C26 4.89543 25.1046 4 24 4H7ZM24 9H7V18H24V9ZM12 22H19L18.125 23H12.875L12 22ZM10 6C9.44772 6 9 6.44772 9 7C9 7.55228 9.44772 8 10 8H21C21.5523 8 22 7.55228 22 7C22 6.44772 21.5523 6 21 6H10ZM10.6668 21.8754C10.4609 21.1805 9.89524 20.6514 9.18821 20.4923L7 20V23H11L10.6668 21.8754ZM21.8118 20.4923C21.1048 20.6514 20.5391 21.1805 20.3332 21.8754L20 23H24V20L21.8118 20.4923Z" + fill="black" /> + </symbol> + + <symbol id="paste" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M14 16L5 16V4H14L14 16Z" stroke="#333333" stroke-width="2" /> + <path + d="M19 21C19.5523 21 20 20.5523 20 20V7C20 6.44772 19.5523 6 19 6H16V17C16 17.5523 15.5523 18 15 18H9V20C9 20.5523 9.44772 21 10 21H19Z" + fill="#32383D" /> + </symbol> + + <symbol id="copy" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M4 4C4 3.44771 4.44772 3 5 3H14C14.5523 3 15 3.44772 15 4V6H9C8.44772 6 8 6.44772 8 7V18H5C4.44772 18 4 17.5523 4 17V4ZM10 7C9.44772 7 9 7.44772 9 8V20C9 20.5523 9.44771 21 10 21H19C19.5523 21 20 20.5523 20 20V8C20 7.44772 19.5523 7 19 7H10Z" + fill="#32383D" /> + </symbol> + + <symbol id="cancel" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> + <path + d="M16.9498 5.36385C17.3403 4.97332 17.9734 4.97332 18.364 5.36385C18.7545 5.75437 18.7545 6.38753 18.364 6.77806L7.05026 18.0918C6.65973 18.4823 6.02657 18.4823 5.63605 18.0918C5.24552 17.7012 5.24552 17.0681 5.63605 16.6776L16.9498 5.36385Z" + stroke="none" /> + <path + d="M18.364 16.6777C18.7545 17.0682 18.7545 17.7013 18.364 18.0919C17.9734 18.4824 17.3403 18.4824 16.9498 18.0919L5.63605 6.77816C5.24552 6.38764 5.24552 5.75447 5.63605 5.36395C6.02657 4.97343 6.65974 4.97343 7.05026 5.36395L18.364 16.6777Z" + stroke="none" /> + </symbol> + + <symbol id="nok" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> + <circle cx="16" cy="16" r="13" fill="#DA6C2E" /> + <path d="M16.25 17.5L16.25 9.00001" stroke="white" stroke-width="3" stroke-linecap="round" + stroke-linejoin="round" /> + <path d="M16.25 23.6065L16.25 22.9999" stroke="white" stroke-width="3" stroke-linecap="round" + stroke-linejoin="round" /> + </symbol> + + <symbol id="ok" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> + <circle cx="16" cy="16" r="13" fill="#47C562" /> + <path d="M11 16.8182L14.8889 20L21 13" stroke="white" stroke-width="3" stroke-linecap="round" + stroke-linejoin="round" /> + </symbol> + <symbol id="add" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M11 4.63605L11 17.364" stroke="#333333" stroke-width="1.5" stroke-linecap="round" /> <path d="M17.3638 11L4.63585 11" stroke="#333333" stroke-width="1.5" stroke-linecap="round" /> @@ -56,23 +104,43 @@ stroke-linejoin="round"></path> </symbol> - <symbol id="removeCross" viewBox="0 0 22 23" fill="none" xmlns="http://www.w3.org/2000/svg"> + + <symbol id="delete" viewBox="0 0 27 17" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path + d="M18.0992 4.36723C17.7086 3.9767 17.0755 3.9767 16.6849 4.36723L13.1494 7.90276L9.61388 4.36723C9.22336 3.9767 8.59019 3.9767 8.19967 4.36723C7.80914 4.75775 7.80914 5.39092 8.19967 5.78144L11.7352 9.31698L8.19967 12.8525C7.80914 13.243 7.80914 13.8762 8.19967 14.2667C8.59019 14.6572 9.22336 14.6572 9.61388 14.2667L13.1494 10.7312L16.6849 14.2667C17.0755 14.6572 17.7086 14.6572 18.0992 14.2667C18.4897 13.8762 18.4897 13.243 18.0992 12.8525L14.5636 9.31698L18.0992 5.78144C18.4897 5.39092 18.4897 4.75775 18.0992 4.36723Z" + fill="white" /> + </symbol> + + <symbol id="remove" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> + <path + d="M6.97363 12.9062C6.34733 12.9062 5.89876 12.7877 5.62793 12.5507C5.36556 12.3053 5.23438 11.9879 5.23438 11.5986C5.23438 11.2092 5.36556 10.8961 5.62793 10.6591C5.89876 10.4137 6.34733 10.2952 6.97363 10.3036C14.44 10.3036 10.571 10.3036 17.0156 10.3036C17.6419 10.3036 18.0863 10.4221 18.3486 10.6591C18.6195 10.8961 18.7549 11.2092 18.7549 11.5986C18.7549 11.9879 18.6195 12.3053 18.3486 12.5507C18.0863 12.7877 17.6419 12.9062 17.0156 12.9062C9.63742 12.9062 13.3678 12.9062 6.97363 12.9062Z" + stroke="none" /> + </symbol> + + <symbol id="removeCross" width="22" height="23" viewBox="0 0 22 23" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M6.5 7L15.5 16" stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" /> <path d="M15.5 7L6.5 16" stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" /> </symbol> - <symbol id="cross" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M2.5 2.5L9.5 9.5" stroke="currentColor" /> - <path d="M9.5 2.5L2.5 9.5" stroke="currentColor" /> + <symbol id="removeCrossBlack" width="22" height="22" viewBox="0 0 22 22" fill="none" + xmlns="http://www.w3.org/2000/svg"> + <path d="M6.5 6.5L15.5 15.5" stroke="#333333" stroke-width="1.5" stroke-linecap="round" /> + <path d="M15.5 6.5L6.5 15.5" stroke="#333333" stroke-width="1.5" stroke-linecap="round" /> + </symbol> + + <symbol id="close" width="23" height="22" viewBox="0 0 23 22" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M7 6.5L16 15.5" stroke="#333333" stroke-width="1.5" stroke-linecap="round" /> + <path d="M16 6.5L7 15.5" stroke="#333333" stroke-width="1.5" stroke-linecap="round" /> </symbol> - <symbol id="check" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="check" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M18.9977 6.2526C19.4105 6.61952 19.4477 7.25159 19.0808 7.66437L10.9326 16.831C10.5785 17.2294 9.97428 17.28 9.55883 16.9462L4.37364 12.7795C3.94313 12.4336 3.87458 11.8041 4.22053 11.3736C4.56647 10.9431 5.19592 10.8746 5.62643 11.2205L10.0699 14.7912L17.586 6.33565C17.9529 5.92286 18.585 5.88568 18.9977 6.2526Z" fill="currentColor" /> </symbol> - <symbol id="deleteAccount" viewBox="0 0 22 23" fill="none" stroke="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="deleteAccount" width="22" height="23" viewBox="0 0 22 23" fill="none" stroke="none" + xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_8047_46397)"> <path d="M11 20.2498V18.1687C11 17.572 10.7629 16.9997 10.3409 16.5777C9.91899 16.1558 9.3467 15.9187 8.74997 15.9187H4.24999C3.65325 15.9187 3.08096 16.1558 2.65901 16.5777C2.23705 16.9997 2 17.572 2 18.1687V20.2498" @@ -109,19 +177,56 @@ <rect x="10" y="21" width="15" height="1.5" rx="0.75" fill="white" /> </symbol> + <svg id="user" viewBox="0 0 28 25" xmlns="http://www.w3.org/2000/svg"> + <path + d="M21.0256 13.9213C22.2638 12.4488 23 10.5413 23 8.5C22.9665 3.81496 19.185 0 14.5 0C9.81496 0 6 3.81496 6 8.5C6 13.185 9.81496 17 14.5 17C16.5079 17 18.3819 16.2972 19.8209 15.126C20.2289 14.717 20.2289 14.717 21.0256 13.9213ZM7.67323 8.5C7.67323 4.7185 10.7185 1.67323 14.5 1.67323C18.2815 1.67323 21.3268 4.7185 21.3268 8.5C21.3268 12.2815 18.2815 15.3268 14.5 15.3268C10.7185 15.3268 7.67323 12.248 7.67323 8.5Z" + fill="#333333" /> + <path + d="M13.2564 17.0414C11.6597 16.8372 10.0864 16.1466 8.76423 15H8.68966C3.89049 15 0 19.1129 0 24.1864V23.9793C0 24.543 0.432277 25 0.965517 25C1.49876 25 1.93103 24.543 1.93103 23.9793V24.1864C1.93103 20.2403 4.95697 17.0414 8.68966 17.0414H13.2564Z" + fill="#333333" /> + <path + d="M15.3566 17.0414H19.3103C23.043 17.0414 26.069 20.2403 26.069 24.1864V23.9793C26.069 24.543 26.5012 25 27.0345 25C27.5677 25 28 24.543 28 23.9793V24.1864C28 19.335 24.4427 15.3619 19.9351 15.0234C18.5996 16.1728 16.9994 16.8552 15.3566 17.0414Z" + fill="#333333" /> + </svg> + + <symbol id="computer" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <rect x="2.5" y="3" width="17" height="11" rx="0.5" stroke-width="2" fill="none" /> + <rect x="2" y="12" width="18" height="2" stroke="none" /> + <rect x="9" y="15" width="4" height="2" stroke="none" /> + <path + d="M7 17.382C7 17.1479 7.13226 16.9339 7.34164 16.8292L8.78885 16.1056C8.92771 16.0361 9.08082 16 9.23607 16H12.7639C12.9192 16 13.0723 16.0361 13.2111 16.1056L14.6584 16.8292C14.8677 16.9339 15 17.1479 15 17.382C15 17.7233 14.7233 18 14.382 18H7.61803C7.2767 18 7 17.7233 7 17.382Z" /> + </symbol> + + <symbol id="date" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <path d="M8 10H5V13H8V10Z" fill="#333333" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M6 2C5.44772 2 5 2.44772 5 3V4H3C2.44771 4 2 4.44772 2 5V19C2 19.5523 2.44771 20 3 20H19C19.5523 20 20 19.5523 20 19V5C20 4.44772 19.5523 4 19 4H17V3C17 2.44772 16.5523 2 16 2C15.4477 2 15 2.44772 15 3V4H7V3C7 2.44772 6.55228 2 6 2ZM4 9V18H18V9H4Z" + fill="#333333" /> + </symbol> + <symbol id="email" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M3.5 4H19.5C20.3284 4 21 4.67157 21 5.5V16.0714C21 16.8998 20.3284 17.5714 19.5 17.5714H3.5C2.67157 17.5714 2 16.8998 2 16.0714V5.5C2 4.67157 2.67157 4 3.5 4ZM2.91716 6.02444C3.04832 5.78143 3.35163 5.69075 3.59464 5.8219L11.2431 9.94966C11.5474 10.1138 11.9148 10.1093 12.2149 9.93753L19.3945 5.82797C19.6341 5.69079 19.9396 5.77387 20.0768 6.01353C20.214 6.25318 20.1309 6.55867 19.8913 6.69585L12.7116 10.8054C12.1116 11.1489 11.3767 11.1581 10.7682 10.8297L3.11971 6.70192C2.8767 6.57077 2.78602 6.26745 2.91716 6.02444Z" stroke="none" /> </symbol> - <symbol id="emailOutline" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="emailOutline" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect x="2.75" y="6.1875" width="16.5" height="11.6875" rx="3" stroke="#333333" stroke-width="1.5" /> <path d="M5 9L9.60865 11.9261C10.6326 12.5762 11.9472 12.5458 12.94 11.8492L17 9" stroke="#333333" stroke-width="1.5" stroke-linecap="round" /> </symbol> - <symbol id="passwordOutline" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="password" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M4.89603 10C4.40117 10 4.00001 10.4012 4.00001 10.896L4 18.2042C4 18.699 4.40116 19.1002 4.89602 19.1002H17.1043C17.5992 19.1002 18.0003 18.699 18.0003 18.2042L18.0003 10.896C18.0003 10.4012 17.5992 10 17.1043 10H4.89603ZM12.3442 13.4441C12.3442 13.9365 12.0794 14.367 11.6845 14.6011L12.3442 17.0002H9.65611L10.3158 14.6011C9.92088 14.367 9.65611 13.9365 9.65611 13.4441C9.65611 12.7018 10.2579 12.1 11.0001 12.1C11.7424 12.1 12.3442 12.7018 12.3442 13.4441Z" + stroke="none" /> + <path + d="M13.8017 10.0002V7.90011C13.8017 6.35368 12.5481 5.10005 11.0017 5.10005C9.45524 5.10005 8.20161 6.35368 8.20161 7.90011V10.0002H6.10156V7.90011C6.10156 5.19386 8.29542 3 11.0017 3C13.7079 3 15.9018 5.19385 15.9018 7.90011V10.0002H13.8017Z" + stroke="none" /> + </symbol> + + <symbol id="passwordOutline" width="22" height="22" viewBox="0 0 22 22" fill="none" + xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M4.89602 9C4.40116 9 4 9.40116 4 9.89602L4 18.604C4 19.0988 4.40116 19.5 4.89602 19.5H17.1043C17.5992 19.5 18.0003 19.0988 18.0003 18.604V9.89602C18.0003 9.40116 17.5992 9 17.1043 9H4.89602Z" stroke="#333333" stroke-width="1.5" /> @@ -133,6 +238,53 @@ fill="#333333" /> </symbol> + <symbol id="pass" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M1.55556 5C1.24873 5 1 5.24873 1 5.55556V14.4444C1 14.7513 1.24873 15 1.55556 15H20.4444C20.7513 15 21 14.7513 21 14.4444V5.55556C21 5.24873 20.7513 5 20.4444 5H1.55556ZM4.77222 8.76388C4.78333 8.77499 4.79722 8.78055 4.81389 8.78055H4.91667C4.93333 8.78055 4.94722 8.77499 4.95833 8.76388C4.96944 8.75277 4.97683 8.73888 4.98055 8.72221L5.03055 8.3861H5.43889L5.38889 8.72221C5.38705 8.73888 5.39167 8.75277 5.40278 8.76388C5.41389 8.77499 5.42778 8.78055 5.44444 8.78055H5.54722C5.56389 8.78055 5.57778 8.77499 5.58889 8.76388C5.6 8.75277 5.60739 8.73888 5.61111 8.72221L5.66111 8.3861H5.99444C6.01294 8.3861 6.02778 8.38055 6.03889 8.36943C6.05183 8.35832 6.05833 8.34349 6.05833 8.32499V8.23055C6.05833 8.21205 6.05183 8.19721 6.03889 8.1861C6.02778 8.17499 6.01294 8.16943 5.99444 8.16943H5.69444L5.76667 7.68055H6.06667C6.08517 7.68055 6.1 7.67499 6.11111 7.66388C6.12406 7.65277 6.13056 7.63793 6.13056 7.61943V7.52499C6.13056 7.50649 6.12406 7.49166 6.11111 7.48055C6.1 7.46943 6.08517 7.46388 6.06667 7.46388H5.79722L5.84722 7.12777C5.84905 7.1111 5.84444 7.09721 5.83333 7.0861C5.82222 7.07499 5.80833 7.06943 5.79167 7.06943H5.68889C5.67222 7.06943 5.65833 7.07499 5.64722 7.0861C5.63794 7.09721 5.6315 7.1111 5.62778 7.12777L5.57778 7.46388H5.16667L5.21667 7.12777C5.2185 7.1111 5.21389 7.09721 5.20278 7.0861C5.19167 7.07499 5.17778 7.06943 5.16111 7.06943H5.05833C5.04167 7.06943 5.02778 7.07499 5.01667 7.0861C5.00739 7.09721 5.00094 7.1111 4.99722 7.12777L4.94722 7.46388H4.60555C4.58705 7.46388 4.57222 7.46943 4.56111 7.48055C4.55 7.49166 4.54444 7.50649 4.54444 7.52499V7.61943C4.54444 7.63793 4.55 7.65277 4.56111 7.66388C4.57222 7.67499 4.58705 7.68055 4.60555 7.68055H4.91389L4.84167 8.16943H4.53333C4.51483 8.16943 4.5 8.17499 4.48889 8.1861C4.47778 8.19721 4.47222 8.21205 4.47222 8.23055V8.32499C4.47222 8.34349 4.47778 8.35832 4.48889 8.36943C4.5 8.38055 4.51483 8.3861 4.53333 8.3861H4.80833L4.75833 8.72221C4.7565 8.73888 4.76111 8.75277 4.77222 8.76388ZM6.34239 8.87221C6.3535 8.88332 6.3665 8.88888 6.38128 8.88888H6.52294C6.5415 8.88888 6.55628 8.88427 6.56739 8.87499C6.58039 8.86388 6.58872 8.85277 6.59239 8.84166L6.74517 8.44721H7.65628L7.80905 8.84166C7.81278 8.85277 7.82017 8.86388 7.83128 8.87499C7.84239 8.88427 7.85817 8.88888 7.8785 8.88888H8.02017C8.035 8.88888 8.04794 8.88332 8.05906 8.87221C8.07017 8.8611 8.07572 8.84816 8.07572 8.83332L8.07017 8.80277L7.38406 7.00555C7.36928 6.96482 7.33961 6.94443 7.29517 6.94443H7.10628C7.06183 6.94443 7.03222 6.96482 7.01739 7.00555L6.3285 8.80277C6.32667 8.80832 6.32572 8.81849 6.32572 8.83332C6.32572 8.84816 6.33128 8.8611 6.34239 8.87221ZM8.38939 8.87221C8.40239 8.88332 8.41811 8.88888 8.43661 8.88888H8.58383C8.60239 8.88888 8.61811 8.88332 8.63106 8.87221C8.64406 8.85927 8.6505 8.84349 8.6505 8.82499V8.13055H9.14217C9.35328 8.13055 9.51811 8.08054 9.63661 7.98054C9.757 7.87871 9.81717 7.73149 9.81717 7.53888C9.81717 7.34627 9.757 7.19904 9.63661 7.09721C9.51628 6.99538 9.35144 6.94443 9.14217 6.94443H8.43661C8.41811 6.94443 8.40239 6.95093 8.38939 6.96388C8.37828 6.97499 8.37272 6.99071 8.37272 7.0111V8.82499C8.37272 8.84349 8.37828 8.85927 8.38939 8.87221ZM10.5966 8.87221C10.6096 8.88332 10.6253 8.88888 10.6438 8.88888H10.7883C10.8068 8.88888 10.8226 8.88332 10.8355 8.87221C10.8485 8.85927 10.8549 8.84349 10.8549 8.82499V7.19166H11.3855C11.4041 7.19166 11.4198 7.1861 11.4327 7.17499C11.4457 7.16205 11.4522 7.14627 11.4522 7.12777V7.0111C11.4522 6.99071 11.4457 6.97499 11.4327 6.96388C11.4216 6.95093 11.4059 6.94443 11.3855 6.94443H10.0466C10.0281 6.94443 10.0124 6.95093 9.99939 6.96388C9.98828 6.97682 9.98272 6.9926 9.98272 7.0111V7.12777C9.98272 7.14627 9.98828 7.16205 9.99939 7.17499C10.0124 7.1861 10.0281 7.19166 10.0466 7.19166H10.5799V8.82499C10.5799 8.84349 10.5855 8.85927 10.5966 8.87221ZM11.7803 8.87221C11.7932 8.88332 11.8089 8.88888 11.8275 8.88888H11.9747C11.9932 8.88888 12.0081 8.88332 12.0192 8.87221C12.0321 8.85927 12.0386 8.84349 12.0386 8.82499V7.00832C12.0386 6.98982 12.0321 6.97499 12.0192 6.96388C12.0081 6.95093 11.9932 6.94443 11.9747 6.94443H11.8275C11.8089 6.94443 11.7932 6.95093 11.7803 6.96388C11.7692 6.97499 11.7636 6.98982 11.7636 7.00832V8.82499C11.7636 8.84349 11.7692 8.85927 11.7803 8.87221ZM12.6564 8.71666C12.7861 8.84999 12.975 8.91666 13.2231 8.91666C13.3879 8.91666 13.5278 8.88793 13.6426 8.83055C13.7574 8.77127 13.8444 8.69443 13.9037 8.59999C13.9629 8.50554 13.9953 8.40371 14.0009 8.29443C14.0028 8.27777 13.9972 8.26482 13.9842 8.25555C13.9731 8.24443 13.9592 8.23888 13.9426 8.23888H13.7898C13.7713 8.23888 13.7564 8.24349 13.7453 8.25277C13.7342 8.26204 13.7259 8.27871 13.7203 8.30277C13.6907 8.44166 13.6342 8.53982 13.5509 8.59721C13.4694 8.65277 13.3602 8.68055 13.2231 8.68055C12.9046 8.68055 12.7398 8.50371 12.7287 8.14999C12.7268 8.09627 12.7259 8.0176 12.7259 7.91388C12.7259 7.81016 12.7268 7.73332 12.7287 7.68332C12.7398 7.3296 12.9046 7.15277 13.2231 7.15277C13.3602 7.15277 13.4694 7.18149 13.5509 7.23888C13.6324 7.29443 13.6889 7.39166 13.7203 7.53055C13.7296 7.57316 13.7528 7.59443 13.7898 7.59443H13.9426C13.9574 7.59443 13.9703 7.58982 13.9814 7.58055C13.9944 7.56943 14.0009 7.55649 14.0009 7.54166V7.5361C13.9953 7.42871 13.9629 7.32777 13.9037 7.23332C13.8444 7.13888 13.7574 7.06293 13.6426 7.00555C13.5278 6.94627 13.3879 6.91666 13.2231 6.91666C12.9768 6.91666 12.7889 6.98427 12.6592 7.11943C12.5296 7.25277 12.4602 7.4361 12.4509 7.66943C12.4491 7.72127 12.4481 7.8046 12.4481 7.91943C12.4481 8.03238 12.4491 8.11388 12.4509 8.16388C12.4602 8.39904 12.5287 8.58332 12.6564 8.71666ZM4.25 11C4.11193 11 4 11.1119 4 11.25C4 11.3881 4.11193 11.5 4.25 11.5H12.7259C12.864 11.5 12.9759 11.3881 12.9759 11.25C12.9759 11.1119 12.864 11 12.7259 11H4.25ZM16.6144 11.9418H16.0068C16.0133 12.1185 16.0594 12.249 16.1451 12.3333C16.2321 12.4177 16.3749 12.4598 16.5735 12.4598C16.702 12.4598 16.8163 12.4398 16.9163 12.3996L17 12.9398C16.8273 12.9799 16.6566 13 16.4878 13C16.1373 13 15.8575 12.9063 15.6485 12.7189C15.4408 12.5315 15.3317 12.2724 15.3213 11.9418H15V11.6205H15.3213V11.3755H15V11.0562H15.3272C15.3518 10.7242 15.4726 10.4652 15.6894 10.2791C15.9062 10.093 16.1925 10 16.5482 10C16.6858 10 16.8364 10.0207 17 10.0622L16.9163 10.6044C16.815 10.5629 16.7066 10.5422 16.591 10.5422C16.4119 10.5422 16.2749 10.5843 16.1801 10.6687C16.0854 10.7517 16.0295 10.8809 16.0127 11.0562H16.6144V11.3755H16.0068V11.6205H16.6144V11.9418ZM9.12828 7.89721C9.2635 7.89721 9.36533 7.86666 9.43383 7.80554C9.50422 7.74443 9.53939 7.65554 9.53939 7.53888C9.53939 7.42221 9.50517 7.33332 9.43661 7.27221C9.36811 7.20927 9.26533 7.17777 9.12828 7.17777H8.64772V7.89721H9.12828ZM7.20072 7.22221L7.57572 8.20832H6.82572L7.20072 7.22221ZM5.54444 7.68055L5.47222 8.16943H5.06389L5.13611 7.68055H5.54444ZM19.75 6C19.6119 6 19.5 6.11193 19.5 6.25V6.75C19.5 6.88807 19.6119 7 19.75 7C19.8881 7 20 6.88807 20 6.75V6.25C20 6.11193 19.8881 6 19.75 6ZM19.5 8.25C19.5 8.11193 19.6119 8 19.75 8C19.8881 8 20 8.11193 20 8.25V10.75C20 10.8881 19.8881 11 19.75 11C19.6119 11 19.5 10.8881 19.5 10.75V8.25ZM19.75 12C19.6119 12 19.5 12.1119 19.5 12.25V13.75C19.5 13.8881 19.6119 14 19.75 14C19.8881 14 20 13.8881 20 13.75V12.25C20 12.1119 19.8881 12 19.75 12Z" + fill="#333333" /> + </symbol> + + <symbol id="scan" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <rect x="3" y="1" width="4" height="1" stroke="none" /> + <rect x="3" y="20" width="4" height="1" stroke="none" /> + <rect x="3" y="21" width="4" height="1" transform="rotate(-90 3 21)" stroke="none" /> + <rect x="3" y="5" width="4" height="1" transform="rotate(-90 3 5)" stroke="none" /> + <rect x="18" y="5" width="4" height="1" transform="rotate(-90 18 5)" stroke="none" /> + <rect x="18" y="21" width="4" height="1" transform="rotate(-90 18 21)" stroke="none" /> + <rect x="15" y="1" width="4" height="1" stroke="none" /> + <rect x="15" y="20" width="4" height="1" stroke="none" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M6 5C6 4.44772 6.44772 4 7 4H13V6C13 6.55228 13.4477 7 14 7H16V17C16 17.5523 15.5523 18 15 18H7C6.44772 18 6 17.5523 6 17V5ZM8.5 8C8.22386 8 8 8.22386 8 8.5C8 8.77614 8.22386 9 8.5 9H11.5C11.7761 9 12 8.77614 12 8.5C12 8.22386 11.7761 8 11.5 8H8.5ZM8 11.5C8 11.2239 8.22386 11 8.5 11H13.5C13.7761 11 14 11.2239 14 11.5C14 11.7761 13.7761 12 13.5 12H8.5C8.22386 12 8 11.7761 8 11.5ZM8.5 14C8.22386 14 8 14.2239 8 14.5C8 14.7761 8.22386 15 8.5 15H13.5C13.7761 15 14 14.7761 14 14.5C14 14.2239 13.7761 14 13.5 14H8.5Z" + stroke="none" /> + </symbol> + + <symbol id="network" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> + <g clip-path="url(#clip0)"> + <circle cx="11" cy="11" r="2.5" stroke="#333333" /> + <circle cx="11" cy="3.43506" r="1.5" stroke="#333333" /> + <path d="M11 4.93506V8.93506" stroke="#333333" /> + <circle r="1.5" transform="matrix(1 0 0 -1 11 18.4351)" stroke="#333333" /> + <path d="M11 16.9351V12.9351" stroke="#333333" /> + <circle cx="18.5" cy="10.9351" r="1.5" transform="rotate(90 18.5 10.9351)" stroke="#333333" /> + <path d="M17 10.9351L13 10.9351" stroke="#333333" /> + <circle r="1.5" transform="matrix(4.37114e-08 1 1 -4.37114e-08 3.5 10.9351)" stroke="#333333" /> + <path d="M5 10.9351L9 10.9351" stroke="#333333" /> + <circle cx="16.3047" cy="5.63171" r="1.5" transform="rotate(45 16.3047 5.63171)" stroke="#333333" /> + <path d="M15.2422 6.69238L12.4138 9.52081" stroke="#333333" /> + <circle r="1.5" transform="matrix(0.707107 0.707107 0.707107 -0.707107 5.69561 16.2383)" stroke="#333333" /> + <path d="M6.75781 15.1777L9.58624 12.3492" stroke="#333333" /> + <circle cx="16.3044" cy="16.2383" r="1.5" transform="rotate(135 16.3044 16.2383)" stroke="#333333" /> + <path d="M15.2422 15.1777L12.4138 12.3492" stroke="#333333" /> + <circle r="1.5" transform="matrix(-0.707107 0.707107 0.707107 0.707107 5.69531 5.63171)" stroke="#333333" /> + <path d="M6.75781 6.69238L9.58624 9.52081" stroke="#333333" /> + </g> + <defs> + <clipPath id="clip0"> + <rect width="22" height="22" fill="white" /> + </clipPath> + </defs> + </symbol> + <symbol id="facebook" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect width="30" height="30" rx="15" fill="#F4F4F4" /> <path fill-rule="evenodd" clip-rule="evenodd" @@ -167,6 +319,24 @@ fill="#696969" /> </symbol> + <symbol id="public" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <path + d="M13.0474 10.437C14.2168 9.73893 15 8.46093 15 7C15 4.79086 13.2091 3 11 3C8.79086 3 7 4.79086 7 7C7 8.46093 7.7832 9.73893 8.95263 10.437C7.21207 11.2192 6 12.9681 6 15V18H16V15C16 12.9681 14.7879 11.2192 13.0474 10.437Z" + fill="#333333" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M16.917 14H21V11.8C21 10.3099 20.1516 9.02743 18.9332 8.45382C19.7518 7.94188 20.3 7.00468 20.3 5.93333C20.3 4.3133 19.0464 3 17.5 3C16.542 3 15.6963 3.50407 15.1915 4.27286C15.7028 5.05718 16 5.99389 16 7C16 7.44599 15.9416 7.87827 15.832 8.28963C15.9075 8.34834 15.9858 8.40316 16.0668 8.45382C15.9493 8.50916 15.8352 8.57108 15.725 8.63916C15.5088 9.26223 15.173 9.82915 14.7453 10.3124C15.8722 11.214 16.6677 12.514 16.917 14ZM14.9929 7.24086C14.9976 7.16118 15 7.08087 15 7C15 6.48461 14.9025 5.99199 14.725 5.53957C14.7085 5.66836 14.7 5.79981 14.7 5.93333C14.7 6.40316 14.8054 6.84718 14.9929 7.24086ZM15.9 14H14V11.8C14 11.5447 14.0249 11.2955 14.0723 11.055C14.9949 11.7745 15.6585 12.8106 15.9 14Z" + fill="#333333" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M6.80852 4.27286C6.30371 3.50407 5.45804 3 4.5 3C2.9536 3 1.7 4.3133 1.7 5.93333C1.7 7.00468 2.24824 7.94188 3.06684 8.45382C1.84845 9.02743 1 10.3099 1 11.8V14H5.08296C5.33228 12.514 6.12778 11.214 7.25473 10.3124C6.82705 9.82915 6.49117 9.26223 6.27499 8.63916C6.16478 8.57108 6.05069 8.50916 5.93316 8.45382C6.01417 8.40316 6.09253 8.34834 6.16797 8.28963C6.05843 7.87827 6 7.44599 6 7C6 5.99389 6.29717 5.05718 6.80852 4.27286ZM7.9277 11.055C7.0051 11.7745 6.34145 12.8106 6.10002 14H8V11.8C8 11.5447 7.9751 11.2955 7.9277 11.055ZM7.27499 5.53957C7.29148 5.66836 7.3 5.79981 7.3 5.93333C7.3 6.40316 7.19457 6.84718 7.00713 7.24086C7.0024 7.16118 7 7.08087 7 7C7 6.48461 7.09747 5.99199 7.27499 5.53957Z" + fill="#333333" /> + </symbol> + + <symbol id="structure" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M11 3C11.2228 3.00746 11.4372 3.08448 11.612 3.21953L11.6211 3.21857L11.6971 3.28918L18.6775 9.0457C18.6952 9.06031 18.7119 9.07606 18.7275 9.09284C18.8592 9.23463 18.9477 9.40976 18.983 9.59841C19.0181 9.78692 18.9987 9.9816 18.9268 10.1599C18.8549 10.3383 18.7333 10.4933 18.5761 10.6073C18.4187 10.7214 18.232 10.7899 18.037 10.8052C18.0232 10.8063 18.0092 10.8068 17.9953 10.8068H17.2786L17.3466 17.9693L17.3466 17.974C17.3466 18.246 17.2364 18.5068 17.0402 18.6991C16.844 18.8913 16.5779 18.9994 16.3003 18.9994H13.1615C12.884 18.9994 12.6178 18.8913 12.4216 18.6991C12.2254 18.5068 12.1152 18.246 12.1152 17.974V14.493C12.1152 14.4908 12.1152 14.4886 12.1152 14.4864C12.1152 14.4837 12.1153 14.481 12.1154 14.4783C12.1389 13.6731 12.0857 13.088 11.9055 12.7135C11.8228 12.5416 11.7197 12.4288 11.5913 12.3537C11.4661 12.2806 11.2814 12.2228 11 12.2171V12.2177C10.7186 12.2234 10.5339 12.2812 10.4087 12.3543C10.2803 12.4294 10.1772 12.5422 10.0945 12.7141C9.91426 13.0886 9.86107 13.6737 9.88462 14.4789C9.88469 14.4815 9.88475 14.4841 9.88478 14.4867C9.88481 14.489 9.88483 14.4913 9.88483 14.4936V17.9746C9.88483 18.2466 9.77456 18.5074 9.57838 18.6997C9.38219 18.8919 9.11604 19 8.83854 19H5.69966C5.42215 19 5.156 18.8919 4.95982 18.6997C4.76364 18.5074 4.65336 18.2466 4.65336 17.9746L4.65339 17.9699L4.72135 10.8074H4.00466C3.99075 10.8074 3.97684 10.8069 3.96298 10.8058C3.76805 10.7905 3.58128 10.722 3.42389 10.6079C3.26667 10.4939 3.14509 10.3389 3.07317 10.1605C3.0013 9.9822 2.98192 9.78752 3.01705 9.599C3.0523 9.41035 3.14082 9.23522 3.27253 9.09344C3.28812 9.07666 3.30483 9.06091 3.32255 9.04629L10.3029 3.28978L10.3789 3.21917L10.388 3.22013C10.5628 3.08508 10.7772 3.00806 11 3.0006V3Z" + fill="#333333" /> + </symbol> + <symbol id="tel" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> <path d="M14.4979 12.1969L11.9719 14.7228L6.92 9.67091L9.44596 7.14494C9.74589 6.84502 9.74589 6.35946 9.44596 6.0603L5.61061 2.22494C5.31068 1.92502 4.82512 1.92502 4.52597 2.22494L2 4.75091C2 13.2401 8.40121 19.6428 16.8919 19.6428L19.4179 17.1169C19.7178 16.8169 19.7178 16.3314 19.4179 16.0322L15.5825 12.1969C15.2834 11.8977 14.7971 11.8977 14.4979 12.1969Z" @@ -224,7 +394,8 @@ <rect x="21.25" y="16.25" width="0.5" height="3" fill="#333333" /> </symbol> - <symbol id="modifyStructure" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="modifyStructure" width="32" height="32" viewBox="0 0 32 32" fill="none" + xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6712_5383)"> <path d="M6.34589 21.7013L5.48826 26.3588C5.48826 26.7088 5.76325 26.9837 6.11324 26.9837L10.7707 26.1261C10.9332 26.1261 11.0957 26.0636 11.2082 25.9386L24.361 12.7984L19.6737 8.11108L6.53339 21.2513C6.40839 21.3763 6.34589 21.5263 6.34589 21.7013Z" @@ -260,6 +431,12 @@ stroke-linejoin="round" /> </symbol> + <symbol id="services" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"> + <path + d="M26.1416 18.2344C26.3994 18.349 26.4854 18.5495 26.3994 18.8359C25.9124 20.3542 25.1247 21.7005 24.0361 22.875C23.8643 23.0755 23.6637 23.1185 23.4346 23.0039L21.5869 21.9297C20.8135 22.5885 19.9398 23.0898 18.9658 23.4336V25.5391C18.9658 25.8255 18.8369 25.9974 18.5791 26.0547C17.0036 26.3984 15.4424 26.3984 13.8955 26.0547C13.609 25.9974 13.4658 25.8255 13.4658 25.5391V23.4336C12.4919 23.0898 11.6182 22.5885 10.8447 21.9297L9.04004 23.0039C8.78223 23.1185 8.56738 23.0755 8.39551 22.875C7.30697 21.7005 6.51921 20.3542 6.03223 18.8359C5.94629 18.5781 6.03223 18.3776 6.29004 18.2344L8.09473 17.1602C8.00879 16.6732 7.96582 16.1719 7.96582 15.6562C7.96582 15.1406 8.00879 14.6393 8.09473 14.1523L6.29004 13.0781C6.03223 12.9635 5.94629 12.763 6.03223 12.4766C6.51921 10.9583 7.30697 9.61198 8.39551 8.4375C8.56738 8.23698 8.78223 8.20833 9.04004 8.35156L10.8447 9.38281C11.6182 8.72396 12.4919 8.22266 13.4658 7.87891V5.77344C13.4658 5.48698 13.5947 5.3151 13.8525 5.25781C15.4281 4.91406 17.0036 4.91406 18.5791 5.25781C18.8369 5.3151 18.9658 5.48698 18.9658 5.77344V7.87891C19.9398 8.22266 20.8135 8.72396 21.5869 9.38281L23.3916 8.30859C23.6494 8.19401 23.8643 8.23698 24.0361 8.4375C25.1247 9.61198 25.9124 10.9583 26.3994 12.4766C26.4854 12.763 26.3994 12.9635 26.1416 13.0781L24.3369 14.1523C24.5088 15.1549 24.5088 16.1576 24.3369 17.1602L26.1416 18.2344ZM13.7666 18.1055C14.4541 18.7643 15.2705 19.0938 16.2158 19.0938C17.1611 19.0938 17.9632 18.7643 18.6221 18.1055C19.3096 17.418 19.6533 16.6016 19.6533 15.6562C19.6533 14.7109 19.3096 13.9089 18.6221 13.25C17.9632 12.5625 17.1611 12.2188 16.2158 12.2188C15.2705 12.2188 14.4541 12.5625 13.7666 13.25C13.1077 13.9089 12.7783 14.7109 12.7783 15.6562C12.7783 16.6016 13.1077 17.418 13.7666 18.1055Z" + fill="black" /> + </symbol> + <symbol id="print" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"> <rect x="10" y="8" width="12" height="5" stroke-width="2" fill="none" /> <rect x="10" y="17" width="12" height="8" stroke-width="2" fill="none" /> @@ -273,6 +450,36 @@ <rect x="9" y="21" width="14" height="1.5" rx="0.75" fill="#333333" /> </symbol> + <symbol id="news-location" viewBox="0 0 29 31" xmlns="http://www.w3.org/2000/svg"> + <path d="M13.8789 7.40777L13.8789 1.18555" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M13.3789 3.44639V1.86578C13.3665 1.85795 13.3533 1.84995 13.3392 1.84189C13.2087 1.76732 13.0017 1.68555 12.7122 1.68555C12.4228 1.68555 12.2158 1.76732 12.0853 1.84189C12.0712 1.84995 12.058 1.85795 12.0456 1.86578V3.44639C12.2373 3.38974 12.4598 3.35221 12.7122 3.35221C12.9647 3.35221 13.1872 3.38974 13.3789 3.44639Z" /> + <path + d="M11.0469 2.81338V4.39398C11.0345 4.40181 11.0212 4.40981 11.0071 4.41787C10.8766 4.49245 10.6696 4.57422 10.3802 4.57422C10.0908 4.57422 9.88378 4.49245 9.75328 4.41787C9.73917 4.40981 9.72592 4.40181 9.71354 4.39398V2.81338C9.90529 2.87003 10.1278 2.90755 10.3802 2.90755C10.6326 2.90755 10.8551 2.87003 11.0469 2.81338Z" /> + <path d="M4.34813 13.1299L14.2096 7.21298L24.0711 13.1299H4.34813Z" /> + <path + d="M3.04297 14.1299H25.3763V14.1854C25.3763 14.4616 25.1524 14.6854 24.8763 14.6854H3.54297C3.26683 14.6854 3.04297 14.4616 3.04297 14.1854V14.1299Z" + stroke-width="0.777778" /> + <path d="M3.04297 27.3521H25.3763V27.9076H3.04297V27.3521Z" stroke-width="0.777778" /> + <path d="M0.710938 29.6855H27.7109V30.2411H0.710938V29.6855Z" stroke-width="0.777778" /> + <rect x="5.37891" y="16.4634" width="1.33333" height="9.11111" /> + <rect x="10.8203" y="16.4634" width="1.33333" height="9.11111" /> + <rect x="16.2656" y="16.4634" width="1.33333" height="9.11111" /> + <rect x="21.7109" y="16.4634" width="1.33333" height="9.11111" /> + </symbol> + + <symbol id="news-public" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"> + <path + d="M23.5985 23.9446C24.6326 23.3273 25.3251 22.1973 25.3251 20.9055C25.3251 18.9522 23.7416 17.3687 21.7882 17.3687C19.8349 17.3687 18.2514 18.9522 18.2514 20.9055C18.2514 22.1973 18.9439 23.3273 19.9779 23.9446C18.4389 24.6362 17.3672 26.1825 17.3672 27.9792V29.5265H26.2093V27.9792C26.2093 26.1825 25.1376 24.6362 23.5985 23.9446Z" + stroke="none" /> + <path + d="M11.4423 23.9446C12.4763 23.3273 13.1688 22.1973 13.1688 20.9055C13.1688 18.9522 11.5853 17.3687 9.63199 17.3687C7.67865 17.3687 6.09515 18.9522 6.09515 20.9055C6.09515 22.1973 6.78766 23.3273 7.82169 23.9446C6.28266 24.6362 5.21094 26.1825 5.21094 27.9792V29.5265H14.053V27.9792C14.053 26.1825 12.9813 24.6362 11.4423 23.9446Z" + stroke="none" /> + <path + d="M16.9696 9.5759C18.0037 8.95863 18.6962 7.82861 18.6962 6.53684C18.6962 4.5835 17.1127 3 15.1593 3C13.206 3 11.6225 4.5835 11.6225 6.53684C11.6225 7.82861 12.315 8.95863 13.349 9.5759C11.81 10.2675 10.7383 11.8139 10.7383 13.6105V15.1579H19.5804V13.6105C19.5804 11.8139 18.5087 10.2675 16.9696 9.5759Z" + stroke="none" /> + </symbol> + <symbol id="news-header" viewBox="0 0 89 88" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M63.5 72H27.0391C29.1476 70.3259 30.5 67.7505 30.5 64.8571V17H70.5V65C70.5 68.866 67.3659 72 63.5 72Z" stroke="#828282" stroke-width="2" /> @@ -287,6 +494,27 @@ <rect x="34.5" y="24" width="32" height="20" rx="2" fill="#BDBDBD" /> </symbol> + + + <symbol id="calendar" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <path d="M8 10H5V13H8V10Z" fill="#333333" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M6 2C5.44772 2 5 2.44772 5 3V4H3C2.44772 4 2 4.44772 2 5V19C2 19.5523 2.44772 20 3 20H19C19.5523 20 20 19.5523 20 19V5C20 4.44772 19.5523 4 19 4H17V3C17 2.44772 16.5523 2 16 2C15.4477 2 15 2.44772 15 3V4H7V3C7 2.44772 6.55229 2 6 2ZM4 9V18H18V9H4Z" + fill="#333333" /> + </symbol> + + <symbol id="group" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <path + d="M13.0474 10.437C14.2168 9.73893 15 8.46093 15 7C15 4.79086 13.2091 3 11 3C8.79086 3 7 4.79086 7 7C7 8.46093 7.7832 9.73893 8.95263 10.437C7.21207 11.2192 6 12.9681 6 15V18H16V15C16 12.9681 14.7879 11.2192 13.0474 10.437Z" + fill="#333333" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M16.917 14H21V11.8C21 10.3099 20.1516 9.02743 18.9332 8.45382C19.7518 7.94188 20.3 7.00468 20.3 5.93333C20.3 4.3133 19.0464 3 17.5 3C16.542 3 15.6963 3.50407 15.1915 4.27286C15.7028 5.05718 16 5.99389 16 7C16 7.44599 15.9416 7.87827 15.832 8.28963C15.9075 8.34834 15.9858 8.40316 16.0668 8.45382C15.9493 8.50916 15.8352 8.57108 15.725 8.63916C15.5088 9.26223 15.173 9.82915 14.7453 10.3124C15.8722 11.214 16.6677 12.514 16.917 14ZM14.9929 7.24086C14.9976 7.16118 15 7.08087 15 7C15 6.48461 14.9025 5.99199 14.725 5.53957C14.7085 5.66836 14.7 5.79981 14.7 5.93333C14.7 6.40316 14.8054 6.84718 14.9929 7.24086ZM15.9 14H14V11.8C14 11.5447 14.0249 11.2955 14.0723 11.055C14.9949 11.7745 15.6585 12.8106 15.9 14Z" + fill="#333333" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M6.80852 4.27286C6.30371 3.50407 5.45804 3 4.5 3C2.9536 3 1.7 4.3133 1.7 5.93333C1.7 7.00468 2.24824 7.94188 3.06684 8.45382C1.84845 9.02743 1 10.3099 1 11.8V14H5.08296C5.33228 12.514 6.12778 11.214 7.25473 10.3124C6.82705 9.82915 6.49117 9.26223 6.27499 8.63916C6.16478 8.57108 6.05069 8.50916 5.93316 8.45382C6.01417 8.40316 6.09253 8.34834 6.16797 8.28963C6.05843 7.87827 6 7.44599 6 7C6 5.99389 6.29717 5.05718 6.80852 4.27286ZM7.9277 11.055C7.0051 11.7745 6.34145 12.8106 6.10002 14H8V11.8C8 11.5447 7.9751 11.2955 7.9277 11.055ZM7.27499 5.53957C7.29148 5.66836 7.3 5.79981 7.3 5.93333C7.3 6.40316 7.19457 6.84718 7.00713 7.24086C7.0024 7.16118 7 7.08087 7 7C7 6.48461 7.09747 5.99199 7.27499 5.53957Z" + fill="#333333" /> + </symbol> + <symbol id="mdm" viewBox="0 0 19 24" xmlns="http://www.w3.org/2000/svg"> <mask id="path-1-outside-1" maskUnits="userSpaceOnUse" x="0" y="-0.108661" width="19" height="24" fill="black"> <rect fill="white" y="-0.108661" width="19" height="24" /> @@ -301,6 +529,14 @@ stroke="none" /> </symbol> + <symbol id="mdm" viewBox="0 0 18 24" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M0 23.1087V7.95171C0 6.54134 0.84652 5.26877 2.1473 4.72368L3.5337 4.14271C3.83675 4.01572 4.11179 3.83024 4.34309 3.59687L7.17458 0.740107C8.17647 -0.270723 9.81889 -0.242424 10.7854 0.802322L13.3026 3.52342C13.5613 3.80309 13.8805 4.01994 14.2359 4.15738L15.7627 4.74798C17.1111 5.26956 18 6.56652 18 8.01228V23.1087H10V18.1087C10 17.5564 9.55229 17.1087 9 17.1087C8.44772 17.1087 8 17.5564 8 18.1087V23.1087H0ZM10.5 22.6087V18.1087C10.5 17.2802 9.82843 16.6087 9 16.6087C8.17157 16.6087 7.5 17.2802 7.5 18.1087V22.6087H0.5V7.95171C0.5 6.74282 1.22559 5.65205 2.34054 5.18483L3.72694 4.60386C4.0906 4.45147 4.42065 4.22889 4.69821 3.94885L7.5297 1.09209C8.33121 0.283422 9.64515 0.306061 10.4183 1.14186L12.9355 3.86296C13.246 4.19857 13.6291 4.45878 14.0555 4.62371L15.5823 5.21431C16.7381 5.66137 17.5 6.77306 17.5 8.01228V22.6087H10.5Z" + fill="white" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M2.34054 5.18483C1.22559 5.65205 0.5 6.74282 0.5 7.95171V22.6087L7.5 22.6087V18.1087C7.5 17.2802 8.17157 16.6087 9 16.6087C9.82843 16.6087 10.5 17.2802 10.5 18.1087V22.6087L17.5 22.6087V8.01228C17.5 6.77306 16.7381 5.66137 15.5823 5.21431L14.0555 4.62371C13.6291 4.45877 13.246 4.19856 12.9355 3.86296L10.4183 1.14186C9.64515 0.306061 8.33121 0.283422 7.5297 1.09209L4.69821 3.94885C4.42065 4.22889 4.0906 4.45147 3.72694 4.60386L2.34054 5.18483ZM10.5 4.10866C10.5 4.93709 9.82843 5.60866 9 5.60866C8.17157 5.60866 7.5 4.93709 7.5 4.10866C7.5 3.28023 8.17157 2.60866 9 2.60866C9.82843 2.60866 10.5 3.28023 10.5 4.10866ZM3.75 15.544C3.04057 15.6631 2.5 16.2801 2.5 17.0233V18.3587H3.75V15.544ZM2.5 21.5233V18.8587H3.75V21.5233H2.5ZM4.25 21.5233V18.8587H5.5V21.5233H4.25ZM5.5 17.0233V18.3587H4.25V15.544C4.95943 15.6631 5.5 16.2801 5.5 17.0233ZM12.5 17.0233C12.5 16.2801 13.0406 15.6631 13.75 15.544V18.3587H12.5V17.0233ZM12.5 18.8587V21.5233H13.75V18.8587H12.5ZM14.25 18.8587V21.5233H15.5V18.8587H14.25ZM15.5 18.3587V17.0233C15.5 16.2801 14.9594 15.6631 14.25 15.544V18.3587H15.5ZM13.75 7.60866C13.0406 7.72768 12.5 8.34467 12.5 9.08792V10.4233H13.75V7.60866ZM12.5 13.5879V10.9233H13.75V13.5879H12.5ZM14.25 13.5879V10.9233H15.5V13.5879H14.25ZM15.5 9.08792V10.4233H14.25V7.60866C14.9594 7.72768 15.5 8.34467 15.5 9.08792ZM7.5 9.08792C7.5 8.34467 8.04057 7.72768 8.75 7.60866V10.4233H7.5V9.08792ZM7.5 10.9233V13.5879H8.75V10.9233H7.5ZM9.25 10.9233V13.5879H10.5V10.9233H9.25ZM10.5 10.4233V9.08792C10.5 8.34467 9.95943 7.72768 9.25 7.60866V10.4233H10.5ZM3.75 7.60866C3.04057 7.72768 2.5 8.34467 2.5 9.08792V10.4233H3.75V7.60866ZM2.5 13.5879V10.9233H3.75V13.5879H2.5ZM4.25 13.5879V10.9233H5.5V13.5879H4.25ZM5.5 9.08792V10.4233H4.25V7.60866C4.95943 7.72768 5.5 8.34467 5.5 9.08792Z" /> + </symbol> + <symbol id="mdmActive" viewBox="0 0 18 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0 23.1087V7.95171C0 6.54134 0.84652 5.26877 2.1473 4.72368L3.5337 4.14271C3.83675 4.01572 4.11179 3.83024 4.34309 3.59687L7.17458 0.740107C8.17647 -0.270723 9.81889 -0.242424 10.7854 0.802322L13.3026 3.52342C13.5613 3.80309 13.8805 4.01994 14.2359 4.15738L15.7627 4.74798C17.1111 5.26956 18 6.56652 18 8.01228V23.1087H10V18.1087C10 17.5564 9.55229 17.1087 9 17.1087C8.44772 17.1087 8 17.5564 8 18.1087V23.1087H0ZM10.5 22.6087V18.1087C10.5 17.2802 9.82843 16.6087 9 16.6087C8.17157 16.6087 7.5 17.2802 7.5 18.1087V22.6087H0.5V7.95171C0.5 6.74282 1.22559 5.65205 2.34054 5.18483L3.72694 4.60386C4.0906 4.45147 4.42065 4.22889 4.69821 3.94885L7.5297 1.09209C8.33121 0.283422 9.64515 0.306061 10.4183 1.14186L12.9355 3.86296C13.246 4.19857 13.6291 4.45878 14.0555 4.62371L15.5823 5.21431C16.7381 5.66137 17.5 6.77306 17.5 8.01228V22.6087H10.5Z" @@ -310,7 +546,14 @@ fill="#ED3939" /> </symbol> - + <symbol id="mdmHover" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M15 35.1087V19.9517C15 18.5413 15.8465 17.2688 17.1473 16.7237L18.5337 16.1427C18.8367 16.0157 19.1118 15.8302 19.3431 15.5969L22.1746 12.7401C23.1765 11.7293 24.8189 11.7576 25.7854 12.8023L28.3026 15.5234C28.5613 15.8031 28.8805 16.0199 29.2359 16.1574L30.7627 16.748C32.1111 17.2696 33 18.5665 33 20.0123V35.1087H25V30.1087C25 29.5564 24.5523 29.1087 24 29.1087C23.4477 29.1087 23 29.5564 23 30.1087V35.1087H15ZM25.5 34.6087V30.1087C25.5 29.2802 24.8284 28.6087 24 28.6087C23.1716 28.6087 22.5 29.2802 22.5 30.1087V34.6087H15.5V19.9517C15.5 18.7428 16.2256 17.652 17.3405 17.1848L18.7269 16.6039C19.0906 16.4515 19.4206 16.2289 19.6982 15.9488L22.5297 13.0921C23.3312 12.2834 24.6451 12.3061 25.4183 13.1419L27.9355 15.863C28.246 16.1986 28.6291 16.4588 29.0555 16.6237L30.5823 17.2143C31.7381 17.6614 32.5 18.7731 32.5 20.0123V34.6087H25.5Z" + fill="white" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M17.3405 17.1848C16.2256 17.652 15.5 18.7428 15.5 19.9517V34.6087L22.5 34.6087V30.1087C22.5 29.2802 23.1716 28.6087 24 28.6087C24.8284 28.6087 25.5 29.2802 25.5 30.1087V34.6087L32.5 34.6087V20.0123C32.5 18.7731 31.7381 17.6614 30.5823 17.2143L29.0555 16.6237C28.6291 16.4588 28.246 16.1986 27.9355 15.863L25.4183 13.1419C24.6451 12.3061 23.3312 12.2834 22.5297 13.0921L19.6982 15.9488C19.4206 16.2289 19.0906 16.4515 18.7269 16.6039L17.3405 17.1848ZM25.5 16.1087C25.5 16.9371 24.8284 17.6087 24 17.6087C23.1716 17.6087 22.5 16.9371 22.5 16.1087C22.5 15.2802 23.1716 14.6087 24 14.6087C24.8284 14.6087 25.5 15.2802 25.5 16.1087ZM18.75 27.544C18.0406 27.6631 17.5 28.2801 17.5 29.0233V30.3587H18.75V27.544ZM17.5 33.5233V30.8587H18.75V33.5233H17.5ZM19.25 33.5233V30.8587H20.5V33.5233H19.25ZM20.5 29.0233V30.3587H19.25V27.544C19.9594 27.6631 20.5 28.2801 20.5 29.0233ZM27.5 29.0233C27.5 28.2801 28.0406 27.6631 28.75 27.544V30.3587H27.5V29.0233ZM27.5 30.8587V33.5233H28.75V30.8587H27.5ZM29.25 30.8587V33.5233H30.5V30.8587H29.25ZM30.5 30.3587V29.0233C30.5 28.2801 29.9594 27.6631 29.25 27.544V30.3587H30.5ZM28.75 19.6087C28.0406 19.7277 27.5 20.3447 27.5 21.0879V22.4233H28.75V19.6087ZM27.5 25.5879V22.9233H28.75V25.5879H27.5ZM29.25 25.5879V22.9233H30.5V25.5879H29.25ZM30.5 21.0879V22.4233H29.25V19.6087C29.9594 19.7277 30.5 20.3447 30.5 21.0879ZM22.5 21.0879C22.5 20.3447 23.0406 19.7277 23.75 19.6087V22.4233H22.5V21.0879ZM22.5 22.9233V25.5879H23.75V22.9233H22.5ZM24.25 22.9233V25.5879H25.5V22.9233H24.25ZM25.5 22.4233V21.0879C25.5 20.3447 24.9594 19.7277 24.25 19.6087V22.4233H25.5ZM18.75 19.6087C18.0406 19.7277 17.5 20.3447 17.5 21.0879V22.4233H18.75V19.6087ZM17.5 25.5879V22.9233H18.75V25.5879H17.5ZM19.25 25.5879V22.9233H20.5V25.5879H19.25ZM20.5 21.0879V22.4233H19.25V19.6087C19.9594 19.7277 20.5 20.3447 20.5 21.0879Z" + fill="#BD9E6A" /> + </symbol> <symbol id="user-location" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg"> <circle cx="17" cy="17" r="16.5" fill="#ED3939" fill-opacity="0.15" stroke="white" /> @@ -371,25 +614,91 @@ fill="#010176" /> </symbol> + <symbol id="borne" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <rect x="5" width="12" height="9" rx="1" stroke-width="1.9" fill="none" /> + <path d="M6 14H16L14.6364 22H7.36364L6 14Z" /> + <path + d="M5.04692 10.1658C5.12212 10.0617 5.24275 10 5.37119 10H16.6288C16.7573 10 16.8779 10.0617 16.9531 10.1658L18.542 12.3658C18.733 12.6303 18.544 13 18.2177 13H3.7823C3.45599 13 3.26698 12.6303 3.45803 12.3658L5.04692 10.1658Z" + stroke="none" /> + </symbol> + + <symbol id="wifi" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <path + d="M1.08488 8.63175C3.61838 6.09825 7.11838 4.53125 10.9844 4.53125C14.8504 4.53125 18.3504 6.09825 20.8839 8.63175L19.4697 10.046C17.2981 7.87439 14.2981 6.53125 10.9844 6.53125C7.67066 6.53125 4.67066 7.8744 2.49909 10.046L1.08488 8.63175Z" + stroke="none" /> + <path + d="M1.20434 28.5488C3.72784 31.0128 7.17878 32.5312 10.9844 32.5312C14.7486 32.5312 18.1658 31.0457 20.6818 28.6288C20.0912 29.196 19.4494 29.7127 18.7624 30.1718C16.4601 31.7102 13.7533 32.5312 10.9844 32.5312C8.21543 32.5312 5.50867 31.7102 3.20639 30.1718C2.48717 29.6913 1.81751 29.1474 1.20434 28.5488Z" + stroke="none" /> + <path + d="M18.0554 11.4602C16.2458 9.65054 13.7458 8.53125 10.9844 8.53125C8.22295 8.53125 5.72295 9.65054 3.91331 11.4602L5.32752 12.8744C6.77523 11.4267 8.77523 10.5312 10.9844 10.5312C13.1935 10.5312 15.1935 11.4267 16.6412 12.8744L18.0554 11.4602Z" + stroke="none" /> + <path + d="M15.227 14.2886C14.1412 13.2028 12.6412 12.5312 10.9844 12.5312C9.32752 12.5312 7.82752 13.2028 6.74173 14.2886L8.15595 15.7028C8.8798 14.979 9.8798 14.5312 10.9844 14.5312C12.0889 14.5312 13.0889 14.979 13.8128 15.7028L15.227 14.2886Z" + stroke="none" /> + <path + d="M12.3986 17.117C12.0367 16.7551 11.5367 16.5312 10.9844 16.5312C10.4321 16.5312 9.93209 16.7551 9.57016 17.117L10.9844 18.5312L12.3986 17.117Z" + stroke="none" /> + </symbol> + + <symbol id="moreOpts" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M11 7.66675C12.1 7.66675 13 6.76675 13 5.66675C13 4.56675 12.1 3.66675 11 3.66675C9.9 3.66675 9 4.56675 9 5.66675C9 6.76675 9.9 7.66675 11 7.66675ZM11 9.66675C9.9 9.66675 9 10.5667 9 11.6667C9 12.7667 9.9 13.6667 11 13.6667C12.1 13.6667 13 12.7667 13 11.6667C13 10.5667 12.1 9.66675 11 9.66675ZM9 17.6667C9 16.5667 9.9 15.6667 11 15.6667C12.1 15.6667 13 16.5667 13 17.6667C13 18.7667 12.1 19.6667 11 19.6667C9.9 19.6667 9 18.7667 9 17.6667Z" + stroke="none" /> + </symbol> + + <symbol id="camera" width="100" height="113" viewBox="0 0 100 113" fill="none" xmlns="http://www.w3.org/2000/svg"> + <rect width="100" height="113" rx="12" fill="#F8F8F8" /> + <path d="M27 11H15C13.8954 11 13 11.8954 13 13V25" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round" /> + <path d="M27 100H15C13.8954 100 13 99.1046 13 98V86" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round" /> + <path d="M73 11H85C86.1046 11 87 11.8954 87 13V25" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round" /> + <path d="M73 100H85C86.1046 100 87 99.1046 87 98V86" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M61.1175 39.1429H72.7941C75.6692 39.1429 78 41.5002 78 44.4082V70.7347C78 73.6426 75.6692 76 72.7941 76H24.2059C21.3308 76 19 73.6426 19 70.7347V44.4082C19 41.5002 21.3308 39.1429 24.2059 39.1429H36.7502C37.8558 35.5825 41.1444 33 45.0294 33H52.8382C56.7232 33 60.0119 35.5825 61.1175 39.1429ZM49.5 70C56.9558 70 63 63.9558 63 56.5C63 49.0442 56.9558 43 49.5 43C42.0442 43 36 49.0442 36 56.5C36 63.9558 42.0442 70 49.5 70Z" + fill="#C4C4C4" /> + <circle cx="49.5" cy="56.5" r="10.5" fill="#BDBDBD" /> + </symbol> + + <symbol id="locateMe" width="25" height="34" viewBox="0 0 24 27" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M15.5591 23.2986C19.8303 19.413 23.125 16.4157 23.125 11.5C23.125 5.14873 17.9763 0 11.625 0C5.27373 0 0.125 5.14873 0.125 11.5C0.125 16.6933 2.79938 19.0768 7.87479 23.6001C9.00649 24.6087 10.2576 25.7237 11.625 27C12.9811 25.6439 14.3117 24.4334 15.5591 23.2986ZM11.625 16C14.1103 16 16.125 13.9853 16.125 11.5C16.125 9.01472 14.1103 7 11.625 7C9.13972 7 7.125 9.01472 7.125 11.5C7.125 13.9853 9.13972 16 11.625 16Z" + fill="#828282" /> + </symbol> + + <symbol id="passNumeric" width="25" height="45" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M1.875 9.49658H35.875V14.8452C34.0229 15.5776 32.7128 17.3841 32.7128 19.4966C32.7128 21.6091 34.0229 23.4157 35.875 24.148V29.4966H1.875V24.148C3.72706 23.4157 5.03717 21.6091 5.03717 19.4966C5.03717 17.3841 3.72706 15.5776 1.875 14.8452V9.49658Z" + fill="white" /> + <path + d="M35.875 9.49658H36.525C36.525 9.1376 36.234 8.84658 35.875 8.84658V9.49658ZM1.875 9.49658V8.84658C1.51601 8.84658 1.225 9.1376 1.225 9.49658H1.875ZM35.875 14.8452L36.114 15.4497C36.3621 15.3516 36.525 15.1119 36.525 14.8452H35.875ZM35.875 24.148H36.525C36.525 23.8813 36.3621 23.6417 36.114 23.5436L35.875 24.148ZM35.875 29.4966V30.1466C36.234 30.1466 36.525 29.8556 36.525 29.4966H35.875ZM1.875 29.4966H1.225C1.225 29.8556 1.51601 30.1466 1.875 30.1466L1.875 29.4966ZM1.875 24.148L1.63598 23.5436C1.38794 23.6417 1.225 23.8813 1.225 24.148H1.875ZM1.875 14.8452H1.225C1.225 15.1119 1.38794 15.3516 1.63598 15.4497L1.875 14.8452ZM35.875 8.84658H1.875V10.1466H35.875V8.84658ZM36.525 14.8452V9.49658H35.225V14.8452H36.525ZM33.3628 19.4966C33.3628 17.6598 34.5016 16.0873 36.114 15.4497L35.636 14.2407C33.5443 15.0679 32.0628 17.1084 32.0628 19.4966H33.3628ZM36.114 23.5436C34.5016 22.906 33.3628 21.3335 33.3628 19.4966H32.0628C32.0628 21.8848 33.5443 23.9254 35.636 24.7525L36.114 23.5436ZM36.525 29.4966V24.148H35.225V29.4966H36.525ZM1.875 30.1466H35.875V28.8466H1.875V30.1466ZM1.225 24.148V29.4966H2.525V24.148H1.225ZM4.38717 19.4966C4.38717 21.3335 3.24841 22.906 1.63598 23.5436L2.11402 24.7525C4.20571 23.9254 5.68717 21.8848 5.68717 19.4966H4.38717ZM1.63598 15.4497C3.24841 16.0873 4.38717 17.6597 4.38717 19.4966H5.68717C5.68717 17.1084 4.20571 15.0679 2.11402 14.2407L1.63598 15.4497ZM1.225 9.49658V14.8452H2.525V9.49658H1.225Z" + fill="#4F4F4F" /> + <line x1="28.6031" y1="10.1466" x2="28.6031" y2="28.8466" stroke="#4F4F4F" stroke-width="1.3" stroke-linecap="round" + stroke-dasharray="2 3" /> + <line x1="10.0176" y1="19.9287" x2="20.0176" y2="19.9287" stroke="#348899" stroke-width="2" + stroke-linecap="round" /> + <line x1="10.0176" y1="24.9287" x2="16.0176" y2="24.9287" stroke="#348899" stroke-width="2" + stroke-linecap="round" /> + </symbol> + <symbol id="search" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> <path d="M15.4996 14H14.7096L14.4296 13.73C15.6296 12.33 16.2496 10.42 15.9096 8.39C15.4396 5.61 13.1196 3.39 10.3196 3.05C6.08965 2.53 2.52965 6.09 3.04965 10.32C3.38965 13.12 5.60965 15.44 8.38965 15.91C10.4196 16.25 12.3296 15.63 13.7296 14.43L13.9996 14.71V15.5L18.2496 19.75C18.6596 20.16 19.3296 20.16 19.7396 19.75C20.1496 19.34 20.1496 18.67 19.7396 18.26L15.4996 14ZM9.49965 14C7.00965 14 4.99965 11.99 4.99965 9.5C4.99965 7.01 7.00965 5 9.49965 5C11.9896 5 13.9996 7.01 13.9996 9.5C13.9996 11.99 11.9896 14 9.49965 14Z" fill="currentColor" stroke-width="1" stroke-linecap="round" /> </symbol> - <symbol id="tagDelete" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M6.5 6.5L15.5 15.5" stroke="#BDBDBD" stroke-width="1.5" stroke-linecap="round" /> - <path d="M15.5 6.5L6.5 15.5" stroke="#BDBDBD" stroke-width="1.5" stroke-linecap="round" /> + <symbol id="tagDelete" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M2.5 2.5L9.5 9.5" stroke="currentColor" /> + <path d="M9.5 2.5L2.5 9.5" stroke="currentColor" /> </symbol> - <symbol id="refresh" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> + + <symbol id="tagReset" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M17.65 6.35C16.2 4.9 14.21 4 12 4C7.58001 4 4.01001 7.58 4.01001 12C4.01001 16.42 7.58001 20 12 20C15.73 20 18.84 17.45 19.73 14H17.65C16.83 16.33 14.61 18 12 18C8.69001 18 6.00001 15.31 6.00001 12C6.00001 8.69 8.69001 6 12 6C13.66 6 15.14 6.69 16.22 7.78L13 11H20V4L17.65 6.35Z" fill="currentColor" /> - </symbol> - <symbol id="rdv" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> + + <symbol id="rdv" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M3 7H19V16C19 17.6569 17.6569 19 16 19H6C4.34315 19 3 17.6569 3 16V7Z" fill="white" /> <path d="M8.30078 13.1664L10.5756 15.1605L14.1502 10.7734" stroke="#333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /> @@ -399,13 +708,13 @@ <rect x="15" y="2" width="1" height="3" rx="0.5" fill="#333333" /> </symbol> - <symbol id="rdvDetail" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="rdvDetail" width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.8092 9.33333V4M21.4759 9.33333V4M9.47591 14.6667H22.8092M6.80924 28H25.4759C26.9487 28 28.1426 26.8061 28.1426 25.3333V9.33333C28.1426 7.86057 26.9487 6.66667 25.4759 6.66667H6.80924C5.33649 6.66667 4.14258 7.86057 4.14258 9.33333V25.3333C4.14258 26.8061 5.33649 28 6.80924 28Z" stroke="#333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /> </symbol> - <symbol id="closeModal" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="closeModal" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M27.0279 11.9135C27.5486 11.3928 28.2873 11.2873 28.6778 11.6778C29.0683 12.0683 28.9628 12.807 28.4421 13.3277L13.3572 28.4127C12.8365 28.9334 12.0978 29.0389 11.7072 28.6484C11.3167 28.2578 11.4222 27.5192 11.9429 26.9985L27.0279 11.9135Z" fill="#333333" /> @@ -414,12 +723,53 @@ fill="#333333" /> </symbol> - <symbol id="arrowBackSmall" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="arrowBackSmall" width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M15.8332 9.1666H6.5249L10.5916 5.09993C10.9166 4.77494 10.9166 4.2416 10.5916 3.9166C10.2666 3.5916 9.74157 3.5916 9.41657 3.9166L3.9249 9.40827C3.5999 9.73327 3.5999 10.2583 3.9249 10.5833L9.41657 16.0749C9.74157 16.3999 10.2666 16.3999 10.5916 16.0749C10.9166 15.7499 10.9166 15.2249 10.5916 14.8999L6.5249 10.8333H15.8332C16.2916 10.8333 16.6666 10.4583 16.6666 9.99994C16.6666 9.5416 16.2916 9.1666 15.8332 9.1666Z" fill="#333333" /> </symbol> + <symbol id="structureAvatar" fill="none" width="52" height="52" xmlns="http://www.w3.org/2000/svg" + viewBox="0 0 52 52"> + <path d="M0 4a4 4 0 0 1 4-4h44a4 4 0 0 1 4 4v44a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V4Z" fill="#fff" /> + <path + d="M7.4 34.5c-.5.3-.5.8 0 1L24 45.4a2 2 0 0 0 2 0l17.6-10.2c.5-.3.5-.8 0-1l-16.8-9.8c-.5-.3-1.3-.3-1.9 0L7.4 34.5Z" + fill="#DA3635" /> + <path d="M38.2 19.7v14.8l-13 7.4V27.1l13-7.4Z" fill="#fff" /> + <path d="M38.2 19.7v14.8l-13 7.4V27.1l13-7.4Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="m25.3 27-13-7.3 13-7.5 13 7.5-13 7.4Z" fill="#fff" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="m25.3 26-11-6.3 11-6.3 11 6.3-11 6.3Z" fill="#fff" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M12.4 19.7v14.8l12.9 7.4V27.1l-13-7.4Z" fill="#fff" /> + <path d="M12.4 19.7v14.8l12.9 7.4V27.1l-13-7.4Z" fill="#BDBDBD" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="m25.3 10.5 13 7.5-13 7.4-13-7.4 13-7.5Zm11 7.5-11-6.3-11 6.3 11 6.3 11-6.3Z" fill="#fff" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M38.2 18v2.6l-13 7.4v-2.6l13-7.4Z" fill="#fff" /> + <path d="M38.2 20.6V18l-13 7.4V28" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M25.3 25.4v2.5l-13-7.4V18l13 7.4Z" fill="#BDBDBD" /> + <path d="M25.3 27.9v-2.5l-13-7.4v2.5" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M25.3 11.7v1.7l-9.5 5.4-1.5-.8 11-6.3Z" fill="#fff" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path + d="m36.3 18-11-6.3v1.7l9.5 5.4 1.5-.8ZM29 28.2l.1 11.6 6-3.4V24.8l-6 3.4ZM18 24.8v4.6l-3.3-1.9V23l3.3 2ZM23 27.6V32l-3.4-1.9v-4.5l3.3 1.9ZM18 31.1v4.6l-3.4-1.9v-4.6l3.4 2ZM22.9 33.9v4.5l-3.3-1.9V32l3.3 2Z" + fill="#fff" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="m38.2 18-13 7.6" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M24.9 25.1 12 17.8l13.3-8 12.8 7.4-13.3 8Z" fill="#E9E9E9" /> + <path d="M25.6 10.1a.5.5 0 0 1 .5.9l-.5-.9Zm-13.1 8.2a.5.5 0 1 1-.5-1l.5 1Zm-.5-1 13.6-7.2.5.9-13.6 7.3-.5-1Z" + fill="#706F6F" /> + <path + d="M38.2 17a.5.5 0 0 1-.5.8l.5-.9Zm-12.4-6.1a.5.5 0 1 1 .5-1l-.5 1Zm11.9 6.9-12-7 .6-.8 11.9 7-.5.8ZM25.2 25.3a.5.5 0 0 1-.5.9l.5-.9Zm-12.9-6.6a.5.5 0 1 1 .5-.8l-.5.8Zm12.4 7.5-12.4-7.5.5-.8 12.4 7.4-.5.9Z" + fill="#706F6F" /> + <path d="M26 27.8 16 16.1l16-8.2 9.6 11-15.5 9Z" fill="#fff" stroke="#696969" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="m8.6 17.8 7.5-1.7 16-8.2L23 9.6 8.6 17.8Z" fill="#E9E9E9" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="m8.6 17.8 8-1.7 9.5 11.7-17.5-10Z" fill="#BDBDBD" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + </symbol> + <symbol id="profile" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M16 32C7.15594 32 0 24.8334 0 16C0 7.15594 7.16655 0 16 0C24.8441 0 32 7.16656 32 16C32.0106 24.8441 24.8441 32 16 32Z" @@ -432,66 +782,1065 @@ stroke="#333333" /> </symbol> - <symbol id="searchPrintMarker" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path fill-rule="evenodd" clip-rule="evenodd" - d="M12.3519 15.8973C14.9053 13.5588 16.875 11.7548 16.875 8.7963C16.875 4.97377 13.797 1.875 10 1.875C6.20304 1.875 3.125 4.97377 3.125 8.7963C3.125 11.9219 4.72381 13.3564 7.75803 16.0788C8.43459 16.6858 9.18252 17.3569 10 18.125C10.8107 17.3088 11.6062 16.5803 12.3519 15.8973ZM10 11.5046C11.4858 11.5046 12.6902 10.2921 12.6902 8.7963C12.6902 7.30053 11.4858 6.08796 10 6.08796C8.51423 6.08796 7.30978 7.30053 7.30978 8.7963C7.30978 10.2921 8.51423 11.5046 10 11.5046Z" - stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" /> + <symbol id="toastError" width="40" height="41" viewBox="0 0 40 41" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path + d="M26.8169 11.4821C27.3593 10.9397 28.2738 10.9749 28.8596 11.5607C29.4454 12.1464 29.4806 13.061 28.9382 13.6034L13.2247 29.3169C12.6823 29.8593 11.7677 29.8241 11.1819 29.2383C10.5962 28.6525 10.561 27.738 11.1034 27.1956L26.8169 11.4821Z" + fill="#FF0000" /> + <path + d="M28.8169 27.5179C29.3593 28.0603 29.3241 28.9749 28.7383 29.5607C28.1525 30.1464 27.2379 30.1816 26.6955 29.6392L10.9821 13.9257C10.4397 13.3833 10.4748 12.4688 11.0606 11.883C11.6464 11.2972 12.561 11.262 13.1034 11.8044L28.8169 27.5179Z" + fill="#FF0000" /> </symbol> - <symbol id="searchPrintStructure" viewBox="0 0 13 14" fill="none" xmlns="http://www.w3.org/2000/svg"> - <g clip-path="url(#clip0_10059_198649)"> - <path - d="M1.77283 5.40455L6.55919 1.68182L11.3456 5.40455V11.2546C11.3456 11.5366 11.2335 11.8072 11.034 12.0067C10.8346 12.2061 10.564 12.3182 10.2819 12.3182H2.83646C2.55437 12.3182 2.28383 12.2061 2.08436 12.0067C1.88489 11.8072 1.77283 11.5366 1.77283 11.2546V5.40455Z" - stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /> - <path d="M4.96375 12.3182V7H8.15465V12.3182" stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" - stroke-linejoin="round" /> - </g> - <defs> - <clipPath id="clip0_10059_198649"> - <rect width="13" height="13" fill="white" transform="translate(0 0.5)" /> - </clipPath> - </defs> + <symbol id="toastSuccess" width="40" height="41" viewBox="0 0 40 41" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M10 21.1364L17.3889 27.5L23.1944 20.5L29 13.5" stroke="#47C562" stroke-width="3" stroke-linecap="round" + stroke-linejoin="round" /> </symbol> - <symbol id="arrowBack" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M20 11L11 20L20 29" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" + <symbol id="warningMini" width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"> + <circle cx="8" cy="8.5" r="8" fill="#DA6C2E" /> + <path d="M8.15415 9.423L8.15415 4.19224" stroke="white" stroke-width="2" stroke-linecap="round" + stroke-linejoin="round" /> + <path d="M8.15417 13.1808L8.15418 12.8075" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /> - <line x1="12.5679" y1="20.0684" x2="29.8861" y2="20.0684" stroke="black" stroke-width="1.5" - stroke-linecap="round" /> </symbol> - <symbol id="structureCategory_privateLucrative" viewBox="0 0 52 52" fill="none" xmlns="http://www.w3.org/2000/svg"> - <rect width="52" height="52" rx="4" fill="white" /> + + <symbol id="annuaireUnlogged" width="200" height="200" viewBox="0 0 200 200" fill="none" + xmlns="http://www.w3.org/2000/svg"> <path - d="M7.32104 39.6816C6.79673 39.9831 6.79461 40.4777 7.31467 40.7791L24.0607 50.5117C24.5828 50.8152 25.4319 50.8131 25.9562 50.5117L43.6044 40.3227C44.1287 40.0213 44.1329 39.5288 43.6107 39.2253L26.8647 29.4927C26.3447 29.1912 25.4935 29.1912 24.9692 29.4927L7.32104 39.6816Z" - fill="#DFB74F" /> - <path d="M38.1703 24.863V39.6774L25.2197 47.0856V32.2691L38.1703 24.863Z" fill="white" /> - <path d="M38.1703 24.863V39.6774L25.2197 47.0856V32.2691L38.1703 24.863Z" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.2197 32.2692L12.2861 24.8525L25.2197 17.4294L38.1703 24.8631L25.2197 32.2692Z" fill="white" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M25.2112 31.1761L14.2071 24.8653L25.2112 18.5503L36.228 24.8738L25.2112 31.1761Z" fill="white" - stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M12.286 24.8528L12.2669 39.6777L25.2197 47.086V32.2695L12.286 24.8528Z" fill="white" /> - <path d="M12.286 24.8528L12.2669 39.6777L25.2197 47.086V32.2695L12.286 24.8528Z" fill="#BDBDBD" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> + d="M142.603 137.347L160.313 147.345C166.65 150.922 166.706 156.799 160.439 160.417L104.045 192.976C97.8274 196.566 87.7464 196.566 81.5286 192.976L41.3924 169.804" + stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8" /> <path - d="M25.2196 15.7334L38.1724 23.1692L25.2196 30.5753L12.286 23.1565L25.2196 15.7334ZM36.228 23.1819L25.2111 16.8563L14.2092 23.1735L25.2111 29.4842L36.228 23.1819Z" - fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M38.1703 23.1692V25.8247L25.2198 33.2329V30.5753L38.1703 23.1692Z" fill="white" /> - <path d="M38.1703 25.8247V23.1692L25.2198 30.5753V33.2329" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.2197 30.5754V33.0866L12.2861 25.6677V23.1587L25.2197 30.5754Z" fill="#BDBDBD" /> - <path d="M25.2197 33.0866V30.5754L12.2861 23.1587V25.6677" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.2112 16.8562V18.5501L15.6846 24.0182L14.2072 23.1734L25.2112 16.8562Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M36.228 23.1819L25.2112 16.8562V18.5501L34.7655 24.0182L36.228 23.1819Z" fill="white" stroke="#706F6F" + d="M66.5 94.4999L33.0409 74.8039C26.9259 71.2042 26.9744 65.4325 33.1496 61.8672L77.934 36.0109C84.1518 32.421 94.2329 32.421 100.451 36.0109L168.296 75.1812" + stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8" /> + <path + d="M87.3501 44.8181C88.2118 45.3162 88.2182 46.1259 87.3597 46.624L59.807 62.6264C58.9485 63.1245 57.5499 63.1245 56.6881 62.6264L27.6499 45.8721C26.7882 45.374 26.7818 44.5642 27.6403 44.0662L55.193 28.0637C56.0483 27.5657 57.4501 27.5657 58.3119 28.0637L87.3501 44.8181Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" /> + <path + d="M46.8908 38.1021C46.8618 38.1182 46.8362 38.1343 46.8072 38.1503C45.9358 38.703 45.9358 39.5578 46.8072 40.1073C47.4085 40.4864 48.2702 40.6343 49.0773 40.5507C49.193 40.5378 49.2798 40.6085 49.2252 40.6696C48.2702 41.7043 48.4631 42.9993 49.8072 43.9215C49.8843 43.9729 50.0226 43.9761 50.1062 43.9279L56.9453 39.9819C57.0289 39.9337 57.0257 39.8534 56.9357 39.8084C55.3441 39.0276 53.1093 38.9119 51.3184 39.4614C51.2123 39.4935 51.0933 39.4421 51.1126 39.3746C51.2508 38.9248 51.0226 38.446 50.4245 38.1021C49.4567 37.5366 47.8715 37.5366 46.8908 38.1021Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M65.8648 38.7255C66.0545 38.8348 66.0545 39.0115 65.868 39.1208L49.8232 48.4394C49.6367 48.5487 49.3281 48.5487 49.1384 48.4394C48.9487 48.3302 48.9519 48.1535 49.1384 48.0442L65.1831 38.7255C65.3696 38.6195 65.6751 38.6163 65.8648 38.7255Z" + fill="#706F6F" /> + <path + d="M56.5017 46.8715C56.6914 46.9807 56.6914 47.1575 56.5049 47.2667L52.3474 49.6832C52.1609 49.7924 51.8555 49.7924 51.6658 49.6832C51.476 49.5739 51.4728 49.3972 51.6625 49.2879L55.82 46.8715C56.0065 46.7622 56.3152 46.7622 56.5017 46.8715Z" + fill="#706F6F" /> + <path + d="M67.9773 40.2487C68.1671 40.3579 68.1638 40.5347 67.9773 40.6439L59.7299 45.435C59.5434 45.5443 59.2379 45.5443 59.0482 45.435C58.8585 45.3257 58.8585 45.149 59.045 45.0398L67.2925 40.2487C67.479 40.1394 67.7844 40.1362 67.9773 40.2487Z" + fill="#706F6F" /> + <path + d="M62.5434 51.2802C62.7781 51.4151 62.7813 51.6369 62.5466 51.775L59.1286 53.7609C58.8939 53.8958 58.5113 53.8958 58.2766 53.7609L54.8361 51.775C54.6014 51.6401 54.5982 51.4183 54.8329 51.2802L58.2509 49.2943C58.4856 49.1594 58.8682 49.1594 59.1029 49.2943L62.5434 51.2802Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" /> + <path + d="M67.9805 47.8771C68.2153 48.0121 68.2185 48.2338 67.9838 48.372L64.5658 50.3578C64.3311 50.4928 63.9484 50.4928 63.7137 50.3578L60.2732 48.372C60.0385 48.237 60.0353 48.0153 60.27 47.8771L63.688 45.8913C63.9227 45.7563 64.3053 45.7563 64.54 45.8913L67.9805 47.8771Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" /> + <path + d="M73.7201 44.3265C74.0577 44.5225 74.0609 44.8406 73.7233 45.0334L70.3053 47.0192C69.9709 47.2153 69.4211 47.2153 69.0835 47.0192L65.643 45.0334C65.3054 44.8374 65.3022 44.5225 65.6398 44.3265L69.0578 42.3406C69.3922 42.1446 69.942 42.1446 70.2796 42.3406L73.7201 44.3265Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" /> + <path + d="M60.0852 26.4489C60.4635 26.668 60.4678 27.0203 60.0895 27.2394L57.8798 28.524C57.5015 28.7431 56.891 28.7431 56.5127 28.524L54.2859 27.2394C53.9076 27.0203 53.9033 26.668 54.2816 26.4489L56.4913 25.1643C56.8696 24.9452 57.48 24.9452 57.8583 25.1643L60.0852 26.4489Z" + fill="#DA3635" /> + <path + d="M58.5455 26.6293C58.5756 26.6465 58.5928 26.6679 58.5971 26.6937C58.5928 26.7453 58.5197 26.7882 58.4337 26.7882H57.4149L57.3504 26.8226L57.3547 27.4112C57.3504 27.4627 57.2773 27.5057 57.1914 27.5057C57.1441 27.5057 57.1054 27.4971 57.0753 27.4799C57.0452 27.4628 57.028 27.437 57.028 27.4112L57.0237 26.8226L56.9592 26.7839H55.9403C55.8931 26.7839 55.8544 26.7754 55.8243 26.7582C55.7942 26.741 55.777 26.7152 55.777 26.6894C55.777 26.6379 55.8501 26.5949 55.9403 26.5949H56.9592L57.0237 26.5605V25.972C57.0237 25.9204 57.0968 25.8774 57.1871 25.8774C57.2343 25.8774 57.273 25.8903 57.3031 25.9075C57.3332 25.9247 57.3504 25.9462 57.3547 25.972V26.5605L57.4192 26.5992H58.438C58.4767 26.5992 58.5154 26.6121 58.5455 26.6293Z" + fill="white" /> + <path + d="M45.7227 53.7692C47.499 54.7931 47.5063 56.4537 45.7444 57.4811C43.9825 58.505 41.1136 58.505 39.3372 57.4811C37.5609 56.4573 37.5537 54.7967 39.3192 53.7692C41.0847 52.7418 43.95 52.7454 45.7227 53.7692Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" /> + <path + d="M78.7227 34.7692C80.499 35.7931 80.5063 37.4537 78.7444 38.4811C76.9825 39.505 74.1136 39.505 72.3372 38.4811C70.5609 37.4573 70.5537 35.7967 72.3192 34.7692C74.0847 33.7418 76.95 33.7454 78.7227 34.7692Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M92.0481 60.1646C91.7298 59.9452 91.3135 59.929 90.9791 60.123L16.2987 103.428C15.6638 103.796 15.6286 104.7 16.2329 105.117L61.2513 136.136C61.2513 136.136 61.2514 136.136 61.2515 136.136C61.2515 136.136 61.2516 136.136 61.2517 136.136L107.428 157.563C107.724 157.701 108.068 157.685 108.35 157.521L182.833 114.331C183.533 113.925 183.486 112.9 182.752 112.559L137.846 91.7207C137.846 91.7207 137.846 91.7207 137.846 91.7207V91.7206C137.846 91.7206 137.846 91.7205 137.846 91.7206C137.846 91.7206 137.846 91.7206 137.846 91.7206L92.0481 60.1646Z" + fill="white" /> + <path + d="M137.846 91.7206L137.562 92.1323L137.846 91.7206ZM137.846 91.7207L137.635 92.1743L137.846 91.7207ZM182.833 114.331L183.084 114.764L182.833 114.331ZM182.752 112.559L182.542 113.013L182.752 112.559ZM107.428 157.563L107.638 157.11L107.428 157.563ZM108.35 157.521L108.601 157.954L108.35 157.521ZM61.2517 136.136L61.4621 135.682L61.2517 136.136ZM61.2513 136.136L60.9676 136.547L61.2513 136.136ZM90.9791 60.123L91.2299 60.5555L90.9791 60.123ZM92.0481 60.1646L92.3318 59.7529L92.0481 60.1646ZM16.2329 105.117L15.9492 105.528L16.2329 105.117ZM16.5495 103.861L91.2299 60.5555L90.7283 59.6904L16.0479 102.995L16.5495 103.861ZM61.535 135.724L16.5166 104.705L15.9492 105.528L60.9676 136.547L61.535 135.724ZM107.638 157.11L61.4621 135.682L61.0412 136.589L107.217 158.017L107.638 157.11ZM182.582 113.899L108.1 157.089L108.601 157.954L183.084 114.764L182.582 113.899ZM137.635 92.1743L182.542 113.013L182.963 112.105L138.056 91.2672L137.635 92.1743ZM137.346 91.7206V91.7207H138.346V91.7206H137.346ZM91.7644 60.5763L137.562 92.1323L138.129 91.3088L92.3318 59.7529L91.7644 60.5763ZM137.598 91.2865C137.77 91.1877 137.977 91.2038 138.129 91.3088L137.562 92.1323C137.715 92.2374 137.921 92.2534 138.094 92.1547L137.598 91.2865ZM138.346 91.7206C138.346 91.3367 137.931 91.0959 137.598 91.2865L138.094 92.1547C137.761 92.3451 137.346 92.1045 137.346 91.7206H138.346ZM138.056 91.2672C138.233 91.3491 138.346 91.526 138.346 91.7207H137.346C137.346 91.9153 137.459 92.0923 137.635 92.1743L138.056 91.2672ZM183.084 114.764C184.134 114.155 184.063 112.616 182.963 112.105L182.542 113.013C182.909 113.183 182.932 113.696 182.582 113.899L183.084 114.764ZM107.217 158.017C107.661 158.223 108.178 158.199 108.601 157.954L108.1 157.089C107.959 157.171 107.786 157.178 107.638 157.11L107.217 158.017ZM61.505 136.567C61.358 136.653 61.1842 136.656 61.0412 136.589L61.4621 135.682C61.319 135.616 61.1451 135.618 60.998 135.705L61.505 136.567ZM60.9676 136.547C61.1277 136.658 61.3373 136.665 61.505 136.567L60.998 135.705C61.1655 135.606 61.3749 135.614 61.535 135.724L60.9676 136.547ZM91.2299 60.5555C91.3971 60.4585 91.6052 60.4666 91.7644 60.5763L92.3318 59.7529C91.8543 59.4238 91.2299 59.3995 90.7283 59.6904L91.2299 60.5555ZM16.0479 102.995C15.0955 103.548 15.0427 104.904 15.9492 105.528L16.5166 104.705C16.2144 104.497 16.232 104.045 16.5495 103.861L16.0479 102.995Z" + fill="#DA3635" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M93.2787 66.1783C92.9604 65.9589 92.5441 65.9427 92.2097 66.1366L24.8316 105.207C24.1967 105.575 24.1615 106.479 24.7659 106.896L64.8471 134.513C65.1654 134.732 65.5816 134.749 65.9161 134.555L133.294 95.484C133.929 95.1158 133.964 94.2119 133.36 93.7955L93.2787 66.1783ZM135.133 94.9109C134.837 94.7735 134.493 94.7892 134.21 94.9529L67.0302 133.909C66.3303 134.315 66.377 135.34 67.1109 135.681L107.098 154.236C107.394 154.374 107.738 154.358 108.02 154.194L175.2 115.239C175.9 114.833 175.853 113.807 175.12 113.466L135.133 94.9109Z" + fill="#EDEDED" /> + <path + d="M30.1357 104.232L90.864 69.0171C90.9506 68.9673 91.0688 68.9756 91.1987 69.0487L30.4704 104.263C30.3422 104.19 30.2223 104.182 30.1357 104.232Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M30.4703 104.263L91.1986 69.0486L92.6902 70.0735L31.9619 105.29L30.4703 104.263Z" fill="white" + stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M31.9369 104.523L92.6652 69.3079C92.6818 69.298 92.7018 69.2897 92.7218 69.2847L31.9918 104.499C31.9718 104.504 31.9535 104.513 31.9369 104.523Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M31.9386 103.69L92.6669 68.4755C92.6919 68.4606 92.7202 68.4522 92.7501 68.4473L32.0218 103.662C31.9919 103.667 31.9636 103.675 31.9386 103.69Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M31.9419 102.818L92.6685 67.6034C92.6952 67.5885 92.7235 67.5785 92.7568 67.5752L32.0285 102.79C31.9968 102.793 31.9669 102.803 31.9419 102.818Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M31.9453 101.245L92.6736 66.0304C92.7552 65.9823 92.87 65.9906 92.9932 66.0603L32.2649 101.277C32.1418 101.205 32.0285 101.199 31.9453 101.245Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M69.1141 130.918L129.841 95.7034L129.846 95.7084L69.1191 130.923L69.1141 130.918Z" fill="white" + stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M69.119 130.923L129.846 95.7085H129.852L69.124 130.923H69.119Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M29 33.394L29.0328 45L35 41.606L34.9672 30L29 33.394Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M38.1702 8.85376V23.6702L25.2175 31.0763V16.2599L38.1702 8.85376Z" fill="white" /> - <path d="M38.1702 8.85376V23.6702L31.6939 27.3733L25.2175 31.0763V16.2599L38.1702 8.85376Z" stroke="#706F6F" + <path + d="M132.121 98.4875L71.3931 133.702C71.493 133.644 71.5545 133.521 71.5562 133.345C71.5562 133.264 71.5429 133.177 71.5179 133.091L132.246 97.8762C132.271 97.9626 132.285 98.049 132.285 98.1304C132.283 98.3048 132.221 98.4294 132.121 98.4875Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M106 148.5V144L166 109L168.5 114L108 149.5L106 148.5Z" fill="white" /> + <path + d="M168.851 114.705L108.122 149.92C108.217 149.865 108.272 149.739 108.257 149.564C108.234 149.272 108.029 148.945 107.745 148.784L168.473 113.569C168.759 113.73 168.962 114.057 168.986 114.35C168.999 114.524 168.946 114.651 168.851 114.705Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M107.745 148.784C108.031 148.945 108.234 149.272 108.257 149.564C108.282 149.875 108.092 150.031 107.833 149.912L71.518 133.091C71.5429 133.177 71.5563 133.264 71.5563 133.345C71.5546 133.697 71.3049 133.84 70.9969 133.662L67.2312 131.493C66.9233 131.315 66.6736 130.885 66.6752 130.533C66.6752 130.451 66.6902 130.38 66.7152 130.323L30.422 105.315C30.164 105.137 29.9759 104.763 30.0025 104.483C30.0275 104.219 30.2322 104.127 30.472 104.265L31.9619 105.29C31.8554 105.122 31.7938 104.925 31.8088 104.76C31.8221 104.616 31.892 104.526 31.9936 104.501C31.8687 104.325 31.7954 104.107 31.8121 103.928C31.8271 103.77 31.9086 103.679 32.0235 103.664C31.8837 103.483 31.7971 103.247 31.8154 103.056C31.8304 102.896 31.9136 102.805 32.0318 102.79C31.8887 102.607 31.8004 102.37 31.8188 102.177C31.8287 102.067 31.872 101.991 31.9353 101.948C31.8537 101.797 31.8088 101.629 31.8221 101.484C31.8454 101.232 32.0418 101.145 32.2699 101.277L68.9942 126.581L105.98 143.742C106.253 143.897 106.448 144.207 106.469 144.486C106.483 144.644 106.436 144.76 106.353 144.817C106.416 144.932 106.458 145.058 106.468 145.179C106.484 145.393 106.394 145.528 106.251 145.546C106.368 145.694 106.451 145.883 106.464 146.059C106.481 146.27 106.394 146.407 106.255 146.427C106.368 146.573 106.449 146.759 106.463 146.933C106.478 147.131 106.403 147.262 106.278 147.294C106.378 147.435 106.448 147.604 106.459 147.764C106.474 147.947 106.411 148.071 106.303 148.116L107.745 148.784Z" + fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M68.9893 126.581L129.718 91.3662L166.703 108.529L105.975 143.744L68.9893 126.581Z" fill="white" + stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M32.2649 101.277L92.9932 66.062L129.717 91.3662L68.9892 126.581L32.2649 101.277Z" fill="white" + stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M132.571 136.269C133.477 136.79 133.482 137.636 132.581 138.157L127.092 141.34C126.193 141.862 124.732 141.862 123.826 141.34L120.934 139.674L129.678 134.604L132.571 136.269Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M139.708 131.26C140.612 131.782 140.617 132.626 139.718 133.147L134.229 136.33C133.33 136.852 131.868 136.852 130.964 136.33L128.073 134.664L136.816 129.594L139.708 131.26Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M147.226 126.047C148.13 126.569 148.135 127.413 147.236 127.935L141.747 131.117C140.848 131.639 139.386 131.639 138.482 131.117L135.591 129.451L144.334 124.381L147.226 126.047Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M154.72 120.788C155.624 121.31 155.629 122.154 154.73 122.675L149.242 125.858C148.343 126.38 146.881 126.38 145.977 125.858L143.085 124.192L151.829 119.122L154.72 120.788Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M162.292 115.713C163.197 116.235 163.202 117.081 162.303 117.601L156.815 120.783C155.916 121.305 154.452 121.305 153.547 120.783L150.655 119.117L159.398 114.047L162.292 115.713Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M169.488 110.237C170.392 110.759 170.397 111.602 169.498 112.124L164.01 115.307C163.111 115.828 161.649 115.828 160.745 115.307L157.853 113.641L166.597 108.571L169.488 110.237Z" + fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M92.6487 75.7591C93.3749 75.3399 94.5521 75.3399 95.2783 75.7591L98.1088 77.3933C98.7516 77.7644 98.8354 78.3493 98.3071 78.7764L93.4469 82.7048C92.9725 83.0883 92.1203 83.2483 91.3459 83.0993L88.2927 82.5117C86.1133 85.4647 86.1133 88.8261 88.2927 91.7792L91.3459 91.1916C92.1203 91.0426 92.9725 91.2026 93.4469 91.5861L98.3071 95.5145C98.8354 95.9415 98.7516 96.5265 98.1088 96.8975L95.2783 98.5318C94.5521 98.951 93.3749 98.951 92.6487 98.5318L90.0192 97.0136C80.5794 91.5636 80.5794 82.7273 90.0192 77.2773L92.6487 75.7591Z" + fill="#DA3635" /> + <rect width="3.69092" height="31.2471" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 62.4653 92.2888)" + fill="#DA3635" /> + <rect width="3.69092" height="31.2471" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 57.9817 95.2778)" + fill="#DA3635" /> + <rect width="3.69092" height="9.39302" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 53 99.2632)" + fill="#DA3635" /> + <rect width="3.69092" height="9.39302" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 69.4397 109.725)" + fill="#DA3635" /> + <rect width="3.82749" height="3.69147" rx="1.84574" transform="matrix(0.866025 -0.5 0.866025 0.5 62.9635 105.808)" + fill="#DA3635" /> + <path + d="M141 108.504L141.104 108.683C141.567 109.482 142.467 109.92 143.381 109.791L143.569 109.765C144.38 109.65 145.177 110.044 145.579 110.758V110.758C145.848 111.234 146.301 111.579 146.831 111.711L150 112.5" + stroke="black" stroke-linecap="round" /> + <path + d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" + fill="white" /> + <path + d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" + fill="white" /> + <path + d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" + fill="white" /> + <path + d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" + fill="white" /> + <path + d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" + fill="white" /> + <path + d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" + fill="white" /> + <path + d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" + fill="white" /> + <path + d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" + fill="white" /> + <path + d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" + fill="white" /> + <path + d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" + fill="white" /> + <path + d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" + stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" + fill="white" /> + <path + d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" + fill="white" /> + <path + d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" + fill="white" /> + <path + d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" + fill="white" /> + <path + d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" + stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M125.581 78.234C125.066 78.411 124.696 78.7374 124.314 79.1025C123.866 79.5341 123.169 79.9324 122.892 80.5244C122.477 81.4261 122.267 83.0914 122.184 84.0761C122.062 85.2711 122.151 86.4662 122.25 87.6667C122.25 87.6667 122.223 88.4301 124.043 87.5173C124.043 87.5173 123.75 89.6251 124.795 89.9737C125.869 90.5656 126.981 90.3388 128.192 90.3388C129.509 90.3222 130.776 90.0622 131.312 88.7787C131.628 88.231 131.307 86.6045 131.307 86.6045C132.192 87.1245 133.376 86.1951 133.376 86.1951C133.603 84.4966 132.491 82.6931 131.866 81.1661C131.534 80.3695 131.152 79.7443 130.582 79.0859C130.355 78.8093 130.062 78.2561 129.785 78.0625C129.337 77.7139 129.664 77.8356 129.144 77.9573C128.07 78.2174 126.333 80.209 125.725 78.2506C125.736 78.2506 125.725 78.1842 125.581 78.234Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M125.736 78.2506C126.344 80.209 128.076 78.2174 129.155 77.9573C129.675 77.8356 129.343 77.7139 129.797 78.0625C130.073 78.2506 130.366 78.8093 130.593 79.0859C131.163 79.7443 131.545 80.3695 131.877 81.1661C132.502 82.6931 133.608 84.4966 133.387 86.1951C133.387 86.1951 132.209 87.1245 131.318 86.6045C131.318 86.6045 131.639 88.231 131.323 88.7787C130.787 90.0622 129.52 90.3222 128.203 90.3388C126.992 90.3388 125.88 90.5656 124.806 89.9737C123.761 89.6251 124.054 87.5173 124.054 87.5173C122.228 88.4301 122.261 87.6667 122.261 87.6667C122.156 86.4717 122.073 85.2767 122.195 84.0761C122.284 83.0859 122.488 81.4261 122.903 80.5244C123.18 79.9324 123.877 79.5341 124.325 79.1025C124.707 78.7374 125.072 78.3944 125.592 78.234C125.581 78.234 125.675 78.1786 125.736 78.2506Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" + fill="white" /> + <path + d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" + fill="#DA3635" /> + <path + d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" + stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path d="M122 80.4693L122.365 78.71L124.44 77.5039L126.149 78.0571L139.942 101.797L135.792 104.209L122 80.4693Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path d="M135.792 104.209L136.135 102.405L138.21 101.205L139.942 101.797L140.755 107.976L135.792 104.209Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M138.614 106.35L138.857 105.869C139.045 105.492 139.444 105.26 139.87 105.282L140.406 105.31L140.76 107.982L138.614 106.35Z" + fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path d="M124.44 77.5039L138.21 101.205L139.942 101.797L126.149 78.0571L124.44 77.5039Z" fill="white" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path d="M136.135 102.405L122.365 78.71L122 80.4693L135.792 104.209L136.135 102.405Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M122.903 87.4346C122.903 87.4346 124.707 87.1967 125.57 86.4056L124.956 85.2991C124.956 85.2991 123.357 85.9187 123.196 86.1455C123.036 86.3779 122.903 87.4346 122.903 87.4346Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M124.961 85.2989C124.961 85.2989 124.961 84.2975 125.348 83.9822C125.741 83.6724 125.348 84.718 125.348 84.718C125.348 84.718 126.272 83.9213 126.538 84.0043C126.803 84.0873 127.091 84.9504 127.008 85.3653C126.925 85.7802 125.719 86.2284 125.57 86.4054L124.961 85.2989Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M123.075 87.9048C123.075 87.9048 125.349 86.66 125.57 86.4055L124.956 85.2991C124.956 85.2991 123.639 85.7638 123.257 86.0847" + fill="white" /> + <path + d="M123.075 87.9048C123.075 87.9048 125.349 86.66 125.57 86.4055L124.956 85.2991C124.956 85.2991 123.639 85.7638 123.257 86.0847" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M131.821 84.6515C131.821 84.6515 129.592 84.1813 129.155 83.6335L130.355 85.9018C130.355 85.9018 131.152 86.7427 132.496 86.6044" + fill="white" /> + <path + d="M131.821 84.6515C131.821 84.6515 129.592 84.1813 129.155 83.6335L130.355 85.9018C130.355 85.9018 131.152 86.7427 132.496 86.6044" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path d="M129.575 81.3542C129.575 81.3542 130.333 84.0375 131.135 84.4856L129.575 81.3542Z" fill="white" /> + <path d="M129.575 81.3542C129.575 81.3542 130.333 84.0375 131.135 84.4856" stroke="#706F6F" stroke-miterlimit="10" + stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M180.108 74.1322C183.506 76.0828 183.52 79.2464 180.149 81.2038C176.779 83.1544 171.29 83.1544 167.892 81.2038C164.493 79.2533 164.48 76.0897 167.857 74.1322C171.235 72.1748 176.716 72.1817 180.108 74.1322Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" /> + <path + d="M63.8991 162.813L45.8808 152.411C45.5898 152.243 45.1113 152.243 44.8203 152.411L13.2624 170.75C13.1144 170.833 13.0453 170.947 13.0453 171.055L13.0404 173.019C13.0404 173.132 13.1144 173.241 13.2624 173.329L31.2807 183.732C31.5717 183.9 32.0501 183.9 32.3411 183.732L63.8991 165.393C64.0421 165.309 64.1161 165.201 64.1161 165.087L64.121 163.124C64.121 163.139 64.1161 163.154 64.1112 163.168C64.1358 163.04 64.0668 162.907 63.8991 162.813Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M62.5919 162.562L45.4319 152.653C45.1507 152.49 44.7019 152.49 44.4207 152.653L14.3622 170.118C14.2241 170.197 14.1551 170.306 14.1551 170.409L14.1501 172.279C14.1501 172.387 14.2192 172.491 14.3622 172.575L31.5223 182.484C31.8035 182.647 32.2523 182.647 32.5335 182.484L62.5919 165.018C62.73 164.939 62.7991 164.831 62.7991 164.727L62.804 162.858C62.804 162.873 62.7991 162.887 62.7991 162.902C62.8188 162.779 62.7547 162.656 62.5919 162.562Z" + fill="#EDEDED" /> + <path + d="M34.8074 128.015L36.4845 128C36.4154 128 36.3513 128.02 36.2822 128.054L34.6052 128.069C34.6693 128.035 34.7384 128.02 34.8074 128.015Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M15.117 168.698L13.4399 168.712C13.2476 168.712 13.0651 168.574 12.9812 168.333L14.6583 168.318C14.7421 168.56 14.9246 168.703 15.117 168.698Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M6.96854 144.982L5.2915 144.997L34.6052 128.074L36.2822 128.059L6.96854 144.982Z" fill="#706F6F" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M14.6582 168.323L12.9812 168.333L5.03992 145.846L6.72189 145.836L14.6582 168.323Z" fill="white" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M6.72194 145.836L5.0449 145.85C4.93146 145.525 5.03997 145.145 5.29153 145.002L6.96857 144.987C6.71701 145.13 6.6085 145.51 6.72194 145.836Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M36.2821 128.059C36.5336 127.916 36.8296 128.059 36.943 128.385L44.8794 150.872C44.9928 151.193 44.8843 151.572 44.6327 151.72L15.3191 168.644C15.0675 168.787 14.7716 168.644 14.6581 168.323L6.72178 145.836C6.60834 145.51 6.71685 145.131 6.96841 144.988L36.2821 128.059Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M36.0454 130.062C36.2822 129.924 36.5633 130.062 36.6669 130.367L44.1544 151.572C44.2629 151.878 44.1593 152.233 43.9226 152.371L16.281 168.333C16.0443 168.471 15.7631 168.333 15.6546 168.032L8.16711 146.827C8.0586 146.521 8.16218 146.161 8.40387 146.028L36.0454 130.062Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M62.9075 161.581L62.9026 163.455C62.9026 163.559 62.8335 163.667 62.6954 163.746L62.7004 161.872C62.8335 161.793 62.9026 161.69 62.9075 161.581Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M14.0515 171.046L14.0564 169.172C14.0564 169.28 14.1255 169.384 14.2685 169.468L14.2636 171.342C14.1206 171.263 14.0515 171.154 14.0515 171.046Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M62.6956 161.872L62.6907 163.751L32.5089 181.291L32.5138 179.417L62.6956 161.872Z" fill="white" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M31.4978 179.417L31.4928 181.291L14.2588 171.342L14.2637 169.468L31.4978 179.417Z" fill="white" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M32.5137 179.417L32.5088 181.291C32.2276 181.454 31.7738 181.454 31.4927 181.291L31.4976 179.417C31.7788 179.579 32.2326 179.579 32.5137 179.417Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M62.6957 161.285C62.9768 161.448 62.9768 161.709 62.7006 161.872L32.5188 179.412C32.2377 179.575 31.7839 179.575 31.5028 179.412L14.2687 169.463C13.9876 169.3 13.9876 169.039 14.2687 168.876L44.4505 151.336C44.7316 151.173 45.1854 151.173 45.4666 151.336L62.6957 161.285Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M49.7676 167.835C49.8267 167.869 49.8267 167.924 49.7676 167.963L43.2962 171.722C43.237 171.756 43.1383 171.756 43.0791 171.722L39.3847 169.591C39.3255 169.556 39.3255 169.502 39.3847 169.463L45.8561 165.704C45.9153 165.67 46.014 165.67 46.0731 165.704L49.7676 167.835Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M23.2578 136.785C23.4866 136.67 23.6186 136.47 23.5526 136.339C23.4866 136.207 23.2476 136.194 23.0187 136.309C22.7899 136.424 22.6579 136.623 22.7239 136.755C22.7899 136.886 23.0289 136.9 23.2578 136.785Z" + fill="#706F6F" /> + <path + d="M25.3172 172.328C25.2432 172.328 25.1741 172.313 25.1297 172.289L23.9805 171.623L26.0225 170.434C26.0669 170.409 26.136 170.395 26.2099 170.395C26.2839 170.395 26.353 170.409 26.3974 170.434L27.5466 171.1L25.5046 172.289C25.4602 172.313 25.3862 172.328 25.3172 172.328Z" + fill="white" /> + <path + d="M26.2001 170.641C26.2396 170.641 26.2643 170.651 26.2692 170.651L27.0535 171.105L25.3813 172.077C25.3764 172.081 25.3518 172.086 25.3123 172.086C25.2728 172.086 25.2482 172.077 25.2482 172.077L24.4639 171.623L26.136 170.651C26.141 170.646 26.1656 170.641 26.2001 170.641ZM26.2001 170.148C26.0867 170.148 25.9732 170.173 25.8894 170.222L23.7882 171.44C23.6155 171.539 23.6205 171.702 23.7931 171.8L25.0016 172.501C25.0854 172.55 25.1988 172.575 25.3123 172.575C25.4257 172.575 25.5392 172.55 25.623 172.501L27.7243 171.282C27.8969 171.184 27.892 171.021 27.7243 170.922L26.5158 170.222C26.427 170.173 26.3136 170.148 26.2001 170.148Z" + fill="#706F6F" /> + <path + d="M22.93 170.952C22.856 170.952 22.7869 170.937 22.7425 170.913L21.5933 170.247L24.972 168.279C25.0164 168.254 25.0854 168.239 25.1594 168.239C25.2334 168.239 25.3025 168.254 25.3469 168.279L26.4961 168.945L23.1174 170.913C23.073 170.937 23.004 170.952 22.93 170.952Z" + fill="white" /> + <path + d="M25.1545 168.486C25.194 168.486 25.2187 168.496 25.2187 168.496L26.0029 168.949L22.9941 170.7C22.9892 170.705 22.9645 170.71 22.925 170.71C22.8856 170.71 22.8609 170.7 22.8609 170.7L22.0767 170.247L25.0855 168.5C25.0953 168.491 25.12 168.486 25.1545 168.486ZM25.1545 167.992C25.0411 167.992 24.9276 168.017 24.8438 168.066L21.4058 170.064C21.2332 170.163 21.2381 170.325 21.4108 170.424L22.6192 171.125C22.708 171.174 22.8165 171.199 22.93 171.199C23.0434 171.199 23.1569 171.174 23.2407 171.125L26.6787 169.127C26.8513 169.028 26.8513 168.865 26.6787 168.767L25.4702 168.066C25.3814 168.017 25.268 167.992 25.1545 167.992Z" + fill="#706F6F" /> + <path + d="M20.5476 169.576C20.4736 169.576 20.4045 169.561 20.3552 169.536L19.2059 168.87L20.3453 168.205C20.3897 168.18 20.4588 168.165 20.5328 168.165C20.6068 168.165 20.6758 168.18 20.7202 168.205L21.8695 168.87L20.7251 169.536C20.6906 169.561 20.6216 169.576 20.5476 169.576Z" + fill="white" /> + <path + d="M20.5377 168.407C20.5771 168.407 20.6018 168.417 20.6018 168.417L21.3861 168.87L20.6117 169.319C20.6067 169.324 20.5821 169.329 20.5475 169.329C20.5081 169.329 20.4834 169.319 20.4834 169.319L19.6992 168.866L20.4686 168.417C20.4736 168.417 20.4982 168.407 20.5377 168.407ZM20.5377 167.914C20.4242 167.914 20.3108 167.938 20.2269 167.988L19.0234 168.688C18.8508 168.787 18.8557 168.949 19.0283 169.048L20.2368 169.748C20.3256 169.798 20.439 169.822 20.5475 169.822C20.661 169.822 20.7744 169.798 20.8583 169.748L22.0618 169.048C22.2345 168.949 22.2345 168.787 22.0618 168.688L20.8534 167.988C20.7646 167.938 20.6511 167.914 20.5377 167.914Z" + fill="#706F6F" /> + <path + d="M36.2032 160.48C36.1292 160.48 36.0602 160.465 36.0158 160.441L34.8616 159.775L36.0059 159.109C36.0503 159.084 36.1194 159.069 36.1933 159.069C36.2673 159.069 36.3364 159.084 36.3857 159.114L37.535 159.78L36.3956 160.445C36.3462 160.465 36.2772 160.48 36.2032 160.48Z" + fill="white" /> + <path + d="M36.1883 159.311C36.2278 159.311 36.2524 159.321 36.2573 159.321L37.0416 159.775L36.2721 160.224C36.2672 160.229 36.2426 160.233 36.2031 160.233C36.1636 160.233 36.139 160.224 36.139 160.224L35.3547 159.77L36.1291 159.321C36.1291 159.316 36.1538 159.311 36.1883 159.311ZM36.1883 158.818C36.0748 158.818 35.9614 158.843 35.8776 158.892L34.674 159.592C34.5014 159.691 34.5014 159.854 34.674 159.952L35.8825 160.653C35.9713 160.702 36.0847 160.727 36.1932 160.727C36.3067 160.727 36.4201 160.702 36.504 160.653L37.7075 159.952C37.8801 159.854 37.8752 159.691 37.7026 159.592L36.4941 158.892C36.4152 158.843 36.3017 158.818 36.1883 158.818Z" + fill="#706F6F" /> + <path + d="M40.9682 163.232C40.8942 163.232 40.8251 163.218 40.7807 163.193L39.6315 162.527L40.7758 161.861C40.8202 161.837 40.8893 161.822 40.9633 161.822C41.0372 161.822 41.1063 161.837 41.1507 161.866L42.3 162.532L41.1605 163.198C41.1112 163.213 41.0422 163.232 40.9682 163.232Z" + fill="white" /> + <path + d="M40.9583 162.064C40.9978 162.064 41.0224 162.073 41.0274 162.073L41.8116 162.527L41.0422 162.976C41.0372 162.981 41.0126 162.986 40.9731 162.986C40.9336 162.986 40.909 162.976 40.909 162.976L40.1247 162.522L40.8991 162.073C40.8991 162.069 40.9238 162.064 40.9583 162.064ZM40.9583 161.57C40.8449 161.57 40.7314 161.595 40.6476 161.644L39.4441 162.345C39.2714 162.443 39.2714 162.606 39.4441 162.705L40.6525 163.405C40.7363 163.454 40.8498 163.479 40.9632 163.479C41.0767 163.479 41.1901 163.454 41.274 163.405L42.4775 162.705C42.6501 162.606 42.6452 162.443 42.4775 162.345L41.2691 161.644C41.1852 161.595 41.0718 161.57 40.9583 161.57Z" + fill="#706F6F" /> + <path + d="M47.5331 156.658C47.4591 156.658 47.3901 156.643 47.3457 156.618L43.8091 154.576L44.9534 153.91C44.9978 153.886 45.0669 153.871 45.1409 153.871C45.2148 153.871 45.2839 153.886 45.3283 153.91L48.8649 155.952L47.7205 156.618C47.6712 156.643 47.6022 156.658 47.5331 156.658Z" + fill="white" /> + <path + d="M45.1359 154.112C45.1754 154.112 45.2001 154.122 45.205 154.122L48.3716 155.952L47.5972 156.401C47.5923 156.406 47.5676 156.411 47.5282 156.411C47.4887 156.411 47.4641 156.401 47.4641 156.401L44.2974 154.571L45.0718 154.122C45.0767 154.117 45.1014 154.112 45.1359 154.112ZM45.1359 153.619C45.0225 153.619 44.909 153.644 44.8252 153.693L43.6217 154.394C43.449 154.492 43.454 154.655 43.6266 154.754L47.2174 156.83C47.3062 156.88 47.4147 156.904 47.5282 156.904C47.6416 156.904 47.7551 156.88 47.8389 156.83L49.0424 156.13C49.2151 156.031 49.2151 155.868 49.0424 155.77L45.4516 153.693C45.3628 153.644 45.2494 153.619 45.1359 153.619Z" + fill="#706F6F" /> + <path + d="M43.2072 161.93C43.1332 161.93 43.0641 161.916 43.0198 161.891L41.8705 161.225L43.0148 160.559C43.0592 160.535 43.1283 160.52 43.2023 160.52C43.2762 160.52 43.3453 160.535 43.3946 160.559L44.5439 161.225L43.4045 161.891C43.3502 161.916 43.2812 161.93 43.2072 161.93Z" + fill="white" /> + <path + d="M43.1925 160.766C43.2319 160.766 43.2566 160.776 43.2566 160.776L44.0408 161.23L43.2664 161.679C43.2615 161.684 43.2368 161.689 43.1974 161.689C43.1579 161.689 43.1333 161.679 43.1333 161.679L42.349 161.225L43.1234 160.776C43.1333 160.771 43.1579 160.766 43.1925 160.766ZM43.1925 160.273C43.079 160.273 42.9656 160.298 42.8817 160.347L41.6782 161.047C41.5055 161.146 41.5105 161.309 41.6831 161.407L42.8916 162.108C42.9754 162.157 43.0889 162.182 43.2023 162.182C43.3158 162.182 43.4292 162.157 43.5131 162.108L44.7166 161.407C44.8892 161.309 44.8843 161.146 44.7166 161.047L43.5081 160.347C43.4193 160.298 43.3059 160.273 43.1925 160.273Z" + fill="#706F6F" /> + <path + d="M45.5897 163.306C45.5158 163.306 45.4467 163.292 45.4023 163.267L44.2531 162.601L45.3974 161.935C45.4418 161.911 45.5108 161.896 45.5848 161.896C45.6588 161.896 45.7279 161.911 45.7723 161.935L46.9265 162.601L45.7821 163.267C45.7328 163.292 45.6637 163.306 45.5897 163.306Z" + fill="white" /> + <path + d="M45.5799 162.142C45.6194 162.142 45.644 162.152 45.644 162.152L46.4283 162.606L45.6539 163.055C45.6489 163.06 45.6243 163.065 45.5848 163.065C45.5454 163.065 45.5207 163.055 45.5207 163.055L44.7364 162.601L45.5108 162.152C45.5158 162.147 45.5404 162.142 45.5799 162.142ZM45.5799 161.649C45.4664 161.649 45.353 161.674 45.2691 161.723L44.0656 162.424C43.893 162.522 43.8979 162.685 44.0656 162.784L45.2741 163.484C45.3579 163.533 45.4714 163.558 45.5848 163.558C45.6983 163.558 45.8117 163.533 45.8956 163.484L47.0991 162.784C47.2717 162.685 47.2668 162.522 47.0991 162.424L45.8906 161.723C45.8068 161.674 45.6933 161.649 45.5799 161.649Z" + fill="#706F6F" /> + <path + d="M47.6809 159.331C47.607 159.331 47.5379 159.316 47.4935 159.292L46.3442 158.626L49.723 156.663C49.7674 156.638 49.8364 156.623 49.9104 156.623C49.9844 156.623 50.0535 156.638 50.0978 156.663L51.2471 157.328L47.8684 159.296C47.8191 159.316 47.75 159.331 47.6809 159.331Z" + fill="white" /> + <path + d="M49.9054 156.865C49.9448 156.865 49.9695 156.875 49.9744 156.875L50.7587 157.328L47.7499 159.079C47.745 159.084 47.7203 159.089 47.6858 159.089C47.6463 159.089 47.6216 159.079 47.6216 159.079L46.8374 158.626L49.8462 156.88C49.8413 156.875 49.8659 156.865 49.9054 156.865ZM49.9054 156.372C49.7919 156.372 49.6785 156.396 49.5946 156.446L46.1567 158.443C45.9841 158.542 45.989 158.705 46.1616 158.803L47.3701 159.504C47.4539 159.553 47.5674 159.578 47.6808 159.578C47.7943 159.578 47.9077 159.553 47.9916 159.504L51.4295 157.506C51.6021 157.407 51.5972 157.245 51.4295 157.146L50.221 156.446C50.1323 156.396 50.0188 156.372 49.9054 156.372Z" + fill="#706F6F" /> + <path + d="M52.298 159.41C52.2241 159.41 52.155 159.395 52.1106 159.37L50.9564 158.705L52.1007 158.039C52.1451 158.014 52.2142 157.999 52.2882 157.999C52.3622 157.999 52.4312 158.014 52.4756 158.039L53.6249 158.705L52.4805 159.37C52.4411 159.395 52.372 159.41 52.298 159.41Z" + fill="white" /> + <path + d="M52.2881 158.241C52.3276 158.241 52.3523 158.251 52.3523 158.251L53.1365 158.705L52.3621 159.154C52.3572 159.158 52.3325 159.163 52.2931 159.163C52.2536 159.163 52.2289 159.154 52.2289 159.154L51.4447 158.7L52.2191 158.251C52.2289 158.251 52.2536 158.241 52.2881 158.241ZM52.2881 157.748C52.1747 157.748 52.0612 157.772 51.9774 157.822L50.7739 158.522C50.6012 158.621 50.6062 158.784 50.7739 158.882L51.9823 159.583C52.0662 159.632 52.1796 159.657 52.2931 159.657C52.4065 159.657 52.52 159.632 52.6038 159.583L53.8073 158.882C53.98 158.784 53.975 158.621 53.8073 158.522L52.5989 157.822C52.515 157.772 52.4016 157.748 52.2881 157.748Z" + fill="#706F6F" /> + <path + d="M45.4419 160.633C45.3679 160.633 45.2989 160.618 45.2545 160.594L44.1052 159.928L45.2496 159.262C45.294 159.237 45.363 159.222 45.437 159.222C45.511 159.222 45.58 159.237 45.6244 159.262L46.7737 159.928L45.6294 160.594C45.585 160.618 45.5159 160.633 45.4419 160.633Z" + fill="white" /> + <path + d="M45.4319 159.464C45.4714 159.464 45.4961 159.474 45.4961 159.474L46.2803 159.928L45.5059 160.377C45.501 160.382 45.4763 160.387 45.4369 160.387C45.3974 160.387 45.3728 160.377 45.3728 160.377L44.5885 159.923L45.3629 159.474C45.3678 159.474 45.3925 159.464 45.4319 159.464ZM45.4319 158.971C45.3185 158.971 45.205 158.996 45.1212 159.045L43.9177 159.745C43.745 159.844 43.75 160.007 43.9226 160.105L45.1311 160.806C45.2149 160.855 45.3284 160.88 45.4418 160.88C45.5553 160.88 45.6687 160.855 45.7525 160.806L46.9561 160.105C47.1287 160.007 47.1238 159.844 46.9561 159.745L45.7476 159.045C45.6588 158.996 45.5454 158.971 45.4319 158.971Z" + fill="#706F6F" /> + <path + d="M50.0636 160.707C49.9896 160.707 49.9206 160.692 49.8762 160.668L48.7269 160.002L49.8663 159.336C49.9107 159.311 49.9847 159.297 50.0538 159.297C50.1278 159.297 50.1968 159.311 50.2412 159.336L51.3905 160.002L50.2511 160.668C50.2067 160.692 50.1376 160.707 50.0636 160.707Z" + fill="white" /> + <path + d="M50.0538 159.543C50.0932 159.543 50.1179 159.553 50.1179 159.553L50.9021 160.007L50.1278 160.456C50.1228 160.46 50.0982 160.465 50.0636 160.465C50.0242 160.465 49.9995 160.456 49.9995 160.456L49.2152 160.002L49.9847 159.553C49.9896 159.548 50.0143 159.543 50.0538 159.543ZM50.0538 159.05C49.9403 159.05 49.8269 159.074 49.743 159.124L48.5395 159.824C48.3669 159.923 48.3718 160.086 48.5395 160.184L49.748 160.885C49.8318 160.934 49.9453 160.959 50.0587 160.959C50.1721 160.959 50.2856 160.934 50.3694 160.885L51.573 160.184C51.7456 160.086 51.7456 159.923 51.573 159.824L50.3645 159.124C50.2757 159.074 50.1672 159.05 50.0538 159.05Z" + fill="#706F6F" /> + <path + d="M47.8242 162.009C47.7503 162.009 47.6812 161.994 47.6368 161.97L46.4875 161.304L47.6319 160.638C47.6763 160.613 47.7453 160.598 47.8193 160.598C47.8933 160.598 47.9624 160.613 48.0067 160.638L49.156 161.304L48.0117 161.97C47.9673 161.994 47.8982 162.009 47.8242 162.009Z" + fill="white" /> + <path + d="M47.8144 160.84C47.8539 160.84 47.8785 160.85 47.8785 160.85L48.6628 161.304L47.8884 161.753C47.8834 161.758 47.8588 161.763 47.8193 161.763C47.7799 161.763 47.7552 161.753 47.7552 161.753L46.9709 161.299L47.7453 160.85C47.7552 160.85 47.7799 160.84 47.8144 160.84ZM47.8144 160.347C47.7009 160.347 47.5875 160.372 47.5036 160.421L46.3001 161.121C46.1275 161.22 46.1324 161.383 46.3001 161.481L47.5086 162.182C47.5924 162.231 47.7059 162.256 47.8193 162.256C47.9328 162.256 48.0462 162.231 48.1301 162.182L49.3336 161.481C49.5062 161.383 49.5013 161.22 49.3336 161.121L48.1251 160.421C48.0413 160.372 47.9278 160.347 47.8144 160.347Z" + fill="#706F6F" /> + <path + d="M45.2938 157.955C45.2198 157.955 45.1507 157.94 45.1063 157.915L43.9521 157.25L45.0915 156.584C45.1359 156.559 45.205 156.544 45.279 156.544C45.353 156.544 45.422 156.559 45.4713 156.584L46.6206 157.25L45.4812 157.915C45.4368 157.94 45.3678 157.955 45.2938 157.955Z" + fill="white" /> + <path + d="M45.284 156.791C45.3235 156.791 45.3481 156.801 45.3481 156.801L46.1324 157.255L45.358 157.703C45.353 157.708 45.3284 157.713 45.2939 157.713C45.2593 157.713 45.2297 157.703 45.2297 157.703L44.4455 157.25L45.2199 156.801C45.2248 156.796 45.2495 156.791 45.284 156.791ZM45.284 156.298C45.1705 156.298 45.0571 156.322 44.9732 156.372L43.7697 157.072C43.5971 157.171 43.602 157.333 43.7747 157.432L44.9831 158.132C45.0719 158.182 45.1804 158.206 45.2939 158.206C45.4073 158.206 45.5207 158.182 45.6046 158.132L46.8081 157.432C46.9808 157.333 46.9808 157.171 46.8081 157.072L45.5997 156.372C45.5109 156.322 45.3974 156.298 45.284 156.298Z" + fill="#706F6F" /> + <path + d="M43.0594 159.257C42.9854 159.257 42.9163 159.242 42.8719 159.217L41.7227 158.552L42.867 157.886C42.9114 157.861 42.9804 157.846 43.0544 157.846C43.1284 157.846 43.1975 157.861 43.2419 157.886L44.3911 158.552L43.2468 159.217C43.2024 159.242 43.1284 159.257 43.0594 159.257Z" + fill="white" /> + <path + d="M43.0445 158.088C43.084 158.088 43.1086 158.098 43.1086 158.098L43.8929 158.552L43.1185 159C43.1136 159.005 43.0889 159.01 43.0544 159.01C43.0198 159.01 42.9903 159 42.9903 159L42.206 158.547L42.9804 158.098C42.9853 158.098 43.01 158.088 43.0445 158.088ZM43.0445 157.595C42.9311 157.595 42.8176 157.619 42.7338 157.669L41.5302 158.369C41.3576 158.468 41.3625 158.631 41.5352 158.729L42.7436 159.43C42.8324 159.479 42.9409 159.504 43.0544 159.504C43.1678 159.504 43.2813 159.479 43.3651 159.43L44.5686 158.729C44.7413 158.631 44.7413 158.468 44.5686 158.369L43.3602 157.669C43.2714 157.619 43.158 157.595 43.0445 157.595Z" + fill="#706F6F" /> + <path + d="M38.4376 159.178C38.3636 159.178 38.2945 159.163 38.2501 159.139L37.0959 158.473L38.2403 157.807C38.2847 157.782 38.3537 157.767 38.4277 157.767C38.5017 157.767 38.5708 157.782 38.6201 157.807L39.7693 158.473L38.625 159.139C38.5806 159.163 38.5116 159.178 38.4376 159.178Z" + fill="white" /> + <path + d="M38.4278 158.009C38.4673 158.009 38.4919 158.019 38.4969 158.019L39.2811 158.473L38.5067 158.922C38.5018 158.927 38.4771 158.931 38.4426 158.931C38.4031 158.931 38.3785 158.922 38.3785 158.922L37.5942 158.468L38.3686 158.019C38.3686 158.019 38.3933 158.009 38.4278 158.009ZM38.4278 157.516C38.3144 157.516 38.2009 157.541 38.1171 157.59L36.9135 158.29C36.7409 158.389 36.7458 158.552 36.9185 158.65L38.1269 159.351C38.2157 159.4 38.3291 159.425 38.4377 159.425C38.5511 159.425 38.6646 159.4 38.7484 159.351L39.9519 158.65C40.1246 158.552 40.1196 158.389 39.947 158.29L38.7385 157.59C38.6547 157.545 38.5412 157.516 38.4278 157.516Z" + fill="#706F6F" /> + <path + d="M40.82 160.554C40.746 160.554 40.6769 160.539 40.6325 160.515L39.4833 159.849L40.6276 159.183C40.672 159.158 40.741 159.144 40.815 159.144C40.889 159.144 40.9581 159.158 41.0074 159.183L42.1567 159.849L41.0123 160.515C40.963 160.539 40.894 160.554 40.82 160.554Z" + fill="white" /> + <path + d="M40.8103 159.385C40.8497 159.385 40.8744 159.395 40.8744 159.395L41.6586 159.849L40.8842 160.298C40.8793 160.303 40.8546 160.308 40.8201 160.308C40.7856 160.308 40.756 160.298 40.756 160.298L39.9717 159.844L40.7461 159.395C40.7511 159.395 40.7757 159.385 40.8103 159.385ZM40.8103 158.892C40.6968 158.892 40.5834 158.917 40.4995 158.966L39.296 159.666C39.1233 159.765 39.1283 159.928 39.3009 160.027L40.5094 160.727C40.5982 160.776 40.7067 160.801 40.8201 160.801C40.9336 160.801 41.047 160.776 41.1309 160.727L42.3344 160.027C42.507 159.928 42.507 159.765 42.3344 159.666L41.1259 158.966C41.0372 158.922 40.9237 158.892 40.8103 158.892Z" + fill="#706F6F" /> + <path + d="M38.5856 161.856C38.5116 161.856 38.4426 161.841 38.3982 161.817L37.2489 161.151L38.3932 160.485C38.4376 160.46 38.5067 160.446 38.5807 160.446C38.6547 160.446 38.7237 160.46 38.7681 160.49L39.9174 161.156L38.778 161.822C38.7286 161.837 38.6596 161.856 38.5856 161.856Z" + fill="white" /> + <path + d="M38.5756 160.687C38.6151 160.687 38.6397 160.697 38.6447 160.697L39.4289 161.151L38.6545 161.6C38.6496 161.605 38.625 161.61 38.5855 161.61C38.551 161.61 38.5263 161.6 38.5214 161.6L37.7371 161.146L38.5115 160.697C38.5115 160.692 38.5362 160.687 38.5756 160.687ZM38.5756 160.194C38.4622 160.194 38.3487 160.219 38.2649 160.268L37.0614 160.968C36.8887 161.067 36.8887 161.23 37.0614 161.329L38.2698 162.029C38.3586 162.078 38.4671 162.103 38.5806 162.103C38.694 162.103 38.8075 162.078 38.8913 162.029L40.0948 161.329C40.2675 161.23 40.2675 161.067 40.0948 160.968L38.8864 160.268C38.8025 160.219 38.6891 160.194 38.5756 160.194Z" + fill="#706F6F" /> + <path + d="M32.1734 171.105C32.0994 171.105 32.0303 171.09 31.9859 171.065L30.8367 170.399L31.9761 169.733C32.0205 169.709 32.0895 169.694 32.1635 169.694C32.2375 169.694 32.3065 169.709 32.3509 169.733L33.5002 170.399L32.3559 171.065C32.3164 171.09 32.2474 171.105 32.1734 171.105Z" + fill="white" /> + <path + d="M32.1635 169.936C32.203 169.936 32.2276 169.945 32.2276 169.945L33.0119 170.399L32.2375 170.848C32.2326 170.853 32.2079 170.858 32.1734 170.858C32.1339 170.858 32.1093 170.848 32.1093 170.848L31.325 170.394L32.0945 169.945C32.0994 169.945 32.1241 169.936 32.1635 169.936ZM32.1635 169.442C32.0501 169.442 31.9366 169.467 31.8528 169.516L30.6492 170.217C30.4766 170.315 30.4815 170.478 30.6492 170.577L31.8577 171.277C31.9416 171.327 32.055 171.351 32.1684 171.351C32.2819 171.351 32.3953 171.327 32.4792 171.277L33.6827 170.577C33.8554 170.478 33.8554 170.315 33.6827 170.217L32.4743 169.516C32.3855 169.467 32.277 169.442 32.1635 169.442Z" + fill="#706F6F" /> + <path + d="M34.4078 169.808C34.3338 169.808 34.2648 169.793 34.2204 169.768L33.0662 169.103L34.2105 168.437C34.2549 168.412 34.3239 168.397 34.3979 168.397C34.4719 168.397 34.541 168.412 34.5854 168.437L35.7346 169.103L34.5903 169.768C34.5508 169.788 34.4818 169.808 34.4078 169.808Z" + fill="white" /> + <path + d="M34.3979 168.639C34.4373 168.639 34.462 168.649 34.462 168.649L35.2462 169.102L34.4719 169.551C34.4669 169.556 34.4423 169.561 34.4028 169.561C34.3633 169.561 34.3387 169.551 34.3387 169.551L33.5544 169.097L34.3288 168.649C34.3387 168.644 34.3584 168.639 34.3979 168.639ZM34.3979 168.146C34.2844 168.146 34.171 168.17 34.0871 168.219L32.8836 168.92C32.711 169.019 32.7159 169.181 32.8836 169.28L34.0921 169.98C34.1759 170.03 34.2894 170.054 34.4028 170.054C34.5162 170.054 34.6297 170.03 34.7135 169.98L35.917 169.28C36.0897 169.181 36.0847 169.019 35.917 168.92L34.7086 168.219C34.6248 168.17 34.5113 168.146 34.3979 168.146Z" + fill="#706F6F" /> + <path + d="M33.9685 161.778C33.8946 161.778 33.8255 161.763 33.7811 161.738L32.6318 161.072L33.7762 160.406C33.8206 160.382 33.8896 160.367 33.9636 160.367C34.0376 160.367 34.1067 160.382 34.156 160.406L35.3053 161.072L34.1609 161.738C34.1066 161.763 34.0376 161.778 33.9685 161.778Z" + fill="white" /> + <path + d="M33.9538 160.609C33.9933 160.609 34.0179 160.619 34.0229 160.619L34.8071 161.072L34.0327 161.521C34.0278 161.526 34.0031 161.531 33.9686 161.531C33.9291 161.531 33.9045 161.521 33.8995 161.521L33.1153 161.067L33.8897 160.619C33.8946 160.619 33.9193 160.609 33.9538 160.609ZM33.9538 160.115C33.8404 160.115 33.7269 160.14 33.643 160.189L32.4395 160.89C32.2669 160.989 32.2718 161.151 32.4445 161.25L33.6529 161.95C33.7417 162 33.8551 162.024 33.9686 162.024C34.082 162.024 34.1955 162 34.2793 161.95L35.4829 161.25C35.6555 161.151 35.6506 160.989 35.4779 160.89L34.2695 160.189C34.1807 160.145 34.0672 160.115 33.9538 160.115Z" + fill="#706F6F" /> + <path + d="M31.7292 163.08C31.6552 163.08 31.5862 163.065 31.5368 163.04L30.3876 162.374L31.527 161.708C31.5714 161.684 31.6404 161.669 31.7144 161.669C31.7884 161.669 31.8575 161.684 31.9068 161.708L33.056 162.374L31.9166 163.04C31.8722 163.06 31.8032 163.08 31.7292 163.08Z" + fill="white" /> + <path + d="M31.7195 161.911C31.759 161.911 31.7837 161.921 31.7837 161.921L32.5679 162.374L31.7935 162.823C31.7886 162.828 31.7639 162.833 31.7294 162.833C31.69 162.833 31.6653 162.823 31.6604 162.823L30.8761 162.369L31.6456 161.921C31.6554 161.916 31.6801 161.911 31.7195 161.911ZM31.7195 161.417C31.6061 161.417 31.4926 161.442 31.4088 161.491L30.2053 162.192C30.0326 162.291 30.0376 162.453 30.2102 162.552L31.4187 163.252C31.5074 163.302 31.6209 163.326 31.7343 163.326C31.8478 163.326 31.9612 163.302 32.0451 163.252L33.2486 162.552C33.4212 162.453 33.4212 162.291 33.2486 162.192L32.0401 161.491C31.9464 161.442 31.833 161.417 31.7195 161.417Z" + fill="#706F6F" /> + <path + d="M36.3513 163.154C36.2773 163.154 36.2082 163.139 36.1638 163.114L35.0096 162.448L36.154 161.782C36.1984 161.758 36.2674 161.743 36.3414 161.743C36.4154 161.743 36.4845 161.758 36.5288 161.782L37.6781 162.448L36.5338 163.114C36.4894 163.139 36.4203 163.154 36.3513 163.154Z" + fill="white" /> + <path + d="M36.3364 161.985C36.3758 161.985 36.4005 161.995 36.4054 161.995L37.1897 162.448L36.4153 162.897C36.4104 162.902 36.3857 162.907 36.3512 162.907C36.3117 162.907 36.287 162.897 36.287 162.897L35.5028 162.443L36.2772 161.995C36.2772 161.995 36.3018 161.985 36.3364 161.985ZM36.3364 161.491C36.2229 161.491 36.1095 161.516 36.0256 161.565L34.8221 162.266C34.6495 162.364 34.6544 162.527 34.827 162.626L36.0355 163.326C36.1243 163.376 36.2328 163.4 36.3462 163.4C36.4597 163.4 36.5731 163.376 36.657 163.326L37.8605 162.626C38.0331 162.527 38.0331 162.364 37.8605 162.266L36.652 161.565C36.5633 161.521 36.4498 161.491 36.3364 161.491Z" + fill="#706F6F" /> + <path + d="M29.495 164.377C29.421 164.377 29.352 164.362 29.3076 164.338L28.1583 163.672L29.2977 163.006C29.3421 162.981 29.4112 162.966 29.4852 162.966C29.5591 162.966 29.6282 162.981 29.6726 163.006L30.8219 163.672L29.6825 164.338C29.6381 164.362 29.5641 164.377 29.495 164.377Z" + fill="white" /> + <path + d="M29.4803 163.208C29.5197 163.208 29.5444 163.218 29.5493 163.218L30.3336 163.672L29.5641 164.121C29.5592 164.126 29.5345 164.13 29.4951 164.13C29.4556 164.13 29.431 164.121 29.431 164.121L28.6467 163.667L29.4211 163.218C29.4211 163.218 29.4458 163.208 29.4803 163.208ZM29.4803 162.715C29.3668 162.715 29.2534 162.739 29.1695 162.789L27.966 163.489C27.7934 163.588 27.7934 163.751 27.966 163.849L29.1745 164.55C29.2633 164.599 29.3767 164.624 29.4852 164.624C29.5987 164.624 29.7121 164.599 29.796 164.55L30.9995 163.849C31.1721 163.751 31.1672 163.588 30.9945 163.489L29.7861 162.789C29.7072 162.739 29.5937 162.715 29.4803 162.715Z" + fill="#706F6F" /> + <path + d="M34.1117 164.456C34.0377 164.456 33.9687 164.441 33.9243 164.416L32.775 163.751L33.9144 163.085C33.9588 163.06 34.0279 163.045 34.1019 163.045C34.1758 163.045 34.2449 163.06 34.2942 163.085L35.4435 163.751L34.2992 164.416C34.2548 164.436 34.1857 164.456 34.1117 164.456Z" + fill="white" /> + <path + d="M34.1019 163.287C34.1413 163.287 34.166 163.297 34.166 163.297L34.9503 163.751L34.1759 164.199C34.1709 164.204 34.1463 164.209 34.1068 164.209C34.0723 164.209 34.0427 164.199 34.0427 164.199L33.2584 163.746L34.0279 163.297C34.0427 163.292 34.0674 163.287 34.1019 163.287ZM34.1019 162.794C33.9884 162.794 33.875 162.818 33.7911 162.868L32.5876 163.568C32.415 163.667 32.4199 163.83 32.5925 163.928L33.801 164.629C33.8898 164.678 33.9983 164.703 34.1117 164.703C34.2252 164.703 34.3386 164.678 34.4225 164.629L35.626 163.928C35.7987 163.83 35.7987 163.667 35.626 163.568L34.4176 162.868C34.3288 162.818 34.2153 162.794 34.1019 162.794Z" + fill="#706F6F" /> + <path + d="M27.2556 165.679C27.1816 165.679 27.1125 165.664 27.0632 165.64L25.9139 164.974L27.0583 164.308C27.1027 164.283 27.1717 164.268 27.2457 164.268C27.3197 164.268 27.3888 164.283 27.4331 164.308L28.5873 164.974L27.443 165.64C27.3986 165.659 27.3296 165.679 27.2556 165.679Z" + fill="white" /> + <path + d="M27.2458 164.51C27.2853 164.51 27.3099 164.52 27.3099 164.52L28.0942 164.974L27.3198 165.423C27.3149 165.428 27.2902 165.432 27.2557 165.432C27.2162 165.432 27.1915 165.423 27.1866 165.423L26.4023 164.969L27.1767 164.52C27.1866 164.515 27.2113 164.51 27.2458 164.51ZM27.2458 164.017C27.1324 164.017 27.0189 164.041 26.9351 164.091L25.7315 164.791C25.5589 164.89 25.5638 165.053 25.7365 165.151L26.9449 165.852C27.0337 165.901 27.1472 165.926 27.2606 165.926C27.374 165.926 27.4875 165.901 27.5713 165.852L28.7749 165.151C28.9475 165.053 28.9426 164.89 28.7699 164.791L27.5615 164.091C27.4727 164.041 27.3592 164.017 27.2458 164.017Z" + fill="#706F6F" /> + <path + d="M31.8774 165.753C31.8034 165.753 31.7343 165.738 31.6899 165.714L30.5406 165.048L31.6801 164.382C31.7244 164.357 31.7935 164.342 31.8675 164.342C31.9415 164.342 32.0105 164.357 32.0599 164.387L33.2091 165.053L32.0697 165.718C32.0204 165.738 31.9464 165.753 31.8774 165.753Z" + fill="white" /> + <path + d="M31.8674 164.584C31.9069 164.584 31.9315 164.594 31.9364 164.594L32.7207 165.048L31.9463 165.497C31.9414 165.502 31.9167 165.506 31.8773 165.506C31.8427 165.506 31.8181 165.497 31.8131 165.497L31.0289 165.043L31.8033 164.594C31.8033 164.594 31.8279 164.584 31.8674 164.584ZM31.8674 164.091C31.7539 164.091 31.6405 164.115 31.5566 164.165L30.3531 164.865C30.1805 164.964 30.1805 165.127 30.3531 165.225L31.5616 165.926C31.6504 165.975 31.7589 166 31.8723 166C31.9858 166 32.0992 165.975 32.1831 165.926L33.3866 165.225C33.5592 165.127 33.5592 164.964 33.3866 164.865L32.1781 164.165C32.0894 164.12 31.9759 164.091 31.8674 164.091Z" + fill="#706F6F" /> + <path + d="M25.0212 166.976C24.9472 166.976 24.8782 166.962 24.8288 166.932L23.6796 166.266L24.819 165.6C24.8634 165.576 24.9324 165.561 25.0064 165.561C25.0804 165.561 25.1494 165.576 25.1938 165.6L26.3431 166.266L25.2037 166.932C25.1642 166.962 25.0952 166.976 25.0212 166.976Z" + fill="white" /> + <path + d="M25.0114 165.807C25.0509 165.807 25.0755 165.817 25.0755 165.817L25.8598 166.271L25.0854 166.72C25.0805 166.725 25.0558 166.73 25.0213 166.73C24.9818 166.73 24.9572 166.72 24.9522 166.72L24.168 166.266L24.9374 165.817C24.9473 165.817 24.972 165.807 25.0114 165.807ZM25.0114 165.314C24.898 165.314 24.7845 165.339 24.7007 165.388L23.4972 166.088C23.3245 166.187 23.3294 166.35 23.5021 166.448L24.7105 167.149C24.7993 167.198 24.9128 167.223 25.0262 167.223C25.1397 167.223 25.2531 167.198 25.337 167.149L26.5405 166.448C26.7131 166.35 26.7131 166.187 26.5405 166.088L25.332 165.388C25.2383 165.339 25.1249 165.314 25.0114 165.314Z" + fill="#706F6F" /> + <path + d="M29.6381 167.055C29.5641 167.055 29.495 167.04 29.4507 167.016L28.3014 166.35L29.4457 165.684C29.4901 165.659 29.5592 165.645 29.6332 165.645C29.7071 165.645 29.7762 165.659 29.8255 165.684L30.9748 166.35L29.8305 167.016C29.7811 167.035 29.7121 167.055 29.6381 167.055Z" + fill="white" /> + <path + d="M29.6281 165.886C29.6676 165.886 29.6922 165.896 29.6922 165.896L30.4765 166.35L29.7021 166.799C29.6972 166.804 29.6725 166.809 29.6331 166.809C29.5985 166.809 29.5689 166.799 29.5689 166.799L28.7847 166.345L29.5591 165.896C29.5689 165.891 29.5936 165.886 29.6281 165.886ZM29.6281 165.393C29.5147 165.393 29.4012 165.418 29.3174 165.467L28.1139 166.167C27.9412 166.266 27.9461 166.429 28.1188 166.528L29.3272 167.228C29.416 167.277 29.5245 167.302 29.638 167.302C29.7514 167.302 29.8649 167.277 29.9487 167.228L31.1523 166.528C31.3249 166.429 31.3249 166.266 31.1523 166.167L29.9438 165.467C29.855 165.418 29.7416 165.393 29.6281 165.393Z" + fill="#706F6F" /> + <path + d="M34.2599 167.129C34.1859 167.129 34.1169 167.114 34.0725 167.09L32.9232 166.424L34.0675 165.758C34.1119 165.733 34.181 165.719 34.255 165.719C34.329 165.719 34.398 165.733 34.4474 165.763L35.5966 166.429L34.4572 167.095C34.403 167.114 34.3339 167.129 34.2599 167.129Z" + fill="white" /> + <path + d="M34.25 165.96C34.2894 165.96 34.3141 165.97 34.319 165.97L35.1033 166.424L34.3338 166.873C34.3289 166.878 34.3042 166.883 34.2647 166.883C34.2253 166.883 34.2006 166.873 34.2006 166.873L33.4164 166.419L34.1908 165.97C34.1908 165.97 34.2105 165.96 34.25 165.96ZM34.25 165.467C34.1365 165.467 34.0231 165.492 33.9392 165.541L32.7357 166.241C32.563 166.34 32.563 166.503 32.7357 166.602L33.9441 167.302C34.028 167.351 34.1414 167.376 34.2549 167.376C34.3683 167.376 34.4818 167.351 34.5656 167.302L35.7692 166.602C35.9418 166.503 35.9369 166.34 35.7692 166.241L34.5607 165.541C34.4768 165.497 34.3634 165.467 34.25 165.467Z" + fill="#706F6F" /> + <path + d="M27.4035 168.353C27.3295 168.353 27.2604 168.338 27.216 168.313L26.0668 167.647L27.2062 166.982C27.2506 166.957 27.3196 166.942 27.3936 166.942C27.4676 166.942 27.5367 166.957 27.581 166.982L28.7303 167.647L27.586 168.313C27.5465 168.338 27.4775 168.353 27.4035 168.353Z" + fill="white" /> + <path + d="M27.3935 167.184C27.433 167.184 27.4576 167.194 27.4576 167.194L28.2419 167.648L27.4675 168.096C27.4626 168.101 27.4379 168.106 27.4034 168.106C27.3688 168.106 27.3392 168.096 27.3392 168.096L26.555 167.643L27.3244 167.194C27.3294 167.194 27.354 167.184 27.3935 167.184ZM27.3935 166.691C27.28 166.691 27.1666 166.715 27.0828 166.765L25.8792 167.465C25.7066 167.564 25.7115 167.726 25.8842 167.825L27.0926 168.526C27.1814 168.575 27.2899 168.6 27.4034 168.6C27.5168 168.6 27.6303 168.575 27.7141 168.526L28.9176 167.825C29.0903 167.726 29.0903 167.564 28.9176 167.465L27.7092 166.765C27.6204 166.715 27.5069 166.691 27.3935 166.691Z" + fill="#706F6F" /> + <path + d="M32.0254 168.432C31.9514 168.432 31.8824 168.417 31.838 168.392L30.6887 167.726L31.833 167.06C31.8774 167.036 31.9465 167.021 32.0205 167.021C32.0945 167.021 32.1635 167.036 32.2079 167.06L33.3572 167.726L32.2128 168.392C32.1685 168.412 32.0994 168.432 32.0254 168.432Z" + fill="white" /> + <path + d="M32.0155 167.263C32.0549 167.263 32.0796 167.272 32.0845 167.272L32.8688 167.726L32.0944 168.175C32.0894 168.18 32.0648 168.185 32.0253 168.185C31.9859 168.185 31.9612 168.175 31.9612 168.175L31.1769 167.721L31.9513 167.272C31.9513 167.267 31.976 167.263 32.0155 167.263ZM32.0155 166.769C31.902 166.769 31.7886 166.794 31.7047 166.843L30.5012 167.544C30.3285 167.642 30.3335 167.805 30.5061 167.904L31.7146 168.604C31.7984 168.654 31.9119 168.678 32.0253 168.678C32.1388 168.678 32.2522 168.654 32.3361 168.604L33.5396 167.904C33.7122 167.805 33.7073 167.642 33.5396 167.544L32.3311 166.843C32.2374 166.794 32.124 166.769 32.0155 166.769Z" + fill="#706F6F" /> + <path + d="M28.4641 170.498C28.3901 170.498 28.3211 170.483 28.2767 170.459L27.1274 169.793L29.5937 168.357C29.6381 168.333 29.7071 168.318 29.7811 168.318C29.8551 168.318 29.9241 168.333 29.9685 168.357L31.1178 169.023L28.6516 170.459C28.6072 170.483 28.5332 170.498 28.4641 170.498Z" + fill="white" /> + <path + d="M29.7762 168.56C29.8156 168.56 29.8403 168.57 29.8403 168.57L30.6246 169.023L28.5283 170.242C28.5233 170.247 28.4987 170.251 28.4592 170.251C28.4198 170.251 28.3951 170.242 28.3951 170.242L27.6108 169.788L29.7071 168.57C29.717 168.57 29.7417 168.56 29.7762 168.56ZM29.7762 168.066C29.6627 168.066 29.5493 168.091 29.4654 168.14L26.94 169.61C26.7674 169.709 26.7674 169.872 26.94 169.97L28.1485 170.671C28.2323 170.72 28.3458 170.745 28.4592 170.745C28.5727 170.745 28.6861 170.72 28.77 170.671L31.2954 169.201C31.468 169.102 31.468 168.939 31.2954 168.841L30.0869 168.14C30.0031 168.091 29.8896 168.066 29.7762 168.066Z" + fill="#706F6F" /> + <path + d="M22.7866 168.279C22.7127 168.279 22.6436 168.264 22.5992 168.239L21.45 167.573L22.5943 166.907C22.6387 166.883 22.7077 166.868 22.7817 166.868C22.8557 166.868 22.9248 166.883 22.9691 166.907L24.1234 167.573L22.9839 168.239C22.9297 168.259 22.8557 168.279 22.7866 168.279Z" + fill="white" /> + <path + d="M22.7719 167.11C22.8114 167.11 22.8361 167.12 22.841 167.12L23.6253 167.573L22.8558 168.022C22.8509 168.027 22.8262 168.032 22.7867 168.032C22.7473 168.032 22.7226 168.022 22.7226 168.022L21.9383 167.568L22.7127 167.12C22.7127 167.115 22.7374 167.11 22.7719 167.11ZM22.7719 166.616C22.6585 166.616 22.545 166.641 22.4612 166.69L21.2577 167.391C21.085 167.49 21.085 167.652 21.2577 167.751L22.4661 168.451C22.5549 168.501 22.6634 168.525 22.7769 168.525C22.8903 168.525 23.0038 168.501 23.0876 168.451L24.2911 167.751C24.4638 167.652 24.4589 167.49 24.2862 167.391L23.0777 166.69C22.9988 166.641 22.8854 166.616 22.7719 166.616Z" + fill="#706F6F" /> + <path + d="M40.6771 157.881C40.6031 157.881 40.534 157.866 40.4847 157.841L39.3354 157.175L42.7142 155.212C42.7586 155.188 42.8276 155.173 42.9016 155.173C42.9756 155.173 43.0447 155.188 43.0891 155.212L44.2383 155.878L40.8596 157.846C40.8201 157.866 40.7461 157.881 40.6771 157.881Z" + fill="white" /> + <path + d="M42.9016 155.41C42.9411 155.41 42.9657 155.42 42.9657 155.42L43.75 155.873L40.7412 157.624C40.7362 157.629 40.7116 157.634 40.6771 157.634C40.6376 157.634 40.6129 157.624 40.6129 157.624L39.8287 157.171L42.8375 155.42C42.8375 155.42 42.8621 155.41 42.9016 155.41ZM42.9016 154.917C42.7881 154.917 42.6747 154.941 42.5908 154.99L39.1529 156.988C38.9803 157.087 38.9852 157.25 39.1578 157.348L40.3663 158.049C40.4551 158.098 40.5685 158.123 40.6771 158.123C40.7905 158.123 40.9039 158.098 40.9878 158.049L44.4257 156.051C44.5984 155.952 44.5984 155.79 44.4257 155.691L43.2173 154.99C43.1285 154.946 43.015 154.917 42.9016 154.917Z" + fill="#706F6F" /> + <path + d="M27.6995 173.705C27.6255 173.705 27.5564 173.69 27.5121 173.665L26.3628 172.999L29.7415 171.031C29.7859 171.007 29.855 170.992 29.929 170.992C30.0029 170.992 30.072 171.007 30.1164 171.031L31.2657 171.697L27.8869 173.66C27.8425 173.69 27.7735 173.705 27.6995 173.705Z" + fill="white" /> + <path + d="M29.924 171.238C29.9635 171.238 29.9882 171.248 29.9882 171.248L30.7724 171.702L27.7636 173.448C27.7587 173.453 27.734 173.458 27.6946 173.458C27.6551 173.458 27.6304 173.448 27.6304 173.448L26.8462 172.994L29.855 171.248C29.8649 171.243 29.8895 171.238 29.924 171.238ZM29.924 170.745C29.8106 170.745 29.6971 170.77 29.6133 170.819L26.1754 172.817C26.0027 172.915 26.0077 173.078 26.1754 173.177L27.3838 173.877C27.4677 173.927 27.5811 173.951 27.6946 173.951C27.808 173.951 27.9215 173.927 28.0053 173.877L31.4432 171.88C31.6159 171.781 31.6109 171.618 31.4432 171.52L30.2348 170.819C30.1509 170.77 30.0375 170.745 29.924 170.745Z" + fill="#706F6F" /> + <path + d="M38.7335 164.53C38.6595 164.53 38.5904 164.515 38.546 164.49L37.3918 163.824L38.5362 163.158C38.5806 163.134 38.6496 163.119 38.7236 163.119C38.7976 163.119 38.8667 163.134 38.916 163.158L40.0652 163.824L38.9209 164.49C38.8765 164.515 38.8075 164.53 38.7335 164.53Z" + fill="white" /> + <path + d="M38.7236 163.366C38.763 163.366 38.7877 163.375 38.7877 163.375L39.572 163.829L38.7976 164.278C38.7926 164.283 38.768 164.288 38.7285 164.288C38.6891 164.288 38.6644 164.278 38.6644 164.278L37.8801 163.824L38.6545 163.375C38.6595 163.37 38.6841 163.366 38.7236 163.366ZM38.7236 162.872C38.6101 162.872 38.4967 162.897 38.4128 162.946L37.2093 163.647C37.0367 163.745 37.0416 163.908 37.2142 164.007L38.4227 164.707C38.5065 164.756 38.62 164.781 38.7334 164.781C38.8469 164.781 38.9603 164.756 39.0442 164.707L40.2477 164.007C40.4203 163.908 40.4154 163.745 40.2477 163.647L39.0393 162.946C38.9505 162.897 38.837 162.872 38.7236 162.872Z" + fill="#706F6F" /> + <path + d="M36.4991 165.832C36.4251 165.832 36.356 165.817 36.3116 165.792L35.1624 165.126L36.3018 164.461C36.3461 164.436 36.4152 164.421 36.4892 164.421C36.5632 164.421 36.6322 164.436 36.6766 164.461L37.8259 165.126L36.6816 165.792C36.6421 165.812 36.5681 165.832 36.4991 165.832Z" + fill="white" /> + <path + d="M36.4843 164.663C36.5238 164.663 36.5484 164.673 36.5484 164.673L37.3327 165.127L36.5583 165.575C36.5534 165.58 36.5287 165.585 36.4893 165.585C36.4498 165.585 36.4251 165.575 36.4251 165.575L35.6409 165.122L36.4103 164.673C36.4251 164.668 36.4498 164.663 36.4843 164.663ZM36.4843 164.17C36.3709 164.17 36.2574 164.194 36.1736 164.244L34.9701 164.944C34.7974 165.043 34.8024 165.205 34.975 165.304L36.1834 166.005C36.2673 166.054 36.3807 166.079 36.4942 166.079C36.6076 166.079 36.7211 166.054 36.8049 166.005L38.0085 165.304C38.1811 165.205 38.1811 165.043 38.0085 164.944L36.8 164.244C36.7112 164.194 36.5978 164.17 36.4843 164.17Z" + fill="#706F6F" /> + <path + d="M36.6422 168.505C36.5683 168.505 36.4992 168.491 36.4548 168.466L35.3055 167.8L43.1038 163.262C43.1482 163.237 43.2172 163.223 43.2912 163.223C43.3652 163.223 43.4343 163.237 43.4786 163.262L44.6279 163.928L36.8297 168.466C36.7853 168.491 36.7162 168.505 36.6422 168.505Z" + fill="white" /> + <path + d="M43.2911 163.469C43.3306 163.469 43.3552 163.479 43.3552 163.479L44.1395 163.933L36.7112 168.254C36.7063 168.259 36.6816 168.264 36.6421 168.264C36.6027 168.264 36.578 168.254 36.578 168.254L35.7938 167.8L43.227 163.479C43.2319 163.474 43.2566 163.469 43.2911 163.469ZM43.2911 162.976C43.1777 162.976 43.0642 163.001 42.9804 163.05L35.118 167.618C34.9454 167.716 34.9454 167.879 35.118 167.978L36.3265 168.678C36.4103 168.727 36.5238 168.752 36.6372 168.752C36.7507 168.752 36.8641 168.727 36.948 168.678L44.8103 164.111C44.983 164.012 44.978 163.849 44.8103 163.75L43.6019 163.05C43.518 163.001 43.4046 162.976 43.2911 162.976Z" + fill="#706F6F" /> + <path + d="M174.875 67.8423C175.692 67.6577 176.641 66.7988 177.299 66.3492C178.541 65.4904 184.122 65.2656 182.664 64.8563C182.139 64.7037 187.429 68.1232 187.295 70.1781C187.237 71.1333 187.47 72.9233 187.37 73.8946C187.295 74.6812 187.529 75.219 187.47 76.0217C186.929 75.5562 186.771 74.4324 186.054 74.0632C185.413 73.7501 184.463 74.2478 183.847 74.4003C183.289 74.5287 182.681 74.5127 182.164 74.7695C181.606 75.0505 181.506 75.4197 181.314 75.9655C180.981 76.8806 180.831 77.6111 180.773 78.5743C180.423 77.9562 180.115 77.5067 179.648 76.9288C179.182 76.3669 178.466 76.11 177.807 75.7167C176.141 74.6893 175.208 73.6056 175.092 71.5748C175.017 70.451 175.558 68.8296 174.875 67.8423Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" + fill="white" /> + <path + d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" + fill="white" /> + <path + d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" + fill="white" /> + <path + d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" + fill="white" /> + <path + d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" + fill="white" /> + <path + d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" + fill="white" /> + <path + d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" + stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M171.976 67.4891C173.759 67.3768 174.359 68.2918 175.525 69.1908C177.483 70.6999 177.774 72.811 178.216 74.8097C178.624 76.68 177.632 79.7944 175.175 79.4733C172.31 79.0961 170.818 77.4746 169.652 75.1228C169.094 73.9669 168.894 72.0083 169.052 70.6999C169.144 69.841 170.535 67.4651 171.976 67.4891Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" + fill="white" /> + <path + d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" + fill="white" /> + <path + d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M174.708 73.14C174.692 72.9313 174.634 72.7146 174.417 72.6182C174.259 72.5621 174.109 72.6182 173.992 72.7306C173.667 73.0276 173.742 73.5333 174.05 73.8303C174.325 74.0952 174.65 73.9828 174.75 73.6457C174.85 73.2523 174.65 72.8269 174.267 72.6584C174.192 72.6423 174.134 72.6423 174.075 72.6985C173.767 73.1239 173.742 73.9507 174.442 74.0069C174.5 74.0069 174.559 73.9668 174.575 73.9106C174.708 73.5574 174.708 73.1801 174.475 72.8671C174.434 72.8109 174.317 72.7707 174.259 72.851C174.084 73.0597 173.892 73.5815 174.317 73.6537C174.492 73.6698 174.567 73.4289 174.392 73.3888C174.217 73.3727 174.409 73.0918 174.45 73.0356C174.375 73.0356 174.317 73.0196 174.234 73.0196C174.425 73.2845 174.409 73.5814 174.309 73.8784C174.35 73.8383 174.409 73.8222 174.442 73.7821C173.975 73.742 174.134 73.1079 174.309 72.8671C174.25 72.8831 174.175 72.9072 174.117 72.9072C174.35 73.0035 174.484 73.1881 174.484 73.445C174.484 73.5574 174.467 73.8222 174.292 73.7259C174.059 73.6135 173.984 73.2764 174.075 73.0757C174.117 73.0195 174.192 72.8911 174.267 72.9072C174.384 72.9072 174.425 73.0918 174.425 73.1881C174.475 73.3085 174.742 73.3085 174.708 73.14Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M174.625 73.7983C175.067 73.8545 175.325 74.1756 175.592 74.4726C175.867 74.7695 176.15 75.0505 176.483 75.2752C177.183 75.7649 177.957 76.1341 178.749 76.4311C179.54 76.7121 180.223 76.993 180.548 77.7957C180.823 78.4298 180.956 79.1201 181.073 79.8104C181.09 79.979 181.364 79.9068 181.348 79.7382C181.231 79.0078 181.056 78.3014 180.765 77.6111C180.473 76.9609 179.99 76.6238 179.315 76.3589C178.407 76.0057 177.491 75.6685 176.683 75.1067C176.241 74.8097 175.925 74.4565 175.575 74.0792C175.325 73.7982 175.05 73.6137 174.684 73.5575C174.534 73.5173 174.45 73.7742 174.625 73.7983Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M174.026 72.45C174.201 72.45 174.201 72.1851 174.026 72.1851C173.851 72.1931 173.851 72.45 174.026 72.45Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M174.142 72.4499C174.492 71.9844 174.317 71.278 174.317 70.7321C174.317 70.5636 174.042 70.5636 174.042 70.7321C174.042 71.2138 174.217 71.9041 173.909 72.3215C173.809 72.474 174.042 72.6024 174.142 72.4499Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M172.709 68.8697C171.86 68.7974 171.085 69.247 170.577 69.8811C170.019 70.6115 169.935 71.3581 170.11 72.2169C170.327 73.2604 170.61 74.328 171.177 75.2752C171.585 75.9816 172.168 76.6157 172.768 77.1615C173.351 77.6833 174.067 78.2211 174.883 78.2612C175.642 78.3013 176.258 77.7957 176.666 77.2338C177.133 76.5595 177.366 75.7407 177.399 74.938C177.441 74.0952 177.208 73.3888 176.874 72.6263C176.45 71.6952 176 70.6276 175.192 69.9613C174.534 69.4476 173.601 68.8135 172.709 68.8697C172.534 68.8697 172.534 69.1506 172.709 69.1346C173.467 69.0784 174.242 69.6001 174.8 70.0336C175.417 70.5232 175.825 71.1574 176.158 71.8477C176.508 72.538 176.916 73.2685 177.049 74.015C177.183 74.7454 177.124 75.508 176.874 76.2143C176.641 76.9047 176.158 77.6672 175.425 77.9481C174.667 78.2291 173.876 77.7635 173.309 77.314C172.035 76.3026 171.143 74.9782 170.693 73.4691C170.402 72.538 170.052 71.4544 170.502 70.5393C170.893 69.7205 171.726 69.0623 172.709 69.1586C172.884 69.1506 172.884 68.8857 172.709 68.8697Z" + fill="white" /> + <path + d="M172.709 68.8697C171.86 68.7974 171.085 69.247 170.577 69.8811C170.019 70.6115 169.935 71.3581 170.11 72.2169C170.327 73.2604 170.61 74.328 171.177 75.2752C171.585 75.9816 172.168 76.6157 172.768 77.1615C173.351 77.6833 174.067 78.2211 174.883 78.2612C175.642 78.3013 176.258 77.7957 176.666 77.2338C177.133 76.5595 177.366 75.7407 177.399 74.938C177.441 74.0952 177.208 73.3888 176.874 72.6263C176.45 71.6952 176 70.6276 175.192 69.9613C174.534 69.4476 173.601 68.8135 172.709 68.8697ZM172.709 68.8697C172.534 68.8697 172.534 69.1506 172.709 69.1346C173.467 69.0784 174.242 69.6001 174.8 70.0336C175.417 70.5232 175.825 71.1574 176.158 71.8477C176.508 72.538 176.916 73.2685 177.049 74.015C177.183 74.7454 177.124 75.508 176.874 76.2143C176.641 76.9047 176.158 77.6672 175.425 77.9481C174.667 78.2291 173.876 77.7635 173.309 77.314C172.035 76.3026 171.143 74.9782 170.693 73.4691C170.402 72.538 170.052 71.4544 170.502 70.5393C170.893 69.7205 171.726 69.0623 172.709 69.1586C172.884 69.1506 172.884 68.8857 172.709 68.8697Z" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M172.709 68.8697C171.86 68.7974 171.085 69.247 170.577 69.8811C170.019 70.6115 169.935 71.3581 170.11 72.2169C170.327 73.2604 170.61 74.328 171.177 75.2752C171.585 75.9816 172.168 76.6157 172.768 77.1615C173.351 77.6833 174.067 78.2211 174.883 78.2612C175.642 78.3013 176.258 77.7957 176.666 77.2338C177.133 76.5595 177.366 75.7407 177.399 74.938C177.441 74.0952 177.208 73.3888 176.874 72.6263C176.45 71.6952 176 70.6276 175.192 69.9613C174.534 69.4476 173.601 68.8135 172.709 68.8697ZM172.709 68.8697C172.534 68.8697 172.534 69.1506 172.709 69.1346C173.467 69.0784 174.242 69.6001 174.8 70.0336C175.417 70.5232 175.825 71.1574 176.158 71.8477C176.508 72.538 176.916 73.2685 177.049 74.015C177.183 74.7454 177.124 75.508 176.874 76.2143C176.641 76.9047 176.158 77.6672 175.425 77.9481C174.667 78.2291 173.876 77.7635 173.309 77.314C172.035 76.3026 171.143 74.9782 170.693 73.4691C170.402 72.538 170.052 71.4544 170.502 70.5393C170.893 69.7205 171.726 69.0623 172.709 69.1586C172.884 69.1506 172.884 68.8857 172.709 68.8697Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M180.656 79.7865C179.34 79.2085 178.857 82.7725 180.815 82.941C182.589 83.1096 182.689 79.8587 180.656 79.7865Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M180.656 80.8701C180.581 80.8701 180.556 80.9263 180.498 81.0226C180.398 81.3357 180.498 81.5845 180.864 81.5283C180.964 81.2233 180.848 80.8862 180.656 80.8701Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M180.806 53.6989C181.348 53.6026 182.239 53.7391 182.764 53.5464C183.755 53.2093 183.172 52.2942 182.589 51.7564C181.214 50.4721 179.873 51.1785 178.249 51.331C178.207 52.0936 177.766 55.5692 179.082 55.4167C179.099 55.0795 178.757 53.6989 179.04 53.4742C179.49 53.121 180.556 54.7746 180.806 53.6989Z" + fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" + fill="white" /> + <path + d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" + fill="white" /> + <path + d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" + fill="white" /> + <path + d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" + fill="white" /> + <path + d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M183.813 69.8973C183.197 70.1381 183.93 72.811 184.005 73.3488C184.08 73.8305 184.197 74.2639 184.372 74.7294C184.505 75.1067 184.505 75.8853 184.696 76.1823C184.946 76.5596 185.721 76.6479 186.029 76.3509C186.379 76.0138 186.396 76.5195 186.396 76.086C186.396 74.9622 186.221 72.5782 186.104 71.4785C186.029 70.7481 185.771 68.4364 185.021 68.2838C184.297 68.1394 184.372 69.6163 183.813 69.8973Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" + fill="white" /> + <path + d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" + fill="white" /> + <path + d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" + fill="white" /> + <path + d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" + fill="white" /> + <path + d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" + fill="white" /> + <path + d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" + fill="white" /> + <path + d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" + stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M184.913 76.4473C184.696 77.3062 186.97 78.6307 187.912 78.1089C188.628 77.7156 187.737 76.6881 187.179 76.351C186.712 76.054 184.705 76.1664 184.913 76.4473Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" + fill="white" /> + <path + d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" + fill="white" /> + <path + d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" + fill="white" /> + <path + d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373ZM182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" + fill="white" /> + <path + d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373ZM182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" + stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M181.739 56.42C183.23 56.2514 184.53 57.929 184.105 59.3337C183.872 60.1204 182.939 59.7431 182.614 60.3451C182.322 60.8829 182.672 62.1913 182.689 62.7933C182.764 64.3265 182.497 66.1165 181.331 67.2162C180.056 68.4684 178.099 68.0912 176.45 67.8503C175.175 67.6657 174.783 68.7815 175.133 66.2289C175.325 64.8081 176.183 63.8048 176.45 62.4562C175.95 62.1913 175.5 62.6088 175.058 62.2716C174.559 61.8783 174.883 61.1318 175.042 60.5699C175.408 59.2856 176.091 58.3705 177.133 57.5117C177.557 57.1585 178.082 56.7812 178.665 56.8374C179.498 56.9337 179.557 57.921 180.173 58.1056C180.989 58.3464 180.698 57.303 180.989 56.9096C181.289 56.5163 181.231 56.3638 181.739 56.42Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" + fill="white" /> + <path + d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" + fill="white" /> + <path + d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M180.306 79.7301C181.856 79.5776 182.939 82.5877 181.198 82.8686C181.123 82.8847 181.156 83.0211 181.239 82.9971C183.139 82.7001 182.014 79.4491 180.331 79.6016C180.206 79.6177 180.206 79.7461 180.306 79.7301Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + </symbol> + + <symbol id="check" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M18.9977 6.2526C19.4105 6.61952 19.4477 7.25159 19.0808 7.66437L10.9326 16.831C10.5785 17.2294 9.97428 17.28 9.55883 16.9462L4.37364 12.7795C3.94313 12.4336 3.87458 11.8041 4.22053 11.3736C4.56647 10.9431 5.19592 10.8746 5.62643 11.2205L10.0699 14.7912L17.586 6.33565C17.9529 5.92286 18.585 5.88568 18.9977 6.2526Z" + fill="#696969" /> + </symbol> + + <symbol id="unfold" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M6 10L12.5 17L19 10" stroke="black" stroke-linecap="round" stroke-linejoin="round" /> + </symbol> + + <symbol id="fold" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M9.33203 13.3333L15.9987 20L22.6654 13.3333H9.33203Z" fill="#333333" /> + </symbol> + + <symbol id="searchPrintMarker" width="20" height="20" viewBox="0 0 20 20" fill="none" + xmlns="http://www.w3.org/2000/svg"> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M12.3519 15.8973C14.9053 13.5588 16.875 11.7548 16.875 8.7963C16.875 4.97377 13.797 1.875 10 1.875C6.20304 1.875 3.125 4.97377 3.125 8.7963C3.125 11.9219 4.72381 13.3564 7.75803 16.0788C8.43459 16.6858 9.18252 17.3569 10 18.125C10.8107 17.3088 11.6062 16.5803 12.3519 15.8973ZM10 11.5046C11.4858 11.5046 12.6902 10.2921 12.6902 8.7963C12.6902 7.30053 11.4858 6.08796 10 6.08796C8.51423 6.08796 7.30978 7.30053 7.30978 8.7963C7.30978 10.2921 8.51423 11.5046 10 11.5046Z" + stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" /> + </symbol> + + <symbol id="searchPrintStructure" width="13" height="14" viewBox="0 0 13 14" fill="none" + xmlns="http://www.w3.org/2000/svg"> + <g clip-path="url(#clip0_10059_198649)"> + <path + d="M1.77283 5.40455L6.55919 1.68182L11.3456 5.40455V11.2546C11.3456 11.5366 11.2335 11.8072 11.034 12.0067C10.8346 12.2061 10.564 12.3182 10.2819 12.3182H2.83646C2.55437 12.3182 2.28383 12.2061 2.08436 12.0067C1.88489 11.8072 1.77283 11.5366 1.77283 11.2546V5.40455Z" + stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /> + <path d="M4.96375 12.3182V7H8.15465V12.3182" stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" + stroke-linejoin="round" /> + </g> + <defs> + <clipPath id="clip0_10059_198649"> + <rect width="13" height="13" fill="white" transform="translate(0 0.5)" /> + </clipPath> + </defs> + </symbol> + + + <symbol id="conseillerFranceService" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"> + <path d="M24.1752 4.3111L12 11.3612V25.4094L23.5247 45.3111H24.8255L36.3503 25.4094V11.3612L24.1752 4.3111Z" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M24.1752 2L38.3503 10.2083V25.9467L25.9785 47.3111H22.3718L10 25.9467V10.2082L24.1752 2ZM12 25.4094V11.3612L24.1752 4.31111L36.3503 11.3612V25.4094L24.8255 45.3111H23.5247L12 25.4094Z" + fill="white" /> + <path + d="M27.661 16.3823H32.2657V13.7028L24.175 9.02002L16.0582 13.7028V23.0682L24.175 27.725L32.2657 23.0682V20.3887H27.661V16.3823Z" + fill="white" /> + <path d="M27.661 20.3886V16.3823L24.1749 14.3531L20.6889 16.3823V20.3886L24.1749 22.3918L27.661 20.3886Z" + fill="#000091" /> + </symbol> + + <symbol id="conseillerFranceServiceSelected" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M24.1752 4.3111L12 11.3612V25.4094L23.5247 45.3111H24.8255L36.3503 25.4094V11.3612L24.1752 4.3111Z" + fill="white" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M24.1752 2L38.3503 10.2083V25.9467L25.9785 47.3111H22.3718L10 25.9467V10.2082L24.1752 2ZM12 25.4094V11.3612L24.1752 4.31111L36.3503 11.3612V25.4094L24.8255 45.3111H23.5247L12 25.4094Z" + fill="#ED3939" /> + <path + d="M27.661 16.3823H32.2657V13.7028L24.175 9.02002L16.0582 13.7028V23.0682L24.175 27.725L32.2657 23.0682V20.3887H27.661V16.3823Z" + fill="#ED3939" /> + <path d="M27.661 20.3886V16.3823L24.1749 14.3531L20.6889 16.3823V20.3886L24.1749 22.3918L27.661 20.3886Z" + fill="#3B3BE7" /> + </symbol> + + <symbol id="conseillerFranceServiceAdded" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M24.1752 4.3111L12 11.3612V25.4094L23.5247 45.3111H24.8255L36.3503 25.4094V11.3612L24.1752 4.3111Z" + fill="#47C562" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M24.1752 2L38.3503 10.2083V25.9467L25.9785 47.3111H22.3718L10 25.9467V10.2082L24.1752 2ZM12 25.4094V11.3612L24.1752 4.31111L36.3503 11.3612V25.4094L24.8255 45.3111H23.5247L12 25.4094Z" + fill="white" /> + <path d="M32.5 23.5746V13.9001L24.25 9L16 13.9001V23.5746L24.25 28.4118L32.5 23.5746Z" fill="white" /> + <path + d="M30.6177 15.3789C29.9985 14.8285 29.0504 14.8843 28.5 15.5035L23.452 21.1104L20.4396 18.507C19.7939 17.988 18.8497 18.0909 18.3308 18.7366C17.8119 19.3824 17.9147 20.3266 18.5605 20.8455L22.6853 24.3429C23.3085 24.8436 24.2149 24.7677 24.746 24.1702L30.7422 17.4966C31.2926 16.8774 31.2368 15.9293 30.6177 15.3789Z" + fill="#47C562" /> + </symbol> + + <symbol id="conseillerFranceServiceHover" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M24.1752 4.3111L12 11.3612V25.4094L23.5247 45.3111H24.8255L36.3503 25.4094V11.3612L24.1752 4.3111Z" + fill="#A00000" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M24.1752 2L38.3503 10.2083V25.9467L25.9785 47.3111H22.3718L10 25.9467V10.2082L24.1752 2ZM12 25.4094V11.3612L24.1752 4.31111L36.3503 11.3612V25.4094L24.8255 45.3111H23.5247L12 25.4094Z" + fill="white" /> + <path + d="M27.661 16.3823H32.2657V13.7028L24.175 9.02002L16.0582 13.7028V23.0682L24.175 27.725L32.2657 23.0682V20.3887H27.661V16.3823Z" + fill="white" fill-opacity="0.8" /> + <path d="M27.661 20.3886V16.3823L24.1749 14.3531L20.6889 16.3823V20.3886L24.1749 22.3918L27.661 20.3886Z" + fill="#010176" /> + </symbol> + + <symbol id="borne" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <rect x="5" width="12" height="9" rx="1" stroke-width="1.9" fill="none" /> + <path d="M6 14H16L14.6364 22H7.36364L6 14Z" /> + <path + d="M5.04692 10.1658C5.12212 10.0617 5.24275 10 5.37119 10H16.6288C16.7573 10 16.8779 10.0617 16.9531 10.1658L18.542 12.3658C18.733 12.6303 18.544 13 18.2177 13H3.7823C3.45599 13 3.26698 12.6303 3.45803 12.3658L5.04692 10.1658Z" + stroke="none" /> + </symbol> + + <symbol id="wifi" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <path + d="M1.08488 8.63175C3.61838 6.09825 7.11838 4.53125 10.9844 4.53125C14.8504 4.53125 18.3504 6.09825 20.8839 8.63175L19.4697 10.046C17.2981 7.87439 14.2981 6.53125 10.9844 6.53125C7.67066 6.53125 4.67066 7.8744 2.49909 10.046L1.08488 8.63175Z" + stroke="none" /> + <path + d="M1.20434 28.5488C3.72784 31.0128 7.17878 32.5312 10.9844 32.5312C14.7486 32.5312 18.1658 31.0457 20.6818 28.6288C20.0912 29.196 19.4494 29.7127 18.7624 30.1718C16.4601 31.7102 13.7533 32.5312 10.9844 32.5312C8.21543 32.5312 5.50867 31.7102 3.20639 30.1718C2.48717 29.6913 1.81751 29.1474 1.20434 28.5488Z" + stroke="none" /> + <path + d="M18.0554 11.4602C16.2458 9.65054 13.7458 8.53125 10.9844 8.53125C8.22295 8.53125 5.72295 9.65054 3.91331 11.4602L5.32752 12.8744C6.77523 11.4267 8.77523 10.5312 10.9844 10.5312C13.1935 10.5312 15.1935 11.4267 16.6412 12.8744L18.0554 11.4602Z" + stroke="none" /> + <path + d="M15.227 14.2886C14.1412 13.2028 12.6412 12.5312 10.9844 12.5312C9.32752 12.5312 7.82752 13.2028 6.74173 14.2886L8.15595 15.7028C8.8798 14.979 9.8798 14.5312 10.9844 14.5312C12.0889 14.5312 13.0889 14.979 13.8128 15.7028L15.227 14.2886Z" + stroke="none" /> + <path + d="M12.3986 17.117C12.0367 16.7551 11.5367 16.5312 10.9844 16.5312C10.4321 16.5312 9.93209 16.7551 9.57016 17.117L10.9844 18.5312L12.3986 17.117Z" + stroke="none" /> + </symbol> + + <symbol id="moreOpts" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M11 7.66675C12.1 7.66675 13 6.76675 13 5.66675C13 4.56675 12.1 3.66675 11 3.66675C9.9 3.66675 9 4.56675 9 5.66675C9 6.76675 9.9 7.66675 11 7.66675ZM11 9.66675C9.9 9.66675 9 10.5667 9 11.6667C9 12.7667 9.9 13.6667 11 13.6667C12.1 13.6667 13 12.7667 13 11.6667C13 10.5667 12.1 9.66675 11 9.66675ZM9 17.6667C9 16.5667 9.9 15.6667 11 15.6667C12.1 15.6667 13 16.5667 13 17.6667C13 18.7667 12.1 19.6667 11 19.6667C9.9 19.6667 9 18.7667 9 17.6667Z" + stroke="none" /> + </symbol> + + <symbol id="camera" width="100" height="113" viewBox="0 0 100 113" fill="none" xmlns="http://www.w3.org/2000/svg"> + <rect width="100" height="113" rx="12" fill="#F8F8F8" /> + <path d="M27 11H15C13.8954 11 13 11.8954 13 13V25" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round" /> + <path d="M27 100H15C13.8954 100 13 99.1046 13 98V86" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round" /> + <path d="M73 11H85C86.1046 11 87 11.8954 87 13V25" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round" /> + <path d="M73 100H85C86.1046 100 87 99.1046 87 98V86" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M61.1175 39.1429H72.7941C75.6692 39.1429 78 41.5002 78 44.4082V70.7347C78 73.6426 75.6692 76 72.7941 76H24.2059C21.3308 76 19 73.6426 19 70.7347V44.4082C19 41.5002 21.3308 39.1429 24.2059 39.1429H36.7502C37.8558 35.5825 41.1444 33 45.0294 33H52.8382C56.7232 33 60.0119 35.5825 61.1175 39.1429ZM49.5 70C56.9558 70 63 63.9558 63 56.5C63 49.0442 56.9558 43 49.5 43C42.0442 43 36 49.0442 36 56.5C36 63.9558 42.0442 70 49.5 70Z" + fill="#C4C4C4" /> + <circle cx="49.5" cy="56.5" r="10.5" fill="#BDBDBD" /> + </symbol> + + <symbol id="locateMe" width="25" height="34" viewBox="0 0 24 27" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M15.5591 23.2986C19.8303 19.413 23.125 16.4157 23.125 11.5C23.125 5.14873 17.9763 0 11.625 0C5.27373 0 0.125 5.14873 0.125 11.5C0.125 16.6933 2.79938 19.0768 7.87479 23.6001C9.00649 24.6087 10.2576 25.7237 11.625 27C12.9811 25.6439 14.3117 24.4334 15.5591 23.2986ZM11.625 16C14.1103 16 16.125 13.9853 16.125 11.5C16.125 9.01472 14.1103 7 11.625 7C9.13972 7 7.125 9.01472 7.125 11.5C7.125 13.9853 9.13972 16 11.625 16Z" + fill="#828282" /> + </symbol> + + <symbol id="passNumeric" width="25" height="45" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M1.875 9.49658H35.875V14.8452C34.0229 15.5776 32.7128 17.3841 32.7128 19.4966C32.7128 21.6091 34.0229 23.4157 35.875 24.148V29.4966H1.875V24.148C3.72706 23.4157 5.03717 21.6091 5.03717 19.4966C5.03717 17.3841 3.72706 15.5776 1.875 14.8452V9.49658Z" + fill="white" /> + <path + d="M35.875 9.49658H36.525C36.525 9.1376 36.234 8.84658 35.875 8.84658V9.49658ZM1.875 9.49658V8.84658C1.51601 8.84658 1.225 9.1376 1.225 9.49658H1.875ZM35.875 14.8452L36.114 15.4497C36.3621 15.3516 36.525 15.1119 36.525 14.8452H35.875ZM35.875 24.148H36.525C36.525 23.8813 36.3621 23.6417 36.114 23.5436L35.875 24.148ZM35.875 29.4966V30.1466C36.234 30.1466 36.525 29.8556 36.525 29.4966H35.875ZM1.875 29.4966H1.225C1.225 29.8556 1.51601 30.1466 1.875 30.1466L1.875 29.4966ZM1.875 24.148L1.63598 23.5436C1.38794 23.6417 1.225 23.8813 1.225 24.148H1.875ZM1.875 14.8452H1.225C1.225 15.1119 1.38794 15.3516 1.63598 15.4497L1.875 14.8452ZM35.875 8.84658H1.875V10.1466H35.875V8.84658ZM36.525 14.8452V9.49658H35.225V14.8452H36.525ZM33.3628 19.4966C33.3628 17.6598 34.5016 16.0873 36.114 15.4497L35.636 14.2407C33.5443 15.0679 32.0628 17.1084 32.0628 19.4966H33.3628ZM36.114 23.5436C34.5016 22.906 33.3628 21.3335 33.3628 19.4966H32.0628C32.0628 21.8848 33.5443 23.9254 35.636 24.7525L36.114 23.5436ZM36.525 29.4966V24.148H35.225V29.4966H36.525ZM1.875 30.1466H35.875V28.8466H1.875V30.1466ZM1.225 24.148V29.4966H2.525V24.148H1.225ZM4.38717 19.4966C4.38717 21.3335 3.24841 22.906 1.63598 23.5436L2.11402 24.7525C4.20571 23.9254 5.68717 21.8848 5.68717 19.4966H4.38717ZM1.63598 15.4497C3.24841 16.0873 4.38717 17.6597 4.38717 19.4966H5.68717C5.68717 17.1084 4.20571 15.0679 2.11402 14.2407L1.63598 15.4497ZM1.225 9.49658V14.8452H2.525V9.49658H1.225Z" + fill="#4F4F4F" /> + <line x1="28.6031" y1="10.1466" x2="28.6031" y2="28.8466" stroke="#4F4F4F" stroke-width="1.3" stroke-linecap="round" + stroke-dasharray="2 3" /> + <line x1="10.0176" y1="19.9287" x2="20.0176" y2="19.9287" stroke="#348899" stroke-width="2" + stroke-linecap="round" /> + <line x1="10.0176" y1="24.9287" x2="16.0176" y2="24.9287" stroke="#348899" stroke-width="2" + stroke-linecap="round" /> + </symbol> + + <symbol id="search" width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M19.8262 19.8262L24.0001 24.0001Z" fill="#333333" /> + <path d="M19.8262 19.8262L24.0001 24.0001" stroke="#828282" stroke-width="2" stroke-linecap="round" + stroke-linejoin="round" /> + <path + d="M14.6087 21.2174C18.2586 21.2174 21.2174 18.2586 21.2174 14.6087C21.2174 10.9588 18.2586 8 14.6087 8C10.9588 8 8 10.9588 8 14.6087C8 18.2586 10.9588 21.2174 14.6087 21.2174Z" + stroke="#828282" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /> + </symbol> + + <symbol id="tagDelete" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M6.5 6.5L15.5 15.5" stroke="#BDBDBD" stroke-width="1.5" stroke-linecap="round" /> + <path d="M15.5 6.5L6.5 15.5" stroke="#BDBDBD" stroke-width="1.5" stroke-linecap="round" /> + </symbol> + + + <symbol id="tagReset" width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path + d="M2.41783 4.91505L2.1416 4.63882V6.22461H3.72739L3.61783 6.11505L2.41783 4.91505L3.12493 4.20794L2.41783 4.91505Z" + stroke="#333333" stroke-width="2" /> + <path + d="M3.9742 12.838C4.88949 13.8222 6.09674 14.4863 7.41803 14.7325C8.73932 14.9786 10.1047 14.7938 11.313 14.2053C12.5214 13.6167 13.5086 12.6556 14.1293 11.4635C14.7501 10.2714 14.9714 8.91138 14.7607 7.58397C14.55 6.25656 13.9185 5.03194 12.9592 4.09061C11.9999 3.14928 10.7635 2.54103 9.43236 2.35552C8.1012 2.17 6.74565 2.41704 5.56551 3.06021C4.38537 3.70338 3.44307 4.70866 2.87749 5.92789" + stroke="#333333" stroke-width="1.5" /> + </symbol> + + <symbol id="closeModal" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path + d="M27.0279 11.9135C27.5486 11.3928 28.2873 11.2873 28.6778 11.6778C29.0683 12.0683 28.9628 12.807 28.4421 13.3277L13.3572 28.4127C12.8365 28.9334 12.0978 29.0389 11.7072 28.6484C11.3167 28.2578 11.4222 27.5192 11.9429 26.9985L27.0279 11.9135Z" + fill="#333333" /> + <path + d="M28.0279 27.0279C28.5486 27.5486 28.6541 28.2873 28.2636 28.6778C27.8731 29.0683 27.1344 28.9628 26.6137 28.4421L11.5287 13.3572C11.008 12.8365 10.9025 12.0978 11.293 11.7072C11.6836 11.3167 12.4223 11.4222 12.943 11.9429L28.0279 27.0279Z" + fill="#333333" /> + </symbol> + + <symbol id="arrowBack" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M20 11L11 20L20 29" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" + stroke-linejoin="round" /> + <line x1="12.5679" y1="20.0684" x2="29.8861" y2="20.0684" stroke="black" stroke-width="1.5" + stroke-linecap="round" /> + </symbol> + + <symbol id="structureCategory_privateLucrative" width="52" height="52" viewBox="0 0 52 52" fill="none" + xmlns="http://www.w3.org/2000/svg"> + <rect width="52" height="52" rx="4" fill="white" /> + <path + d="M7.32104 39.6816C6.79673 39.9831 6.79461 40.4777 7.31467 40.7791L24.0607 50.5117C24.5828 50.8152 25.4319 50.8131 25.9562 50.5117L43.6044 40.3227C44.1287 40.0213 44.1329 39.5288 43.6107 39.2253L26.8647 29.4927C26.3447 29.1912 25.4935 29.1912 24.9692 29.4927L7.32104 39.6816Z" + fill="#DFB74F" /> + <path d="M38.1703 24.863V39.6774L25.2197 47.0856V32.2691L38.1703 24.863Z" fill="white" /> + <path d="M38.1703 24.863V39.6774L25.2197 47.0856V32.2691L38.1703 24.863Z" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.2197 32.2692L12.2861 24.8525L25.2197 17.4294L38.1703 24.8631L25.2197 32.2692Z" fill="white" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M25.2112 31.1761L14.2071 24.8653L25.2112 18.5503L36.228 24.8738L25.2112 31.1761Z" fill="white" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M12.286 24.8528L12.2669 39.6777L25.2197 47.086V32.2695L12.286 24.8528Z" fill="white" /> + <path d="M12.286 24.8528L12.2669 39.6777L25.2197 47.086V32.2695L12.286 24.8528Z" fill="#BDBDBD" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M25.2196 15.7334L38.1724 23.1692L25.2196 30.5753L12.286 23.1565L25.2196 15.7334ZM36.228 23.1819L25.2111 16.8563L14.2092 23.1735L25.2111 29.4842L36.228 23.1819Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M38.1703 23.1692V25.8247L25.2198 33.2329V30.5753L38.1703 23.1692Z" fill="white" /> + <path d="M38.1703 25.8247V23.1692L25.2198 30.5753V33.2329" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.2197 30.5754V33.0866L12.2861 25.6677V23.1587L25.2197 30.5754Z" fill="#BDBDBD" /> + <path d="M25.2197 33.0866V30.5754L12.2861 23.1587V25.6677" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.2112 16.8562V18.5501L15.6846 24.0182L14.2072 23.1734L25.2112 16.8562Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M36.228 23.1819L25.2112 16.8562V18.5501L34.7655 24.0182L36.228 23.1819Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M29 33.394L29.0328 45L35 41.606L34.9672 30L29 33.394Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M38.1702 8.85376V23.6702L25.2175 31.0763V16.2599L38.1702 8.85376Z" fill="white" /> + <path d="M38.1702 8.85376V23.6702L31.6939 27.3733L25.2175 31.0763V16.2599L38.1702 8.85376Z" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M25.2175 16.2597L12.286 8.84301L25.2175 1.41992L38.1702 8.85362L25.2175 16.2597Z" fill="white" /> + <path d="M25.2175 16.2597L12.286 8.84301L25.2175 1.41992L38.1702 8.85362L25.2175 16.2597Z" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M12.286 8.84302L12.2669 23.6701L25.2175 31.0762V16.2597L12.286 8.84302Z" fill="white" /> + <path d="M12.286 8.84302L12.2669 23.6701L25.2175 31.0762V16.2597L12.286 8.84302Z" fill="#BDBDBD" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M32.6309 14.2322V18.8256L35.9467 16.922V12.3286L32.6309 14.2322Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M27.7376 16.9388V21.5322L31.0533 19.6315V15.0381L27.7376 16.9388Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M32.5775 20.5311V25.1273L35.8932 23.2238V18.6304L32.5775 20.5311Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M27.6868 23.2407V27.8341L31.0026 25.9306V21.3372L27.6868 23.2407Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M17.9226 14.0851V18.6786L14.5878 16.775V12.1843L17.9226 14.0851Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M22.8414 16.7919V21.3882L19.5066 19.4846V14.8911L22.8414 16.7919Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M17.9113 20.3837V24.98L14.5737 23.0764V18.4829L17.9113 20.3837Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M22.8301 23.0933V27.6896L19.4953 25.786V21.1897L22.8301 23.0933Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M17.9226 30.0272V34.6208L14.5878 32.7171V28.1265L17.9226 30.0272Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M22.8414 32.734V37.3303L19.5066 35.4268V30.8333L22.8414 32.734Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M17.9113 36.3258V40.9221L14.5737 39.0186V34.425L17.9113 36.3258Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M22.8301 39.0354V43.6318L19.4953 41.7282V37.1318L22.8301 39.0354Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M38.1702 8.08521V8.85362L25.1135 16.5633V15.7949L38.1702 8.08521Z" fill="white" /> + <path d="M38.1702 8.08521V8.85362L25.1135 16.5633V15.7949L38.1702 8.08521Z" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.1134 15.7948L12.3326 8.46727L25.3724 0.738525L38.1702 8.08519L25.1134 15.7948Z" fill="#E9E9E9" /> + <path d="M12.3328 8.46704L12.3137 9.24396L25.1136 16.563V15.7946L12.3328 8.46704Z" fill="white" /> + <path d="M12.3328 8.46704L12.3137 9.24396L25.1136 16.563V15.7946L12.3328 8.46704Z" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M25.7486 1.47656L12.1813 8.74474" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" + stroke-linejoin="round" /> + <path d="M37.8622 8.26004L25.9456 1.34131" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" + stroke-linejoin="round" /> + </symbol> + + <symbol id="structureCategory_private" width="52" height="52" viewBox="0 0 52 52" fill="none" + xmlns="http://www.w3.org/2000/svg"> + <rect width="52" height="52" rx="4" fill="white" /> + <path + d="M7.32104 39.6816C6.79673 39.9831 6.79461 40.4777 7.31467 40.7791L24.0607 50.5117C24.5828 50.8152 25.4319 50.8131 25.9562 50.5117L43.6044 40.3227C44.1287 40.0213 44.1329 39.5288 43.6107 39.2253L26.8647 29.4927C26.3447 29.1912 25.4935 29.1912 24.9692 29.4927L7.32104 39.6816Z" + fill="#1B7183" /> + <path d="M38.1703 24.863V39.6774L25.2197 47.0856V32.2691L38.1703 24.863Z" fill="white" /> + <path d="M38.1703 24.863V39.6774L25.2197 47.0856V32.2691L38.1703 24.863Z" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.2197 32.2692L12.2861 24.8525L25.2197 17.4294L38.1703 24.8631L25.2197 32.2692Z" fill="white" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M25.2112 31.1761L14.2071 24.8653L25.2112 18.5503L36.228 24.8738L25.2112 31.1761Z" fill="white" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M12.286 24.8528L12.2669 39.6777L25.2197 47.086V32.2695L12.286 24.8528Z" fill="white" /> + <path d="M12.286 24.8528L12.2669 39.6777L25.2197 47.086V32.2695L12.286 24.8528Z" fill="#BDBDBD" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M25.2196 15.7334L38.1724 23.1692L25.2196 30.5753L12.286 23.1565L25.2196 15.7334ZM36.228 23.1819L25.2111 16.8563L14.2092 23.1735L25.2111 29.4842L36.228 23.1819Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M38.1703 23.1692V25.8247L25.2198 33.2329V30.5753L38.1703 23.1692Z" fill="white" /> + <path d="M38.1703 25.8247V23.1692L25.2198 30.5753V33.2329" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.2197 30.5754V33.0866L12.2861 25.6677V23.1587L25.2197 30.5754Z" fill="#BDBDBD" /> + <path d="M25.2197 33.0866V30.5754L12.2861 23.1587V25.6677" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.2112 16.8562V18.5501L15.6846 24.0182L14.2072 23.1734L25.2112 16.8562Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M36.228 23.1819L25.2112 16.8562V18.5501L34.7655 24.0182L36.228 23.1819Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M29 33.394L29.0328 45L35 41.606L34.9672 30L29 33.394Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M38.1702 8.85376V23.6702L25.2175 31.0763V16.2599L38.1702 8.85376Z" fill="white" /> + <path d="M38.1702 8.85376V23.6702L31.6939 27.3733L25.2175 31.0763V16.2599L38.1702 8.85376Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> <path d="M25.2175 16.2597L12.286 8.84301L25.2175 1.41992L38.1702 8.85362L25.2175 16.2597Z" fill="white" /> <path d="M25.2175 16.2597L12.286 8.84301L25.2175 1.41992L38.1702 8.85362L25.2175 16.2597Z" stroke="#706F6F" @@ -530,157 +1879,849 @@ <path d="M12.3328 8.46704L12.3137 9.24396L25.1136 16.563V15.7946L12.3328 8.46704Z" fill="white" /> <path d="M12.3328 8.46704L12.3137 9.24396L25.1136 16.563V15.7946L12.3328 8.46704Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M25.7486 1.47656L12.1813 8.74474" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" + <path d="M25.7486 1.47656L12.1813 8.74474" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" + stroke-linejoin="round" /> + <path d="M37.8622 8.26004L25.9456 1.34131" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" + stroke-linejoin="round" /> + </symbol> + + <symbol id="structureCategory_public" width="52" height="52" viewBox="0 0 52 52" fill="none" + xmlns="http://www.w3.org/2000/svg"> + <rect width="52" height="52" rx="4" fill="white" /> + <path + d="M7.39483 34.4973C6.87052 34.7987 6.8684 35.2933 7.38846 35.5948L24.1344 45.3273C24.6566 45.6309 25.5057 45.6288 26.03 45.3273L43.6782 35.1384C44.2025 34.8369 44.2067 34.3445 43.6845 34.0409L26.9385 24.3083C26.4185 24.0069 25.5673 24.0069 25.043 24.3083L7.39483 34.4973Z" + fill="#DA3635" /> + <path d="M38.2441 19.6787V34.4931L25.2935 41.9013V27.0848L38.2441 19.6787Z" fill="white" /> + <path d="M38.2441 19.6787V34.4931L25.2935 41.9013V27.0848L38.2441 19.6787Z" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.2935 27.0849L12.3599 19.6682L25.2935 12.2451L38.2441 19.6788L25.2935 27.0849Z" fill="white" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M25.2851 25.9918L14.281 19.681L25.2851 13.366L36.3019 19.6895L25.2851 25.9918Z" fill="white" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M12.3599 19.6685L12.3408 34.4934L25.2935 41.9016V27.0852L12.3599 19.6685Z" fill="white" /> + <path d="M12.3599 19.6685L12.3408 34.4934L25.2935 41.9016V27.0852L12.3599 19.6685Z" fill="#BDBDBD" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M25.2935 10.5491L38.2462 17.9849L25.2935 25.391L12.3599 17.9721L25.2935 10.5491ZM36.3018 17.9976L25.285 11.672L14.283 17.9891L25.285 24.2999L36.3018 17.9976Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M38.2442 17.9849V20.6404L25.2936 28.0486V25.391L38.2442 17.9849Z" fill="white" /> + <path d="M38.2442 20.6404V17.9849L25.2936 25.391V28.0486" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.2936 25.3911V27.9022L12.36 20.4834V17.9744L25.2936 25.3911Z" fill="#BDBDBD" /> + <path d="M25.2936 27.9022V25.3911L12.36 17.9744V20.4834" stroke="#706F6F" stroke-miterlimit="10" + stroke-linejoin="round" /> + <path d="M25.2851 11.6719V13.3658L15.7584 18.8339L14.281 17.989L25.2851 11.6719Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M36.3019 17.9975L25.2851 11.6719V13.3658L34.8393 18.8339L36.3019 17.9975Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M29.0739 28.2097L29.1066 39.8157L35.0739 36.4216L35.0411 24.8157L29.0739 28.2097Z" fill="white" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M17.9965 24.8429V29.4364L14.6617 27.5328V22.9421L17.9965 24.8429Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M22.9153 27.5497V32.146L19.5805 30.2424V25.6489L22.9153 27.5497Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M17.9852 31.1415V35.7378L14.6476 33.8342V29.2407L17.9852 31.1415Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M22.904 33.8511V38.4474L19.5692 36.5438V31.9475L22.904 33.8511Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M38.244 17.9309L25.1873 25.6406" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M24.8546 25.1435L12.0738 17.8159L25.4462 9.81592L38.244 17.1626L24.8546 25.1435Z" fill="#E9E9E9" /> + <path d="M25.8224 10.554L12.2551 17.8221" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> - <path d="M37.8622 8.26004L25.9456 1.34131" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" + <path d="M37.936 17.3374L26.0194 10.4187" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" + stroke-linejoin="round" /> + <path d="M24.9904 25.7346L12.5738 18.3159" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path d="M26.0738 27.8157L16.0922 16.083L32.0058 7.91253L41.5738 18.8157L26.0738 27.8157Z" fill="white" + stroke="#696969" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M8.57379 17.8157L16.0922 16.0831L32.0058 7.91256L22.9568 9.60935L8.57379 17.8157Z" fill="#E9E9E9" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M8.57375 17.8157L16.6255 16.0773L26.0738 27.8157L8.57375 17.8157Z" fill="#BDBDBD" stroke="#706F6F" + stroke-miterlimit="10" stroke-linejoin="round" /> </symbol> - <symbol id="structureCategory_private" viewBox="0 0 52 52" fill="none" xmlns="http://www.w3.org/2000/svg"> - <rect width="52" height="52" rx="4" fill="white" /> + <symbol id="profile" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path + d="M22.7499 24.492V21.3125C22.7499 20.4008 22.3878 19.5265 21.7431 18.8818C21.0985 18.2372 20.2241 17.875 19.3124 17.875H12.4375C11.5258 17.875 10.6515 18.2372 10.0068 18.8818C9.36216 19.5265 9 20.4008 9 21.3125V24.492" + stroke="#333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M15.875 15.625C18.1877 15.625 20.0625 13.7502 20.0625 11.4375C20.0625 9.1248 18.1877 7.25 15.875 7.25C13.5623 7.25 11.6875 9.1248 11.6875 11.4375C11.6875 13.7502 13.5623 15.625 15.875 15.625Z" + stroke="#333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /> + </symbol> + + <symbol id="toastError" width="40" height="41" viewBox="0 0 40 41" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path + d="M26.8169 11.4821C27.3593 10.9397 28.2738 10.9749 28.8596 11.5607C29.4454 12.1464 29.4806 13.061 28.9382 13.6034L13.2247 29.3169C12.6823 29.8593 11.7677 29.8241 11.1819 29.2383C10.5962 28.6525 10.561 27.738 11.1034 27.1956L26.8169 11.4821Z" + fill="#FF0000" /> + <path + d="M28.8169 27.5179C29.3593 28.0603 29.3241 28.9749 28.7383 29.5607C28.1525 30.1464 27.2379 30.1816 26.6955 29.6392L10.9821 13.9257C10.4397 13.3833 10.4748 12.4688 11.0606 11.883C11.6464 11.2972 12.561 11.262 13.1034 11.8044L28.8169 27.5179Z" + fill="#FF0000" /> + </symbol> + + <symbol id="toastSuccess" width="40" height="41" viewBox="0 0 40 41" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M10 21.1364L17.3889 27.5L23.1944 20.5L29 13.5" stroke="#47C562" stroke-width="3" stroke-linecap="round" + stroke-linejoin="round" /> + </symbol> + + <symbol id="annuaireUnlogged" width="200" height="200" viewBox="0 0 200 200" fill="none" + xmlns="http://www.w3.org/2000/svg"> + <path + d="M142.603 137.347L160.313 147.345C166.65 150.922 166.706 156.799 160.439 160.417L104.045 192.976C97.8274 196.566 87.7464 196.566 81.5286 192.976L41.3924 169.804" + stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8" /> + <path + d="M66.5 94.4999L33.0409 74.8039C26.9259 71.2042 26.9744 65.4325 33.1496 61.8672L77.934 36.0109C84.1518 32.421 94.2329 32.421 100.451 36.0109L168.296 75.1812" + stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8" /> + <path + d="M87.3501 44.8181C88.2118 45.3162 88.2182 46.1259 87.3597 46.624L59.807 62.6264C58.9485 63.1245 57.5499 63.1245 56.6881 62.6264L27.6499 45.8721C26.7882 45.374 26.7818 44.5642 27.6403 44.0662L55.193 28.0637C56.0483 27.5657 57.4501 27.5657 58.3119 28.0637L87.3501 44.8181Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" /> + <path + d="M46.8908 38.1021C46.8618 38.1182 46.8362 38.1343 46.8072 38.1503C45.9358 38.703 45.9358 39.5578 46.8072 40.1073C47.4085 40.4864 48.2702 40.6343 49.0773 40.5507C49.193 40.5378 49.2798 40.6085 49.2252 40.6696C48.2702 41.7043 48.4631 42.9993 49.8072 43.9215C49.8843 43.9729 50.0226 43.9761 50.1062 43.9279L56.9453 39.9819C57.0289 39.9337 57.0257 39.8534 56.9357 39.8084C55.3441 39.0276 53.1093 38.9119 51.3184 39.4614C51.2123 39.4935 51.0933 39.4421 51.1126 39.3746C51.2508 38.9248 51.0226 38.446 50.4245 38.1021C49.4567 37.5366 47.8715 37.5366 46.8908 38.1021Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M65.8648 38.7255C66.0545 38.8348 66.0545 39.0115 65.868 39.1208L49.8232 48.4394C49.6367 48.5487 49.3281 48.5487 49.1384 48.4394C48.9487 48.3302 48.9519 48.1535 49.1384 48.0442L65.1831 38.7255C65.3696 38.6195 65.6751 38.6163 65.8648 38.7255Z" + fill="#706F6F" /> + <path + d="M56.5017 46.8715C56.6914 46.9807 56.6914 47.1575 56.5049 47.2667L52.3474 49.6832C52.1609 49.7924 51.8555 49.7924 51.6658 49.6832C51.476 49.5739 51.4728 49.3972 51.6625 49.2879L55.82 46.8715C56.0065 46.7622 56.3152 46.7622 56.5017 46.8715Z" + fill="#706F6F" /> + <path + d="M67.9773 40.2487C68.1671 40.3579 68.1638 40.5347 67.9773 40.6439L59.7299 45.435C59.5434 45.5443 59.2379 45.5443 59.0482 45.435C58.8585 45.3257 58.8585 45.149 59.045 45.0398L67.2925 40.2487C67.479 40.1394 67.7844 40.1362 67.9773 40.2487Z" + fill="#706F6F" /> + <path + d="M62.5434 51.2802C62.7781 51.4151 62.7813 51.6369 62.5466 51.775L59.1286 53.7609C58.8939 53.8958 58.5113 53.8958 58.2766 53.7609L54.8361 51.775C54.6014 51.6401 54.5982 51.4183 54.8329 51.2802L58.2509 49.2943C58.4856 49.1594 58.8682 49.1594 59.1029 49.2943L62.5434 51.2802Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" /> + <path + d="M67.9805 47.8771C68.2153 48.0121 68.2185 48.2338 67.9838 48.372L64.5658 50.3578C64.3311 50.4928 63.9484 50.4928 63.7137 50.3578L60.2732 48.372C60.0385 48.237 60.0353 48.0153 60.27 47.8771L63.688 45.8913C63.9227 45.7563 64.3053 45.7563 64.54 45.8913L67.9805 47.8771Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" /> + <path + d="M73.7201 44.3265C74.0577 44.5225 74.0609 44.8406 73.7233 45.0334L70.3053 47.0192C69.9709 47.2153 69.4211 47.2153 69.0835 47.0192L65.643 45.0334C65.3054 44.8374 65.3022 44.5225 65.6398 44.3265L69.0578 42.3406C69.3922 42.1446 69.942 42.1446 70.2796 42.3406L73.7201 44.3265Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" /> + <path + d="M60.0852 26.4489C60.4635 26.668 60.4678 27.0203 60.0895 27.2394L57.8798 28.524C57.5015 28.7431 56.891 28.7431 56.5127 28.524L54.2859 27.2394C53.9076 27.0203 53.9033 26.668 54.2816 26.4489L56.4913 25.1643C56.8696 24.9452 57.48 24.9452 57.8583 25.1643L60.0852 26.4489Z" + fill="#DA3635" /> + <path + d="M58.5455 26.6293C58.5756 26.6465 58.5928 26.6679 58.5971 26.6937C58.5928 26.7453 58.5197 26.7882 58.4337 26.7882H57.4149L57.3504 26.8226L57.3547 27.4112C57.3504 27.4627 57.2773 27.5057 57.1914 27.5057C57.1441 27.5057 57.1054 27.4971 57.0753 27.4799C57.0452 27.4628 57.028 27.437 57.028 27.4112L57.0237 26.8226L56.9592 26.7839H55.9403C55.8931 26.7839 55.8544 26.7754 55.8243 26.7582C55.7942 26.741 55.777 26.7152 55.777 26.6894C55.777 26.6379 55.8501 26.5949 55.9403 26.5949H56.9592L57.0237 26.5605V25.972C57.0237 25.9204 57.0968 25.8774 57.1871 25.8774C57.2343 25.8774 57.273 25.8903 57.3031 25.9075C57.3332 25.9247 57.3504 25.9462 57.3547 25.972V26.5605L57.4192 26.5992H58.438C58.4767 26.5992 58.5154 26.6121 58.5455 26.6293Z" + fill="white" /> + <path + d="M45.7227 53.7692C47.499 54.7931 47.5063 56.4537 45.7444 57.4811C43.9825 58.505 41.1136 58.505 39.3372 57.4811C37.5609 56.4573 37.5537 54.7967 39.3192 53.7692C41.0847 52.7418 43.95 52.7454 45.7227 53.7692Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" /> + <path + d="M78.7227 34.7692C80.499 35.7931 80.5063 37.4537 78.7444 38.4811C76.9825 39.505 74.1136 39.505 72.3372 38.4811C70.5609 37.4573 70.5537 35.7967 72.3192 34.7692C74.0847 33.7418 76.95 33.7454 78.7227 34.7692Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M92.0481 60.1646C91.7298 59.9452 91.3135 59.929 90.9791 60.123L16.2987 103.428C15.6638 103.796 15.6286 104.7 16.2329 105.117L61.2513 136.136C61.2513 136.136 61.2514 136.136 61.2515 136.136C61.2515 136.136 61.2516 136.136 61.2517 136.136L107.428 157.563C107.724 157.701 108.068 157.685 108.35 157.521L182.833 114.331C183.533 113.925 183.486 112.9 182.752 112.559L137.846 91.7207C137.846 91.7207 137.846 91.7207 137.846 91.7207V91.7206C137.846 91.7206 137.846 91.7205 137.846 91.7206C137.846 91.7206 137.846 91.7206 137.846 91.7206L92.0481 60.1646Z" + fill="white" /> + <path + d="M137.846 91.7206L137.562 92.1323L137.846 91.7206ZM137.846 91.7207L137.635 92.1743L137.846 91.7207ZM182.833 114.331L183.084 114.764L182.833 114.331ZM182.752 112.559L182.542 113.013L182.752 112.559ZM107.428 157.563L107.638 157.11L107.428 157.563ZM108.35 157.521L108.601 157.954L108.35 157.521ZM61.2517 136.136L61.4621 135.682L61.2517 136.136ZM61.2513 136.136L60.9676 136.547L61.2513 136.136ZM90.9791 60.123L91.2299 60.5555L90.9791 60.123ZM92.0481 60.1646L92.3318 59.7529L92.0481 60.1646ZM16.2329 105.117L15.9492 105.528L16.2329 105.117ZM16.5495 103.861L91.2299 60.5555L90.7283 59.6904L16.0479 102.995L16.5495 103.861ZM61.535 135.724L16.5166 104.705L15.9492 105.528L60.9676 136.547L61.535 135.724ZM107.638 157.11L61.4621 135.682L61.0412 136.589L107.217 158.017L107.638 157.11ZM182.582 113.899L108.1 157.089L108.601 157.954L183.084 114.764L182.582 113.899ZM137.635 92.1743L182.542 113.013L182.963 112.105L138.056 91.2672L137.635 92.1743ZM137.346 91.7206V91.7207H138.346V91.7206H137.346ZM91.7644 60.5763L137.562 92.1323L138.129 91.3088L92.3318 59.7529L91.7644 60.5763ZM137.598 91.2865C137.77 91.1877 137.977 91.2038 138.129 91.3088L137.562 92.1323C137.715 92.2374 137.921 92.2534 138.094 92.1547L137.598 91.2865ZM138.346 91.7206C138.346 91.3367 137.931 91.0959 137.598 91.2865L138.094 92.1547C137.761 92.3451 137.346 92.1045 137.346 91.7206H138.346ZM138.056 91.2672C138.233 91.3491 138.346 91.526 138.346 91.7207H137.346C137.346 91.9153 137.459 92.0923 137.635 92.1743L138.056 91.2672ZM183.084 114.764C184.134 114.155 184.063 112.616 182.963 112.105L182.542 113.013C182.909 113.183 182.932 113.696 182.582 113.899L183.084 114.764ZM107.217 158.017C107.661 158.223 108.178 158.199 108.601 157.954L108.1 157.089C107.959 157.171 107.786 157.178 107.638 157.11L107.217 158.017ZM61.505 136.567C61.358 136.653 61.1842 136.656 61.0412 136.589L61.4621 135.682C61.319 135.616 61.1451 135.618 60.998 135.705L61.505 136.567ZM60.9676 136.547C61.1277 136.658 61.3373 136.665 61.505 136.567L60.998 135.705C61.1655 135.606 61.3749 135.614 61.535 135.724L60.9676 136.547ZM91.2299 60.5555C91.3971 60.4585 91.6052 60.4666 91.7644 60.5763L92.3318 59.7529C91.8543 59.4238 91.2299 59.3995 90.7283 59.6904L91.2299 60.5555ZM16.0479 102.995C15.0955 103.548 15.0427 104.904 15.9492 105.528L16.5166 104.705C16.2144 104.497 16.232 104.045 16.5495 103.861L16.0479 102.995Z" + fill="#DA3635" /> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M93.2787 66.1783C92.9604 65.9589 92.5441 65.9427 92.2097 66.1366L24.8316 105.207C24.1967 105.575 24.1615 106.479 24.7659 106.896L64.8471 134.513C65.1654 134.732 65.5816 134.749 65.9161 134.555L133.294 95.484C133.929 95.1158 133.964 94.2119 133.36 93.7955L93.2787 66.1783ZM135.133 94.9109C134.837 94.7735 134.493 94.7892 134.21 94.9529L67.0302 133.909C66.3303 134.315 66.377 135.34 67.1109 135.681L107.098 154.236C107.394 154.374 107.738 154.358 108.02 154.194L175.2 115.239C175.9 114.833 175.853 113.807 175.12 113.466L135.133 94.9109Z" + fill="#EDEDED" /> + <path + d="M30.1357 104.232L90.864 69.0171C90.9506 68.9673 91.0688 68.9756 91.1987 69.0487L30.4704 104.263C30.3422 104.19 30.2223 104.182 30.1357 104.232Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M30.4703 104.263L91.1986 69.0486L92.6902 70.0735L31.9619 105.29L30.4703 104.263Z" fill="white" + stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M31.9369 104.523L92.6652 69.3079C92.6818 69.298 92.7018 69.2897 92.7218 69.2847L31.9918 104.499C31.9718 104.504 31.9535 104.513 31.9369 104.523Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M31.9386 103.69L92.6669 68.4755C92.6919 68.4606 92.7202 68.4522 92.7501 68.4473L32.0218 103.662C31.9919 103.667 31.9636 103.675 31.9386 103.69Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M31.9419 102.818L92.6685 67.6034C92.6952 67.5885 92.7235 67.5785 92.7568 67.5752L32.0285 102.79C31.9968 102.793 31.9669 102.803 31.9419 102.818Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M31.9453 101.245L92.6736 66.0304C92.7552 65.9823 92.87 65.9906 92.9932 66.0603L32.2649 101.277C32.1418 101.205 32.0285 101.199 31.9453 101.245Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M69.1141 130.918L129.841 95.7034L129.846 95.7084L69.1191 130.923L69.1141 130.918Z" fill="white" + stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M69.119 130.923L129.846 95.7085H129.852L69.124 130.923H69.119Z" fill="white" stroke="#DA3635" + stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M132.121 98.4875L71.3931 133.702C71.493 133.644 71.5545 133.521 71.5562 133.345C71.5562 133.264 71.5429 133.177 71.5179 133.091L132.246 97.8762C132.271 97.9626 132.285 98.049 132.285 98.1304C132.283 98.3048 132.221 98.4294 132.121 98.4875Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M106 148.5V144L166 109L168.5 114L108 149.5L106 148.5Z" fill="white" /> + <path + d="M168.851 114.705L108.122 149.92C108.217 149.865 108.272 149.739 108.257 149.564C108.234 149.272 108.029 148.945 107.745 148.784L168.473 113.569C168.759 113.73 168.962 114.057 168.986 114.35C168.999 114.524 168.946 114.651 168.851 114.705Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M107.745 148.784C108.031 148.945 108.234 149.272 108.257 149.564C108.282 149.875 108.092 150.031 107.833 149.912L71.518 133.091C71.5429 133.177 71.5563 133.264 71.5563 133.345C71.5546 133.697 71.3049 133.84 70.9969 133.662L67.2312 131.493C66.9233 131.315 66.6736 130.885 66.6752 130.533C66.6752 130.451 66.6902 130.38 66.7152 130.323L30.422 105.315C30.164 105.137 29.9759 104.763 30.0025 104.483C30.0275 104.219 30.2322 104.127 30.472 104.265L31.9619 105.29C31.8554 105.122 31.7938 104.925 31.8088 104.76C31.8221 104.616 31.892 104.526 31.9936 104.501C31.8687 104.325 31.7954 104.107 31.8121 103.928C31.8271 103.77 31.9086 103.679 32.0235 103.664C31.8837 103.483 31.7971 103.247 31.8154 103.056C31.8304 102.896 31.9136 102.805 32.0318 102.79C31.8887 102.607 31.8004 102.37 31.8188 102.177C31.8287 102.067 31.872 101.991 31.9353 101.948C31.8537 101.797 31.8088 101.629 31.8221 101.484C31.8454 101.232 32.0418 101.145 32.2699 101.277L68.9942 126.581L105.98 143.742C106.253 143.897 106.448 144.207 106.469 144.486C106.483 144.644 106.436 144.76 106.353 144.817C106.416 144.932 106.458 145.058 106.468 145.179C106.484 145.393 106.394 145.528 106.251 145.546C106.368 145.694 106.451 145.883 106.464 146.059C106.481 146.27 106.394 146.407 106.255 146.427C106.368 146.573 106.449 146.759 106.463 146.933C106.478 147.131 106.403 147.262 106.278 147.294C106.378 147.435 106.448 147.604 106.459 147.764C106.474 147.947 106.411 148.071 106.303 148.116L107.745 148.784Z" + fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M68.9893 126.581L129.718 91.3662L166.703 108.529L105.975 143.744L68.9893 126.581Z" fill="white" + stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M32.2649 101.277L92.9932 66.062L129.717 91.3662L68.9892 126.581L32.2649 101.277Z" fill="white" + stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M132.571 136.269C133.477 136.79 133.482 137.636 132.581 138.157L127.092 141.34C126.193 141.862 124.732 141.862 123.826 141.34L120.934 139.674L129.678 134.604L132.571 136.269Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M139.708 131.26C140.612 131.782 140.617 132.626 139.718 133.147L134.229 136.33C133.33 136.852 131.868 136.852 130.964 136.33L128.073 134.664L136.816 129.594L139.708 131.26Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M147.226 126.047C148.13 126.569 148.135 127.413 147.236 127.935L141.747 131.117C140.848 131.639 139.386 131.639 138.482 131.117L135.591 129.451L144.334 124.381L147.226 126.047Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M154.72 120.788C155.624 121.31 155.629 122.154 154.73 122.675L149.242 125.858C148.343 126.38 146.881 126.38 145.977 125.858L143.085 124.192L151.829 119.122L154.72 120.788Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M162.292 115.713C163.197 116.235 163.202 117.081 162.303 117.601L156.815 120.783C155.916 121.305 154.452 121.305 153.547 120.783L150.655 119.117L159.398 114.047L162.292 115.713Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M169.488 110.237C170.392 110.759 170.397 111.602 169.498 112.124L164.01 115.307C163.111 115.828 161.649 115.828 160.745 115.307L157.853 113.641L166.597 108.571L169.488 110.237Z" + fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M92.6487 75.7591C93.3749 75.3399 94.5521 75.3399 95.2783 75.7591L98.1088 77.3933C98.7516 77.7644 98.8354 78.3493 98.3071 78.7764L93.4469 82.7048C92.9725 83.0883 92.1203 83.2483 91.3459 83.0993L88.2927 82.5117C86.1133 85.4647 86.1133 88.8261 88.2927 91.7792L91.3459 91.1916C92.1203 91.0426 92.9725 91.2026 93.4469 91.5861L98.3071 95.5145C98.8354 95.9415 98.7516 96.5265 98.1088 96.8975L95.2783 98.5318C94.5521 98.951 93.3749 98.951 92.6487 98.5318L90.0192 97.0136C80.5794 91.5636 80.5794 82.7273 90.0192 77.2773L92.6487 75.7591Z" + fill="#DA3635" /> + <rect width="3.69092" height="31.2471" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 62.4653 92.2888)" + fill="#DA3635" /> + <rect width="3.69092" height="31.2471" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 57.9817 95.2778)" + fill="#DA3635" /> + <rect width="3.69092" height="9.39302" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 53 99.2632)" + fill="#DA3635" /> + <rect width="3.69092" height="9.39302" rx="1.84546" transform="matrix(0.866025 -0.5 0.866025 0.5 69.4397 109.725)" + fill="#DA3635" /> + <rect width="3.82749" height="3.69147" rx="1.84574" transform="matrix(0.866025 -0.5 0.866025 0.5 62.9635 105.808)" + fill="#DA3635" /> + <path + d="M141 108.504L141.104 108.683C141.567 109.482 142.467 109.92 143.381 109.791L143.569 109.765C144.38 109.65 145.177 110.044 145.579 110.758V110.758C145.848 111.234 146.301 111.579 146.831 111.711L150 112.5" + stroke="black" stroke-linecap="round" /> + <path + d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" + fill="white" /> + <path + d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" + fill="white" /> + <path + d="M125.581 75.6008C126.101 73.9909 129.691 73.2772 129.57 75.5842C129.498 76.7294 129.171 77.1609 127.993 77.2826C127.041 77.3545 125.426 76.486 125.581 75.3906" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" + fill="white" /> + <path + d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" + fill="white" /> + <path + d="M126.239 77.1772C125.979 78.0071 125.216 79.6889 126.831 79.2076C127.335 79.0527 128.48 78.8093 128.115 78.1841C127.871 77.7526 126.815 77.5756 126.538 77.0942" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" + fill="white" /> + <path + d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" + fill="white" /> + <path + d="M128.043 93.4591C128.026 96.5129 126.549 99.5447 126.848 102.576C126.92 103.218 127.141 103.91 126.969 104.568C126.781 105.21 125.996 105.713 125.442 105.016C125.094 104.585 125.182 103.318 125.166 102.781C125.133 101.896 125.271 101.132 125.116 100.269C124.751 98.3829 125.448 96.4023 124.889 94.5489C124.596 93.5587 124.353 93.199 124.579 92.1756C124.911 90.7039 124.319 89.7302 126.14 89.5421C127.213 89.437 128.275 89.2323 129.315 88.9889C129.625 88.917 130.825 88.2973 131.119 88.4688C131.534 88.7123 131.185 91.141 131.185 91.7274C131.185 93.7412 130.975 95.6444 131.185 97.6028C131.34 98.9527 130.908 100.341 130.787 101.675C130.72 102.505 131.152 104.535 129.713 104.186C128.463 103.893 128.828 100.214 128.779 99.1242C128.729 97.5641 129.404 94.7536 128.187 93.5421" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" + fill="white" /> + <path + d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" + fill="white" /> + <path + d="M129.326 103.949C129.376 104.259 129.221 104.397 129.066 104.657C129.918 105.559 130.123 104.745 130.416 104.087C129.88 104.209 129.808 104.242 129.426 104.054" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" + fill="white" /> + <path + d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" + fill="white" /> + <path + d="M129.066 104.778C128.236 106.128 130.732 106.012 131.6 106.012C133.177 105.995 131.877 105.249 131.185 104.917C130.859 104.762 130.577 104.568 130.25 104.623C129.747 104.69 129.625 105.315 129.088 104.64" + stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" + fill="white" /> + <path + d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" + fill="white" /> + <path + d="M125.581 105.177C125.581 105.453 125.492 105.647 125.509 105.924C126.671 106.776 126.582 105.94 126.582 105.11C126.289 105.232 125.94 105.321 125.647 105.182" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" + fill="white" /> + <path + d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" + fill="white" /> + <path + d="M125.371 105.852C125.282 106.582 125.249 106.77 125.841 107.378C126.328 107.865 126.776 108.33 127.473 108.402C127.799 107.655 126.986 106.598 126.538 106.045C126.189 106.217 125.703 106.255 125.514 105.874" + stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M125.581 78.234C125.066 78.411 124.696 78.7374 124.314 79.1025C123.866 79.5341 123.169 79.9324 122.892 80.5244C122.477 81.4261 122.267 83.0914 122.184 84.0761C122.062 85.2711 122.151 86.4662 122.25 87.6667C122.25 87.6667 122.223 88.4301 124.043 87.5173C124.043 87.5173 123.75 89.6251 124.795 89.9737C125.869 90.5656 126.981 90.3388 128.192 90.3388C129.509 90.3222 130.776 90.0622 131.312 88.7787C131.628 88.231 131.307 86.6045 131.307 86.6045C132.192 87.1245 133.376 86.1951 133.376 86.1951C133.603 84.4966 132.491 82.6931 131.866 81.1661C131.534 80.3695 131.152 79.7443 130.582 79.0859C130.355 78.8093 130.062 78.2561 129.785 78.0625C129.337 77.7139 129.664 77.8356 129.144 77.9573C128.07 78.2174 126.333 80.209 125.725 78.2506C125.736 78.2506 125.725 78.1842 125.581 78.234Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M125.736 78.2506C126.344 80.209 128.076 78.2174 129.155 77.9573C129.675 77.8356 129.343 77.7139 129.797 78.0625C130.073 78.2506 130.366 78.8093 130.593 79.0859C131.163 79.7443 131.545 80.3695 131.877 81.1661C132.502 82.6931 133.608 84.4966 133.387 86.1951C133.387 86.1951 132.209 87.1245 131.318 86.6045C131.318 86.6045 131.639 88.231 131.323 88.7787C130.787 90.0622 129.52 90.3222 128.203 90.3388C126.992 90.3388 125.88 90.5656 124.806 89.9737C123.761 89.6251 124.054 87.5173 124.054 87.5173C122.228 88.4301 122.261 87.6667 122.261 87.6667C122.156 86.4717 122.073 85.2767 122.195 84.0761C122.284 83.0859 122.488 81.4261 122.903 80.5244C123.18 79.9324 123.877 79.5341 124.325 79.1025C124.707 78.7374 125.072 78.3944 125.592 78.234C125.581 78.234 125.675 78.1786 125.736 78.2506Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" + fill="white" /> + <path + d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" + fill="#DA3635" /> + <path + d="M126.532 75.5508C126.671 75.5176 126.566 75.2023 126.743 75.1193C127.141 74.8924 127.052 75.241 127.473 75.241C127.993 75.241 128.563 74.6878 129.066 74.4941C129.155 74.6822 129.276 75.1525 129.57 75.1193C129.879 75.0695 129.968 74.4609 129.935 74.2175C129.846 73.5757 129.293 73.4706 128.756 73.3157C128.253 73.1774 127.666 73.0391 127.146 73.0059C126.195 72.934 125.846 73.5259 125.481 74.3945C125.205 75.0363 125.099 75.6946 125.531 76.3032C125.896 76.8233 126.626 77.6365 127.146 78.0183C127.738 78.4498 128.917 78.7098 129.26 77.9685C129.658 77.1165 129.26 76.6849 128.513 76.8952C127.473 77.205 127.335 77.2437 126.554 76.53C126.344 76.3585 125.758 76.27 125.758 75.8551C125.774 75.3848 126.261 75.4236 126.416 75.8053" + stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path d="M122 80.4693L122.365 78.71L124.44 77.5039L126.149 78.0571L139.942 101.797L135.792 104.209L122 80.4693Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path d="M135.792 104.209L136.135 102.405L138.21 101.205L139.942 101.797L140.755 107.976L135.792 104.209Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M138.614 106.35L138.857 105.869C139.045 105.492 139.444 105.26 139.87 105.282L140.406 105.31L140.76 107.982L138.614 106.35Z" + fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path d="M124.44 77.5039L138.21 101.205L139.942 101.797L126.149 78.0571L124.44 77.5039Z" fill="white" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path d="M136.135 102.405L122.365 78.71L122 80.4693L135.792 104.209L136.135 102.405Z" fill="white" stroke="#706F6F" + stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M122.903 87.4346C122.903 87.4346 124.707 87.1967 125.57 86.4056L124.956 85.2991C124.956 85.2991 123.357 85.9187 123.196 86.1455C123.036 86.3779 122.903 87.4346 122.903 87.4346Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M124.961 85.2989C124.961 85.2989 124.961 84.2975 125.348 83.9822C125.741 83.6724 125.348 84.718 125.348 84.718C125.348 84.718 126.272 83.9213 126.538 84.0043C126.803 84.0873 127.091 84.9504 127.008 85.3653C126.925 85.7802 125.719 86.2284 125.57 86.4054L124.961 85.2989Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M123.075 87.9048C123.075 87.9048 125.349 86.66 125.57 86.4055L124.956 85.2991C124.956 85.2991 123.639 85.7638 123.257 86.0847" + fill="white" /> + <path + d="M123.075 87.9048C123.075 87.9048 125.349 86.66 125.57 86.4055L124.956 85.2991C124.956 85.2991 123.639 85.7638 123.257 86.0847" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M131.821 84.6515C131.821 84.6515 129.592 84.1813 129.155 83.6335L130.355 85.9018C130.355 85.9018 131.152 86.7427 132.496 86.6044" + fill="white" /> + <path + d="M131.821 84.6515C131.821 84.6515 129.592 84.1813 129.155 83.6335L130.355 85.9018C130.355 85.9018 131.152 86.7427 132.496 86.6044" + stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path d="M129.575 81.3542C129.575 81.3542 130.333 84.0375 131.135 84.4856L129.575 81.3542Z" fill="white" /> + <path d="M129.575 81.3542C129.575 81.3542 130.333 84.0375 131.135 84.4856" stroke="#706F6F" stroke-miterlimit="10" + stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M180.108 74.1322C183.506 76.0828 183.52 79.2464 180.149 81.2038C176.779 83.1544 171.29 83.1544 167.892 81.2038C164.493 79.2533 164.48 76.0897 167.857 74.1322C171.235 72.1748 176.716 72.1817 180.108 74.1322Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" /> + <path + d="M63.8991 162.813L45.8808 152.411C45.5898 152.243 45.1113 152.243 44.8203 152.411L13.2624 170.75C13.1144 170.833 13.0453 170.947 13.0453 171.055L13.0404 173.019C13.0404 173.132 13.1144 173.241 13.2624 173.329L31.2807 183.732C31.5717 183.9 32.0501 183.9 32.3411 183.732L63.8991 165.393C64.0421 165.309 64.1161 165.201 64.1161 165.087L64.121 163.124C64.121 163.139 64.1161 163.154 64.1112 163.168C64.1358 163.04 64.0668 162.907 63.8991 162.813Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /> + <path + d="M62.5919 162.562L45.4319 152.653C45.1507 152.49 44.7019 152.49 44.4207 152.653L14.3622 170.118C14.2241 170.197 14.1551 170.306 14.1551 170.409L14.1501 172.279C14.1501 172.387 14.2192 172.491 14.3622 172.575L31.5223 182.484C31.8035 182.647 32.2523 182.647 32.5335 182.484L62.5919 165.018C62.73 164.939 62.7991 164.831 62.7991 164.727L62.804 162.858C62.804 162.873 62.7991 162.887 62.7991 162.902C62.8188 162.779 62.7547 162.656 62.5919 162.562Z" + fill="#EDEDED" /> + <path + d="M34.8074 128.015L36.4845 128C36.4154 128 36.3513 128.02 36.2822 128.054L34.6052 128.069C34.6693 128.035 34.7384 128.02 34.8074 128.015Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M15.117 168.698L13.4399 168.712C13.2476 168.712 13.0651 168.574 12.9812 168.333L14.6583 168.318C14.7421 168.56 14.9246 168.703 15.117 168.698Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M6.96854 144.982L5.2915 144.997L34.6052 128.074L36.2822 128.059L6.96854 144.982Z" fill="#706F6F" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M14.6582 168.323L12.9812 168.333L5.03992 145.846L6.72189 145.836L14.6582 168.323Z" fill="white" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M6.72194 145.836L5.0449 145.85C4.93146 145.525 5.03997 145.145 5.29153 145.002L6.96857 144.987C6.71701 145.13 6.6085 145.51 6.72194 145.836Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M36.2821 128.059C36.5336 127.916 36.8296 128.059 36.943 128.385L44.8794 150.872C44.9928 151.193 44.8843 151.572 44.6327 151.72L15.3191 168.644C15.0675 168.787 14.7716 168.644 14.6581 168.323L6.72178 145.836C6.60834 145.51 6.71685 145.131 6.96841 144.988L36.2821 128.059Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M36.0454 130.062C36.2822 129.924 36.5633 130.062 36.6669 130.367L44.1544 151.572C44.2629 151.878 44.1593 152.233 43.9226 152.371L16.281 168.333C16.0443 168.471 15.7631 168.333 15.6546 168.032L8.16711 146.827C8.0586 146.521 8.16218 146.161 8.40387 146.028L36.0454 130.062Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M62.9075 161.581L62.9026 163.455C62.9026 163.559 62.8335 163.667 62.6954 163.746L62.7004 161.872C62.8335 161.793 62.9026 161.69 62.9075 161.581Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M14.0515 171.046L14.0564 169.172C14.0564 169.28 14.1255 169.384 14.2685 169.468L14.2636 171.342C14.1206 171.263 14.0515 171.154 14.0515 171.046Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M62.6956 161.872L62.6907 163.751L32.5089 181.291L32.5138 179.417L62.6956 161.872Z" fill="white" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M31.4978 179.417L31.4928 181.291L14.2588 171.342L14.2637 169.468L31.4978 179.417Z" fill="white" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M32.5137 179.417L32.5088 181.291C32.2276 181.454 31.7738 181.454 31.4927 181.291L31.4976 179.417C31.7788 179.579 32.2326 179.579 32.5137 179.417Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M62.6957 161.285C62.9768 161.448 62.9768 161.709 62.7006 161.872L32.5188 179.412C32.2377 179.575 31.7839 179.575 31.5028 179.412L14.2687 169.463C13.9876 169.3 13.9876 169.039 14.2687 168.876L44.4505 151.336C44.7316 151.173 45.1854 151.173 45.4666 151.336L62.6957 161.285Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M49.7676 167.835C49.8267 167.869 49.8267 167.924 49.7676 167.963L43.2962 171.722C43.237 171.756 43.1383 171.756 43.0791 171.722L39.3847 169.591C39.3255 169.556 39.3255 169.502 39.3847 169.463L45.8561 165.704C45.9153 165.67 46.014 165.67 46.0731 165.704L49.7676 167.835Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M23.2578 136.785C23.4866 136.67 23.6186 136.47 23.5526 136.339C23.4866 136.207 23.2476 136.194 23.0187 136.309C22.7899 136.424 22.6579 136.623 22.7239 136.755C22.7899 136.886 23.0289 136.9 23.2578 136.785Z" + fill="#706F6F" /> + <path + d="M25.3172 172.328C25.2432 172.328 25.1741 172.313 25.1297 172.289L23.9805 171.623L26.0225 170.434C26.0669 170.409 26.136 170.395 26.2099 170.395C26.2839 170.395 26.353 170.409 26.3974 170.434L27.5466 171.1L25.5046 172.289C25.4602 172.313 25.3862 172.328 25.3172 172.328Z" + fill="white" /> + <path + d="M26.2001 170.641C26.2396 170.641 26.2643 170.651 26.2692 170.651L27.0535 171.105L25.3813 172.077C25.3764 172.081 25.3518 172.086 25.3123 172.086C25.2728 172.086 25.2482 172.077 25.2482 172.077L24.4639 171.623L26.136 170.651C26.141 170.646 26.1656 170.641 26.2001 170.641ZM26.2001 170.148C26.0867 170.148 25.9732 170.173 25.8894 170.222L23.7882 171.44C23.6155 171.539 23.6205 171.702 23.7931 171.8L25.0016 172.501C25.0854 172.55 25.1988 172.575 25.3123 172.575C25.4257 172.575 25.5392 172.55 25.623 172.501L27.7243 171.282C27.8969 171.184 27.892 171.021 27.7243 170.922L26.5158 170.222C26.427 170.173 26.3136 170.148 26.2001 170.148Z" + fill="#706F6F" /> + <path + d="M22.93 170.952C22.856 170.952 22.7869 170.937 22.7425 170.913L21.5933 170.247L24.972 168.279C25.0164 168.254 25.0854 168.239 25.1594 168.239C25.2334 168.239 25.3025 168.254 25.3469 168.279L26.4961 168.945L23.1174 170.913C23.073 170.937 23.004 170.952 22.93 170.952Z" + fill="white" /> + <path + d="M25.1545 168.486C25.194 168.486 25.2187 168.496 25.2187 168.496L26.0029 168.949L22.9941 170.7C22.9892 170.705 22.9645 170.71 22.925 170.71C22.8856 170.71 22.8609 170.7 22.8609 170.7L22.0767 170.247L25.0855 168.5C25.0953 168.491 25.12 168.486 25.1545 168.486ZM25.1545 167.992C25.0411 167.992 24.9276 168.017 24.8438 168.066L21.4058 170.064C21.2332 170.163 21.2381 170.325 21.4108 170.424L22.6192 171.125C22.708 171.174 22.8165 171.199 22.93 171.199C23.0434 171.199 23.1569 171.174 23.2407 171.125L26.6787 169.127C26.8513 169.028 26.8513 168.865 26.6787 168.767L25.4702 168.066C25.3814 168.017 25.268 167.992 25.1545 167.992Z" + fill="#706F6F" /> + <path + d="M20.5476 169.576C20.4736 169.576 20.4045 169.561 20.3552 169.536L19.2059 168.87L20.3453 168.205C20.3897 168.18 20.4588 168.165 20.5328 168.165C20.6068 168.165 20.6758 168.18 20.7202 168.205L21.8695 168.87L20.7251 169.536C20.6906 169.561 20.6216 169.576 20.5476 169.576Z" + fill="white" /> + <path + d="M20.5377 168.407C20.5771 168.407 20.6018 168.417 20.6018 168.417L21.3861 168.87L20.6117 169.319C20.6067 169.324 20.5821 169.329 20.5475 169.329C20.5081 169.329 20.4834 169.319 20.4834 169.319L19.6992 168.866L20.4686 168.417C20.4736 168.417 20.4982 168.407 20.5377 168.407ZM20.5377 167.914C20.4242 167.914 20.3108 167.938 20.2269 167.988L19.0234 168.688C18.8508 168.787 18.8557 168.949 19.0283 169.048L20.2368 169.748C20.3256 169.798 20.439 169.822 20.5475 169.822C20.661 169.822 20.7744 169.798 20.8583 169.748L22.0618 169.048C22.2345 168.949 22.2345 168.787 22.0618 168.688L20.8534 167.988C20.7646 167.938 20.6511 167.914 20.5377 167.914Z" + fill="#706F6F" /> + <path + d="M36.2032 160.48C36.1292 160.48 36.0602 160.465 36.0158 160.441L34.8616 159.775L36.0059 159.109C36.0503 159.084 36.1194 159.069 36.1933 159.069C36.2673 159.069 36.3364 159.084 36.3857 159.114L37.535 159.78L36.3956 160.445C36.3462 160.465 36.2772 160.48 36.2032 160.48Z" + fill="white" /> + <path + d="M36.1883 159.311C36.2278 159.311 36.2524 159.321 36.2573 159.321L37.0416 159.775L36.2721 160.224C36.2672 160.229 36.2426 160.233 36.2031 160.233C36.1636 160.233 36.139 160.224 36.139 160.224L35.3547 159.77L36.1291 159.321C36.1291 159.316 36.1538 159.311 36.1883 159.311ZM36.1883 158.818C36.0748 158.818 35.9614 158.843 35.8776 158.892L34.674 159.592C34.5014 159.691 34.5014 159.854 34.674 159.952L35.8825 160.653C35.9713 160.702 36.0847 160.727 36.1932 160.727C36.3067 160.727 36.4201 160.702 36.504 160.653L37.7075 159.952C37.8801 159.854 37.8752 159.691 37.7026 159.592L36.4941 158.892C36.4152 158.843 36.3017 158.818 36.1883 158.818Z" + fill="#706F6F" /> + <path + d="M40.9682 163.232C40.8942 163.232 40.8251 163.218 40.7807 163.193L39.6315 162.527L40.7758 161.861C40.8202 161.837 40.8893 161.822 40.9633 161.822C41.0372 161.822 41.1063 161.837 41.1507 161.866L42.3 162.532L41.1605 163.198C41.1112 163.213 41.0422 163.232 40.9682 163.232Z" + fill="white" /> + <path + d="M40.9583 162.064C40.9978 162.064 41.0224 162.073 41.0274 162.073L41.8116 162.527L41.0422 162.976C41.0372 162.981 41.0126 162.986 40.9731 162.986C40.9336 162.986 40.909 162.976 40.909 162.976L40.1247 162.522L40.8991 162.073C40.8991 162.069 40.9238 162.064 40.9583 162.064ZM40.9583 161.57C40.8449 161.57 40.7314 161.595 40.6476 161.644L39.4441 162.345C39.2714 162.443 39.2714 162.606 39.4441 162.705L40.6525 163.405C40.7363 163.454 40.8498 163.479 40.9632 163.479C41.0767 163.479 41.1901 163.454 41.274 163.405L42.4775 162.705C42.6501 162.606 42.6452 162.443 42.4775 162.345L41.2691 161.644C41.1852 161.595 41.0718 161.57 40.9583 161.57Z" + fill="#706F6F" /> + <path + d="M47.5331 156.658C47.4591 156.658 47.3901 156.643 47.3457 156.618L43.8091 154.576L44.9534 153.91C44.9978 153.886 45.0669 153.871 45.1409 153.871C45.2148 153.871 45.2839 153.886 45.3283 153.91L48.8649 155.952L47.7205 156.618C47.6712 156.643 47.6022 156.658 47.5331 156.658Z" + fill="white" /> + <path + d="M45.1359 154.112C45.1754 154.112 45.2001 154.122 45.205 154.122L48.3716 155.952L47.5972 156.401C47.5923 156.406 47.5676 156.411 47.5282 156.411C47.4887 156.411 47.4641 156.401 47.4641 156.401L44.2974 154.571L45.0718 154.122C45.0767 154.117 45.1014 154.112 45.1359 154.112ZM45.1359 153.619C45.0225 153.619 44.909 153.644 44.8252 153.693L43.6217 154.394C43.449 154.492 43.454 154.655 43.6266 154.754L47.2174 156.83C47.3062 156.88 47.4147 156.904 47.5282 156.904C47.6416 156.904 47.7551 156.88 47.8389 156.83L49.0424 156.13C49.2151 156.031 49.2151 155.868 49.0424 155.77L45.4516 153.693C45.3628 153.644 45.2494 153.619 45.1359 153.619Z" + fill="#706F6F" /> + <path + d="M43.2072 161.93C43.1332 161.93 43.0641 161.916 43.0198 161.891L41.8705 161.225L43.0148 160.559C43.0592 160.535 43.1283 160.52 43.2023 160.52C43.2762 160.52 43.3453 160.535 43.3946 160.559L44.5439 161.225L43.4045 161.891C43.3502 161.916 43.2812 161.93 43.2072 161.93Z" + fill="white" /> + <path + d="M43.1925 160.766C43.2319 160.766 43.2566 160.776 43.2566 160.776L44.0408 161.23L43.2664 161.679C43.2615 161.684 43.2368 161.689 43.1974 161.689C43.1579 161.689 43.1333 161.679 43.1333 161.679L42.349 161.225L43.1234 160.776C43.1333 160.771 43.1579 160.766 43.1925 160.766ZM43.1925 160.273C43.079 160.273 42.9656 160.298 42.8817 160.347L41.6782 161.047C41.5055 161.146 41.5105 161.309 41.6831 161.407L42.8916 162.108C42.9754 162.157 43.0889 162.182 43.2023 162.182C43.3158 162.182 43.4292 162.157 43.5131 162.108L44.7166 161.407C44.8892 161.309 44.8843 161.146 44.7166 161.047L43.5081 160.347C43.4193 160.298 43.3059 160.273 43.1925 160.273Z" + fill="#706F6F" /> + <path + d="M45.5897 163.306C45.5158 163.306 45.4467 163.292 45.4023 163.267L44.2531 162.601L45.3974 161.935C45.4418 161.911 45.5108 161.896 45.5848 161.896C45.6588 161.896 45.7279 161.911 45.7723 161.935L46.9265 162.601L45.7821 163.267C45.7328 163.292 45.6637 163.306 45.5897 163.306Z" + fill="white" /> + <path + d="M45.5799 162.142C45.6194 162.142 45.644 162.152 45.644 162.152L46.4283 162.606L45.6539 163.055C45.6489 163.06 45.6243 163.065 45.5848 163.065C45.5454 163.065 45.5207 163.055 45.5207 163.055L44.7364 162.601L45.5108 162.152C45.5158 162.147 45.5404 162.142 45.5799 162.142ZM45.5799 161.649C45.4664 161.649 45.353 161.674 45.2691 161.723L44.0656 162.424C43.893 162.522 43.8979 162.685 44.0656 162.784L45.2741 163.484C45.3579 163.533 45.4714 163.558 45.5848 163.558C45.6983 163.558 45.8117 163.533 45.8956 163.484L47.0991 162.784C47.2717 162.685 47.2668 162.522 47.0991 162.424L45.8906 161.723C45.8068 161.674 45.6933 161.649 45.5799 161.649Z" + fill="#706F6F" /> + <path + d="M47.6809 159.331C47.607 159.331 47.5379 159.316 47.4935 159.292L46.3442 158.626L49.723 156.663C49.7674 156.638 49.8364 156.623 49.9104 156.623C49.9844 156.623 50.0535 156.638 50.0978 156.663L51.2471 157.328L47.8684 159.296C47.8191 159.316 47.75 159.331 47.6809 159.331Z" + fill="white" /> + <path + d="M49.9054 156.865C49.9448 156.865 49.9695 156.875 49.9744 156.875L50.7587 157.328L47.7499 159.079C47.745 159.084 47.7203 159.089 47.6858 159.089C47.6463 159.089 47.6216 159.079 47.6216 159.079L46.8374 158.626L49.8462 156.88C49.8413 156.875 49.8659 156.865 49.9054 156.865ZM49.9054 156.372C49.7919 156.372 49.6785 156.396 49.5946 156.446L46.1567 158.443C45.9841 158.542 45.989 158.705 46.1616 158.803L47.3701 159.504C47.4539 159.553 47.5674 159.578 47.6808 159.578C47.7943 159.578 47.9077 159.553 47.9916 159.504L51.4295 157.506C51.6021 157.407 51.5972 157.245 51.4295 157.146L50.221 156.446C50.1323 156.396 50.0188 156.372 49.9054 156.372Z" + fill="#706F6F" /> + <path + d="M52.298 159.41C52.2241 159.41 52.155 159.395 52.1106 159.37L50.9564 158.705L52.1007 158.039C52.1451 158.014 52.2142 157.999 52.2882 157.999C52.3622 157.999 52.4312 158.014 52.4756 158.039L53.6249 158.705L52.4805 159.37C52.4411 159.395 52.372 159.41 52.298 159.41Z" + fill="white" /> + <path + d="M52.2881 158.241C52.3276 158.241 52.3523 158.251 52.3523 158.251L53.1365 158.705L52.3621 159.154C52.3572 159.158 52.3325 159.163 52.2931 159.163C52.2536 159.163 52.2289 159.154 52.2289 159.154L51.4447 158.7L52.2191 158.251C52.2289 158.251 52.2536 158.241 52.2881 158.241ZM52.2881 157.748C52.1747 157.748 52.0612 157.772 51.9774 157.822L50.7739 158.522C50.6012 158.621 50.6062 158.784 50.7739 158.882L51.9823 159.583C52.0662 159.632 52.1796 159.657 52.2931 159.657C52.4065 159.657 52.52 159.632 52.6038 159.583L53.8073 158.882C53.98 158.784 53.975 158.621 53.8073 158.522L52.5989 157.822C52.515 157.772 52.4016 157.748 52.2881 157.748Z" + fill="#706F6F" /> + <path + d="M45.4419 160.633C45.3679 160.633 45.2989 160.618 45.2545 160.594L44.1052 159.928L45.2496 159.262C45.294 159.237 45.363 159.222 45.437 159.222C45.511 159.222 45.58 159.237 45.6244 159.262L46.7737 159.928L45.6294 160.594C45.585 160.618 45.5159 160.633 45.4419 160.633Z" + fill="white" /> + <path + d="M45.4319 159.464C45.4714 159.464 45.4961 159.474 45.4961 159.474L46.2803 159.928L45.5059 160.377C45.501 160.382 45.4763 160.387 45.4369 160.387C45.3974 160.387 45.3728 160.377 45.3728 160.377L44.5885 159.923L45.3629 159.474C45.3678 159.474 45.3925 159.464 45.4319 159.464ZM45.4319 158.971C45.3185 158.971 45.205 158.996 45.1212 159.045L43.9177 159.745C43.745 159.844 43.75 160.007 43.9226 160.105L45.1311 160.806C45.2149 160.855 45.3284 160.88 45.4418 160.88C45.5553 160.88 45.6687 160.855 45.7525 160.806L46.9561 160.105C47.1287 160.007 47.1238 159.844 46.9561 159.745L45.7476 159.045C45.6588 158.996 45.5454 158.971 45.4319 158.971Z" + fill="#706F6F" /> + <path + d="M50.0636 160.707C49.9896 160.707 49.9206 160.692 49.8762 160.668L48.7269 160.002L49.8663 159.336C49.9107 159.311 49.9847 159.297 50.0538 159.297C50.1278 159.297 50.1968 159.311 50.2412 159.336L51.3905 160.002L50.2511 160.668C50.2067 160.692 50.1376 160.707 50.0636 160.707Z" + fill="white" /> + <path + d="M50.0538 159.543C50.0932 159.543 50.1179 159.553 50.1179 159.553L50.9021 160.007L50.1278 160.456C50.1228 160.46 50.0982 160.465 50.0636 160.465C50.0242 160.465 49.9995 160.456 49.9995 160.456L49.2152 160.002L49.9847 159.553C49.9896 159.548 50.0143 159.543 50.0538 159.543ZM50.0538 159.05C49.9403 159.05 49.8269 159.074 49.743 159.124L48.5395 159.824C48.3669 159.923 48.3718 160.086 48.5395 160.184L49.748 160.885C49.8318 160.934 49.9453 160.959 50.0587 160.959C50.1721 160.959 50.2856 160.934 50.3694 160.885L51.573 160.184C51.7456 160.086 51.7456 159.923 51.573 159.824L50.3645 159.124C50.2757 159.074 50.1672 159.05 50.0538 159.05Z" + fill="#706F6F" /> + <path + d="M47.8242 162.009C47.7503 162.009 47.6812 161.994 47.6368 161.97L46.4875 161.304L47.6319 160.638C47.6763 160.613 47.7453 160.598 47.8193 160.598C47.8933 160.598 47.9624 160.613 48.0067 160.638L49.156 161.304L48.0117 161.97C47.9673 161.994 47.8982 162.009 47.8242 162.009Z" + fill="white" /> + <path + d="M47.8144 160.84C47.8539 160.84 47.8785 160.85 47.8785 160.85L48.6628 161.304L47.8884 161.753C47.8834 161.758 47.8588 161.763 47.8193 161.763C47.7799 161.763 47.7552 161.753 47.7552 161.753L46.9709 161.299L47.7453 160.85C47.7552 160.85 47.7799 160.84 47.8144 160.84ZM47.8144 160.347C47.7009 160.347 47.5875 160.372 47.5036 160.421L46.3001 161.121C46.1275 161.22 46.1324 161.383 46.3001 161.481L47.5086 162.182C47.5924 162.231 47.7059 162.256 47.8193 162.256C47.9328 162.256 48.0462 162.231 48.1301 162.182L49.3336 161.481C49.5062 161.383 49.5013 161.22 49.3336 161.121L48.1251 160.421C48.0413 160.372 47.9278 160.347 47.8144 160.347Z" + fill="#706F6F" /> + <path + d="M45.2938 157.955C45.2198 157.955 45.1507 157.94 45.1063 157.915L43.9521 157.25L45.0915 156.584C45.1359 156.559 45.205 156.544 45.279 156.544C45.353 156.544 45.422 156.559 45.4713 156.584L46.6206 157.25L45.4812 157.915C45.4368 157.94 45.3678 157.955 45.2938 157.955Z" + fill="white" /> + <path + d="M45.284 156.791C45.3235 156.791 45.3481 156.801 45.3481 156.801L46.1324 157.255L45.358 157.703C45.353 157.708 45.3284 157.713 45.2939 157.713C45.2593 157.713 45.2297 157.703 45.2297 157.703L44.4455 157.25L45.2199 156.801C45.2248 156.796 45.2495 156.791 45.284 156.791ZM45.284 156.298C45.1705 156.298 45.0571 156.322 44.9732 156.372L43.7697 157.072C43.5971 157.171 43.602 157.333 43.7747 157.432L44.9831 158.132C45.0719 158.182 45.1804 158.206 45.2939 158.206C45.4073 158.206 45.5207 158.182 45.6046 158.132L46.8081 157.432C46.9808 157.333 46.9808 157.171 46.8081 157.072L45.5997 156.372C45.5109 156.322 45.3974 156.298 45.284 156.298Z" + fill="#706F6F" /> + <path + d="M43.0594 159.257C42.9854 159.257 42.9163 159.242 42.8719 159.217L41.7227 158.552L42.867 157.886C42.9114 157.861 42.9804 157.846 43.0544 157.846C43.1284 157.846 43.1975 157.861 43.2419 157.886L44.3911 158.552L43.2468 159.217C43.2024 159.242 43.1284 159.257 43.0594 159.257Z" + fill="white" /> + <path + d="M43.0445 158.088C43.084 158.088 43.1086 158.098 43.1086 158.098L43.8929 158.552L43.1185 159C43.1136 159.005 43.0889 159.01 43.0544 159.01C43.0198 159.01 42.9903 159 42.9903 159L42.206 158.547L42.9804 158.098C42.9853 158.098 43.01 158.088 43.0445 158.088ZM43.0445 157.595C42.9311 157.595 42.8176 157.619 42.7338 157.669L41.5302 158.369C41.3576 158.468 41.3625 158.631 41.5352 158.729L42.7436 159.43C42.8324 159.479 42.9409 159.504 43.0544 159.504C43.1678 159.504 43.2813 159.479 43.3651 159.43L44.5686 158.729C44.7413 158.631 44.7413 158.468 44.5686 158.369L43.3602 157.669C43.2714 157.619 43.158 157.595 43.0445 157.595Z" + fill="#706F6F" /> + <path + d="M38.4376 159.178C38.3636 159.178 38.2945 159.163 38.2501 159.139L37.0959 158.473L38.2403 157.807C38.2847 157.782 38.3537 157.767 38.4277 157.767C38.5017 157.767 38.5708 157.782 38.6201 157.807L39.7693 158.473L38.625 159.139C38.5806 159.163 38.5116 159.178 38.4376 159.178Z" + fill="white" /> + <path + d="M38.4278 158.009C38.4673 158.009 38.4919 158.019 38.4969 158.019L39.2811 158.473L38.5067 158.922C38.5018 158.927 38.4771 158.931 38.4426 158.931C38.4031 158.931 38.3785 158.922 38.3785 158.922L37.5942 158.468L38.3686 158.019C38.3686 158.019 38.3933 158.009 38.4278 158.009ZM38.4278 157.516C38.3144 157.516 38.2009 157.541 38.1171 157.59L36.9135 158.29C36.7409 158.389 36.7458 158.552 36.9185 158.65L38.1269 159.351C38.2157 159.4 38.3291 159.425 38.4377 159.425C38.5511 159.425 38.6646 159.4 38.7484 159.351L39.9519 158.65C40.1246 158.552 40.1196 158.389 39.947 158.29L38.7385 157.59C38.6547 157.545 38.5412 157.516 38.4278 157.516Z" + fill="#706F6F" /> + <path + d="M40.82 160.554C40.746 160.554 40.6769 160.539 40.6325 160.515L39.4833 159.849L40.6276 159.183C40.672 159.158 40.741 159.144 40.815 159.144C40.889 159.144 40.9581 159.158 41.0074 159.183L42.1567 159.849L41.0123 160.515C40.963 160.539 40.894 160.554 40.82 160.554Z" + fill="white" /> + <path + d="M40.8103 159.385C40.8497 159.385 40.8744 159.395 40.8744 159.395L41.6586 159.849L40.8842 160.298C40.8793 160.303 40.8546 160.308 40.8201 160.308C40.7856 160.308 40.756 160.298 40.756 160.298L39.9717 159.844L40.7461 159.395C40.7511 159.395 40.7757 159.385 40.8103 159.385ZM40.8103 158.892C40.6968 158.892 40.5834 158.917 40.4995 158.966L39.296 159.666C39.1233 159.765 39.1283 159.928 39.3009 160.027L40.5094 160.727C40.5982 160.776 40.7067 160.801 40.8201 160.801C40.9336 160.801 41.047 160.776 41.1309 160.727L42.3344 160.027C42.507 159.928 42.507 159.765 42.3344 159.666L41.1259 158.966C41.0372 158.922 40.9237 158.892 40.8103 158.892Z" + fill="#706F6F" /> + <path + d="M38.5856 161.856C38.5116 161.856 38.4426 161.841 38.3982 161.817L37.2489 161.151L38.3932 160.485C38.4376 160.46 38.5067 160.446 38.5807 160.446C38.6547 160.446 38.7237 160.46 38.7681 160.49L39.9174 161.156L38.778 161.822C38.7286 161.837 38.6596 161.856 38.5856 161.856Z" + fill="white" /> + <path + d="M38.5756 160.687C38.6151 160.687 38.6397 160.697 38.6447 160.697L39.4289 161.151L38.6545 161.6C38.6496 161.605 38.625 161.61 38.5855 161.61C38.551 161.61 38.5263 161.6 38.5214 161.6L37.7371 161.146L38.5115 160.697C38.5115 160.692 38.5362 160.687 38.5756 160.687ZM38.5756 160.194C38.4622 160.194 38.3487 160.219 38.2649 160.268L37.0614 160.968C36.8887 161.067 36.8887 161.23 37.0614 161.329L38.2698 162.029C38.3586 162.078 38.4671 162.103 38.5806 162.103C38.694 162.103 38.8075 162.078 38.8913 162.029L40.0948 161.329C40.2675 161.23 40.2675 161.067 40.0948 160.968L38.8864 160.268C38.8025 160.219 38.6891 160.194 38.5756 160.194Z" + fill="#706F6F" /> + <path + d="M32.1734 171.105C32.0994 171.105 32.0303 171.09 31.9859 171.065L30.8367 170.399L31.9761 169.733C32.0205 169.709 32.0895 169.694 32.1635 169.694C32.2375 169.694 32.3065 169.709 32.3509 169.733L33.5002 170.399L32.3559 171.065C32.3164 171.09 32.2474 171.105 32.1734 171.105Z" + fill="white" /> + <path + d="M32.1635 169.936C32.203 169.936 32.2276 169.945 32.2276 169.945L33.0119 170.399L32.2375 170.848C32.2326 170.853 32.2079 170.858 32.1734 170.858C32.1339 170.858 32.1093 170.848 32.1093 170.848L31.325 170.394L32.0945 169.945C32.0994 169.945 32.1241 169.936 32.1635 169.936ZM32.1635 169.442C32.0501 169.442 31.9366 169.467 31.8528 169.516L30.6492 170.217C30.4766 170.315 30.4815 170.478 30.6492 170.577L31.8577 171.277C31.9416 171.327 32.055 171.351 32.1684 171.351C32.2819 171.351 32.3953 171.327 32.4792 171.277L33.6827 170.577C33.8554 170.478 33.8554 170.315 33.6827 170.217L32.4743 169.516C32.3855 169.467 32.277 169.442 32.1635 169.442Z" + fill="#706F6F" /> + <path + d="M34.4078 169.808C34.3338 169.808 34.2648 169.793 34.2204 169.768L33.0662 169.103L34.2105 168.437C34.2549 168.412 34.3239 168.397 34.3979 168.397C34.4719 168.397 34.541 168.412 34.5854 168.437L35.7346 169.103L34.5903 169.768C34.5508 169.788 34.4818 169.808 34.4078 169.808Z" + fill="white" /> + <path + d="M34.3979 168.639C34.4373 168.639 34.462 168.649 34.462 168.649L35.2462 169.102L34.4719 169.551C34.4669 169.556 34.4423 169.561 34.4028 169.561C34.3633 169.561 34.3387 169.551 34.3387 169.551L33.5544 169.097L34.3288 168.649C34.3387 168.644 34.3584 168.639 34.3979 168.639ZM34.3979 168.146C34.2844 168.146 34.171 168.17 34.0871 168.219L32.8836 168.92C32.711 169.019 32.7159 169.181 32.8836 169.28L34.0921 169.98C34.1759 170.03 34.2894 170.054 34.4028 170.054C34.5162 170.054 34.6297 170.03 34.7135 169.98L35.917 169.28C36.0897 169.181 36.0847 169.019 35.917 168.92L34.7086 168.219C34.6248 168.17 34.5113 168.146 34.3979 168.146Z" + fill="#706F6F" /> + <path + d="M33.9685 161.778C33.8946 161.778 33.8255 161.763 33.7811 161.738L32.6318 161.072L33.7762 160.406C33.8206 160.382 33.8896 160.367 33.9636 160.367C34.0376 160.367 34.1067 160.382 34.156 160.406L35.3053 161.072L34.1609 161.738C34.1066 161.763 34.0376 161.778 33.9685 161.778Z" + fill="white" /> + <path + d="M33.9538 160.609C33.9933 160.609 34.0179 160.619 34.0229 160.619L34.8071 161.072L34.0327 161.521C34.0278 161.526 34.0031 161.531 33.9686 161.531C33.9291 161.531 33.9045 161.521 33.8995 161.521L33.1153 161.067L33.8897 160.619C33.8946 160.619 33.9193 160.609 33.9538 160.609ZM33.9538 160.115C33.8404 160.115 33.7269 160.14 33.643 160.189L32.4395 160.89C32.2669 160.989 32.2718 161.151 32.4445 161.25L33.6529 161.95C33.7417 162 33.8551 162.024 33.9686 162.024C34.082 162.024 34.1955 162 34.2793 161.95L35.4829 161.25C35.6555 161.151 35.6506 160.989 35.4779 160.89L34.2695 160.189C34.1807 160.145 34.0672 160.115 33.9538 160.115Z" + fill="#706F6F" /> + <path + d="M31.7292 163.08C31.6552 163.08 31.5862 163.065 31.5368 163.04L30.3876 162.374L31.527 161.708C31.5714 161.684 31.6404 161.669 31.7144 161.669C31.7884 161.669 31.8575 161.684 31.9068 161.708L33.056 162.374L31.9166 163.04C31.8722 163.06 31.8032 163.08 31.7292 163.08Z" + fill="white" /> + <path + d="M31.7195 161.911C31.759 161.911 31.7837 161.921 31.7837 161.921L32.5679 162.374L31.7935 162.823C31.7886 162.828 31.7639 162.833 31.7294 162.833C31.69 162.833 31.6653 162.823 31.6604 162.823L30.8761 162.369L31.6456 161.921C31.6554 161.916 31.6801 161.911 31.7195 161.911ZM31.7195 161.417C31.6061 161.417 31.4926 161.442 31.4088 161.491L30.2053 162.192C30.0326 162.291 30.0376 162.453 30.2102 162.552L31.4187 163.252C31.5074 163.302 31.6209 163.326 31.7343 163.326C31.8478 163.326 31.9612 163.302 32.0451 163.252L33.2486 162.552C33.4212 162.453 33.4212 162.291 33.2486 162.192L32.0401 161.491C31.9464 161.442 31.833 161.417 31.7195 161.417Z" + fill="#706F6F" /> + <path + d="M36.3513 163.154C36.2773 163.154 36.2082 163.139 36.1638 163.114L35.0096 162.448L36.154 161.782C36.1984 161.758 36.2674 161.743 36.3414 161.743C36.4154 161.743 36.4845 161.758 36.5288 161.782L37.6781 162.448L36.5338 163.114C36.4894 163.139 36.4203 163.154 36.3513 163.154Z" + fill="white" /> + <path + d="M36.3364 161.985C36.3758 161.985 36.4005 161.995 36.4054 161.995L37.1897 162.448L36.4153 162.897C36.4104 162.902 36.3857 162.907 36.3512 162.907C36.3117 162.907 36.287 162.897 36.287 162.897L35.5028 162.443L36.2772 161.995C36.2772 161.995 36.3018 161.985 36.3364 161.985ZM36.3364 161.491C36.2229 161.491 36.1095 161.516 36.0256 161.565L34.8221 162.266C34.6495 162.364 34.6544 162.527 34.827 162.626L36.0355 163.326C36.1243 163.376 36.2328 163.4 36.3462 163.4C36.4597 163.4 36.5731 163.376 36.657 163.326L37.8605 162.626C38.0331 162.527 38.0331 162.364 37.8605 162.266L36.652 161.565C36.5633 161.521 36.4498 161.491 36.3364 161.491Z" + fill="#706F6F" /> + <path + d="M29.495 164.377C29.421 164.377 29.352 164.362 29.3076 164.338L28.1583 163.672L29.2977 163.006C29.3421 162.981 29.4112 162.966 29.4852 162.966C29.5591 162.966 29.6282 162.981 29.6726 163.006L30.8219 163.672L29.6825 164.338C29.6381 164.362 29.5641 164.377 29.495 164.377Z" + fill="white" /> + <path + d="M29.4803 163.208C29.5197 163.208 29.5444 163.218 29.5493 163.218L30.3336 163.672L29.5641 164.121C29.5592 164.126 29.5345 164.13 29.4951 164.13C29.4556 164.13 29.431 164.121 29.431 164.121L28.6467 163.667L29.4211 163.218C29.4211 163.218 29.4458 163.208 29.4803 163.208ZM29.4803 162.715C29.3668 162.715 29.2534 162.739 29.1695 162.789L27.966 163.489C27.7934 163.588 27.7934 163.751 27.966 163.849L29.1745 164.55C29.2633 164.599 29.3767 164.624 29.4852 164.624C29.5987 164.624 29.7121 164.599 29.796 164.55L30.9995 163.849C31.1721 163.751 31.1672 163.588 30.9945 163.489L29.7861 162.789C29.7072 162.739 29.5937 162.715 29.4803 162.715Z" + fill="#706F6F" /> + <path + d="M34.1117 164.456C34.0377 164.456 33.9687 164.441 33.9243 164.416L32.775 163.751L33.9144 163.085C33.9588 163.06 34.0279 163.045 34.1019 163.045C34.1758 163.045 34.2449 163.06 34.2942 163.085L35.4435 163.751L34.2992 164.416C34.2548 164.436 34.1857 164.456 34.1117 164.456Z" + fill="white" /> + <path + d="M34.1019 163.287C34.1413 163.287 34.166 163.297 34.166 163.297L34.9503 163.751L34.1759 164.199C34.1709 164.204 34.1463 164.209 34.1068 164.209C34.0723 164.209 34.0427 164.199 34.0427 164.199L33.2584 163.746L34.0279 163.297C34.0427 163.292 34.0674 163.287 34.1019 163.287ZM34.1019 162.794C33.9884 162.794 33.875 162.818 33.7911 162.868L32.5876 163.568C32.415 163.667 32.4199 163.83 32.5925 163.928L33.801 164.629C33.8898 164.678 33.9983 164.703 34.1117 164.703C34.2252 164.703 34.3386 164.678 34.4225 164.629L35.626 163.928C35.7987 163.83 35.7987 163.667 35.626 163.568L34.4176 162.868C34.3288 162.818 34.2153 162.794 34.1019 162.794Z" + fill="#706F6F" /> + <path + d="M27.2556 165.679C27.1816 165.679 27.1125 165.664 27.0632 165.64L25.9139 164.974L27.0583 164.308C27.1027 164.283 27.1717 164.268 27.2457 164.268C27.3197 164.268 27.3888 164.283 27.4331 164.308L28.5873 164.974L27.443 165.64C27.3986 165.659 27.3296 165.679 27.2556 165.679Z" + fill="white" /> + <path + d="M27.2458 164.51C27.2853 164.51 27.3099 164.52 27.3099 164.52L28.0942 164.974L27.3198 165.423C27.3149 165.428 27.2902 165.432 27.2557 165.432C27.2162 165.432 27.1915 165.423 27.1866 165.423L26.4023 164.969L27.1767 164.52C27.1866 164.515 27.2113 164.51 27.2458 164.51ZM27.2458 164.017C27.1324 164.017 27.0189 164.041 26.9351 164.091L25.7315 164.791C25.5589 164.89 25.5638 165.053 25.7365 165.151L26.9449 165.852C27.0337 165.901 27.1472 165.926 27.2606 165.926C27.374 165.926 27.4875 165.901 27.5713 165.852L28.7749 165.151C28.9475 165.053 28.9426 164.89 28.7699 164.791L27.5615 164.091C27.4727 164.041 27.3592 164.017 27.2458 164.017Z" + fill="#706F6F" /> + <path + d="M31.8774 165.753C31.8034 165.753 31.7343 165.738 31.6899 165.714L30.5406 165.048L31.6801 164.382C31.7244 164.357 31.7935 164.342 31.8675 164.342C31.9415 164.342 32.0105 164.357 32.0599 164.387L33.2091 165.053L32.0697 165.718C32.0204 165.738 31.9464 165.753 31.8774 165.753Z" + fill="white" /> + <path + d="M31.8674 164.584C31.9069 164.584 31.9315 164.594 31.9364 164.594L32.7207 165.048L31.9463 165.497C31.9414 165.502 31.9167 165.506 31.8773 165.506C31.8427 165.506 31.8181 165.497 31.8131 165.497L31.0289 165.043L31.8033 164.594C31.8033 164.594 31.8279 164.584 31.8674 164.584ZM31.8674 164.091C31.7539 164.091 31.6405 164.115 31.5566 164.165L30.3531 164.865C30.1805 164.964 30.1805 165.127 30.3531 165.225L31.5616 165.926C31.6504 165.975 31.7589 166 31.8723 166C31.9858 166 32.0992 165.975 32.1831 165.926L33.3866 165.225C33.5592 165.127 33.5592 164.964 33.3866 164.865L32.1781 164.165C32.0894 164.12 31.9759 164.091 31.8674 164.091Z" + fill="#706F6F" /> + <path + d="M25.0212 166.976C24.9472 166.976 24.8782 166.962 24.8288 166.932L23.6796 166.266L24.819 165.6C24.8634 165.576 24.9324 165.561 25.0064 165.561C25.0804 165.561 25.1494 165.576 25.1938 165.6L26.3431 166.266L25.2037 166.932C25.1642 166.962 25.0952 166.976 25.0212 166.976Z" + fill="white" /> + <path + d="M25.0114 165.807C25.0509 165.807 25.0755 165.817 25.0755 165.817L25.8598 166.271L25.0854 166.72C25.0805 166.725 25.0558 166.73 25.0213 166.73C24.9818 166.73 24.9572 166.72 24.9522 166.72L24.168 166.266L24.9374 165.817C24.9473 165.817 24.972 165.807 25.0114 165.807ZM25.0114 165.314C24.898 165.314 24.7845 165.339 24.7007 165.388L23.4972 166.088C23.3245 166.187 23.3294 166.35 23.5021 166.448L24.7105 167.149C24.7993 167.198 24.9128 167.223 25.0262 167.223C25.1397 167.223 25.2531 167.198 25.337 167.149L26.5405 166.448C26.7131 166.35 26.7131 166.187 26.5405 166.088L25.332 165.388C25.2383 165.339 25.1249 165.314 25.0114 165.314Z" + fill="#706F6F" /> + <path + d="M29.6381 167.055C29.5641 167.055 29.495 167.04 29.4507 167.016L28.3014 166.35L29.4457 165.684C29.4901 165.659 29.5592 165.645 29.6332 165.645C29.7071 165.645 29.7762 165.659 29.8255 165.684L30.9748 166.35L29.8305 167.016C29.7811 167.035 29.7121 167.055 29.6381 167.055Z" + fill="white" /> + <path + d="M29.6281 165.886C29.6676 165.886 29.6922 165.896 29.6922 165.896L30.4765 166.35L29.7021 166.799C29.6972 166.804 29.6725 166.809 29.6331 166.809C29.5985 166.809 29.5689 166.799 29.5689 166.799L28.7847 166.345L29.5591 165.896C29.5689 165.891 29.5936 165.886 29.6281 165.886ZM29.6281 165.393C29.5147 165.393 29.4012 165.418 29.3174 165.467L28.1139 166.167C27.9412 166.266 27.9461 166.429 28.1188 166.528L29.3272 167.228C29.416 167.277 29.5245 167.302 29.638 167.302C29.7514 167.302 29.8649 167.277 29.9487 167.228L31.1523 166.528C31.3249 166.429 31.3249 166.266 31.1523 166.167L29.9438 165.467C29.855 165.418 29.7416 165.393 29.6281 165.393Z" + fill="#706F6F" /> + <path + d="M34.2599 167.129C34.1859 167.129 34.1169 167.114 34.0725 167.09L32.9232 166.424L34.0675 165.758C34.1119 165.733 34.181 165.719 34.255 165.719C34.329 165.719 34.398 165.733 34.4474 165.763L35.5966 166.429L34.4572 167.095C34.403 167.114 34.3339 167.129 34.2599 167.129Z" + fill="white" /> + <path + d="M34.25 165.96C34.2894 165.96 34.3141 165.97 34.319 165.97L35.1033 166.424L34.3338 166.873C34.3289 166.878 34.3042 166.883 34.2647 166.883C34.2253 166.883 34.2006 166.873 34.2006 166.873L33.4164 166.419L34.1908 165.97C34.1908 165.97 34.2105 165.96 34.25 165.96ZM34.25 165.467C34.1365 165.467 34.0231 165.492 33.9392 165.541L32.7357 166.241C32.563 166.34 32.563 166.503 32.7357 166.602L33.9441 167.302C34.028 167.351 34.1414 167.376 34.2549 167.376C34.3683 167.376 34.4818 167.351 34.5656 167.302L35.7692 166.602C35.9418 166.503 35.9369 166.34 35.7692 166.241L34.5607 165.541C34.4768 165.497 34.3634 165.467 34.25 165.467Z" + fill="#706F6F" /> + <path + d="M27.4035 168.353C27.3295 168.353 27.2604 168.338 27.216 168.313L26.0668 167.647L27.2062 166.982C27.2506 166.957 27.3196 166.942 27.3936 166.942C27.4676 166.942 27.5367 166.957 27.581 166.982L28.7303 167.647L27.586 168.313C27.5465 168.338 27.4775 168.353 27.4035 168.353Z" + fill="white" /> + <path + d="M27.3935 167.184C27.433 167.184 27.4576 167.194 27.4576 167.194L28.2419 167.648L27.4675 168.096C27.4626 168.101 27.4379 168.106 27.4034 168.106C27.3688 168.106 27.3392 168.096 27.3392 168.096L26.555 167.643L27.3244 167.194C27.3294 167.194 27.354 167.184 27.3935 167.184ZM27.3935 166.691C27.28 166.691 27.1666 166.715 27.0828 166.765L25.8792 167.465C25.7066 167.564 25.7115 167.726 25.8842 167.825L27.0926 168.526C27.1814 168.575 27.2899 168.6 27.4034 168.6C27.5168 168.6 27.6303 168.575 27.7141 168.526L28.9176 167.825C29.0903 167.726 29.0903 167.564 28.9176 167.465L27.7092 166.765C27.6204 166.715 27.5069 166.691 27.3935 166.691Z" + fill="#706F6F" /> + <path + d="M32.0254 168.432C31.9514 168.432 31.8824 168.417 31.838 168.392L30.6887 167.726L31.833 167.06C31.8774 167.036 31.9465 167.021 32.0205 167.021C32.0945 167.021 32.1635 167.036 32.2079 167.06L33.3572 167.726L32.2128 168.392C32.1685 168.412 32.0994 168.432 32.0254 168.432Z" + fill="white" /> <path - d="M7.32104 39.6816C6.79673 39.9831 6.79461 40.4777 7.31467 40.7791L24.0607 50.5117C24.5828 50.8152 25.4319 50.8131 25.9562 50.5117L43.6044 40.3227C44.1287 40.0213 44.1329 39.5288 43.6107 39.2253L26.8647 29.4927C26.3447 29.1912 25.4935 29.1912 24.9692 29.4927L7.32104 39.6816Z" - fill="#1B7183" /> - <path d="M38.1703 24.863V39.6774L25.2197 47.0856V32.2691L38.1703 24.863Z" fill="white" /> - <path d="M38.1703 24.863V39.6774L25.2197 47.0856V32.2691L38.1703 24.863Z" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.2197 32.2692L12.2861 24.8525L25.2197 17.4294L38.1703 24.8631L25.2197 32.2692Z" fill="white" + d="M32.0155 167.263C32.0549 167.263 32.0796 167.272 32.0845 167.272L32.8688 167.726L32.0944 168.175C32.0894 168.18 32.0648 168.185 32.0253 168.185C31.9859 168.185 31.9612 168.175 31.9612 168.175L31.1769 167.721L31.9513 167.272C31.9513 167.267 31.976 167.263 32.0155 167.263ZM32.0155 166.769C31.902 166.769 31.7886 166.794 31.7047 166.843L30.5012 167.544C30.3285 167.642 30.3335 167.805 30.5061 167.904L31.7146 168.604C31.7984 168.654 31.9119 168.678 32.0253 168.678C32.1388 168.678 32.2522 168.654 32.3361 168.604L33.5396 167.904C33.7122 167.805 33.7073 167.642 33.5396 167.544L32.3311 166.843C32.2374 166.794 32.124 166.769 32.0155 166.769Z" + fill="#706F6F" /> + <path + d="M28.4641 170.498C28.3901 170.498 28.3211 170.483 28.2767 170.459L27.1274 169.793L29.5937 168.357C29.6381 168.333 29.7071 168.318 29.7811 168.318C29.8551 168.318 29.9241 168.333 29.9685 168.357L31.1178 169.023L28.6516 170.459C28.6072 170.483 28.5332 170.498 28.4641 170.498Z" + fill="white" /> + <path + d="M29.7762 168.56C29.8156 168.56 29.8403 168.57 29.8403 168.57L30.6246 169.023L28.5283 170.242C28.5233 170.247 28.4987 170.251 28.4592 170.251C28.4198 170.251 28.3951 170.242 28.3951 170.242L27.6108 169.788L29.7071 168.57C29.717 168.57 29.7417 168.56 29.7762 168.56ZM29.7762 168.066C29.6627 168.066 29.5493 168.091 29.4654 168.14L26.94 169.61C26.7674 169.709 26.7674 169.872 26.94 169.97L28.1485 170.671C28.2323 170.72 28.3458 170.745 28.4592 170.745C28.5727 170.745 28.6861 170.72 28.77 170.671L31.2954 169.201C31.468 169.102 31.468 168.939 31.2954 168.841L30.0869 168.14C30.0031 168.091 29.8896 168.066 29.7762 168.066Z" + fill="#706F6F" /> + <path + d="M22.7866 168.279C22.7127 168.279 22.6436 168.264 22.5992 168.239L21.45 167.573L22.5943 166.907C22.6387 166.883 22.7077 166.868 22.7817 166.868C22.8557 166.868 22.9248 166.883 22.9691 166.907L24.1234 167.573L22.9839 168.239C22.9297 168.259 22.8557 168.279 22.7866 168.279Z" + fill="white" /> + <path + d="M22.7719 167.11C22.8114 167.11 22.8361 167.12 22.841 167.12L23.6253 167.573L22.8558 168.022C22.8509 168.027 22.8262 168.032 22.7867 168.032C22.7473 168.032 22.7226 168.022 22.7226 168.022L21.9383 167.568L22.7127 167.12C22.7127 167.115 22.7374 167.11 22.7719 167.11ZM22.7719 166.616C22.6585 166.616 22.545 166.641 22.4612 166.69L21.2577 167.391C21.085 167.49 21.085 167.652 21.2577 167.751L22.4661 168.451C22.5549 168.501 22.6634 168.525 22.7769 168.525C22.8903 168.525 23.0038 168.501 23.0876 168.451L24.2911 167.751C24.4638 167.652 24.4589 167.49 24.2862 167.391L23.0777 166.69C22.9988 166.641 22.8854 166.616 22.7719 166.616Z" + fill="#706F6F" /> + <path + d="M40.6771 157.881C40.6031 157.881 40.534 157.866 40.4847 157.841L39.3354 157.175L42.7142 155.212C42.7586 155.188 42.8276 155.173 42.9016 155.173C42.9756 155.173 43.0447 155.188 43.0891 155.212L44.2383 155.878L40.8596 157.846C40.8201 157.866 40.7461 157.881 40.6771 157.881Z" + fill="white" /> + <path + d="M42.9016 155.41C42.9411 155.41 42.9657 155.42 42.9657 155.42L43.75 155.873L40.7412 157.624C40.7362 157.629 40.7116 157.634 40.6771 157.634C40.6376 157.634 40.6129 157.624 40.6129 157.624L39.8287 157.171L42.8375 155.42C42.8375 155.42 42.8621 155.41 42.9016 155.41ZM42.9016 154.917C42.7881 154.917 42.6747 154.941 42.5908 154.99L39.1529 156.988C38.9803 157.087 38.9852 157.25 39.1578 157.348L40.3663 158.049C40.4551 158.098 40.5685 158.123 40.6771 158.123C40.7905 158.123 40.9039 158.098 40.9878 158.049L44.4257 156.051C44.5984 155.952 44.5984 155.79 44.4257 155.691L43.2173 154.99C43.1285 154.946 43.015 154.917 42.9016 154.917Z" + fill="#706F6F" /> + <path + d="M27.6995 173.705C27.6255 173.705 27.5564 173.69 27.5121 173.665L26.3628 172.999L29.7415 171.031C29.7859 171.007 29.855 170.992 29.929 170.992C30.0029 170.992 30.072 171.007 30.1164 171.031L31.2657 171.697L27.8869 173.66C27.8425 173.69 27.7735 173.705 27.6995 173.705Z" + fill="white" /> + <path + d="M29.924 171.238C29.9635 171.238 29.9882 171.248 29.9882 171.248L30.7724 171.702L27.7636 173.448C27.7587 173.453 27.734 173.458 27.6946 173.458C27.6551 173.458 27.6304 173.448 27.6304 173.448L26.8462 172.994L29.855 171.248C29.8649 171.243 29.8895 171.238 29.924 171.238ZM29.924 170.745C29.8106 170.745 29.6971 170.77 29.6133 170.819L26.1754 172.817C26.0027 172.915 26.0077 173.078 26.1754 173.177L27.3838 173.877C27.4677 173.927 27.5811 173.951 27.6946 173.951C27.808 173.951 27.9215 173.927 28.0053 173.877L31.4432 171.88C31.6159 171.781 31.6109 171.618 31.4432 171.52L30.2348 170.819C30.1509 170.77 30.0375 170.745 29.924 170.745Z" + fill="#706F6F" /> + <path + d="M38.7335 164.53C38.6595 164.53 38.5904 164.515 38.546 164.49L37.3918 163.824L38.5362 163.158C38.5806 163.134 38.6496 163.119 38.7236 163.119C38.7976 163.119 38.8667 163.134 38.916 163.158L40.0652 163.824L38.9209 164.49C38.8765 164.515 38.8075 164.53 38.7335 164.53Z" + fill="white" /> + <path + d="M38.7236 163.366C38.763 163.366 38.7877 163.375 38.7877 163.375L39.572 163.829L38.7976 164.278C38.7926 164.283 38.768 164.288 38.7285 164.288C38.6891 164.288 38.6644 164.278 38.6644 164.278L37.8801 163.824L38.6545 163.375C38.6595 163.37 38.6841 163.366 38.7236 163.366ZM38.7236 162.872C38.6101 162.872 38.4967 162.897 38.4128 162.946L37.2093 163.647C37.0367 163.745 37.0416 163.908 37.2142 164.007L38.4227 164.707C38.5065 164.756 38.62 164.781 38.7334 164.781C38.8469 164.781 38.9603 164.756 39.0442 164.707L40.2477 164.007C40.4203 163.908 40.4154 163.745 40.2477 163.647L39.0393 162.946C38.9505 162.897 38.837 162.872 38.7236 162.872Z" + fill="#706F6F" /> + <path + d="M36.4991 165.832C36.4251 165.832 36.356 165.817 36.3116 165.792L35.1624 165.126L36.3018 164.461C36.3461 164.436 36.4152 164.421 36.4892 164.421C36.5632 164.421 36.6322 164.436 36.6766 164.461L37.8259 165.126L36.6816 165.792C36.6421 165.812 36.5681 165.832 36.4991 165.832Z" + fill="white" /> + <path + d="M36.4843 164.663C36.5238 164.663 36.5484 164.673 36.5484 164.673L37.3327 165.127L36.5583 165.575C36.5534 165.58 36.5287 165.585 36.4893 165.585C36.4498 165.585 36.4251 165.575 36.4251 165.575L35.6409 165.122L36.4103 164.673C36.4251 164.668 36.4498 164.663 36.4843 164.663ZM36.4843 164.17C36.3709 164.17 36.2574 164.194 36.1736 164.244L34.9701 164.944C34.7974 165.043 34.8024 165.205 34.975 165.304L36.1834 166.005C36.2673 166.054 36.3807 166.079 36.4942 166.079C36.6076 166.079 36.7211 166.054 36.8049 166.005L38.0085 165.304C38.1811 165.205 38.1811 165.043 38.0085 164.944L36.8 164.244C36.7112 164.194 36.5978 164.17 36.4843 164.17Z" + fill="#706F6F" /> + <path + d="M36.6422 168.505C36.5683 168.505 36.4992 168.491 36.4548 168.466L35.3055 167.8L43.1038 163.262C43.1482 163.237 43.2172 163.223 43.2912 163.223C43.3652 163.223 43.4343 163.237 43.4786 163.262L44.6279 163.928L36.8297 168.466C36.7853 168.491 36.7162 168.505 36.6422 168.505Z" + fill="white" /> + <path + d="M43.2911 163.469C43.3306 163.469 43.3552 163.479 43.3552 163.479L44.1395 163.933L36.7112 168.254C36.7063 168.259 36.6816 168.264 36.6421 168.264C36.6027 168.264 36.578 168.254 36.578 168.254L35.7938 167.8L43.227 163.479C43.2319 163.474 43.2566 163.469 43.2911 163.469ZM43.2911 162.976C43.1777 162.976 43.0642 163.001 42.9804 163.05L35.118 167.618C34.9454 167.716 34.9454 167.879 35.118 167.978L36.3265 168.678C36.4103 168.727 36.5238 168.752 36.6372 168.752C36.7507 168.752 36.8641 168.727 36.948 168.678L44.8103 164.111C44.983 164.012 44.978 163.849 44.8103 163.75L43.6019 163.05C43.518 163.001 43.4046 162.976 43.2911 162.976Z" + fill="#706F6F" /> + <path + d="M174.875 67.8423C175.692 67.6577 176.641 66.7988 177.299 66.3492C178.541 65.4904 184.122 65.2656 182.664 64.8563C182.139 64.7037 187.429 68.1232 187.295 70.1781C187.237 71.1333 187.47 72.9233 187.37 73.8946C187.295 74.6812 187.529 75.219 187.47 76.0217C186.929 75.5562 186.771 74.4324 186.054 74.0632C185.413 73.7501 184.463 74.2478 183.847 74.4003C183.289 74.5287 182.681 74.5127 182.164 74.7695C181.606 75.0505 181.506 75.4197 181.314 75.9655C180.981 76.8806 180.831 77.6111 180.773 78.5743C180.423 77.9562 180.115 77.5067 179.648 76.9288C179.182 76.3669 178.466 76.11 177.807 75.7167C176.141 74.6893 175.208 73.6056 175.092 71.5748C175.017 70.451 175.558 68.8296 174.875 67.8423Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" + fill="white" /> + <path + d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M25.2112 31.1761L14.2071 24.8653L25.2112 18.5503L36.228 24.8738L25.2112 31.1761Z" fill="white" + <path + d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" + fill="white" /> + <path + d="M182.764 53.3939C182.705 54.4053 183.305 54.8709 182.181 55.5772C181.598 55.9304 181.539 55.802 181.348 56.4762C181.214 56.9418 181.231 57.3914 180.981 57.8168C180.54 58.5633 180.381 58.2422 179.765 57.7766C179.124 57.295 178.715 57.592 178.657 56.8455C178.599 56.2274 179.123 55.5211 179.049 54.9592C178.974 54.3251 178.657 53.8193 178.874 53.426C179.382 52.5511 182.031 53.426 182.689 53.2976" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M12.286 24.8528L12.2669 39.6777L25.2197 47.086V32.2695L12.286 24.8528Z" fill="white" /> - <path d="M12.286 24.8528L12.2669 39.6777L25.2197 47.086V32.2695L12.286 24.8528Z" fill="#BDBDBD" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> <path - d="M25.2196 15.7334L38.1724 23.1692L25.2196 30.5753L12.286 23.1565L25.2196 15.7334ZM36.228 23.1819L25.2111 16.8563L14.2092 23.1735L25.2111 29.4842L36.228 23.1819Z" + d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" + fill="white" /> + <path + d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" + fill="white" /> + <path + d="M183.697 59.8555C183.697 61.8301 183.405 63.7004 183.289 65.6188C181.173 65.2496 182.764 63.8288 182.689 62.8575C182.589 61.7177 181.464 59.5183 183.697 59.6869" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" + fill="white" /> + <path + d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" + fill="white" /> + <path + d="M173.484 67.7459C173.717 66.0843 175.033 63.4194 172.418 62.5766C172.126 62.4802 171.118 62.1832 171.027 61.9585C170.735 61.1959 171.743 61.3244 172.076 61.4769C173.492 62.0548 174.75 62.3919 174.75 63.9572C174.75 64.5913 174.459 65.3217 174.384 65.9559C174.325 66.5499 174.034 67.489 173.992 68.083" + stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M171.976 67.4891C173.759 67.3768 174.359 68.2918 175.525 69.1908C177.483 70.6999 177.774 72.811 178.216 74.8097C178.624 76.68 177.632 79.7944 175.175 79.4733C172.31 79.0961 170.818 77.4746 169.652 75.1228C169.094 73.9669 168.894 72.0083 169.052 70.6999C169.144 69.841 170.535 67.4651 171.976 67.4891Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M38.1703 23.1692V25.8247L25.2198 33.2329V30.5753L38.1703 23.1692Z" fill="white" /> - <path d="M38.1703 25.8247V23.1692L25.2198 30.5753V33.2329" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.2197 30.5754V33.0866L12.2861 25.6677V23.1587L25.2197 30.5754Z" fill="#BDBDBD" /> - <path d="M25.2197 33.0866V30.5754L12.2861 23.1587V25.6677" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.2112 16.8562V18.5501L15.6846 24.0182L14.2072 23.1734L25.2112 16.8562Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M36.228 23.1819L25.2112 16.8562V18.5501L34.7655 24.0182L36.228 23.1819Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M29 33.394L29.0328 45L35 41.606L34.9672 30L29 33.394Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M38.1702 8.85376V23.6702L25.2175 31.0763V16.2599L38.1702 8.85376Z" fill="white" /> - <path d="M38.1702 8.85376V23.6702L31.6939 27.3733L25.2175 31.0763V16.2599L38.1702 8.85376Z" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M25.2175 16.2597L12.286 8.84301L25.2175 1.41992L38.1702 8.85362L25.2175 16.2597Z" fill="white" /> - <path d="M25.2175 16.2597L12.286 8.84301L25.2175 1.41992L38.1702 8.85362L25.2175 16.2597Z" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M12.286 8.84302L12.2669 23.6701L25.2175 31.0762V16.2597L12.286 8.84302Z" fill="white" /> - <path d="M12.286 8.84302L12.2669 23.6701L25.2175 31.0762V16.2597L12.286 8.84302Z" fill="#BDBDBD" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M32.6309 14.2322V18.8256L35.9467 16.922V12.3286L32.6309 14.2322Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M27.7376 16.9388V21.5322L31.0533 19.6315V15.0381L27.7376 16.9388Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M32.5775 20.5311V25.1273L35.8932 23.2238V18.6304L32.5775 20.5311Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M27.6868 23.2407V27.8341L31.0026 25.9306V21.3372L27.6868 23.2407Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M17.9226 14.0851V18.6786L14.5878 16.775V12.1843L17.9226 14.0851Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M22.8414 16.7919V21.3882L19.5066 19.4846V14.8911L22.8414 16.7919Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M17.9113 20.3837V24.98L14.5737 23.0764V18.4829L17.9113 20.3837Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M22.8301 23.0933V27.6896L19.4953 25.786V21.1897L22.8301 23.0933Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M17.9226 30.0272V34.6208L14.5878 32.7171V28.1265L17.9226 30.0272Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M22.8414 32.734V37.3303L19.5066 35.4268V30.8333L22.8414 32.734Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M17.9113 36.3258V40.9221L14.5737 39.0186V34.425L17.9113 36.3258Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M22.8301 39.0354V43.6318L19.4953 41.7282V37.1318L22.8301 39.0354Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M38.1702 8.08521V8.85362L25.1135 16.5633V15.7949L38.1702 8.08521Z" fill="white" /> - <path d="M38.1702 8.08521V8.85362L25.1135 16.5633V15.7949L38.1702 8.08521Z" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.1134 15.7948L12.3326 8.46727L25.3724 0.738525L38.1702 8.08519L25.1134 15.7948Z" fill="#E9E9E9" /> - <path d="M12.3328 8.46704L12.3137 9.24396L25.1136 16.563V15.7946L12.3328 8.46704Z" fill="white" /> - <path d="M12.3328 8.46704L12.3137 9.24396L25.1136 16.563V15.7946L12.3328 8.46704Z" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M25.7486 1.47656L12.1813 8.74474" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" - stroke-linejoin="round" /> - <path d="M37.8622 8.26004L25.9456 1.34131" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" - stroke-linejoin="round" /> - </symbol> - - <symbol id="structureCategory_public" viewBox="0 0 52 52" fill="none" xmlns="http://www.w3.org/2000/svg"> - <rect width="52" height="52" rx="4" fill="white" /> <path - d="M7.39483 34.4973C6.87052 34.7987 6.8684 35.2933 7.38846 35.5948L24.1344 45.3273C24.6566 45.6309 25.5057 45.6288 26.03 45.3273L43.6782 35.1384C44.2025 34.8369 44.2067 34.3445 43.6845 34.0409L26.9385 24.3083C26.4185 24.0069 25.5673 24.0069 25.043 24.3083L7.39483 34.4973Z" - fill="#DA3635" /> - <path d="M38.2441 19.6787V34.4931L25.2935 41.9013V27.0848L38.2441 19.6787Z" fill="white" /> - <path d="M38.2441 19.6787V34.4931L25.2935 41.9013V27.0848L38.2441 19.6787Z" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.2935 27.0849L12.3599 19.6682L25.2935 12.2451L38.2441 19.6788L25.2935 27.0849Z" fill="white" + d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" + fill="white" /> + <path + d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M25.2851 25.9918L14.281 19.681L25.2851 13.366L36.3019 19.6895L25.2851 25.9918Z" fill="white" + <path + d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" + fill="white" /> + <path + d="M175.133 68.6611C175.833 69.0866 176.899 69.6324 177.382 70.3227C177.966 71.1254 178.332 72.0004 178.657 72.9154C179.373 74.8178 179.898 76.9289 178.407 78.5904C177.532 79.5617 176.491 79.5778 175.133 79.5055C177.033 78.6065 178.349 77.0573 178.132 74.9141C178.016 73.686 177.691 72.6024 177.083 71.5509C176.733 70.9328 175.725 69.9615 175.183 69.3675" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M12.3599 19.6685L12.3408 34.4934L25.2935 41.9016V27.0852L12.3599 19.6685Z" fill="white" /> - <path d="M12.3599 19.6685L12.3408 34.4934L25.2935 41.9016V27.0852L12.3599 19.6685Z" fill="#BDBDBD" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> <path - d="M25.2935 10.5491L38.2462 17.9849L25.2935 25.391L12.3599 17.9721L25.2935 10.5491ZM36.3018 17.9976L25.285 11.672L14.283 17.9891L25.285 24.2999L36.3018 17.9976Z" + d="M174.708 73.14C174.692 72.9313 174.634 72.7146 174.417 72.6182C174.259 72.5621 174.109 72.6182 173.992 72.7306C173.667 73.0276 173.742 73.5333 174.05 73.8303C174.325 74.0952 174.65 73.9828 174.75 73.6457C174.85 73.2523 174.65 72.8269 174.267 72.6584C174.192 72.6423 174.134 72.6423 174.075 72.6985C173.767 73.1239 173.742 73.9507 174.442 74.0069C174.5 74.0069 174.559 73.9668 174.575 73.9106C174.708 73.5574 174.708 73.1801 174.475 72.8671C174.434 72.8109 174.317 72.7707 174.259 72.851C174.084 73.0597 173.892 73.5815 174.317 73.6537C174.492 73.6698 174.567 73.4289 174.392 73.3888C174.217 73.3727 174.409 73.0918 174.45 73.0356C174.375 73.0356 174.317 73.0196 174.234 73.0196C174.425 73.2845 174.409 73.5814 174.309 73.8784C174.35 73.8383 174.409 73.8222 174.442 73.7821C173.975 73.742 174.134 73.1079 174.309 72.8671C174.25 72.8831 174.175 72.9072 174.117 72.9072C174.35 73.0035 174.484 73.1881 174.484 73.445C174.484 73.5574 174.467 73.8222 174.292 73.7259C174.059 73.6135 173.984 73.2764 174.075 73.0757C174.117 73.0195 174.192 72.8911 174.267 72.9072C174.384 72.9072 174.425 73.0918 174.425 73.1881C174.475 73.3085 174.742 73.3085 174.708 73.14Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M38.2442 17.9849V20.6404L25.2936 28.0486V25.391L38.2442 17.9849Z" fill="white" /> - <path d="M38.2442 20.6404V17.9849L25.2936 25.391V28.0486" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.2936 25.3911V27.9022L12.36 20.4834V17.9744L25.2936 25.3911Z" fill="#BDBDBD" /> - <path d="M25.2936 27.9022V25.3911L12.36 17.9744V20.4834" stroke="#706F6F" stroke-miterlimit="10" - stroke-linejoin="round" /> - <path d="M25.2851 11.6719V13.3658L15.7584 18.8339L14.281 17.989L25.2851 11.6719Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M36.3019 17.9975L25.2851 11.6719V13.3658L34.8393 18.8339L36.3019 17.9975Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M29.0739 28.2097L29.1066 39.8157L35.0739 36.4216L35.0411 24.8157L29.0739 28.2097Z" fill="white" + <path + d="M174.625 73.7983C175.067 73.8545 175.325 74.1756 175.592 74.4726C175.867 74.7695 176.15 75.0505 176.483 75.2752C177.183 75.7649 177.957 76.1341 178.749 76.4311C179.54 76.7121 180.223 76.993 180.548 77.7957C180.823 78.4298 180.956 79.1201 181.073 79.8104C181.09 79.979 181.364 79.9068 181.348 79.7382C181.231 79.0078 181.056 78.3014 180.765 77.6111C180.473 76.9609 179.99 76.6238 179.315 76.3589C178.407 76.0057 177.491 75.6685 176.683 75.1067C176.241 74.8097 175.925 74.4565 175.575 74.0792C175.325 73.7982 175.05 73.6137 174.684 73.5575C174.534 73.5173 174.45 73.7742 174.625 73.7983Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path d="M174.026 72.45C174.201 72.45 174.201 72.1851 174.026 72.1851C173.851 72.1931 173.851 72.45 174.026 72.45Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M174.142 72.4499C174.492 71.9844 174.317 71.278 174.317 70.7321C174.317 70.5636 174.042 70.5636 174.042 70.7321C174.042 71.2138 174.217 71.9041 173.909 72.3215C173.809 72.474 174.042 72.6024 174.142 72.4499Z" + fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M172.709 68.8697C171.86 68.7974 171.085 69.247 170.577 69.8811C170.019 70.6115 169.935 71.3581 170.11 72.2169C170.327 73.2604 170.61 74.328 171.177 75.2752C171.585 75.9816 172.168 76.6157 172.768 77.1615C173.351 77.6833 174.067 78.2211 174.883 78.2612C175.642 78.3013 176.258 77.7957 176.666 77.2338C177.133 76.5595 177.366 75.7407 177.399 74.938C177.441 74.0952 177.208 73.3888 176.874 72.6263C176.45 71.6952 176 70.6276 175.192 69.9613C174.534 69.4476 173.601 68.8135 172.709 68.8697C172.534 68.8697 172.534 69.1506 172.709 69.1346C173.467 69.0784 174.242 69.6001 174.8 70.0336C175.417 70.5232 175.825 71.1574 176.158 71.8477C176.508 72.538 176.916 73.2685 177.049 74.015C177.183 74.7454 177.124 75.508 176.874 76.2143C176.641 76.9047 176.158 77.6672 175.425 77.9481C174.667 78.2291 173.876 77.7635 173.309 77.314C172.035 76.3026 171.143 74.9782 170.693 73.4691C170.402 72.538 170.052 71.4544 170.502 70.5393C170.893 69.7205 171.726 69.0623 172.709 69.1586C172.884 69.1506 172.884 68.8857 172.709 68.8697Z" + fill="white" /> + <path + d="M172.709 68.8697C171.86 68.7974 171.085 69.247 170.577 69.8811C170.019 70.6115 169.935 71.3581 170.11 72.2169C170.327 73.2604 170.61 74.328 171.177 75.2752C171.585 75.9816 172.168 76.6157 172.768 77.1615C173.351 77.6833 174.067 78.2211 174.883 78.2612C175.642 78.3013 176.258 77.7957 176.666 77.2338C177.133 76.5595 177.366 75.7407 177.399 74.938C177.441 74.0952 177.208 73.3888 176.874 72.6263C176.45 71.6952 176 70.6276 175.192 69.9613C174.534 69.4476 173.601 68.8135 172.709 68.8697ZM172.709 68.8697C172.534 68.8697 172.534 69.1506 172.709 69.1346C173.467 69.0784 174.242 69.6001 174.8 70.0336C175.417 70.5232 175.825 71.1574 176.158 71.8477C176.508 72.538 176.916 73.2685 177.049 74.015C177.183 74.7454 177.124 75.508 176.874 76.2143C176.641 76.9047 176.158 77.6672 175.425 77.9481C174.667 78.2291 173.876 77.7635 173.309 77.314C172.035 76.3026 171.143 74.9782 170.693 73.4691C170.402 72.538 170.052 71.4544 170.502 70.5393C170.893 69.7205 171.726 69.0623 172.709 69.1586C172.884 69.1506 172.884 68.8857 172.709 68.8697Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M17.9965 24.8429V29.4364L14.6617 27.5328V22.9421L17.9965 24.8429Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M22.9153 27.5497V32.146L19.5805 30.2424V25.6489L22.9153 27.5497Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M17.9852 31.1415V35.7378L14.6476 33.8342V29.2407L17.9852 31.1415Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M22.904 33.8511V38.4474L19.5692 36.5438V31.9475L22.904 33.8511Z" fill="white" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M38.244 17.9309L25.1873 25.6406" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M24.8546 25.1435L12.0738 17.8159L25.4462 9.81592L38.244 17.1626L24.8546 25.1435Z" fill="#E9E9E9" /> - <path d="M25.8224 10.554L12.2551 17.8221" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" - stroke-linejoin="round" /> - <path d="M37.936 17.3374L26.0194 10.4187" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" - stroke-linejoin="round" /> - <path d="M24.9904 25.7346L12.5738 18.3159" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" - stroke-linejoin="round" /> - <path d="M26.0738 27.8157L16.0922 16.083L32.0058 7.91253L41.5738 18.8157L26.0738 27.8157Z" fill="white" - stroke="#696969" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M8.57379 17.8157L16.0922 16.0831L32.0058 7.91256L22.9568 9.60935L8.57379 17.8157Z" fill="#E9E9E9" + <path + d="M172.709 68.8697C171.86 68.7974 171.085 69.247 170.577 69.8811C170.019 70.6115 169.935 71.3581 170.11 72.2169C170.327 73.2604 170.61 74.328 171.177 75.2752C171.585 75.9816 172.168 76.6157 172.768 77.1615C173.351 77.6833 174.067 78.2211 174.883 78.2612C175.642 78.3013 176.258 77.7957 176.666 77.2338C177.133 76.5595 177.366 75.7407 177.399 74.938C177.441 74.0952 177.208 73.3888 176.874 72.6263C176.45 71.6952 176 70.6276 175.192 69.9613C174.534 69.4476 173.601 68.8135 172.709 68.8697ZM172.709 68.8697C172.534 68.8697 172.534 69.1506 172.709 69.1346C173.467 69.0784 174.242 69.6001 174.8 70.0336C175.417 70.5232 175.825 71.1574 176.158 71.8477C176.508 72.538 176.916 73.2685 177.049 74.015C177.183 74.7454 177.124 75.508 176.874 76.2143C176.641 76.9047 176.158 77.6672 175.425 77.9481C174.667 78.2291 173.876 77.7635 173.309 77.314C172.035 76.3026 171.143 74.9782 170.693 73.4691C170.402 72.538 170.052 71.4544 170.502 70.5393C170.893 69.7205 171.726 69.0623 172.709 69.1586C172.884 69.1506 172.884 68.8857 172.709 68.8697Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M180.656 79.7865C179.34 79.2085 178.857 82.7725 180.815 82.941C182.589 83.1096 182.689 79.8587 180.656 79.7865Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M180.656 80.8701C180.581 80.8701 180.556 80.9263 180.498 81.0226C180.398 81.3357 180.498 81.5845 180.864 81.5283C180.964 81.2233 180.848 80.8862 180.656 80.8701Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M180.806 53.6989C181.348 53.6026 182.239 53.7391 182.764 53.5464C183.755 53.2093 183.172 52.2942 182.589 51.7564C181.214 50.4721 179.873 51.1785 178.249 51.331C178.207 52.0936 177.766 55.5692 179.082 55.4167C179.099 55.0795 178.757 53.6989 179.04 53.4742C179.49 53.121 180.556 54.7746 180.806 53.6989Z" + fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" + fill="white" /> + <path + d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> - <path d="M8.57375 17.8157L16.6255 16.0773L26.0738 27.8157L8.57375 17.8157Z" fill="#BDBDBD" stroke="#706F6F" - stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" + fill="white" /> + <path + d="M174.817 62.1834C174.892 64.0296 174.292 66.0443 173.967 67.8343C173.809 68.5969 173.409 69.5681 173.501 70.3548C173.717 72.2411 174.509 69.3273 175.15 70.0417C175.383 69.4638 175.092 68.621 175.075 67.9868C175.033 67.0557 175.15 66.3814 175.5 65.5226C175.808 64.7359 176.408 63.877 176.583 63.0583C176.774 62.071 175.766 62.0469 174.917 62.0469" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" + fill="white" /> + <path + d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" + fill="white" /> + <path + d="M182.606 71.8719C182.606 73.7181 182.897 75.492 182.839 77.3382C182.822 77.8038 182.972 78.141 182.489 78.3256C181.947 78.5343 181.498 78.0447 181.364 77.6353C181.114 76.8326 181.289 75.468 181.289 74.6332C181.289 74.1275 181.04 72.8592 181.156 72.4097C181.289 71.9442 182.031 70.8043 182.414 71.4385" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M183.813 69.8973C183.197 70.1381 183.93 72.811 184.005 73.3488C184.08 73.8305 184.197 74.2639 184.372 74.7294C184.505 75.1067 184.505 75.8853 184.696 76.1823C184.946 76.5596 185.721 76.6479 186.029 76.3509C186.379 76.0138 186.396 76.5195 186.396 76.086C186.396 74.9622 186.221 72.5782 186.104 71.4785C186.029 70.7481 185.771 68.4364 185.021 68.2838C184.297 68.1394 184.372 69.6163 183.813 69.8973Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" + fill="white" /> + <path + d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" + fill="white" /> + <path + d="M187.662 76.054C187.97 76.054 188.495 75.9015 188.711 76.1263C188.828 76.2788 188.77 76.945 188.828 77.2982C188.87 77.5952 189.045 78.0447 188.928 78.3417C188.853 78.5102 188.986 78.751 188.87 78.9035C188.695 79.1684 188.428 79.4414 188.078 79.2407C187.945 79.1444 187.654 79.0561 187.637 78.9277C187.595 78.6868 187.737 78.5183 187.754 78.2373C187.828 77.4908 187.579 76.7283 187.654 75.9978" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" + fill="white" /> + <path + d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" + fill="white" /> + <path + d="M187.662 76.2946C188.187 76.2946 188.712 77.4906 188.745 78.0525C188.762 78.2612 188.645 79.0398 188.495 79.1763C188.187 79.4572 187.737 78.8793 187.587 78.9355C189.661 81.3275 189.253 74.2477 187.645 75.8371" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" + fill="white" /> + <path + d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" + fill="white" /> + <path + d="M184.93 77.3382C184.58 77.6753 183.689 77.876 183.205 78.0687C182.839 78.2212 182.489 78.2934 182.122 78.462C181.539 78.7269 180.998 79.0801 180.456 79.3771C181.423 79.955 182.197 80.9664 183.055 80.9985C184.005 81.0547 185.055 80.4366 185.904 79.9309C186.446 79.5938 187.879 78.5904 188.128 77.86C188.32 77.2981 185.921 75.9736 185.554 76.8165" + stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M184.913 76.4473C184.696 77.3062 186.97 78.6307 187.912 78.1089C188.628 77.7156 187.737 76.6881 187.179 76.351C186.712 76.054 184.705 76.1664 184.913 76.4473Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" + fill="white" /> + <path + d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" + fill="white" /> + <path + d="M181.598 78.165C181.189 79.04 181.848 79.5457 182.664 79.9791C183.014 80.1637 184.813 80.7818 185.18 80.5731C186.054 80.0915 184.155 78.9837 183.805 78.7429C183.497 78.5182 183.105 77.9242 182.914 77.868C182.722 77.8118 181.598 78.0928 181.439 78.0928" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" + fill="white" /> + <path + d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373ZM182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" + fill="white" /> + <path + d="M182.431 65.1373C182.955 65.7554 183.88 65.94 184.447 66.5019C184.871 66.9273 185.221 67.417 185.646 67.8424C186.013 68.2117 186.496 68.5327 186.787 68.9822C187.137 69.504 187.121 70.1381 187.121 70.7401C187.137 71.4304 187.121 72.1208 187.121 72.8111C187.121 73.4854 187.062 74.1516 187.104 74.8259C187.121 75.3877 187.454 75.757 187.587 76.2787C187.629 76.2627 187.662 76.2386 187.72 76.2225C187.62 75.9978 187.487 75.7971 187.37 75.6044C187.179 75.2673 187.137 74.9864 187.195 74.6172C187.27 74.0232 187.312 73.4051 187.312 72.787C187.312 72.1529 187.312 71.5027 187.27 70.8606C187.229 70.3789 187.254 69.7929 187.054 69.3274C186.896 68.9341 186.529 68.621 186.263 68.3C185.813 67.7782 185.371 67.2564 184.921 66.7347C184.28 65.9481 183.414 65.4825 182.497 65.0169C182.431 64.9848 182.356 65.0972 182.431 65.1373ZM182.431 65.1373C182.872 65.3621 183.305 65.5628 183.705 65.8277C184.213 66.1407 184.555 66.5019 184.93 66.9514C185.338 67.433 185.746 67.9227 186.154 68.3882C186.546 68.8137 186.929 69.1909 187.029 69.7849C187.221 71.0371 187.204 72.3455 187.162 73.5897C187.146 74.0713 186.971 74.6332 187.046 75.1229C187.121 75.5483 187.454 75.8693 187.629 76.2627C187.645 76.3349 187.787 76.2787 187.762 76.2065C187.704 75.9657 187.587 75.781 187.47 75.5563C187.279 75.179 187.279 74.7937 187.279 74.3843C187.279 73.7101 187.295 73.0438 187.295 72.3696C187.295 71.6231 187.295 70.8766 187.279 70.1301C187.262 69.7046 187.204 69.2712 186.954 68.902C186.704 68.5327 186.337 68.2518 186.004 67.9468C185.538 67.5213 185.155 67.0317 184.73 66.5661C184.422 66.2531 184.13 66.0283 183.722 65.8196C183.339 65.5949 182.831 65.3942 182.539 65.033C182.472 64.9848 182.372 65.0812 182.431 65.1373Z" + stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M181.739 56.42C183.23 56.2514 184.53 57.929 184.105 59.3337C183.872 60.1204 182.939 59.7431 182.614 60.3451C182.322 60.8829 182.672 62.1913 182.689 62.7933C182.764 64.3265 182.497 66.1165 181.331 67.2162C180.056 68.4684 178.099 68.0912 176.45 67.8503C175.175 67.6657 174.783 68.7815 175.133 66.2289C175.325 64.8081 176.183 63.8048 176.45 62.4562C175.95 62.1913 175.5 62.6088 175.058 62.2716C174.559 61.8783 174.883 61.1318 175.042 60.5699C175.408 59.2856 176.091 58.3705 177.133 57.5117C177.557 57.1585 178.082 56.7812 178.665 56.8374C179.498 56.9337 179.557 57.921 180.173 58.1056C180.989 58.3464 180.698 57.303 180.989 56.9096C181.289 56.5163 181.231 56.3638 181.739 56.42Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" + fill="white" /> + <path + d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" + fill="white" /> + <path + d="M182.322 65.6992C183.097 66.7668 186.237 67.9548 185.946 69.5281C185.754 70.6278 184.438 70.7562 183.605 70.387C182.714 69.9615 181.881 69.2311 180.856 69.2632C181.381 69.8251 182.58 70.5314 182.755 71.3341C182.889 72.0084 181.789 72.5462 181.106 72.7148C180.64 72.1369 180.39 71.4305 179.732 70.9408C179.173 70.5315 178.415 70.3228 177.774 70.098C176.708 69.7047 174.85 69.2793 175.042 67.8023C175.117 67.2083 176.183 67.3768 176.899 67.5053C177.616 67.6337 178.174 67.8424 178.932 67.7863C179.782 67.7301 180.481 67.5615 181.139 67.0237C181.581 66.6705 181.623 66.2049 182.264 65.8116" + stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + <path + d="M180.306 79.7301C181.856 79.5776 182.939 82.5877 181.198 82.8686C181.123 82.8847 181.156 83.0211 181.239 82.9971C183.139 82.7001 182.014 79.4491 180.331 79.6016C180.206 79.6177 180.206 79.7461 180.306 79.7301Z" + fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" /> + </symbol> + + <symbol id="check" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path fill-rule="evenodd" clip-rule="evenodd" + d="M18.9977 6.2526C19.4105 6.61952 19.4477 7.25159 19.0808 7.66437L10.9326 16.831C10.5785 17.2294 9.97428 17.28 9.55883 16.9462L4.37364 12.7795C3.94313 12.4336 3.87458 11.8041 4.22053 11.3736C4.56647 10.9431 5.19592 10.8746 5.62643 11.2205L10.0699 14.7912L17.586 6.33565C17.9529 5.92286 18.585 5.88568 18.9977 6.2526Z" + fill="#696969" /> + </symbol> + + <symbol id="unfold" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M6 10L12.5 17L19 10" stroke="black" stroke-linecap="round" stroke-linejoin="round" /> + </symbol> + + <symbol id="fold" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M6 16L12.5 9L19 16" stroke="black" stroke-linecap="round" stroke-linejoin="round" /> </symbol> - <symbol id="appointement" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="appointement" width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M15.8333 3.83366H15V3.00033C15 2.54199 14.625 2.16699 14.1667 2.16699C13.7083 2.16699 13.3333 2.54199 13.3333 3.00033V3.83366H6.66667V3.00033C6.66667 2.54199 6.29167 2.16699 5.83333 2.16699C5.375 2.16699 5 2.54199 5 3.00033V3.83366H4.16667C3.24167 3.83366 2.50833 4.58366 2.50833 5.50033L2.5 17.167C2.5 18.0837 3.24167 18.8337 4.16667 18.8337H15.8333C16.75 18.8337 17.5 18.0837 17.5 17.167V5.50033C17.5 4.58366 16.75 3.83366 15.8333 3.83366ZM15.8333 16.3337C15.8333 16.792 15.4583 17.167 15 17.167H5C4.54167 17.167 4.16667 16.792 4.16667 16.3337V8.00033H15.8333V16.3337ZM5.83333 9.66699H7.5V11.3337H5.83333V9.66699ZM9.16667 9.66699H10.8333V11.3337H9.16667V9.66699ZM12.5 9.66699H14.1667V11.3337H12.5V9.66699Z" fill="white" /> </symbol> - <symbol id="chevronRight" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="chevronRight" width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M15 25.5L22.5 18L15 10.5V25.5Z" fill="#949494" /> </symbol> - <symbol id="chevronUp" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> + <symbol id="chevronUp" width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> + <rect width="32" height="32" fill="white" /> <path d="M9.3335 18.6667L16.0002 12L22.6668 18.6667H9.3335Z" fill="#333333" /> </symbol> - - <symbol id="chevronDown" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M9.33203 13.3333L15.9987 20L22.6654 13.3333H9.33203Z" fill="#333333" /> - </symbol> </svg> \ No newline at end of file -- GitLab From 77aa18aecdebb2a124ab603f152b30ce6461b51d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Pailharey?= <rpailharey@grandlyon.com> Date: Thu, 7 Dec 2023 16:14:16 +0100 Subject: [PATCH 18/18] review: removed default icon folder --- src/app/annuaire/annuaire-header/annuaire-header.component.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/annuaire/annuaire-header/annuaire-header.component.html b/src/app/annuaire/annuaire-header/annuaire-header.component.html index fced69084..789fc5334 100644 --- a/src/app/annuaire/annuaire-header/annuaire-header.component.html +++ b/src/app/annuaire/annuaire-header/annuaire-header.component.html @@ -44,7 +44,6 @@ [label]="filter" [size]="'small'" [color]="'black'" - [iconFolder]="'ico'" [iconName]="'tagDelete'" [iconPosition]="'right'" (action)="removeFilter(filter)" @@ -53,7 +52,6 @@ [label]="'Réinitialiser les filtres'" [size]="'small'" [color]="'white'" - [iconFolder]="'ico'" [iconName]="'tagReset'" [iconPosition]="'right'" (action)="resetFilters()" -- GitLab