diff --git a/src/app/form/form-view/form-view.module.ts b/src/app/form/form-view/form-view.module.ts
index 71ce09b819cea8e97ff3888687c33aa06fa4e351..4bb05cce3d723a956147a75f0e4c89e9dba1a81b 100644
--- a/src/app/form/form-view/form-view.module.ts
+++ b/src/app/form/form-view/form-view.module.ts
@@ -32,7 +32,6 @@ import { StructureHoursComponent } from './structure-form/structure-hours/struct
 import { StructureLabelsComponent } from './structure-form/structure-labels/structure-labels.component';
 import { StructureNameAndAddressComponent } from './structure-form/structure-name-and-address/structure-name-and-address.component';
 import { structureDigitalHelpingAccompanimentOtherComponent } from './structure-form/structure-public-target-other/structure-public-target-other.component';
-import { StructurePublicTargetComponent } from './structure-form/structure-public-target/structure-public-target.component';
 import { StructureTrainingPriceComponent } from './structure-form/structure-training-price/structure-training-price.component';
 import { StructureTrainingTypeComponent } from './structure-form/structure-training-type/structure-training-type.component';
 import { StructureTypeComponent } from './structure-form/structure-type/structure-type.component';
@@ -61,7 +60,6 @@ import { StructureSolidarityMaterialComponent } from './structure-form/structure
     StructureAccessModalityComponent,
     StructureHoursComponent,
     StructureWebAndSocialNetworkComponent,
-    StructurePublicTargetComponent,
     structureDigitalHelpingAccompanimentOtherComponent,
     StructureDigitalHelpingAccompanimentComponent,
     StructureTrainingPriceComponent,
diff --git a/src/app/form/form-view/structure-form/structure-public-target/structure-public-target.component.ts b/src/app/form/form-view/structure-form/structure-public-target/structure-public-target.component.ts
index 6471b6372918ece4d45c0c491bcacd718d97b7f5..f1fbd1c6f20883fee4370c2ed640e0156597fc5c 100644
--- a/src/app/form/form-view/structure-form/structure-public-target/structure-public-target.component.ts
+++ b/src/app/form/form-view/structure-form/structure-public-target/structure-public-target.component.ts
@@ -1,4 +1,4 @@
-import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
+import { Component, EventEmitter, Input, OnChanges, OnInit, Output, SimpleChanges } from '@angular/core';
 import { UntypedFormGroup } from '@angular/forms';
 import { ButtonType } from '../../../../shared/components/button/buttonType.enum';
 import { Category } from '../../../../structure-list/models/category.model';
@@ -7,7 +7,7 @@ import { Category } from '../../../../structure-list/models/category.model';
   selector: 'app-structure-public-target',
   templateUrl: './structure-public-target.component.html',
 })
-export class StructurePublicTargetComponent implements OnInit {
+export class StructurePublicTargetComponent implements OnInit, OnChanges {
   @Input() structureForm: UntypedFormGroup;
   @Input() age: Category;
   @Input() languageAndIlliteracy: Category;
@@ -23,6 +23,9 @@ export class StructurePublicTargetComponent implements OnInit {
   ngOnInit(): void {
     this.validateForm.emit();
   }
+  ngOnChanges(changes: SimpleChanges): void {
+    if (changes.isMandatoryFields) this.validateForm.emit();
+  }
 
   public updateChoicePublic(choice: string, formControlName: string) {
     this.updateChoice.emit({ formControlName: `categories.${formControlName}`, choice });
diff --git a/src/app/form/orientation-form-view/enums/MeetingRDVSSteps.enum.ts b/src/app/form/orientation-form-view/enums/MeetingRDVSSteps.enum.ts
new file mode 100644
index 0000000000000000000000000000000000000000..68d1de1970cc3c875b7d33e818be0cb03ad2efd2
--- /dev/null
+++ b/src/app/form/orientation-form-view/enums/MeetingRDVSSteps.enum.ts
@@ -0,0 +1,12 @@
+export enum MeetingRDVSSteps {
+  structureOrientator,
+  publicTypeMandatory,
+  publicTypeOptional,
+  pmrAccess,
+  digitalPass,
+  location,
+  rdvsDoing,
+  //Maybe replace callback page with lodaer on recap
+  rdvsCallback,
+  recap,
+}
diff --git a/src/app/form/orientation-form-view/enums/onlineDemarchesMeetingSteps.enum.ts b/src/app/form/orientation-form-view/enums/onlineDemarchesMeetingSteps.enum.ts
deleted file mode 100644
index 765fb2414211fe7abb1ecc82821929d8f987f9c9..0000000000000000000000000000000000000000
--- a/src/app/form/orientation-form-view/enums/onlineDemarchesMeetingSteps.enum.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-export enum OnlineDemarchesMeetingSteps {
-  structureOrientator,
-  publicType,
-  pmrAccess,
-  digitalPass,
-  location,
-}
diff --git a/src/app/form/orientation-form-view/global-components/mediation-recap/mediation-recap.component.html b/src/app/form/orientation-form-view/global-components/mediation-recap/mediation-recap.component.html
index c3d1897f482352c4a0516f23867e10a83ca6bd7b..8abe05c6a39705eee6b32ad94e4a3f24f8826510 100644
--- a/src/app/form/orientation-form-view/global-components/mediation-recap/mediation-recap.component.html
+++ b/src/app/form/orientation-form-view/global-components/mediation-recap/mediation-recap.component.html
@@ -4,8 +4,8 @@
     <h3>Orienté par</h3>
     <div class="content">
       <div class="infos">{{ orientator.structureName }}</div>
-      <div class="infos">{{ orientator.structureMail }}</div>
-      <div class="infos">{{ orientator.structurePhone }}</div>
+      <div class="infos" *ngIf="orientator.structureMail">{{ orientator.structureMail }}</div>
+      <div class="infos" *ngIf="orientator.structurePhone">{{ orientator.structurePhone }}</div>
     </div>
   </div>
   <div class="beneficiary header">
diff --git a/src/app/form/orientation-form-view/global-components/mediation-recap/mediation-recap.component.ts b/src/app/form/orientation-form-view/global-components/mediation-recap/mediation-recap.component.ts
index b27873b73a6c854615cb2ba27f3ddc9d0a775b3d..aa437987eb5f2429a12ef7f43ebcf95b0ac5c299 100644
--- a/src/app/form/orientation-form-view/global-components/mediation-recap/mediation-recap.component.ts
+++ b/src/app/form/orientation-form-view/global-components/mediation-recap/mediation-recap.component.ts
@@ -48,7 +48,7 @@ export class MediationRecapComponent implements OnInit {
   }
 
   public isOrientator(): boolean {
-    return this.orientator?.structureMail ? true : false;
+    return this.orientator?.structureName ? true : false;
   }
 
   public handleOnlineMediationRecap(): void {
diff --git a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html
index 882447658de14b1d8edf54d05b9feff1e79687f4..8c8c235f7b9f46f9e1cac97700ba241e2071590d 100644
--- a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html
+++ b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html
@@ -1,19 +1,37 @@
 <div class="footerForm" fxLayout="row" fxLayoutGap="10px" fxLayoutAlign="center center">
-  <app-button
-    *ngIf="currentStep !== null"
-    (action)="prevPage()"
-    [text]="'Précédent'"
-    [iconType]="'form'"
-    [iconBtn]="'chevronLeft'"
-  ></app-button>
-  <app-button
-    (action)="nextPage()"
-    [text]="isLastStep ? 'Terminer' : 'Suivant'"
-    [iconBtn]="!isLastStep ? 'chevronRight' : 'finish'"
-    [iconType]="'form'"
-    [iconPos]="!isLastStep ? 'right' : 'left'"
-    [style]="buttonTypeEnum.Primary"
-    [disabled]="!isPageValid"
-  >
-  </app-button>
+  <ng-container *ngIf="!shouldResetOrientation">
+    <app-button
+      *ngIf="currentStep !== null && !hideNavButtons"
+      (action)="prevPage()"
+      [text]="'Précédent'"
+      [iconType]="'form'"
+      [iconBtn]="'chevronLeft'"
+    ></app-button>
+    <app-button
+      *ngIf="!isRdvsWindowStep && !hideNavButtons"
+      (action)="nextPage()"
+      [text]="isLastStep ? 'Terminer' : 'Suivant'"
+      [iconBtn]="!isLastStep ? 'chevronRight' : 'finish'"
+      [iconType]="'form'"
+      [iconPos]="!isLastStep ? 'right' : 'left'"
+      [style]="buttonTypeEnum.Primary"
+      [disabled]="!isPageValid"
+    >
+    </app-button>
+    <app-button
+      *ngIf="isRdvsWindowStep && !hideNavButtons"
+      (action)="nextPage()"
+      [text]="'RDV Solidarités'"
+      [iconBtn]="'redirect'"
+      [iconType]="'form'"
+      [iconPos]="'left'"
+      [style]="buttonTypeEnum.RdvsButton"
+      [disabled]="!isPageValid"
+    >
+    </app-button>
+  </ng-container>
+  <ng-container *ngIf="shouldResetOrientation">
+    <app-button (action)="goCarto()" [text]="'Aller à la cartographie'"> </app-button>
+    <app-button (action)="resetOrientation()" [text]="'Recommencer'" [style]="buttonTypeEnum.Primary"> </app-button>
+  </ng-container>
 </div>
diff --git a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.ts b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.ts
index d126625ef9f7729a881f0fc1014a057e2a069451..6cf5092f653f175cbdc6611cb7ff66fa2bea4098 100644
--- a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.ts
+++ b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.ts
@@ -1,4 +1,5 @@
 import { Component, EventEmitter, Input, Output } from '@angular/core';
+import { ActivatedRoute, Router } from '@angular/router';
 import { ButtonType } from '../../../../shared/components/button/buttonType.enum';
 import { NeedsType } from '../../enums/needs.enum';
 import { OnlineDemarche } from '../../enums/onlineDemarche.enum';
@@ -15,12 +16,16 @@ export class NavigationComponent {
   @Input() isPageValid: boolean;
   @Input() needType: NeedsType;
   @Input() isLastStep = false;
+  @Input() isRdvsWindowStep = false;
+  @Input() hideNavButtons = false;
+  @Input() shouldResetOrientation = false;
+
   @Output() goNext = new EventEmitter<any>();
   @Output() goPrev = new EventEmitter<any>();
 
   public buttonTypeEnum = ButtonType;
   public NeedsTypeEnum = NeedsType;
-
+  constructor(private router: Router, private route: ActivatedRoute) {}
   public nextPage(isPrint?: boolean) {
     this.goNext.emit(isPrint);
   }
@@ -28,4 +33,12 @@ export class NavigationComponent {
   public prevPage() {
     this.goPrev.emit();
   }
+  public goCarto(): void {
+    this.router.navigateByUrl('/acteurs');
+  }
+  public resetOrientation(): void {
+    this.router.routeReuseStrategy.shouldReuseRoute = () => false;
+    this.router.onSameUrlNavigation = 'reload';
+    this.router.navigate(['./'], { relativeTo: this.route });
+  }
 }
diff --git a/src/app/form/orientation-form-view/global-components/structure-orientator/structure-orientator.component.html b/src/app/form/orientation-form-view/global-components/structure-orientator/structure-orientator.component.html
index 15f7876fc9f1719e7233468b659200e73ec2d22e..abfd6a2d1b6b398c16ba3e30d44a60c0876c5beb 100644
--- a/src/app/form/orientation-form-view/global-components/structure-orientator/structure-orientator.component.html
+++ b/src/app/form/orientation-form-view/global-components/structure-orientator/structure-orientator.component.html
@@ -32,7 +32,7 @@
           (input)="updatedForm('structureName', $event.target.value)"
         />
         <app-svg-icon
-          *ngIf="form.get('structureName').valid"
+          *ngIf="form.get('structureName').value && form.get('structureName').valid"
           [iconClass]="'validation'"
           [type]="'form'"
           [icon]="'validate'"
@@ -78,7 +78,7 @@
           type="phone"
           autocomplete="on"
           (input)="updatedForm('structurePhone', $event.target.value)"
-          formControlName="phone"
+          formControlName="structurePhone"
           class="form-input"
         />
         <app-svg-icon
diff --git a/src/app/form/orientation-form-view/global-components/structure-orientator/structure-orientator.component.ts b/src/app/form/orientation-form-view/global-components/structure-orientator/structure-orientator.component.ts
index fca8b849c7fa8d26f3030dbfbb248772ad1247d2..44e1a7cf071183cdd56b38615fe9ac9ee2769fae 100644
--- a/src/app/form/orientation-form-view/global-components/structure-orientator/structure-orientator.component.ts
+++ b/src/app/form/orientation-form-view/global-components/structure-orientator/structure-orientator.component.ts
@@ -3,6 +3,7 @@ import { UntypedFormGroup } from '@angular/forms';
 import { Structure } from '../../../../models/structure.model';
 import { User } from '../../../../models/user.model';
 import { StructureService } from '../../../../services/structure.service';
+import { Utils } from '../../../../utils/utils';
 
 @Component({
   selector: 'app-structure-orientator',
@@ -16,12 +17,12 @@ export class StructureOrientatorComponent implements OnInit {
   public structuresLinked: Structure[] = [];
   public hasStructures: boolean = false;
   public selected: Structure;
-  constructor(private structureService: StructureService) {}
+  constructor(private structureService: StructureService, private utils: Utils) {}
 
   ngOnInit(): void {
+    this.form = this.form.get('structureOrientator') as UntypedFormGroup;
     if (this.profile?.structuresLink?.length) {
       this.hasStructures = true;
-
       for (let structure of this.profile.structuresLink) {
         this.structureService
           .getStructure(structure)
@@ -34,11 +35,19 @@ export class StructureOrientatorComponent implements OnInit {
 
   public select(structure: Structure): void {
     this.selected = structure;
-    this.form.get('structureOrientator').patchValue({
+    this.form.patchValue({
       structureName: structure.structureName,
       structureMail: structure.contactMail,
       structurePhone: structure.contactPhone,
     });
-    this.validatePage.emit(this.form.get('structureOrientator').valid);
+    this.validatePage.emit(this.form.valid);
+  }
+
+  public updatedForm(field: string, value: string) {
+    if (field === 'phone') {
+      this.utils.modifyPhoneInput(this.form, 'phone', value);
+    } else this.form.get(field).patchValue(value);
+
+    this.validatePage.emit(this.form.valid);
   }
 }
diff --git a/src/app/form/orientation-form-view/interfaces/meetingRDVSForm.interface.ts b/src/app/form/orientation-form-view/interfaces/meetingRDVSForm.interface.ts
new file mode 100644
index 0000000000000000000000000000000000000000..a6582b6cd9a1ff0387113b76af80444bd1cdb140
--- /dev/null
+++ b/src/app/form/orientation-form-view/interfaces/meetingRDVSForm.interface.ts
@@ -0,0 +1,11 @@
+import { FormControl, FormGroup, UntypedFormGroup } from '@angular/forms';
+import { StructureOrientator } from './structureOrientator.interface';
+
+export interface MeetingRDVSForm {
+  structureOrientator: FormGroup<StructureOrientator>;
+  categories: UntypedFormGroup;
+  pmrAccess: FormControl<boolean>;
+  digitalPass: FormControl<boolean>;
+  address: FormControl<string>;
+  onlineDemarcheType: FormControl<any>;
+}
diff --git a/src/app/form/orientation-form-view/online-demarch/meeting-rdvs/meeting-digital-pass/meeting-digital-pass.component.html b/src/app/form/orientation-form-view/online-demarch/meeting-rdvs/meeting-digital-pass/meeting-digital-pass.component.html
new file mode 100644
index 0000000000000000000000000000000000000000..e7842d47850d4be1265d51bf39bc3d671b43f8d3
--- /dev/null
+++ b/src/app/form/orientation-form-view/online-demarch/meeting-rdvs/meeting-digital-pass/meeting-digital-pass.component.html
@@ -0,0 +1,9 @@
+<form [formGroup]="form">
+  <div class="title">
+    <h3>Le bénéficiaire dispose-t-il de Pass numériques ?</h3>
+    <p>Facultatif</p>
+  </div>
+
+  <app-radio-form [selectedOption]="form.get('digitalPass').value" (selectedEvent)="handleChange($event)">
+  </app-radio-form>
+</form>
diff --git a/src/app/form/orientation-form-view/online-demarch/meeting-rdvs/meeting-digital-pass/meeting-digital-pass.component.ts b/src/app/form/orientation-form-view/online-demarch/meeting-rdvs/meeting-digital-pass/meeting-digital-pass.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..9a424f86029c56ca82f3bf8ea5aaf22160e1cd17
--- /dev/null
+++ b/src/app/form/orientation-form-view/online-demarch/meeting-rdvs/meeting-digital-pass/meeting-digital-pass.component.ts
@@ -0,0 +1,23 @@
+import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
+import { UntypedFormGroup } from '@angular/forms';
+
+@Component({
+  selector: 'app-meeting-digital-pass',
+  templateUrl: './meeting-digital-pass.component.html',
+})
+export class MeetingDigitalPassComponent implements OnInit {
+  @Input() form: UntypedFormGroup;
+  @Output() checkValidation = new EventEmitter<any>();
+
+  ngOnInit(): void {
+    this.checkValidation.emit();
+  }
+  public handleChange(val: boolean) {
+    this.form.get('digitalPass').patchValue(val);
+    this.checkValidation.emit();
+  }
+
+  public isSelected(): boolean {
+    return this.form.get('digitalPass').value;
+  }
+}
diff --git a/src/app/form/orientation-form-view/online-demarch/meeting-rdvs/meeting-rdvs-doing/meeting-rdvs-doing.component.html b/src/app/form/orientation-form-view/online-demarch/meeting-rdvs/meeting-rdvs-doing/meeting-rdvs-doing.component.html
new file mode 100644
index 0000000000000000000000000000000000000000..49022418def0ea92feb7f5e89588aef8e23801a6
--- /dev/null
+++ b/src/app/form/orientation-form-view/online-demarch/meeting-rdvs/meeting-rdvs-doing/meeting-rdvs-doing.component.html
@@ -0,0 +1,10 @@
+<div class="container" *ngIf="!shouldReset">
+  <img src="../../../../../../assets/form/rdvsImage.svg" alt="rdvs illustration" />
+  <h2>Vous allez pouvoir prendre rendez-vous depuis RDV Solidarité.</h2>
+  <p>Ne fermez pas votre navigateur.</p>
+</div>
+<div class="container" *ngIf="shouldReset">
+  <img src="../../../../../../assets/form/rdvsImageNotFound.svg" alt="rdvs illustration" />
+  <h2>Aucune structure correspondant à votre recherche ne propose de rendez-vous</h2>
+  <p>Renouvellez votre recherche avec des critères différents ou accédez à la cartographie</p>
+</div>
diff --git a/src/app/form/orientation-form-view/online-demarch/meeting-rdvs/meeting-rdvs-doing/meeting-rdvs-doing.component.scss b/src/app/form/orientation-form-view/online-demarch/meeting-rdvs/meeting-rdvs-doing/meeting-rdvs-doing.component.scss
new file mode 100644
index 0000000000000000000000000000000000000000..95e0eb51e476414b66f598b965e83a524400c71d
--- /dev/null
+++ b/src/app/form/orientation-form-view/online-demarch/meeting-rdvs/meeting-rdvs-doing/meeting-rdvs-doing.component.scss
@@ -0,0 +1,25 @@
+@import '../../../../../../assets/scss/typography';
+
+.container {
+  display: flex;
+  flex-direction: column;
+  height: 100%;
+  align-items: center;
+  justify-content: center;
+  h2 {
+    @include lato-bold-24;
+    margin-bottom: 0;
+    margin-top: 1.5rem;
+    text-align: center;
+    max-width: 600px;
+  }
+  p {
+    @include lato-regular-24;
+    margin: 0 !important;
+    text-align: center;
+    max-width: 600px;
+  }
+  img {
+    width: 200px;
+  }
+}
diff --git a/src/app/form/orientation-form-view/online-demarch/meeting-rdvs/meeting-rdvs-doing/meeting-rdvs-doing.component.ts b/src/app/form/orientation-form-view/online-demarch/meeting-rdvs/meeting-rdvs-doing/meeting-rdvs-doing.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..07d1bdf96f14e51af6af5b3f8e9f2d0024ad629d
--- /dev/null
+++ b/src/app/form/orientation-form-view/online-demarch/meeting-rdvs/meeting-rdvs-doing/meeting-rdvs-doing.component.ts
@@ -0,0 +1,73 @@
+import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
+import { UntypedFormGroup } from '@angular/forms';
+import { Structure } from '../../../../../models/structure.model';
+import { NotificationService } from '../../../../../services/notification.service';
+import { RdvsService } from '../../../../../services/rdvs.service';
+import { StructureService } from '../../../../../services/structure.service';
+import { Filter } from '../../../../../structure-list/models/filter.model';
+import * as _ from 'lodash';
+import { GeojsonService } from '../../../../../services/geojson.service';
+
+@Component({
+  selector: 'app-meeting-rdvs-doing',
+  templateUrl: './meeting-rdvs-doing.component.html',
+  styleUrls: ['./meeting-rdvs-doing.component.scss'],
+})
+export class MeetingRdvsDoingComponent implements OnInit {
+  @Input() form: UntypedFormGroup;
+  public structureList: Structure[] = [];
+  public filters: Filter[] = [];
+  public shouldReset = false;
+  @Output() setResetOrientation = new EventEmitter();
+  constructor(
+    private structureService: StructureService,
+    private rdvsService: RdvsService,
+    private notificationService: NotificationService,
+    private geoJsonService: GeojsonService
+  ) {}
+
+  ngOnInit(): void {
+    this.buildFilters();
+    if (this.form.get('address').value) {
+      const addresscoords: number[] = this.form.get('address').value.coordinates;
+      this.structureService.getStructures(this.filters, undefined, 20).subscribe((structures) => {
+        this.structureList = this.sortByDistance(structures, addresscoords);
+      });
+    } else {
+      this.structureService.getStructures(this.filters, undefined, 20).subscribe((structures) => {
+        this.structureList = structures;
+      });
+    }
+    if (!this.structureList.length) {
+      this.shouldReset = true;
+      this.setResetOrientation.emit();
+      return;
+    }
+    this.rdvsService.sendStructureArray(this.structureList).subscribe({
+      error: (e) => this.notificationService.showError(`${e.error.message}`, 'Une erreur est survenue'),
+      complete: () => window.open('https://www.rdv-aide-numerique.fr/public_api/public_links?territory=RVS'),
+    });
+  }
+
+  private buildFilters(): void {
+    const filters = [];
+    for (let [categ, moduleIdArray] of Object.entries(this.form.get('categories').value)) {
+      const idArray = moduleIdArray as string[];
+      if (idArray.length)
+        idArray.forEach((filterId: string) => {
+          filters.push(new Filter(categ, filterId));
+        });
+    }
+    if (this.form.get('pmrAccess').value) filters.push(new Filter('pmrAccess', this.form.get('pmrAccess').value));
+    if (this.form.get('digitalPass').value) filters.push(new Filter('labelsQualifications', 'passNumerique'));
+    filters.push(...this.form.get('onlineDemarcheType').value);
+    this.filters = filters;
+  }
+  private sortByDistance(structures: Structure[], addresscoords: number[]): Structure[] {
+    return structures.sort(
+      (a, b) =>
+        parseInt(this.geoJsonService.getDistance(a.getLat(), a.getLon(), addresscoords[1], addresscoords[0], 'M')) -
+        parseInt(this.geoJsonService.getDistance(b.getLat(), b.getLon(), addresscoords[1], addresscoords[0], 'M'))
+    );
+  }
+}
diff --git a/src/app/form/orientation-form-view/online-demarch/accompaniment-type/accompaniment-type.component.html b/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.html
similarity index 100%
rename from src/app/form/orientation-form-view/online-demarch/accompaniment-type/accompaniment-type.component.html
rename to src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.html
diff --git a/src/app/form/orientation-form-view/online-demarch/accompaniment-type/accompaniment-type.component.ts b/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.ts
similarity index 74%
rename from src/app/form/orientation-form-view/online-demarch/accompaniment-type/accompaniment-type.component.ts
rename to src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.ts
index 0c92afc5323ac07bce2a30a3c98315d8112f9c99..9dc80bc0ec7e28be9fd85716ab1cd553a8ae8d93 100644
--- a/src/app/form/orientation-form-view/online-demarch/accompaniment-type/accompaniment-type.component.ts
+++ b/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.ts
@@ -1,7 +1,7 @@
 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
 import { UntypedFormGroup } from '@angular/forms';
-import { INeedItem } from '../../../../utils/orientationUtils';
-import { OnlineDemarche } from '../../enums/onlineDemarche.enum';
+import { INeedItem } from '../../../../../utils/orientationUtils';
+import { OnlineDemarche } from '../../../enums/onlineDemarche.enum';
 
 @Component({
   selector: 'app-accompaniment-type',
@@ -18,11 +18,12 @@ export class AccompanimentTypeComponent implements OnInit {
       hint: "Le bénéficiaire pourra prendre contact avec la structure ou s'y rendre directement",
       key: OnlineDemarche.structureList,
     },
-    {
-      title: 'Prendre RDV auprès d’un conseiller ou une conseillère numérique',
-      hint: 'Redirection vers RDV Aide Numérique pour voir les disponibilités',
-      key: OnlineDemarche.meetings,
-    },
+    //This step remains hidden until rdvs is ready to be integrated
+    // {
+    //   title: 'Prendre RDV auprès d’un conseiller ou une conseillère numérique',
+    //   hint: 'Redirection vers RDV Aide Numérique pour voir les disponibilités',
+    //   key: OnlineDemarche.meetings,
+    // },
     {
       title: 'Choisir un créneau de médiation numérique à distance',
       hint: 'Le bénéficiaire sera contacté par téléphone sur le créneau de son choix',
diff --git a/src/app/form/orientation-form-view/online-demarch/online-demarch/online-demarch.component.html b/src/app/form/orientation-form-view/online-demarch/online-demarch-common/online-demarch.component.html
similarity index 100%
rename from src/app/form/orientation-form-view/online-demarch/online-demarch/online-demarch.component.html
rename to src/app/form/orientation-form-view/online-demarch/online-demarch-common/online-demarch.component.html
diff --git a/src/app/form/orientation-form-view/online-demarch/online-demarch/online-demarch.component.ts b/src/app/form/orientation-form-view/online-demarch/online-demarch-common/online-demarch.component.ts
similarity index 97%
rename from src/app/form/orientation-form-view/online-demarch/online-demarch/online-demarch.component.ts
rename to src/app/form/orientation-form-view/online-demarch/online-demarch-common/online-demarch.component.ts
index 07d48d561cfba5cd1f1b6cc8b6a697276daf92c0..1ef6029885e5e6fb7ca8d5dba82be8f6336280d1 100644
--- a/src/app/form/orientation-form-view/online-demarch/online-demarch/online-demarch.component.ts
+++ b/src/app/form/orientation-form-view/online-demarch/online-demarch-common/online-demarch.component.ts
@@ -21,6 +21,7 @@ export class OnlineDemarchComponent implements OnInit {
 
   ngOnInit(): void {
     this.selectedModules = this.form.get('onlineDemarcheType').value;
+    //TODO move this in form init categories
     this.searchService.getCategories().subscribe((categories: Category[]) => {
       this.accompanimentType = categories.find((el) => el.id === CategoryEnum.onlineProcedures).modules;
     });
diff --git a/src/app/form/orientation-form-view/online-demarch/mediation-beneciary-info/mediation-beneciary-info.component.html b/src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-beneciary-info/mediation-beneciary-info.component.html
similarity index 100%
rename from src/app/form/orientation-form-view/online-demarch/mediation-beneciary-info/mediation-beneciary-info.component.html
rename to src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-beneciary-info/mediation-beneciary-info.component.html
diff --git a/src/app/form/orientation-form-view/online-demarch/mediation-beneciary-info/mediation-beneciary-info.component.ts b/src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-beneciary-info/mediation-beneciary-info.component.ts
similarity index 93%
rename from src/app/form/orientation-form-view/online-demarch/mediation-beneciary-info/mediation-beneciary-info.component.ts
rename to src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-beneciary-info/mediation-beneciary-info.component.ts
index 33276b7c3122619743c259633f9006ab011b1003..ec1adcc1bd0762c1ba85cb9c281b5643454ef5a2 100644
--- a/src/app/form/orientation-form-view/online-demarch/mediation-beneciary-info/mediation-beneciary-info.component.ts
+++ b/src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-beneciary-info/mediation-beneciary-info.component.ts
@@ -1,6 +1,6 @@
 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
 import { UntypedFormGroup } from '@angular/forms';
-import { Utils } from '../../../../utils/utils';
+import { Utils } from '../../../../../utils/utils';
 
 @Component({
   selector: 'app-mediation-beneciary-info',
diff --git a/src/app/form/orientation-form-view/online-demarch/mediation-hours-selection/mediation-hours-selection.component.html b/src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-hours-selection/mediation-hours-selection.component.html
similarity index 100%
rename from src/app/form/orientation-form-view/online-demarch/mediation-hours-selection/mediation-hours-selection.component.html
rename to src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-hours-selection/mediation-hours-selection.component.html
diff --git a/src/app/form/orientation-form-view/online-demarch/mediation-hours-selection/mediation-hours-selection.component.scss b/src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-hours-selection/mediation-hours-selection.component.scss
similarity index 87%
rename from src/app/form/orientation-form-view/online-demarch/mediation-hours-selection/mediation-hours-selection.component.scss
rename to src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-hours-selection/mediation-hours-selection.component.scss
index 76465d2fc454d0f79f7f9063a7e7e1e3bf652a5b..0411e111c72355133c2da1b3bed71fcd66735dca 100644
--- a/src/app/form/orientation-form-view/online-demarch/mediation-hours-selection/mediation-hours-selection.component.scss
+++ b/src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-hours-selection/mediation-hours-selection.component.scss
@@ -1,6 +1,6 @@
-@import '../../../../../assets/scss/color';
-@import '../../../../../assets/scss/typography';
-@import '../../../../../assets/scss/breakpoint';
+@import '../../../../../../assets/scss/color';
+@import '../../../../../../assets/scss/breakpoint';
+@import '../../../../../../assets/scss/typography';
 
 .subtitle {
   color: $grey-3;
diff --git a/src/app/form/orientation-form-view/online-demarch/mediation-hours-selection/mediation-hours-selection.component.ts b/src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-hours-selection/mediation-hours-selection.component.ts
similarity index 100%
rename from src/app/form/orientation-form-view/online-demarch/mediation-hours-selection/mediation-hours-selection.component.ts
rename to src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-hours-selection/mediation-hours-selection.component.ts
diff --git a/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.html b/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.html
index d74e1d4b0dd0d3282ad04f5809a370333b7e24e4..e182623a35e23c6168d021f5a472b702c7ca8213 100644
--- a/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.html
+++ b/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.html
@@ -1,3 +1,4 @@
+<!-- COMMON FORM -->
 <ng-container *ngIf="currentType === onlineDemarcheTypeEnum.common">
   <app-online-demarch
     *ngIf="currentStep === onlineDemarchesCommonStepsEnum.onlineDemarche"
@@ -10,13 +11,65 @@
     (checkValidation)="checkValidation()"
   ></app-accompaniment-type>
 </ng-container>
+<!-- MEETING FORM (RDVS) -->
 <ng-container *ngIf="currentType === onlineDemarcheTypeEnum.meetings">
   <app-structure-orientator
     *ngIf="currentStep === onlineDemarchesMeetingSteps.structureOrientator"
     [profile]="profile"
     [form]="form"
+    (validatePage)="checkValidation()"
   ></app-structure-orientator>
+  <app-structure-public-target
+    *ngIf="
+      currentStep === onlineDemarchesMeetingSteps.publicTypeMandatory ||
+      currentStep === onlineDemarchesMeetingSteps.publicTypeOptional
+    "
+    [structureForm]="form"
+    [languageAndIlliteracy]="categories.languageAndIlliteracy"
+    [handicaps]="categories.handicaps"
+    [publicOthers]="categories.publicOthers"
+    [age]="categories.age"
+    [isMandatoryFields]="currentStep === onlineDemarchesMeetingSteps.publicTypeMandatory"
+    (validateForm)="checkValidation()"
+    (updateChoice)="updatePublicChoice($event)"
+  >
+  </app-structure-public-target>
+  <app-structure-pmr
+    *ngIf="currentStep === onlineDemarchesMeetingSteps.pmrAccess"
+    [structureForm]="form"
+    (validateForm)="checkValidation()"
+    (radioChange)="onRadioChange($event)"
+  ></app-structure-pmr>
+  <app-meeting-digital-pass
+    *ngIf="currentStep === onlineDemarchesMeetingSteps.digitalPass"
+    [form]="form"
+    [labelsQualifications]="categories.labelsQualifications"
+    (checkValidation)="checkValidation()"
+  ></app-meeting-digital-pass>
+  <app-orientation-structure-address
+    *ngIf="currentStep === onlineDemarchesMeetingSteps.location"
+    [form]="form"
+    (addressStructure)="checkValidation($event)"
+  ></app-orientation-structure-address>
+  <app-meeting-rdvs-doing
+    *ngIf="currentStep === onlineDemarchesMeetingSteps.rdvsDoing"
+    (checkValidation)="checkValidation()"
+    (setResetOrientation)="showResetOrientation()"
+    [form]="form"
+  ></app-meeting-rdvs-doing>
+  <app-meeting-rdvs-callback
+    *ngIf="currentStep === onlineDemarchesMeetingSteps.rdvsCallback"
+    (checkValidation)="checkValidation()"
+    [form]="form"
+  ></app-meeting-rdvs-callback>
+  <app-mediation-recap
+    *ngIf="currentStep === onlineDemarchesMeetingSteps.recap"
+    [form]="form"
+    [recapType]="recapsType.structure"
+    (checkValidation)="checkValidation()"
+  ></app-mediation-recap>
 </ng-container>
+<!-- ONLINE MEDIATION FORM -->
 <ng-container *ngIf="currentType === onlineDemarcheTypeEnum.onlineMediation">
   <app-online-demarch
     *ngIf="currentStep === HotlineMediationStepsEnum.onlineDemarch"
@@ -50,6 +103,7 @@
     (checkValidation)="checkValidation()"
   ></app-mediation-recap>
 </ng-container>
+<!-- STRUCTURE LIST FORM -->
 <app-orientation-structure-list
   *ngIf="currentType === onlineDemarcheTypeEnum.structureList"
   [form]="form"
diff --git a/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.ts b/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.ts
index 64bc71f4284fe61ce70639bae94a72ae5f2b9a4f..6211a791e2c30dabde2ec7aba12ea2ebd2d45b4a 100644
--- a/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.ts
+++ b/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.ts
@@ -1,12 +1,13 @@
-import { Component, EventEmitter, Input, Output } from '@angular/core';
-import { UntypedFormGroup } from '@angular/forms';
+import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
+import { UntypedFormArray, UntypedFormControl, UntypedFormGroup } from '@angular/forms';
 import { User } from '../../../models/user.model';
+import { Category } from '../../../structure-list/models/category.model';
 import { Filter } from '../../../structure-list/models/filter.model';
 import { OrientationUtils } from '../../../utils/orientationUtils';
 import { HotlineMediationSteps } from '../enums/hotlineMediationSteps.enum';
+import { MeetingRDVSSteps } from '../enums/MeetingRDVSSteps.enum';
 import { OnlineDemarche } from '../enums/onlineDemarche.enum';
 import { OnlineDemarchesCommonSteps } from '../enums/onlineDemarchesCommonSteps.enum';
-import { OnlineDemarchesMeetingSteps } from '../enums/onlineDemarchesMeetingSteps.enum';
 import { RecapsType } from '../enums/recapsType.enum';
 import { StructuresListSteps } from '../enums/structuresListSteps.enum';
 import { OnlineMediationSteps } from '../types/onlineDemarcheStep.type';
@@ -16,13 +17,15 @@ import { OnlineMediationSteps } from '../types/onlineDemarcheStep.type';
   templateUrl: './onlineDemarch-form.component.html',
 })
 export class OnlineDemarchFormComponent {
-  @Input() currentStep: OnlineMediationSteps | StructuresListSteps;
+  @Input() currentStep: OnlineMediationSteps | StructuresListSteps | MeetingRDVSSteps;
   @Input() currentType: OnlineDemarche;
   @Input() form: UntypedFormGroup;
   @Input() filters: Filter[] = [];
   @Input() profile: User;
+  @Input() categories: { [key: string]: Category | [] };
   @Output() validatePage = new EventEmitter<any>();
-
+  @Output() setResetOrientation = new EventEmitter<any>();
+  
   public orientationUtils = new OrientationUtils();
   public pagesValidation: any[] = [];
 
@@ -31,7 +34,7 @@ export class OnlineDemarchFormComponent {
   public onlineDemarchesCommonStepsEnum = OnlineDemarchesCommonSteps;
   public structuresListStepsEnum = StructuresListSteps;
   public onlineDemarcheTypeEnum = OnlineDemarche;
-  public onlineDemarchesMeetingSteps = OnlineDemarchesMeetingSteps;
+  public onlineDemarchesMeetingSteps = MeetingRDVSSteps;
   public recapsType = RecapsType;
 
   public checkValidation(): void {
@@ -65,11 +68,52 @@ export class OnlineDemarchFormComponent {
           this.pagesValidation,
           this.form,
           (isValid) => this.validatePage.emit(isValid),
-          this.currentStep as OnlineDemarchesMeetingSteps
+          this.currentStep as MeetingRDVSSteps
         );
         break;
       default:
         throw new Error('Not implemented tunnel type in OnlineDemarchFormComponent');
     }
   }
+
+  public updatePublicChoice({ formControlName, choice }: { formControlName: string; choice: string }): void {
+    const event = !this.isInArray({ formControlName, term: choice });
+    this.onCheckChange({ event, formControlName, value: choice });
+  }
+
+  public onCheckChange({
+    event,
+    formControlName,
+    value,
+  }: {
+    event: boolean;
+    formControlName: string;
+    value: string;
+  }): void {
+    const formArray: UntypedFormArray = this.form.get(formControlName) as UntypedFormArray;
+    if (event) {
+      // Add a new control in the arrayForm
+      formArray.push(new UntypedFormControl(value));
+    } else {
+      // Remove uncheck control in the arrayForm
+      const index = formArray.value.findIndex((element) => element === value);
+      formArray.removeAt(index);
+    }
+    this.checkValidation();
+  }
+  // Check if a FormControl value is in FormArray
+  public isInArray({ formControlName, term }: { formControlName: string; term: string }): boolean {
+    if (this.form.get(formControlName) && this.form.get(formControlName).value) {
+      return this.form.get(formControlName).value.includes(term);
+    }
+    return false;
+  }
+  public onRadioChange(nameAndEvent: { name: string; value: boolean }): void {
+    const { name, value } = nameAndEvent;
+    this.form.get(name).setValue(value);
+    this.checkValidation();
+  }
+  public showResetOrientation():void {
+    this.setResetOrientation.emit()
+  }
 }
diff --git a/src/app/form/orientation-form-view/orientation-form-view.component.html b/src/app/form/orientation-form-view/orientation-form-view.component.html
index a0313c5d94e17f427d89a53a6e6370db580743f3..1374af2099567832a9c57eb116d589eb71569f77 100644
--- a/src/app/form/orientation-form-view/orientation-form-view.component.html
+++ b/src/app/form/orientation-form-view/orientation-form-view.component.html
@@ -33,7 +33,9 @@
         [form]="onlineDemarchForm"
         [filters]="filters"
         [profile]="profile"
+        [categories]="categories"
         (validatePage)="validatePage($event)"
+        (setResetOrientation)="setResetOrientation()"
       ></app-onlineDemarch-form>
       <app-base-skills
         *ngIf="needType == needEnum.learnSkills"
@@ -52,6 +54,9 @@
       [needType]="needType"
       [currentType]="currentType"
       [isPageValid]="isPageValid"
+      [isRdvsWindowStep]="isRdvsWindowStep"
+      [hideNavButtons]="hideNavButtons"
+      [shouldResetOrientation]="shouldResetOrientation"
       (goNext)="nextPage()"
       (goPrev)="prevPage()"
     ></app-navigation>
diff --git a/src/app/form/orientation-form-view/orientation-form-view.component.ts b/src/app/form/orientation-form-view/orientation-form-view.component.ts
index 51975ce9c0338d9a9b82ae9ec02694874dacc89d..43725bd6a429dfd5505af8cee85f4cc6e8dfbb06 100644
--- a/src/app/form/orientation-form-view/orientation-form-view.component.ts
+++ b/src/app/form/orientation-form-view/orientation-form-view.component.ts
@@ -5,21 +5,26 @@ import { ProfileService } from '../../profile/services/profile.service';
 import { AuthService } from '../../services/auth.service';
 import { NotificationService } from '../../services/notification.service';
 import { OnlineMediationService } from '../../services/online-mediation.service';
+import { StructureService } from '../../services/structure.service';
+import { CategoryEnum } from '../../shared/enum/category.enum';
+import { Category } from '../../structure-list/models/category.model';
 import { Filter } from '../../structure-list/models/filter.model';
 import { Module } from '../../structure-list/models/module.model';
+import { SearchService } from '../../structure-list/services/search.service';
 import { OrientationUtils } from '../../utils/orientationUtils';
 import { Utils } from '../../utils/utils';
 import { FiltersSteps } from './enums/filtersSteps.enum';
 import { GenericOrientationSteps } from './enums/genericOrientationSteps.enum';
 import { HotlineMediationSteps } from './enums/hotlineMediationSteps.enum';
+import { MeetingRDVSSteps } from './enums/MeetingRDVSSteps.enum';
 import { NeedsType } from './enums/needs.enum';
 import { OnlineDemarche } from './enums/onlineDemarche.enum';
 import { OnlineDemarchesCommonSteps } from './enums/onlineDemarchesCommonSteps.enum';
-import { OnlineDemarchesMeetingSteps } from './enums/onlineDemarchesMeetingSteps.enum';
 import { StructuresListSteps } from './enums/structuresListSteps.enum';
 import { FiltersForm } from './interfaces/filtersForm.interface';
 import { IOnlineMediation } from './interfaces/onlineMediation.interface';
 import { StructureOrientationForm } from './interfaces/structureOrientationForm.interface';
+import { StructureOrientator } from './interfaces/structureOrientator.interface';
 import { MediationType } from './types/mediation.type';
 import { MediationStepType } from './types/mediationStep.type';
 
@@ -36,6 +41,8 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
   public onlineDemarcheType: OnlineDemarche;
   // Equipments
   public filtersForm: FormGroup<FiltersForm> | FormGroup<StructureOrientationForm>;
+  // Orientator
+  public orientator: FormGroup<StructureOrientator>;
   // Enum
   public needEnum = NeedsType;
   // Global
@@ -43,13 +50,30 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
   public currentType: MediationType = OnlineDemarche.common;
   public currentStep: MediationStepType = null;
   public isLastStep = false;
-  public nbSteps: number = Object.keys(HotlineMediationSteps).length / 2;
+  public isRdvsWindowStep = false;
+  public hideNavButtons = false;
+  public nbSteps: number =
+    (Math.max(
+      Object.keys(HotlineMediationSteps).length,
+      Object.keys(MeetingRDVSSteps).length,
+      Object.keys(StructuresListSteps).length
+    ) +
+      Object.keys(OnlineDemarchesCommonSteps).length) /
+    2;
   public isPageValid: boolean = false;
   public filters: Filter[] = [];
   public profile: User;
   public canDeactivate: boolean = false;
   public showLoginModal: boolean = false;
   public fullScreen: boolean = false;
+  public shouldResetOrientation = false;
+  //Categories
+  public categories: { [key: string]: Category | [] } = {
+    age: [],
+    languageAndIlliteracy: [],
+    publicOthers: [],
+    handicaps: [],
+  };
 
   // Modal canExit var
   public showConfirmationModal = false;
@@ -60,14 +84,28 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
     private notificationService: NotificationService,
     private authService: AuthService,
     private profileService: ProfileService,
+    private searchService: SearchService,
+    private structureService: StructureService,
     private cdref: ChangeDetectorRef
-  ) {}
-
+  ) {
+    this.setCategories();
+  }
   async ngOnInit() {
     if (!this.authService.isLoggedIn()) {
       this.showLoginModal = true;
     } else {
       this.profile = await this.profileService.getProfile();
+
+      if (this.profile?.structuresLink?.length === 1) {
+        this.structureService.getStructure(this.profile.structuresLink[0]).subscribe(
+          (_structure) =>
+            (this.orientator = this.orientationUtils.createStructureOrientatorForm({
+              structureName: _structure.structureName,
+              structureMail: _structure.contactMail,
+              structurePhone: _structure.contactPhone,
+            }))
+        );
+      }
     }
 
     if (history.state.mediationNumerique) {
@@ -111,6 +149,13 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
   }
 
   public checkLastStep(): void {
+    if (
+      this.needType === NeedsType.onlineDemarch &&
+      this.currentType === OnlineDemarche.meetings &&
+      this.currentStep === MeetingRDVSSteps.location
+    ) {
+      this.isRdvsWindowStep = true;
+    }
     if (
       this.needType === NeedsType.onlineDemarch &&
       this.currentType === OnlineDemarche.onlineMediation &&
@@ -154,7 +199,10 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
     this.currentStep = StructuresListSteps.pmrAccess;
     // first filter screnn + regular StructureList form
     this.setStepNumber(Object.keys(StructuresListSteps).length);
-    this.filtersForm = this.orientationUtils.createStructureOrientationForm(this.filtersForm.value.filters);
+    this.filtersForm = this.orientationUtils.createStructureOrientationForm(
+      this.filtersForm.value.filters,
+      this.orientator
+    );
   }
 
   public setOnlineProceduresForm() {
@@ -168,9 +216,11 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
         );
         break;
       case OnlineDemarche.meetings:
-        this.currentStep = OnlineDemarchesMeetingSteps.structureOrientator;
+        this.currentStep = MeetingRDVSSteps.structureOrientator;
         this.currentType = OnlineDemarche.meetings;
+        this.setStepNumber(Object.keys(MeetingRDVSSteps).length);
         this.skipStructureOrientator();
+        this.onlineDemarchForm = this.orientationUtils.createMeetingRDVSForm(this.filters, this.orientator);
         break;
       case OnlineDemarche.onlineMediation:
         this.currentType = OnlineDemarche.onlineMediation;
@@ -185,6 +235,30 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
     }
   }
 
+  private async setCategories(): Promise<void> {
+    const categories = await this.searchService.getCategories().toPromise();
+    categories.forEach((categ) => {
+      switch (categ.id) {
+        case CategoryEnum.age: {
+          this.categories.age = categ;
+          break;
+        }
+        case CategoryEnum.languageAndIlliteracy: {
+          this.categories.languageAndIlliteracy = categ;
+          break;
+        }
+        case CategoryEnum.publicOthers: {
+          this.categories.publicOthers = categ;
+          break;
+        }
+        case CategoryEnum.handicaps: {
+          this.categories.handicaps = categ;
+          break;
+        }
+      }
+    });
+  }
+
   public skipStructureOrientator() {
     if (this.profile?.structuresLink?.length === 1) {
       // skip first step
@@ -209,6 +283,8 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
 
   public nextPage(): void {
     this.isPageValid = false;
+    this.isRdvsWindowStep = false;
+    this.hideNavButtons = false;
     // Handle filters form
     if (
       this.isFilterForm() &&
@@ -252,15 +328,6 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
         this.handleOnlineAppointment();
         return;
       }
-      // Structure orientator screen
-      if (
-        this.currentType === OnlineDemarche.structureList &&
-        this.currentStep === StructuresListSteps.structureOrientator
-      ) {
-        this.skipStructureOrientator();
-        this.currentStep++;
-        return;
-      }
     }
 
     // Structure list handling
@@ -275,9 +342,10 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
       if (this.currentStep === StructuresListSteps.address) {
         this.fullScreen = true;
       }
-      // Unset fullscrenn
+      // Unset fullscreen
       if (this.currentStep === StructuresListSteps.structureChoice) {
         this.fullScreen = false;
+        this.skipStructureOrientator();
       }
     }
 
@@ -290,10 +358,13 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
     if (this.currentStep < this.nbSteps) {
       this.currentStep++;
       this.checkLastStep();
+      this.checkHideNavButtons();
     }
   }
 
   public prevPage(): void {
+    this.isRdvsWindowStep = false;
+    this.hideNavButtons = false;
     // Structure list previous page
     if (this.isStructureListForm()) {
       if (this.currentStep === StructuresListSteps.structureChoice) {
@@ -313,6 +384,7 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
     if (this.currentStep > 0) {
       this.currentStep--;
       this.checkLastStep();
+      this.checkHideNavButtons();
     }
   }
 
@@ -340,7 +412,6 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
       this.currentType === OnlineDemarche.structureList
     );
   }
-
   /**
    * Return if it's a filter form
    * @returns
@@ -369,4 +440,16 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
     this.resolve(hasAccept);
     this.showConfirmationModal = false;
   }
+  public checkHideNavButtons(): void {
+    if (
+      this.needType === NeedsType.onlineDemarch &&
+      this.currentType === OnlineDemarche.meetings &&
+      this.currentStep === MeetingRDVSSteps.rdvsDoing
+    ) {
+      this.hideNavButtons = true;
+    }
+  }
+  public setResetOrientation(): void {
+    this.shouldResetOrientation = true;
+  }
 }
diff --git a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.html b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.html
index 132580c44c36938a1999b44ab026946edd949f3c..48567d75a36ce194177b7a595f8c1d59c9b34830 100644
--- a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.html
+++ b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.html
@@ -1,4 +1,4 @@
-<form [formGroup]="form" *ngIf="form" (keyup.enter)="(isPageValid)">
+<form [formGroup]="form" *ngIf="form">
   <div class="title">
     <p class="overtitle">{{ structureName }}</p>
     <h3>Autour de quelle adresse cherchez-vous une structure&nbsp;?</h3>
diff --git a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.ts b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.ts
index c09823aefc4c422291709ff682f89debc7d92871..2eb12534f735935616a538cb06819e711b279f2e 100644
--- a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.ts
+++ b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.ts
@@ -8,7 +8,6 @@ import { Address } from '../../../../models/address.model';
 })
 export class OrientationStructureAddressComponent implements OnInit {
   @Input() form: UntypedFormGroup;
-  @Input() isEditMode: boolean;
   @Output() addressStructure = new EventEmitter<any>();
 
   ngOnInit(): void {
diff --git a/src/app/form/orientation-form-view/orientation.module.ts b/src/app/form/orientation-form-view/orientation.module.ts
index fde07106c8aa05e397502bc049b307b103b21126..0479e796f3da41749380c86d9db0a3a5c4540a65 100644
--- a/src/app/form/orientation-form-view/orientation.module.ts
+++ b/src/app/form/orientation-form-view/orientation.module.ts
@@ -14,10 +14,9 @@ import { NavigationComponent } from './global-components/navigation/navigation.c
 import { NeedsSelectionComponent } from './global-components/needs-selection/needs-selection.component';
 import { PrintHeaderComponent } from './global-components/print-header/print-header.component';
 import { StructureOrientatorComponent } from './global-components/structure-orientator/structure-orientator.component';
-import { AccompanimentTypeComponent } from './online-demarch/accompaniment-type/accompaniment-type.component';
-import { MediationBeneciaryInfoComponent } from './online-demarch/mediation-beneciary-info/mediation-beneciary-info.component';
-import { MediationHoursSelectionComponent } from './online-demarch/mediation-hours-selection/mediation-hours-selection.component';
-import { OnlineDemarchComponent } from './online-demarch/online-demarch/online-demarch.component';
+import { AccompanimentTypeComponent } from './online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component';
+import { MediationHoursSelectionComponent } from './online-demarch/online-mediation/mediation-hours-selection/mediation-hours-selection.component';
+import { OnlineDemarchComponent } from './online-demarch/online-demarch-common/online-demarch.component';
 import { OnlineDemarchFormComponent } from './online-demarch/onlineDemarch-form.component';
 import { OrientationFormViewComponent } from './orientation-form-view.component';
 import { OrientationRoutingModule } from './orientation-routing.module';
@@ -26,6 +25,9 @@ import { OrientationStructureAddressComponent } from './orientation-structure-li
 import { OrientationStructureListComponent } from './orientation-structure-list/orientation-structure-list.component';
 import { MediationLanguageSelectionComponent } from './online-demarch/mediation-language-selection/mediation-language-selection.component';
 import { SelectComponent } from './global-components/select/select.component';
+import { MeetingDigitalPassComponent } from './online-demarch/meeting-rdvs/meeting-digital-pass/meeting-digital-pass.component';
+import { MeetingRdvsDoingComponent } from './online-demarch/meeting-rdvs/meeting-rdvs-doing/meeting-rdvs-doing.component';
+import { MediationBeneciaryInfoComponent } from './online-demarch/online-mediation/mediation-beneciary-info/mediation-beneciary-info.component';
 
 @NgModule({
   declarations: [
@@ -53,6 +55,8 @@ import { SelectComponent } from './global-components/select/select.component';
     BaseSkillsChoiceComponent,
     MediationLanguageSelectionComponent,
     SelectComponent,
+    MeetingDigitalPassComponent,
+    MeetingRdvsDoingComponent,
   ],
   imports: [OrientationRoutingModule, CartoModule, SharedModule],
 })
diff --git a/src/app/form/orientation-form-view/types/onlineDemarcheStep.type.ts b/src/app/form/orientation-form-view/types/onlineDemarcheStep.type.ts
index 48ab92a2d9578be9889866a135f06a0815e8022d..f79cbe32c8687411c09b08f22e3ea742f2186421 100644
--- a/src/app/form/orientation-form-view/types/onlineDemarcheStep.type.ts
+++ b/src/app/form/orientation-form-view/types/onlineDemarcheStep.type.ts
@@ -1,10 +1,10 @@
 import { HotlineMediationSteps } from '../enums/hotlineMediationSteps.enum';
 import { OnlineDemarchesCommonSteps } from '../enums/onlineDemarchesCommonSteps.enum';
-import { OnlineDemarchesMeetingSteps } from '../enums/onlineDemarchesMeetingSteps.enum';
+import { MeetingRDVSSteps } from '../enums/MeetingRDVSSteps.enum';
 import { StructuresListSteps } from '../enums/structuresListSteps.enum';
 
 export type OnlineMediationSteps =
   | HotlineMediationSteps
   | StructuresListSteps
   | OnlineDemarchesCommonSteps
-  | OnlineDemarchesMeetingSteps;
+  | MeetingRDVSSteps;
diff --git a/src/app/services/rdvs.service.spec.ts b/src/app/services/rdvs.service.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..d524bab9207bebe53ab875738caeafdefae3218e
--- /dev/null
+++ b/src/app/services/rdvs.service.spec.ts
@@ -0,0 +1,16 @@
+import { TestBed } from '@angular/core/testing';
+
+import { RdvsService } from './rdvs.service';
+
+describe('RdvsService', () => {
+  let service: RdvsService;
+
+  beforeEach(() => {
+    TestBed.configureTestingModule({});
+    service = TestBed.inject(RdvsService);
+  });
+
+  it('should be created', () => {
+    expect(service).toBeTruthy();
+  });
+});
diff --git a/src/app/services/rdvs.service.ts b/src/app/services/rdvs.service.ts
new file mode 100644
index 0000000000000000000000000000000000000000..639ccb67acdbd0c510b7af11720299440e0f876f
--- /dev/null
+++ b/src/app/services/rdvs.service.ts
@@ -0,0 +1,18 @@
+import { Injectable } from '@angular/core';
+import { HttpClient } from '@angular/common/http';
+import { Structure } from '../models/structure.model';
+import { Observable } from 'rxjs';
+
+@Injectable({
+  providedIn: 'root',
+})
+export class RdvsService {
+  private readonly rdvsBaseUrl = 'https://www.rdv-aide-numerique.fr/public_api/public_links?territory=RVS';
+  constructor(private http: HttpClient) {}
+
+  public sendStructureArray(structureArray: Structure[]): Observable<any> {
+    const idsArray = structureArray.map((_structure) => _structure.idCNFS);
+
+    return this.http.post<any>(this.rdvsBaseUrl, idsArray);
+  }
+}
diff --git a/src/app/services/structure.service.ts b/src/app/services/structure.service.ts
index 2c75cb37560cb273c09f56a1e9e61ae74e7aea36..e711e20424425645105e8df5c74b6a35e35eebab 100644
--- a/src/app/services/structure.service.ts
+++ b/src/app/services/structure.service.ts
@@ -80,7 +80,7 @@ export class StructureService {
     return this.getStructures(filters, 'searchByName');
   }
 
-  public getStructures(filters: Filter[], searchUrl: string = 'search'): Observable<Structure[]> {
+  public getStructures(filters: Filter[], searchUrl: string = 'search', limit?: number): Observable<Structure[]> {
     if (filters && filters.length > 0) {
       let requestUrl = `${this.baseUrl}/${searchUrl}`;
       const queryString = _.find(filters, { name: 'query' });
@@ -90,7 +90,7 @@ export class StructureService {
       }
       const formatedFilters = this.formatFilters(filters);
       return this.http
-        .post(requestUrl, { filters: formatedFilters })
+        .post(requestUrl, { filters: formatedFilters, limit: limit })
         .pipe(map((data: any[]) => data.map((item) => new Structure(item))));
     } else {
       return this.http.get(`${this.baseUrl}`).pipe(map((data: any[]) => data.map((item) => new Structure(item))));
diff --git a/src/app/shared/components/button/button.component.html b/src/app/shared/components/button/button.component.html
index 87da7b7982b756e10047bc2c023ac5307e508486..09cc877c67488d378412d7d963499353027d4c70 100644
--- a/src/app/shared/components/button/button.component.html
+++ b/src/app/shared/components/button/button.component.html
@@ -278,6 +278,21 @@
     ></app-svg-icon>
   </button>
 </ng-container>
+
+<ng-container *ngIf="style === buttonTypeEnum.RdvsButton">
+  <button class="btn-rdvs" type="{{ type }}" (click)="doAction()" [disabled]="disabled" [ngClass]="extraClass">
+    <div *ngIf="!iconBtn" class="text">{{ text }}</div>
+    <div
+      *ngIf="iconBtn && iconPos === 'left'"
+      fxLayout="row center"
+      class="text withIcon left"
+      fxLayoutAlign="space-around center"
+    >
+      <app-svg-icon [type]="iconType" [icon]="iconBtn" [iconColor]="'currentColor'"></app-svg-icon>
+      <span [ngClass]="extraClass">{{ text }}</span>
+    </div>
+  </button>
+</ng-container>
 <ng-container *ngIf="style === buttonTypeEnum.TagCloudResetButton">
   <button class="flex row btn-tags-cloud reset" (click)="doAction()">
     <span>Supprimer les filtres</span>
diff --git a/src/app/shared/components/button/button.component.scss b/src/app/shared/components/button/button.component.scss
index 7225175043e70e730469e8339024bef3f100772b..cdcb6ce1bd10de1947eb0e26d17cdb12eb189194 100644
--- a/src/app/shared/components/button/button.component.scss
+++ b/src/app/shared/components/button/button.component.scss
@@ -334,3 +334,17 @@ button:disabled {
   opacity: 0.4;
   cursor: not-allowed;
 }
+.btn-rdvs {
+  background: $blueRdvs;
+  width: 140px;
+
+  height: 36px;
+  span {
+    color: white;
+  }
+  ::ng-deep svg {
+    stroke: none !important;
+    top: 3px;
+    left: 3px;
+  }
+}
diff --git a/src/app/shared/components/button/buttonType.enum.ts b/src/app/shared/components/button/buttonType.enum.ts
index 1026afb543e00f80eece3d332874cbd9ebd47de6..4e7b5ac5d384aeb09a3a9859399a905a813208b8 100644
--- a/src/app/shared/components/button/buttonType.enum.ts
+++ b/src/app/shared/components/button/buttonType.enum.ts
@@ -15,5 +15,6 @@ export enum ButtonType {
   modalPrimary,
   modalSecondary,
   TagCloudButton,
+  RdvsButton,
   TagCloudResetButton,
 }
diff --git a/src/app/shared/components/index.ts b/src/app/shared/components/index.ts
index 38c15b1ec4e5b9e8125750847adc048816d2db5c..83d568ae7ad1d7f7aa7d1613d8cd3fd3279c0ea8 100644
--- a/src/app/shared/components/index.ts
+++ b/src/app/shared/components/index.ts
@@ -1,5 +1,6 @@
 import { InformationStepComponent } from '../../form/form-view/global-components/information-step/information-step.component';
 import { ProgressBarComponent } from '../../form/form-view/global-components/progress-bar/progress-bar.component';
+import { StructurePublicTargetComponent } from '../../form/form-view/structure-form/structure-public-target/structure-public-target.component';
 import { AccompanimentPickerComponent } from './accompaniment-picker/accompaniment-picker.component';
 import { AddressAutocompleteComponent } from './address-autocomplete/address-autocomplete.component';
 import { ButtonComponent } from './button/button.component';
@@ -40,6 +41,7 @@ export {
   StructureListPrintComponent,
   StructureDetailPrintComponent,
   ProgressBarComponent,
+  StructurePublicTargetComponent,
 };
 
 // tslint:disable-next-line:variable-name
@@ -64,4 +66,5 @@ export const SharedComponents = [
   StructureListPrintComponent,
   StructureDetailPrintComponent,
   ProgressBarComponent,
+  StructurePublicTargetComponent,
 ];
diff --git a/src/app/utils/orientationUtils.ts b/src/app/utils/orientationUtils.ts
index 2ae3a3f9d00bbdb3e1cd1deda1ad6441adb5d7eb..74bd48cf50b86870587c2b1231be7f0a8c704eb6 100644
--- a/src/app/utils/orientationUtils.ts
+++ b/src/app/utils/orientationUtils.ts
@@ -1,13 +1,21 @@
-import { FormControl, FormGroup, UntypedFormControl, UntypedFormGroup, Validators } from '@angular/forms';
+import {
+  FormControl,
+  FormGroup,
+  UntypedFormArray,
+  UntypedFormControl,
+  UntypedFormGroup,
+  Validators,
+} from '@angular/forms';
 import { structureFormStep } from '../form/form-view/structure-form/structureFormStep.enum';
 import { FiltersSteps } from '../form/orientation-form-view/enums/filtersSteps.enum';
 import { HotlineMediationSteps } from '../form/orientation-form-view/enums/hotlineMediationSteps.enum';
+import { MeetingRDVSSteps } from '../form/orientation-form-view/enums/MeetingRDVSSteps.enum';
 import { NeedsType } from '../form/orientation-form-view/enums/needs.enum';
 import { OnlineDemarchesCommonSteps } from '../form/orientation-form-view/enums/onlineDemarchesCommonSteps.enum';
-import { OnlineDemarchesMeetingSteps } from '../form/orientation-form-view/enums/onlineDemarchesMeetingSteps.enum';
 import { PreferredLanguages } from '../form/orientation-form-view/enums/preferredLanguages.enum';
 import { StructuresListSteps } from '../form/orientation-form-view/enums/structuresListSteps.enum';
 import { FiltersForm } from '../form/orientation-form-view/interfaces/filtersForm.interface';
+import { MeetingRDVSForm } from '../form/orientation-form-view/interfaces/meetingRDVSForm.interface';
 import { OnlineDemarchesForm } from '../form/orientation-form-view/interfaces/onlineDemarchesForm.interface';
 import { StructureOrientationForm } from '../form/orientation-form-view/interfaces/structureOrientationForm.interface';
 import { StructureOrientator } from '../form/orientation-form-view/interfaces/structureOrientator.interface';
@@ -73,7 +81,10 @@ export class OrientationUtils {
     });
   }
 
-  public createStructureOrientationForm(filters: Module[] = []): FormGroup<StructureOrientationForm> {
+  public createStructureOrientationForm(
+    filters: Module[] = [],
+    orientatorForm?: FormGroup<StructureOrientator>
+  ): FormGroup<StructureOrientationForm> {
     return new FormGroup<StructureOrientationForm>({
       filters: new FormControl<Module[]>(filters, Validators.required),
       pmrAccess: new FormControl(null, Validators.required),
@@ -82,18 +93,42 @@ export class OrientationUtils {
       name: new FormControl('', [Validators.required, Validators.pattern(CustomRegExp.TEXT_WITHOUT_NUMBER)]),
       surname: new FormControl('', [Validators.required, Validators.pattern(CustomRegExp.TEXT_WITHOUT_NUMBER)]),
       comments: new FormControl('', [Validators.required]),
-      structureOrientator: this.createStructureOrientatorForm(),
+      structureOrientator: orientatorForm || this.createStructureOrientatorForm(),
     });
   }
 
-  public createStructureOrientatorForm(): FormGroup<StructureOrientator> {
+  public createStructureOrientatorForm(orientator?: {
+    structureName: string;
+    structureMail: string;
+    structurePhone: string;
+  }): FormGroup<StructureOrientator> {
     return new FormGroup<StructureOrientator>({
-      structureName: new FormControl('', Validators.required),
-      structureMail: new FormControl(''),
-      structurePhone: new FormControl('', [Validators.pattern(CustomRegExp.PHONE)]),
+      structureName: new FormControl(orientator?.structureName || '', Validators.required),
+      structureMail: new FormControl(orientator?.structureMail || ''),
+      structurePhone: new FormControl(orientator?.structurePhone || '', [Validators.pattern(CustomRegExp.PHONE)]),
+    });
+  }
+  public createMeetingRDVSForm(
+    onlineDemarcheType,
+    orientatorForm?: FormGroup<StructureOrientator>
+  ): FormGroup<MeetingRDVSForm> {
+    return new FormGroup<MeetingRDVSForm>({
+      structureOrientator: orientatorForm || this.createStructureOrientatorForm(),
+      categories: new UntypedFormGroup(
+        {
+          age: new UntypedFormArray([], Validators.required),
+          languageAndIlliteracy: new UntypedFormArray([]),
+          publicOthers: new UntypedFormArray([]),
+          handicaps: new UntypedFormArray([]),
+        },
+        Validators.required
+      ),
+      pmrAccess: new FormControl(null, Validators.required),
+      digitalPass: new FormControl(null, Validators.required),
+      address: new FormControl(''),
+      onlineDemarcheType: new FormControl(onlineDemarcheType),
     });
   }
-
   /**
    *
    * @param pagesValidation
@@ -184,13 +219,29 @@ export class OrientationUtils {
    */
   public setValidationsOnlineMeetingForm(
     pagesValidation: any[],
-    form: UntypedFormGroup,
+    form: FormGroup<MeetingRDVSForm>,
     updatePageValid: (isValid: boolean) => void,
-    step: OnlineDemarchesMeetingSteps
+    step: MeetingRDVSSteps
   ): void {
-    pagesValidation[OnlineDemarchesMeetingSteps.structureOrientator] = {
+    pagesValidation[MeetingRDVSSteps.structureOrientator] = {
       valid: form.get('structureOrientator').valid,
     };
+    pagesValidation[MeetingRDVSSteps.publicTypeMandatory] = {
+      valid: form.get('categories').valid && form.get('categories').get('age').valid,
+    };
+    pagesValidation[MeetingRDVSSteps.publicTypeOptional] = {
+      valid: true,
+    };
+    pagesValidation[MeetingRDVSSteps.pmrAccess] = {
+      valid: form.get('pmrAccess').valid,
+    };
+    pagesValidation[MeetingRDVSSteps.digitalPass] = {
+      valid: true,
+    };
+    pagesValidation[MeetingRDVSSteps.location] = {
+      valid: true,
+    };
+
     updatePageValid(pagesValidation[step].valid);
   }
 
diff --git a/src/assets/form/rdvsImage.svg b/src/assets/form/rdvsImage.svg
new file mode 100644
index 0000000000000000000000000000000000000000..cdbb314012c7ee5b1fed5f43633494a19b5c88e9
--- /dev/null
+++ b/src/assets/form/rdvsImage.svg
@@ -0,0 +1,175 @@
+<svg width="200" height="201" viewBox="0 0 200 201" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M116.463 134.905L184.883 95.4026C191.101 91.8127 191.101 85.9924 184.883 82.4026L148.679 61.5" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
+<path d="M20.9996 126.54L44.0803 113.214C50.2981 109.624 60.3792 109.624 66.597 113.214L101.944 133.622" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
+<path d="M145.673 140.952C146.992 141.714 146.997 142.953 145.69 143.715L103.532 168.215C102.221 168.977 100.078 168.977 98.7585 168.215L54.3282 142.564C53.0087 141.802 52.9998 140.562 54.3105 139.801L96.4692 115.301C97.7799 114.539 99.923 114.539 101.243 115.301L145.673 140.952Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
+<path d="M136.825 141.112C137.888 141.728 137.892 142.729 136.838 143.34L102.845 163.093C101.787 163.708 100.06 163.708 98.9969 163.093L63.1702 142.41C62.1075 141.794 62.0986 140.798 63.1569 140.183L97.1504 120.429C98.2087 119.814 99.9356 119.814 100.998 120.429L136.825 141.112Z" fill="#EDEDED"/>
+<path d="M68.0088 103.646V140.948L100.616 159.594V122.297L68.0088 103.646Z" fill="white"/>
+<path d="M68.0088 103.646V140.948L100.616 159.594V122.297L68.0088 103.646Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M100.616 122.299L133.175 103.626L100.616 84.9355L68.0088 103.648L100.616 122.299Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M100.638 119.544L128.335 103.657L100.638 87.7559L72.9014 103.679L100.638 119.544Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M133.175 103.625L133.224 140.948L100.616 159.595V122.298L133.175 103.625Z" fill="white"/>
+<path d="M133.175 103.625L133.224 140.948L100.616 159.595V122.298L133.175 103.625Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M100.616 80.6709L68.0088 99.3879L100.616 118.034L133.175 99.3614L100.616 80.6709ZM72.9017 99.4189L100.638 83.4959L128.34 99.3968L100.638 115.28L72.9017 99.4189Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M68.0088 99.3887V106.075L100.616 124.721V118.035L68.0088 99.3887Z" fill="white"/>
+<path d="M68.0088 99.3887V106.075L100.616 124.721V118.035L68.0088 99.3887Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M100.616 118.033V124.351L133.175 105.674V99.3555L100.616 118.033Z" fill="white"/>
+<path d="M100.616 118.033V124.351L133.175 105.674V99.3555L100.616 118.033Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M100.639 83.4961V87.7558L124.621 101.527L128.336 99.3969L100.639 83.4961Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M72.9014 99.4191L100.638 83.4961V87.7558L76.5855 101.527L72.9014 99.4191Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M122.428 115.62V125.37L128.729 121.775L129.756 121.195V111.436L122.428 115.62Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M122.428 115.624V124.303L128.729 120.708V112.033L122.428 115.624Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M113.134 120.735V130.49L119.435 126.894L120.462 126.31V116.555L113.134 120.735Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M113.134 120.74V129.423L119.435 125.827V117.148L113.134 120.74Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M104.034 125.491V135.241L110.335 131.65L111.367 131.065V121.311L104.034 125.491Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M104.034 125.495V134.179L110.335 130.583V121.904L104.034 125.495Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M122.45 127.523V137.278L128.751 133.683L129.783 133.094V123.339L122.45 127.523Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M122.45 127.528V136.211L128.751 132.615V123.937L122.45 127.528Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M113.156 132.638V142.388L119.457 138.797L120.489 138.213V128.458L113.156 132.638Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M113.156 132.643V141.326L119.457 137.731V129.052L113.156 132.643Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M104.062 137.394V147.149L110.358 143.553L111.39 142.969V133.214L104.062 137.394Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M104.062 137.402V146.08L110.358 142.485V133.811L104.062 137.402Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M90.6436 151.983L90.6745 127.058L98.4323 131.534L98.4014 156.464L90.6436 151.983Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M69.2617 139.646L69.2927 114.717L77.0505 119.198L77.0195 144.123L69.2617 139.646Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M87.991 129.367L87.9245 152.41L76.2568 145.671L76.3233 122.632L87.991 129.367Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M74.5147 122.513L77.2025 120.95L77.1316 146.19L74.4395 147.753L74.5147 122.513Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M88.0694 128.503L90.7616 126.94L90.6819 154.009L87.9941 155.576L88.0694 128.503Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M72.8701 119.732L75.5623 118.164L90.7591 126.94L88.0669 128.503L72.8701 119.732Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M88.0689 128.503L87.9937 155.576L86.3464 154.624L86.4173 129.389L74.5149 122.512L74.4397 147.752L72.7969 146.8L72.8722 119.731L88.0689 128.503Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M74.4502 126.356L75.2384 125.896L86.4057 132.351L86.4146 133.273L74.4502 126.356Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M86.4151 133.273L86.4018 137.209L74.4375 130.297L74.4507 126.356L86.4151 133.273Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M85.1492 140.492L85.1403 143.645L84.0732 143.03L84.0865 139.877L85.1492 140.492Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M84.2203 141.29L84.0432 141.503C83.9901 141.569 83.8971 141.596 83.8174 141.569L82.8211 141.251C82.6705 141.202 82.52 141.33 82.551 141.49C82.5642 141.569 82.6218 141.631 82.6971 141.653L84.2513 142.141C84.3133 142.158 84.3797 142.149 84.4284 142.114L84.8535 141.835C84.9775 141.751 84.9775 141.565 84.8535 141.485L84.5037 141.255C84.4107 141.189 84.2912 141.211 84.2203 141.29Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M68.0088 63.3496V100.646L100.616 119.293V81.9958L68.0088 63.3496Z" fill="white"/>
+<path d="M68.0088 63.3496V100.646L100.616 119.293V81.9958L68.0088 63.3496Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M100.616 81.9955L133.175 63.3227L100.616 44.6367L68.0088 63.3493L100.616 81.9955Z" fill="white"/>
+<path d="M100.616 81.9955L133.175 63.3227L100.616 44.6367L68.0088 63.3493L100.616 81.9955Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M133.175 63.3223L133.224 100.646L100.616 119.292V81.995L133.175 63.3223Z" fill="white"/>
+<path d="M133.175 63.3223L133.224 100.646L100.616 119.292V81.995L133.175 63.3223Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M77.4734 75.6859V85.4407L71.1724 81.8452L70.1406 81.2607V71.5059L77.4734 75.6859Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M77.469 75.6907V84.3739L71.168 80.774V72.0996L77.469 75.6907Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M86.7683 80.805V90.5598L80.4673 86.9643L79.4355 86.3798V76.625L86.7683 80.805Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M86.7639 80.8034V89.4867L80.4629 85.8912V77.2168L86.7639 80.8034Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M95.8624 85.5609V95.3157L89.5614 91.7202L88.5342 91.1357V81.3809L95.8624 85.5609Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M95.8625 85.5637V94.247L89.5615 90.6515V81.9727L95.8625 85.5637Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M77.5715 87.5887V97.3435L71.2705 93.7524L70.2432 93.1635V83.4131L77.5715 87.5887Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M77.5715 87.593V96.2763L71.2705 92.6808V84.002L77.5715 87.593Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M86.8674 92.7073V102.462L80.5664 98.8666L79.5391 98.2822V88.5273L86.8674 92.7073Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M86.8664 92.7122V101.391L80.5654 97.7999V89.1211L86.8664 92.7122Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M95.9621 97.4632V107.218L89.6655 103.623L88.6338 103.042V93.2832L95.9621 97.4632Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M95.9621 97.4705V106.145L89.6611 102.554V93.875L95.9621 97.4705Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M122.428 75.3197V85.0745L128.729 81.479L129.756 80.8945V71.1396L122.428 75.3197Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M122.428 75.3245V84.0033L128.729 80.4122V71.7334L122.428 75.3245Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M113.134 80.4339V90.1931L119.435 86.5932L120.462 86.0087V76.2539L113.134 80.4339Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M113.134 80.4417V89.1205L119.435 85.5294V76.8506L113.134 80.4417Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M104.034 85.1947V94.945L110.34 91.3539L111.367 90.765V81.0146L104.034 85.1947Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M104.034 85.1975V93.8808L110.34 90.2853V81.6064L104.034 85.1975Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M122.449 87.22V96.9749L128.75 93.3794L129.782 92.7949V83.04L122.449 87.22Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M122.449 87.2249V95.9081L128.75 92.3126V83.6338L122.449 87.2249Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M113.155 92.3392V102.09L119.456 98.4941L120.488 97.9096V88.1592L113.155 92.3392Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M113.155 92.344V101.027L119.456 97.4317V88.7529L113.155 92.344Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M104.061 97.095V106.845L110.362 103.254L111.389 102.67V92.915L104.061 97.095Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M104.061 97.0999V105.779L110.362 102.188V93.5088L104.061 97.0999Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M68.0088 61.4141V63.3491L100.882 82.7569V80.8263L68.0088 61.4141Z" fill="white"/>
+<path d="M68.0088 61.4141V63.3491L100.882 82.7569V80.8263L68.0088 61.4141Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M100.882 80.8262L133.056 62.3749L100.231 42.9229L68.0088 61.4141L100.882 80.8262Z" fill="white"/>
+<path d="M100.882 80.8262L133.056 62.3749L100.231 42.9229L68.0088 61.4141L100.882 80.8262Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M133.055 62.374L133.104 64.3356L100.882 82.756V80.8254L133.055 62.374Z" fill="white"/>
+<path d="M133.055 62.374L133.104 64.3356L100.882 82.756V80.8254L133.055 62.374Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M98.7614 41.9336L69.8379 58.5385L73.6902 60.7392L100.878 76.547L125.949 62.1694L129.757 59.9864L98.7614 41.9336ZM100.9 74.1028L74.1773 58.565L98.7791 44.4442L125.471 60.0174L123.833 60.9561L100.9 74.1028Z" fill="white"/>
+<path d="M98.7614 41.9336L69.8379 58.5385L73.6902 60.7392L100.878 76.547L125.949 62.1694L129.757 59.9864L98.7614 41.9336ZM100.9 74.1028L74.1773 58.565L98.7791 44.4442L125.471 60.0174L123.833 60.9561L100.9 74.1028Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M69.8447 58.5371V60.5784L100.88 78.5914V76.5457L69.8447 58.5371Z" fill="white"/>
+<path d="M69.8447 58.5371V60.5784L100.88 78.5914V76.5457L69.8447 58.5371Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M100.88 76.546V78.5917L129.764 62.0222V59.9854L100.88 76.546Z" fill="white"/>
+<path d="M100.88 76.546V78.5917L129.764 62.0222V59.9854L100.88 76.546Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M98.7812 44.4385L98.8122 46.7543L123.467 61.1673L125.469 60.0116L98.7812 44.4385Z" fill="white"/>
+<path d="M98.7812 44.4385L98.8122 46.7543L123.467 61.1673L125.469 60.0116L98.7812 44.4385Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M74.1787 58.5637L98.785 44.4385L98.8159 46.7543L76.1935 59.715L74.1787 58.5637Z" fill="white"/>
+<path d="M74.1787 58.5637L98.785 44.4385L98.8159 46.7543L76.1935 59.715L74.1787 58.5637Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M107.017 55.6205C110.887 57.8566 110.909 61.4742 107.066 63.7104C103.222 65.9465 96.9655 65.9465 93.0954 63.7104C89.2254 61.4742 89.2077 57.8566 93.0511 55.6205C96.8946 53.3843 103.147 53.3843 107.017 55.6205Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
+<path d="M104.372 57.1576C106.772 58.5436 106.786 60.7886 104.403 62.1745C102.021 63.5605 98.1422 63.5605 95.7422 62.1745C93.3422 60.7886 93.3334 58.5436 95.7156 57.1576C98.0978 55.7717 101.972 55.7717 104.372 57.1576Z" fill="#EDEDED"/>
+<path d="M94.5967 25.9454L101.168 22.124C100.331 22.6111 99.8084 23.6472 99.8084 25.1173C99.7996 28.0752 101.885 31.6884 104.462 33.1762L97.8911 36.9976C95.3141 35.5098 93.2285 31.901 93.2373 28.9387C93.2373 27.4686 93.7598 26.4324 94.5967 25.9454Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M107.783 33.5039L101.212 37.3252C100.361 37.8167 99.188 37.7503 97.8906 37.002L104.462 33.1807C105.759 33.929 106.933 33.9998 107.783 33.5039Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M109.935 37.4004L116.506 33.5791C116.484 41.2085 104.998 56.671 104.391 57.4857L97.8203 61.3071C98.4225 60.4967 109.913 45.0343 109.935 37.4004Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M89.3926 15.8007L95.9637 11.9793C98.1511 10.7085 101.175 10.8856 104.519 12.8162L97.9474 16.6376C94.6043 14.7114 91.5756 14.5299 89.3926 15.8007Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M97.9443 16.6368L104.515 12.8154C111.157 16.6501 116.524 25.9488 116.502 33.5782L109.931 37.3995C109.953 29.7701 104.586 20.4714 97.9443 16.6368Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M97.9437 16.638C104.586 20.4726 109.952 29.7714 109.93 37.4007C109.908 45.0301 98.4219 60.4926 97.8152 61.3074C97.2175 59.7974 85.8597 31.1485 85.8819 23.5146C85.904 15.8808 91.3061 12.8078 97.9437 16.638ZM97.8861 36.9978C100.468 38.4856 102.562 37.29 102.571 34.3277C102.58 31.361 100.499 27.7567 97.9171 26.2689C95.34 24.7811 93.2411 25.9722 93.2323 28.9389C93.2279 31.9012 95.3134 35.5144 97.8861 36.9978Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M123.199 156.5L141.949 167.325C148.167 170.915 148.167 176.735 141.949 180.325L128.462 188.112" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
+<path d="M128.208 154.049C130.248 155.225 130.261 157.135 128.233 158.311C126.206 159.487 122.909 159.487 120.869 158.311C118.829 157.135 118.82 155.225 120.848 154.049C122.876 152.873 126.168 152.873 128.208 154.049Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
+<path d="M132.538 185.472C137.717 188.463 137.75 193.312 132.6 196.302C127.455 199.293 119.079 199.293 113.901 196.302C108.723 193.312 108.695 188.463 113.845 185.472C118.996 182.481 127.36 182.481 132.538 185.472Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/>
+<path d="M133.431 185.957C133.425 186.007 133.425 186.057 133.42 186.113C133.414 186.158 133.408 186.202 133.403 186.247C133.397 186.297 133.386 186.347 133.38 186.398C133.369 186.442 133.364 186.487 133.353 186.532C133.341 186.582 133.33 186.632 133.313 186.682C133.302 186.727 133.286 186.772 133.274 186.816C133.258 186.866 133.241 186.917 133.224 186.961C133.207 187.006 133.191 187.051 133.174 187.095C133.152 187.145 133.129 187.196 133.107 187.251C133.09 187.296 133.068 187.335 133.046 187.38C133.023 187.43 132.995 187.48 132.968 187.53C132.945 187.569 132.923 187.614 132.901 187.653C132.867 187.715 132.828 187.776 132.789 187.832C132.767 187.871 132.744 187.904 132.716 187.943C132.672 188.01 132.622 188.077 132.571 188.139C132.549 188.167 132.527 188.194 132.504 188.228C132.421 188.334 132.331 188.434 132.242 188.535C132.22 188.563 132.192 188.585 132.17 188.613C132.097 188.691 132.019 188.769 131.941 188.842C131.902 188.875 131.868 188.909 131.829 188.942C131.779 188.987 131.729 189.026 131.679 189.07C131.634 189.11 131.589 189.149 131.539 189.188C131.489 189.232 131.433 189.271 131.377 189.316C131.327 189.355 131.277 189.394 131.227 189.428C131.171 189.467 131.115 189.511 131.054 189.55C130.998 189.589 130.948 189.623 130.892 189.662C130.83 189.701 130.769 189.74 130.708 189.779C130.63 189.829 130.551 189.874 130.473 189.924C130.25 190.053 130.021 190.17 129.787 190.287C129.726 190.315 129.664 190.348 129.597 190.376C129.385 190.477 129.168 190.566 128.944 190.655C128.916 190.666 128.889 190.678 128.855 190.689C128.615 190.778 128.37 190.862 128.124 190.94C127.951 190.996 127.773 191.04 127.6 191.09C127.466 191.13 127.332 191.163 127.198 191.196C127.014 191.241 126.824 191.28 126.634 191.319C126.495 191.347 126.361 191.381 126.221 191.403C126.166 191.414 126.104 191.42 126.048 191.431C125.814 191.47 125.58 191.503 125.34 191.531C125.273 191.537 125.2 191.548 125.133 191.554C124.999 191.57 124.86 191.576 124.72 191.587C124.491 191.604 124.263 191.621 124.028 191.632C123.883 191.637 123.733 191.643 123.588 191.643C123.403 191.648 123.214 191.648 123.03 191.643C122.873 191.643 122.717 191.637 122.561 191.632C122.388 191.626 122.215 191.615 122.042 191.604C121.886 191.593 121.729 191.582 121.568 191.565C121.395 191.548 121.227 191.531 121.06 191.509C120.909 191.492 120.753 191.47 120.602 191.442C120.418 191.414 120.24 191.381 120.061 191.347C119.921 191.319 119.776 191.291 119.637 191.263C119.425 191.219 119.213 191.163 119.001 191.107C118.867 191.074 118.727 191.04 118.593 190.996C118.521 190.973 118.448 190.951 118.381 190.929C118.169 190.862 117.963 190.789 117.762 190.717C117.701 190.694 117.645 190.672 117.583 190.65C117.399 190.577 117.221 190.499 117.042 190.421C116.953 190.382 116.864 190.348 116.78 190.304C116.523 190.181 116.272 190.053 116.032 189.913C114.018 188.752 113.013 187.224 113.019 185.7L113.008 190.092C113.002 191.615 114.007 193.138 116.021 194.305C116.261 194.444 116.512 194.572 116.769 194.695C116.852 194.734 116.947 194.773 117.031 194.812C117.182 194.879 117.332 194.952 117.489 195.013C117.516 195.024 117.544 195.035 117.572 195.041C117.628 195.063 117.689 195.086 117.751 195.108C117.952 195.181 118.164 195.253 118.37 195.32C118.443 195.342 118.515 195.365 118.588 195.387C118.638 195.404 118.683 195.421 118.733 195.432C118.817 195.454 118.906 195.471 118.995 195.493C119.207 195.549 119.414 195.599 119.631 195.649C119.687 195.66 119.743 195.677 119.799 195.688C119.882 195.705 119.966 195.716 120.05 195.733C120.228 195.766 120.413 195.8 120.591 195.828C120.664 195.839 120.736 195.856 120.809 195.867C120.887 195.878 120.971 195.884 121.049 195.895C121.216 195.917 121.389 195.934 121.562 195.951C121.646 195.956 121.724 195.973 121.808 195.979C121.886 195.984 121.958 195.984 122.036 195.99C122.209 196.001 122.382 196.012 122.555 196.018C122.644 196.023 122.728 196.029 122.818 196.029C122.884 196.029 122.957 196.029 123.024 196.029C123.208 196.029 123.398 196.029 123.582 196.029C123.677 196.029 123.766 196.029 123.861 196.029C123.917 196.029 123.973 196.018 124.023 196.018C124.252 196.006 124.486 195.99 124.715 195.973C124.81 195.967 124.899 195.962 124.994 195.956C125.038 195.951 125.083 195.945 125.128 195.939C125.195 195.934 125.267 195.923 125.334 195.917C125.574 195.889 125.808 195.856 126.043 195.817C126.099 195.806 126.16 195.8 126.216 195.789C126.244 195.783 126.272 195.783 126.299 195.778C126.411 195.755 126.517 195.727 126.629 195.705C126.818 195.666 127.008 195.627 127.192 195.582C127.326 195.549 127.46 195.51 127.594 195.476C127.773 195.426 127.946 195.381 128.119 195.326C128.158 195.315 128.197 195.303 128.23 195.292C128.442 195.225 128.649 195.153 128.849 195.075C128.877 195.063 128.905 195.052 128.939 195.041C129.162 194.952 129.38 194.863 129.592 194.762C129.653 194.734 129.72 194.706 129.781 194.673C130.016 194.561 130.25 194.438 130.468 194.31C130.512 194.288 130.551 194.26 130.59 194.238C130.629 194.215 130.663 194.193 130.702 194.165C130.763 194.126 130.825 194.087 130.886 194.048C130.942 194.009 130.998 193.975 131.048 193.936C131.104 193.897 131.165 193.858 131.221 193.813C131.271 193.774 131.321 193.735 131.372 193.696C131.427 193.657 131.478 193.613 131.533 193.574C131.584 193.534 131.628 193.495 131.673 193.456C131.723 193.412 131.773 193.373 131.818 193.328C131.84 193.311 131.857 193.295 131.879 193.278C131.896 193.261 131.913 193.244 131.93 193.228C132.008 193.149 132.086 193.077 132.158 192.999C132.181 192.971 132.209 192.949 132.231 192.921C132.326 192.82 132.415 192.714 132.493 192.614C132.499 192.608 132.499 192.603 132.504 192.603C132.521 192.58 132.538 192.552 132.56 192.53C132.61 192.463 132.661 192.402 132.705 192.335C132.728 192.296 132.755 192.262 132.778 192.223C132.817 192.162 132.856 192.1 132.889 192.045C132.901 192.028 132.912 192.011 132.917 191.994C132.934 191.972 132.945 191.944 132.956 191.922C132.984 191.872 133.012 191.821 133.034 191.771C133.057 191.727 133.074 191.687 133.096 191.643C133.118 191.593 133.14 191.542 133.163 191.487C133.174 191.464 133.185 191.442 133.191 191.42C133.196 191.397 133.202 191.375 133.213 191.358C133.23 191.308 133.247 191.258 133.263 191.208C133.274 191.163 133.291 191.118 133.302 191.074C133.313 191.024 133.33 190.973 133.341 190.923C133.347 190.895 133.358 190.867 133.364 190.845C133.369 190.828 133.369 190.806 133.375 190.789C133.386 190.739 133.392 190.689 133.397 190.638C133.403 190.594 133.408 190.549 133.414 190.505C133.42 190.454 133.42 190.404 133.425 190.348C133.425 190.32 133.431 190.287 133.431 190.259C133.431 190.231 133.431 190.198 133.431 190.17L133.442 185.778C133.436 185.84 133.436 185.901 133.431 185.957Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
+<path d="M130.423 181.566C134.424 183.876 134.446 187.62 130.473 189.93C126.5 192.24 120.033 192.24 116.032 189.93C112.031 187.62 112.014 183.876 115.987 181.566C119.96 179.255 126.422 179.255 130.423 181.566Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
+<path d="M123.755 181.778L126.333 187.592C126.372 187.676 126.316 187.771 126.227 187.782L120.703 188.591C120.641 188.602 120.58 188.569 120.558 188.513L120.128 187.548C120.089 187.464 120.145 187.369 120.234 187.358L123.565 186.867C123.654 186.856 123.705 186.761 123.671 186.677L121.674 182.163C121.634 182.079 121.69 181.985 121.78 181.973L123.615 181.705C123.671 181.689 123.727 181.722 123.755 181.778Z" fill="#DA3635"/>
+<path d="M24.8715 127.409C28.1368 129.363 28.1555 132.524 24.9126 134.478C21.6697 136.432 16.3906 136.432 13.1253 134.478C9.86 132.524 9.84506 129.363 13.088 127.409C16.3309 125.455 21.6062 125.455 24.8715 127.409Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
+<path d="M23.091 128.822C25.1816 129.994 25.1931 131.893 23.118 133.064C21.0429 134.236 17.6642 134.236 15.5737 133.064C13.4832 131.893 13.4755 129.994 15.5505 128.822C17.6256 127.65 21.0005 127.65 23.091 128.822Z" fill="#EDEDED"/>
+<path d="M14.254 101.369L19.9761 98.041C19.2473 98.4652 18.7923 99.3674 18.7923 100.648C18.7846 103.223 20.6007 106.37 22.8448 107.665L17.1228 110.993C14.8787 109.697 13.0626 106.555 13.0703 103.975C13.0703 102.695 13.5253 101.793 14.254 101.369Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M25.7369 107.95L20.0149 111.278C19.2746 111.706 18.2528 111.648 17.123 110.996L22.845 107.669C23.9748 108.321 24.9965 108.382 25.7369 107.95Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M27.611 111.343L33.333 108.016C33.3137 114.659 23.3117 128.124 22.7835 128.833L17.0615 132.161C17.5859 131.455 27.5917 117.991 27.611 111.343Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M9.72363 92.5349L15.4457 89.2074C17.3504 88.1008 19.9839 88.255 22.895 89.9361L17.173 93.2637C14.2619 91.5864 11.6245 91.4283 9.72363 92.5349Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M17.1689 93.2641L22.8909 89.9365C28.6746 93.2756 33.3478 101.373 33.3286 108.016L27.6065 111.344C27.6258 104.7 22.9526 96.6032 17.1689 93.2641Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M17.1692 93.264C22.9529 96.6031 27.6261 104.7 27.6068 111.344C27.5875 117.987 17.5856 131.452 17.0574 132.161C16.5368 130.846 6.64676 105.899 6.66604 99.252C6.68532 92.6046 11.3894 89.9287 17.1692 93.264ZM17.1191 110.993C19.367 112.288 21.1908 111.247 21.1985 108.668C21.2062 106.084 19.394 102.946 17.1461 101.65C14.902 100.355 13.0744 101.392 13.0666 103.975C13.0628 106.555 14.8789 109.701 17.1191 110.993Z" fill="#706F6F" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M153.972 87.8867C154.213 87.8867 154.373 88.0426 154.373 88.2995V94.2098C154.373 94.4499 154.217 94.61 153.972 94.61C153.728 94.61 153.56 94.4541 153.56 94.2098V88.2995C153.576 88.131 153.732 87.8867 153.972 87.8867Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M153.972 90.4776C156.125 90.4776 157.86 88.742 157.86 86.5894C157.86 84.4409 156.125 82.7012 153.972 82.7012C151.82 82.7012 150.084 84.4367 150.084 86.5894C150.084 88.742 151.824 90.4776 153.972 90.4776Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M153.972 90.4776C156.121 90.4776 157.86 88.7378 157.86 86.5894C157.86 84.4409 156.121 82.7012 153.972 82.7012C151.824 82.7012 150.084 84.4409 150.084 86.5894C150.084 88.7378 151.824 90.4776 153.972 90.4776Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M155.114 89.4248C152.919 89.4248 151.226 87.647 151.226 85.5366C151.226 84.6393 151.554 83.8431 151.95 83.2744C150.809 83.9316 150 85.2248 150 86.5939C150 88.7844 151.782 90.4821 153.888 90.4821C155.186 90.4821 156.323 89.8291 157.052 88.8603C156.479 89.2562 155.839 89.4248 155.114 89.4248Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M155.114 89.4248C152.919 89.4248 151.226 87.647 151.226 85.5366C151.226 84.6393 151.554 83.8431 151.95 83.2744C150.809 83.9316 150 85.2248 150 86.5939C150 88.7844 151.782 90.4821 153.888 90.4821C155.186 90.4821 156.323 89.8291 157.052 88.8603C156.479 89.2562 155.839 89.4248 155.114 89.4248Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M177.942 79.6309H178.186C178.515 79.6309 178.755 79.871 178.755 80.1995V89.8379C178.755 90.1665 178.51 90.4066 178.186 90.4066H177.942C177.613 90.4066 177.373 90.1665 177.373 89.8379V80.1995C177.386 79.871 177.63 79.6309 177.942 79.6309Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M178.027 83.6747C181.43 83.6747 184.177 80.9281 184.177 77.5244C184.177 74.1206 181.426 71.374 178.027 71.374C174.623 71.374 171.872 74.1206 171.872 77.5244C171.876 80.9239 174.623 83.6747 178.027 83.6747Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M178.027 83.6747C181.43 83.6747 184.177 80.9281 184.177 77.5244C184.177 74.1206 181.426 71.374 178.027 71.374C174.623 71.374 171.872 74.1206 171.872 77.5244C171.876 80.9239 174.623 83.6747 178.027 83.6747Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M179.892 82.053C176.489 82.053 173.742 79.3064 173.742 75.9026C173.742 74.5209 174.227 73.3119 174.951 72.2588C173.085 73.3119 171.876 75.3339 171.876 77.5961C171.876 80.9998 174.627 83.7464 178.031 83.7464C180.053 83.7464 181.834 82.7775 182.972 81.24C182.07 81.737 181.03 82.053 179.892 82.053Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M179.892 82.053C176.489 82.053 173.742 79.3064 173.742 75.9026C173.742 74.5209 174.227 73.3119 174.951 72.2588C173.085 73.3119 171.876 75.3339 171.876 77.5961C171.876 80.9998 174.627 83.7464 178.031 83.7464C180.053 83.7464 181.834 82.7775 182.972 81.24C182.07 81.737 181.03 82.053 179.892 82.053Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M167.33 73.1514C167.659 73.1514 167.899 73.3957 167.899 73.7201V81.1678C167.899 81.4964 167.655 81.7366 167.33 81.7366C167.002 81.7366 166.762 81.4964 166.762 81.1678V73.7201C166.779 73.3072 167.019 73.1514 167.33 73.1514Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M167.331 76.3827C170.065 76.3827 172.272 74.1753 172.272 71.4413C172.272 68.7074 170.065 66.5 167.331 66.5C164.597 66.5 162.39 68.7074 162.39 71.4413C162.39 74.1795 164.614 76.3827 167.331 76.3827Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M167.331 76.3827C170.065 76.3827 172.272 74.1753 172.272 71.4413C172.272 68.7074 170.065 66.5 167.331 66.5C164.597 66.5 162.39 68.7074 162.39 71.4413C162.39 74.1795 164.614 76.3827 167.331 76.3827Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M168.801 75.0179C166.054 75.0179 163.86 72.8274 163.86 70.0766C163.86 69.0234 164.188 67.9703 164.828 67.1572C163.375 68.0545 162.394 69.5921 162.394 71.3698C162.394 74.1164 164.588 76.3111 167.335 76.3111C168.957 76.3111 170.41 75.4981 171.307 74.2891C170.579 74.7609 169.681 75.0179 168.801 75.0179Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M168.801 75.0179C166.054 75.0179 163.86 72.8274 163.86 70.0766C163.86 69.0234 164.188 67.9703 164.828 67.1572C163.375 68.0545 162.394 69.5921 162.394 71.3698C162.394 74.1164 164.588 76.3111 167.335 76.3111C168.957 76.3111 170.41 75.4981 171.307 74.2891C170.579 74.7609 169.681 75.0179 168.801 75.0179Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M164.913 89.0957C165.313 89.0957 165.726 89.4243 165.726 89.9087V100.6C165.726 101 165.397 101.413 164.913 101.413C164.512 101.413 164.1 101.085 164.1 100.6V89.9087C164.1 89.4243 164.428 89.0957 164.913 89.0957Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M164.913 93.7085C168.801 93.7085 171.965 90.5617 171.965 86.6609C171.965 82.7601 168.805 79.6133 164.913 79.6133C161.025 79.6133 157.865 82.7601 157.865 86.6609C157.861 90.5659 161.025 93.7085 164.913 93.7085Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M164.913 93.7085C168.801 93.7085 171.965 90.5617 171.965 86.6609C171.965 82.7601 168.805 79.6133 164.913 79.6133C161.025 79.6133 157.865 82.7601 157.865 86.6609C157.861 90.5659 161.025 93.7085 164.913 93.7085Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M167.019 91.8468C163.131 91.8468 159.972 88.6874 159.972 84.7992C159.972 83.2616 160.456 81.8083 161.353 80.6709C159.247 81.8799 157.865 84.1463 157.865 86.7496C157.865 90.6378 161.025 93.7972 164.913 93.7972C167.263 93.7972 169.285 92.6598 170.583 90.9622C169.441 91.4466 168.317 91.8468 167.019 91.8468Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M167.019 91.8468C163.131 91.8468 159.972 88.6874 159.972 84.7992C159.972 83.2616 160.456 81.8083 161.353 80.6709C159.247 81.8799 157.865 84.1463 157.865 86.7496C157.865 90.6378 161.025 93.7972 164.913 93.7972C167.263 93.7972 169.285 92.6598 170.583 90.9622C169.441 91.4466 168.317 91.8468 167.019 91.8468Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M156.774 58.6325C160.172 60.583 160.186 63.7466 156.816 65.7041C153.445 67.6546 147.957 67.6546 144.558 65.7041C141.16 63.7535 141.146 60.5899 144.524 58.6325C147.901 56.675 153.383 56.6819 156.774 58.6325Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
+<path d="M157.024 51.0057C156.67 51.2386 156.374 51.5588 156.083 51.8742C155.472 52.5098 154.797 53.2085 154.356 53.98C153.769 55.0426 153.672 56.833 153.754 58.0314C153.803 58.7786 154.254 59.4288 154.72 60.0014C155.603 61.0882 156.995 60.7971 158.048 59.9528C159.004 59.1959 159.984 58.2158 160.445 57.1241C160.896 56.0712 161.459 54.9601 161.561 53.7859C161.673 52.5729 161.231 50.9329 160.033 50.3701C159.285 50.0256 157.927 50.0644 157.364 50.7" fill="white"/>
+<path d="M157.024 51.0057C156.67 51.2386 156.374 51.5588 156.083 51.8742C155.472 52.5098 154.797 53.2085 154.356 53.98C153.769 55.0426 153.672 56.833 153.754 58.0314C153.803 58.7786 154.254 59.4288 154.72 60.0014C155.603 61.0882 156.995 60.7971 158.048 59.9528C159.004 59.1959 159.984 58.2158 160.445 57.1241C160.896 56.0712 161.459 54.9601 161.561 53.7859C161.673 52.5729 161.231 50.9329 160.033 50.3701C159.285 50.0256 157.927 50.0644 157.364 50.7" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M157.024 51.0057C156.67 51.2386 156.374 51.5588 156.083 51.8742C155.472 52.5098 154.797 53.2085 154.356 53.98C153.769 55.0426 153.672 56.833 153.754 58.0314C153.803 58.7786 154.254 59.4288 154.72 60.0014C155.603 61.0882 156.995 60.7971 158.048 59.9528C159.004 59.1959 159.984 58.2158 160.445 57.1241C160.896 56.0712 161.459 54.9601 161.561 53.7859C161.673 52.5729 161.231 50.9329 160.033 50.3701C159.285 50.0256 157.927 50.0644 157.364 50.7" fill="white"/>
+<path d="M157.024 51.0057C156.67 51.2386 156.374 51.5588 156.083 51.8742C155.472 52.5098 154.797 53.2085 154.356 53.98C153.769 55.0426 153.672 56.833 153.754 58.0314C153.803 58.7786 154.254 59.4288 154.72 60.0014C155.603 61.0882 156.995 60.7971 158.048 59.9528C159.004 59.1959 159.984 58.2158 160.445 57.1241C160.896 56.0712 161.459 54.9601 161.561 53.7859C161.673 52.5729 161.231 50.9329 160.033 50.3701C159.285 50.0256 157.927 50.0644 157.364 50.7" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M145.064 58.1045C144.317 58.2646 143.521 58.6673 142.973 59.1816C142.337 59.7687 141.92 60.5014 141.444 61.1758C140.954 61.8503 140.513 62.5344 140.304 63.3544C139.984 64.6256 139.741 66.0084 140.522 67.1826C141.279 68.3471 142.516 68.7984 143.841 68.2841C145.054 67.8086 146.155 66.7799 146.743 65.63C147.194 64.7372 147.65 64.0628 147.931 62.8886C148.455 60.7003 148.63 58.7789 146.044 58.1287" fill="white"/>
+<path d="M145.064 58.1045C144.317 58.2646 143.521 58.6673 142.973 59.1816C142.337 59.7687 141.92 60.5014 141.444 61.1758C140.954 61.8503 140.513 62.5344 140.304 63.3544C139.984 64.6256 139.741 66.0084 140.522 67.1826C141.279 68.3471 142.516 68.7984 143.841 68.2841C145.054 67.8086 146.155 66.7799 146.743 65.63C147.194 64.7372 147.65 64.0628 147.931 62.8886C148.455 60.7003 148.63 58.7789 146.044 58.1287" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M145.064 58.1045C144.317 58.2646 143.521 58.6673 142.973 59.1816C142.337 59.7687 141.92 60.5014 141.444 61.1758C140.954 61.8503 140.513 62.5344 140.304 63.3544C139.984 64.6256 139.741 66.0084 140.522 67.1826C141.279 68.3471 142.516 68.7984 143.841 68.2841C145.054 67.8086 146.155 66.7799 146.743 65.63C147.194 64.7372 147.65 64.0628 147.931 62.8886C148.455 60.7003 148.63 58.7789 146.044 58.1287" fill="white"/>
+<path d="M145.064 58.1045C144.317 58.2646 143.521 58.6673 142.973 59.1816C142.337 59.7687 141.92 60.5014 141.444 61.1758C140.954 61.8503 140.513 62.5344 140.304 63.3544C139.984 64.6256 139.741 66.0084 140.522 67.1826C141.279 68.3471 142.516 68.7984 143.841 68.2841C145.054 67.8086 146.155 66.7799 146.743 65.63C147.194 64.7372 147.65 64.0628 147.931 62.8886C148.455 60.7003 148.63 58.7789 146.044 58.1287" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M150.489 62.2042C150.222 63.3445 152.852 62.8301 153.046 62.0441C153.119 61.7384 152.997 61.6025 152.716 61.6025C152.289 61.6025 152.473 61.9325 152.216 62.1654C151.663 62.5972 150.916 61.9616 150.489 62.2042Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M153.327 51.8014C153.938 51.8984 154.196 52.6311 154.501 53.0968C154.807 53.5481 155.151 53.9799 155.515 54.3827C155.845 54.7368 156.2 55.1153 156.631 55.3627C156.976 55.5471 157.354 55.5714 157.733 55.5714C157.951 55.5714 157.951 55.2269 157.733 55.2269C157.218 55.2269 156.85 55.1541 156.447 54.8096C156.005 54.4554 155.627 54.0139 155.273 53.5627C154.894 53.0872 154.598 52.5971 154.283 52.0828C154.074 51.7528 153.807 51.5199 153.414 51.4569C153.191 51.4374 153.109 51.7771 153.327 51.8014Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M146.116 55.5569C145.874 56.8669 145.442 58.1624 145.063 59.4482C144.879 60.0596 144.622 60.6709 144.452 61.2969C144.282 61.947 144.234 62.6069 144.011 63.228C144.059 63.1891 144.122 63.1406 144.171 63.0921H144.122C144.171 63.1891 144.195 63.2862 144.243 63.3881C144.258 63.3735 144.292 63.3493 144.307 63.325C144.467 63.1649 144.219 62.9223 144.064 63.0824C144.049 63.097 144.025 63.1309 144.001 63.1455C143.889 63.2571 143.986 63.4269 144.122 63.4414H144.171C144.243 63.456 144.306 63.3784 144.331 63.3056C144.549 62.6942 144.603 62.0586 144.748 61.4327C144.918 60.7825 145.19 60.1614 145.374 59.5113C145.752 58.24 146.194 56.9397 146.427 55.62C146.495 55.4356 146.155 55.3385 146.116 55.5569Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M144.243 54.2756C144.074 55.0567 145.393 55.3673 146.078 55.3042C146.922 55.2314 146.946 54.654 146.349 54.13C145.956 53.7855 144.903 53.5672 144.476 53.7613" fill="white"/>
+<path d="M144.243 54.2756C144.074 55.0567 145.393 55.3673 146.078 55.3042C146.922 55.2314 146.946 54.654 146.349 54.13C145.956 53.7855 144.903 53.5672 144.476 53.7613" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M144.243 54.2756C144.074 55.0567 145.393 55.3673 146.078 55.3042C146.922 55.2314 146.946 54.654 146.349 54.13C145.956 53.7855 144.903 53.5672 144.476 53.7613" fill="white"/>
+<path d="M144.243 54.2756C144.074 55.0567 145.393 55.3673 146.078 55.3042C146.922 55.2314 146.946 54.654 146.349 54.13C145.956 53.7855 144.903 53.5672 144.476 53.7613" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M146.029 55.3776C146.505 55.9889 146.898 56.6973 147.509 57.1874C148.266 57.7745 149.1 58.2645 149.872 58.8274C150.056 58.9632 150.226 58.6673 150.042 58.5217C149.319 57.9977 148.562 57.5319 147.849 57.003C147.198 56.5275 146.796 55.8288 146.32 55.1932C146.204 55.0185 145.898 55.1932 146.029 55.3776Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M153.143 50.1512C153.157 50.651 153.191 51.1411 153.191 51.6311C153.191 51.8495 153.536 51.8495 153.536 51.6311C153.521 51.1314 153.497 50.6413 153.487 50.1512C153.487 49.9426 153.143 49.928 153.143 50.1512Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M153.118 51.9223C153.206 52.2765 152.885 52.7325 152.774 53.0625C152.58 53.6399 152.454 54.2367 152.332 54.8383C152.124 55.9397 151.857 57.0266 151.488 58.0698C151.415 58.2784 151.745 58.3755 151.818 58.1668C152.235 57.0169 152.492 55.8281 152.725 54.6297C152.837 54.0523 152.968 53.4652 153.191 52.9266C153.327 52.5821 153.545 52.2182 153.448 51.8252C153.414 51.6069 153.07 51.7039 153.118 51.9223Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M153.07 51.5824C152.827 52.1598 152.104 52.4898 151.59 52.7712C150.891 53.1642 150.217 53.5912 149.508 53.9842C149.324 54.0958 149.494 54.3869 149.678 54.2899C150.459 53.8483 151.245 53.3825 152.017 52.9313C152.541 52.6256 153.142 52.2811 153.375 51.6843C153.497 51.4611 153.157 51.3738 153.07 51.5824Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M151.759 48.279C152.162 48.8904 153.069 48.9292 153.608 49.3804C153.778 49.5163 154.025 49.2834 153.851 49.1378C153.593 48.9195 153.288 48.8079 152.992 48.6623C152.696 48.5265 152.259 48.3809 152.06 48.0995C151.944 47.9248 151.638 48.0946 151.759 48.279Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M155.442 50.2582C155.481 50.6998 155.37 51.1413 155.37 51.5683C155.355 51.7866 155.7 51.7866 155.714 51.5683C155.729 51.1267 155.811 50.6998 155.787 50.2582C155.772 50.0399 155.433 50.0302 155.442 50.2582Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M151.478 58.0412C151.502 57.6385 151.871 57.0853 152.21 57.6239C152.371 57.8665 152.089 58.934 151.939 59.1668C151.521 59.8413 151.376 59.327 151.352 58.7641C151.332 58.1673 151.357 58.7787 151.478 58.0412Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M150.023 57.6532C149.935 58.8274 150.231 60.2345 150.377 61.399C150.45 61.9861 150.391 62.6217 151.037 62.5635C151.464 62.5149 152.541 62.2578 152.507 61.7435C151.93 61.7289 151.648 61.758 151.551 61.1806C151.478 60.7391 151.527 60.249 151.503 59.8123C151.439 58.7109 151.391 57.4494 150.644 56.5566" fill="white"/>
+<path d="M150.023 57.6532C149.935 58.8274 150.231 60.2345 150.377 61.399C150.45 61.9861 150.391 62.6217 151.037 62.5635C151.464 62.5149 152.541 62.2578 152.507 61.7435C151.93 61.7289 151.648 61.758 151.551 61.1806C151.478 60.7391 151.527 60.249 151.503 59.8123C151.439 58.7109 151.391 57.4494 150.644 56.5566" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M150.023 57.6532C149.935 58.8274 150.231 60.2345 150.377 61.399C150.45 61.9861 150.391 62.6217 151.037 62.5635C151.464 62.5149 152.541 62.2578 152.507 61.7435C151.93 61.7289 151.648 61.758 151.551 61.1806C151.478 60.7391 151.527 60.249 151.503 59.8123C151.439 58.7109 151.391 57.4494 150.644 56.5566" fill="white"/>
+<path d="M150.023 57.6532C149.935 58.8274 150.231 60.2345 150.377 61.399C150.45 61.9861 150.391 62.6217 151.037 62.5635C151.464 62.5149 152.541 62.2578 152.507 61.7435C151.93 61.7289 151.648 61.758 151.551 61.1806C151.478 60.7391 151.527 60.249 151.503 59.8123C151.439 58.7109 151.391 57.4494 150.644 56.5566" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M149.251 50.9566C148.212 51.8008 149.187 53.368 149.644 54.2705C149.949 54.8964 150.318 55.4932 150.536 56.1434C150.73 56.7208 151.099 57.3322 150.367 57.536C149.226 57.8659 147.378 57.6087 147.271 56.2259C147.208 55.4205 147.222 54.9789 146.538 54.4646C145.951 54.0134 144.923 53.9115 144.432 53.3729C143.748 52.616 144.36 51.6989 144.995 51.2331C145.413 50.9274 145.447 50.68 145.728 50.2773C146.048 49.8261 146.354 50.0589 146.82 50.3258" fill="white"/>
+<path d="M149.251 50.9566C148.212 51.8008 149.187 53.368 149.644 54.2705C149.949 54.8964 150.318 55.4932 150.536 56.1434C150.73 56.7208 151.099 57.3322 150.367 57.536C149.226 57.8659 147.378 57.6087 147.271 56.2259C147.208 55.4205 147.222 54.9789 146.538 54.4646C145.951 54.0134 144.923 53.9115 144.432 53.3729C143.748 52.616 144.36 51.6989 144.995 51.2331C145.413 50.9274 145.447 50.68 145.728 50.2773C146.048 49.8261 146.354 50.0589 146.82 50.3258" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M149.251 50.9566C148.212 51.8008 149.187 53.368 149.644 54.2705C149.949 54.8964 150.318 55.4932 150.536 56.1434C150.73 56.7208 151.099 57.3322 150.367 57.536C149.226 57.8659 147.378 57.6087 147.271 56.2259C147.208 55.4205 147.222 54.9789 146.538 54.4646C145.951 54.0134 144.923 53.9115 144.432 53.3729C143.748 52.616 144.36 51.6989 144.995 51.2331C145.413 50.9274 145.447 50.68 145.728 50.2773C146.048 49.8261 146.354 50.0589 146.82 50.3258" fill="white"/>
+<path d="M149.251 50.9566C148.212 51.8008 149.187 53.368 149.644 54.2705C149.949 54.8964 150.318 55.4932 150.536 56.1434C150.73 56.7208 151.099 57.3322 150.367 57.536C149.226 57.8659 147.378 57.6087 147.271 56.2259C147.208 55.4205 147.222 54.9789 146.538 54.4646C145.951 54.0134 144.923 53.9115 144.432 53.3729C143.748 52.616 144.36 51.6989 144.995 51.2331C145.413 50.9274 145.447 50.68 145.728 50.2773C146.048 49.8261 146.354 50.0589 146.82 50.3258" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M152.419 49.1719C152.919 49.4533 153.705 49.332 154.243 49.2447C154.831 49.1573 155.845 49.4387 155.689 50.283C155.238 50.3703 154.991 49.9773 154.564 49.9773C154.219 49.9773 153.768 50.1374 153.399 50.1859C153.103 50.2248 152.385 50.4431 152.113 50.283C151.745 50.0889 152.235 49.1088 152.419 49.1719Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M148.945 45.7312C150.11 45.3139 150.6 46.6967 151.085 47.4343C151.439 47.934 151.919 48.3513 152.259 48.8656C152.725 49.5497 152.244 49.7729 151.856 50.3843C151.221 49.9427 150.716 48.8171 150.459 48.0941C149.983 48.6181 149.906 49.7826 149.566 50.4668C149.26 51.0684 149.003 50.9423 148.377 50.7967C147.853 50.6851 147.14 50.3794 146.592 50.3455C144.84 50.2096 145.811 48.0068 146.592 47.2499C147.106 46.7501 147.654 46.3668 148.271 46.0029C148.639 45.804 148.503 45.9059 148.945 45.7312Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M147.354 44.6688C146.679 43.1647 148.906 41.4034 150.328 41.9274C151.366 42.3204 150.915 43.286 150.828 44.0671C150.731 44.8629 150.634 45.6586 149.605 45.8042C149.188 45.8672 148.833 45.7314 148.44 45.9497C148.023 46.1923 147.878 46.6969 147.766 47.1385C147.606 47.7886 147.523 48.2642 146.961 48.6669C146.471 49.0211 146.238 49.2297 146.092 49.8411C145.811 50.9182 145.015 52.0293 143.656 51.6897C142.628 51.4228 142.274 49.8896 142.201 48.9726C142.152 48.3952 142.337 47.5024 142.924 47.1724C143.511 46.8425 144.258 47.2937 144.821 46.8182C145.408 46.3185 145.554 45.2996 146.374 45.0424C146.767 44.9066 148.028 45.2122 147.587 44.334C147.514 44.3728 147.489 44.4213 147.426 44.4698" fill="white"/>
+<path d="M147.354 44.6688C146.679 43.1647 148.906 41.4034 150.328 41.9274C151.366 42.3204 150.915 43.286 150.828 44.0671C150.731 44.8629 150.634 45.6586 149.605 45.8042C149.188 45.8672 148.833 45.7314 148.44 45.9497C148.023 46.1923 147.878 46.6969 147.766 47.1385C147.606 47.7886 147.523 48.2642 146.961 48.6669C146.471 49.0211 146.238 49.2297 146.092 49.8411C145.811 50.9182 145.015 52.0293 143.656 51.6897C142.628 51.4228 142.274 49.8896 142.201 48.9726C142.152 48.3952 142.337 47.5024 142.924 47.1724C143.511 46.8425 144.258 47.2937 144.821 46.8182C145.408 46.3185 145.554 45.2996 146.374 45.0424C146.767 44.9066 148.028 45.2122 147.587 44.334C147.514 44.3728 147.489 44.4213 147.426 44.4698" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M147.354 44.6688C146.679 43.1647 148.906 41.4034 150.328 41.9274C151.366 42.3204 150.915 43.286 150.828 44.0671C150.731 44.8629 150.634 45.6586 149.605 45.8042C149.188 45.8672 148.833 45.7314 148.44 45.9497C148.023 46.1923 147.878 46.6969 147.766 47.1385C147.606 47.7886 147.523 48.2642 146.961 48.6669C146.471 49.0211 146.238 49.2297 146.092 49.8411C145.811 50.9182 145.015 52.0293 143.656 51.6897C142.628 51.4228 142.274 49.8896 142.201 48.9726C142.152 48.3952 142.337 47.5024 142.924 47.1724C143.511 46.8425 144.258 47.2937 144.821 46.8182C145.408 46.3185 145.554 45.2996 146.374 45.0424C146.767 44.9066 148.028 45.2122 147.587 44.334C147.514 44.3728 147.489 44.4213 147.426 44.4698" fill="#DA3635"/>
+<path d="M147.354 44.6688C146.679 43.1647 148.906 41.4034 150.328 41.9274C151.366 42.3204 150.915 43.286 150.828 44.0671C150.731 44.8629 150.634 45.6586 149.605 45.8042C149.188 45.8672 148.833 45.7314 148.44 45.9497C148.023 46.1923 147.878 46.6969 147.766 47.1385C147.606 47.7886 147.523 48.2642 146.961 48.6669C146.471 49.0211 146.238 49.2297 146.092 49.8411C145.811 50.9182 145.015 52.0293 143.656 51.6897C142.628 51.4228 142.274 49.8896 142.201 48.9726C142.152 48.3952 142.337 47.5024 142.924 47.1724C143.511 46.8425 144.258 47.2937 144.821 46.8182C145.408 46.3185 145.554 45.2996 146.374 45.0424C146.767 44.9066 148.028 45.2122 147.587 44.334C147.514 44.3728 147.489 44.4213 147.426 44.4698" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M159.036 165.114C160.534 165.977 160.54 167.378 159.054 168.245C157.568 169.108 155.148 169.108 153.649 168.245C152.151 167.381 152.145 165.981 153.634 165.114C155.12 164.247 157.54 164.247 159.036 165.114Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M158.092 165.66C159.062 166.222 159.069 167.131 158.104 167.692C157.14 168.254 155.568 168.254 154.595 167.692C153.625 167.131 153.618 166.222 154.583 165.66C155.55 165.102 157.119 165.102 158.092 165.66Z" fill="#EDEDED"/>
+<path d="M143.649 127.091C142.853 127.585 143.033 128.849 143.649 129.206L145.007 129.99C145.297 130.158 145.657 130.158 145.947 129.99L150.726 127.231C151.254 126.926 151.409 125.69 150.726 125.352L145.849 127.918L143.649 127.091Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M154.876 124.323C153.747 123.67 152.401 123.67 151.272 124.323L150.109 124.994L149.59 124.695C149.038 124.375 148.354 124.375 147.799 124.695L143.649 127.091C143.032 127.448 143.032 128.339 143.649 128.696L145.007 129.48C145.297 129.648 145.657 129.648 145.947 129.48L150.726 126.721C151.253 126.416 151.253 125.656 150.726 125.351L150.567 125.26L151.501 124.723C152.486 124.155 153.661 124.155 154.647 124.723C155.633 125.29 156.222 126.309 156.222 127.448V153.438H156.679V127.448C156.676 126.142 156.005 124.976 154.876 124.323Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M154.968 166.633C154.968 167.082 155.6 167.445 156.378 167.445C157.156 167.445 157.788 167.082 157.788 166.633V165.821H154.965V166.633H154.968Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M156.381 166.633C157.159 166.633 157.79 166.27 157.79 165.822C157.79 165.373 157.159 165.01 156.381 165.01C155.602 165.01 154.971 165.373 154.971 165.822C154.971 166.27 155.602 166.633 156.381 166.633Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M155.529 165.74C155.529 166.011 155.911 166.228 156.381 166.228C156.851 166.228 157.232 166.008 157.232 165.74V147.519H155.529V165.74Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M156.381 148.007C156.851 148.007 157.232 147.788 157.232 147.519C157.232 147.249 156.851 147.03 156.381 147.03C155.91 147.03 155.529 147.249 155.529 147.519C155.529 147.788 155.91 148.007 156.381 148.007Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+</svg>
diff --git a/src/assets/form/rdvsImageNotFound.svg b/src/assets/form/rdvsImageNotFound.svg
new file mode 100644
index 0000000000000000000000000000000000000000..9ea8268ab92c2e78bc8cc0bc1b9703d8f6832333
--- /dev/null
+++ b/src/assets/form/rdvsImageNotFound.svg
@@ -0,0 +1,250 @@
+<svg width="200" height="201" viewBox="0 0 200 201" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M116.463 134.905L184.883 95.4026C191.101 91.8127 191.101 85.9924 184.883 82.4026L148.679 61.5" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
+<path d="M20.9996 126.54L44.0803 113.214C50.2981 109.624 60.3792 109.624 66.597 113.214L101.944 133.622" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
+<path d="M145.673 140.952C146.992 141.714 146.997 142.953 145.69 143.715L103.532 168.215C102.221 168.977 100.078 168.977 98.7585 168.215L54.3282 142.564C53.0087 141.802 52.9998 140.562 54.3105 139.801L96.4692 115.301C97.7799 114.539 99.923 114.539 101.243 115.301L145.673 140.952Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
+<path d="M136.825 141.112C137.888 141.728 137.892 142.729 136.838 143.34L102.845 163.093C101.787 163.708 100.06 163.708 98.9969 163.093L63.1702 142.41C62.1075 141.794 62.0986 140.798 63.1569 140.183L97.1504 120.429C98.2087 119.814 99.9356 119.814 100.998 120.429L136.825 141.112Z" fill="#EDEDED"/>
+<path d="M68.0088 103.646V140.948L100.616 159.594V122.297L68.0088 103.646Z" fill="white"/>
+<path d="M68.0088 103.646V140.948L100.616 159.594V122.297L68.0088 103.646Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M100.616 122.299L133.175 103.626L100.616 84.9355L68.0088 103.648L100.616 122.299Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M100.638 119.544L128.335 103.657L100.638 87.7559L72.9014 103.679L100.638 119.544Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M133.175 103.625L133.224 140.948L100.616 159.595V122.298L133.175 103.625Z" fill="white"/>
+<path d="M133.175 103.625L133.224 140.948L100.616 159.595V122.298L133.175 103.625Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M100.616 80.6709L68.0088 99.3879L100.616 118.034L133.175 99.3614L100.616 80.6709ZM72.9017 99.4189L100.638 83.4959L128.34 99.3968L100.638 115.28L72.9017 99.4189Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M68.0088 99.3887V106.075L100.616 124.721V118.035L68.0088 99.3887Z" fill="white"/>
+<path d="M68.0088 99.3887V106.075L100.616 124.721V118.035L68.0088 99.3887Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M100.616 118.033V124.351L133.175 105.674V99.3555L100.616 118.033Z" fill="white"/>
+<path d="M100.616 118.033V124.351L133.175 105.674V99.3555L100.616 118.033Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M100.639 83.4961V87.7558L124.621 101.527L128.336 99.3969L100.639 83.4961Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M72.9014 99.4191L100.638 83.4961V87.7558L76.5855 101.527L72.9014 99.4191Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M122.428 115.62V125.37L128.729 121.775L129.756 121.195V111.436L122.428 115.62Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M122.428 115.624V124.303L128.729 120.708V112.033L122.428 115.624Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M113.134 120.735V130.49L119.435 126.894L120.462 126.31V116.555L113.134 120.735Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M113.134 120.74V129.423L119.435 125.827V117.148L113.134 120.74Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M104.034 125.491V135.241L110.335 131.65L111.367 131.065V121.311L104.034 125.491Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M104.034 125.495V134.179L110.335 130.583V121.904L104.034 125.495Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M122.45 127.523V137.278L128.751 133.683L129.783 133.094V123.339L122.45 127.523Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M122.45 127.528V136.211L128.751 132.615V123.937L122.45 127.528Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M113.156 132.638V142.388L119.457 138.797L120.489 138.213V128.458L113.156 132.638Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M113.156 132.643V141.326L119.457 137.731V129.052L113.156 132.643Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M104.062 137.394V147.149L110.358 143.553L111.39 142.969V133.214L104.062 137.394Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M104.062 137.402V146.08L110.358 142.485V133.811L104.062 137.402Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M90.6436 151.983L90.6745 127.058L98.4323 131.534L98.4014 156.464L90.6436 151.983Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M69.2617 139.646L69.2927 114.717L77.0505 119.198L77.0195 144.123L69.2617 139.646Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M87.991 129.367L87.9245 152.41L76.2568 145.671L76.3233 122.632L87.991 129.367Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M74.5147 122.513L77.2025 120.95L77.1316 146.19L74.4395 147.753L74.5147 122.513Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M88.0694 128.503L90.7616 126.94L90.6819 154.009L87.9941 155.576L88.0694 128.503Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M72.8701 119.732L75.5623 118.164L90.7591 126.94L88.0669 128.503L72.8701 119.732Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M88.0689 128.503L87.9937 155.576L86.3464 154.624L86.4173 129.389L74.5149 122.512L74.4397 147.752L72.7969 146.8L72.8722 119.731L88.0689 128.503Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M74.4502 126.356L75.2384 125.896L86.4057 132.351L86.4146 133.273L74.4502 126.356Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M86.4151 133.273L86.4018 137.209L74.4375 130.297L74.4507 126.356L86.4151 133.273Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M85.1492 140.492L85.1403 143.645L84.0732 143.03L84.0865 139.877L85.1492 140.492Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M84.2203 141.29L84.0432 141.503C83.9901 141.569 83.8971 141.596 83.8174 141.569L82.8211 141.251C82.6705 141.202 82.52 141.33 82.551 141.49C82.5642 141.569 82.6218 141.631 82.6971 141.653L84.2513 142.141C84.3133 142.158 84.3797 142.149 84.4284 142.114L84.8535 141.835C84.9775 141.751 84.9775 141.565 84.8535 141.485L84.5037 141.255C84.4107 141.189 84.2912 141.211 84.2203 141.29Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M68.0088 63.3496V100.646L100.616 119.293V81.9958L68.0088 63.3496Z" fill="white"/>
+<path d="M68.0088 63.3496V100.646L100.616 119.293V81.9958L68.0088 63.3496Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M100.616 81.9955L133.175 63.3227L100.616 44.6367L68.0088 63.3493L100.616 81.9955Z" fill="white"/>
+<path d="M100.616 81.9955L133.175 63.3227L100.616 44.6367L68.0088 63.3493L100.616 81.9955Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M133.175 63.3223L133.224 100.646L100.616 119.292V81.995L133.175 63.3223Z" fill="white"/>
+<path d="M133.175 63.3223L133.224 100.646L100.616 119.292V81.995L133.175 63.3223Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M77.4734 75.6859V85.4407L71.1724 81.8452L70.1406 81.2607V71.5059L77.4734 75.6859Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M77.469 75.6907V84.3739L71.168 80.774V72.0996L77.469 75.6907Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M86.7683 80.805V90.5598L80.4673 86.9643L79.4355 86.3798V76.625L86.7683 80.805Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M86.7639 80.8034V89.4867L80.4629 85.8912V77.2168L86.7639 80.8034Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M95.8624 85.5609V95.3157L89.5614 91.7202L88.5342 91.1357V81.3809L95.8624 85.5609Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M95.8625 85.5637V94.247L89.5615 90.6515V81.9727L95.8625 85.5637Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M77.5715 87.5887V97.3435L71.2705 93.7524L70.2432 93.1635V83.4131L77.5715 87.5887Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M77.5715 87.593V96.2763L71.2705 92.6808V84.002L77.5715 87.593Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M86.8674 92.7073V102.462L80.5664 98.8666L79.5391 98.2822V88.5273L86.8674 92.7073Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M86.8664 92.7122V101.391L80.5654 97.7999V89.1211L86.8664 92.7122Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M95.9621 97.4632V107.218L89.6655 103.623L88.6338 103.042V93.2832L95.9621 97.4632Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M95.9621 97.4705V106.145L89.6611 102.554V93.875L95.9621 97.4705Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M122.428 75.3197V85.0745L128.729 81.479L129.756 80.8945V71.1396L122.428 75.3197Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M122.428 75.3245V84.0033L128.729 80.4122V71.7334L122.428 75.3245Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M113.134 80.4339V90.1931L119.435 86.5932L120.462 86.0087V76.2539L113.134 80.4339Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M113.134 80.4417V89.1205L119.435 85.5294V76.8506L113.134 80.4417Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M104.034 85.1947V94.945L110.34 91.3539L111.367 90.765V81.0146L104.034 85.1947Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M104.034 85.1975V93.8808L110.34 90.2853V81.6064L104.034 85.1975Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M122.449 87.22V96.9749L128.75 93.3794L129.782 92.7949V83.04L122.449 87.22Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M122.449 87.2249V95.9081L128.75 92.3126V83.6338L122.449 87.2249Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M113.155 92.3392V102.09L119.456 98.4941L120.488 97.9096V88.1592L113.155 92.3392Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M113.155 92.344V101.027L119.456 97.4317V88.7529L113.155 92.344Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M104.061 97.095V106.845L110.362 103.254L111.389 102.67V92.915L104.061 97.095Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M104.061 97.0999V105.779L110.362 102.188V93.5088L104.061 97.0999Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M68.0088 61.4141V63.3491L100.882 82.7569V80.8263L68.0088 61.4141Z" fill="white"/>
+<path d="M68.0088 61.4141V63.3491L100.882 82.7569V80.8263L68.0088 61.4141Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M100.882 80.8262L133.056 62.3749L100.231 42.9229L68.0088 61.4141L100.882 80.8262Z" fill="white"/>
+<path d="M100.882 80.8262L133.056 62.3749L100.231 42.9229L68.0088 61.4141L100.882 80.8262Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M133.055 62.374L133.104 64.3356L100.882 82.756V80.8254L133.055 62.374Z" fill="white"/>
+<path d="M133.055 62.374L133.104 64.3356L100.882 82.756V80.8254L133.055 62.374Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M98.7614 41.9336L69.8379 58.5385L73.6902 60.7392L100.878 76.547L125.949 62.1694L129.757 59.9864L98.7614 41.9336ZM100.9 74.1028L74.1773 58.565L98.7791 44.4442L125.471 60.0174L123.833 60.9561L100.9 74.1028Z" fill="white"/>
+<path d="M98.7614 41.9336L69.8379 58.5385L73.6902 60.7392L100.878 76.547L125.949 62.1694L129.757 59.9864L98.7614 41.9336ZM100.9 74.1028L74.1773 58.565L98.7791 44.4442L125.471 60.0174L123.833 60.9561L100.9 74.1028Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M69.8447 58.5371V60.5784L100.88 78.5914V76.5457L69.8447 58.5371Z" fill="white"/>
+<path d="M69.8447 58.5371V60.5784L100.88 78.5914V76.5457L69.8447 58.5371Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M100.88 76.546V78.5917L129.764 62.0222V59.9854L100.88 76.546Z" fill="white"/>
+<path d="M100.88 76.546V78.5917L129.764 62.0222V59.9854L100.88 76.546Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M98.7812 44.4385L98.8122 46.7543L123.467 61.1673L125.469 60.0116L98.7812 44.4385Z" fill="white"/>
+<path d="M98.7812 44.4385L98.8122 46.7543L123.467 61.1673L125.469 60.0116L98.7812 44.4385Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M74.1787 58.5637L98.785 44.4385L98.8159 46.7543L76.1935 59.715L74.1787 58.5637Z" fill="white"/>
+<path d="M74.1787 58.5637L98.785 44.4385L98.8159 46.7543L76.1935 59.715L74.1787 58.5637Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M107.017 55.6205C110.887 57.8566 110.909 61.4742 107.066 63.7104C103.222 65.9465 96.9655 65.9465 93.0954 63.7104C89.2254 61.4742 89.2077 57.8566 93.0511 55.6205C96.8946 53.3843 103.147 53.3843 107.017 55.6205Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
+<path d="M104.372 57.1576C106.772 58.5436 106.786 60.7886 104.403 62.1745C102.021 63.5605 98.1422 63.5605 95.7422 62.1745C93.3422 60.7886 93.3334 58.5436 95.7156 57.1576C98.0978 55.7717 101.972 55.7717 104.372 57.1576Z" fill="#EDEDED"/>
+<path d="M123.199 156.5L141.949 167.325C148.167 170.915 148.167 176.735 141.949 180.325L128.462 188.112" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
+<path d="M128.208 154.049C130.248 155.225 130.261 157.135 128.233 158.311C126.206 159.487 122.909 159.487 120.869 158.311C118.829 157.135 118.82 155.225 120.848 154.049C122.876 152.873 126.168 152.873 128.208 154.049Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
+<path d="M133.362 185.949C138.27 188.784 138.301 193.38 133.42 196.215C128.544 199.049 120.605 199.049 115.698 196.215C110.79 193.38 110.763 188.784 115.645 185.949C120.526 183.115 128.454 183.115 133.362 185.949Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/>
+<path d="M131.955 186.648C136.075 189.028 136.101 192.884 132.008 195.264C127.914 197.643 121.251 197.643 117.125 195.264C113.005 192.884 112.984 189.028 117.078 186.648C121.171 184.268 127.83 184.268 131.955 186.648Z" fill="#EDEDED"/>
+<path d="M134.208 186.41C134.203 186.458 134.203 186.505 134.198 186.558C134.192 186.601 134.187 186.643 134.182 186.685C134.177 186.733 134.166 186.78 134.161 186.828C134.155 186.87 134.145 186.913 134.134 186.955C134.124 187.003 134.113 187.05 134.097 187.098C134.087 187.14 134.071 187.182 134.06 187.225C134.044 187.272 134.028 187.32 134.013 187.362C133.997 187.405 133.981 187.447 133.965 187.489C133.944 187.537 133.923 187.584 133.901 187.637C133.886 187.68 133.864 187.717 133.843 187.759C133.822 187.806 133.796 187.854 133.769 187.902C133.748 187.939 133.727 187.981 133.706 188.018C133.674 188.076 133.637 188.134 133.6 188.187C133.579 188.224 133.558 188.256 133.531 188.293C133.489 188.357 133.441 188.42 133.394 188.478C133.373 188.505 133.351 188.531 133.33 188.563C133.251 188.663 133.166 188.758 133.082 188.854C133.061 188.88 133.034 188.901 133.013 188.928C132.944 189.002 132.87 189.076 132.796 189.145C132.759 189.176 132.727 189.208 132.69 189.24C132.643 189.282 132.595 189.319 132.548 189.361C132.505 189.398 132.463 189.435 132.415 189.472C132.368 189.515 132.315 189.552 132.262 189.594C132.214 189.631 132.167 189.668 132.119 189.7C132.066 189.737 132.013 189.779 131.955 189.816C131.902 189.853 131.855 189.885 131.802 189.922C131.744 189.959 131.686 189.996 131.627 190.033C131.553 190.081 131.479 190.123 131.405 190.171C131.194 190.292 130.977 190.403 130.755 190.514C130.697 190.541 130.638 190.572 130.575 190.599C130.374 190.694 130.168 190.779 129.956 190.863C129.93 190.874 129.903 190.885 129.872 190.895C129.644 190.98 129.411 191.059 129.179 191.133C129.015 191.186 128.845 191.228 128.682 191.276C128.555 191.313 128.428 191.345 128.301 191.376C128.126 191.419 127.946 191.456 127.767 191.493C127.634 191.519 127.507 191.551 127.375 191.572C127.322 191.583 127.264 191.588 127.211 191.598C126.989 191.636 126.767 191.667 126.54 191.694C126.476 191.699 126.407 191.71 126.344 191.715C126.217 191.731 126.085 191.736 125.953 191.747C125.736 191.762 125.519 191.778 125.297 191.789C125.159 191.794 125.016 191.799 124.879 191.799C124.704 191.805 124.525 191.805 124.35 191.799C124.202 191.799 124.054 191.794 123.906 191.789C123.742 191.784 123.578 191.773 123.414 191.762C123.266 191.752 123.118 191.741 122.964 191.725C122.801 191.71 122.642 191.694 122.483 191.673C122.34 191.657 122.192 191.636 122.05 191.609C121.875 191.583 121.706 191.551 121.537 191.519C121.404 191.493 121.267 191.466 121.135 191.44C120.934 191.398 120.733 191.345 120.532 191.292C120.405 191.26 120.273 191.228 120.146 191.186C120.077 191.165 120.008 191.144 119.945 191.123C119.744 191.059 119.548 190.99 119.358 190.922C119.299 190.9 119.246 190.879 119.188 190.858C119.014 190.789 118.845 190.715 118.675 190.641C118.591 190.604 118.506 190.572 118.427 190.53C118.183 190.414 117.945 190.292 117.718 190.16C115.809 189.06 114.857 187.611 114.862 186.167L114.852 190.329C114.846 191.773 115.798 193.217 117.707 194.322C117.935 194.454 118.173 194.576 118.416 194.692C118.495 194.729 118.585 194.766 118.665 194.803C118.808 194.867 118.95 194.936 119.098 194.994C119.125 195.004 119.151 195.015 119.178 195.02C119.231 195.041 119.289 195.063 119.347 195.084C119.537 195.152 119.738 195.221 119.934 195.285C120.003 195.306 120.072 195.327 120.14 195.348C120.188 195.364 120.23 195.38 120.278 195.39C120.357 195.412 120.442 195.428 120.526 195.449C120.727 195.502 120.923 195.549 121.129 195.597C121.182 195.607 121.235 195.623 121.288 195.634C121.367 195.65 121.447 195.66 121.526 195.676C121.695 195.708 121.87 195.74 122.039 195.766C122.108 195.777 122.176 195.792 122.245 195.803C122.319 195.814 122.399 195.819 122.473 195.829C122.631 195.851 122.795 195.866 122.959 195.882C123.038 195.888 123.113 195.903 123.192 195.909C123.266 195.914 123.335 195.914 123.409 195.919C123.573 195.93 123.737 195.941 123.901 195.946C123.985 195.951 124.065 195.956 124.149 195.956C124.213 195.956 124.281 195.956 124.345 195.956C124.519 195.956 124.699 195.956 124.874 195.956C124.964 195.956 125.048 195.956 125.138 195.956C125.191 195.956 125.244 195.946 125.291 195.946C125.508 195.935 125.73 195.919 125.947 195.903C126.037 195.898 126.122 195.893 126.212 195.888C126.254 195.882 126.296 195.877 126.339 195.872C126.402 195.866 126.471 195.856 126.534 195.851C126.762 195.824 126.984 195.792 127.206 195.755C127.259 195.745 127.317 195.74 127.37 195.729C127.396 195.724 127.423 195.724 127.449 195.718C127.555 195.697 127.656 195.671 127.761 195.65C127.941 195.613 128.121 195.576 128.295 195.533C128.422 195.502 128.549 195.465 128.676 195.433C128.845 195.385 129.009 195.343 129.173 195.29C129.21 195.279 129.247 195.269 129.279 195.258C129.48 195.195 129.676 195.126 129.866 195.052C129.893 195.041 129.919 195.031 129.951 195.02C130.162 194.936 130.369 194.851 130.57 194.756C130.628 194.729 130.691 194.703 130.749 194.671C130.972 194.565 131.194 194.449 131.4 194.327C131.442 194.306 131.479 194.28 131.516 194.259C131.553 194.238 131.585 194.216 131.622 194.19C131.68 194.153 131.738 194.116 131.797 194.079C131.849 194.042 131.902 194.01 131.95 193.973C132.003 193.936 132.061 193.899 132.114 193.857C132.162 193.82 132.209 193.783 132.257 193.746C132.31 193.709 132.357 193.666 132.41 193.629C132.458 193.592 132.5 193.555 132.542 193.518C132.59 193.476 132.637 193.439 132.68 193.397C132.701 193.381 132.717 193.365 132.738 193.349C132.754 193.333 132.77 193.317 132.786 193.301C132.86 193.227 132.934 193.159 133.002 193.085C133.024 193.058 133.05 193.037 133.071 193.011C133.161 192.915 133.246 192.815 133.32 192.72C133.325 192.714 133.325 192.709 133.33 192.709C133.346 192.688 133.362 192.662 133.383 192.64C133.431 192.577 133.478 192.519 133.521 192.455C133.542 192.418 133.568 192.387 133.589 192.349C133.626 192.291 133.664 192.233 133.695 192.18C133.706 192.164 133.716 192.149 133.722 192.133C133.732 192.111 133.743 192.085 133.759 192.064C133.785 192.016 133.812 191.969 133.833 191.921C133.854 191.879 133.87 191.842 133.891 191.799C133.912 191.752 133.933 191.704 133.954 191.651C133.965 191.63 133.976 191.609 133.981 191.588C133.986 191.567 133.991 191.546 134.002 191.53C134.018 191.482 134.034 191.435 134.05 191.392C134.06 191.35 134.076 191.308 134.087 191.265C134.097 191.218 134.113 191.17 134.124 191.123C134.129 191.096 134.139 191.07 134.145 191.048C134.15 191.033 134.15 191.011 134.155 190.996C134.166 190.948 134.171 190.9 134.177 190.853C134.182 190.81 134.187 190.768 134.192 190.726C134.198 190.678 134.198 190.631 134.203 190.578C134.203 190.551 134.208 190.52 134.208 190.493C134.208 190.467 134.208 190.435 134.208 190.409L134.219 186.246C134.219 186.299 134.214 186.352 134.208 186.41Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
+<path d="M131.357 182.248C135.149 184.437 135.17 187.986 131.405 190.175C127.639 192.365 121.51 192.365 117.718 190.175C113.926 187.986 113.91 184.437 117.675 182.248C121.441 180.058 127.565 180.058 131.357 182.248Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
+<path d="M129.094 183.966C129.226 184.046 129.231 184.173 129.089 184.252L125.984 186.055C125.852 186.135 125.852 186.262 125.989 186.341L128.951 188.049C129.083 188.129 129.089 188.256 128.946 188.335L128.306 188.705C128.168 188.784 127.941 188.784 127.809 188.71L124.847 187.002C124.71 186.923 124.482 186.923 124.345 187.002L121.214 188.821C121.076 188.901 120.849 188.901 120.717 188.827L119.976 188.398C119.839 188.319 119.833 188.187 119.976 188.107L123.107 186.288C123.245 186.209 123.245 186.077 123.112 186.003L120.172 184.305C120.034 184.226 120.029 184.093 120.172 184.014L120.812 183.644C120.949 183.564 121.177 183.564 121.314 183.644L124.255 185.341C124.387 185.421 124.614 185.421 124.747 185.341L127.851 183.538C127.989 183.459 128.216 183.459 128.354 183.538L129.094 183.966Z" fill="#DA3635"/>
+<path d="M24.8715 127.409C28.1368 129.363 28.1555 132.524 24.9126 134.478C21.6697 136.432 16.3906 136.432 13.1253 134.478C9.86 132.524 9.84506 129.363 13.088 127.409C16.3309 125.455 21.6062 125.455 24.8715 127.409Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
+<path d="M15.7717 107.513C16.1742 106.267 18.9534 105.715 18.8592 107.501C18.8035 108.387 18.5509 108.721 17.6387 108.815C16.9022 108.871 15.6518 108.199 15.7717 107.351" fill="white"/>
+<path d="M15.7717 107.513C16.1742 106.267 18.9534 105.715 18.8592 107.501C18.8035 108.387 18.5509 108.721 17.6387 108.815C16.9022 108.871 15.6518 108.199 15.7717 107.351" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M15.7717 107.513C16.1742 106.267 18.9534 105.715 18.8592 107.501C18.8035 108.387 18.5509 108.721 17.6387 108.815C16.9022 108.871 15.6518 108.199 15.7717 107.351" fill="white"/>
+<path d="M15.7717 107.513C16.1742 106.267 18.9534 105.715 18.8592 107.501C18.8035 108.387 18.5509 108.721 17.6387 108.815C16.9022 108.871 15.6518 108.199 15.7717 107.351" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M16.2812 108.733C16.08 109.376 15.489 110.677 16.7394 110.305C17.1291 110.185 18.0155 109.996 17.7329 109.513C17.5445 109.179 16.7266 109.041 16.5125 108.669" fill="white"/>
+<path d="M16.2812 108.733C16.08 109.376 15.489 110.677 16.7394 110.305C17.1291 110.185 18.0155 109.996 17.7329 109.513C17.5445 109.179 16.7266 109.041 16.5125 108.669" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M16.2812 108.733C16.08 109.376 15.489 110.677 16.7394 110.305C17.1291 110.185 18.0155 109.996 17.7329 109.513C17.5445 109.179 16.7266 109.041 16.5125 108.669" fill="white"/>
+<path d="M16.2812 108.733C16.08 109.376 15.489 110.677 16.7394 110.305C17.1291 110.185 18.0155 109.996 17.7329 109.513C17.5445 109.179 16.7266 109.041 16.5125 108.669" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M17.6774 121.336C17.6646 123.7 16.5212 126.046 16.7525 128.393C16.8081 128.89 16.9794 129.425 16.8467 129.935C16.7011 130.431 16.093 130.821 15.6648 130.281C15.395 129.947 15.4635 128.967 15.4507 128.551C15.425 127.866 15.532 127.275 15.4121 126.607C15.1295 125.147 15.6691 123.614 15.2366 122.179C15.0096 121.413 14.8212 121.135 14.9968 120.342C15.2537 119.203 14.7955 118.45 16.2043 118.304C17.0351 118.223 17.8573 118.064 18.6623 117.876C18.9021 117.82 19.8314 117.341 20.0583 117.473C20.3795 117.662 20.1097 119.542 20.1097 119.996C20.1097 121.554 19.947 123.027 20.1097 124.543C20.2296 125.588 19.8956 126.663 19.8014 127.695C19.75 128.337 20.084 129.909 18.9707 129.639C18.0029 129.412 18.2855 126.564 18.247 125.721C18.2084 124.513 18.7309 122.338 17.7888 121.4" fill="white"/>
+<path d="M17.6774 121.336C17.6646 123.7 16.5212 126.046 16.7525 128.393C16.8081 128.89 16.9794 129.425 16.8467 129.935C16.7011 130.431 16.093 130.821 15.6648 130.281C15.395 129.947 15.4635 128.967 15.4507 128.551C15.425 127.866 15.532 127.275 15.4121 126.607C15.1295 125.147 15.6691 123.614 15.2366 122.179C15.0096 121.413 14.8212 121.135 14.9968 120.342C15.2537 119.203 14.7955 118.45 16.2043 118.304C17.0351 118.223 17.8573 118.064 18.6623 117.876C18.9021 117.82 19.8314 117.341 20.0583 117.473C20.3795 117.662 20.1097 119.542 20.1097 119.996C20.1097 121.554 19.947 123.027 20.1097 124.543C20.2296 125.588 19.8956 126.663 19.8014 127.695C19.75 128.337 20.084 129.909 18.9707 129.639C18.0029 129.412 18.2855 126.564 18.247 125.721C18.2084 124.513 18.7309 122.338 17.7888 121.4" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M17.6774 121.336C17.6646 123.7 16.5212 126.046 16.7525 128.393C16.8081 128.89 16.9794 129.425 16.8467 129.935C16.7011 130.431 16.093 130.821 15.6648 130.281C15.395 129.947 15.4635 128.967 15.4507 128.551C15.425 127.866 15.532 127.275 15.4121 126.607C15.1295 125.147 15.6691 123.614 15.2366 122.179C15.0096 121.413 14.8212 121.135 14.9968 120.342C15.2537 119.203 14.7955 118.45 16.2043 118.304C17.0351 118.223 17.8573 118.064 18.6623 117.876C18.9021 117.82 19.8314 117.341 20.0583 117.473C20.3795 117.662 20.1097 119.542 20.1097 119.996C20.1097 121.554 19.947 123.027 20.1097 124.543C20.2296 125.588 19.8956 126.663 19.8014 127.695C19.75 128.337 20.084 129.909 18.9707 129.639C18.0029 129.412 18.2855 126.564 18.247 125.721C18.2084 124.513 18.7309 122.338 17.7888 121.4" fill="white"/>
+<path d="M17.6774 121.336C17.6646 123.7 16.5212 126.046 16.7525 128.393C16.8081 128.89 16.9794 129.425 16.8467 129.935C16.7011 130.431 16.093 130.821 15.6648 130.281C15.395 129.947 15.4635 128.967 15.4507 128.551C15.425 127.866 15.532 127.275 15.4121 126.607C15.1295 125.147 15.6691 123.614 15.2366 122.179C15.0096 121.413 14.8212 121.135 14.9968 120.342C15.2537 119.203 14.7955 118.45 16.2043 118.304C17.0351 118.223 17.8573 118.064 18.6623 117.876C18.9021 117.82 19.8314 117.341 20.0583 117.473C20.3795 117.662 20.1097 119.542 20.1097 119.996C20.1097 121.554 19.947 123.027 20.1097 124.543C20.2296 125.588 19.8956 126.663 19.8014 127.695C19.75 128.337 20.084 129.909 18.9707 129.639C18.0029 129.412 18.2855 126.564 18.247 125.721C18.2084 124.513 18.7309 122.338 17.7888 121.4" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M18.671 129.455C18.7095 129.695 18.5896 129.802 18.4697 130.003C19.1292 130.701 19.2876 130.072 19.5146 129.562C19.0992 129.656 19.0435 129.682 18.7481 129.536" fill="white"/>
+<path d="M18.671 129.455C18.7095 129.695 18.5896 129.802 18.4697 130.003C19.1292 130.701 19.2876 130.072 19.5146 129.562C19.0992 129.656 19.0435 129.682 18.7481 129.536" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M18.671 129.455C18.7095 129.695 18.5896 129.802 18.4697 130.003C19.1292 130.701 19.2876 130.072 19.5146 129.562C19.0992 129.656 19.0435 129.682 18.7481 129.536" fill="white"/>
+<path d="M18.671 129.455C18.7095 129.695 18.5896 129.802 18.4697 130.003C19.1292 130.701 19.2876 130.072 19.5146 129.562C19.0992 129.656 19.0435 129.682 18.7481 129.536" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M18.4698 130.097C17.8275 131.142 19.7587 131.052 20.431 131.052C21.6515 131.039 20.6452 130.461 20.1099 130.204C19.8572 130.084 19.6388 129.934 19.3862 129.977C18.9965 130.029 18.9023 130.512 18.4869 129.99" fill="white"/>
+<path d="M18.4698 130.097C17.8275 131.142 19.7587 131.052 20.431 131.052C21.6515 131.039 20.6452 130.461 20.1099 130.204C19.8572 130.084 19.6388 129.934 19.3862 129.977C18.9965 130.029 18.9023 130.512 18.4869 129.99" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M18.4698 130.097C17.8275 131.142 19.7587 131.052 20.431 131.052C21.6515 131.039 20.6452 130.461 20.1099 130.204C19.8572 130.084 19.6388 129.934 19.3862 129.977C18.9965 130.029 18.9023 130.512 18.4869 129.99" fill="white"/>
+<path d="M18.4698 130.097C17.8275 131.142 19.7587 131.052 20.431 131.052C21.6515 131.039 20.6452 130.461 20.1099 130.204C19.8572 130.084 19.6388 129.934 19.3862 129.977C18.9965 130.029 18.9023 130.512 18.4869 129.99" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M15.7721 130.406C15.7721 130.62 15.7036 130.77 15.7164 130.984C16.6157 131.643 16.5472 130.997 16.5472 130.354C16.3202 130.449 16.0505 130.517 15.8235 130.41" fill="white"/>
+<path d="M15.7721 130.406C15.7721 130.62 15.7036 130.77 15.7164 130.984C16.6157 131.643 16.5472 130.997 16.5472 130.354C16.3202 130.449 16.0505 130.517 15.8235 130.41" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M15.7721 130.406C15.7721 130.62 15.7036 130.77 15.7164 130.984C16.6157 131.643 16.5472 130.997 16.5472 130.354C16.3202 130.449 16.0505 130.517 15.8235 130.41" fill="white"/>
+<path d="M15.7721 130.406C15.7721 130.62 15.7036 130.77 15.7164 130.984C16.6157 131.643 16.5472 130.997 16.5472 130.354C16.3202 130.449 16.0505 130.517 15.8235 130.41" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M15.6095 130.928C15.541 131.493 15.5153 131.639 15.9735 132.11C16.3503 132.486 16.6972 132.846 17.2368 132.902C17.4894 132.324 16.8599 131.506 16.5131 131.078C16.2433 131.21 15.8665 131.24 15.7209 130.945" fill="white"/>
+<path d="M15.6095 130.928C15.541 131.493 15.5153 131.639 15.9735 132.11C16.3503 132.486 16.6972 132.846 17.2368 132.902C17.4894 132.324 16.8599 131.506 16.5131 131.078C16.2433 131.21 15.8665 131.24 15.7209 130.945" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M15.6095 130.928C15.541 131.493 15.5153 131.639 15.9735 132.11C16.3503 132.486 16.6972 132.846 17.2368 132.902C17.4894 132.324 16.8599 131.506 16.5131 131.078C16.2433 131.21 15.8665 131.24 15.7209 130.945" fill="white"/>
+<path d="M15.6095 130.928C15.541 131.493 15.5153 131.639 15.9735 132.11C16.3503 132.486 16.6972 132.846 17.2368 132.902C17.4894 132.324 16.8599 131.506 16.5131 131.078C16.2433 131.21 15.8665 131.24 15.7209 130.945" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M15.7717 109.551C15.3734 109.688 15.0865 109.941 14.7911 110.223C14.4442 110.557 13.9046 110.866 13.6905 111.324C13.3694 112.022 13.2066 113.311 13.1424 114.073C13.0482 114.998 13.1167 115.923 13.1938 116.852C13.1938 116.852 13.1724 117.443 14.5812 116.737C14.5812 116.737 14.3543 118.368 15.1636 118.638C15.9944 119.096 16.8551 118.921 17.7929 118.921C18.812 118.908 19.7927 118.707 20.208 117.713C20.4521 117.289 20.2038 116.03 20.2038 116.03C20.8889 116.433 21.8053 115.713 21.8053 115.713C21.9809 114.399 21.1202 113.003 20.6363 111.821C20.3793 111.204 20.0839 110.72 19.6428 110.211C19.4672 109.997 19.2403 109.568 19.0262 109.418C18.6793 109.149 18.9319 109.243 18.5294 109.337C17.6987 109.538 16.3541 111.08 15.883 109.564C15.8916 109.564 15.883 109.513 15.7717 109.551Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M15.8919 109.564C16.3629 111.08 17.7032 109.538 18.5383 109.337C18.9408 109.243 18.6839 109.149 19.035 109.418C19.2491 109.564 19.4761 109.997 19.6516 110.211C20.0927 110.72 20.3882 111.204 20.6451 111.821C21.129 113.003 21.9854 114.399 21.8141 115.713C21.8141 115.713 20.902 116.433 20.2126 116.03C20.2126 116.03 20.461 117.289 20.2169 117.713C19.8015 118.707 18.8209 118.908 17.8017 118.921C16.8639 118.921 16.0032 119.096 15.1724 118.638C14.3631 118.368 14.5901 116.737 14.5901 116.737C13.1769 117.443 13.2026 116.852 13.2026 116.852C13.1213 115.927 13.057 115.002 13.1512 114.073C13.2198 113.307 13.3782 112.022 13.6994 111.324C13.9135 110.866 14.453 110.557 14.7999 110.223C15.0954 109.941 15.378 109.675 15.7805 109.551C15.772 109.551 15.8447 109.508 15.8919 109.564Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M16.508 107.474C16.6151 107.449 16.5337 107.205 16.6707 107.14C16.9791 106.965 16.9105 107.235 17.236 107.235C17.6385 107.235 18.0796 106.806 18.4693 106.656C18.5378 106.802 18.632 107.166 18.859 107.14C19.0988 107.102 19.1673 106.631 19.1416 106.442C19.0731 105.946 18.6448 105.864 18.2295 105.744C17.8398 105.637 17.3859 105.53 16.9833 105.505C16.2468 105.449 15.977 105.907 15.6944 106.579C15.4803 107.076 15.3989 107.586 15.7329 108.057C16.0156 108.459 16.5808 109.089 16.9833 109.384C17.4415 109.718 18.3537 109.92 18.6191 109.346C18.9275 108.686 18.6191 108.352 18.041 108.515C17.236 108.755 17.1289 108.785 16.5251 108.232C16.3624 108.1 15.9085 108.031 15.9085 107.71C15.9214 107.346 16.2982 107.376 16.4181 107.671" fill="white"/>
+<path d="M16.508 107.474C16.6151 107.449 16.5337 107.205 16.6707 107.14C16.9791 106.965 16.9105 107.235 17.236 107.235C17.6385 107.235 18.0796 106.806 18.4693 106.656C18.5378 106.802 18.632 107.166 18.859 107.14C19.0988 107.102 19.1673 106.631 19.1416 106.442C19.0731 105.946 18.6448 105.864 18.2295 105.744C17.8398 105.637 17.3859 105.53 16.9833 105.505C16.2468 105.449 15.977 105.907 15.6944 106.579C15.4803 107.076 15.3989 107.586 15.7329 108.057C16.0156 108.459 16.5808 109.089 16.9833 109.384C17.4415 109.718 18.3537 109.92 18.6191 109.346C18.9275 108.686 18.6191 108.352 18.041 108.515C17.236 108.755 17.1289 108.785 16.5251 108.232C16.3624 108.1 15.9085 108.031 15.9085 107.71C15.9214 107.346 16.2982 107.376 16.4181 107.671" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M16.508 107.474C16.6151 107.449 16.5337 107.205 16.6707 107.14C16.9791 106.965 16.9105 107.235 17.236 107.235C17.6385 107.235 18.0796 106.806 18.4693 106.656C18.5378 106.802 18.632 107.166 18.859 107.14C19.0988 107.102 19.1673 106.631 19.1416 106.442C19.0731 105.946 18.6448 105.864 18.2295 105.744C17.8398 105.637 17.3859 105.53 16.9833 105.505C16.2468 105.449 15.977 105.907 15.6944 106.579C15.4803 107.076 15.3989 107.586 15.7329 108.057C16.0156 108.459 16.5808 109.089 16.9833 109.384C17.4415 109.718 18.3537 109.92 18.6191 109.346C18.9275 108.686 18.6191 108.352 18.041 108.515C17.236 108.755 17.1289 108.785 16.5251 108.232C16.3624 108.1 15.9085 108.031 15.9085 107.71C15.9214 107.346 16.2982 107.376 16.4181 107.671" fill="#DA3635"/>
+<path d="M16.508 107.474C16.6151 107.449 16.5337 107.205 16.6707 107.14C16.9791 106.965 16.9105 107.235 17.236 107.235C17.6385 107.235 18.0796 106.806 18.4693 106.656C18.5378 106.802 18.632 107.166 18.859 107.14C19.0988 107.102 19.1673 106.631 19.1416 106.442C19.0731 105.946 18.6448 105.864 18.2295 105.744C17.8398 105.637 17.3859 105.53 16.9833 105.505C16.2468 105.449 15.977 105.907 15.6944 106.579C15.4803 107.076 15.3989 107.586 15.7329 108.057C16.0156 108.459 16.5808 109.089 16.9833 109.384C17.4415 109.718 18.3537 109.92 18.6191 109.346C18.9275 108.686 18.6191 108.352 18.041 108.515C17.236 108.755 17.1289 108.785 16.5251 108.232C16.3624 108.1 15.9085 108.031 15.9085 107.71C15.9214 107.346 16.2982 107.376 16.4181 107.671" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M13 111.282L13.2826 109.92L14.8884 108.986L16.2117 109.415L26.8872 127.789L23.6755 129.657L13 111.282Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M23.6758 129.656L23.9413 128.26L25.5471 127.331L26.8874 127.789L27.5169 132.572L23.6758 129.656Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M25.8594 131.314L26.0478 130.941C26.1934 130.65 26.5017 130.47 26.8314 130.487L27.2468 130.509L27.5209 132.577L25.8594 131.314Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M14.8887 108.986L25.5471 127.331L26.8874 127.789L16.2119 109.415L14.8887 108.986Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M23.941 128.261L13.2826 109.92L13 111.282L23.6755 129.657L23.941 128.261Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M13.6992 116.672C13.6992 116.672 15.0952 116.488 15.7632 115.876L15.2879 115.02C15.2879 115.02 14.0504 115.499 13.9262 115.675C13.802 115.855 13.6992 116.672 13.6992 116.672Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M15.292 115.02C15.292 115.02 15.292 114.245 15.5917 114C15.8958 113.761 15.5917 114.57 15.5917 114.57C15.5917 114.57 16.3069 113.953 16.5124 114.018C16.718 114.082 16.9406 114.75 16.8764 115.071C16.8122 115.392 15.8787 115.739 15.763 115.876L15.292 115.02Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M13.832 117.036C13.832 117.036 15.592 116.073 15.7633 115.876L15.288 115.02C15.288 115.02 14.2688 115.379 13.9733 115.628" fill="white"/>
+<path d="M13.832 117.036C13.832 117.036 15.592 116.073 15.7633 115.876L15.288 115.02C15.288 115.02 14.2688 115.379 13.9733 115.628" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M20.6021 114.518C20.6021 114.518 18.8764 114.154 18.5381 113.73L19.4673 115.486C19.4673 115.486 20.0839 116.137 21.1245 116.03" fill="white"/>
+<path d="M20.6021 114.518C20.6021 114.518 18.8764 114.154 18.5381 113.73L19.4673 115.486C19.4673 115.486 20.0839 116.137 21.1245 116.03" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M18.8633 111.967C18.8633 111.967 19.4499 114.044 20.0709 114.391L18.8633 111.967Z" fill="white"/>
+<path d="M18.8633 111.967C18.8633 111.967 19.4499 114.044 20.0709 114.391" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M153.972 87.8867C154.213 87.8867 154.373 88.0426 154.373 88.2995V94.2098C154.373 94.4499 154.217 94.61 153.972 94.61C153.728 94.61 153.56 94.4541 153.56 94.2098V88.2995C153.576 88.131 153.732 87.8867 153.972 87.8867Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M153.972 90.4776C156.125 90.4776 157.86 88.742 157.86 86.5894C157.86 84.4409 156.125 82.7012 153.972 82.7012C151.82 82.7012 150.084 84.4367 150.084 86.5894C150.084 88.742 151.824 90.4776 153.972 90.4776Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M153.972 90.4776C156.121 90.4776 157.86 88.7378 157.86 86.5894C157.86 84.4409 156.121 82.7012 153.972 82.7012C151.824 82.7012 150.084 84.4409 150.084 86.5894C150.084 88.7378 151.824 90.4776 153.972 90.4776Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M155.114 89.4248C152.919 89.4248 151.226 87.647 151.226 85.5366C151.226 84.6393 151.554 83.8431 151.95 83.2744C150.809 83.9316 150 85.2248 150 86.5939C150 88.7844 151.782 90.4821 153.888 90.4821C155.186 90.4821 156.323 89.8291 157.052 88.8603C156.479 89.2562 155.839 89.4248 155.114 89.4248Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M155.114 89.4248C152.919 89.4248 151.226 87.647 151.226 85.5366C151.226 84.6393 151.554 83.8431 151.95 83.2744C150.809 83.9316 150 85.2248 150 86.5939C150 88.7844 151.782 90.4821 153.888 90.4821C155.186 90.4821 156.323 89.8291 157.052 88.8603C156.479 89.2562 155.839 89.4248 155.114 89.4248Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M177.942 79.6309H178.186C178.515 79.6309 178.755 79.871 178.755 80.1995V89.8379C178.755 90.1665 178.51 90.4066 178.186 90.4066H177.942C177.613 90.4066 177.373 90.1665 177.373 89.8379V80.1995C177.386 79.871 177.63 79.6309 177.942 79.6309Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M178.027 83.6747C181.43 83.6747 184.177 80.9281 184.177 77.5244C184.177 74.1206 181.426 71.374 178.027 71.374C174.623 71.374 171.872 74.1206 171.872 77.5244C171.876 80.9239 174.623 83.6747 178.027 83.6747Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M178.027 83.6747C181.43 83.6747 184.177 80.9281 184.177 77.5244C184.177 74.1206 181.426 71.374 178.027 71.374C174.623 71.374 171.872 74.1206 171.872 77.5244C171.876 80.9239 174.623 83.6747 178.027 83.6747Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M179.892 82.053C176.489 82.053 173.742 79.3064 173.742 75.9026C173.742 74.5209 174.227 73.3119 174.951 72.2588C173.085 73.3119 171.876 75.3339 171.876 77.5961C171.876 80.9998 174.627 83.7464 178.031 83.7464C180.053 83.7464 181.834 82.7775 182.972 81.24C182.07 81.737 181.03 82.053 179.892 82.053Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M179.892 82.053C176.489 82.053 173.742 79.3064 173.742 75.9026C173.742 74.5209 174.227 73.3119 174.951 72.2588C173.085 73.3119 171.876 75.3339 171.876 77.5961C171.876 80.9998 174.627 83.7464 178.031 83.7464C180.053 83.7464 181.834 82.7775 182.972 81.24C182.07 81.737 181.03 82.053 179.892 82.053Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M167.33 73.1514C167.659 73.1514 167.899 73.3957 167.899 73.7201V81.1678C167.899 81.4964 167.655 81.7366 167.33 81.7366C167.002 81.7366 166.762 81.4964 166.762 81.1678V73.7201C166.779 73.3072 167.019 73.1514 167.33 73.1514Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M167.331 76.3827C170.065 76.3827 172.272 74.1753 172.272 71.4413C172.272 68.7074 170.065 66.5 167.331 66.5C164.597 66.5 162.39 68.7074 162.39 71.4413C162.39 74.1795 164.614 76.3827 167.331 76.3827Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M167.331 76.3827C170.065 76.3827 172.272 74.1753 172.272 71.4413C172.272 68.7074 170.065 66.5 167.331 66.5C164.597 66.5 162.39 68.7074 162.39 71.4413C162.39 74.1795 164.614 76.3827 167.331 76.3827Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M168.801 75.0179C166.054 75.0179 163.86 72.8274 163.86 70.0766C163.86 69.0234 164.188 67.9703 164.828 67.1572C163.375 68.0545 162.394 69.5921 162.394 71.3698C162.394 74.1164 164.588 76.3111 167.335 76.3111C168.957 76.3111 170.41 75.4981 171.307 74.2891C170.579 74.7609 169.681 75.0179 168.801 75.0179Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M168.801 75.0179C166.054 75.0179 163.86 72.8274 163.86 70.0766C163.86 69.0234 164.188 67.9703 164.828 67.1572C163.375 68.0545 162.394 69.5921 162.394 71.3698C162.394 74.1164 164.588 76.3111 167.335 76.3111C168.957 76.3111 170.41 75.4981 171.307 74.2891C170.579 74.7609 169.681 75.0179 168.801 75.0179Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M164.913 89.0957C165.313 89.0957 165.726 89.4243 165.726 89.9087V100.6C165.726 101 165.397 101.413 164.913 101.413C164.512 101.413 164.1 101.085 164.1 100.6V89.9087C164.1 89.4243 164.428 89.0957 164.913 89.0957Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M164.913 93.7085C168.801 93.7085 171.965 90.5617 171.965 86.6609C171.965 82.7601 168.805 79.6133 164.913 79.6133C161.025 79.6133 157.865 82.7601 157.865 86.6609C157.861 90.5659 161.025 93.7085 164.913 93.7085Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M164.913 93.7085C168.801 93.7085 171.965 90.5617 171.965 86.6609C171.965 82.7601 168.805 79.6133 164.913 79.6133C161.025 79.6133 157.865 82.7601 157.865 86.6609C157.861 90.5659 161.025 93.7085 164.913 93.7085Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M167.019 91.8468C163.131 91.8468 159.972 88.6874 159.972 84.7992C159.972 83.2616 160.456 81.8083 161.353 80.6709C159.247 81.8799 157.865 84.1463 157.865 86.7496C157.865 90.6378 161.025 93.7972 164.913 93.7972C167.263 93.7972 169.285 92.6598 170.583 90.9622C169.441 91.4466 168.317 91.8468 167.019 91.8468Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M167.019 91.8468C163.131 91.8468 159.972 88.6874 159.972 84.7992C159.972 83.2616 160.456 81.8083 161.353 80.6709C159.247 81.8799 157.865 84.1463 157.865 86.7496C157.865 90.6378 161.025 93.7972 164.913 93.7972C167.263 93.7972 169.285 92.6598 170.583 90.9622C169.441 91.4466 168.317 91.8468 167.019 91.8468Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M156.774 58.6325C160.172 60.583 160.186 63.7466 156.816 65.7041C153.445 67.6546 147.957 67.6546 144.558 65.7041C141.16 63.7535 141.146 60.5899 144.524 58.6325C147.901 56.675 153.383 56.6819 156.774 58.6325Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
+<path d="M159.036 165.114C160.534 165.977 160.54 167.378 159.054 168.245C157.568 169.108 155.148 169.108 153.649 168.245C152.151 167.381 152.145 165.981 153.634 165.114C155.12 164.247 157.54 164.247 159.036 165.114Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M158.092 165.66C159.062 166.222 159.069 167.131 158.104 167.692C157.14 168.254 155.568 168.254 154.595 167.692C153.625 167.131 153.618 166.222 154.583 165.66C155.55 165.102 157.119 165.102 158.092 165.66Z" fill="#EDEDED"/>
+<path d="M143.649 127.091C142.853 127.585 143.033 128.849 143.649 129.206L145.007 129.99C145.297 130.158 145.657 130.158 145.947 129.99L150.726 127.231C151.254 126.926 151.409 125.69 150.726 125.352L145.849 127.918L143.649 127.091Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M154.876 124.323C153.747 123.67 152.401 123.67 151.272 124.323L150.109 124.994L149.59 124.695C149.038 124.375 148.354 124.375 147.799 124.695L143.649 127.091C143.032 127.448 143.032 128.339 143.649 128.696L145.007 129.48C145.297 129.648 145.657 129.648 145.947 129.48L150.726 126.721C151.253 126.416 151.253 125.656 150.726 125.351L150.567 125.26L151.501 124.723C152.486 124.155 153.661 124.155 154.647 124.723C155.633 125.29 156.222 126.309 156.222 127.448V153.438H156.679V127.448C156.676 126.142 156.005 124.976 154.876 124.323Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M154.968 166.633C154.968 167.082 155.6 167.445 156.378 167.445C157.156 167.445 157.788 167.082 157.788 166.633V165.821H154.965V166.633H154.968Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M156.381 166.633C157.159 166.633 157.79 166.27 157.79 165.822C157.79 165.373 157.159 165.01 156.381 165.01C155.602 165.01 154.971 165.373 154.971 165.822C154.971 166.27 155.602 166.633 156.381 166.633Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M155.529 165.74C155.529 166.011 155.911 166.228 156.381 166.228C156.851 166.228 157.232 166.008 157.232 165.74V147.519H155.529V165.74Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M156.381 148.007C156.851 148.007 157.232 147.788 157.232 147.519C157.232 147.249 156.851 147.03 156.381 147.03C155.91 147.03 155.529 147.249 155.529 147.519C155.529 147.788 155.91 148.007 156.381 148.007Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M106.786 30.7703L101.104 27.4697L111.224 33.2397L116.913 36.5402L106.786 30.7703Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M111.28 1.76779L116.969 5.07642C116.187 4.61644 115.154 4.7617 114.121 5.35887L108.432 2.05023C109.465 1.45306 110.498 1.31588 111.28 1.76779Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M83.9402 62.251L78.2509 58.9424C76.6934 58.0386 76.7983 54.9156 78.372 52.2041L84.0612 55.5127C82.4876 58.2242 82.3746 61.3472 83.9402 62.251Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M84.0526 55.5124L78.3633 52.2038L88.4183 34.7891L94.1075 38.0977L84.0526 55.5124Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M101.096 25.9854L95.415 22.6849L105.607 5.03613L111.297 8.33671L101.096 25.9854Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M111.297 8.33647L105.607 5.02783C106.382 3.68017 107.407 2.63109 108.432 2.04199L114.121 5.35062C113.096 5.94779 112.071 6.9888 111.297 8.33647Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M94.1075 38.098L88.4182 34.7894C88.7894 34.1438 88.7894 33.4498 88.4102 33.248L94.0994 36.5567C94.4787 36.7584 94.4868 37.4524 94.1075 38.098Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M99.7567 26.7682L94.0674 23.4595C94.253 23.5644 94.5032 23.5322 94.7453 23.3869C94.9874 23.2497 95.2295 22.9996 95.4151 22.6768L101.104 25.9854C100.919 26.3082 100.677 26.5503 100.434 26.6955C100.184 26.8327 99.9423 26.8731 99.7567 26.7682Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M89.6364 20.99L83.9473 17.6895L94.0668 23.4594L99.756 26.768L89.6364 20.99Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M114.121 5.35095C115.178 4.73765 116.243 4.60854 117.034 5.10887C118.551 6.06918 118.397 9.1115 116.848 11.7988L106.785 29.2215C106.414 29.8591 106.414 30.5531 106.793 30.7629L116.913 36.5328C118.527 37.4447 118.623 40.5274 116.985 43.2631C116.219 44.5462 115.234 45.5307 114.241 46.1036C113.217 46.6927 112.184 46.838 111.401 46.3861L101.144 40.5435C100.959 40.4386 100.716 40.4709 100.474 40.6081C100.232 40.7453 99.9901 40.9954 99.8045 41.3182L89.6123 58.967C88.8295 60.3227 87.8048 61.3637 86.7799 61.9528C85.7873 62.5257 84.8028 62.671 84.0281 62.2837C82.3737 61.4444 82.4545 58.2649 84.0523 55.4969L94.1073 38.0822C94.4785 37.4366 94.4785 36.7426 94.0992 36.5409L83.8425 30.6983C82.2527 29.7864 82.2688 26.7925 83.8989 24.0568C84.6494 22.7979 85.6097 21.8538 86.5861 21.2889C87.6836 20.6594 88.7973 20.5142 89.6204 20.9822L99.74 26.7522C99.9256 26.8571 100.176 26.8248 100.418 26.6795C100.66 26.5424 100.902 26.2922 101.088 25.9694L111.28 8.32066C112.071 6.98914 113.096 5.94812 114.121 5.35095Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M83.8511 30.7065L78.1618 27.3979C76.572 26.486 76.5881 23.4921 78.2182 20.7564C78.9687 19.4975 79.9291 18.5533 80.9056 17.9884C82.0031 17.359 83.1167 17.2137 83.9398 17.6818L89.629 20.9904C88.7978 20.5224 87.6922 20.6596 86.5948 21.2971C85.6183 21.862 84.658 22.8142 83.9075 24.065C82.2774 26.8007 82.2613 29.7946 83.8511 30.7065Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M100 39.5L100 59.5" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
+<path d="M145.406 52.1319C146.019 51.9934 146.731 51.3493 147.224 51.0121C148.155 50.368 152.341 50.1994 151.248 49.8924C150.854 49.778 154.821 52.3426 154.721 53.8838C154.678 54.6002 154.853 55.9427 154.778 56.6711C154.721 57.2611 154.896 57.6645 154.853 58.2665C154.447 57.9173 154.328 57.0745 153.791 56.7976C153.309 56.5628 152.597 56.936 152.135 57.0504C151.716 57.1467 151.26 57.1347 150.873 57.3273C150.454 57.538 150.379 57.815 150.236 58.2243C149.986 58.9106 149.873 59.4585 149.83 60.1809C149.567 59.7174 149.336 59.3802 148.986 58.9468C148.636 58.5254 148.099 58.3327 147.605 58.0377C146.356 57.2671 145.656 56.4544 145.569 54.9313C145.512 54.0884 145.919 52.8724 145.406 52.1319Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M151.323 41.2957C151.279 42.0542 151.729 42.4034 150.885 42.9332C150.448 43.1981 150.404 43.1017 150.261 43.6074C150.161 43.9566 150.173 44.2938 149.986 44.6128C149.655 45.1727 149.536 44.9319 149.074 44.5827C148.593 44.2215 148.286 44.4443 148.243 43.8844C148.199 43.4208 148.593 42.8911 148.536 42.4696C148.48 41.994 148.243 41.6148 148.405 41.3198C148.786 40.6636 150.773 41.3198 151.267 41.2235" fill="white"/>
+<path d="M151.323 41.2957C151.279 42.0542 151.729 42.4034 150.885 42.9332C150.448 43.1981 150.404 43.1017 150.261 43.6074C150.161 43.9566 150.173 44.2938 149.986 44.6128C149.655 45.1727 149.536 44.9319 149.074 44.5827C148.593 44.2215 148.286 44.4443 148.243 43.8844C148.199 43.4208 148.593 42.8911 148.536 42.4696C148.48 41.994 148.243 41.6148 148.405 41.3198C148.786 40.6636 150.773 41.3198 151.267 41.2235" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M151.323 41.2957C151.279 42.0542 151.729 42.4034 150.885 42.9332C150.448 43.1981 150.404 43.1017 150.261 43.6074C150.161 43.9566 150.173 44.2938 149.986 44.6128C149.655 45.1727 149.536 44.9319 149.074 44.5827C148.593 44.2215 148.286 44.4443 148.243 43.8844C148.199 43.4208 148.593 42.8911 148.536 42.4696C148.48 41.994 148.243 41.6148 148.405 41.3198C148.786 40.6636 150.773 41.3198 151.267 41.2235" fill="white"/>
+<path d="M151.323 41.2957C151.279 42.0542 151.729 42.4034 150.885 42.9332C150.448 43.1981 150.404 43.1017 150.261 43.6074C150.161 43.9566 150.173 44.2938 149.986 44.6128C149.655 45.1727 149.536 44.9319 149.074 44.5827C148.593 44.2215 148.286 44.4443 148.243 43.8844C148.199 43.4208 148.593 42.8911 148.536 42.4696C148.48 41.994 148.243 41.6148 148.405 41.3198C148.786 40.6636 150.773 41.3198 151.267 41.2235" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M152.023 46.1421C152.023 47.6231 151.804 49.0258 151.716 50.4646C150.129 50.1877 151.323 49.1221 151.267 48.3936C151.192 47.5388 150.348 45.8892 152.023 46.0157" fill="white"/>
+<path d="M152.023 46.1421C152.023 47.6231 151.804 49.0258 151.716 50.4646C150.129 50.1877 151.323 49.1221 151.267 48.3936C151.192 47.5388 150.348 45.8892 152.023 46.0157" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M152.023 46.1421C152.023 47.6231 151.804 49.0258 151.716 50.4646C150.129 50.1877 151.323 49.1221 151.267 48.3936C151.192 47.5388 150.348 45.8892 152.023 46.0157" fill="white"/>
+<path d="M152.023 46.1421C152.023 47.6231 151.804 49.0258 151.716 50.4646C150.129 50.1877 151.323 49.1221 151.267 48.3936C151.192 47.5388 150.348 45.8892 152.023 46.0157" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M144.363 52.0593C144.538 50.8131 145.525 48.8144 143.563 48.1823C143.344 48.1101 142.588 47.8873 142.52 47.7187C142.301 47.1468 143.057 47.2432 143.307 47.3575C144.369 47.791 145.312 48.0438 145.312 49.2178C145.312 49.6934 145.094 50.2412 145.037 50.7168C144.994 51.1623 144.775 51.8667 144.744 52.3122" fill="white"/>
+<path d="M144.363 52.0593C144.538 50.8131 145.525 48.8144 143.563 48.1823C143.344 48.1101 142.588 47.8873 142.52 47.7187C142.301 47.1468 143.057 47.2432 143.307 47.3575C144.369 47.791 145.312 48.0438 145.312 49.2178C145.312 49.6934 145.094 50.2412 145.037 50.7168C144.994 51.1623 144.775 51.8667 144.744 52.3122" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M144.363 52.0593C144.538 50.8131 145.525 48.8144 143.563 48.1823C143.344 48.1101 142.588 47.8873 142.52 47.7187C142.301 47.1468 143.057 47.2432 143.307 47.3575C144.369 47.791 145.312 48.0438 145.312 49.2178C145.312 49.6934 145.094 50.2412 145.037 50.7168C144.994 51.1623 144.775 51.8667 144.744 52.3122" fill="white"/>
+<path d="M144.363 52.0593C144.538 50.8131 145.525 48.8144 143.563 48.1823C143.344 48.1101 142.588 47.8873 142.52 47.7187C142.301 47.1468 143.057 47.2432 143.307 47.3575C144.369 47.791 145.312 48.0438 145.312 49.2178C145.312 49.6934 145.094 50.2412 145.037 50.7168C144.994 51.1623 144.775 51.8667 144.744 52.3122" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M143.232 51.8664C144.569 51.7821 145.019 52.4684 145.894 53.1427C147.362 54.2745 147.581 55.8578 147.912 57.3568C148.218 58.7595 147.474 61.0954 145.631 60.8546C143.482 60.5716 142.364 59.3556 141.489 57.5916C141.071 56.7247 140.921 55.2558 141.039 54.2745C141.108 53.6303 142.151 51.8484 143.232 51.8664Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M145.6 52.7461C146.124 53.0652 146.924 53.4745 147.286 53.9923C147.724 54.5943 147.999 55.2505 148.242 55.9368C148.78 57.3636 149.173 58.9469 148.055 60.1931C147.399 60.9215 146.618 60.9336 145.6 60.8794C147.024 60.2051 148.011 59.0432 147.849 57.4359C147.761 56.5148 147.518 55.702 147.062 54.9134C146.799 54.4498 146.043 53.7214 145.637 53.2759" fill="white"/>
+<path d="M145.6 52.7461C146.124 53.0652 146.924 53.4745 147.286 53.9923C147.724 54.5943 147.999 55.2505 148.242 55.9368C148.78 57.3636 149.173 58.9469 148.055 60.1931C147.399 60.9215 146.618 60.9336 145.6 60.8794C147.024 60.2051 148.011 59.0432 147.849 57.4359C147.761 56.5148 147.518 55.702 147.062 54.9134C146.799 54.4498 146.043 53.7214 145.637 53.2759" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M145.6 52.7461C146.124 53.0652 146.924 53.4745 147.286 53.9923C147.724 54.5943 147.999 55.2505 148.242 55.9368C148.78 57.3636 149.173 58.9469 148.055 60.1931C147.399 60.9215 146.618 60.9336 145.6 60.8794C147.024 60.2051 148.011 59.0432 147.849 57.4359C147.761 56.5148 147.518 55.702 147.062 54.9134C146.799 54.4498 146.043 53.7214 145.637 53.2759" fill="white"/>
+<path d="M145.6 52.7461C146.124 53.0652 146.924 53.4745 147.286 53.9923C147.724 54.5943 147.999 55.2505 148.242 55.9368C148.78 57.3636 149.173 58.9469 148.055 60.1931C147.399 60.9215 146.618 60.9336 145.6 60.8794C147.024 60.2051 148.011 59.0432 147.849 57.4359C147.761 56.5148 147.518 55.702 147.062 54.9134C146.799 54.4498 146.043 53.7214 145.637 53.2759" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M145.281 56.1051C145.269 55.9486 145.225 55.786 145.063 55.7138C144.944 55.6717 144.832 55.7138 144.744 55.7981C144.5 56.0208 144.557 56.4001 144.788 56.6228C144.994 56.8215 145.238 56.7372 145.313 56.4844C145.388 56.1894 145.238 55.8703 144.95 55.7439C144.894 55.7319 144.85 55.7318 144.807 55.774C144.575 56.0931 144.557 56.7131 145.081 56.7553C145.125 56.7553 145.169 56.7252 145.181 56.683C145.281 56.4182 145.281 56.1352 145.106 55.9004C145.075 55.8583 144.988 55.8282 144.944 55.8884C144.813 56.0449 144.669 56.4362 144.988 56.4904C145.119 56.5024 145.175 56.3218 145.044 56.2917C144.913 56.2797 145.056 56.069 145.088 56.0268C145.031 56.0268 144.988 56.0148 144.925 56.0148C145.069 56.2135 145.056 56.4362 144.982 56.6589C145.013 56.6288 145.056 56.6168 145.081 56.5867C144.732 56.5566 144.85 56.081 144.982 55.9004C144.938 55.9125 144.882 55.9305 144.838 55.9305C145.013 56.0028 145.113 56.1412 145.113 56.3339C145.113 56.4181 145.1 56.6168 144.969 56.5446C144.794 56.4603 144.738 56.2074 144.807 56.0569C144.838 56.0148 144.894 55.9185 144.95 55.9305C145.038 55.9305 145.069 56.069 145.069 56.1412C145.106 56.2315 145.306 56.2315 145.281 56.1051Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M145.219 56.5988C145.55 56.641 145.744 56.8818 145.944 57.1045C146.15 57.3273 146.362 57.538 146.612 57.7066C147.137 58.0738 147.718 58.3507 148.312 58.5735C148.905 58.7842 149.418 58.9949 149.661 59.5969C149.867 60.0725 149.967 60.5902 150.055 61.1079C150.067 61.2344 150.273 61.1802 150.261 61.0538C150.174 60.5059 150.042 59.9762 149.824 59.4584C149.605 58.9708 149.243 58.7179 148.737 58.5193C148.056 58.2544 147.368 58.0015 146.762 57.5801C146.431 57.3574 146.194 57.0925 145.931 56.8095C145.744 56.5988 145.538 56.4604 145.263 56.4182C145.15 56.3881 145.088 56.5808 145.219 56.5988Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M144.769 55.5873C144.9 55.5873 144.9 55.3887 144.769 55.3887C144.638 55.3947 144.638 55.5873 144.769 55.5873Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M144.856 55.5873C145.119 55.2381 144.987 54.7083 144.987 54.2989C144.987 54.1725 144.781 54.1725 144.781 54.2989C144.781 54.6601 144.913 55.1779 144.681 55.4909C144.606 55.6053 144.781 55.7016 144.856 55.5873Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M143.782 52.9022C143.145 52.848 142.564 53.1852 142.183 53.6607C141.764 54.2086 141.702 54.7685 141.833 55.4126C141.995 56.1953 142.208 56.996 142.633 57.7063C142.939 58.2361 143.376 58.7117 143.826 59.1211C144.263 59.5124 144.8 59.9157 145.413 59.9458C145.981 59.9759 146.444 59.5967 146.75 59.1753C147.1 58.6696 147.275 58.0555 147.3 57.4535C147.331 56.8213 147.156 56.2916 146.906 55.7196C146.587 55.0213 146.25 54.2206 145.644 53.7209C145.15 53.3356 144.451 52.8601 143.782 52.9022C143.651 52.9022 143.651 53.1129 143.782 53.1009C144.351 53.0587 144.932 53.45 145.35 53.7751C145.813 54.1424 146.119 54.618 146.369 55.1357C146.631 55.6534 146.937 56.2013 147.037 56.7612C147.137 57.309 147.093 57.8809 146.906 58.4107C146.731 58.9284 146.369 59.5003 145.819 59.711C145.25 59.9217 144.657 59.5726 144.232 59.2355C143.276 58.4769 142.608 57.4836 142.27 56.3518C142.052 55.6535 141.789 54.8407 142.127 54.1544C142.42 53.5403 143.045 53.0467 143.782 53.1189C143.913 53.1129 143.913 52.9142 143.782 52.9022Z" fill="white"/>
+<path d="M143.782 52.9022C143.145 52.848 142.564 53.1852 142.183 53.6607C141.764 54.2086 141.702 54.7685 141.833 55.4126C141.995 56.1953 142.208 56.996 142.633 57.7063C142.939 58.2361 143.376 58.7117 143.826 59.1211C144.263 59.5124 144.8 59.9157 145.413 59.9458C145.981 59.9759 146.444 59.5967 146.75 59.1753C147.1 58.6696 147.275 58.0555 147.3 57.4535C147.331 56.8213 147.156 56.2916 146.906 55.7196C146.587 55.0213 146.25 54.2206 145.644 53.7209C145.15 53.3356 144.451 52.8601 143.782 52.9022ZM143.782 52.9022C143.651 52.9022 143.651 53.1129 143.782 53.1009C144.351 53.0587 144.932 53.45 145.35 53.7751C145.813 54.1424 146.119 54.618 146.369 55.1357C146.631 55.6534 146.937 56.2013 147.037 56.7612C147.137 57.309 147.093 57.8809 146.906 58.4107C146.731 58.9284 146.369 59.5003 145.819 59.711C145.25 59.9217 144.657 59.5726 144.232 59.2355C143.276 58.4769 142.608 57.4836 142.27 56.3518C142.052 55.6535 141.789 54.8407 142.127 54.1544C142.42 53.5403 143.045 53.0467 143.782 53.1189C143.913 53.1129 143.913 52.9142 143.782 52.9022Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M143.782 52.9022C143.145 52.848 142.564 53.1852 142.183 53.6607C141.764 54.2086 141.702 54.7685 141.833 55.4126C141.995 56.1953 142.208 56.996 142.633 57.7063C142.939 58.2361 143.376 58.7117 143.826 59.1211C144.263 59.5124 144.8 59.9157 145.413 59.9458C145.981 59.9759 146.444 59.5967 146.75 59.1753C147.1 58.6696 147.275 58.0555 147.3 57.4535C147.331 56.8213 147.156 56.2916 146.906 55.7196C146.587 55.0213 146.25 54.2206 145.644 53.7209C145.15 53.3356 144.451 52.8601 143.782 52.9022ZM143.782 52.9022C143.651 52.9022 143.651 53.1129 143.782 53.1009C144.351 53.0587 144.932 53.45 145.35 53.7751C145.813 54.1424 146.119 54.618 146.369 55.1357C146.631 55.6534 146.937 56.2013 147.037 56.7612C147.137 57.309 147.093 57.8809 146.906 58.4107C146.731 58.9284 146.369 59.5003 145.819 59.711C145.25 59.9217 144.657 59.5726 144.232 59.2355C143.276 58.4769 142.608 57.4836 142.27 56.3518C142.052 55.6535 141.789 54.8407 142.127 54.1544C142.42 53.5403 143.045 53.0467 143.782 53.1189C143.913 53.1129 143.913 52.9142 143.782 52.9022Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M149.743 61.0895C148.755 60.656 148.393 63.329 149.861 63.4554C151.192 63.5818 151.267 61.1437 149.743 61.0895Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M149.742 61.9023C149.686 61.9023 149.667 61.9445 149.623 62.0167C149.548 62.2515 149.623 62.4381 149.898 62.396C149.973 62.1672 149.885 61.9144 149.742 61.9023Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M149.855 41.5242C150.261 41.452 150.929 41.5543 151.323 41.4098C152.066 41.157 151.629 40.4707 151.192 40.0673C150.161 39.1041 149.155 39.6339 147.937 39.7482C147.905 40.3202 147.574 42.9269 148.561 42.8125C148.574 42.5597 148.318 41.5242 148.53 41.3556C148.867 41.0907 149.667 42.3309 149.855 41.5242Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M145.362 47.8875C145.419 49.2722 144.969 50.7832 144.725 52.1257C144.607 52.6977 144.307 53.4261 144.375 54.0161C144.538 55.4308 145.131 53.2455 145.612 53.7813C145.787 53.3478 145.569 52.7157 145.556 52.2401C145.525 51.5418 145.612 51.0361 145.875 50.3919C146.106 49.8019 146.556 49.1578 146.687 48.5437C146.831 47.8032 146.075 47.7852 145.437 47.7852" fill="white"/>
+<path d="M145.362 47.8875C145.419 49.2722 144.969 50.7832 144.725 52.1257C144.607 52.6977 144.307 53.4261 144.375 54.0161C144.538 55.4308 145.131 53.2455 145.612 53.7813C145.787 53.3478 145.569 52.7157 145.556 52.2401C145.525 51.5418 145.612 51.0361 145.875 50.3919C146.106 49.8019 146.556 49.1578 146.687 48.5437C146.831 47.8032 146.075 47.7852 145.437 47.7852" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M145.362 47.8875C145.419 49.2722 144.969 50.7832 144.725 52.1257C144.607 52.6977 144.307 53.4261 144.375 54.0161C144.538 55.4308 145.131 53.2455 145.612 53.7813C145.787 53.3478 145.569 52.7157 145.556 52.2401C145.525 51.5418 145.612 51.0361 145.875 50.3919C146.106 49.8019 146.556 49.1578 146.687 48.5437C146.831 47.8032 146.075 47.7852 145.437 47.7852" fill="white"/>
+<path d="M145.362 47.8875C145.419 49.2722 144.969 50.7832 144.725 52.1257C144.607 52.6977 144.307 53.4261 144.375 54.0161C144.538 55.4308 145.131 53.2455 145.612 53.7813C145.787 53.3478 145.569 52.7157 145.556 52.2401C145.525 51.5418 145.612 51.0361 145.875 50.3919C146.106 49.8019 146.556 49.1578 146.687 48.5437C146.831 47.8032 146.075 47.7852 145.437 47.7852" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M151.204 55.1542C151.204 56.5388 151.423 57.8693 151.379 59.2539C151.367 59.6031 151.479 59.856 151.117 59.9944C150.711 60.151 150.373 59.7837 150.273 59.4767C150.086 58.8747 150.217 57.8512 150.217 57.2251C150.217 56.8458 150.03 55.8947 150.117 55.5575C150.217 55.2084 150.773 54.3535 151.06 54.8291" fill="white"/>
+<path d="M151.204 55.1542C151.204 56.5388 151.423 57.8693 151.379 59.2539C151.367 59.6031 151.479 59.856 151.117 59.9944C150.711 60.151 150.373 59.7837 150.273 59.4767C150.086 58.8747 150.217 57.8512 150.217 57.2251C150.217 56.8458 150.03 55.8947 150.117 55.5575C150.217 55.2084 150.773 54.3535 151.06 54.8291" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M151.204 55.1542C151.204 56.5388 151.423 57.8693 151.379 59.2539C151.367 59.6031 151.479 59.856 151.117 59.9944C150.711 60.151 150.373 59.7837 150.273 59.4767C150.086 58.8747 150.217 57.8512 150.217 57.2251C150.217 56.8458 150.03 55.8947 150.117 55.5575C150.217 55.2084 150.773 54.3535 151.06 54.8291" fill="white"/>
+<path d="M151.204 55.1542C151.204 56.5388 151.423 57.8693 151.379 59.2539C151.367 59.6031 151.479 59.856 151.117 59.9944C150.711 60.151 150.373 59.7837 150.273 59.4767C150.086 58.8747 150.217 57.8512 150.217 57.2251C150.217 56.8458 150.03 55.8947 150.117 55.5575C150.217 55.2084 150.773 54.3535 151.06 54.8291" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M152.11 53.6726C151.648 53.8532 152.198 55.8579 152.254 56.2613C152.31 56.6225 152.398 56.9475 152.529 57.2967C152.629 57.5797 152.629 58.1636 152.773 58.3864C152.96 58.6693 153.541 58.7356 153.772 58.5128C154.035 58.26 154.047 58.6392 154.047 58.3141C154.047 57.4713 153.916 55.6833 153.828 54.8585C153.772 54.3107 153.579 52.5769 153.016 52.4625C152.473 52.3542 152.529 53.4619 152.11 53.6726Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M154.996 58.2902C155.227 58.2902 155.621 58.1758 155.783 58.3444C155.871 58.4588 155.827 58.9584 155.871 59.2233C155.902 59.4461 156.033 59.7832 155.946 60.0059C155.89 60.1324 155.99 60.313 155.902 60.4274C155.771 60.626 155.571 60.8307 155.309 60.6802C155.209 60.608 154.99 60.5418 154.977 60.4454C154.946 60.2648 155.052 60.1384 155.065 59.9277C155.121 59.3678 154.934 58.7959 154.99 58.248" fill="white"/>
+<path d="M154.996 58.2902C155.227 58.2902 155.621 58.1758 155.783 58.3444C155.871 58.4588 155.827 58.9584 155.871 59.2233C155.902 59.4461 156.033 59.7832 155.946 60.0059C155.89 60.1324 155.99 60.313 155.902 60.4274C155.771 60.626 155.571 60.8307 155.309 60.6802C155.209 60.608 154.99 60.5418 154.977 60.4454C154.946 60.2648 155.052 60.1384 155.065 59.9277C155.121 59.3678 154.934 58.7959 154.99 58.248" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M154.996 58.2902C155.227 58.2902 155.621 58.1758 155.783 58.3444C155.871 58.4588 155.827 58.9584 155.871 59.2233C155.902 59.4461 156.033 59.7832 155.946 60.0059C155.89 60.1324 155.99 60.313 155.902 60.4274C155.771 60.626 155.571 60.8307 155.309 60.6802C155.209 60.608 154.99 60.5418 154.977 60.4454C154.946 60.2648 155.052 60.1384 155.065 59.9277C155.121 59.3678 154.934 58.7959 154.99 58.248" fill="white"/>
+<path d="M154.996 58.2902C155.227 58.2902 155.621 58.1758 155.783 58.3444C155.871 58.4588 155.827 58.9584 155.871 59.2233C155.902 59.4461 156.033 59.7832 155.946 60.0059C155.89 60.1324 155.99 60.313 155.902 60.4274C155.771 60.626 155.571 60.8307 155.309 60.6802C155.209 60.608 154.99 60.5418 154.977 60.4454C154.946 60.2648 155.052 60.1384 155.065 59.9277C155.121 59.3678 154.934 58.7959 154.99 58.248" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M154.997 58.4706C155.39 58.4706 155.784 59.3676 155.809 59.789C155.821 59.9455 155.734 60.5295 155.621 60.6319C155.39 60.8426 155.053 60.4091 154.94 60.4513C156.496 62.2453 156.19 56.9354 154.984 58.1274" fill="white"/>
+<path d="M154.997 58.4706C155.39 58.4706 155.784 59.3676 155.809 59.789C155.821 59.9455 155.734 60.5295 155.621 60.6319C155.39 60.8426 155.053 60.4091 154.94 60.4513C156.496 62.2453 156.19 56.9354 154.984 58.1274" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M154.997 58.4706C155.39 58.4706 155.784 59.3676 155.809 59.789C155.821 59.9455 155.734 60.5295 155.621 60.6319C155.39 60.8426 155.053 60.4091 154.94 60.4513C156.496 62.2453 156.19 56.9354 154.984 58.1274" fill="white"/>
+<path d="M154.997 58.4706C155.39 58.4706 155.784 59.3676 155.809 59.789C155.821 59.9455 155.734 60.5295 155.621 60.6319C155.39 60.8426 155.053 60.4091 154.94 60.4513C156.496 62.2453 156.19 56.9354 154.984 58.1274" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M152.947 59.2535C152.684 59.5063 152.016 59.6568 151.654 59.8013C151.379 59.9157 151.116 59.9699 150.841 60.0963C150.404 60.295 149.998 60.5599 149.592 60.7826C150.317 61.2161 150.898 61.9746 151.541 61.9987C152.253 62.0408 153.04 61.5773 153.678 61.198C154.084 60.9452 155.158 60.1926 155.346 59.6448C155.49 59.2234 153.69 58.23 153.415 58.8622" fill="white"/>
+<path d="M152.947 59.2535C152.684 59.5063 152.016 59.6568 151.654 59.8013C151.379 59.9157 151.116 59.9699 150.841 60.0963C150.404 60.295 149.998 60.5599 149.592 60.7826C150.317 61.2161 150.898 61.9746 151.541 61.9987C152.253 62.0408 153.04 61.5773 153.678 61.198C154.084 60.9452 155.158 60.1926 155.346 59.6448C155.49 59.2234 153.69 58.23 153.415 58.8622" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M152.947 59.2535C152.684 59.5063 152.016 59.6568 151.654 59.8013C151.379 59.9157 151.116 59.9699 150.841 60.0963C150.404 60.295 149.998 60.5599 149.592 60.7826C150.317 61.2161 150.898 61.9746 151.541 61.9987C152.253 62.0408 153.04 61.5773 153.678 61.198C154.084 60.9452 155.158 60.1926 155.346 59.6448C155.49 59.2234 153.69 58.23 153.415 58.8622" fill="white"/>
+<path d="M152.947 59.2535C152.684 59.5063 152.016 59.6568 151.654 59.8013C151.379 59.9157 151.116 59.9699 150.841 60.0963C150.404 60.295 149.998 60.5599 149.592 60.7826C150.317 61.2161 150.898 61.9746 151.541 61.9987C152.253 62.0408 153.04 61.5773 153.678 61.198C154.084 60.9452 155.158 60.1926 155.346 59.6448C155.49 59.2234 153.69 58.23 153.415 58.8622" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M152.935 58.5857C152.773 59.2298 154.478 60.2232 155.184 59.8319C155.722 59.5369 155.053 58.7663 154.634 58.5134C154.285 58.2907 152.779 58.375 152.935 58.5857Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M150.448 59.8738C150.142 60.53 150.635 60.9093 151.247 61.2344C151.51 61.3729 152.859 61.8364 153.134 61.6799C153.79 61.3187 152.366 60.4879 152.103 60.3073C151.872 60.1387 151.579 59.6932 151.435 59.6511C151.291 59.6089 150.448 59.8196 150.329 59.8196" fill="white"/>
+<path d="M150.448 59.8738C150.142 60.53 150.635 60.9093 151.247 61.2344C151.51 61.3729 152.859 61.8364 153.134 61.6799C153.79 61.3187 152.366 60.4879 152.103 60.3073C151.872 60.1387 151.579 59.6932 151.435 59.6511C151.291 59.6089 150.448 59.8196 150.329 59.8196" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M150.448 59.8738C150.142 60.53 150.635 60.9093 151.247 61.2344C151.51 61.3729 152.859 61.8364 153.134 61.6799C153.79 61.3187 152.366 60.4879 152.103 60.3073C151.872 60.1387 151.579 59.6932 151.435 59.6511C151.291 59.6089 150.448 59.8196 150.329 59.8196" fill="white"/>
+<path d="M150.448 59.8738C150.142 60.53 150.635 60.9093 151.247 61.2344C151.51 61.3729 152.859 61.8364 153.134 61.6799C153.79 61.3187 152.366 60.4879 152.103 60.3073C151.872 60.1387 151.579 59.6932 151.435 59.6511C151.291 59.6089 150.448 59.8196 150.329 59.8196" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M151.073 50.1034C151.467 50.5669 152.16 50.7054 152.585 51.1268C152.904 51.4459 153.166 51.8131 153.485 52.1322C153.76 52.4091 154.122 52.6499 154.341 52.987C154.603 53.3784 154.591 53.8539 154.591 54.3055C154.603 54.8232 154.591 55.3409 154.591 55.8587C154.591 56.3644 154.547 56.8641 154.578 57.3698C154.591 57.7912 154.841 58.0681 154.941 58.4594C154.972 58.4474 154.997 58.4293 155.04 58.4173C154.965 58.2487 154.866 58.0982 154.778 57.9537C154.634 57.7009 154.603 57.4902 154.647 57.2132C154.703 56.7677 154.734 56.3042 154.734 55.8406C154.734 55.365 154.734 54.8774 154.703 54.3958C154.672 54.0346 154.691 53.5951 154.541 53.2459C154.422 52.9509 154.147 52.7161 153.947 52.4753C153.61 52.084 153.279 51.6927 152.941 51.3014C152.46 50.7114 151.81 50.3622 151.123 50.0131C151.073 49.989 151.017 50.0733 151.073 50.1034C151.404 50.2719 151.729 50.4224 152.029 50.6211C152.41 50.8559 152.666 51.1268 152.948 51.4639C153.254 51.8251 153.56 52.1924 153.866 52.5415C154.16 52.8606 154.447 53.1436 154.522 53.5891C154.666 54.5282 154.653 55.5095 154.622 56.4426C154.609 56.8038 154.478 57.2253 154.534 57.5925C154.591 57.9116 154.841 58.1524 154.972 58.4474C154.984 58.5015 155.09 58.4594 155.072 58.4052C155.028 58.2246 154.941 58.0861 154.853 57.9176C154.709 57.6346 154.709 57.3457 154.709 57.0386C154.709 56.5329 154.722 56.0332 154.722 55.5275C154.722 54.9677 154.722 54.4078 154.709 53.8479C154.697 53.5289 154.653 53.2038 154.466 52.9269C154.278 52.6499 154.003 52.4392 153.753 52.2104C153.404 51.8914 153.116 51.5241 152.798 51.175C152.566 50.9402 152.348 50.7716 152.042 50.6151C151.754 50.4465 151.373 50.296 151.154 50.0251C151.104 49.989 151.03 50.0612 151.073 50.1034Z" fill="white"/>
+<path d="M151.073 50.1034C151.467 50.5669 152.16 50.7054 152.585 51.1268C152.904 51.4459 153.166 51.8131 153.485 52.1322C153.76 52.4091 154.122 52.6499 154.341 52.987C154.603 53.3784 154.591 53.8539 154.591 54.3055C154.603 54.8232 154.591 55.3409 154.591 55.8587C154.591 56.3644 154.547 56.8641 154.578 57.3698C154.591 57.7912 154.841 58.0681 154.941 58.4594C154.972 58.4474 154.997 58.4293 155.04 58.4173C154.965 58.2487 154.866 58.0982 154.778 57.9537C154.634 57.7009 154.603 57.4902 154.647 57.2132C154.703 56.7677 154.734 56.3042 154.734 55.8406C154.734 55.365 154.734 54.8774 154.703 54.3958C154.672 54.0346 154.691 53.5951 154.541 53.2459C154.422 52.9509 154.147 52.7161 153.947 52.4753C153.61 52.084 153.279 51.6927 152.941 51.3014C152.46 50.7114 151.81 50.3622 151.123 50.0131C151.073 49.989 151.017 50.0733 151.073 50.1034ZM151.073 50.1034C151.404 50.2719 151.729 50.4224 152.029 50.6211C152.41 50.8559 152.666 51.1268 152.948 51.4639C153.254 51.8251 153.56 52.1924 153.866 52.5415C154.16 52.8606 154.447 53.1436 154.522 53.5891C154.666 54.5282 154.653 55.5095 154.622 56.4426C154.609 56.8038 154.478 57.2253 154.534 57.5925C154.591 57.9116 154.841 58.1524 154.972 58.4474C154.984 58.5015 155.09 58.4594 155.072 58.4052C155.028 58.2246 154.941 58.0861 154.853 57.9176C154.709 57.6346 154.709 57.3457 154.709 57.0386C154.709 56.5329 154.722 56.0332 154.722 55.5275C154.722 54.9677 154.722 54.4078 154.709 53.8479C154.697 53.5289 154.653 53.2038 154.466 52.9269C154.278 52.6499 154.003 52.4392 153.753 52.2104C153.404 51.8914 153.116 51.5241 152.798 51.175C152.566 50.9402 152.348 50.7716 152.042 50.6151C151.754 50.4465 151.373 50.296 151.154 50.0251C151.104 49.989 151.03 50.0612 151.073 50.1034Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M151.073 50.1034C151.467 50.5669 152.16 50.7054 152.585 51.1268C152.904 51.4459 153.166 51.8131 153.485 52.1322C153.76 52.4091 154.122 52.6499 154.341 52.987C154.603 53.3784 154.591 53.8539 154.591 54.3055C154.603 54.8232 154.591 55.3409 154.591 55.8587C154.591 56.3644 154.547 56.8641 154.578 57.3698C154.591 57.7912 154.841 58.0681 154.941 58.4594C154.972 58.4474 154.997 58.4293 155.04 58.4173C154.965 58.2487 154.866 58.0982 154.778 57.9537C154.634 57.7009 154.603 57.4902 154.647 57.2132C154.703 56.7677 154.734 56.3042 154.734 55.8406C154.734 55.365 154.734 54.8774 154.703 54.3958C154.672 54.0346 154.691 53.5951 154.541 53.2459C154.422 52.9509 154.147 52.7161 153.947 52.4753C153.61 52.084 153.279 51.6927 152.941 51.3014C152.46 50.7114 151.81 50.3622 151.123 50.0131C151.073 49.989 151.017 50.0733 151.073 50.1034C151.404 50.2719 151.729 50.4224 152.029 50.6211C152.41 50.8559 152.666 51.1268 152.948 51.4639C153.254 51.8251 153.56 52.1924 153.866 52.5415C154.16 52.8606 154.447 53.1436 154.522 53.5891C154.666 54.5282 154.653 55.5095 154.622 56.4426C154.609 56.8038 154.478 57.2253 154.534 57.5925C154.591 57.9116 154.841 58.1524 154.972 58.4474C154.984 58.5015 155.09 58.4594 155.072 58.4052C155.028 58.2246 154.941 58.0861 154.853 57.9176C154.709 57.6346 154.709 57.3457 154.709 57.0386C154.709 56.5329 154.722 56.0332 154.722 55.5275C154.722 54.9677 154.722 54.4078 154.709 53.8479C154.697 53.5289 154.653 53.2038 154.466 52.9269C154.278 52.6499 154.003 52.4392 153.753 52.2104C153.404 51.8914 153.116 51.5241 152.798 51.175C152.566 50.9402 152.348 50.7716 152.042 50.6151C151.754 50.4465 151.373 50.296 151.154 50.0251C151.104 49.989 151.03 50.0612 151.073 50.1034Z" fill="white"/>
+<path d="M151.073 50.1034C151.467 50.5669 152.16 50.7054 152.585 51.1268C152.904 51.4459 153.166 51.8131 153.485 52.1322C153.76 52.4091 154.122 52.6499 154.341 52.987C154.603 53.3784 154.591 53.8539 154.591 54.3055C154.603 54.8232 154.591 55.3409 154.591 55.8587C154.591 56.3644 154.547 56.8641 154.578 57.3698C154.591 57.7912 154.841 58.0681 154.941 58.4594C154.972 58.4474 154.997 58.4293 155.04 58.4173C154.965 58.2487 154.866 58.0982 154.778 57.9537C154.634 57.7009 154.603 57.4902 154.647 57.2132C154.703 56.7677 154.734 56.3042 154.734 55.8406C154.734 55.365 154.734 54.8774 154.703 54.3958C154.672 54.0346 154.691 53.5951 154.541 53.2459C154.422 52.9509 154.147 52.7161 153.947 52.4753C153.61 52.084 153.279 51.6927 152.941 51.3014C152.46 50.7114 151.81 50.3622 151.123 50.0131C151.073 49.989 151.017 50.0733 151.073 50.1034ZM151.073 50.1034C151.404 50.2719 151.729 50.4224 152.029 50.6211C152.41 50.8559 152.666 51.1268 152.948 51.4639C153.254 51.8251 153.56 52.1924 153.866 52.5415C154.16 52.8606 154.447 53.1436 154.522 53.5891C154.666 54.5282 154.653 55.5095 154.622 56.4426C154.609 56.8038 154.478 57.2253 154.534 57.5925C154.591 57.9116 154.841 58.1524 154.972 58.4474C154.984 58.5015 155.09 58.4594 155.072 58.4052C155.028 58.2246 154.941 58.0861 154.853 57.9176C154.709 57.6346 154.709 57.3457 154.709 57.0386C154.709 56.5329 154.722 56.0332 154.722 55.5275C154.722 54.9677 154.722 54.4078 154.709 53.8479C154.697 53.5289 154.653 53.2038 154.466 52.9269C154.278 52.6499 154.003 52.4392 153.753 52.2104C153.404 51.8914 153.116 51.5241 152.798 51.175C152.566 50.9402 152.348 50.7716 152.042 50.6151C151.754 50.4465 151.373 50.296 151.154 50.0251C151.104 49.989 151.03 50.0612 151.073 50.1034Z" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M150.555 43.5645C151.673 43.4381 152.648 44.6963 152.329 45.7498C152.154 46.3398 151.454 46.0569 151.211 46.5084C150.992 46.9117 151.255 47.893 151.267 48.3445C151.323 49.4944 151.123 50.8369 150.249 51.6617C149.293 52.6008 147.825 52.3179 146.588 52.1373C145.632 51.9988 145.338 52.8356 145.601 50.9212C145.744 49.8556 146.388 49.1031 146.588 48.0917C146.213 47.893 145.875 48.2061 145.544 47.9532C145.169 47.6582 145.413 47.0984 145.532 46.6769C145.807 45.7137 146.319 45.0274 147.1 44.3833C147.419 44.1184 147.812 43.8354 148.249 43.8775C148.874 43.9498 148.918 44.6903 149.38 44.8287C149.993 45.0093 149.774 44.2267 149.993 43.9317C150.217 43.6367 150.174 43.5223 150.555 43.5645Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M150.991 50.5244C151.572 51.3251 153.928 52.2161 153.709 53.3961C153.565 54.2208 152.578 54.3172 151.953 54.0402C151.285 53.7212 150.66 53.1733 149.892 53.1974C150.285 53.6188 151.185 54.1486 151.316 54.7506C151.416 55.2563 150.591 55.6597 150.079 55.7861C149.729 55.3526 149.542 54.8229 149.048 54.4556C148.63 54.1486 148.061 53.9921 147.58 53.8235C146.78 53.5285 145.387 53.2095 145.531 52.1017C145.587 51.6562 146.387 51.7826 146.924 51.879C147.461 51.9753 147.88 52.1318 148.448 52.0897C149.086 52.0475 149.611 51.9211 150.104 51.5178C150.435 51.2529 150.466 50.9037 150.947 50.6087" fill="white"/>
+<path d="M150.991 50.5244C151.572 51.3251 153.928 52.2161 153.709 53.3961C153.565 54.2208 152.578 54.3172 151.953 54.0402C151.285 53.7212 150.66 53.1733 149.892 53.1974C150.285 53.6188 151.185 54.1486 151.316 54.7506C151.416 55.2563 150.591 55.6597 150.079 55.7861C149.729 55.3526 149.542 54.8229 149.048 54.4556C148.63 54.1486 148.061 53.9921 147.58 53.8235C146.78 53.5285 145.387 53.2095 145.531 52.1017C145.587 51.6562 146.387 51.7826 146.924 51.879C147.461 51.9753 147.88 52.1318 148.448 52.0897C149.086 52.0475 149.611 51.9211 150.104 51.5178C150.435 51.2529 150.466 50.9037 150.947 50.6087" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M150.991 50.5244C151.572 51.3251 153.928 52.2161 153.709 53.3961C153.565 54.2208 152.578 54.3172 151.953 54.0402C151.285 53.7212 150.66 53.1733 149.892 53.1974C150.285 53.6188 151.185 54.1486 151.316 54.7506C151.416 55.2563 150.591 55.6597 150.079 55.7861C149.729 55.3526 149.542 54.8229 149.048 54.4556C148.63 54.1486 148.061 53.9921 147.58 53.8235C146.78 53.5285 145.387 53.2095 145.531 52.1017C145.587 51.6562 146.387 51.7826 146.924 51.879C147.461 51.9753 147.88 52.1318 148.448 52.0897C149.086 52.0475 149.611 51.9211 150.104 51.5178C150.435 51.2529 150.466 50.9037 150.947 50.6087" fill="white"/>
+<path d="M150.991 50.5244C151.572 51.3251 153.928 52.2161 153.709 53.3961C153.565 54.2208 152.578 54.3172 151.953 54.0402C151.285 53.7212 150.66 53.1733 149.892 53.1974C150.285 53.6188 151.185 54.1486 151.316 54.7506C151.416 55.2563 150.591 55.6597 150.079 55.7861C149.729 55.3526 149.542 54.8229 149.048 54.4556C148.63 54.1486 148.061 53.9921 147.58 53.8235C146.78 53.5285 145.387 53.2095 145.531 52.1017C145.587 51.6562 146.387 51.7826 146.924 51.879C147.461 51.9753 147.88 52.1318 148.448 52.0897C149.086 52.0475 149.611 51.9211 150.104 51.5178C150.435 51.2529 150.466 50.9037 150.947 50.6087" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+<path d="M149.48 61.0475C150.642 60.9331 151.454 63.1907 150.148 63.4014C150.092 63.4134 150.117 63.5158 150.18 63.4977C151.604 63.275 150.761 60.8368 149.499 60.9512C149.405 60.9632 149.405 61.0595 149.48 61.0475Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
+</svg>
diff --git a/src/assets/form/redirection.svg b/src/assets/form/redirection.svg
new file mode 100644
index 0000000000000000000000000000000000000000..04d570cc35be7417a64dd928478f541c09738370
--- /dev/null
+++ b/src/assets/form/redirection.svg
@@ -0,0 +1,5 @@
+<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M9.46967 12.1367C9.17678 12.4296 9.17678 12.9044 9.46967 13.1973C9.76256 13.4902 10.2374 13.4902 10.5303 13.1973L9.46967 12.1367ZM16.8943 6.83336C17.1872 6.54047 17.1872 6.0656 16.8943 5.7727C16.6014 5.47981 16.1265 5.47981 15.8336 5.7727L16.8943 6.83336ZM10.5303 13.1973L16.8943 6.83336L15.8336 5.7727L9.46967 12.1367L10.5303 13.1973Z" fill="#FF7100"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M13.8887 3.82812L19.192 3.47457L18.8384 8.77787L13.8887 3.82812Z" fill="#FF7100"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M6 6.75C5.86193 6.75 5.75 6.86193 5.75 7V16C5.75 16.1381 5.86193 16.25 6 16.25H16C16.1381 16.25 16.25 16.1381 16.25 16V11.5L17.75 10.2308V16C17.75 16.9665 16.9665 17.75 16 17.75H6C5.0335 17.75 4.25 16.9665 4.25 16V7C4.25 6.0335 5.0335 5.25 6 5.25H12.7143L11 6.75H6Z" fill="#FF7100"/>
+</svg>
diff --git a/src/assets/form/sprite.svg b/src/assets/form/sprite.svg
index 1f8b99ec47fb2bec6e2fd4a5b283c3f02e515166..c605c8ae594ce5a0706ddfabe8aec982018815ef 100644
--- a/src/assets/form/sprite.svg
+++ b/src/assets/form/sprite.svg
@@ -961,4 +961,147 @@
     <rect x="13" y="20.875" width="18" height="1.5" fill="#333333" />
   </symbol>
 
+<symbol xmlns="http://www.w3.org/2000/svg" id="rdvsImage" width="200" height="201" fill="none">
+  <path stroke="#706F6F" stroke-dasharray="5 8" stroke-linecap="round" stroke-linejoin="round" d="m116.463 134.905 68.42-39.502c6.218-3.59 6.218-9.41 0-13L148.679 61.5M21 126.54l23.08-13.326c6.218-3.59 16.3-3.59 22.517 0l35.347 20.408"/>
+  <path fill="#fff" stroke="#DA3635" stroke-miterlimit="10" d="M145.673 140.952c1.319.762 1.324 2.001.017 2.763l-42.158 24.5c-1.311.762-3.454.762-4.773 0l-44.43-25.651c-1.32-.762-1.33-2.002-.019-2.763l42.16-24.5c1.31-.762 3.453-.762 4.773 0l44.43 25.651Z"/>
+  <path fill="#EDEDED" d="M136.825 141.112c1.063.616 1.067 1.617.013 2.228l-33.993 19.753c-1.058.615-2.785.615-3.848 0L63.17 142.41c-1.063-.616-1.071-1.612-.013-2.227l33.993-19.754c1.059-.615 2.786-.615 3.848 0l35.827 20.683Z"/>
+  <path fill="#fff" d="M68.009 103.646v37.302l32.607 18.646v-37.297l-32.607-18.651Z"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M68.009 103.646v37.302l32.607 18.646v-37.297l-32.607-18.651Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="m100.616 122.299 32.559-18.673-32.559-18.69-32.607 18.712 32.607 18.651Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="m100.638 119.544 27.697-15.887-27.697-15.901-27.737 15.923 27.737 15.865Z"/>
+  <path fill="#fff" d="m133.175 103.625.049 37.323-32.608 18.647v-37.297l32.559-18.673Z"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="m133.175 103.625.049 37.323-32.608 18.647v-37.297l32.559-18.673Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M100.616 80.67 68.009 99.389l32.607 18.646 32.559-18.673-32.559-18.69ZM72.902 99.42l27.736-15.923 27.702 15.9-27.702 15.884-27.736-15.861Z"/>
+  <path fill="#fff" d="M68.009 99.389v6.686l32.607 18.646v-6.686L68.009 99.389Z"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M68.009 99.389v6.686l32.607 18.646v-6.686L68.009 99.389Z"/>
+  <path fill="#fff" d="M100.616 118.033v6.318l32.559-18.677v-6.319l-32.559 18.678Z"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M100.616 118.033v6.318l32.559-18.677v-6.319l-32.559 18.678Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M100.639 83.496v4.26l23.982 13.771 3.715-2.13-27.697-15.9ZM72.901 99.42l27.737-15.924v4.26l-24.053 13.771-3.684-2.108ZM122.428 115.62v9.75l6.301-3.595 1.027-.58v-9.759l-7.328 4.184Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M122.428 115.624v8.679l6.301-3.595v-8.675l-6.301 3.591ZM113.134 120.735v9.755l6.301-3.596 1.027-.584v-9.755l-7.328 4.18Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M113.134 120.74v8.683l6.301-3.596v-8.679l-6.301 3.592ZM104.034 125.491v9.75l6.301-3.591 1.032-.585v-9.754l-7.333 4.18Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M104.034 125.495v8.684l6.301-3.596v-8.679l-6.301 3.591ZM122.45 127.523v9.755l6.301-3.595 1.032-.589v-9.755l-7.333 4.184Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M122.45 127.528v8.683l6.301-3.596v-8.678l-6.301 3.591ZM113.156 132.638v9.75l6.301-3.591 1.032-.584v-9.755l-7.333 4.18Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M113.156 132.643v8.683l6.301-3.595v-8.679l-6.301 3.591ZM104.062 137.394v9.755l6.296-3.596 1.032-.584v-9.755l-7.328 4.18Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M104.062 137.402v8.678l6.296-3.595v-8.674l-6.296 3.591ZM90.644 151.983l.03-24.925 7.758 4.476-.03 24.93-7.758-4.481ZM69.262 139.646l.03-24.929 7.758 4.481-.03 24.925-7.758-4.477Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="m87.991 129.367-.067 23.043-11.667-6.739.066-23.039 11.668 6.735Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="m74.515 122.513 2.688-1.563-.071 25.24-2.693 1.563.076-25.24ZM88.07 128.503l2.692-1.563-.08 27.069-2.688 1.567.075-27.073Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="m72.87 119.732 2.692-1.568 15.197 8.776-2.692 1.563-15.197-8.771Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="m88.069 128.503-.075 27.073-1.648-.952.071-25.235-11.902-6.877-.075 25.24-1.643-.952.075-27.069 15.197 8.772Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="m74.45 126.356.788-.46 11.168 6.455.009.922-11.965-6.917Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="m86.415 133.273-.013 3.936-11.965-6.912.014-3.941 11.964 6.917ZM85.15 140.492l-.01 3.153-1.067-.615.014-3.153 1.062.615Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="m84.22 141.29-.177.213a.209.209 0 0 1-.226.066l-.996-.318a.209.209 0 0 0-.27.239c.013.079.07.141.146.163l1.554.488a.21.21 0 0 0 .177-.027l.425-.279a.211.211 0 0 0 0-.35l-.35-.23a.213.213 0 0 0-.283.035Z"/>
+  <path fill="#fff" d="M68.009 63.35v37.296l32.607 18.647V81.996L68.009 63.35Z"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M68.009 63.35v37.296l32.607 18.647V81.996L68.009 63.35Z"/>
+  <path fill="#fff" d="m100.616 81.996 32.559-18.673-32.559-18.686-32.607 18.712 32.607 18.647Z"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="m100.616 81.996 32.559-18.673-32.559-18.686-32.607 18.712 32.607 18.647Z"/>
+  <path fill="#fff" d="m133.175 63.322.049 37.324-32.608 18.646V81.995l32.559-18.673Z"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="m133.175 63.322.049 37.324-32.608 18.646V81.995l32.559-18.673Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M77.473 75.686v9.755l-6.3-3.596-1.032-.584v-9.755l7.332 4.18Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M77.469 75.69v8.684l-6.301-3.6V72.1l6.301 3.59ZM86.768 80.805v9.755l-6.3-3.596-1.032-.584v-9.755l7.332 4.18Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M86.764 80.803v8.684l-6.301-3.596v-8.674l6.3 3.586ZM95.862 85.56v9.756l-6.3-3.596-1.028-.584V81.38l7.328 4.18Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M95.862 85.564v8.683l-6.3-3.596v-8.678l6.3 3.59ZM77.572 87.589v9.755l-6.302-3.592-1.027-.588v-9.75l7.329 4.175Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M77.572 87.593v8.683l-6.302-3.595v-8.679l6.302 3.591ZM86.867 92.707v9.755l-6.3-3.595-1.028-.585v-9.755l7.328 4.18Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M86.866 92.712v8.679l-6.3-3.591V89.12l6.3 3.591ZM95.962 97.463v9.755l-6.297-3.595-1.031-.581v-9.759l7.328 4.18Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M95.962 97.47v8.675l-6.3-3.591v-8.679l6.3 3.596ZM122.428 75.32v9.755l6.301-3.596 1.027-.585V71.14l-7.328 4.18Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M122.428 75.325v8.678l6.301-3.59v-8.68l-6.301 3.591ZM113.134 80.434v9.76l6.301-3.6 1.027-.585v-9.755l-7.328 4.18Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M113.134 80.442v8.679l6.301-3.592v-8.678l-6.301 3.59ZM104.034 85.195v9.75l6.306-3.591 1.027-.589v-9.75l-7.333 4.18Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M104.034 85.198v8.683l6.306-3.596v-8.679l-6.306 3.592ZM122.449 87.22v9.755l6.301-3.596 1.032-.584V83.04l-7.333 4.18Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M122.449 87.225v8.683l6.301-3.595v-8.68l-6.301 3.592ZM113.155 92.34v9.75l6.301-3.596 1.032-.584v-9.75l-7.333 4.18Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M113.155 92.344v8.683l6.301-3.595v-8.68l-6.301 3.592ZM104.061 97.095v9.75l6.301-3.591 1.027-.584v-9.755l-7.328 4.18Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M104.061 97.1v8.679l6.301-3.591v-8.68l-6.301 3.592Z"/>
+  <path fill="#fff" d="M68.009 61.414v1.935l32.873 19.408v-1.93L68.009 61.413Z"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M68.009 61.414v1.935l32.873 19.408v-1.93L68.009 61.413Z"/>
+  <path fill="#fff" d="m100.882 80.826 32.174-18.451-32.825-19.452-32.222 18.491 32.873 19.412Z"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="m100.882 80.826 32.174-18.451-32.825-19.452-32.222 18.491 32.873 19.412Z"/>
+  <path fill="#fff" d="m133.055 62.374.049 1.962-32.222 18.42v-1.93l32.173-18.452Z"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="m133.055 62.374.049 1.962-32.222 18.42v-1.93l32.173-18.452Z"/>
+  <path fill="#fff" d="M98.761 41.934 69.838 58.539l3.852 2.2 27.188 15.808 25.071-14.378 3.808-2.183-30.996-18.052Zm2.139 32.169L74.177 58.565l24.602-14.12 26.692 15.572-1.638.94L100.9 74.102Z"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M98.761 41.934 69.838 58.539l3.852 2.2 27.188 15.808 25.071-14.378 3.808-2.183-30.996-18.052Zm2.139 32.169L74.177 58.565l24.602-14.12 26.692 15.572-1.638.94L100.9 74.102Z"/>
+  <path fill="#fff" d="M69.845 58.537v2.041l31.035 18.013v-2.045L69.845 58.537Z"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M69.845 58.537v2.041l31.035 18.013v-2.045L69.845 58.537Z"/>
+  <path fill="#fff" d="M100.88 76.546v2.046l28.884-16.57v-2.037L100.88 76.546Z"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M100.88 76.546v2.046l28.884-16.57v-2.037L100.88 76.546Z"/>
+  <path fill="#fff" d="m98.781 44.438.031 2.316 24.655 14.413 2.002-1.155-26.688-15.574Z"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="m98.781 44.438.031 2.316 24.655 14.413 2.002-1.155-26.688-15.574Z"/>
+  <path fill="#fff" d="m74.179 58.564 24.606-14.126.03 2.316-22.621 12.961-2.015-1.151Z"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="m74.179 58.564 24.606-14.126.03 2.316-22.621 12.961-2.015-1.151Z"/>
+  <path fill="#fff" stroke="#DA3635" stroke-miterlimit="10" d="M107.017 55.62c3.87 2.237 3.892 5.854.049 8.09-3.844 2.236-10.1 2.236-13.97 0-3.87-2.236-3.888-5.853-.045-8.09 3.844-2.236 10.096-2.236 13.966 0Z"/>
+  <path fill="#EDEDED" d="M104.372 57.158c2.4 1.386 2.414 3.63.031 5.017-2.382 1.386-6.26 1.386-8.66 0-2.4-1.386-2.41-3.631-.027-5.017 2.382-1.386 6.256-1.386 8.656 0Z"/>
+  <path fill="#fff" stroke="#DA3635" stroke-linejoin="round" stroke-miterlimit="10" d="m94.597 25.945 6.571-3.821c-.837.487-1.36 1.523-1.36 2.993-.008 2.958 2.077 6.571 4.654 8.06l-6.57 3.82c-2.578-1.487-4.663-5.096-4.655-8.058 0-1.47.523-2.507 1.36-2.994ZM107.783 33.504l-6.571 3.821c-.851.492-2.024.425-3.321-.323l6.571-3.821c1.297.748 2.471.819 3.321.323ZM109.935 37.4l6.571-3.82c-.022 7.629-11.508 23.091-12.115 23.906l-6.57 3.821c.602-.81 12.092-16.273 12.114-23.907ZM89.393 15.8l6.57-3.82c2.188-1.271 5.212-1.094 8.556.836l-6.572 3.822c-3.343-1.927-6.371-2.108-8.554-.837Z"/>
+  <path fill="#fff" stroke="#DA3635" stroke-linejoin="round" stroke-miterlimit="10" d="m97.944 16.637 6.571-3.822c6.642 3.835 12.009 13.134 11.987 20.763l-6.571 3.822c.022-7.63-5.345-16.929-11.987-20.763Z"/>
+  <path fill="#DA3635" stroke="#DA3635" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M97.944 16.638c6.642 3.835 12.008 13.133 11.986 20.763-.022 7.63-11.508 23.092-12.115 23.906-.597-1.51-11.955-30.159-11.933-37.792.022-7.634 5.424-10.707 12.062-6.877Zm-.058 20.36c2.582 1.488 4.676.292 4.685-2.67.009-2.967-2.072-6.571-4.654-8.06-2.577-1.487-4.676-.296-4.685 2.67-.004 2.963 2.081 6.576 4.654 8.06Z"/>
+  <path stroke="#706F6F" stroke-dasharray="5 8" stroke-linecap="round" stroke-linejoin="round" d="m123.199 156.5 18.75 10.825c6.218 3.59 6.218 9.41 0 13l-13.487 7.787"/>
+  <path fill="#fff" stroke="#DA3635" stroke-miterlimit="10" d="M128.208 154.049c2.04 1.176 2.053 3.086.025 4.262-2.027 1.176-5.324 1.176-7.364 0s-2.049-3.086-.021-4.262c2.028-1.176 5.32-1.176 7.36 0Z"/>
+  <path fill="#fff" stroke="#DA3635" stroke-dasharray="5 5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M132.538 185.472c5.179 2.991 5.212 7.84.062 10.83-5.145 2.991-13.521 2.991-18.699 0-5.178-2.99-5.206-7.839-.056-10.83 5.151-2.991 13.515-2.991 18.693 0Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-miterlimit="10" d="M133.431 185.957c-.006.05-.006.1-.011.156l-.017.134c-.006.05-.017.1-.023.151-.011.044-.016.089-.027.134-.012.05-.023.1-.04.15-.011.045-.027.09-.039.134-.016.05-.033.101-.05.145l-.05.134c-.022.05-.045.101-.067.156-.017.045-.039.084-.061.129-.023.05-.051.1-.078.15-.023.039-.045.084-.067.123a2.004 2.004 0 0 1-.112.179 1.174 1.174 0 0 1-.073.111 2.305 2.305 0 0 1-.145.196c-.022.028-.044.055-.067.089-.083.106-.173.206-.262.307-.022.028-.05.05-.072.078a4.946 4.946 0 0 1-.229.229c-.039.033-.073.067-.112.1-.05.045-.1.084-.15.128-.045.04-.09.079-.14.118-.05.044-.106.083-.162.128-.05.039-.1.078-.15.112-.056.039-.112.083-.173.122l-.162.112-.184.117c-.078.05-.157.095-.235.145a12.75 12.75 0 0 1-.686.363c-.061.028-.123.061-.19.089-.212.101-.429.19-.653.279-.028.011-.055.023-.089.034-.24.089-.485.173-.731.251-.173.056-.351.1-.524.15-.134.04-.268.073-.402.106-.184.045-.374.084-.564.123-.139.028-.273.062-.413.084-.055.011-.117.017-.173.028a14.53 14.53 0 0 1-.708.1c-.067.006-.14.017-.207.023-.134.016-.273.022-.413.033-.229.017-.457.034-.692.045-.145.005-.295.011-.44.011a10.38 10.38 0 0 1-.558 0c-.157 0-.313-.006-.469-.011a18.037 18.037 0 0 1-.519-.028c-.156-.011-.313-.022-.474-.039a15.472 15.472 0 0 1-1.507-.218l-.424-.084c-.212-.044-.424-.1-.636-.156-.134-.033-.274-.067-.408-.111l-.212-.067c-.212-.067-.418-.14-.619-.212-.061-.023-.117-.045-.179-.067-.184-.073-.362-.151-.541-.229-.089-.039-.178-.073-.262-.117a10.355 10.355 0 0 1-.748-.391c-2.014-1.161-3.019-2.689-3.013-4.213l-.011 4.392c-.006 1.523.999 3.046 3.013 4.213.24.139.491.267.748.39.083.039.178.078.262.117.151.067.301.14.458.201a.507.507 0 0 0 .083.028 19.559 19.559 0 0 0 .798.279l.218.067c.05.017.095.034.145.045.084.022.173.039.262.061.212.056.419.106.636.156.056.011.112.028.168.039.083.017.167.028.251.045.178.033.363.067.541.095.073.011.145.028.218.039.078.011.162.017.24.028.167.022.34.039.513.056.084.005.162.022.246.028.078.005.15.005.228.011.173.011.346.022.519.028.089.005.173.011.263.011H123.861c.056 0 .112-.011.162-.011.229-.012.463-.028.692-.045l.279-.017.134-.017c.067-.005.139-.016.206-.022.24-.028.474-.061.709-.1.056-.011.117-.017.173-.028.028-.006.056-.006.083-.011.112-.023.218-.051.33-.073.189-.039.379-.078.563-.123.134-.033.268-.072.402-.106.179-.05.352-.095.525-.15l.111-.034a9.996 9.996 0 0 0 .709-.251c.223-.089.441-.178.653-.279.061-.028.128-.056.189-.089.235-.112.469-.235.687-.363.044-.022.083-.05.122-.072.039-.023.073-.045.112-.073l.184-.117c.056-.039.112-.073.162-.112.056-.039.117-.078.173-.123l.151-.117c.055-.039.106-.083.161-.122.051-.04.095-.079.14-.118.05-.044.1-.083.145-.128l.061-.05.051-.05c.078-.079.156-.151.228-.229.023-.028.051-.05.073-.078.095-.101.184-.207.262-.307.006-.006.006-.011.011-.011.017-.023.034-.051.056-.073.05-.067.101-.128.145-.195.023-.039.05-.073.073-.112a7.648 7.648 0 0 0 .139-.229c.017-.022.028-.05.039-.072.028-.05.056-.101.078-.151.023-.044.04-.084.062-.128a9.11 9.11 0 0 0 .067-.156c.011-.023.022-.045.028-.067a.19.19 0 0 1 .022-.062l.05-.15c.011-.045.028-.09.039-.134.011-.05.028-.101.039-.151.006-.028.017-.056.023-.078.005-.017.005-.039.011-.056.011-.05.017-.1.022-.151l.017-.133c.006-.051.006-.101.011-.157 0-.028.006-.061.006-.089v-.089l.011-4.392c-.006.062-.006.123-.011.179Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-miterlimit="10" d="M130.423 181.566c4.001 2.31 4.023 6.054.05 8.364-3.973 2.31-10.44 2.31-14.441 0-4.001-2.31-4.018-6.054-.045-8.364 3.973-2.311 10.435-2.311 14.436 0Z"/>
+  <path fill="#DA3635" d="m123.755 181.778 2.578 5.814a.135.135 0 0 1-.106.19l-5.524.809a.13.13 0 0 1-.145-.078l-.43-.965a.135.135 0 0 1 .106-.19l3.331-.491c.089-.011.14-.106.106-.19l-1.997-4.514a.134.134 0 0 1 .106-.19l1.835-.268c.056-.016.112.017.14.073Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-miterlimit="10" d="M24.872 127.409c3.265 1.954 3.284 5.115.04 7.069-3.242 1.954-8.521 1.954-11.787 0-3.265-1.954-3.28-5.115-.037-7.069 3.243-1.954 8.518-1.954 11.784 0Z"/>
+  <path fill="#EDEDED" d="M23.091 128.822c2.09 1.172 2.102 3.071.027 4.242-2.075 1.172-5.454 1.172-7.544 0-2.09-1.171-2.098-3.07-.024-4.242 2.076-1.172 5.45-1.172 7.541 0Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="m14.254 101.369 5.722-3.328c-.729.424-1.184 1.326-1.184 2.607-.007 2.575 1.809 5.722 4.053 7.017l-5.722 3.328c-2.244-1.296-4.06-4.438-4.053-7.018 0-1.28.455-2.182 1.184-2.606ZM25.737 107.95l-5.722 3.328c-.74.428-1.762.37-2.892-.282l5.722-3.327c1.13.652 2.152.713 2.892.281ZM27.611 111.343l5.722-3.327c-.02 6.643-10.021 20.108-10.55 20.817l-5.722 3.328c.525-.706 10.53-14.17 10.55-20.818ZM9.724 92.535l5.722-3.328c1.904-1.106 4.538-.952 7.449.73l-5.722 3.327c-2.911-1.678-5.548-1.836-7.45-.73Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="m17.169 93.264 5.722-3.328c5.784 3.34 10.457 11.437 10.438 18.08l-5.723 3.328c.02-6.644-4.653-14.74-10.437-18.08Z"/>
+  <path fill="#706F6F" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M17.17 93.264c5.783 3.34 10.456 11.436 10.437 18.08-.02 6.643-10.021 20.108-10.55 20.817-.52-1.315-10.41-26.262-10.391-32.909.02-6.647 4.723-9.323 10.503-5.988Zm-.05 17.729c2.247 1.295 4.07.254 4.078-2.325.008-2.584-1.804-5.722-4.052-7.018-2.244-1.295-4.072-.258-4.08 2.325-.003 2.58 1.813 5.726 4.053 7.018Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M153.972 87.887c.241 0 .401.156.401.412v5.91c0 .24-.156.401-.401.401-.244 0-.412-.156-.412-.4V88.3c.016-.169.172-.413.412-.413Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M153.972 90.478a3.881 3.881 0 0 0 3.888-3.889 3.884 3.884 0 0 0-3.888-3.888 3.882 3.882 0 0 0-3.888 3.888 3.884 3.884 0 0 0 3.888 3.889Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M153.972 90.478a3.886 3.886 0 0 0 3.888-3.889 3.886 3.886 0 0 0-3.888-3.888 3.887 3.887 0 0 0-3.888 3.888 3.887 3.887 0 0 0 3.888 3.889Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M155.114 89.425a3.881 3.881 0 0 1-3.888-3.888c0-.898.328-1.694.724-2.263-1.141.658-1.95 1.95-1.95 3.32a3.887 3.887 0 0 0 3.888 3.888c1.298 0 2.435-.653 3.164-1.622-.573.396-1.213.565-1.938.565Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M155.114 89.425a3.881 3.881 0 0 1-3.888-3.888c0-.898.328-1.694.724-2.263-1.141.658-1.95 1.95-1.95 3.32a3.887 3.887 0 0 0 3.888 3.888c1.298 0 2.435-.653 3.164-1.622-.573.396-1.213.565-1.938.565ZM177.942 79.63h.244c.329 0 .569.241.569.57v9.638a.554.554 0 0 1-.569.569h-.244a.551.551 0 0 1-.569-.57V80.2c.013-.328.257-.568.569-.568Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M178.027 83.675a6.142 6.142 0 0 0 6.15-6.15 6.144 6.144 0 0 0-6.15-6.151 6.145 6.145 0 0 0-6.155 6.15 6.15 6.15 0 0 0 6.155 6.15Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M178.027 83.675a6.142 6.142 0 0 0 6.15-6.15 6.144 6.144 0 0 0-6.15-6.151 6.145 6.145 0 0 0-6.155 6.15 6.15 6.15 0 0 0 6.155 6.15Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M179.892 82.053a6.142 6.142 0 0 1-6.15-6.15c0-1.382.485-2.591 1.209-3.644-1.866 1.053-3.075 3.075-3.075 5.337a6.145 6.145 0 0 0 6.155 6.15c2.022 0 3.803-.968 4.941-2.506a6.353 6.353 0 0 1-3.08.813Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M179.892 82.053a6.142 6.142 0 0 1-6.15-6.15c0-1.382.485-2.591 1.209-3.644-1.866 1.053-3.075 3.075-3.075 5.337a6.145 6.145 0 0 0 6.155 6.15c2.022 0 3.803-.968 4.941-2.506a6.353 6.353 0 0 1-3.08.813ZM167.33 73.151c.329 0 .569.245.569.57v7.447a.554.554 0 0 1-.569.569.551.551 0 0 1-.568-.57V73.72c.017-.413.257-.569.568-.569Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M167.331 76.383a4.935 4.935 0 0 0 4.941-4.942 4.935 4.935 0 0 0-4.941-4.941 4.935 4.935 0 0 0-4.941 4.941 4.943 4.943 0 0 0 4.941 4.942Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M167.331 76.383a4.935 4.935 0 0 0 4.941-4.942 4.935 4.935 0 0 0-4.941-4.941 4.935 4.935 0 0 0-4.941 4.941 4.943 4.943 0 0 0 4.941 4.942Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M168.801 75.018a4.916 4.916 0 0 1-4.941-4.941c0-1.054.328-2.107.968-2.92-1.453.898-2.434 2.435-2.434 4.213a4.918 4.918 0 0 0 4.941 4.941c1.622 0 3.075-.813 3.972-2.022a4.675 4.675 0 0 1-2.506.729Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M168.801 75.018a4.916 4.916 0 0 1-4.941-4.941c0-1.054.328-2.107.968-2.92-1.453.898-2.434 2.435-2.434 4.213a4.918 4.918 0 0 0 4.941 4.941c1.622 0 3.075-.813 3.972-2.022a4.675 4.675 0 0 1-2.506.729ZM164.913 89.096c.4 0 .813.328.813.813V100.6c0 .4-.329.813-.813.813a.82.82 0 0 1-.813-.813V89.909c0-.485.328-.813.813-.813Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M164.913 93.709a7.049 7.049 0 1 0 0-14.096 7.045 7.045 0 0 0-7.048 7.048 7.04 7.04 0 0 0 7.048 7.047Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M164.913 93.709a7.049 7.049 0 1 0 0-14.096 7.045 7.045 0 0 0-7.048 7.048 7.04 7.04 0 0 0 7.048 7.047Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M167.019 91.847a7.052 7.052 0 0 1-7.047-7.048c0-1.537.484-2.99 1.381-4.128-2.106 1.209-3.488 3.475-3.488 6.079a7.053 7.053 0 0 0 7.048 7.047c2.35 0 4.372-1.137 5.67-2.835-1.142.485-2.266.885-3.564.885Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M167.019 91.847a7.052 7.052 0 0 1-7.047-7.048c0-1.537.484-2.99 1.381-4.128-2.106 1.209-3.488 3.475-3.488 6.079a7.053 7.053 0 0 0 7.048 7.047c2.35 0 4.372-1.137 5.67-2.835-1.142.485-2.266.885-3.564.885Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-miterlimit="10" d="M156.774 58.633c3.398 1.95 3.412 5.114.042 7.071-3.371 1.95-8.859 1.95-12.258 0-3.398-1.95-3.412-5.114-.034-7.071 3.377-1.958 8.859-1.951 12.25 0Z"/>
+  <path fill="#fff" d="M157.024 51.006c-.354.233-.65.553-.941.868-.611.636-1.286 1.334-1.727 2.106-.587 1.063-.684 2.853-.602 4.051.049.748.5 1.398.966 1.97.883 1.087 2.275.796 3.328-.048.956-.757 1.936-1.737 2.397-2.829.451-1.053 1.014-2.164 1.116-3.338.112-1.213-.33-2.853-1.528-3.416-.748-.344-2.106-.306-2.669.33"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M157.024 51.006c-.354.233-.65.553-.941.868-.611.636-1.286 1.334-1.727 2.106-.587 1.063-.684 2.853-.602 4.051.049.748.5 1.398.966 1.97.883 1.087 2.275.796 3.328-.048.956-.757 1.936-1.737 2.397-2.829.451-1.053 1.014-2.164 1.116-3.338.112-1.213-.33-2.853-1.528-3.416-.748-.344-2.106-.306-2.669.33"/>
+  <path fill="#fff" d="M157.024 51.006c-.354.233-.65.553-.941.868-.611.636-1.286 1.334-1.727 2.106-.587 1.063-.684 2.853-.602 4.051.049.748.5 1.398.966 1.97.883 1.087 2.275.796 3.328-.048.956-.757 1.936-1.737 2.397-2.829.451-1.053 1.014-2.164 1.116-3.338.112-1.213-.33-2.853-1.528-3.416-.748-.344-2.106-.306-2.669.33"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M157.024 51.006c-.354.233-.65.553-.941.868-.611.636-1.286 1.334-1.727 2.106-.587 1.063-.684 2.853-.602 4.051.049.748.5 1.398.966 1.97.883 1.087 2.275.796 3.328-.048.956-.757 1.936-1.737 2.397-2.829.451-1.053 1.014-2.164 1.116-3.338.112-1.213-.33-2.853-1.528-3.416-.748-.344-2.106-.306-2.669.33"/>
+  <path fill="#fff" d="M145.064 58.105c-.747.16-1.543.562-2.091 1.077-.636.587-1.053 1.32-1.529 1.994-.49.674-.931 1.358-1.14 2.178-.32 1.272-.563 2.654.218 3.829.757 1.164 1.994 1.615 3.319 1.101 1.213-.475 2.314-1.504 2.902-2.654.451-.893.907-1.567 1.188-2.741.524-2.189.699-4.11-1.887-4.76"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M145.064 58.105c-.747.16-1.543.562-2.091 1.077-.636.587-1.053 1.32-1.529 1.994-.49.674-.931 1.358-1.14 2.178-.32 1.272-.563 2.654.218 3.829.757 1.164 1.994 1.615 3.319 1.101 1.213-.475 2.314-1.504 2.902-2.654.451-.893.907-1.567 1.188-2.741.524-2.189.699-4.11-1.887-4.76"/>
+  <path fill="#fff" d="M145.064 58.105c-.747.16-1.543.562-2.091 1.077-.636.587-1.053 1.32-1.529 1.994-.49.674-.931 1.358-1.14 2.178-.32 1.272-.563 2.654.218 3.829.757 1.164 1.994 1.615 3.319 1.101 1.213-.475 2.314-1.504 2.902-2.654.451-.893.907-1.567 1.188-2.741.524-2.189.699-4.11-1.887-4.76"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M145.064 58.105c-.747.16-1.543.562-2.091 1.077-.636.587-1.053 1.32-1.529 1.994-.49.674-.931 1.358-1.14 2.178-.32 1.272-.563 2.654.218 3.829.757 1.164 1.994 1.615 3.319 1.101 1.213-.475 2.314-1.504 2.902-2.654.451-.893.907-1.567 1.188-2.741.524-2.189.699-4.11-1.887-4.76"/>
+  <path fill="#fff" stroke="#DA3635" stroke-linejoin="round" stroke-miterlimit="10" d="M150.489 62.204c-.267 1.14 2.363.626 2.557-.16.073-.306-.049-.441-.33-.441-.427 0-.243.33-.5.562-.553.432-1.3-.203-1.727.04ZM153.327 51.801c.611.097.869.83 1.174 1.296.306.451.65.883 1.014 1.286.33.354.685.732 1.116.98.345.184.723.208 1.102.208.218 0 .218-.344 0-.344-.515 0-.883-.073-1.286-.417-.442-.355-.82-.796-1.174-1.247-.379-.476-.675-.966-.99-1.48-.209-.33-.476-.563-.869-.626-.223-.02-.305.32-.087.344ZM146.116 55.557c-.242 1.31-.674 2.605-1.053 3.891-.184.612-.441 1.223-.611 1.849-.17.65-.218 1.31-.441 1.931.048-.039.111-.087.16-.136h-.049c.049.097.073.194.121.296.015-.014.049-.039.064-.063.16-.16-.088-.403-.243-.243-.015.015-.039.049-.063.063-.112.112-.015.282.121.296h.049c.072.015.135-.063.16-.135.218-.612.272-1.247.417-1.873.17-.65.442-1.272.626-1.922.378-1.271.82-2.571 1.053-3.891.068-.184-.272-.281-.311-.063Z"/>
+  <path fill="#fff" d="M144.243 54.276c-.169.78 1.15 1.091 1.835 1.028.844-.073.868-.65.271-1.174-.393-.345-1.446-.563-1.873-.369"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M144.243 54.276c-.169.78 1.15 1.091 1.835 1.028.844-.073.868-.65.271-1.174-.393-.345-1.446-.563-1.873-.369"/>
+  <path fill="#fff" d="M144.243 54.276c-.169.78 1.15 1.091 1.835 1.028.844-.073.868-.65.271-1.174-.393-.345-1.446-.563-1.873-.369"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M144.243 54.276c-.169.78 1.15 1.091 1.835 1.028.844-.073.868-.65.271-1.174-.393-.345-1.446-.563-1.873-.369"/>
+  <path fill="#fff" stroke="#DA3635" stroke-linejoin="round" stroke-miterlimit="10" d="M146.029 55.378c.476.61.869 1.32 1.48 1.81.757.587 1.591 1.076 2.363 1.64.184.135.354-.16.17-.306-.723-.524-1.48-.99-2.193-1.519-.651-.475-1.053-1.174-1.529-1.81-.116-.174-.422 0-.291.185ZM153.143 50.151c.014.5.048.99.048 1.48 0 .218.345.218.345 0-.015-.5-.039-.99-.049-1.48 0-.208-.344-.223-.344 0Z"/>
+  <path fill="#fff" stroke="#DA3635" stroke-linejoin="round" stroke-miterlimit="10" d="M153.118 51.922c.088.355-.233.81-.344 1.14-.194.578-.32 1.175-.442 1.776a21.842 21.842 0 0 1-.844 3.232c-.073.208.257.306.33.097.417-1.15.674-2.339.907-3.537.112-.578.243-1.165.466-1.703.136-.345.354-.709.257-1.102-.034-.218-.378-.121-.33.097Z"/>
+  <path fill="#fff" stroke="#DA3635" stroke-linejoin="round" stroke-miterlimit="10" d="M153.07 51.582c-.243.578-.966.908-1.48 1.19-.699.392-1.373.82-2.082 1.212-.184.112-.014.403.17.306.781-.442 1.567-.907 2.339-1.359.524-.305 1.125-.65 1.358-1.247.122-.223-.218-.31-.305-.102ZM151.759 48.279c.403.611 1.31.65 1.849 1.101.17.136.417-.097.243-.242-.258-.218-.563-.33-.859-.476-.296-.136-.733-.281-.932-.563-.116-.174-.422-.004-.301.18ZM155.442 50.258c.039.442-.072.883-.072 1.31-.015.219.33.219.344 0 .015-.441.097-.868.073-1.31-.015-.218-.354-.228-.345 0Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M151.478 58.041c.024-.402.393-.956.732-.417.161.242-.121 1.31-.271 1.543-.418.674-.563.16-.587-.403-.02-.597.005.015.126-.723Z"/>
+  <path fill="#fff" d="M150.023 57.653c-.088 1.174.208 2.581.354 3.746.073.587.014 1.223.66 1.164.427-.048 1.504-.305 1.47-.82-.577-.014-.859.015-.956-.562-.073-.442-.024-.932-.048-1.369-.064-1.101-.112-2.363-.859-3.255"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M150.023 57.653c-.088 1.174.208 2.581.354 3.746.073.587.014 1.223.66 1.164.427-.048 1.504-.305 1.47-.82-.577-.014-.859.015-.956-.562-.073-.442-.024-.932-.048-1.369-.064-1.101-.112-2.363-.859-3.255"/>
+  <path fill="#fff" d="M150.023 57.653c-.088 1.174.208 2.581.354 3.746.073.587.014 1.223.66 1.164.427-.048 1.504-.305 1.47-.82-.577-.014-.859.015-.956-.562-.073-.442-.024-.932-.048-1.369-.064-1.101-.112-2.363-.859-3.255"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M150.023 57.653c-.088 1.174.208 2.581.354 3.746.073.587.014 1.223.66 1.164.427-.048 1.504-.305 1.47-.82-.577-.014-.859.015-.956-.562-.073-.442-.024-.932-.048-1.369-.064-1.101-.112-2.363-.859-3.255"/>
+  <path fill="#fff" d="M149.251 50.957c-1.039.844-.064 2.411.393 3.313.305.626.674 1.223.892 1.873.194.578.563 1.19-.169 1.393-1.141.33-2.989.073-3.096-1.31-.063-.806-.049-1.247-.733-1.761-.587-.452-1.615-.554-2.106-1.092-.684-.757-.072-1.674.563-2.14.418-.306.452-.553.733-.956.32-.45.626-.218 1.092.049"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M149.251 50.957c-1.039.844-.064 2.411.393 3.313.305.626.674 1.223.892 1.873.194.578.563 1.19-.169 1.393-1.141.33-2.989.073-3.096-1.31-.063-.806-.049-1.247-.733-1.761-.587-.452-1.615-.554-2.106-1.092-.684-.757-.072-1.674.563-2.14.418-.306.452-.553.733-.956.32-.45.626-.218 1.092.049"/>
+  <path fill="#fff" d="M149.251 50.957c-1.039.844-.064 2.411.393 3.313.305.626.674 1.223.892 1.873.194.578.563 1.19-.169 1.393-1.141.33-2.989.073-3.096-1.31-.063-.806-.049-1.247-.733-1.761-.587-.452-1.615-.554-2.106-1.092-.684-.757-.072-1.674.563-2.14.418-.306.452-.553.733-.956.32-.45.626-.218 1.092.049"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M149.251 50.957c-1.039.844-.064 2.411.393 3.313.305.626.674 1.223.892 1.873.194.578.563 1.19-.169 1.393-1.141.33-2.989.073-3.096-1.31-.063-.806-.049-1.247-.733-1.761-.587-.452-1.615-.554-2.106-1.092-.684-.757-.072-1.674.563-2.14.418-.306.452-.553.733-.956.32-.45.626-.218 1.092.049"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M152.419 49.172c.5.281 1.286.16 1.824.073.588-.088 1.602.194 1.446 1.038-.451.087-.698-.306-1.125-.306-.345 0-.796.16-1.165.209-.296.039-1.014.257-1.286.097-.368-.194.122-1.174.306-1.111Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M148.945 45.731c1.165-.417 1.655.966 2.14 1.703.354.5.834.917 1.174 1.432.466.684-.015.907-.403 1.518-.635-.441-1.14-1.567-1.397-2.29-.476.524-.553 1.689-.893 2.373-.306.601-.563.475-1.189.33-.524-.112-1.237-.418-1.785-.451-1.752-.136-.781-2.34 0-3.096.514-.5 1.062-.883 1.679-1.247.368-.199.232-.097.674-.272Z"/>
+  <path fill="#fff" d="M147.354 44.669c-.675-1.504 1.552-3.266 2.974-2.742 1.038.393.587 1.359.5 2.14-.097.796-.194 1.592-1.223 1.737-.417.063-.772-.073-1.165.146-.417.242-.562.747-.674 1.188-.16.65-.243 1.126-.805 1.529-.49.354-.723.563-.869 1.174-.281 1.077-1.077 2.188-2.436 1.849-1.028-.267-1.382-1.8-1.455-2.717-.049-.578.136-1.47.723-1.8.587-.33 1.334.12 1.897-.355.587-.5.733-1.518 1.553-1.776.393-.135 1.654.17 1.213-.708-.073.039-.098.087-.161.136"/>
+  <path stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M147.354 44.669c-.675-1.504 1.552-3.266 2.974-2.742 1.038.393.587 1.359.5 2.14-.097.796-.194 1.592-1.223 1.737-.417.063-.772-.073-1.165.146-.417.242-.562.747-.674 1.188-.16.65-.243 1.126-.805 1.529-.49.354-.723.563-.869 1.174-.281 1.077-1.077 2.188-2.436 1.849-1.028-.267-1.382-1.8-1.455-2.717-.049-.578.136-1.47.723-1.8.587-.33 1.334.12 1.897-.355.587-.5.733-1.518 1.553-1.776.393-.135 1.654.17 1.213-.708-.073.039-.098.087-.161.136"/>
+  <path fill="#DA3635" d="M147.354 44.669c-.675-1.504 1.552-3.266 2.974-2.742 1.038.393.587 1.359.5 2.14-.097.796-.194 1.592-1.223 1.737-.417.063-.772-.073-1.165.146-.417.242-.562.747-.674 1.188-.16.65-.243 1.126-.805 1.529-.49.354-.723.563-.869 1.174-.281 1.077-1.077 2.188-2.436 1.849-1.028-.267-1.382-1.8-1.455-2.717-.049-.578.136-1.47.723-1.8.587-.33 1.334.12 1.897-.355.587-.5.733-1.518 1.553-1.776.393-.135 1.654.17 1.213-.708-.073.039-.098.087-.161.136"/>
+  <path stroke="#DA3635" stroke-linejoin="round" stroke-miterlimit="10" d="M147.354 44.669c-.675-1.504 1.552-3.266 2.974-2.742 1.038.393.587 1.359.5 2.14-.097.796-.194 1.592-1.223 1.737-.417.063-.772-.073-1.165.146-.417.242-.562.747-.674 1.188-.16.65-.243 1.126-.805 1.529-.49.354-.723.563-.869 1.174-.281 1.077-1.077 2.188-2.436 1.849-1.028-.267-1.382-1.8-1.455-2.717-.049-.578.136-1.47.723-1.8.587-.33 1.334.12 1.897-.355.587-.5.733-1.518 1.553-1.776.393-.135 1.654.17 1.213-.708-.073.039-.098.087-.161.136"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M159.036 165.114c1.498.863 1.504 2.264.018 3.131-1.486.863-3.906.863-5.405 0-1.498-.864-1.504-2.264-.015-3.131 1.486-.867 3.906-.867 5.402 0Z"/>
+  <path fill="#EDEDED" d="M158.092 165.66c.97.562.977 1.471.012 2.032-.964.562-2.536.562-3.509 0-.97-.561-.977-1.47-.012-2.032.967-.558 2.536-.558 3.509 0Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M143.649 127.091c-.796.494-.616 1.758 0 2.115l1.358.784a.94.94 0 0 0 .94 0l4.779-2.759c.528-.305.683-1.541 0-1.879l-4.877 2.566-2.2-.827Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M154.876 124.323a3.56 3.56 0 0 0-3.604 0l-1.163.671-.519-.299a1.79 1.79 0 0 0-1.791 0l-4.15 2.396a.927.927 0 0 0 0 1.605l1.358.784a.94.94 0 0 0 .94 0l4.779-2.759a.791.791 0 0 0 0-1.37l-.159-.091.934-.537a3.117 3.117 0 0 1 3.146 0 3.11 3.11 0 0 1 1.575 2.725v25.99h.457v-25.99a3.577 3.577 0 0 0-1.803-3.125ZM154.968 166.633c0 .449.632.812 1.41.812.778 0 1.41-.363 1.41-.812v-.812h-2.823v.812h.003Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M156.381 166.633c.778 0 1.409-.363 1.409-.811 0-.449-.631-.812-1.409-.812-.779 0-1.41.363-1.41.812 0 .448.631.811 1.41.811Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M155.529 165.74c0 .271.382.488.852.488s.851-.22.851-.488v-18.221h-1.703v18.221Z"/>
+  <path fill="#fff" stroke="#706F6F" stroke-linejoin="round" stroke-miterlimit="10" d="M156.381 148.007c.47 0 .851-.219.851-.488 0-.27-.381-.489-.851-.489-.471 0-.852.219-.852.489 0 .269.381.488.852.488Z"/>
+</symbol>
+<symbol id="redirect" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M9.46967 12.1367C9.17678 12.4296 9.17678 12.9044 9.46967 13.1973C9.76256 13.4902 10.2374 13.4902 10.5303 13.1973L9.46967 12.1367ZM16.8943 6.83336C17.1872 6.54047 17.1872 6.0656 16.8943 5.7727C16.6014 5.47981 16.1265 5.47981 15.8336 5.7727L16.8943 6.83336ZM10.5303 13.1973L16.8943 6.83336L15.8336 5.7727L9.46967 12.1367L10.5303 13.1973Z" fill="#FF7100"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M13.8887 3.82812L19.192 3.47457L18.8384 8.77787L13.8887 3.82812Z" fill="#FF7100"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M6 6.75C5.86193 6.75 5.75 6.86193 5.75 7V16C5.75 16.1381 5.86193 16.25 6 16.25H16C16.1381 16.25 16.25 16.1381 16.25 16V11.5L17.75 10.2308V16C17.75 16.9665 16.9665 17.75 16 17.75H6C5.0335 17.75 4.25 16.9665 4.25 16V7C4.25 6.0335 5.0335 5.25 6 5.25H12.7143L11 6.75H6Z" fill="#FF7100"/>
+</symbol>
+
 </svg>
diff --git a/src/assets/scss/_color.scss b/src/assets/scss/_color.scss
index 71341a6b16b023ea2cf8edaaa7d2b4695e5913b9..50916eea626c1c5d22604b805d875d46548ccfb4 100644
--- a/src/assets/scss/_color.scss
+++ b/src/assets/scss/_color.scss
@@ -25,6 +25,7 @@ $orange-warning: #da6c2e;
 /* OTHERS */
 $blue: #348899;
 $blue-light: #c9ecf3;
+$blueRdvs: #1f2952;
 /* APP COLORS */
 $primary-color: $red;
 $primary-color-dark: $red-dark;