diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts
index 12e3b54772b159e973d4be8b74c7bd2199c5fa49..307891404d5a484c9b59d209ac09922a5edb4f77 100644
--- a/src/app/app-routing.module.ts
+++ b/src/app/app-routing.module.ts
@@ -19,6 +19,7 @@ import { StructureDetailsComponent } from './structure-list/components/structure
 import { StructureListComponent } from './structure-list/structure-list.component';
 import { StructureExcludeComponent } from './structure/structure-exclude/structure-exclude.component';
 import { StructureJoinComponent } from './structure/structure-join/structure-join.component';
+import { StructureListSearchPrintComponent } from './structure-list/components/structure-list-search-print/structure-list-search-print.component';
 
 const footerOutletRoute: Route = {
   path: '',
@@ -37,6 +38,11 @@ const routes: Routes = [
     outlet: 'print',
     children: [{ path: 'structures', component: StructureListPrintComponent }, footerOutletRoute],
   },
+  {
+    path: 'print',
+    outlet: 'print',
+    children: [{ path: 'structures-search', component: StructureListSearchPrintComponent }, footerOutletRoute],
+  },
   {
     path: 'acteurs',
     children: [
diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index 2226bfb6152d1a2d88217bc5145108a9025004b8..5ea46de31c16c83a4db2cc6c26583a3750553a48 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -1,55 +1,56 @@
-import { LOCALE_ID, NgModule } from '@angular/core';
 import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';
+import { LOCALE_ID, NgModule } from '@angular/core';
 import { BrowserModule } from '@angular/platform-browser';
 import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
 import { ToastrModule } from 'ngx-toastr';
 
 import { AppRoutingModule } from './app-routing.module';
 
+import { ServiceWorkerModule } from '@angular/service-worker';
+import { environment } from '../environments/environment';
+import { AnnuaireComponent } from './annuaire/annuaire.component';
+import { FilterModalComponent } from './annuaire/filter-modal/filter-modal.component';
+import { ResultListComponent } from './annuaire/result-list/result-list.component';
+import { SearchBarComponent } from './annuaire/search-bar/search-bar.component';
 import { AppComponent } from './app.component';
 import { CartoComponent } from './carto/carto.component';
 import { CustomBreakPointsProvider } from './config/custom-breakpoint';
+import { CustomHttpInterceptor } from './config/http-interceptor';
+import { ContactComponent } from './contact/contact.component';
 import { FooterComponent } from './footer/footer.component';
+import { FormViewModule } from './form/form-view/form-view.module';
+import { OrientationModule } from './form/orientation-form-view/orientation.module';
+import { OrientationComponent } from './form/orientation-form/component/orientation-modal/orientation-modal.component';
+import { StructureDetailPrintComponent } from './form/orientation-form/component/structure-detail-print/structure-detail-print.component';
+import { StructureListPrintComponent } from './form/orientation-form/component/structure-list-print/structure-list-print.component';
+import { StructurePrintHeaderComponent } from './form/orientation-form/component/structure-print-header/structure-print-header.component';
+import { OrientationFormComponent } from './form/orientation-form/orientation-form.component';
+import { AdminGuard } from './guards/admin.guard';
+import { AuthGuard } from './guards/auth.guard';
+import { DeactivateGuard } from './guards/deactivate.guard';
+import { RoleGuard } from './guards/role.guard';
 import { HeaderComponent } from './header/header.component';
-import { SharedModule } from './shared/shared.module';
-import { MapModule } from './map/map.module';
-import { StructureListComponent } from './structure-list/structure-list.component';
-import { CardComponent } from './structure-list/components/card/card.component';
-import { StructureListSearchComponent } from './structure-list/components/structure-list-search/structure-list-search.component';
-import { StructureDetailsComponent } from './structure-list/components/structure-details/structure-details.component';
-import { ModalFilterComponent } from './structure-list/components/modal-filter/modal-filter.component';
 import { LegalNoticeComponent } from './legal-notice/legal-notice.component';
+import { LoginComponent } from './login/login.component';
+import { MapModule } from './map/map.module';
+import { NewsletterSubscriptionComponent } from './newsletter-subscription/newsletter-subscription.component';
 import { PageComponent } from './page/page.component';
-import { ContactComponent } from './contact/contact.component';
-import { AuthGuard } from './guards/auth.guard';
-import { CustomHttpInterceptor } from './config/http-interceptor';
 import { ResetEmailComponent } from './reset-email/reset-email.component';
 import { ResetPasswordComponent } from './reset-password/reset-password.component';
-import { AdminGuard } from './guards/admin.guard';
-import { DeactivateGuard } from './guards/deactivate.guard';
+import { StructureResolver } from './resolvers/structure.resolver';
 import { TempUserResolver } from './resolvers/temp-user.resolver';
-import { StructureJoinComponent } from './structure/structure-join/structure-join.component';
 import { RouterListenerService } from './services/routerListener.service';
-import { NewsletterSubscriptionComponent } from './newsletter-subscription/newsletter-subscription.component';
-import { OrientationFormComponent } from './form/orientation-form/orientation-form.component';
-import { StructureDetailPrintComponent } from './form/orientation-form/component/structure-detail-print/structure-detail-print.component';
-import { StructureListPrintComponent } from './form/orientation-form/component/structure-list-print/structure-list-print.component';
-import { StructurePrintHeaderComponent } from './form/orientation-form/component/structure-print-header/structure-print-header.component';
-import { OrientationComponent } from './form/orientation-form/component/orientation-modal/orientation-modal.component';
-import { ServiceWorkerModule } from '@angular/service-worker';
-import { environment } from '../environments/environment';
-import { StructureResolver } from './resolvers/structure.resolver';
-import { RoleGuard } from './guards/role.guard';
 import { UpdateService } from './services/update.service';
 import { DataShareConsentComponent } from './shared/components/data-share-consent/data-share-consent.component';
-import { FormViewModule } from './form/form-view/form-view.module';
-import { LoginComponent } from './login/login.component';
+import { SharedModule } from './shared/shared.module';
+import { CardComponent } from './structure-list/components/card/card.component';
+import { ModalFilterComponent } from './structure-list/components/modal-filter/modal-filter.component';
+import { StructureDetailsComponent } from './structure-list/components/structure-details/structure-details.component';
+import { StructureListSearchPrintComponent } from './structure-list/components/structure-list-search-print/structure-list-search-print.component';
+import { StructureListSearchComponent } from './structure-list/components/structure-list-search/structure-list-search.component';
+import { StructureListComponent } from './structure-list/structure-list.component';
 import { StructureExcludeComponent } from './structure/structure-exclude/structure-exclude.component';
-import { AnnuaireComponent } from './annuaire/annuaire.component';
-import { SearchBarComponent } from './annuaire/search-bar/search-bar.component';
-import { ResultListComponent } from './annuaire/result-list/result-list.component';
-import { FilterModalComponent } from './annuaire/filter-modal/filter-modal.component';
-import { OrientationModule } from './form/orientation-form-view/orientation.module';
+import { StructureJoinComponent } from './structure/structure-join/structure-join.component';
 
 @NgModule({
   declarations: [
@@ -81,6 +82,7 @@ import { OrientationModule } from './form/orientation-form-view/orientation.modu
     SearchBarComponent,
     ResultListComponent,
     FilterModalComponent,
+    StructureListSearchPrintComponent,
   ],
   imports: [
     BrowserModule,
diff --git a/src/app/structure-list/components/structure-list-search-print/structure-list-search-print.component.html b/src/app/structure-list/components/structure-list-search-print/structure-list-search-print.component.html
new file mode 100644
index 0000000000000000000000000000000000000000..67475f0b1b94057e2d403baed320010edf700058
--- /dev/null
+++ b/src/app/structure-list/components/structure-list-search-print/structure-list-search-print.component.html
@@ -0,0 +1,46 @@
+<div class="page">
+  <table role="presentation">
+    <thead>
+      <tr>
+        <td>
+          <header>
+            <img class="banner" src="assets/img/resin_print_banner.svg" alt="En-tête Rés'in" />
+          </header>
+        </td>
+      </tr>
+    </thead>
+    <tbody>
+      <tr>
+        <td>
+          <div class="communeContainer" *ngFor="let commune of this.structuresByCommune | keyvalue">
+            <div class="communeHeader">
+              <img class="markerIcon" src="assets/ico/searchPrintMarker.svg" alt="Icône marker" />
+              <h1>{{ commune.key }}</h1>
+            </div>
+            <hr />
+            <div class="structureList">
+              <div class="structure" *ngFor="let structure of commune.value">
+                <img class="structureIcon" src="assets/ico/searchPrintStructure.svg" alt="Icône structure" />
+                <div class="structureInfos">
+                  <p class="structureName">{{ structure.structureName }}</p>
+                  <p>{{ structure.address.numero }} {{ structure.address.street }}, {{ structure.address.commune }}</p>
+                  <p *ngIf="structure.contactPhone">{{ structure.contactPhone }}</p>
+                  <p>{{ structure.contactMail }}</p>
+                </div>
+              </div>
+            </div>
+          </div>
+        </td>
+      </tr>
+    </tbody>
+    <tfoot>
+      <tr>
+        <td>
+          <footer>
+            <a href="https://resin.grandlyon.com">resin.grandlyon.com</a>
+          </footer>
+        </td>
+      </tr>
+    </tfoot>
+  </table>
+</div>
diff --git a/src/app/structure-list/components/structure-list-search-print/structure-list-search-print.component.scss b/src/app/structure-list/components/structure-list-search-print/structure-list-search-print.component.scss
new file mode 100644
index 0000000000000000000000000000000000000000..2e955dd8727638454af07cb43b11277485b433e7
--- /dev/null
+++ b/src/app/structure-list/components/structure-list-search-print/structure-list-search-print.component.scss
@@ -0,0 +1,79 @@
+@import '../../../../assets/scss/color';
+@import '../../../../assets/scss/typography';
+
+.page {
+  display: flex;
+  flex-direction: column;
+  align-items: center;
+
+  .banner {
+    width: 100%;
+  }
+  .communeContainer {
+    break-inside: avoid-page;
+    width: 100%;
+    margin: 0 3.75rem 2rem 3.75rem;
+    .communeHeader {
+      display: flex;
+      gap: 0.25rem;
+      .markerIcon {
+        width: 20px;
+      }
+      h1 {
+        @include lato-regular-15;
+        margin: 0;
+      }
+    }
+    hr {
+      margin: 0.5rem 0;
+    }
+    .structureList {
+      display: flex;
+      flex-wrap: wrap;
+      gap: 1rem 0;
+
+      .structure {
+        display: flex;
+        gap: 5px;
+        width: 50%;
+        .structureIcon {
+          width: 13px;
+        }
+        .structureInfos {
+          border-left: 1px solid $grey-5;
+          padding-left: 5px;
+
+          p {
+            @include lato-regular-10;
+            margin: 0;
+            &.structureName {
+              font-weight: bold;
+            }
+          }
+        }
+      }
+    }
+  }
+  footer {
+    position: fixed;
+    bottom: 0;
+    width: 100%;
+    text-align: center;
+    @include lato-bold-14;
+  }
+}
+
+@media print {
+  thead {
+    display: table-header-group;
+  }
+  tfoot {
+    display: table-footer-group;
+  }
+}
+
+@media screen {
+  :host {
+    display: none;
+  }
+}
diff --git a/src/app/structure-list/components/structure-list-search-print/structure-list-search-print.component.spec.ts b/src/app/structure-list/components/structure-list-search-print/structure-list-search-print.component.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cc15121d1f5e2c8de9ffc0f52fb03fa8000637fd
--- /dev/null
+++ b/src/app/structure-list/components/structure-list-search-print/structure-list-search-print.component.spec.ts
@@ -0,0 +1,23 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { StructureListSearchPrintComponent } from './structure-list-search-print.component';
+
+describe('StructureListSearchPrintComponent', () => {
+  let component: StructureListSearchPrintComponent;
+  let fixture: ComponentFixture<StructureListSearchPrintComponent>;
+
+  beforeEach(async () => {
+    await TestBed.configureTestingModule({
+      declarations: [ StructureListSearchPrintComponent ]
+    })
+    .compileComponents();
+
+    fixture = TestBed.createComponent(StructureListSearchPrintComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});
diff --git a/src/app/structure-list/components/structure-list-search-print/structure-list-search-print.component.ts b/src/app/structure-list/components/structure-list-search-print/structure-list-search-print.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..1ddb128676b9552c56242bf1fbfc77e5f4b12dd6
--- /dev/null
+++ b/src/app/structure-list/components/structure-list-search-print/structure-list-search-print.component.ts
@@ -0,0 +1,24 @@
+import { Component, OnInit } from '@angular/core';
+import { PrintService } from '../../../shared/service/print.service';
+
+@Component({
+  selector: 'app-structure-list-search-print',
+  templateUrl: './structure-list-search-print.component.html',
+  styleUrls: ['./structure-list-search-print.component.scss'],
+})
+export class StructureListSearchPrintComponent implements OnInit {
+  public structuresByCommune: {};
+
+  constructor(private printService: PrintService) {}
+
+  ngOnInit(): void {
+    this.structuresByCommune = this.printService.structures.reduce((communes, structure) => {
+      const commune = communes[structure.address.commune] || [];
+      commune.push(structure);
+      communes[structure.address.commune] = commune;
+      return communes;
+    }, {});
+
+    this.printService.onDataReady();
+  }
+}
diff --git a/src/app/structure-list/structure-list.component.html b/src/app/structure-list/structure-list.component.html
index 68eda11340e9105ce29b7ea00c10858c0b54e24e..2d00d0c392ec418cef3d7c9770d91d7c9f5eac66 100644
--- a/src/app/structure-list/structure-list.component.html
+++ b/src/app/structure-list/structure-list.component.html
@@ -5,6 +5,13 @@
       <ng-template ngPluralCase="1">1 structure</ng-template>
       <ng-template ngPluralCase="other">{{ structureList.length }} structures</ng-template>
     </div>
+    <app-button
+      tabindex="0"
+      (action)="print()"
+      [text]="'Imprimer la liste'"
+      [style]="buttonTypeEnum.Secondary"
+      [extraClass]="'small-text'"
+    ></app-button>
     <app-button
       tabindex="0"
       (action)="addStructure()"
diff --git a/src/app/structure-list/structure-list.component.scss b/src/app/structure-list/structure-list.component.scss
index b8108121d4b2ce054cebaacb8247e14670da3e9a..671345915ade12bcb0a9784b7d2ab0d771cf9d43 100644
--- a/src/app/structure-list/structure-list.component.scss
+++ b/src/app/structure-list/structure-list.component.scss
@@ -17,6 +17,7 @@
   display: flex;
   flex-direction: row;
   align-items: center;
+  gap: 8px;
   margin: 8px 16px;
   .nbStructuresLabel {
     @include lato-regular-14;
@@ -28,13 +29,3 @@
 ::ng-deep .structure-card:last-child .structure {
   border-bottom: unset !important;
 }
-
-@media print {
-  .listCard {
-    display: none;
-  }
-
-  .hide-on-print {
-    display: none !important;
-  }
-}
diff --git a/src/app/structure-list/structure-list.component.ts b/src/app/structure-list/structure-list.component.ts
index df44ef9e3d900f8e1451bfc45becc5a68e27b670..196e29e7596cce883da4747e22e1443ce6689d37 100644
--- a/src/app/structure-list/structure-list.component.ts
+++ b/src/app/structure-list/structure-list.component.ts
@@ -1,17 +1,18 @@
-import { Component, EventEmitter, Input, OnChanges, Output, SimpleChanges } from '@angular/core';
+import { Component, EventEmitter, Input, OnChanges, OnInit, Output, SimpleChanges } from '@angular/core';
 import { ActivatedRoute, Router } from '@angular/router';
 import { GeoJson } from '../map/models/geojson.model';
 import { Structure } from '../models/structure.model';
 import { AuthService } from '../services/auth.service';
 import { StructureService } from '../services/structure.service';
 import { ButtonType } from '../shared/components/button/buttonType.enum';
+import { PrintService } from '../shared/service/print.service';
 
 @Component({
   selector: 'app-structure-list',
   templateUrl: './structure-list.component.html',
   styleUrls: ['./structure-list.component.scss'],
 })
-export class StructureListComponent implements OnChanges {
+export class StructureListComponent implements OnChanges, OnInit {
   @Input() public structureList: Structure[];
   @Input() public location: GeoJson;
   @Input() public selectedStructure: Structure = new Structure();
@@ -21,12 +22,14 @@ export class StructureListComponent implements OnChanges {
 
   public buttonTypeEnum = ButtonType;
   public structure: Structure;
+  public printMode = false;
 
   constructor(
     private route: ActivatedRoute,
     private router: Router,
     private structureService: StructureService,
-    private authService: AuthService
+    private authService: AuthService,
+    private printService: PrintService
   ) {
     this.route.queryParams.subscribe((queryParams) => {
       if (queryParams.id) {
@@ -41,6 +44,12 @@ export class StructureListComponent implements OnChanges {
     });
   }
 
+  ngOnInit(): void {
+    if (this.printMode) {
+      this.printService.onDataReady();
+    }
+  }
+
   ngOnChanges(changes: SimpleChanges): void {
     if (changes.selectedStructure && this.selectedStructure) {
       this.showDetails(this.selectedStructure);
@@ -80,4 +89,8 @@ export class StructureListComponent implements OnChanges {
   public mouseLeave(): void {
     this.displayMapMarkerId.emit(undefined);
   }
+
+  public print() {
+    this.printService.printDocuments('structures-search', this.structureList);
+  }
 }
diff --git a/src/assets/ico/searchPrintMarker.svg b/src/assets/ico/searchPrintMarker.svg
new file mode 100644
index 0000000000000000000000000000000000000000..aa5f9be87c6c29acf0cf32aa44507a05992547a8
--- /dev/null
+++ b/src/assets/ico/searchPrintMarker.svg
@@ -0,0 +1,5 @@
+<svg 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" />
+</svg>
\ No newline at end of file
diff --git a/src/assets/ico/searchPrintStructure.svg b/src/assets/ico/searchPrintStructure.svg
new file mode 100644
index 0000000000000000000000000000000000000000..76e96aa4459c02e9c40b2929c80beb1604125da5
--- /dev/null
+++ b/src/assets/ico/searchPrintStructure.svg
@@ -0,0 +1,14 @@
+<svg 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>
+</svg>
\ No newline at end of file
diff --git a/src/assets/ico/sprite.svg b/src/assets/ico/sprite.svg
index 31330b0ccf4ff106eee528b7adae5cf3434151ce..172727b4e98de8c88f67fda6e79628f0c0433956 100644
--- a/src/assets/ico/sprite.svg
+++ b/src/assets/ico/sprite.svg
@@ -1,985 +1,2734 @@
 <svg xmlns="http://www.w3.org/2000/svg">
-  <symbol id="map-marker" viewBox="0 0 48 48"
-    xmlns="http://www.w3.org/2000/svg">
-    <path d="M23.74 45.7307L24.4466 46.3909L25.1301 45.7067C27.1682 43.6665 29.1698 41.8435 31.0637 40.1188L31.2426 39.9559C37.5627 34.201 42.8674 29.3707 42.8674 21.463C42.8674 11.2671 34.6104 3 24.4227 3C14.2349 3 5.97791 11.2671 5.97791 21.463C5.97791 25.615 7.05764 28.6957 9.15679 31.6153C11.1977 34.4541 14.2063 37.1381 17.9903 40.514L18.0681 40.5834C19.7853 42.1155 21.6751 43.8015 23.74 45.7307ZM30.2489 21.463C30.2489 24.6856 27.6394 27.2963 24.4227 27.2963C21.2059 27.2963 18.5965 24.6856 18.5965 21.463C18.5965 18.2403 21.2059 15.6296 24.4227 15.6296C27.6394 15.6296 30.2489 18.2403 30.2489 21.463Z" stroke="white" stroke-width="2"/>
+  <symbol id="map-marker" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
+    <path
+      d="M23.74 45.7307L24.4466 46.3909L25.1301 45.7067C27.1682 43.6665 29.1698 41.8435 31.0637 40.1188L31.2426 39.9559C37.5627 34.201 42.8674 29.3707 42.8674 21.463C42.8674 11.2671 34.6104 3 24.4227 3C14.2349 3 5.97791 11.2671 5.97791 21.463C5.97791 25.615 7.05764 28.6957 9.15679 31.6153C11.1977 34.4541 14.2063 37.1381 17.9903 40.514L18.0681 40.5834C19.7853 42.1155 21.6751 43.8015 23.74 45.7307ZM30.2489 21.463C30.2489 24.6856 27.6394 27.2963 24.4227 27.2963C21.2059 27.2963 18.5965 24.6856 18.5965 21.463C18.5965 18.2403 21.2059 15.6296 24.4227 15.6296C27.6394 15.6296 30.2489 18.2403 30.2489 21.463Z"
+      stroke="white" stroke-width="2" />
   </symbol>
 
-  <symbol id="map-markerSelected" viewBox="0 0 48 48" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <path d="M23.74 45.7307L24.4466 46.3909L25.1301 45.7067C27.1682 43.6665 29.1698 41.8435 31.0637 40.1188L31.2426 39.9559C37.5627 34.201 42.8674 29.3707 42.8674 21.463C42.8674 11.2671 34.6104 3 24.4227 3C14.2349 3 5.97791 11.2671 5.97791 21.463C5.97791 25.615 7.05764 28.6957 9.15679 31.6153C11.1977 34.4541 14.2063 37.1381 17.9903 40.514L18.0681 40.5834C19.7853 42.1155 21.6751 43.8015 23.74 45.7307ZM30.2489 21.463C30.2489 24.6856 27.6394 27.2963 24.4227 27.2963C21.2059 27.2963 18.5965 24.6856 18.5965 21.463C18.5965 18.2403 21.2059 15.6296 24.4227 15.6296C27.6394 15.6296 30.2489 18.2403 30.2489 21.463Z" fill="#da3635" stroke="white" stroke-width="2"/>
+  <symbol id="map-markerSelected" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <path
+      d="M23.74 45.7307L24.4466 46.3909L25.1301 45.7067C27.1682 43.6665 29.1698 41.8435 31.0637 40.1188L31.2426 39.9559C37.5627 34.201 42.8674 29.3707 42.8674 21.463C42.8674 11.2671 34.6104 3 24.4227 3C14.2349 3 5.97791 11.2671 5.97791 21.463C5.97791 25.615 7.05764 28.6957 9.15679 31.6153C11.1977 34.4541 14.2063 37.1381 17.9903 40.514L18.0681 40.5834C19.7853 42.1155 21.6751 43.8015 23.74 45.7307ZM30.2489 21.463C30.2489 24.6856 27.6394 27.2963 24.4227 27.2963C21.2059 27.2963 18.5965 24.6856 18.5965 21.463C18.5965 18.2403 21.2059 15.6296 24.4227 15.6296C27.6394 15.6296 30.2489 18.2403 30.2489 21.463Z"
+      fill="#da3635" stroke="white" stroke-width="2" />
   </symbol>
 
-  <symbol id="map-markerHover" viewBox="0 0 48 48" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <path d="M23.74 45.7307L24.4466 46.3909L25.1301 45.7067C27.1682 43.6665 29.1698 41.8435 31.0637 40.1188L31.2426 39.9559C37.5627 34.201 42.8674 29.3707 42.8674 21.463C42.8674 11.2671 34.6104 3 24.4227 3C14.2349 3 5.97791 11.2671 5.97791 21.463C5.97791 25.615 7.05764 28.6957 9.15679 31.6153C11.1977 34.4541 14.2063 37.1381 17.9903 40.514L18.0681 40.5834C19.7853 42.1155 21.6751 43.8015 23.74 45.7307ZM30.2489 21.463C30.2489 24.6856 27.6394 27.2963 24.4227 27.2963C21.2059 27.2963 18.5965 24.6856 18.5965 21.463C18.5965 18.2403 21.2059 15.6296 24.4227 15.6296C27.6394 15.6296 30.2489 18.2403 30.2489 21.463Z" fill="#B85959" stroke="white" stroke-width="2"/>
+  <symbol id="map-markerHover" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <path
+      d="M23.74 45.7307L24.4466 46.3909L25.1301 45.7067C27.1682 43.6665 29.1698 41.8435 31.0637 40.1188L31.2426 39.9559C37.5627 34.201 42.8674 29.3707 42.8674 21.463C42.8674 11.2671 34.6104 3 24.4227 3C14.2349 3 5.97791 11.2671 5.97791 21.463C5.97791 25.615 7.05764 28.6957 9.15679 31.6153C11.1977 34.4541 14.2063 37.1381 17.9903 40.514L18.0681 40.5834C19.7853 42.1155 21.6751 43.8015 23.74 45.7307ZM30.2489 21.463C30.2489 24.6856 27.6394 27.2963 24.4227 27.2963C21.2059 27.2963 18.5965 24.6856 18.5965 21.463C18.5965 18.2403 21.2059 15.6296 24.4227 15.6296C27.6394 15.6296 30.2489 18.2403 30.2489 21.463Z"
+      fill="#B85959" stroke="white" stroke-width="2" />
   </symbol>
 
-  <symbol id="map-marker-added" viewBox="0 0 48 48" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <path d="M23.74 45.7307L24.4466 46.3909L25.1301 45.7067C27.1682 43.6665 29.1698 41.8435 31.0637 40.1188L31.2426 39.9559C37.5627 34.201 42.8674 29.3707 42.8674 21.463C42.8674 11.2671 34.6104 3 24.4227 3C14.2349 3 5.97791 11.2671 5.97791 21.463C5.97791 25.615 7.05764 28.6957 9.15679 31.6153C11.1977 34.4541 14.2063 37.1381 17.9903 40.514L18.0681 40.5834C19.7853 42.1155 21.6751 43.8015 23.74 45.7307ZM30.2489 21.463C30.2489 24.6856 27.6394 27.2963 24.4227 27.2963C21.2059 27.2963 18.5965 24.6856 18.5965 21.463C18.5965 18.2403 21.2059 15.6296 24.4227 15.6296C27.6394 15.6296 30.2489 18.2403 30.2489 21.463Z" fill="#47C562" stroke="white" stroke-width="2"/>
-    <circle cx="24.5" cy="21.5" r="11.5" fill="white"/>
-    <path d="M32.3299 15.8789C31.7108 15.3285 30.7627 15.3843 30.2123 16.0035L23.0123 24.1034L18.9396 20.8308C18.2939 20.3118 17.3497 20.4147 16.8308 21.0604C16.3119 21.7062 16.4147 22.6504 17.0605 23.1693L22.2457 27.3359C22.8688 27.8367 23.7752 27.7607 24.3064 27.1632L32.4545 17.9966C33.0049 17.3774 32.9491 16.4293 32.3299 15.8789Z" fill="#47C562"/>
+  <symbol id="map-marker-added" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <path
+      d="M23.74 45.7307L24.4466 46.3909L25.1301 45.7067C27.1682 43.6665 29.1698 41.8435 31.0637 40.1188L31.2426 39.9559C37.5627 34.201 42.8674 29.3707 42.8674 21.463C42.8674 11.2671 34.6104 3 24.4227 3C14.2349 3 5.97791 11.2671 5.97791 21.463C5.97791 25.615 7.05764 28.6957 9.15679 31.6153C11.1977 34.4541 14.2063 37.1381 17.9903 40.514L18.0681 40.5834C19.7853 42.1155 21.6751 43.8015 23.74 45.7307ZM30.2489 21.463C30.2489 24.6856 27.6394 27.2963 24.4227 27.2963C21.2059 27.2963 18.5965 24.6856 18.5965 21.463C18.5965 18.2403 21.2059 15.6296 24.4227 15.6296C27.6394 15.6296 30.2489 18.2403 30.2489 21.463Z"
+      fill="#47C562" stroke="white" stroke-width="2" />
+    <circle cx="24.5" cy="21.5" r="11.5" fill="white" />
+    <path
+      d="M32.3299 15.8789C31.7108 15.3285 30.7627 15.3843 30.2123 16.0035L23.0123 24.1034L18.9396 20.8308C18.2939 20.3118 17.3497 20.4147 16.8308 21.0604C16.3119 21.7062 16.4147 22.6504 17.0605 23.1693L22.2457 27.3359C22.8688 27.8367 23.7752 27.7607 24.3064 27.1632L32.4545 17.9966C33.0049 17.3774 32.9491 16.4293 32.3299 15.8789Z"
+      fill="#47C562" />
   </symbol>
 
-  <symbol id="map-markerButtonPhone" viewBox="0 0 32 32" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <path fill-rule="evenodd" clip-rule="evenodd" d="M19.763 25.4357C23.8485 21.694 27 18.8077 27 14.0741C27 7.95803 22.0751 3 16 3C9.92487 3 5 7.95803 5 14.0741C5 19.075 7.5581 21.3702 12.4128 25.726C13.4953 26.6973 14.692 27.771 16 29C17.2972 27.6941 18.5699 26.5284 19.763 25.4357ZM16 18.4074C18.3772 18.4074 20.3043 16.4673 20.3043 14.0741C20.3043 11.6808 18.3772 9.74074 16 9.74074C13.6228 9.74074 11.6957 11.6808 11.6957 14.0741C11.6957 16.4673 13.6228 18.4074 16 18.4074Z" stroke="white" stroke-width="1.5" stroke-linecap="round"/>
+  <symbol id="map-markerButtonPhone" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M19.763 25.4357C23.8485 21.694 27 18.8077 27 14.0741C27 7.95803 22.0751 3 16 3C9.92487 3 5 7.95803 5 14.0741C5 19.075 7.5581 21.3702 12.4128 25.726C13.4953 26.6973 14.692 27.771 16 29C17.2972 27.6941 18.5699 26.5284 19.763 25.4357ZM16 18.4074C18.3772 18.4074 20.3043 16.4673 20.3043 14.0741C20.3043 11.6808 18.3772 9.74074 16 9.74074C13.6228 9.74074 11.6957 11.6808 11.6957 14.0741C11.6957 16.4673 13.6228 18.4074 16 18.4074Z"
+      stroke="white" stroke-width="1.5" stroke-linecap="round" />
   </symbol>
 
-  <symbol id="adress" viewBox="0 0 22 22"
-    xmlns="http://www.w3.org/2000/svg">
-    <path fill-rule="evenodd" clip-rule="evenodd" d="M11 2C12.6055 2.0145 14.1397 2.68885 15.265 3.87463C16.3902 5.06042 17.0142 6.66048 16.9998 8.32269C16.9998 11.8208 12.1242 19 11 19C9.87584 19 5.00025 11.8208 5.00025 8.32269C4.98578 6.66048 5.60982 5.06042 6.73504 3.87463C7.86026 2.68885 9.39446 2.0145 11 2ZM10.9999 5.55695C12.0865 5.53677 13.0768 6.19906 13.5059 7.23274C13.9349 8.26643 13.7173 9.4661 12.9553 10.2683C12.1933 11.0704 11.0384 11.3157 10.0329 10.8888C9.02744 10.4619 8.37129 9.44779 8.37266 8.32272C8.36215 6.80858 9.53743 5.57133 10.9999 5.55695Z" fill="#333333"/>
+  <symbol id="adress" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M11 2C12.6055 2.0145 14.1397 2.68885 15.265 3.87463C16.3902 5.06042 17.0142 6.66048 16.9998 8.32269C16.9998 11.8208 12.1242 19 11 19C9.87584 19 5.00025 11.8208 5.00025 8.32269C4.98578 6.66048 5.60982 5.06042 6.73504 3.87463C7.86026 2.68885 9.39446 2.0145 11 2ZM10.9999 5.55695C12.0865 5.53677 13.0768 6.19906 13.5059 7.23274C13.9349 8.26643 13.7173 9.4661 12.9553 10.2683C12.1933 11.0704 11.0384 11.3157 10.0329 10.8888C9.02744 10.4619 8.37129 9.44779 8.37266 8.32272C8.36215 6.80858 9.53743 5.57133 10.9999 5.55695Z"
+      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 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 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 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 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 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 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 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 24 24"
-    xmlns="http://www.w3.org/2000/svg">
-    <path d="M12 5C11.4477 5 11 5.44772 11 6V11H6C5.44772 11 5 11.4477 5 12C5 12.5523 5.44772 13 6 13H11V18C11 18.5523 11.4477 19 12 19C12.5523 19 13 18.5523 13 18V13H18C18.5523 13 19 12.5523 19 12C19 11.4477 18.5523 11 18 11H13V6C13 5.44772 12.5523 5 12 5Z" stroke="none"/>
+  <symbol id="add" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
+    <path
+      d="M12 5C11.4477 5 11 5.44772 11 6V11H6C5.44772 11 5 11.4477 5 12C5 12.5523 5.44772 13 6 13H11V18C11 18.5523 11.4477 19 12 19C12.5523 19 13 18.5523 13 18V13H18C18.5523 13 19 12.5523 19 12C19 11.4477 18.5523 11 18 11H13V6C13 5.44772 12.5523 5 12 5Z"
+      stroke="none" />
   </symbol>
 
-  <symbol id="validate" fill="none"
-    xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
-    <path d="M6.5 12.344l4.278 3.437L17.5 8.22" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
+  <symbol id="validate" fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
+    <path d="M6.5 12.344l4.278 3.437L17.5 8.22" stroke="#fff" stroke-width="2" stroke-linecap="round"
+      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 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 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 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="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"/>
+    <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="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" 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 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" 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" stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M10.0999 11.025C10.0999 13.0133 8.48811 14.625 6.49989 14.625C4.51167 14.625 2.8999 13.0133 2.8999 11.025C2.8999 9.03682 4.51167 7.42505 6.49989 7.42505C8.48811 7.42505 10.0999 9.03682 10.0999 11.025ZM8.74988 11.025C8.74988 12.2677 7.74253 13.275 6.49989 13.275C5.25726 13.275 4.2499 12.2677 4.2499 11.025C4.2499 9.7824 5.25726 8.77505 6.49989 8.77505C7.74253 8.77505 8.74988 9.7824 8.74988 11.025Z" fill="#DA3635"/>
-      <path d="M11.9746 4.52588L20.0259 12.5771" stroke="#DA3635" stroke-width="1.5" stroke-linecap="round"/>
-      <path d="M20.0254 4.52588L11.9741 12.5771" stroke="#DA3635" stroke-width="1.5" stroke-linecap="round"/>
+      <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"
+        stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
+      <path fill-rule="evenodd" clip-rule="evenodd"
+        d="M10.0999 11.025C10.0999 13.0133 8.48811 14.625 6.49989 14.625C4.51167 14.625 2.8999 13.0133 2.8999 11.025C2.8999 9.03682 4.51167 7.42505 6.49989 7.42505C8.48811 7.42505 10.0999 9.03682 10.0999 11.025ZM8.74988 11.025C8.74988 12.2677 7.74253 13.275 6.49989 13.275C5.25726 13.275 4.2499 12.2677 4.2499 11.025C4.2499 9.7824 5.25726 8.77505 6.49989 8.77505C7.74253 8.77505 8.74988 9.7824 8.74988 11.025Z"
+        fill="#DA3635" />
+      <path d="M11.9746 4.52588L20.0259 12.5771" stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" />
+      <path d="M20.0254 4.52588L11.9741 12.5771" stroke="#DA3635" stroke-width="1.5" stroke-linecap="round" />
     </g>
     <defs>
       <clipPath id="clip0_8047_46397">
-        <rect width="22" height="22" fill="white" transform="translate(0 0.5)"/>
+        <rect width="22" height="22" fill="white" transform="translate(0 0.5)" />
       </clipPath>
     </defs>
   </symbol>
 
-  <symbol id="edit" viewBox="0 0 23 23" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-      <path d="M4.28317 15.287L3.65575 18.6944C3.65575 18.9504 3.85693 19.1516 4.11297 19.1516L7.52029 18.5242C7.63917 18.5242 7.75804 18.4784 7.84034 18.387L17.4626 8.77388L14.0335 5.34473L4.42034 14.9578C4.32889 15.0493 4.28317 15.159 4.28317 15.287Z" stroke="#333333" stroke-width="1.5" />
-  <path d="M19.1358 7.09997C19.4924 6.74334 19.4924 6.16724 19.1358 5.81061L16.996 3.67082C16.8252 3.49959 16.5932 3.40336 16.3513 3.40336C16.1094 3.40336 15.8775 3.49959 15.7067 3.67082L14.0332 5.34424L17.4624 8.7734L19.1358 7.09997Z" stroke="#333333" stroke-width="1.5" />
-  <path d="M4.78906 14.6543L8.15154 18.0168" stroke="#333333" stroke-width="1.5" />
-  </symbol>
-
-  <symbol id="liste" viewBox="0 0 32 32"
-    xmlns="http://www.w3.org/2000/svg">
-    <circle cx="7.75" cy="10.75" r="0.75" fill="white"/>
-    <rect x="10" y="10" width="15" height="1.5" rx="0.75" fill="white"/>
-    <circle cx="7.75" cy="16.25" r="0.75" fill="white"/>
-    <rect x="10" y="15.5" width="15" height="1.5" rx="0.75" fill="white"/>
-    <circle cx="7.75" cy="21.75" r="0.75" fill="white"/>
-    <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"/>
+  <symbol id="edit" viewBox="0 0 23 23" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <path
+      d="M4.28317 15.287L3.65575 18.6944C3.65575 18.9504 3.85693 19.1516 4.11297 19.1516L7.52029 18.5242C7.63917 18.5242 7.75804 18.4784 7.84034 18.387L17.4626 8.77388L14.0335 5.34473L4.42034 14.9578C4.32889 15.0493 4.28317 15.159 4.28317 15.287Z"
+      stroke="#333333" stroke-width="1.5" />
+    <path
+      d="M19.1358 7.09997C19.4924 6.74334 19.4924 6.16724 19.1358 5.81061L16.996 3.67082C16.8252 3.49959 16.5932 3.40336 16.3513 3.40336C16.1094 3.40336 15.8775 3.49959 15.7067 3.67082L14.0332 5.34424L17.4624 8.7734L19.1358 7.09997Z"
+      stroke="#333333" stroke-width="1.5" />
+    <path d="M4.78906 14.6543L8.15154 18.0168" stroke="#333333" stroke-width="1.5" />
+  </symbol>
+
+  <symbol id="liste" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
+    <circle cx="7.75" cy="10.75" r="0.75" fill="white" />
+    <rect x="10" y="10" width="15" height="1.5" rx="0.75" fill="white" />
+    <circle cx="7.75" cy="16.25" r="0.75" fill="white" />
+    <rect x="10" y="15.5" width="15" height="1.5" rx="0.75" fill="white" />
+    <circle cx="7.75" cy="21.75" r="0.75" fill="white" />
+    <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"/>
+  <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"/>
+    <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 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 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">
-    <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 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="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 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"/>
-    <path d="M12.5382 13.344C12.5382 13.8364 12.2734 14.2669 11.8785 14.501L12.5382 16.9001H9.8501L10.5098 14.501C10.1149 14.2669 9.8501 13.8364 9.8501 13.344C9.8501 12.6017 10.4518 12 11.1941 12C11.9364 12 12.5382 12.6017 12.5382 13.344Z" fill="#333333"/>
-    <path d="M11 2C8.37665 2 6.25 4.12665 6.25 6.75V8.75H7.75V6.75C7.75 4.95507 9.20507 3.5 11 3.5C12.7949 3.5 14.25 4.95507 14.25 6.75V8.75H15.75V6.75C15.75 4.12665 13.6234 2 11 2Z" 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">
+    <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" />
+    <path
+      d="M12.5382 13.344C12.5382 13.8364 12.2734 14.2669 11.8785 14.501L12.5382 16.9001H9.8501L10.5098 14.501C10.1149 14.2669 9.8501 13.8364 9.8501 13.344C9.8501 12.6017 10.4518 12 11.1941 12C11.9364 12 12.5382 12.6017 12.5382 13.344Z"
+      fill="#333333" />
+    <path
+      d="M11 2C8.37665 2 6.25 4.12665 6.25 6.75V8.75H7.75V6.75C7.75 4.95507 9.20507 3.5 11 3.5C12.7949 3.5 14.25 4.95507 14.25 6.75V8.75H15.75V6.75C15.75 4.12665 13.6234 2 11 2Z"
+      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"/>
+      <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"/>
+        <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" d="M13.3774 22.1509H16.3208V16.4151H18.5094L18.9245 13.6981H16.3208V11.9245C16.3208 10.9686 16.8239 10.4906 17.8302 10.4906H19V8.18868C18.2956 8.06289 17.6038 8 16.9245 8C16.195 8 15.566 8.13836 15.0377 8.41509C14.5346 8.69182 14.1321 9.10692 13.8302 9.66038C13.5283 10.2138 13.3774 10.8679 13.3774 11.6226V13.6981H11V16.4151H13.3774V22.1509Z" fill="#696969"/>
-  </symbol>
-
-  <symbol id="twitter" viewBox="0 0 30 30" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <rect width="30" height="30" rx="15" fill="#F4F4F4"/>
-    <path d="M22.1818 10.4308C21.7682 11.0462 21.2807 11.5692 20.7193 12V12.3692C20.7193 13.7538 20.4091 15.0923 19.7886 16.3846C19.1977 17.6769 18.2523 18.7692 16.9523 19.6615C15.6523 20.5538 14.1602 21 12.4761 21C10.8511 21 9.35909 20.5385 8 19.6154C8.20682 19.6462 8.44318 19.6615 8.70909 19.6615C10.0386 19.6615 11.2352 19.2308 12.2989 18.3692C11.6784 18.3692 11.117 18.1846 10.6148 17.8154C10.1125 17.4154 9.77273 16.9077 9.59545 16.2923C10.0682 16.3538 10.5114 16.3385 10.925 16.2462C10.2455 16.0923 9.68409 15.7385 9.24091 15.1846C8.79773 14.6308 8.57614 13.9846 8.57614 13.2462V13.2C8.98977 13.4462 9.43295 13.5846 9.90568 13.6154C9.66932 13.4308 9.44773 13.2 9.24091 12.9231C9.03409 12.6462 8.87159 12.3538 8.75341 12.0462C8.63523 11.7077 8.57614 11.3846 8.57614 11.0769C8.57614 10.5231 8.70909 10.0154 8.975 9.55385C10.5409 11.5231 12.55 12.5846 15.0023 12.7385C14.7955 11.7231 14.9875 10.8462 15.5784 10.1077C16.1693 9.36923 16.9227 9 17.8386 9C18.6659 9 19.3602 9.32308 19.9216 9.96923C20.5716 9.84615 21.192 9.6 21.783 9.23077C21.5466 9.93846 21.1182 10.4923 20.4977 10.8923C21.0591 10.8308 21.6205 10.6769 22.1818 10.4308Z" fill="#696969"/>
-  </symbol>
-
-  <symbol id="instagram" 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" d="M15 10.8929C13.8571 10.8929 12.8809 11.2976 12.0714 12.1071C11.2857 12.8929 10.8929 13.8571 10.8929 15C10.8929 16.1429 11.2857 17.1191 12.0714 17.9286C12.8809 18.7143 13.8571 19.1071 15 19.1071C16.1429 19.1071 17.1071 18.7143 17.8929 17.9286C18.7024 17.1191 19.1071 16.1429 19.1071 15C19.1071 13.8571 18.7024 12.8929 17.8929 12.1071C17.1071 11.2976 16.1429 10.8929 15 10.8929ZM15 17.6786C14.2619 17.6786 13.6309 17.4166 13.1071 16.8929C12.5833 16.3691 12.3214 15.7381 12.3214 15C12.3214 14.2619 12.5833 13.6309 13.1071 13.1071C13.6309 12.5834 14.2619 12.3214 15 12.3214C15.7381 12.3214 16.3691 12.5834 16.8929 13.1071C17.4167 13.6309 17.6786 14.2619 17.6786 15C17.6786 15.7381 17.4167 16.3691 16.8929 16.8929C16.3691 17.4166 15.7381 17.6786 15 17.6786Z" fill="#696969"/>
-    <path d="M20.2143 10.7143C20.2143 10.4524 20.1191 10.2381 19.9286 10.0714C19.7619 9.88093 19.5476 9.78571 19.2857 9.78571C19.0238 9.78571 18.7976 9.88093 18.6071 10.0714C18.4167 10.2381 18.3214 10.4524 18.3214 10.7143C18.3214 10.9762 18.4167 11.2024 18.6071 11.3929C18.7976 11.5834 19.0238 11.6786 19.2857 11.6786C19.5476 11.6786 19.7619 11.5834 19.9286 11.3929C20.1191 11.2024 20.2143 10.9762 20.2143 10.7143Z" fill="#696969"/>
-    <path fill-rule="evenodd" clip-rule="evenodd" d="M22.9643 11.7143C22.9881 12.3571 23 13.4524 23 15C23 16.5476 22.9881 17.6429 22.9643 18.2857C22.8929 19.7381 22.4524 20.8691 21.6429 21.6786C20.8571 22.4643 19.7381 22.8809 18.2857 22.9286C17.6429 22.9762 16.5476 23 15 23C13.4524 23 12.3571 22.9762 11.7143 22.9286C10.2619 22.8571 9.14286 22.4286 8.35714 21.6429C8.04762 21.3571 7.79762 21.0238 7.60714 20.6429C7.41666 20.2619 7.2738 19.8929 7.17857 19.5357C7.10714 19.1786 7.07143 18.7619 7.07143 18.2857C7.0238 17.6429 7 16.5476 7 15C7 13.4524 7.0238 12.3452 7.07143 11.6786C7.14286 10.25 7.57143 9.14286 8.35714 8.35714C9.14286 7.54764 10.2619 7.10714 11.7143 7.03571C12.3571 7.01192 13.4524 7 15 7C16.5476 7 17.6429 7.01192 18.2857 7.03571C19.7381 7.10714 20.8571 7.54764 21.6429 8.35714C22.4524 9.14286 22.8929 10.2619 22.9643 11.7143ZM21.4286 19C21.3809 19.2857 21.3214 19.5238 21.25 19.7143C20.9643 20.4286 20.4524 20.9405 19.7143 21.25C19.5238 21.3214 19.2738 21.3809 18.9643 21.4286C18.6786 21.4762 18.3214 21.5119 17.8929 21.5357C17.4881 21.5595 17.1548 21.5714 16.8929 21.5714H13.0714C12.8333 21.5714 12.5 21.5595 12.0714 21.5357C11.6667 21.5119 11.3095 21.4762 11 21.4286C10.7143 21.3809 10.4762 21.3214 10.2857 21.25C9.57143 20.9643 9.05952 20.4524 8.75 19.7143C8.70238 19.5476 8.65477 19.3334 8.60714 19.0714C8.55952 18.8095 8.5238 18.5595 8.5 18.3214C8.4762 18.0595 8.45238 17.75 8.42857 17.3929V13.1071C8.42857 12.8452 8.44048 12.5119 8.46429 12.1071C8.48809 11.6786 8.5238 11.3214 8.57143 11.0357C8.61905 10.7262 8.67857 10.4762 8.75 10.2857C9.03571 9.54764 9.54762 9.03571 10.2857 8.75C10.4762 8.67857 10.7143 8.61907 11 8.57143C11.3095 8.52379 11.6667 8.48808 12.0714 8.46429C12.5 8.4405 12.8452 8.42857 13.1071 8.42857H16.8929C17.1548 8.42857 17.4881 8.4405 17.8929 8.46429C18.3214 8.48808 18.6786 8.52379 18.9643 8.57143C19.2738 8.61907 19.5238 8.67857 19.7143 8.75C20.4524 9.03571 20.9643 9.54764 21.25 10.2857C21.3214 10.4762 21.3809 10.7262 21.4286 11.0357C21.4762 11.3214 21.5119 11.6786 21.5357 12.1071C21.5595 12.5119 21.5714 12.8452 21.5714 13.1071V16.8929C21.5714 17.1548 21.5595 17.5 21.5357 17.9286C21.5119 18.3334 21.4762 18.6905 21.4286 19Z" fill="#696969"/>
-  </symbol>
-
-  <symbol id="linkedin" 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" d="M11.925 21H11.8844H9.20312V12.3062H11.925V21ZM10.5437 11.1281C10.1104 11.1281 9.74479 10.9792 9.44687 10.6812C9.14896 10.3562 9 9.99062 9 9.58437C9 9.15104 9.14896 8.78542 9.44687 8.4875C9.74479 8.1625 10.1104 8 10.5437 8C10.9771 8 11.3427 8.1625 11.6406 8.4875C11.9656 8.78542 12.1281 9.15104 12.1281 9.58437C12.1281 9.99062 11.9656 10.3562 11.6406 10.6812C11.3427 10.9792 10.9771 11.1281 10.5437 11.1281ZM22 16.2469V21H19.3187V16.775C19.3187 16.45 19.3052 16.1927 19.2781 16.0031C19.251 15.7865 19.1969 15.5427 19.1156 15.2719C19.0615 15.001 18.926 14.7979 18.7094 14.6625C18.4927 14.5271 18.2219 14.4594 17.8969 14.4594C17.274 14.4594 16.8542 14.6625 16.6375 15.0687C16.4208 15.475 16.3125 16.0167 16.3125 16.6937V21H13.5906V12.3062H16.1906V13.4844H16.2312C16.4208 13.1052 16.7323 12.7802 17.1656 12.5094C17.626 12.2385 18.1677 12.1031 18.7906 12.1031C19.4406 12.1031 19.9823 12.2115 20.4156 12.4281C20.876 12.6177 21.2146 12.9156 21.4312 13.3219C21.6479 13.701 21.7969 14.1208 21.8781 14.5812C21.9594 15.0417 22 15.5969 22 16.2469Z" 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" fill="#333333"/>
-  </symbol>
-
-  <symbol id="web" viewBox="0 0 32 32" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <rect x="11" y="10" width="2" height="2" fill="#333333"/>
-    <path d="M6.75 16C6.75 13.6528 8.65279 11.75 11 11.75H13C15.3472 11.75 17.25 13.6528 17.25 16V23C17.25 25.8995 14.8995 28.25 12 28.25C9.10051 28.25 6.75 25.8995 6.75 23V16Z" stroke="#333333" stroke-width="1.5"/>
-    <rect x="11" y="14.5" width="2" height="5" rx="1" fill="#333333"/>
-    <path d="M12 10.5C12 9.33333 12 9.7 12 8.5C12 7 13 3 16.9999 3C20.9998 3 21.9999 7 21.9999 9.5C21.9999 12 21.9999 11 21.9999 12.5C21.9999 14 22.4999 17 24.9999 17C27.4999 17 27.9999 14.5 27.9999 12.5" stroke="#333333" stroke-width="1.5"/>
-  </symbol>
-
-  <symbol id="watch" viewBox="0 0 32 32" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <path d="M8 16C9.25818 18.3413 12.3636 20 16 20C19.6364 20 22.7418 18.3413 24 16" stroke="#333333" stroke-width="1.5" stroke-linecap="round"/>
-    <path fill-rule="evenodd" clip-rule="evenodd" d="M16 12C13.7867 12 12 13.7867 12 16C12 18.2133 13.7867 20 16 20C18.2133 20 20 18.2133 20 16C20 13.7867 18.2133 12 16 12Z" stroke="#333333" stroke-width="1.5" stroke-linecap="round"/>
-    <path d="M8 16C9.25818 13.6587 12.3636 12 16 12C19.6364 12 22.7418 13.6587 24 16" stroke="#333333" stroke-width="1.5" stroke-linecap="round"/>
-    <circle cx="16" cy="16" r="11.25" stroke="#333333" stroke-width="1.5"/>
-    <path d="M24 24.5L28 28.5" stroke="#333333" stroke-width="1.5" stroke-linecap="round"/>
-    <circle cx="16" cy="16" r="1.5" fill="#333333"/>
-  </symbol>
-
-  <symbol id="docs" viewBox="0 0 32 32" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <rect x="11" y="2" width="16" height="21" rx="2" fill="white" stroke="#333333" stroke-width="1.5" stroke-linecap="round"/>
-    <rect x="7" y="6" width="16" height="21" rx="2" fill="white" stroke="#333333" stroke-width="1.5" stroke-linecap="round"/>
-    <path d="M11 15H19" stroke="#333333" stroke-width="1.5" stroke-linecap="round"/>
-    <path d="M11 19H19" stroke="#333333" stroke-width="1.5" stroke-linecap="round"/>
-    <path d="M11 23H19" stroke="#333333" stroke-width="1.5" stroke-linecap="round"/>
-  </symbol>
-
-  <symbol id="workhere" width="32" height="32" viewBox="0 0 32 32" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <path d="M9 17.2499L10.0833 12.7473L13.5 8.5" stroke="#333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
-    <path d="M21.5 17.2499V12.7473L17.6667 8.58325" stroke="#333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
-    <circle cx="15.4999" cy="3.97917" r="2.22917" stroke="#333333" stroke-width="1.5"/>
-    <path d="M17.6666 30.2499V16.895V9.48542C17.6666 8.9086 17.2684 8.40812 16.7064 8.27842V8.27842C15.9143 8.09562 15.0893 8.11053 14.3043 8.32186L14.2735 8.33013C13.7188 8.47947 13.3333 8.9825 13.3333 9.55702V16.895V30.2499" stroke="#333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
-    <path d="M13.25 19H13.3125V18.7772C13.3125 18.2373 13.6146 17.7267 14.1335 17.3894C14.9324 16.8702 16.0676 16.8702 16.8665 17.3894C17.3854 17.7267 17.6875 18.2373 17.6875 18.7772V19H17.75" stroke="#333333" stroke-width="1.5"/>
-    <path d="M20 19.75C20 18.9216 20.6716 18.25 21.5 18.25C22.3284 18.25 23 18.9216 23 19.75V26.25H20V19.75Z" fill="#333333"/>
-    <rect x="21.25" y="16.25" width="0.5" height="3" fill="#333333"/>
+  <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"
+      d="M13.3774 22.1509H16.3208V16.4151H18.5094L18.9245 13.6981H16.3208V11.9245C16.3208 10.9686 16.8239 10.4906 17.8302 10.4906H19V8.18868C18.2956 8.06289 17.6038 8 16.9245 8C16.195 8 15.566 8.13836 15.0377 8.41509C14.5346 8.69182 14.1321 9.10692 13.8302 9.66038C13.5283 10.2138 13.3774 10.8679 13.3774 11.6226V13.6981H11V16.4151H13.3774V22.1509Z"
+      fill="#696969" />
+  </symbol>
+
+  <symbol id="twitter" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <rect width="30" height="30" rx="15" fill="#F4F4F4" />
+    <path
+      d="M22.1818 10.4308C21.7682 11.0462 21.2807 11.5692 20.7193 12V12.3692C20.7193 13.7538 20.4091 15.0923 19.7886 16.3846C19.1977 17.6769 18.2523 18.7692 16.9523 19.6615C15.6523 20.5538 14.1602 21 12.4761 21C10.8511 21 9.35909 20.5385 8 19.6154C8.20682 19.6462 8.44318 19.6615 8.70909 19.6615C10.0386 19.6615 11.2352 19.2308 12.2989 18.3692C11.6784 18.3692 11.117 18.1846 10.6148 17.8154C10.1125 17.4154 9.77273 16.9077 9.59545 16.2923C10.0682 16.3538 10.5114 16.3385 10.925 16.2462C10.2455 16.0923 9.68409 15.7385 9.24091 15.1846C8.79773 14.6308 8.57614 13.9846 8.57614 13.2462V13.2C8.98977 13.4462 9.43295 13.5846 9.90568 13.6154C9.66932 13.4308 9.44773 13.2 9.24091 12.9231C9.03409 12.6462 8.87159 12.3538 8.75341 12.0462C8.63523 11.7077 8.57614 11.3846 8.57614 11.0769C8.57614 10.5231 8.70909 10.0154 8.975 9.55385C10.5409 11.5231 12.55 12.5846 15.0023 12.7385C14.7955 11.7231 14.9875 10.8462 15.5784 10.1077C16.1693 9.36923 16.9227 9 17.8386 9C18.6659 9 19.3602 9.32308 19.9216 9.96923C20.5716 9.84615 21.192 9.6 21.783 9.23077C21.5466 9.93846 21.1182 10.4923 20.4977 10.8923C21.0591 10.8308 21.6205 10.6769 22.1818 10.4308Z"
+      fill="#696969" />
+  </symbol>
+
+  <symbol id="instagram" 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"
+      d="M15 10.8929C13.8571 10.8929 12.8809 11.2976 12.0714 12.1071C11.2857 12.8929 10.8929 13.8571 10.8929 15C10.8929 16.1429 11.2857 17.1191 12.0714 17.9286C12.8809 18.7143 13.8571 19.1071 15 19.1071C16.1429 19.1071 17.1071 18.7143 17.8929 17.9286C18.7024 17.1191 19.1071 16.1429 19.1071 15C19.1071 13.8571 18.7024 12.8929 17.8929 12.1071C17.1071 11.2976 16.1429 10.8929 15 10.8929ZM15 17.6786C14.2619 17.6786 13.6309 17.4166 13.1071 16.8929C12.5833 16.3691 12.3214 15.7381 12.3214 15C12.3214 14.2619 12.5833 13.6309 13.1071 13.1071C13.6309 12.5834 14.2619 12.3214 15 12.3214C15.7381 12.3214 16.3691 12.5834 16.8929 13.1071C17.4167 13.6309 17.6786 14.2619 17.6786 15C17.6786 15.7381 17.4167 16.3691 16.8929 16.8929C16.3691 17.4166 15.7381 17.6786 15 17.6786Z"
+      fill="#696969" />
+    <path
+      d="M20.2143 10.7143C20.2143 10.4524 20.1191 10.2381 19.9286 10.0714C19.7619 9.88093 19.5476 9.78571 19.2857 9.78571C19.0238 9.78571 18.7976 9.88093 18.6071 10.0714C18.4167 10.2381 18.3214 10.4524 18.3214 10.7143C18.3214 10.9762 18.4167 11.2024 18.6071 11.3929C18.7976 11.5834 19.0238 11.6786 19.2857 11.6786C19.5476 11.6786 19.7619 11.5834 19.9286 11.3929C20.1191 11.2024 20.2143 10.9762 20.2143 10.7143Z"
+      fill="#696969" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M22.9643 11.7143C22.9881 12.3571 23 13.4524 23 15C23 16.5476 22.9881 17.6429 22.9643 18.2857C22.8929 19.7381 22.4524 20.8691 21.6429 21.6786C20.8571 22.4643 19.7381 22.8809 18.2857 22.9286C17.6429 22.9762 16.5476 23 15 23C13.4524 23 12.3571 22.9762 11.7143 22.9286C10.2619 22.8571 9.14286 22.4286 8.35714 21.6429C8.04762 21.3571 7.79762 21.0238 7.60714 20.6429C7.41666 20.2619 7.2738 19.8929 7.17857 19.5357C7.10714 19.1786 7.07143 18.7619 7.07143 18.2857C7.0238 17.6429 7 16.5476 7 15C7 13.4524 7.0238 12.3452 7.07143 11.6786C7.14286 10.25 7.57143 9.14286 8.35714 8.35714C9.14286 7.54764 10.2619 7.10714 11.7143 7.03571C12.3571 7.01192 13.4524 7 15 7C16.5476 7 17.6429 7.01192 18.2857 7.03571C19.7381 7.10714 20.8571 7.54764 21.6429 8.35714C22.4524 9.14286 22.8929 10.2619 22.9643 11.7143ZM21.4286 19C21.3809 19.2857 21.3214 19.5238 21.25 19.7143C20.9643 20.4286 20.4524 20.9405 19.7143 21.25C19.5238 21.3214 19.2738 21.3809 18.9643 21.4286C18.6786 21.4762 18.3214 21.5119 17.8929 21.5357C17.4881 21.5595 17.1548 21.5714 16.8929 21.5714H13.0714C12.8333 21.5714 12.5 21.5595 12.0714 21.5357C11.6667 21.5119 11.3095 21.4762 11 21.4286C10.7143 21.3809 10.4762 21.3214 10.2857 21.25C9.57143 20.9643 9.05952 20.4524 8.75 19.7143C8.70238 19.5476 8.65477 19.3334 8.60714 19.0714C8.55952 18.8095 8.5238 18.5595 8.5 18.3214C8.4762 18.0595 8.45238 17.75 8.42857 17.3929V13.1071C8.42857 12.8452 8.44048 12.5119 8.46429 12.1071C8.48809 11.6786 8.5238 11.3214 8.57143 11.0357C8.61905 10.7262 8.67857 10.4762 8.75 10.2857C9.03571 9.54764 9.54762 9.03571 10.2857 8.75C10.4762 8.67857 10.7143 8.61907 11 8.57143C11.3095 8.52379 11.6667 8.48808 12.0714 8.46429C12.5 8.4405 12.8452 8.42857 13.1071 8.42857H16.8929C17.1548 8.42857 17.4881 8.4405 17.8929 8.46429C18.3214 8.48808 18.6786 8.52379 18.9643 8.57143C19.2738 8.61907 19.5238 8.67857 19.7143 8.75C20.4524 9.03571 20.9643 9.54764 21.25 10.2857C21.3214 10.4762 21.3809 10.7262 21.4286 11.0357C21.4762 11.3214 21.5119 11.6786 21.5357 12.1071C21.5595 12.5119 21.5714 12.8452 21.5714 13.1071V16.8929C21.5714 17.1548 21.5595 17.5 21.5357 17.9286C21.5119 18.3334 21.4762 18.6905 21.4286 19Z"
+      fill="#696969" />
+  </symbol>
+
+  <symbol id="linkedin" 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"
+      d="M11.925 21H11.8844H9.20312V12.3062H11.925V21ZM10.5437 11.1281C10.1104 11.1281 9.74479 10.9792 9.44687 10.6812C9.14896 10.3562 9 9.99062 9 9.58437C9 9.15104 9.14896 8.78542 9.44687 8.4875C9.74479 8.1625 10.1104 8 10.5437 8C10.9771 8 11.3427 8.1625 11.6406 8.4875C11.9656 8.78542 12.1281 9.15104 12.1281 9.58437C12.1281 9.99062 11.9656 10.3562 11.6406 10.6812C11.3427 10.9792 10.9771 11.1281 10.5437 11.1281ZM22 16.2469V21H19.3187V16.775C19.3187 16.45 19.3052 16.1927 19.2781 16.0031C19.251 15.7865 19.1969 15.5427 19.1156 15.2719C19.0615 15.001 18.926 14.7979 18.7094 14.6625C18.4927 14.5271 18.2219 14.4594 17.8969 14.4594C17.274 14.4594 16.8542 14.6625 16.6375 15.0687C16.4208 15.475 16.3125 16.0167 16.3125 16.6937V21H13.5906V12.3062H16.1906V13.4844H16.2312C16.4208 13.1052 16.7323 12.7802 17.1656 12.5094C17.626 12.2385 18.1677 12.1031 18.7906 12.1031C19.4406 12.1031 19.9823 12.2115 20.4156 12.4281C20.876 12.6177 21.2146 12.9156 21.4312 13.3219C21.6479 13.701 21.7969 14.1208 21.8781 14.5812C21.9594 15.0417 22 15.5969 22 16.2469Z"
+      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"
+      fill="#333333" />
+  </symbol>
+
+  <symbol id="web" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <rect x="11" y="10" width="2" height="2" fill="#333333" />
+    <path
+      d="M6.75 16C6.75 13.6528 8.65279 11.75 11 11.75H13C15.3472 11.75 17.25 13.6528 17.25 16V23C17.25 25.8995 14.8995 28.25 12 28.25C9.10051 28.25 6.75 25.8995 6.75 23V16Z"
+      stroke="#333333" stroke-width="1.5" />
+    <rect x="11" y="14.5" width="2" height="5" rx="1" fill="#333333" />
+    <path
+      d="M12 10.5C12 9.33333 12 9.7 12 8.5C12 7 13 3 16.9999 3C20.9998 3 21.9999 7 21.9999 9.5C21.9999 12 21.9999 11 21.9999 12.5C21.9999 14 22.4999 17 24.9999 17C27.4999 17 27.9999 14.5 27.9999 12.5"
+      stroke="#333333" stroke-width="1.5" />
+  </symbol>
+
+  <symbol id="watch" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <path d="M8 16C9.25818 18.3413 12.3636 20 16 20C19.6364 20 22.7418 18.3413 24 16" stroke="#333333"
+      stroke-width="1.5" stroke-linecap="round" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M16 12C13.7867 12 12 13.7867 12 16C12 18.2133 13.7867 20 16 20C18.2133 20 20 18.2133 20 16C20 13.7867 18.2133 12 16 12Z"
+      stroke="#333333" stroke-width="1.5" stroke-linecap="round" />
+    <path d="M8 16C9.25818 13.6587 12.3636 12 16 12C19.6364 12 22.7418 13.6587 24 16" stroke="#333333"
+      stroke-width="1.5" stroke-linecap="round" />
+    <circle cx="16" cy="16" r="11.25" stroke="#333333" stroke-width="1.5" />
+    <path d="M24 24.5L28 28.5" stroke="#333333" stroke-width="1.5" stroke-linecap="round" />
+    <circle cx="16" cy="16" r="1.5" fill="#333333" />
+  </symbol>
+
+  <symbol id="docs" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <rect x="11" y="2" width="16" height="21" rx="2" fill="white" stroke="#333333" stroke-width="1.5"
+      stroke-linecap="round" />
+    <rect x="7" y="6" width="16" height="21" rx="2" fill="white" stroke="#333333" stroke-width="1.5"
+      stroke-linecap="round" />
+    <path d="M11 15H19" stroke="#333333" stroke-width="1.5" stroke-linecap="round" />
+    <path d="M11 19H19" stroke="#333333" stroke-width="1.5" stroke-linecap="round" />
+    <path d="M11 23H19" stroke="#333333" stroke-width="1.5" stroke-linecap="round" />
+  </symbol>
+
+  <symbol id="workhere" width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <path d="M9 17.2499L10.0833 12.7473L13.5 8.5" stroke="#333333" stroke-width="1.5" stroke-linecap="round"
+      stroke-linejoin="round" />
+    <path d="M21.5 17.2499V12.7473L17.6667 8.58325" stroke="#333333" stroke-width="1.5" stroke-linecap="round"
+      stroke-linejoin="round" />
+    <circle cx="15.4999" cy="3.97917" r="2.22917" stroke="#333333" stroke-width="1.5" />
+    <path
+      d="M17.6666 30.2499V16.895V9.48542C17.6666 8.9086 17.2684 8.40812 16.7064 8.27842V8.27842C15.9143 8.09562 15.0893 8.11053 14.3043 8.32186L14.2735 8.33013C13.7188 8.47947 13.3333 8.9825 13.3333 9.55702V16.895V30.2499"
+      stroke="#333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
+    <path
+      d="M13.25 19H13.3125V18.7772C13.3125 18.2373 13.6146 17.7267 14.1335 17.3894C14.9324 16.8702 16.0676 16.8702 16.8665 17.3894C17.3854 17.7267 17.6875 18.2373 17.6875 18.7772V19H17.75"
+      stroke="#333333" stroke-width="1.5" />
+    <path d="M20 19.75C20 18.9216 20.6716 18.25 21.5 18.25C22.3284 18.25 23 18.9216 23 19.75V26.25H20V19.75Z"
+      fill="#333333" />
+    <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">
     <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" stroke="#333333" stroke-width="1.5"/>
-      <path d="M26.6484 10.511C27.1358 10.0235 27.1358 9.23603 26.6484 8.74855L23.7235 5.82365C23.4899 5.5896 23.1729 5.45806 22.8422 5.45806C22.5116 5.45806 22.1946 5.5896 21.961 5.82365L19.6736 8.11107L24.3609 12.7984L26.6484 10.511Z" stroke="#333333" stroke-width="1.5"/>
-      <path d="M7.03735 20.8369L11.6335 25.4331" stroke="#333333" stroke-width="1.5"/>
+      <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"
+        stroke="#333333" stroke-width="1.5" />
+      <path
+        d="M26.6484 10.511C27.1358 10.0235 27.1358 9.23603 26.6484 8.74855L23.7235 5.82365C23.4899 5.5896 23.1729 5.45806 22.8422 5.45806C22.5116 5.45806 22.1946 5.5896 21.961 5.82365L19.6736 8.11107L24.3609 12.7984L26.6484 10.511Z"
+        stroke="#333333" stroke-width="1.5" />
+      <path d="M7.03735 20.8369L11.6335 25.4331" stroke="#333333" stroke-width="1.5" />
     </g>
     <defs>
       <clipPath id="clip0_6712_5383">
-        <rect width="32" height="32" fill="white"/>
+        <rect width="32" height="32" fill="white" />
       </clipPath>
     </defs>
   </symbol>
 
-  <symbol id="advisor" viewBox="0 0 32 32" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <path d="M14.5 2.86603C15.4282 2.33013 16.5718 2.33013 17.5 2.86603L26.6244 8.13397C27.5526 8.66987 28.1244 9.66025 28.1244 10.7321V21.2679C28.1244 22.3397 27.5526 23.3301 26.6244 23.866L17.5 29.134C16.5718 29.6699 15.4282 29.6699 14.5 29.134L5.37564 23.866C4.44744 23.3301 3.87564 22.3397 3.87564 21.2679V10.7321C3.87564 9.66025 4.44744 8.66987 5.37564 8.13397L14.5 2.86603Z" stroke="#333333" stroke-width="1.5"/>
-    <path d="M18.5906 17.1168L16.0096 18.7232L13.4285 17.1168V13.904L16.0096 12.2767L18.5416 13.8731H22L22 11.7552L16.0097 8L10 11.7552V19.2656L16.0097 23L22 19.2656V17.1168L18.5906 17.1168Z" stroke="#333333" stroke-width="1.5"/>
-  </symbol>
-
-  <symbol id="printStructure" viewBox="0 0 32 32" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <path d="M8 11.9993V2.66602H24V11.9993" stroke="#333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
-    <path d="M8.00033 24H5.33366C4.62641 24 3.94814 23.719 3.44804 23.219C2.94794 22.7189 2.66699 22.0406 2.66699 21.3333V14.6667C2.66699 13.9594 2.94794 13.2811 3.44804 12.781C3.94814 12.281 4.62641 12 5.33366 12H26.667C27.3742 12 28.0525 12.281 28.5526 12.781C29.0527 13.2811 29.3337 13.9594 29.3337 14.6667V21.3333C29.3337 22.0406 29.0527 22.7189 28.5526 23.219C28.0525 23.719 27.3742 24 26.667 24H24.0003" stroke="#333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
-    <path d="M24 18.666H8V29.3327H24V18.666Z" stroke="#333333" stroke-width="1.5" stroke-linecap="round" 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"/>
-    <path fill-rule="evenodd" clip-rule="evenodd" d="M6 12C5.44772 12 5 12.4477 5 13V21H9V17H23V21H27V13C27 12.4477 26.5523 12 26 12H6Z"/>
-  </symbol>
-
-  <symbol id="menu" viewBox="0 0 32 32" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <rect x="9" y="10" width="14" height="1.5" rx="0.75" fill="#333333"/>
-    <rect x="9" y="15.5" width="14" height="1.5" rx="0.75" fill="#333333"/>
-    <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"/>
-    <path fill-rule="evenodd" clip-rule="evenodd" d="M36.5 52C36.5 51.4477 36.9477 51 37.5 51H63.5C64.0523 51 64.5 51.4477 64.5 52C64.5 52.5523 64.0523 53 63.5 53H37.5C36.9477 53 36.5 52.5523 36.5 52ZM36.5 58C36.5 57.4477 36.9477 57 37.5 57H63.5C64.0523 57 64.5 57.4477 64.5 58C64.5 58.5523 64.0523 59 63.5 59H37.5C36.9477 59 36.5 58.5523 36.5 58ZM37.5 63C36.9477 63 36.5 63.4477 36.5 64C36.5 64.5523 36.9477 65 37.5 65H52.5C53.0523 65 53.5 64.5523 53.5 64C53.5 63.4477 53.0523 63 52.5 63H37.5Z" fill="#828282"/>
-    <path d="M30.5 72C27 72 27 72 23 72C18.8055 71.702 15.5 68.3806 15.5 64.327V55H30" stroke="#828282" stroke-width="2"/>
-    <path fill-rule="evenodd" clip-rule="evenodd" d="M15.9211 67.663C16.1618 68.4235 16.5012 69.1312 16.9283 69.7667L29.5 57.195V55L28.5841 55L15.9211 67.663ZM20.9667 72.7284C20.1942 72.5073 19.4861 72.1679 18.8539 71.7302L29.5 61.0841V64.195L20.9667 72.7284ZM25.4046 72.1795C26.7069 71.4951 27.7523 70.4308 28.4608 69.1232L25.4046 72.1795ZM24.695 55L21.5841 55L15.5 61.0841V64.195L24.695 55ZM15.5 55L17.695 55L15.5 57.195V55Z" fill="#828282"/>
-    <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">
+  <symbol id="advisor" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <path
+      d="M14.5 2.86603C15.4282 2.33013 16.5718 2.33013 17.5 2.86603L26.6244 8.13397C27.5526 8.66987 28.1244 9.66025 28.1244 10.7321V21.2679C28.1244 22.3397 27.5526 23.3301 26.6244 23.866L17.5 29.134C16.5718 29.6699 15.4282 29.6699 14.5 29.134L5.37564 23.866C4.44744 23.3301 3.87564 22.3397 3.87564 21.2679V10.7321C3.87564 9.66025 4.44744 8.66987 5.37564 8.13397L14.5 2.86603Z"
+      stroke="#333333" stroke-width="1.5" />
+    <path
+      d="M18.5906 17.1168L16.0096 18.7232L13.4285 17.1168V13.904L16.0096 12.2767L18.5416 13.8731H22L22 11.7552L16.0097 8L10 11.7552V19.2656L16.0097 23L22 19.2656V17.1168L18.5906 17.1168Z"
+      stroke="#333333" stroke-width="1.5" />
+  </symbol>
+
+  <symbol id="printStructure" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <path d="M8 11.9993V2.66602H24V11.9993" stroke="#333333" stroke-width="1.5" stroke-linecap="round"
+      stroke-linejoin="round" />
+    <path
+      d="M8.00033 24H5.33366C4.62641 24 3.94814 23.719 3.44804 23.219C2.94794 22.7189 2.66699 22.0406 2.66699 21.3333V14.6667C2.66699 13.9594 2.94794 13.2811 3.44804 12.781C3.94814 12.281 4.62641 12 5.33366 12H26.667C27.3742 12 28.0525 12.281 28.5526 12.781C29.0527 13.2811 29.3337 13.9594 29.3337 14.6667V21.3333C29.3337 22.0406 29.0527 22.7189 28.5526 23.219C28.0525 23.719 27.3742 24 26.667 24H24.0003"
+      stroke="#333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
+    <path d="M24 18.666H8V29.3327H24V18.666Z" stroke="#333333" stroke-width="1.5" stroke-linecap="round"
+      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" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M6 12C5.44772 12 5 12.4477 5 13V21H9V17H23V21H27V13C27 12.4477 26.5523 12 26 12H6Z" />
+  </symbol>
+
+  <symbol id="menu" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <rect x="9" y="10" width="14" height="1.5" rx="0.75" fill="#333333" />
+    <rect x="9" y="15.5" width="14" height="1.5" rx="0.75" fill="#333333" />
+    <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" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M36.5 52C36.5 51.4477 36.9477 51 37.5 51H63.5C64.0523 51 64.5 51.4477 64.5 52C64.5 52.5523 64.0523 53 63.5 53H37.5C36.9477 53 36.5 52.5523 36.5 52ZM36.5 58C36.5 57.4477 36.9477 57 37.5 57H63.5C64.0523 57 64.5 57.4477 64.5 58C64.5 58.5523 64.0523 59 63.5 59H37.5C36.9477 59 36.5 58.5523 36.5 58ZM37.5 63C36.9477 63 36.5 63.4477 36.5 64C36.5 64.5523 36.9477 65 37.5 65H52.5C53.0523 65 53.5 64.5523 53.5 64C53.5 63.4477 53.0523 63 52.5 63H37.5Z"
+      fill="#828282" />
+    <path d="M30.5 72C27 72 27 72 23 72C18.8055 71.702 15.5 68.3806 15.5 64.327V55H30" stroke="#828282"
+      stroke-width="2" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M15.9211 67.663C16.1618 68.4235 16.5012 69.1312 16.9283 69.7667L29.5 57.195V55L28.5841 55L15.9211 67.663ZM20.9667 72.7284C20.1942 72.5073 19.4861 72.1679 18.8539 71.7302L29.5 61.0841V64.195L20.9667 72.7284ZM25.4046 72.1795C26.7069 71.4951 27.7523 70.4308 28.4608 69.1232L25.4046 72.1795ZM24.695 55L21.5841 55L15.5 61.0841V64.195L24.695 55ZM15.5 55L17.695 55L15.5 57.195V55Z"
+      fill="#828282" />
+    <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"/>
-      <path fill-rule="evenodd" clip-rule="evenodd" d="M2.84054 5.57617C1.72559 6.04339 1 7.13416 1 8.34305V23H8V18.5C8 17.6716 8.67157 17 9.5 17C10.3284 17 11 17.6716 11 18.5V23H18V8.40362C18 7.1644 17.2381 6.05271 16.0823 5.60565L14.5555 5.01505C14.1291 4.85011 13.746 4.5899 13.4355 4.2543L10.9183 1.5332C10.1451 0.6974 8.83121 0.674761 8.0297 1.48343L5.19821 4.34019C4.92065 4.62023 4.5906 4.84281 4.22694 4.9952L2.84054 5.57617Z"/>
+      <rect fill="white" y="-0.108661" width="19" height="24" />
+      <path fill-rule="evenodd" clip-rule="evenodd"
+        d="M2.84054 5.57617C1.72559 6.04339 1 7.13416 1 8.34305V23H8V18.5C8 17.6716 8.67157 17 9.5 17C10.3284 17 11 17.6716 11 18.5V23H18V8.40362C18 7.1644 17.2381 6.05271 16.0823 5.60565L14.5555 5.01505C14.1291 4.85011 13.746 4.5899 13.4355 4.2543L10.9183 1.5332C10.1451 0.6974 8.83121 0.674761 8.0297 1.48343L5.19821 4.34019C4.92065 4.62023 4.5906 4.84281 4.22694 4.9952L2.84054 5.57617Z" />
     </mask>
-    <path d="M2.84054 5.57617L3.03378 6.03731L2.84054 5.57617ZM1 23H0.5V23.5H1V23ZM8 23V23.5H8.5V23H8ZM11 23H10.5V23.5H11V23ZM18 23V23.5H18.5V23H18ZM16.0823 5.60565L16.2627 5.13932L16.0823 5.60565ZM14.5555 5.01505L14.3751 5.48138H14.3751L14.5555 5.01505ZM13.4355 4.2543L13.0685 4.59383V4.59383L13.4355 4.2543ZM10.9183 1.5332L11.2854 1.19366V1.19366L10.9183 1.5332ZM8.0297 1.48343L8.38482 1.8354V1.8354L8.0297 1.48343ZM5.19821 4.34019L4.84309 3.98821L5.19821 4.34019ZM4.22694 4.9952L4.42019 5.45634L4.22694 4.9952ZM1.5 8.34305C1.5 7.33564 2.10466 6.42666 3.03378 6.03731L2.6473 5.11502C1.34652 5.66011 0.5 6.93268 0.5 8.34305H1.5ZM1.5 23V8.34305H0.5V23H1.5ZM8 22.5H1V23.5H8V22.5ZM8.5 23V18.5H7.5V23H8.5ZM8.5 18.5C8.5 17.9477 8.94772 17.5 9.5 17.5V16.5C8.39543 16.5 7.5 17.3954 7.5 18.5H8.5ZM9.5 17.5C10.0523 17.5 10.5 17.9477 10.5 18.5H11.5C11.5 17.3954 10.6046 16.5 9.5 16.5V17.5ZM10.5 18.5V23H11.5V18.5H10.5ZM18 22.5H11V23.5H18V22.5ZM17.5 8.40362V23H18.5V8.40362H17.5ZM15.9019 6.07197C16.865 6.44453 17.5 7.37094 17.5 8.40362H18.5C18.5 6.95786 17.6111 5.66089 16.2627 5.13932L15.9019 6.07197ZM14.3751 5.48138L15.9019 6.07197L16.2627 5.13932L14.7359 4.54872L14.3751 5.48138ZM13.0685 4.59383C13.4307 4.98537 13.8776 5.28895 14.3751 5.48138L14.7359 4.54872C14.3805 4.41127 14.0613 4.19443 13.8026 3.91476L13.0685 4.59383ZM10.5513 1.87273L13.0685 4.59383L13.8026 3.91476L11.2854 1.19366L10.5513 1.87273ZM8.38482 1.8354C8.98595 1.22891 9.97141 1.24589 10.5513 1.87273L11.2854 1.19366C10.3189 0.148915 8.67647 0.120616 7.67458 1.13145L8.38482 1.8354ZM5.55333 4.69216L8.38482 1.8354L7.67458 1.13145L4.84309 3.98821L5.55333 4.69216ZM4.42019 5.45634C4.84445 5.27856 5.22951 5.01888 5.55333 4.69216L4.84309 3.98821C4.61179 4.22158 4.33675 4.40706 4.0337 4.53405L4.42019 5.45634ZM3.03378 6.03731L4.42019 5.45634L4.0337 4.53405L2.6473 5.11502L3.03378 6.03731Z" fill="white" mask="url(#path-1-outside-1)"/>
-    <path fill-rule="evenodd" clip-rule="evenodd" d="M2.84054 5.57617C1.72559 6.04339 1 7.13416 1 8.34305V23H8V18.5C8 17.6716 8.67157 17 9.5 17C10.3284 17 11 17.6716 11 18.5V23H18V8.40362C18 7.1644 17.2381 6.05271 16.0823 5.60565L14.5555 5.01505C14.1291 4.85011 13.746 4.5899 13.4355 4.2543L10.9183 1.5332C10.1451 0.6974 8.83121 0.674761 8.0297 1.48343L5.19821 4.34018C4.92065 4.62023 4.5906 4.84281 4.22694 4.9952L2.84054 5.57617ZM11 4.5C11 5.32843 10.3284 6 9.5 6C8.67157 6 8 5.32843 8 4.5C8 3.67157 8.67157 3 9.5 3C10.3284 3 11 3.67157 11 4.5ZM4.25 15.9354C3.54057 16.0544 3 16.6714 3 17.4146V18.75H4.25V15.9354ZM3 21.9146V19.25H4.25V21.9146H3ZM4.75 21.9146V19.25H6V21.9146H4.75ZM6 17.4146V18.75H4.75V15.9354C5.45943 16.0544 6 16.6714 6 17.4146ZM13 17.4146C13 16.6714 13.5406 16.0544 14.25 15.9354V18.75H13V17.4146ZM13 19.25V21.9146H14.25V19.25H13ZM14.75 19.25V21.9146H16V19.25H14.75ZM16 18.75V17.4146C16 16.6714 15.4594 16.0544 14.75 15.9354V18.75H16ZM14.25 8C13.5406 8.11902 13 8.73601 13 9.47926V10.8146H14.25V8ZM13 13.9793V11.3146H14.25V13.9793H13ZM14.75 13.9793V11.3146H16V13.9793H14.75ZM16 9.47926V10.8146H14.75V8C15.4594 8.11902 16 8.73601 16 9.47926ZM8 9.47926C8 8.73601 8.54057 8.11902 9.25 8V10.8146H8V9.47926ZM8 11.3146V13.9793H9.25V11.3146H8ZM9.75 11.3146V13.9793H11V11.3146H9.75ZM11 10.8146V9.47926C11 8.73601 10.4594 8.11902 9.75 8V10.8146H11ZM4.25 8C3.54057 8.11902 3 8.73601 3 9.47926V10.8146H4.25V8ZM3 13.9793V11.3146H4.25V13.9793H3ZM4.75 13.9793V11.3146H6V13.9793H4.75ZM6 9.47926V10.8146H4.75V8C5.45943 8.11902 6 8.73601 6 9.47926Z" 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" 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" 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"/>
-    <circle cx="17" cy="17" r="6" fill="#ED3939"/>
-    <path opacity="0.35" d="M19.625 12.9167C18.1502 12.2215 16.7083 12.0417 15.25 12.9167C16.4166 12.9167 18.7694 14.3782 19.3737 15.1918C20.5 16.7084 20.6016 19.0553 20.2083 19.3334C20.4541 19.4724 21.5026 18.3063 21.6666 17C21.8306 15.6948 21.0998 13.6119 19.625 12.9167Z" fill="white"/>
-  </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="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"/>
-    <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"/>
-  </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"/>
+    <path
+      d="M2.84054 5.57617L3.03378 6.03731L2.84054 5.57617ZM1 23H0.5V23.5H1V23ZM8 23V23.5H8.5V23H8ZM11 23H10.5V23.5H11V23ZM18 23V23.5H18.5V23H18ZM16.0823 5.60565L16.2627 5.13932L16.0823 5.60565ZM14.5555 5.01505L14.3751 5.48138H14.3751L14.5555 5.01505ZM13.4355 4.2543L13.0685 4.59383V4.59383L13.4355 4.2543ZM10.9183 1.5332L11.2854 1.19366V1.19366L10.9183 1.5332ZM8.0297 1.48343L8.38482 1.8354V1.8354L8.0297 1.48343ZM5.19821 4.34019L4.84309 3.98821L5.19821 4.34019ZM4.22694 4.9952L4.42019 5.45634L4.22694 4.9952ZM1.5 8.34305C1.5 7.33564 2.10466 6.42666 3.03378 6.03731L2.6473 5.11502C1.34652 5.66011 0.5 6.93268 0.5 8.34305H1.5ZM1.5 23V8.34305H0.5V23H1.5ZM8 22.5H1V23.5H8V22.5ZM8.5 23V18.5H7.5V23H8.5ZM8.5 18.5C8.5 17.9477 8.94772 17.5 9.5 17.5V16.5C8.39543 16.5 7.5 17.3954 7.5 18.5H8.5ZM9.5 17.5C10.0523 17.5 10.5 17.9477 10.5 18.5H11.5C11.5 17.3954 10.6046 16.5 9.5 16.5V17.5ZM10.5 18.5V23H11.5V18.5H10.5ZM18 22.5H11V23.5H18V22.5ZM17.5 8.40362V23H18.5V8.40362H17.5ZM15.9019 6.07197C16.865 6.44453 17.5 7.37094 17.5 8.40362H18.5C18.5 6.95786 17.6111 5.66089 16.2627 5.13932L15.9019 6.07197ZM14.3751 5.48138L15.9019 6.07197L16.2627 5.13932L14.7359 4.54872L14.3751 5.48138ZM13.0685 4.59383C13.4307 4.98537 13.8776 5.28895 14.3751 5.48138L14.7359 4.54872C14.3805 4.41127 14.0613 4.19443 13.8026 3.91476L13.0685 4.59383ZM10.5513 1.87273L13.0685 4.59383L13.8026 3.91476L11.2854 1.19366L10.5513 1.87273ZM8.38482 1.8354C8.98595 1.22891 9.97141 1.24589 10.5513 1.87273L11.2854 1.19366C10.3189 0.148915 8.67647 0.120616 7.67458 1.13145L8.38482 1.8354ZM5.55333 4.69216L8.38482 1.8354L7.67458 1.13145L4.84309 3.98821L5.55333 4.69216ZM4.42019 5.45634C4.84445 5.27856 5.22951 5.01888 5.55333 4.69216L4.84309 3.98821C4.61179 4.22158 4.33675 4.40706 4.0337 4.53405L4.42019 5.45634ZM3.03378 6.03731L4.42019 5.45634L4.0337 4.53405L2.6473 5.11502L3.03378 6.03731Z"
+      fill="white" mask="url(#path-1-outside-1)" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M2.84054 5.57617C1.72559 6.04339 1 7.13416 1 8.34305V23H8V18.5C8 17.6716 8.67157 17 9.5 17C10.3284 17 11 17.6716 11 18.5V23H18V8.40362C18 7.1644 17.2381 6.05271 16.0823 5.60565L14.5555 5.01505C14.1291 4.85011 13.746 4.5899 13.4355 4.2543L10.9183 1.5332C10.1451 0.6974 8.83121 0.674761 8.0297 1.48343L5.19821 4.34018C4.92065 4.62023 4.5906 4.84281 4.22694 4.9952L2.84054 5.57617ZM11 4.5C11 5.32843 10.3284 6 9.5 6C8.67157 6 8 5.32843 8 4.5C8 3.67157 8.67157 3 9.5 3C10.3284 3 11 3.67157 11 4.5ZM4.25 15.9354C3.54057 16.0544 3 16.6714 3 17.4146V18.75H4.25V15.9354ZM3 21.9146V19.25H4.25V21.9146H3ZM4.75 21.9146V19.25H6V21.9146H4.75ZM6 17.4146V18.75H4.75V15.9354C5.45943 16.0544 6 16.6714 6 17.4146ZM13 17.4146C13 16.6714 13.5406 16.0544 14.25 15.9354V18.75H13V17.4146ZM13 19.25V21.9146H14.25V19.25H13ZM14.75 19.25V21.9146H16V19.25H14.75ZM16 18.75V17.4146C16 16.6714 15.4594 16.0544 14.75 15.9354V18.75H16ZM14.25 8C13.5406 8.11902 13 8.73601 13 9.47926V10.8146H14.25V8ZM13 13.9793V11.3146H14.25V13.9793H13ZM14.75 13.9793V11.3146H16V13.9793H14.75ZM16 9.47926V10.8146H14.75V8C15.4594 8.11902 16 8.73601 16 9.47926ZM8 9.47926C8 8.73601 8.54057 8.11902 9.25 8V10.8146H8V9.47926ZM8 11.3146V13.9793H9.25V11.3146H8ZM9.75 11.3146V13.9793H11V11.3146H9.75ZM11 10.8146V9.47926C11 8.73601 10.4594 8.11902 9.75 8V10.8146H11ZM4.25 8C3.54057 8.11902 3 8.73601 3 9.47926V10.8146H4.25V8ZM3 13.9793V11.3146H4.25V13.9793H3ZM4.75 13.9793V11.3146H6V13.9793H4.75ZM6 9.47926V10.8146H4.75V8C5.45943 8.11902 6 8.73601 6 9.47926Z"
+      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"
+      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"
+      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" />
+    <circle cx="17" cy="17" r="6" fill="#ED3939" />
+    <path opacity="0.35"
+      d="M19.625 12.9167C18.1502 12.2215 16.7083 12.0417 15.25 12.9167C16.4166 12.9167 18.7694 14.3782 19.3737 15.1918C20.5 16.7084 20.6016 19.0553 20.2083 19.3334C20.4541 19.4724 21.5026 18.3063 21.6666 17C21.8306 15.6948 21.0998 13.6119 19.625 12.9167Z"
+      fill="white" />
+  </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="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" />
+    <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" />
+  </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="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="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="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" />
+  </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"
+      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="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="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="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"/>
-  </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" 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="mediation1" width="120" height="121" viewBox="0 0 120 121" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M6.11031 48.6199L43.7206 26.9067C45.1912 26.0611 47.5662 26.0611 49.0221 26.9067L113.89 64.6052C115.044 65.2375 114.978 66.1273 114.978 66.1273L115 73.9508C115 74.5096 114.632 75.0684 113.89 75.4949L76.2795 97.2081C74.8089 98.0537 72.4412 98.0537 70.9779 97.2081L6.11031 59.5096C5.38972 59.0905 5.02208 58.539 5.02208 57.9875L5 50.164C5.11765 49.0169 6.11031 48.6199 6.11031 48.6199Z" fill="#EDEDED"/>
-<path d="M6.30068 48.8262L70.9183 86.3777L70.9404 94.1718L6.32276 56.6203C5.60217 56.2012 5.2419 55.6497 5.23454 55.1056L5.21246 47.3115C5.21246 47.863 5.58009 48.4071 6.30068 48.8262Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M113.654 64.7516C114.39 64.3252 114.757 63.7663 114.757 63.2148L114.779 71.009C114.779 71.5678 114.412 72.1193 113.676 72.5457L76.213 94.1781L76.1911 86.384L113.654 64.7516Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M70.9115 86.377L70.9335 94.1711C72.3894 95.0166 74.7497 95.0166 76.2129 94.1711L76.1909 86.377C74.7277 87.2225 72.3673 87.2225 70.9115 86.377Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M6.31607 45.7666C4.85283 46.6122 4.84547 47.9798 6.30135 48.8254L70.919 86.3769C72.3749 87.2225 74.7352 87.2225 76.1984 86.3769L113.662 64.7445C115.125 63.8989 115.132 62.5313 113.676 61.6857L49.0587 24.1342C47.6102 23.2886 45.2425 23.2886 43.7793 24.1342L6.31607 45.7666Z" fill="white" stroke="#696969" stroke-miterlimit="10"/>
-<mask id="path-6-inside-1_9886_206609" fill="white">
-<path d="M76.2781 57.4244C75.4145 58.4066 74.2261 59.0449 72.9303 59.2227C46.3578 63.0383 36.949 54.0058 36.5621 53.619C36.0129 53.0722 36.1124 52.2599 36.7093 51.5024C37.0672 51.0663 37.504 50.7015 37.9967 50.4268C38.0451 50.3995 38.0937 50.3748 38.1404 50.35L41.157 48.0001C43.0017 46.5624 45.7463 46.0349 47.2709 46.83L50.816 48.6676C51.1532 48.8141 51.4321 49.0686 51.6088 49.3911C51.7855 49.7135 51.8501 50.0855 51.7922 50.4486C51.7012 50.9556 51.4787 51.4298 51.1471 51.824C50.8796 52.156 50.5733 52.4547 50.2347 52.7139L49.0482 53.639C49.188 53.6859 49.3282 53.7316 49.4737 53.7771C54.0534 55.1266 58.8157 55.7526 63.5886 55.6325L63.9001 54.762C64.0273 54.4189 64.2099 54.099 64.4407 53.815C64.8469 53.3196 65.3328 52.8953 65.8784 52.5595C66.8707 51.9279 67.9967 51.5366 69.1668 51.4167L74.5654 50.9137C76.8885 50.6971 78.3059 51.8462 77.727 53.4744L76.7813 56.1233C76.786 56.264 76.7711 56.4046 76.7371 56.5412C76.6486 56.8644 76.4927 57.1651 76.2796 57.4238"/>
-</mask>
-<path d="M72.9303 59.2227L72.7944 58.2319L72.7882 58.2328L72.9303 59.2227ZM36.5621 53.619L37.2691 52.9118L37.2677 52.9104L36.5621 53.619ZM36.7093 51.5024L35.9363 50.8679L35.93 50.8757L35.9238 50.8835L36.7093 51.5024ZM37.9967 50.4268L38.4836 51.3003L38.4879 51.2979L37.9967 50.4268ZM38.1404 50.35L38.6097 51.2331L38.6864 51.1923L38.7549 51.1389L38.1404 50.35ZM41.157 48.0001L41.7715 48.789L41.7717 48.7889L41.157 48.0001ZM47.2709 46.83L46.8085 47.7166L46.8107 47.7178L47.2709 46.83ZM50.816 48.6676L50.3558 49.5554L50.3861 49.5711L50.4174 49.5847L50.816 48.6676ZM51.7922 50.4486L52.7765 50.6254L52.7782 50.6157L52.7798 50.6059L51.7922 50.4486ZM51.1471 51.824L50.3819 51.1802L50.375 51.1883L50.3684 51.1966L51.1471 51.824ZM50.2347 52.7139L49.6269 51.9198L49.6198 51.9253L50.2347 52.7139ZM49.0482 53.639L48.4333 52.8504L46.9648 53.9954L48.7304 54.5872L49.0482 53.639ZM49.4737 53.7771L49.1755 54.7316L49.1832 54.734L49.1911 54.7363L49.4737 53.7771ZM63.5886 55.6325L63.6138 56.6321L64.2991 56.6149L64.5301 55.9694L63.5886 55.6325ZM63.9001 54.762L62.9624 54.4144L62.9586 54.4251L63.9001 54.762ZM64.4407 53.815L63.6674 53.1809L63.6646 53.1844L64.4407 53.815ZM65.8784 52.5595L66.4026 53.4111L66.409 53.4072L66.4153 53.4031L65.8784 52.5595ZM69.1668 51.4167L69.074 50.421L69.0648 50.4219L69.1668 51.4167ZM74.5654 50.9137L74.6581 51.9094L74.6582 51.9094L74.5654 50.9137ZM77.727 53.4744L78.6688 53.8106L78.6692 53.8094L77.727 53.4744ZM76.7813 56.1233L75.8395 55.7871L75.7755 55.9664L75.7819 56.1566L76.7813 56.1233ZM76.7371 56.5412L77.7016 56.8054L77.7047 56.7941L77.7075 56.7827L76.7371 56.5412ZM75.5271 56.7641C74.8222 57.5658 73.8521 58.0869 72.7944 58.2319L73.0662 60.2134C74.6 60.003 76.0068 59.2474 77.0291 58.0847L75.5271 56.7641ZM72.7882 58.2328C46.5097 62.0062 37.4209 53.0635 37.2691 52.9118L35.8551 54.3262C36.4771 54.948 46.2059 64.0704 73.0725 60.2125L72.7882 58.2328ZM37.2677 52.9104C37.213 52.856 37.195 52.811 37.2024 52.7236C37.2123 52.6059 37.2796 52.3944 37.4947 52.1213L35.9238 50.8835C35.5421 51.3679 35.2612 51.9413 35.2095 52.5558C35.1551 53.2006 35.362 53.8352 35.8565 54.3276L37.2677 52.9104ZM37.4822 52.1369C37.7606 51.7977 38.1003 51.5139 38.4836 51.3003L37.5099 49.5533C36.9076 49.889 36.3738 50.335 35.9363 50.8679L37.4822 52.1369ZM38.4879 51.2979C38.5222 51.2785 38.541 51.2696 38.6097 51.2331L37.6711 49.467C37.6464 49.4801 37.568 49.5205 37.5056 49.5557L38.4879 51.2979ZM38.7549 51.1389L41.7715 48.789L40.5425 47.2113L37.5258 49.5611L38.7549 51.1389ZM41.7717 48.7889C42.5596 48.1748 43.5579 47.7447 44.5222 47.5599C45.5084 47.3709 46.321 47.4624 46.8085 47.7166L47.7333 45.9433C46.6962 45.4025 45.3741 45.3602 44.1458 45.5956C42.8954 45.8353 41.5991 46.3877 40.5423 47.2114L41.7717 48.7889ZM46.8107 47.7178L50.3558 49.5554L51.2762 47.7797L47.7311 45.9421L46.8107 47.7178ZM50.4174 49.5847C50.5511 49.6428 50.6618 49.7438 50.7319 49.8717L52.4857 48.9104C52.2024 48.3935 51.7552 47.9854 51.2146 47.7504L50.4174 49.5847ZM50.7319 49.8717C50.802 49.9996 50.8276 50.1472 50.8047 50.2913L52.7798 50.6059C52.8725 50.0238 52.7691 49.4273 52.4857 48.9104L50.7319 49.8717ZM50.808 50.2718C50.7478 50.6066 50.6009 50.9198 50.3819 51.1802L51.9122 52.4678C52.3565 51.9398 52.6545 51.3046 52.7765 50.6254L50.808 50.2718ZM50.3684 51.1966C50.151 51.4664 49.902 51.7092 49.6269 51.9198L50.8425 53.508C51.2445 53.2003 51.6082 52.8456 51.9258 52.4514L50.3684 51.1966ZM49.6198 51.9253L48.4333 52.8504L49.6631 54.4276L50.8496 53.5025L49.6198 51.9253ZM48.7304 54.5872C48.8753 54.6357 49.0221 54.6837 49.1755 54.7316L49.772 52.8226C49.6343 52.7796 49.5007 52.736 49.366 52.6909L48.7304 54.5872ZM49.1911 54.7363C53.8706 56.1153 58.7368 56.7549 63.6138 56.6321L63.5634 54.6328C58.8947 54.7503 54.2362 54.138 49.7564 52.8179L49.1911 54.7363ZM64.5301 55.9694L64.8417 55.099L62.9586 54.4251L62.6471 55.2955L64.5301 55.9694ZM64.8378 55.1096C64.927 54.8691 65.055 54.6448 65.2168 54.4456L63.6646 53.1844C63.3649 53.5533 63.1277 53.9688 62.9625 54.4144L64.8378 55.1096ZM65.2139 54.4492C65.5498 54.0396 65.9515 53.6888 66.4026 53.4111L65.3542 51.7079C64.7141 52.1019 64.1441 52.5997 63.6674 53.1809L65.2139 54.4492ZM66.4153 53.4031C67.2764 52.8551 68.2534 52.5156 69.2688 52.4115L69.0648 50.4219C67.7399 50.5577 66.465 51.0008 65.3415 51.7159L66.4153 53.4031ZM69.2596 52.4124L74.6581 51.9094L74.4726 49.918L69.074 50.421L69.2596 52.4124ZM74.6582 51.9094C75.6683 51.8152 76.3069 52.0378 76.6049 52.2792C76.7434 52.3914 76.8087 52.5045 76.8369 52.6116C76.8656 52.7208 76.8731 52.891 76.7848 53.1394L78.6692 53.8094C78.8703 53.2436 78.9177 52.6596 78.7709 52.1023C78.6236 51.5427 78.2978 51.0768 77.8639 50.7252C77.0172 50.0393 75.7856 49.7956 74.4725 49.918L74.6582 51.9094ZM76.7852 53.1382L75.8395 55.7871L77.7231 56.4595L78.6688 53.8106L76.7852 53.1382ZM75.7819 56.1566C75.7835 56.2047 75.7784 56.2529 75.7667 56.2997L77.7075 56.7827C77.7639 56.5563 77.7885 56.3232 77.7808 56.0901L75.7819 56.1566ZM75.7727 56.277C75.7214 56.4641 75.6311 56.6382 75.5078 56.788L77.0515 58.0596C77.3542 57.6921 77.5758 57.2646 77.7016 56.8054L75.7727 56.277Z" fill="#DA3635" mask="url(#path-6-inside-1_9886_206609)"/>
-<path d="M83.8306 74.8474L86.9041 76.6341C87.0659 76.7297 87.2717 76.7297 87.4335 76.6341L98.3085 70.3547C98.6615 70.1489 98.6615 69.6415 98.3085 69.4356L95.235 67.6488C95.0732 67.5533 94.8673 67.5533 94.7056 67.6488L83.8306 73.9283C83.4777 74.1342 83.4777 74.6415 83.8306 74.8474Z" fill="white" stroke="#696969" stroke-miterlimit="10"/>
-<path d="M44.5673 25.8112C44.1261 26.0612 44.1261 26.473 44.5599 26.723C44.9937 26.973 45.6997 26.973 46.1408 26.723C46.582 26.473 46.582 26.0612 46.1482 25.8112C45.7144 25.5538 45.0085 25.5538 44.5673 25.8112Z" fill="#696969"/>
-<path d="M41.7207 27.3395C41.2795 27.5895 41.2795 28.0013 41.7133 28.2513C42.1471 28.5013 42.853 28.5013 43.2942 28.2513C43.7353 28.0013 43.7353 27.5895 43.3015 27.3395C42.8677 27.0821 42.1618 27.0821 41.7207 27.3395Z" fill="#696969"/>
-<line y1="-0.5" x2="49.1376" y2="-0.5" transform="matrix(-0.866026 0.5 0.866026 0.5 106.741 57.6836)" stroke="#696969"/>
-<line y1="-0.5" x2="49.1376" y2="-0.5" transform="matrix(-0.866025 0.5 0.866025 0.500001 52.2617 25.6357)" stroke="#696969"/>
-</symbol>
-
-</svg>
+  <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="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" />
+    <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" />
+  </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="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" />
+  </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"
+      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="mediation1" width="120" height="121" viewBox="0 0 120 121" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <path
+      d="M6.11031 48.6199L43.7206 26.9067C45.1912 26.0611 47.5662 26.0611 49.0221 26.9067L113.89 64.6052C115.044 65.2375 114.978 66.1273 114.978 66.1273L115 73.9508C115 74.5096 114.632 75.0684 113.89 75.4949L76.2795 97.2081C74.8089 98.0537 72.4412 98.0537 70.9779 97.2081L6.11031 59.5096C5.38972 59.0905 5.02208 58.539 5.02208 57.9875L5 50.164C5.11765 49.0169 6.11031 48.6199 6.11031 48.6199Z"
+      fill="#EDEDED" />
+    <path
+      d="M6.30068 48.8262L70.9183 86.3777L70.9404 94.1718L6.32276 56.6203C5.60217 56.2012 5.2419 55.6497 5.23454 55.1056L5.21246 47.3115C5.21246 47.863 5.58009 48.4071 6.30068 48.8262Z"
+      fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" />
+    <path
+      d="M113.654 64.7516C114.39 64.3252 114.757 63.7663 114.757 63.2148L114.779 71.009C114.779 71.5678 114.412 72.1193 113.676 72.5457L76.213 94.1781L76.1911 86.384L113.654 64.7516Z"
+      fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" />
+    <path
+      d="M70.9115 86.377L70.9335 94.1711C72.3894 95.0166 74.7497 95.0166 76.2129 94.1711L76.1909 86.377C74.7277 87.2225 72.3673 87.2225 70.9115 86.377Z"
+      fill="white" stroke="#DA3635" stroke-miterlimit="10" />
+    <path
+      d="M6.31607 45.7666C4.85283 46.6122 4.84547 47.9798 6.30135 48.8254L70.919 86.3769C72.3749 87.2225 74.7352 87.2225 76.1984 86.3769L113.662 64.7445C115.125 63.8989 115.132 62.5313 113.676 61.6857L49.0587 24.1342C47.6102 23.2886 45.2425 23.2886 43.7793 24.1342L6.31607 45.7666Z"
+      fill="white" stroke="#696969" stroke-miterlimit="10" />
+    <mask id="path-6-inside-1_9886_206609" fill="white">
+      <path
+        d="M76.2781 57.4244C75.4145 58.4066 74.2261 59.0449 72.9303 59.2227C46.3578 63.0383 36.949 54.0058 36.5621 53.619C36.0129 53.0722 36.1124 52.2599 36.7093 51.5024C37.0672 51.0663 37.504 50.7015 37.9967 50.4268C38.0451 50.3995 38.0937 50.3748 38.1404 50.35L41.157 48.0001C43.0017 46.5624 45.7463 46.0349 47.2709 46.83L50.816 48.6676C51.1532 48.8141 51.4321 49.0686 51.6088 49.3911C51.7855 49.7135 51.8501 50.0855 51.7922 50.4486C51.7012 50.9556 51.4787 51.4298 51.1471 51.824C50.8796 52.156 50.5733 52.4547 50.2347 52.7139L49.0482 53.639C49.188 53.6859 49.3282 53.7316 49.4737 53.7771C54.0534 55.1266 58.8157 55.7526 63.5886 55.6325L63.9001 54.762C64.0273 54.4189 64.2099 54.099 64.4407 53.815C64.8469 53.3196 65.3328 52.8953 65.8784 52.5595C66.8707 51.9279 67.9967 51.5366 69.1668 51.4167L74.5654 50.9137C76.8885 50.6971 78.3059 51.8462 77.727 53.4744L76.7813 56.1233C76.786 56.264 76.7711 56.4046 76.7371 56.5412C76.6486 56.8644 76.4927 57.1651 76.2796 57.4238" />
+    </mask>
+    <path
+      d="M72.9303 59.2227L72.7944 58.2319L72.7882 58.2328L72.9303 59.2227ZM36.5621 53.619L37.2691 52.9118L37.2677 52.9104L36.5621 53.619ZM36.7093 51.5024L35.9363 50.8679L35.93 50.8757L35.9238 50.8835L36.7093 51.5024ZM37.9967 50.4268L38.4836 51.3003L38.4879 51.2979L37.9967 50.4268ZM38.1404 50.35L38.6097 51.2331L38.6864 51.1923L38.7549 51.1389L38.1404 50.35ZM41.157 48.0001L41.7715 48.789L41.7717 48.7889L41.157 48.0001ZM47.2709 46.83L46.8085 47.7166L46.8107 47.7178L47.2709 46.83ZM50.816 48.6676L50.3558 49.5554L50.3861 49.5711L50.4174 49.5847L50.816 48.6676ZM51.7922 50.4486L52.7765 50.6254L52.7782 50.6157L52.7798 50.6059L51.7922 50.4486ZM51.1471 51.824L50.3819 51.1802L50.375 51.1883L50.3684 51.1966L51.1471 51.824ZM50.2347 52.7139L49.6269 51.9198L49.6198 51.9253L50.2347 52.7139ZM49.0482 53.639L48.4333 52.8504L46.9648 53.9954L48.7304 54.5872L49.0482 53.639ZM49.4737 53.7771L49.1755 54.7316L49.1832 54.734L49.1911 54.7363L49.4737 53.7771ZM63.5886 55.6325L63.6138 56.6321L64.2991 56.6149L64.5301 55.9694L63.5886 55.6325ZM63.9001 54.762L62.9624 54.4144L62.9586 54.4251L63.9001 54.762ZM64.4407 53.815L63.6674 53.1809L63.6646 53.1844L64.4407 53.815ZM65.8784 52.5595L66.4026 53.4111L66.409 53.4072L66.4153 53.4031L65.8784 52.5595ZM69.1668 51.4167L69.074 50.421L69.0648 50.4219L69.1668 51.4167ZM74.5654 50.9137L74.6581 51.9094L74.6582 51.9094L74.5654 50.9137ZM77.727 53.4744L78.6688 53.8106L78.6692 53.8094L77.727 53.4744ZM76.7813 56.1233L75.8395 55.7871L75.7755 55.9664L75.7819 56.1566L76.7813 56.1233ZM76.7371 56.5412L77.7016 56.8054L77.7047 56.7941L77.7075 56.7827L76.7371 56.5412ZM75.5271 56.7641C74.8222 57.5658 73.8521 58.0869 72.7944 58.2319L73.0662 60.2134C74.6 60.003 76.0068 59.2474 77.0291 58.0847L75.5271 56.7641ZM72.7882 58.2328C46.5097 62.0062 37.4209 53.0635 37.2691 52.9118L35.8551 54.3262C36.4771 54.948 46.2059 64.0704 73.0725 60.2125L72.7882 58.2328ZM37.2677 52.9104C37.213 52.856 37.195 52.811 37.2024 52.7236C37.2123 52.6059 37.2796 52.3944 37.4947 52.1213L35.9238 50.8835C35.5421 51.3679 35.2612 51.9413 35.2095 52.5558C35.1551 53.2006 35.362 53.8352 35.8565 54.3276L37.2677 52.9104ZM37.4822 52.1369C37.7606 51.7977 38.1003 51.5139 38.4836 51.3003L37.5099 49.5533C36.9076 49.889 36.3738 50.335 35.9363 50.8679L37.4822 52.1369ZM38.4879 51.2979C38.5222 51.2785 38.541 51.2696 38.6097 51.2331L37.6711 49.467C37.6464 49.4801 37.568 49.5205 37.5056 49.5557L38.4879 51.2979ZM38.7549 51.1389L41.7715 48.789L40.5425 47.2113L37.5258 49.5611L38.7549 51.1389ZM41.7717 48.7889C42.5596 48.1748 43.5579 47.7447 44.5222 47.5599C45.5084 47.3709 46.321 47.4624 46.8085 47.7166L47.7333 45.9433C46.6962 45.4025 45.3741 45.3602 44.1458 45.5956C42.8954 45.8353 41.5991 46.3877 40.5423 47.2114L41.7717 48.7889ZM46.8107 47.7178L50.3558 49.5554L51.2762 47.7797L47.7311 45.9421L46.8107 47.7178ZM50.4174 49.5847C50.5511 49.6428 50.6618 49.7438 50.7319 49.8717L52.4857 48.9104C52.2024 48.3935 51.7552 47.9854 51.2146 47.7504L50.4174 49.5847ZM50.7319 49.8717C50.802 49.9996 50.8276 50.1472 50.8047 50.2913L52.7798 50.6059C52.8725 50.0238 52.7691 49.4273 52.4857 48.9104L50.7319 49.8717ZM50.808 50.2718C50.7478 50.6066 50.6009 50.9198 50.3819 51.1802L51.9122 52.4678C52.3565 51.9398 52.6545 51.3046 52.7765 50.6254L50.808 50.2718ZM50.3684 51.1966C50.151 51.4664 49.902 51.7092 49.6269 51.9198L50.8425 53.508C51.2445 53.2003 51.6082 52.8456 51.9258 52.4514L50.3684 51.1966ZM49.6198 51.9253L48.4333 52.8504L49.6631 54.4276L50.8496 53.5025L49.6198 51.9253ZM48.7304 54.5872C48.8753 54.6357 49.0221 54.6837 49.1755 54.7316L49.772 52.8226C49.6343 52.7796 49.5007 52.736 49.366 52.6909L48.7304 54.5872ZM49.1911 54.7363C53.8706 56.1153 58.7368 56.7549 63.6138 56.6321L63.5634 54.6328C58.8947 54.7503 54.2362 54.138 49.7564 52.8179L49.1911 54.7363ZM64.5301 55.9694L64.8417 55.099L62.9586 54.4251L62.6471 55.2955L64.5301 55.9694ZM64.8378 55.1096C64.927 54.8691 65.055 54.6448 65.2168 54.4456L63.6646 53.1844C63.3649 53.5533 63.1277 53.9688 62.9625 54.4144L64.8378 55.1096ZM65.2139 54.4492C65.5498 54.0396 65.9515 53.6888 66.4026 53.4111L65.3542 51.7079C64.7141 52.1019 64.1441 52.5997 63.6674 53.1809L65.2139 54.4492ZM66.4153 53.4031C67.2764 52.8551 68.2534 52.5156 69.2688 52.4115L69.0648 50.4219C67.7399 50.5577 66.465 51.0008 65.3415 51.7159L66.4153 53.4031ZM69.2596 52.4124L74.6581 51.9094L74.4726 49.918L69.074 50.421L69.2596 52.4124ZM74.6582 51.9094C75.6683 51.8152 76.3069 52.0378 76.6049 52.2792C76.7434 52.3914 76.8087 52.5045 76.8369 52.6116C76.8656 52.7208 76.8731 52.891 76.7848 53.1394L78.6692 53.8094C78.8703 53.2436 78.9177 52.6596 78.7709 52.1023C78.6236 51.5427 78.2978 51.0768 77.8639 50.7252C77.0172 50.0393 75.7856 49.7956 74.4725 49.918L74.6582 51.9094ZM76.7852 53.1382L75.8395 55.7871L77.7231 56.4595L78.6688 53.8106L76.7852 53.1382ZM75.7819 56.1566C75.7835 56.2047 75.7784 56.2529 75.7667 56.2997L77.7075 56.7827C77.7639 56.5563 77.7885 56.3232 77.7808 56.0901L75.7819 56.1566ZM75.7727 56.277C75.7214 56.4641 75.6311 56.6382 75.5078 56.788L77.0515 58.0596C77.3542 57.6921 77.5758 57.2646 77.7016 56.8054L75.7727 56.277Z"
+      fill="#DA3635" mask="url(#path-6-inside-1_9886_206609)" />
+    <path
+      d="M83.8306 74.8474L86.9041 76.6341C87.0659 76.7297 87.2717 76.7297 87.4335 76.6341L98.3085 70.3547C98.6615 70.1489 98.6615 69.6415 98.3085 69.4356L95.235 67.6488C95.0732 67.5533 94.8673 67.5533 94.7056 67.6488L83.8306 73.9283C83.4777 74.1342 83.4777 74.6415 83.8306 74.8474Z"
+      fill="white" stroke="#696969" stroke-miterlimit="10" />
+    <path
+      d="M44.5673 25.8112C44.1261 26.0612 44.1261 26.473 44.5599 26.723C44.9937 26.973 45.6997 26.973 46.1408 26.723C46.582 26.473 46.582 26.0612 46.1482 25.8112C45.7144 25.5538 45.0085 25.5538 44.5673 25.8112Z"
+      fill="#696969" />
+    <path
+      d="M41.7207 27.3395C41.2795 27.5895 41.2795 28.0013 41.7133 28.2513C42.1471 28.5013 42.853 28.5013 43.2942 28.2513C43.7353 28.0013 43.7353 27.5895 43.3015 27.3395C42.8677 27.0821 42.1618 27.0821 41.7207 27.3395Z"
+      fill="#696969" />
+    <line y1="-0.5" x2="49.1376" y2="-0.5" transform="matrix(-0.866026 0.5 0.866026 0.5 106.741 57.6836)"
+      stroke="#696969" />
+    <line y1="-0.5" x2="49.1376" y2="-0.5" transform="matrix(-0.866025 0.5 0.866025 0.500001 52.2617 25.6357)"
+      stroke="#696969" />
+  </symbol>
+
+</svg>
\ No newline at end of file
diff --git a/src/assets/img/resin_print_banner.svg b/src/assets/img/resin_print_banner.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f73711367228694e8b1400e0284ba49a6fedb0fb
--- /dev/null
+++ b/src/assets/img/resin_print_banner.svg
@@ -0,0 +1,887 @@
+<svg width="595" height="122" viewBox="0 0 595 122" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <g clip-path="url(#clip0_9947_236696)">
+        <path d="M179.218 67.1129L253.457 109.975" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round"
+            stroke-linejoin="round" stroke-dasharray="5 8" />
+        <path
+            d="M181.227 61.0247C183.579 62.3909 183.593 64.6091 181.257 65.9753C178.92 67.3416 175.121 67.3416 172.77 65.9753C170.419 64.6091 170.409 62.3909 172.746 61.0247C175.078 59.6584 178.876 59.6584 181.227 61.0247Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" />
+        <path d="M430 42.6939L531.661 -16" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round"
+            stroke-dasharray="5 8" />
+        <path
+            d="M428.557 42.1436C434.199 45.4023 434.235 50.6856 428.624 53.9443C423.018 57.2031 413.893 57.2031 408.251 53.9443C402.609 50.6856 402.578 45.4023 408.19 42.1436C413.801 38.8848 422.915 38.8848 428.557 42.1436Z"
+            fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"
+            stroke-dasharray="5 5" />
+        <path
+            d="M427.442 43.0012C432.442 45.8511 432.474 50.4678 427.506 53.3177C422.538 56.1676 414.451 56.1676 409.444 53.3177C404.444 50.4678 404.418 45.8511 409.386 43.0012C414.361 40.1513 422.442 40.1513 427.442 43.0012Z"
+            fill="#EDEDED" />
+        <path
+            d="M429.53 42.6725C429.524 42.7272 429.524 42.7819 429.518 42.8427C429.511 42.8914 429.505 42.94 429.499 42.9887C429.493 43.0434 429.481 43.0981 429.475 43.1528C429.469 43.2015 429.457 43.2501 429.445 43.2987C429.432 43.3534 429.42 43.4082 429.402 43.4629C429.39 43.5115 429.372 43.5602 429.359 43.6088C429.341 43.6635 429.323 43.7182 429.305 43.7669C429.286 43.8155 429.268 43.8641 429.25 43.9128C429.226 43.9675 429.201 44.0222 429.177 44.083C429.159 44.1317 429.135 44.1742 429.11 44.2228C429.086 44.2776 429.055 44.3323 429.025 44.387C429.001 44.4296 428.976 44.4782 428.952 44.5208C428.916 44.5876 428.873 44.6545 428.831 44.7153C428.806 44.7579 428.782 44.7943 428.751 44.8369C428.703 44.9099 428.648 44.9828 428.593 45.0497C428.569 45.0801 428.545 45.1105 428.52 45.147C428.429 45.2625 428.332 45.3719 428.235 45.4813C428.21 45.5117 428.18 45.5361 428.156 45.5665C428.077 45.6516 427.992 45.7367 427.906 45.8157C427.864 45.8522 427.827 45.8887 427.785 45.9252C427.73 45.9738 427.675 46.0164 427.621 46.065C427.572 46.1076 427.523 46.1501 427.469 46.1927C427.414 46.2413 427.353 46.2839 427.292 46.3325C427.238 46.3751 427.183 46.4176 427.128 46.4541C427.067 46.4967 427.007 46.5453 426.94 46.5879C426.879 46.6304 426.824 46.6669 426.763 46.7094C426.697 46.752 426.63 46.7946 426.563 46.8371C426.478 46.8919 426.393 46.9405 426.307 46.9952C426.064 47.135 425.815 47.2627 425.56 47.3904C425.493 47.4208 425.426 47.4573 425.353 47.4877C425.122 47.5971 424.885 47.6944 424.642 47.7916C424.611 47.8038 424.581 47.816 424.544 47.8281C424.283 47.9254 424.015 48.0166 423.748 48.1017C423.559 48.1625 423.365 48.2111 423.176 48.2659C423.03 48.3084 422.885 48.3449 422.739 48.3814C422.538 48.43 422.331 48.4726 422.125 48.5151C421.973 48.5455 421.827 48.582 421.675 48.6063C421.614 48.6185 421.547 48.6246 421.486 48.6367C421.231 48.6793 420.976 48.7158 420.714 48.7462C420.641 48.7522 420.562 48.7644 420.489 48.7705C420.343 48.7887 420.191 48.7948 420.039 48.807C419.79 48.8252 419.541 48.8434 419.285 48.8556C419.127 48.8617 418.963 48.8678 418.805 48.8678C418.604 48.8738 418.398 48.8738 418.197 48.8678C418.027 48.8678 417.857 48.8617 417.686 48.8556C417.498 48.8495 417.309 48.8374 417.121 48.8252C416.951 48.813 416.78 48.8009 416.604 48.7826C416.416 48.7644 416.233 48.7462 416.051 48.7218C415.887 48.7036 415.717 48.6793 415.552 48.6489C415.352 48.6185 415.157 48.582 414.963 48.5455C414.811 48.5151 414.653 48.4847 414.501 48.4543C414.27 48.4057 414.039 48.3449 413.807 48.2841C413.662 48.2476 413.51 48.2112 413.364 48.1625C413.285 48.1382 413.206 48.1139 413.133 48.0896C412.902 48.0166 412.677 47.9376 412.458 47.8585C412.391 47.8342 412.33 47.8099 412.263 47.7856C412.063 47.7065 411.868 47.6214 411.674 47.5363C411.576 47.4937 411.479 47.4573 411.388 47.4086C411.108 47.2749 410.835 47.135 410.573 46.983C408.378 45.7185 407.284 44.0526 407.29 42.3929L407.278 47.1776C407.272 48.8374 408.366 50.4971 410.561 51.7678C410.822 51.9198 411.096 52.0596 411.376 52.1934C411.467 52.2359 411.57 52.2785 411.661 52.321C411.826 52.394 411.99 52.473 412.16 52.5399C412.19 52.5521 412.221 52.5642 412.251 52.5703C412.312 52.5946 412.379 52.619 412.446 52.6433C412.665 52.7223 412.896 52.8014 413.12 52.8743C413.2 52.8986 413.279 52.9229 413.358 52.9473C413.412 52.9655 413.461 52.9837 413.516 52.9959C413.607 53.0202 413.704 53.0385 413.801 53.0628C414.032 53.1236 414.257 53.1783 414.495 53.233C414.555 53.2452 414.616 53.2634 414.677 53.2756C414.768 53.2938 414.859 53.306 414.95 53.3242C415.145 53.3607 415.346 53.3972 415.54 53.4276C415.619 53.4397 415.698 53.4579 415.777 53.4701C415.862 53.4823 415.954 53.4884 416.039 53.5005C416.221 53.5248 416.41 53.5431 416.598 53.5613C416.689 53.5674 416.774 53.5856 416.866 53.5917C416.951 53.5978 417.03 53.5978 417.115 53.6039C417.303 53.616 417.492 53.6282 417.68 53.6343C417.778 53.6404 417.869 53.6464 417.966 53.6464C418.039 53.6464 418.118 53.6464 418.191 53.6464C418.392 53.6464 418.598 53.6464 418.799 53.6464C418.902 53.6464 419 53.6464 419.103 53.6464C419.164 53.6464 419.225 53.6343 419.279 53.6343C419.529 53.6221 419.784 53.6039 420.033 53.5856C420.136 53.5795 420.234 53.5735 420.337 53.5674C420.386 53.5613 420.434 53.5552 420.483 53.5491C420.556 53.5431 420.635 53.5309 420.708 53.5248C420.969 53.4944 421.225 53.458 421.48 53.4154C421.541 53.4032 421.608 53.3972 421.669 53.385C421.699 53.3789 421.729 53.3789 421.76 53.3728C421.881 53.3485 421.997 53.3181 422.118 53.2938C422.325 53.2513 422.532 53.2087 422.733 53.1601C422.878 53.1236 423.024 53.081 423.17 53.0445C423.365 52.9898 423.553 52.9412 423.742 52.8804C423.784 52.8682 423.827 52.8561 423.863 52.8439C424.094 52.7709 424.319 52.6919 424.538 52.6068C424.569 52.5946 424.599 52.5825 424.635 52.5703C424.879 52.473 425.116 52.3758 425.347 52.2663C425.414 52.2359 425.487 52.2055 425.554 52.1691C425.809 52.0475 426.064 51.9137 426.301 51.7739C426.35 51.7496 426.393 51.7192 426.435 51.6948C426.478 51.6705 426.514 51.6462 426.557 51.6158C426.624 51.5732 426.69 51.5307 426.757 51.4881C426.818 51.4456 426.879 51.4091 426.934 51.3665C426.994 51.324 427.061 51.2814 427.122 51.2328C427.177 51.1902 427.232 51.1477 427.286 51.1051C427.347 51.0625 427.402 51.0139 427.463 50.9713C427.517 50.9288 427.566 50.8862 427.615 50.8437C427.669 50.795 427.724 50.7525 427.773 50.7038C427.797 50.6856 427.815 50.6674 427.84 50.6491C427.858 50.6309 427.876 50.6126 427.894 50.5944C427.979 50.5093 428.064 50.4303 428.144 50.3451C428.168 50.3147 428.198 50.2904 428.223 50.26C428.326 50.1506 428.423 50.0351 428.508 49.9256C428.514 49.9196 428.514 49.9135 428.52 49.9135C428.539 49.8892 428.557 49.8588 428.581 49.8344C428.636 49.7615 428.691 49.6946 428.739 49.6216C428.764 49.5791 428.794 49.5426 428.818 49.5C428.861 49.4332 428.903 49.3663 428.94 49.3055C428.952 49.2873 428.964 49.269 428.97 49.2508C428.983 49.2265 428.995 49.1961 429.013 49.1718C429.043 49.117 429.074 49.0623 429.098 49.0076C429.122 48.9589 429.141 48.9164 429.165 48.8678C429.189 48.813 429.214 48.7583 429.238 48.6975C429.25 48.6732 429.262 48.6489 429.268 48.6246C429.274 48.6003 429.28 48.5759 429.293 48.5577C429.311 48.503 429.329 48.4483 429.347 48.3996C429.359 48.351 429.378 48.3023 429.39 48.2537C429.402 48.199 429.42 48.1443 429.432 48.0896C429.438 48.0592 429.451 48.0288 429.457 48.0044C429.463 47.9862 429.463 47.9619 429.469 47.9436C429.481 47.8889 429.487 47.8342 429.493 47.7795C429.499 47.7308 429.505 47.6822 429.511 47.6336C429.518 47.5789 429.518 47.5241 429.524 47.4633C429.524 47.4329 429.53 47.3965 429.53 47.3661C429.53 47.3357 429.53 47.2992 429.53 47.2688L429.542 42.484C429.542 42.5448 429.536 42.6117 429.53 42.6725Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" />
+        <path
+            d="M426.253 37.8878C430.612 40.4048 430.636 44.4843 426.308 47.0013C421.979 49.5183 414.932 49.5183 410.573 47.0013C406.214 44.4843 406.196 40.4048 410.525 37.8878C414.853 35.3707 421.894 35.3707 426.253 37.8878Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" />
+        <path
+            d="M414.257 39.1888C416.464 37.9181 420.033 37.9181 422.222 39.1888C424.392 40.4534 424.398 42.484 422.246 43.7668L418.197 46.1136L414.227 43.8094C412.038 42.5266 412.05 40.4595 414.257 39.1888Z"
+            fill="#DA3635" />
+        <path d="M185.841 101.488L167.914 111.838C161.696 115.428 151.615 115.428 145.397 111.838L-48.0754 0.136894"
+            stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8" />
+        <path
+            d="M544.942 65.3798L513.316 47.2133C507.071 43.6262 507.058 37.7931 513.287 34.1968L531.814 23.5C538.032 19.9101 548.113 19.9101 554.331 23.5L627.704 65.8617"
+            stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8" />
+        <path
+            d="M80.6551 64.5501C78.4574 65.8169 78.4484 67.8714 80.6283 69.1426C82.8081 70.4093 86.3576 70.4093 88.5553 69.1426C90.7531 67.8759 90.7621 65.8213 88.5777 64.5501C86.3979 63.2789 82.8484 63.2789 80.6551 64.5501Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M82.038 65.3512C80.6146 66.1747 80.6056 67.5086 82.0201 68.3322C83.4345 69.1558 85.7397 69.1558 87.1676 68.3322C88.5909 67.5086 88.5999 66.1747 87.1855 65.3512C85.7666 64.532 83.4659 64.532 82.038 65.3512Z"
+            fill="#EDEDED" />
+        <path
+            d="M103.223 8.77826C104.392 9.50338 104.127 11.3565 103.223 11.8802L101.231 13.0305C100.806 13.2767 100.278 13.2767 99.8528 13.0305L92.8433 8.98417C92.069 8.53656 91.8407 6.72377 92.8433 6.22693L99.996 9.99128L103.223 8.77826Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M86.7557 4.71841C88.4119 3.76053 90.3858 3.76053 92.0419 4.71841L93.7473 5.70315L94.5082 5.2645C95.3184 4.79451 96.321 4.79451 97.1357 5.2645L103.223 8.7782C104.127 9.3019 104.127 10.6089 103.223 11.1326L101.231 12.283C100.806 12.5291 100.278 12.5291 99.8526 12.283L92.8432 8.23661C92.0688 7.78901 92.0688 6.67447 92.8432 6.22686L93.0759 6.09256L91.7062 5.30477C90.2605 4.47222 88.5372 4.47222 87.0914 5.30477C85.6457 6.13732 84.7818 7.63235 84.7818 9.30192V47.4245H84.1104V9.30192C84.1148 7.38616 85.0996 5.67628 86.7557 4.71841Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M86.6214 66.7789C86.6214 67.4369 85.6948 67.9695 84.5534 67.9695C83.412 67.9695 82.4855 67.4369 82.4855 66.7789V65.5883H86.6259V66.7789H86.6214Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M84.549 66.7789C83.4069 66.7789 82.4811 66.2458 82.4811 65.5883C82.4811 64.9307 83.4069 64.3976 84.549 64.3976C85.6911 64.3976 86.6169 64.9307 86.6169 65.5883C86.6169 66.2458 85.6911 66.7789 84.549 66.7789Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M85.798 65.4673C85.798 65.8657 85.2384 66.1835 84.5491 66.1835C83.8598 66.1835 83.3003 65.8612 83.3003 65.4673V38.7408H85.798V65.4673Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M84.5491 39.457C83.8594 39.457 83.3003 39.1363 83.3003 38.7408C83.3003 38.3453 83.8594 38.0247 84.5491 38.0247C85.2388 38.0247 85.798 38.3453 85.798 38.7408C85.798 39.1363 85.2388 39.457 84.5491 39.457Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M334.252 36.9048C334.302 36.8776 334.347 36.8505 334.397 36.8233C335.556 36.1667 336.892 35.6143 338.414 35.1977C339.944 34.7811 341.511 34.5366 343.177 34.437C344.821 34.36 346.514 34.4823 348.208 34.8128C349.897 35.1479 351.446 35.7366 352.899 36.5471L375.802 49.8553C377.346 50.7519 377.333 52.2009 375.789 53.0929C374.181 54.0212 371.686 54.0121 370.147 53.1201L347.243 39.8119C345.953 39.0828 344.631 38.7568 343.259 38.8519C341.896 38.9108 340.673 39.273 339.627 39.8572C338.581 40.4594 338.02 41.1477 337.838 41.9175C337.653 42.6963 338.214 43.4616 339.487 44.1906L362.508 57.5214C364.043 58.4135 364.043 59.8625 362.49 60.7591C360.937 61.6556 358.441 61.6556 356.902 60.7591C354.316 59.2557 350.875 57.2452 350.839 57.2226L333.849 47.3965C332.364 46.5452 331.3 45.626 330.743 44.6615C330.172 43.697 329.937 42.7461 330.127 41.7997C330.276 40.8715 330.729 39.9794 331.508 39.0964C332.255 38.2542 333.156 37.5387 334.252 36.9048Z"
+            fill="#EDEDED" stroke="#EDEDED" stroke-width="9" stroke-miterlimit="10" stroke-linecap="round"
+            stroke-linejoin="round" />
+        <path
+            d="M314.926 48.0803C316.665 47.0796 319.463 47.0796 321.188 48.0803L349.589 64.5854C351.314 65.5861 351.31 67.2117 349.571 68.2124C347.832 69.2131 345.029 69.2131 343.304 68.2124L314.903 51.7074C313.178 50.7066 313.187 49.081 314.926 48.0803Z"
+            fill="#EDEDED" stroke="#EDEDED" stroke-width="9" stroke-miterlimit="10" stroke-linecap="round"
+            stroke-linejoin="round" />
+        <path
+            d="M302.007 55.5381C304.47 54.1163 308.46 54.1163 310.909 55.5381C313.337 56.9509 313.341 59.224 310.941 60.6504L306.418 63.2676L301.98 60.6911C299.53 59.2693 299.544 56.9599 302.007 55.5381Z"
+            fill="#EDEDED" stroke="#EDEDED" stroke-width="9" stroke-miterlimit="10" stroke-linecap="round"
+            stroke-linejoin="round" />
+        <path
+            d="M284.606 65.577C288.849 63.1273 294.015 63.0503 298.62 64.3997C300.595 64.9747 301.038 66.4917 299.472 67.3973C298.471 67.9769 296.995 68.0992 295.745 67.7641C293.381 67.1301 291.262 67.0984 289.473 68.1309C287.418 69.3172 287.703 70.9836 289.568 72.0703C290.741 72.7496 292.317 73.1254 294.667 73.0575L306.182 72.7858C310.828 72.6771 315.818 72.7813 320.115 75.308C325.911 78.6769 324.947 82.553 319.355 85.7816C315.383 88.0728 310.516 88.6388 305.834 87.6924C303.176 87.1536 302.374 85.202 304.38 84.0473L304.525 83.9658C305.621 83.3318 307.237 83.1688 308.682 83.4903C311.276 84.0654 313.405 83.8616 315.266 82.7885C317.503 81.4979 317.335 79.9719 315.171 78.7131C313.242 77.5901 310.955 77.2188 307.382 77.3864L296.587 77.8618C292.245 78.0656 288.133 77.7894 284.157 75.48C278.814 72.3737 279.312 68.6335 284.606 65.577Z"
+            fill="#EDEDED" stroke="#EDEDED" stroke-width="9" stroke-miterlimit="10" stroke-linecap="round"
+            stroke-linejoin="round" />
+        <path
+            d="M279.874 78.5773C281.431 79.4829 282.5 80.384 283.061 81.3893C283.632 82.39 283.795 83.3364 283.618 84.2918C283.446 85.2382 282.867 86.1393 282.206 86.9951C281.513 87.8962 280.535 88.7203 279.321 89.4222L275.513 91.6229L283.383 96.1963C283.935 96.5178 284.411 96.6989 284.918 96.8483C285.181 96.9253 285.443 96.9932 285.715 97.043C287.617 97.4008 289.79 97.1517 291.312 96.2733C292.978 95.3133 293.77 94.1315 292.688 92.8455C291.982 92.0168 292.353 91.0161 293.49 90.3595C295.369 89.2773 298.611 89.558 299.666 90.9753C299.766 91.0976 299.856 91.2334 299.924 91.3648C300.477 92.3338 300.549 93.1398 300.4 94.0635C300.223 95.0144 299.734 95.8748 298.987 96.7804C298.321 97.6408 297.334 98.4015 296.179 99.0671C295.079 99.7011 293.956 100.199 292.638 100.602L292.484 100.634C287.816 102.164 281.726 101.748 277.763 99.443L260.887 89.5399C259.492 88.7294 258.428 87.8283 257.858 86.8276C257.292 85.8223 257.133 84.8714 257.301 83.9205C257.482 82.9696 257.966 82.1092 258.714 81.2036C258.8 81.0949 258.908 80.9863 259.003 80.8776C260.135 79.3109 260.049 76.9879 259.778 76.4672C259.379 75.6883 259.778 74.8778 260.71 74.3435C261.123 74.1035 261.639 73.9224 262.232 73.8182C264.17 73.4786 266.203 74.099 266.796 75.2219C267.014 75.6431 267.177 76.2091 267.249 76.8566C268.2 76.6664 269.169 76.5442 270.174 76.4898C271.827 76.3947 273.462 76.4898 275.187 76.8204C276.917 77.1509 278.474 77.7668 279.874 78.5773ZM274.331 81.9553L274.245 81.9055C273.018 81.1946 271.623 80.8595 270.306 80.9546C268.902 81.0949 267.747 81.3802 266.674 82.0006C265.596 82.6209 265.03 83.3364 264.858 84.1016C264.686 84.8623 265.261 85.6729 266.488 86.3883L270.26 88.58L274.136 86.3431C275.21 85.7227 275.789 85.0163 275.961 84.2511C276.133 83.4813 275.558 82.6707 274.331 81.9553Z"
+            fill="#EDEDED" stroke="#EDEDED" stroke-width="9" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M238.939 91.9398C238.989 91.9127 239.034 91.8855 239.084 91.8583C240.243 91.2017 241.584 90.6538 243.101 90.2327C244.631 89.8161 246.198 89.5716 247.864 89.472C249.503 89.395 251.202 89.5173 252.895 89.8478C252.949 89.8614 253.013 89.875 253.072 89.884C255.639 90.4274 256.282 92.3609 254.353 93.4749L253.986 93.6786C252.913 94.2809 251.333 94.3895 249.961 94.0545C249.3 93.896 248.616 93.8416 247.937 93.8869C246.569 93.9458 245.351 94.3035 244.305 94.8876C243.259 95.4899 242.702 96.1782 242.517 96.9479C242.331 97.7268 242.897 98.4966 244.165 99.2211L267.186 112.552C268.725 113.448 268.725 114.897 267.172 115.794C265.615 116.691 263.124 116.691 261.585 115.794C258.994 114.291 255.558 112.28 255.521 112.258L239.003 102.708C238.219 102.382 237.354 102.178 236.404 102.119C235.724 102.065 235.041 102.105 234.37 102.255C232.971 102.558 231.404 102.422 230.372 101.802L230.055 101.612C228.57 100.715 228.715 99.3297 230.1 98.5283C230.485 98.3064 230.97 98.1298 231.536 98.0166C231.599 98.0075 231.663 97.9985 231.708 97.9894C232.736 97.8128 233.755 97.7177 234.76 97.686C234.742 97.4008 234.746 97.1155 234.81 96.8347C234.959 95.911 235.412 95.0144 236.182 94.1314C236.938 93.2892 237.844 92.5738 238.939 91.9398Z"
+            fill="#EDEDED" stroke="#EDEDED" stroke-width="9" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M371.052 42.7008L348.149 29.3926C346.858 28.6636 345.536 28.3375 344.164 28.4326C342.801 28.4915 341.578 28.8538 340.532 29.4379C339.486 30.0401 338.925 30.7284 338.744 31.4982C338.721 31.5978 338.708 31.6974 338.708 31.7925L338.735 41.7454C338.735 41.6457 338.748 41.5507 338.771 41.451C338.952 40.6813 339.514 39.9975 340.56 39.3907C341.606 38.8066 342.824 38.4444 344.191 38.3855C345.563 38.2904 346.885 38.6164 348.176 39.3455L371.079 52.6537L371.052 42.7008Z"
+            fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M377.862 41.0435L377.89 50.9963C377.89 51.585 377.5 52.1782 376.721 52.6265C375.114 53.5547 372.619 53.5457 371.079 52.6536L371.052 42.7008C372.587 43.5928 375.087 43.6019 376.694 42.6736C377.473 42.2253 377.862 41.6367 377.862 41.0435Z"
+            fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M364.568 48.7051C364.568 49.2938 364.183 49.8825 363.4 50.3353C361.846 51.2318 359.351 51.2318 357.812 50.3353C355.226 48.8319 351.785 46.8214 351.749 46.7988L334.759 36.9773C333.274 36.126 332.21 35.2067 331.653 34.2423C331.214 33.4996 330.974 32.7661 330.969 32.037L330.996 41.9899C330.996 42.7189 331.241 43.4525 331.68 44.1951C332.237 45.1596 333.306 46.0788 334.786 46.9301L351.776 56.7562C351.812 56.7788 355.253 58.7893 357.839 60.2926C359.379 61.1892 361.874 61.1892 363.427 60.2926C364.206 59.8444 364.595 59.2512 364.595 58.6625L364.568 48.7051Z"
+            fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M335.158 26.4901C335.208 26.4629 335.253 26.4357 335.303 26.4086C336.462 25.752 337.798 25.1996 339.319 24.783C340.85 24.3664 342.416 24.1219 344.083 24.0222C345.726 23.9453 347.42 24.0675 349.113 24.3981C350.802 24.7332 352.351 25.3218 353.805 26.1324L376.708 39.4406C378.252 40.3371 378.238 41.7861 376.694 42.6782C375.087 43.6064 372.592 43.5974 371.052 42.7053L348.149 29.3971C346.858 28.6681 345.536 28.3421 344.164 28.4372C342.801 28.496 341.579 28.8583 340.533 29.4424C339.487 30.0447 338.925 30.7329 338.744 31.5027C338.558 32.2816 339.12 33.0468 340.392 33.7759L363.413 47.1067C364.948 47.9987 364.948 49.4478 363.395 50.3443C361.842 51.2409 359.347 51.2409 357.807 50.3443C355.222 48.841 351.781 46.8305 351.744 46.8078L334.755 36.9818C333.269 36.1305 332.205 35.2113 331.648 34.2468C331.078 33.2823 330.842 32.3314 331.033 31.385C331.182 30.4567 331.635 29.5647 332.414 28.6817C333.161 27.8395 334.062 27.124 335.158 26.4901Z"
+            fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M344.21 57.7976L315.809 41.2926C314.953 40.7945 314.523 40.1424 314.523 39.4904L314.55 49.4432C314.55 50.0953 314.98 50.7473 315.836 51.2454L344.237 67.7505L344.21 57.7976Z"
+            fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M351.781 55.9728L351.808 65.9257C351.808 66.5868 351.373 67.2479 350.499 67.7505C348.76 68.7512 345.957 68.7512 344.232 67.7505L344.205 57.7976C345.93 58.7984 348.733 58.7984 350.472 57.7976C351.35 57.295 351.785 56.6339 351.781 55.9728Z"
+            fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M315.832 37.6655C317.57 36.6648 320.369 36.6648 322.094 37.6655L350.495 54.1706C352.22 55.1713 352.215 56.7969 350.476 57.7976C348.738 58.7983 345.935 58.7983 344.209 57.7976L315.809 41.2926C314.084 40.2918 314.093 38.6662 315.832 37.6655Z"
+            fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M307.319 52.8574L302.881 50.2809C301.668 49.5745 301.056 48.6462 301.056 47.7225L301.083 57.6753C301.088 58.6036 301.695 59.5273 302.908 60.2337L307.346 62.8102L307.319 52.8574Z"
+            fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M313.64 47.6772C313.644 48.601 313.042 49.5247 311.842 50.2356L307.319 52.8529L307.346 62.8057L311.869 60.1885C313.069 59.473 313.667 58.5493 313.667 57.6301L313.64 47.6772Z"
+            fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M302.913 45.1233C305.376 43.7015 309.365 43.7015 311.815 45.1233C314.242 46.5361 314.247 48.8092 311.847 50.2356L307.323 52.8528L302.885 50.2763C300.436 48.8545 300.449 46.5451 302.913 45.1233Z"
+            fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M301.323 55.6603L301.351 65.6132C301.351 66.0841 301.047 66.5596 300.404 66.9309C299.403 67.5105 297.927 67.6327 296.678 67.2977C294.314 66.6637 292.195 66.632 290.406 67.6644C289.423 68.2305 288.975 68.9052 288.98 69.5753L288.953 59.6225C288.953 58.9523 289.401 58.2776 290.379 57.7116C292.167 56.6792 294.287 56.7109 296.65 57.3448C297.9 57.6799 299.376 57.5576 300.377 56.978C301.02 56.6067 301.323 56.1313 301.323 55.6603Z"
+            fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M317.765 70.3768C317.765 69.6568 317.177 68.9414 316.067 68.2939C314.138 67.1709 311.852 66.7996 308.279 66.9671L297.484 67.4426C293.141 67.6463 289.03 67.3701 285.054 65.0608C282.514 63.5846 281.3 61.9635 281.296 60.3379L281.323 70.2908C281.327 71.9164 282.545 73.5375 285.081 75.0136C289.057 77.323 293.168 77.5992 297.511 77.3954L308.306 76.92C311.883 76.7524 314.165 77.1237 316.094 78.2467C317.208 78.8942 317.792 79.6097 317.792 80.3297L317.765 70.3768Z"
+            fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M324.929 69.7655L324.956 79.7183C324.96 81.6518 323.29 83.5808 320.283 85.3196C316.312 87.6109 311.444 88.1769 306.762 87.2305C305.123 86.8954 304.19 86.026 304.185 85.1385L304.158 75.1857C304.163 76.0732 305.096 76.9471 306.735 77.2777C311.417 78.224 316.285 77.6625 320.256 75.3668C323.267 73.6234 324.933 71.699 324.929 69.7655Z"
+            fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M285.511 55.1623C289.754 52.7125 294.921 52.6356 299.526 53.9849C301.5 54.56 301.944 56.0769 300.377 56.9826C299.376 57.5622 297.9 57.6844 296.651 57.3493C294.287 56.7154 292.168 56.6837 290.379 57.7161C288.323 58.9025 288.609 60.5689 290.474 61.6556C291.647 62.3348 293.223 62.7107 295.573 62.6427L307.088 62.3711C311.734 62.2624 316.724 62.3665 321.021 64.8932C326.817 68.2622 325.852 72.1383 320.26 75.3668C316.289 77.6581 311.421 78.2241 306.739 77.2777C304.081 76.7388 303.28 74.7872 305.286 73.6325L305.431 73.551C306.526 72.9171 308.143 72.7541 309.587 73.0756C312.182 73.6507 314.31 73.4469 316.171 72.3737C318.408 71.0832 318.241 69.5572 316.076 68.2984C314.147 67.1754 311.861 66.8041 308.288 66.9716L297.493 67.4471C293.15 67.6509 289.039 67.3747 285.063 65.0653C279.72 61.959 280.218 58.2188 285.511 55.1623Z"
+            fill="black" stroke="black" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M260.864 67.2026L260.892 77.1554C260.892 76.6166 260.815 76.1955 260.715 76.0053C260.611 75.8015 260.561 75.5977 260.561 75.3985L260.534 65.4456C260.534 65.6449 260.584 65.8487 260.688 66.0524C260.792 66.2426 260.864 66.6637 260.864 67.2026Z"
+            fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M276.899 73.56C276.899 72.8808 276.324 72.1744 275.237 71.5405L275.151 71.4907C273.924 70.7798 272.529 70.4447 271.211 70.5398C269.808 70.6801 268.653 70.9654 267.58 71.5858C266.502 72.2061 265.936 72.9216 265.764 73.6868C265.746 73.7774 265.732 73.868 265.732 73.954L265.759 83.9068C265.759 83.8163 265.769 83.7257 265.791 83.6397C265.959 82.8744 266.529 82.1635 267.607 81.5386C268.68 80.9183 269.835 80.6375 271.239 80.4926C272.556 80.3975 273.951 80.7326 275.178 81.4435L275.264 81.4933C276.351 82.1273 276.926 82.8291 276.926 83.5129L276.899 73.56Z"
+            fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M284.592 73.148C284.592 73.3925 284.569 73.637 284.524 73.8816C284.352 74.8279 283.772 75.729 283.111 76.5849C282.418 77.486 281.44 78.3101 280.227 79.012L276.419 81.2126L276.446 91.1655L280.254 88.9648C281.468 88.2629 282.441 87.4388 283.138 86.5377C283.8 85.6819 284.375 84.7808 284.551 83.8344C284.597 83.5899 284.619 83.3454 284.619 83.1009L284.592 73.148Z"
+            fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M294.092 83.6035L294.119 93.5563C294.119 93.176 293.965 92.7866 293.626 92.3835C293.381 92.0983 293.268 91.7949 293.268 91.487L293.241 81.5341C293.241 81.8375 293.358 82.1454 293.598 82.4307C293.938 82.8292 294.092 83.2231 294.092 83.6035Z"
+            fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M301.378 82.8564C301.378 83.1145 301.355 83.3726 301.31 83.6443C301.133 84.5952 300.644 85.4555 299.897 86.3612C299.232 87.2215 298.244 87.9822 297.09 88.6479C295.989 89.2818 294.866 89.7799 293.549 90.1829L293.395 90.2146C288.726 91.7451 282.636 91.3285 278.674 89.0237L261.797 79.1207C260.403 78.3101 259.339 77.409 258.768 76.4083C258.347 75.6566 258.152 74.9412 258.148 74.2257L258.175 84.1786C258.175 84.8895 258.37 85.6095 258.795 86.3612C259.366 87.3619 260.43 88.263 261.825 89.0735L278.701 98.9766C282.663 101.277 288.753 101.698 293.422 100.167L293.576 100.136C294.894 99.7328 296.017 99.2347 297.117 98.6007C298.272 97.9351 299.259 97.1698 299.924 96.314C300.671 95.4084 301.161 94.5526 301.337 93.5971C301.382 93.3254 301.405 93.0673 301.405 92.8092L301.378 82.8564Z"
+            fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M280.779 68.1625C282.337 69.0682 283.406 69.9693 283.967 70.9745C284.538 71.9752 284.701 72.9216 284.524 73.877C284.352 74.8234 283.772 75.7245 283.111 76.5803C282.418 77.4814 281.44 78.3056 280.227 79.0074L276.419 81.2081L284.289 85.7815C284.841 86.103 285.316 86.2841 285.824 86.4336C286.086 86.5106 286.349 86.5785 286.621 86.6283C288.522 86.986 290.696 86.737 292.217 85.8585C293.884 84.8985 294.676 83.7167 293.594 82.4307C292.887 81.6021 293.259 80.6013 294.395 79.9448C296.275 78.8625 299.517 79.1433 300.572 80.5606C300.671 80.6828 300.762 80.8187 300.83 80.95C301.382 81.919 301.455 82.725 301.305 83.6488C301.129 84.5997 300.64 85.46 299.893 86.3657C299.227 87.226 298.24 87.9867 297.085 88.6524C295.985 89.2863 294.862 89.7844 293.544 90.1874L293.39 90.2191C288.722 91.7496 282.631 91.333 278.669 89.0282L261.793 79.1252C260.398 78.3146 259.334 77.4135 258.763 76.4128C258.197 75.4076 258.039 74.4566 258.206 73.5057C258.388 72.5548 258.872 71.6945 259.619 70.7888C259.705 70.6802 259.814 70.5715 259.909 70.4628C261.041 68.8961 260.955 66.5732 260.683 66.0524C260.285 65.2736 260.683 64.463 261.616 63.9287C262.028 63.6887 262.544 63.5076 263.138 63.4035C265.076 63.0638 267.109 63.6842 267.702 64.8072C267.919 65.2283 268.082 65.7943 268.155 66.4418C269.106 66.2516 270.075 66.1294 271.08 66.0751C272.733 65.98 274.367 66.0751 276.093 66.4056C277.822 66.7362 279.38 67.352 280.779 68.1625ZM275.237 71.5405L275.151 71.4907C273.924 70.7798 272.529 70.4447 271.211 70.5398C269.808 70.6802 268.653 70.9654 267.58 71.5858C266.502 72.2062 265.936 72.9216 265.764 73.6869C265.592 74.4476 266.167 75.2581 267.394 75.9736L271.166 78.1652L275.042 75.9283C276.115 75.3079 276.695 74.6015 276.867 73.8363C277.039 73.0665 276.464 72.256 275.237 71.5405Z"
+            fill="black" stroke="black" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M256.382 81.4843C256.382 82.0458 256.024 82.6118 255.259 83.0555L254.892 83.2593C253.819 83.8616 252.238 83.9702 250.866 83.6352C250.205 83.4767 249.522 83.4223 248.842 83.4676C247.475 83.5265 246.257 83.8842 245.211 84.4683C244.165 85.0706 243.608 85.7588 243.422 86.5286C243.4 86.6283 243.386 86.7233 243.386 86.823L243.413 96.7758C243.413 96.6762 243.427 96.5811 243.449 96.4815C243.635 95.7117 244.192 95.028 245.238 94.4212C246.284 93.8371 247.498 93.4793 248.87 93.4205C249.549 93.3752 250.233 93.4295 250.894 93.588C252.27 93.9231 253.846 93.8144 254.919 93.2122L255.286 93.0084C256.051 92.5692 256.409 91.9986 256.409 91.4371L256.382 81.4843Z"
+            fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M235.693 96.9615L235.665 87.0086C235.665 87.0946 235.67 87.1807 235.674 87.2667L235.702 97.2196C235.697 97.1335 235.693 97.0475 235.693 96.9615Z"
+            fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M239.917 92.2885C239.134 91.9625 238.269 91.7587 237.318 91.6998C236.639 91.6455 235.955 91.6862 235.285 91.8357C233.886 92.1391 232.319 92.0032 231.287 91.3829L230.97 91.1927C230.254 90.758 229.919 90.2146 229.915 89.6758L229.942 99.6286C229.942 100.167 230.282 100.715 230.997 101.146L231.314 101.336C232.346 101.956 233.913 102.092 235.312 101.789C235.983 101.639 236.666 101.594 237.345 101.653C238.296 101.716 239.166 101.92 239.945 102.241L239.917 92.2885Z"
+            fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M269.255 103.745C269.255 104.333 268.87 104.922 268.091 105.37C266.534 106.267 264.043 106.267 262.504 105.37C259.913 103.867 256.477 101.856 256.44 101.834L239.922 92.2839L239.949 102.237L256.468 111.787C256.504 111.809 259.945 113.815 262.531 115.323C264.07 116.22 266.561 116.22 268.118 115.323C268.897 114.875 269.287 114.282 269.282 113.698L269.255 103.745Z"
+            fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M239.845 81.5251C239.895 81.4979 239.94 81.4707 239.99 81.4435C241.149 80.787 242.489 80.2391 244.006 79.8179C245.537 79.4014 247.104 79.1568 248.77 79.0572C250.409 78.9802 252.107 79.1025 253.801 79.4331C253.855 79.4466 253.918 79.4602 253.977 79.4693C256.545 80.0127 257.188 81.9462 255.259 83.0601L254.892 83.2639C253.819 83.8661 252.238 83.9748 250.866 83.6397C250.205 83.4812 249.522 83.4269 248.842 83.4722C247.475 83.531 246.257 83.8887 245.211 84.4729C244.165 85.0751 243.608 85.7634 243.422 86.5332C243.237 87.312 243.803 88.0818 245.07 88.8063L268.091 102.137C269.631 103.034 269.631 104.483 268.078 105.379C266.52 106.276 264.03 106.276 262.49 105.379C259.9 103.876 256.463 101.865 256.427 101.843L239.908 92.293C239.125 91.9669 238.26 91.7632 237.309 91.7043C236.63 91.65 235.946 91.6907 235.276 91.8402C233.877 92.1435 232.31 92.0077 231.278 91.3873L230.961 91.1972C229.476 90.3006 229.62 88.915 231.006 88.1135C231.391 87.8916 231.875 87.715 232.441 87.6018C232.505 87.5928 232.568 87.5837 232.614 87.5747C233.641 87.3981 234.66 87.303 235.665 87.2713C235.647 86.986 235.652 86.7007 235.715 86.42C235.865 85.4962 236.318 84.5997 237.087 83.7167C237.844 82.8744 238.749 82.159 239.845 81.5251Z"
+            fill="black" stroke="black" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M366.494 -12.5012C368.626 -11.2718 368.638 -9.27772 366.52 -8.04456L310.724 24.3773C308.607 25.6067 305.166 25.6067 303.033 24.3773L266.96 3.55236C264.828 2.32295 264.816 0.328903 266.934 -0.904251L322.73 -33.3299C324.847 -34.5593 328.288 -34.5593 330.421 -33.3299L366.494 -12.5012Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" />
+        <path
+            d="M361.625 -12.5872C363.581 -11.459 363.589 -9.62989 361.647 -8.50168L310.469 21.2403C308.528 22.3685 305.372 22.3685 303.415 21.2403L270.33 2.13946C268.373 1.01125 268.366 -0.817881 270.307 -1.94609L321.485 -31.688C323.427 -32.8162 326.583 -32.8162 328.539 -31.688L361.625 -12.5872Z"
+            fill="#EDEDED" />
+        <path
+            d="M270.041 -0.690557C270.053 -0.679312 270.068 -0.668061 270.083 -0.660565C270.094 -0.64932 270.109 -0.641829 270.12 -0.630584C270.135 -0.619339 270.15 -0.611848 270.161 -0.600604C270.176 -0.593107 270.188 -0.58186 270.203 -0.574364C270.218 -0.563119 270.233 -0.555616 270.247 -0.544372C270.259 -0.536875 270.266 -0.533132 270.274 -0.525635C270.285 -0.518139 270.292 -0.514395 270.304 -0.506899L270.292 -4.00771C270.274 -4.01896 270.251 -4.03019 270.232 -4.04519C270.217 -4.05643 270.203 -4.06393 270.188 -4.07518C270.173 -4.08267 270.161 -4.09392 270.146 -4.10142C270.131 -4.11266 270.116 -4.12015 270.101 -4.1314C270.09 -4.13889 270.075 -4.15015 270.064 -4.16139C270.049 -4.17264 270.038 -4.18387 270.023 -4.19137C270.011 -4.20262 270 -4.21011 269.989 -4.22135C269.978 -4.2326 269.963 -4.24385 269.951 -4.2551C269.94 -4.26259 269.933 -4.27383 269.925 -4.28132C269.906 -4.30007 269.888 -4.3188 269.869 -4.33754C269.861 -4.34504 269.858 -4.3488 269.85 -4.35629C269.828 -4.38253 269.805 -4.40876 269.783 -4.435C269.775 -4.4425 269.771 -4.44999 269.768 -4.45749C269.756 -4.47248 269.741 -4.49123 269.73 -4.50622C269.723 -4.51371 269.719 -4.52496 269.711 -4.53246C269.7 -4.54745 269.693 -4.56244 269.685 -4.57743C269.678 -4.58868 269.674 -4.59617 269.667 -4.60742C269.659 -4.61866 269.651 -4.63366 269.648 -4.6449C269.644 -4.65614 269.637 -4.66739 269.633 -4.67863C269.625 -4.68988 269.622 -4.70487 269.618 -4.71612C269.614 -4.72736 269.61 -4.7386 269.607 -4.74985C269.603 -4.76109 269.599 -4.77609 269.595 -4.78733C269.592 -4.79858 269.588 -4.80982 269.584 -4.82107C269.58 -4.83231 269.577 -4.84731 269.577 -4.85855C269.573 -4.86979 269.573 -4.88104 269.569 -4.89228C269.565 -4.90353 269.565 -4.91852 269.562 -4.92977C269.562 -4.94101 269.558 -4.95225 269.558 -4.9635C269.558 -4.97474 269.554 -4.98974 269.554 -5.00098C269.554 -5.01598 269.55 -5.03097 269.55 -5.04596L269.562 -1.54515C269.562 -1.53765 269.562 -1.53015 269.562 -1.52266C269.562 -1.51516 269.562 -1.50766 269.562 -1.50017C269.562 -1.48892 269.562 -1.47393 269.565 -1.46268C269.565 -1.45144 269.569 -1.4402 269.569 -1.42895C269.569 -1.41771 269.573 -1.40271 269.577 -1.39147C269.577 -1.38772 269.577 -1.38397 269.58 -1.37647C269.58 -1.36898 269.584 -1.36148 269.584 -1.35774C269.588 -1.34649 269.592 -1.3315 269.592 -1.32025C269.595 -1.30901 269.599 -1.29776 269.603 -1.28652C269.607 -1.27527 269.61 -1.26028 269.614 -1.24903C269.618 -1.24529 269.618 -1.23779 269.618 -1.23404C269.622 -1.22654 269.622 -1.2228 269.625 -1.2153C269.629 -1.20406 269.637 -1.18906 269.64 -1.17782C269.644 -1.16657 269.652 -1.15533 269.655 -1.14409C269.663 -1.13284 269.667 -1.11785 269.674 -1.1066C269.678 -1.0991 269.682 -1.09536 269.685 -1.08786C269.689 -1.08412 269.689 -1.08037 269.693 -1.07662C269.7 -1.06163 269.711 -1.04664 269.719 -1.03164C269.726 -1.02415 269.73 -1.0129 269.738 -1.0054C269.749 -0.990411 269.76 -0.971668 269.775 -0.956676C269.779 -0.949179 269.783 -0.945436 269.79 -0.937939L269.794 -0.934187C269.813 -0.90795 269.835 -0.881716 269.861 -0.855478C269.869 -0.847982 269.873 -0.844227 269.88 -0.83673C269.899 -0.817989 269.918 -0.799251 269.936 -0.78051C269.94 -0.776762 269.944 -0.773014 269.948 -0.769266C269.951 -0.765518 269.959 -0.761766 269.963 -0.75427C269.974 -0.743025 269.985 -0.731782 270 -0.720537C270.019 -0.709293 270.03 -0.698053 270.041 -0.690557Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path d="M270.3 -4.00775L270.307 -0.506937L305.226 19.7858L305.218 16.285L270.3 -4.00775Z" fill="#706F6F"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path d="M308.82 16.2849L308.828 19.7858L362.404 -11.1481L362.393 -14.6489L308.82 16.2849Z" fill="#706F6F"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M308.314 20.0143C308.359 19.9993 308.404 19.9806 308.449 19.9656C308.453 19.9656 308.457 19.9618 308.46 19.9618C308.464 19.9581 308.472 19.9581 308.475 19.9544C308.532 19.9319 308.588 19.9056 308.644 19.8794C308.648 19.8756 308.655 19.8756 308.659 19.8719C308.715 19.8457 308.771 19.8157 308.828 19.7819L308.816 16.2811C308.764 16.3111 308.708 16.3411 308.648 16.3711C308.644 16.3748 308.637 16.3748 308.633 16.3786C308.577 16.4048 308.52 16.4273 308.464 16.4535C308.457 16.4573 308.445 16.461 308.438 16.4648C308.393 16.4835 308.348 16.4985 308.303 16.5135C308.295 16.5172 308.288 16.5173 308.28 16.521C308.239 16.536 308.202 16.5472 308.16 16.5585C308.145 16.5622 308.131 16.566 308.116 16.5697C308.089 16.5772 308.063 16.5847 308.037 16.5885C308.022 16.5922 308.007 16.596 307.988 16.5997C307.958 16.6072 307.932 16.6147 307.902 16.6184C307.887 16.6222 307.876 16.626 307.861 16.626C307.834 16.6297 307.808 16.6372 307.782 16.6409C307.767 16.6447 307.752 16.6447 307.737 16.6484C307.703 16.6559 307.67 16.6597 307.632 16.6634C307.625 16.6634 307.621 16.6672 307.613 16.6672C307.572 16.6747 307.531 16.6784 307.493 16.6822C307.482 16.6822 307.475 16.6859 307.463 16.6859C307.433 16.6897 307.403 16.6934 307.37 16.6934C307.355 16.6934 307.34 16.6972 307.325 16.6972C307.298 16.7009 307.272 16.7009 307.246 16.7009C307.231 16.7009 307.212 16.7009 307.197 16.7047C307.171 16.7047 307.149 16.7084 307.122 16.7084C307.107 16.7084 307.092 16.7084 307.074 16.7084C307.047 16.7084 307.021 16.7084 306.995 16.7084C306.976 16.7084 306.961 16.7084 306.942 16.7084C306.916 16.7084 306.894 16.7084 306.867 16.7084C306.852 16.7084 306.834 16.7084 306.819 16.7047C306.789 16.7047 306.762 16.7009 306.732 16.7009C306.714 16.7009 306.699 16.6972 306.68 16.6972C306.654 16.6934 306.624 16.6934 306.598 16.6897C306.583 16.6897 306.564 16.6859 306.549 16.6859C306.508 16.6822 306.463 16.6747 306.421 16.6709C306.414 16.6709 306.406 16.6709 306.399 16.6672C306.35 16.6597 306.301 16.6522 306.256 16.6447C306.238 16.6409 306.223 16.6372 306.204 16.6334C306.181 16.6297 306.159 16.6259 306.137 16.6222C306.118 16.6185 306.099 16.6147 306.084 16.611C306.062 16.6072 306.039 16.5997 306.02 16.596C306.002 16.5922 305.983 16.5885 305.968 16.581C305.945 16.5772 305.927 16.5697 305.904 16.5622C305.885 16.5585 305.87 16.551 305.852 16.5472C305.829 16.5397 305.81 16.536 305.788 16.5285C305.773 16.5247 305.758 16.5172 305.743 16.5135C305.705 16.5023 305.668 16.4873 305.634 16.476C305.627 16.4723 305.619 16.4723 305.612 16.4685C305.571 16.4535 305.526 16.4348 305.484 16.4161C305.473 16.4123 305.462 16.4048 305.451 16.4011C305.417 16.3861 305.387 16.3711 305.357 16.3561C305.346 16.3486 305.334 16.3448 305.323 16.3373C305.282 16.3186 305.244 16.2961 305.207 16.2736L305.218 19.7744C305.256 19.7969 305.297 19.8157 305.334 19.8382C305.346 19.8457 305.357 19.8494 305.368 19.8569C305.398 19.8719 305.432 19.8869 305.462 19.9019C305.473 19.9056 305.484 19.9131 305.496 19.9169C305.537 19.9356 305.578 19.9506 305.623 19.9693C305.63 19.9731 305.638 19.9731 305.645 19.9768C305.683 19.9918 305.72 20.0031 305.758 20.0143C305.765 20.0181 305.769 20.0181 305.777 20.0218C305.784 20.0256 305.795 20.0256 305.803 20.0293C305.822 20.0368 305.844 20.0406 305.867 20.0481C305.885 20.0518 305.9 20.0593 305.919 20.063C305.942 20.0705 305.96 20.0743 305.983 20.0818C306.002 20.0855 306.017 20.0893 306.035 20.0968C306.058 20.1005 306.08 20.108 306.099 20.1118C306.118 20.1155 306.136 20.1193 306.151 20.123C306.174 20.1268 306.196 20.1305 306.219 20.138C306.23 20.1418 306.245 20.1418 306.256 20.1455C306.26 20.1455 306.264 20.1455 306.271 20.1493C306.32 20.1568 306.369 20.1642 306.414 20.1717C306.421 20.1717 306.429 20.1717 306.433 20.1755C306.474 20.183 306.519 20.1867 306.56 20.1905C306.568 20.1905 306.575 20.1905 306.579 20.1942C306.59 20.1942 306.597 20.1942 306.609 20.198C306.635 20.2017 306.665 20.2017 306.691 20.2055C306.71 20.2055 306.725 20.2092 306.744 20.2092C306.774 20.2092 306.8 20.213 306.83 20.213C306.841 20.213 306.852 20.213 306.864 20.213C306.867 20.213 306.871 20.213 306.879 20.213C306.905 20.213 306.927 20.213 306.954 20.213C306.972 20.213 306.987 20.213 307.006 20.213C307.032 20.213 307.059 20.213 307.085 20.213C307.1 20.213 307.111 20.213 307.126 20.213C307.13 20.213 307.13 20.213 307.133 20.213C307.16 20.213 307.182 20.213 307.208 20.2092C307.223 20.2092 307.242 20.2092 307.257 20.2055C307.283 20.2055 307.31 20.2017 307.336 20.2017C307.351 20.2017 307.362 20.2017 307.377 20.198C307.377 20.198 307.377 20.198 307.381 20.198C307.411 20.1942 307.445 20.1905 307.475 20.1905C307.486 20.1905 307.493 20.1905 307.505 20.1867C307.546 20.183 307.587 20.1755 307.625 20.1717C307.632 20.1717 307.636 20.168 307.643 20.168C307.677 20.1642 307.714 20.1568 307.748 20.153C307.763 20.1493 307.774 20.1493 307.789 20.1455C307.816 20.1418 307.842 20.1343 307.868 20.1305C307.872 20.1305 307.876 20.1305 307.876 20.1305C307.887 20.1268 307.898 20.1268 307.906 20.123C307.936 20.1155 307.962 20.1118 307.992 20.1043C308.007 20.1005 308.022 20.0968 308.041 20.093C308.067 20.0855 308.093 20.078 308.119 20.0743C308.127 20.0705 308.134 20.0705 308.142 20.0668C308.149 20.063 308.157 20.063 308.16 20.0593C308.202 20.0481 308.243 20.0368 308.28 20.0218C308.299 20.0218 308.307 20.0181 308.314 20.0143Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M270.311 -6.09177C269.314 -5.51455 269.307 -4.58125 270.3 -4.00402L305.218 16.2887C306.211 16.8659 307.823 16.8659 308.82 16.2887L362.397 -14.6452C363.394 -15.2224 363.401 -16.1557 362.408 -16.7329L327.49 -37.0256C326.497 -37.6029 324.885 -37.6029 323.888 -37.0256L270.311 -6.09177Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M210.346 95.4364C211.323 95.9997 211.329 96.9135 210.358 97.4786L184.791 112.335C183.82 112.899 182.244 112.899 181.266 112.335L164.736 102.793C163.759 102.229 163.754 101.316 164.724 100.751L190.292 85.8919C191.262 85.3286 192.839 85.3286 193.816 85.8919L210.346 95.4364Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" />
+        <path
+            d="M208.115 95.3969C209.012 95.9139 209.015 96.7521 208.125 97.2691L184.674 110.898C183.784 111.415 182.338 111.415 181.441 110.898L166.28 102.145C165.384 101.628 165.38 100.79 166.27 100.273L189.722 86.6442C190.611 86.1273 192.058 86.1273 192.954 86.6442L208.115 95.3969Z"
+            fill="#EDEDED" />
+        <path
+            d="M208.818 95.5755L208.813 93.9713C208.813 94.1448 208.697 94.32 208.467 94.4522L208.472 96.0564C208.703 95.9242 208.818 95.749 208.818 95.5755Z"
+            fill="white" />
+        <path
+            d="M208.467 94.4523L208.472 96.0565C208.702 95.9242 208.818 95.7491 208.818 95.5756L208.812 93.9714C208.812 94.1466 208.697 94.32 208.467 94.4523Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M208.818 95.5755L208.813 93.9713C208.813 94.1448 208.697 94.32 208.467 94.4522L208.472 96.0564C208.703 95.9242 208.818 95.749 208.818 95.5755Z"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M166.148 100.848C166.153 100.854 166.16 100.859 166.167 100.862C166.172 100.867 166.179 100.871 166.184 100.876C166.191 100.881 166.198 100.885 166.203 100.89C166.21 100.893 166.215 100.898 166.222 100.902C166.229 100.907 166.236 100.91 166.243 100.915C166.248 100.919 166.251 100.921 166.255 100.924C166.26 100.927 166.263 100.929 166.268 100.933L166.263 99.3284C166.255 99.3232 166.244 99.3181 166.236 99.3112C166.229 99.3061 166.222 99.3026 166.215 99.2975C166.208 99.294 166.203 99.2889 166.196 99.2855C166.189 99.2803 166.183 99.2769 166.176 99.2717C166.171 99.2683 166.164 99.2631 166.159 99.258C166.152 99.2528 166.147 99.2477 166.14 99.2442C166.134 99.2391 166.129 99.2356 166.124 99.2305C166.119 99.2253 166.112 99.2202 166.107 99.215C166.102 99.2116 166.098 99.2064 166.095 99.203C166.086 99.1944 166.078 99.1858 166.069 99.1773C166.066 99.1738 166.064 99.1721 166.061 99.1687C166.05 99.1566 166.04 99.1446 166.03 99.1326C166.026 99.1292 166.025 99.1257 166.023 99.1223C166.018 99.1154 166.011 99.1068 166.006 99.1C166.002 99.0965 166.001 99.0914 165.997 99.0879C165.992 99.0811 165.989 99.0742 165.985 99.0673C165.982 99.0622 165.98 99.0587 165.976 99.0536C165.973 99.0484 165.97 99.0416 165.968 99.0364C165.966 99.0313 165.963 99.0261 165.961 99.021C165.958 99.0158 165.956 99.0089 165.954 99.0038C165.952 98.9986 165.951 98.9935 165.949 98.9883C165.947 98.9832 165.946 98.9763 165.944 98.9711C165.942 98.966 165.94 98.9608 165.939 98.9557C165.937 98.9505 165.935 98.9437 165.935 98.9385C165.934 98.9334 165.934 98.9282 165.932 98.9231C165.93 98.9179 165.93 98.911 165.928 98.9059C165.928 98.9007 165.927 98.8956 165.927 98.8904C165.927 98.8853 165.925 98.8784 165.925 98.8732C165.925 98.8664 165.923 98.8595 165.923 98.8526L165.928 100.457C165.928 100.46 165.928 100.464 165.928 100.467C165.928 100.471 165.928 100.474 165.928 100.477C165.928 100.483 165.928 100.489 165.93 100.495C165.93 100.5 165.932 100.505 165.932 100.51C165.932 100.515 165.934 100.522 165.935 100.527C165.935 100.529 165.935 100.531 165.937 100.534C165.937 100.538 165.939 100.541 165.939 100.543C165.94 100.548 165.942 100.555 165.942 100.56C165.944 100.565 165.946 100.57 165.947 100.575C165.949 100.58 165.951 100.587 165.952 100.593C165.954 100.594 165.954 100.598 165.954 100.599C165.956 100.603 165.956 100.605 165.958 100.608C165.959 100.613 165.963 100.62 165.964 100.625C165.966 100.63 165.97 100.635 165.971 100.641C165.975 100.646 165.976 100.653 165.98 100.658C165.982 100.661 165.983 100.663 165.985 100.666C165.987 100.668 165.987 100.67 165.988 100.672C165.992 100.678 165.997 100.685 166.001 100.692C166.004 100.696 166.006 100.701 166.009 100.704C166.014 100.711 166.019 100.72 166.026 100.726C166.028 100.73 166.03 100.732 166.033 100.735L166.035 100.737C166.043 100.749 166.054 100.761 166.066 100.773C166.069 100.776 166.071 100.778 166.074 100.781C166.083 100.79 166.092 100.799 166.1 100.807C166.102 100.809 166.104 100.811 166.105 100.812C166.107 100.814 166.11 100.816 166.112 100.819C166.117 100.824 166.122 100.83 166.129 100.835C166.138 100.84 166.143 100.845 166.148 100.848Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path d="M166.267 99.3284L166.27 100.933L182.271 110.231L182.268 108.627L166.267 99.3284Z" fill="#706F6F"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path d="M183.918 108.627L183.922 110.231L208.472 96.0564L208.467 94.4522L183.918 108.627Z" fill="#706F6F"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M183.686 110.336C183.707 110.329 183.727 110.321 183.748 110.314C183.75 110.314 183.751 110.312 183.753 110.312C183.755 110.31 183.758 110.31 183.76 110.309C183.786 110.298 183.812 110.286 183.837 110.274C183.839 110.273 183.842 110.273 183.844 110.271C183.87 110.259 183.896 110.245 183.921 110.23L183.916 108.625C183.892 108.639 183.867 108.653 183.839 108.667C183.837 108.668 183.834 108.668 183.832 108.67C183.806 108.682 183.781 108.692 183.755 108.704C183.751 108.706 183.746 108.708 183.743 108.71C183.722 108.718 183.702 108.725 183.681 108.732C183.678 108.734 183.674 108.734 183.671 108.735C183.652 108.742 183.635 108.747 183.616 108.753C183.609 108.754 183.602 108.756 183.595 108.758C183.583 108.761 183.571 108.765 183.559 108.766C183.552 108.768 183.545 108.77 183.537 108.771C183.523 108.775 183.511 108.778 183.497 108.78C183.49 108.782 183.485 108.783 183.478 108.783C183.466 108.785 183.454 108.789 183.442 108.79C183.435 108.792 183.429 108.792 183.422 108.794C183.406 108.797 183.391 108.799 183.374 108.801C183.37 108.801 183.368 108.802 183.365 108.802C183.346 108.806 183.327 108.808 183.31 108.809C183.305 108.809 183.301 108.811 183.296 108.811C183.283 108.813 183.269 108.814 183.253 108.814C183.246 108.814 183.24 108.816 183.233 108.816C183.221 108.818 183.209 108.818 183.197 108.818C183.19 108.818 183.181 108.818 183.174 108.82C183.162 108.82 183.152 108.821 183.14 108.821C183.133 108.821 183.126 108.821 183.118 108.821C183.106 108.821 183.094 108.821 183.082 108.821C183.073 108.821 183.066 108.821 183.058 108.821C183.046 108.821 183.035 108.821 183.023 108.821C183.016 108.821 183.008 108.821 183.001 108.82C182.987 108.82 182.975 108.818 182.961 108.818C182.953 108.818 182.946 108.816 182.937 108.816C182.925 108.814 182.912 108.814 182.9 108.813C182.893 108.813 182.884 108.811 182.877 108.811C182.858 108.809 182.838 108.806 182.819 108.804C182.815 108.804 182.812 108.804 182.809 108.802C182.786 108.799 182.764 108.796 182.743 108.792C182.735 108.79 182.728 108.789 182.719 108.787C182.709 108.785 182.699 108.783 182.688 108.782C182.68 108.78 182.671 108.778 182.664 108.777C182.654 108.775 182.644 108.771 182.635 108.77C182.626 108.768 182.618 108.766 182.611 108.763C182.601 108.761 182.592 108.758 182.582 108.754C182.573 108.753 182.566 108.749 182.558 108.747C182.547 108.744 182.539 108.742 182.529 108.739C182.522 108.737 182.515 108.734 182.508 108.732C182.491 108.727 182.474 108.72 182.458 108.715C182.455 108.713 182.451 108.713 182.448 108.711C182.429 108.704 182.408 108.696 182.389 108.687C182.384 108.686 182.379 108.682 182.374 108.68C182.359 108.674 182.345 108.667 182.331 108.66C182.326 108.656 182.321 108.655 182.316 108.651C182.297 108.643 182.28 108.632 182.262 108.622L182.267 110.226C182.285 110.237 182.304 110.245 182.321 110.255C182.326 110.259 182.331 110.261 182.336 110.264C182.35 110.271 182.365 110.278 182.379 110.285C182.384 110.286 182.389 110.29 182.395 110.292C182.413 110.3 182.432 110.307 182.453 110.316C182.456 110.317 182.46 110.317 182.463 110.319C182.48 110.326 182.498 110.331 182.515 110.336C182.518 110.338 182.52 110.338 182.523 110.34C182.527 110.341 182.532 110.341 182.535 110.343C182.544 110.346 182.554 110.348 182.565 110.352C182.573 110.353 182.58 110.357 182.589 110.358C182.599 110.362 182.608 110.364 182.618 110.367C182.626 110.369 182.633 110.371 182.642 110.374C182.652 110.376 182.663 110.379 182.671 110.381C182.68 110.383 182.688 110.384 182.695 110.386C182.705 110.388 182.716 110.389 182.726 110.393C182.731 110.395 182.738 110.395 182.743 110.396C182.745 110.396 182.747 110.396 182.75 110.398C182.772 110.401 182.795 110.405 182.815 110.408C182.819 110.408 182.822 110.408 182.824 110.41C182.843 110.413 182.863 110.415 182.882 110.417C182.886 110.417 182.889 110.417 182.891 110.419C182.896 110.419 182.9 110.419 182.905 110.42C182.917 110.422 182.93 110.422 182.942 110.424C182.951 110.424 182.958 110.425 182.967 110.425C182.98 110.425 182.992 110.427 183.006 110.427C183.011 110.427 183.016 110.427 183.021 110.427C183.023 110.427 183.025 110.427 183.028 110.427C183.04 110.427 183.051 110.427 183.063 110.427C183.071 110.427 183.078 110.427 183.087 110.427C183.099 110.427 183.111 110.427 183.123 110.427C183.13 110.427 183.135 110.427 183.142 110.427C183.143 110.427 183.143 110.427 183.145 110.427C183.157 110.427 183.167 110.427 183.18 110.425C183.186 110.425 183.195 110.425 183.202 110.424C183.214 110.424 183.226 110.422 183.238 110.422C183.245 110.422 183.25 110.422 183.257 110.42C183.257 110.42 183.257 110.42 183.259 110.42C183.272 110.419 183.288 110.417 183.301 110.417C183.307 110.417 183.31 110.417 183.315 110.415C183.334 110.413 183.353 110.41 183.37 110.408C183.374 110.408 183.375 110.407 183.379 110.407C183.394 110.405 183.411 110.401 183.427 110.4C183.434 110.398 183.439 110.398 183.446 110.396C183.458 110.395 183.47 110.391 183.482 110.389C183.484 110.389 183.485 110.389 183.485 110.389C183.49 110.388 183.496 110.388 183.499 110.386C183.513 110.383 183.525 110.381 183.538 110.377C183.545 110.376 183.552 110.374 183.561 110.372C183.573 110.369 183.585 110.365 183.597 110.364C183.6 110.362 183.604 110.362 183.607 110.36C183.611 110.358 183.614 110.358 183.616 110.357C183.635 110.352 183.654 110.346 183.671 110.34C183.679 110.34 183.683 110.338 183.686 110.336Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M166.272 98.3734C165.815 98.6379 165.812 99.0656 166.267 99.3301L182.267 108.629C182.723 108.893 183.461 108.893 183.918 108.629L208.469 94.4539C208.926 94.1894 208.929 93.7618 208.474 93.4972L192.473 84.1984C192.018 83.9339 191.28 83.9339 190.823 84.1984L166.272 98.3734Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M165.946 99.1481C165.953 99.1687 165.973 99.1824 165.994 99.179L187.906 96.7435C187.924 96.7418 187.939 96.7297 187.944 96.7126L192.207 84.0713C192.216 84.0438 192.199 84.0146 192.169 84.0112L192.109 84.0043C192.087 84.0026 192.068 84.0146 192.061 84.0353L187.81 96.6353C187.805 96.6525 187.79 96.6645 187.772 96.6662L165.985 99.0897C165.954 99.0914 165.935 99.1206 165.946 99.1481Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path d="M177 34L177 64" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"
+            stroke-dasharray="5 5" />
+        <rect x="0.433013" y="0.25" width="40.4196" height="71.6361" rx="4.5"
+            transform="matrix(0.866025 -0.5 2.20305e-08 1 157.8 -32.1695)" fill="white" stroke="#706F6F" />
+        <path
+            d="M166.106 -5.44747C166.833 -5.86835 167.427 -5.53009 167.431 -4.6962L167.443 -0.747016C167.447 0.0868716 166.853 1.10955 166.125 1.53043L162.593 3.57189C161.866 3.99276 161.272 3.65056 161.272 2.81667L161.26 -1.13248C161.256 -1.96637 161.85 -2.98908 162.574 -3.40996L166.106 -5.44747ZM167.164 -0.585756L167.152 -4.53491C167.152 -5.1918 166.68 -5.45927 166.106 -5.12887L162.574 -3.08741C161.999 -2.75701 161.535 -1.95065 161.539 -1.29377L161.551 2.65539C161.551 3.31227 162.023 3.57975 162.593 3.24934L166.125 1.20789C166.7 0.881413 167.164 0.0750608 167.164 -0.585756Z"
+            fill="#706F6F" />
+        <path
+            d="M166.106 -5.12889C166.68 -5.4593 167.148 -5.19576 167.152 -4.53494L167.164 -0.58578C167.164 0.0711036 166.7 0.877461 166.125 1.2118L162.593 3.25326C162.019 3.58367 161.551 3.31619 161.551 2.65931L161.539 -1.28986C161.539 -1.94674 162.003 -2.75309 162.574 -3.0835L166.106 -5.12889Z"
+            fill="white" />
+        <path
+            d="M166.106 5.59788C166.68 5.26747 167.148 5.53102 167.152 6.19183L167.164 10.141C167.164 10.7979 166.7 11.6042 166.126 11.9386L162.593 13.98C162.019 14.3104 161.551 14.043 161.551 13.3861L161.539 9.43692C161.539 8.7761 162.003 7.96974 162.574 7.63933L166.106 5.59788Z"
+            fill="white" />
+        <path
+            d="M166.106 5.2793C166.834 4.85842 167.428 5.19669 167.431 6.03451L167.443 9.98366C167.447 10.8215 166.853 11.8442 166.126 12.2651L162.593 14.3065C161.866 14.7274 161.272 14.3852 161.272 13.5513L161.26 9.60213C161.256 8.76431 161.85 7.74163 162.574 7.32468L166.106 5.2793ZM167.164 10.141L167.152 6.19185C167.152 5.53104 166.68 5.26356 166.106 5.5979L162.574 7.63935C161.999 7.96976 161.535 8.77612 161.539 9.43693L161.551 13.3861C161.551 14.043 162.023 14.3104 162.593 13.98L166.126 11.9386C166.7 11.6082 167.164 10.8018 167.164 10.141Z"
+            fill="#706F6F" />
+        <path
+            d="M178.575 1.13337C178.728 1.04683 178.854 1.11371 178.854 1.29465C178.854 1.47166 178.728 1.68405 178.575 1.77452L169.5 7.01386C169.347 7.10039 169.221 7.03354 169.221 6.85653C169.221 6.67953 169.347 6.46318 169.5 6.37664L178.575 1.13337Z"
+            fill="#706F6F" />
+        <path
+            d="M185.801 -2.95315C185.954 -3.03969 186.08 -2.96889 186.08 -2.79189C186.08 -2.61489 185.954 -2.39853 185.801 -2.312L179.936 1.07468C179.778 1.16515 179.656 1.09433 179.656 0.913396C179.656 0.736392 179.778 0.520064 179.936 0.433529L185.801 -2.95315Z"
+            fill="#706F6F" />
+        <path
+            d="M185.58 -0.915893C185.738 -1.00636 185.859 -0.935571 185.859 -0.754633C185.859 -0.577628 185.738 -0.365211 185.58 -0.274742L169.41 9.06323C169.253 9.1537 169.131 9.08288 169.131 8.90588C169.131 8.72888 169.253 8.51648 169.41 8.42601L185.58 -0.915893Z"
+            fill="#706F6F" />
+        <path
+            d="M166.106 16.7766C166.834 16.3557 167.428 16.6901 167.431 17.5279L167.443 21.4771C167.447 22.3149 166.853 23.3376 166.126 23.7584L162.593 25.7999C161.866 26.2208 161.272 25.8786 161.272 25.0447L161.26 21.0955C161.256 20.2577 161.85 19.2389 162.574 18.8181L166.106 16.7766ZM167.164 21.6383L167.152 17.6892C167.152 17.0323 166.68 16.7648 166.106 17.0952L162.574 19.1367C161.999 19.4671 161.535 20.2734 161.539 20.9303L161.551 24.8795C161.551 25.5403 162.023 25.8078 162.593 25.4774L166.126 23.4359C166.7 23.1055 167.164 22.2991 167.164 21.6383Z"
+            fill="#706F6F" />
+        <path
+            d="M166.106 17.0953C166.68 16.7648 167.148 17.0284 167.152 17.6892L167.164 21.6384C167.164 22.2992 166.7 23.1055 166.126 23.4359L162.593 25.4774C162.019 25.8078 161.551 25.5403 161.551 24.8795L161.539 20.9304C161.539 20.2735 162.003 19.4671 162.574 19.1367L166.106 17.0953Z"
+            fill="white" />
+        <path
+            d="M180.907 11.3681C181.061 11.2816 181.187 11.3485 181.187 11.5294C181.187 11.7064 181.061 11.9228 180.907 12.0093L169.316 18.704C169.162 18.7905 169.036 18.7197 169.036 18.5427C169.036 18.3657 169.162 18.1494 169.316 18.0629L180.907 11.3681Z"
+            fill="#706F6F" />
+        <path
+            d="M185.58 10.5776C185.738 10.4871 185.859 10.5619 185.859 10.7389C185.859 10.9159 185.738 11.1283 185.58 11.2187L169.41 20.5567C169.253 20.6472 169.131 20.5725 169.131 20.3955C169.131 20.2185 169.253 20.006 169.41 19.9156L185.58 10.5776Z"
+            fill="#706F6F" />
+        <path
+            d="M165.677 -3.2091C165.775 -3.2681 165.874 -3.27991 165.952 -3.23664C166.106 -3.1501 166.106 -2.86688 165.952 -2.60728L164.363 0.142195C164.265 0.311333 164.139 0.445059 164.001 0.523728C163.864 0.602396 163.734 0.618141 163.636 0.559139L163.046 0.220845C162.892 0.13431 162.892 -0.148889 163.046 -0.408496C163.12 -0.538299 163.219 -0.640561 163.321 -0.695629C163.419 -0.754631 163.518 -0.766434 163.596 -0.723166L164.005 -0.491107L165.41 -2.92591C165.48 -3.05178 165.579 -3.1501 165.677 -3.2091Z"
+            fill="#DA3635" />
+        <path
+            d="M165.677 7.91071C165.775 7.85171 165.874 7.8399 165.952 7.88317C166.106 7.96971 166.106 8.25291 165.952 8.51251L164.363 11.262C164.265 11.4311 164.139 11.5649 164.001 11.6435C163.864 11.7222 163.734 11.7379 163.636 11.6789L163.046 11.3407C162.892 11.2541 162.892 10.9709 163.046 10.7113C163.12 10.5815 163.219 10.4792 163.321 10.4242C163.419 10.3652 163.518 10.3534 163.596 10.3966L164.005 10.6287L165.41 8.1939C165.48 8.07197 165.579 7.96971 165.677 7.91071Z"
+            fill="#DA3635" />
+        <path
+            d="M165.677 18.944C165.775 18.885 165.874 18.8732 165.952 18.9164C166.106 19.003 166.106 19.2862 165.952 19.5458L164.363 22.2953C164.265 22.4644 164.139 22.5981 164.001 22.6768C163.864 22.7555 163.734 22.7712 163.636 22.7122L163.046 22.3739C162.892 22.2874 162.892 22.0042 163.046 21.7446C163.12 21.6148 163.219 21.5125 163.321 21.4574C163.419 21.3984 163.518 21.3866 163.596 21.4299L164.005 21.662L165.41 19.2272C165.48 19.1052 165.579 19.003 165.677 18.944Z"
+            fill="#DA3635" />
+        <path
+            d="M181.881 30.5112C184.078 26.7313 184.084 22.6356 181.894 21.3631C179.705 20.0906 176.149 22.1233 173.952 25.9032C171.755 29.683 171.749 33.7788 173.939 35.0512C176.128 36.3237 179.684 34.2911 181.881 30.5112Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" />
+        <path
+            d="M246.509 38.7914C246.123 39.0677 245.593 39.1662 245.113 39.151C244.257 39.1283 243.406 38.8369 242.755 38.3448C242.357 38.0458 241.937 37.8263 241.491 37.6106C241.071 37.4062 240.684 37.1072 240.264 36.8763C239.557 36.4902 238.834 36.0815 238.122 35.6878C237.808 35.5213 236.438 34.7605 236.858 34.329C237.267 34.5334 239.034 35.6159 239.575 35.9149C240.359 36.3615 241.105 36.8536 241.873 37.3229C242.21 37.5273 243.447 38.1896 243.762 38.2616C244.038 38.3221 244.882 38.5871 245.567 38.4167C245.843 38.3448 246.733 37.7544 246.892 37.5614C247.062 38.1064 246.918 38.5038 246.509 38.7914Z"
+            fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M246.858 37.6862C246.388 38.2767 245.378 38.6249 244.609 38.4432C244.189 38.3486 243.754 38.2994 243.334 38.1556C242.804 37.9739 242.335 37.6257 241.865 37.338C240.927 36.7627 239.988 36.195 239.038 35.6537C238.652 35.4494 238.33 35.1844 237.967 34.9573C237.713 34.8021 237.051 34.6091 236.934 34.3442C236.707 33.8748 238.315 33.2503 238.652 33.2011C239.398 33.1065 239.962 33.6477 240.552 33.9959C241.116 34.3328 241.729 34.5599 242.297 34.9233C242.861 35.2828 243.474 35.5591 244.053 35.9225C244.594 36.2593 245.064 36.7022 245.628 36.9936C245.855 37.1147 246.661 37.7165 246.877 37.584"
+            fill="white" />
+        <path
+            d="M246.858 37.6862C246.388 38.2767 245.378 38.6249 244.609 38.4432C244.189 38.3486 243.754 38.2994 243.334 38.1556C242.804 37.9739 242.335 37.6257 241.865 37.338C240.927 36.7627 239.988 36.195 239.038 35.6537C238.652 35.4494 238.33 35.1844 237.967 34.9573C237.713 34.8021 237.051 34.6091 236.934 34.3442C236.707 33.8748 238.315 33.2503 238.652 33.2011C239.398 33.1065 239.962 33.6477 240.552 33.9959C241.116 34.3328 241.729 34.5599 242.297 34.9233C242.861 35.2828 243.474 35.5591 244.053 35.9225C244.594 36.2593 245.064 36.7022 245.628 36.9936C245.855 37.1147 246.661 37.7165 246.877 37.584"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M246.858 37.6862C246.388 38.2767 245.378 38.6249 244.609 38.4432C244.189 38.3486 243.754 38.2994 243.334 38.1556C242.804 37.9739 242.335 37.6257 241.865 37.338C240.927 36.7627 239.988 36.195 239.038 35.6537C238.652 35.4494 238.33 35.1844 237.967 34.9573C237.713 34.8021 237.051 34.6091 236.934 34.3442C236.707 33.8748 238.315 33.2503 238.652 33.2011C239.398 33.1065 239.962 33.6477 240.552 33.9959C241.116 34.3328 241.729 34.5599 242.297 34.9233C242.861 35.2828 243.474 35.5591 244.053 35.9225C244.594 36.2593 245.064 36.7022 245.628 36.9936C245.855 37.1147 246.661 37.7165 246.877 37.584"
+            fill="white" />
+        <path
+            d="M246.858 37.6862C246.388 38.2767 245.378 38.6249 244.609 38.4432C244.189 38.3486 243.754 38.2994 243.334 38.1556C242.804 37.9739 242.335 37.6257 241.865 37.338C240.927 36.7627 239.988 36.195 239.038 35.6537C238.652 35.4494 238.33 35.1844 237.967 34.9573C237.713 34.8021 237.051 34.6091 236.934 34.3442C236.707 33.8748 238.315 33.2503 238.652 33.2011C239.398 33.1065 239.962 33.6477 240.552 33.9959C241.116 34.3328 241.729 34.5599 242.297 34.9233C242.861 35.2828 243.474 35.5591 244.053 35.9225C244.594 36.2593 245.064 36.7022 245.628 36.9936C245.855 37.1147 246.661 37.7165 246.877 37.584"
+            stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M238.043 36.9406C238.584 36.846 238.512 35.631 237.993 35.7862C237.596 35.8695 237.596 37.0239 238.043 36.9406Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M242.694 38.3222C242.176 38.1784 242.104 39.382 242.645 39.4766C243.092 39.5712 243.092 38.4055 242.694 38.3222Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M244.632 23.6631C244.439 23.7842 243.383 24.0946 243.092 23.7123C242.936 23.5079 243.406 22.9667 243.406 22.7245C243.406 22.4482 243.201 22.1832 243.224 21.9296C243.235 21.7025 243.319 21.7858 243.466 21.7025C243.504 21.6912 243.561 21.7517 243.622 21.7139C243.671 21.676 243.61 21.5928 243.633 21.5587C243.909 21.2105 244.522 20.7412 245.014 21.0175C245.518 21.2938 245.446 22.0772 245.136 22.4709C244.969 22.6753 244.776 22.8456 244.534 22.9402C244.352 23.0121 244.185 23.0121 244.246 23.2657"
+            fill="white" />
+        <path
+            d="M244.632 23.6631C244.439 23.7842 243.383 24.0946 243.092 23.7123C242.936 23.5079 243.406 22.9667 243.406 22.7245C243.406 22.4482 243.201 22.1832 243.224 21.9296C243.235 21.7025 243.319 21.7858 243.466 21.7025C243.504 21.6912 243.561 21.7517 243.622 21.7139C243.671 21.676 243.61 21.5928 243.633 21.5587C243.909 21.2105 244.522 20.7412 245.014 21.0175C245.518 21.2938 245.446 22.0772 245.136 22.4709C244.969 22.6753 244.776 22.8456 244.534 22.9402C244.352 23.0121 244.185 23.0121 244.246 23.2657"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M244.632 23.6631C244.439 23.7842 243.383 24.0946 243.092 23.7123C242.936 23.5079 243.406 22.9667 243.406 22.7245C243.406 22.4482 243.201 22.1832 243.224 21.9296C243.235 21.7025 243.319 21.7858 243.466 21.7025C243.504 21.6912 243.561 21.7517 243.622 21.7139C243.671 21.676 243.61 21.5928 243.633 21.5587C243.909 21.2105 244.522 20.7412 245.014 21.0175C245.518 21.2938 245.446 22.0772 245.136 22.4709C244.969 22.6753 244.776 22.8456 244.534 22.9402C244.352 23.0121 244.185 23.0121 244.246 23.2657"
+            fill="white" />
+        <path
+            d="M244.632 23.6631C244.439 23.7842 243.383 24.0946 243.092 23.7123C242.936 23.5079 243.406 22.9667 243.406 22.7245C243.406 22.4482 243.201 22.1832 243.224 21.9296C243.235 21.7025 243.319 21.7858 243.466 21.7025C243.504 21.6912 243.561 21.7517 243.622 21.7139C243.671 21.676 243.61 21.5928 243.633 21.5587C243.909 21.2105 244.522 20.7412 245.014 21.0175C245.518 21.2938 245.446 22.0772 245.136 22.4709C244.969 22.6753 244.776 22.8456 244.534 22.9402C244.352 23.0121 244.185 23.0121 244.246 23.2657"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M244.969 25.6011C244.837 25.4572 244.246 25.6238 244.212 25.7827C244.174 25.9266 244.776 27.4065 245.079 27.6714C245.438 27.9856 246.051 28.1634 246.487 28.3792C246.786 28.5344 247.138 28.6555 247.403 28.8599C247.618 29.0264 247.717 29.3065 247.933 29.473C248.099 29.6055 248.379 29.7001 248.497 29.4352C248.557 29.28 248.436 29.087 248.375 28.9431C248.232 28.5571 248.16 28.3073 247.796 28.1029C247.145 27.7433 246.415 27.5389 245.946 26.9371C245.703 26.623 245.03 25.9644 245.056 25.567"
+            fill="white" />
+        <path
+            d="M244.969 25.6011C244.837 25.4572 244.246 25.6238 244.212 25.7827C244.174 25.9266 244.776 27.4065 245.079 27.6714C245.438 27.9856 246.051 28.1634 246.487 28.3792C246.786 28.5344 247.138 28.6555 247.403 28.8599C247.618 29.0264 247.717 29.3065 247.933 29.473C248.099 29.6055 248.379 29.7001 248.497 29.4352C248.557 29.28 248.436 29.087 248.375 28.9431C248.232 28.5571 248.16 28.3073 247.796 28.1029C247.145 27.7433 246.415 27.5389 245.946 26.9371C245.703 26.623 245.03 25.9644 245.056 25.567"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M244.969 25.6011C244.837 25.4572 244.246 25.6238 244.212 25.7827C244.174 25.9266 244.776 27.4065 245.079 27.6714C245.438 27.9856 246.051 28.1634 246.487 28.3792C246.786 28.5344 247.138 28.6555 247.403 28.8599C247.618 29.0264 247.717 29.3065 247.933 29.473C248.099 29.6055 248.379 29.7001 248.497 29.4352C248.557 29.28 248.436 29.087 248.375 28.9431C248.232 28.5571 248.16 28.3073 247.796 28.1029C247.145 27.7433 246.415 27.5389 245.946 26.9371C245.703 26.623 245.03 25.9644 245.056 25.567"
+            fill="white" />
+        <path
+            d="M244.969 25.6011C244.837 25.4572 244.246 25.6238 244.212 25.7827C244.174 25.9266 244.776 27.4065 245.079 27.6714C245.438 27.9856 246.051 28.1634 246.487 28.3792C246.786 28.5344 247.138 28.6555 247.403 28.8599C247.618 29.0264 247.717 29.3065 247.933 29.473C248.099 29.6055 248.379 29.7001 248.497 29.4352C248.557 29.28 248.436 29.087 248.375 28.9431C248.232 28.5571 248.16 28.3073 247.796 28.1029C247.145 27.7433 246.415 27.5389 245.946 26.9371C245.703 26.623 245.03 25.9644 245.056 25.567"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M240.423 24.9387C240.881 25.0484 241.351 25.2982 241.086 25.8395C240.859 26.3088 240.533 26.6684 240.594 27.221C240.643 27.5692 240.798 27.9174 240.809 28.2656C240.821 28.6252 240.76 29.1551 240.654 29.5146C240.582 29.7796 240.427 30.0899 240.124 30.1505C239.871 30.1997 239.606 29.9953 239.606 29.719C239.617 29.3329 239.965 28.9847 239.931 28.5533C239.909 28.277 239.81 28.012 239.799 27.7471C239.788 27.4216 239.75 27.0961 239.727 26.7592C239.716 26.3618 239.822 26.1082 240.026 25.7751C240.147 25.5594 240.473 25.2339 240.473 24.9916"
+            fill="white" />
+        <path
+            d="M240.423 24.9387C240.881 25.0484 241.351 25.2982 241.086 25.8395C240.859 26.3088 240.533 26.6684 240.594 27.221C240.643 27.5692 240.798 27.9174 240.809 28.2656C240.821 28.6252 240.76 29.1551 240.654 29.5146C240.582 29.7796 240.427 30.0899 240.124 30.1505C239.871 30.1997 239.606 29.9953 239.606 29.719C239.617 29.3329 239.965 28.9847 239.931 28.5533C239.909 28.277 239.81 28.012 239.799 27.7471C239.788 27.4216 239.75 27.0961 239.727 26.7592C239.716 26.3618 239.822 26.1082 240.026 25.7751C240.147 25.5594 240.473 25.2339 240.473 24.9916"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M240.423 24.9387C240.881 25.0484 241.351 25.2982 241.086 25.8395C240.859 26.3088 240.533 26.6684 240.594 27.221C240.643 27.5692 240.798 27.9174 240.809 28.2656C240.821 28.6252 240.76 29.1551 240.654 29.5146C240.582 29.7796 240.427 30.0899 240.124 30.1505C239.871 30.1997 239.606 29.9953 239.606 29.719C239.617 29.3329 239.965 28.9847 239.931 28.5533C239.909 28.277 239.81 28.012 239.799 27.7471C239.788 27.4216 239.75 27.0961 239.727 26.7592C239.716 26.3618 239.822 26.1082 240.026 25.7751C240.147 25.5594 240.473 25.2339 240.473 24.9916"
+            fill="white" />
+        <path
+            d="M240.423 24.9387C240.881 25.0484 241.351 25.2982 241.086 25.8395C240.859 26.3088 240.533 26.6684 240.594 27.221C240.643 27.5692 240.798 27.9174 240.809 28.2656C240.821 28.6252 240.76 29.1551 240.654 29.5146C240.582 29.7796 240.427 30.0899 240.124 30.1505C239.871 30.1997 239.606 29.9953 239.606 29.719C239.617 29.3329 239.965 28.9847 239.931 28.5533C239.909 28.277 239.81 28.012 239.799 27.7471C239.788 27.4216 239.75 27.0961 239.727 26.7592C239.716 26.3618 239.822 26.1082 240.026 25.7751C240.147 25.5594 240.473 25.2339 240.473 24.9916"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M242.622 33.1634C243.092 33.2353 242.501 32.6448 242.407 32.5729C242.142 32.3685 241.975 32.1755 241.65 32.1755C241.362 32.1869 241.07 32.2474 240.771 32.2701C240.495 32.2815 240.23 32.2323 239.954 32.2815C239.75 32.3193 239.507 32.3648 239.435 32.5805C239.375 32.7849 239.507 33.0725 239.662 33.1331C239.829 33.1936 240.226 33.1217 240.419 33.1104C242.005 33.0385 239.602 32.9779 241.188 33.0498C241.563 33.0725 242.463 33.5078 242.656 33.099"
+            fill="white" />
+        <path
+            d="M242.622 33.1634C243.092 33.2353 242.501 32.6448 242.407 32.5729C242.142 32.3685 241.975 32.1755 241.65 32.1755C241.362 32.1869 241.07 32.2474 240.771 32.2701C240.495 32.2815 240.23 32.2323 239.954 32.2815C239.75 32.3193 239.507 32.3648 239.435 32.5805C239.375 32.7849 239.507 33.0725 239.662 33.1331C239.829 33.1936 240.226 33.1217 240.419 33.1104C242.005 33.0385 239.602 32.9779 241.188 33.0498C241.563 33.0725 242.463 33.5078 242.656 33.099"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M242.622 33.1634C243.092 33.2353 242.501 32.6448 242.407 32.5729C242.142 32.3685 241.975 32.1755 241.65 32.1755C241.362 32.1869 241.07 32.2474 240.771 32.2701C240.495 32.2815 240.23 32.2323 239.954 32.2815C239.75 32.3193 239.507 32.3648 239.435 32.5805C239.375 32.7849 239.507 33.0725 239.662 33.1331C239.829 33.1936 240.226 33.1217 240.419 33.1104C242.005 33.0385 239.602 32.9779 241.188 33.0498C241.563 33.0725 242.463 33.5078 242.656 33.099"
+            fill="white" />
+        <path
+            d="M242.622 33.1634C243.092 33.2353 242.501 32.6448 242.407 32.5729C242.142 32.3685 241.975 32.1755 241.65 32.1755C241.362 32.1869 241.07 32.2474 240.771 32.2701C240.495 32.2815 240.23 32.2323 239.954 32.2815C239.75 32.3193 239.507 32.3648 239.435 32.5805C239.375 32.7849 239.507 33.0725 239.662 33.1331C239.829 33.1936 240.226 33.1217 240.419 33.1104C242.005 33.0385 239.602 32.9779 241.188 33.0498C241.563 33.0725 242.463 33.5078 242.656 33.099"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M243.682 36.6265C243.406 36.7211 243.235 36.5545 243.02 36.5773C242.815 36.5886 242.838 36.7816 242.827 36.9974C242.815 37.5273 243.054 37.6332 243.463 37.8982C243.777 38.1026 244.015 38.3448 244.424 38.1745C245.264 37.8376 243.811 37.1299 243.739 36.7551"
+            fill="white" />
+        <path
+            d="M243.682 36.6265C243.406 36.7211 243.235 36.5545 243.02 36.5773C242.815 36.5886 242.838 36.7816 242.827 36.9974C242.815 37.5273 243.054 37.6332 243.463 37.8982C243.777 38.1026 244.015 38.3448 244.424 38.1745C245.264 37.8376 243.811 37.1299 243.739 36.7551"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M243.682 36.6265C243.406 36.7211 243.235 36.5545 243.02 36.5773C242.815 36.5886 242.838 36.7816 242.827 36.9974C242.815 37.5273 243.054 37.6332 243.463 37.8982C243.777 38.1026 244.015 38.3448 244.424 38.1745C245.264 37.8376 243.811 37.1299 243.739 36.7551"
+            fill="white" />
+        <path
+            d="M243.682 36.6265C243.406 36.7211 243.235 36.5545 243.02 36.5773C242.815 36.5886 242.838 36.7816 242.827 36.9974C242.815 37.5273 243.054 37.6332 243.463 37.8982C243.777 38.1026 244.015 38.3448 244.424 38.1745C245.264 37.8376 243.811 37.1299 243.739 36.7551"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M239.507 32.4555C239.363 32.7545 239.556 32.8756 239.591 33.1179C239.613 33.2995 239.326 33.4774 239.216 33.6212C239.083 33.7878 238.697 34.4766 238.459 34.4274C238.194 34.3782 238.039 33.6591 238.084 33.4396C238.156 33.186 238.421 32.5842 238.637 32.4403C238.902 32.2473 239.322 32.5009 239.598 32.3911"
+            fill="white" />
+        <path
+            d="M239.507 32.4555C239.363 32.7545 239.556 32.8756 239.591 33.1179C239.613 33.2995 239.326 33.4774 239.216 33.6212C239.083 33.7878 238.697 34.4766 238.459 34.4274C238.194 34.3782 238.039 33.6591 238.084 33.4396C238.156 33.186 238.421 32.5842 238.637 32.4403C238.902 32.2473 239.322 32.5009 239.598 32.3911"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M239.507 32.4555C239.363 32.7545 239.556 32.8756 239.591 33.1179C239.613 33.2995 239.326 33.4774 239.216 33.6212C239.083 33.7878 238.697 34.4766 238.459 34.4274C238.194 34.3782 238.039 33.6591 238.084 33.4396C238.156 33.186 238.421 32.5842 238.637 32.4403C238.902 32.2473 239.322 32.5009 239.598 32.3911"
+            fill="white" />
+        <path
+            d="M239.507 32.4555C239.363 32.7545 239.556 32.8756 239.591 33.1179C239.613 33.2995 239.326 33.4774 239.216 33.6212C239.083 33.7878 238.697 34.4766 238.459 34.4274C238.194 34.3782 238.039 33.6591 238.084 33.4396C238.156 33.186 238.421 32.5842 238.637 32.4403C238.902 32.2473 239.322 32.5009 239.598 32.3911"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M240.722 28.2467C240.556 28.6668 240.435 29.0642 240.529 29.5336C240.612 29.9537 240.987 30.2792 241.203 30.6501C241.721 31.5055 242.164 32.395 242.441 33.345C242.55 33.731 242.694 36.46 243.092 36.4221C243.296 36.4108 243.489 36.3843 243.682 36.3502C244.174 36.2556 244.042 33.4396 243.958 33.0195C243.826 32.4063 243.777 31.7818 243.621 31.1687C243.538 30.8545 243.417 30.5933 243.428 30.2678C243.44 29.9537 243.633 29.2459 243.595 28.9469"
+            fill="white" />
+        <path
+            d="M240.722 28.2467C240.556 28.6668 240.435 29.0642 240.529 29.5336C240.612 29.9537 240.987 30.2792 241.203 30.6501C241.721 31.5055 242.164 32.395 242.441 33.345C242.55 33.731 242.694 36.46 243.092 36.4221C243.296 36.4108 243.489 36.3843 243.682 36.3502C244.174 36.2556 244.042 33.4396 243.958 33.0195C243.826 32.4063 243.777 31.7818 243.621 31.1687C243.538 30.8545 243.417 30.5933 243.428 30.2678C243.44 29.9537 243.633 29.2459 243.595 28.9469"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M240.722 28.2467C240.556 28.6668 240.435 29.0642 240.529 29.5336C240.612 29.9537 240.987 30.2792 241.203 30.6501C241.721 31.5055 242.164 32.395 242.441 33.345C242.55 33.731 242.694 36.46 243.092 36.4221C243.296 36.4108 243.489 36.3843 243.682 36.3502C244.174 36.2556 244.042 33.4396 243.958 33.0195C243.826 32.4063 243.777 31.7818 243.621 31.1687C243.538 30.8545 243.417 30.5933 243.428 30.2678C243.44 29.9537 243.633 29.2459 243.595 28.9469"
+            fill="white" />
+        <path
+            d="M240.722 28.2467C240.556 28.6668 240.435 29.0642 240.529 29.5336C240.612 29.9537 240.987 30.2792 241.203 30.6501C241.721 31.5055 242.164 32.395 242.441 33.345C242.55 33.731 242.694 36.46 243.092 36.4221C243.296 36.4108 243.489 36.3843 243.682 36.3502C244.174 36.2556 244.042 33.4396 243.958 33.0195C243.826 32.4063 243.777 31.7818 243.621 31.1687C243.538 30.8545 243.417 30.5933 243.428 30.2678C243.44 29.9537 243.633 29.2459 243.595 28.9469"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M243.251 23.1371C242.891 24.0152 244.587 24.0757 244.31 23.2923C245.139 23.3415 245.249 24.3028 245.31 24.9501C245.321 25.1317 245.332 25.3702 245.298 25.5405C245.238 25.8168 245.238 25.7449 245.022 25.7941C244.889 25.8168 244.723 25.7827 244.59 25.832C244.375 25.9266 244.469 25.8812 244.397 26.0855C244.216 26.5776 244.098 27.1453 243.966 27.6601C243.894 27.9477 243.845 28.2619 243.822 28.5609C243.811 28.682 243.86 29.0075 243.799 29.0908C243.727 29.2232 243.618 29.1627 243.463 29.174C242.777 29.2119 242.308 29.1967 241.695 28.8599C241.347 28.6782 240.999 28.4511 240.684 28.1975C240.298 27.8834 240.37 27.7887 240.575 27.3421C240.741 26.9712 240.851 26.5851 240.995 26.1991C241.15 25.8017 241.116 25.7298 240.84 25.4308C240.673 25.2491 240.336 25.0939 240.393 24.8782C240.454 24.6511 240.79 24.4807 240.972 24.3256C241.392 23.966 241.767 23.5913 242.282 23.3377C242.463 23.2431 243.182 23.1939 243.209 23.1447C243.175 23.0992 243.285 23.1106 243.251 23.1371Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M244.715 20.1545C244.98 20.2378 245.136 20.5406 245.162 20.8055C245.2 21.2862 245.007 21.3241 244.598 21.396C244.25 21.4565 243.852 21.3733 243.743 21.7821C243.633 22.1568 244.102 22.4444 243.705 22.7699C243.258 23.1295 242.225 22.7094 242.104 22.2287C241.96 21.6042 242.225 20.6541 242.694 20.2189C243.236 19.7155 244.428 19.3294 244.799 20.2416"
+            fill="white" />
+        <path
+            d="M244.715 20.1545C244.98 20.2378 245.136 20.5406 245.162 20.8055C245.2 21.2862 245.007 21.3241 244.598 21.396C244.25 21.4565 243.852 21.3733 243.743 21.7821C243.633 22.1568 244.102 22.4444 243.705 22.7699C243.258 23.1295 242.225 22.7094 242.104 22.2287C241.96 21.6042 242.225 20.6541 242.694 20.2189C243.236 19.7155 244.428 19.3294 244.799 20.2416"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M244.715 20.1545C244.98 20.2378 245.136 20.5406 245.162 20.8055C245.2 21.2862 245.007 21.3241 244.598 21.396C244.25 21.4565 243.852 21.3733 243.743 21.7821C243.633 22.1568 244.102 22.4444 243.705 22.7699C243.258 23.1295 242.225 22.7094 242.104 22.2287C241.96 21.6042 242.225 20.6541 242.694 20.2189C243.236 19.7155 244.428 19.3294 244.799 20.2416"
+            fill="#DA3635" />
+        <path
+            d="M244.715 20.1545C244.98 20.2378 245.136 20.5406 245.162 20.8055C245.2 21.2862 245.007 21.3241 244.598 21.396C244.25 21.4565 243.852 21.3733 243.743 21.7821C243.633 22.1568 244.102 22.4444 243.705 22.7699C243.258 23.1295 242.225 22.7094 242.104 22.2287C241.96 21.6042 242.225 20.6541 242.694 20.2189C243.236 19.7155 244.428 19.3294 244.799 20.2416"
+            stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M426.635 93.9343C426.787 94.2897 427.394 94.3637 427.501 93.9158C427.564 93.6678 427.616 93.7012 427.753 93.4865C427.879 93.2718 428.038 93.4791 428.157 93.2089C428.316 92.8425 428.282 91.7358 427.979 91.4582C427.694 91.1991 427.472 91.2694 427.202 91.4952C427.068 91.621 426.998 91.7728 426.854 91.8875C426.746 91.9689 426.587 92.0134 426.498 92.0467C425.884 92.3058 426.302 92.6796 426.391 93.0534C426.428 93.1978 426.417 93.4088 426.472 93.5457C426.543 93.7234 426.695 93.8122 426.75 93.9751"
+            fill="white" />
+        <path
+            d="M426.635 93.9343C426.787 94.2897 427.394 94.3637 427.501 93.9158C427.564 93.6678 427.616 93.7012 427.753 93.4865C427.879 93.2718 428.038 93.4791 428.157 93.2089C428.316 92.8425 428.282 91.7358 427.979 91.4582C427.694 91.1991 427.472 91.2694 427.202 91.4952C427.068 91.621 426.998 91.7728 426.854 91.8875C426.746 91.9689 426.587 92.0134 426.498 92.0467C425.884 92.3058 426.302 92.6796 426.391 93.0534C426.428 93.1978 426.417 93.4088 426.472 93.5457C426.543 93.7234 426.695 93.8122 426.75 93.9751"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M426.635 93.9343C426.787 94.2897 427.394 94.3637 427.501 93.9158C427.564 93.6678 427.616 93.7012 427.753 93.4865C427.879 93.2718 428.038 93.4791 428.157 93.2089C428.316 92.8425 428.282 91.7358 427.979 91.4582C427.694 91.1991 427.472 91.2694 427.202 91.4952C427.068 91.621 426.998 91.7728 426.854 91.8875C426.746 91.9689 426.587 92.0134 426.498 92.0467C425.884 92.3058 426.302 92.6796 426.391 93.0534C426.428 93.1978 426.417 93.4088 426.472 93.5457C426.543 93.7234 426.695 93.8122 426.75 93.9751"
+            fill="white" />
+        <path
+            d="M426.635 93.9343C426.787 94.2897 427.394 94.3637 427.501 93.9158C427.564 93.6678 427.616 93.7012 427.753 93.4865C427.879 93.2718 428.038 93.4791 428.157 93.2089C428.316 92.8425 428.282 91.7358 427.979 91.4582C427.694 91.1991 427.472 91.2694 427.202 91.4952C427.068 91.621 426.998 91.7728 426.854 91.8875C426.746 91.9689 426.587 92.0134 426.498 92.0467C425.884 92.3058 426.302 92.6796 426.391 93.0534C426.428 93.1978 426.417 93.4088 426.472 93.5457C426.543 93.7234 426.695 93.8122 426.75 93.9751"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M429.815 96.2736C429.645 96.9509 429.619 97.7985 429.619 98.5832C429.619 99.4493 429.841 100.252 429.815 101.107C429.511 101.17 429.2 98.9052 429.156 98.5721C429.075 98.0465 429.023 97.4728 429.119 96.9583C429.156 96.7436 429.556 95.6628 429.896 96.1107"
+            fill="white" />
+        <path
+            d="M429.815 96.2736C429.645 96.9509 429.619 97.7985 429.619 98.5832C429.619 99.4493 429.841 100.252 429.815 101.107C429.511 101.17 429.2 98.9052 429.156 98.5721C429.075 98.0465 429.023 97.4728 429.119 96.9583C429.156 96.7436 429.556 95.6628 429.896 96.1107"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M429.815 96.2736C429.645 96.9509 429.619 97.7985 429.619 98.5832C429.619 99.4493 429.841 100.252 429.815 101.107C429.511 101.17 429.2 98.9052 429.156 98.5721C429.075 98.0465 429.023 97.4728 429.119 96.9583C429.156 96.7436 429.556 95.6628 429.896 96.1107"
+            fill="white" />
+        <path
+            d="M429.815 96.2736C429.645 96.9509 429.619 97.7985 429.619 98.5832C429.619 99.4493 429.841 100.252 429.815 101.107C429.511 101.17 429.2 98.9052 429.156 98.5721C429.075 98.0465 429.023 97.4728 429.119 96.9583C429.156 96.7436 429.556 95.6628 429.896 96.1107"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M424.54 97.1471C423.933 97.0583 424.03 99.342 424.022 99.7973C424.015 100.315 423.97 100.734 423.782 101.226C423.719 101.378 423.452 101.777 423.63 101.94C423.871 102.162 424.137 101.744 424.193 101.555C424.156 101.744 424.237 101.752 424.307 101.851C424.503 101.485 424.503 100.915 424.618 100.512C424.744 100.049 424.859 99.6196 424.859 99.1384C424.859 98.5943 424.896 98.0576 424.896 97.532C424.896 97.4173 424.966 96.9621 424.877 96.8806C424.689 96.7104 424.459 96.9806 424.459 97.1767"
+            fill="white" />
+        <path
+            d="M424.54 97.1471C423.933 97.0583 424.03 99.342 424.022 99.7973C424.015 100.315 423.97 100.734 423.782 101.226C423.719 101.378 423.452 101.777 423.63 101.94C423.871 102.162 424.137 101.744 424.193 101.555C424.156 101.744 424.237 101.752 424.307 101.851C424.503 101.485 424.503 100.915 424.618 100.512C424.744 100.049 424.859 99.6196 424.859 99.1384C424.859 98.5943 424.896 98.0576 424.896 97.532C424.896 97.4173 424.966 96.9621 424.877 96.8806C424.689 96.7104 424.459 96.9806 424.459 97.1767"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M424.54 97.1471C423.933 97.0583 424.03 99.342 424.022 99.7973C424.015 100.315 423.97 100.734 423.782 101.226C423.719 101.378 423.452 101.777 423.63 101.94C423.871 102.162 424.137 101.744 424.193 101.555C424.156 101.744 424.237 101.752 424.307 101.851C424.503 101.485 424.503 100.915 424.618 100.512C424.744 100.049 424.859 99.6196 424.859 99.1384C424.859 98.5943 424.896 98.0576 424.896 97.532C424.896 97.4173 424.966 96.9621 424.877 96.8806C424.689 96.7104 424.459 96.9806 424.459 97.1767"
+            fill="white" />
+        <path
+            d="M424.54 97.1471C423.933 97.0583 424.03 99.342 424.022 99.7973C424.015 100.315 423.97 100.734 423.782 101.226C423.719 101.378 423.452 101.777 423.63 101.94C423.871 102.162 424.137 101.744 424.193 101.555C424.156 101.744 424.237 101.752 424.307 101.851C424.503 101.485 424.503 100.915 424.618 100.512C424.744 100.049 424.859 99.6196 424.859 99.1384C424.859 98.5943 424.896 98.0576 424.896 97.532C424.896 97.4173 424.966 96.9621 424.877 96.8806C424.689 96.7104 424.459 96.9806 424.459 97.1767"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M425.218 104.08C424.996 104.346 424.755 104.624 424.503 104.875C424.1 105.286 424.074 105.579 424.1 106.16C424.137 106.697 424.744 107.463 424.655 106.515C424.611 106.041 424.6 106.086 424.966 105.845C425.332 105.605 425.858 105.186 426.065 104.79C426.369 104.202 425.503 103.532 425.129 104.039"
+            fill="white" />
+        <path
+            d="M425.218 104.08C424.996 104.346 424.755 104.624 424.503 104.875C424.1 105.286 424.074 105.579 424.1 106.16C424.137 106.697 424.744 107.463 424.655 106.515C424.611 106.041 424.6 106.086 424.966 105.845C425.332 105.605 425.858 105.186 426.065 104.79C426.369 104.202 425.503 103.532 425.129 104.039"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M425.218 104.08C424.996 104.346 424.755 104.624 424.503 104.875C424.1 105.286 424.074 105.579 424.1 106.16C424.137 106.697 424.744 107.463 424.655 106.515C424.611 106.041 424.6 106.086 424.966 105.845C425.332 105.605 425.858 105.186 426.065 104.79C426.369 104.202 425.503 103.532 425.129 104.039"
+            fill="white" />
+        <path
+            d="M425.218 104.08C424.996 104.346 424.755 104.624 424.503 104.875C424.1 105.286 424.074 105.579 424.1 106.16C424.137 106.697 424.744 107.463 424.655 106.515C424.611 106.041 424.6 106.086 424.966 105.845C425.332 105.605 425.858 105.186 426.065 104.79C426.369 104.202 425.503 103.532 425.129 104.039"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M428.146 104.243C428.146 105.109 428.26 105.964 428.297 106.841C428.316 107.27 428.253 107.777 428.297 108.196C428.342 108.651 428.815 108.928 429.171 109.232C429.437 108.921 429.063 108.207 429.045 107.814C429.008 107.181 429.171 106.582 429.267 105.967C429.323 105.601 429.622 104.539 429.411 104.183C429.071 103.613 428.268 104.146 428.134 104.602"
+            fill="white" />
+        <path
+            d="M428.146 104.243C428.146 105.109 428.26 105.964 428.297 106.841C428.316 107.27 428.253 107.777 428.297 108.196C428.342 108.651 428.815 108.928 429.171 109.232C429.437 108.921 429.063 108.207 429.045 107.814C429.008 107.181 429.171 106.582 429.267 105.967C429.323 105.601 429.622 104.539 429.411 104.183C429.071 103.613 428.268 104.146 428.134 104.602"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M428.146 104.243C428.146 105.109 428.26 105.964 428.297 106.841C428.316 107.27 428.253 107.777 428.297 108.196C428.342 108.651 428.815 108.928 429.171 109.232C429.437 108.921 429.063 108.207 429.045 107.814C429.008 107.181 429.171 106.582 429.267 105.967C429.323 105.601 429.622 104.539 429.411 104.183C429.071 103.613 428.268 104.146 428.134 104.602"
+            fill="white" />
+        <path
+            d="M428.146 104.243C428.146 105.109 428.26 105.964 428.297 106.841C428.316 107.27 428.253 107.777 428.297 108.196C428.342 108.651 428.815 108.928 429.171 109.232C429.437 108.921 429.063 108.207 429.045 107.814C429.008 107.181 429.171 106.582 429.267 105.967C429.323 105.601 429.622 104.539 429.411 104.183C429.071 103.613 428.268 104.146 428.134 104.602"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M424.1 105.268C423.449 105.338 423.974 107.204 424.44 107.381C424.948 107.577 424.592 106.737 424.492 106.489C424.366 106.16 424.118 105.527 424.144 105.186"
+            fill="white" />
+        <path
+            d="M424.1 105.268C423.449 105.338 423.974 107.204 424.44 107.381C424.948 107.577 424.592 106.737 424.492 106.489C424.366 106.16 424.118 105.527 424.144 105.186"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M424.1 105.268C423.449 105.338 423.974 107.204 424.44 107.381C424.948 107.577 424.592 106.737 424.492 106.489C424.366 106.16 424.118 105.527 424.144 105.186"
+            fill="white" />
+        <path
+            d="M424.1 105.268C423.449 105.338 423.974 107.204 424.44 107.381C424.948 107.577 424.592 106.737 424.492 106.489C424.366 106.16 424.118 105.527 424.144 105.186"
+            stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M428.271 108.007C427.931 108.606 428.327 109.195 428.871 109.55C429.112 109.709 429.478 109.898 429.622 109.55C429.748 109.239 429.371 108.773 429.274 108.495C429.282 109.672 428.497 108.425 428.275 107.977C428.194 108.022 428.22 108.059 428.205 108.129"
+            fill="white" />
+        <path
+            d="M428.271 108.007C427.931 108.606 428.327 109.195 428.871 109.55C429.112 109.709 429.478 109.898 429.622 109.55C429.748 109.239 429.371 108.773 429.274 108.495C429.282 109.672 428.497 108.425 428.275 107.977C428.194 108.022 428.22 108.059 428.205 108.129"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M428.271 108.007C427.931 108.606 428.327 109.195 428.871 109.55C429.112 109.709 429.478 109.898 429.622 109.55C429.748 109.239 429.371 108.773 429.274 108.495C429.282 109.672 428.497 108.425 428.275 107.977C428.194 108.022 428.22 108.059 428.205 108.129"
+            fill="white" />
+        <path
+            d="M428.271 108.007C427.931 108.606 428.327 109.195 428.871 109.55C429.112 109.709 429.478 109.898 429.622 109.55C429.748 109.239 429.371 108.773 429.274 108.495C429.282 109.672 428.497 108.425 428.275 107.977C428.194 108.022 428.22 108.059 428.205 108.129"
+            stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M420.199 100.119C420.521 100.227 420.636 100.682 420.584 100.974C420.547 101.163 420.469 101.285 420.458 101.492C420.451 101.663 420.521 101.955 420.377 102.055C420.232 102.155 419.903 102 419.814 101.885C419.644 101.652 419.744 101.53 419.751 101.304C419.758 101.056 419.366 100.982 419.466 100.723C419.559 100.504 419.958 100.005 420.199 100.119Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M418.559 103.173C418.648 103.591 418.641 104.057 418.674 104.476C418.711 104.816 418.567 105.634 418.763 105.904C419.192 106.504 419.299 105.227 419.318 104.994C419.37 104.405 419.185 103.969 419.148 103.406"
+            fill="white" />
+        <path
+            d="M418.559 103.173C418.648 103.591 418.641 104.057 418.674 104.476C418.711 104.816 418.567 105.634 418.763 105.904C419.192 106.504 419.299 105.227 419.318 104.994C419.37 104.405 419.185 103.969 419.148 103.406"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M418.559 103.173C418.648 103.591 418.641 104.057 418.674 104.476C418.711 104.816 418.567 105.634 418.763 105.904C419.192 106.504 419.299 105.227 419.318 104.994C419.37 104.405 419.185 103.969 419.148 103.406"
+            fill="white" />
+        <path
+            d="M418.559 103.173C418.648 103.591 418.641 104.057 418.674 104.476C418.711 104.816 418.567 105.634 418.763 105.904C419.192 106.504 419.299 105.227 419.318 104.994C419.37 104.405 419.185 103.969 419.148 103.406"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M419.262 106.582C419.27 106.671 419.255 106.778 419.218 106.848C418.7 106.974 417.308 107.089 417.726 107.759C418.022 107.785 418.37 107.6 418.663 107.526C418.974 107.444 419.314 107.444 419.625 107.355C419.966 107.267 420.143 107.089 420.029 106.697C419.966 106.474 419.984 106.412 419.688 106.419C419.518 106.426 419.385 106.393 419.348 106.615"
+            fill="white" />
+        <path
+            d="M419.262 106.582C419.27 106.671 419.255 106.778 419.218 106.848C418.7 106.974 417.308 107.089 417.726 107.759C418.022 107.785 418.37 107.6 418.663 107.526C418.974 107.444 419.314 107.444 419.625 107.355C419.966 107.267 420.143 107.089 420.029 106.697C419.966 106.474 419.984 106.412 419.688 106.419C419.518 106.426 419.385 106.393 419.348 106.615"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M419.262 106.582C419.27 106.671 419.255 106.778 419.218 106.848C418.7 106.974 417.308 107.089 417.726 107.759C418.022 107.785 418.37 107.6 418.663 107.526C418.974 107.444 419.314 107.444 419.625 107.355C419.966 107.267 420.143 107.089 420.029 106.697C419.966 106.474 419.984 106.412 419.688 106.419C419.518 106.426 419.385 106.393 419.348 106.615"
+            fill="white" />
+        <path
+            d="M419.262 106.582C419.27 106.671 419.255 106.778 419.218 106.848C418.7 106.974 417.308 107.089 417.726 107.759C418.022 107.785 418.37 107.6 418.663 107.526C418.974 107.444 419.314 107.444 419.625 107.355C419.966 107.267 420.143 107.089 420.029 106.697C419.966 106.474 419.984 106.412 419.688 106.419C419.518 106.426 419.385 106.393 419.348 106.615"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M420.621 106.582C420.469 106.778 420.576 107.618 420.584 107.955C420.591 108.499 420.576 109.202 421.217 109.158C421.235 108.543 421.209 107.936 421.18 107.329C421.172 107.133 421.28 106.641 421.187 106.489C421.05 106.293 420.621 106.241 420.621 106.582Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M417.693 107.374C417.282 106.856 417.29 107.829 417.445 108.096C417.8 108.74 417.756 107.47 417.686 107.337"
+            fill="white" />
+        <path
+            d="M417.693 107.374C417.282 106.856 417.29 107.829 417.445 108.096C417.8 108.74 417.756 107.47 417.686 107.337"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M417.693 107.374C417.282 106.856 417.29 107.829 417.445 108.096C417.8 108.74 417.756 107.47 417.686 107.337"
+            fill="white" />
+        <path
+            d="M417.693 107.374C417.282 106.856 417.29 107.829 417.445 108.096C417.8 108.74 417.756 107.47 417.686 107.337"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M427.557 93.7382C428.101 93.7382 428.701 93.6568 429.067 94.138C429.308 94.46 430.029 95.4963 429.978 95.8776C429.926 96.281 429.345 96.4217 429.271 96.8399C429.2 97.2434 429.278 97.8763 429.308 98.2871C429.378 99.342 429.648 100.349 429.663 101.418C429.67 101.988 429.93 102.544 429.904 103.095C429.885 103.48 429.563 104.228 429.182 104.38C428.897 104.487 428.727 104.298 428.475 104.254C428.197 104.217 428.071 104.317 427.831 104.431C427.124 104.787 426.547 104.879 425.877 104.394C425.643 104.235 425.466 104.072 425.218 103.939C424.877 103.769 424.763 103.832 424.744 103.358C424.707 102.903 424.77 102.447 424.744 102C424.707 101.385 424.966 100.734 425.085 100.127C425.21 99.4123 425.122 98.9571 424.985 98.2612C424.948 98.0836 425.029 97.5728 424.885 97.4506C424.696 97.2804 424.278 97.6024 424.074 97.4136C423.726 97.1175 424.548 95.7887 424.807 95.5148C425.236 95.0411 425.769 94.5081 426.262 94.112C426.317 94.075 426.502 93.9159 426.572 93.9085C426.832 93.8715 426.661 93.964 426.85 94.0343C427.172 94.2046 427.368 94.212 427.557 93.7382Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M428.664 94.0157C428.656 93.9343 428.582 93.9269 428.656 93.864C428.36 95.5592 427.309 97.0952 426.602 98.6646C426.476 98.9496 426.291 99.4937 426.002 99.6196C425.717 99.7343 425.181 99.6122 424.885 99.5751C424.278 99.5122 424.411 99.8416 424.329 100.371C424.241 100.971 424.081 101.2 424.848 101.237C425.321 101.263 426.125 101.396 426.391 100.926C426.669 100.445 426.587 99.6862 425.988 99.6788C426.343 99.5899 426.695 98.7423 426.961 98.3241C427.265 97.8429 427.487 97.1804 427.809 96.7103C428.182 96.1736 428.63 95.4963 428.834 94.8707C428.904 94.6487 429.1 93.5679 428.601 93.827"
+            fill="white" />
+        <path
+            d="M428.664 94.0157C428.656 93.9343 428.582 93.9269 428.656 93.864C428.36 95.5592 427.309 97.0952 426.602 98.6646C426.476 98.9496 426.291 99.4937 426.002 99.6196C425.717 99.7343 425.181 99.6122 424.885 99.5751C424.278 99.5122 424.411 99.8416 424.329 100.371C424.241 100.971 424.081 101.2 424.848 101.237C425.321 101.263 426.125 101.396 426.391 100.926C426.669 100.445 426.587 99.6862 425.988 99.6788C426.343 99.5899 426.695 98.7423 426.961 98.3241C427.265 97.8429 427.487 97.1804 427.809 96.7103C428.182 96.1736 428.63 95.4963 428.834 94.8707C428.904 94.6487 429.1 93.5679 428.601 93.827"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M428.664 94.0157C428.656 93.9343 428.582 93.9269 428.656 93.864C428.36 95.5592 427.309 97.0952 426.602 98.6646C426.476 98.9496 426.291 99.4937 426.002 99.6196C425.717 99.7343 425.181 99.6122 424.885 99.5751C424.278 99.5122 424.411 99.8416 424.329 100.371C424.241 100.971 424.081 101.2 424.848 101.237C425.321 101.263 426.125 101.396 426.391 100.926C426.669 100.445 426.587 99.6862 425.988 99.6788C426.343 99.5899 426.695 98.7423 426.961 98.3241C427.265 97.8429 427.487 97.1804 427.809 96.7103C428.182 96.1736 428.63 95.4963 428.834 94.8707C428.904 94.6487 429.1 93.5679 428.601 93.827"
+            fill="white" />
+        <path
+            d="M428.664 94.0157C428.656 93.9343 428.582 93.9269 428.656 93.864C428.36 95.5592 427.309 97.0952 426.602 98.6646C426.476 98.9496 426.291 99.4937 426.002 99.6196C425.717 99.7343 425.181 99.6122 424.885 99.5751C424.278 99.5122 424.411 99.8416 424.329 100.371C424.241 100.971 424.081 101.2 424.848 101.237C425.321 101.263 426.125 101.396 426.391 100.926C426.669 100.445 426.587 99.6862 425.988 99.6788C426.343 99.5899 426.695 98.7423 426.961 98.3241C427.265 97.8429 427.487 97.1804 427.809 96.7103C428.182 96.1736 428.63 95.4963 428.834 94.8707C428.904 94.6487 429.1 93.5679 428.601 93.827"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M426.68 92.1503C426.698 92.2762 426.761 92.4168 426.832 92.5056C426.85 92.0689 427.117 91.5581 427.546 91.3804C428.097 91.1584 428.064 91.6654 428.116 92.0837C428.16 92.5315 428.268 92.9683 427.875 93.2718C427.731 93.3792 427.331 93.3717 427.616 93.6123C427.742 93.7197 428.064 93.5753 428.231 93.7197C428.331 93.4532 428.282 93.2126 428.419 92.935C428.553 92.6389 428.76 92.365 428.686 92.0245C428.56 91.4804 427.712 90.9622 427.205 90.8474C426.473 90.6772 426.08 91.4619 425.94 92.0874C425.858 92.4538 425.903 92.6315 425.61 92.898C425.307 93.1756 424.922 93.3273 424.637 93.6494C424.181 94.1564 424.1 95.1114 424.674 95.5777C424.94 95.2113 425.344 95.0522 425.692 94.7746C425.943 94.5784 426.506 94.2305 426.646 93.9714C426.824 93.6419 426.654 93.2052 426.513 92.9461C426.432 92.8018 426.217 92.6167 426.273 92.4279C426.336 92.2392 426.558 92.1614 426.684 92.3021"
+            fill="white" />
+        <path
+            d="M426.68 92.1503C426.698 92.2762 426.761 92.4168 426.832 92.5056C426.85 92.0689 427.117 91.5581 427.546 91.3804C428.097 91.1584 428.064 91.6654 428.116 92.0837C428.16 92.5315 428.268 92.9683 427.875 93.2718C427.731 93.3792 427.331 93.3717 427.616 93.6123C427.742 93.7197 428.064 93.5753 428.231 93.7197C428.331 93.4532 428.282 93.2126 428.419 92.935C428.553 92.6389 428.76 92.365 428.686 92.0245C428.56 91.4804 427.712 90.9622 427.205 90.8474C426.473 90.6772 426.08 91.4619 425.94 92.0874C425.858 92.4538 425.903 92.6315 425.61 92.898C425.307 93.1756 424.922 93.3273 424.637 93.6494C424.181 94.1564 424.1 95.1114 424.674 95.5777C424.94 95.2113 425.344 95.0522 425.692 94.7746C425.943 94.5784 426.506 94.2305 426.646 93.9714C426.824 93.6419 426.654 93.2052 426.513 92.9461C426.432 92.8018 426.217 92.6167 426.273 92.4279C426.336 92.2392 426.558 92.1614 426.684 92.3021"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M426.68 92.1503C426.698 92.2762 426.761 92.4168 426.832 92.5056C426.85 92.0689 427.117 91.5581 427.546 91.3804C428.097 91.1584 428.064 91.6654 428.116 92.0837C428.16 92.5315 428.268 92.9683 427.875 93.2718C427.731 93.3792 427.331 93.3717 427.616 93.6123C427.742 93.7197 428.064 93.5753 428.231 93.7197C428.331 93.4532 428.282 93.2126 428.419 92.935C428.553 92.6389 428.76 92.365 428.686 92.0245C428.56 91.4804 427.712 90.9622 427.205 90.8474C426.473 90.6772 426.08 91.4619 425.94 92.0874C425.858 92.4538 425.903 92.6315 425.61 92.898C425.307 93.1756 424.922 93.3273 424.637 93.6494C424.181 94.1564 424.1 95.1114 424.674 95.5777C424.94 95.2113 425.344 95.0522 425.692 94.7746C425.943 94.5784 426.506 94.2305 426.646 93.9714C426.824 93.6419 426.654 93.2052 426.513 92.9461C426.432 92.8018 426.217 92.6167 426.273 92.4279C426.336 92.2392 426.558 92.1614 426.684 92.3021"
+            fill="#DA3635" />
+        <path
+            d="M426.68 92.1503C426.698 92.2762 426.761 92.4168 426.832 92.5056C426.85 92.0689 427.117 91.5581 427.546 91.3804C428.097 91.1584 428.064 91.6654 428.116 92.0837C428.16 92.5315 428.268 92.9683 427.875 93.2718C427.731 93.3792 427.331 93.3717 427.616 93.6123C427.742 93.7197 428.064 93.5753 428.231 93.7197C428.331 93.4532 428.282 93.2126 428.419 92.935C428.553 92.6389 428.76 92.365 428.686 92.0245C428.56 91.4804 427.712 90.9622 427.205 90.8474C426.473 90.6772 426.08 91.4619 425.94 92.0874C425.858 92.4538 425.903 92.6315 425.61 92.898C425.307 93.1756 424.922 93.3273 424.637 93.6494C424.181 94.1564 424.1 95.1114 424.674 95.5777C424.94 95.2113 425.344 95.0522 425.692 94.7746C425.943 94.5784 426.506 94.2305 426.646 93.9714C426.824 93.6419 426.654 93.2052 426.513 92.9461C426.432 92.8018 426.217 92.6167 426.273 92.4279C426.336 92.2392 426.558 92.1614 426.684 92.3021"
+            stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M419.736 101.777C419.629 102.081 419.229 102.062 418.996 102.251C418.818 102.403 418.548 102.636 418.559 103.028C418.566 103.351 418.844 103.251 418.988 103.458C419.077 103.591 419.033 104.091 419.07 104.268C419.114 104.535 419.14 104.768 419.151 105.046C419.17 105.564 419.062 106.045 419.07 106.563C419.222 106.619 419.962 106.752 420.095 106.652C420.265 106.526 420.202 105.83 420.221 105.634C420.265 105.83 420.276 106.312 420.417 106.456C420.561 106.608 421.069 106.697 421.194 106.571C421.354 106.4 421.202 105.501 421.22 105.268C421.228 104.938 421.276 104.609 421.302 104.287C421.365 103.584 421.587 102.644 421.265 101.985C421.113 101.674 420.791 101.441 420.48 101.629C420.302 101.737 420.473 101.996 420.114 102.014C420.014 102.022 419.847 101.826 419.803 101.818"
+            fill="white" />
+        <path
+            d="M419.736 101.777C419.629 102.081 419.229 102.062 418.996 102.251C418.818 102.403 418.548 102.636 418.559 103.028C418.566 103.351 418.844 103.251 418.988 103.458C419.077 103.591 419.033 104.091 419.07 104.268C419.114 104.535 419.14 104.768 419.151 105.046C419.17 105.564 419.062 106.045 419.07 106.563C419.222 106.619 419.962 106.752 420.095 106.652C420.265 106.526 420.202 105.83 420.221 105.634C420.265 105.83 420.276 106.312 420.417 106.456C420.561 106.608 421.069 106.697 421.194 106.571C421.354 106.4 421.202 105.501 421.22 105.268C421.228 104.938 421.276 104.609 421.302 104.287C421.365 103.584 421.587 102.644 421.265 101.985C421.113 101.674 420.791 101.441 420.48 101.629C420.302 101.737 420.473 101.996 420.114 102.014C420.014 102.022 419.847 101.826 419.803 101.818"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M419.736 101.777C419.629 102.081 419.229 102.062 418.996 102.251C418.818 102.403 418.548 102.636 418.559 103.028C418.566 103.351 418.844 103.251 418.988 103.458C419.077 103.591 419.033 104.091 419.07 104.268C419.114 104.535 419.14 104.768 419.151 105.046C419.17 105.564 419.062 106.045 419.07 106.563C419.222 106.619 419.962 106.752 420.095 106.652C420.265 106.526 420.202 105.83 420.221 105.634C420.265 105.83 420.276 106.312 420.417 106.456C420.561 106.608 421.069 106.697 421.194 106.571C421.354 106.4 421.202 105.501 421.22 105.268C421.228 104.938 421.276 104.609 421.302 104.287C421.365 103.584 421.587 102.644 421.265 101.985C421.113 101.674 420.791 101.441 420.48 101.629C420.302 101.737 420.473 101.996 420.114 102.014C420.014 102.022 419.847 101.826 419.803 101.818"
+            fill="white" />
+        <path
+            d="M419.736 101.777C419.629 102.081 419.229 102.062 418.996 102.251C418.818 102.403 418.548 102.636 418.559 103.028C418.566 103.351 418.844 103.251 418.988 103.458C419.077 103.591 419.033 104.091 419.07 104.268C419.114 104.535 419.14 104.768 419.151 105.046C419.17 105.564 419.062 106.045 419.07 106.563C419.222 106.619 419.962 106.752 420.095 106.652C420.265 106.526 420.202 105.83 420.221 105.634C420.265 105.83 420.276 106.312 420.417 106.456C420.561 106.608 421.069 106.697 421.194 106.571C421.354 106.4 421.202 105.501 421.22 105.268C421.228 104.938 421.276 104.609 421.302 104.287C421.365 103.584 421.587 102.644 421.265 101.985C421.113 101.674 420.791 101.441 420.48 101.629C420.302 101.737 420.473 101.996 420.114 102.014C420.014 102.022 419.847 101.826 419.803 101.818"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M420.343 99.4863C420.084 99.6122 420.173 99.8898 419.988 100.03C419.792 100.182 419.551 100.038 419.329 100.308C418.911 100.808 419.273 101.27 419.829 101.389C419.829 101.389 420.436 100.978 420.284 100.193C420.336 99.9675 420.432 99.6899 420.343 99.4863Z"
+            fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M418.195 88.3445L395.642 75.3251C394.759 74.8145 393.336 74.8187 392.466 75.3251L353.567 97.928C352.872 98.3046 352.914 98.8403 352.914 98.8403L352.901 103.532C352.901 103.866 353.123 104.201 353.567 104.456L376.12 117.476C377.003 117.986 378.421 117.986 379.296 117.476L418.195 94.873C418.63 94.6219 418.848 94.2913 418.848 93.9607L418.86 89.2693C418.789 88.583 418.195 88.3445 418.195 88.3445Z"
+            fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M416.55 88.0974L395.144 75.7393C394.307 75.258 392.956 75.258 392.127 75.7393L355.207 97.1955C354.55 97.5554 354.588 98.0618 354.588 98.0618L354.575 102.515C354.575 102.833 354.785 103.151 355.207 103.393L376.613 115.752C377.45 116.233 378.798 116.233 379.631 115.752L416.55 94.2953C416.96 94.0568 417.17 93.7429 417.17 93.4291L417.182 88.9763C417.115 88.3234 416.55 88.0974 416.55 88.0974Z"
+            fill="#EDEDED" />
+        <path
+            d="M416.441 88.2147L379.664 109.587L379.652 114.023L416.429 92.6508C416.839 92.4122 417.044 92.0983 417.048 91.7887L417.061 87.3526C417.061 87.6665 416.852 87.9762 416.441 88.2147Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" />
+        <path
+            d="M355.341 97.2791C354.923 97.0364 354.714 96.7183 354.714 96.4044L354.701 100.84C354.701 101.159 354.91 101.472 355.329 101.715L376.651 114.027L376.664 109.591L355.341 97.2791Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" />
+        <path
+            d="M379.668 109.587L379.656 114.023C378.827 114.504 377.484 114.504 376.651 114.023L376.664 109.587C377.496 110.068 378.84 110.068 379.668 109.587Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" />
+        <path
+            d="M416.433 86.4736C417.266 86.9549 417.27 87.7333 416.441 88.2146L379.664 109.587C378.836 110.068 377.492 110.068 376.659 109.587L355.337 97.275C354.504 96.7937 354.5 96.0153 355.329 95.534L392.106 74.1615C392.93 73.6803 394.278 73.6803 395.111 74.1615L416.433 86.4736Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" />
+        <path
+            d="M372.315 103.025L370.566 104.042C370.474 104.097 370.357 104.097 370.265 104.042L364.075 100.468C363.874 100.351 363.874 100.062 364.075 99.9451L365.825 98.9281C365.917 98.8737 366.034 98.8737 366.126 98.9281L372.315 102.502C372.516 102.619 372.516 102.908 372.315 103.025Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" />
+        <path
+            d="M394.663 75.1157C394.914 75.258 394.914 75.4923 394.667 75.6346C394.42 75.7769 394.018 75.7769 393.767 75.6346C393.516 75.4923 393.516 75.258 393.763 75.1157C394.01 74.9692 394.412 74.9692 394.663 75.1157Z"
+            fill="#706F6F" />
+        <path
+            d="M396.283 75.986C396.534 76.1283 396.534 76.3627 396.287 76.505C396.04 76.6473 395.638 76.6473 395.387 76.505C395.136 76.3627 395.136 76.1283 395.383 75.986C395.63 75.8396 396.031 75.8396 396.283 75.986Z"
+            fill="#706F6F" />
+        <path
+            d="M408.205 82.9454C408.427 83.0752 408.427 83.2802 408.205 83.41C407.984 83.5397 407.624 83.5397 407.402 83.41L398.902 78.501C398.681 78.3713 398.681 78.1662 398.898 78.0365C399.12 77.9068 399.48 77.9068 399.702 78.0365L408.205 82.9454Z"
+            fill="#706F6F" />
+        <line y1="-0.5" x2="27.9668" y2="-0.5" transform="matrix(0.866025 0.5 -0.866025 0.5 359.276 93.2557)"
+            stroke="#706F6F" />
+        <line y1="-0.5" x2="27.9668" y2="-0.5" transform="matrix(0.866025 0.5 -0.866025 0.5 390.283 75.0165)"
+            stroke="#706F6F" />
+        <path
+            d="M511.536 65.5296H511.759C512.058 65.5296 512.277 65.7486 512.277 66.0482V74.838C512.277 75.1376 512.054 75.3566 511.759 75.3566H511.536C511.236 75.3566 511.017 75.1376 511.017 74.838V66.0482C511.029 65.7486 511.251 65.5296 511.536 65.5296Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M511.613 69.2177C514.717 69.2177 517.222 66.713 517.222 63.6089C517.222 60.5048 514.713 58 511.613 58C508.509 58 506 60.5048 506 63.6089C506.004 66.7091 508.509 69.2177 511.613 69.2177Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M513.315 67.7386C510.21 67.7386 507.706 65.2338 507.706 62.1298C507.706 60.8697 508.147 59.7672 508.808 58.8067C507.106 59.7672 506.004 61.6112 506.004 63.6741C506.004 66.7782 508.512 69.283 511.616 69.283C513.46 69.283 515.086 68.3994 516.123 66.9972C515.301 67.4505 514.352 67.7386 513.315 67.7386Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M513.271 78.1122C513.489 78.1122 513.635 78.2543 513.635 78.4887V83.8786C513.635 84.0975 513.493 84.2435 513.271 84.2435C513.048 84.2435 512.894 84.1014 512.894 83.8786V78.4887C512.909 78.335 513.052 78.1122 513.271 78.1122Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M513.271 80.4749C515.234 80.4749 516.817 78.8921 516.817 76.929C516.817 74.9697 515.234 73.3831 513.271 73.3831C511.308 73.3831 509.725 74.9659 509.725 76.929C509.725 78.8921 511.311 80.4749 513.271 80.4749Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M513.271 80.4749C515.23 80.4749 516.817 78.8882 516.817 76.929C516.817 74.9697 515.23 73.3831 513.271 73.3831C511.311 73.3831 509.725 74.9697 509.725 76.929C509.725 78.8882 511.311 80.4749 513.271 80.4749Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M514.312 79.5144C512.31 79.5144 510.766 77.8932 510.766 75.9685C510.766 75.1502 511.065 74.4241 511.427 73.9055C510.385 74.5048 509.648 75.6842 509.648 76.9327C509.648 78.9304 511.273 80.4786 513.194 80.4786C514.377 80.4786 515.414 79.8831 516.079 78.9996C515.556 79.3607 514.972 79.5144 514.312 79.5144Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M514.312 79.5144C512.31 79.5144 510.766 77.8932 510.766 75.9685C510.766 75.1502 511.065 74.4241 511.427 73.9055C510.385 74.5048 509.648 75.6842 509.648 76.9327C509.648 78.9304 511.273 80.4786 513.194 80.4786C514.377 80.4786 515.414 79.8831 516.079 78.9996C515.556 79.3607 514.972 79.5144 514.312 79.5144Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M535.13 70.5825H535.353C535.652 70.5825 535.871 70.8015 535.871 71.1011V79.8909C535.871 80.1905 535.648 80.4095 535.353 80.4095H535.13C534.83 80.4095 534.611 80.1905 534.611 79.8909V71.1011C534.623 70.8015 534.845 70.5825 535.13 70.5825Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M535.207 74.2705C538.311 74.2705 540.815 71.7658 540.815 68.6617C540.815 65.5576 538.307 63.0528 535.207 63.0528C532.102 63.0528 529.594 65.5576 529.594 68.6617C529.598 71.7619 532.102 74.2705 535.207 74.2705Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M535.207 74.2706C538.311 74.2706 540.815 71.7658 540.815 68.6618C540.815 65.5577 538.307 63.0529 535.207 63.0529C532.102 63.0529 529.594 65.5577 529.594 68.6618C529.598 71.762 532.102 74.2706 535.207 74.2706Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M536.908 72.7915C533.804 72.7915 531.299 70.2867 531.299 67.1827C531.299 65.9226 531.741 64.82 532.402 63.8596C530.7 64.82 529.598 66.664 529.598 68.727C529.598 71.8311 532.106 74.3359 535.21 74.3359C537.054 74.3359 538.679 73.4523 539.717 72.0501C538.895 72.5034 537.946 72.7915 536.908 72.7915Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M536.908 72.7915C533.804 72.7915 531.299 70.2867 531.299 67.1827C531.299 65.9226 531.741 64.82 532.402 63.8596C530.7 64.82 529.598 66.664 529.598 68.727C529.598 71.8311 532.106 74.3359 535.21 74.3359C537.054 74.3359 538.679 73.4523 539.717 72.0501C538.895 72.5034 537.946 72.7915 536.908 72.7915Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M525.452 64.674C525.752 64.674 525.971 64.8968 525.971 65.1926V71.9847C525.971 72.2843 525.748 72.5033 525.452 72.5033C525.153 72.5033 524.934 72.2843 524.934 71.9847V65.1926C524.949 64.8161 525.168 64.674 525.452 64.674Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M525.453 67.6206C527.946 67.6206 529.959 65.6075 529.959 63.1143C529.959 60.621 527.946 58.608 525.453 58.608C522.959 58.608 520.946 60.621 520.946 63.1143C520.946 65.6114 522.975 67.6206 525.453 67.6206Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M525.453 67.6206C527.946 67.6206 529.959 65.6075 529.959 63.1143C529.959 60.621 527.946 58.608 525.453 58.608C522.959 58.608 520.946 60.621 520.946 63.1143C520.946 65.6114 522.975 67.6206 525.453 67.6206Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M526.793 66.3759C524.288 66.3759 522.287 64.3782 522.287 61.8696C522.287 60.9092 522.587 59.9488 523.171 59.2073C521.845 60.0256 520.95 61.4278 520.95 63.049C520.95 65.5538 522.952 67.5553 525.456 67.5553C526.935 67.5553 528.261 66.8139 529.079 65.7113C528.414 66.1416 527.596 66.3759 526.793 66.3759Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M526.793 66.3759C524.288 66.3759 522.287 64.3782 522.287 61.8696C522.287 60.9092 522.587 59.9488 523.171 59.2073C521.845 60.0256 520.95 61.4278 520.95 63.049C520.95 65.5538 522.952 67.5553 525.456 67.5553C526.935 67.5553 528.261 66.8139 529.079 65.7113C528.414 66.1416 527.596 66.3759 526.793 66.3759Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M523.247 79.2147C523.612 79.2147 523.989 79.5143 523.989 79.9561V89.7063C523.989 90.0713 523.689 90.4477 523.247 90.4477C522.882 90.4477 522.506 90.1481 522.506 89.7063V79.9561C522.506 79.5143 522.806 79.2147 523.247 79.2147Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M538.57 90.3586C538.935 90.3586 539.311 90.6582 539.311 91.1V100.85C539.311 101.215 539.012 101.592 538.57 101.592C538.205 101.592 537.828 101.292 537.828 100.85V91.1C537.828 90.6582 538.128 90.3586 538.57 90.3586Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M523.247 83.4214C526.793 83.4214 529.678 80.5517 529.678 76.9943C529.678 73.4369 526.797 70.5671 523.247 70.5671C519.702 70.5671 516.82 73.4369 516.82 76.9943C516.816 80.5555 519.702 83.4214 523.247 83.4214Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M523.247 83.4213C526.793 83.4213 529.678 80.5516 529.678 76.9942C529.678 73.4368 526.797 70.567 523.247 70.567C519.702 70.567 516.82 73.4368 516.82 76.9942C516.816 80.5554 519.702 83.4213 523.247 83.4213Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M538.57 94.5652C542.116 94.5652 545.001 91.6955 545.001 88.1381C545.001 84.5807 542.12 81.711 538.57 81.711C535.024 81.711 532.143 84.5807 532.143 88.1381C532.139 91.6994 535.024 94.5652 538.57 94.5652Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M525.168 81.7233C521.622 81.7233 518.741 78.8421 518.741 75.2962C518.741 73.894 519.183 72.5686 520.001 71.5313C518.08 72.6339 516.82 74.7007 516.82 77.0749C516.82 80.6208 519.702 83.502 523.247 83.502C525.391 83.502 527.235 82.4648 528.418 80.9166C527.377 81.3584 526.352 81.7233 525.168 81.7233Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M525.168 81.7234C521.622 81.7234 518.741 78.8421 518.741 75.2962C518.741 73.894 519.183 72.5687 520.001 71.5314C518.08 72.634 516.82 74.7008 516.82 77.0749C516.82 80.6208 519.702 83.5021 523.247 83.5021C525.391 83.5021 527.235 82.4648 528.418 80.9166C527.377 81.3584 526.352 81.7234 525.168 81.7234Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M540.491 92.8673C536.945 92.8673 534.064 89.986 534.064 86.4402C534.064 85.038 534.505 83.7126 535.324 82.6753C533.403 83.7779 532.143 85.8447 532.143 88.2189C532.143 91.7647 535.024 94.646 538.57 94.646C540.714 94.646 542.558 93.6088 543.741 92.0606C542.7 92.5023 541.674 92.8673 540.491 92.8673Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round" />
+        <path
+            d="M451.378 14.3898C451.389 14.5337 451.368 14.8626 451.334 14.9928C451.18 14.9928 451.159 14.9174 451.135 14.7838C450.906 15.1367 450.587 16.0343 450.344 15.2772C450.2 14.8284 450.388 14.2562 450.792 13.9821"
+            fill="white" />
+        <path
+            d="M451.378 14.3898C451.389 14.5337 451.368 14.8626 451.334 14.9928C451.18 14.9928 451.159 14.9174 451.135 14.7838C450.906 15.1367 450.587 16.0343 450.344 15.2772C450.2 14.8284 450.388 14.2562 450.792 13.9821"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M451.378 14.3898C451.389 14.5337 451.368 14.8626 451.334 14.9928C451.18 14.9928 451.159 14.9174 451.135 14.7838C450.906 15.1367 450.587 16.0343 450.344 15.2772C450.2 14.8284 450.388 14.2562 450.792 13.9821"
+            fill="white" />
+        <path
+            d="M451.378 14.3898C451.389 14.5337 451.368 14.8626 451.334 14.9928C451.18 14.9928 451.159 14.9174 451.135 14.7838C450.906 15.1367 450.587 16.0343 450.344 15.2772C450.2 14.8284 450.388 14.2562 450.792 13.9821"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M458.655 15.6645C458.765 15.9934 459.323 16.4217 458.854 16.6649C458.371 16.9184 458.032 16.127 457.977 15.7228"
+            fill="white" />
+        <path
+            d="M458.655 15.6645C458.765 15.9934 459.323 16.4217 458.854 16.6649C458.371 16.9184 458.032 16.127 457.977 15.7228"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M458.655 15.6645C458.765 15.9934 459.323 16.4217 458.854 16.6649C458.371 16.9184 458.032 16.127 457.977 15.7228"
+            fill="white" />
+        <path
+            d="M458.655 15.6645C458.765 15.9934 459.323 16.4217 458.854 16.6649C458.371 16.9184 458.032 16.127 457.977 15.7228"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M458.272 21.6017C458.251 21.8005 458.755 22.2835 458.844 22.5439C458.964 22.9071 458.833 23.2017 458.645 23.51C458.306 24.0582 458.316 23.7293 458.237 23.301C458.172 22.9276 457.919 22.6193 457.788 22.2801"
+            fill="white" />
+        <path
+            d="M458.272 21.6017C458.251 21.8005 458.755 22.2835 458.844 22.5439C458.964 22.9071 458.833 23.2017 458.645 23.51C458.306 24.0582 458.316 23.7293 458.237 23.301C458.172 22.9276 457.919 22.6193 457.788 22.2801"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M458.272 21.6017C458.251 21.8005 458.755 22.2835 458.844 22.5439C458.964 22.9071 458.833 23.2017 458.645 23.51C458.306 24.0582 458.316 23.7293 458.237 23.301C458.172 22.9276 457.919 22.6193 457.788 22.2801"
+            fill="white" />
+        <path
+            d="M458.272 21.6017C458.251 21.8005 458.755 22.2835 458.844 22.5439C458.964 22.9071 458.833 23.2017 458.645 23.51C458.306 24.0582 458.316 23.7293 458.237 23.301C458.172 22.9276 457.919 22.6193 457.788 22.2801"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path d="M454.222 25.2437C454.78 25.8912 452.444 27.4157 453.146 25.9357L454.222 25.2437Z" fill="white"
+            stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M458.799 22.4343C459.217 22.4994 459.162 23.0476 459.073 23.3662C459.008 23.5649 458.481 24.4626 458.306 24.3426C457.922 24.0583 458.436 23.63 458.535 23.4758C458.679 23.2566 458.964 22.818 458.854 22.544"
+            fill="white" />
+        <path
+            d="M458.799 22.4343C459.217 22.4994 459.162 23.0476 459.073 23.3662C459.008 23.5649 458.481 24.4626 458.306 24.3426C457.922 24.0583 458.436 23.63 458.535 23.4758C458.679 23.2566 458.964 22.818 458.854 22.544"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M458.799 22.4343C459.217 22.4994 459.162 23.0476 459.073 23.3662C459.008 23.5649 458.481 24.4626 458.306 24.3426C457.922 24.0583 458.436 23.63 458.535 23.4758C458.679 23.2566 458.964 22.818 458.854 22.544"
+            fill="white" />
+        <path
+            d="M458.799 22.4343C459.217 22.4994 459.162 23.0476 459.073 23.3662C459.008 23.5649 458.481 24.4626 458.306 24.3426C457.922 24.0583 458.436 23.63 458.535 23.4758C458.679 23.2566 458.964 22.818 458.854 22.544"
+            stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M454.606 10.5596C454.705 10.6486 456.144 9.10008 456.099 9.06582C456 8.96646 455.747 8.86711 455.716 8.7472C455.661 8.49367 455.517 8.0894 455.616 7.84615C455.979 7.99004 456.175 7.6166 456.144 7.26372C456.099 6.82519 455.377 6.44148 455.452 7.03418C454.924 7.15409 455.003 6.67101 454.451 6.29758C453.814 6.49629 453.759 6.25305 453.431 6.05777C453.156 6.77039 453.485 8.77802 454.352 8.39431C454.033 8.37375 454.362 8.40459 454.397 8.59302C454.352 8.6033 454.068 9.3399 454.057 9.3399"
+            fill="white" />
+        <path
+            d="M454.606 10.5596C454.705 10.6486 456.144 9.10008 456.099 9.06582C456 8.96646 455.747 8.86711 455.716 8.7472C455.661 8.49367 455.517 8.0894 455.616 7.84615C455.979 7.99004 456.175 7.6166 456.144 7.26372C456.099 6.82519 455.377 6.44148 455.452 7.03418C454.924 7.15409 455.003 6.67101 454.451 6.29758C453.814 6.49629 453.759 6.25305 453.431 6.05777C453.156 6.77039 453.485 8.77802 454.352 8.39431C454.033 8.37375 454.362 8.40459 454.397 8.59302C454.352 8.6033 454.068 9.3399 454.057 9.3399"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M454.606 10.5596C454.705 10.6486 456.144 9.10008 456.099 9.06582C456 8.96646 455.747 8.86711 455.716 8.7472C455.661 8.49367 455.517 8.0894 455.616 7.84615C455.979 7.99004 456.175 7.6166 456.144 7.26372C456.099 6.82519 455.377 6.44148 455.452 7.03418C454.924 7.15409 455.003 6.67101 454.451 6.29758C453.814 6.49629 453.759 6.25305 453.431 6.05777C453.156 6.77039 453.485 8.77802 454.352 8.39431C454.033 8.37375 454.362 8.40459 454.397 8.59302C454.352 8.6033 454.068 9.3399 454.057 9.3399"
+            fill="white" />
+        <path
+            d="M454.606 10.5596C454.705 10.6486 456.144 9.10008 456.099 9.06582C456 8.96646 455.747 8.86711 455.716 8.7472C455.661 8.49367 455.517 8.0894 455.616 7.84615C455.979 7.99004 456.175 7.6166 456.144 7.26372C456.099 6.82519 455.377 6.44148 455.452 7.03418C454.924 7.15409 455.003 6.67101 454.451 6.29758C453.814 6.49629 453.759 6.25305 453.431 6.05777C453.156 6.77039 453.485 8.77802 454.352 8.39431C454.033 8.37375 454.362 8.40459 454.397 8.59302C454.352 8.6033 454.068 9.3399 454.057 9.3399"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M453.585 5.79744C453.883 5.35891 454.078 5.34862 454.53 5.22528C454.948 5.10537 455.397 4.85186 455.86 5.11566C456.308 5.36919 456.332 6.0818 456.541 6.52033C456.771 7.04795 457.233 7.47619 457.353 8.03464C457.497 8.6479 457.189 8.82607 456.641 8.99052C456.202 9.12071 455.774 9.04534 455.555 8.62736C455.479 8.48347 455.411 8.13399 455.466 7.96954C455.555 7.71602 455.894 7.74001 456.024 7.53102C456.168 7.31175 455.949 6.8184 455.661 6.83895C455.541 6.84923 455.486 7.10275 455.277 7.11303C455.157 7.12331 454.804 6.93832 454.729 6.82869C454.64 6.71905 454.664 6.41071 454.53 6.37988C454.386 6.33534 454.201 6.64367 454.068 6.68821C453.54 6.85266 453.52 6.44838 453.441 6.06123"
+            fill="white" />
+        <path
+            d="M453.585 5.79744C453.883 5.35891 454.078 5.34862 454.53 5.22528C454.948 5.10537 455.397 4.85186 455.86 5.11566C456.308 5.36919 456.332 6.0818 456.541 6.52033C456.771 7.04794 457.233 7.47619 457.353 8.03464C457.497 8.6479 457.189 8.82607 456.641 8.99052C456.202 9.12071 455.774 9.04534 455.555 8.62736C455.479 8.48347 455.411 8.13399 455.466 7.96954C455.555 7.71602 455.894 7.74001 456.024 7.53102C456.168 7.31175 455.949 6.8184 455.661 6.83895C455.541 6.84923 455.486 7.10275 455.277 7.11303C455.157 7.12331 454.804 6.93832 454.729 6.82869C454.64 6.71905 454.664 6.41071 454.53 6.37988C454.386 6.33534 454.201 6.64367 454.068 6.68821C453.54 6.85266 453.52 6.44838 453.441 6.06123"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M453.585 5.79744C453.883 5.35891 454.078 5.34862 454.53 5.22528C454.948 5.10537 455.397 4.85186 455.86 5.11566C456.308 5.36919 456.332 6.0818 456.541 6.52033C456.771 7.04795 457.233 7.47619 457.353 8.03464C457.497 8.6479 457.189 8.82607 456.641 8.99052C456.202 9.12071 455.774 9.04534 455.555 8.62736C455.479 8.48347 455.411 8.13399 455.466 7.96954C455.555 7.71602 455.894 7.74001 456.024 7.53102C456.168 7.31175 455.949 6.8184 455.661 6.83895C455.541 6.84923 455.486 7.10275 455.277 7.11303C455.157 7.12331 454.804 6.93832 454.729 6.82869C454.64 6.71905 454.664 6.41071 454.53 6.37988C454.386 6.33534 454.201 6.64367 454.068 6.68821C453.54 6.85266 453.52 6.44838 453.441 6.06123"
+            fill="#DA3635" />
+        <path
+            d="M453.585 5.79744C453.883 5.35891 454.078 5.34862 454.53 5.22528C454.948 5.10537 455.397 4.85186 455.86 5.11566C456.308 5.36919 456.332 6.0818 456.541 6.52033C456.771 7.04794 457.233 7.47619 457.353 8.03464C457.497 8.6479 457.189 8.82607 456.641 8.99052C456.202 9.12071 455.774 9.04534 455.555 8.62736C455.479 8.48347 455.411 8.13399 455.466 7.96954C455.555 7.71602 455.894 7.74001 456.024 7.53102C456.168 7.31175 455.949 6.8184 455.661 6.83895C455.541 6.84923 455.486 7.10275 455.277 7.11303C455.157 7.12331 454.804 6.93832 454.729 6.82869C454.64 6.71905 454.664 6.41071 454.53 6.37988C454.386 6.33534 454.201 6.64367 454.068 6.68821C453.54 6.85266 453.52 6.44838 453.441 6.06123"
+            stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M456.099 9.0556C455.86 9.3845 455.253 10.0115 454.804 10.032C454.246 10.0663 454.133 8.94596 454.41 8.5828C453.893 8.19908 453.718 8.86714 453.588 9.25086C453.403 9.80931 453.18 10.2821 452.831 10.7549C452.458 11.2825 452.064 11.7964 451.776 12.3788C451.481 12.9921 451.094 13.4752 450.721 14.0234C451.039 14.1227 451.139 14.3077 451.358 14.5167C451.796 14.1981 452.159 13.5848 452.499 13.1566C452.838 12.7077 453.191 12.3001 453.4 11.7724C453.609 12.1904 453.475 12.8379 453.862 13.112C454.171 13.321 454.739 13.2867 455.102 13.2867C455.496 13.2867 456.048 13.4306 456.267 13.0778C456.576 12.5844 456.233 11.7827 456.466 11.2688C457.093 11.7416 457.288 13.3861 457.466 14.1227C457.566 14.5612 457.586 15.9111 458.179 15.9899C458.299 16.0002 458.696 15.8357 458.782 15.7603C458.981 15.5753 458.957 15.5959 458.892 15.3013C458.816 14.9621 458.583 14.664 458.498 14.3146C458.409 13.9514 458.354 13.578 458.313 13.208C458.203 12.2315 457.819 11.5292 457.446 10.6281C457.237 10.1108 457.172 9.61745 456.654 9.32282C456.473 9.1892 456.339 9.07958 456.099 9.0556Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M454.143 23.6642C454.308 23.7842 454.253 24.925 454.219 25.1888C454.174 25.5965 453.646 26.2954 453.163 26.2543C453.033 25.9254 453.263 25.5314 453.318 25.1991C453.372 24.836 453.362 24.4625 453.318 24.1028"
+            fill="white" />
+        <path
+            d="M454.143 23.6642C454.308 23.7842 454.253 24.925 454.219 25.1888C454.174 25.5965 453.646 26.2954 453.163 26.2543C453.033 25.9254 453.263 25.5314 453.318 25.1991C453.372 24.836 453.362 24.4625 453.318 24.1028"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M454.143 23.6642C454.308 23.7842 454.253 24.925 454.219 25.1888C454.174 25.5965 453.646 26.2954 453.163 26.2543C453.033 25.9254 453.263 25.5314 453.318 25.1991C453.372 24.836 453.362 24.4625 453.318 24.1028"
+            fill="white" />
+        <path
+            d="M454.143 23.6642C454.308 23.7842 454.253 24.925 454.219 25.1888C454.174 25.5965 453.646 26.2954 453.163 26.2543C453.033 25.9254 453.263 25.5314 453.318 25.1991C453.372 24.836 453.362 24.4625 453.318 24.1028"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M456.284 13.0092C456.987 13.7321 456.932 14.9963 456.802 15.9076C456.672 16.8087 455.935 18.0146 456.548 18.7923C456.922 19.2754 457.196 19.8236 457.579 20.2724C457.888 20.6356 458.357 21.0295 458.326 21.5674C458.316 21.7867 458.138 22.1259 457.932 22.2355C457.603 22.4102 457.484 22.1362 457.24 21.8724C456.778 21.355 456.449 20.8171 455.88 20.4129C455.233 19.9538 455.068 19.5564 454.924 18.8095C454.736 17.9324 454.695 17.0519 454.585 16.1851C454.386 17.1855 454.565 18.1928 454.386 19.1829C454.287 19.7653 454.167 20.3135 454.212 20.9165C454.266 21.6394 454.431 22.3554 454.386 23.0886C454.352 23.6059 454.287 23.88 453.783 24.0205C453.64 24.0547 453.376 24.1507 453.256 24.0856C452.958 23.9314 453.016 22.7015 452.992 22.4171C452.848 20.3546 452.334 18.2922 452.475 16.2057C452.519 15.6335 452.584 14.8764 452.749 14.3385C452.903 13.8212 453.187 13.0332 453.626 12.6906C453.866 13.3038 454.338 13.273 454.986 13.2627C455.407 13.249 455.976 13.3244 456.284 13.0092Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M448.323 23.3232C448.796 23.5116 448.597 24.8923 448.642 25.4096C448.707 26.201 447.71 26.386 446.963 25.9132C446.469 25.5946 446.25 24.2653 446.206 23.676C446.141 22.6448 447.754 22.5694 448.104 23.4225"
+            fill="white" />
+        <path
+            d="M448.323 23.3232C448.796 23.5116 448.597 24.8923 448.642 25.4096C448.707 26.201 447.71 26.386 446.963 25.9132C446.469 25.5946 446.25 24.2653 446.206 23.676C446.141 22.6448 447.754 22.5694 448.104 23.4225"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M448.323 23.3232C448.796 23.5116 448.597 24.8923 448.642 25.4096C448.707 26.201 447.71 26.386 446.963 25.9132C446.469 25.5946 446.25 24.2653 446.206 23.676C446.141 22.6448 447.754 22.5694 448.104 23.4225"
+            fill="white" />
+        <path
+            d="M448.323 23.3232C448.796 23.5116 448.597 24.8923 448.642 25.4096C448.707 26.201 447.71 26.386 446.963 25.9132C446.469 25.5946 446.25 24.2653 446.206 23.676C446.141 22.6448 447.754 22.5694 448.104 23.4225"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M448.611 25.5261C448.138 26.6327 446.853 25.5706 446.579 25.9989C446.38 26.3072 446.38 27.2391 446.339 27.6126C446.264 28.2156 446.284 28.8528 446.284 29.466C446.284 30.3568 445.955 32.2206 447.021 32.6489C448.371 33.197 448.953 31.0592 448.919 30.1239C448.885 29.3873 448.765 28.6644 448.775 27.9175C448.785 27.2254 449.169 25.9544 448.556 25.437"
+            fill="white" />
+        <path
+            d="M448.611 25.5261C448.138 26.6327 446.853 25.5706 446.579 25.9989C446.38 26.3072 446.38 27.2391 446.339 27.6126C446.264 28.2156 446.284 28.8528 446.284 29.466C446.284 30.3568 445.955 32.2206 447.021 32.6489C448.371 33.197 448.953 31.0592 448.919 30.1239C448.885 29.3873 448.765 28.6644 448.775 27.9175C448.785 27.2254 449.169 25.9544 448.556 25.437"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M448.611 25.5261C448.138 26.6327 446.853 25.5706 446.579 25.9989C446.38 26.3072 446.38 27.2391 446.339 27.6126C446.264 28.2156 446.284 28.8528 446.284 29.466C446.284 30.3568 445.955 32.2206 447.021 32.6489C448.371 33.197 448.953 31.0592 448.919 30.1239C448.885 29.3873 448.765 28.6644 448.775 27.9175C448.785 27.2254 449.169 25.9544 448.556 25.437"
+            fill="white" />
+        <path
+            d="M448.611 25.5261C448.138 26.6327 446.853 25.5706 446.579 25.9989C446.38 26.3072 446.38 27.2391 446.339 27.6126C446.264 28.2156 446.284 28.8528 446.284 29.466C446.284 30.3568 445.955 32.2206 447.021 32.6489C448.371 33.197 448.953 31.0592 448.919 30.1239C448.885 29.3873 448.765 28.6644 448.775 27.9175C448.785 27.2254 449.169 25.9544 448.556 25.437"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M452.177 32.0905C452.253 32.2652 452.376 32.6386 452.472 32.8134C451.715 33.0429 451.242 33.341 451.307 32.2309"
+            fill="white" />
+        <path
+            d="M452.177 32.0905C452.253 32.2652 452.376 32.6386 452.472 32.8134C451.715 33.0429 451.242 33.341 451.307 32.2309"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M452.177 32.0905C452.253 32.2652 452.376 32.6386 452.472 32.8134C451.715 33.0429 451.242 33.341 451.307 32.2309"
+            fill="white" />
+        <path
+            d="M452.177 32.0905C452.253 32.2652 452.376 32.6386 452.472 32.8134C451.715 33.0429 451.242 33.341 451.307 32.2309"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M444.712 32.015C444.417 32.2891 444.558 33.2895 443.89 33.0565C443.197 32.803 443.78 32.2993 443.879 31.782C444.153 31.8814 444.503 31.8608 444.712 32.015Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M444.249 33.0325C444.513 33.3819 444.359 33.6902 444.105 33.8787C444.116 33.8684 443.314 34.0534 443.239 34.0089C442.581 33.68 443.478 32.9879 443.602 32.6385"
+            fill="white" />
+        <path
+            d="M444.249 33.0325C444.513 33.3819 444.359 33.6902 444.105 33.8787C444.116 33.8684 443.314 34.0534 443.239 34.0089C442.581 33.68 443.478 32.9879 443.602 32.6385"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M444.249 33.0325C444.513 33.3819 444.359 33.6902 444.105 33.8787C444.116 33.8684 443.314 34.0534 443.239 34.0089C442.581 33.68 443.478 32.9879 443.602 32.6385"
+            fill="white" />
+        <path
+            d="M444.249 33.0325C444.513 33.3819 444.359 33.6902 444.105 33.8787C444.116 33.8684 443.314 34.0534 443.239 34.0089C442.581 33.68 443.478 32.9879 443.602 32.6385"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M451.66 33.0327C451.626 33.2862 451.595 33.6699 451.55 33.8994C451.595 33.8652 451.694 33.7898 451.749 33.7555C451.495 34.9512 453.208 33.6562 452.352 32.8785"
+            fill="white" />
+        <path
+            d="M451.66 33.0327C451.626 33.2862 451.595 33.6699 451.55 33.8994C451.595 33.8652 451.694 33.7898 451.749 33.7555C451.495 34.9512 453.208 33.6562 452.352 32.8785"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M451.66 33.0327C451.626 33.2862 451.595 33.6699 451.55 33.8994C451.595 33.8652 451.694 33.7898 451.749 33.7555C451.495 34.9512 453.208 33.6562 452.352 32.8785"
+            fill="white" />
+        <path
+            d="M451.66 33.0327C451.626 33.2862 451.595 33.6699 451.55 33.8994C451.595 33.8652 451.694 33.7898 451.749 33.7555C451.495 34.9512 453.208 33.6562 452.352 32.8785"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M450.146 39.4426C450.43 40.6383 449.214 40.813 449.433 39.5317C449.642 39.542 449.861 39.4221 450.005 39.3775"
+            fill="white" />
+        <path
+            d="M450.146 39.4426C450.43 40.6383 449.214 40.813 449.433 39.5317C449.642 39.542 449.861 39.4221 450.005 39.3775"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M450.146 39.4426C450.43 40.6383 449.214 40.813 449.433 39.5317C449.642 39.542 449.861 39.4221 450.005 39.3775"
+            fill="white" />
+        <path
+            d="M450.146 39.4426C450.43 40.6383 449.214 40.813 449.433 39.5317C449.642 39.542 449.861 39.4221 450.005 39.3775"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M446.36 41.1215C446.295 41.166 446.216 41.1866 446.161 41.2516C446.634 41.3818 446.654 41.8443 446.874 42.2178C447.227 41.6456 446.874 41.1317 446.216 41.1317"
+            fill="white" />
+        <path
+            d="M446.36 41.1215C446.295 41.166 446.216 41.1866 446.161 41.2516C446.634 41.3818 446.654 41.8443 446.874 42.2178C447.227 41.6456 446.874 41.1317 446.216 41.1317"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M446.36 41.1215C446.295 41.166 446.216 41.1866 446.161 41.2516C446.634 41.3818 446.654 41.8443 446.874 42.2178C447.227 41.6456 446.874 41.1317 446.216 41.1317"
+            fill="white" />
+        <path
+            d="M446.36 41.1215C446.295 41.166 446.216 41.1866 446.161 41.2516C446.634 41.3818 446.654 41.8443 446.874 42.2178C447.227 41.6456 446.874 41.1317 446.216 41.1317"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M446.788 42.1424C446.558 41.2106 445.678 40.7926 444.756 40.6932C444.767 41.4298 446.271 43.2628 446.942 42.2178"
+            fill="white" />
+        <path
+            d="M446.788 42.1424C446.558 41.2106 445.678 40.7926 444.756 40.6932C444.767 41.4298 446.271 43.2628 446.942 42.2178"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M446.788 42.1424C446.558 41.2106 445.678 40.7926 444.756 40.6932C444.767 41.4298 446.271 43.2628 446.942 42.2178"
+            fill="white" />
+        <path
+            d="M446.788 42.1424C446.558 41.2106 445.678 40.7926 444.756 40.6932C444.767 41.4298 446.271 43.2628 446.942 42.2178"
+            stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M449.344 40.1004C449.543 40.4088 449.916 40.3848 450.135 40.1107C450.474 40.9775 449.268 40.9775 448.652 40.9021C447.247 40.7479 449.09 40.4739 449.2 39.9702C449.409 40.1244 449.728 40.2237 450.012 40.1792"
+            fill="white" />
+        <path
+            d="M449.344 40.1004C449.543 40.4088 449.916 40.3848 450.135 40.1107C450.474 40.9775 449.268 40.9775 448.652 40.9021C447.247 40.7479 449.09 40.4739 449.2 39.9702C449.409 40.1244 449.728 40.2237 450.012 40.1792"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M449.344 40.1004C449.543 40.4088 449.916 40.3848 450.135 40.1107C450.474 40.9775 449.268 40.9775 448.652 40.9021C447.247 40.7479 449.09 40.4739 449.2 39.9702C449.409 40.1244 449.728 40.2237 450.012 40.1792"
+            fill="white" />
+        <path
+            d="M449.344 40.1004C449.543 40.4088 449.916 40.3848 450.135 40.1107C450.474 40.9775 449.268 40.9775 448.652 40.9021C447.247 40.7479 449.09 40.4739 449.2 39.9702C449.409 40.1244 449.728 40.2237 450.012 40.1792"
+            stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M447.819 24.0016C447.84 23.6076 448.412 23.563 448.477 23.9262C448.511 24.0564 447.905 24.8581 447.806 24.8821C447.333 24.9917 447.038 24.19 446.521 24.2894C445.894 24.4196 446.058 25.1904 446.466 25.4953C447.367 26.1977 447.871 25.1562 448.364 24.5737C448.583 24.3202 448.727 24.4641 448.837 24.0564C448.902 23.8166 448.792 23.5391 448.748 23.3198C448.638 22.7168 448.528 22.2646 447.901 22.0899C447.364 21.9357 446.617 22.0556 446.199 22.3845C445.596 22.8573 445.836 23.8645 446.397 23.1314C446.696 23.5596 447.353 23.8337 447.867 23.6247"
+            fill="white" />
+        <path
+            d="M447.819 24.0016C447.84 23.6076 448.412 23.563 448.477 23.9262C448.511 24.0564 447.905 24.8581 447.806 24.8821C447.333 24.9917 447.038 24.19 446.521 24.2894C445.894 24.4196 446.058 25.1904 446.466 25.4953C447.367 26.1977 447.871 25.1562 448.364 24.5737C448.583 24.3202 448.727 24.4641 448.837 24.0564C448.902 23.8166 448.792 23.5391 448.748 23.3198C448.638 22.7168 448.528 22.2646 447.901 22.0899C447.364 21.9357 446.617 22.0556 446.199 22.3845C445.596 22.8573 445.836 23.8645 446.397 23.1314C446.696 23.5596 447.353 23.8337 447.867 23.6247"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M447.819 24.0016C447.84 23.6076 448.412 23.563 448.477 23.9262C448.511 24.0564 447.905 24.8581 447.806 24.8821C447.333 24.9917 447.038 24.19 446.521 24.2894C445.894 24.4196 446.058 25.1904 446.466 25.4953C447.367 26.1977 447.871 25.1562 448.364 24.5737C448.583 24.3202 448.727 24.4641 448.837 24.0564C448.902 23.8166 448.792 23.5391 448.748 23.3198C448.638 22.7168 448.528 22.2646 447.901 22.0899C447.364 21.9357 446.617 22.0556 446.199 22.3845C445.596 22.8573 445.836 23.8645 446.397 23.1314C446.696 23.5596 447.353 23.8337 447.867 23.6247"
+            fill="#DA3635" />
+        <path
+            d="M447.819 24.0016C447.84 23.6076 448.412 23.563 448.477 23.9262C448.511 24.0564 447.905 24.8581 447.806 24.8821C447.333 24.9917 447.038 24.19 446.521 24.2894C445.894 24.4196 446.058 25.1904 446.466 25.4953C447.367 26.1977 447.871 25.1562 448.364 24.5737C448.583 24.3202 448.727 24.4641 448.837 24.0564C448.902 23.8166 448.792 23.5391 448.748 23.3198C448.638 22.7168 448.528 22.2646 447.901 22.0899C447.364 21.9357 446.617 22.0556 446.199 22.3845C445.596 22.8573 445.836 23.8645 446.397 23.1314C446.696 23.5596 447.353 23.8337 447.867 23.6247"
+            stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M446.569 25.7455C446.833 26.3828 446.524 27.5887 446.603 28.3356C446.692 29.2572 446.713 30.1788 446.713 31.1244C446.713 31.7274 446.668 31.861 447.12 32.1899C447.648 32.5839 448.052 32.6284 448.241 32.0802C448.549 31.1689 448.121 29.7642 448.097 28.8221C448.076 27.9553 449.152 26.0676 448.724 25.3995C449.899 25.838 450.293 26.9138 450.731 27.9998C451.149 29.0653 451.807 30.2062 452.081 31.3128C452.17 31.6657 452.321 32.07 452.037 32.2995C451.674 32.6079 451.204 32.2892 451.05 32.046C450.851 31.7274 450.841 30.8606 450.721 30.4769C450.567 29.9287 450.372 29.4354 450.063 28.9831C449.865 29.6409 449.998 30.4426 450.084 31.1107C450.139 31.5595 450.457 32.6798 450.293 33.0875C450.173 33.3958 449.57 33.8001 449.361 34.2524C449.121 34.7457 448.669 35.3487 448.539 35.8866C448.23 37.1371 449.714 37.9593 450.077 39.0145C450.286 39.6415 449.813 39.8505 449.299 39.4531C448.782 39.0591 448.617 38.158 447.98 37.9593C447.343 38.9152 447.353 40.361 446.98 41.4162C445.003 41.1764 447.264 37.3563 447.045 36.4998C446.925 36.0065 446.387 35.7324 446.278 35.1945C446.188 34.7217 446.377 34.2181 446.442 33.7556C446.562 32.9436 446.312 33.0875 446.048 32.5256C445.764 31.9227 445.818 30.936 445.839 30.2884C445.664 30.542 444.379 33.2074 443.872 31.9912C443.698 31.5835 445.013 29.7094 445.137 29.2915C445.455 28.1266 444.917 25.5811 446.641 25.8243"
+            fill="white" />
+        <path
+            d="M446.569 25.7455C446.833 26.3828 446.524 27.5887 446.603 28.3356C446.692 29.2572 446.713 30.1788 446.713 31.1244C446.713 31.7274 446.668 31.861 447.12 32.1899C447.648 32.5839 448.052 32.6284 448.241 32.0802C448.549 31.1689 448.121 29.7642 448.097 28.8221C448.076 27.9553 449.152 26.0676 448.724 25.3995C449.899 25.838 450.293 26.9138 450.731 27.9998C451.149 29.0653 451.807 30.2062 452.081 31.3128C452.17 31.6657 452.321 32.07 452.037 32.2995C451.674 32.6079 451.204 32.2892 451.05 32.046C450.851 31.7274 450.841 30.8606 450.721 30.4769C450.567 29.9287 450.372 29.4354 450.063 28.9831C449.865 29.6409 449.998 30.4426 450.084 31.1107C450.139 31.5595 450.457 32.6798 450.293 33.0875C450.173 33.3958 449.57 33.8001 449.361 34.2524C449.121 34.7457 448.669 35.3487 448.539 35.8866C448.23 37.1371 449.714 37.9593 450.077 39.0145C450.286 39.6415 449.813 39.8505 449.299 39.4531C448.782 39.0591 448.617 38.158 447.98 37.9593C447.343 38.9152 447.353 40.361 446.98 41.4162C445.003 41.1764 447.264 37.3563 447.045 36.4998C446.925 36.0065 446.387 35.7324 446.278 35.1945C446.188 34.7217 446.377 34.2181 446.442 33.7556C446.562 32.9436 446.312 33.0875 446.048 32.5256C445.764 31.9227 445.818 30.936 445.839 30.2884C445.664 30.542 444.379 33.2074 443.872 31.9912C443.698 31.5835 445.013 29.7094 445.137 29.2915C445.455 28.1266 444.917 25.5811 446.641 25.8243"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M446.569 25.7455C446.833 26.3828 446.524 27.5887 446.603 28.3356C446.692 29.2572 446.713 30.1788 446.713 31.1244C446.713 31.7274 446.668 31.861 447.12 32.1899C447.648 32.5839 448.052 32.6284 448.241 32.0802C448.549 31.1689 448.121 29.7642 448.097 28.8221C448.076 27.9553 449.152 26.0676 448.724 25.3995C449.899 25.838 450.293 26.9138 450.731 27.9998C451.149 29.0653 451.807 30.2062 452.081 31.3128C452.17 31.6657 452.321 32.07 452.037 32.2995C451.674 32.6079 451.204 32.2892 451.05 32.046C450.851 31.7274 450.841 30.8606 450.721 30.4769C450.567 29.9287 450.372 29.4354 450.063 28.9831C449.865 29.6409 449.998 30.4426 450.084 31.1107C450.139 31.5595 450.457 32.6798 450.293 33.0875C450.173 33.3958 449.57 33.8001 449.361 34.2524C449.121 34.7457 448.669 35.3487 448.539 35.8866C448.23 37.1371 449.714 37.9593 450.077 39.0145C450.286 39.6415 449.813 39.8505 449.299 39.4531C448.782 39.0591 448.617 38.158 447.98 37.9593C447.343 38.9152 447.353 40.361 446.98 41.4162C445.003 41.1764 447.264 37.3563 447.045 36.4998C446.925 36.0065 446.387 35.7324 446.278 35.1945C446.188 34.7217 446.377 34.2181 446.442 33.7556C446.562 32.9436 446.312 33.0875 446.048 32.5256C445.764 31.9227 445.818 30.936 445.839 30.2884C445.664 30.542 444.379 33.2074 443.872 31.9912C443.698 31.5835 445.013 29.7094 445.137 29.2915C445.455 28.1266 444.917 25.5811 446.641 25.8243"
+            fill="white" />
+        <path
+            d="M446.569 25.7455C446.833 26.3828 446.524 27.5887 446.603 28.3356C446.692 29.2572 446.713 30.1788 446.713 31.1244C446.713 31.7274 446.668 31.861 447.12 32.1899C447.648 32.5839 448.052 32.6284 448.241 32.0802C448.549 31.1689 448.121 29.7642 448.097 28.8221C448.076 27.9553 449.152 26.0676 448.724 25.3995C449.899 25.838 450.293 26.9138 450.731 27.9998C451.149 29.0653 451.807 30.2062 452.081 31.3128C452.17 31.6657 452.321 32.07 452.037 32.2995C451.674 32.6079 451.204 32.2892 451.05 32.046C450.851 31.7274 450.841 30.8606 450.721 30.4769C450.567 29.9287 450.372 29.4354 450.063 28.9831C449.865 29.6409 449.998 30.4426 450.084 31.1107C450.139 31.5595 450.457 32.6798 450.293 33.0875C450.173 33.3958 449.57 33.8001 449.361 34.2524C449.121 34.7457 448.669 35.3487 448.539 35.8866C448.23 37.1371 449.714 37.9593 450.077 39.0145C450.286 39.6415 449.813 39.8505 449.299 39.4531C448.782 39.0591 448.617 38.158 447.98 37.9593C447.343 38.9152 447.353 40.361 446.98 41.4162C445.003 41.1764 447.264 37.3563 447.045 36.4998C446.925 36.0065 446.387 35.7324 446.278 35.1945C446.188 34.7217 446.377 34.2181 446.442 33.7556C446.562 32.9436 446.312 33.0875 446.048 32.5256C445.764 31.9227 445.818 30.936 445.839 30.2884C445.664 30.542 444.379 33.2074 443.872 31.9912C443.698 31.5835 445.013 29.7094 445.137 29.2915C445.455 28.1266 444.917 25.5811 446.641 25.8243"
+            stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
+        <path
+            d="M173.818 106.732C175.386 107.708 175.395 109.292 173.838 110.268C172.28 111.244 169.748 111.244 168.18 110.268C166.613 109.292 166.606 107.708 168.164 106.732C169.718 105.756 172.251 105.756 173.818 106.732Z"
+            fill="white" stroke="#706F6F" stroke-miterlimit="10" />
+    </g>
+    <defs>
+        <clipPath id="clip0_9947_236696">
+            <rect width="595" height="122" rx="8" fill="white" />
+        </clipPath>
+    </defs>
+</svg>
\ No newline at end of file