diff --git a/src/app/form/form-view/global-components/information-step/information-step.component.html b/src/app/form/form-view/global-components/information-step/information-step.component.html
index 7d593af00bd9b3d247f7f50d98e98bc477e20ac7..b52e51143a2649f62317e1ffd8628b4eb1325c81 100644
--- a/src/app/form/form-view/global-components/information-step/information-step.component.html
+++ b/src/app/form/form-view/global-components/information-step/information-step.component.html
@@ -13,7 +13,7 @@
   <!-- Email just got confirmed, request some info about the user -->
   <ng-container *ngIf="formType === formTypeEnum.profile && step === profileFormStepEnum.profileBeginningInfo">
     <div class="information-step">
-      <img src="../../assets/form/profileSkip.svg" alt="Image profil" />
+      <img src="../../assets/form/profileSkip.svg" alt="" />
       <h3>Pour compléter votre profil, nous aimerions vous poser quelques questions</h3>
       <div class="btnContainer">
         <div class="btnGroup">
diff --git a/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.html b/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.html
index 00b1dcccd042633bdbe3af40c821e5d021cbea2f..1d0448bd1a726b7837efbf042ba6f155d7bb564b 100644
--- a/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.html
+++ b/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.html
@@ -59,7 +59,7 @@
               [label]="'Créer une structure'"
               [variant]="'primaryBlack'"
               [wide]="true"
-              [iconName]="'add'"
+              [iconName]="'plus'"
               (action)="addStructure()"
             />
           </div>
diff --git a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html
index 1e2ceb645547d62941fcfbec77913db65718b864..1267eae70784bea28da803bab1b135931579ff81 100644
--- a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html
+++ b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html
@@ -13,8 +13,7 @@
           <ng-container *ngIf="equipment.module.id === 'computer'">
             <app-v3-icon-button
               [variant]="'primaryBlack'"
-              [iconFolder]="'form'"
-              [iconName]="'hide'"
+              [iconName]="'minus'"
               [iconColor]="'currentColor'"
               [size]="'medium'"
               [disabled]="structureForm.value.nbComputers === 0"
@@ -34,8 +33,7 @@
           <ng-container *ngIf="equipment.module.id === 'printer'">
             <app-v3-icon-button
               [variant]="'primaryBlack'"
-              [iconFolder]="'form'"
-              [iconName]="'hide'"
+              [iconName]="'minus'"
               [iconColor]="'currentColor'"
               [size]="'medium'"
               [disabled]="structureForm.value.nbPrinters === 0"
@@ -55,8 +53,7 @@
           <ng-container *ngIf="equipment.module.id === 'scanner'">
             <app-v3-icon-button
               [variant]="'primaryBlack'"
-              [iconFolder]="'form'"
-              [iconName]="'hide'"
+              [iconName]="'minus'"
               [iconColor]="'currentColor'"
               [size]="'medium'"
               [disabled]="structureForm.value.nbScanners === 0"
@@ -75,8 +72,7 @@
           </ng-container>
           <app-v3-icon-button
             [variant]="'primaryBlack'"
-            [iconFolder]="'form'"
-            [iconName]="'show'"
+            [iconName]="'plus'"
             [iconColor]="'currentColor'"
             [size]="'medium'"
             (click)="changeValueHandler(equipment.module.id, 1)"
diff --git a/src/app/post/components/post-header/post-header.component.html b/src/app/post/components/post-header/post-header.component.html
index cd783f259da60fb81a9da44a476ac42afc876963..4d3bd8491cc62ce198ccab9355dbcf380fe4d4ae 100644
--- a/src/app/post/components/post-header/post-header.component.html
+++ b/src/app/post/components/post-header/post-header.component.html
@@ -22,7 +22,7 @@
       class="publish-button hide-on-mobile"
       [variant]="'primaryBlack'"
       [label]="'Publier'"
-      [iconName]="'add'"
+      [iconName]="'plus'"
       (action)="togglePublishNews()"
     />
   </div>
diff --git a/src/app/profile/edit/edit.component.html b/src/app/profile/edit/edit.component.html
index 5406da31f41bcdb86b614f02455349cac8cfa5aa..ae6a6fd6d9bec3637ea730c0114df03ed4b0b6aa 100644
--- a/src/app/profile/edit/edit.component.html
+++ b/src/app/profile/edit/edit.component.html
@@ -283,24 +283,14 @@
         Cette action est définitive, veuillez entrer votre mot de passe afin de supprimer votre compte
       </p>
 
-      <div class="modal-form-group">
-        <label for="oldPassword">Mot de passe</label>
-        <div class="modal-form-item">
-          <input
-            id="oldPassword"
-            class="form-input password"
-            autocomplete="on"
-            [type]="isShowPassword.oldPassword ? 'text' : 'password'"
-            [(ngModel)]="oldPassword"
-          />
-          <app-svg-icon
-            [iconClass]="'icon-32 grey hover'"
-            [folder]="'form'"
-            [icon]="isShowPassword.oldPassword ? 'eyePasswordInvisible' : 'eyePasswordVisible'"
-            (click)="showPassword(ShowPassword.oldPassword)"
-          />
-        </div>
-      </div>
+      <app-input
+        autocomplete="on"
+        [id]="oldPassword"
+        [label]="'Mot de passe'"
+        [type]="'password'"
+        [size]="'large'"
+        [(value)]="oldPassword"
+      />
     </div>
   </app-v3-modal>
 </div>
diff --git a/src/app/profile/edit/edit.component.scss b/src/app/profile/edit/edit.component.scss
index 35af539ae5dcb8f70b5b4a9379c184c9902bf773..86568e8a3105d66eaf7bc58c5937703e7ff42b19 100644
--- a/src/app/profile/edit/edit.component.scss
+++ b/src/app/profile/edit/edit.component.scss
@@ -171,21 +171,3 @@ p {
     width: 300px;
   }
 }
-
-.modal-form-group {
-  display: flex;
-  flex-direction: column;
-  max-width: fit-content;
-  padding: 8px 0;
-
-  label {
-    text-align: left;
-  }
-
-  .modal-form-item {
-    display: flex;
-    flex-direction: row;
-    justify-content: center;
-    gap: 16px;
-  }
-}
diff --git a/src/app/profile/profile-structure/profile-structure.component.html b/src/app/profile/profile-structure/profile-structure.component.html
index 69c00299ae5229a2dea579e47229d703bfe1c097..35584d99eff16a655017c679d9e0ffad08b18365 100644
--- a/src/app/profile/profile-structure/profile-structure.component.html
+++ b/src/app/profile/profile-structure/profile-structure.component.html
@@ -51,7 +51,7 @@
             [variant]="'secondary'"
             [label]="'Voir la structure'"
             [iconFolder]="'form'"
-            [iconName]="'eye'"
+            [iconName]="'visibility'"
             [size]="'small'"
             [queryParams]="{ id: structure._id }"
           />
@@ -62,7 +62,7 @@
             [routerLinkActive]="'active'"
             [variant]="'secondary'"
             [iconFolder]="'form'"
-            [iconName]="'eye'"
+            [iconName]="'visibility'"
             [queryParams]="{ id: structure._id }"
           />
           <app-v3-button
@@ -146,7 +146,7 @@
         [routerLinkActive]="'active'"
         [variant]="'primaryBlack'"
         [label]="'Ajouter une offre'"
-        [iconName]="'add'"
+        [iconName]="'plus'"
         [size]="'small'"
         [wide]="true"
         (click)="goToOffer()"
diff --git a/src/app/profile/profile.component.html b/src/app/profile/profile.component.html
index fae79edaef70605dd6c251e757370e3f31dd84b8..de431691c35979d9526fb709b6829f6ec7c7bdd6 100644
--- a/src/app/profile/profile.component.html
+++ b/src/app/profile/profile.component.html
@@ -75,7 +75,7 @@
       [state]="{ data: 'description' }"
       [variant]="'secondary'"
       [label]="'Ajouter une description'"
-      [iconName]="'add'"
+      [iconName]="'plus'"
       [size]="'small'"
       [wide]="true"
     />
@@ -138,7 +138,7 @@
       routerLink="/form/structure"
       [variant]="'secondary'"
       [label]="'Ajouter une structure'"
-      [iconName]="'add'"
+      [iconName]="'plus'"
       [size]="'small'"
       [wide]="true"
     />
diff --git a/src/app/profile/structure-members-management/structure-members-management.component.html b/src/app/profile/structure-members-management/structure-members-management.component.html
index 9f146a4bf775091626ce046174fbc02b61dd53a0..cedeb390a75640117f9097619cd8ca6c09298846 100644
--- a/src/app/profile/structure-members-management/structure-members-management.component.html
+++ b/src/app/profile/structure-members-management/structure-members-management.component.html
@@ -9,7 +9,7 @@
       tabindex="0"
       [variant]="'primaryBlack'"
       [label]="'Ajouter un membre'"
-      [iconName]="'add'"
+      [iconName]="'plus'"
       [size]="'small'"
       [wide]="true"
       (click)="addMemberModalOpened = true"
diff --git a/src/app/profile/structures-management/structures-management.component.html b/src/app/profile/structures-management/structures-management.component.html
index 43abba5782f3c9a435efaf44feed553c5c3b68c7..69fe295c1fcdf3d2538601f259debfcaaa16adb1 100644
--- a/src/app/profile/structures-management/structures-management.component.html
+++ b/src/app/profile/structures-management/structures-management.component.html
@@ -11,7 +11,7 @@
         tabindex="0"
         [variant]="'primaryBlack'"
         [label]="'Ajouter une structure'"
-        [iconName]="'add'"
+        [iconName]="'plus'"
         [size]="'small'"
         [wide]="true"
       />
diff --git a/src/app/shared/components/password-form/password-form.component.html b/src/app/shared/components/password-form/password-form.component.html
index 3b6a59b25f31582b8d84fae93a4470a88ccd129b..87c8fa1e991af22b77819fa7a5d0d24f95af8e3f 100644
--- a/src/app/shared/components/password-form/password-form.component.html
+++ b/src/app/shared/components/password-form/password-form.component.html
@@ -15,7 +15,7 @@
             tabindex="0"
             [folder]="'form'"
             [iconClass]="'grey'"
-            [icon]="'eyePassword'"
+            [icon]="'visibility'"
             (click)="showOldPassword()"
             (keyup.enter)="showOldPassword()"
           />
@@ -143,7 +143,7 @@
             tabindex="0"
             [iconClass]="'validation grey hover'"
             [folder]="'form'"
-            [icon]="'eyePassword'"
+            [icon]="'visibility'"
             (click)="showPassword()"
             (keyup.enter)="showPassword()"
           />
@@ -175,7 +175,7 @@
             tabindex="0"
             [iconClass]="'validation grey hover'"
             [folder]="'form'"
-            [icon]="'eyePassword'"
+            [icon]="'visibility'"
             (click)="showConfirmPassword()"
             (keyup.enter)="showConfirmPassword()"
           />
diff --git a/src/app/structure-list/components/card/card.component.html b/src/app/structure-list/components/card/card.component.html
index 056966c42125518712d2e1a3d7a106d81b91b5ec..2c3380e52df3d547bce0234715c48e939785fb3a 100644
--- a/src/app/structure-list/components/card/card.component.html
+++ b/src/app/structure-list/components/card/card.component.html
@@ -44,7 +44,7 @@
         *ngIf="!isSelected"
         [variant]="'secondary'"
         [label]="'Ajouter'"
-        [iconName]="'add'"
+        [iconName]="'plus'"
         (action)="cardAddToList(); $event.stopPropagation()"
       />
       <app-v3-button
diff --git a/src/assets/form/excludeMember.svg b/src/assets/form/excludeMember.svg
deleted file mode 100644
index 06a9bfe61c839c39a8182c5daee1c7d13119a1ac..0000000000000000000000000000000000000000
--- a/src/assets/form/excludeMember.svg
+++ /dev/null
@@ -1,166 +0,0 @@
-<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g clip-path="url(#clip0_6867_13593)">
-<path d="M29.3915 113.811C28.6927 113.477 27.4068 113.324 26.8901 114.04C26.4203 114.675 26.115 116.119 26.1914 116.877C26.2383 117.393 26.4497 117.951 26.7961 118.35C27.2659 118.896 27.5536 118.697 28.1643 118.879C28.7397 119.043 28.9981 119.607 29.5618 118.896C29.9082 118.456 29.7908 117.746 29.8671 117.211C29.9611 116.618 30.1078 113.676 29.092 113.735" fill="white"/>
-<path d="M29.3915 113.811C28.6927 113.477 27.4068 113.324 26.8901 114.04C26.4203 114.675 26.115 116.119 26.1914 116.877C26.2383 117.393 26.4497 117.951 26.7961 118.35C27.2659 118.896 27.5536 118.697 28.1643 118.879C28.7397 119.043 28.9981 119.607 29.5618 118.896C29.9082 118.456 29.7908 117.746 29.8671 117.211C29.9611 116.618 30.1078 113.676 29.092 113.735" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M29.3915 113.811C28.6927 113.477 27.4068 113.324 26.8901 114.04C26.4203 114.675 26.115 116.119 26.1914 116.877C26.2383 117.393 26.4497 117.951 26.7961 118.35C27.2659 118.896 27.5536 118.697 28.1643 118.879C28.7397 119.043 28.9981 119.607 29.5618 118.896C29.9082 118.456 29.7908 117.746 29.8671 117.211C29.9611 116.618 30.1078 113.676 29.092 113.735" fill="white"/>
-<path d="M29.3915 113.811C28.6927 113.477 27.4068 113.324 26.8901 114.04C26.4203 114.675 26.115 116.119 26.1914 116.877C26.2383 117.393 26.4497 117.951 26.7961 118.35C27.2659 118.896 27.5536 118.697 28.1643 118.879C28.7397 119.043 28.9981 119.607 29.5618 118.896C29.9082 118.456 29.7908 117.746 29.8671 117.211C29.9611 116.618 30.1078 113.676 29.092 113.735" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M27.6298 113.811C28.2346 113.535 29.6145 113.946 29.1624 114.886C28.9334 115.373 28.4813 115.326 28.311 115.89C28.264 116.054 28.2347 117.117 28.3873 117.182C28.8101 117.381 28.7338 116.225 28.9628 116.09C29.7496 115.573 29.4207 116.894 29.7378 117.088C30.5423 117.605 30.648 114.78 30.2839 114.269C29.8435 113.6 27.7355 112.843 27.1895 113.753C27.3539 113.8 27.6122 113.888 27.7825 113.905" fill="white"/>
-<path d="M27.6298 113.811C28.2346 113.535 29.6145 113.946 29.1624 114.886C28.9334 115.373 28.4813 115.326 28.311 115.89C28.264 116.054 28.2347 117.117 28.3873 117.182C28.8101 117.381 28.7338 116.225 28.9628 116.09C29.7496 115.573 29.4207 116.894 29.7378 117.088C30.5423 117.605 30.648 114.78 30.2839 114.269C29.8435 113.6 27.7355 112.843 27.1895 113.753C27.3539 113.8 27.6122 113.888 27.7825 113.905" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M27.6298 113.811C28.2346 113.535 29.6145 113.946 29.1624 114.886C28.9334 115.373 28.4813 115.326 28.311 115.89C28.264 116.054 28.2347 117.117 28.3873 117.182C28.8101 117.381 28.7338 116.225 28.9628 116.09C29.7496 115.573 29.4207 116.894 29.7378 117.088C30.5423 117.605 30.648 114.78 30.2839 114.269C29.8435 113.6 27.7355 112.843 27.1895 113.753C27.3539 113.8 27.6122 113.888 27.7825 113.905" fill="#DA3635"/>
-<path d="M27.6298 113.811C28.2346 113.535 29.6145 113.946 29.1624 114.886C28.9334 115.373 28.4813 115.326 28.311 115.89C28.264 116.054 28.2347 117.117 28.3873 117.182C28.8101 117.381 28.7338 116.225 28.9628 116.09C29.7496 115.573 29.4207 116.894 29.7378 117.088C30.5423 117.605 30.648 114.78 30.2839 114.269C29.8435 113.6 27.7355 112.843 27.1895 113.753C27.3539 113.8 27.6122 113.888 27.7825 113.905" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M22.2746 126.7C22.1513 127.046 22.2922 127.61 21.8929 127.915C21.8753 127.821 21.8166 127.686 21.8166 127.569C21.5876 127.933 21.3175 128.326 20.9065 128.479C20.6012 127.54 21.2412 126.735 21.9106 126.113C22.0456 126.248 22.2276 126.4 22.2922 126.553" fill="white"/>
-<path d="M22.2746 126.7C22.1513 127.046 22.2922 127.61 21.8929 127.915C21.8753 127.821 21.8166 127.686 21.8166 127.569C21.5876 127.933 21.3175 128.326 20.9065 128.479C20.6012 127.54 21.2412 126.735 21.9106 126.113C22.0456 126.248 22.2276 126.4 22.2922 126.553" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M22.2746 126.7C22.1513 127.046 22.2922 127.61 21.8929 127.915C21.8753 127.821 21.8166 127.686 21.8166 127.569C21.5876 127.933 21.3175 128.326 20.9065 128.479C20.6012 127.54 21.2412 126.735 21.9106 126.113C22.0456 126.248 22.2276 126.4 22.2922 126.553" fill="white"/>
-<path d="M22.2746 126.7C22.1513 127.046 22.2922 127.61 21.8929 127.915C21.8753 127.821 21.8166 127.686 21.8166 127.569C21.5876 127.933 21.3175 128.326 20.9065 128.479C20.6012 127.54 21.2412 126.735 21.9106 126.113C22.0456 126.248 22.2276 126.4 22.2922 126.553" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M29.2384 142.26C29.2208 142.489 29.4968 142.865 29.4498 143.018C29.3441 143.476 28.9214 143.476 28.5397 143.623C28.1463 143.758 27.9349 143.787 27.5356 144.016C27.3066 144.169 26.8369 144.762 26.5315 144.715C25.41 144.562 26.6255 143 27.0013 142.771C27.5004 142.454 28.7746 141.984 29.2033 142.484" fill="white"/>
-<path d="M29.2384 142.26C29.2208 142.489 29.4968 142.865 29.4498 143.018C29.3441 143.476 28.9214 143.476 28.5397 143.623C28.1463 143.758 27.9349 143.787 27.5356 144.016C27.3066 144.169 26.8369 144.762 26.5315 144.715C25.41 144.562 26.6255 143 27.0013 142.771C27.5004 142.454 28.7746 141.984 29.2033 142.484" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M29.2384 142.26C29.2208 142.489 29.4968 142.865 29.4498 143.018C29.3441 143.476 28.9214 143.476 28.5397 143.623C28.1463 143.758 27.9349 143.787 27.5356 144.016C27.3066 144.169 26.8369 144.762 26.5315 144.715C25.41 144.562 26.6255 143 27.0013 142.771C27.5004 142.454 28.7746 141.984 29.2033 142.484" fill="white"/>
-<path d="M29.2384 142.26C29.2208 142.489 29.4968 142.865 29.4498 143.018C29.3441 143.476 28.9214 143.476 28.5397 143.623C28.1463 143.758 27.9349 143.787 27.5356 144.016C27.3066 144.169 26.8369 144.762 26.5315 144.715C25.41 144.562 26.6255 143 27.0013 142.771C27.5004 142.454 28.7746 141.984 29.2033 142.484" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M35.9443 141.597C35.8679 142.343 36.5373 142.901 36.185 143.57C35.956 144.028 35.1986 145.12 34.5644 144.873C33.6073 144.509 34.4 143.523 34.6701 143.036C34.8697 142.689 34.9754 142.366 35.2749 142.125C35.4628 141.973 35.9913 141.579 35.9443 141.597Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M27.4827 127.628C27.2831 129.601 26.7076 131.632 26.2966 133.605C26.0382 134.821 26.4023 135.837 26.5256 137.017C26.6607 138.32 26.8133 139.595 26.9366 140.886C26.9953 141.521 26.8427 142.401 27.4064 142.66C27.9701 142.918 28.8332 142.419 29.3793 142.343C29.6377 140.54 29.1797 138.473 29.1797 136.624C29.1797 135.59 29.1504 134.88 29.6377 133.981C30.0311 133.253 30.4128 132.419 30.3952 131.568C30.8062 133.647 30.9119 135.725 31.7163 137.663C32.5031 139.618 33.6599 141.468 34.7638 143.2C36.3727 142.472 36.132 140.804 35.3275 139.606C34.5113 138.391 34.0827 137.117 33.9183 135.678C33.7656 134.281 33.7832 132.965 33.9359 131.568C34.0122 130.781 34.2706 129.853 34.1473 129.066C34.0122 128.186 33.5719 128.109 32.7205 127.851C32.0041 127.64 27.7587 126.941 27.5473 127.775" fill="white"/>
-<path d="M27.4827 127.628C27.2831 129.601 26.7076 131.632 26.2966 133.605C26.0382 134.821 26.4023 135.837 26.5256 137.017C26.6607 138.32 26.8133 139.595 26.9366 140.886C26.9953 141.521 26.8427 142.401 27.4064 142.66C27.9701 142.918 28.8332 142.419 29.3793 142.343C29.6377 140.54 29.1797 138.473 29.1797 136.624C29.1797 135.59 29.1504 134.88 29.6377 133.981C30.0311 133.253 30.4128 132.419 30.3952 131.568C30.8062 133.647 30.9119 135.725 31.7163 137.663C32.5031 139.618 33.6599 141.468 34.7638 143.2C36.3727 142.472 36.132 140.804 35.3275 139.606C34.5113 138.391 34.0827 137.117 33.9183 135.678C33.7656 134.281 33.7832 132.965 33.9359 131.568C34.0122 130.781 34.2706 129.853 34.1473 129.066C34.0122 128.186 33.5719 128.109 32.7205 127.851C32.0041 127.64 27.7587 126.941 27.5473 127.775" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M27.4827 127.628C27.2831 129.601 26.7076 131.632 26.2966 133.605C26.0382 134.821 26.4023 135.837 26.5256 137.017C26.6607 138.32 26.8133 139.595 26.9366 140.886C26.9953 141.521 26.8427 142.401 27.4064 142.66C27.9701 142.918 28.8332 142.419 29.3793 142.343C29.6377 140.54 29.1797 138.473 29.1797 136.624C29.1797 135.59 29.1504 134.88 29.6377 133.981C30.0311 133.253 30.4128 132.419 30.3952 131.568C30.8062 133.647 30.9119 135.725 31.7163 137.663C32.5031 139.618 33.6599 141.468 34.7638 143.2C36.3727 142.472 36.132 140.804 35.3275 139.606C34.5113 138.391 34.0827 137.117 33.9183 135.678C33.7656 134.281 33.7832 132.965 33.9359 131.568C34.0122 130.781 34.2706 129.853 34.1473 129.066C34.0122 128.186 33.5719 128.109 32.7205 127.851C32.0041 127.64 27.7587 126.941 27.5473 127.775" fill="white"/>
-<path d="M27.4827 127.628C27.2831 129.601 26.7076 131.632 26.2966 133.605C26.0382 134.821 26.4023 135.837 26.5256 137.017C26.6607 138.32 26.8133 139.595 26.9366 140.886C26.9953 141.521 26.8427 142.401 27.4064 142.66C27.9701 142.918 28.8332 142.419 29.3793 142.343C29.6377 140.54 29.1797 138.473 29.1797 136.624C29.1797 135.59 29.1504 134.88 29.6377 133.981C30.0311 133.253 30.4128 132.419 30.3952 131.568C30.8062 133.647 30.9119 135.725 31.7163 137.663C32.5031 139.618 33.6599 141.468 34.7638 143.2C36.3727 142.472 36.132 140.804 35.3275 139.606C34.5113 138.391 34.0827 137.117 33.9183 135.678C33.7656 134.281 33.7832 132.965 33.9359 131.568C34.0122 130.781 34.2706 129.853 34.1473 129.066C34.0122 128.186 33.5719 128.109 32.7205 127.851C32.0041 127.64 27.7587 126.941 27.5473 127.775" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M27.1011 118.573C25.3102 118.65 24.9344 122.731 23.8833 123.882C23.4606 124.351 23.0202 124.792 22.5035 125.173C21.975 125.567 21.3173 125.69 21.975 126.389C22.568 127.041 22.7794 126.589 23.3431 126.178C23.8128 125.831 24.3589 125.602 24.8933 125.326C26.3965 124.569 26.3026 123.852 26.5609 122.355C26.7253 123.054 26.9837 123.582 27.0306 124.31C27.0776 125.144 26.9543 125.995 27.0306 126.812C27.1833 128.679 28.9566 128.614 30.4892 128.755C31.276 128.814 32.0217 128.362 32.5678 128.421C32.8732 128.45 33.1608 128.832 33.5543 128.697C34.118 128.497 33.9947 128.045 34.1591 127.546C34.4762 126.618 35.3863 125.285 35.3099 124.299C35.2219 123.148 33.4427 121.809 32.8673 120.781C32.2918 119.765 31.6048 118.309 30.1838 118.444C29.6553 118.491 29.4557 118.932 28.9566 119.037C28.4575 119.143 27.8058 118.873 27.3654 118.656" fill="white"/>
-<path d="M27.1011 118.573C25.3102 118.65 24.9344 122.731 23.8833 123.882C23.4606 124.351 23.0202 124.792 22.5035 125.173C21.975 125.567 21.3173 125.69 21.975 126.389C22.568 127.041 22.7794 126.589 23.3431 126.178C23.8128 125.831 24.3589 125.602 24.8933 125.326C26.3965 124.569 26.3026 123.852 26.5609 122.355C26.7253 123.054 26.9837 123.582 27.0306 124.31C27.0776 125.144 26.9543 125.995 27.0306 126.812C27.1833 128.679 28.9566 128.614 30.4892 128.755C31.276 128.814 32.0217 128.362 32.5678 128.421C32.8732 128.45 33.1608 128.832 33.5543 128.697C34.118 128.497 33.9947 128.045 34.1591 127.546C34.4762 126.618 35.3863 125.285 35.3099 124.299C35.2219 123.148 33.4427 121.809 32.8673 120.781C32.2918 119.765 31.6048 118.309 30.1838 118.444C29.6553 118.491 29.4557 118.932 28.9566 119.037C28.4575 119.143 27.8058 118.873 27.3654 118.656" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M27.1011 118.573C25.3102 118.65 24.9344 122.731 23.8833 123.882C23.4606 124.351 23.0202 124.792 22.5035 125.173C21.975 125.567 21.3173 125.69 21.975 126.389C22.568 127.041 22.7794 126.589 23.3431 126.178C23.8128 125.831 24.3589 125.602 24.8933 125.326C26.3965 124.569 26.3026 123.852 26.5609 122.355C26.7253 123.054 26.9837 123.582 27.0306 124.31C27.0776 125.144 26.9543 125.995 27.0306 126.812C27.1833 128.679 28.9566 128.614 30.4892 128.755C31.276 128.814 32.0217 128.362 32.5678 128.421C32.8732 128.45 33.1608 128.832 33.5543 128.697C34.118 128.497 33.9947 128.045 34.1591 127.546C34.4762 126.618 35.3863 125.285 35.3099 124.299C35.2219 123.148 33.4427 121.809 32.8673 120.781C32.2918 119.765 31.6048 118.309 30.1838 118.444C29.6553 118.491 29.4557 118.932 28.9566 119.037C28.4575 119.143 27.8058 118.873 27.3654 118.656" fill="white"/>
-<path d="M27.1011 118.573C25.3102 118.65 24.9344 122.731 23.8833 123.882C23.4606 124.351 23.0202 124.792 22.5035 125.173C21.975 125.567 21.3173 125.69 21.975 126.389C22.568 127.041 22.7794 126.589 23.3431 126.178C23.8128 125.831 24.3589 125.602 24.8933 125.326C26.3965 124.569 26.3026 123.852 26.5609 122.355C26.7253 123.054 26.9837 123.582 27.0306 124.31C27.0776 125.144 26.9543 125.995 27.0306 126.812C27.1833 128.679 28.9566 128.614 30.4892 128.755C31.276 128.814 32.0217 128.362 32.5678 128.421C32.8732 128.45 33.1608 128.832 33.5543 128.697C34.118 128.497 33.9947 128.045 34.1591 127.546C34.4762 126.618 35.3863 125.285 35.3099 124.299C35.2219 123.148 33.4427 121.809 32.8673 120.781C32.2918 119.765 31.6048 118.309 30.1838 118.444C29.6553 118.491 29.4557 118.932 28.9566 119.037C28.4575 119.143 27.8058 118.873 27.3654 118.656" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M32.1394 129.172C31.5463 129.883 31.5169 130.64 31.4112 131.627C31.2879 132.701 31.0296 133.658 31.0179 134.768C31.0002 136.999 31.0179 139.195 31.0179 141.456C31.0179 142.184 30.6362 144.885 31.2292 145.279C31.652 144.14 31.3349 142.443 31.3937 141.215C31.47 139.636 31.3936 137.968 31.4993 136.406C31.6344 134.674 31.5933 132.871 31.9104 131.174C31.9985 130.705 32.2451 129.519 32.7618 129.337C33.4899 129.066 33.9127 130.411 34.0653 130.429C34.8111 130.534 34.0184 128.867 33.2139 128.773C32.4388 128.673 32.2275 128.961 32.1394 129.172Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M33.6071 128.767C33.6071 129.19 33.7421 129.812 33.2724 130.012C32.5912 130.288 32.603 129.495 32.603 129.043C32.4973 129.061 32.2859 128.984 32.1626 128.996C31.8749 127.98 34.0005 128.068 33.7539 129.072" fill="white"/>
-<path d="M33.6071 128.767C33.6071 129.19 33.7421 129.812 33.2724 130.012C32.5912 130.288 32.603 129.495 32.603 129.043C32.4973 129.061 32.2859 128.984 32.1626 128.996C31.8749 127.98 34.0005 128.068 33.7539 129.072" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M33.6071 128.767C33.6071 129.19 33.7421 129.812 33.2724 130.012C32.5912 130.288 32.603 129.495 32.603 129.043C32.4973 129.061 32.2859 128.984 32.1626 128.996C31.8749 127.98 34.0005 128.068 33.7539 129.072" fill="white"/>
-<path d="M33.6071 128.767C33.6071 129.19 33.7421 129.812 33.2724 130.012C32.5912 130.288 32.603 129.495 32.603 129.043C32.4973 129.061 32.2859 128.984 32.1626 128.996C31.8749 127.98 34.0005 128.068 33.7539 129.072" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M128.575 125.941L148.045 136.959C154.369 140.538 154.419 146.409 148.158 150.024L96.0668 180.098C89.849 183.688 79.768 183.688 73.5502 180.098L30.3016 155.129" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M42.6586 80.0252L33.4559 74.804C27.1452 71.2237 27.1009 65.3595 33.3571 61.7475L77.9341 36.0109C84.1519 32.4211 94.233 32.4211 100.451 36.0109L170.121 76.2353" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M47.7647 82.7691C47.4781 82.9335 47.1956 83.1064 46.9174 83.2834C37.9049 88.9869 37.9091 97.8477 46.9259 103.513C53.1436 107.425 62.0465 108.951 70.393 108.108C71.5902 107.986 72.4755 108.723 71.9064 109.343C62.0381 120.029 64.032 133.417 77.926 142.969C78.7185 143.513 80.1517 143.543 81.0243 143.037L151.7 102.232C152.572 101.726 152.53 100.895 151.594 100.436C135.15 92.3592 112.046 91.1578 93.5609 96.8402C92.4776 97.1732 91.2298 96.6421 91.4448 95.9423C92.8654 91.3011 90.5048 86.3565 84.3334 82.7691C74.267 76.9224 57.8943 76.9224 47.7647 82.7691Z" fill="#EDEDED"/>
-<path d="M42.5926 80.5227C42.268 80.7082 41.9476 80.9021 41.6357 81.1002C31.4513 87.5456 31.4555 97.5572 41.6441 103.965C48.6712 108.382 58.7334 110.111 68.1633 109.154C69.5122 109.015 70.5154 109.849 69.8705 110.549C58.7207 122.626 60.9718 137.755 76.6742 148.547C77.5678 149.162 79.1866 149.192 80.173 148.623L160.047 102.51C161.033 101.941 160.987 101.001 159.929 100.483C141.343 91.3521 115.233 89.9989 94.341 96.419C93.1185 96.7942 91.7063 96.1956 91.9508 95.4073C93.5569 90.1633 90.8886 84.5737 83.9163 80.5227C72.5431 73.9129 54.0416 73.9129 42.5926 80.5227Z" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M91.9258 77.8123L91.9764 94.9943C91.9764 94.9437 91.9848 94.8974 91.9974 94.8468C92.2503 94.0164 92.3768 93.1775 92.3768 92.3386L92.3262 75.1566C92.3304 75.9955 92.204 76.8343 91.9468 77.6648C91.9342 77.7153 91.9258 77.7659 91.9258 77.8123Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M43.5791 75.2958L43.6297 92.4778C43.6381 95.9007 45.7669 99.3194 50.0118 101.988C55.8755 105.676 64.2768 107.118 72.1469 106.321C73.0322 106.233 73.7404 106.642 73.7404 107.105L73.6898 89.9232C73.6898 89.4595 72.9816 89.0507 72.0964 89.1392C64.2262 89.9359 55.8291 88.4942 49.9612 84.8057C45.7163 82.1374 43.5875 78.7187 43.5791 75.2958Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M149.378 82.7697C149.378 83.0689 149.184 83.3683 148.787 83.5959L82.1206 122.087L82.1712 139.269L148.838 100.778C149.234 100.55 149.432 100.251 149.428 99.9517L149.378 82.7697Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M67.7168 103.8L67.7674 120.982C67.7842 127.47 71.6118 133.953 79.2502 139.201C79.9963 139.716 81.3495 139.741 82.1715 139.265L82.1209 122.083C81.2989 122.559 79.9457 122.534 79.1996 122.019C71.5612 116.771 67.7337 110.288 67.7168 103.8Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M50.7537 65.2421C50.4839 65.398 50.2141 65.5582 49.9527 65.7268C41.4502 71.1057 41.4587 79.4649 49.9612 84.81C55.8248 88.4985 64.2261 89.9402 72.0963 89.1434C73.2218 89.0296 74.0607 89.7209 73.5211 90.3069C64.2135 100.39 66.0935 113.015 79.1992 122.024C79.9454 122.538 81.2985 122.563 82.1206 122.087L148.787 83.596C149.609 83.1196 149.571 82.3356 148.69 81.9014C133.178 74.2799 111.388 73.1502 93.949 78.508C92.9288 78.8199 91.7485 78.3225 91.9509 77.6607C93.2914 73.2851 91.0615 68.6186 85.2442 65.2336C75.7511 59.7241 60.31 59.7241 50.7537 65.2421Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M129.093 121.462C131.133 122.639 131.146 124.548 129.118 125.724C127.09 126.9 123.794 126.9 121.754 125.724C119.714 124.548 119.705 122.639 121.733 121.462C123.76 120.286 127.053 120.286 129.093 121.462Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M125.417 56.6667V124" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/>
-<path d="M130.655 48.227L126.083 45.5704L134.228 50.2147L138.807 52.8713L130.655 48.227Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M134.273 24.8822L138.853 27.5454C138.223 27.1751 137.391 27.2921 136.56 27.7727L131.98 25.1096C132.812 24.6289 133.643 24.5185 134.273 24.8822Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M112.267 73.5663L107.687 70.9032C106.434 70.1757 106.518 67.6619 107.785 65.4794L112.364 68.1426C111.097 70.3251 111.006 72.8388 112.267 73.5663Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M112.357 68.1423L107.778 65.4792L115.871 51.4618L120.451 54.125L112.357 68.1423Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M126.076 44.3751L121.503 41.7184L129.707 27.5127L134.287 30.1694L126.076 44.3751Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M134.286 30.1696L129.707 27.5064C130.331 26.4216 131.156 25.5772 131.98 25.1031L136.56 27.7662C135.735 28.2469 134.91 29.0848 134.286 30.1696Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M120.451 54.1249L115.871 51.4617C116.17 50.9421 116.17 50.3835 115.865 50.2211L120.444 52.8842C120.749 53.0466 120.756 53.6052 120.451 54.1249Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M124.998 45.0053L120.418 42.3422C120.568 42.4266 120.769 42.4006 120.964 42.2837C121.159 42.1733 121.354 41.9719 121.503 41.7121L126.083 44.3753C125.933 44.6351 125.738 44.8299 125.543 44.9469C125.342 45.0573 125.147 45.0898 124.998 45.0053Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M116.852 40.3545L112.272 37.6978L120.418 42.3421L124.997 45.0053L116.852 40.3545Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M136.56 27.7661C137.411 27.2725 138.268 27.1685 138.905 27.5713C140.126 28.3442 140.002 30.793 138.755 32.9561L130.655 46.9799C130.356 47.493 130.356 48.0516 130.662 48.2205L138.807 52.8648C140.106 53.5988 140.184 56.0801 138.866 58.2821C138.249 59.3149 137.456 60.1073 136.657 60.5685C135.832 61.0427 135.001 61.1596 134.371 60.7958L126.115 56.0931C125.966 56.0086 125.771 56.0346 125.576 56.1451C125.381 56.2555 125.186 56.4568 125.037 56.7167L116.833 70.9224C116.203 72.0136 115.378 72.8515 114.553 73.3257C113.754 73.7869 112.962 73.9038 112.338 73.592C111.006 72.9165 111.071 70.3572 112.357 68.1293L120.451 54.112C120.75 53.5923 120.75 53.0337 120.444 52.8713L112.189 48.1686C110.909 47.4346 110.922 45.0247 112.234 42.8227C112.838 41.8094 113.611 41.0495 114.397 40.5948C115.28 40.0881 116.177 39.9712 116.839 40.348L124.985 44.9922C125.134 45.0767 125.335 45.0507 125.53 44.9338C125.725 44.8234 125.92 44.622 126.069 44.3622L134.273 30.1565C134.91 29.0847 135.735 28.2468 136.56 27.7661Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M112.195 48.1752L107.616 45.512C106.336 44.778 106.349 42.3682 107.661 40.1662C108.265 39.1529 109.038 38.3929 109.824 37.9382C110.708 37.4316 111.604 37.3147 112.267 37.6914L116.846 40.3546C116.177 39.9778 115.287 40.0883 114.404 40.6014C113.618 41.0561 112.845 41.8225 112.241 42.8294C110.929 45.0313 110.916 47.4412 112.195 48.1752Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M32.2121 144.724C37.7749 147.937 37.8109 153.146 32.2781 156.359C26.7512 159.572 17.7537 159.572 12.1909 156.359C6.6281 153.146 6.59814 147.937 12.131 144.724C17.6578 141.511 26.6494 141.511 32.2121 144.724Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/>
-<path d="M30.6175 145.521C35.2872 148.219 35.3171 152.589 30.6775 155.286C26.0378 157.984 18.485 157.984 13.8093 155.286C9.13372 152.589 9.11569 148.219 13.7553 145.521C18.395 142.824 25.9419 142.824 30.6175 145.521Z" fill="#EDEDED"/>
-<path d="M33.1714 145.252C33.1654 145.305 33.1654 145.359 33.1594 145.419C33.1534 145.467 33.1475 145.515 33.1415 145.563C33.1355 145.617 33.1235 145.671 33.1175 145.725C33.1115 145.773 33.0994 145.821 33.0875 145.869C33.0755 145.923 33.0635 145.977 33.0455 146.031C33.0335 146.079 33.0155 146.127 33.0035 146.175C32.9855 146.229 32.9676 146.283 32.9496 146.331C32.9316 146.378 32.9137 146.426 32.8957 146.474C32.8717 146.528 32.8477 146.582 32.8237 146.642C32.8058 146.69 32.7818 146.732 32.7578 146.78C32.7338 146.834 32.7038 146.888 32.6739 146.942C32.6499 146.984 32.6259 147.032 32.6019 147.074C32.566 147.14 32.524 147.206 32.482 147.266C32.458 147.308 32.4341 147.344 32.4041 147.386C32.3561 147.457 32.3022 147.529 32.2482 147.595C32.2243 147.625 32.2003 147.655 32.1763 147.691C32.0864 147.805 31.9905 147.913 31.8946 148.021C31.8706 148.051 31.8406 148.075 31.8167 148.105C31.7387 148.189 31.6549 148.273 31.5709 148.351C31.529 148.387 31.493 148.423 31.451 148.459C31.3971 148.506 31.3431 148.548 31.2891 148.596C31.2412 148.638 31.1932 148.68 31.1393 148.722C31.0853 148.77 31.0254 148.812 30.9655 148.86C30.9115 148.902 30.8576 148.944 30.8036 148.98C30.7437 149.022 30.6837 149.07 30.6178 149.112C30.5578 149.154 30.5039 149.19 30.444 149.232C30.378 149.274 30.3121 149.316 30.2461 149.358C30.1622 149.412 30.0783 149.46 29.9944 149.514C29.7546 149.651 29.5088 149.777 29.257 149.903C29.1911 149.933 29.1252 149.969 29.0532 149.999C28.8255 150.107 28.5917 150.203 28.3519 150.299C28.3219 150.311 28.292 150.323 28.256 150.335C27.9983 150.431 27.7345 150.521 27.4707 150.605C27.2849 150.664 27.0931 150.712 26.9073 150.766C26.7634 150.808 26.6196 150.844 26.4757 150.88C26.2779 150.928 26.0741 150.97 25.8703 151.012C25.7204 151.042 25.5765 151.078 25.4267 151.102C25.3667 151.114 25.3008 151.12 25.2408 151.132C24.9891 151.174 24.7373 151.21 24.4795 151.24C24.4076 151.246 24.3297 151.258 24.2577 151.264C24.1139 151.282 23.964 151.288 23.8142 151.3C23.5684 151.318 23.3226 151.336 23.0709 151.348C22.915 151.354 22.7531 151.36 22.5973 151.36C22.3995 151.366 22.1957 151.366 21.9978 151.36C21.83 151.36 21.6622 151.354 21.4943 151.348C21.3085 151.342 21.1227 151.33 20.9368 151.318C20.769 151.306 20.6012 151.294 20.4273 151.276C20.2415 151.258 20.0617 151.24 19.8819 151.216C19.72 151.198 19.5522 151.174 19.3903 151.144C19.1925 151.114 19.0007 151.078 18.8089 151.042C18.659 151.012 18.5031 150.982 18.3533 150.952C18.1255 150.904 17.8977 150.844 17.6699 150.784C17.5261 150.748 17.3762 150.712 17.2323 150.664C17.1544 150.64 17.0765 150.616 17.0046 150.593C16.7768 150.521 16.555 150.443 16.3392 150.365C16.2732 150.341 16.2133 150.317 16.1473 150.293C15.9495 150.215 15.7577 150.131 15.5659 150.047C15.47 150.005 15.3741 149.969 15.2842 149.921C15.0084 149.789 14.7387 149.651 14.4809 149.502C12.317 148.255 11.238 146.612 11.244 144.976L11.232 149.693C11.226 151.33 12.305 152.966 14.4689 154.219C14.7267 154.369 14.9964 154.507 15.2722 154.639C15.3621 154.681 15.464 154.723 15.5539 154.765C15.7157 154.837 15.8776 154.914 16.0455 154.98C16.0754 154.992 16.1054 155.004 16.1354 155.01C16.1953 155.034 16.2612 155.058 16.3272 155.082C16.543 155.16 16.7708 155.238 16.9926 155.31C17.0705 155.334 17.1484 155.358 17.2263 155.382C17.2803 155.4 17.3283 155.418 17.3822 155.43C17.4721 155.454 17.568 155.472 17.6639 155.496C17.8917 155.556 18.1135 155.61 18.3473 155.664C18.4072 155.676 18.4672 155.694 18.5271 155.706C18.6171 155.724 18.707 155.736 18.7969 155.754C18.9887 155.79 19.1865 155.826 19.3783 155.856C19.4562 155.868 19.5342 155.886 19.6121 155.898C19.696 155.91 19.786 155.916 19.8699 155.928C20.0497 155.952 20.2355 155.969 20.4213 155.987C20.5112 155.993 20.5952 156.011 20.6851 156.017C20.769 156.023 20.847 156.023 20.9309 156.029C21.1167 156.041 21.3025 156.053 21.4883 156.059C21.5842 156.065 21.6741 156.071 21.7701 156.071C21.842 156.071 21.9199 156.071 21.9918 156.071C22.1897 156.071 22.3935 156.071 22.5913 156.071C22.6932 156.071 22.7891 156.071 22.891 156.071C22.9509 156.071 23.0109 156.059 23.0649 156.059C23.3106 156.047 23.5624 156.029 23.8082 156.011C23.9101 156.005 24.006 155.999 24.1079 155.993C24.1558 155.987 24.2038 155.981 24.2517 155.975C24.3237 155.969 24.4016 155.957 24.4735 155.952C24.7313 155.922 24.9831 155.886 25.2348 155.844C25.2948 155.832 25.3607 155.826 25.4207 155.814C25.4507 155.808 25.4806 155.808 25.5105 155.802C25.6304 155.778 25.7444 155.748 25.8643 155.724C26.0681 155.682 26.2719 155.64 26.4697 155.592C26.6136 155.556 26.7574 155.514 26.9013 155.478C27.0931 155.424 27.2789 155.376 27.4647 155.316C27.5067 155.304 27.5487 155.292 27.5847 155.28C27.8124 155.208 28.0342 155.13 28.25 155.046C28.28 155.034 28.31 155.022 28.346 155.01C28.5857 154.914 28.8195 154.819 29.0472 154.711C29.1132 154.681 29.1851 154.651 29.251 154.615C29.5028 154.495 29.7546 154.363 29.9884 154.225C30.0364 154.201 30.0783 154.171 30.1203 154.147C30.1622 154.123 30.1982 154.099 30.2401 154.069C30.3061 154.027 30.372 153.985 30.438 153.943C30.4979 153.901 30.5578 153.865 30.6118 153.823C30.6717 153.782 30.7377 153.74 30.7976 153.692C30.8516 153.65 30.9055 153.608 30.9595 153.566C31.0194 153.524 31.0733 153.476 31.1333 153.434C31.1872 153.392 31.2352 153.35 31.2831 153.308C31.3371 153.26 31.391 153.218 31.439 153.17C31.463 153.152 31.481 153.134 31.5049 153.116C31.5229 153.098 31.5409 153.08 31.5589 153.062C31.6429 152.978 31.7267 152.9 31.8046 152.816C31.8286 152.786 31.8586 152.762 31.8826 152.733C31.9845 152.625 32.0805 152.511 32.1644 152.403C32.1704 152.397 32.1703 152.391 32.1763 152.391C32.1943 152.367 32.2123 152.337 32.2363 152.313C32.2903 152.241 32.3442 152.175 32.3922 152.103C32.4161 152.061 32.4461 152.025 32.4701 151.983C32.5121 151.917 32.554 151.851 32.5899 151.791C32.6019 151.773 32.614 151.755 32.6199 151.737C32.6379 151.713 32.6439 151.683 32.6619 151.66C32.6919 151.606 32.7218 151.552 32.7458 151.498C32.7698 151.45 32.7878 151.408 32.8117 151.36C32.8357 151.306 32.8597 151.252 32.8837 151.192C32.8957 151.168 32.9077 151.144 32.9137 151.12C32.9197 151.096 32.9256 151.072 32.9376 151.054C32.9556 151 32.9736 150.946 32.9916 150.898C33.0036 150.85 33.0215 150.802 33.0335 150.754C33.0455 150.7 33.0635 150.646 33.0755 150.593C33.0814 150.563 33.0935 150.533 33.0995 150.509C33.1055 150.491 33.1055 150.467 33.1115 150.449C33.1234 150.395 33.1295 150.341 33.1355 150.287C33.1415 150.239 33.1474 150.191 33.1534 150.143C33.1594 150.089 33.1594 150.035 33.1654 149.975C33.1654 149.945 33.1714 149.909 33.1714 149.879C33.1714 149.849 33.1714 149.813 33.1714 149.783L33.1834 145.066C33.1834 145.12 33.1774 145.186 33.1714 145.252Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M29.9404 140.528C34.2384 143.01 34.2624 147.032 29.9944 149.514C25.7264 151.995 18.7789 151.995 14.4809 149.514C10.1829 147.032 10.1649 143.01 14.4329 140.528C18.7009 138.046 25.6424 138.046 29.9404 140.528Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<line x1="22.2247" y1="141.707" x2="22.2247" y2="147.293" stroke="#DA3635" stroke-width="2" stroke-linecap="round"/>
-<line x1="25.7753" y1="144.707" x2="18.2247" y2="144.707" stroke="#DA3635" stroke-width="2" stroke-linecap="round"/>
-<path d="M180.108 74.1322C183.506 76.0827 183.52 79.2463 180.149 81.2038C176.779 83.1543 171.29 83.1543 167.892 81.2038C164.493 79.2532 164.48 76.0896 167.857 74.1322C171.235 72.1747 176.716 72.1816 180.108 74.1322Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M160.944 63.4988C160.96 63.7129 160.929 64.2023 160.878 64.396C160.649 64.396 160.618 64.2838 160.582 64.085C160.241 64.6101 159.767 65.9458 159.405 64.8191C159.191 64.1513 159.471 63.3 160.073 62.8921" fill="white"/>
-<path d="M160.944 63.4988C160.96 63.7129 160.929 64.2023 160.878 64.396C160.649 64.396 160.618 64.2838 160.582 64.085C160.241 64.6101 159.767 65.9458 159.405 64.8191C159.191 64.1513 159.471 63.3 160.073 62.8921" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M160.944 63.4988C160.96 63.7129 160.929 64.2023 160.878 64.396C160.649 64.396 160.618 64.2838 160.582 64.085C160.241 64.6101 159.767 65.9458 159.405 64.8191C159.191 64.1513 159.471 63.3 160.073 62.8921" fill="white"/>
-<path d="M160.944 63.4988C160.96 63.7129 160.929 64.2023 160.878 64.396C160.649 64.396 160.618 64.2838 160.582 64.085C160.241 64.6101 159.767 65.9458 159.405 64.8191C159.191 64.1513 159.471 63.3 160.073 62.8921" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M171.772 65.3951C171.935 65.8845 172.766 66.5218 172.068 66.8837C171.349 67.261 170.844 66.0833 170.763 65.4818" fill="white"/>
-<path d="M171.772 65.3951C171.935 65.8845 172.766 66.5218 172.068 66.8837C171.349 67.261 170.844 66.0833 170.763 65.4818" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M171.772 65.3951C171.935 65.8845 172.766 66.5218 172.068 66.8837C171.349 67.261 170.844 66.0833 170.763 65.4818" fill="white"/>
-<path d="M171.772 65.3951C171.935 65.8845 172.766 66.5218 172.068 66.8837C171.349 67.261 170.844 66.0833 170.763 65.4818" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M171.201 74.2299C171.171 74.5256 171.92 75.2444 172.053 75.6319C172.231 76.1723 172.038 76.6107 171.757 77.0695C171.252 77.8852 171.268 77.3957 171.151 76.7585C171.054 76.2028 170.676 75.744 170.483 75.2393" fill="white"/>
-<path d="M171.201 74.2299C171.171 74.5256 171.92 75.2444 172.053 75.6319C172.231 76.1723 172.038 76.6107 171.757 77.0695C171.252 77.8852 171.268 77.3957 171.151 76.7585C171.054 76.2028 170.676 75.744 170.483 75.2393" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M171.201 74.2299C171.171 74.5256 171.92 75.2444 172.053 75.6319C172.231 76.1723 172.038 76.6107 171.757 77.0695C171.252 77.8852 171.268 77.3957 171.151 76.7585C171.054 76.2028 170.676 75.744 170.483 75.2393" fill="white"/>
-<path d="M171.201 74.2299C171.171 74.5256 171.92 75.2444 172.053 75.6319C172.231 76.1723 172.038 76.6107 171.757 77.0695C171.252 77.8852 171.268 77.3957 171.151 76.7585C171.054 76.2028 170.676 75.744 170.483 75.2393" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M165.176 79.649C166.007 80.6125 162.53 82.8811 163.575 80.6788L165.176 79.649Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M171.986 75.4687C172.608 75.5656 172.527 76.3812 172.394 76.8553C172.297 77.151 171.512 78.4867 171.252 78.3083C170.681 77.8851 171.446 77.2479 171.594 77.0185C171.808 76.6922 172.231 76.0397 172.068 75.6318" fill="white"/>
-<path d="M171.986 75.4687C172.608 75.5656 172.527 76.3812 172.394 76.8553C172.297 77.151 171.512 78.4867 171.252 78.3083C170.681 77.8851 171.446 77.2479 171.594 77.0185C171.808 76.6922 172.231 76.0397 172.068 75.6318" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M171.986 75.4687C172.608 75.5656 172.527 76.3812 172.394 76.8553C172.297 77.151 171.512 78.4867 171.252 78.3083C170.681 77.8851 171.446 77.2479 171.594 77.0185C171.808 76.6922 172.231 76.0397 172.068 75.6318" fill="white"/>
-<path d="M171.986 75.4687C172.608 75.5656 172.527 76.3812 172.394 76.8553C172.297 77.151 171.512 78.4867 171.252 78.3083C170.681 77.8851 171.446 77.2479 171.594 77.0185C171.808 76.6922 172.231 76.0397 172.068 75.6318" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M165.746 57.7993C165.894 57.9318 168.035 55.6275 167.969 55.5766C167.821 55.4287 167.444 55.2809 167.398 55.1025C167.317 54.7252 167.102 54.1236 167.25 53.7617C167.791 53.9758 168.081 53.4201 168.035 52.895C167.969 52.2425 166.893 51.6715 167.006 52.5535C166.22 52.7319 166.338 52.0131 165.517 51.4574C164.569 51.7531 164.487 51.3912 163.998 51.1006C163.59 52.161 164.079 55.1483 165.369 54.5774C164.895 54.5468 165.384 54.5927 165.435 54.873C165.369 54.8883 164.946 55.9844 164.931 55.9844" fill="white"/>
-<path d="M165.746 57.7993C165.894 57.9318 168.035 55.6275 167.969 55.5766C167.821 55.4287 167.444 55.2809 167.398 55.1025C167.317 54.7252 167.102 54.1236 167.25 53.7617C167.791 53.9758 168.081 53.4201 168.035 52.895C167.969 52.2425 166.893 51.6715 167.006 52.5535C166.22 52.7319 166.338 52.0131 165.517 51.4574C164.569 51.7531 164.487 51.3912 163.998 51.1006C163.59 52.161 164.079 55.1483 165.369 54.5774C164.895 54.5468 165.384 54.5927 165.435 54.873C165.369 54.8883 164.946 55.9844 164.931 55.9844" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M165.746 57.7993C165.894 57.9318 168.035 55.6275 167.969 55.5766C167.821 55.4287 167.444 55.2809 167.398 55.1025C167.317 54.7252 167.102 54.1236 167.25 53.7617C167.791 53.9758 168.081 53.4201 168.035 52.895C167.969 52.2425 166.893 51.6715 167.006 52.5535C166.22 52.7319 166.338 52.0131 165.517 51.4574C164.569 51.7531 164.487 51.3912 163.998 51.1006C163.59 52.161 164.079 55.1483 165.369 54.5774C164.895 54.5468 165.384 54.5927 165.435 54.873C165.369 54.8883 164.946 55.9844 164.931 55.9844" fill="white"/>
-<path d="M165.746 57.7993C165.894 57.9318 168.035 55.6275 167.969 55.5766C167.821 55.4287 167.444 55.2809 167.398 55.1025C167.317 54.7252 167.102 54.1236 167.25 53.7617C167.791 53.9758 168.081 53.4201 168.035 52.895C167.969 52.2425 166.893 51.6715 167.006 52.5535C166.22 52.7319 166.338 52.0131 165.517 51.4574C164.569 51.7531 164.487 51.3912 163.998 51.1006C163.59 52.161 164.079 55.1483 165.369 54.5774C164.895 54.5468 165.384 54.5927 165.435 54.873C165.369 54.8883 164.946 55.9844 164.931 55.9844" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M164.228 50.7131C164.671 50.0605 164.962 50.0452 165.635 49.8617C166.257 49.6833 166.924 49.3061 167.613 49.6986C168.28 50.0758 168.316 51.1362 168.627 51.7887C168.969 52.5738 169.657 53.2111 169.835 54.042C170.049 54.9546 169.591 55.2197 168.775 55.4644C168.122 55.6581 167.485 55.5459 167.159 54.924C167.047 54.7099 166.945 54.1899 167.026 53.9452C167.159 53.5679 167.664 53.6036 167.857 53.2926C168.071 52.9664 167.745 52.2323 167.317 52.2628C167.138 52.2781 167.057 52.6554 166.746 52.6707C166.567 52.686 166.042 52.4107 165.93 52.2476C165.798 52.0844 165.833 51.6256 165.635 51.5797C165.42 51.5135 165.145 51.9723 164.946 52.0385C164.161 52.2832 164.131 51.6817 164.013 51.1056" fill="white"/>
-<path d="M164.228 50.7131C164.671 50.0605 164.962 50.0452 165.635 49.8617C166.257 49.6833 166.924 49.3061 167.613 49.6986C168.28 50.0758 168.316 51.1362 168.627 51.7887C168.969 52.5738 169.657 53.2111 169.835 54.042C170.049 54.9546 169.591 55.2197 168.775 55.4644C168.122 55.6581 167.485 55.5459 167.159 54.924C167.047 54.7099 166.945 54.1899 167.026 53.9452C167.159 53.5679 167.664 53.6036 167.857 53.2926C168.071 52.9664 167.745 52.2323 167.317 52.2628C167.138 52.2781 167.057 52.6554 166.746 52.6707C166.567 52.686 166.042 52.4107 165.93 52.2476C165.798 52.0844 165.833 51.6256 165.635 51.5797C165.42 51.5135 165.145 51.9723 164.946 52.0385C164.161 52.2832 164.131 51.6817 164.013 51.1056" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M164.228 50.7131C164.671 50.0605 164.962 50.0452 165.635 49.8617C166.257 49.6833 166.924 49.3061 167.613 49.6986C168.28 50.0758 168.316 51.1362 168.627 51.7887C168.969 52.5738 169.657 53.2111 169.835 54.042C170.049 54.9546 169.591 55.2197 168.775 55.4644C168.122 55.6581 167.485 55.5459 167.159 54.924C167.047 54.7099 166.945 54.1899 167.026 53.9452C167.159 53.5679 167.664 53.6036 167.857 53.2926C168.071 52.9664 167.745 52.2323 167.317 52.2628C167.138 52.2781 167.057 52.6554 166.746 52.6707C166.567 52.686 166.042 52.4107 165.93 52.2476C165.798 52.0844 165.833 51.6256 165.635 51.5797C165.42 51.5135 165.145 51.9723 164.946 52.0385C164.161 52.2832 164.131 51.6817 164.013 51.1056" fill="#DA3635"/>
-<path d="M164.228 50.7131C164.671 50.0605 164.962 50.0452 165.635 49.8617C166.257 49.6833 166.924 49.3061 167.613 49.6986C168.28 50.0758 168.316 51.1362 168.627 51.7887C168.969 52.5738 169.657 53.2111 169.835 54.042C170.049 54.9546 169.591 55.2197 168.775 55.4644C168.122 55.6581 167.485 55.5459 167.159 54.924C167.047 54.7099 166.945 54.1899 167.026 53.9452C167.159 53.5679 167.664 53.6036 167.857 53.2926C168.071 52.9664 167.745 52.2323 167.317 52.2628C167.138 52.2781 167.057 52.6554 166.746 52.6707C166.567 52.686 166.042 52.4107 165.93 52.2476C165.798 52.0844 165.833 51.6256 165.635 51.5797C165.42 51.5135 165.145 51.9723 164.946 52.0385C164.161 52.2832 164.131 51.6817 164.013 51.1056" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M167.969 55.5613C167.612 56.0507 166.71 56.9836 166.042 57.0142C165.211 57.0652 165.043 55.3981 165.456 54.8578C164.686 54.2868 164.426 55.2809 164.233 55.8518C163.957 56.6828 163.626 57.3863 163.106 58.0898C162.55 58.8749 161.964 59.6396 161.536 60.5063C161.097 61.4188 160.521 62.1376 159.966 62.9533C160.44 63.1011 160.588 63.3764 160.914 63.6874C161.566 63.2133 162.107 62.3007 162.611 61.6635C163.116 60.9957 163.641 60.389 163.952 59.6039C164.263 60.2259 164.064 61.1894 164.64 61.5972C165.099 61.9082 165.945 61.8572 166.486 61.8572C167.072 61.8572 167.893 62.0713 168.219 61.5462C168.678 60.8121 168.168 59.6192 168.515 58.8545C169.448 59.558 169.738 62.0051 170.003 63.1011C170.151 63.7537 170.182 65.7622 171.064 65.8795C171.242 65.8948 171.834 65.6501 171.961 65.5379C172.257 65.2626 172.221 65.2932 172.124 64.8548C172.012 64.3501 171.665 63.9066 171.538 63.3866C171.405 62.8462 171.324 62.2906 171.263 61.74C171.099 60.2871 170.529 59.242 169.973 57.9012C169.662 57.1314 169.565 56.3973 168.795 55.9589C168.525 55.7601 168.326 55.597 167.969 55.5613Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M165.058 77.2989C165.303 77.4773 165.221 79.1749 165.17 79.5674C165.104 80.1741 164.319 81.2141 163.6 81.1529C163.407 80.6635 163.748 80.0773 163.83 79.5828C163.911 79.0424 163.896 78.4867 163.83 77.9514" fill="white"/>
-<path d="M165.058 77.2989C165.303 77.4773 165.221 79.1749 165.17 79.5674C165.104 80.1741 164.319 81.2141 163.6 81.1529C163.407 80.6635 163.748 80.0773 163.83 79.5828C163.911 79.0424 163.896 78.4867 163.83 77.9514" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M165.058 77.2989C165.303 77.4773 165.221 79.1749 165.17 79.5674C165.104 80.1741 164.319 81.2141 163.6 81.1529C163.407 80.6635 163.748 80.0773 163.83 79.5828C163.911 79.0424 163.896 78.4867 163.83 77.9514" fill="white"/>
-<path d="M165.058 77.2989C165.303 77.4773 165.221 79.1749 165.17 79.5674C165.104 80.1741 164.319 81.2141 163.6 81.1529C163.407 80.6635 163.748 80.0773 163.83 79.5828C163.911 79.0424 163.896 78.4867 163.83 77.9514" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M168.245 61.4442C169.29 62.5198 169.208 64.401 169.014 65.757C168.821 67.0978 167.725 68.8923 168.637 70.0495C169.193 70.7683 169.601 71.584 170.172 72.2518C170.63 72.7922 171.329 73.3784 171.283 74.1788C171.268 74.5051 171.003 75.0098 170.697 75.1729C170.207 75.4329 170.029 75.0251 169.667 74.6325C168.979 73.8627 168.489 73.0624 167.643 72.4608C166.68 71.7777 166.435 71.1863 166.221 70.075C165.94 68.7699 165.879 67.4598 165.716 66.17C165.42 67.6586 165.685 69.1574 165.42 70.6307C165.273 71.4973 165.094 72.313 165.16 73.2102C165.242 74.2859 165.487 75.3513 165.42 76.4423C165.369 77.2121 165.273 77.6199 164.523 77.8289C164.309 77.8799 163.917 78.0227 163.738 77.9258C163.295 77.6964 163.381 75.8662 163.346 75.4431C163.131 72.3742 162.367 69.3052 162.576 66.2006C162.642 65.3492 162.739 64.2226 162.984 63.4222C163.213 62.6524 163.636 61.4799 164.289 60.9701C164.646 61.8826 165.349 61.8367 166.313 61.8214C166.94 61.801 167.786 61.9132 168.245 61.4442Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M182.569 50.6009C183.273 50.8813 182.977 52.9358 183.044 53.7056C183.14 54.8832 181.657 55.1585 180.546 54.455C179.811 53.9809 179.485 52.0029 179.419 51.126C179.322 49.5916 181.723 49.4794 182.243 50.7488" fill="white"/>
-<path d="M182.569 50.6009C183.273 50.8813 182.977 52.9358 183.044 53.7056C183.14 54.8832 181.657 55.1585 180.546 54.455C179.811 53.9809 179.485 52.0029 179.419 51.126C179.322 49.5916 181.723 49.4794 182.243 50.7488" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M182.569 50.6009C183.273 50.8813 182.977 52.9358 183.044 53.7056C183.14 54.8832 181.657 55.1585 180.546 54.455C179.811 53.9809 179.485 52.0029 179.419 51.126C179.322 49.5916 181.723 49.4794 182.243 50.7488" fill="white"/>
-<path d="M182.569 50.6009C183.273 50.8813 182.977 52.9358 183.044 53.7056C183.14 54.8832 181.657 55.1585 180.546 54.455C179.811 53.9809 179.485 52.0029 179.419 51.126C179.322 49.5916 181.723 49.4794 182.243 50.7488" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M182.998 53.8788C182.295 55.5255 180.383 53.9451 179.975 54.5824C179.679 55.0412 179.679 56.4278 179.618 56.9835C179.506 57.8807 179.537 58.8289 179.537 59.7415C179.537 61.0669 179.047 63.8402 180.633 64.4775C182.641 65.2931 183.508 62.112 183.457 60.7203C183.406 59.6242 183.227 58.5486 183.243 57.4372C183.258 56.4074 183.829 54.5161 182.916 53.7463" fill="white"/>
-<path d="M182.998 53.8788C182.295 55.5255 180.383 53.9451 179.975 54.5824C179.679 55.0412 179.679 56.4278 179.618 56.9835C179.506 57.8807 179.537 58.8289 179.537 59.7415C179.537 61.0669 179.047 63.8402 180.633 64.4775C182.641 65.2931 183.508 62.112 183.457 60.7203C183.406 59.6242 183.227 58.5486 183.243 57.4372C183.258 56.4074 183.829 54.5161 182.916 53.7463" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M182.998 53.8788C182.295 55.5255 180.383 53.9451 179.975 54.5824C179.679 55.0412 179.679 56.4278 179.618 56.9835C179.506 57.8807 179.537 58.8289 179.537 59.7415C179.537 61.0669 179.047 63.8402 180.633 64.4775C182.641 65.2931 183.508 62.112 183.457 60.7203C183.406 59.6242 183.227 58.5486 183.243 57.4372C183.258 56.4074 183.829 54.5161 182.916 53.7463" fill="white"/>
-<path d="M182.998 53.8788C182.295 55.5255 180.383 53.9451 179.975 54.5824C179.679 55.0412 179.679 56.4278 179.618 56.9835C179.506 57.8807 179.537 58.8289 179.537 59.7415C179.537 61.0669 179.047 63.8402 180.633 64.4775C182.641 65.2931 183.508 62.112 183.457 60.7203C183.406 59.6242 183.227 58.5486 183.243 57.4372C183.258 56.4074 183.829 54.5161 182.916 53.7463" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M188.305 63.6466C188.417 63.9066 188.6 64.4623 188.743 64.7223C187.617 65.0639 186.913 65.5074 187.01 63.8556" fill="white"/>
-<path d="M188.305 63.6466C188.417 63.9066 188.6 64.4623 188.743 64.7223C187.617 65.0639 186.913 65.5074 187.01 63.8556" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M188.305 63.6466C188.417 63.9066 188.6 64.4623 188.743 64.7223C187.617 65.0639 186.913 65.5074 187.01 63.8556" fill="white"/>
-<path d="M188.305 63.6466C188.417 63.9066 188.6 64.4623 188.743 64.7223C187.617 65.0639 186.913 65.5074 187.01 63.8556" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M177.196 63.5344C176.758 63.9422 176.967 65.4308 175.973 65.0842C174.943 64.7069 175.81 63.9575 175.958 63.1877C176.365 63.3356 176.885 63.305 177.196 63.5344Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M176.508 65.0484C176.901 65.5684 176.671 66.0272 176.294 66.3076C176.309 66.2923 175.116 66.5676 175.004 66.5013C174.025 66.0119 175.361 64.9822 175.545 64.4622" fill="white"/>
-<path d="M176.508 65.0484C176.901 65.5684 176.671 66.0272 176.294 66.3076C176.309 66.2923 175.116 66.5676 175.004 66.5013C174.025 66.0119 175.361 64.9822 175.545 64.4622" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M176.508 65.0484C176.901 65.5684 176.671 66.0272 176.294 66.3076C176.309 66.2923 175.116 66.5676 175.004 66.5013C174.025 66.0119 175.361 64.9822 175.545 64.4622" fill="white"/>
-<path d="M176.508 65.0484C176.901 65.5684 176.671 66.0272 176.294 66.3076C176.309 66.2923 175.116 66.5676 175.004 66.5013C174.025 66.0119 175.361 64.9822 175.545 64.4622" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M187.535 65.0485C187.484 65.4258 187.438 65.9967 187.372 66.3383C187.438 66.2873 187.586 66.1752 187.668 66.1242C187.29 67.9033 189.839 65.9763 188.565 64.8191" fill="white"/>
-<path d="M187.535 65.0485C187.484 65.4258 187.438 65.9967 187.372 66.3383C187.438 66.2873 187.586 66.1752 187.668 66.1242C187.29 67.9033 189.839 65.9763 188.565 64.8191" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M187.535 65.0485C187.484 65.4258 187.438 65.9967 187.372 66.3383C187.438 66.2873 187.586 66.1752 187.668 66.1242C187.29 67.9033 189.839 65.9763 188.565 64.8191" fill="white"/>
-<path d="M187.535 65.0485C187.484 65.4258 187.438 65.9967 187.372 66.3383C187.438 66.2873 187.586 66.1752 187.668 66.1242C187.29 67.9033 189.839 65.9763 188.565 64.8191" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M185.282 74.5868C185.705 76.3659 183.895 76.6259 184.221 74.7193C184.532 74.7346 184.859 74.5562 185.073 74.4899" fill="white"/>
-<path d="M185.282 74.5868C185.705 76.3659 183.895 76.6259 184.221 74.7193C184.532 74.7346 184.859 74.5562 185.073 74.4899" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M185.282 74.5868C185.705 76.3659 183.895 76.6259 184.221 74.7193C184.532 74.7346 184.859 74.5562 185.073 74.4899" fill="white"/>
-<path d="M185.282 74.5868C185.705 76.3659 183.895 76.6259 184.221 74.7193C184.532 74.7346 184.859 74.5562 185.073 74.4899" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M179.649 77.0847C179.552 77.151 179.434 77.1815 179.353 77.2784C180.056 77.4721 180.087 78.1603 180.413 78.716C180.938 77.8647 180.413 77.1 179.434 77.1" fill="white"/>
-<path d="M179.649 77.0847C179.552 77.151 179.434 77.1815 179.353 77.2784C180.056 77.4721 180.087 78.1603 180.413 78.716C180.938 77.8647 180.413 77.1 179.434 77.1" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M179.649 77.0847C179.552 77.151 179.434 77.1815 179.353 77.2784C180.056 77.4721 180.087 78.1603 180.413 78.716C180.938 77.8647 180.413 77.1 179.434 77.1" fill="white"/>
-<path d="M179.649 77.0847C179.552 77.151 179.434 77.1815 179.353 77.2784C180.056 77.4721 180.087 78.1603 180.413 78.716C180.938 77.8647 180.413 77.1 179.434 77.1" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M180.286 78.6039C179.944 77.2172 178.634 76.5953 177.263 76.4474C177.278 77.5435 179.516 80.2709 180.515 78.716" fill="white"/>
-<path d="M180.286 78.6039C179.944 77.2172 178.634 76.5953 177.263 76.4474C177.278 77.5435 179.516 80.2709 180.515 78.716" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M180.286 78.6039C179.944 77.2172 178.634 76.5953 177.263 76.4474C177.278 77.5435 179.516 80.2709 180.515 78.716" fill="white"/>
-<path d="M180.286 78.6039C179.944 77.2172 178.634 76.5953 177.263 76.4474C177.278 77.5435 179.516 80.2709 180.515 78.716" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M184.089 75.5655C184.385 76.0243 184.94 75.9886 185.267 75.5808C185.771 76.8706 183.977 76.8706 183.059 76.7584C180.969 76.529 183.712 76.1212 183.875 75.3718C184.186 75.6012 184.66 75.749 185.083 75.6827" fill="white"/>
-<path d="M184.089 75.5655C184.385 76.0243 184.94 75.9886 185.267 75.5808C185.771 76.8706 183.977 76.8706 183.059 76.7584C180.969 76.529 183.712 76.1212 183.875 75.3718C184.186 75.6012 184.66 75.749 185.083 75.6827" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M184.089 75.5655C184.385 76.0243 184.94 75.9886 185.267 75.5808C185.771 76.8706 183.977 76.8706 183.059 76.7584C180.969 76.529 183.712 76.1212 183.875 75.3718C184.186 75.6012 184.66 75.749 185.083 75.6827" fill="white"/>
-<path d="M184.089 75.5655C184.385 76.0243 184.94 75.9886 185.267 75.5808C185.771 76.8706 183.977 76.8706 183.059 76.7584C180.969 76.529 183.712 76.1212 183.875 75.3718C184.186 75.6012 184.66 75.749 185.083 75.6827" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M181.82 51.6104C181.851 51.0241 182.702 50.9578 182.799 51.4982C182.85 51.6919 181.948 52.8848 181.8 52.9205C181.096 53.0837 180.658 51.8907 179.888 52.0386C178.955 52.2323 179.2 53.3794 179.807 53.8331C181.147 54.8781 181.897 53.3284 182.631 52.4617C182.957 52.0845 183.171 52.2986 183.334 51.6919C183.431 51.3351 183.268 50.9221 183.202 50.5959C183.039 49.6986 182.875 49.0257 181.943 48.7657C181.142 48.5363 180.031 48.7147 179.409 49.2041C178.512 49.9077 178.869 51.4064 179.705 50.3155C180.148 50.9527 181.127 51.3606 181.892 51.0496" fill="white"/>
-<path d="M181.82 51.6104C181.851 51.0241 182.702 50.9578 182.799 51.4982C182.85 51.6919 181.948 52.8848 181.8 52.9205C181.096 53.0837 180.658 51.8907 179.888 52.0386C178.955 52.2323 179.2 53.3794 179.807 53.8331C181.147 54.8781 181.897 53.3284 182.631 52.4617C182.957 52.0845 183.171 52.2986 183.334 51.6919C183.431 51.3351 183.268 50.9221 183.202 50.5959C183.039 49.6986 182.875 49.0257 181.943 48.7657C181.142 48.5363 180.031 48.7147 179.409 49.2041C178.512 49.9077 178.869 51.4064 179.705 50.3155C180.148 50.9527 181.127 51.3606 181.892 51.0496" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M181.82 51.6104C181.851 51.0241 182.702 50.9578 182.799 51.4982C182.85 51.6919 181.948 52.8848 181.8 52.9205C181.096 53.0837 180.658 51.8907 179.888 52.0386C178.955 52.2323 179.2 53.3794 179.807 53.8331C181.147 54.8781 181.897 53.3284 182.631 52.4617C182.957 52.0845 183.171 52.2986 183.334 51.6919C183.431 51.3351 183.268 50.9221 183.202 50.5959C183.039 49.6986 182.875 49.0257 181.943 48.7657C181.142 48.5363 180.031 48.7147 179.409 49.2041C178.512 49.9077 178.869 51.4064 179.705 50.3155C180.148 50.9527 181.127 51.3606 181.892 51.0496" fill="#DA3635"/>
-<path d="M181.82 51.6104C181.851 51.0241 182.702 50.9578 182.799 51.4982C182.85 51.6919 181.948 52.8848 181.8 52.9205C181.096 53.0837 180.658 51.8907 179.888 52.0386C178.955 52.2323 179.2 53.3794 179.807 53.8331C181.147 54.8781 181.897 53.3284 182.631 52.4617C182.957 52.0845 183.171 52.2986 183.334 51.6919C183.431 51.3351 183.268 50.9221 183.202 50.5959C183.039 49.6986 182.875 49.0257 181.943 48.7657C181.142 48.5363 180.031 48.7147 179.409 49.2041C178.512 49.9077 178.869 51.4064 179.705 50.3155C180.148 50.9527 181.127 51.3606 181.892 51.0496" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M179.959 54.2052C180.352 55.1534 179.893 56.9479 180.01 58.0592C180.143 59.4306 180.174 60.8019 180.174 62.209C180.174 63.1062 180.107 63.305 180.78 63.7944C181.565 64.3807 182.167 64.4469 182.447 63.6313C182.906 62.2752 182.269 60.1851 182.233 58.7831C182.203 57.4933 183.803 54.6844 183.166 53.6903C184.915 54.3428 185.501 55.9436 186.153 57.5596C186.775 59.1451 187.754 60.8427 188.162 62.4893C188.295 63.0144 188.519 63.616 188.096 63.9575C187.555 64.4164 186.857 63.9422 186.628 63.5803C186.332 63.1062 186.317 61.8164 186.138 61.2454C185.909 60.4298 185.618 59.6957 185.159 59.0227C184.864 60.0015 185.063 61.1945 185.19 62.1886C185.272 62.8564 185.746 64.5234 185.501 65.1301C185.323 65.5889 184.425 66.1904 184.114 66.8634C183.757 67.5975 183.085 68.4947 182.891 69.2951C182.432 71.1558 184.639 72.3793 185.18 73.9495C185.491 74.8824 184.787 75.1934 184.023 74.602C183.253 74.0158 183.008 72.675 182.06 72.3793C181.112 73.8017 181.127 75.953 180.571 77.5231C177.63 77.1663 180.994 71.4821 180.668 70.2076C180.49 69.4735 179.689 69.0657 179.526 68.2653C179.394 67.5618 179.674 66.8124 179.771 66.1242C179.949 64.9159 179.577 65.1301 179.185 64.294C178.761 63.3968 178.843 61.9286 178.874 60.9651C178.614 61.3423 176.702 65.3085 175.947 63.4987C175.687 62.8921 177.645 60.1035 177.829 59.4816C178.303 57.7483 177.502 53.9605 180.067 54.3224" fill="white"/>
-<path d="M179.959 54.2052C180.352 55.1534 179.893 56.9479 180.01 58.0592C180.143 59.4306 180.174 60.8019 180.174 62.209C180.174 63.1062 180.107 63.305 180.78 63.7944C181.565 64.3807 182.167 64.4469 182.447 63.6313C182.906 62.2752 182.269 60.1851 182.233 58.7831C182.203 57.4933 183.803 54.6844 183.166 53.6903C184.915 54.3428 185.501 55.9436 186.153 57.5596C186.775 59.1451 187.754 60.8427 188.162 62.4893C188.295 63.0144 188.519 63.616 188.096 63.9575C187.555 64.4164 186.857 63.9422 186.628 63.5803C186.332 63.1062 186.317 61.8164 186.138 61.2454C185.909 60.4298 185.618 59.6957 185.159 59.0227C184.864 60.0015 185.063 61.1945 185.19 62.1886C185.272 62.8564 185.746 64.5234 185.501 65.1301C185.323 65.5889 184.425 66.1904 184.114 66.8634C183.757 67.5975 183.085 68.4947 182.891 69.2951C182.432 71.1558 184.639 72.3793 185.18 73.9495C185.491 74.8824 184.787 75.1934 184.023 74.602C183.253 74.0158 183.008 72.675 182.06 72.3793C181.112 73.8017 181.127 75.953 180.571 77.5231C177.63 77.1663 180.994 71.4821 180.668 70.2076C180.49 69.4735 179.689 69.0657 179.526 68.2653C179.394 67.5618 179.674 66.8124 179.771 66.1242C179.949 64.9159 179.577 65.1301 179.185 64.294C178.761 63.3968 178.843 61.9286 178.874 60.9651C178.614 61.3423 176.702 65.3085 175.947 63.4987C175.687 62.8921 177.645 60.1035 177.829 59.4816C178.303 57.7483 177.502 53.9605 180.067 54.3224" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M179.959 54.2052C180.352 55.1534 179.893 56.9479 180.01 58.0592C180.143 59.4306 180.174 60.8019 180.174 62.209C180.174 63.1062 180.107 63.305 180.78 63.7944C181.565 64.3807 182.167 64.4469 182.447 63.6313C182.906 62.2752 182.269 60.1851 182.233 58.7831C182.203 57.4933 183.803 54.6844 183.166 53.6903C184.915 54.3428 185.501 55.9436 186.153 57.5596C186.775 59.1451 187.754 60.8427 188.162 62.4893C188.295 63.0144 188.519 63.616 188.096 63.9575C187.555 64.4164 186.857 63.9422 186.628 63.5803C186.332 63.1062 186.317 61.8164 186.138 61.2454C185.909 60.4298 185.618 59.6957 185.159 59.0227C184.864 60.0015 185.063 61.1945 185.19 62.1886C185.272 62.8564 185.746 64.5234 185.501 65.1301C185.323 65.5889 184.425 66.1904 184.114 66.8634C183.757 67.5975 183.085 68.4947 182.891 69.2951C182.432 71.1558 184.639 72.3793 185.18 73.9495C185.491 74.8824 184.787 75.1934 184.023 74.602C183.253 74.0158 183.008 72.675 182.06 72.3793C181.112 73.8017 181.127 75.953 180.571 77.5231C177.63 77.1663 180.994 71.4821 180.668 70.2076C180.49 69.4735 179.689 69.0657 179.526 68.2653C179.394 67.5618 179.674 66.8124 179.771 66.1242C179.949 64.9159 179.577 65.1301 179.185 64.294C178.761 63.3968 178.843 61.9286 178.874 60.9651C178.614 61.3423 176.702 65.3085 175.947 63.4987C175.687 62.8921 177.645 60.1035 177.829 59.4816C178.303 57.7483 177.502 53.9605 180.067 54.3224" fill="white"/>
-<path d="M179.959 54.2052C180.352 55.1534 179.893 56.9479 180.01 58.0592C180.143 59.4306 180.174 60.8019 180.174 62.209C180.174 63.1062 180.107 63.305 180.78 63.7944C181.565 64.3807 182.167 64.4469 182.447 63.6313C182.906 62.2752 182.269 60.1851 182.233 58.7831C182.203 57.4933 183.803 54.6844 183.166 53.6903C184.915 54.3428 185.501 55.9436 186.153 57.5596C186.775 59.1451 187.754 60.8427 188.162 62.4893C188.295 63.0144 188.519 63.616 188.096 63.9575C187.555 64.4164 186.857 63.9422 186.628 63.5803C186.332 63.1062 186.317 61.8164 186.138 61.2454C185.909 60.4298 185.618 59.6957 185.159 59.0227C184.864 60.0015 185.063 61.1945 185.19 62.1886C185.272 62.8564 185.746 64.5234 185.501 65.1301C185.323 65.5889 184.425 66.1904 184.114 66.8634C183.757 67.5975 183.085 68.4947 182.891 69.2951C182.432 71.1558 184.639 72.3793 185.18 73.9495C185.491 74.8824 184.787 75.1934 184.023 74.602C183.253 74.0158 183.008 72.675 182.06 72.3793C181.112 73.8017 181.127 75.953 180.571 77.5231C177.63 77.1663 180.994 71.4821 180.668 70.2076C180.49 69.4735 179.689 69.0657 179.526 68.2653C179.394 67.5618 179.674 66.8124 179.771 66.1242C179.949 64.9159 179.577 65.1301 179.185 64.294C178.761 63.3968 178.843 61.9286 178.874 60.9651C178.614 61.3423 176.702 65.3085 175.947 63.4987C175.687 62.8921 177.645 60.1035 177.829 59.4816C178.303 57.7483 177.502 53.9605 180.067 54.3224" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M61.7227 44.7692C63.499 45.7931 63.5063 47.4537 61.7444 48.4811C59.9825 49.505 57.1136 49.505 55.3372 48.4811C53.5609 47.4573 53.5537 45.7967 55.3192 44.7692C57.0847 43.7418 59.95 43.7454 61.7227 44.7692Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M58.6665 22L58.6665 46.6667" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/>
-<path d="M66.135 11.3463L66.0994 24.0037C66.0994 24.1153 66.0733 24.2268 66.0234 24.3384L66.059 11.681C66.1089 11.5718 66.135 11.4579 66.135 11.3463Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M50.5181 25.7082L50.5537 13.0508C50.5537 13.3973 50.7886 13.7367 51.2253 13.9883L51.1897 26.6457C50.753 26.3917 50.5181 26.0523 50.5181 25.7082Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M66.0591 11.681L66.0235 24.3383L64.5591 27.5401L64.597 14.8803L66.0591 11.681Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M64.5972 14.8804L64.5616 27.5378C64.3551 27.9911 63.7451 28.3471 62.9619 28.4681L62.9975 15.8108C63.7807 15.6897 64.3907 15.3361 64.5972 14.8804Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M55.2841 16.3283L55.2485 28.9856L51.1899 26.6431L51.2255 13.9857L55.2841 16.3283Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M62.9951 15.8106L62.9595 28.4703L57.439 29.3271L57.4769 16.6698L62.9951 15.8106Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M57.4767 16.6699L57.4411 29.3273C56.6579 29.4483 55.8224 29.3178 55.248 28.9855L55.2837 16.3282C55.858 16.6604 56.6935 16.791 57.4767 16.6699Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M65.4657 10.4115C66.04 10.7438 66.2679 11.2279 66.059 11.6813L64.597 14.8806C64.3905 15.3339 63.7806 15.6899 62.9973 15.811L57.4768 16.6678C56.6936 16.7888 55.8581 16.6583 55.2838 16.326L51.2253 13.9835C50.6509 13.6512 50.423 13.167 50.6295 12.7137L52.0916 9.51433C52.298 9.06101 52.9104 8.705 53.6912 8.58396L59.2118 7.72716C59.995 7.60374 60.8304 7.73428 61.4048 8.06656L65.4657 10.4115Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M66.1279 9.71831C66.1256 9.75866 66.1232 9.79664 66.1184 9.83698C66.116 9.87021 66.1113 9.90581 66.1065 9.93904C66.1018 9.97702 66.0947 10.0174 66.0876 10.0553C66.0804 10.0886 66.0733 10.1242 66.0662 10.1574C66.0567 10.1954 66.0496 10.2333 66.0377 10.2713C66.0282 10.3045 66.0187 10.3401 66.0069 10.3734C65.995 10.4113 65.9831 10.4493 65.9689 10.4849C65.957 10.5182 65.9452 10.5514 65.9309 10.5846C65.9143 10.625 65.8977 10.6629 65.8811 10.7033C65.8668 10.7365 65.8502 10.7697 65.836 10.8006C65.817 10.8386 65.7957 10.8789 65.7767 10.9169C65.7601 10.9477 65.7434 10.9786 65.7244 11.0118C65.6983 11.0569 65.6698 11.1044 65.639 11.1495C65.62 11.178 65.6034 11.2064 65.5844 11.2325C65.5488 11.2824 65.5132 11.3322 65.4752 11.3821C65.4586 11.4034 65.442 11.4272 65.4254 11.4485C65.3613 11.5268 65.2948 11.6075 65.2236 11.6835C65.2047 11.7025 65.1857 11.7238 65.1667 11.7428C65.1097 11.8022 65.0528 11.8615 64.9911 11.9185C64.9626 11.9446 64.9341 11.9707 64.9056 11.9968C64.87 12.03 64.832 12.0632 64.7917 12.0965C64.7561 12.1273 64.7205 12.1558 64.6849 12.1843C64.6445 12.2175 64.6042 12.2484 64.5615 12.2792C64.5235 12.3077 64.4855 12.3362 64.4452 12.3647C64.4024 12.3955 64.3574 12.4264 64.3146 12.4572C64.2743 12.4857 64.2316 12.5142 64.1912 12.5403C64.1461 12.5711 64.0987 12.5996 64.0512 12.6305C63.9919 12.6685 63.9325 12.7041 63.8708 12.742C63.7023 12.8393 63.5243 12.9319 63.3463 13.0173C63.2988 13.0411 63.2513 13.0624 63.2039 13.0838C63.0401 13.1598 62.8764 13.231 62.7055 13.2974C62.6841 13.3069 62.6627 13.3164 62.639 13.3235C62.4563 13.3923 62.2688 13.4564 62.0813 13.5158C61.9507 13.5561 61.8155 13.5941 61.6802 13.6297C61.5781 13.6582 61.4784 13.6866 61.374 13.7128C61.2316 13.746 61.0868 13.7745 60.9444 13.8053C60.84 13.8267 60.7355 13.8504 60.6311 13.8694C60.5884 13.8765 60.5433 13.8836 60.4982 13.8908C60.3202 13.9192 60.1398 13.9454 59.9595 13.9667C59.9072 13.9738 59.855 13.981 59.8028 13.9857C59.6984 13.9976 59.594 14.0023 59.4895 14.0118C59.3139 14.026 59.1406 14.0403 58.9626 14.0474C58.8511 14.0522 58.7371 14.0545 58.6256 14.0569C58.4832 14.0593 58.3408 14.0616 58.1984 14.0593C58.0797 14.0569 57.961 14.0545 57.8424 14.0498C57.7095 14.045 57.5789 14.0379 57.4484 14.0284C57.3273 14.0189 57.2087 14.0094 57.0876 13.9976C56.9571 13.9857 56.8289 13.9715 56.6984 13.9548C56.5821 13.9406 56.4658 13.924 56.3495 13.905C56.2118 13.8836 56.0742 13.8599 55.9365 13.8338C55.8273 13.8124 55.7205 13.7911 55.6137 13.7673C55.45 13.7317 55.2909 13.6914 55.1296 13.6487C55.0251 13.6202 54.9207 13.5965 54.8187 13.5656C54.7641 13.549 54.7095 13.5324 54.6549 13.5158C54.4935 13.4659 54.3368 13.4113 54.1802 13.3544C54.1351 13.3378 54.09 13.3211 54.0449 13.3045C53.9025 13.2499 53.7672 13.1882 53.6296 13.1289C53.5631 13.1004 53.4943 13.0719 53.4302 13.0411C53.2332 12.9485 53.0433 12.8488 52.8582 12.742C51.3226 11.8568 50.5584 10.6938 50.5607 9.53319L50.5513 12.8821C50.5489 14.0427 51.3131 15.2056 52.8487 16.0933C53.0315 16.2001 53.2237 16.2974 53.4207 16.3923C53.4872 16.4232 53.556 16.4493 53.6224 16.4801C53.7387 16.5324 53.8527 16.5846 53.9737 16.632C53.9951 16.6392 54.0164 16.6463 54.0378 16.6558C54.0829 16.6724 54.128 16.689 54.1731 16.7056C54.3274 16.7626 54.4864 16.8172 54.6454 16.867C54.7 16.8836 54.7546 16.9026 54.8091 16.9192C54.8471 16.9311 54.8827 16.943 54.9183 16.9525C54.9824 16.9714 55.0512 16.9833 55.1177 17.0023C55.2767 17.045 55.4381 17.0854 55.6019 17.121C55.6446 17.1305 55.6873 17.1423 55.73 17.1518C55.7941 17.1661 55.8582 17.1732 55.9223 17.185C56.0599 17.2112 56.1976 17.2349 56.3353 17.2563C56.3898 17.2657 56.4444 17.2776 56.499 17.2847C56.5583 17.2942 56.6201 17.2966 56.6818 17.3061C56.8123 17.3227 56.9405 17.3369 57.071 17.3488C57.1327 17.3559 57.1944 17.3654 57.2561 17.3702C57.3131 17.3749 57.3724 17.3749 57.4294 17.3797C57.5599 17.3892 57.6929 17.3963 57.8234 17.401C57.8898 17.4034 57.9563 17.4105 58.0204 17.4105C58.0726 17.4129 58.1272 17.4081 58.1794 17.4105C58.3218 17.4129 58.4642 17.4105 58.6066 17.4081C58.6778 17.4058 58.749 17.4105 58.8178 17.4081C58.8606 17.4058 58.9009 17.401 58.9436 17.3987C59.1193 17.3915 59.2949 17.3773 59.4705 17.3631C59.5417 17.3583 59.6129 17.3559 59.6818 17.3488C59.715 17.3464 59.7482 17.3393 59.7814 17.3369C59.8337 17.3322 59.8859 17.3251 59.9404 17.318C60.1208 17.2966 60.3012 17.2705 60.4792 17.242C60.5219 17.2349 60.567 17.2278 60.6098 17.2206C60.6311 17.2159 60.6525 17.2135 60.6738 17.2112C60.7593 17.1969 60.84 17.1756 60.9254 17.1566C61.0702 17.1281 61.2126 17.0996 61.355 17.064C61.4594 17.0379 61.5591 17.0094 61.6612 16.9809C61.7964 16.9453 61.9317 16.9074 62.0623 16.867C62.0908 16.8575 62.1192 16.8504 62.1477 16.8433C62.3091 16.7911 62.4658 16.7341 62.62 16.6771C62.6414 16.6676 62.6628 16.6582 62.6865 16.651C62.8574 16.5846 63.0211 16.5134 63.1849 16.4374C63.2324 16.4161 63.2798 16.3923 63.3273 16.371C63.5077 16.2832 63.6833 16.193 63.8518 16.0957C63.8827 16.0767 63.9159 16.0577 63.9468 16.0387C63.9752 16.0221 64.0037 16.0031 64.0322 15.9841C64.0797 15.9533 64.1272 15.9248 64.1746 15.8939C64.2173 15.8654 64.2577 15.837 64.298 15.8108C64.3431 15.78 64.3858 15.7491 64.4286 15.7183C64.4689 15.6898 64.5069 15.6613 64.5449 15.6305C64.5852 15.5996 64.6279 15.5664 64.6659 15.5355C64.7015 15.5071 64.7371 15.4762 64.7727 15.4453C64.8107 15.4121 64.8487 15.3813 64.8843 15.348C64.8985 15.3338 64.9151 15.3219 64.9293 15.3077C64.9436 15.2958 64.9555 15.2816 64.9673 15.2697C65.029 15.2127 65.086 15.1534 65.143 15.0941C65.1619 15.0751 65.1809 15.0537 65.1999 15.0347C65.2711 14.9564 65.3399 14.8781 65.4016 14.7998C65.404 14.7974 65.4088 14.7927 65.4112 14.7903C65.4254 14.7713 65.4373 14.7523 65.4515 14.7357C65.4895 14.6859 65.5275 14.636 65.5607 14.5862C65.5797 14.5577 65.5963 14.5316 65.6153 14.5031C65.6437 14.458 65.6746 14.4105 65.7007 14.3654C65.7078 14.3536 65.7173 14.3393 65.7244 14.3275C65.7339 14.3085 65.7434 14.2895 65.7529 14.2705C65.7743 14.2325 65.7933 14.1922 65.8122 14.1542C65.8289 14.121 65.8431 14.0878 65.8574 14.0569C65.874 14.0189 65.8906 13.9786 65.9072 13.9382C65.9143 13.9216 65.9238 13.9026 65.9285 13.886C65.9357 13.8694 65.938 13.8552 65.9452 13.8385C65.9594 13.8006 65.9713 13.7626 65.9832 13.727C65.9926 13.6938 66.0045 13.6582 66.014 13.6249C66.0235 13.587 66.033 13.549 66.0425 13.511C66.0472 13.4897 66.0543 13.4707 66.0567 13.4493C66.0591 13.4351 66.0615 13.4208 66.0638 13.4066C66.071 13.3686 66.0757 13.3283 66.0828 13.2903C66.0876 13.2571 66.0923 13.2215 66.0947 13.1882C66.0994 13.1479 66.1018 13.1099 66.1042 13.0696C66.1066 13.0458 66.1089 13.0245 66.1089 13.0007C66.1089 12.977 66.1089 12.9556 66.1089 12.9319L66.1184 9.58303C66.135 9.62575 66.1303 9.67085 66.1279 9.71831Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M63.835 6.3694C66.8848 8.13047 66.9038 10.9857 63.873 12.7467C60.8421 14.5078 55.9102 14.5078 52.8604 12.7467C49.8106 10.9857 49.7963 8.13047 52.8271 6.3694C55.858 4.60833 60.7852 4.60833 63.835 6.3694Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M62.4301 8.20398C64.6991 9.36457 64.7133 11.2443 62.4586 12.4025C60.2039 13.5631 56.5346 13.5631 54.2656 12.4025C51.9967 11.2419 51.9848 9.3622 54.2395 8.20398C56.4942 7.04576 60.1611 7.04576 62.4301 8.20398Z" fill="#DA3635"/>
-<path d="M63.0615 6.65901C65.6817 8.17087 65.6984 10.625 63.0947 12.1368C60.4911 13.6487 56.2546 13.6487 53.6344 12.1368C51.0141 10.625 51.0022 8.17087 53.6059 6.65901C56.2095 5.14715 60.4413 5.14715 63.0615 6.65901Z" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M66.1279 22.9737C66.1256 23.014 66.1232 23.052 66.1184 23.0923C66.1161 23.1256 66.1113 23.1612 66.1066 23.1944C66.1018 23.2324 66.0947 23.2727 66.0876 23.3107C66.0805 23.3439 66.0734 23.3795 66.0662 23.4127C66.0567 23.4507 66.0496 23.4887 66.0378 23.5267C66.0283 23.5599 66.0188 23.5955 66.0069 23.6287C65.995 23.6667 65.9832 23.7047 65.9689 23.7426C65.957 23.7759 65.9452 23.8091 65.9309 23.8423C65.9143 23.8827 65.8977 23.9206 65.8811 23.961C65.8669 23.9942 65.8503 24.0274 65.836 24.0583C65.817 24.0963 65.7957 24.1366 65.7767 24.1746C65.7601 24.2055 65.7434 24.2363 65.7244 24.2695C65.6983 24.3146 65.6699 24.3621 65.639 24.4072C65.62 24.4357 65.6034 24.4642 65.5844 24.4903C65.5488 24.5401 65.5132 24.5899 65.4753 24.6398C65.4586 24.6611 65.442 24.6849 65.4254 24.7062C65.3613 24.7846 65.2949 24.8653 65.2237 24.9412C65.2047 24.9602 65.1857 24.9816 65.1667 25.0005C65.1097 25.0599 65.0528 25.1192 64.9911 25.1762C64.9626 25.2023 64.9341 25.2284 64.9056 25.2545C64.87 25.2877 64.8321 25.321 64.7917 25.3542C64.7561 25.385 64.7205 25.4135 64.6849 25.442C64.6445 25.4752 64.6042 25.5061 64.5615 25.5369C64.5235 25.5654 64.4855 25.5939 64.4452 25.6224C64.4025 25.6532 64.3574 25.6841 64.3147 25.7149C64.2743 25.7434 64.2316 25.7719 64.1912 25.798C64.1461 25.8289 64.0987 25.8573 64.0512 25.8882C63.9919 25.9262 63.9325 25.9618 63.8708 25.9998C63.7023 26.0971 63.5243 26.1896 63.3463 26.2751C63.2989 26.2988 63.2514 26.3202 63.2039 26.3415C63.0401 26.4175 62.8764 26.4887 62.7055 26.5551C62.6841 26.5646 62.6628 26.5741 62.639 26.5812C62.4563 26.6501 62.2688 26.7141 62.0813 26.7735C61.9507 26.8138 61.8155 26.8518 61.6802 26.8874C61.5781 26.9159 61.4784 26.9444 61.374 26.9705C61.2316 27.0037 61.0868 27.0322 60.9444 27.063C60.84 27.0844 60.7356 27.1081 60.6311 27.1271C60.5884 27.1342 60.5433 27.1414 60.4982 27.1485C60.3202 27.177 60.1398 27.2031 59.9595 27.2244C59.9072 27.2315 59.855 27.2387 59.8028 27.2434C59.6984 27.2553 59.594 27.26 59.4895 27.2695C59.3139 27.2838 59.1406 27.298 58.9626 27.3051C58.8511 27.3099 58.7372 27.3122 58.6256 27.3146C58.4832 27.317 58.3408 27.3194 58.1984 27.317C58.0797 27.3146 57.961 27.3122 57.8424 27.3075C57.7095 27.3027 57.5789 27.2956 57.4484 27.2861C57.3273 27.2766 57.2087 27.2671 57.0876 27.2553C56.9571 27.2434 56.8289 27.2292 56.6984 27.2126C56.5821 27.1983 56.4658 27.1817 56.3495 27.1627C56.2118 27.1414 56.0742 27.1176 55.9365 27.0915C55.8273 27.0702 55.7205 27.0488 55.6137 27.0251C55.45 26.9895 55.2909 26.9491 55.1296 26.9064C55.0251 26.8779 54.9207 26.8542 54.8187 26.8233C54.7641 26.8067 54.7095 26.7901 54.6549 26.7735C54.4935 26.7236 54.3368 26.669 54.1802 26.6121C54.1351 26.5955 54.09 26.5789 54.0449 26.5622C53.9025 26.5077 53.7672 26.4459 53.6296 26.3866C53.5631 26.3581 53.4943 26.3297 53.4302 26.2988C53.2332 26.2062 53.0433 26.1066 52.8582 25.9998C51.3226 25.1145 50.5584 23.9515 50.5607 22.7885L50.5513 26.1374C50.5489 27.298 51.3131 28.461 52.8487 29.3486C53.0315 29.4554 53.2237 29.5527 53.4207 29.6477C53.4872 29.6785 53.556 29.7046 53.6224 29.7355C53.7387 29.7877 53.8527 29.8399 53.9737 29.8874C53.9951 29.8945 54.0164 29.9016 54.0378 29.9111C54.0829 29.9277 54.128 29.9443 54.1731 29.961C54.3274 30.0179 54.4864 30.0725 54.6454 30.1224C54.7 30.139 54.7546 30.158 54.8092 30.1746C54.8471 30.1864 54.8827 30.1983 54.9183 30.2078C54.9824 30.2268 55.0513 30.2386 55.1177 30.2576C55.2767 30.3004 55.4381 30.3407 55.6019 30.3763C55.6446 30.3858 55.6873 30.3977 55.73 30.4072C55.7941 30.4214 55.8582 30.4285 55.9223 30.4404C56.06 30.4665 56.1976 30.4902 56.3353 30.5116C56.3899 30.5211 56.4444 30.5329 56.499 30.5401C56.5584 30.5496 56.6201 30.5519 56.6818 30.5614C56.8123 30.578 56.9405 30.5923 57.071 30.6042C57.1327 30.6113 57.1944 30.6208 57.2561 30.6255C57.3131 30.6303 57.3724 30.6303 57.4294 30.635C57.5599 30.6445 57.6929 30.6516 57.8234 30.6564C57.8899 30.6587 57.9563 30.6659 58.0204 30.6659C58.0726 30.6682 58.1272 30.6635 58.1794 30.6659C58.3218 30.6682 58.4642 30.6659 58.6066 30.6635C58.6778 30.6611 58.749 30.6659 58.8178 30.6635C58.8606 30.6611 58.9009 30.6564 58.9436 30.654C59.1193 30.6469 59.2949 30.6326 59.4705 30.6184C59.5417 30.6136 59.6129 30.6113 59.6818 30.6042C59.715 30.6018 59.7482 30.5947 59.7815 30.5923C59.8337 30.5875 59.8859 30.5804 59.9405 30.5733C60.1208 30.5519 60.3012 30.5258 60.4792 30.4973C60.5219 30.4902 60.5671 30.4831 60.6098 30.476C60.6311 30.4712 60.6525 30.4689 60.6739 30.4665C60.7593 30.4523 60.84 30.4309 60.9254 30.4119C61.0702 30.3834 61.2126 30.3549 61.355 30.3193C61.4595 30.2932 61.5591 30.2648 61.6612 30.2363C61.7965 30.2007 61.9318 30.1627 62.0623 30.1224C62.0908 30.1129 62.1193 30.1057 62.1477 30.0986C62.3091 30.0464 62.4658 29.9894 62.62 29.9325C62.6414 29.923 62.6628 29.9135 62.6865 29.9064C62.8574 29.8399 63.0211 29.7687 63.1849 29.6928C63.2324 29.6714 63.2798 29.6477 63.3273 29.6263C63.5077 29.5385 63.6833 29.4483 63.8518 29.351C63.8827 29.332 63.9159 29.313 63.9468 29.294C63.9752 29.2774 64.0037 29.2584 64.0322 29.2394C64.0797 29.2086 64.1272 29.1801 64.1746 29.1493C64.2174 29.1208 64.2577 29.0923 64.298 29.0662C64.3431 29.0353 64.3859 29.0045 64.4286 28.9736C64.4689 28.9451 64.5069 28.9167 64.5449 28.8858C64.5852 28.855 64.6279 28.8217 64.6659 28.7909C64.7015 28.7624 64.7371 28.7315 64.7727 28.7007C64.8107 28.6675 64.8487 28.6366 64.8843 28.6034C64.8985 28.5891 64.9151 28.5773 64.9294 28.563C64.9436 28.5512 64.9555 28.5369 64.9673 28.5251C65.0291 28.4681 65.086 28.4088 65.143 28.3494C65.162 28.3304 65.1809 28.3091 65.1999 28.2901C65.2711 28.2118 65.34 28.1334 65.4017 28.0551C65.404 28.0527 65.4088 28.048 65.4112 28.0456C65.4254 28.0266 65.4373 28.0076 65.4515 27.991C65.4895 27.9412 65.5275 27.8914 65.5607 27.8415C65.5797 27.813 65.5963 27.7869 65.6153 27.7584C65.6438 27.7133 65.6746 27.6659 65.7007 27.6208C65.7078 27.6089 65.7173 27.5947 65.7244 27.5828C65.7339 27.5638 65.7434 27.5448 65.7529 27.5258C65.7743 27.4879 65.7933 27.4475 65.8123 27.4095C65.8289 27.3763 65.8431 27.3431 65.8574 27.3122C65.874 27.2743 65.8906 27.2339 65.9072 27.1936C65.9143 27.177 65.9238 27.158 65.9286 27.1414C65.9357 27.1247 65.9381 27.1105 65.9452 27.0939C65.9594 27.0559 65.9713 27.0179 65.9832 26.9823C65.9927 26.9491 66.0045 26.9135 66.014 26.8803C66.0235 26.8423 66.033 26.8043 66.0425 26.7664C66.0473 26.745 66.0544 26.726 66.0567 26.7046C66.0591 26.6904 66.0615 26.6762 66.0639 26.6619C66.071 26.624 66.0757 26.5836 66.0828 26.5456C66.0876 26.5124 66.0923 26.4768 66.0947 26.4436C66.0995 26.4032 66.1018 26.3653 66.1042 26.3249C66.1066 26.3012 66.1089 26.2798 66.1089 26.2561C66.1089 26.2323 66.1089 26.211 66.1089 26.1872L66.1184 22.8384C66.1351 22.8835 66.1303 22.9286 66.1279 22.9737Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M75.2494 12.3928C75.2185 12.4189 75.1877 12.4474 75.1568 12.4735C75.1283 12.4949 75.0999 12.5186 75.0714 12.54C75.0382 12.5637 75.0073 12.5874 74.9741 12.6112C74.9432 12.6325 74.9148 12.6515 74.8839 12.6705C74.8507 12.6919 74.8151 12.7132 74.7795 12.7322C74.7486 12.7512 74.7154 12.7678 74.6821 12.7844C74.6465 12.8034 74.6086 12.8224 74.573 12.839C74.5398 12.8556 74.5065 12.8699 74.4709 12.8841C74.4306 12.9007 74.3902 12.9173 74.3475 12.9339C74.3119 12.9482 74.2787 12.9601 74.2431 12.9719C74.2004 12.9862 74.1576 13.0004 74.1126 13.0123C74.077 13.0218 74.0413 13.0336 74.0057 13.0431C73.9535 13.0574 73.8989 13.0692 73.842 13.0811C73.8088 13.0882 73.7755 13.0953 73.7399 13.1025C73.6782 13.1143 73.6141 13.1238 73.5501 13.1309C73.5216 13.1357 73.4931 13.1404 73.4646 13.1428C73.3602 13.1547 73.2534 13.1618 73.1442 13.1665C73.1157 13.1665 73.0872 13.1665 73.0587 13.1689C72.9733 13.1713 72.8879 13.1713 72.8024 13.1689C72.7621 13.1689 72.7241 13.1665 72.6838 13.1642C72.6315 13.1618 72.5817 13.157 72.5295 13.1547C72.482 13.1499 72.4346 13.1476 72.3871 13.1428C72.3349 13.1381 72.2803 13.1309 72.2281 13.1238C72.1782 13.1167 72.1307 13.1096 72.0809 13.1025C72.0263 13.093 71.9717 13.0835 71.9172 13.074C71.8673 13.0645 71.8151 13.055 71.7653 13.0455C71.7107 13.0336 71.6537 13.0218 71.5967 13.0075C71.5255 12.9909 71.4567 12.9743 71.3831 12.9553C71.1885 12.9031 70.9915 12.8414 70.7969 12.7726C70.7447 12.7559 70.6949 12.737 70.6426 12.718C70.4694 12.6539 70.2961 12.5851 70.1228 12.5091C70.0991 12.4996 70.0777 12.4901 70.054 12.4806C69.8713 12.3976 69.6885 12.3074 69.5058 12.2124C69.38 12.146 69.2542 12.0748 69.1284 12.0036C69.0335 11.949 68.9385 11.8968 68.8436 11.8398C68.7154 11.7615 68.5873 11.676 68.4615 11.593C68.3689 11.5313 68.2763 11.4743 68.1861 11.4102C68.1482 11.3841 68.1126 11.3556 68.0746 11.3295C67.9227 11.2203 67.7732 11.1064 67.6236 10.9901C67.5809 10.9569 67.5382 10.9237 67.4955 10.8881C67.4101 10.8192 67.3294 10.748 67.2463 10.6768C67.1086 10.5605 66.971 10.4419 66.8357 10.3185C66.7502 10.2401 66.6672 10.1594 66.5817 10.0787C66.4749 9.97668 66.3705 9.87225 66.2684 9.76782C66.183 9.68001 66.0976 9.58982 66.0145 9.49963C65.9219 9.39995 65.8317 9.29789 65.7416 9.19583C65.6585 9.1009 65.5802 9.00596 65.4995 8.91102C65.414 8.80659 65.3286 8.70216 65.2479 8.59536C65.1743 8.49805 65.1007 8.40312 65.0295 8.30581C64.9441 8.18951 64.861 8.07084 64.7803 7.95217C64.7162 7.85723 64.6522 7.76467 64.5928 7.66736C64.5003 7.52258 64.4124 7.37543 64.327 7.22828C64.2724 7.13335 64.2131 7.03841 64.1609 6.9411C64.1324 6.88888 64.1063 6.83667 64.0778 6.78445C63.9971 6.63018 63.9212 6.47591 63.85 6.31927C63.8286 6.27417 63.8072 6.22908 63.7882 6.18398C63.7242 6.04158 63.6696 5.8968 63.615 5.75202C63.5889 5.68082 63.558 5.61199 63.5319 5.54079C63.456 5.32956 63.3895 5.11595 63.3325 4.90472C62.8579 3.13416 63.1474 1.72436 63.9995 0.879425L61.5454 3.31928C60.6933 4.16659 60.4038 5.57639 60.8785 7.34458C60.9354 7.55581 61.0019 7.76704 61.0778 7.98065C61.1039 8.05185 61.1348 8.12068 61.1609 8.19188C61.2083 8.3153 61.2534 8.43634 61.3057 8.55976C61.3151 8.58112 61.3246 8.60248 61.3341 8.62147C61.3531 8.66656 61.3769 8.71166 61.3958 8.75675C61.467 8.91103 61.543 9.06767 61.6237 9.22194C61.6522 9.27415 61.6783 9.32637 61.7068 9.37859C61.7258 9.41419 61.7424 9.44979 61.7614 9.48302C61.7946 9.54472 61.8349 9.60406 61.8705 9.66339C61.956 9.81054 62.0438 9.9577 62.1387 10.1048C62.1625 10.1428 62.1838 10.1832 62.2099 10.2211C62.2479 10.2781 62.2883 10.3303 62.3262 10.3873C62.4069 10.506 62.49 10.6246 62.5754 10.7433C62.6087 10.7908 62.6395 10.8382 62.6751 10.8857C62.7131 10.9355 62.7558 10.983 62.7938 11.0328C62.8768 11.1397 62.9599 11.2441 63.0477 11.3485C63.0881 11.3984 63.1261 11.4506 63.1688 11.498C63.2068 11.5431 63.2495 11.5859 63.2898 11.6333C63.38 11.7354 63.4702 11.8374 63.5628 11.9371C63.6102 11.987 63.653 12.0392 63.7004 12.089C63.7384 12.1294 63.7788 12.165 63.8167 12.2053C63.9188 12.3097 64.0232 12.4142 64.13 12.5162C64.1822 12.5661 64.2321 12.6207 64.2867 12.6705C64.3175 12.699 64.3531 12.7275 64.384 12.7559C64.5193 12.8794 64.6569 12.998 64.7946 13.1143C64.8492 13.1618 64.9037 13.2116 64.9607 13.2591C64.9868 13.2805 65.0153 13.3018 65.0438 13.3232C65.0865 13.3588 65.1292 13.392 65.1743 13.4252C65.3215 13.5415 65.4734 13.6555 65.6253 13.7646C65.6632 13.7907 65.6988 13.8192 65.7368 13.8453C65.7558 13.8572 65.7724 13.8714 65.7914 13.8857C65.865 13.9355 65.9409 13.9806 66.0145 14.0305C66.1403 14.1135 66.2685 14.199 66.3966 14.2773C66.4916 14.3343 66.5865 14.3865 66.6814 14.4411C66.8072 14.5123 66.933 14.5858 67.0588 14.6499C67.0849 14.6642 67.1134 14.6808 67.1395 14.695C67.2938 14.7733 67.4504 14.8493 67.607 14.9181C67.6308 14.9276 67.6522 14.9371 67.6759 14.9466C67.8491 15.0225 68.0224 15.0914 68.1956 15.1555C68.2479 15.1744 68.2977 15.1934 68.3499 15.21C68.5445 15.2789 68.7392 15.3406 68.9361 15.3928C68.9741 15.4023 69.0097 15.4118 69.0477 15.4213C69.0809 15.4308 69.1142 15.4355 69.1498 15.445C69.2067 15.4592 69.2637 15.4711 69.3183 15.483C69.3705 15.4925 69.4203 15.502 69.4702 15.5115C69.5248 15.521 69.5794 15.5305 69.6339 15.5399C69.6838 15.5471 69.7336 15.5542 69.7835 15.5613C69.8357 15.5684 69.8903 15.5755 69.9425 15.5803C69.9899 15.585 70.0374 15.5898 70.0872 15.5945C70.1395 15.5993 70.1893 15.6017 70.2415 15.604C70.2629 15.604 70.2842 15.6064 70.3056 15.6088C70.3246 15.6088 70.3436 15.6088 70.3626 15.6088C70.4504 15.6111 70.5358 15.6111 70.6189 15.6088C70.6474 15.6088 70.6759 15.6088 70.7044 15.6064C70.8135 15.6017 70.9203 15.5945 71.0248 15.5827C71.0295 15.5827 71.0342 15.5827 71.039 15.5827C71.0627 15.5803 71.0865 15.5755 71.1102 15.5708C71.1743 15.5613 71.2383 15.5518 71.3 15.5399C71.3333 15.5328 71.3665 15.5257 71.3997 15.5186C71.4543 15.5067 71.5089 15.4949 71.5635 15.4806C71.5778 15.4759 71.5944 15.4735 71.6086 15.4711C71.63 15.464 71.6513 15.4569 71.6727 15.4521C71.7154 15.4379 71.7605 15.426 71.8009 15.4118C71.8365 15.3999 71.872 15.3857 71.9053 15.3738C71.9456 15.3572 71.9884 15.3406 72.0287 15.324C72.0477 15.3168 72.0667 15.3097 72.0833 15.3026C72.0999 15.2955 72.1141 15.286 72.1307 15.2789C72.1687 15.2623 72.2043 15.2433 72.2399 15.2243C72.2732 15.2077 72.304 15.1887 72.3372 15.1721C72.3728 15.1507 72.4061 15.1317 72.4417 15.1104C72.4607 15.0985 72.4796 15.089 72.4986 15.0771C72.5105 15.07 72.5224 15.0605 72.5342 15.051C72.5675 15.0273 72.6007 15.0036 72.6316 14.9798C72.66 14.9585 72.6885 14.9371 72.717 14.9134C72.7478 14.8873 72.7787 14.8611 72.8096 14.8327C72.8262 14.8161 72.8452 14.8018 72.8641 14.7852C72.8808 14.7686 72.8974 14.752 72.914 14.7354L75.3681 12.2955C75.3206 12.3311 75.2826 12.362 75.2494 12.3928Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M76.0208 8.26783C76.963 11.7852 74.8887 13.8857 71.3855 12.9577C67.8824 12.0297 64.2772 8.42448 63.3349 4.90709C62.3927 1.38971 64.4694 -0.708383 67.9726 0.219618C71.4757 1.14762 75.0785 4.75045 76.0208 8.26783Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M73.0586 8.44768C73.0776 8.51651 73.0349 8.55686 72.9685 8.54024L66.6172 6.8575C66.5484 6.83851 66.4772 6.76731 66.4606 6.70085L66.012 5.02286C65.993 4.95165 66.0334 4.91368 66.1022 4.93029L72.4534 6.61304C72.5199 6.63203 72.5934 6.70085 72.6101 6.76968L73.0586 8.44768Z" fill="#EDEDED"/>
-<path d="M71.8481 7.74341L71.5586 6.64215L72.9185 5.27507L73.2105 6.37395L71.8481 7.74341Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M67.1581 6.48534L66.8662 5.38645L68.848 3.39279L69.1399 4.49168L67.1581 6.48534Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M69.1401 4.49173L68.8481 3.39284L74.0839 4.79552L74.3758 5.89441L69.1401 4.49173Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M74.3757 5.89438L72.3916 7.88804L71.8481 7.74327L73.2104 6.37381L69.0617 5.26068L67.7017 6.63014L67.1582 6.48536L69.14 4.4917L74.3757 5.89438Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-</g>
-<defs>
-<clipPath id="clip0_6867_13593">
-<rect width="200" height="200" fill="white"/>
-</clipPath>
-</defs>
-</svg>
diff --git a/src/assets/form/eyePassword.svg b/src/assets/form/eyePassword.svg
deleted file mode 100644
index dfd810d7c8526e9731a9ed8cb61de3fbd4434ac7..0000000000000000000000000000000000000000
--- a/src/assets/form/eyePassword.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-<svg width="22" height="16" viewBox="0 0 22 16" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path fill-rule="evenodd" clip-rule="evenodd" d="M7.99519 3.00001C8.83101 2.37183 9.87111 2 11 2C13.7667 2 16 4.23333 16 7C16 9.76667 13.7667 12 11 12C8.23333 12 6 9.76667 6 7C6 6.5747 6.05278 6.162 6.15215 5.76809C6.45257 6.49223 7.16566 7 8 7C9.10667 7 10 6.10667 10 5C10 3.89333 9.10667 3 8 3C7.9984 3 7.9968 3 7.99519 3.00001Z" fill="#828282"/>
-<path d="M1 8C2.57273 3.90267 6.45455 1 11 1C15.5455 1 19.4273 3.90267 21 8" stroke="#828282" stroke-width="1.5" stroke-linecap="round"/>
-<path d="M1 8C2.57273 12.0973 6.45455 15 11 15C15.5455 15 19.4273 12.0973 21 8" stroke="#828282" stroke-width="1.5" stroke-linecap="round"/>
-</svg>
diff --git a/src/assets/form/factures.svg b/src/assets/form/factures.svg
deleted file mode 100644
index af7a8847d698b14137c9f62956849aec4f53f139..0000000000000000000000000000000000000000
--- a/src/assets/form/factures.svg
+++ /dev/null
@@ -1,86 +0,0 @@
-<svg width="180" height="180" viewBox="0 0 180 180" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g clip-path="url(#clip0_4810_101286)">
-<g opacity="0.35" filter="url(#filter0_f_4810_101286)">
-<path d="M101.735 29.5946L30.9591 42.3835L27.9013 73.5339L98.677 60.7449L101.735 29.5946Z" fill="#DC2A59"/>
-<path d="M41.607 101.311L37.8076 136.377L108.583 123.589L112.383 88.5224L98.677 60.7449L27.9013 73.5339L41.607 101.311Z" fill="#DC2A59"/>
-</g>
-<path opacity="0.55" d="M30.7813 41.3995L30.0377 41.5338L29.9639 42.2858L26.9061 73.4362L26.8782 73.7203L27.0045 73.9763L40.5815 101.493L36.8134 136.27L36.6693 137.599L37.9854 137.362L108.761 124.573L109.497 124.44L109.577 123.696L113.377 88.6301L113.408 88.3409L113.279 88.0799L99.7001 60.5585L102.73 29.6923L102.859 28.3752L101.557 28.6105L30.7813 41.3995Z" fill="#348899" stroke="#DC2A59" stroke-width="2"/>
-<path d="M41.6069 101.311L112.383 88.5224L108.583 123.589L37.8075 136.377L41.6069 101.311Z" fill="#FDECF0"/>
-<path d="M41.6068 101.311L112.383 88.5225L98.6767 60.745L27.901 73.5339L41.6068 101.311Z" fill="#F3D0D9"/>
-<path d="M30.959 42.3835L101.735 29.5946L98.677 60.7449L27.9013 73.5339L30.959 42.3835Z" fill="#FDECF0"/>
-<mask id="mask0_4810_101286" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="45" y="91" width="59" height="37">
-<path d="M47.7432 101.921L103.836 91.7857L102.852 107.452L80.495 111.491L79.3714 121.647L45.2675 127.81L47.7432 101.921Z" fill="#FF0101"/>
-</mask>
-<g mask="url(#mask0_4810_101286)">
-<rect x="43.2933" y="105.476" width="66.6075" height="2.70654" transform="rotate(-10.2426 43.2933 105.476)" fill="#DC2A59"/>
-<path d="M42.0508 114.01L104.769 102.678L104.751 105.431L42.532 116.674L42.0508 114.01Z" fill="#DC2A59"/>
-<rect x="41.9158" y="122.571" width="66.6075" height="2.70651" transform="rotate(-10.2426 41.9158 122.571)" fill="#DC2A59"/>
-</g>
-<mask id="mask1_4810_101286" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="33" y="36" width="61" height="37">
-<path d="M35.7004 46.6837L93.9863 36.1517L91.5106 62.0399L33.2247 72.572L35.7004 46.6837Z" fill="#FF0101"/>
-</mask>
-<g mask="url(#mask1_4810_101286)">
-<path d="M32.3297 60.0132L56.2856 55.6845L55.5942 58.5598L32.8109 62.6766L32.3297 60.0132Z" fill="#DC2A59"/>
-<rect x="30.9914" y="67.8185" width="66.6075" height="2.70654" transform="rotate(-10.2426 30.9914 67.8185)" fill="#DC2A59"/>
-</g>
-<mask id="mask2_4810_101286" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="34" y="64" width="71" height="35">
-<path d="M93.2625 64.1299L34.9767 74.662L46.3558 98.0467L104.642 87.5146L93.2625 64.1299Z" fill="#FF0101"/>
-</mask>
-<g mask="url(#mask2_4810_101286)">
-<rect x="36.9016" y="85.3156" width="66.6075" height="2.70654" transform="rotate(-10.2426 36.9016 85.3156)" fill="#DC2A59"/>
-<rect x="32.7961" y="77.8063" width="66.6075" height="2.70653" transform="rotate(-10.2426 32.7961 77.8063)" fill="#DC2A59"/>
-<rect x="40.3417" y="92.9451" width="66.6075" height="2.70653" transform="rotate(-10.2426 40.3417 92.9451)" fill="#DC2A59"/>
-</g>
-</g>
-<g clip-path="url(#clip1_4810_101286)">
-<g opacity="0.35" filter="url(#filter1_f_4810_101286)">
-<path d="M159.96 55.7321L90.0298 38.9224L74.6811 66.2007L144.611 83.0105L159.96 55.7321Z" fill="#348899"/>
-<path d="M76.0339 97.1459L58.4288 127.709L128.359 144.519L145.964 113.956L144.611 83.0105L74.6811 66.2007L76.0339 97.1459Z" fill="#348899"/>
-</g>
-<path opacity="0.55" d="M90.2635 37.9501L89.5288 37.7735L89.1583 38.432L73.8096 65.7104L73.6696 65.9592L73.682 66.2444L75.0222 96.8989L57.5623 127.21L56.8948 128.369L58.1951 128.682L128.125 145.491L128.852 145.666L129.225 145.018L146.83 114.455L146.976 114.203L146.963 113.912L145.622 83.252L160.831 56.2224L161.48 55.0691L160.193 54.7598L90.2635 37.9501Z" fill="#348899" stroke="#348899" stroke-width="2"/>
-<path d="M76.034 97.1459L145.964 113.956L128.359 144.519L58.4288 127.709L76.034 97.1459Z" fill="#EAF8FB"/>
-<path d="M76.0338 97.1459L145.964 113.956L144.611 83.0104L74.6808 66.2007L76.0338 97.1459Z" fill="#C9ECF3"/>
-<path d="M90.0299 38.9223L159.96 55.732L144.611 83.0104L74.6812 66.2007L90.0299 38.9223Z" fill="#EAF8FB"/>
-<mask id="mask3_4810_101286" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="68" y="100" width="69" height="31">
-<path d="M81.4043 100.177L136.827 113.499L129.614 127.44L107.525 122.131L102.405 130.973L68.7084 122.873L81.4043 100.177Z" fill="#FF0101"/>
-</mask>
-<g mask="url(#mask3_4810_101286)">
-<rect x="75.8995" y="101.637" width="66.6075" height="2.70654" transform="rotate(13.5163 75.8995 101.637)" fill="#348899"/>
-<path d="M71.3239 108.948L133.292 123.843L132.167 126.357L70.6913 111.579L71.3239 108.948Z" fill="#348899"/>
-<rect x="67.7513" y="116.728" width="66.6075" height="2.70651" transform="rotate(13.5163 67.7513 116.728)" fill="#348899"/>
-</g>
-<mask id="mask4_4810_101286" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="79" y="44" width="72" height="38">
-<path d="M92.6367 44.7684L150.226 58.6116L137.53 81.3084L79.9408 67.4651L92.6367 44.7684Z" fill="#FF0101"/>
-</mask>
-<g mask="url(#mask4_4810_101286)">
-<path d="M84.1814 55.6102L107.851 61.2999L106.06 63.6529L83.5488 58.2417L84.1814 55.6102Z" fill="#348899"/>
-<rect x="79.8118" y="62.2148" width="66.6075" height="2.70654" transform="rotate(13.5163 79.8118 62.2148)" fill="#348899"/>
-</g>
-<mask id="mask5_4810_101286" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="80" y="70" width="60" height="40">
-<path d="M138.292 83.9271L80.7024 70.0838L81.6957 96.0711L139.285 109.914L138.292 83.9271Z" fill="#FF0101"/>
-</mask>
-<g mask="url(#mask5_4810_101286)">
-<rect x="78.1721" y="80.6101" width="66.6075" height="2.70654" transform="rotate(13.5163 78.1721 80.6101)" fill="#117083"/>
-<rect x="77.4398" y="72.0832" width="66.6075" height="2.70653" transform="rotate(13.5163 77.4398 72.0832)" fill="#117083"/>
-<rect x="78.2468" y="88.9789" width="66.6075" height="2.70653" transform="rotate(13.5163 78.2468 88.9789)" fill="#117083"/>
-</g>
-</g>
-<defs>
-<filter id="filter0_f_4810_101286" x="15.9013" y="17.5946" width="108.481" height="130.783" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
-<feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_4810_101286"/>
-</filter>
-<filter id="filter1_f_4810_101286" x="46.4288" y="26.9224" width="125.531" height="129.597" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
-<feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_4810_101286"/>
-</filter>
-<clipPath id="clip0_4810_101286">
-<rect width="109.547" height="112.659" fill="white" transform="translate(5 38.4794) rotate(-10.2426)"/>
-</clipPath>
-<clipPath id="clip1_4810_101286">
-<rect width="109.547" height="112.659" fill="white" transform="translate(67.8438 24.8904) rotate(13.5163)"/>
-</clipPath>
-</defs>
-</svg>
diff --git a/src/assets/form/finish.svg b/src/assets/form/finish.svg
deleted file mode 100644
index 356725562909f5db5ac0e3b8493693b66ab9aba5..0000000000000000000000000000000000000000
--- a/src/assets/form/finish.svg
+++ /dev/null
@@ -1,16 +0,0 @@
-<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
-<rect x="6.01224" y="2.61237" width="1" height="17" rx="0.5" transform="rotate(15 6.01224 2.61237)" stroke="white"/>
-<rect x="6.90873" y="6.99372" width="1" height="1" transform="rotate(15 6.90873 6.99372)" stroke="white"/>
-<rect x="5.87357" y="10.8574" width="1" height="1" transform="rotate(15 5.87357 10.8574)" stroke="white"/>
-<rect x="10.7725" y="8.029" width="1" height="1" transform="rotate(15 10.7725 8.029)" stroke="white"/>
-<rect x="9.73685" y="11.8926" width="1" height="1" transform="rotate(15 9.73685 11.8926)" stroke="white"/>
-<rect x="14.6363" y="9.06428" width="1" height="1" transform="rotate(15 14.6363 9.06428)" stroke="white"/>
-<rect x="13.6006" y="12.9279" width="1" height="1" transform="rotate(15 13.6006 12.9279)" stroke="white"/>
-<rect x="8.32279" y="9.44318" width="1" height="1" transform="rotate(15 8.32279 9.44318)" stroke="white"/>
-<rect x="12.1866" y="10.4785" width="1" height="1" transform="rotate(15 12.1866 10.4785)" stroke="white"/>
-<rect x="16.0503" y="11.5137" width="1" height="1" transform="rotate(15 16.0503 11.5137)" stroke="white"/>
-<rect x="9.35795" y="5.57941" width="1" height="1" transform="rotate(15 9.35795 5.57941)" stroke="white"/>
-<rect x="13.2217" y="6.61469" width="1" height="1" transform="rotate(15 13.2217 6.61469)" stroke="white"/>
-<rect x="17.0855" y="7.64997" width="1" height="1" transform="rotate(15 17.0855 7.64997)" stroke="white"/>
-<rect x="6.71928" y="3.8371" width="13" height="9" transform="rotate(15 6.71928 3.8371)" stroke="white"/>
-</svg>
\ No newline at end of file
diff --git a/src/assets/form/notValidate.svg b/src/assets/form/notValidate.svg
deleted file mode 100644
index 91ed2f0106bb79982cfc8ac2e9d2f49230f328bd..0000000000000000000000000000000000000000
--- a/src/assets/form/notValidate.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
-<circle cx="13" cy="13" r="13" fill="#DA6C2E"/>
-<path d="M13.25 14.5L13.25 6.00001" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M13.25 20.6066L13.25 20" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
-</svg>
diff --git a/src/assets/form/notValidateWithBorder.svg b/src/assets/form/notValidateWithBorder.svg
deleted file mode 100644
index 5b57de44d6c560745b5134fe4988235ea475c6dc..0000000000000000000000000000000000000000
--- a/src/assets/form/notValidateWithBorder.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-<circle cx="12" cy="12" r="11.5" fill="#DA6C2E" stroke="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M11.0835 7.00067C11.0835 6.49441 11.4939 6.084 12.0001 6.08398C12.5064 6.08397 12.9168 6.49437 12.9168 7.00063L12.917 14.0006C12.917 14.5069 12.5066 14.9173 12.0003 14.9173C11.4941 14.9173 11.0837 14.5069 11.0836 14.0007L11.0835 7.00067ZM11.0837 17.6896C11.0837 17.1833 11.4941 16.7729 12.0004 16.7729C12.5066 16.7729 12.917 17.1833 12.917 17.6896L12.917 18.0318C12.917 18.5381 12.5066 18.9485 12.0004 18.9485C11.4941 18.9485 11.0837 18.5381 11.0837 18.0318L11.0837 17.6896Z" fill="white"/>
-</svg>
diff --git a/src/assets/form/profileQuestions.svg b/src/assets/form/profileQuestions.svg
deleted file mode 100644
index ff870c287bb0fade821f23c7a98b12a6426d0959..0000000000000000000000000000000000000000
--- a/src/assets/form/profileQuestions.svg
+++ /dev/null
@@ -1,212 +0,0 @@
-<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
-  <rect width="200" height="200" fill="white" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M120.104 52.7464C120.131 52.7466 120.159 52.7467 120.187 52.7467C120.214 52.7467 120.242 52.7466 120.27 52.7464H190.285V52.72C190.514 52.7374 190.745 52.7462 190.978 52.7462C195.961 52.7462 200 48.7067 200 43.7238C200 38.9571 196.304 35.0537 191.621 34.724C191.654 34.2581 191.671 33.7878 191.671 33.3134C191.671 22.5809 182.971 13.8806 172.238 13.8806C171.662 13.8806 171.092 13.9056 170.528 13.9548C166.088 5.65012 157.332 0 147.256 0C132.691 0 120.883 11.8077 120.883 26.3731L120.883 26.3916C120.652 26.3796 120.42 26.3735 120.187 26.3735C112.904 26.3735 107 32.2774 107 39.5601C107 46.6106 112.533 52.3687 119.494 52.7288V52.7464H120.104Z"
-    fill="#FFDDDD" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M10.8947 90.1842C5.43002 90.1842 1 85.7542 1 80.2895C1 74.8248 5.43002 70.3947 10.8947 70.3947C12.9017 70.3947 14.7691 70.9922 16.3287 72.0191C16.0098 70.4971 15.8421 68.9194 15.8421 67.3026C15.8421 54.6655 26.0865 44.4211 38.7237 44.4211C41.0154 44.4211 43.2284 44.758 45.3159 45.3849C50.1664 40.2235 57.0555 37 64.6974 37C79.3838 37 91.2895 48.9057 91.2895 63.5921C91.2895 66.5533 90.8055 69.4014 89.9123 72.0617C92.9366 73.6455 95.0003 76.8141 95.0003 80.4648C95.0003 85.7001 90.7562 89.9441 85.5209 89.9441C85.3816 89.9441 85.2431 89.9411 85.1053 89.9352V90.1842H64.6974H38.7237H10.8947Z"
-    fill="#FFDDDD" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M172.34 38.8476C172.338 38.8476 172.336 38.8476 172.334 38.8476C172.332 38.8476 172.33 38.8476 172.328 38.8476H160.562H159.973V38.8059C157.976 38.5203 156.441 36.8031 156.441 34.7274C156.441 32.4518 158.286 30.6071 160.562 30.6071C161.3 30.6071 161.994 30.8015 162.593 31.142C162.419 30.4033 162.327 29.633 162.327 28.8413C162.327 23.3149 166.807 18.835 172.334 18.835C176.412 18.835 179.92 21.2741 181.479 24.7731C181.761 24.7387 182.048 24.721 182.34 24.721C185.984 24.721 188.983 27.4802 189.363 31.0232C189.908 30.7567 190.521 30.6071 191.169 30.6071C193.445 30.6071 195.29 32.4518 195.29 34.7274C195.29 37.0029 193.445 38.8476 191.169 38.8476C190.969 38.8476 190.773 38.8334 190.581 38.8059V38.8476H182.34H172.34Z"
-    fill="white" />
-  <path
-    d="M70.7209 52.9167C70.106 52.8694 69.5856 52.7038 69.1362 52.4436L64.027 49.487C64.4765 49.7472 64.9968 49.9127 65.6118 49.9837L70.7209 52.9167Z"
-    fill="#FF5D5C" />
-  <path
-    d="M59.655 55.7071L54.5459 52.7504C53.2686 51.9935 52.2279 50.5507 51.6838 48.0434L56.793 51.0001C57.3133 53.5073 58.3541 54.9502 59.655 55.7071Z"
-    fill="#FF5D5C" />
-  <path
-    d="M31.932 26.6375L65.2359 7.40732C66.0638 6.93426 66.797 6.88695 67.3411 7.19444L72.4502 10.1511C71.9062 9.84362 71.1729 9.89093 70.345 10.364L37.0411 29.5942C35.409 30.5403 34.1081 32.8111 34.1081 34.6797L34.179 60.6511C34.179 61.5736 34.5102 62.2359 35.0305 62.5434L29.9214 59.5867C29.401 59.2792 29.0699 58.6169 29.0699 57.6944L28.9989 31.723C28.9753 29.8544 30.2999 27.56 31.932 26.6375Z"
-    fill="#FF5D5C" />
-  <mask id="path-7-inside-1_14421_60386" fill="white">
-    <path
-      d="M37.0319 29.5938C35.3998 30.54 34.0989 32.8107 34.0989 34.6793L34.1698 60.6507C34.1698 62.5193 35.4944 63.2762 37.1265 62.3301L56.7825 50.9765C58.4855 58.9477 65.2267 56.2512 68.6565 54.2643C69.9101 53.5547 70.667 52.9634 70.7143 52.9161C67.2373 52.6086 66.5986 48.6112 66.6932 45.2524L70.4068 43.0999C72.0389 42.1538 73.3398 39.8831 73.3398 38.0144L73.2689 12.043C73.2689 10.1744 71.9443 9.4175 70.3122 10.3636L37.0319 29.5938Z" />
-  </mask>
-  <path
-    d="M37.0319 29.5938C35.3998 30.54 34.0989 32.8107 34.0989 34.6793L34.1698 60.6507C34.1698 62.5193 35.4944 63.2762 37.1265 62.3301L56.7825 50.9765C58.4855 58.9477 65.2267 56.2512 68.6565 54.2643C69.9101 53.5547 70.667 52.9634 70.7143 52.9161C67.2373 52.6086 66.5986 48.6112 66.6932 45.2524L70.4068 43.0999C72.0389 42.1538 73.3398 39.8831 73.3398 38.0144L73.2689 12.043C73.2689 10.1744 71.9443 9.4175 70.3122 10.3636L37.0319 29.5938Z"
-    fill="white" />
-  <path
-    d="M37.0319 29.5938L36.7811 29.1613L36.7817 29.1609L37.0319 29.5938ZM34.0989 34.6793L33.5989 34.6807V34.6793H34.0989ZM34.1698 60.6507L34.6698 60.6494V60.6507H34.1698ZM37.1265 62.3301L36.8757 61.8975L36.8764 61.8971L37.1265 62.3301ZM56.7825 50.9765L56.5324 50.5435L57.1278 50.1996L57.2714 50.872L56.7825 50.9765ZM68.6565 54.2643L68.4058 53.8316L68.4102 53.8292L68.6565 54.2643ZM70.7143 52.9161L70.7584 52.418L71.8251 52.5123L71.0679 53.2696L70.7143 52.9161ZM66.6932 45.2524L66.1934 45.2383L66.2013 44.9596L66.4425 44.8198L66.6932 45.2524ZM70.4068 43.0999L70.6576 43.5325L70.6576 43.5325L70.4068 43.0999ZM73.3398 38.0144L73.8398 38.0131V38.0144H73.3398ZM73.2689 12.043L72.7689 12.0444V12.043H73.2689ZM70.3122 10.3636L70.563 10.7962L70.5624 10.7966L70.3122 10.3636ZM37.2827 30.0264C36.5599 30.4454 35.8835 31.1769 35.3867 32.0401C34.8899 32.9033 34.5989 33.8527 34.5989 34.6793H33.5989C33.5989 33.6373 33.9584 32.517 34.52 31.5412C35.0817 30.5653 35.8718 29.6884 36.7811 29.1613L37.2827 30.0264ZM34.5989 34.6779L34.6698 60.6494L33.6698 60.6521L33.5989 34.6807L34.5989 34.6779ZM34.6698 60.6507C34.6698 61.4781 34.9589 61.9267 35.2834 62.1114C35.6094 62.2969 36.1501 62.3182 36.8757 61.8975L37.3773 62.7627C36.4709 63.2881 35.5332 63.4041 34.7888 62.9805C34.0431 62.5561 33.6698 61.6919 33.6698 60.6507H34.6698ZM36.8764 61.8971L56.5324 50.5435L57.0326 51.4095L37.3766 62.7631L36.8764 61.8971ZM57.2714 50.872C57.6825 52.7959 58.3844 54.0151 59.2094 54.7617C60.0295 55.5038 61.0176 55.8209 62.0878 55.8549C64.2659 55.9241 66.7042 54.8174 68.4058 53.8317L68.9071 54.697C67.179 55.6981 64.5318 56.9331 62.0561 56.8544C60.7995 56.8145 59.5685 56.4353 58.5385 55.5032C57.5134 54.5756 56.734 53.1427 56.2935 51.081L57.2714 50.872ZM68.4102 53.8292C69.0229 53.4823 69.5131 53.1651 69.8541 52.9301C70.0246 52.8126 70.1571 52.7162 70.2484 52.6474C70.3559 52.5665 70.3793 52.544 70.3608 52.5625L71.0679 53.2696C71.0257 53.3118 70.9367 53.381 70.8498 53.4464C70.7467 53.524 70.6028 53.6286 70.4215 53.7535C70.0587 54.0035 69.5436 54.3367 68.9028 54.6994L68.4102 53.8292ZM70.6703 53.4141C68.6921 53.2392 67.5309 51.9925 66.9001 50.414C66.2797 48.8614 66.1455 46.9409 66.1934 45.2383L67.193 45.2665C67.1464 46.9226 67.2842 48.6803 67.8287 50.0429C68.3629 51.3797 69.2595 52.2855 70.7584 52.418L70.6703 53.4141ZM66.4425 44.8198L70.1561 42.6673L70.6576 43.5325L66.944 45.685L66.4425 44.8198ZM70.1561 42.6673C70.8788 42.2484 71.5552 41.5168 72.052 40.6537C72.5489 39.7905 72.8398 38.8411 72.8398 38.0144H73.8398C73.8398 39.0564 73.4804 40.1767 72.9187 41.1525C72.357 42.1285 71.5669 43.0053 70.6576 43.5325L70.1561 42.6673ZM72.8398 38.0158L72.7689 12.0444L73.7689 12.0417L73.8398 38.0131L72.8398 38.0158ZM72.7689 12.043C72.7689 11.2156 72.4798 10.767 72.1553 10.5824C71.8293 10.3969 71.2887 10.3755 70.563 10.7962L70.0614 9.93106C70.9678 9.40561 71.9055 9.28965 72.6499 9.71323C73.3957 10.1376 73.7689 11.0018 73.7689 12.043H72.7689ZM70.5624 10.7966L37.2821 30.0268L36.7817 29.1609L70.0621 9.93071L70.5624 10.7966Z"
-    fill="#FF5D5C" mask="url(#path-7-inside-1_14421_60386)" />
-  <path
-    d="M45.4312 38.0156C45.4312 35.3664 47.2998 32.1496 49.5941 30.825C51.6756 29.6187 53.4023 30.3756 53.7098 32.5044C54.0173 30.0444 55.744 27.277 57.8255 26.0707C60.1199 24.7461 61.9885 25.8105 61.9885 28.436C61.9885 29.6187 61.6101 30.9196 60.9714 32.1259L53.7571 45.2062L46.5665 40.6411C45.8806 40.1917 45.4312 39.2929 45.4312 38.0156Z"
-    fill="#DA3635" />
-  <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.719 90.8662)" fill="#A0C7F0" />
-  <path
-    d="M99.7218 74.0342L194.232 126.054L194.235 128.601L99.7218 183.168L5.20909 128.601L5.20928 126.053L99.7218 74.0342Z"
-    fill="#4277AF" />
-  <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.719 71.4873)"
-    fill="url(#paint0_linear_14421_60386)" />
-  <circle cx="14.177" cy="14.177" r="14.177" transform="matrix(0.866025 -0.5 0.866025 0.5 69.8398 131.177)"
-    fill="#A0C7F0" />
-  <path
-    d="M85.2266 95L89.0903 96.0353L78.2199 136.604C77.934 137.671 76.8373 138.304 75.7704 138.018C74.7034 137.732 74.0703 136.636 74.3562 135.569L85.2266 95Z"
-    fill="#D6AD92" />
-  <path
-    d="M85.2266 95L89.0903 96.0353L83.6772 116.237C83.3913 117.304 82.2947 117.937 81.2277 117.651C80.1608 117.365 79.5276 116.269 79.8135 115.202L85.2266 95Z"
-    fill="#AE907B" />
-  <path
-    d="M85.2266 95L89.0903 96.0353L85.1412 110.774C84.8553 111.84 83.7586 112.474 82.6917 112.188C81.6247 111.902 80.9916 110.805 81.2774 109.738L85.2266 95Z"
-    fill="#88674F" />
-  <path
-    d="M91.2656 77L95.2635 77.1295L93.9042 119.107C93.8684 120.211 92.9445 121.077 91.8405 121.042C90.7365 121.006 89.8705 120.082 89.9063 118.978L91.2656 77Z"
-    fill="#AE907B" />
-  <path
-    d="M91.2656 77L95.2635 77.1295L94.1167 112.543C94.081 113.647 93.157 114.513 92.053 114.478C90.949 114.442 90.0831 113.518 90.1188 112.414L91.2656 77Z"
-    fill="#88674F" />
-  <path
-    d="M100.84 94.0352L104.704 92.9999L115.574 133.569C115.86 134.636 115.227 135.732 114.16 136.018C113.093 136.304 111.996 135.671 111.71 134.604L100.84 94.0352Z"
-    fill="#D6AD92" />
-  <path
-    d="M100.84 94.0352L104.704 92.9999L110.634 115.132C110.92 116.199 110.286 117.295 109.22 117.581C108.153 117.867 107.056 117.234 106.77 116.167L100.84 94.0352Z"
-    fill="#AE907B" />
-  <path
-    d="M100.84 94.0352L104.704 92.9999L109.089 109.367C109.375 110.434 108.742 111.531 107.675 111.817C106.608 112.103 105.511 111.469 105.225 110.402L100.84 94.0352Z"
-    fill="#88674F" />
-  <ellipse cx="20.1148" cy="20.3939" rx="20.1148" ry="20.3939" transform="matrix(0.866025 -0.5 0.866025 0.5 58 95.115)"
-    fill="#AE907B" />
-  <circle cx="18.7543" cy="18.7543" r="18.7543" transform="matrix(0.866025 -0.5 0.866025 0.5 60.8398 92.7548)"
-    fill="#D6AD92" />
-  <circle cx="12.4455" cy="12.4455" r="12.4455" transform="matrix(0.866025 -0.5 0.866025 0.5 71.7671 92.7549)"
-    fill="#E6BC9F" />
-  <rect width="20.1141" height="8.43723" rx="4.21861" transform="matrix(0.866025 0.5 -0.866025 0.5 125.39 134.488)"
-    fill="#DA3635" />
-  <path
-    d="M120.211 133.595C120.479 130.246 128.116 129.138 131.095 132.016L140.554 141.158C141.877 142.437 141.526 144.071 139.701 145.125C137.417 146.444 133.684 146.385 131.527 144.998L124.26 140.325C121.464 138.527 120.005 136.166 120.198 133.752L120.211 133.595Z"
-    fill="#A0C7F0" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M123.654 133.555L134.281 141.767C134.771 142.146 135.058 142.73 135.058 143.349V143.498C135.058 144.782 133.866 145.733 132.615 145.449L132.156 145.344C131.935 145.24 131.725 145.124 131.528 144.998L124.262 140.325C121.466 138.527 120.007 136.166 120.2 133.752L120.213 133.595C120.306 132.422 121.304 131.524 122.689 130.976C122.845 131.221 122.936 131.512 122.936 131.823V132.093C122.936 132.665 123.201 133.205 123.654 133.555Z"
-    fill="white" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M140.39 141.009L140.544 141.159C141.868 142.438 141.517 144.072 139.692 145.126C137.408 146.445 133.675 146.387 131.517 144.999L130.218 144.163C130.66 143.429 131.456 142.974 132.322 142.974H133.835H137.316C138.177 142.974 138.988 142.568 139.504 141.88L139.715 141.599C139.899 141.353 140.13 141.154 140.39 141.009Z"
-    fill="#769FCB" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M135.837 139.757C134.968 140.364 134.146 141.098 133.661 141.583C133.424 141.82 133.04 141.82 132.804 141.583C132.567 141.346 132.567 140.963 132.804 140.726C133.328 140.201 134.204 139.419 135.143 138.764C135.612 138.436 136.11 138.13 136.597 137.905C137.075 137.684 137.59 137.518 138.081 137.518C138.416 137.518 138.687 137.789 138.687 138.124C138.687 138.459 138.416 138.73 138.081 138.73C137.844 138.73 137.516 138.816 137.106 139.006C136.705 139.191 136.271 139.454 135.837 139.757Z"
-    fill="#769FCB" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M134.384 134.823C134.533 135.122 134.412 135.486 134.113 135.636C134.042 135.671 133.895 135.807 133.709 136.148C133.535 136.466 133.37 136.884 133.222 137.352C132.927 138.287 132.721 139.344 132.623 140.028C132.576 140.36 132.269 140.59 131.937 140.543C131.606 140.495 131.376 140.188 131.423 139.857C131.527 139.127 131.746 138.002 132.067 136.987C132.227 136.481 132.418 135.982 132.645 135.567C132.859 135.174 133.156 134.759 133.57 134.552C133.87 134.402 134.234 134.523 134.384 134.823Z"
-    fill="#769FCB" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M131.977 135.419C133.431 135.622 134.922 136.027 135.857 136.338C136.175 136.444 136.347 136.787 136.241 137.105C136.135 137.423 135.792 137.594 135.474 137.488C134.591 137.194 133.173 136.81 131.809 136.62C131.127 136.524 130.476 136.48 129.923 136.513C129.355 136.546 128.96 136.657 128.729 136.811C128.45 136.997 128.074 136.922 127.888 136.643C127.703 136.365 127.778 135.989 128.056 135.803C128.552 135.472 129.203 135.341 129.851 135.302C130.514 135.263 131.25 135.317 131.977 135.419Z"
-    fill="#769FCB" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M129.737 134.107C128.867 134.593 128.046 135.18 127.562 135.567C127.301 135.776 126.919 135.733 126.71 135.472C126.501 135.211 126.543 134.829 126.805 134.62C127.331 134.199 128.208 133.573 129.146 133.049C130.054 132.542 131.134 132.063 132.032 132.063C132.367 132.063 132.638 132.334 132.638 132.669C132.638 133.004 132.367 133.275 132.032 133.275C131.476 133.275 130.637 133.604 129.737 134.107Z"
-    fill="#769FCB" />
-  <path
-    d="M124.342 132.667C125.492 133.331 127.357 133.331 128.508 132.667C129.085 132.333 129.373 131.896 129.371 131.459L129.371 125.398L123.479 125.398L123.479 131.459C123.476 131.896 123.764 132.333 124.342 132.667Z"
-    fill="#FFCCB7" />
-  <path
-    d="M124.342 130.123C125.492 130.788 127.357 130.788 128.508 130.123C129.085 129.79 129.373 129.352 129.371 128.915L129.371 122.854L123.479 122.854L123.479 128.915C123.476 129.352 123.764 129.79 124.342 130.123Z"
-    fill="#EF937F" />
-  <rect width="20.1141" height="8.43723" rx="4.21861" transform="matrix(0.866025 0.5 -0.866025 0.5 102.277 143.334)"
-    fill="#DA3635" />
-  <path
-    d="M97.0977 142.442C97.3657 139.093 105.003 137.985 107.982 140.863L117.44 150.004C118.764 151.283 118.413 152.918 116.588 153.972C114.304 155.29 110.571 155.232 108.413 153.845L101.147 149.171C98.351 147.373 96.8921 145.012 97.0852 142.599L97.0977 142.442Z"
-    fill="#A0C7F0" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M100.59 142.584L111.155 150.614C111.653 150.992 111.945 151.581 111.945 152.206V152.345C111.945 153.629 110.753 154.58 109.502 154.295L109.042 154.191C108.822 154.087 108.612 153.971 108.415 153.845L101.148 149.171C98.3526 147.373 96.8937 145.012 97.0868 142.599L97.0993 142.442C97.1932 141.269 98.191 140.371 99.576 139.823C99.7322 140.067 99.8227 140.358 99.8227 140.67V141.036C99.8227 141.643 100.107 142.216 100.59 142.584Z"
-    fill="white" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M117.276 149.856L117.431 150.005C118.755 151.284 118.403 152.919 116.578 153.973C114.295 155.291 110.562 155.233 108.404 153.846L107.105 153.01C107.546 152.276 108.343 151.82 109.209 151.82H110.722H114.203C115.064 151.82 115.875 151.415 116.391 150.726L116.602 150.446C116.786 150.2 117.017 150.001 117.276 149.856Z"
-    fill="#769FCB" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M112.724 148.604C111.854 149.211 111.033 149.944 110.547 150.43C110.311 150.667 109.927 150.667 109.69 150.43C109.454 150.193 109.454 149.809 109.69 149.573C110.215 149.048 111.091 148.266 112.03 147.61C112.499 147.282 112.997 146.977 113.484 146.752C113.962 146.531 114.477 146.365 114.968 146.365C115.302 146.365 115.574 146.636 115.574 146.971C115.574 147.305 115.302 147.577 114.968 147.577C114.731 147.577 114.402 147.663 113.993 147.852C113.592 148.038 113.158 148.301 112.724 148.604Z"
-    fill="#769FCB" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M111.27 143.67C111.42 143.969 111.299 144.333 110.999 144.483C110.929 144.518 110.781 144.653 110.595 144.994C110.421 145.313 110.257 145.731 110.109 146.199C109.814 147.134 109.608 148.191 109.51 148.875C109.463 149.207 109.156 149.437 108.824 149.389C108.493 149.342 108.263 149.035 108.31 148.704C108.414 147.974 108.632 146.849 108.953 145.834C109.113 145.328 109.305 144.828 109.531 144.414C109.746 144.021 110.042 143.606 110.457 143.398C110.757 143.249 111.121 143.37 111.27 143.67Z"
-    fill="#769FCB" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M108.863 144.266C110.318 144.469 111.809 144.873 112.744 145.185C113.062 145.291 113.233 145.634 113.128 145.952C113.022 146.269 112.678 146.441 112.361 146.335C111.478 146.041 110.06 145.657 108.696 145.466C108.013 145.371 107.363 145.326 106.81 145.359C106.242 145.393 105.847 145.504 105.615 145.658C105.337 145.844 104.961 145.769 104.775 145.49C104.589 145.212 104.665 144.835 104.943 144.65C105.439 144.319 106.09 144.188 106.738 144.149C107.4 144.11 108.137 144.164 108.863 144.266Z"
-    fill="#769FCB" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M106.624 142.954C105.753 143.44 104.933 144.026 104.449 144.413C104.187 144.622 103.806 144.58 103.597 144.319C103.388 144.057 103.43 143.676 103.692 143.467C104.218 143.046 105.094 142.42 106.032 141.896C106.941 141.388 108.021 140.909 108.919 140.909C109.254 140.909 109.525 141.181 109.525 141.516C109.525 141.85 109.254 142.122 108.919 142.122C108.362 142.122 107.524 142.451 106.624 142.954Z"
-    fill="#769FCB" />
-  <path
-    d="M101.228 141.513C102.379 142.178 104.244 142.178 105.394 141.513C105.972 141.18 106.26 140.743 106.257 140.305L106.257 134.244L100.365 134.244L100.365 140.305C100.363 140.743 100.651 141.18 101.228 141.513Z"
-    fill="#FFCCB7" />
-  <path
-    d="M101.228 138.97C102.379 139.634 104.244 139.634 105.394 138.97C105.972 138.637 106.26 138.199 106.257 137.762L106.257 131.701L100.365 131.701L100.365 137.762C100.363 138.199 100.651 138.637 101.228 138.97Z"
-    fill="#EF937F" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M115.386 66C115.15 68.1745 113.594 70.3102 110.715 71.972C104.446 75.5916 94.2811 75.5916 88.0116 71.972C85.6055 70.5828 84.1228 68.8623 83.5635 67.0649C83.4456 67.5414 83.3911 68.0222 83.4001 68.5027L83.3794 68.5001L82.3385 86.0757C82.0156 91.5292 84.9156 96.884 90.562 101.26L99.9317 108.522C101.162 109.475 101.757 110.653 101.607 111.839L98.7226 134.642C98.6791 135.303 99.0943 135.972 99.9682 136.476C101.633 137.438 104.333 137.438 105.998 136.476C106.66 136.094 106.802 135.73 107.008 135.202C107.074 135.034 107.146 134.849 107.243 134.642L118.207 106.897C119.586 103.407 118.838 99.7476 116.087 96.5383L112.081 91.8636L124.126 99.3197C125.847 100.385 126.668 101.835 126.369 103.282L121.589 126.412C121.545 127.073 121.96 127.742 122.834 128.247C124.499 129.208 127.199 129.208 128.864 128.247C129.738 127.742 130.153 127.073 130.109 126.412L140.109 100.746C141.69 96.6882 140.518 92.4345 136.834 88.8601L115.921 68.5715C115.948 67.7072 115.77 66.8412 115.386 66Z"
-    fill="#4C4D53" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M131.266 123.512C127.042 128.888 124.18 125.343 126.919 105.506C127.435 101.769 126.133 97.9763 123.319 95.4636L114.545 87.6291C114.149 87.2759 113.556 87.3071 113.13 87.6226C112.36 88.1921 111.594 88.3918 110.35 88.4619C109.447 88.5127 109.005 89.6039 109.661 90.2256L115.058 95.3378L119.003 98.1775C120.194 99.0347 120.857 100.096 120.887 101.195L121.161 111.022L121.34 111.5V117.464L121.588 126.412C121.545 127.073 121.96 127.742 122.834 128.247C124.499 129.208 127.198 129.208 128.863 128.247C129.737 127.742 130.153 127.073 130.109 126.412L131.266 123.512ZM107.795 130.88C104.6 130.986 102.43 123.263 104.387 107.084C104.877 103.029 103.303 98.9535 100.049 96.4832L82.4942 83.1542L82.3234 85.9835C82.0092 91.1869 84.6293 96.3086 89.7896 100.578L98.3496 107.661C99.4006 108.531 99.9401 109.572 99.8886 110.632L98.7223 134.642C98.6788 135.303 99.094 135.972 99.9679 136.477C101.633 137.438 104.332 137.438 105.997 136.477C106.871 135.972 107.287 135.303 107.243 134.642L107.795 130.88Z"
-    fill="#333333" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M95.4665 27.3316C85.137 29.577 79.2296 38.3341 79.0057 47.3318H78.8398V64.5647C78.8398 68.5209 80.4809 72.0939 83.1194 74.6401L80.9907 77.9144L96.0867 87.7021C98.9098 89.5325 102.638 87.5062 102.638 84.1417C104.959 82.3429 104.812 78.7919 102.35 77.1914L102.036 76.987L113.341 70.4442C114.208 69.9421 114.889 69.2018 115.318 68.333L119.04 70.7526C121.279 72.2083 124.274 71.5732 125.73 69.334C126.862 67.5925 126.369 65.2628 124.627 64.1305L121.309 61.9733V43.1938L121.39 41.6535C121.856 32.7559 114.509 25.4154 105.612 25.8894L100.961 26.1372L95.4665 27.3316Z"
-    fill="#FF9C9B" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M104.438 75.322L102.116 73.8122C99.5937 72.1724 97.9437 69.4842 97.6234 66.4929L95.5682 47.2992C95.5682 47.2987 95.5678 47.2984 95.5674 47.2983C95.5669 47.2983 95.5664 47.2987 95.5664 47.2993V67.3551C95.5664 70.7396 97.2783 73.8944 100.116 75.7391L102.347 77.1895C104.633 78.676 104.923 81.8451 103.093 83.7302C103.084 83.7398 103.075 83.7495 103.066 83.7594C104.93 81.8783 104.649 78.682 102.35 77.1872L101.951 76.9277L104.438 75.322ZM102.602 84.7058C102.596 84.7353 102.591 84.7648 102.587 84.7942C102.582 84.8239 102.578 84.8538 102.575 84.8838C102.585 84.825 102.594 84.7657 102.602 84.7058Z"
-    fill="#DA3635" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M105.232 16.6523L95.8566 18.9655L96.2634 26.7943L96.0559 27.8022L94.9165 33.4102C94.4327 35.7913 95.6796 38.1129 97.7792 39.0899L97.9823 40.2209C98.5337 43.2923 101.471 45.3352 104.542 44.7837C107.613 44.2323 109.656 41.2954 109.105 38.224L106.765 25.1884L106.962 24.0477L106.538 23.9248L105.232 16.6523Z"
-    fill="#DA3635" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M111.657 5.34717L94.5839 8.41241L96.5731 19.4921L92.5352 19.6622L95.9965 25.4067L95.4724 28.4327C94.9812 31.269 96.8823 33.9666 99.7187 34.4579C101.101 34.6973 102.45 34.3685 103.527 33.6402C104.911 34.1386 106.44 34.2913 107.992 34.0128C112.707 33.1663 115.842 28.6581 114.996 23.9434L111.657 5.34717Z"
-    fill="#FFD2C4" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M112.234 31.9478C111.16 32.7029 109.908 33.2416 108.531 33.4888C103.477 34.3963 98.6435 31.0344 97.736 25.9798L96.7254 20.3506C96.637 19.8584 96.1987 19.5072 95.6991 19.5282L94.3787 19.5839C93.887 19.6046 93.4835 19.9799 93.4273 20.4688L93.4011 20.6972C93.3758 20.9166 93.424 21.1382 93.538 21.3275L95.2216 24.1217C95.2824 24.2225 95.3605 24.3117 95.4524 24.3852L96.0177 24.8373C96.1824 24.9689 96.425 24.9273 96.5364 24.7483C96.7066 24.4747 97.1246 24.5548 97.1815 24.872L97.9228 29.0009C98.3084 31.1487 99.4539 32.9688 101.033 34.2341C101.236 34.3972 101.502 34.4645 101.756 34.4069C102.226 34.3006 102.675 34.13 103.092 33.9034C103.373 33.751 103.703 33.7072 104.009 33.7976C105.262 34.1674 106.618 34.2587 107.991 34.0121C109.63 33.718 111.077 32.9815 112.234 31.9478Z"
-    fill="#EF937F" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M115.014 20.4058H113.153C110.869 20.4058 108.878 18.8513 108.325 16.6355L108.156 15.9608C107.627 13.8454 105.572 12.4823 103.418 12.8175L102.632 12.9397C100.605 13.2551 99.2853 15.2437 99.783 17.2348C100.022 18.1887 99.8465 19.199 99.3011 20.0172L97.1916 23.1814C96.9634 23.5237 96.5447 23.6855 96.1456 23.5858L94.5041 23.1754C92.4758 20.9266 91.2383 17.9309 91.2383 14.6419C91.2383 7.65997 96.815 2 103.694 2C109.467 2 114.323 5.98577 115.735 11.3938C117.3 12.1715 118.382 13.8333 118.382 15.7577C118.382 17.9656 116.958 19.8278 115.014 20.4058Z"
-    fill="#333333" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M122.17 71.5074L123.521 67.5586L121.509 67.4367C119.68 67.3259 118.2 65.9074 118.012 64.0846C117.993 63.9011 118.069 63.7208 118.215 63.6075L118.549 63.3473C119.004 62.9934 118.891 62.2775 118.35 62.0806C118.06 61.9753 117.867 61.7001 117.867 61.392V41.4189C117.867 39.8103 116.563 38.5063 114.955 38.5063C114.832 38.5063 114.736 38.6116 114.748 38.7336L115.621 48.1404C115.765 49.692 115.544 51.2558 114.977 52.707L114.864 52.9953C114.773 53.2274 114.727 53.4745 114.727 53.7237V57.6547C114.727 57.8832 114.766 58.11 114.842 58.3253L115.373 59.8179C116.002 61.584 116.063 63.5023 115.549 65.305L115.094 66.8994C114.964 67.3531 115.002 67.8262 115.181 68.2415L119.041 70.751C120.005 71.3776 121.109 71.6168 122.17 71.5074Z"
-    fill="#DA3635" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M102.352 85.7497L102.344 85.6175L88.6759 76.3234C87.8045 75.7308 87.9439 74.4066 88.9195 74.0084C90.1944 73.488 89.9219 71.6083 88.5518 71.4713L85.7012 71.1862C84.6538 71.0815 83.8668 70.1827 83.9013 69.1306L84.799 41.7507C84.8249 40.9592 84.4942 40.1978 83.8979 39.6767C82.2844 38.2664 79.7516 39.265 79.5346 41.3969L78.8672 47.9546V73.5629C78.8672 75.3113 79.7646 76.8501 81.124 77.7438L81.0142 77.9126L96.1102 87.7003C98.4459 89.2147 101.402 88.0891 102.352 85.7497Z"
-    fill="#DA3635" />
-  <ellipse cx="96.4787" cy="21.4493" rx="1.92787" ry="3.08459" fill="#FFD2C4" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M98.027 21.7513C98.0457 21.611 98.0556 21.4653 98.0556 21.3159C98.0556 20.1884 97.4931 19.2744 96.7993 19.2744C96.1054 19.2744 95.543 20.1884 95.543 21.3159C95.543 22.0656 95.7917 22.721 96.1623 23.0759C95.971 22.7728 95.8552 22.3772 95.8552 21.9443C95.8552 20.9903 96.4177 20.2169 97.1115 20.2169C97.3609 20.2169 97.3982 20.5724 97.4377 20.9491C97.464 21.1997 97.4913 21.4596 97.5827 21.6302C97.6541 21.7637 97.8295 21.7578 97.9964 21.7523C98.0066 21.7519 98.0168 21.7516 98.027 21.7513Z"
-    fill="#EF937F" />
-  <ellipse cx="105.301" cy="23.4348" rx="0.765209" ry="1.33954" transform="rotate(2.6285 105.301 23.4348)"
-    fill="#333333" />
-  <ellipse cx="112.703" cy="22.2175" rx="0.765209" ry="1.33912" transform="rotate(2.6285 112.703 22.2175)"
-    fill="#333333" />
-  <path d="M103.805 22.9914C104.57 22.5036 105.553 21.9842 106.889 22.3353" stroke="#333333" stroke-linecap="round" />
-  <path d="M112.285 20.6782C112.574 20.6782 113.106 20.6782 113.827 20.6782" stroke="#333333" stroke-linecap="round" />
-  <ellipse cx="110.34" cy="27" rx="1.5" ry="1" fill="#EF937F" />
-  <path d="M108.43 29.5752C108.858 29.9202 109.921 30.3204 110.743 29.1611" stroke="#333333" stroke-linecap="round" />
-  <path
-    d="M110.812 87.8705C109.744 87.2148 109.15 86.3488 109.15 85.449L109.15 84.587L129.953 73.2443C132.272 71.9795 135.885 71.955 138.256 73.1878L150.851 79.7381L150.851 80.8974C150.851 81.8127 150.236 82.6923 149.136 83.3513L128.685 95.5987C127.227 96.4716 124.801 96.4628 123.363 95.5793L110.812 87.8705Z"
-    fill="#989898" />
-  <rect width="30.8472" height="21.5482" rx="3" transform="matrix(0.866025 -0.5 0.866025 0.5 107.345 84.5134)"
-    fill="#C5C5C5" />
-  <rect width="25.3527" height="19.5019" rx="3" transform="matrix(0.866025 -0.5 0.866025 0.5 112.185 82.7427)"
-    fill="#444444" />
-  <rect width="1.94964" height="3.61134" rx="0.974821" transform="matrix(0.866025 -0.5 0.866025 0.5 115.936 88.1482)"
-    fill="#818181" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M114.784 81.2417C113.349 82.0701 113.349 83.4133 114.784 84.2417L115.455 84.629L135.621 88.7133L141.033 85.5888L117.971 79.4015L114.784 81.2417ZM122.658 76.6956L144.185 83.7688L146.341 82.5241L126.448 74.5075L122.658 76.6956ZM128.752 73.177L148.139 81.4858L148.433 81.3163C148.65 81.1907 148.835 81.0533 148.987 80.9077L130.967 71.8981L128.752 73.177Z"
-    fill="#656565" />
-  <path
-    d="M122.381 67.6153C120.929 69.5596 120.723 71.86 121.919 72.7533L123.623 74.4953L128.549 69.1283L127.176 65.7122C125.979 64.8189 123.833 65.6709 122.381 67.6153Z"
-    fill="#A0C7F1" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M122.405 72.5504L122.331 71.8357C122.223 70.7934 122.57 69.7552 123.283 68.9873C124.094 68.1139 125.282 67.6934 126.462 67.862L127.092 67.9519C127.974 68.0779 128.756 68.5855 129.23 69.3399L130.432 71.2524C131.623 73.1475 131.089 75.6467 129.226 76.8884L129.06 76.9757L129.801 79.9403C129.899 80.3321 130.251 80.6069 130.655 80.6069C130.789 80.6069 130.897 80.7154 130.897 80.8494V81.3349C130.897 81.6515 130.641 81.9082 130.324 81.9082C129.536 81.9082 128.816 81.463 128.463 80.7582L127.09 78.0124L126.833 78.1479C126.16 78.5022 125.333 78.364 124.811 77.81C123.454 76.3681 122.609 74.52 122.405 72.5504Z"
-    fill="#FFD2C4" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M122.331 71.8359L122.405 72.5506C122.609 74.5202 123.455 76.3683 124.812 77.8102C125.333 78.3642 126.16 78.5024 126.833 78.1481L127.091 78.0126L127.755 79.3412L127.764 79.3352L126.212 76.2324C125.891 75.5901 125.408 75.0427 124.81 74.6443C123.908 74.043 123.367 73.0307 123.367 71.9466V68.901C123.339 68.9294 123.311 68.9582 123.284 68.9875C122.571 69.7554 122.224 70.7936 122.331 71.8359ZM130.017 76.2031L127.922 73.368L129.115 76.9473L129.226 76.8886C129.524 76.6898 129.789 76.4587 130.017 76.2031Z"
-    fill="#EF937F" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M104.046 90.1728L102.077 88.0438L103.936 82.4665L106.167 81.1652L108.584 82.2806C109.947 82.5285 112.86 83.2474 113.603 84.1397C114.193 84.8474 115.83 84.8816 117.043 84.907C117.743 84.9216 118.301 84.9333 118.437 85.0693C118.809 85.4411 118.437 86.3706 117.136 86.5566C116.529 86.6432 115.802 86.4877 115.085 86.3345C114.264 86.1588 113.456 85.9861 112.86 86.1847C111.744 86.5566 111.93 87.8579 112.86 88.4157C113.789 88.9734 116.764 90.8325 117.322 91.3902C117.879 91.948 117.693 92.6916 117.322 93.0634C117.056 93.3289 115.559 92.8362 113.506 91.5853C111.358 92.7231 108.734 92.7582 106.512 91.5617L104.123 90.2752C104.097 90.2411 104.072 90.2069 104.047 90.1728L104.046 90.1728Z"
-    fill="#FFD2C4" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M102.078 88.0445L104.047 90.1735L104.047 90.1735C104.072 90.2076 104.098 90.2417 104.124 90.2758L106.513 91.5623C108.73 92.7563 111.348 92.7239 113.493 91.5931L112.308 91.0008L109.923 90.6338C107.312 90.2322 105.01 88.7045 103.626 86.4553L102.965 85.3813L102.078 88.0445ZM114.264 92.0281L114.308 92.0008L113.64 91.6665C113.854 91.7955 114.063 91.9161 114.264 92.0281Z"
-    fill="#EF937F" />
-  <path fill-rule="evenodd" clip-rule="evenodd"
-    d="M102.485 89.417C100.926 88.8989 100.345 86.4253 101.187 83.8919C102.028 81.3586 103.975 79.7248 105.534 80.2428L108.028 81.9076L108.01 81.9572C107.89 81.8819 107.762 81.821 107.625 81.7757C106.137 81.2813 104.277 82.8477 103.471 85.2745C102.763 87.4057 103.103 89.4917 104.204 90.3031L102.485 89.417ZM104.717 90.5679L104.868 90.6454L104.88 90.6122C104.825 90.6 104.771 90.5853 104.717 90.5679Z"
-    fill="#A0C7F1" />
-  <path
-    d="M109.973 22.2202V22.2202C110.105 23.19 110.586 24.0785 111.325 24.7202L111.869 25.1929C112.489 25.7314 112.474 26.6989 111.837 27.2172L111.344 27.6182"
-    stroke="#333333" stroke-linecap="round" />
-  <defs>
-    <linearGradient id="paint0_linear_14421_60386" x1="86.6776" y1="54.5845" x2="23.1101" y2="137.189"
-      gradientUnits="userSpaceOnUse">
-      <stop stop-color="white" />
-      <stop offset="1" stop-color="#D9EDFF" />
-    </linearGradient>
-  </defs>
-</svg>
\ No newline at end of file
diff --git a/src/assets/form/redirection.svg b/src/assets/form/redirection.svg
deleted file mode 100644
index 04d570cc35be7417a64dd928478f541c09738370..0000000000000000000000000000000000000000
--- a/src/assets/form/redirection.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-<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/schedule.svg b/src/assets/form/schedule.svg
deleted file mode 100644
index d1c8acb01a20d3ced6cf79cf0a871b96378f6ae8..0000000000000000000000000000000000000000
--- a/src/assets/form/schedule.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-<svg width="180" height="180" viewBox="0 0 180 180" fill="none" xmlns="http://www.w3.org/2000/svg">
-<circle cx="89.5" cy="89.5" r="67.2273" fill="#EAF8FB" stroke="#348899" stroke-width="12"/>
-<path opacity="0.35" d="M91.5 40C91.5 38.8954 90.6046 38 89.5 38C88.3954 38 87.5 38.8954 87.5 40H91.5ZM89.5 89.5H87.5C87.5 90.1511 87.817 90.7615 88.3496 91.1361L89.5 89.5ZM120.35 113.636C121.253 114.271 122.501 114.054 123.136 113.15C123.771 112.247 123.554 110.999 122.65 110.364L120.35 113.636ZM87.5 40V89.5H91.5V40H87.5ZM88.3496 91.1361L120.35 113.636L122.65 110.364L90.6504 87.8639L88.3496 91.1361Z" fill="#348899"/>
-<path d="M62.9482 109V81.1562L55.0908 85.876V79.2842C60.1357 76.8408 64.126 73.8174 67.0615 70.2139H69.8037V109H62.9482ZM83.9365 106.073L86.6523 100.431C89.4473 102.61 91.8467 103.7 93.8506 103.7C98.2803 103.7 100.495 100.976 100.495 95.5264C100.495 92.9072 99.9941 91 98.9922 89.8047C97.9902 88.5918 96.3115 87.9854 93.9561 87.9854C91.8291 87.9854 89.7549 89.0312 87.7334 91.123L85.0176 89.3564V70.2139H105.821V76.041H91.6094V82.9492C92.7695 82.4219 94.1582 82.1582 95.7754 82.1582C99.5723 82.1582 102.49 83.2568 104.529 85.4541C106.586 87.6514 107.614 90.7627 107.614 94.7881C107.614 104.614 103.035 109.527 93.877 109.527C90.0801 109.527 86.7666 108.376 83.9365 106.073ZM124.146 69.1855L126.335 72.1123C124.7 73.3604 123.698 74.2832 123.329 74.8809C122.96 75.4785 122.775 76.1113 122.775 76.7793C122.775 77.4824 123.206 78.2646 124.067 79.126C124.929 79.9873 125.359 80.9102 125.359 81.8945C125.359 84.7422 123.953 86.166 121.141 86.166C119.717 86.166 118.609 85.709 117.818 84.7949C117.045 83.8809 116.658 82.6504 116.658 81.1035C116.658 76.252 119.154 72.2793 124.146 69.1855Z" fill="#DC2A59"/>
-</svg>
diff --git a/src/assets/form/sprite.svg b/src/assets/form/sprite.svg
index ff0953c174f2fa399aae9ee5e304f8e820452596..7cbab591fd9179592cf53863461f740886c4d1a8 100644
--- a/src/assets/form/sprite.svg
+++ b/src/assets/form/sprite.svg
@@ -1,22 +1,4 @@
 <svg xmlns="http://www.w3.org/2000/svg">
-  <symbol id="checkVectorFull" width="24" height="24" viewBox="0 0 24 24" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <circle cx="12" cy="12" r="10" fill="#47C562" />
-    <path d="M7 12.8182L10.8889 16L17 9" stroke="white" stroke-width="3" stroke-linecap="round"
-      stroke-linejoin="round" />
-  </symbol>
-
-  <symbol id="checkVectorSquareEmpty" width="24" height="24" viewBox="0 0 24 24" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <rect x="3.5" y="3.5" width="17" height="17" rx="3.5" fill="white" stroke="#696969" />
-  </symbol>
-
-  <symbol id="checkVectorSquareFull" width="24" height="24" viewBox="0 0 24 24" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <rect x="3" y="3" width="18" height="18" rx="4" fill="#333333" />
-    <path d="M7 12.8182L10.8889 16L17 9" stroke="white" stroke-width="2" stroke-linecap="round"
-      stroke-linejoin="round" />
-  </symbol>
 
   <symbol id="accesLibre" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
     <rect width="44" height="44" rx="22" fill="#FFE5E4" />
@@ -41,65 +23,6 @@
       fill="#CD2524" />
   </symbol>
 
-  <symbol id="twitter" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
-    <path
-      d="M18.1818 6.43077C17.7682 7.04615 17.2807 7.56923 16.7193 8V8.36923C16.7193 9.75385 16.4091 11.0923 15.7886 12.3846C15.1977 13.6769 14.2523 14.7692 12.9523 15.6615C11.6523 16.5538 10.1602 17 8.47614 17C6.85114 17 5.35909 16.5385 4 15.6154C4.20682 15.6462 4.44318 15.6615 4.70909 15.6615C6.03864 15.6615 7.23523 15.2308 8.29886 14.3692C7.67841 14.3692 7.11705 14.1846 6.61477 13.8154C6.1125 13.4154 5.77273 12.9077 5.59545 12.2923C6.06818 12.3538 6.51136 12.3385 6.925 12.2462C6.24545 12.0923 5.68409 11.7385 5.24091 11.1846C4.79773 10.6308 4.57614 9.98462 4.57614 9.24615V9.2C4.98977 9.44615 5.43295 9.58462 5.90568 9.61539C5.66932 9.43077 5.44773 9.2 5.24091 8.92308C5.03409 8.64615 4.87159 8.35385 4.75341 8.04615C4.63523 7.70769 4.57614 7.38462 4.57614 7.07692C4.57614 6.52308 4.70909 6.01539 4.975 5.55385C6.54091 7.52308 8.55 8.58462 11.0023 8.73846C10.7955 7.72308 10.9875 6.84615 11.5784 6.10769C12.1693 5.36923 12.9227 5 13.8386 5C14.6659 5 15.3602 5.32308 15.9216 5.96923C16.5716 5.84615 17.192 5.6 17.783 5.23077C17.5466 5.93846 17.1182 6.49231 16.4977 6.89231C17.0591 6.83077 17.6205 6.67692 18.1818 6.43077Z"
-      fill="#696969" />
-  </symbol>
-
-
-  <symbol id="facebook" width="22" height="22" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
-    <path fill-rule="evenodd" clip-rule="evenodd"
-      d="M9.37737 18.1509H12.3208V12.4151H14.5094L14.9245 9.69811H12.3208V7.92453C12.3208 6.96855 12.8239 6.49056 13.8302 6.49056H15V4.18868C14.2956 4.06289 13.6038 4 12.9245 4C12.195 4 11.5661 4.13836 11.0377 4.41509C10.5346 4.69182 10.1321 5.10692 9.8302 5.66037C9.52832 6.21383 9.37737 6.86792 9.37737 7.62264V9.69811H7.00001V12.4151H9.37737V18.1509Z"
-      fill="#696969" />
-  </symbol>
-
-  <symbol id="linkedin" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
-    <path fill-rule="evenodd" clip-rule="evenodd"
-      d="M7.925 17H7.88437H5.20312V8.30625H7.925V17ZM6.54375 7.12812C6.11042 7.12812 5.74479 6.97917 5.44687 6.68125C5.14896 6.35625 5 5.99062 5 5.58437C5 5.15104 5.14896 4.78542 5.44687 4.4875C5.74479 4.1625 6.11042 4 6.54375 4C6.97708 4 7.34271 4.1625 7.64062 4.4875C7.96562 4.78542 8.12812 5.15104 8.12812 5.58437C8.12812 5.99062 7.96562 6.35625 7.64062 6.68125C7.34271 6.97917 6.97708 7.12812 6.54375 7.12812ZM18 12.2469V17H15.3187V12.775C15.3187 12.45 15.3052 12.1927 15.2781 12.0031C15.251 11.7865 15.1969 11.5427 15.1156 11.2719C15.0615 11.001 14.926 10.7979 14.7094 10.6625C14.4927 10.5271 14.2219 10.4594 13.8969 10.4594C13.274 10.4594 12.8542 10.6625 12.6375 11.0687C12.4208 11.475 12.3125 12.0167 12.3125 12.6937V17H9.59062V8.30625H12.1906V9.48437H12.2312C12.4208 9.10521 12.7323 8.78021 13.1656 8.50937C13.626 8.23854 14.1677 8.10312 14.7906 8.10312C15.4406 8.10312 15.9823 8.21146 16.4156 8.42812C16.876 8.61771 17.2146 8.91562 17.4312 9.32187C17.6479 9.70104 17.7969 10.1208 17.8781 10.5812C17.9594 11.0417 18 11.5969 18 12.2469Z"
-      fill="#696969" />
-  </symbol>
-
-  <svg id="instagram" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
-    <path fill-rule="evenodd" clip-rule="evenodd"
-      d="M11 6.89286C9.85714 6.89286 8.88095 7.29764 8.07143 8.10714C7.28571 8.89286 6.89286 9.85714 6.89286 11C6.89286 12.1429 7.28571 13.1191 8.07143 13.9286C8.88095 14.7143 9.85714 15.1071 11 15.1071C12.1429 15.1071 13.1071 14.7143 13.8929 13.9286C14.7024 13.1191 15.1071 12.1429 15.1071 11C15.1071 9.85714 14.7024 8.89286 13.8929 8.10714C13.1071 7.29764 12.1429 6.89286 11 6.89286ZM11 13.6786C10.2619 13.6786 9.63095 13.4166 9.10714 12.8929C8.58334 12.3691 8.32143 11.7381 8.32143 11C8.32143 10.2619 8.58334 9.63093 9.10714 9.10714C9.63095 8.58335 10.2619 8.32143 11 8.32143C11.7381 8.32143 12.3691 8.58335 12.8929 9.10714C13.4167 9.63093 13.6786 10.2619 13.6786 11C13.6786 11.7381 13.4167 12.3691 12.8929 12.8929C12.3691 13.4166 11.7381 13.6786 11 13.6786Z"
-      fill="#696969" />
-    <path
-      d="M16.2143 6.71429C16.2143 6.45236 16.1191 6.23808 15.9286 6.07143C15.7619 5.88093 15.5476 5.78571 15.2857 5.78571C15.0238 5.78571 14.7976 5.88093 14.6071 6.07143C14.4167 6.23808 14.3214 6.45236 14.3214 6.71429C14.3214 6.97621 14.4167 7.20236 14.6071 7.39286C14.7976 7.58335 15.0238 7.67857 15.2857 7.67857C15.5476 7.67857 15.7619 7.58335 15.9286 7.39286C16.1191 7.20236 16.2143 6.97621 16.2143 6.71429Z"
-      fill="#696969" />
-    <path fill-rule="evenodd" clip-rule="evenodd"
-      d="M18.9643 7.71429C18.9881 8.35714 19 9.45236 19 11C19 12.5476 18.9881 13.6429 18.9643 14.2857C18.8929 15.7381 18.4524 16.8691 17.6429 17.6786C16.8571 18.4643 15.7381 18.8809 14.2857 18.9286C13.6429 18.9762 12.5476 19 11 19C9.45238 19 8.35714 18.9762 7.71429 18.9286C6.26191 18.8571 5.14286 18.4286 4.35714 17.6429C4.04762 17.3571 3.79762 17.0238 3.60714 16.6429C3.41666 16.2619 3.2738 15.8929 3.17857 15.5357C3.10714 15.1786 3.07143 14.7619 3.07143 14.2857C3.0238 13.6429 3 12.5476 3 11C3 9.45236 3.0238 8.34522 3.07143 7.67857C3.14286 6.25 3.57143 5.14286 4.35714 4.35714C5.14286 3.54764 6.26191 3.10714 7.71429 3.03571C8.35714 3.01192 9.45238 3 11 3C12.5476 3 13.6429 3.01192 14.2857 3.03571C15.7381 3.10714 16.8571 3.54764 17.6429 4.35714C18.4524 5.14286 18.8929 6.26192 18.9643 7.71429ZM17.4286 15C17.3809 15.2857 17.3214 15.5238 17.25 15.7143C16.9643 16.4286 16.4524 16.9405 15.7143 17.25C15.5238 17.3214 15.2738 17.3809 14.9643 17.4286C14.6786 17.4762 14.3214 17.5119 13.8929 17.5357C13.4881 17.5595 13.1548 17.5714 12.8929 17.5714H9.07143C8.83334 17.5714 8.5 17.5595 8.07143 17.5357C7.66666 17.5119 7.30952 17.4762 7 17.4286C6.71429 17.3809 6.4762 17.3214 6.28571 17.25C5.57143 16.9643 5.05952 16.4524 4.75 15.7143C4.70238 15.5476 4.65477 15.3334 4.60714 15.0714C4.55952 14.8095 4.5238 14.5595 4.5 14.3214C4.4762 14.0595 4.45238 13.75 4.42857 13.3929V9.10714C4.42857 8.84522 4.44048 8.51192 4.46429 8.10714C4.48809 7.67857 4.5238 7.32143 4.57143 7.03571C4.61905 6.72621 4.67857 6.47621 4.75 6.28571C5.03571 5.54764 5.54762 5.03571 6.28571 4.75C6.4762 4.67857 6.71429 4.61907 7 4.57143C7.30952 4.52379 7.66666 4.48808 8.07143 4.46429C8.5 4.4405 8.84523 4.42857 9.10714 4.42857H12.8929C13.1548 4.42857 13.4881 4.4405 13.8929 4.46429C14.3214 4.48808 14.6786 4.52379 14.9643 4.57143C15.2738 4.61907 15.5238 4.67857 15.7143 4.75C16.4524 5.03571 16.9643 5.54764 17.25 6.28571C17.3214 6.47621 17.3809 6.72621 17.4286 7.03571C17.4762 7.32143 17.5119 7.67857 17.5357 8.10714C17.5595 8.51192 17.5714 8.84522 17.5714 9.10714V12.8929C17.5714 13.1548 17.5595 13.5 17.5357 13.9286C17.5119 14.3334 17.4762 14.6905 17.4286 15Z"
-      fill="#696969" />
-  </svg>
-
-
-  <symbol id="show" viewBox="0 0 24 25" xmlns="http://www.w3.org/2000/svg">
-    <path
-      d="M12 5.5C11.4477 5.5 11 5.94772 11 6.5V11.5H6C5.44772 11.5 5 11.9477 5 12.5C5 13.0523 5.44772 13.5 6 13.5H11V18.5C11 19.0523 11.4477 19.5 12 19.5C12.5523 19.5 13 19.0523 13 18.5V13.5H18C18.5523 13.5 19 13.0523 19 12.5C19 11.9477 18.5523 11.5 18 11.5H13V6.5C13 5.94772 12.5523 5.5 12 5.5Z"
-      stroke="none" />
-  </symbol>
-
-  <symbol id="hide" viewBox="0 0 24 25" xmlns="http://www.w3.org/2000/svg">
-    <path
-      d="M6 11.5C5.44772 11.5 5 11.9477 5 12.5C5 13.0523 5.44772 13.5 6 13.5C13.0974 13.5 10.2809 13.5 18 13.5C18.5523 13.5 19 13.0523 19 12.5C19 11.9477 18.5523 11.5 18 11.5C10.9004 11.5 13.7065 11.5 6 11.5Z"
-      stroke="none" />
-  </symbol>
-
-  <symbol id="plus" width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
-    <path d="M16 9.63623L16 22.3642" stroke="none" stroke-width="1.5" stroke-linecap="round" />
-    <path d="M22.3633 16L9.63536 16" stroke="none" stroke-width="1.5" stroke-linecap="round" />
-  </symbol>
-
-  <symbol id="minus" width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
-    <path d="M21.5 16L10.5 16" stroke="#333333" stroke-width="1.5" stroke-linecap="round" />
-  </symbol>
-  <symbol id="fold" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-    <path d="M6 16L12.5 9L19 16" stroke="black" stroke-linecap="round" stroke-linejoin="round" />
-  </symbol>
-
-  <symbol id="unfold" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
-    <path d="M6 10L12.5 17L19 10" stroke="black" stroke-linecap="round" stroke-linejoin="round" />
-  </symbol>
 
   <symbol id="conseillerNumFranceServices" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
     <rect width="40" height="40" rx="4" fill="#333333" />
@@ -132,8 +55,8 @@
 
 
 
-  <symbol id="accesLivresInformatiques" width="44" height="44" fill="none" stroke="none"
-    xmlns="http://www.w3.org/2000/svg" viewBox="0 0 44 44">
+  <symbol id="accesLivresInformatiques" fill="none" stroke="none" xmlns="http://www.w3.org/2000/svg"
+    viewBox="0 0 44 44">
     <path d="M7 10h30v17a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V10Z" fill="#fff" />
     <rect x="6.25" y="9.25" width="31.5" height="20.5" rx="2.75" stroke="#333" stroke-width="1.5" />
     <path d="M6 27a2 2 0 0 0 2 2h28a2 2 0 0 0 2-2H6Z" fill="#333" />
@@ -153,15 +76,7 @@
     <rect x="23.594" y="20.318" width="4.686" height=".795" rx=".398" fill="#DA3635" />
   </symbol>
 
-  <symbol id="print" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
-    <rect x="10" y="8" width="12" height="5" stroke-width="2" fill="none" />
-    <rect x="10" y="17" width="12" height="8" stroke-width="2" fill="none" />
-    <path fill-rule="evenodd" clip-rule="evenodd"
-      d="M6 12C5.44772 12 5 12.4477 5 13V21H9V17H23V21H27V13C27 12.4477 26.5523 12 26 12H6Z" />
-  </symbol>
-
-  <symbol id="donDeMateriels" width="44" height="44" viewBox="0 0 44 44" fill="none" stroke="none"
-    xmlns="http://www.w3.org/2000/svg">
+  <symbol id="donDeMateriels" viewBox="0 0 44 44" fill="none" stroke="none" xmlns="http://www.w3.org/2000/svg">
     <path fill-rule="evenodd" clip-rule="evenodd"
       d="M21.2492 15.1816H11.0902C10.3371 15.1816 9.72656 15.7922 9.72656 16.5453V20.6362L21.2492 20.6362V15.1816ZM9.72656 21.9998V30.1816C9.72656 30.9348 10.3371 31.5453 11.0902 31.5453H19.272H21.2492V21.9998H9.72656ZM22.7492 31.5453H24.7266H32.9084C33.6615 31.5453 34.272 30.9348 34.272 30.1816V21.9998H22.7492V31.5453ZM34.272 20.6362L22.7492 20.6362V15.1816H32.9084C33.6615 15.1816 34.272 15.7922 34.272 16.5453V20.6362Z"
       fill="#333333" />
@@ -177,7 +92,7 @@
       fill="#333333" />
   </symbol>
 
-  <symbol id="reconditionnementsDeMateriel" width="44" height="44" viewBox="0 0 44 44" fill="none" stroke="none"
+  <symbol id="reconditionnementsDeMateriel" viewBox="0 0 44 44" fill="none" stroke="none"
     xmlns="http://www.w3.org/2000/svg">
     <path fill-rule="evenodd" clip-rule="evenodd"
       d="M30.6441 10.0705C29.1883 9.68168 27.5706 10.0583 26.4285 11.2004C25.2864 12.3425 24.9098 13.9602 25.2985 15.416L21.8192 18.8954L24.9047 21.9809L28.3841 18.5015C29.8399 18.8903 31.4575 18.5136 32.5996 17.3716C33.7417 16.2295 34.1184 14.6118 33.7296 13.1561L31.5712 15.3145L28.9999 14.8002L28.4856 12.2289L30.6441 10.0705ZM22.8477 24.0379L19.7621 20.9524L15.2163 25.4982C13.7605 25.1095 12.1428 25.4861 11.0007 26.6282C9.85863 27.7703 9.48197 29.388 9.87077 30.8438L12.0294 28.6852L14.6007 29.1995L15.1149 31.7708L12.9564 33.9293C14.4121 34.3181 16.0298 33.9414 17.1718 32.7993C18.3139 31.6572 18.6906 30.0396 18.3018 28.5838L22.8477 24.0379Z"
@@ -189,63 +104,12 @@
       fill="#DA3635" />
   </symbol>
 
-  <symbol id="profileSkip" viewBox="0 0 180 180" fill="none" xmlns="http://www.w3.org/2000/svg">
-    <path
-      d="M139.5 140C139.5 140.828 140.172 141.5 141 141.5C141.828 141.5 142.5 140.828 142.5 140H139.5ZM26 140H24.5C24.5 140.828 25.1716 141.5 26 141.5V140ZM83.5 87L83.5 85.5L83.5 87ZM103.426 88.0228L103.262 89.5139L103.426 88.0228ZM63.5739 88.0223L63.7373 89.5133L63.5739 88.0223ZM103.426 141.5C104.254 141.5 104.926 140.828 104.926 140C104.926 139.172 104.254 138.5 103.426 138.5V141.5ZM63.7373 89.5133C69.4973 88.882 76.0577 88.4999 83.5 88.5L83.5 85.5C75.9551 85.4999 69.2853 85.8873 63.4105 86.5312L63.7373 89.5133ZM83.5 88.5C90.9421 88.5001 97.5024 88.8825 103.262 89.5139L103.589 86.5318C97.7145 85.8878 91.0448 85.5001 83.5 85.5L83.5 88.5ZM142.5 140C142.5 127.036 139.391 114.431 132.967 104.67C126.52 94.8734 116.745 87.9739 103.589 86.5318L103.262 89.5139C115.443 90.8492 124.456 97.1942 130.461 106.32C136.49 115.481 139.5 127.476 139.5 140H142.5ZM27.5 140C27.5 127.476 30.5094 115.481 36.5387 106.319C42.5441 97.1935 51.5563 90.8484 63.7373 89.5133L63.4105 86.5312C50.2549 87.9731 40.4801 94.8727 34.0327 104.67C27.6093 114.43 24.5 127.036 24.5 140H27.5ZM103.426 138.5H26V141.5H103.426V138.5Z"
-      fill="#DA3635" />
-    <circle cx="84.0416" cy="63.4879" r="30.9879" fill="white" stroke="#DA3635" stroke-width="3"
-      stroke-linejoin="round" />
-    <rect width="14.5252" height="61.023" transform="matrix(0.762691 0.646763 -0.646759 0.762694 146.689 79.541)"
-      fill="#348899" stroke="white" stroke-width="1.5" stroke-linejoin="round" />
-    <path
-      d="M157.768 88.9352C155.529 87.0368 150.344 82.6393 146.69 79.541C149.688 76.0059 154.598 75.2431 157.657 77.8373C160.716 80.4314 160.766 85.4002 157.768 88.9352Z"
-      fill="#83B6C1" stroke="white" stroke-width="1.5" stroke-linejoin="round" />
-    <path
-      d="M105.675 141.994C104.089 142.813 102.307 141.301 102.855 139.602L107.22 126.081L118.301 135.478L105.675 141.994Z"
-      fill="#83B6C1" stroke="white" stroke-width="1.5" stroke-linejoin="round" />
-  </symbol>
-
-  <symbol id="eyePassword" viewBox="0 0 22 16" xmlns="http://www.w3.org/2000/svg">
-    <path fill-rule="evenodd" clip-rule="evenodd"
-      d="M7.99519 3.00001C8.83101 2.37183 9.87111 2 11 2C13.7667 2 16 4.23333 16 7C16 9.76667 13.7667 12 11 12C8.23333 12 6 9.76667 6 7C6 6.5747 6.05278 6.162 6.15215 5.76809C6.45257 6.49223 7.16566 7 8 7C9.10667 7 10 6.10667 10 5C10 3.89333 9.10667 3 8 3C7.9984 3 7.9968 3 7.99519 3.00001Z"
-      stroke="none" />
-    <path d="M1 8C2.57273 3.90267 6.45455 1 11 1C15.5455 1 19.4273 3.90267 21 8" fill="none" stroke-width="1.5"
-      stroke-linecap="round" />
-    <path d="M1 8C2.57273 12.0973 6.45455 15 11 15C15.5455 15 19.4273 12.0973 21 8" fill="none" stroke-width="1.5"
-      stroke-linecap="round" />
-  </symbol>
-
-  <symbol id="eyePasswordInvisible" width="32" height="32" viewBox="0 0 32 32" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <path d="M6 14C7.57273 18.0973 11.4545 21 16 21C20.5455 21 24.4273 18.0973 26 14" stroke="#696969"
-      stroke-width="1.5" stroke-linecap="round" />
-  </symbol>
-
-  <symbol id="eyePasswordVisible" width="32" height="32" viewBox="0 0 32 32" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <path fill-rule="evenodd" clip-rule="evenodd"
-      d="M12.9952 11C13.831 10.3718 14.8711 10 16 10C18.7667 10 21 12.2333 21 15C21 17.7667 18.7667 20 16 20C13.2333 20 11 17.7667 11 15C11 14.5747 11.0528 14.162 11.1522 13.7681C11.4526 14.4922 12.1657 15 13 15C14.1067 15 15 14.1067 15 13C15 11.8933 14.1067 11 13 11C12.9984 11 12.9968 11 12.9952 11Z"
-      fill="#696969" />
-    <path d="M6 16C7.57273 11.9027 11.4545 9 16 9C20.5455 9 24.4273 11.9027 26 16" stroke="#696969" stroke-width="1.5"
-      stroke-linecap="round" />
-    <path d="M6 16C7.57273 20.0973 11.4545 23 16 23C20.5455 23 24.4273 20.0973 26 16" stroke="#696969"
-      stroke-width="1.5" stroke-linecap="round" />
-  </symbol>
-
   <symbol id="notValidate" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
     <path
       d="M7.99992 1.33337C4.31992 1.33337 1.33325 4.32004 1.33325 8.00004C1.33325 11.68 4.31992 14.6667 7.99992 14.6667C11.6799 14.6667 14.6666 11.68 14.6666 8.00004C14.6666 4.32004 11.6799 1.33337 7.99992 1.33337ZM7.99992 8.66671C7.63325 8.66671 7.33325 8.36671 7.33325 8.00004V5.33337C7.33325 4.96671 7.63325 4.66671 7.99992 4.66671C8.36659 4.66671 8.66659 4.96671 8.66659 5.33337V8.00004C8.66659 8.36671 8.36659 8.66671 7.99992 8.66671ZM8.66659 11.3334H7.33325V10H8.66659V11.3334Z"
       fill="#DA3635" />
   </symbol>
 
-  <symbol id="notValidateWithBorder" width="24" height="24" viewBox="0 0 24 24" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <circle cx="12" cy="12" r="11.5" fill="#DA6C2E" stroke="white" />
-    <path fill-rule="evenodd" clip-rule="evenodd"
-      d="M11.0835 7.00067C11.0835 6.49441 11.4939 6.084 12.0001 6.08398C12.5064 6.08397 12.9168 6.49437 12.9168 7.00063L12.917 14.0006C12.917 14.5069 12.5066 14.9173 12.0003 14.9173C11.4941 14.9173 11.0837 14.5069 11.0836 14.0007L11.0835 7.00067ZM11.0837 17.6896C11.0837 17.1833 11.4941 16.7729 12.0004 16.7729C12.5066 16.7729 12.917 17.1833 12.917 17.6896L12.917 18.0318C12.917 18.5381 12.5066 18.9485 12.0004 18.9485C11.4941 18.9485 11.0837 18.5381 11.0837 18.0318L11.0837 17.6896Z"
-      fill="white" />
-  </symbol>
-
 
   <symbol id="validate" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
     <path
@@ -253,53 +117,7 @@
       fill="#1D8844" />
   </symbol>
 
-  <symbol id="formClock" viewBox="0 0 146 146" fill="none" xmlns="http://www.w3.org/2000/svg">
-    <circle cx="73.2273" cy="73.8401" r="67.2273" fill="#EAF8FB" stroke="#348899" stroke-width="12" />
-    <path
-      d="M75.2275 24.3398C75.2275 23.2353 74.3321 22.3398 73.2275 22.3398C72.123 22.3398 71.2275 23.2353 71.2275 24.3398H75.2275ZM73.2275 73.8398H71.2275C71.2275 74.4855 71.5392 75.0914 72.0645 75.4669L73.2275 73.8398ZM94.4205 91.4476C95.3191 92.0899 96.5683 91.8822 97.2106 90.9836C97.853 90.085 97.6452 88.8358 96.7466 88.1935L94.4205 91.4476ZM71.2275 24.3398V73.8398H75.2275V24.3398H71.2275ZM72.0645 75.4669L94.4205 91.4476L96.7466 88.1935L74.3906 72.2128L72.0645 75.4669Z"
-      fill="#DC2A59" />
-  </symbol>
-
-  <symbol id="allophone" fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38 38">
-    <path stroke="none"
-      d="M33.896 6.667H19.25a.79.79 0 00-.244.038l-.185.062a.77.77 0 00-.488.975l.003.007 7.748 22.642-5.103 5.83a.771.771 0 00.581 1.279h12.334a3.854 3.854 0 003.854-3.854V10.52a3.854 3.854 0 00-3.854-3.854z"
-      fill="#fff"></path>
-    <path stroke="none" fill-rule="evenodd" clip-rule="evenodd"
-      d="M21.562 37.5h12.334a3.854 3.854 0 003.854-3.854V10.52a3.854 3.854 0 00-3.854-3.854H19.25a.79.79 0 00-.244.038l-.185.062a.77.77 0 00-.488.975l.003.007 7.748 22.642-5.103 5.83a.771.771 0 00.581 1.279zm.505-1h11.829a2.854 2.854 0 002.854-2.854V10.52a2.854 2.854 0 00-2.854-2.854H19.364l7.854 22.948-5.151 5.885z"
-      fill="#4F4F4F"></path>
-    <path stroke="none"
-      d="M27.66 30.243a.77.77 0 00-.702-.451H19.25a.771.771 0 00-.721 1.042L20.84 37a.77.77 0 001.301.235l5.396-6.166a.77.77 0 00.122-.827z"
-      fill="#117083"></path>
-    <path stroke="none" d="M33.896 17.458H23.104a.77.77 0 010-1.541h10.792a.77.77 0 010 1.541z" fill="#4F4F4F">
-    </path>
-    <path stroke="none"
-      d="M27.73 17.458a.77.77 0 01-.772-.77v-1.542a.77.77 0 111.542 0v1.541a.77.77 0 01-.77.771zm-2.313 9.25a.77.77 0 01-.448-1.398c3.377-2.399 5.843-7.289 5.843-8.622a.771.771 0 011.542 0c0 2.031-2.97 7.378-6.49 9.877a.77.77 0 01-.447.143z"
-      fill="#4F4F4F"></path>
-    <path stroke="none"
-      d="M31.583 28.25a.77.77 0 01-.52-.202c-.559-.512-5.486-5.063-6.36-7.216a.771.771 0 011.429-.582c.63 1.554 4.526 5.334 5.974 6.659a.77.77 0 01-.523 1.341z"
-      fill="#4F4F4F"></path>
-    <path stroke="none"
-      d="M27.688 30.313L17.666 1.02a.77.77 0 00-.73-.521H4.604A3.854 3.854 0 00.75 4.354V27.48a3.854 3.854 0 003.854 3.854h22.354a.77.77 0 00.73-1.02z"
-      fill="#348899"></path>
-    <path stroke="none"
-      d="M15.396 22.083a.77.77 0 01-.726-.511l-3.128-8.76-3.128 8.76a.77.77 0 01-1.451-.518l3.854-10.792a.802.802 0 011.45 0l3.855 10.791a.77.77 0 01-.726 1.03z"
-      fill="#FAFAFA"></path>
-    <path stroke="none" d="M13.083 17.458H10a.77.77 0 010-1.541h3.083a.77.77 0 110 1.541z" fill="#FAFAFA"></path>
-  </symbol>
-
-  <symbol id="handicap" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
-    <path
-      d="M14.6842 7.66864C16.614 7.66864 18.1784 6.06389 18.1784 4.08432C18.1784 2.10475 16.614 0.5 14.6842 0.5C12.7545 0.5 11.1901 2.10475 11.1901 4.08432C11.1901 6.06389 12.7545 7.66864 14.6842 7.66864Z"
-      fill="#348899" />
-    <path stroke="none"
-      d="M11.0934 16.9949C10.829 17.0917 10.5701 17.202 10.3177 17.3252C7.53826 18.6817 5.55162 21.5888 5.42994 25.0418C5.25658 29.9618 8.92462 34.0264 13.5426 34.1976C17.3702 34.3395 20.7328 31.7703 21.8737 28.0773L26.3538 29.5417C24.6038 35.2066 19.4074 39.2554 13.3723 39.0317C6.09047 38.7617 0.467055 32.3856 0.731958 24.8677C0.918664 19.5689 3.97543 15.0672 8.30382 12.9548C8.69872 12.7621 9.10428 12.5891 9.51938 12.4373L11.0934 16.9949Z"
-      fill="#333333" />
-    <path
-      d="M17.1672 10.9313C17.016 9.60345 15.8455 8.65494 14.5527 8.81268C13.6717 8.9202 12.9613 9.51373 12.646 10.3012C12.4923 10.5803 12.4335 10.897 12.4695 11.2047C12.469 11.303 12.4743 11.4025 12.4857 11.5026L13.7476 22.5855C13.8759 23.7123 14.749 24.595 15.8478 24.7088L26.2094 25.7814L29.5025 33.4144C30.0295 34.6361 31.4215 35.1857 32.6117 34.6419C33.8018 34.0983 34.3393 32.6672 33.8122 31.4455L29.9653 22.5289C29.6229 21.7351 28.8923 21.1915 28.051 21.1044L18.2096 20.0856L17.8595 17.0114L18.0599 17.21L19.0954 16.1816L18.0599 17.21C18.4504 17.5973 18.9639 17.8388 19.5137 17.8938L23.7649 18.3188C24.6044 18.4027 25.3548 17.7952 25.4409 16.9619C25.527 16.1286 24.9163 15.3851 24.0767 15.3012L20.0573 14.8993L17.3087 12.1738L17.1672 10.9313Z"
-      fill="#348899" />
-  </symbol>
-
-  <symbol id="venteMaterielPrixSolidaire" width="44" height="44" viewBox="0 0 44 44" fill="none" stroke="none"
+  <symbol id="venteMaterielPrixSolidaire" viewBox="0 0 44 44" fill="none" stroke="none"
     xmlns="http://www.w3.org/2000/svg">
     <path d="M6 14H26V25.5C26 26.0523 25.5523 26.5 25 26.5H7C6.44772 26.5 6 26.0523 6 25.5V14Z" fill="white" />
     <rect x="5.25" y="13.25" width="21.5" height="14" rx="1.75" stroke="#333333" stroke-width="1.5" />
@@ -314,44 +132,6 @@
       fill="#DA3635" />
   </symbol>
 
-  <symbol id="close" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
-    <path
-      d="M27.0279 11.9135C27.5486 11.3928 28.2873 11.2873 28.6778 11.6778C29.0683 12.0683 28.9628 12.807 28.4421 13.3277L13.3572 28.4127C12.8365 28.9334 12.0978 29.0389 11.7072 28.6484C11.3167 28.2578 11.4222 27.5192 11.9429 26.9985L27.0279 11.9135Z"
-      fill="#333333" />
-    <path
-      d="M28.0279 27.0279C28.5486 27.5486 28.6541 28.2873 28.2636 28.6778C27.8731 29.0683 27.1344 28.9628 26.6137 28.4421L11.5287 13.3572C11.008 12.8365 10.9025 12.0978 11.293 11.7072C11.6836 11.3167 12.4223 11.4222 12.943 11.9429L28.0279 27.0279Z"
-      fill="#333333" />
-  </symbol>
-  <symbol id="structureCreated" width="180" height="180" viewBox="0 0 180 180" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <mask id="path-1-outside-1_5987_73910" maskUnits="userSpaceOnUse" x="16" y="14" width="109" height="141"
-      fill="black">
-      <rect fill="white" x="16" y="14" width="109" height="141" />
-      <path fill-rule="evenodd" clip-rule="evenodd"
-        d="M28.5545 44.4103C21.5551 47.3434 17 54.1911 17 61.7802V153.793L60.9444 153.793V125.543C60.9444 120.343 65.1604 116.127 70.3611 116.127C75.5618 116.127 79.7778 120.343 79.7778 125.543V153.793L123.722 153.793V62.1604C123.722 54.3809 118.939 47.402 111.683 44.5954L102.098 40.8877C99.4214 39.8523 97.0166 38.2188 95.0676 36.1119L79.265 19.0294C74.4112 13.7825 66.1626 13.6404 61.1309 18.717L43.3554 36.6511C41.6129 38.4091 39.541 39.8064 37.258 40.7631L28.5545 44.4103ZM79.7778 37.6544C79.7778 42.8551 75.5618 47.071 70.3611 47.071C65.1604 47.071 60.9444 42.8551 60.9444 37.6544C60.9444 32.4537 65.1604 28.2377 70.3611 28.2377C75.5618 28.2377 79.7778 32.4537 79.7778 37.6544ZM37.4028 109.443C32.9491 110.19 29.5556 114.064 29.5556 118.73V127.113H37.4028V109.443ZM29.5556 146.98V130.252H37.4028V146.98H29.5556ZM40.5417 146.98V130.252H48.3889V146.98H40.5417ZM48.3889 118.73V127.113H40.5417V109.443C44.9953 110.19 48.3889 114.064 48.3889 118.73ZM92.3333 118.73C92.3333 114.064 95.7269 110.19 100.181 109.443V127.113H92.3333V118.73ZM92.3333 130.252V146.98H100.181V130.252H92.3333ZM103.319 130.252V146.98H111.167V130.252H103.319ZM111.167 127.113V118.73C111.167 114.064 107.773 110.19 103.319 109.443V127.113H111.167ZM100.181 59.6266C95.7269 60.3738 92.3333 64.2471 92.3333 68.9131V77.2961H100.181V59.6266ZM92.3333 97.1631V80.435H100.181V97.1631H92.3333ZM103.319 97.1631V80.435H111.167V97.1631H103.319ZM111.167 68.9131V77.2961H103.319V59.6266C107.773 60.3738 111.167 64.2471 111.167 68.9131ZM60.9444 68.9131C60.9444 64.2471 64.338 60.3738 68.7917 59.6266V77.2961H60.9444V68.9131ZM60.9444 80.435V97.1631H68.7917V80.435H60.9444ZM71.9306 80.435V97.1631H79.7778V80.435H71.9306ZM79.7778 77.2961V68.9131C79.7778 64.2471 76.3842 60.3738 71.9306 59.6266V77.2961H79.7778ZM37.4028 59.6266C32.9491 60.3738 29.5556 64.2471 29.5556 68.9131V77.2961H37.4028V59.6266ZM29.5556 97.1631V80.435H37.4028V97.1631H29.5556ZM40.5417 97.1631V80.435H48.3889V97.1631H40.5417ZM48.3889 68.9131V77.2961H40.5417V59.6266C44.9953 60.3738 48.3889 64.2471 48.3889 68.9131Z" />
-    </mask>
-    <path fill-rule="evenodd" clip-rule="evenodd"
-      d="M28.5545 44.4103C21.5551 47.3434 17 54.1911 17 61.7802V153.793L60.9444 153.793V125.543C60.9444 120.343 65.1604 116.127 70.3611 116.127C75.5618 116.127 79.7778 120.343 79.7778 125.543V153.793L123.722 153.793V62.1604C123.722 54.3809 118.939 47.402 111.683 44.5954L102.098 40.8877C99.4214 39.8523 97.0166 38.2188 95.0676 36.1119L79.265 19.0294C74.4112 13.7825 66.1626 13.6404 61.1309 18.717L43.3554 36.6511C41.6129 38.4091 39.541 39.8064 37.258 40.7631L28.5545 44.4103ZM79.7778 37.6544C79.7778 42.8551 75.5618 47.071 70.3611 47.071C65.1604 47.071 60.9444 42.8551 60.9444 37.6544C60.9444 32.4537 65.1604 28.2377 70.3611 28.2377C75.5618 28.2377 79.7778 32.4537 79.7778 37.6544ZM37.4028 109.443C32.9491 110.19 29.5556 114.064 29.5556 118.73V127.113H37.4028V109.443ZM29.5556 146.98V130.252H37.4028V146.98H29.5556ZM40.5417 146.98V130.252H48.3889V146.98H40.5417ZM48.3889 118.73V127.113H40.5417V109.443C44.9953 110.19 48.3889 114.064 48.3889 118.73ZM92.3333 118.73C92.3333 114.064 95.7269 110.19 100.181 109.443V127.113H92.3333V118.73ZM92.3333 130.252V146.98H100.181V130.252H92.3333ZM103.319 130.252V146.98H111.167V130.252H103.319ZM111.167 127.113V118.73C111.167 114.064 107.773 110.19 103.319 109.443V127.113H111.167ZM100.181 59.6266C95.7269 60.3738 92.3333 64.2471 92.3333 68.9131V77.2961H100.181V59.6266ZM92.3333 97.1631V80.435H100.181V97.1631H92.3333ZM103.319 97.1631V80.435H111.167V97.1631H103.319ZM111.167 68.9131V77.2961H103.319V59.6266C107.773 60.3738 111.167 64.2471 111.167 68.9131ZM60.9444 68.9131C60.9444 64.2471 64.338 60.3738 68.7917 59.6266V77.2961H60.9444V68.9131ZM60.9444 80.435V97.1631H68.7917V80.435H60.9444ZM71.9306 80.435V97.1631H79.7778V80.435H71.9306ZM79.7778 77.2961V68.9131C79.7778 64.2471 76.3842 60.3738 71.9306 59.6266V77.2961H79.7778ZM37.4028 59.6266C32.9491 60.3738 29.5556 64.2471 29.5556 68.9131V77.2961H37.4028V59.6266ZM29.5556 97.1631V80.435H37.4028V97.1631H29.5556ZM40.5417 97.1631V80.435H48.3889V97.1631H40.5417ZM48.3889 68.9131V77.2961H40.5417V59.6266C44.9953 60.3738 48.3889 64.2471 48.3889 68.9131Z"
-      fill="#DA3635" />
-    <path
-      d="M28.5545 44.4103L28.941 45.3326L28.5545 44.4103ZM17 153.793H16V154.793H17L17 153.793ZM60.9444 153.793V154.793H61.9444V153.793H60.9444ZM79.7778 153.793H78.7778V154.793H79.7778V153.793ZM123.722 153.793V154.793H124.722V153.793H123.722ZM111.683 44.5954L111.323 45.528L111.683 44.5954ZM102.098 40.8877L102.459 39.9551L102.098 40.8877ZM95.0676 36.1119L95.8017 35.4328L95.0676 36.1119ZM79.265 19.0294L79.9991 18.3504V18.3504L79.265 19.0294ZM61.1309 18.717L61.8411 19.4209L61.1309 18.717ZM43.3554 36.6511L44.0657 37.355L43.3554 36.6511ZM37.258 40.7631L36.8716 39.8408L37.258 40.7631ZM37.4028 109.443H38.4028V108.261L37.2373 108.457L37.4028 109.443ZM29.5556 127.113H28.5556V128.113H29.5556V127.113ZM37.4028 127.113V128.113H38.4028V127.113H37.4028ZM29.5556 146.98H28.5556V147.98H29.5556V146.98ZM29.5556 130.252V129.252H28.5556V130.252H29.5556ZM37.4028 130.252H38.4028V129.252H37.4028V130.252ZM37.4028 146.98V147.98H38.4028V146.98H37.4028ZM40.5417 146.98H39.5417V147.98H40.5417V146.98ZM40.5417 130.252V129.252H39.5417V130.252H40.5417ZM48.3889 130.252H49.3889V129.252H48.3889V130.252ZM48.3889 146.98V147.98H49.3889V146.98H48.3889ZM48.3889 127.113V128.113H49.3889V127.113H48.3889ZM40.5417 127.113H39.5417V128.113H40.5417V127.113ZM40.5417 109.443L40.7071 108.457L39.5417 108.261V109.443H40.5417ZM100.181 109.443H101.181V108.261L100.015 108.457L100.181 109.443ZM100.181 127.113V128.113H101.181V127.113H100.181ZM92.3333 127.113H91.3333V128.113H92.3333V127.113ZM92.3333 130.252V129.252H91.3333V130.252H92.3333ZM92.3333 146.98H91.3333V147.98H92.3333V146.98ZM100.181 146.98V147.98H101.181V146.98H100.181ZM100.181 130.252H101.181V129.252H100.181V130.252ZM103.319 130.252V129.252H102.319V130.252H103.319ZM103.319 146.98H102.319V147.98H103.319V146.98ZM111.167 146.98V147.98H112.167V146.98H111.167ZM111.167 130.252H112.167V129.252H111.167V130.252ZM111.167 127.113V128.113H112.167V127.113H111.167ZM103.319 109.443L103.485 108.457L102.319 108.261V109.443H103.319ZM103.319 127.113H102.319V128.113H103.319V127.113ZM100.181 59.6266H101.181V58.4449L100.015 58.6404L100.181 59.6266ZM92.3333 77.2961H91.3333V78.2961H92.3333V77.2961ZM100.181 77.2961V78.2961H101.181V77.2961H100.181ZM92.3333 97.1631H91.3333V98.1631H92.3333V97.1631ZM92.3333 80.435V79.435H91.3333V80.435H92.3333ZM100.181 80.435H101.181V79.435H100.181V80.435ZM100.181 97.1631V98.1631H101.181V97.1631H100.181ZM103.319 97.1631H102.319V98.1631H103.319V97.1631ZM103.319 80.435V79.435H102.319V80.435H103.319ZM111.167 80.435H112.167V79.435H111.167V80.435ZM111.167 97.1631V98.1631H112.167V97.1631H111.167ZM111.167 77.2961V78.2961H112.167V77.2961H111.167ZM103.319 77.2961H102.319V78.2961H103.319V77.2961ZM103.319 59.6266L103.485 58.6404L102.319 58.4449V59.6266H103.319ZM68.7917 59.6266H69.7917V58.4449L68.6262 58.6404L68.7917 59.6266ZM68.7917 77.2961V78.2961H69.7917V77.2961H68.7917ZM60.9444 77.2961H59.9444V78.2961H60.9444V77.2961ZM60.9444 80.435V79.435H59.9444V80.435H60.9444ZM60.9444 97.1631H59.9444V98.1631H60.9444V97.1631ZM68.7917 97.1631V98.1631H69.7917V97.1631H68.7917ZM68.7917 80.435H69.7917V79.435H68.7917V80.435ZM71.9306 80.435V79.435H70.9306V80.435H71.9306ZM71.9306 97.1631H70.9306V98.1631H71.9306V97.1631ZM79.7778 97.1631V98.1631H80.7778V97.1631H79.7778ZM79.7778 80.435H80.7778V79.435H79.7778V80.435ZM79.7778 77.2961V78.2961H80.7778V77.2961H79.7778ZM71.9306 59.6266L72.096 58.6404L70.9306 58.4449V59.6266H71.9306ZM71.9306 77.2961H70.9306V78.2961H71.9306V77.2961ZM37.4028 59.6266H38.4028V58.4449L37.2373 58.6404L37.4028 59.6266ZM29.5556 77.2961H28.5556V78.2961H29.5556V77.2961ZM37.4028 77.2961V78.2961H38.4028V77.2961H37.4028ZM29.5556 97.1631H28.5556V98.1631H29.5556V97.1631ZM29.5556 80.435V79.435H28.5556V80.435H29.5556ZM37.4028 80.435H38.4028V79.435H37.4028V80.435ZM37.4028 97.1631V98.1631H38.4028V97.1631H37.4028ZM40.5417 97.1631H39.5417V98.1631H40.5417V97.1631ZM40.5417 80.435V79.435H39.5417V80.435H40.5417ZM48.3889 80.435H49.3889V79.435H48.3889V80.435ZM48.3889 97.1631V98.1631H49.3889V97.1631H48.3889ZM48.3889 77.2961V78.2961H49.3889V77.2961H48.3889ZM40.5417 77.2961H39.5417V78.2961H40.5417V77.2961ZM40.5417 59.6266L40.7071 58.6404L39.5417 58.4449V59.6266H40.5417ZM28.168 43.488C20.7969 46.5768 16 53.7881 16 61.7802H18C18 54.594 22.3132 48.11 28.941 45.3326L28.168 43.488ZM16 61.7802V153.793H18V61.7802H16ZM17 154.793L60.9444 154.793V152.793L17 152.793L17 154.793ZM61.9444 153.793V125.543H59.9444V153.793H61.9444ZM61.9444 125.543C61.9444 120.895 65.7127 117.127 70.3611 117.127V115.127C64.6081 115.127 59.9444 119.79 59.9444 125.543H61.9444ZM70.3611 117.127C75.0095 117.127 78.7778 120.895 78.7778 125.543H80.7778C80.7778 119.79 76.1141 115.127 70.3611 115.127V117.127ZM78.7778 125.543V153.793H80.7778V125.543H78.7778ZM79.7778 154.793L123.722 154.793V152.793L79.7778 152.793V154.793ZM124.722 153.793V62.1604H122.722V153.793H124.722ZM124.722 62.1604C124.722 53.9678 119.685 46.6183 112.044 43.6627L111.323 45.528C118.193 48.1856 122.722 54.794 122.722 62.1604H124.722ZM112.044 43.6627L102.459 39.9551L101.737 41.8204L111.323 45.528L112.044 43.6627ZM102.459 39.9551C99.9243 38.9746 97.6472 37.4278 95.8017 35.4328L94.3335 36.791C96.386 39.0097 98.9185 40.73 101.737 41.8204L102.459 39.9551ZM95.8017 35.4328L79.9991 18.3504L78.531 19.7085L94.3335 36.791L95.8017 35.4328ZM79.9991 18.3504C74.7587 12.6855 65.8531 12.5321 60.4206 18.013L61.8411 19.4209C66.4721 14.7487 74.0637 14.8795 78.531 19.7085L79.9991 18.3504ZM60.4206 18.013L42.6452 35.9471L44.0657 37.355L61.8411 19.4209L60.4206 18.013ZM42.6452 35.9471C40.9952 37.6118 39.0333 38.9349 36.8716 39.8408L37.6445 41.6854C40.0487 40.6779 42.2307 39.2064 44.0657 37.355L42.6452 35.9471ZM36.8716 39.8408L28.168 43.488L28.941 45.3326L37.6445 41.6854L36.8716 39.8408ZM78.7778 37.6544C78.7778 42.3028 75.0095 46.071 70.3611 46.071V48.071C76.1141 48.071 80.7778 43.4073 80.7778 37.6544H78.7778ZM70.3611 46.071C65.7127 46.071 61.9444 42.3028 61.9444 37.6544H59.9444C59.9444 43.4073 64.6081 48.071 70.3611 48.071V46.071ZM61.9444 37.6544C61.9444 33.006 65.7127 29.2377 70.3611 29.2377V27.2377C64.6081 27.2377 59.9444 31.9014 59.9444 37.6544H61.9444ZM70.3611 29.2377C75.0095 29.2377 78.7778 33.006 78.7778 37.6544H80.7778C80.7778 31.9014 76.1141 27.2377 70.3611 27.2377V29.2377ZM37.2373 108.457C32.31 109.284 28.5556 113.567 28.5556 118.73H30.5556C30.5556 114.56 33.5883 111.097 37.5682 110.429L37.2373 108.457ZM28.5556 118.73V127.113H30.5556V118.73H28.5556ZM29.5556 128.113H37.4028V126.113H29.5556V128.113ZM38.4028 127.113V109.443H36.4028V127.113H38.4028ZM30.5556 146.98V130.252H28.5556V146.98H30.5556ZM29.5556 131.252H37.4028V129.252H29.5556V131.252ZM36.4028 130.252V146.98H38.4028V130.252H36.4028ZM37.4028 145.98H29.5556V147.98H37.4028V145.98ZM41.5417 146.98V130.252H39.5417V146.98H41.5417ZM40.5417 131.252H48.3889V129.252H40.5417V131.252ZM47.3889 130.252V146.98H49.3889V130.252H47.3889ZM48.3889 145.98H40.5417V147.98H48.3889V145.98ZM47.3889 118.73V127.113H49.3889V118.73H47.3889ZM48.3889 126.113H40.5417V128.113H48.3889V126.113ZM41.5417 127.113V109.443H39.5417V127.113H41.5417ZM40.3762 110.429C44.3561 111.097 47.3889 114.56 47.3889 118.73H49.3889C49.3889 113.567 45.6345 109.284 40.7071 108.457L40.3762 110.429ZM93.3333 118.73C93.3333 114.56 96.3661 111.097 100.346 110.429L100.015 108.457C95.0878 109.284 91.3333 113.567 91.3333 118.73H93.3333ZM99.1806 109.443V127.113H101.181V109.443H99.1806ZM100.181 126.113H92.3333V128.113H100.181V126.113ZM93.3333 127.113V118.73H91.3333V127.113H93.3333ZM91.3333 130.252V146.98H93.3333V130.252H91.3333ZM92.3333 147.98H100.181V145.98H92.3333V147.98ZM101.181 146.98V130.252H99.1806V146.98H101.181ZM100.181 129.252H92.3333V131.252H100.181V129.252ZM102.319 130.252V146.98H104.319V130.252H102.319ZM103.319 147.98H111.167V145.98H103.319V147.98ZM112.167 146.98V130.252H110.167V146.98H112.167ZM111.167 129.252H103.319V131.252H111.167V129.252ZM112.167 127.113V118.73H110.167V127.113H112.167ZM112.167 118.73C112.167 113.567 108.412 109.284 103.485 108.457L103.154 110.429C107.134 111.097 110.167 114.56 110.167 118.73H112.167ZM102.319 109.443V127.113H104.319V109.443H102.319ZM103.319 128.113H111.167V126.113H103.319V128.113ZM100.015 58.6404C95.0878 59.467 91.3333 63.7506 91.3333 68.9131H93.3333C93.3333 64.7436 96.3661 61.2805 100.346 60.6128L100.015 58.6404ZM91.3333 68.9131V77.2961H93.3333V68.9131H91.3333ZM92.3333 78.2961H100.181V76.2961H92.3333V78.2961ZM101.181 77.2961V59.6266H99.1806V77.2961H101.181ZM93.3333 97.1631V80.435H91.3333V97.1631H93.3333ZM92.3333 81.435H100.181V79.435H92.3333V81.435ZM99.1806 80.435V97.1631H101.181V80.435H99.1806ZM100.181 96.1631H92.3333V98.1631H100.181V96.1631ZM104.319 97.1631V80.435H102.319V97.1631H104.319ZM103.319 81.435H111.167V79.435H103.319V81.435ZM110.167 80.435V97.1631H112.167V80.435H110.167ZM111.167 96.1631H103.319V98.1631H111.167V96.1631ZM110.167 68.9131V77.2961H112.167V68.9131H110.167ZM111.167 76.2961H103.319V78.2961H111.167V76.2961ZM104.319 77.2961V59.6266H102.319V77.2961H104.319ZM103.154 60.6128C107.134 61.2805 110.167 64.7436 110.167 68.9131H112.167C112.167 63.7506 108.412 59.467 103.485 58.6404L103.154 60.6128ZM61.9444 68.9131C61.9444 64.7436 64.9772 61.2805 68.9571 60.6128L68.6262 58.6404C63.6989 59.467 59.9444 63.7506 59.9444 68.9131H61.9444ZM67.7917 59.6266V77.2961H69.7917V59.6266H67.7917ZM68.7917 76.2961H60.9444V78.2961H68.7917V76.2961ZM61.9444 77.2961V68.9131H59.9444V77.2961H61.9444ZM59.9444 80.435V97.1631H61.9444V80.435H59.9444ZM60.9444 98.1631H68.7917V96.1631H60.9444V98.1631ZM69.7917 97.1631V80.435H67.7917V97.1631H69.7917ZM68.7917 79.435H60.9444V81.435H68.7917V79.435ZM70.9306 80.435V97.1631H72.9306V80.435H70.9306ZM71.9306 98.1631H79.7778V96.1631H71.9306V98.1631ZM80.7778 97.1631V80.435H78.7778V97.1631H80.7778ZM79.7778 79.435H71.9306V81.435H79.7778V79.435ZM80.7778 77.2961V68.9131H78.7778V77.2961H80.7778ZM80.7778 68.9131C80.7778 63.7506 77.0234 59.467 72.096 58.6404L71.7651 60.6128C75.745 61.2805 78.7778 64.7436 78.7778 68.9131H80.7778ZM70.9306 59.6266V77.2961H72.9306V59.6266H70.9306ZM71.9306 78.2961H79.7778V76.2961H71.9306V78.2961ZM37.2373 58.6404C32.31 59.467 28.5556 63.7506 28.5556 68.9131H30.5556C30.5556 64.7436 33.5883 61.2805 37.5682 60.6128L37.2373 58.6404ZM28.5556 68.9131V77.2961H30.5556V68.9131H28.5556ZM29.5556 78.2961H37.4028V76.2961H29.5556V78.2961ZM38.4028 77.2961V59.6266H36.4028V77.2961H38.4028ZM30.5556 97.1631V80.435H28.5556V97.1631H30.5556ZM29.5556 81.435H37.4028V79.435H29.5556V81.435ZM36.4028 80.435V97.1631H38.4028V80.435H36.4028ZM37.4028 96.1631H29.5556V98.1631H37.4028V96.1631ZM41.5417 97.1631V80.435H39.5417V97.1631H41.5417ZM40.5417 81.435H48.3889V79.435H40.5417V81.435ZM47.3889 80.435V97.1631H49.3889V80.435H47.3889ZM48.3889 96.1631H40.5417V98.1631H48.3889V96.1631ZM47.3889 68.9131V77.2961H49.3889V68.9131H47.3889ZM48.3889 76.2961H40.5417V78.2961H48.3889V76.2961ZM41.5417 77.2961V59.6266H39.5417V77.2961H41.5417ZM40.3762 60.6128C44.3561 61.2805 47.3889 64.7436 47.3889 68.9131H49.3889C49.3889 63.7506 45.6345 59.467 40.7071 58.6404L40.3762 60.6128Z"
-      fill="#333333" mask="url(#path-1-outside-1_5987_73910)" />
-    <path
-      d="M161.686 108.624C158.223 105.539 152.92 105.852 149.842 109.322L117.73 145.534L100.143 131.368C96.5313 128.458 91.2499 129.036 88.3486 132.655C85.4489 136.272 86.0227 141.56 89.6326 144.468L113.442 163.646C116.928 166.453 121.998 166.027 124.968 162.678L162.382 120.486C165.458 117.018 165.147 111.708 161.686 108.624Z"
-      fill="#47C562" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" />
-  </symbol>
-
-  <symbol id="profileUpdated" width="180" height="180" viewBox="0 0 180 180" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
-    <path
-      d="M26 140H24.5C24.5 140.828 25.1716 141.5 26 141.5V140ZM83.5 87L83.5 85.5L83.5 87ZM103.426 88.0228L103.589 86.5318L103.426 88.0228ZM63.5739 88.0223L63.7373 89.5133L63.5739 88.0223ZM83.5 141.5C84.3284 141.5 85 140.828 85 140C85 139.172 84.3284 138.5 83.5 138.5V141.5ZM63.7373 89.5133C69.4973 88.882 76.0577 88.4999 83.5 88.5L83.5 85.5C75.9551 85.4999 69.2853 85.8873 63.4105 86.5312L63.7373 89.5133ZM83.5 88.5C90.9421 88.5001 97.5024 88.8825 103.262 89.5139L103.589 86.5318C97.7145 85.8878 91.0448 85.5001 83.5 85.5L83.5 88.5ZM27.5 140C27.5 127.476 30.5094 115.481 36.5387 106.319C42.5441 97.1935 51.5563 90.8484 63.7373 89.5133L63.4105 86.5312C50.2549 87.9731 40.4801 94.8727 34.0327 104.67C27.6093 114.43 24.5 127.036 24.5 140H27.5ZM83.5 138.5H26V141.5H83.5V138.5ZM129.642 100.23C123.32 92.8079 114.639 87.743 103.589 86.5318L103.262 89.5139C113.517 90.638 121.509 95.3091 127.358 102.176L129.642 100.23Z"
-      fill="#696969" />
-    <circle cx="84.0416" cy="63.4879" r="30.9879" fill="white" stroke="#696969" stroke-width="3"
-      stroke-linejoin="round" />
-    <path
-      d="M154.686 93.624C151.223 90.5385 145.919 90.8517 142.842 94.3221L110.73 130.534L93.1433 116.368C89.5313 113.458 84.2499 114.036 81.3486 117.655C78.4489 121.272 79.0227 126.56 82.6326 129.468L106.442 148.646C109.928 151.453 114.998 151.027 117.968 147.678L155.382 105.486C158.458 102.018 158.147 96.7077 154.686 93.624Z"
-      fill="#47C562" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" />
-  </symbol>
 
 
 
@@ -403,65 +183,22 @@
   <symbol id="mesPapiers" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
     <rect width="40" height="40" rx="20" fill="#FFE5E4" />
     <path
-      d="M34.8122 24.0855L35.1053 23.6611H34.1341L33.8541 24.0855H32.2617V29.8295H35.8403V29.0989H33.0142V26.7103H35.8534V25.9797H33.0142V24.8161H35.8534V24.0855H34.8122Z"
-      fill="#A50F0E" />
-    <path d="M27.1484 24.816H29.0427V29.8295H29.8126V24.816H31.7507V24.0854H27.1484V24.816Z" fill="#A50F0E" />
-    <path
-      d="M24.6807 23.9365C23.342 23.9365 22.209 25.0958 22.209 26.4651V29.8293H22.9614V26.4651C22.9614 25.4633 23.7139 24.6802 24.6763 24.6802C25.6475 24.6802 26.3475 25.4589 26.3475 26.5307V29.8293H27.1087V26.5307C27.1174 25.1002 26.0238 23.9365 24.6807 23.9365Z"
-      fill="#A50F0E" />
-    <path
-      d="M18.876 23.9365C17.5374 23.9365 16.4043 25.0958 16.4043 26.4651V29.8293H17.1568V27.655H20.5472V29.8293H21.3084V26.5307C21.3084 25.1002 20.2147 23.9365 18.876 23.9365ZM20.5472 26.9288H17.1568V26.4651C17.1568 25.4633 17.9092 24.6802 18.8716 24.6802C19.8428 24.6802 20.5428 25.4589 20.5428 26.5307V26.9288H20.5472Z"
-      fill="#A50F0E" />
-    <path
-      d="M15.6378 28.0839C15.6378 27.2439 15.1653 26.6227 14.2335 26.2421C13.1836 25.7959 13.0961 25.6384 13.0961 25.2797C13.0961 25.0216 13.2011 24.711 13.7129 24.711C14.1241 24.711 14.3035 24.8685 14.3691 25.2972L14.3997 25.5072L15.1347 25.3716L15.0997 25.1703C14.9641 24.4047 14.461 23.9629 13.7216 23.9629C12.9167 23.9629 12.3524 24.5272 12.3524 25.3366C12.3524 25.7215 12.4967 26.0759 12.7548 26.334C12.9692 26.544 13.1879 26.6709 13.7173 26.9158C14.1854 27.1214 14.391 27.2396 14.566 27.4014C14.776 27.6158 14.881 27.8608 14.881 28.1539C14.881 28.7795 14.391 29.2476 13.7391 29.2476C13.1004 29.2476 12.6192 28.8363 12.6192 28.2939V27.6683H11.8799V28.2983C11.8799 29.2213 12.7242 30 13.7216 30C14.7803 30 15.6378 29.1426 15.6378 28.0839Z"
-      fill="#A50F0E" />
-    <path
-      d="M34.1303 22.2346H31.3042V19.8416H34.1478V19.1111H31.3042V17.9474H34.1303V17.2168H30.5518V22.9652H34.1303V22.2346Z"
-      fill="#A50F0E" />
-    <path
-      d="M29.3134 21.7403C28.6353 22.2259 28.2547 22.3834 27.7341 22.3834C26.7498 22.3834 25.9361 21.7666 25.6342 20.8873C25.6255 20.8566 25.6124 20.8304 25.6036 20.7998V20.7954C25.5424 20.5854 25.5074 20.3579 25.5074 20.126C25.5074 19.8898 25.5424 19.6667 25.6036 19.4567V19.4523C25.6124 19.4217 25.6255 19.3911 25.6342 19.3605C25.9361 18.4811 26.7498 17.8687 27.7341 17.8687C28.2547 17.8687 28.6397 18.0262 29.3134 18.5118L29.484 18.6343L29.8996 18.0174L29.7377 17.8993C28.9547 17.3306 28.4122 17.1206 27.7297 17.1206C27.7254 17.1206 27.7254 17.1206 27.721 17.1206C26.9379 17.1206 26.1986 17.4356 25.6342 18.0087C25.0699 18.5774 24.7637 19.3298 24.7637 20.1173C24.7637 20.1217 24.7637 20.126 24.7637 20.1304C24.7637 20.1348 24.7637 20.1392 24.7637 20.1435C24.7637 20.931 25.0743 21.6791 25.6342 22.2522C26.1986 22.8253 26.9379 23.1402 27.721 23.1402C27.7254 23.1402 27.7254 23.1402 27.7297 23.1402C28.4122 23.1402 28.9547 22.9303 29.7377 22.3615L29.8996 22.2434L29.484 21.6266L29.3134 21.7403Z"
-      fill="#A50F0E" />
-    <path
-      d="M21.7491 17.0684C20.4104 17.0684 19.2773 18.2277 19.2773 19.597V22.9611H20.0298V20.7869H23.4202V22.9611H24.1814V19.6626C24.1814 18.232 23.0921 17.0684 21.7491 17.0684ZM20.0298 20.0651V19.6013C20.0298 18.5995 20.7823 17.8164 21.7447 17.8164C22.7159 17.8164 23.4158 18.5951 23.4158 19.667V20.0651H20.0298Z"
-      fill="#A50F0E" />
-    <path
-      d="M15.4277 21.2678H16.7664C17.8207 21.2678 18.8138 20.301 18.8138 19.2773C18.8138 18.7961 18.5557 18.223 18.1707 17.8467C17.9826 17.6674 17.7595 17.523 17.5057 17.4136C17.2126 17.278 16.9414 17.2124 16.6964 17.2124H14.6709V22.9608H15.4234V21.2678H15.4277ZM15.4277 17.9474H16.6877C17.4664 17.9474 18.0569 18.5161 18.0569 19.2729C18.0569 19.9947 17.497 20.5372 16.7533 20.5372H15.4277V17.9474Z"
-      fill="#A50F0E" />
-    <path
-      d="M13.9015 21.2196C13.9015 20.3797 13.429 19.7585 12.4972 19.3779C11.4472 18.9316 11.3597 18.7742 11.3597 18.4154C11.3597 18.1573 11.4647 17.8467 11.9766 17.8467C12.3878 17.8467 12.5672 18.0042 12.6328 18.4329L12.6634 18.6429L13.3984 18.5073L13.3634 18.3061C13.2277 17.5405 12.7246 17.0986 11.9853 17.0986C11.1804 17.0986 10.616 17.663 10.616 18.4723C10.616 18.8573 10.7604 19.2116 11.0185 19.4697C11.2329 19.6797 11.4516 19.8066 11.9809 20.0516C12.449 20.2572 12.6547 20.3753 12.8296 20.5372C13.0396 20.7515 13.1446 20.9965 13.1446 21.2896C13.1446 21.9152 12.6547 22.3833 12.0028 22.3833C11.3641 22.3833 10.8829 21.9721 10.8829 21.4296V20.804H10.1436V21.4296C10.1436 22.3527 10.9879 23.1314 11.9853 23.1314C13.0396 23.1358 13.9015 22.2739 13.9015 21.2196Z"
-      fill="#A50F0E" />
-    <path
-      d="M6.74855 17.9913H9.57463V17.2607H5.99609V23.0091H9.57463V22.2786H6.74855V19.8856H9.59213V19.155H6.74855V17.9913Z"
-      fill="#A50F0E" />
-    <path
-      d="M35.8493 17.0725C35.8493 16.2238 35.1581 15.5283 34.305 15.5283L24.0462 15.5108V12.9297C24.0462 11.4991 22.5413 10.3354 21.1983 10.3354C19.8596 10.3354 18.7266 11.4948 18.7266 12.864V16.2282H19.479V12.864C19.479 11.8622 20.2315 11.0792 21.1939 11.0792C22.1651 11.0792 23.2807 11.8579 23.2807 12.9297V16.2457L34.3006 16.237C34.7425 16.237 35.0881 16.6307 35.0881 17.0725V22.9653H35.8405V17.0725H35.8493Z"
+      d="M34.6582 23.7742L17.3484 33.8334C17.1361 33.956 16.8754 33.9577 16.6631 33.8334L5.34193 27.2976C4.88619 27.0352 4.88619 26.3775 5.34193 26.1133L22.6517 16.0541C22.864 15.9316 23.1247 15.9298 23.337 16.0541L34.6582 22.5899C35.1139 22.8523 35.1139 23.5101 34.6582 23.7742Z"
       fill="#A50F0E" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M33.9017 22.1531L17.3485 31.7727C17.1361 31.8953 16.8755 31.897 16.6631 31.7727L6.0985 25.6736L22.6517 16.054C22.864 15.9315 23.1247 15.9297 23.3371 16.054L33.9017 22.1531Z"
+      fill="#FFE5E4" />
     <path
-      d="M15.0781 16.4166C15.87 16.4166 16.618 16.0973 17.1868 15.5242C17.7555 14.9511 18.0661 14.1942 18.0661 13.3937C18.0661 12.6018 17.7511 11.8538 17.1824 11.285C16.6093 10.712 15.8568 10.397 15.0563 10.397C13.4332 10.397 12.0596 11.7838 12.0596 13.4243C12.0639 15.0429 13.4464 16.4166 15.0781 16.4166ZM15.065 11.1407C16.3337 11.1407 17.3311 12.1337 17.3311 13.398C17.3311 14.6755 16.3424 15.6773 15.0825 15.6773C13.8095 15.6773 12.812 14.6842 12.812 13.4199C12.8077 12.1425 13.8007 11.1407 15.065 11.1407Z"
+      d="M34.6582 19.4705L17.3484 29.5297C17.1361 29.6523 16.8754 29.654 16.6631 29.5297L5.34193 22.9939C4.88619 22.7315 4.88619 22.0738 5.34193 21.8096L22.6517 11.7504C22.864 11.6278 23.1247 11.6261 23.337 11.7504L34.6582 18.2862C35.1139 18.5486 35.1139 19.2064 34.6582 19.4705Z"
       fill="#A50F0E" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M34.0494 17.9347L23.3371 11.7504C23.1247 11.6261 22.864 11.6278 22.6517 11.7504L5.94899 21.4568L16.6614 27.6412C16.8737 27.7638 17.1361 27.7638 17.3467 27.6412L34.0494 17.9347Z"
+      fill="#FFE5E4" />
     <path
-      d="M5.68104 29.103C5.23919 29.103 4.89359 28.7312 4.89359 28.2893V12.2822C4.89359 11.5822 5.37043 11.0923 6.04852 11.0923C6.80972 11.0923 7.38281 11.6522 7.38281 12.3959V16.2369H8.14402V12.3916C8.14402 11.9235 8.22276 11.7047 8.48087 11.4554C8.73461 11.2148 9.07146 11.0835 9.42581 11.0835C10.1301 11.0835 10.6639 11.6479 10.6639 12.3916V16.2369H11.4163V12.3259C11.4163 11.2629 10.4889 10.3311 9.43456 10.3311C8.91835 10.3311 8.37588 10.5585 7.9909 10.9348C7.89028 11.031 7.82029 11.1141 7.75029 11.2235C7.69342 11.1448 7.63655 11.0791 7.5578 10.996L7.54905 10.9873C7.36094 10.8079 7.15095 10.6548 6.94096 10.5454L6.93222 10.541C6.66973 10.4229 6.37662 10.3617 6.07039 10.3617C4.97233 10.3617 4.14551 11.241 4.14551 12.4091V21.7272V28.2981C4.14551 29.1468 4.83672 29.8424 5.68979 29.8424H11.4163V29.1118L5.68104 29.103Z"
+      d="M21.2579 6.10408C21.1891 6.06378 21.1066 6.06378 21.0379 6.10408L15.4962 9.38804C15.3501 9.47391 15.3501 9.68945 15.4962 9.77532L17.1097 10.7251L5.47988 17.6172C5.02795 17.8853 5.02795 18.553 5.47988 18.8193L16.7489 25.4538C16.9602 25.5783 17.2214 25.5783 17.4311 25.4538L34.6611 15.2427C35.113 14.9746 35.113 14.307 34.6611 14.0406L21.2579 6.10408Z"
       fill="#A50F0E" />
   </symbol>
 
-  <symbol id="finish" width="22" height="28" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
-    <rect x="6.01224" y="2.61237" width="1" height="17" rx="0.5" transform="rotate(15 6.01224 2.61237)"
-      stroke="white" />
-    <rect x="6.90873" y="6.99372" width="1" height="1" transform="rotate(15 6.90873 6.99372)" stroke="white" />
-    <rect x="5.87357" y="10.8574" width="1" height="1" transform="rotate(15 5.87357 10.8574)" stroke="white" />
-    <rect x="10.7725" y="8.029" width="1" height="1" transform="rotate(15 10.7725 8.029)" stroke="white" />
-    <rect x="9.73685" y="11.8926" width="1" height="1" transform="rotate(15 9.73685 11.8926)" stroke="white" />
-    <rect x="14.6363" y="9.06428" width="1" height="1" transform="rotate(15 14.6363 9.06428)" stroke="white" />
-    <rect x="13.6006" y="12.9279" width="1" height="1" transform="rotate(15 13.6006 12.9279)" stroke="white" />
-    <rect x="8.32279" y="9.44318" width="1" height="1" transform="rotate(15 8.32279 9.44318)" stroke="white" />
-    <rect x="12.1866" y="10.4785" width="1" height="1" transform="rotate(15 12.1866 10.4785)" stroke="white" />
-    <rect x="16.0503" y="11.5137" width="1" height="1" transform="rotate(15 16.0503 11.5137)" stroke="white" />
-    <rect x="9.35795" y="5.57941" width="1" height="1" transform="rotate(15 9.35795 5.57941)" stroke="white" />
-    <rect x="13.2217" y="6.61469" width="1" height="1" transform="rotate(15 13.2217 6.61469)" stroke="white" />
-    <rect x="17.0855" y="7.64997" width="1" height="1" transform="rotate(15 17.0855 7.64997)" stroke="white" />
-    <rect x="6.71928" y="3.8371" width="13" height="9" transform="rotate(15 6.71928 3.8371)" stroke="white" />
-  </symbol>
-
 
   <symbol id="orientationIndex0" viewBox="0 0 44 45" fill="none" xmlns="http://www.w3.org/2000/svg">
     <rect x="7.54004" y="29.6016" width="1.41595" height="1.41595" fill="#333333" />
@@ -481,8 +218,7 @@
   </symbol>
 
 
-  <symbol id="orientationIndex1" width="44" height="45" viewBox="0 0 44 45" fill="none"
-    xmlns="http://www.w3.org/2000/svg">
+  <symbol id="orientationIndex1" viewBox="0 0 44 45" fill="none" xmlns="http://www.w3.org/2000/svg">
     <path d="M6 14.875H26V26.375C26 26.9273 25.5523 27.375 25 27.375H7C6.44772 27.375 6 26.9273 6 26.375V14.875Z"
       fill="white" />
     <rect x="5.5" y="14.375" width="21" height="13" rx="1.5" stroke="#333333" />
@@ -543,282 +279,6 @@
     <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 id="eye" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
-    <path
-      d="M10.0002 3.75C5.8335 3.75 2.27516 6.34167 0.833496 10C2.27516 13.6583 5.8335 16.25 10.0002 16.25C14.1668 16.25 17.7252 13.6583 19.1668 10C17.7252 6.34167 14.1668 3.75 10.0002 3.75ZM10.0002 14.1667C7.70016 14.1667 5.8335 12.3 5.8335 10C5.8335 7.7 7.70016 5.83333 10.0002 5.83333C12.3002 5.83333 14.1668 7.7 14.1668 10C14.1668 12.3 12.3002 14.1667 10.0002 14.1667ZM10.0002 7.5C8.61683 7.5 7.50016 8.61667 7.50016 10C7.50016 11.3833 8.61683 12.5 10.0002 12.5C11.3835 12.5 12.5002 11.3833 12.5002 10C12.5002 8.61667 11.3835 7.5 10.0002 7.5Z"
-      fill="#333333" />
-  </svg>
-
   <symbol id="aidantsConnect" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
     <rect width="40" height="40" rx="20" fill="#FFE5E4" />
     <path
@@ -1026,72 +486,6 @@
       fill="#A50F0E" />
   </symbol>
 
-
-
-
-  <symbol id="pix" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
-    <rect width="40" height="40" rx="20" fill="#FFE5E4" />
-    <path fill-rule="evenodd" clip-rule="evenodd"
-      d="M30.9248 22.9876L31.441 22.3612C31.9003 21.8316 32.2268 21.3201 32.4202 20.8163L36.3498 25.614C37.063 26.5278 37.029 26.6971 35.8403 26.6971H35.4328C34.2441 26.6971 33.8026 26.4602 33.0894 25.614L30.9248 22.9876ZM30.9248 16.461L33.0894 13.8346C33.8026 12.9884 34.2441 12.7515 35.4328 12.7515H35.8403C37.029 12.7515 37.063 12.9207 36.3498 13.8346L32.4202 18.6322C32.2268 18.1285 31.9003 17.617 31.441 17.0874L30.9248 16.461Z"
-      fill="#A50F0E" />
-    <path fill-rule="evenodd" clip-rule="evenodd"
-      d="M24.9242 26.6971C23.7356 26.6971 23.7015 26.5278 24.4148 25.614L28.4902 20.6382C28.7958 20.2659 28.9656 19.9612 28.9656 19.7243C28.9656 19.4535 28.7958 19.1488 28.4902 18.8104L24.4148 13.8346C23.7015 12.9207 23.7356 12.7515 24.9242 12.7515H25.3317C26.5204 12.7515 26.9619 12.9884 27.6751 13.8346L30.7996 17.6257C32.1241 19.1488 32.1241 20.2997 30.7996 21.8229L27.6751 25.614C26.9619 26.4602 26.5204 26.6971 25.3317 26.6971H24.9242Z"
-      fill="#A50F0E" />
-    <path fill-rule="evenodd" clip-rule="evenodd"
-      d="M2.83301 31.0362C2.83301 32.0468 3.0865 32.2995 4.10048 32.2995H4.43844C5.45241 32.2995 5.7059 32.0468 5.7059 31.0362V25.1692C6.46638 26.3763 7.84652 26.9939 9.84627 26.9939C13.7613 26.9939 15.7047 24.9446 15.7047 20.8742V18.4319C15.7047 14.3615 13.6205 12.4526 9.25477 12.4526C5.19892 12.4526 2.83301 14.4177 2.83301 18.4319V31.0362ZM12.8037 20.9303C12.8037 23.2884 12.015 24.2709 9.28297 24.2709C6.49454 24.2709 5.7059 23.2603 5.7059 20.9303V18.5161C5.7059 16.1581 6.5509 15.1475 9.28297 15.1475C12.0714 15.1475 12.8037 16.1581 12.8037 18.5161V20.9303Z"
-      fill="#A50F0E" />
-    <path fill-rule="evenodd" clip-rule="evenodd"
-      d="M18.414 25.4C18.414 26.4106 18.6675 26.6633 19.6814 26.6633H20.0475C21.0615 26.6633 21.315 26.4106 21.315 25.4V14.0029C21.315 12.9923 21.0615 12.7396 20.0475 12.7396H19.6814C18.6675 12.7396 18.414 12.9923 18.414 14.0029V25.4ZM18.6111 9.70786C19.3153 10.3816 20.4419 10.3816 21.1179 9.70786C21.822 9.00603 21.822 7.88319 21.1179 7.20947C20.4419 6.50765 19.3153 6.50765 18.6111 7.20947C17.907 7.88319 17.907 9.00603 18.6111 9.70786Z"
-      fill="#A50F0E" />
-  </symbol>
-
-
-
-
-
-  <symbol id="espaceSante" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
-    <rect width="40" height="40" rx="20" fill="#FFE5E4" />
-    <path
-      d="M34.8122 24.0855L35.1053 23.6611H34.1341L33.8541 24.0855H32.2617V29.8295H35.8403V29.0989H33.0142V26.7103H35.8534V25.9797H33.0142V24.8161H35.8534V24.0855H34.8122Z"
-      fill="#A50F0E" />
-    <path d="M27.1484 24.816H29.0427V29.8295H29.8126V24.816H31.7507V24.0854H27.1484V24.816Z" fill="#A50F0E" />
-    <path
-      d="M24.6807 23.9365C23.342 23.9365 22.209 25.0958 22.209 26.4651V29.8293H22.9614V26.4651C22.9614 25.4633 23.7139 24.6802 24.6763 24.6802C25.6475 24.6802 26.3475 25.4589 26.3475 26.5307V29.8293H27.1087V26.5307C27.1174 25.1002 26.0238 23.9365 24.6807 23.9365Z"
-      fill="#A50F0E" />
-    <path
-      d="M18.876 23.9365C17.5374 23.9365 16.4043 25.0958 16.4043 26.4651V29.8293H17.1568V27.655H20.5472V29.8293H21.3084V26.5307C21.3084 25.1002 20.2147 23.9365 18.876 23.9365ZM20.5472 26.9288H17.1568V26.4651C17.1568 25.4633 17.9092 24.6802 18.8716 24.6802C19.8428 24.6802 20.5428 25.4589 20.5428 26.5307V26.9288H20.5472Z"
-      fill="#A50F0E" />
-    <path
-      d="M15.6378 28.0839C15.6378 27.2439 15.1653 26.6227 14.2335 26.2421C13.1836 25.7959 13.0961 25.6384 13.0961 25.2797C13.0961 25.0216 13.2011 24.711 13.7129 24.711C14.1241 24.711 14.3035 24.8685 14.3691 25.2972L14.3997 25.5072L15.1347 25.3716L15.0997 25.1703C14.9641 24.4047 14.461 23.9629 13.7216 23.9629C12.9167 23.9629 12.3524 24.5272 12.3524 25.3366C12.3524 25.7215 12.4967 26.0759 12.7548 26.334C12.9692 26.544 13.1879 26.6709 13.7173 26.9158C14.1854 27.1214 14.391 27.2396 14.566 27.4014C14.776 27.6158 14.881 27.8608 14.881 28.1539C14.881 28.7795 14.391 29.2476 13.7391 29.2476C13.1004 29.2476 12.6192 28.8363 12.6192 28.2939V27.6683H11.8799V28.2983C11.8799 29.2213 12.7242 30 13.7216 30C14.7803 30 15.6378 29.1426 15.6378 28.0839Z"
-      fill="#A50F0E" />
-    <path
-      d="M34.1303 22.2346H31.3042V19.8416H34.1478V19.1111H31.3042V17.9474H34.1303V17.2168H30.5518V22.9652H34.1303V22.2346Z"
-      fill="#A50F0E" />
-    <path
-      d="M29.3134 21.7403C28.6353 22.2259 28.2547 22.3834 27.7341 22.3834C26.7498 22.3834 25.9361 21.7666 25.6342 20.8873C25.6255 20.8566 25.6124 20.8304 25.6036 20.7998V20.7954C25.5424 20.5854 25.5074 20.3579 25.5074 20.126C25.5074 19.8898 25.5424 19.6667 25.6036 19.4567V19.4523C25.6124 19.4217 25.6255 19.3911 25.6342 19.3605C25.9361 18.4811 26.7498 17.8687 27.7341 17.8687C28.2547 17.8687 28.6397 18.0262 29.3134 18.5118L29.484 18.6343L29.8996 18.0174L29.7377 17.8993C28.9547 17.3306 28.4122 17.1206 27.7297 17.1206C27.7254 17.1206 27.7254 17.1206 27.721 17.1206C26.9379 17.1206 26.1986 17.4356 25.6342 18.0087C25.0699 18.5774 24.7637 19.3298 24.7637 20.1173C24.7637 20.1217 24.7637 20.126 24.7637 20.1304C24.7637 20.1348 24.7637 20.1392 24.7637 20.1435C24.7637 20.931 25.0743 21.6791 25.6342 22.2522C26.1986 22.8253 26.9379 23.1402 27.721 23.1402C27.7254 23.1402 27.7254 23.1402 27.7297 23.1402C28.4122 23.1402 28.9547 22.9303 29.7377 22.3615L29.8996 22.2434L29.484 21.6266L29.3134 21.7403Z"
-      fill="#A50F0E" />
-    <path
-      d="M21.7491 17.0684C20.4104 17.0684 19.2773 18.2277 19.2773 19.597V22.9611H20.0298V20.7869H23.4202V22.9611H24.1814V19.6626C24.1814 18.232 23.0921 17.0684 21.7491 17.0684ZM20.0298 20.0651V19.6013C20.0298 18.5995 20.7823 17.8164 21.7447 17.8164C22.7159 17.8164 23.4158 18.5951 23.4158 19.667V20.0651H20.0298Z"
-      fill="#A50F0E" />
-    <path
-      d="M15.4277 21.2678H16.7664C17.8207 21.2678 18.8138 20.301 18.8138 19.2773C18.8138 18.7961 18.5557 18.223 18.1707 17.8467C17.9826 17.6674 17.7595 17.523 17.5057 17.4136C17.2126 17.278 16.9414 17.2124 16.6964 17.2124H14.6709V22.9608H15.4234V21.2678H15.4277ZM15.4277 17.9474H16.6877C17.4664 17.9474 18.0569 18.5161 18.0569 19.2729C18.0569 19.9947 17.497 20.5372 16.7533 20.5372H15.4277V17.9474Z"
-      fill="#A50F0E" />
-    <path
-      d="M13.9015 21.2196C13.9015 20.3797 13.429 19.7585 12.4972 19.3779C11.4472 18.9316 11.3597 18.7742 11.3597 18.4154C11.3597 18.1573 11.4647 17.8467 11.9766 17.8467C12.3878 17.8467 12.5672 18.0042 12.6328 18.4329L12.6634 18.6429L13.3984 18.5073L13.3634 18.3061C13.2277 17.5405 12.7246 17.0986 11.9853 17.0986C11.1804 17.0986 10.616 17.663 10.616 18.4723C10.616 18.8573 10.7604 19.2116 11.0185 19.4697C11.2329 19.6797 11.4516 19.8066 11.9809 20.0516C12.449 20.2572 12.6547 20.3753 12.8296 20.5372C13.0396 20.7515 13.1446 20.9965 13.1446 21.2896C13.1446 21.9152 12.6547 22.3833 12.0028 22.3833C11.3641 22.3833 10.8829 21.9721 10.8829 21.4296V20.804H10.1436V21.4296C10.1436 22.3527 10.9879 23.1314 11.9853 23.1314C13.0396 23.1358 13.9015 22.2739 13.9015 21.2196Z"
-      fill="#A50F0E" />
-    <path
-      d="M6.74855 17.9913H9.57463V17.2607H5.99609V23.0091H9.57463V22.2786H6.74855V19.8856H9.59213V19.155H6.74855V17.9913Z"
-      fill="#A50F0E" />
-    <path
-      d="M35.8493 17.0725C35.8493 16.2238 35.1581 15.5283 34.305 15.5283L24.0462 15.5108V12.9297C24.0462 11.4991 22.5413 10.3354 21.1983 10.3354C19.8596 10.3354 18.7266 11.4948 18.7266 12.864V16.2282H19.479V12.864C19.479 11.8622 20.2315 11.0792 21.1939 11.0792C22.1651 11.0792 23.2807 11.8579 23.2807 12.9297V16.2457L34.3006 16.237C34.7425 16.237 35.0881 16.6307 35.0881 17.0725V22.9653H35.8405V17.0725H35.8493Z"
-      fill="#A50F0E" />
-    <path
-      d="M15.0781 16.4166C15.87 16.4166 16.618 16.0973 17.1868 15.5242C17.7555 14.9511 18.0661 14.1942 18.0661 13.3937C18.0661 12.6018 17.7511 11.8538 17.1824 11.285C16.6093 10.712 15.8568 10.397 15.0563 10.397C13.4332 10.397 12.0596 11.7838 12.0596 13.4243C12.0639 15.0429 13.4464 16.4166 15.0781 16.4166ZM15.065 11.1407C16.3337 11.1407 17.3311 12.1337 17.3311 13.398C17.3311 14.6755 16.3424 15.6773 15.0825 15.6773C13.8095 15.6773 12.812 14.6842 12.812 13.4199C12.8077 12.1425 13.8007 11.1407 15.065 11.1407Z"
-      fill="#A50F0E" />
-    <path
-      d="M5.68104 29.103C5.23919 29.103 4.89359 28.7312 4.89359 28.2893V12.2822C4.89359 11.5822 5.37043 11.0923 6.04852 11.0923C6.80972 11.0923 7.38281 11.6522 7.38281 12.3959V16.2369H8.14402V12.3916C8.14402 11.9235 8.22276 11.7047 8.48087 11.4554C8.73461 11.2148 9.07146 11.0835 9.42581 11.0835C10.1301 11.0835 10.6639 11.6479 10.6639 12.3916V16.2369H11.4163V12.3259C11.4163 11.2629 10.4889 10.3311 9.43456 10.3311C8.91835 10.3311 8.37588 10.5585 7.9909 10.9348C7.89028 11.031 7.82029 11.1141 7.75029 11.2235C7.69342 11.1448 7.63655 11.0791 7.5578 10.996L7.54905 10.9873C7.36094 10.8079 7.15095 10.6548 6.94096 10.5454L6.93222 10.541C6.66973 10.4229 6.37662 10.3617 6.07039 10.3617C4.97233 10.3617 4.14551 11.241 4.14551 12.4091V21.7272V28.2981C4.14551 29.1468 4.83672 29.8424 5.68979 29.8424H11.4163V29.1118L5.68104 29.103Z"
-      fill="#A50F0E" />
-  </symbol>
   <symbol id="radio-unchecked" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
     <path
       d="M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 20C7.58 20 4 16.42 4 12C4 7.58 7.58 4 12 4C16.42 4 20 7.58 20 12C20 16.42 16.42 20 12 20Z"
@@ -1108,8 +502,6 @@
       fill="black" />
   </symbol>
 
-
-
   <symbol id="visibility" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
     <path id="Vector"
       d="M8.00002 3.0386C4.66669 3.0386 1.82002 5.11194 0.666687 8.0386C1.82002 10.9653 4.66669 13.0386 8.00002 13.0386C11.3334 13.0386 14.18 10.9653 15.3334 8.0386C14.18 5.11194 11.3334 3.0386 8.00002 3.0386ZM8.00002 11.3719C6.16002 11.3719 4.66669 9.8786 4.66669 8.0386C4.66669 6.1986 6.16002 4.70527 8.00002 4.70527C9.84002 4.70527 11.3334 6.1986 11.3334 8.0386C11.3334 9.8786 9.84002 11.3719 8.00002 11.3719ZM8.00002 6.0386C6.89335 6.0386 6.00002 6.93194 6.00002 8.0386C6.00002 9.14527 6.89335 10.0386 8.00002 10.0386C9.10669 10.0386 10 9.14527 10 8.0386C10 6.93194 9.10669 6.0386 8.00002 6.0386Z"
@@ -1121,6 +513,4 @@
       d="M7.99999 4.70527C9.83999 4.70527 11.3333 6.1986 11.3333 8.0386C11.3333 8.3786 11.2667 8.70527 11.1733 9.01193L13.2133 11.0519C14.14 10.2319 14.8733 9.20527 15.3333 8.03193C14.18 5.11193 11.3333 3.0386 7.99999 3.0386C7.15332 3.0386 6.33999 3.17193 5.57332 3.4186L7.01999 4.86527C7.33332 4.77193 7.65999 4.70527 7.99999 4.70527ZM1.80666 2.4786C1.54666 2.7386 1.54666 3.1586 1.80666 3.4186L3.11999 4.73193C2.03999 5.59193 1.17999 6.72527 0.666656 8.0386C1.81999 10.9653 4.66666 13.0386 7.99999 13.0386C9.01332 13.0386 9.97999 12.8386 10.8733 12.4919L12.6867 14.3053C12.9467 14.5653 13.3667 14.5653 13.6267 14.3053C13.8867 14.0453 13.8867 13.6253 13.6267 13.3653L2.75332 2.4786C2.49332 2.2186 2.06666 2.2186 1.80666 2.4786ZM7.99999 11.3719C6.15999 11.3719 4.66666 9.8786 4.66666 8.0386C4.66666 7.52527 4.78666 7.0386 4.99332 6.61193L6.03999 7.6586C6.01999 7.7786 5.99999 7.90527 5.99999 8.0386C5.99999 9.14527 6.89332 10.0386 7.99999 10.0386C8.13332 10.0386 8.25332 10.0186 8.37999 9.99193L9.42666 11.0386C8.99332 11.2519 8.51332 11.3719 7.99999 11.3719ZM9.97999 7.8186C9.87999 6.88527 9.14666 6.1586 8.21999 6.0586L9.97999 7.8186Z"
       fill="black" />
   </symbol>
-
-
 </svg>
\ No newline at end of file
diff --git a/src/assets/form/validate.svg b/src/assets/form/validate.svg
deleted file mode 100644
index 991694b27aee6ebb7e16c88850251638d0e014f1..0000000000000000000000000000000000000000
--- a/src/assets/form/validate.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
-<circle cx="13" cy="13" r="13" fill="#47C562"/>
-<path d="M8 13.8182L11.8889 17L18 10" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
-</svg>
diff --git a/src/assets/ico/sprite.svg b/src/assets/ico/sprite.svg
index 4226333f1a3fc721f057c2df6fcd32355377b694..ed18116b8460de4ac8ad10cd625414705c82b247 100644
--- a/src/assets/ico/sprite.svg
+++ b/src/assets/ico/sprite.svg
@@ -406,12 +406,17 @@
     <path d="M16 6L8 12.5L16 19" fill="currentColor" stroke-linecap="round" stroke-linejoin="round" />
   </symbol>
 
-  <symbol id="add" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none">
+  <symbol id="plus" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none">
     <path
       d="M12 7C11.45 7 11 7.45 11 8V11H8C7.45 11 7 11.45 7 12C7 12.55 7.45 13 8 13H11V16C11 16.55 11.45 17 12 17C12.55 17 13 16.55 13 16V13H16C16.55 13 17 12.55 17 12C17 11.45 16.55 11 16 11H13V8C13 7.45 12.55 7 12 7Z"
       fill="currentColor" />
   </symbol>
 
+  <symbol id="minus" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <path d="M18 13H6C5.45 13 5 12.55 5 12C5 11.45 5.45 11 6 11H18C18.55 11 19 11.45 19 12C19 12.55 18.55 13 18 13Z"
+      fill="currentColor" />
+  </symbol>
+
   <symbol id="edit" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
     <path
       d="M3 14.5501V17.0835C3 17.3168 3.18333 17.5001 3.41667 17.5001H5.95C6.05833 17.5001 6.16667 17.4585 6.24167 17.3751L15.3417 8.28346L12.2167 5.15846L3.125 14.2501C3.04167 14.3335 3 14.4335 3 14.5501ZM17.7583 5.8668C18.0833 5.5418 18.0833 5.0168 17.7583 4.6918L15.8083 2.7418C15.4833 2.4168 14.9583 2.4168 14.6333 2.7418L13.1083 4.2668L16.2333 7.3918L17.7583 5.8668Z"