diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts
index e28cd3efb1450886a6f4989b660cf33da571b6e2..993557771faefa1b05cc206b356954637ed0047f 100644
--- a/src/app/app-routing.module.ts
+++ b/src/app/app-routing.module.ts
@@ -2,8 +2,10 @@ import { NgModule } from '@angular/core';
 import { Routes, RouterModule } from '@angular/router';
 import { AboutComponent } from './about/about.component';
 import { PanelComponent } from './admin/components/panel/panel.component';
+import { FormComponent } from './form/form.component';
 import { AdminGuard } from './guards/admin.guard';
 import { AuthGuard } from './guards/auth.guard';
+import { DeactivateGuard } from './guards/deactivate.guard';
 import { HomeComponent } from './home/home.component';
 import { LegalNoticeComponent } from './legal-notice/legal-notice.component';
 import { ProfileComponent } from './profile/profile.component';
@@ -65,6 +67,11 @@ const routes: Routes = [
     canActivate: [AdminGuard],
     component: PanelComponent,
   },
+  {
+    path: 'create-structure',
+    component: FormComponent,
+    canDeactivate: [DeactivateGuard],
+  },
   {
     path: '**',
     redirectTo: 'home',
diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index 5edc4cd02cb86a7af27979d4fa34eca758bab8ef..8bcb3953a76e1d14b6d8e0a9ceb69075d46a42cc 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -28,6 +28,8 @@ import { ResetEmailComponent } from './reset-email/reset-email.component';
 import { ResetPasswordComponent } from './reset-password/reset-password.component';
 import { AdminModule } from './admin/admin.module';
 import { AdminGuard } from './guards/admin.guard';
+import { DeactivateGuard } from './guards/deactivate.guard';
+import { FooterFormComponent } from './footer-form/footer-form.component';
 
 @NgModule({
   declarations: [
@@ -46,6 +48,8 @@ import { AdminGuard } from './guards/admin.guard';
     UserVerificationComponent,
     ResetEmailComponent,
     ResetPasswordComponent,
+    FormComponent,
+    FooterFormComponent,
   ],
   imports: [BrowserModule, HttpClientModule, AppRoutingModule, SharedModule, MapModule, ProfileModule, AdminModule],
   providers: [
@@ -54,6 +58,7 @@ import { AdminGuard } from './guards/admin.guard';
     CustomBreakPointsProvider,
     AuthGuard,
     AdminGuard,
+    DeactivateGuard,
   ],
   bootstrap: [AppComponent],
 })
diff --git a/src/app/footer-form/footer-form.component.html b/src/app/footer-form/footer-form.component.html
new file mode 100644
index 0000000000000000000000000000000000000000..b4c50c392d10abbdfd41c3cbed5746039a0362ef
--- /dev/null
+++ b/src/app/footer-form/footer-form.component.html
@@ -0,0 +1,17 @@
+<div fxLayout="row" fxLayoutGap="10px" fxLayoutAlign="center center">
+  <button class="btn previous" (click)="goToPreviousPage()">
+    <div class="rowBtn" fxLayout="row" fxLayoutAlign="center center">
+      <svg class="chevronLeft" aria-hidden="true">
+        <use [attr.xlink:href]="'assets/form/sprite.svg#chevronLeft'"></use>
+      </svg>
+      Précédent
+    </div>
+  </button>
+  <button class="btn next" (click)="goToNextPage()" [disabled]="!isValid" [ngClass]="{ invalid: !isValid }">
+    <div class="rowBtn" fxLayout="row" fxLayoutAlign="center center">
+      Suivant<svg class="chevronRight" aria-hidden="true">
+        <use [attr.xlink:href]="'assets/form/sprite.svg#chevronRight'"></use>
+      </svg>
+    </div>
+  </button>
+</div>
diff --git a/src/app/footer-form/footer-form.component.scss b/src/app/footer-form/footer-form.component.scss
new file mode 100644
index 0000000000000000000000000000000000000000..dfecb83344d2312d4da1d75544930de155203094
--- /dev/null
+++ b/src/app/footer-form/footer-form.component.scss
@@ -0,0 +1,39 @@
+@import '../../assets/scss/color';
+@import '../../assets/scss/typography';
+
+.btn {
+  background: $secondary-color;
+  border-radius: 4px;
+  outline: none;
+  cursor: pointer;
+  border: 0;
+  color: $white;
+  height: 40px;
+  width: 149px;
+  @include btn-bold;
+  &.previous {
+    background-color: initial;
+    color: $grey-2;
+  }
+  &.next {
+    .rowBtn {
+      margin-left: 24px;
+    }
+  }
+  &.invalid {
+    opacity: 0.4;
+  }
+}
+
+.chevronLeft {
+  height: 24px;
+  width: 24px;
+  stroke: $black;
+  margin-right: 10px;
+}
+.chevronRight {
+  height: 24px;
+  width: 24px;
+  stroke: $white;
+  margin-left: 10px;
+}
diff --git a/src/app/footer-form/footer-form.component.spec.ts b/src/app/footer-form/footer-form.component.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..422db4dac87b955f78d5dd813fc2f52656ab9f80
--- /dev/null
+++ b/src/app/footer-form/footer-form.component.spec.ts
@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { FooterFormComponent } from './footer-form.component';
+
+describe('FooterFormComponent', () => {
+  let component: FooterFormComponent;
+  let fixture: ComponentFixture<FooterFormComponent>;
+
+  beforeEach(async () => {
+    await TestBed.configureTestingModule({
+      declarations: [ FooterFormComponent ]
+    })
+    .compileComponents();
+  });
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(FooterFormComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});
diff --git a/src/app/footer-form/footer-form.component.ts b/src/app/footer-form/footer-form.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..e5e6fbfaf35d2973f089b6f00a40703ae59952c3
--- /dev/null
+++ b/src/app/footer-form/footer-form.component.ts
@@ -0,0 +1,22 @@
+import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
+
+@Component({
+  selector: 'app-footer-form',
+  templateUrl: './footer-form.component.html',
+  styleUrls: ['./footer-form.component.scss'],
+})
+export class FooterFormComponent implements OnInit {
+  @Input() isValid: boolean;
+  @Output() nextPage = new EventEmitter<any>();
+  @Output() previousPage = new EventEmitter<any>();
+  constructor() {}
+
+  ngOnInit(): void {}
+
+  public goToNextPage(): void {
+    this.nextPage.emit();
+  }
+  public goToPreviousPage(): void {
+    this.previousPage.emit();
+  }
+}
diff --git a/src/app/form/form.component.html b/src/app/form/form.component.html
index 494f7d0199025917e57d0a4743c8a9021c873e89..526e3a3ede64803594cced2c85aa8c3ab7febd2d 100644
--- a/src/app/form/form.component.html
+++ b/src/app/form/form.component.html
@@ -1,272 +1,1027 @@
-<div class="form">
-  <form [formGroup]="structureForm" *ngIf="structureForm" (ngSubmit)="onSubmit(structureForm)">
-    <p>Votre structure est-elle ?*</p>
-    <input type="radio" formControlName="structureRepresentation" value="principal" /> Un établissement principal (siège
-    social)<br />
-    <input type="radio" formControlName="structureRepresentation" value="antenne" /> Une permanence (antenne)
-    <app-validator-form [control]="getStructureControl('structureRepresentation')"></app-validator-form>
-    <p>Nom de votre structure*</p>
-    <input type="text" formControlName="structureName" />
-    <app-validator-form [control]="getStructureControl('structureName')"></app-validator-form>
-    <p>Type de structure*</p>
-    <div *ngFor="let choice of typeStructure | keyvalue">
-      <label>
-        <input
-          type="checkbox"
-          [value]="choice.key"
-          (change)="onCheckChange($event, 'structureType')"
-          [checked]="isInArray(choice.key, 'structureType')"
-          [disabled]="getStructureControl('structureType').disabled"
-        />
-        {{ choice.value }}
+<div class="form" fxLayout="column">
+  <app-modal-confirmation
+    [openned]="showConfirmationModal"
+    [content]="'Il vous faudra de nouveau remplir le formulaire si vous quittez'"
+    (closed)="hasRedirectionAccepted($event)"
+  ></app-modal-confirmation>
+  <div class="content">
+    <div
+      class="progressBar"
+      *ngIf="currentPage != 0"
+      fxLayout="row"
+      fxLayoutAlign="space-between center"
+      fxLayoutGap="20px"
+    >
+      <label [ngClass]="{ validate: currentPage == nbPagesForm }" for="progressForm"
+        >{{ progressStatus | number: '1.0-0' }}%
       </label>
+      <progress
+        id="progressForm"
+        [ngClass]="{ validate: currentPage == nbPagesForm }"
+        max="100"
+        [value]="progressStatus"
+      ></progress>
     </div>
-    <app-validator-form [control]="getStructureControl('structureType')"></app-validator-form>
-    <p>Démarche</p>
-    <div *ngIf="proceduresAccompaniment">
-      <p>{{ proceduresAccompaniment.name }}</p>
-      <div *ngFor="let module of proceduresAccompaniment.modules">
-        <label>
-          <input
-            type="checkbox"
-            [value]="module.id"
-            (change)="onCheckChange($event, proceduresAccompaniment.id)"
-            [checked]="isInArray(module.id, proceduresAccompaniment.id)"
-            [disabled]="getStructureControl(proceduresAccompaniment.id).disabled"
-          />
-          {{ module.text }}
-        </label>
+    <div *ngIf="currentPage == 0" class="home page" fxLayout="column" fxLayoutAlign="space-between">
+      <h2>Ajouter votre structure</h2>
+      <img src="../../assets/form/schedule.svg" alt="logo schedule" />
+      <div>
+        <p class="titleDesc">Cela va prendre une quinzaine de minutes</p>
+        <p>Une fois réalisé cela vous permettra d'être référencé sur la platefome</p>
       </div>
-    </div>
-    <p>Description*</p>
-    <textarea rows="4" style="width: 100%" maxlength="500" formControlName="description"></textarea>
-    <app-validator-form [control]="getStructureControl('description')"></app-validator-form>
-    <p>
-      Afin de rendre visible l'offre de formation numérique proposée lors de ce nouveau confinement, merci d'indiquer
-      ici, les activités que vous avez pu maintenir
-    </p>
-    <textarea rows="4" style="width: 100%" maxlength="1000" formControlName="lockdownActivity"></textarea>
-    <div formGroupName="address">
-      <p>ADRESSE</p>
-      <p>Numéro</p>
-      <input type="text" autocomplete="street-address" formControlName="numero" />
-      <p>Voie*</p>
-      <input type="text" formControlName="street" />
-      <app-validator-form [control]="getAddressControl('street')"></app-validator-form>
-      <p>Commune*</p>
-      <input type="text" formControlName="commune" />
-      <app-validator-form [control]="getAddressControl('commune')"></app-validator-form>
-    </div>
-    <p>VOUS JOINDRE</p>
-    <p>Téléphone*</p>
-    <input type="text" formControlName="contactPhone" (input)="modifyPhoneInput($event.target.value)" />
-    <app-validator-form [control]="getStructureControl('contactPhone')"></app-validator-form>
-    <p>Courriel*</p>
-    <input type="email" formControlName="contactMail" />
-    <app-validator-form [control]="getStructureControl('contactMail')"></app-validator-form>
-    <p>Site web</p>
-    <input type="text" formControlName="website" />
-    <p>Présence sur les réseaux sociaux</p>
-    <p>Facebook</p>
-    <input type="text" formControlName="facebook" />
-    <p>Twitter</p>
-    <input type="text" formControlName="twitter" />
-    <p>Instagram</p>
-    <input type="text" formControlName="instagram" />
-    <p>Personne à contacter</p>
-    <p>Civilité</p>
-    <input type="radio" formControlName="gender" value="Madame" />Madame <br />
-    <input type="radio" formControlName="gender" value="Monsieur" />Monsieur
-    <p>Nom</p>
-    <input type="text" formControlName="contactName" />
-    <p>Prénom</p>
-    <input type="text" formControlName="contactSurname" />
-    <p>Courriel*</p>
-    <input type="email" formControlName="contactMail" />
-    <app-validator-form [control]="getStructureControl('contactMail')"></app-validator-form>
-    <p>Fonction</p>
-    <select formControlName="fonction">
-      <option value="">---Sélectionner---</option>
-      <option *ngFor="let fonction of fonctions | keyvalue" [value]="fonction.key">
-        {{ fonction.value }}
-      </option>
-    </select>
-    <p>Accessibilité</p>
-    <input type="checkbox" formControlName="pmrAccess" />Accessibilité personnes à mobilité réduite (PMR) <br />
-    <div *ngIf="accessModality">
-      <p>{{ accessModality.name }}*</p>
-      <div *ngFor="let module of accessModality.modules">
-        <label>
-          <input
-            type="checkbox"
-            [value]="module.id"
-            (change)="onCheckChange($event, accessModality.id)"
-            [checked]="isInArray(module.id, accessModality.id)"
-            [disabled]="getStructureControl(accessModality.id).disabled"
-          />
-          {{ module.text }}
-        </label>
+      <div class="btnStart">
+        <button class="btn start" (click)="nextPage()">C'est Parti</button>
       </div>
-      <app-validator-form [control]="getStructureControl('accessModality')"></app-validator-form>
     </div>
-    <p>Pour les RDV, merci de préciser s'il est nécessaire d'apporter des pièces justificatives ou du matériel.</p>
-    <textarea rows="4" style="width: 100%" maxlength="500" formControlName="documentsMeeting"></textarea>
-    <div *ngIf="labelsQualifications">
-      <p>{{ labelsQualifications.name }}</p>
-      <div *ngFor="let module of labelsQualifications.modules">
-        <label>
-          <input
-            type="checkbox"
-            [value]="module.id"
-            (change)="onCheckChange($event, labelsQualifications.id)"
-            [checked]="isInArray(module.id, labelsQualifications.id)"
-            [disabled]="getStructureControl(labelsQualifications.id).disabled"
-          />
-          {{ module.text }}
-        </label>
+    <div *ngIf="currentPage == 1" class="informations page" fxLayout="column" fxLayoutGap="28px">
+      <h3>De quelles informations faut-il vous munir ?</h3>
+      <img src="../../assets/form/factures.svg" alt="logo factures" />
+      <div>
+        <ul>
+          <li><span>les coordonnées de votre structure</span></li>
+
+          <li><span>les horaires d’ouverture</span></li>
+
+          <li><span>la liste des ateliers que vous dispensez (optionnel)</span></li>
+        </ul>
       </div>
     </div>
-    <div *ngIf="publics">
-      <p>{{ publics.name }}*</p>
-      <div *ngFor="let module of publics.modules">
-        <label>
-          <input
-            type="checkbox"
-            [value]="module.id"
-            (change)="onCheckChange($event, publics.id)"
-            [checked]="isInArray(module.id, publics.id)"
-            [disabled]="getStructureControl(publics.id).disabled"
-          />
-          {{ module.text }}
-        </label>
+    <form [formGroup]="accountForm" *ngIf="accountForm && !profile">
+      <div *ngIf="currentPage == 2" class="page">
+        <div class="title">
+          <h3>Qui êtes-vous ?</h3>
+          <p>Ces informations ne seront pas visibles sur la plateforme</p>
+        </div>
+        <div class="form-group" fxLayout="column">
+          <label for="surname">Nom</label>
+          <div fxLayout="row" fxLayoutGap="13px">
+            <input type="text" (input)="setValidationsForm()" formControlName="surname" class="form-input" />
+            <img *ngIf="accountForm.get('surname').valid" src="../../assets/form/validate.svg" alt="logo valid" />
+            <img
+              *ngIf="accountForm.get('surname').invalid && accountForm.get('surname').value"
+              src="../../assets/form/notvalidate.svg"
+              alt="logo invalid"
+            />
+          </div>
+        </div>
+        <div class="form-group" fxLayout="column">
+          <label for="name">Prénom</label>
+          <div fxLayout="row" fxLayoutGap="13px">
+            <input type="text" (input)="setValidationsForm()" formControlName="name" class="form-input" />
+            <img *ngIf="accountForm.get('name').valid" src="../../assets/form/validate.svg" alt="logo valid" />
+            <img
+              *ngIf="accountForm.get('name').invalid && accountForm.get('name').value"
+              src="../../assets/form/notvalidate.svg"
+              alt="logo invalid"
+            />
+          </div>
+        </div>
+        <div class="form-group" fxLayout="column">
+          <label for="phone">Téléphone</label>
+          <div fxLayout="row" fxLayoutGap="13px">
+            <input
+              type="text"
+              formControlName="phone"
+              class="form-input phone"
+              (input)="modifyPhoneInput(accountForm, 'phone', $event.target.value)"
+            />
+            <img *ngIf="accountForm.get('phone').valid" src="../../assets/form/validate.svg" alt="logo valid" />
+            <img
+              *ngIf="accountForm.get('phone').invalid && accountForm.get('phone').value"
+              src="../../assets/form/notvalidate.svg"
+              alt="logo invalid"
+            />
+          </div>
+        </div>
       </div>
-      <app-validator-form [control]="getStructureControl('publics')"></app-validator-form>
-    </div>
-    <div formGroupName="hours">
-      <p>Heures</p>
-      <div *ngFor="let day of weekDay | keyvalue">
-        <div [formGroupName]="day.key">
-          <p>Ouvert le {{ day.value }} ? :</p>
-          <input type="radio" formControlName="open" (click)="addTime(day.key)" [value]="true" />Oui <br />
-          <input type="radio" formControlName="open" (click)="removeTime(day.key)" [value]="false" />Non
-          <div formArrayName="time" *ngIf="isOpen(day.key)">
-            <div *ngFor="let time of getTime(day.key).controls; index as i">
-              <div [formGroupName]="i">
-                <input type="number" formControlName="openning" />
-                <input type="number" formControlName="closing" />
+      <div *ngIf="currentPage == 3" class="page">
+        <div class="title">
+          <h3>Quels identifiants utiliserez-vous pour vous connecter ?</h3>
+        </div>
+        <div class="form-group" fxLayout="column">
+          <label for="email">Courriel personnel</label>
+          <div fxLayout="row" fxLayoutGap="13px">
+            <input type="text" (input)="setValidationsForm()" formControlName="email" class="form-input" />
+            <img *ngIf="accountForm.get('email').valid" src="../../assets/form/validate.svg" alt="logo valid" />
+            <img
+              *ngIf="accountForm.get('email').invalid && accountForm.get('email').value"
+              src="../../assets/form/notvalidate.svg"
+              alt="logo invalid"
+            />
+          </div>
+        </div>
+        <div class="form-group" fxLayout="column">
+          <label for="password">Création de mot de passe</label>
+          <p
+            class="password"
+            [ngClass]="{ invalid: accountForm.get('password').invalid && accountForm.get('password').value }"
+          >
+            Le mot de passe doit contenir au minimum : 8 caractères dont un caractère spécial, un caractère en majuscule
+            et un chiffre.
+          </p>
+          <div fxLayout="row" fxLayoutGap="13px">
+            <input
+              [type]="isShowPassword ? 'text' : 'password'"
+              formControlName="password"
+              class="form-input password"
+              (input)="setValidationsForm()"
+              autocomplete="on"
+            />
+            <img
+              (click)="showPassword()"
+              class="eyePassword"
+              src="../../assets/form/eyePassword.svg"
+              alt="logo eyePassword"
+            />
+            <img *ngIf="accountForm.get('password').valid" src="../../assets/form/validate.svg" alt="logo valid" />
+            <img
+              *ngIf="accountForm.get('password').invalid && accountForm.get('password').value"
+              src="../../assets/form/notvalidate.svg"
+              alt="logo invalid"
+            />
+          </div>
+        </div>
+        <div class="form-group" fxLayout="column">
+          <label for="confirmPassword">Vérification du mot de passe</label>
+          <div fxLayout="row" fxLayoutGap="13px">
+            <input
+              [type]="isShowConfirmPassword ? 'text' : 'password'"
+              formControlName="confirmPassword"
+              class="form-input password"
+              (input)="setValidationsForm()"
+              autocomplete="on"
+            />
+            <img
+              (click)="showConfirmPassword()"
+              class="eyePassword"
+              src="../../assets/form/eyePassword.svg"
+              alt="logo eyePassword"
+            />
+            <img
+              *ngIf="accountForm.get('confirmPassword').valid && accountForm.get('confirmPassword').value"
+              src="../../assets/form/validate.svg"
+              alt="logo valid"
+            />
+            <img
+              *ngIf="accountForm.get('confirmPassword').invalid && accountForm.get('confirmPassword').value"
+              src="../../assets/form/notvalidate.svg"
+              alt="logo invalid"
+            />
+          </div>
+        </div>
+      </div>
+    </form>
+    <form [formGroup]="structureForm" *ngIf="structureForm">
+      <div *ngIf="currentPage == 4" class="page">
+        <div class="title">
+          <h3>Quelle structure voulez-vous réferencer ?</h3>
+        </div>
+        <div class="form-group" fxLayout="column">
+          <label for="structureName">Nom de la structure</label>
+          <div fxLayout="row" fxLayoutGap="13px">
+            <input
+              type="text"
+              (input)="setValidationsForm()"
+              formControlName="structureName"
+              class="form-input structureName"
+            />
+            <img
+              *ngIf="getStructureControl('structureName').valid"
+              src="../../assets/form/validate.svg"
+              alt="logo valid"
+            />
+          </div>
+        </div>
+        <div class="form-group" fxLayout="column">
+          <label for="address">Adresse de la structure</label>
+
+          <div fxLayout="row" fxLayoutGap="13px">
+            <app-address-autocomplete
+              [address]="getStructureControl('address').valid ? getStructureControl('address').value : null"
+              (inputAddress)="setAddressStructure()"
+              (selectedAddress)="setAddressStructure($event)"
+            ></app-address-autocomplete>
+            <img *ngIf="getStructureControl('address').valid" src="../../assets/form/validate.svg" alt="logo valid" />
+          </div>
+        </div>
+      </div>
+      <div *ngIf="currentPage == 5" class="page">
+        <div class="title">
+          <h3>Quel numéro appelé pour joindre votre structure ?</h3>
+        </div>
+        <div class="form-group" fxLayout="column">
+          <label for="contactPhone">Téléphone de la structure</label>
+          <div fxLayout="row" fxLayoutGap="13px">
+            <input
+              type="text"
+              formControlName="contactPhone"
+              class="form-input"
+              (input)="modifyPhoneInput(structureForm, 'contactPhone', $event.target.value)"
+            />
+            <img
+              *ngIf="getStructureControl('contactPhone').valid"
+              src="../../assets/form/validate.svg"
+              alt="logo valid"
+            />
+            <img
+              *ngIf="getStructureControl('contactPhone').invalid && getStructureControl('contactPhone').value"
+              src="../../assets/form/notvalidate.svg"
+              alt="logo invalid"
+            />
+          </div>
+        </div>
+      </div>
+      <div *ngIf="currentPage == 6" class="page" fxLayout="column">
+        <div class="title">
+          <h3>Quel type de structure ?</h3>
+          <p>1 seul choix possible</p>
+        </div>
+        <div class="type-picker">
+          <app-structure-type-picker
+            [pickedChoice]="
+              getStructureControl('structureType').valid ? getStructureControl('structureType').value : null
+            "
+            (selectedType)="setTypeStructure($event)"
+          ></app-structure-type-picker>
+        </div>
+      </div>
+      <div *ngIf="currentPage == 7" class="page">
+        <div class="title">
+          <h3>Quels sont les modalités d'accueil ?</h3>
+          <p>Plusieurs choix possibles</p>
+        </div>
+        <div *ngIf="accessModality" fxLayout="row wrap" fxLayoutGap="16px" fxLayoutAlign="flex-start">
+          <app-checkbox-form
+            *ngFor="let module of accessModality.modules"
+            [isChecked]="isInArray(module.id, accessModality.id)"
+            [text]="module.text"
+            [iconSvg]="module.id"
+            (checkEvent)="onCheckChange($event, accessModality.id, module.id)"
+          >
+          </app-checkbox-form>
+        </div>
+      </div>
+      <div *ngIf="currentPage == 8" class="page">
+        <div class="title">
+          <h3>Quels sont les horaires d'ouverture ?</h3>
+          <p class="notRequired">facultatif</p>
+        </div>
+        <app-hour-picker
+          *ngIf="hoursForm"
+          (updateForm)="updateHours($event)"
+          (updateFormError)="setHoursError()"
+          [structureInput]="hoursForm"
+          [isEditMode]="!isEditMode"
+        ></app-hour-picker>
+      </div>
+      <div *ngIf="currentPage == 9" class="page">
+        <div class="title">
+          <h3>Avez-vous des précisions à apporter sur les horaires ?</h3>
+          <p class="notRequired">facultatif</p>
+        </div>
+        <div class="textareaBlock" fxLayout="column">
+          <textarea
+            rows="8"
+            placeholder="Exemple : nous ne sommes ouvert que le 1er mercredi du mois."
+            maxlength="500"
+            formControlName="exceptionalClosures"
+          ></textarea>
+          <p>
+            {{
+              getStructureControl('exceptionalClosures').value
+                ? getStructureControl('exceptionalClosures').value.length
+                : 0
+            }}/500
+          </p>
+        </div>
+      </div>
+      <div *ngIf="currentPage == 10" class="page">
+        <div class="title">
+          <h3>Est-ce accessible pour les personnes à mobilité réduite ?</h3>
+        </div>
+        <app-radio-form
+          [selectedOption]="getStructureControl('pmrAccess').value"
+          (selectedEvent)="onRadioBtnChange('pmrAccess', $event)"
+        >
+        </app-radio-form>
+      </div>
+      <div *ngIf="currentPage == 11" class="page">
+        <div class="title">
+          <h3>Comment vous trouver sur internet ?</h3>
+        </div>
+        <div class="form-group" fxLayout="column">
+          <label for="structureName">Courriel de la structure</label>
+          <div fxLayout="row" fxLayoutGap="13px">
+            <input type="text" (input)="setValidationsForm()" formControlName="contactMail" class="form-input" />
+            <img
+              *ngIf="getStructureControl('contactMail').valid"
+              src="../../assets/form/validate.svg"
+              alt="logo valid"
+            />
+
+            <img
+              *ngIf="getStructureControl('contactMail').invalid && getStructureControl('contactMail').value"
+              src="../../assets/form/notvalidate.svg"
+              alt="logo invalid"
+            />
+          </div>
+        </div>
+        <div class="collapse" [ngClass]="{ notCollapsed: !showWebsite }">
+          <div fxLayout="column">
+            <div class="collapseHeader" fxLayout="row" fxLayoutAlign=" center" (click)="toggleWebSite()">
+              <div class="titleCollapse">J’ajoute un site web</div>
+              <div class="logo">
+                <svg class="show" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#show'"></use>
+                </svg>
+                <svg class="hide" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#hide'"></use>
+                </svg>
+              </div>
+            </div>
+            <div *ngIf="showWebsite" class="inputSection">
+              <div class="form-group" fxLayout="column">
+                <label for="website">Adresse du site web</label>
+                <div fxLayout="row" fxLayoutGap="27px">
+                  <input
+                    type="text"
+                    placeholder="www.resonum.com"
+                    (input)="setValidationsForm()"
+                    formControlName="website"
+                    class="form-input"
+                  />
+                  <img
+                    *ngIf="getStructureControl('website').valid && getStructureControl('website').value"
+                    src="../../assets/form/validate.svg"
+                    alt="logo valid"
+                  />
+                  <img
+                    *ngIf="getStructureControl('website').invalid"
+                    src="../../assets/form/notvalidate.svg"
+                    alt="logo invalid"
+                  />
+                </div>
+              </div>
+            </div>
+          </div>
+        </div>
+        <div class="collapse" [ngClass]="{ notCollapsed: !showSocialNetwork }">
+          <div fxLayout="column">
+            <div class="collapseHeader" fxLayout="row" fxLayoutAlign=" center" (click)="toggleSocialNetwork()">
+              <div class="titleCollapse">J’ajoute les réseaux sociaux</div>
+              <div class="logo">
+                <svg class="show" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#show'"></use>
+                </svg>
+                <svg class="hide" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#hide'"></use>
+                </svg>
               </div>
-              <div *ngIf="i < 1">
-                <input
-                  type="checkbox"
-                  [value]="false"
-                  (change)="onCheckPlageHoursChange($event, day.key, time)"
-                  [checked]="getTime(day.key).controls.length == 2"
-                  [disabled]="getStructureControl('hours').disabled"
-                />Ajouter une plage
+            </div>
+            <div *ngIf="showSocialNetwork" class="inputSection">
+              <div class="form-group facebook">
+                <div fxLayout="row" fxLayoutGap="27px">
+                  <svg class="facebook" aria-hidden="true">
+                    <use [attr.xlink:href]="'assets/form/sprite.svg#facebook'"></use>
+                  </svg>
+                  <input
+                    type="text"
+                    (input)="setValidationsForm()"
+                    placeholder="facebook.com/resonum"
+                    formControlName="facebook"
+                    class="form-input withIcon"
+                  />
+                  <img
+                    *ngIf="
+                      getStructureControl('facebook').valid &&
+                      getStructureControl('facebook').value != null &&
+                      getStructureControl('facebook').value != ''
+                    "
+                    src="../../assets/form/validate.svg"
+                    alt="logo valid"
+                  />
+                  <img
+                    *ngIf="getStructureControl('facebook').invalid"
+                    src="../../assets/form/notvalidate.svg"
+                    alt="logo invalid"
+                  />
+                </div>
+              </div>
+              <div class="form-group twitter">
+                <div fxLayout="row" fxLayoutGap="27px">
+                  <svg class="twitter" aria-hidden="true">
+                    <use [attr.xlink:href]="'assets/form/sprite.svg#twitter'"></use>
+                  </svg>
+                  <input
+                    type="text"
+                    (input)="setValidationsForm()"
+                    placeholder="twitter.com/resonum"
+                    formControlName="twitter"
+                    class="form-input withIcon"
+                  />
+                  <img
+                    *ngIf="
+                      getStructureControl('twitter').valid &&
+                      getStructureControl('twitter').value != null &&
+                      getStructureControl('twitter').value != ''
+                    "
+                    src="../../assets/form/validate.svg"
+                    alt="logo valid"
+                  />
+                  <img
+                    *ngIf="getStructureControl('twitter').invalid"
+                    src="../../assets/form/notvalidate.svg"
+                    alt="logo invalid"
+                  />
+                </div>
+              </div>
+              <div class="form-group instagram">
+                <div fxLayout="row" fxLayoutGap="27px">
+                  <svg class="instagram" aria-hidden="true">
+                    <use [attr.xlink:href]="'assets/form/sprite.svg#instagram'"></use>
+                  </svg>
+                  <input
+                    type="text"
+                    (input)="setValidationsForm()"
+                    formControlName="instagram"
+                    placeholder="instagram.com/resonum"
+                    class="form-input withIcon"
+                  />
+                  <img
+                    *ngIf="
+                      getStructureControl('instagram').valid &&
+                      getStructureControl('instagram').value != null &&
+                      getStructureControl('instagram').value != ''
+                    "
+                    src="../../assets/form/validate.svg"
+                    alt="logo valid"
+                  />
+                  <img
+                    *ngIf="getStructureControl('instagram').invalid"
+                    src="../../assets/form/notvalidate.svg"
+                    alt="logo invalid"
+                  />
+                </div>
+              </div>
+              <div class="form-group linkedin">
+                <div fxLayout="row" fxLayoutGap="27px">
+                  <svg class="linkedin" aria-hidden="true">
+                    <use [attr.xlink:href]="'assets/form/sprite.svg#linkedin'"></use>
+                  </svg>
+                  <input
+                    type="text"
+                    (input)="setValidationsForm()"
+                    formControlName="linkedin"
+                    placeholder="linkedin.com/in/resonum"
+                    class="form-input withIcon"
+                  />
+                  <img
+                    *ngIf="
+                      getStructureControl('linkedin').valid &&
+                      getStructureControl('linkedin').value != null &&
+                      getStructureControl('linkedin').value != ''
+                    "
+                    src="../../assets/form/validate.svg"
+                    alt="logo valid"
+                  />
+                  <img
+                    *ngIf="getStructureControl('linkedin').invalid"
+                    src="../../assets/form/notvalidate.svg"
+                    alt="logo invalid"
+                  />
+                </div>
               </div>
             </div>
           </div>
         </div>
       </div>
-    </div>
-    <p>Fermetures exceptionnelles</p>
-    <input type="text" formControlName="exceptionalClosures" />
-    <div *ngIf="publicsAccompaniment">
-      <p>{{ publicsAccompaniment.name }}</p>
-      <div *ngFor="let module of publicsAccompaniment.modules">
-        <label>
-          <input
-            type="checkbox"
-            [value]="module.id"
-            (change)="onCheckChange($event, publicsAccompaniment.id)"
-            [checked]="isInArray(module.id, publicsAccompaniment.id)"
-            [disabled]="getStructureControl(publicsAccompaniment.id).disabled"
-          />
-          {{ module.text }}
-        </label>
+      <div *ngIf="currentPage == 12" class="page">
+        <div class="title">
+          <h3>Quel public peut venir vous consulter ?</h3>
+          <p>Plusieurs choix possibles</p>
+        </div>
+        <div class="tags" *ngIf="publics">
+          <button
+            *ngFor="let choice of publics.modules"
+            (click)="updateChoice(choice.id, 'publics')"
+            [ngClass]="{ selectedChoice: isInArray(choice.id, 'publics') }"
+          >
+            <div fxLayout="row" fxLayoutAlign=" center">
+              <svg class="validate" aria-hidden="true">
+                <use [attr.xlink:href]="'assets/form/sprite.svg#checkVector'"></use>
+              </svg>
+              <div class="textBtn">
+                {{ choice.text }}
+              </div>
+            </div>
+          </button>
+        </div>
       </div>
-    </div>
-    <p>Formations au numérique proposées</p>
-    <p>
-      Ces modules de compétences sont issus du référentiel national et identifiés dans le cadre du déploiement du Pass
-      numérique sur la Métropole (pour en savoir +)
-    </p>
-    <div *ngFor="let c of categoryTraining">
-      <p>{{ c.name }}</p>
-      <div *ngFor="let module of c.modules">
-        <label>
-          <input
-            type="checkbox"
-            [value]="module.id"
-            (change)="onCheckChange($event, c.id)"
-            [checked]="isInArray(module.id, c.id)"
-            [disabled]="getStructureControl(c.id).disabled"
-          />
-          {{ module.text }}
-        </label>
+      <div *ngIf="currentPage == 13" class="page">
+        <div class="title">
+          <h3>Quel(s) accompagnement(s) proposez-vous ?</h3>
+          <p class="notRequired">facultatif</p>
+        </div>
+        <div class="collapse" [ngClass]="{ notCollapsed: !showProceduresAccompaniment }">
+          <div fxLayout="column">
+            <div
+              class="collapseHeader"
+              fxLayout="row"
+              fxLayoutGap="20px"
+              fxLayoutAlign=" center"
+              (click)="toggleProceduresAccompaniment()"
+            >
+              <div class="titleCollapse">Démarches en ligne</div>
+              <div class="logo">
+                <svg class="show" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#show'"></use>
+                </svg>
+                <svg class="hide" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#hide'"></use>
+                </svg>
+              </div>
+            </div>
+            <div *ngIf="showProceduresAccompaniment && publics" class="tags">
+              <button
+                *ngFor="let choice of proceduresAccompaniment.modules"
+                (click)="updateChoice(choice.id, 'proceduresAccompaniment')"
+                [ngClass]="{ selectedChoice: isInArray(choice.id, 'proceduresAccompaniment') }"
+              >
+                <div fxLayout="row" fxLayoutAlign=" center">
+                  <svg class="validate" aria-hidden="true">
+                    <use [attr.xlink:href]="'assets/form/sprite.svg#checkVector'"></use>
+                  </svg>
+                  <div class="textBtn">
+                    {{ choice.text }}
+                  </div>
+                </div>
+              </button>
+            </div>
+          </div>
+        </div>
+        <div class="collapse" [ngClass]="{ notCollapsed: !showPublicsAccompaniment }">
+          <div fxLayout="column">
+            <div
+              class="collapseHeader"
+              fxLayout="row"
+              fxLayoutGap="20px"
+              fxLayoutAlign=" center"
+              (click)="togglePublicsAccompaniment()"
+            >
+              <div class="titleCollapse">Publics spécifiques (handicap...) ?</div>
+              <div class="logo">
+                <svg class="show" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#show'"></use>
+                </svg>
+                <svg class="hide" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#hide'"></use>
+                </svg>
+              </div>
+            </div>
+            <div *ngIf="showPublicsAccompaniment && publics" class="tags">
+              <button
+                *ngFor="let choice of publicsAccompaniment.modules"
+                (click)="updateChoice(choice.id, 'publicsAccompaniment')"
+                [ngClass]="{ selectedChoice: isInArray(choice.id, 'publicsAccompaniment') }"
+              >
+                <div fxLayout="row" fxLayoutAlign=" center">
+                  <svg class="validate" aria-hidden="true">
+                    <use [attr.xlink:href]="'assets/form/sprite.svg#checkVector'"></use>
+                  </svg>
+                  <div class="textBtn">
+                    {{ choice.text }}
+                  </div>
+                </div>
+              </button>
+            </div>
+          </div>
+        </div>
       </div>
-    </div>
-    <div *ngIf="equipmentsAndServices">
-      <p>{{ equipmentsAndServices.name }}</p>
-      <div *ngFor="let module of equipmentsAndServices.modules">
-        <label>
-          <input
-            type="checkbox"
-            [value]="module.id"
-            (change)="onCheckChange($event, equipmentsAndServices.id)"
-            [checked]="isInArray(module.id, equipmentsAndServices.id)"
-            [disabled]="getStructureControl(equipmentsAndServices.id).disabled"
-          />
-          {{ module.text }}
-        </label>
-        <div *ngIf="isInArray(module.id, equipmentsAndServices.id)">
-          <div *ngIf="module.id == 'ordinateurs'">
-            <span>Nombre</span>
-            <input type="number" formControlName="nbComputers" />
+      <div *ngIf="currentPage == 14" class="page">
+        <div class="title">
+          <h3>Quelles sont les autres démarches ?</h3>
+        </div>
+        <div class="textareaBlock" fxLayout="column">
+          <textarea
+            rows="8"
+            placeholder="Exemple : tout ce qui est en lien avec la création d'entreprise..."
+            maxlength="500"
+            formControlName="otherDescription"
+            (input)="setValidationsForm()"
+          ></textarea>
+          <p>
+            {{
+              getStructureControl('otherDescription').value ? getStructureControl('otherDescription').value.length : 0
+            }}/500
+          </p>
+        </div>
+      </div>
+      <div *ngIf="currentPage == 15" class="page">
+        <div class="title">
+          <h3>Quel(s) atelier(s) au numérique proposez-vous ?</h3>
+          <p class="notRequired">facultatif</p>
+        </div>
+        <div class="collapse" *ngFor="let categ of trainingCategories" [ngClass]="{ notCollapsed: !categ.openned }">
+          <div fxLayout="column">
+            <div
+              class="collapseHeader"
+              fxLayout="row"
+              fxLayoutGap="20px"
+              fxLayoutAlign=" center"
+              (click)="toggleTrainingCategories(categ)"
+            >
+              <div class="titleCollapse">{{ categ.category.name }}</div>
+              <div class="logo">
+                <svg class="show" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#show'"></use>
+                </svg>
+                <svg class="hide" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#hide'"></use>
+                </svg>
+              </div>
+            </div>
+            <div *ngIf="categ.openned" class="tags">
+              <button
+                *ngFor="let choice of categ.category.modules"
+                (click)="updateChoice(choice.id, categ.category.id)"
+                [ngClass]="{ selectedChoice: isInArray(choice.id, categ.category.id) }"
+              >
+                <div fxLayout="row" fxLayoutAlign=" center">
+                  <svg class="validate" aria-hidden="true">
+                    <use [attr.xlink:href]="'assets/form/sprite.svg#checkVector'"></use>
+                  </svg>
+                  <div class="textBtn">
+                    {{ choice.text }}
+                  </div>
+                </div>
+              </button>
+            </div>
           </div>
-          <div *ngIf="module.id == 'tablettes'">
-            <span>Nombre</span>
-            <input type="number" formControlName="nbTablets" />
+        </div>
+      </div>
+      <div *ngIf="currentPage == 16" class="page">
+        <div class="title">
+          <h3>Ces ateliers sont-ils gratuits ?</h3>
+        </div>
+        <app-radio-form
+          [selectedOption]="getStructureControl('freeWorkShop').value"
+          (selectedEvent)="onRadioBtnChange('freeWorkShop', $event)"
+        >
+        </app-radio-form>
+      </div>
+      <div *ngIf="currentPage == 17" class="page">
+        <div class="title">
+          <h3>Proposez-vous le wifi en accès libre ?</h3>
+        </div>
+        <app-radio-form
+          [selectedOption]="getStructureControl('freeWifi').value"
+          (selectedEvent)="onRadioBtnChange('freeWifi', $event)"
+        >
+        </app-radio-form>
+      </div>
+      <div *ngIf="currentPage == 18" class="page">
+        <div class="title">
+          <h3>Quel matériel mettez-vous à disposition ?</h3>
+          <p class="notRequired">facultatif</p>
+        </div>
+        <ng-container *ngFor="let equipment of equipmentsAndServices">
+          <div
+            class="collapse equipments"
+            [ngClass]="{ notCollapsed: !equipment.openned }"
+            *ngIf="
+              ['ordinateurs', 'tablettes', 'bornesNumeriques', 'imprimantes', 'scanners'].includes(equipment.module.id)
+            "
+          >
+            <div fxLayout="column">
+              <div
+                class="collapseHeader"
+                fxLayout="row"
+                fxLayoutAlign=" center"
+                (click)="toggleEquipmentsServices(equipment)"
+              >
+                <div class="titleCollapse">{{ equipment.module.text }}</div>
+                <div class="logo">
+                  <svg class="show" aria-hidden="true">
+                    <use [attr.xlink:href]="'assets/form/sprite.svg#show'"></use>
+                  </svg>
+                  <svg class="hide" aria-hidden="true">
+                    <use [attr.xlink:href]="'assets/form/sprite.svg#hide'"></use>
+                  </svg>
+                </div>
+              </div>
+              <div *ngIf="equipment.openned" class="inputSection">
+                <div class="form-group" fxLayout="column">
+                  <label for="equipment">Nombre</label>
+                  <div fxLayout="row" fxLayoutAlign=" center" fxLayoutGap="27px">
+                    <ng-container *ngIf="equipment.module.id == 'ordinateurs'">
+                      <input
+                        type="number"
+                        (input)="setValidationsForm()"
+                        formControlName="nbComputers"
+                        class="form-input nbEquipment"
+                      />
+                      <img
+                        *ngIf="getStructureControl('nbComputers').valid"
+                        src="../../assets/form/validate.svg"
+                        alt="logo valid"
+                        class="nbEquipment"
+                      />
+                      <img
+                        *ngIf="getStructureControl('nbComputers').invalid"
+                        src="../../assets/form/notvalidate.svg"
+                        alt="logo valid"
+                        class="nbEquipment"
+                      />
+                    </ng-container>
+                    <ng-container *ngIf="equipment.module.id == 'tablettes'">
+                      <input
+                        type="number"
+                        (input)="setValidationsForm()"
+                        formControlName="nbTablets"
+                        class="form-input nbEquipment"
+                      />
+                      <img
+                        *ngIf="getStructureControl('nbTablets').valid"
+                        src="../../assets/form/validate.svg"
+                        alt="logo valid"
+                        class="nbEquipment"
+                      />
+                      <img
+                        *ngIf="getStructureControl('nbTablets').invalid"
+                        src="../../assets/form/notvalidate.svg"
+                        alt="logo invalid"
+                        class="nbEquipment"
+                      />
+                    </ng-container>
+                    <ng-container *ngIf="equipment.module.id == 'imprimantes'">
+                      <input
+                        type="number"
+                        (input)="setValidationsForm()"
+                        formControlName="nbPrinters"
+                        class="form-input nbEquipment"
+                      />
+                      <img
+                        *ngIf="getStructureControl('nbPrinters').valid"
+                        src="../../assets/form/validate.svg"
+                        alt="logo valid"
+                        class="nbEquipment"
+                      />
+                      <img
+                        *ngIf="getStructureControl('nbPrinters').invalid"
+                        src="../../assets/form/notvalidate.svg"
+                        alt="logo invalid"
+                        class="nbEquipment"
+                      />
+                    </ng-container>
+                    <ng-container *ngIf="equipment.module.id == 'bornesNumeriques'">
+                      <input
+                        type="number"
+                        (input)="setValidationsForm()"
+                        formControlName="nbNumericTerminal"
+                        class="form-input nbEquipment"
+                      />
+                      <img
+                        *ngIf="getStructureControl('nbNumericTerminal').valid"
+                        src="../../assets/form/validate.svg"
+                        alt="logo valid"
+                        class="nbEquipment"
+                      />
+                      <img
+                        *ngIf="getStructureControl('nbNumericTerminal').invalid"
+                        src="../../assets/form/notvalidate.svg"
+                        alt="logo invalid"
+                        class="nbEquipment"
+                      />
+                    </ng-container>
+                    <ng-container *ngIf="equipment.module.id == 'scanners'">
+                      <input
+                        type="number"
+                        (input)="setValidationsForm()"
+                        formControlName="nbScanners"
+                        class="form-input nbEquipment"
+                      />
+                      <img
+                        *ngIf="getStructureControl('nbScanners').valid"
+                        src="../../assets/form/validate.svg"
+                        alt="logo valid"
+                        class="nbEquipment"
+                      />
+                      <img
+                        *ngIf="getStructureControl('nbScanners').invalid"
+                        src="../../assets/form/notvalidate.svg"
+                        alt="logo valid"
+                        class="nbEquipment"
+                      />
+                    </ng-container>
+                  </div>
+                </div>
+              </div>
+            </div>
+          </div>
+        </ng-container>
+      </div>
+      <div *ngIf="currentPage == 19" class="page">
+        <div class="title">
+          <h3>Quelle(s) labelisation proposez-vous ?</h3>
+          <p class="notRequired">facultatif</p>
+        </div>
+        <div *ngIf="labelsQualifications" fxLayout="row wrap" fxLayoutGap="16px" fxLayoutAlign="flex-start">
+          <app-checkbox-form
+            *ngFor="let module of labelsQualifications.modules"
+            [isChecked]="isInArray(module.id, labelsQualifications.id)"
+            [text]="module.text"
+            [iconSvg]="module.id"
+            [iconType]="'labels'"
+            (checkEvent)="onCheckChange($event, labelsQualifications.id, module.id)"
+          >
+          </app-checkbox-form>
+        </div>
+      </div>
+      <div *ngIf="currentPage == 20" class="page">
+        <div class="title">
+          <h3>Quels autres services proposez-vous ?</h3>
+          <p class="notRequired">facultatif</p>
+        </div>
+        <div *ngIf="labelsQualifications" fxLayout="row wrap" fxLayoutGap="16px" fxLayoutAlign="flex-start">
+          <ng-container *ngFor="let equipment of equipmentsAndServices">
+            <app-checkbox-form
+              *ngIf="
+                ['donDeMateriels', 'reconditionnementsDeMateriel', 'accesLivresInformatiques'].includes(
+                  equipment.module.id
+                )
+              "
+              [isChecked]="isInArray(equipment.module.id, 'equipmentsAndServices')"
+              [text]="equipment.module.text"
+              [iconSvg]="equipment.module.id"
+              (checkEvent)="onCheckChange($event, 'equipmentsAndServices', equipment.module.id)"
+            >
+            </app-checkbox-form>
+          </ng-container>
+        </div>
+      </div>
+      <div *ngIf="currentPage == 21" class="page">
+        <div class="title">
+          <h3>Pouvez vous présentez votre structure ?</h3>
+          <p class="notRequired">facultatif</p>
+        </div>
+        <div class="textareaBlock" fxLayout="column">
+          <textarea
+            rows="8"
+            placeholder="Exemple : nous sommes une équipe de 7  bénévoles qui orientont les personnes pour qui le numérique est une langue étrangère"
+            maxlength="500"
+            formControlName="description"
+          ></textarea>
+          <p>
+            {{ getStructureControl('description').value ? getStructureControl('description').value.length : 0 }}/500
+          </p>
+        </div>
+      </div>
+      <div *ngIf="currentPage == 22" class="page">
+        <div class="title">
+          <h3>Y a-t-il des informations spécifique à la période COVID ?</h3>
+          <p class="notRequired">facultatif</p>
+        </div>
+        <div class="textareaBlock" fxLayout="column">
+          <textarea
+            rows="8"
+            placeholder="Exemple : nous ne sommes joignables que par visio"
+            maxlength="500"
+            formControlName="lockdownActivity"
+          ></textarea>
+          <p>
+            {{
+              getStructureControl('lockdownActivity').value ? getStructureControl('lockdownActivity').value.length : 0
+            }}/500
+          </p>
+        </div>
+      </div>
+      <div *ngIf="currentPage == 23" class="page">
+        <div class="title">
+          <h3>
+            Acceptez-vous que les informations saisies soient enregistrées par la Métropole de Lyon<span
+              class="asterisk"
+              >*</span
+            >
+            ?
+          </h3>
+        </div>
+        <app-checkbox-form
+          [isChecked]="userAcceptSavedDate"
+          [text]="'J\'accepte'"
+          (checkEvent)="acceptDataBeSaved($event)"
+        >
+        </app-checkbox-form>
+        <p class="informationEndForm">
+          <span class="asterisk">*</span> Les informations recueillies sont enregistrées dans un fichier par la
+          Métropole de Lyon en vue de l'animation du réseau des acteurs de la médiation numérique. Elles sont conservées
+          pendant 24 mois et sont destinées aux seuls intervenants habilités de la Métropole de Lyon. Vos données
+          personnelles sont traitées dans ce cadre aux fins de Ârecensement des actions de médiation numérique sur le
+          territoire de la métropole. Conformément à la loi 78-17 du 6 janvier 1978 modifiée relative à l'information,
+          aux fichiers et aux libertés, et au Règlement Général européen à la Protection des Données, vous avez la
+          possibilité d’exercer vos droits d’accès, de rectification, d’effacement, d’opposition, de limitation du
+          traitement et de révocation de votre consentement. Afin d'exercer vos droits, vous pouvez vous adresser : par
+          courrier postal à : Métropole de Lyon - Direction des Affaires Juridiques et de la Commande Publique - 20, rue
+          du Lac - BP 33569 - 69505 Lyon Cedex par courrier électronique en remplissant le formulaire dédié sur Toodego,
+          le site des services et démarches en ligne dans la Métropole de Lyon
+        </p>
+      </div>
+      <div *ngIf="false" class="page">
+        <div class="title">
+          <h3>Voulez-vous inviter d’autres personnes dans cette structure ?</h3>
+          <p class="notRequired">facultatif</p>
+        </div>
+        <div class="collapse" [ngClass]="{ notCollapsed: true }">
+          <div fxLayout="column">
+            <div class="collapseHeader" fxLayout="row" fxLayoutAlign=" center">
+              <div class="titleCollapse">J’ajoute d'autres personnes dans cette structure</div>
+              <div class="logo">
+                <svg class="show" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#show'"></use>
+                </svg>
+                <svg class="hide" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#hide'"></use>
+                </svg>
+              </div>
+            </div>
           </div>
-          <div *ngIf="module.id == 'bornesNumeriques'">
-            <span>Nombre</span>
-            <input type="number" formControlName="nbNumericTerminal" />
+        </div>
+      </div>
+      <div *ngIf="currentPage == nbPagesForm && !profile" class="page" fxLayout="column" fxLayoutGap="69px">
+        <svg aria-hidden="true">
+          <use [attr.xlink:href]="'assets/form/sprite.svg#emailVerification'"></use>
+        </svg>
+        <h3>Un courriel vous a été envoyé afin de finaliser votre inscription</h3>
+      </div>
+      <div *ngIf="currentPage == nbPagesForm && profile" class="page">
+        <div class="title">
+          <h3>
+            Bravo !<br />
+            Votre structure a bien été référencée.
+          </h3>
+        </div>
+
+        <div class="structureInfoBlock" fxLayout="row" fxLayoutAlign=" center">
+          <div class="structureInfoContent" fxLayout="column">
+            {{ getStructureControl('structureName').value }}
+            <span>{{ getStructureControl('structureType').value }}</span>
           </div>
-          <div *ngIf="module.id == 'imprimantes'">
-            <span>Nombre</span>
-            <input type="number" formControlName="nbPrinters" />
+          <div class="validateSvg">
+            <svg class="validate" aria-hidden="true">
+              <use [attr.xlink:href]="'assets/form/sprite.svg#checkVector'"></use>
+            </svg>
           </div>
         </div>
       </div>
+    </form>
+    <div *ngIf="currentPage != 0" class="footer desktop">
+      <div fxLayout="row" fxLayoutAlign="center center" *ngIf="currentPage != nbPagesForm">
+        <app-footer-form
+          (previousPage)="previousPage()"
+          (nextPage)="nextPage()"
+          [isValid]="isPageValid"
+        ></app-footer-form>
+      </div>
+      <button
+        *ngIf="currentPage == nbPagesForm && !profile"
+        class="btn validate unique"
+        routerLink="/home"
+        [routerLinkActive]="'active'"
+      >
+        Ok
+      </button>
+      <button
+        *ngIf="currentPage == nbPagesForm && profile"
+        class="btn unique"
+        routerLink="/home"
+        [state]="{ data: createdStructure }"
+      >
+        Voir ma structure
+      </button>
     </div>
-    <p>Précisions si nécessaire</p>
-    <textarea rows="4" style="width: 100%" maxlength="500" formControlName="equipmentsDetails"></textarea>
-    <p>L'accès à ce matériel est</p>
-    <div *ngFor="let equipment of equipmentAccess | keyvalue">
-      <label>
-        <input
-          type="checkbox"
-          [value]="equipment.key"
-          (change)="onCheckChange($event, 'equipmentsAccessType')"
-          [checked]="isInArray(equipment.key, 'equipmentsAccessType')"
-          [disabled]="getStructureControl('equipmentsAccessType').disabled"
-        />
-        {{ equipment.value }}
-      </label>
+  </div>
+  <div *ngIf="currentPage != 0" class="footer phone">
+    <div fxLayout="row" fxLayoutAlign="center center" *ngIf="currentPage != nbPagesForm">
+      <app-footer-form
+        (previousPage)="previousPage()"
+        (nextPage)="nextPage()"
+        [isValid]="isPageValid"
+      ></app-footer-form>
     </div>
-    <br />
-    <button *ngIf="isEditMode" type="submit">Modifier</button>
-    <button *ngIf="!structureId" [disabled]="structureForm.invalid" type="submit">Ajouter</button>
-  </form>
-  <button
-    *ngIf="!isEditMode && structureId && profile"
-    [disabled]="structureForm.invalid"
-    (click)="onSubmitClaimWithAccount()"
-  >
-    Revendiquer
-  </button>
-  <app-create-account-form
-    *ngIf="!isEditMode && structureId && !profile"
-    (submitForm)="onSubmitClaim($event)"
-  ></app-create-account-form>
+    <button
+      *ngIf="currentPage == nbPagesForm && !profile"
+      class="btn validate unique"
+      routerLink="/home"
+      [routerLinkActive]="'active'"
+    >
+      Ok
+    </button>
+    <button
+      *ngIf="currentPage == nbPagesForm && profile"
+      class="btn unique"
+      routerLink="/home"
+      [state]="{ data: createdStructure }"
+    >
+      Voir ma structure
+    </button>
+  </div>
 </div>
diff --git a/src/app/form/form.component.scss b/src/app/form/form.component.scss
index 8db71778cd2627ee8691f6325efd44662bf13364..203a87dacfe3a1eed81fb8d603fbc5e1393a0452 100644
--- a/src/app/form/form.component.scss
+++ b/src/app/form/form.component.scss
@@ -1,9 +1,451 @@
+@import '../../assets/scss/layout';
+@import '../../assets/scss/breakpoint';
+@import '../../assets/scss/color';
+@import '../../assets/scss/typography';
+@import '../../assets/scss/shapes';
+@import '../../assets/scss/z-index';
+
+$progressBar-height: 50px;
+h3 {
+  margin: 0;
+}
 .form {
-  position: fixed;
   background: white;
-  width: 50vw;
-  height: 100vh;
-  top: 0;
-  z-index: 9999;
-  overflow: auto;
+  width: 100vw;
+  height: calc(100vh - #{$header-height} - #{$footer-height});
+  top: #{$header-height};
+  z-index: $structure-details-z-index;
+  @media #{$tablet} {
+    height: calc(100vh - #{$header-height});
+    position: fixed; //Hide default header app.
+  }
+}
+
+.footer {
+  padding: 17px 0;
+  width: 100%;
+  max-width: 960px;
+  margin: 20px auto;
+  text-align: center;
+  .btn {
+    width: 149px;
+    &.validate {
+      background-color: $green-1;
+    }
+    &.unique {
+      width: 240px;
+    }
+  }
+  &.desktop {
+    @media #{$tablet} {
+      display: none;
+    }
+  }
+
+  &.phone {
+    display: none;
+    @media #{$tablet} {
+      margin: 0 auto;
+      border-top: 1px solid $grey-4;
+      display: block;
+    }
+  }
+}
+.header {
+  height: #{$header-height-phone};
+  line-height: #{$header-height-phone};
+  display: none;
+  align-items: center;
+  justify-content: space-between;
+  text-align: center;
+  border-bottom: solid 1px $grey-4;
+  background-color: $grey-1;
+  color: $white;
+  padding: 0 20px;
+  @media #{$tablet} {
+    display: block !important;
+  }
+  .container-icoMenu {
+    width: 100%;
+    position: absolute;
+    height: 50px;
+
+    .block-iconMenu {
+      right: 44px;
+      width: 50px;
+      height: 50px;
+      position: absolute;
+    }
+    .ico-menu {
+      right: 13px;
+      top: 24px;
+      background: $white;
+      &::after {
+        background: $white;
+      }
+      &::before {
+        background: $white;
+      }
+    }
+  }
+}
+.content {
+  padding: 0 16px;
+  display: block;
+  overflow-y: auto;
+  height: auto;
+  h2 {
+    @include cn-bold-28;
+    color: $secondary-color;
+    margin-bottom: 0;
+  }
+  h3 {
+    @include cn-bold-22;
+  }
+  .page {
+    max-width: 960px;
+    margin: auto;
+    @media #{$tablet} {
+      height: calc(
+        100vh - #{$header-height-phone} - #{$progressBar-height} - #{$footer-height-phone} - 1px
+      ); // -1px because of header border
+    }
+    height: auto;
+    color: $grey-1;
+    &.home {
+      height: 100%;
+      .btnStart {
+        margin-top: 90px;
+        text-align: center;
+      }
+    }
+    &.informations {
+      ul {
+        padding-left: 24px;
+        li::marker {
+          color: $secondary-color;
+          font-size: 26px;
+        }
+        li > * {
+          vertical-align: text-bottom;
+        }
+        li {
+          @include cn-regular-18;
+          line-height: 24px;
+          margin: 10px 0;
+        }
+      }
+    }
+    .title {
+      margin-bottom: 26px;
+    }
+    .type-picker {
+      height: 100%;
+    }
+  }
+  .titleDesc {
+    @include cn-bold-20;
+    margin-bottom: 20px;
+  }
+  p {
+    margin-top: 10px;
+    margin-bottom: 0;
+    @include cn-regular-18;
+    &.password {
+      @include cn-regular-14;
+      color: $grey-3;
+
+      margin-top: 4px;
+      width: 256px;
+      &.invalid {
+        color: $orange-warning;
+      }
+    }
+    &.notRequired {
+      font-style: italic;
+      color: $secondary-color;
+    }
+    &.informationEndForm {
+      margin-top: 18px;
+      color: $grey-2;
+      @include cn-regular-14;
+    }
+  }
+  .textareaBlock {
+    @media #{$tablet} {
+      max-width: 90%;
+    }
+    textarea {
+      padding: 13px 8px;
+      background: $grey-6;
+      border: 1px solid $grey-4;
+      border-radius: 1px;
+      resize: none;
+      @include cn-regular-16;
+    }
+    p {
+      text-align: right;
+    }
+  }
+}
+
+.btn {
+  background: $secondary-color;
+  border-radius: 4px;
+  outline: none;
+  cursor: pointer;
+  border: 0;
+  color: $white;
+  height: 40px;
+  width: 192px;
+  @include btn-bold;
+
+  &.start {
+    margin-bottom: 26px;
+  }
+}
+.progressBar {
+  height: #{$progressBar-height};
+  max-width: 960px;
+  margin: auto;
+  progress {
+    width: 100%;
+    height: 6px;
+    border-radius: 7px;
+    &::-webkit-progress-bar {
+      background-color: $grey-6;
+    }
+    &::-webkit-progress-value {
+      background-color: $secondary-color;
+      border-radius: 12px;
+    }
+    &.validate {
+      &::-webkit-progress-value {
+        background-color: $green-1;
+      }
+    }
+  }
+  label {
+    @include cn-bold-14;
+    color: $secondary-color;
+    min-width: 26px;
+    &.validate {
+      color: $green-1;
+    }
+  }
+}
+.form-group {
+  margin-bottom: 26px;
+  label {
+    color: $grey-2;
+  }
+}
+input {
+  margin-top: 4px;
+  &.phone {
+    width: 205px;
+  }
+  &.password {
+    width: 256px;
+  }
+  &.structureName {
+    width: 250px;
+  }
+}
+img {
+  max-height: 340px;
+  &.eyePassword {
+    padding: 0 2.5px; // Align to email input
+    cursor: pointer;
+    &:hover {
+      opacity: 0.8;
+    }
+  }
+}
+
+// collapse
+.collapse {
+  border: 1px solid $grey-4;
+  border-radius: 4px;
+  margin-bottom: 13px;
+  @media #{$tablet} {
+    width: 296px;
+  }
+  .logo {
+    .hide {
+      display: block;
+    }
+    .show {
+      display: none;
+    }
+  }
+  &.notCollapsed {
+    margin-bottom: 8px;
+    background: $grey-6;
+    .logo {
+      .hide {
+        display: none;
+      }
+      .show {
+        display: block;
+      }
+    }
+  }
+  .form-group {
+    margin: 0;
+    color: $grey-2;
+    @include cn-regular-14;
+    &.facebook {
+      &:focus-within {
+        svg {
+          &.facebook {
+            border-color: $secondary-color;
+            fill: $secondary-color;
+          }
+        }
+      }
+    }
+    &.instagram {
+      &:focus-within {
+        svg {
+          &.instagram {
+            border-color: $secondary-color;
+            fill: $secondary-color;
+          }
+        }
+      }
+    }
+    &.twitter {
+      &:focus-within {
+        svg {
+          &.twitter {
+            border-color: $secondary-color;
+            fill: $secondary-color;
+          }
+        }
+      }
+    }
+    &.linkedin {
+      &:focus-within {
+        svg {
+          &.linkedin {
+            border-color: $secondary-color;
+            fill: $secondary-color;
+          }
+        }
+      }
+    }
+  }
+  .inputSection {
+    input {
+      width: 100%;
+      margin-top: 8px;
+      &.withIcon {
+        border-radius: 0 4px 4px 0;
+        border-left: 0;
+      }
+    }
+    padding: 0px 15px 19px 12px;
+    img {
+      margin-top: 8px;
+      //padding-left: 41px;
+      margin-right: -54px;
+      &.nbEquipment {
+        padding-left: 214px;
+      }
+    }
+    svg {
+      margin-top: 8px;
+      width: 22px;
+      height: 38px;
+      fill: $grey-3;
+      margin-right: 0 !important;
+      border: 1px solid $grey-4;
+      border-radius: 4px 0 0 4px;
+      border-right: 0;
+      padding-left: 16px;
+      background: $grey-6;
+    }
+  }
+  .titleCollapse {
+    width: 100%;
+    @include cn-bold-16;
+    color: $grey-2;
+  }
+  .collapseHeader {
+    height: 65px;
+    padding: 0 15px 0 12px;
+    cursor: pointer;
+  }
+  .logo {
+    height: 24px;
+    width: 24px;
+    svg {
+      width: 100%;
+      height: 100%;
+      fill: $grey-1;
+    }
+  }
+}
+
+.tags {
+  padding: 8px;
+  button {
+    background: $grey-6;
+    border-radius: 20px;
+    margin: 4px;
+    max-width: 100%;
+    height: 40px;
+    padding: 0 13px;
+    @include cn-bold-14;
+    outline: none;
+    border: none;
+    cursor: pointer;
+    &.selectedChoice {
+      background: $green-1 !important;
+      color: $white;
+    }
+  }
+  svg {
+    width: 20px;
+    height: 10px;
+    margin-right: 4px;
+    stroke: $grey-6;
+  }
+}
+.textBtn {
+  overflow: hidden;
+  text-overflow: ellipsis;
+  -webkit-line-clamp: 2;
+  display: -webkit-box;
+  -webkit-box-orient: vertical;
+  width: 100%;
+  margin-right: 12px;
+}
+
+.asterisk {
+  color: $secondary-color;
+}
+
+.structureInfoBlock {
+  background: $green-1;
+  color: $white;
+  padding: 16px;
+  border-radius: 6px;
+  @include cn-bold-18;
+  .structureInfoContent {
+    width: 100%;
+  }
+  span {
+    font-style: italic;
+    @include cn-regular-14;
+  }
+  .validateSvg {
+    stroke: $white;
+    text-align: right;
+    svg {
+      height: 14px;
+      width: 14px;
+    }
+  }
 }
diff --git a/src/app/form/form.component.spec.ts b/src/app/form/form.component.spec.ts
index 83f6d5e3d547b07fadcd128c30934f1fff0e885c..9e6733867669dbe3c32233ebfaad36ce0a0656e4 100644
--- a/src/app/form/form.component.spec.ts
+++ b/src/app/form/form.component.spec.ts
@@ -95,7 +95,6 @@ describe('FormComponent', () => {
       nbTablets: new FormControl('structure.nbTablets'),
       nbNumericTerminal: new FormControl('structure.nbNumericTerminal'),
       equipmentsDetails: new FormControl('structure.equipmentsDetails'),
-      equipmentsAccessType: new FormControl([]),
     });
   });
 
diff --git a/src/app/form/form.component.ts b/src/app/form/form.component.ts
index 93ab67f337a7341b780192c3fc491270853aeb2e..6832ffc8a1dd63d5f94939cf74c52b64e7ea41c7 100644
--- a/src/app/form/form.component.ts
+++ b/src/app/form/form.component.ts
@@ -1,4 +1,4 @@
-import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
+import { Component, Input, OnInit } from '@angular/core';
 import { AbstractControl, FormArray, FormControl, FormGroup, Validators } from '@angular/forms';
 import { Structure } from '../models/structure.model';
 import { Time } from '../models/time.model';
@@ -7,13 +7,16 @@ import { StructureService } from '../services/structure.service';
 import { SearchService } from '../structure-list/services/search.service';
 import { Category } from '../structure-list/models/category.model';
 import { CategoryEnum } from '../shared/enum/category.enum';
-import { EquipmentAccess } from '../shared/enum/equipmentAccess.enum';
-import { WeekDayEnum } from '../shared/enum/weekDay.enum';
-import { typeStructureEnum } from '../shared/enum/typeStructure.enum';
-import { FonctionContactEnum } from '../shared/enum/fonctionContact.enum';
 import { ProfileService } from '../profile/services/profile.service';
 import { User } from '../models/user.model';
-
+import { MustMatch } from '../shared/validator/form';
+import { Address } from '../models/address.model';
+import { Module } from '../structure-list/models/module.model';
+import { Equipment } from '../structure-list/enum/equipment.enum';
+import { Router } from '@angular/router';
+import { AuthService } from '../services/auth.service';
+import { first } from 'rxjs/operators';
+import { Regex } from '../shared/enum/regex.enum';
 @Component({
   selector: 'app-structureForm',
   templateUrl: './form.component.html',
@@ -21,40 +24,70 @@ import { User } from '../models/user.model';
 })
 export class FormComponent implements OnInit {
   @Input() public idStructure?: string;
-  @Input() public isEditMode: boolean;
-  @Input() public profile?: User;
-  @Output() closeEvent = new EventEmitter<Structure>();
-  public structureForm: FormGroup;
+  @Input() public isEditMode: boolean = true;
+  public profile: User;
+  public createdStructure: Structure;
 
-  public userAlreadyExist = false;
-
-  public equipmentAccess = EquipmentAccess;
-  public weekDay = WeekDayEnum;
-  public typeStructure = typeStructureEnum;
-  public fonctions = FonctionContactEnum;
-  public categoryTraining: Category[];
+  // Form var
+  public structureForm: FormGroup;
+  public accountForm: FormGroup;
+  public hoursForm: FormGroup;
   public labelsQualifications: Category;
   public publics: Category;
   public accessModality: Category;
   public publicsAccompaniment: Category;
-  public equipmentsAndServices: Category;
   public proceduresAccompaniment: Category;
-  public structureId: string;
+  public equipmentsAndServices: { module: Module; openned: boolean }[] = [];
+  public trainingCategories: { category: Category; openned: boolean }[] = [];
+
+  // Page and progress var
+  public currentPage = 0;
+  public progressStatus = 0;
+  public nbPagesForm = 24;
+  public isPageValid: boolean;
+  public pagesValidation = [];
+
+  // Collapse var
+  public showWebsite: boolean;
+  public showSocialNetwork: boolean;
+  public showPublicsAccompaniment: boolean;
+  public showProceduresAccompaniment: boolean;
+
+  // ModalExit var
+  public showConfirmationModal = false;
+  private resolve: Function;
+
+  // Condition form
+  public isShowConfirmPassword = false;
+  public isShowPassword = false;
+  public userAcceptSavedDate = false;
+  public showMenu = false;
+
   constructor(
     private structureService: StructureService,
     private searchService: SearchService,
-    private profileService: ProfileService
+    private profileService: ProfileService,
+    private authService: AuthService
   ) {}
 
   ngOnInit(): void {
+    this.profileService.getProfile().then((user: User) => {
+      this.profile = user;
+    });
+
+    // Check if it's a new structure or edit structure
     if (this.idStructure) {
       this.structureService.getStructure(this.idStructure).subscribe((structure) => {
         this.initForm(structure);
-        this.structureId = structure._id;
+        this.idStructure = structure._id;
       });
     } else {
       this.initForm(new Structure());
     }
+    this.setCategories();
+  }
+
+  private setCategories(): void {
     this.searchService.getCategoriesAccompaniment().subscribe((categories: Category[]) => {
       this.proceduresAccompaniment = categories[0];
     });
@@ -66,7 +99,9 @@ export class FormComponent implements OnInit {
             break;
           }
           case CategoryEnum.equipmentsAndServices: {
-            this.equipmentsAndServices = categ;
+            categ.modules.forEach((c) => {
+              this.equipmentsAndServices.push({ module: c, openned: false });
+            });
             break;
           }
           case CategoryEnum.labelsQualifications: {
@@ -84,59 +119,64 @@ export class FormComponent implements OnInit {
         }
       });
     });
-
-    this.searchService.getCategoriesTraining().subscribe((t) => {
-      this.categoryTraining = t;
+    this.searchService.getCategoriesTraining().subscribe((categories: Category[]) => {
+      categories.forEach((categ) => {
+        this.trainingCategories.push({ category: categ, openned: false });
+      });
     });
   }
 
   private initForm(structure: Structure): void {
+    // Init account Form
+    this.accountForm = new FormGroup(
+      {
+        email: new FormControl('', [Validators.required, Validators.pattern(Regex.email)]), //NOSONAR
+        name: new FormControl('', [Validators.required, Validators.pattern(Regex.textWithoutNumber)]), //NOSONAR
+        surname: new FormControl('', [Validators.required, Validators.pattern(Regex.textWithoutNumber)]), //NOSONAR
+        phone: new FormControl('', [Validators.required, Validators.pattern(Regex.phone)]), //NOSONAR
+        password: new FormControl('', [
+          Validators.required,
+          Validators.pattern(/^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*[!@#$%^&*])(?=.{8,})/), //NOSONAR
+        ]),
+        confirmPassword: new FormControl(''),
+      },
+      [MustMatch('password', 'confirmPassword')]
+    );
+
     // Init form
     this.structureForm = new FormGroup({
       _id: new FormControl(structure._id),
       coord: new FormControl(structure.coord),
-      structureType: this.loadArrayForCheckbox(structure.structureType, true),
+      structureType: new FormControl(structure.structureType, Validators.required),
       structureName: new FormControl(structure.structureName, Validators.required),
-      structureRepresentation: new FormControl(structure.structureRepresentation, Validators.required),
-      description: new FormControl(structure.description, Validators.required),
-      lockdownActivity: new FormControl(structure.lockdownActivity),
+      description: new FormControl(structure.description),
+      lockdownActivity: new FormControl(structure.description),
       address: new FormGroup({
         numero: new FormControl(structure.address.numero),
         street: new FormControl(structure.address.street, Validators.required),
         commune: new FormControl(structure.address.commune, Validators.required),
       }),
-      contactPhone: new FormControl(structure.contactPhone, [
+      contactMail: new FormControl(structure.contactMail, [
         Validators.required,
-        Validators.pattern('([0-9]{2} ){4}[0-9]{2}'),
+        Validators.pattern(Regex.email), //NOSONAR
       ]),
-      contactMail: new FormControl(structure.contactMail, [
+      contactPhone: new FormControl(structure.contactPhone, [
         Validators.required,
-        Validators.pattern('[a-z0-9._%+-]+@[a-z0-9.-]+.[a-z]{2,3}$'),
+        Validators.pattern(Regex.phone), //NOSONAR
       ]),
-      website: new FormControl(structure.website),
-      facebook: new FormControl(structure.facebook),
-      twitter: new FormControl(structure.twitter),
-      instagram: new FormControl(structure.instagram),
-      gender: new FormControl(structure.gender),
-      contactName: new FormControl(structure.contactName),
-      contactSurname: new FormControl(structure.contactSurname),
-      fonction: new FormControl(structure.fonction),
-      pmrAccess: new FormControl(structure.pmrAccess),
-      documentsMeeting: new FormControl(structure.documentsMeeting),
-      hours: new FormGroup({
-        monday: this.createDay(structure.hours.monday),
-        tuesday: this.createDay(structure.hours.tuesday),
-        wednesday: this.createDay(structure.hours.wednesday),
-        thursday: this.createDay(structure.hours.thursday),
-        friday: this.createDay(structure.hours.friday),
-        saturday: this.createDay(structure.hours.saturday),
-        sunday: this.createDay(structure.hours.sunday),
-      }),
+      website: new FormControl(structure.website, Validators.pattern(Regex.website)), //NOSONAR
+      facebook: new FormControl(structure.facebook, Validators.pattern(Regex.facebook)), //NOSONAR
+      twitter: new FormControl(structure.twitter, Validators.pattern(Regex.twitter)), //NOSONAR
+      instagram: new FormControl(structure.instagram, Validators.pattern(Regex.instagram)), //NOSONAR
+      linkedin: new FormControl(structure.linkedin, Validators.pattern(Regex.linkedIn)), //NOSONAR
+      hours: new FormGroup({}),
+      pmrAccess: new FormControl(structure.pmrAccess, Validators.required),
       exceptionalClosures: new FormControl(structure.exceptionalClosures),
       labelsQualifications: this.loadArrayForCheckbox(structure.labelsQualifications, false),
       accessModality: this.loadArrayForCheckbox(structure.accessModality, true),
       publicsAccompaniment: this.loadArrayForCheckbox(structure.publicsAccompaniment, false),
       proceduresAccompaniment: this.loadArrayForCheckbox(structure.proceduresAccompaniment, false),
+      otherDescription: new FormControl(structure.otherDescription),
       equipmentsAndServices: this.loadArrayForCheckbox(structure.equipmentsAndServices, false),
       publics: this.loadArrayForCheckbox(structure.publics, true),
       baseSkills: this.loadArrayForCheckbox(structure.baseSkills, false),
@@ -144,22 +184,41 @@ export class FormComponent implements OnInit {
       parentingHelp: this.loadArrayForCheckbox(structure.parentingHelp, false),
       socialAndProfessional: this.loadArrayForCheckbox(structure.socialAndProfessional, false),
       digitalCultureSecurity: this.loadArrayForCheckbox(structure.digitalCultureSecurity, false),
-      nbComputers: new FormControl(structure.equipmentsAndServices.includes('ordinateurs') ? structure.nbComputers : 0),
-      nbPrinters: new FormControl(structure.equipmentsAndServices.includes('imprimantes') ? structure.nbPrinters : 0),
-      nbTablets: new FormControl(structure.equipmentsAndServices.includes('tablettes') ? structure.nbTablets : 0),
+      nbComputers: new FormControl(
+        structure.equipmentsAndServices.includes('ordinateurs') ? structure.nbComputers : 1,
+        [Validators.required, Validators.pattern(Regex.noNullNumber)] //NOSONAR
+      ),
+      nbPrinters: new FormControl(structure.equipmentsAndServices.includes('imprimantes') ? structure.nbPrinters : 1, [
+        Validators.required,
+        Validators.pattern(Regex.noNullNumber), //NOSONAR
+      ]),
+      nbTablets: new FormControl(structure.equipmentsAndServices.includes('tablettes') ? structure.nbTablets : 1, [
+        Validators.required,
+        Validators.pattern(Regex.noNullNumber), //NOSONAR
+      ]),
       nbNumericTerminal: new FormControl(
-        structure.equipmentsAndServices.includes('bornesNumeriques') ? structure.nbNumericTerminal : 0
+        structure.equipmentsAndServices.includes('bornesNumeriques') ? structure.nbNumericTerminal : 1,
+        [Validators.required, Validators.pattern(Regex.noNullNumber)] //NOSONAR
       ),
-      equipmentsDetails: new FormControl(structure.equipmentsDetails),
-      equipmentsAccessType: this.loadArrayForCheckbox(structure.equipmentsAccessType, false),
+      nbScanners: new FormControl(
+        structure.equipmentsAndServices.includes('scanners') ? structure.nbScanners : 1,
+        [Validators.required, Validators.pattern(Regex.noNullNumber)] //NOSONAR
+      ),
+      freeWorkShop: new FormControl(structure.freeWorkShop, Validators.required),
+      freeWifi: new FormControl(structure.freeWifi, Validators.required),
     });
 
-    // Disable form when it's to claim.
-    if (!this.isEditMode && this.idStructure) {
-      Object.keys(this.structureForm.controls).forEach((controlName) => {
-        this.structureForm.controls[controlName].disable();
-      });
-    }
+    // Init hours form
+    this.hoursForm = new FormGroup({
+      monday: this.createDay(structure.hours.monday),
+      tuesday: this.createDay(structure.hours.tuesday),
+      wednesday: this.createDay(structure.hours.wednesday),
+      thursday: this.createDay(structure.hours.thursday),
+      friday: this.createDay(structure.hours.friday),
+      saturday: this.createDay(structure.hours.saturday),
+      sunday: this.createDay(structure.hours.sunday),
+    });
+    this.setValidationsForm();
   }
 
   private loadArrayForCheckbox(array: string[], isRequired: boolean): FormArray {
@@ -176,22 +235,15 @@ export class FormComponent implements OnInit {
     return this.structureForm.get('address').get(nameControl);
   }
 
-  public modifyPhoneInput(phoneNumber: string): void {
+  public modifyPhoneInput(form: FormGroup, controlName: string, phoneNumber: string): void {
     // Take length of phone number without spaces.
     let phoneNoSpace = phoneNumber.replace(/\s/g, '');
     // Check to refresh every 2 number.
     if (phoneNoSpace.length % 2 == 0) {
       // Add space every 2 number
-      this.structureForm.get('contactPhone').setValue(phoneNoSpace.replace(/(?!^)(?=(?:\d{2})+$)/g, ' ')); //NOSONAR
+      form.get(controlName).setValue(phoneNoSpace.replace(/(?!^)(?=(?:\d{2})+$)/g, ' ')); //NOSONAR
     }
-  }
-
-  public getTime(day: string): FormArray {
-    return this.structureForm.get('hours').get(day).get('time') as FormArray;
-  }
-
-  public isOpen(day: string): boolean {
-    return this.structureForm.get('hours').get(day).get('open').value;
+    this.setValidationsForm();
   }
 
   private createDay(day: Day): FormGroup {
@@ -202,74 +254,307 @@ export class FormComponent implements OnInit {
   }
   private createTime(time: Time): FormGroup {
     return new FormGroup({
-      openning: new FormControl(time.openning),
-      closing: new FormControl(time.closing),
+      openning: new FormControl(time.openning, Validators.pattern('[a-z0-9._%+-]+@[a-z0-9.-]+.[a-z]{2,3}$')), //NOSONAR
+      closing: new FormControl(time.closing, Validators.pattern('[a-z0-9._%+-]+@[a-z0-9.-]+.[a-z]{2,3}$')), //NOSONAR
     });
   }
 
-  public addTime(day: string): void {
-    if (!this.structureForm.get('hours').get(day).value.open) {
-      this.getTime(day).push(this.createTime(new Time()));
+  public onCheckChange(event: boolean, formControlName: string, value: string): void {
+    const formArray: FormArray = this.structureForm.get(formControlName) as FormArray;
+    if (event) {
+      // Add a new control in the arrayForm
+      formArray.push(new FormControl(value));
+    } else {
+      // Remove uncheck control in the arrayForm
+      const index = formArray.controls.findIndex((element) => element.value == value);
+      formArray.removeAt(index);
+    }
+    this.setValidationsForm();
+  }
+
+  // Check if a FormControl value is in FormArray
+  public isInArray(term: string, formControlName: string): boolean {
+    if (this.structureForm.controls[formControlName].value) {
+      return this.structureForm.controls[formControlName].value.includes(term);
     }
+    return false;
   }
 
-  public removeTime(day: string, time: Time): void {
-    const index = this.getTime(day).controls.findIndex((element) => element.value == time);
-    this.getTime(day).removeAt(index);
+  public setValidationsForm(): void {
+    this.pagesValidation[0] = { valid: true };
+    this.pagesValidation[1] = { valid: true };
+    this.pagesValidation[2] = {
+      valid:
+        this.accountForm.get('surname').valid &&
+        this.accountForm.get('name').valid &&
+        this.accountForm.get('phone').valid,
+    };
+    this.pagesValidation[3] = {
+      valid:
+        this.accountForm.get('email').valid &&
+        this.accountForm.get('password').valid &&
+        this.accountForm.get('confirmPassword').valid,
+    };
+    this.pagesValidation[4] = {
+      valid: this.getStructureControl('structureName').valid && this.getStructureControl('address').valid,
+    };
+    this.pagesValidation[5] = { valid: this.getStructureControl('contactPhone').valid };
+    this.pagesValidation[6] = { valid: this.getStructureControl('structureType').valid };
+    this.pagesValidation[7] = { valid: this.getStructureControl('accessModality').valid };
+    this.pagesValidation[8] = { valid: this.hoursForm.valid };
+    this.pagesValidation[9] = { valid: this.getStructureControl('exceptionalClosures').valid };
+    this.pagesValidation[10] = { valid: this.getStructureControl('pmrAccess').valid };
+    this.pagesValidation[11] = {
+      valid:
+        this.getStructureControl('contactMail').valid &&
+        (this.getStructureControl('website').valid || !this.showWebsite) &&
+        ((this.getStructureControl('facebook').valid &&
+          this.getStructureControl('twitter').valid &&
+          this.getStructureControl('instagram').valid) ||
+          !this.showSocialNetwork),
+    };
+    this.pagesValidation[12] = { valid: this.getStructureControl('publics').valid };
+    this.pagesValidation[13] = {
+      valid:
+        this.getStructureControl('publicsAccompaniment').valid &&
+        this.getStructureControl('proceduresAccompaniment').valid,
+    };
+    this.pagesValidation[14] = {
+      valid: this.getStructureControl('otherDescription').value,
+    };
+    this.pagesValidation[15] = {
+      valid:
+        this.getStructureControl('accessRight').valid &&
+        this.getStructureControl('socialAndProfessional').valid &&
+        this.getStructureControl('baseSkills').valid &&
+        this.getStructureControl('parentingHelp').valid &&
+        this.getStructureControl('digitalCultureSecurity').valid,
+    };
+    this.pagesValidation[16] = { valid: this.getStructureControl('freeWorkShop').valid };
+    this.pagesValidation[17] = { valid: this.getStructureControl('freeWifi').valid };
+    this.pagesValidation[18] = {
+      valid:
+        this.getStructureControl('equipmentsAndServices').valid &&
+        this.getStructureControl('nbComputers').valid &&
+        this.getStructureControl('nbPrinters').valid &&
+        this.getStructureControl('nbTablets').valid &&
+        this.getStructureControl('nbNumericTerminal').valid &&
+        this.getStructureControl('nbScanners').valid,
+    };
+    this.pagesValidation[19] = { valid: this.getStructureControl('labelsQualifications').valid };
+    this.pagesValidation[20] = { valid: this.getStructureControl('equipmentsAndServices').valid };
+    this.pagesValidation[21] = { valid: this.getStructureControl('description').valid };
+    this.pagesValidation[22] = { valid: this.getStructureControl('lockdownActivity').valid };
+    this.pagesValidation[23] = { valid: this.userAcceptSavedDate };
+    //this.pagesValidation[24] = { valid: true };
+    this.updatePageValid();
   }
 
-  public onCheckPlageHoursChange(event, day, time: Time): void {
-    if (event.target.checked) {
-      this.getTime(day).push(this.createTime(new Time()));
+  private updatePageValid(): void {
+    this.isPageValid = this.pagesValidation[this.currentPage].valid;
+  }
+  public nextPage(): void {
+    // Check if user already connected to skip accountForm pages.
+    if (this.currentPage == 1 && this.profile) {
+      this.currentPage += 2; // Skip 2 pages from AccountForm
+      this.progressStatus += 2 * (100 / this.nbPagesForm);
+    }
+    // Check if "other" isn't check to hide "other description" page
+    if (this.currentPage == 13 && !this.isInArray('autres', 'proceduresAccompaniment')) {
+      this.currentPage++; // page 14 skip and go to page 15
+      this.progressStatus += 100 / this.nbPagesForm;
+    }
+
+    // Check if going to the last page to submit form and send email verification.
+    if (this.currentPage == this.nbPagesForm - 1) {
+      this.validateForm();
     } else {
-      this.removeTime(day, time);
+      this.currentPage++;
+      this.progressStatus += 100 / this.nbPagesForm;
+      this.updatePageValid();
     }
   }
+  public previousPage(): void {
+    // Check if user already connected to skip accountForm pages.
+    if (this.currentPage == 4 && this.profile) {
+      this.currentPage -= 2; // Skip 2 pages from AccountForm
+      this.progressStatus -= 2 * (100 / this.nbPagesForm);
+    }
 
-  public onCheckChange(event, formControlName: string): void {
-    const formArray: FormArray = this.structureForm.get(formControlName) as FormArray;
-    if (event.target.checked) {
-      // Add a new control in the arrayForm
-      formArray.push(new FormControl(event.target.value));
-    } else {
-      // Remove uncheck control in the arrayForm
-      const index = formArray.controls.findIndex((element) => element.value == event.target.value);
-      formArray.removeAt(index);
+    // Check if "other" isn't check to hide "other description" page
+    if (this.currentPage == 15 && !this.isInArray('autres', 'proceduresAccompaniment')) {
+      this.currentPage--; // page 14 skip and go to page 13
+      this.progressStatus -= 100 / this.nbPagesForm;
     }
+    this.currentPage--;
+    this.progressStatus -= 100 / this.nbPagesForm;
+    this.updatePageValid();
+  }
+  public showPassword(): void {
+    this.isShowPassword = !this.isShowPassword;
+  }
+  public showConfirmPassword(): void {
+    this.isShowConfirmPassword = !this.isShowConfirmPassword;
   }
 
-  public isInArray(term: string, formControlName): boolean {
-    if (this.structureForm.controls[formControlName].value) {
-      return this.structureForm.controls[formControlName].value.includes(term);
+  public setAddressStructure(address?: Address): void {
+    if (address) {
+      this.getAddressControl('numero').setValue(address.numero);
+      this.getAddressControl('street').setValue(address.street);
+      this.getAddressControl('commune').setValue(address.commune);
+    } else {
+      this.structureForm.get('address').reset();
     }
-    return false;
+    this.setValidationsForm();
   }
-  public onSubmitClaim(accountForm: FormGroup): void {
-    if (!this.structureForm.invalid && accountForm.valid) {
-      this.profileService.createUserandLinkStructure(this.structureId, accountForm.value).subscribe((user) => {
-        this.closeEvent.emit(this.structureForm.value);
-      });
+  public setTypeStructure(type?: string): void {
+    this.getStructureControl('structureType').setValue(type);
+    this.setValidationsForm();
+  }
+  public updateHours(form: FormGroup): void {
+    this.hoursForm = form;
+    this.setValidationsForm();
+  }
+  public setHoursError(): void {
+    this.hoursForm.setErrors({ formError: true });
+    this.setValidationsForm();
+  }
+  public onRadioBtnChange(controlName: string, bool: boolean): void {
+    this.getStructureControl(controlName).setValue(bool);
+    this.setValidationsForm();
+  }
+  public toggleWebSite(): void {
+    this.showWebsite = !this.showWebsite;
+    if (!this.showWebsite) {
+      this.getStructureControl('website').reset();
+    }
+    this.setValidationsForm();
+  }
+  public toggleSocialNetwork(): void {
+    this.showSocialNetwork = !this.showSocialNetwork;
+    if (!this.showSocialNetwork) {
+      this.getStructureControl('facebook').reset();
+      this.getStructureControl('twitter').reset();
+      this.getStructureControl('instagram').reset();
+    }
+    this.setValidationsForm();
+  }
+  public updateChoice(choice: string, controlName: string): void {
+    this.onCheckChange(!this.isInArray(choice, controlName), controlName, choice);
+  }
+  public togglePublicsAccompaniment(): void {
+    this.showPublicsAccompaniment = !this.showPublicsAccompaniment;
+    if (!this.showPublicsAccompaniment) {
+      this.getStructureControl('publicsAccompaniment').reset();
     }
+    this.setValidationsForm();
+  }
+  public toggleProceduresAccompaniment(): void {
+    this.showProceduresAccompaniment = !this.showProceduresAccompaniment;
+    if (!this.showProceduresAccompaniment) {
+      this.getStructureControl('proceduresAccompaniment').reset();
+    }
+    this.setValidationsForm();
+  }
+  public toggleTrainingCategories(categ: { category: Category; openned: boolean }): void {
+    this.trainingCategories.forEach((c: { category: Category; openned: boolean }) => {
+      if (categ === c) {
+        c.openned = !c.openned;
+      }
+    });
   }
 
-  public onSubmitClaimWithAccount(): void {
-    this.structureService.claimStructureWithAccount(this.structureId, this.profile).subscribe((structuresLinked) => {
-      this.profile.pendingStructuresLink = structuresLinked;
-      this.profileService.setProfile(this.profile);
-      this.closeEvent.emit(this.structureForm.value);
+  public toggleEquipmentsServices(equipment: { module: Module; openned: boolean }): void {
+    this.onCheckChange(!equipment.openned, 'equipmentsAndServices', equipment.module.id);
+    this.equipmentsAndServices.forEach((e: { module: Module; openned: boolean }) => {
+      if (equipment === e) {
+        e.openned = !e.openned;
+        if (!equipment.openned) {
+          switch (e.module.id) {
+            case Equipment.computer: {
+              this.getStructureControl('nbComputers').setValue(1);
+              break;
+            }
+            case Equipment.printer: {
+              this.getStructureControl('nbPrinters').setValue(1);
+              break;
+            }
+            case Equipment.tablet: {
+              this.getStructureControl('nbTablets').setValue(1);
+              break;
+            }
+            case Equipment.bornes: {
+              this.getStructureControl('nbNumericTerminal').setValue(1);
+              break;
+            }
+            case Equipment.scanner: {
+              this.getStructureControl('nbScanners').setValue(1);
+              break;
+            }
+          }
+          this.setValidationsForm();
+        }
+      }
     });
   }
-  public onSubmit(structureForm: FormGroup): void {
-    if (structureForm.valid) {
-      if (this.structureId) {
-        this.structureService.editStructure(this.structureId, structureForm.value).subscribe((structure: Structure) => {
-          this.closeEvent.emit(structure);
-        });
+  public acceptDataBeSaved(isAccepted: boolean): void {
+    this.userAcceptSavedDate = isAccepted;
+    this.setValidationsForm();
+  }
+
+  public validateForm(): void {
+    if (this.structureForm.valid && this.hoursForm.valid) {
+      let structure: Structure = this.structureForm.value;
+      structure.hours = this.hoursForm.value;
+      let user: User;
+      if (this.profile) {
+        user = this.profile;
+        structure.accountVerified = true;
+        this.createStructure(structure, user);
       } else {
-        this.structureService.createStructure(structureForm.value, this.profile).subscribe((structure: Structure) => {
-          this.closeEvent.emit(structure);
-        });
+        if (this.accountForm.valid) {
+          user = new User(this.accountForm.value);
+          this.authService
+            .register(user)
+            .pipe(first())
+            .subscribe(() => {
+              this.createStructure(structure, user);
+            });
+        }
       }
     }
   }
+
+  private createStructure(structure: Structure, user: User): void {
+    this.structureService.createStructure(structure, user).subscribe((structure) => {
+      this.currentPage++;
+      this.progressStatus += 100 / this.nbPagesForm;
+      this.createdStructure = structure;
+    });
+  }
+  public toggleMenu(): void {
+    this.showMenu = !this.showMenu;
+  }
+
+  public closeMenu(): void {
+    this.showMenu = false;
+  }
+
+  public canExit(): Promise<boolean> {
+    // Avoid confirmation when user submit form and leave.
+    if (this.currentPage == this.nbPagesForm) {
+      return new Promise((resolve) => resolve(true));
+    } else {
+      return new Promise((resolve) => this.showModal(resolve));
+    }
+  }
+
+  private showModal(resolve: Function): void {
+    this.showConfirmationModal = true;
+    this.resolve = resolve;
+  }
+  public hasRedirectionAccepted(hasAccept: boolean): void {
+    this.resolve(hasAccept);
+    this.showConfirmationModal = false;
+  }
 }
diff --git a/src/app/guards/deactivate.guard.ts b/src/app/guards/deactivate.guard.ts
new file mode 100644
index 0000000000000000000000000000000000000000..3f86e0502a0d593451026a2c161db5ed69c1ad1d
--- /dev/null
+++ b/src/app/guards/deactivate.guard.ts
@@ -0,0 +1,21 @@
+import { CanDeactivate } from '@angular/router';
+import { Injectable } from '@angular/core';
+import { Observable } from 'rxjs';
+
+export interface IDeactivateComponent {
+  canExit: () => Observable<boolean> | Promise<boolean> | boolean;
+}
+
+/**
+ * Guard to confirm we are leaving. Otherwise stay at current route.
+ */
+@Injectable()
+export class DeactivateGuard implements CanDeactivate<Object> {
+  component: Object;
+
+  constructor() {}
+
+  canDeactivate(component: IDeactivateComponent): Observable<boolean> | Promise<boolean> | boolean {
+    return component.canExit();
+  }
+}
diff --git a/src/app/header/header.component.html b/src/app/header/header.component.html
index 81feb9cf3f77cbac903b9e28c6ba7c9d2e88d90a..713873855305afb90ed02b815b3c5550dee6b6c1 100644
--- a/src/app/header/header.component.html
+++ b/src/app/header/header.component.html
@@ -1,6 +1,6 @@
 <div fxLayout="row" class="header hide-on-print">
   <div class="logo clickable" routerLink="/home">
-    <img class="logo-grand-lyon" src="/assets/logos/resin.svg" alt />
+    <img *ngIf="displayLogo(); else customTitle" class="logo-grand-lyon" src="/assets/logos/resin.svg" alt />
     <div class="logo-text" fxLayout="column" fxLayoutAlign="center">
       <p>Réseau des acteurs de l'inclusion numérique de la métropole de Lyon</p>
     </div>
@@ -46,3 +46,8 @@
 
 <app-signup-modal *ngIf="displaySignUp" [openned]="isPopUpOpen" (closed)="closeSignUpModal($event)"></app-signup-modal>
 <app-signin-modal *ngIf="!displaySignUp" [openned]="isPopUpOpen" (closed)="closeSignInModal()"></app-signin-modal>
+
+<ng-template #customTitle>
+  <img class="desktop-show logo-grand-lyon" src="/assets/logos/resin.svg" alt />
+  <p class="mobile-show">Création de compte</p>
+</ng-template>
diff --git a/src/app/header/header.component.scss b/src/app/header/header.component.scss
index c6d86829929b392ab49d400f054241407b7e7045..b745464c09799bbf607ef234d54435ca7ec89f80 100644
--- a/src/app/header/header.component.scss
+++ b/src/app/header/header.component.scss
@@ -127,3 +127,17 @@ a {
     margin: auto 0 auto 0;
   }
 }
+
+.desktop-show {
+  display: block;
+  @media #{$tablet} {
+    display: none;
+  }
+}
+
+.mobile-show {
+  display: none;
+  @media #{$tablet} {
+    display: block;
+  }
+}
diff --git a/src/app/header/header.component.ts b/src/app/header/header.component.ts
index f91c0fa2d77f47737b17ed99fe0319e5183870d0..2c2af037e272ea29ebf75f6a677e20ca3471e912 100644
--- a/src/app/header/header.component.ts
+++ b/src/app/header/header.component.ts
@@ -1,4 +1,5 @@
 import { Component, OnInit } from '@angular/core';
+import { NavigationStart, Router } from '@angular/router';
 import { ProfileService } from '../profile/services/profile.service';
 import { AuthService } from '../services/auth.service';
 
@@ -11,14 +12,24 @@ export class HeaderComponent implements OnInit {
   public showMenu = false;
   public isPopUpOpen = false;
   public displaySignUp = true;
+  public currentRoute = '';
+  public formeRoute = '/create-structure';
 
-  constructor(private authService: AuthService, private profileService: ProfileService) {}
+  constructor(private authService: AuthService, private profileService: ProfileService, private router: Router) {
+    this.router.events.subscribe((event) => {
+      if (event instanceof NavigationStart) {
+        // Show loading indicator.curr
+        this.currentRoute = event.url;
+      }
+    });
+  }
   ngOnInit(): void {}
 
   public openMenu(): void {
     this.showMenu = true;
   }
-  public closeMenu(): void {
+  public closeMenu(route: string): void {
+    this.router.navigateByUrl(route);
     this.showMenu = false;
   }
 
@@ -46,4 +57,8 @@ export class HeaderComponent implements OnInit {
   public get displayName(): string {
     return this.authService.getUsernameDisplay();
   }
+
+  public displayLogo(): boolean {
+    return this.formeRoute !== this.currentRoute;
+  }
 }
diff --git a/src/app/home/home.component.ts b/src/app/home/home.component.ts
index 8581d388aeb33a43de6254d8564cd9ad3bfcfc6c..b2b2b512f33028994f6cfa6253219565fb643ab2 100644
--- a/src/app/home/home.component.ts
+++ b/src/app/home/home.component.ts
@@ -7,6 +7,7 @@ import { StructureService } from '../services/structure.service';
 import { Filter } from '../structure-list/models/filter.model';
 import { GeoJson } from '../map/models/geojson.model';
 import { GeojsonService } from '../services/geojson.service';
+import { ActivatedRoute } from '@angular/router';
 
 @Component({
   selector: 'app-home',
@@ -32,6 +33,9 @@ export class HomeComponent implements OnInit {
     } else {
       this.getStructures(null);
     }
+    if (history.state.data) {
+      this.currentStructure = new Structure(history.state.data);
+    }
   }
 
   public getStructures(filters: Filter[]): void {
diff --git a/src/app/map/components/map.component.ts b/src/app/map/components/map.component.ts
index ad2bba78c884e987a36f93fc6d634f11d4fa0f0c..01f19e751ca0b7fdc0ddbd4540eb5b9175566594 100644
--- a/src/app/map/components/map.component.ts
+++ b/src/app/map/components/map.component.ts
@@ -159,7 +159,7 @@ export class MapComponent implements OnChanges {
       structure.structureName +
       '</h1>' +
       '<p>' +
-      structure.getLabelTypeStructure() +
+      structure.structureType +
       '</p><div>' +
       '<span class="ico-dot-' +
       cssAvailabilityClass +
diff --git a/src/app/models/structure-type.model.ts b/src/app/models/structure-type.model.ts
new file mode 100644
index 0000000000000000000000000000000000000000..91d50c378a4e839bda563e98a9b76742ca8d2e6c
--- /dev/null
+++ b/src/app/models/structure-type.model.ts
@@ -0,0 +1,8 @@
+export class StructureType {
+  values: string[];
+  name: string;
+
+  constructor(obj?: any) {
+    Object.assign(this, obj);
+  }
+}
diff --git a/src/app/models/structure.model.ts b/src/app/models/structure.model.ts
index 4a154bfaa0b46d8e0c441059ccfde8f03c0f91be..e9468d7c5cbe647f6c8e62ba2d4db22c8eadf465 100644
--- a/src/app/models/structure.model.ts
+++ b/src/app/models/structure.model.ts
@@ -10,9 +10,8 @@ export class Structure {
   public numero: string = null;
   public createdAt: string = null;
   public updatedAt: string = null;
-  public structureRepresentation: string = null;
   public structureName: string = null;
-  public structureType: string[] = [];
+  public structureType: string = null;
   public description: string = null;
   public address: Address = new Address();
   public contactPhone: string = null;
@@ -21,27 +20,25 @@ export class Structure {
   public facebook: string = null;
   public twitter: string = null;
   public instagram: string = null;
-  public gender: string = null;
-  public contactName: string = null;
-  public contactSurname: string = null;
-  public fonction: string = null;
+  public linkedin: string = null;
   public lockdownActivity: string = null;
-  public pmrAccess: boolean = false;
+  public pmrAccess: boolean = null;
   public publicsAccompaniment: string[] = [];
   public proceduresAccompaniment: string[] = [];
   public accessModality: string[] = [];
-  public documentsMeeting: string = null;
   public labelsQualifications: string[] = [];
   public publics: string[] = [];
   public nbComputers: number = null;
   public nbPrinters: number = null;
   public nbTablets: number = null;
   public nbNumericTerminal: number = null;
+  public nbScanners: number = null;
   public exceptionalClosures: string = null;
   public equipmentsAndServices: string[] = [];
   public hours: Week;
-  public equipmentsDetails: string = null;
-  public equipmentsAccessType: string[] = [];
+  public freeWorkShop: boolean = null;
+  public freeWifi: boolean = null;
+  public otherDescription: string = null;
 
   public isOpen: boolean = false;
   public openedOn: OpeningDay = new OpeningDay();
@@ -54,6 +51,8 @@ export class Structure {
   public distance?: number;
   public coord?: number[] = [];
 
+  public accountVerified: boolean = false;
+
   constructor(obj?: any) {
     Object.assign(this, obj, {
       hours: obj && obj.hours ? new Week(obj.hours) : new Week(),
@@ -91,17 +90,6 @@ export class Structure {
     }
   }
 
-  public getLabelTypeStructure(): string {
-    let label = '';
-    this.structureType.forEach((type) => {
-      if (label) {
-        label += ', ';
-      }
-      label += typeStructureEnum[type];
-    });
-    return label;
-  }
-
   /**
    * Check if a structure has equipments
    */
@@ -161,6 +149,8 @@ export class Structure {
         return 'tablet';
       case Equipment.computer:
         return 'computer';
+      case Equipment.scanner:
+        return 'scan';
       default:
         return null;
     }
diff --git a/src/app/profile/profile.module.ts b/src/app/profile/profile.module.ts
index 1f86c78ac628b6b082a4fcc81f6eead59e0b8e92..a9427003f2507d4092e966617363aa223996b4f5 100644
--- a/src/app/profile/profile.module.ts
+++ b/src/app/profile/profile.module.ts
@@ -3,11 +3,10 @@ import { ProfileComponent } from './profile.component';
 import { SharedModule } from '../shared/shared.module';
 import { CommonModule } from '@angular/common';
 import { BrowserModule } from '@angular/platform-browser';
-import { FormComponent } from '../form/form.component';
 
 @NgModule({
   imports: [CommonModule, BrowserModule, SharedModule],
-  declarations: [ProfileComponent, FormComponent],
-  exports: [ProfileComponent, FormComponent],
+  declarations: [ProfileComponent],
+  exports: [ProfileComponent],
 })
 export class ProfileModule {}
diff --git a/src/app/profile/services/profile.service.ts b/src/app/profile/services/profile.service.ts
index ac04735881d4d6f03b4b2c35ef12a7b7ce3c52e2..a196203fda3801b7d685b23b35d24e1a6869d95f 100644
--- a/src/app/profile/services/profile.service.ts
+++ b/src/app/profile/services/profile.service.ts
@@ -15,8 +15,7 @@ export class ProfileService {
   constructor(private http: HttpClient, private authService: AuthService) {}
 
   public async getProfile(): Promise<User> {
-    // Get profil by API only on first time
-    if (!this.currentProfile) {
+    if (this.authService.isLoggedIn() && !this.currentProfile) {
       const profile = await this.http.get<User>(`${this.baseUrl}/profile`).toPromise();
       this.currentProfile = profile;
     }
diff --git a/src/app/services/structure-type.service.ts b/src/app/services/structure-type.service.ts
new file mode 100644
index 0000000000000000000000000000000000000000..0f18c3bcaf20b994e6949c763c8d4aa829440904
--- /dev/null
+++ b/src/app/services/structure-type.service.ts
@@ -0,0 +1,18 @@
+import { HttpClient } from '@angular/common/http';
+import { Injectable } from '@angular/core';
+import { Observable } from 'rxjs';
+import { StructureType } from '../models/structure-type.model';
+
+@Injectable({
+  providedIn: 'root',
+})
+export class StructureTypeService {
+  constructor(private http: HttpClient) {}
+
+  /**
+   * Retrive all tcl stop point around given coord
+   */
+  public getStructureTypes(): Observable<any> {
+    return this.http.get<StructureType[]>('/api/structure-type');
+  }
+}
diff --git a/src/app/services/structure.service.ts b/src/app/services/structure.service.ts
index 97caee520996d96e60eac4b9bc35d9eb2c3a9ac6..41a02af5a7952850db348fc08ad30deeea555c62 100644
--- a/src/app/services/structure.service.ts
+++ b/src/app/services/structure.service.ts
@@ -20,6 +20,12 @@ export class StructureService {
   private readonly baseUrl = 'api/structures';
   constructor(private http: HttpClient) {}
 
+  public updateStructureAfterOwnerVerify(idStructure: string, user: User): Observable<any> {
+    const emailUser = user.email;
+    return this.http
+      .put(`${this.baseUrl}/updateAfterOwnerVerify/${idStructure}`, { emailUser })
+      .pipe(map((item: Structure) => new Structure(item)));
+  }
   public createStructure(structure: Structure, profile: User): Observable<Structure> {
     const idUser = profile.email;
     return this.http.post(`${this.baseUrl}`, { structure, idUser }).pipe(map((item: Structure) => new Structure(item)));
diff --git a/src/app/shared/components/address-autocomplete/address-autocomplete.component.html b/src/app/shared/components/address-autocomplete/address-autocomplete.component.html
index 537de506db8e233b34cf5ccf81e12f9c98f47f9a..82ccf794dea1b2e93517baf7a60ba8b7e6231b11 100644
--- a/src/app/shared/components/address-autocomplete/address-autocomplete.component.html
+++ b/src/app/shared/components/address-autocomplete/address-autocomplete.component.html
@@ -6,10 +6,11 @@
       placeholder="ex: 20 rue du lac, Lyon"
       (input)="onSearchChange($event.target.value)"
       class="form-input"
+      autocomplete="off"
       #searchAddress
     />
   </div>
-  <div class="autocomplete-items">
+  <div class="autocomplete-items" *ngIf="!isAlreadySearching">
     <p *ngFor="let hit of data" (click)="selectedResult(hit)" class="autocomplete-item">
       {{ parseHitToAddress(hit) }}
     </p>
diff --git a/src/app/shared/components/address-autocomplete/address-autocomplete.component.ts b/src/app/shared/components/address-autocomplete/address-autocomplete.component.ts
index 4e6d5cc978a3a20441490af073e3120753ee1bf1..5bfb99bbf029f3be7c478223e83dddfe3b800a30 100644
--- a/src/app/shared/components/address-autocomplete/address-autocomplete.component.ts
+++ b/src/app/shared/components/address-autocomplete/address-autocomplete.component.ts
@@ -1,4 +1,5 @@
-import { Component, ElementRef, EventEmitter, Output, ViewChild } from '@angular/core';
+import { Component, ElementRef, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core';
+import { Address } from '../../../models/address.model';
 import { AddressService } from '../../service/address.service';
 
 @Component({
@@ -6,28 +7,46 @@ import { AddressService } from '../../service/address.service';
   templateUrl: './address-autocomplete.component.html',
   styleUrls: ['./address-autocomplete.component.scss'],
 })
-export class AddressAutocompleteComponent {
+export class AddressAutocompleteComponent implements OnInit {
   public readonly AUTOCOMPLETE_NBR = 5;
   public data = [];
+  public isAlreadySearching = false;
   @ViewChild('searchAddress', { static: true }) searchAddress: ElementRef;
-  @Output() selectedAddress: EventEmitter<string> = new EventEmitter<string>();
+  @Output() selectedAddress: EventEmitter<Address> = new EventEmitter<Address>();
+  @Output() inputAddress: EventEmitter<any> = new EventEmitter<any>();
+  @Input() private address?: Address;
 
   constructor(private addressService: AddressService) {}
 
+  ngOnInit(): void {
+    if (this.address) {
+      const address_str = this.address.numero + ' ' + this.address.street + ' ' + this.address.commune;
+      this.searchAddress.nativeElement.value = address_str;
+    }
+  }
   public onSearchChange(searchString: string) {
-    this.addressService.searchAddress(searchString).subscribe((data) => {
-      this.data = data.hits.hits.slice(0, this.AUTOCOMPLETE_NBR);
-    });
+    if (!this.isAlreadySearching) {
+      this.isAlreadySearching = true;
+      this.addressService.searchAddress(searchString).subscribe((data) => {
+        this.data = data.hits.hits.slice(0, this.AUTOCOMPLETE_NBR);
+        this.isAlreadySearching = false;
+      });
+    }
+    this.inputAddress.emit();
   }
 
   public selectedResult(hit: any): void {
+    const address = new Address();
+    address.numero = hit._source['data-fr'].properties.numero_str;
+    address.street = hit._source['data-fr'].properties.voie_str;
+    address.commune = hit._source['data-fr'].properties.commune_str;
     const value = this.parseHitToAddress(hit);
     // Set input value
     this.searchAddress.nativeElement.value = value;
     // Reset autocomplete
     this.data = [];
     // Emit choosen value
-    this.selectedAddress.emit(value);
+    this.selectedAddress.emit(address);
   }
 
   public parseHitToAddress(hit: any): string {
diff --git a/src/app/shared/components/checkbox-form/checkbox-form.component.html b/src/app/shared/components/checkbox-form/checkbox-form.component.html
new file mode 100644
index 0000000000000000000000000000000000000000..04b241baaa0d9f3da3146f901fb3b8adbc2639cd
--- /dev/null
+++ b/src/app/shared/components/checkbox-form/checkbox-form.component.html
@@ -0,0 +1,17 @@
+<button
+  (click)="clicked()"
+  [ngClass]="{ selected: isChecked }"
+  fxLayout="row"
+  fxLayoutAlign=" center"
+  fxLayoutGap="17px"
+>
+  <div class="checkmark">
+    <svg class="validate" aria-hidden="true">
+      <use [attr.xlink:href]="'assets/form/sprite.svg#checkVector'"></use>
+    </svg>
+  </div>
+  <svg *ngIf="iconSvg" aria-hidden="true" [ngClass]="iconType">
+    <use [attr.xlink:href]="'assets/form/sprite.svg#' + iconSvg"></use>
+  </svg>
+  <p>{{ text }}</p>
+</button>
diff --git a/src/app/shared/components/checkbox-form/checkbox-form.component.scss b/src/app/shared/components/checkbox-form/checkbox-form.component.scss
new file mode 100644
index 0000000000000000000000000000000000000000..c68214f2a04bd86ae5c0e3cee5109e8193ce132c
--- /dev/null
+++ b/src/app/shared/components/checkbox-form/checkbox-form.component.scss
@@ -0,0 +1,60 @@
+@import '../../../../assets/scss/color';
+@import '../../../../assets/scss/typography';
+
+svg {
+  min-width: 30px;
+  width: 30px;
+  height: 100%;
+  fill: $secondary-color;
+  stroke: $secondary-color;
+  &.validate {
+    min-width: 13px;
+    width: 13px;
+    height: 100%;
+    stroke: $green-1;
+    display: none;
+  }
+  &.labels {
+    min-width: 50px;
+    width: 50px;
+  }
+}
+
+button {
+  width: 296px;
+  background: $grey-6;
+  border-radius: 4px;
+  padding: 0 16px;
+  height: 65px;
+  outline: none;
+  border: none;
+  cursor: pointer;
+  margin: 8px 0;
+  &.selected {
+    background: $green-1;
+    .validate {
+      display: initial;
+    }
+    p {
+      color: $white;
+    }
+    .checkmark {
+      min-width: 20px;
+      width: 20px;
+      height: 20px;
+      border: none;
+    }
+  }
+  p {
+    @include cn-bold-16;
+    text-align: left;
+    color: $grey-2;
+  }
+  .checkmark {
+    min-width: 18px;
+    width: 18px;
+    height: 18px;
+    background: $white;
+    border: 1px solid $grey-3;
+  }
+}
diff --git a/src/app/shared/components/checkbox-form/checkbox-form.component.spec.ts b/src/app/shared/components/checkbox-form/checkbox-form.component.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..60d37a0d9f35476edb9518840dc01f8063bcdc55
--- /dev/null
+++ b/src/app/shared/components/checkbox-form/checkbox-form.component.spec.ts
@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { CheckboxFormComponent } from './checkbox-form.component';
+
+describe('CheckboxFormComponent', () => {
+  let component: CheckboxFormComponent;
+  let fixture: ComponentFixture<CheckboxFormComponent>;
+
+  beforeEach(async () => {
+    await TestBed.configureTestingModule({
+      declarations: [ CheckboxFormComponent ]
+    })
+    .compileComponents();
+  });
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(CheckboxFormComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});
diff --git a/src/app/shared/components/checkbox-form/checkbox-form.component.ts b/src/app/shared/components/checkbox-form/checkbox-form.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..ef22ca374ddeb0fd23513d58406ce53a77c4e759
--- /dev/null
+++ b/src/app/shared/components/checkbox-form/checkbox-form.component.ts
@@ -0,0 +1,22 @@
+import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
+
+@Component({
+  selector: 'app-checkbox-form',
+  templateUrl: './checkbox-form.component.html',
+  styleUrls: ['./checkbox-form.component.scss'],
+})
+export class CheckboxFormComponent implements OnInit {
+  @Input() public isChecked: boolean;
+  @Input() public text: string;
+  @Input() public iconSvg: string;
+  @Input() public iconType: string;
+  @Output() checkEvent: EventEmitter<boolean> = new EventEmitter<boolean>();
+  constructor() {}
+
+  ngOnInit(): void {}
+
+  public clicked(): void {
+    this.isChecked = !this.isChecked;
+    this.checkEvent.emit(this.isChecked);
+  }
+}
diff --git a/src/app/shared/components/hour-picker/copy-paste/copy-paste.component.html b/src/app/shared/components/hour-picker/copy-paste/copy-paste.component.html
new file mode 100644
index 0000000000000000000000000000000000000000..58741d87ae76430319f6666494db22e631e99c89
--- /dev/null
+++ b/src/app/shared/components/hour-picker/copy-paste/copy-paste.component.html
@@ -0,0 +1,13 @@
+<div>
+  <div *ngIf="copiedDayName === day.name" class="grey-rounded-border">
+    <app-svg-icon [type]="'ico'" [icon]="'cancel'" [iconColor]="'currentColor'" (click)="cancel()"></app-svg-icon>
+  </div>
+
+  <div *ngIf="copiedDayName !== day.name && copiedDayName.length > 0" class="grey-rounded-border">
+    <app-svg-icon [type]="'ico'" [icon]="'paste'" [iconColor]="'currentColor'" (click)="paste(day)"></app-svg-icon>
+  </div>
+
+  <div *ngIf="!copiedDayName" class="grey-rounded-border">
+    <app-svg-icon [type]="'ico'" [icon]="'copy'" [iconColor]="'currentColor'" (click)="copy(day)"></app-svg-icon>
+  </div>
+</div>
diff --git a/src/app/shared/components/hour-picker/copy-paste/copy-paste.component.scss b/src/app/shared/components/hour-picker/copy-paste/copy-paste.component.scss
new file mode 100644
index 0000000000000000000000000000000000000000..537a699337525284055d070052847399d4f509b9
--- /dev/null
+++ b/src/app/shared/components/hour-picker/copy-paste/copy-paste.component.scss
@@ -0,0 +1,13 @@
+@import '../../../../../assets/scss/color';
+@import '../../../../../assets/scss/typography';
+
+.grey-rounded-border {
+  border: 1px solid $grey-4;
+  box-sizing: border-box;
+  border-radius: 22px;
+  @include cn-regular-14;
+  color: $grey-2;
+  display: flex;
+  justify-content: center;
+  width: 40px;
+}
diff --git a/src/app/shared/components/hour-picker/copy-paste/copy-paste.component.spec.ts b/src/app/shared/components/hour-picker/copy-paste/copy-paste.component.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..c904bb2addc0f90da87b41a2e165a788e1585e09
--- /dev/null
+++ b/src/app/shared/components/hour-picker/copy-paste/copy-paste.component.spec.ts
@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { CopyPasteComponent } from './copy-paste.component';
+
+describe('CopyPasteComponent', () => {
+  let component: CopyPasteComponent;
+  let fixture: ComponentFixture<CopyPasteComponent>;
+
+  beforeEach(async () => {
+    await TestBed.configureTestingModule({
+      declarations: [ CopyPasteComponent ]
+    })
+    .compileComponents();
+  });
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(CopyPasteComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});
diff --git a/src/app/shared/components/hour-picker/copy-paste/copy-paste.component.ts b/src/app/shared/components/hour-picker/copy-paste/copy-paste.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..9240f96d17dbc92a5ea6692fbc47e7330a4d312c
--- /dev/null
+++ b/src/app/shared/components/hour-picker/copy-paste/copy-paste.component.ts
@@ -0,0 +1,30 @@
+import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
+
+@Component({
+  selector: 'app-copy-paste',
+  templateUrl: './copy-paste.component.html',
+  styleUrls: ['./copy-paste.component.scss'],
+})
+export class CopyPasteComponent implements OnInit {
+  @Input() copiedDayName = '';
+  @Input() day = null;
+
+  @Output() copyEvent = new EventEmitter<any>();
+  @Output() cancelEvent = new EventEmitter<any>();
+  @Output() pasteEvent = new EventEmitter<any>();
+  constructor() {}
+
+  ngOnInit(): void {}
+
+  public copy(): void {
+    this.copyEvent.emit(this.day);
+  }
+
+  public paste(): void {
+    this.pasteEvent.emit(this.day);
+  }
+
+  public cancel(): void {
+    this.cancelEvent.emit();
+  }
+}
diff --git a/src/app/shared/components/hour-picker/hour-picker.component.html b/src/app/shared/components/hour-picker/hour-picker.component.html
new file mode 100644
index 0000000000000000000000000000000000000000..0a509ad52dd5895c6d6c3aef3c5de0a915a07dbe
--- /dev/null
+++ b/src/app/shared/components/hour-picker/hour-picker.component.html
@@ -0,0 +1,150 @@
+<div class="days">
+  <div *ngFor="let day of structure.hours" (click)="activateDay(day)" class="day" [ngClass]="{ active: day.active }">
+    <div
+      class="header-container sub-text"
+      [ngClass]="modifiedFields && modifiedFields.hours && modifiedFields.hours[day.name] ? 'modified' : ''"
+    >
+      <div class="header">
+        <div class="grid-center">
+          <!-- <input
+            type="checkbox"
+            id="{{ day.name }}"
+            class="toggle-checkbox hidden"
+            (click)="toggleOpenDay(day, $event.target.checked)"
+            [checked]="day.open"
+          /> -->
+          <label class="switch">
+            <input
+              type="checkbox"
+              id="{{ day.name }}"
+              (click)="toggleOpenDay(day, $event.target.checked)"
+              [checked]="day.open"
+              [disabled]="isEditMode"
+            />
+            <span class="slider"></span>
+          </label>
+          <label for="{{ day.name }}" class="toggle-label"></label>
+        </div>
+
+        <div>
+          {{ day.name | titlecase }}
+        </div>
+      </div>
+    </div>
+
+    <!-- <div *ngIf="!day.open">
+      <div class="active">
+        <div class="grid-center">
+          <app-copy-paste
+            [day]="day"
+            [copiedDayName]="copiedDayName"
+            (copyEvent)="copy($event)"
+            (pasteEvent)="paste($event)"
+            (cancelEvent)="cancelCopy()"
+          ></app-copy-paste>
+        </div>
+      </div>
+    </div> -->
+
+    <div *ngIf="day.open" class="row-container">
+      <div class="active" *ngIf="day.active">
+        <div class="hour" *ngFor="let hour of day.hours; let i = index">
+          <div>de</div>
+
+          <div class="input-container">
+            <input type="time" [(ngModel)]="hour.start" (change)="submitForm()" [disabled]="isEditMode" />
+          </div>
+
+          <div>à</div>
+
+          <div class="input-container">
+            <input type="time" [(ngModel)]="hour.end" (change)="submitForm()" [disabled]="isEditMode" />
+          </div>
+
+          <div>
+            <div *ngIf="hour.error === 'wrong' || hour.error === 'incomplete'" class="error-message">
+              <app-svg-icon [type]="'ico'" [icon]="'nok'"></app-svg-icon>
+            </div>
+            <div *ngIf="hour.error === null" class="error-message">
+              <app-svg-icon [type]="'ico'" [icon]="'ok'"></app-svg-icon>
+            </div>
+          </div>
+        </div>
+        <div class="add" *ngIf="day.hours.length === 1 && !isEditMode">
+          <div
+            (click)="addHours(day)"
+            fxLayout="row"
+            fxLayoutAlign="center center"
+            fxLayoutGap="3px"
+            class="grey-rounded-border"
+          >
+            <app-svg-icon [type]="'ico'" [icon]="'add'" [iconColor]="'currentColor'"></app-svg-icon>Ajouter
+          </div>
+          <!-- <div class="grid-center">
+            <app-copy-paste
+              [day]="day"
+              [copiedDayName]="copiedDayName"
+              (copyEvent)="copy($event)"
+              (pasteEvent)="paste($event)"
+              (cancelEvent)="cancelCopy()"
+            ></app-copy-paste>
+          </div> -->
+        </div>
+
+        <!-- <div *ngIf="day.hours.length === 2" class="grid-center">
+          <app-copy-paste
+            [day]="day"
+            [copiedDayName]="copiedDayName"
+            (copyEvent)="copy($event)"
+            (pasteEvent)="paste($event)"
+            (cancelEvent)="cancelCopy()"
+          ></app-copy-paste>
+        </div> -->
+      </div>
+
+      <!-- <div class="inactive hour" *ngIf="!day.active">
+        <div>De</div>
+
+        <div>
+          <input type="time" [(ngModel)]="day.hours[0].start" (change)="checkHoursValid()" />
+        </div>
+
+        <div>à</div>
+
+        <div>
+          <input type="time" [(ngModel)]="day.hours[0].end" (change)="checkHoursValid()" />
+        </div>
+
+        <div>
+          <div
+            *ngIf="
+              day.hours[0].error === 'incomplete' ||
+                (day.hours[1] && day.hours[1].error === 'incomplete') ||
+                (day.hours[2] && day.hours[2].error === 'incomplete') ||
+                (day.hours[3] && day.hours[3].error === 'incomplete') ||
+                (day.hours[4] && day.hours[4].error === 'incomplete');
+              else wrong
+            "
+            class="warning-message"
+          >
+            <app-svg-icon [type]="'ico'" [icon]="'nok'"></app-svg-icon>
+          </div>
+          <ng-template #wrong>
+            <div
+              *ngIf="
+                day.hours[0].error === 'wrong' ||
+                (day.hours[1] && day.hours[1].error === 'wrong') ||
+                (day.hours[2] && day.hours[2].error === 'wrong') ||
+                (day.hours[23] && day.hours[3].error === 'wrong') ||
+                (day.hours[4] && day.hours[4].error === 'wrong')
+              "
+              class="error-message"
+            >
+              <app-svg-icon [type]="'ico'" [icon]="'nok'"></app-svg-icon>
+            </div>
+          </ng-template>
+        </div>
+      </div> -->
+    </div>
+  </div>
+</div>
diff --git a/src/app/shared/components/hour-picker/hour-picker.component.scss b/src/app/shared/components/hour-picker/hour-picker.component.scss
new file mode 100644
index 0000000000000000000000000000000000000000..b10e64ec2b316430fc4cbf13ee2722276e4b0aa6
--- /dev/null
+++ b/src/app/shared/components/hour-picker/hour-picker.component.scss
@@ -0,0 +1,116 @@
+@import '../../../../assets/scss/color';
+@import '../../../../assets/scss/typography';
+@import '../../../../assets/scss/breakpoint';
+
+.days {
+  display: grid;
+  row-gap: 15px;
+
+  .day {
+    display: grid;
+    grid-template-columns: 130px 1fr;
+    column-gap: 10px;
+
+    .header-container {
+      .header {
+        display: grid;
+        grid-template-columns: 35px auto;
+        column-gap: 20px;
+        align-items: center;
+        height: 40px;
+      }
+    }
+
+    .row-container {
+      display: grid;
+      grid-template-columns: auto 1fr;
+    }
+    .active {
+      display: grid;
+      grid-template-columns: 1fr 250px 40px;
+      @media #{$large-phone} {
+        grid-template-columns: unset;
+        grid-template-rows: 1fr 1fr;
+        grid-row-gap: 20px;
+      }
+    }
+    .add {
+      display: grid;
+      grid-template-columns: 96px 40px;
+      column-gap: 10px;
+      // grid-template-columns: 80px 100px;
+      align-items: center;
+    }
+
+    .hour {
+      height: 40px;
+      display: grid;
+      // grid-template-columns: auto 70px auto 70px 30px 80px 1fr;
+      grid-template-columns: auto 52px auto 61px 30px;
+      column-gap: 10px;
+      align-items: center;
+      justify-items: center;
+    }
+  }
+}
+
+.grey-rounded-border {
+  border: 1px solid $grey-4;
+  box-sizing: border-box;
+  border-radius: 22px;
+  @include cn-regular-14;
+  color: $grey-2;
+  display: flex;
+  justify-content: center;
+}
+
+.grid-center {
+  display: grid;
+  align-items: center;
+}
+
+input {
+  background: $grey-6;
+  border: 1px solid $grey-4;
+  box-sizing: border-box;
+  border-radius: 4px;
+  height: 40px;
+  @include cn-regular-14;
+  min-width: 56px;
+  text-align: center;
+  outline: none;
+}
+
+p {
+  margin-top: 0px;
+}
+
+img {
+  cursor: pointer;
+  height: 15px;
+  width: 15px;
+  &.add {
+    height: 20px;
+    width: 20px;
+  }
+}
+
+.modified {
+  border-left: 3px solid red;
+  padding-left: 8px;
+  margin-left: -11px;
+  border-radius: 3px;
+}
+
+.warning-message,
+.error-message {
+  font-weight: bold;
+  font-size: 1em;
+  display: grid;
+  align-items: center;
+}
+
+input[type='time']::-webkit-calendar-picker-indicator {
+  background: none;
+  display: none;
+}
diff --git a/src/app/shared/components/hour-picker/hour-picker.component.spec.ts b/src/app/shared/components/hour-picker/hour-picker.component.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..e05b8606443aecf6462165b4464c22dc7b4f2ba9
--- /dev/null
+++ b/src/app/shared/components/hour-picker/hour-picker.component.spec.ts
@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { HourPickerComponent } from './hour-picker.component';
+
+describe('HourPickerComponent', () => {
+  let component: HourPickerComponent;
+  let fixture: ComponentFixture<HourPickerComponent>;
+
+  beforeEach(async () => {
+    await TestBed.configureTestingModule({
+      declarations: [ HourPickerComponent ]
+    })
+    .compileComponents();
+  });
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(HourPickerComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});
diff --git a/src/app/shared/components/hour-picker/hour-picker.component.ts b/src/app/shared/components/hour-picker/hour-picker.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..6114ce012c57b7a989b263ced5f0b87428ee49a3
--- /dev/null
+++ b/src/app/shared/components/hour-picker/hour-picker.component.ts
@@ -0,0 +1,328 @@
+import { Component, Input, Output, EventEmitter, OnDestroy, OnChanges } from '@angular/core';
+import { AbstractControl, FormArray, FormControl, FormGroup, Validators } from '@angular/forms';
+import * as _ from 'lodash';
+import { Day } from '../../../models/day.model';
+import { Time } from '../../../models/time.model';
+import { WeekDayEnum } from '../../enum/weekDay.enum';
+import { CheckHours } from '../../validator/form';
+
+@Component({
+  selector: 'app-hour-picker',
+  templateUrl: './hour-picker.component.html',
+  styleUrls: ['./hour-picker.component.scss'],
+})
+export class HourPickerComponent implements OnChanges, OnDestroy {
+  @Input() modifiedFields: any;
+  @Input() structureInput: FormGroup;
+  @Input() isEditMode: boolean;
+
+  @Output() updateFormError = new EventEmitter<any>();
+  @Output() updateForm = new EventEmitter<FormGroup>();
+
+  public error = false;
+
+  private copiedDay: any;
+  public copiedDayName = '';
+  public structure = {
+    hours: this.initHoursDefault(),
+  };
+  public structureHoursDefault: any[] = this.initHoursDefault();
+
+  ngOnChanges(): void {
+    this.formatHoursForEdition();
+  }
+
+  ngOnDestroy(): void {
+    this.formatHoursForSave();
+  }
+
+  public getStructureControl(nameControl: string): AbstractControl {
+    return this.structureInput.get(nameControl);
+  }
+
+  private initHoursDefault(): any {
+    return [
+      {
+        name: 'Lundi',
+        hours: [{ start: '', end: '', error: 'incomplete' }],
+        open: false,
+        active: false,
+      },
+      {
+        name: 'Mardi',
+        hours: [{ start: '', end: '', error: 'incomplete' }],
+        open: false,
+        active: false,
+      },
+      {
+        name: 'Mercredi',
+        hours: [{ start: '', end: '', error: 'incomplete' }],
+        open: false,
+        active: false,
+      },
+      {
+        name: 'Jeudi',
+        hours: [{ start: '', end: '', error: 'incomplete' }],
+        open: false,
+        active: false,
+      },
+      {
+        name: 'Vendredi',
+        hours: [{ start: '', end: '', error: 'incomplete' }],
+        open: false,
+        active: false,
+      },
+      {
+        name: 'Samedi',
+        hours: [{ start: '', end: '', error: 'incomplete' }],
+        open: false,
+        active: false,
+      },
+      {
+        name: 'Dimanche',
+        hours: [{ start: '', end: '', error: 'incomplete' }],
+        open: false,
+        active: false,
+      },
+    ];
+  }
+
+  /**
+   * Convert data from form to component structure
+   */
+  private parseFormToHours(day: Day, key: string): void {
+    this.structureHoursDefault.forEach((element) => {
+      if (element.name.toLowerCase() === key) {
+        element.open = day.open;
+        element.active = day.open;
+        element.hours = day.time
+          .map((hour: Time) => {
+            if (hour.openning && hour.closing) {
+              return {
+                start: this.formatNumericalHours(hour.openning),
+                end: this.formatNumericalHours(hour.closing),
+                error: null,
+              };
+            } else {
+              if (hour.openning) {
+                return {
+                  start: this.formatNumericalHours(hour.openning),
+                  end: '',
+                  error: 'incomplete',
+                };
+              } else {
+                return {
+                  start: '',
+                  end: this.formatNumericalHours(hour.closing),
+                  error: 'incomplete',
+                };
+              }
+            }
+          })
+          .filter((item) => item);
+      }
+    });
+    this.checkHoursValid();
+    this.structure.hours = this.structureHoursDefault;
+  }
+
+  private parseToDay(data: {
+    name: string;
+    hours: { start: string; end: string }[];
+    open: boolean;
+    active: boolean;
+  }): Day {
+    return new Day({
+      open: data.open,
+      time: data.hours.map(
+        (hour) =>
+          new Time({
+            openning: this.formatStringHours(hour.start),
+            closing: this.formatStringHours(hour.end),
+          })
+      ),
+    });
+  }
+
+  private parseHoursToForm(): FormGroup {
+    return new FormGroup({
+      monday: this.createDay(this.parseToDay(this.structure.hours[0])),
+      tuesday: this.createDay(this.parseToDay(this.structure.hours[1])),
+      wednesday: this.createDay(this.parseToDay(this.structure.hours[2])),
+      thursday: this.createDay(this.parseToDay(this.structure.hours[3])),
+      friday: this.createDay(this.parseToDay(this.structure.hours[4])),
+      saturday: this.createDay(this.parseToDay(this.structure.hours[5])),
+      sunday: this.createDay(this.parseToDay(this.structure.hours[6])),
+    });
+  }
+
+  /**
+   * convert 1300 to '13:00'
+   */
+  private formatNumericalHours(hour: number): string {
+    const numberStr = hour.toString();
+    if (numberStr.length === 3) {
+      return `0${numberStr[0]}:${numberStr[1]}${numberStr[2]}`;
+    } else {
+      const splitStr = numberStr.match(/.{1,2}/g);
+      return `${splitStr[0]}:${splitStr[1]}`;
+    }
+  }
+
+  /**
+   * convert '13:00' to 1300
+   */
+  private formatStringHours(hour: string): number {
+    const numberStr = hour.split(':')[0] + hour.split(':')[1];
+    return parseInt(numberStr);
+  }
+
+  /**
+   * Intégrer les horaires dans les horaires par défaut du composant
+   */
+  public formatHoursForEdition(): void {
+    if (this.structureInput) {
+      this.parseFormToHours(this.getStructureControl('monday').value, WeekDayEnum.monday);
+      this.parseFormToHours(this.getStructureControl('tuesday').value, WeekDayEnum.tuesday);
+      this.parseFormToHours(this.getStructureControl('wednesday').value, WeekDayEnum.wednesday);
+      this.parseFormToHours(this.getStructureControl('thursday').value, WeekDayEnum.thursday);
+      this.parseFormToHours(this.getStructureControl('friday').value, WeekDayEnum.friday);
+      this.parseFormToHours(this.getStructureControl('saturday').value, WeekDayEnum.saturday);
+      this.parseFormToHours(this.getStructureControl('sunday').value, WeekDayEnum.sunday);
+    }
+    // this.structure.hours = this.structureHoursDefault;
+  }
+
+  /**
+   * Formater les horaires pour l'enregistrement en base :
+   * supprimer les données inutiles
+   */
+  public formatHoursForSave(): void {
+    if (!this.structure.hours) {
+      return;
+    }
+
+    this.structure.hours = this.structure.hours.filter((day) => day.open === true);
+
+    for (const day of this.structure.hours) {
+      delete day.open;
+      delete day.active;
+      for (const hour of day.hours) {
+        delete hour.error;
+      }
+    }
+  }
+
+  public activateDay(day: any): void {
+    day.active = true;
+  }
+
+  public toggleOpenDay(day: any, value: any): void {
+    day.open = value;
+    if (!value) {
+      day.hours = [];
+    }
+    this.submitForm();
+  }
+
+  /**
+   * Ajouter une ligne d'horaires à un jour
+   */
+  public addHours(day: any): void {
+    if (day.hours.length >= 5) {
+      return;
+    }
+
+    day.hours.push({
+      start: '',
+      end: '',
+      error: 'incomplete',
+    });
+    this.submitForm();
+  }
+
+  /**
+   * Supprimer la dernière ligne d'horaires d'un jour
+   */
+  public removeHours(day: any, index: number): void {
+    if (index > -1) {
+      day.hours.splice(index, 1);
+    }
+  }
+
+  /**
+   * Copier les horaires d'un jour pour les coller par dessus les horaires d'un autre jour
+   */
+  public copy(day): void {
+    this.copiedDayName = day.name;
+    this.copiedDay = day;
+  }
+
+  /**
+   * Remplacer les horaires d'un jour par les horaires copiés précédemment
+   */
+  public paste(day): void {
+    day.hours = JSON.parse(JSON.stringify(this.copiedDay.hours));
+    day.open = this.copiedDay.open;
+  }
+
+  /**
+   * Annuler la copie des horaires
+   */
+  public cancelCopy(): void {
+    this.copiedDayName = '';
+    this.copiedDay = null;
+  }
+
+  /**
+   * Vérifier que le format des horaires est correct
+   */
+  public checkHoursValid(): boolean {
+    let error = false;
+    for (const day of this.structure.hours) {
+      if (day.open) {
+        // Init if no data
+        if (day.hours.length === 0) {
+          this.addHours(day);
+        }
+        for (const hour of day.hours) {
+          if (hour.start === '' || hour.end === '') {
+            hour.error = 'incomplete';
+            error = true;
+          } else if (hour.end <= hour.start) {
+            hour.error = 'wrong';
+            error = true;
+          } else {
+            hour.error = null;
+          }
+        }
+      }
+    }
+    // Émettre l'erreur à ajouter au formulaire pour autoriser
+    // ou empêcher de passer à l'étape suivante
+
+    return !error;
+  }
+
+  public submitForm() {
+    if (this.checkHoursValid()) {
+      this.updateForm.emit(this.parseHoursToForm());
+    } else {
+      this.updateFormError.emit();
+    }
+  }
+
+  private createDay(day: Day): FormGroup {
+    return new FormGroup({
+      open: new FormControl(day.open, Validators.required),
+      time: new FormArray(day.time.map((oneTime) => this.createTime(oneTime))) as FormArray,
+    });
+  }
+
+  private createTime(time: Time): FormGroup {
+    return new FormGroup({
+      openning: new FormControl(time.openning, Validators.required),
+      closing: new FormControl(time.closing, [Validators.required, CheckHours(time.openning)]),
+    });
+  }
+}
diff --git a/src/app/shared/components/index.ts b/src/app/shared/components/index.ts
index e4d55982fd57f00574f4456459841eed11994a92..4fecd7be063fdc5bf811c6f6105dca31bf35b3b4 100644
--- a/src/app/shared/components/index.ts
+++ b/src/app/shared/components/index.ts
@@ -1,35 +1,50 @@
 import { ButtonComponent } from './button/button.component';
 import { LogoCardComponent } from './logo-card/logo-card.component';
-import { ModalComponent } from './modal/modal.component';
 import { SignUpModalComponent } from './signup-modal/signup-modal.component';
 import { SignInModalComponent } from './signin-modal/signin-modal.component';
 import { SvgIconComponent } from './svg-icon/svg-icon.component';
 import { ValidatorFormComponent } from './validator-form/validator-form.component';
 import { CreateAccountFormComponent } from './create-account-form/create-account-form.component';
 import { AddressAutocompleteComponent } from './address-autocomplete/address-autocomplete.component';
+import { StructureTypePickerComponent } from './structure-type-picker/structure-type-picker.component';
+import { CheckboxFormComponent } from './checkbox-form/checkbox-form.component';
+import { HourPickerComponent } from './hour-picker/hour-picker.component';
+import { CopyPasteComponent } from './hour-picker/copy-paste/copy-paste.component';
+import { RadioFormComponent } from './radio-form/radio-form.component';
+import { ModalConfirmationComponent } from './modal-confirmation/modal-confirmation.component';
 
 // tslint:disable-next-line: max-line-length
 export {
   LogoCardComponent,
   SvgIconComponent,
-  ModalComponent,
   ButtonComponent,
   ValidatorFormComponent,
   SignUpModalComponent,
   SignInModalComponent,
   CreateAccountFormComponent,
   AddressAutocompleteComponent,
+  StructureTypePickerComponent,
+  CheckboxFormComponent,
+  HourPickerComponent,
+  CopyPasteComponent,
+  RadioFormComponent,
+  ModalConfirmationComponent,
 };
 
 // tslint:disable-next-line:variable-name
 export const SharedComponents = [
   LogoCardComponent,
   SvgIconComponent,
-  ModalComponent,
   ButtonComponent,
   ValidatorFormComponent,
   SignUpModalComponent,
   SignInModalComponent,
   CreateAccountFormComponent,
   AddressAutocompleteComponent,
+  StructureTypePickerComponent,
+  CheckboxFormComponent,
+  HourPickerComponent,
+  CopyPasteComponent,
+  RadioFormComponent,
+  ModalConfirmationComponent,
 ];
diff --git a/src/app/shared/components/modal-confirmation/modal-confirmation.component.html b/src/app/shared/components/modal-confirmation/modal-confirmation.component.html
new file mode 100644
index 0000000000000000000000000000000000000000..fe2cf5816fa77d06b2bc2b360e1338ee3f766c0f
--- /dev/null
+++ b/src/app/shared/components/modal-confirmation/modal-confirmation.component.html
@@ -0,0 +1,12 @@
+<div *ngIf="openned" class="modalExitContainer">
+  <div class="modal">
+    <div class="contentModal" fxLayout="column" fxLayoutAlign="space-around center">
+      <h3>ATTENTION</h3>
+      <p>{{ content }}</p>
+      <div class="footerModal" fxLayout="row" fxLayoutAlign="space-around center">
+        <button class="btn leave" (click)="closeModal(true)">Confirmer</button>
+        <button class="btn" (click)="closeModal(false)">Annuler</button>
+      </div>
+    </div>
+  </div>
+</div>
diff --git a/src/app/shared/components/modal-confirmation/modal-confirmation.component.scss b/src/app/shared/components/modal-confirmation/modal-confirmation.component.scss
new file mode 100644
index 0000000000000000000000000000000000000000..5411fa4841b56477a124bdf89333d329d2a31dfc
--- /dev/null
+++ b/src/app/shared/components/modal-confirmation/modal-confirmation.component.scss
@@ -0,0 +1,58 @@
+@import '../../../../assets/scss/color';
+@import '../../../../assets/scss/typography';
+@import '../../../../assets/scss/shapes';
+@import '../../../../assets/scss/z-index';
+
+.modalExitContainer {
+  width: 100%;
+  height: 100%;
+  z-index: $modal-confirmation-z-index;
+  position: absolute;
+  content: '';
+  top: 0;
+  background-color: $modal-background;
+  .modal {
+    .contentModal {
+      width: 100%;
+      background: $white;
+      padding: 35px 20px 18px 20px;
+      h3 {
+        @include cn-bold-18;
+        color: $orange-warning;
+      }
+      p {
+        @include cn-bold-16;
+        color: $grey-1;
+        text-align: center;
+      }
+      .footerModal {
+        width: 100%;
+        margin-top: 14px;
+        @include cn-bold-16;
+        .btn {
+          background: $secondary-color;
+          border-radius: 4px;
+          outline: none;
+          cursor: pointer;
+          border: 0;
+          color: $white;
+          height: 40px;
+          @include btn-bold;
+          width: 149px;
+          &.leave {
+            background: none;
+            color: $grey-1;
+            text-decoration: underline;
+          }
+        }
+      }
+    }
+    width: 350px;
+    margin: auto;
+    border-radius: 6px;
+    @include background-hash;
+    border: 1px solid $grey-4;
+    margin-top: 50vh;
+    transform: translateY(-50%);
+  }
+}
diff --git a/src/app/shared/components/modal-confirmation/modal-confirmation.component.spec.ts b/src/app/shared/components/modal-confirmation/modal-confirmation.component.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..6c52bf4395fc25ac143d0fdb649d06dbb461ae40
--- /dev/null
+++ b/src/app/shared/components/modal-confirmation/modal-confirmation.component.spec.ts
@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { ModalConfirmationComponent } from './modal-confirmation.component';
+
+describe('ModalConfirmationComponent', () => {
+  let component: ModalConfirmationComponent;
+  let fixture: ComponentFixture<ModalConfirmationComponent>;
+
+  beforeEach(async () => {
+    await TestBed.configureTestingModule({
+      declarations: [ ModalConfirmationComponent ]
+    })
+    .compileComponents();
+  });
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(ModalConfirmationComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});
diff --git a/src/app/shared/components/modal-confirmation/modal-confirmation.component.ts b/src/app/shared/components/modal-confirmation/modal-confirmation.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..8c75b179fcbb2de19e0dc0e8c3f8f7d29af5ffed
--- /dev/null
+++ b/src/app/shared/components/modal-confirmation/modal-confirmation.component.ts
@@ -0,0 +1,19 @@
+import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
+import { Subject } from 'rxjs';
+
+@Component({
+  selector: 'app-modal-confirmation',
+  templateUrl: './modal-confirmation.component.html',
+  styleUrls: ['./modal-confirmation.component.scss'],
+})
+export class ModalConfirmationComponent implements OnInit {
+  constructor() {}
+  @Input() public openned: boolean;
+  @Input() public content: string;
+  @Output() closed = new EventEmitter<boolean>();
+  ngOnInit(): void {}
+
+  public closeModal(value: boolean): void {
+    this.closed.emit(value);
+  }
+}
diff --git a/src/app/shared/components/modal/modal-type.enum.ts b/src/app/shared/components/modal/modal-type.enum.ts
deleted file mode 100644
index fc394752f94b4ba6fddaedaf1a83b0555fc2b679..0000000000000000000000000000000000000000
--- a/src/app/shared/components/modal/modal-type.enum.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-export enum AppModalType {
-  outsideLink = 1,
-  information,
-  confirmation,
-}
diff --git a/src/app/shared/components/modal/modal.component.html b/src/app/shared/components/modal/modal.component.html
deleted file mode 100644
index 42c9178884073259246734d2359ed1dc540b8df8..0000000000000000000000000000000000000000
--- a/src/app/shared/components/modal/modal.component.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<div class="cModal" [ngClass]="openned ? 'oModal' : ''">
-  <div (clickOutside)="closeModal(false)">
-    <p>{{ content }}</p>
-    <div *ngIf="modalType && modalType === modalTypeEnum.outsideLink" class="footer">
-      <a
-        (click)="closeModal(false)"
-        href="https://services.formulaireextranet.grandlyon.com/saisie-fiche-structure/"
-        tabindex="0"
-        target="_blank"
-        rel="noreferrer noopener"
-        >Continuer vers le formulaire</a
-      >
-    </div>
-    <div
-      *ngIf="this.modalType && this.modalType === modalTypeEnum.information"
-      fxLayout="row"
-      fxLayoutAlign="center"
-      fxLayoutGap="20px"
-      class="footer"
-    >
-      <button (click)="closeModal(false)">Ok</button>
-    </div>
-    <div
-      *ngIf="this.modalType && this.modalType === modalTypeEnum.confirmation"
-      fxLayout="row"
-      fxLayoutAlign="center"
-      fxLayoutGap="20px"
-      class="footer"
-    >
-      <a (click)="closeModal(false)" tabindex="0">Annuler</a>
-      <button (click)="closeModal(true)">Confirmer</button>
-    </div>
-  </div>
-</div>
diff --git a/src/app/shared/components/modal/modal.component.scss b/src/app/shared/components/modal/modal.component.scss
deleted file mode 100644
index 412a482e456972c34da72e14821a458fdafeb057..0000000000000000000000000000000000000000
--- a/src/app/shared/components/modal/modal.component.scss
+++ /dev/null
@@ -1,41 +0,0 @@
-@import '../../../../assets/scss/typography';
-@import '../../../../assets/scss/color';
-@import '../../../../assets/scss/buttons';
-@import '../../../../assets/scss/z-index';
-@import '../../../../assets/scss/hyperlink';
-.cModal {
-  position: fixed;
-  z-index: $modal-z-index;
-  top: 0;
-  right: 0;
-  bottom: 0;
-  left: 0;
-  background-color: $modal-background;
-  display: none;
-}
-.cModal > div {
-  max-width: 450px;
-  position: relative;
-  top: 40%;
-  left: 50%;
-  transform: translate(-50%, -50%);
-  background: $white;
-  text-align: center;
-  border-radius: 4px;
-  @include cn-bold-16;
-  p {
-    padding: 30px 48px 0 40px;
-  }
-}
-.oModal {
-  display: block;
-}
-.footer {
-  a {
-    @include hyperlink;
-  }
-  padding: 28px;
-}
-button {
-  @include btn-search-filter;
-}
diff --git a/src/app/shared/components/modal/modal.component.spec.ts b/src/app/shared/components/modal/modal.component.spec.ts
deleted file mode 100644
index 8f64b3e86881e22f2d2378db6bf6cfa2954e4c13..0000000000000000000000000000000000000000
--- a/src/app/shared/components/modal/modal.component.spec.ts
+++ /dev/null
@@ -1,24 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { ModalComponent } from './modal.component';
-
-describe('ModalComponent', () => {
-  let component: ModalComponent;
-  let fixture: ComponentFixture<ModalComponent>;
-
-  beforeEach(async () => {
-    await TestBed.configureTestingModule({
-      declarations: [ModalComponent],
-    }).compileComponents();
-  });
-
-  beforeEach(() => {
-    fixture = TestBed.createComponent(ModalComponent);
-    component = fixture.componentInstance;
-    fixture.detectChanges();
-  });
-
-  it('should create', () => {
-    expect(component).toBeTruthy();
-  });
-});
diff --git a/src/app/shared/components/modal/modal.component.ts b/src/app/shared/components/modal/modal.component.ts
deleted file mode 100644
index 07f8772664828ca71e35cf79fbeb7170ae8cafa0..0000000000000000000000000000000000000000
--- a/src/app/shared/components/modal/modal.component.ts
+++ /dev/null
@@ -1,21 +0,0 @@
-import { Component, EventEmitter, Input, Output } from '@angular/core';
-import { AppModalType } from './modal-type.enum';
-
-@Component({
-  selector: 'app-modal',
-  templateUrl: './modal.component.html',
-  styleUrls: ['./modal.component.scss'],
-})
-export class ModalComponent {
-  constructor() {}
-
-  @Input() public openned: boolean;
-  @Input() public content: string;
-  @Input() public modalType: AppModalType;
-  @Output() closed = new EventEmitter<boolean>();
-  public modalTypeEnum = AppModalType;
-
-  public closeModal(value: boolean): void {
-    this.closed.emit(value);
-  }
-}
diff --git a/src/app/shared/components/radio-form/radio-form.component.html b/src/app/shared/components/radio-form/radio-form.component.html
new file mode 100644
index 0000000000000000000000000000000000000000..42570b7d703df7efdd97b4cc47e656e9f7152700
--- /dev/null
+++ b/src/app/shared/components/radio-form/radio-form.component.html
@@ -0,0 +1,28 @@
+<button
+  (click)="clicked(true)"
+  [ngClass]="{ selected: selectedOption && selectedOption != null }"
+  fxLayout="row"
+  fxLayoutAlign=" center"
+  fxLayoutGap="17px"
+>
+  <div class="checkmark">
+    <svg class="validate" aria-hidden="true">
+      <use [attr.xlink:href]="'assets/form/sprite.svg#checkVector'"></use>
+    </svg>
+  </div>
+  <p>Oui</p>
+</button>
+<button
+  (click)="clicked(false)"
+  [ngClass]="{ selected: !selectedOption && selectedOption != null }"
+  fxLayout="row"
+  fxLayoutAlign=" center"
+  fxLayoutGap="17px"
+>
+  <div class="checkmark">
+    <svg class="validate" aria-hidden="true">
+      <use [attr.xlink:href]="'assets/form/sprite.svg#checkVector'"></use>
+    </svg>
+  </div>
+  <p>Non</p>
+</button>
diff --git a/src/app/shared/components/radio-form/radio-form.component.scss b/src/app/shared/components/radio-form/radio-form.component.scss
new file mode 100644
index 0000000000000000000000000000000000000000..81d1c661ef98a4f03c06514ca36a64aaee5877e3
--- /dev/null
+++ b/src/app/shared/components/radio-form/radio-form.component.scss
@@ -0,0 +1,51 @@
+@import '../../../../assets/scss/color';
+@import '../../../../assets/scss/typography';
+
+svg {
+  width: 40px;
+  height: 100%;
+  fill: $secondary-color;
+  stroke: $secondary-color;
+  &.validate {
+    width: 13px;
+    height: 100%;
+    stroke: $green-1;
+    display: none;
+  }
+}
+
+button {
+  width: 296px;
+  background: $grey-6;
+  border-radius: 4px;
+  padding: 0 16px;
+  height: 65px;
+  outline: none;
+  border: none;
+  cursor: pointer;
+  margin: 8px 0;
+  &.selected {
+    background: $green-1;
+    .validate {
+      display: initial;
+    }
+    p {
+      color: $white;
+    }
+    .checkmark {
+      width: 20px;
+      height: 20px;
+      border: none;
+    }
+  }
+  p {
+    @include cn-bold-16;
+  }
+  .checkmark {
+    width: 18px;
+    height: 18px;
+    background: $white;
+    border: 1px solid $grey-3;
+    border-radius: 10px;
+  }
+}
diff --git a/src/app/shared/components/radio-form/radio-form.component.spec.ts b/src/app/shared/components/radio-form/radio-form.component.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..aa5d5f8f5e5967f44a159921f0971147001e6a71
--- /dev/null
+++ b/src/app/shared/components/radio-form/radio-form.component.spec.ts
@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { RadioFormComponent } from './radio-form.component';
+
+describe('RadioFormComponent', () => {
+  let component: RadioFormComponent;
+  let fixture: ComponentFixture<RadioFormComponent>;
+
+  beforeEach(async () => {
+    await TestBed.configureTestingModule({
+      declarations: [ RadioFormComponent ]
+    })
+    .compileComponents();
+  });
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(RadioFormComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});
diff --git a/src/app/shared/components/radio-form/radio-form.component.ts b/src/app/shared/components/radio-form/radio-form.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..e0ccbd6cfe7bf62b3f293332da1351ded7df8ef4
--- /dev/null
+++ b/src/app/shared/components/radio-form/radio-form.component.ts
@@ -0,0 +1,19 @@
+import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
+
+@Component({
+  selector: 'app-radio-form',
+  templateUrl: './radio-form.component.html',
+  styleUrls: ['./radio-form.component.scss'],
+})
+export class RadioFormComponent implements OnInit {
+  constructor() {}
+
+  @Input() public selectedOption: boolean;
+  @Output() selectedEvent: EventEmitter<boolean> = new EventEmitter<boolean>();
+  ngOnInit(): void {}
+
+  public clicked(bool: boolean): void {
+    this.selectedOption = bool;
+    this.selectedEvent.emit(this.selectedOption);
+  }
+}
diff --git a/src/app/shared/components/structure-type-picker/structure-type-picker.component.html b/src/app/shared/components/structure-type-picker/structure-type-picker.component.html
new file mode 100644
index 0000000000000000000000000000000000000000..3c6fa1bb62feabd9dc263db1b43c65c507766189
--- /dev/null
+++ b/src/app/shared/components/structure-type-picker/structure-type-picker.component.html
@@ -0,0 +1,32 @@
+<div class="container" fxLayout="column">
+  <div fxLayout="row" fxLayoutAlign="center center" fxLayoutGap="30px">
+    <div
+      class="boutonSection"
+      [ngClass]="{ selectedType: type.name == pickedType }"
+      *ngFor="let type of structureTypes"
+    >
+      <button (click)="pickType(type.name)">
+        <div class="containerBtn">
+          <div class="btn">
+            <svg aria-hidden="true">
+              <use [attr.xlink:href]="'assets/form/sprite.svg#' + getStructureTypeIcon(type.name)"></use>
+            </svg>
+          </div>
+        </div>
+      </button>
+      <div class="btnText" fxLayoutAlign="center center">{{ type.name }}</div>
+    </div>
+  </div>
+  <div *ngIf="pickedType" class="tags">
+    <button
+      *ngFor="let choice of getChoices(pickedType)"
+      (click)="pickChoice(choice)"
+      [ngClass]="{ selectedChoice: choice == pickedChoice }"
+    >
+      <svg *ngIf="choice == pickedChoice" class="validate" aria-hidden="true">
+        <use [attr.xlink:href]="'assets/form/sprite.svg#checkVector'"></use>
+      </svg>
+      {{ choice }}
+    </button>
+  </div>
+</div>
diff --git a/src/app/shared/components/structure-type-picker/structure-type-picker.component.scss b/src/app/shared/components/structure-type-picker/structure-type-picker.component.scss
new file mode 100644
index 0000000000000000000000000000000000000000..bac3648addce16805e4e77c19c76de2698adfa70
--- /dev/null
+++ b/src/app/shared/components/structure-type-picker/structure-type-picker.component.scss
@@ -0,0 +1,96 @@
+@import '../../../../assets/scss/typography';
+@import '../../../../assets/scss/color';
+@import '../../../../assets/scss/shapes';
+
+.container {
+  height: 100%;
+}
+button {
+  outline: none;
+  border: none;
+}
+.tags {
+  background: $grey-6;
+  padding: 15px;
+  width: calc(100% + 2px);
+  margin-left: -16px;
+  height: 100%;
+  button {
+    background: $white;
+    border-radius: 20px;
+    margin: 4px;
+    max-width: 100%;
+    white-space: nowrap;
+    height: 40px;
+    padding: 0 28px;
+    cursor: pointer;
+    @include cn-bold-14;
+  }
+}
+.selectedChoice {
+  background: $green-1 !important;
+  color: $white;
+}
+.selectedType {
+  background: $grey-6;
+  .btnText {
+    color: $secondary-color;
+  }
+  .containerBtn {
+    background: none !important;
+    border-color: $secondary-color;
+  }
+}
+.boutonSection {
+  text-align: center;
+  width: 99px;
+  padding-top: 9px;
+  border-radius: 6px 6px 0px 0px;
+  .btnText {
+    min-height: 36px;
+    @include cn-bold-14;
+    margin-bottom: 12px;
+  }
+
+  button {
+    background: none;
+    max-width: 114px;
+    &:focus {
+    }
+  }
+  .containerBtn {
+    @include background-hash;
+    padding: 0 0 4px 5px;
+    border-radius: 4px;
+    cursor: pointer;
+    border: 1px solid $grey-4;
+    .btn {
+      background: $white;
+      height: 53px;
+      width: 35px;
+      color: $secondary-color;
+      padding: 3px 16px 0px 12px;
+      display: table-cell;
+      vertical-align: middle;
+      border-radius: 4px;
+      @include btn-bold;
+      &.withIcon {
+        color: $black;
+        height: 36px;
+      }
+    }
+  }
+}
+
+svg {
+  width: 28px;
+  height: 40px;
+  fill: $secondary-color;
+  stroke: $secondary-color;
+  &.validate {
+    width: 13px;
+    height: 10px;
+    margin-left: -17px;
+    stroke: $white;
+  }
+}
diff --git a/src/app/shared/components/structure-type-picker/structure-type-picker.component.spec.ts b/src/app/shared/components/structure-type-picker/structure-type-picker.component.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..58cc33e78eb83340e9a80f0597b2e7a8cd6ac867
--- /dev/null
+++ b/src/app/shared/components/structure-type-picker/structure-type-picker.component.spec.ts
@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { StructureTypePickerComponent } from './structure-type-picker.component';
+
+describe('StructureTypePickerComponent', () => {
+  let component: StructureTypePickerComponent;
+  let fixture: ComponentFixture<StructureTypePickerComponent>;
+
+  beforeEach(async () => {
+    await TestBed.configureTestingModule({
+      declarations: [ StructureTypePickerComponent ]
+    })
+    .compileComponents();
+  });
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(StructureTypePickerComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});
diff --git a/src/app/shared/components/structure-type-picker/structure-type-picker.component.ts b/src/app/shared/components/structure-type-picker/structure-type-picker.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..7de31248696706fbd40a1b25dde2dcbf4746542a
--- /dev/null
+++ b/src/app/shared/components/structure-type-picker/structure-type-picker.component.ts
@@ -0,0 +1,70 @@
+import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
+import { StructureType } from '../../../models/structure-type.model';
+import { StructureTypeService } from '../../../services/structure-type.service';
+
+export enum structureTypes {
+  public = 'Publique',
+  private = 'Privée à but non lucratif',
+  privateLucratif = 'Privée à but lucratif',
+}
+
+@Component({
+  selector: 'app-structure-type-picker',
+  templateUrl: './structure-type-picker.component.html',
+  styleUrls: ['./structure-type-picker.component.scss'],
+})
+export class StructureTypePickerComponent implements OnInit {
+  public pickedType: string;
+  public structureTypes: StructureType[];
+  @Input() public pickedChoice?: string;
+  @Output() selectedType: EventEmitter<string> = new EventEmitter<string>();
+
+  constructor(private structureTypeService: StructureTypeService) {}
+
+  ngOnInit() {
+    if (this.pickedChoice) {
+      this.pickedType = this.getType(this.pickedChoice);
+    }
+    this.structureTypeService.getStructureTypes().subscribe((types) => {
+      this.structureTypes = types;
+    });
+  }
+
+  public getType(nameChoice: string): string {
+    return this.structureTypes.filter((type) => {
+      if (type.values.includes(nameChoice)) {
+        return type.name;
+      }
+    })[0].name;
+  }
+
+  public getChoices(nameType: string): string[] {
+    return this.structureTypes.filter((type) => {
+      if (type.name == nameType) {
+        return type.values;
+      }
+    })[0].values;
+  }
+
+  public pickType(type: string): void {
+    this.pickedType = type;
+  }
+
+  public pickChoice(choice: string): void {
+    this.pickedChoice = choice;
+    this.selectedType.emit(choice);
+  }
+
+  public getStructureTypeIcon(type: string): string {
+    switch (type) {
+      case structureTypes.public:
+        return 'typeStructure_public';
+      case structureTypes.private:
+        return 'typeStructure_private';
+      case structureTypes.privateLucratif:
+        return 'typeStructure_privateLucratif';
+      default:
+        throw new Error('Structure type not handle');
+    }
+  }
+}
diff --git a/src/app/shared/enum/labels.emum.ts b/src/app/shared/enum/labels.emum.ts
index c8a2030d5e221f737b19f1654c321596f92c2c60..9b17a8e80e8cc1f61a8e7f845b7f8da798b69367 100644
--- a/src/app/shared/enum/labels.emum.ts
+++ b/src/app/shared/enum/labels.emum.ts
@@ -3,4 +3,5 @@ export enum Labels {
   maisonFranceService = 'Maison france service',
   aidantsConnect = 'Aidants connect',
   fabriqueDeTerritoire = 'Fabrique de territoire',
+  demarcheMetropolitaine = 'Démarches Métropolitaines',
 }
diff --git a/src/app/shared/enum/regex.enum.ts b/src/app/shared/enum/regex.enum.ts
new file mode 100644
index 0000000000000000000000000000000000000000..7a564960fa0e226ae58aa94f2f1e728b8d7b5289
--- /dev/null
+++ b/src/app/shared/enum/regex.enum.ts
@@ -0,0 +1,11 @@
+export enum Regex {
+  email = '[a-z0-9.-]+@[a-z0-9.-]+[.][a-z]{2,3}',
+  textWithoutNumber = '[A-Za-zÀ-ÖØ-öø-ÿ-]{1,}',
+  phone = '([0-9]{2} ){4}[0-9]{2}',
+  website = '(www[.])[a-z0-9.-]*[.][a-z]{2,3}',
+  linkedIn = '(linkedin.com/in/[a-z0-9A-Z.-]{1,})',
+  facebook = '(facebook.com/[a-z0-9A-Z.-]{1,})',
+  twitter = '(twitter.com/[a-z0-9A-Z.-]{1,})',
+  instagram = '(instagram.com/[a-z0-9A-Z.-]{1,})',
+  noNullNumber = '[1-9]{1}[0-9]*',
+}
diff --git a/src/app/shared/shared.module.ts b/src/app/shared/shared.module.ts
index 2709454bdff75e2077f2c0fc772a1b073fa58c03..c0829cf6b1ac5f9abd45de845b404f473f5ed840 100644
--- a/src/app/shared/shared.module.ts
+++ b/src/app/shared/shared.module.ts
@@ -8,9 +8,17 @@ import { SharedPipes } from './pipes';
 import { SharedDirectives } from './directives';
 import { SvgIconComponent } from './components/svg-icon/svg-icon.component';
 import { AddressAutocompleteComponent } from './components/address-autocomplete/address-autocomplete.component';
+import { HourPickerComponent } from './components/hour-picker/hour-picker.component';
 @NgModule({
-  imports: [CommonModule, RouterModule, FlexLayoutModule, ReactiveFormsModule],
-  declarations: [...SharedPipes, ...SharedComponents, ...SharedDirectives, SvgIconComponent, AddressAutocompleteComponent],
+  imports: [CommonModule, FormsModule, RouterModule, FlexLayoutModule, ReactiveFormsModule],
+  declarations: [
+    ...SharedPipes,
+    ...SharedComponents,
+    ...SharedDirectives,
+    SvgIconComponent,
+    AddressAutocompleteComponent,
+    HourPickerComponent,
+  ],
   exports: [
     ...SharedPipes,
     ...SharedComponents,
diff --git a/src/app/shared/validator/form.ts b/src/app/shared/validator/form.ts
index 1a1cc906def4e3e5fe38aef3e0dd61155f9a8b54..b07e69864eed0d900b961bac12f4df6e7da398dd 100644
--- a/src/app/shared/validator/form.ts
+++ b/src/app/shared/validator/form.ts
@@ -1,4 +1,4 @@
-import { FormGroup } from '@angular/forms';
+import { AbstractControl, FormGroup } from '@angular/forms';
 
 // custom validator to check that two fields match
 export function MustMatch(controlName: string, matchingControlName: string): any {
@@ -14,3 +14,14 @@ export function MustMatch(controlName: string, matchingControlName: string): any
     }
   };
 }
+
+export function CheckHours(openning: number) {
+  return (control: AbstractControl) => {
+    const regex = new RegExp('^[0-9]*$');
+    if (regex.test(control.value) && openning < control.value) {
+      return null;
+    } else {
+      return { forbiddenName: { value: control.value } };
+    }
+  };
+}
diff --git a/src/app/structure-list/components/card/card.component.html b/src/app/structure-list/components/card/card.component.html
index b9bc6cc927b00f524f18ec18933add1f2c50e055..67e4642b409aa07aea82bee74bef42dcf057b571 100644
--- a/src/app/structure-list/components/card/card.component.html
+++ b/src/app/structure-list/components/card/card.component.html
@@ -13,7 +13,7 @@
       </div>
     </div>
   </div>
-  <span class="typeStructure">{{ structure.getLabelTypeStructure() }}</span>
+  <span class="typeStructure">{{ structure.structureType }}</span>
   <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="7px" *ngIf="structure.hasEquipments()">
     <app-svg-icon
       *ngFor="let equipement of structure.equipmentsAndServices"
diff --git a/src/app/structure-list/components/search/search.component.html b/src/app/structure-list/components/search/search.component.html
index c1546791de58f3c62abbc0b784b8056e86901f49..3c933c7123e8b59703b5f923afbe6162cf033648 100644
--- a/src/app/structure-list/components/search/search.component.html
+++ b/src/app/structure-list/components/search/search.component.html
@@ -1,115 +1,110 @@
-<div class="header">
-  <span class="title">Acteurs de la médiation numérique</span>
-</div>
-<div class="content" fxLayout="column">
-  <div class="searchSection">
-    <form
-      [formGroup]="searchForm"
-      fxLayout="row"
-      fxLayoutGap="16px"
-      fxLayoutAlign=" center"
-      (ngSubmit)="applyFilter(searchForm.value.searchTerm)"
-    >
-      <div class="inputSection" fxLayout="row" fxLayoutAlign="space-between center">
-        <input type="text" formControlName="searchTerm" placeholder="Rechercher une commune, une association..." />
-        <button (click)="clearInput()" class="icon close" type="button"><div class="ico-close-search"></div></button>
-      </div>
-      <app-button
-        class="isntPhoneContent"
-        [style]="'buttonWithHash'"
-        [text]="'Rechercher'"
-        [type]="'submit'"
-      ></app-button>
-    </form>
+<div class="block">
+  <div class="header">
+    <span class="title">Acteurs de la médiation numérique</span>
   </div>
-  <div (clickOutside)="closeModal()">
-    <div class="btnSection isntPhoneContent" fxLayout="row" fxLayoutAlign="space-between center" fxLayoutGap="16px">
-      <button
-        class="btn-filter"
-        type="button"
-        fxLayout="row"
-        [ngClass]="{
-          selected: modalTypeOpened === TypeModal.accompaniment,
-          containCheckedFilters: numberAccompanimentChecked
-        }"
-        fxLayoutAlign="space-between center"
-        (click)="openModal(TypeModal.accompaniment)"
-      >
-        <span>Démarches en ligne</span>
-        <div class="arrow"></div>
-      </button>
-      <button
-        class="btn-filter"
-        type="button"
-        fxLayout="row"
-        [ngClass]="{
-          selected: modalTypeOpened === TypeModal.training,
-          containCheckedFilters: numberTrainingChecked
-        }"
-        fxLayoutAlign="space-between center"
-        (click)="openModal(TypeModal.training)"
-      >
-        <span>Ateliers</span>
-        <div class="arrow"></div>
-      </button>
-      <button
-        class="btn-filter"
-        type="button"
+  <div class="content" fxLayout="column">
+    <div class="searchSection">
+      <form
+        [formGroup]="searchForm"
         fxLayout="row"
-        [ngClass]="{
-          selected: modalTypeOpened === TypeModal.moreFilters,
-          containCheckedFilters: numberMoreFiltersChecked
-        }"
-        fxLayoutAlign="space-between center"
-        (click)="openModal(TypeModal.moreFilters)"
+        fxLayoutGap="16px"
+        fxLayoutAlign=" center"
+        (ngSubmit)="applyFilter(searchForm.value.searchTerm)"
       >
-        <span>Plus de critères</span>
-        <div class="arrow"></div>
-      </button>
+        <div class="inputSection" fxLayout="row" fxLayoutAlign="space-between center">
+          <input type="text" formControlName="searchTerm" placeholder="Rechercher une commune, une association..." />
+          <button (click)="clearInput()" class="icon close" type="button"><div class="ico-close-search"></div></button>
+        </div>
+        <app-button
+          class="isntPhoneContent"
+          [style]="'buttonWithHash'"
+          [text]="'Rechercher'"
+          [type]="'submit'"
+        ></app-button>
+      </form>
     </div>
-    <div *ngIf="modalTypeOpened">
-      <app-modal-filter
-        [modalType]="modalTypeOpened"
-        [categories]="categories"
-        [modules]="checkedModulesFilter"
-        (searchEvent)="fetchResults($event)"
-        (closeEvent)="closeModal()"
-      ></app-modal-filter>
+    <div (clickOutside)="closeModal()">
+      <div class="btnSection isntPhoneContent" fxLayout="row" fxLayoutAlign="space-between center" fxLayoutGap="16px">
+        <button
+          class="btn-filter"
+          type="button"
+          fxLayout="row"
+          [ngClass]="{
+            selected: modalTypeOpened === TypeModal.accompaniment,
+            containCheckedFilters: numberAccompanimentChecked
+          }"
+          fxLayoutAlign="space-between center"
+          (click)="openModal(TypeModal.accompaniment)"
+        >
+          <span>Démarches en ligne</span>
+          <div class="arrow"></div>
+        </button>
+        <button
+          class="btn-filter"
+          type="button"
+          fxLayout="row"
+          [ngClass]="{
+            selected: modalTypeOpened === TypeModal.training,
+            containCheckedFilters: numberTrainingChecked
+          }"
+          fxLayoutAlign="space-between center"
+          (click)="openModal(TypeModal.training)"
+        >
+          <span>Ateliers</span>
+          <div class="arrow"></div>
+        </button>
+        <button
+          class="btn-filter"
+          type="button"
+          fxLayout="row"
+          [ngClass]="{
+            selected: modalTypeOpened === TypeModal.moreFilters,
+            containCheckedFilters: numberMoreFiltersChecked
+          }"
+          fxLayoutAlign="space-between center"
+          (click)="openModal(TypeModal.moreFilters)"
+        >
+          <span>Plus de critères</span>
+          <div class="arrow"></div>
+        </button>
+      </div>
+      <div *ngIf="modalTypeOpened">
+        <app-modal-filter
+          [modalType]="modalTypeOpened"
+          [categories]="categories"
+          [modules]="checkedModulesFilter"
+          (searchEvent)="fetchResults($event)"
+          (closeEvent)="closeModal()"
+        ></app-modal-filter>
+      </div>
     </div>
   </div>
-</div>
-<div class="phoneSection">
-  <div class="btnSection" fxLayout="row" fxLayoutAlign="space-between center">
-    <app-button
-      [style]="'buttonPhone'"
-      [extraClass]="numberAccompanimentChecked ? 'containCheckedFilters' : ''"
-      [text]="'Filtres'"
-      (action)="openModal(TypeModal.accompaniment)"
-    ></app-button>
-    <a (click)="openConfirmationModal()" class="primary right" tabindex="0">Ajouter une structure</a>
+  <div class="phoneSection">
+    <div class="btnSection" fxLayout="row" fxLayoutAlign="space-between center">
+      <app-button
+        [style]="'buttonPhone'"
+        [extraClass]="numberAccompanimentChecked ? 'containCheckedFilters' : ''"
+        [text]="'Filtres'"
+        (action)="openModal(TypeModal.accompaniment)"
+      ></app-button>
+      <a routerLink="/create-structure" tabindex="0">Ajouter une structure</a>
+    </div>
   </div>
-</div>
-<div class="footerSearchSection isntPhoneContent" fxLayout="row" fxLayoutAlign="space-between center">
-  <div class="checkbox">
-    <div class="checkboxItem">
-      <label>
-        <input
-          type="checkbox"
-          value="passNumerique"
-          [checked]="searchService.getIndex(checkedModulesFilter, 'passNumerique', 'labelsQualifications') > -1"
-          (change)="numericPassCheck($event, 'labelsQualifications')"
-        />
-        <span class="customCheck"></span>
-        <div class="label">Pass numérique</div>
-      </label>
+  <div class="footerSearchSection isntPhoneContent" fxLayout="row" fxLayoutAlign="space-between center">
+    <div class="checkbox">
+      <div class="checkboxItem">
+        <label>
+          <input
+            type="checkbox"
+            value="passNumerique"
+            [checked]="searchService.getIndex(checkedModulesFilter, 'passNumerique', 'labelsQualifications') > -1"
+            (change)="numericPassCheck($event, 'labelsQualifications')"
+          />
+          <span class="customCheck"></span>
+          <div class="label">Pass numérique</div>
+        </label>
+      </div>
     </div>
+    <a routerLink="/create-structure" tabindex="0">Ajouter une structure</a>
   </div>
-  <a (click)="openConfirmationModal()" class="primary right" tabindex="0">Ajouter une structure</a>
 </div>
-<app-modal
-  *ngIf="isConfirmationModalOpen"
-  [modalType]="modalType.outsideLink"
-  [openned]="isConfirmationModalOpen"
-  [content]="confirmationModalContent"
-  (closed)="closeConfirmationModal()"
-></app-modal>
diff --git a/src/app/structure-list/components/search/search.component.scss b/src/app/structure-list/components/search/search.component.scss
index bd9fbd745ce9d429e85d370208cbf788239c982f..8883ab5d8f658b52dfb1f16f2b7945eadecdc4bb 100644
--- a/src/app/structure-list/components/search/search.component.scss
+++ b/src/app/structure-list/components/search/search.component.scss
@@ -4,6 +4,9 @@
 @import '../../../../assets/scss/hyperlink';
 @import '../../../../assets/scss/breakpoint';
 
+.block {
+  padding: 0 25px;
+}
 .header {
   .title {
     @include cn-bold-20;
@@ -113,6 +116,11 @@
     }
   }
 }
+a {
+  @include hyperlink;
+  width: 100%;
+  text-align: right;
+}
 
 .phoneSection {
   margin: 9px 0px 18px 0px;
diff --git a/src/app/structure-list/components/search/search.component.ts b/src/app/structure-list/components/search/search.component.ts
index 56c38e623f7347a98048678730dd1722deb158d2..dffac930fbe2517ee3ae8483b3ee0f21a182c16b 100644
--- a/src/app/structure-list/components/search/search.component.ts
+++ b/src/app/structure-list/components/search/search.component.ts
@@ -3,7 +3,6 @@ import { FormBuilder, FormGroup } from '@angular/forms';
 import { forkJoin } from 'rxjs';
 import { GeoJson } from '../../../map/models/geojson.model';
 import { GeojsonService } from '../../../services/geojson.service';
-import { AppModalType } from '../../../shared/components/modal/modal-type.enum';
 import { TypeModal } from '../../enum/typeModal.enum';
 import { Category } from '../../models/category.model';
 import { Filter } from '../../models/filter.model';
@@ -18,10 +17,13 @@ import { SearchService } from '../../services/search.service';
 })
 export class SearchComponent implements OnInit, OnChanges {
   @Output() searchEvent = new EventEmitter();
+
+  // Show/hide form createStructure
+  public addStructureFormModal = false;
+
   @Output() locatationReset: EventEmitter<boolean> = new EventEmitter<boolean>();
   @Output() locatationTrigger: EventEmitter<boolean> = new EventEmitter<boolean>();
   @Input() locate = false;
-  public modalType = AppModalType;
   // Form search input
   public searchForm: FormGroup;
   // Modal variable
@@ -216,10 +218,4 @@ export class SearchComponent implements OnInit, OnChanges {
       );
     }
   }
-  public openConfirmationModal(): void {
-    this.isConfirmationModalOpen = true;
-  }
-  public closeConfirmationModal(): void {
-    this.isConfirmationModalOpen = false;
-  }
 }
diff --git a/src/app/structure-list/components/structure-details/structure-details.component.html b/src/app/structure-list/components/structure-details/structure-details.component.html
index 83e2401017160b6bfb88cb7c8e0b5a24e9f62436..6d346e76d30888b570a5235d169d3f583e2de886 100644
--- a/src/app/structure-list/components/structure-details/structure-details.component.html
+++ b/src/app/structure-list/components/structure-details/structure-details.component.html
@@ -18,7 +18,7 @@
       </div>
       <div fxLayout="row" fxLayoutAlign="space-between center">
         <div class="typeInformationHeader" fxLayout="column">
-          <h3>{{ structure.getLabelTypeStructure() }}</h3>
+          <h3>{{ structure.structureType }}</h3>
           <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="7px" *ngIf="structure.hasEquipments()">
             <app-svg-icon
               *ngFor="let equipement of structure.equipmentsAndServices"
@@ -83,15 +83,18 @@
         </div>
       </div>
       <div fxLayout="row" fxLayoutAlign="center center" class="hide-on-print">
-        <a *ngIf="!isClaimed" (click)="toggleClaimModal()" class="primary" tabindex="0">Revendiquer cette structure</a>
-        <a
+        <a *ngIf="!isClaimed && userIsLoggedIn()" (click)="toggleClaimModal()" class="primary" tabindex="0"
+          >Revendiquer cette structure</a
+        >
+        <!-- temporary remove edit -->
+        <!-- <a
           *ngIf="profileService.isLinkedToStructure(structure._id) || profileService.isAdmin()"
           (click)="editStructure()"
           class="primary"
           tabindex="0"
         >
           Modifier cette structure
-        </a>
+        </a> -->
         <a *ngIf="profileService.isAdmin()" (click)="toggleDeleteModal()" class="primary" tabindex="0">
           Supprimer cette structure
         </a>
@@ -227,6 +230,7 @@
           : {{ structure.nbNumericTerminal }}</span
         >
         <span *ngIf="equipement == 'imprimantes' && structure.nbPrinters"> : {{ structure.nbPrinters }}</span>
+        <span *ngIf="equipement == 'scanners' && structure.nbScanners"> : {{ structure.nbScanners }}</span>
       </p>
     </div>
   </div>
@@ -278,19 +282,16 @@
     </div>
   </div>
 </div>
-<app-modal
-  *ngIf="deleteModalOpenned"
-  [modalType]="modalType.confirmation"
+<app-modal-confirmation
   [openned]="deleteModalOpenned"
   [content]="'Voulez-vous vraiment supprimer cette structure&nbsp;?'"
   (closed)="deleteStructure($event)"
-></app-modal>
-<app-modal
-  *ngIf="claimModalOpenned"
-  [modalType]="modalType.confirmation"
+></app-modal-confirmation>
+
+<app-modal-confirmation
   [openned]="claimModalOpenned"
   [content]="
     'Voulez-vous vraiment revendiquer cette structure&nbsp;? Une demande sera envoyée a l\'administrateur pour validation'
   "
   (closed)="claimStructure($event)"
-></app-modal>
+></app-modal-confirmation>
diff --git a/src/app/structure-list/components/structure-details/structure-details.component.ts b/src/app/structure-list/components/structure-details/structure-details.component.ts
index 181d9fad8ebacb6218842b9bbc11dd407374bff8..4395765f1cabd340c90a5fb93a8614d77cbc6fed 100644
--- a/src/app/structure-list/components/structure-details/structure-details.component.ts
+++ b/src/app/structure-list/components/structure-details/structure-details.component.ts
@@ -15,7 +15,6 @@ import { ProfileService } from '../../../profile/services/profile.service';
 import { User } from '../../../models/user.model';
 import { AuthService } from '../../../services/auth.service';
 import { PublicCategorie } from '../../enum/public.enum';
-import { AppModalType } from '../../../shared/components/modal/modal-type.enum';
 @Component({
   selector: 'app-structure-details',
   templateUrl: './structure-details.component.html',
@@ -41,7 +40,6 @@ export class StructureDetailsComponent implements OnInit {
   public currentProfile: User = null;
   public deleteModalOpenned = false;
   public claimModalOpenned = false;
-  public modalType = AppModalType;
 
   constructor(
     private printService: PrintService,
@@ -63,7 +61,7 @@ export class StructureDetailsComponent implements OnInit {
 
   async ngOnInit(): Promise<void> {
     this.isLoading = true;
-    if (this.authService.isLoggedIn()) {
+    if (this.userIsLoggedIn()) {
       this.currentProfile = await this.profileService.getProfile();
     }
     this.isClaimed = await this.structureService.isClaimed(this.structure._id, this.currentProfile).toPromise();
@@ -90,6 +88,10 @@ export class StructureDetailsComponent implements OnInit {
     }
   }
 
+  public userIsLoggedIn(): boolean {
+    return this.authService.isLoggedIn();
+  }
+
   public getEquipmentsLabel(equipment: Equipment): string {
     switch (equipment) {
       case Equipment.wifi:
@@ -102,6 +104,8 @@ export class StructureDetailsComponent implements OnInit {
         return 'Tablettes';
       case Equipment.computer:
         return 'Ordinateurs à disposition';
+      case Equipment.scanner:
+        return 'Scanners';
       default:
         return null;
     }
@@ -146,8 +150,11 @@ export class StructureDetailsComponent implements OnInit {
   public claimStructure(shouldClaim: boolean): void {
     this.toggleClaimModal();
     if (shouldClaim) {
-      this.isEditMode = false;
-      this.displayForm();
+      this.profileService.getProfile().then((user: User) => {
+        this.structureService.claimStructureWithAccount(this.structure._id, user).subscribe(() => {
+          this.isClaimed = true;
+        });
+      });
     }
   }
   // Show/hide form structure
diff --git a/src/app/structure-list/enum/equipment.enum.ts b/src/app/structure-list/enum/equipment.enum.ts
index fa3dfc6f1714e3b5972a0b87f1c0c2d0af168e7d..880b4a16d47af4ba2eb3245b417ec1075f4432c1 100644
--- a/src/app/structure-list/enum/equipment.enum.ts
+++ b/src/app/structure-list/enum/equipment.enum.ts
@@ -4,4 +4,5 @@ export enum Equipment {
   printer = 'imprimantes',
   tablet = 'tablettes',
   computer = 'ordinateurs',
+  scanner = 'scanners',
 }
diff --git a/src/app/structure-list/structure-list.component.scss b/src/app/structure-list/structure-list.component.scss
index 6af9e153e647e422abebf4e0fb13416b61842904..1817ffba9980908d95a4864559669e85be195863 100644
--- a/src/app/structure-list/structure-list.component.scss
+++ b/src/app/structure-list/structure-list.component.scss
@@ -16,9 +16,6 @@
   overflow-y: auto;
   padding: 0 25px;
 }
-.topBlock {
-  padding: 0 25px;
-}
 
 @media print {
   .listCard {
diff --git a/src/app/user-verification/user-verification.component.html b/src/app/user-verification/user-verification.component.html
index f1a4876a42e2ca08f1829114782bae9346dd2be0..8a56a2a07b3ff0e0eb67e557cb4f81dc17ba70c7 100644
--- a/src/app/user-verification/user-verification.component.html
+++ b/src/app/user-verification/user-verification.component.html
@@ -1,13 +1,64 @@
 <div fxLayout="column" class="content-container full-screen">
-  <h1 style="display: none">Vérification du mail utilisateur</h1>
-  <div class="section-container" fxLayout="colum" fxLayoutAlign="center center">
-    <p *ngIf="!verificationSuccess && !verificationIssue">Votre email est en cours de vérification ...</p>
-    <p *ngIf="verificationSuccess">
-      Vous avez correctement validé l'email associé a votre compte. Vous pouvez dès maintenant vous connecter au site.
-    </p>
-    <p *ngIf="verificationIssue">
-      Une erreur est survenue lors de la validation de votre email... Veuillez envoyer un mail au support.
-    </p>
-    <div></div>
+  <p *ngIf="!verificationSuccess && !verificationIssue">Votre email est en cours de vérification ...</p>
+  <div *ngIf="verificationSuccess">
+    <div class="title">
+      <h3 *ngIf="structure">
+        Bravo !<br />
+        Votre compte et votre structure ont bien été référencés.
+      </h3>
+      <h3 *ngIf="!structure">
+        Bravo !<br />
+        Votre compte a bien été créé.
+      </h3>
+    </div>
+
+    <div *ngIf="structure" class="structureInfoBlock" fxLayout="row" fxLayoutAlign=" center">
+      <div class="structureInfoContent" fxLayout="column">
+        {{ structure.structureName }}
+        <span>{{ structure.structureType }}</span>
+      </div>
+      <div class="validateSvg">
+        <svg class="validate" aria-hidden="true">
+          <use [attr.xlink:href]="'assets/form/sprite.svg#checkVector'"></use>
+        </svg>
+      </div>
+    </div>
+    <div class="btnSection" fxLayout="row" fxLayoutAlign="space-around center">
+      <button *ngIf="structure" class="btn" routerLink="/home" [state]="{ data: structure }">Voir ma structure</button>
+      <button class="btn tmp-form-link" routerLink="/home">
+        <a
+          class="typeform-share button"
+          href="https://form.typeform.com/to/vfbLqfKe?typeform-medium=embed-snippet"
+          data-mode="popup"
+          data-size="100"
+          target="_blank"
+          >Donnez nous votre avis !
+        </a>
+      </button>
+    </div>
   </div>
+  <p *ngIf="verificationIssue">
+    Une erreur est survenue lors de la validation de votre email... Veuillez envoyer un mail au support.
+  </p>
+  <script>
+    (function () {
+      var qs,
+        js,
+        q,
+        s,
+        d = document,
+        gi = d.getElementById,
+        ce = d.createElement,
+        gt = d.getElementsByTagName,
+        id = 'typef_orm_share',
+        b = 'https://embed.typeform.com/';
+      if (!gi.call(d, id)) {
+        js = ce.call(d, 'script');
+        js.id = id;
+        js.src = b + 'embed.js';
+        q = gt.call(d, 'script')[0];
+        q.parentNode.insertBefore(js, q);
+      }
+    })();
+  </script>
 </div>
diff --git a/src/app/user-verification/user-verification.component.scss b/src/app/user-verification/user-verification.component.scss
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..e48bfc961dcf1783535832ad439a87fd2006d116 100644
--- a/src/app/user-verification/user-verification.component.scss
+++ b/src/app/user-verification/user-verification.component.scss
@@ -0,0 +1,59 @@
+@import '../../assets/scss/color';
+@import '../../assets/scss/typography';
+@import '../../assets/scss/breakpoint';
+
+.content-container {
+  max-width: 960px;
+  padding: 18px;
+  margin: auto;
+}
+.structureInfoBlock {
+  background: $green-1;
+  color: $white;
+  padding: 16px;
+  border-radius: 6px;
+  @include cn-bold-18;
+  .structureInfoContent {
+    width: 100%;
+  }
+  span {
+    font-style: italic;
+    @include cn-regular-14;
+  }
+  .validateSvg {
+    stroke: $white;
+    text-align: right;
+    svg {
+      height: 14px;
+      width: 14px;
+    }
+  }
+}
+.btn {
+  background: $secondary-color;
+  border-radius: 4px;
+  outline: none;
+  cursor: pointer;
+  border: 0;
+  color: $white;
+  height: 40px;
+  width: 192px;
+  @include btn-bold;
+}
+.btnSection {
+  @media #{$large-phone} {
+    position: fixed;
+    border-top: 1px solid $grey-4;
+  }
+  bottom: 0;
+  left: 0;
+  width: 100%;
+  text-align: center;
+  padding: 17px 0px;
+}
+
+.tmp-form-link {
+  a {
+    color: $white !important;
+  }
+}
diff --git a/src/app/user-verification/user-verification.component.ts b/src/app/user-verification/user-verification.component.ts
index e5c0e4e7903c5777b94d1d6e536f8af442850414..9af616e60dc72322537de2e0c64a4652b54377e1 100644
--- a/src/app/user-verification/user-verification.component.ts
+++ b/src/app/user-verification/user-verification.component.ts
@@ -1,6 +1,9 @@
 import { Component, OnInit } from '@angular/core';
 import { ActivatedRoute } from '@angular/router';
+import { Structure } from '../models/structure.model';
+import { User } from '../models/user.model';
 import { AuthService } from '../services/auth.service';
+import { StructureService } from '../services/structure.service';
 
 @Component({
   selector: 'app-user-verification',
@@ -10,10 +13,15 @@ import { AuthService } from '../services/auth.service';
 export class UserVerificationComponent implements OnInit {
   public userId: string;
   public token: string;
+  public structure: Structure;
   public verificationSuccess = false;
   public verificationIssue = false;
 
-  constructor(private activatedRoute: ActivatedRoute, private authService: AuthService) {
+  constructor(
+    private activatedRoute: ActivatedRoute,
+    private authService: AuthService,
+    private structureService: StructureService
+  ) {
     this.activatedRoute.queryParams.subscribe((params) => {
       this.token = params['token'];
     });
@@ -26,8 +34,28 @@ export class UserVerificationComponent implements OnInit {
 
   private sendVerification(): void {
     this.authService.verifyUser(this.userId, this.token).subscribe(
-      () => {
-        this.verificationSuccess = true;
+      (user: User) => {
+        if (user.structuresLink[0]) {
+          this.structureService.getStructure(user.structuresLink[0]).subscribe(
+            (structure) => {
+              structure.accountVerified = true;
+              this.structure = structure;
+              this.structureService.updateStructureAfterOwnerVerify(structure._id, user).subscribe(
+                () => {
+                  this.verificationSuccess = true;
+                },
+                () => {
+                  this.verificationIssue = true;
+                }
+              );
+            },
+            () => {
+              this.verificationIssue = true;
+            }
+          );
+        } else {
+          this.verificationSuccess = true;
+        }
       },
       () => {
         this.verificationIssue = true;
diff --git a/src/assets/form/email.svg b/src/assets/form/email.svg
new file mode 100644
index 0000000000000000000000000000000000000000..0be345e0d28264721e32fb965d6b0e3ec1e783ac
--- /dev/null
+++ b/src/assets/form/email.svg
@@ -0,0 +1,17 @@
+<svg width="196" height="119" viewBox="0 0 196 119" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g opacity="0.35" filter="url(#filter0_f)">
+<rect x="74.145" y="49.134" width="94.7677" height="60.8093" transform="rotate(-19.503 74.145 49.134)" fill="#348899"/>
+</g>
+<path d="M72.012 33.98C69.9322 34.3896 68.691 36.5394 69.3763 38.5454L95.4069 114.744C96.0855 116.73 98.3483 117.677 100.239 116.765L182.813 76.9455C184.422 76.1698 185.188 74.3077 184.592 72.6244L165.466 18.6229C164.886 16.9861 163.194 16.0218 161.49 16.3573L72.012 33.98Z" fill="#C9ECF3" stroke="#83B6C1" stroke-width="3"/>
+<path d="M72.2571 38.0604C70.0496 37.0427 70.4459 33.7921 72.8333 33.3347L161.294 16.3859C163.287 16.0041 164.88 18.0294 164.04 19.8761M72.2571 38.0604L164.04 19.8761M72.2571 38.0604L132.625 65.8898C137.408 68.0943 143.071 65.9885 145.25 61.195L164.04 19.8761M72.2571 38.0604L164.04 19.8761" fill="#EAF8FB" stroke="#83B6C1" stroke-width="3"/>
+<path d="M63.4997 63L2.12107 78.1767" stroke="#DC2A59" stroke-width="3" stroke-linecap="round"/>
+<path d="M77.0343 97L36.1785 116.5" stroke="#DC2A59" stroke-width="3" stroke-linecap="round"/>
+<path d="M70.0344 80L48.5 88" stroke="#DC2A59" stroke-width="3" stroke-linecap="round"/>
+<defs>
+<filter id="filter0_f" x="62.145" y="5.49524" width="133.632" height="112.959" 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"/>
+</filter>
+</defs>
+</svg>
diff --git a/src/assets/form/eyePassword.svg b/src/assets/form/eyePassword.svg
new file mode 100644
index 0000000000000000000000000000000000000000..dfd810d7c8526e9731a9ed8cb61de3fbd4434ac7
--- /dev/null
+++ b/src/assets/form/eyePassword.svg
@@ -0,0 +1,5 @@
+<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
new file mode 100644
index 0000000000000000000000000000000000000000..80ef31646a374d29a33540a755e30c6d721b0588
--- /dev/null
+++ b/src/assets/form/factures.svg
@@ -0,0 +1,86 @@
+<svg width="170" height="142" viewBox="0 0 170 142" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g clip-path="url(#clip0)">
+<g opacity="0.35" filter="url(#filter0_f)">
+<path d="M96.7349 10.5946L25.9592 23.3835L22.9014 54.5339L93.6772 41.7449L96.7349 10.5946Z" fill="#DC2A59"/>
+<path d="M36.6071 82.3114L32.8077 117.377L103.583 104.589L107.383 69.5224L93.6772 41.7449L22.9014 54.5339L36.6071 82.3114Z" fill="#DC2A59"/>
+</g>
+<path opacity="0.55" d="M97.7301 10.6923L97.8594 9.37522L96.5571 9.61055L25.7814 22.3995L25.0378 22.5338L24.964 23.2858L21.9801 53.6842L21.4173 53.7858L21.8783 54.7203L21.7769 55.7532L22.338 55.6519L35.5816 82.4929L31.8135 117.27L31.6695 118.599L32.9855 118.362L103.761 105.573L104.497 105.44L104.578 104.696L108.377 69.6301L108.408 69.3409L108.28 69.0799L94.7003 41.5585L97.7301 10.6923Z" fill="#348899" stroke="#DC2A59" stroke-width="2"/>
+<path d="M36.6072 82.3113L107.383 69.5224L103.584 104.588L32.8078 117.377L36.6072 82.3113Z" fill="#FDECF0"/>
+<path d="M36.6072 82.3114L107.383 69.5225L93.6771 41.745L22.9014 54.5339L36.6072 82.3114Z" fill="#F3D0D9"/>
+<path d="M25.9592 23.3835L96.7349 10.5946L93.6772 41.7449L22.9015 54.5338L25.9592 23.3835Z" fill="#FDECF0"/>
+<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="40" y="72" width="59" height="37">
+<path d="M42.7433 82.9215L98.8361 72.7857L97.8518 88.4515L75.4952 92.4912L74.3715 102.647L40.2676 108.81L42.7433 82.9215Z" fill="#FF0101"/>
+</mask>
+<g mask="url(#mask0)">
+<rect x="38.2935" y="86.4759" width="66.6075" height="2.70654" transform="rotate(-10.2426 38.2935 86.4759)" fill="#DC2A59"/>
+<path d="M37.0513 95.0104L99.7692 83.6775L99.7514 86.4311L37.5325 97.6738L37.0513 95.0104Z" fill="#DC2A59"/>
+<rect x="36.916" y="103.571" width="66.6075" height="2.70651" transform="rotate(-10.2426 36.916 103.571)" fill="#DC2A59"/>
+</g>
+<mask id="mask1" mask-type="alpha" maskUnits="userSpaceOnUse" x="28" y="17" width="61" height="37">
+<path d="M30.7004 27.6837L88.9863 17.1516L86.5106 43.0399L28.2247 53.5719L30.7004 27.6837Z" fill="#FF0101"/>
+</mask>
+<g mask="url(#mask1)">
+<path d="M27.3296 41.0132L51.2855 36.6845L50.5941 39.5598L27.8109 43.6766L27.3296 41.0132Z" fill="#DC2A59"/>
+<rect x="25.9912" y="48.8185" width="66.6075" height="2.70654" transform="rotate(-10.2426 25.9912 48.8185)" fill="#DC2A59"/>
+</g>
+<mask id="mask2" mask-type="alpha" maskUnits="userSpaceOnUse" x="29" y="45" width="71" height="35">
+<path d="M88.263 45.1299L29.9771 55.6619L41.3563 79.0466L99.6421 68.5146L88.263 45.1299Z" fill="#FF0101"/>
+</mask>
+<g mask="url(#mask2)">
+<rect x="31.9019" y="66.3155" width="66.6075" height="2.70654" transform="rotate(-10.2426 31.9019 66.3155)" fill="#DC2A59"/>
+<rect x="27.7964" y="58.8063" width="66.6075" height="2.70653" transform="rotate(-10.2426 27.7964 58.8063)" fill="#DC2A59"/>
+<rect x="35.3418" y="73.945" width="66.6075" height="2.70653" transform="rotate(-10.2426 35.3418 73.945)" fill="#DC2A59"/>
+</g>
+</g>
+<g clip-path="url(#clip1)">
+<g opacity="0.35" filter="url(#filter1_f)">
+<path d="M154.96 36.732L85.0298 19.9223L69.6811 47.2007L139.611 64.0104L154.96 36.732Z" fill="#348899"/>
+<path d="M71.0339 78.1459L53.4288 108.709L123.359 125.519L140.964 94.9556L139.611 64.0104L69.6811 47.2007L71.0339 78.1459Z" fill="#348899"/>
+</g>
+<path opacity="0.55" d="M155.831 37.2224L156.48 36.069L155.193 35.7597L85.2635 18.95L84.5288 18.7734L84.1583 19.432L69.1801 46.0518L68.6241 45.9181L68.6696 46.9592L68.1606 47.8637L68.7149 47.997L70.0222 77.8989L52.5623 108.21L51.8947 109.369L53.1951 109.682L123.125 126.491L123.852 126.666L124.225 126.018L141.83 95.4547L141.976 95.2026L141.963 94.9119L140.622 64.252L155.831 37.2224Z" fill="#348899" stroke="#348899" stroke-width="2"/>
+<path d="M71.0339 78.1458L140.964 94.9555L123.359 125.519L53.4287 108.709L71.0339 78.1458Z" fill="#EAF8FB"/>
+<path d="M71.0335 78.1459L140.963 94.9556L139.61 64.0104L69.6805 47.2007L71.0335 78.1459Z" fill="#C9ECF3"/>
+<path d="M85.0296 19.9223L154.96 36.732L139.611 64.0104L69.6809 47.2007L85.0296 19.9223Z" fill="#EAF8FB"/>
+<mask id="mask3" mask-type="alpha" maskUnits="userSpaceOnUse" x="63" y="81" width="69" height="31">
+<path d="M76.4042 81.1765L131.827 94.4989L124.614 108.44L102.525 103.131L97.4046 111.973L63.7082 103.873L76.4042 81.1765Z" fill="#FF0101"/>
+</mask>
+<g mask="url(#mask3)">
+<rect x="70.8989" y="82.6369" width="66.6075" height="2.70654" transform="rotate(13.5163 70.8989 82.6369)" fill="#348899"/>
+<path d="M66.3237 89.9475L128.292 104.843L127.166 107.357L65.6912 92.5791L66.3237 89.9475Z" fill="#348899"/>
+<rect x="62.751" y="97.728" width="66.6075" height="2.70651" transform="rotate(13.5163 62.751 97.728)" fill="#348899"/>
+</g>
+<mask id="mask4" mask-type="alpha" maskUnits="userSpaceOnUse" x="74" y="25" width="72" height="38">
+<path d="M87.6366 25.7683L145.226 39.6116L132.53 62.3084L74.9407 48.4651L87.6366 25.7683Z" fill="#FF0101"/>
+</mask>
+<g mask="url(#mask4)">
+<path d="M79.1812 36.6101L102.851 42.2998L101.06 44.6529L78.5486 39.2417L79.1812 36.6101Z" fill="#348899"/>
+<rect x="74.8115" y="43.2148" width="66.6075" height="2.70654" transform="rotate(13.5163 74.8115 43.2148)" fill="#348899"/>
+</g>
+<mask id="mask5" mask-type="alpha" maskUnits="userSpaceOnUse" x="75" y="51" width="60" height="40">
+<path d="M133.292 64.9271L75.7023 51.0838L76.6956 77.0712L134.285 90.9144L133.292 64.9271Z" fill="#FF0101"/>
+</mask>
+<g mask="url(#mask5)">
+<rect x="73.1719" y="61.6101" width="66.6075" height="2.70654" transform="rotate(13.5163 73.1719 61.6101)" fill="#117083"/>
+<rect x="72.4395" y="53.0832" width="66.6075" height="2.70653" transform="rotate(13.5163 72.4395 53.0832)" fill="#117083"/>
+<rect x="73.2466" y="69.9789" width="66.6075" height="2.70653" transform="rotate(13.5163 73.2466 69.9789)" fill="#117083"/>
+</g>
+</g>
+<defs>
+<filter id="filter0_f" x="10.9014" y="-1.4054" 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"/>
+</filter>
+<filter id="filter1_f" x="41.4287" y="7.92233" 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"/>
+</filter>
+<clipPath id="clip0">
+<rect width="109.547" height="112.659" fill="white" transform="translate(0 19.4793) rotate(-10.2426)"/>
+</clipPath>
+<clipPath id="clip1">
+<rect width="109.547" height="112.659" fill="white" transform="translate(62.8438 5.89041) rotate(13.5163)"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/src/assets/form/notvalidate.svg b/src/assets/form/notvalidate.svg
new file mode 100644
index 0000000000000000000000000000000000000000..91ed2f0106bb79982cfc8ac2e9d2f49230f328bd
--- /dev/null
+++ b/src/assets/form/notvalidate.svg
@@ -0,0 +1,5 @@
+<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/schedule.svg b/src/assets/form/schedule.svg
new file mode 100644
index 0000000000000000000000000000000000000000..87830d059c3cc2cd032e9e35d3b5eb65ff4d6e79
--- /dev/null
+++ b/src/assets/form/schedule.svg
@@ -0,0 +1,5 @@
+<svg width="179" height="179" viewBox="0 0 179 179" fill="none" xmlns="http://www.w3.org/2000/svg">
+<circle cx="89.4997" 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
new file mode 100644
index 0000000000000000000000000000000000000000..4b583444aee071e61035d2d63fdc558c69f37ed0
--- /dev/null
+++ b/src/assets/form/sprite.svg
@@ -0,0 +1,327 @@
+<svg xmlns="http://www.w3.org/2000/svg">
+<symbol id="typeStructure_public" viewBox="0 0 28 31" xmlns="http://www.w3.org/2000/svg">
+<path d="M14.0002 6.44446L25.6668 13.4445H2.3335L14.0002 6.44446Z" stroke="none"/>
+<path d="M2.3335 13.4445H25.6668V14C25.6668 14.5523 25.2191 15 24.6668 15H3.3335C2.78121 15 2.3335 14.5523 2.3335 14V13.4445Z" stroke="none"/>
+<path d="M2.3335 26.6667H25.6668V28.2222H2.3335V26.6667Z" stroke="none"/>
+<path d="M0 29H28V30.5556H0V29Z" stroke="none"/>
+<rect x="4.6665" y="15.7778" width="2.33333" height="10.1111" stroke="none"/>
+<rect x="10.1113" y="15.7778" width="2.33333" height="10.1111" stroke="none"/>
+<rect x="15.5557" y="15.7778" width="2.33333" height="10.1111" stroke="none"/>
+<rect x="21" y="15.7778" width="2.33333" height="10.1111" stroke="none"/>
+<path d="M13.667 7.22222L13.667 1" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
+<path d="M13.667 1.44444C13.667 1.44444 13.2781 1 12.5003 1C11.7225 1 11.3337 1.44444 11.3337 1.44444V4.11111C11.3337 4.11111 11.7225 3.66667 12.5003 3.66667C13.2781 3.66667 13.667 4.11111 13.667 4.11111V1.44444Z" stroke="none"/>
+<path d="M11.3335 4.44447C11.3335 4.44447 10.9446 4.88892 10.1668 4.88892C9.38905 4.88892 9.00016 4.44447 9.00016 4.44447V1.7778C9.00016 1.7778 9.38905 2.22225 10.1668 2.22225C10.9446 2.22225 11.3335 1.7778 11.3335 1.7778V4.44447Z" stroke="none"/>
+</symbol>
+
+<symbol id="checkVector" viewBox="0 0 14 11" xmlns="http://www.w3.org/2000/svg">
+<path d="M2.00002 5.81818L5.8889 9L12 2" fill="none" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
+</symbol>
+
+<symbol id="typeStructure_privateLucratif" viewBox="0 0 20 45" xmlns="http://www.w3.org/2000/svg">
+<path d="M3.56201 15.4203L16.562 10V43H3.56201V15.4203Z" stroke="none"/>
+<rect x="0.562012" y="44" width="19" height="1" stroke="none"/>
+<path d="M7.06201 0L7.56201 15H6.56201L7.06201 0Z" stroke="none"/>
+<rect x="5.56201" y="17" width="4" height="1" fill="white" stroke="none"/>
+<rect x="10.562" y="17" width="4" height="1" fill="white" stroke="none"/>
+<rect x="3.56201" y="17" width="1" height="1" fill="white" stroke="none"/>
+<rect x="3.56201" y="19" width="1" height="1" fill="white" stroke="none"/>
+<rect x="3.56201" y="21" width="1" height="1" fill="white" stroke="none"/>
+<rect x="3.56201" y="23" width="1" height="1" fill="white" stroke="none"/>
+<rect x="3.56201" y="25" width="1" height="1" fill="white" stroke="none"/>
+<rect x="3.56201" y="27" width="1" height="1" fill="white" stroke="none"/>
+<rect x="3.56201" y="29" width="1" height="1" fill="white" stroke="none"/>
+<rect x="3.56201" y="31" width="1" height="1" fill="white" stroke="none"/>
+<rect x="3.56201" y="33" width="1" height="1" fill="white" stroke="none"/>
+<rect x="3.56201" y="35" width="1" height="1" fill="white" stroke="none"/>
+<rect x="3.56201" y="37" width="1" height="1" fill="white" stroke="none"/>
+<rect x="3.56201" y="39" width="1" height="1" fill="white" stroke="none"/>
+<rect x="15.562" y="17" width="1" height="1" fill="white" stroke="none"/>
+<rect x="15.562" y="19" width="1" height="1" fill="white" stroke="none"/>
+<rect x="15.562" y="21" width="1" height="1" fill="white" stroke="none"/>
+<rect x="15.562" y="23" width="1" height="1" fill="white" stroke="none"/>
+<rect x="15.562" y="25" width="1" height="1" fill="white" stroke="none"/>
+<rect x="15.562" y="27" width="1" height="1" fill="white" stroke="none"/>
+<rect x="15.562" y="29" width="1" height="1" fill="white" stroke="none"/>
+<rect x="15.562" y="31" width="1" height="1" fill="white" stroke="none"/>
+<rect x="15.562" y="33" width="1" height="1" fill="white" stroke="none"/>
+<rect x="15.562" y="35" width="1" height="1" fill="white" stroke="none"/>
+<rect x="15.562" y="37" width="1" height="1" fill="white" stroke="none"/>
+<rect x="15.562" y="39" width="1" height="1" fill="white" stroke="none"/>
+<rect x="5.56201" y="19" width="4" height="1" fill="white" stroke="none"/>
+<rect x="10.562" y="19" width="4" height="1" fill="white" stroke="none"/>
+<rect x="5.56201" y="21" width="4" height="1" fill="white" stroke="none"/>
+<rect x="10.562" y="21" width="4" height="1" fill="white" stroke="none"/>
+<rect x="5.56201" y="23" width="4" height="1" fill="white" stroke="none"/>
+<rect x="10.562" y="23" width="4" height="1" fill="white" stroke="none"/>
+<rect x="5.56201" y="25" width="4" height="1" fill="white" stroke="none"/>
+<rect x="10.562" y="25" width="4" height="1" fill="white" stroke="none"/>
+<rect x="5.56201" y="27" width="4" height="1" fill="white" stroke="none"/>
+<rect x="10.562" y="27" width="4" height="1" fill="white" stroke="none"/>
+<rect x="5.56201" y="29" width="4" height="1" fill="white" stroke="none"/>
+<rect x="10.562" y="29" width="4" height="1" fill="white" stroke="none"/>
+<rect x="5.56201" y="31" width="4" height="1" fill="white" stroke="none"/>
+<rect x="10.562" y="31" width="4" height="1" fill="white" stroke="none"/>
+<rect x="5.56201" y="33" width="4" height="1" fill="white" stroke="none"/>
+<rect x="10.562" y="33" width="4" height="1" fill="white" stroke="none"/>
+<rect x="5.56201" y="35" width="4" height="1" fill="white" stroke="none"/>
+<rect x="10.562" y="35" width="4" height="1" fill="white" stroke="none"/>
+<rect x="5.56201" y="37" width="4" height="1" fill="white" stroke="none"/>
+<rect x="10.562" y="37" width="4" height="1" fill="white" stroke="none"/>
+<rect x="5.56201" y="39" width="4" height="1" fill="white" stroke="none"/>
+<rect x="10.562" y="39" width="4" height="1" fill="white" stroke="none"/>
+</symbol>
+
+<symbol id="typeStructure_private" viewBox="0 0 20 25" xmlns="http://www.w3.org/2000/svg">
+<path d="M3.12402 8H16.124V23H3.12402V8Z" stroke="none"/>
+<path d="M9.79077 10.5L9.79077 1" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M9.79077 1.44444C9.79077 1.44444 9.40188 1 8.6241 1C7.84633 1 7.45744 1.44444 7.45744 1.44444V4.11111C7.45744 4.11111 7.84633 3.66667 8.6241 3.66667C9.40188 3.66667 9.79077 4.11111 9.79077 4.11111V1.44444Z" stroke="none"/>
+<path d="M7.45728 4.44444C7.45728 4.44444 7.06839 4.88889 6.29061 4.88889C5.51283 4.88889 5.12394 4.44444 5.12394 4.44444V1.77777C5.12394 1.77777 5.51283 2.22222 6.29061 2.22222C7.06839 2.22222 7.45728 1.77777 7.45728 1.77777V4.44444Z" stroke="none"/>
+<rect x="0.124023" y="24" width="19" height="1" stroke="none"/>
+<rect x="4.12402" y="11" width="2" height="1" fill="white" stroke="none"/>
+<rect x="7.12402" y="11" width="2" height="1" fill="white" stroke="none"/>
+<rect x="10.124" y="11" width="2" height="1" fill="white" stroke="none"/>
+<rect x="13.124" y="11" width="2" height="1" fill="white" stroke="none"/>
+<rect x="4.12402" y="14" width="2" height="1" fill="white" stroke="none"/>
+<rect x="7.12402" y="14" width="2" height="1" fill="white" stroke="none"/>
+<rect x="10.124" y="14" width="2" height="1" fill="white" stroke="none"/>
+<rect x="13.124" y="14" width="2" height="1" fill="white" stroke="none"/>
+<rect x="4.12402" y="17" width="2" height="1" fill="white" stroke="none"/>
+<rect x="7.12402" y="17" width="2" height="1" fill="white" stroke="none"/>
+<rect x="10.124" y="17" width="2" height="1" fill="white" stroke="none"/>
+<rect x="13.124" y="17" width="2" height="1" fill="white" stroke="none"/>
+<rect x="4.12402" y="20" width="2" height="1" fill="white" stroke="none"/>
+<rect x="7.12402" y="20" width="2" height="1" fill="white" stroke="none"/>
+<rect x="10.124" y="20" width="2" height="1" fill="white" stroke="none"/>
+<rect x="13.124" y="20" width="2" height="1" fill="white" stroke="none"/>
+</symbol>
+
+<symbol id="accesLibre" viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
+<rect x="22" y="8" width="10" height="28" fill="white" stroke="#4F4F4F" stroke-width="2"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M10 5V37L23 43.5L23 0.5L10 5ZM19 23C19 21.8954 19.8954 21 21 21V25C19.8954 25 19 24.1046 19 23Z" stroke="none"/>
+<rect x="33" y="35" width="3" height="2" fill="#4F4F4F" stroke="none"/>
+<rect x="7" y="35" width="3" height="2" fill="#4F4F4F" stroke="none"/>
+</symbol>
+
+<symbol id="surRdv" viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M13.1111 6C12.1293 6 11.3333 6.79594 11.3333 7.77778V9.55556H7.77778C6.79594 9.55556 6 10.3515 6 11.3333V36.2222C6 37.2041 6.79594 38 7.77778 38H36.2222C37.2041 38 38 37.2041 38 36.2222V11.3333C38 10.3515 37.2041 9.55556 36.2222 9.55556H32.6667V7.77778C32.6667 6.79594 31.8707 6 30.8889 6C29.9071 6 29.1111 6.79594 29.1111 7.77778V9.55556H14.8889V7.77778C14.8889 6.79594 14.093 6 13.1111 6ZM7.77778 16.2222V36.2222H36.2222V16.2222H7.77778Z" fill="#4F4F4F" stroke="none"/>
+<rect x="7.77783" y="15.7778" width="28.4444" height="20.4444" fill="white" stroke="none"/>
+<path d="M16.6666 26.3636L20.8148 30L27.3333 22" fill="none" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
+</symbol>
+
+<symbol id="telephoneVisio" viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
+<g clip-path="url(#clip0)">
+<path d="M25.0419 30.0674L20.6788 34.4303L11.9528 25.7043L16.3158 21.3413C16.8339 20.8232 16.8339 19.9845 16.3158 19.4678L9.6911 12.8431C9.17304 12.325 8.33434 12.325 7.81763 12.8431L3.45459 17.2061C3.45459 31.8693 14.5112 42.9285 29.177 42.9285L33.5401 38.5656C34.0581 38.0474 34.0581 37.2088 33.5401 36.692L26.9153 30.0674C26.3986 29.5506 25.5587 29.5506 25.0419 30.0674Z" fill="#4F4F4F" stroke="none"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M32.6799 24.3312C32.7893 21.4558 31.6409 18.5585 29.2978 16.5266C26.982 14.5183 23.9945 13.785 21.192 14.2656L19.7273 12.5443C23.4085 11.5374 27.5084 12.3275 30.6082 15.0156C33.7509 17.741 35.1078 21.7601 34.5737 25.5945L32.6799 24.3312Z" stroke="none"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M26.935 24.7419C26.8751 23.2343 26.2165 21.7539 24.9866 20.6874C23.7682 19.6308 22.2271 19.1867 20.7391 19.3283L19.2476 17.5754C21.6325 16.923 24.2887 17.4349 26.2969 19.1764C28.333 20.9421 29.2121 23.546 28.866 26.0301L26.935 24.7419Z" stroke="none"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M38.9258 23.3934C39.2657 18.7937 37.5047 14.0969 33.7522 10.8427C30.0465 7.62914 25.2228 6.53725 20.7641 7.46158L19.3115 5.75444C24.6404 4.29671 30.5754 5.44046 35.0626 9.33177C39.6119 13.277 41.5761 19.095 40.8029 24.6457L38.9258 23.3934Z" stroke="none"/>
+</g>
+<defs>
+<clipPath id="clip0">
+<rect width="44" height="44" fill="white"/>
+</clipPath>
+</defs>
+</symbol>
+
+<symbol id="twitter" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
+<path d="M19.6429 0C20.2976 0 20.8542 0.229167 21.3125 0.6875C21.7708 1.14583 22 1.70238 22 2.35714V19.6429C22 20.2976 21.7708 20.8542 21.3125 21.3125C20.8542 21.7708 20.2976 22 19.6429 22H2.35714C1.70238 22 1.14583 21.7708 0.6875 21.3125C0.229167 20.8542 0 20.2976 0 19.6429V2.35714C0 1.70238 0.229167 1.14583 0.6875 0.6875C1.14583 0.229167 1.70238 0 2.35714 0H19.6429ZM17.2366 7.80804C17.8586 7.3497 18.3988 6.79315 18.8571 6.13839C18.2351 6.4003 17.6131 6.56399 16.9911 6.62946C17.6786 6.20387 18.1533 5.61458 18.4152 4.86161C17.7604 5.25446 17.0729 5.51637 16.3527 5.64732C15.7307 4.95982 14.9613 4.61607 14.0446 4.61607C13.0298 4.61607 12.1949 5.00893 11.5402 5.79464C10.8854 6.58036 10.6726 7.51339 10.9018 8.59375C8.18452 8.43006 5.95833 7.3006 4.22321 5.20536C3.92857 5.69643 3.78125 6.23661 3.78125 6.82589C3.78125 7.15327 3.84673 7.49702 3.97768 7.85714C4.10863 8.18452 4.28869 8.49554 4.51786 8.79018C4.74702 9.08482 4.99256 9.33036 5.25446 9.52679C4.73065 9.49405 4.23958 9.34673 3.78125 9.08482V9.13393C3.78125 9.91964 4.02679 10.6071 4.51786 11.1964C5.00893 11.7857 5.63095 12.1622 6.38393 12.3259C5.9256 12.4241 5.43452 12.4405 4.91071 12.375C5.10714 13.0298 5.48363 13.5699 6.04018 13.9955C6.59673 14.3884 7.21875 14.5848 7.90625 14.5848C6.72768 15.5015 5.40179 15.9598 3.92857 15.9598C3.63393 15.9598 3.37202 15.9435 3.14286 15.9107C4.64881 16.8929 6.30208 17.3839 8.10268 17.3839C9.96875 17.3839 11.622 16.9092 13.0625 15.9598C14.503 15.0104 15.5506 13.8482 16.2054 12.4732C16.8929 11.0982 17.2366 9.67411 17.2366 8.20089C17.2366 8.0372 17.2366 7.90625 17.2366 7.80804Z" stroke="none"/>
+</symbol>
+
+<symbol id="facebook" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
+<path d="M19.6429 0C20.2976 0 20.8542 0.229167 21.3125 0.6875C21.7708 1.14583 22 1.70238 22 2.35714V19.6429C22 20.2976 21.7708 20.8542 21.3125 21.3125C20.8542 21.7708 20.2976 22 19.6429 22H12.9152V14.5357H15.7634L16.3036 11H12.9152V8.69196C12.9152 7.44792 13.5699 6.82589 14.8795 6.82589H16.4018V3.83036C15.4851 3.66667 14.5848 3.58482 13.7009 3.58482C12.7515 3.58482 11.933 3.76488 11.2455 4.125C10.5908 4.48512 10.067 5.0253 9.67411 5.74554C9.28125 6.46577 9.08482 7.31696 9.08482 8.29911V11H5.99107V14.5357H9.08482V22H2.35714C1.70238 22 1.14583 21.7708 0.6875 21.3125C0.229167 20.8542 0 20.2976 0 19.6429V2.35714C0 1.70238 0.229167 1.14583 0.6875 0.6875C1.14583 0.229167 1.70238 0 2.35714 0H19.6429Z" stroke="none"/>
+</symbol>
+
+<symbol id="linkedin" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
+<path d="M20.4286 0C20.8542 0 21.2143 0.16369 21.5089 0.491071C21.8363 0.785714 22 1.14583 22 1.57143V20.4286C22 20.8542 21.8363 21.2143 21.5089 21.5089C21.2143 21.8363 20.8542 22 20.4286 22H1.57143C1.14583 22 0.769345 21.8363 0.441964 21.5089C0.147321 21.2143 0 20.8542 0 20.4286V1.57143C0 1.14583 0.147321 0.785714 0.441964 0.491071C0.769345 0.16369 1.14583 0 1.57143 0H20.4286ZM6.62946 18.8571H6.67857V8.34821H3.38839V18.8571H6.62946ZM3.68304 6.38393C4.04315 6.74405 4.48512 6.92411 5.00893 6.92411C5.53274 6.92411 5.9747 6.74405 6.33482 6.38393C6.72768 5.99107 6.92411 5.54911 6.92411 5.05804C6.92411 4.53423 6.72768 4.09226 6.33482 3.73214C5.9747 3.33929 5.53274 3.14286 5.00893 3.14286C4.48512 3.14286 4.04315 3.33929 3.68304 3.73214C3.32292 4.09226 3.14286 4.53423 3.14286 5.05804C3.14286 5.54911 3.32292 5.99107 3.68304 6.38393ZM18.8571 18.8571V13.1116C18.8571 12.3259 18.808 11.6548 18.7098 11.0982C18.6116 10.5417 18.4315 10.0342 18.1696 9.57589C17.9077 9.08482 17.4985 8.7247 16.942 8.49554C16.4182 8.23363 15.7634 8.10268 14.9777 8.10268C14.2247 8.10268 13.5699 8.26637 13.0134 8.59375C12.4896 8.92113 12.1131 9.31399 11.8839 9.77232H11.8348V8.34821H8.69196V18.8571H11.9821V13.6518C11.9821 12.8333 12.1131 12.1786 12.375 11.6875C12.6369 11.1964 13.1443 10.9509 13.8973 10.9509C14.2902 10.9509 14.6176 11.0327 14.8795 11.1964C15.1414 11.3601 15.3051 11.6057 15.3705 11.933C15.4688 12.2604 15.5342 12.5551 15.567 12.817C15.5997 13.0461 15.6161 13.3571 15.6161 13.75V18.8571H18.8571Z" stroke="none"/>
+</symbol>
+
+<symbol id="instagram" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
+<path d="M10.8207 13.4828C10.0871 13.4828 9.45997 13.2226 8.93937 12.7019C8.41877 12.1813 8.15846 11.5542 8.15846 10.8207C8.15846 10.0871 8.41877 9.45998 8.93937 8.93937C9.45997 8.41875 10.0871 8.15846 10.8207 8.15846C11.5542 8.15846 12.1813 8.41875 12.7019 8.93937C13.2225 9.45998 13.4828 10.0871 13.4828 10.8207C13.4828 11.5542 13.2225 12.1813 12.7019 12.7019C12.1813 13.2226 11.5542 13.4828 10.8207 13.4828Z" stroke="none"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M17.2099 14.7962C17.1626 15.0802 17.1034 15.3168 17.0324 15.5061C16.7485 16.216 16.2397 16.7248 15.5061 17.0324C15.3168 17.1034 15.0683 17.1626 14.7607 17.2099C14.4767 17.2572 14.1218 17.2927 13.6958 17.3164C13.2935 17.3401 12.9622 17.3519 12.7019 17.3519H8.90387C8.66724 17.3519 8.33594 17.3401 7.90999 17.3164C7.50769 17.2927 7.15274 17.2572 6.84511 17.2099C6.56114 17.1626 6.32451 17.1034 6.13519 17.0324C5.42527 16.7485 4.91649 16.2397 4.60887 15.5061C4.56153 15.3405 4.51421 15.1275 4.46688 14.8672C4.41955 14.6069 4.38405 14.3584 4.36039 14.1218C4.33673 13.8615 4.31306 13.5538 4.2894 13.1989V8.93937C4.2894 8.67907 4.30124 8.34776 4.3249 7.94548C4.34856 7.51953 4.38405 7.16457 4.43139 6.8806C4.47872 6.57296 4.53787 6.32449 4.60887 6.13519C4.89283 5.4016 5.40161 4.89283 6.13519 4.60887C6.32451 4.53787 6.56114 4.4787 6.84511 4.43139C7.15274 4.38407 7.50769 4.34857 7.90999 4.3249C8.33594 4.30122 8.67906 4.2894 8.93937 4.2894H12.7019C12.9622 4.2894 13.2935 4.30122 13.6958 4.3249C14.1218 4.34857 14.4767 4.38407 14.7607 4.43139C15.0683 4.4787 15.3168 4.53787 15.5061 4.60887C16.2397 4.89283 16.7485 5.4016 17.0324 6.13519C17.1034 6.32449 17.1626 6.57296 17.2099 6.8806C17.2573 7.16457 17.2927 7.51953 17.3164 7.94548C17.3401 8.34776 17.3519 8.67907 17.3519 8.93937V12.7019C17.3519 12.9622 17.3401 13.3054 17.3164 13.7313C17.2927 14.1336 17.2573 14.4886 17.2099 14.7962ZM10.8207 6.73862C9.68478 6.73862 8.71456 7.1409 7.90999 7.94548C7.12908 8.72639 6.73862 9.68478 6.73862 10.8207C6.73862 11.9565 7.12908 12.9267 7.90999 13.7313C8.71456 14.5122 9.68478 14.9027 10.8207 14.9027C11.9565 14.9027 12.9149 14.5122 13.6958 13.7313C14.5004 12.9267 14.9027 11.9565 14.9027 10.8207C14.9027 9.68478 14.5004 8.72639 13.6958 7.94548C12.9149 7.1409 11.9565 6.73862 10.8207 6.73862ZM16.0031 6.56114C16.0031 6.30085 15.9084 6.08787 15.7191 5.92221C15.5534 5.73291 15.3405 5.63825 15.0802 5.63825C14.8199 5.63825 14.5951 5.73291 14.4057 5.92221C14.2164 6.08787 14.1218 6.30085 14.1218 6.56114C14.1218 6.82143 14.2164 7.04626 14.4057 7.23556C14.5951 7.42487 14.8199 7.51953 15.0802 7.51953C15.3405 7.51953 15.5534 7.42487 15.7191 7.23556C15.9084 7.04626 16.0031 6.82143 16.0031 6.56114Z" stroke="none"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M1.91304 0C0.8565 0 0 0.856485 0 1.91304V20.087C0 21.1435 0.8565 22 1.91304 22H20.087C21.1435 22 22 21.1435 22 20.087V1.91304C22 0.856485 21.1435 0 20.087 0H1.91304ZM18.7717 10.8207C18.7717 9.28251 18.7599 8.19395 18.7362 7.55503C18.6653 6.11152 18.2275 4.99932 17.4229 4.21841C16.642 3.41383 15.5298 2.97605 14.0863 2.90506C13.4474 2.88139 12.3588 2.86957 10.8207 2.86957C9.28249 2.86957 8.19395 2.88139 7.55503 2.90506C6.11153 2.97605 4.99932 3.41383 4.21841 4.21841C3.4375 4.99932 3.01155 6.09969 2.94056 7.51953C2.89322 8.18213 2.86957 9.28251 2.86957 10.8207C2.86957 12.3588 2.89322 13.4474 2.94056 14.0863C2.94056 14.5595 2.97605 14.9737 3.04704 15.3286C3.1417 15.6836 3.28368 16.0504 3.473 16.429C3.66231 16.8076 3.91078 17.1389 4.21841 17.4229C4.99932 18.2038 6.11153 18.6298 7.55503 18.7007C8.19395 18.7481 9.28249 18.7717 10.8207 18.7717C12.3588 18.7717 13.4474 18.7481 14.0863 18.7007C15.5298 18.6534 16.642 18.2393 17.4229 17.4584C18.2275 16.6538 18.6653 15.5298 18.7362 14.0863C18.7599 13.4474 18.7717 12.3588 18.7717 10.8207Z" stroke="none"/>
+</symbol>
+
+
+<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="passNumerique" viewBox="0 0 120 56" fill="none" stroke="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M58.8222 28.6543C58.8186 28.6508 58.8153 28.6534 58.8119 28.6543L58.8019 28.6589C58.7875 28.6645 58.7738 28.6717 58.7611 28.6804C58.7567 28.6831 58.7509 28.6846 58.7479 28.6804C58.7449 28.6762 58.7515 28.6729 58.7542 28.6695C58.763 28.6582 58.7779 28.6619 58.7885 28.6546C58.8247 28.6293 58.8651 28.6108 58.9078 28.5998C58.9793 28.5799 59.0531 28.5745 59.1256 28.5608C59.1729 28.5518 59.22 28.5435 59.2598 28.5133C59.2773 28.5004 59.295 28.4871 59.3137 28.4753C59.3425 28.458 59.3653 28.4323 59.379 28.4016C59.3826 28.3934 59.3915 28.3827 59.3832 28.3761C59.3775 28.3719 59.3712 28.3851 59.365 28.39C59.3618 28.3928 59.3589 28.3957 59.356 28.3988C59.2947 28.4556 59.2276 28.5032 59.1462 28.5266C59.0829 28.5447 59.0169 28.5415 58.9508 28.5502C58.9721 28.5327 58.9896 28.5127 59.02 28.5092C59.0063 28.4977 58.9961 28.5062 58.9858 28.5078C58.979 28.509 58.9687 28.516 58.9669 28.5047C58.9658 28.498 58.9669 28.4841 58.9818 28.4847C58.9852 28.4847 58.9897 28.4859 58.9912 28.4817C58.9967 28.4647 59.0128 28.4605 59.0259 28.4531C59.0652 28.4307 59.105 28.4094 59.1445 28.3873C59.1486 28.3849 59.1548 28.3845 59.1559 28.3782C59.1511 28.3763 59.1439 28.3824 59.142 28.3749C59.14 28.3675 59.146 28.3654 59.1524 28.3634C59.1874 28.3507 59.2215 28.3357 59.2546 28.3187C59.2448 28.3153 59.2352 28.3217 59.2286 28.3138C59.2328 28.3045 59.2459 28.3059 59.2479 28.2988C59.2512 28.2877 59.2501 28.2753 59.2661 28.2738C59.2682 28.2738 59.268 28.271 59.2661 28.2699C59.2553 28.2614 59.2673 28.2595 59.2706 28.2566C59.2816 28.2472 59.297 28.2475 59.3105 28.2408C59.2928 28.2344 59.2865 28.2231 59.2956 28.211C59.3134 28.1862 59.3163 28.1569 59.3247 28.1291C59.3259 28.1255 59.3283 28.1211 59.3231 28.1181C59.3178 28.1151 59.3153 28.1181 59.3125 28.1215C59.2842 28.1464 59.2505 28.1643 59.214 28.1737C59.1873 28.1816 59.1601 28.1879 59.1326 28.1925C59.1176 28.1962 59.1018 28.196 59.0869 28.1918C59.072 28.1876 59.0585 28.1796 59.0476 28.1686C59.0376 28.1593 59.0265 28.1512 59.0146 28.1445C58.929 28.0954 58.8346 28.078 58.7384 28.0665C58.7023 28.0633 58.666 28.0621 58.6298 28.0629C58.6452 28.0548 58.6615 28.0488 58.6784 28.045C58.72 28.0349 58.7621 28.0269 58.8028 28.0137C58.8376 28.0014 58.8736 27.9927 58.9102 27.9877L58.9611 27.9838C58.9443 27.9809 58.9271 27.9809 58.9104 27.9838C58.8961 27.9828 58.8818 27.9835 58.8677 27.9859C58.7764 28.0037 58.6833 28.0158 58.6007 28.0633C58.5943 28.0671 58.5858 28.0702 58.5809 28.0644C58.576 28.0586 58.5834 28.0517 58.5876 28.0462C58.6103 28.0146 58.6407 27.9893 58.676 27.9728C58.7112 27.9563 58.7501 27.949 58.7889 27.9518C58.8858 27.9551 58.9822 27.9678 59.0767 27.9897C59.0846 27.9906 59.0922 27.9933 59.0989 27.9978C59.1056 28.0022 59.1111 28.0082 59.115 28.0152C59.1176 28.0199 59.1215 28.0238 59.1261 28.0266C59.1307 28.0293 59.136 28.0308 59.1414 28.031C59.161 28.0312 59.1805 28.0349 59.1988 28.042C59.2015 28.0135 59.2036 28.0122 59.2304 28.0164H59.2339C59.2437 28.0181 59.2539 28.0189 59.2595 28.009C59.2616 28.0047 59.2622 27.9997 59.2612 27.995C59.2602 27.9903 59.2577 27.986 59.254 27.9828C59.2424 27.9692 59.2298 27.9564 59.2179 27.9431C59.214 27.9388 59.2079 27.9345 59.2131 27.9251C59.2303 27.9415 59.2462 27.9573 59.2628 27.9725C59.2829 27.9932 59.309 28.0071 59.3374 28.0122C59.3474 28.0135 59.3593 28.018 59.3662 28.0092C59.373 28.0004 59.3636 27.9903 59.3589 27.9821C59.3385 27.9512 59.3154 27.9222 59.2898 27.8955C59.2839 27.8905 59.2796 27.884 59.2773 27.8766C59.2732 27.8632 59.2675 27.8504 59.2601 27.8384C59.2488 27.8177 59.2412 27.7952 59.2377 27.7719C59.2379 27.7611 59.237 27.7504 59.2349 27.7398C59.2149 27.6718 59.2066 27.6013 59.1902 27.5322C59.1784 27.4809 59.1742 27.4296 59.2008 27.3808C59.2207 27.3443 59.2415 27.3082 59.2622 27.2721C59.2889 27.2259 59.319 27.1826 59.3648 27.1528C59.3695 27.1493 59.3729 27.1443 59.3745 27.1386C59.4078 27.056 59.4597 26.9908 59.5432 26.9538C59.5826 26.9364 59.6224 26.9199 59.6625 26.9017H59.6439C58.7579 26.9017 57.8721 26.9017 56.9863 26.9017C56.9674 26.9017 56.9642 26.9073 56.9642 26.9246C56.9642 27.6091 56.9642 28.2935 56.9642 28.9779C56.9642 28.9966 56.9692 29.0002 56.9868 29.0002C57.6097 28.9996 58.2327 28.9996 58.8556 29.0002C58.8709 29.0008 58.8861 28.9965 58.8987 28.9878C58.9187 28.9738 58.9398 28.9614 58.9618 28.9508C59.0318 28.9166 59.102 28.8828 59.1727 28.8504C59.2635 28.8088 59.3462 28.7575 59.4102 28.678C59.4589 28.6168 59.515 28.562 59.5774 28.5148C59.5803 28.5132 59.5827 28.5107 59.5841 28.5076C59.5854 28.5045 59.5857 28.5011 59.5848 28.4978C59.5659 28.5035 59.555 28.5239 59.5331 28.5236C59.5389 28.5166 59.5466 28.512 59.5525 28.5057C59.5583 28.4995 59.5753 28.4977 59.5707 28.4857C59.565 28.4708 59.5499 28.4801 59.5389 28.4795C59.5371 28.4798 59.5354 28.4802 59.5337 28.4808C59.5001 28.488 59.4756 28.5106 59.4506 28.5311C59.4457 28.5351 59.4409 28.5424 59.4339 28.5387C59.4209 28.5318 59.4109 28.5387 59.4005 28.5438C59.3802 28.5539 59.361 28.5659 59.3429 28.5796C59.3221 28.5956 59.3 28.6097 59.2768 28.6219C59.2619 28.6294 59.2433 28.6255 59.2273 28.6349C59.2006 28.6499 59.17 28.6566 59.1395 28.6541C59.0707 28.65 59.0052 28.6681 58.9384 28.681C58.8826 28.6917 58.8458 28.732 58.803 28.7627C58.7674 28.7886 58.7342 28.8177 58.7038 28.8495C58.6996 28.8537 58.6957 28.8598 58.6865 28.8558C58.6975 28.842 58.7068 28.827 58.7142 28.811C58.7244 28.7842 58.7444 28.7622 58.7702 28.7496C58.7758 28.7465 58.7805 28.7419 58.7838 28.7363C58.787 28.7308 58.7887 28.7244 58.7886 28.718C58.7624 28.719 58.7597 28.7578 58.7278 28.7527C58.7361 28.742 58.7426 28.73 58.747 28.7172C58.7506 28.6931 58.7688 28.6853 58.7857 28.675L58.8054 28.6629L58.814 28.6574L58.8213 28.6538L58.8225 28.651L58.8204 28.6519L58.8222 28.6543ZM60.7521 28.2247C60.7614 28.2269 60.7699 28.2315 60.7769 28.2379C60.784 28.2444 60.7892 28.2526 60.7921 28.2617C60.7954 28.2673 60.7967 28.274 60.7957 28.2805C60.7946 28.2869 60.7913 28.2928 60.7862 28.2971C60.7771 28.3048 60.7677 28.312 60.7589 28.32C60.7531 28.3244 60.7491 28.3307 60.7478 28.3378C60.7464 28.345 60.7478 28.3523 60.7516 28.3585C60.7609 28.3805 60.7628 28.4049 60.7571 28.4281C60.7513 28.4512 60.7383 28.4719 60.7199 28.4871C60.7039 28.4988 60.6857 28.5069 60.6663 28.511C60.647 28.5152 60.627 28.5151 60.6077 28.5109C60.5928 28.5081 60.5795 28.5029 60.5646 28.5009C60.5093 28.4935 60.4548 28.4792 60.3987 28.4759C60.3688 28.4721 60.3386 28.4798 60.3142 28.4974C60.2111 28.5815 60.1662 28.6913 60.177 28.8234C60.1792 28.8521 60.1896 28.8756 60.2226 28.8807C60.2277 28.882 60.2327 28.8838 60.2375 28.8859C60.3245 28.9165 60.4116 28.9466 60.4924 28.992C60.5015 28.9972 60.5118 29 60.5222 29C61.2388 29 61.9553 29 62.6718 29C62.6878 29 62.6927 28.9966 62.6927 28.9797C62.6927 28.2936 62.6927 27.608 62.6927 26.9228C62.6927 26.9049 62.6873 26.9017 62.6708 26.9017C61.9449 26.9017 61.219 26.9017 60.4932 26.9017C60.4863 26.9003 60.4792 26.9014 60.473 26.9047L60.4888 26.9135C60.5228 26.9329 60.5595 26.9475 60.5901 26.9732C60.6298 27.0062 60.6372 27.0337 60.6232 27.0807C60.6199 27.0935 60.6125 27.1048 60.6021 27.1129C60.5916 27.121 60.5788 27.1254 60.5656 27.1255C60.5496 27.1268 60.5334 27.1265 60.5175 27.1246C60.5079 27.1235 60.4984 27.1228 60.4876 27.1219C60.4876 27.1241 60.4876 27.125 60.4876 27.1252C60.4897 27.1264 60.4918 27.1275 60.494 27.1285C60.5443 27.1479 60.5883 27.1809 60.6211 27.2236C60.624 27.227 60.6276 27.2298 60.6316 27.2318C60.6356 27.2337 60.6399 27.2349 60.6444 27.2351C60.6641 27.239 60.6641 27.2388 60.6524 27.2552C60.6492 27.2597 60.645 27.2652 60.6498 27.2694C60.6523 27.2715 60.6556 27.2725 60.659 27.2722C60.6623 27.2719 60.6654 27.2703 60.6675 27.2678C60.6737 27.2605 60.6787 27.2524 60.6824 27.2436C60.6834 27.2412 60.6849 27.2391 60.6869 27.2374C60.6889 27.2358 60.6912 27.2346 60.6937 27.2341C60.6963 27.2336 60.6989 27.2337 60.7014 27.2344C60.7038 27.2351 60.7061 27.2364 60.7079 27.2382C60.713 27.2416 60.7172 27.2462 60.7203 27.2514C60.7234 27.2567 60.7252 27.2626 60.7257 27.2687C60.7262 27.2748 60.7253 27.281 60.723 27.2867C60.7208 27.2923 60.7173 27.2975 60.7129 27.3016C60.7033 27.3106 60.6929 27.3186 60.683 27.3267C60.6798 27.3285 60.6769 27.331 60.6747 27.334C60.6725 27.337 60.6709 27.3404 60.6702 27.3441C60.6694 27.3477 60.6694 27.3515 60.6703 27.3551C60.6711 27.3588 60.6727 27.3622 60.675 27.3652C60.6798 27.3733 60.684 27.3819 60.6873 27.3908C60.7015 27.4356 60.7161 27.4815 60.7287 27.5273C60.7449 27.5869 60.757 27.6484 60.7436 27.7106C60.7372 27.7432 60.7438 27.7771 60.7621 27.8049C60.777 27.8301 60.7932 27.8541 60.8097 27.8782C60.8362 27.9126 60.8596 27.9493 60.8796 27.9879C60.8966 28.0259 60.883 28.0525 60.8432 28.0642C60.8387 28.0656 60.8341 28.0668 60.8295 28.0678C60.7764 28.0786 60.7801 28.1054 60.7986 28.1396L60.8023 28.1457C60.8155 28.1686 60.8129 28.1842 60.7919 28.2C60.78 28.2091 60.7673 28.2152 60.7521 28.2247ZM61.3636 30.252C61.4476 30.252 61.5317 30.252 61.6157 30.252C61.6288 30.252 61.6333 30.2474 61.6354 30.2357C61.6452 30.1835 61.6464 30.13 61.6386 30.0775C61.6213 29.9677 61.5666 29.8836 61.467 29.8312C61.3901 29.7913 61.3075 29.7854 61.2234 29.7981C61.1088 29.8154 61.0173 29.8703 60.9563 29.9699C60.8974 30.0668 60.877 30.1822 60.8991 30.2933C60.9215 30.4216 60.9886 30.5202 61.1059 30.5807C61.1976 30.628 61.2959 30.6374 61.3963 30.6234C61.4944 30.6113 61.5844 30.5628 61.6483 30.4875C61.6565 30.478 61.6591 30.4718 61.6468 30.4624C61.6128 30.4365 61.5799 30.4087 61.5466 30.3817C61.5221 30.3619 61.5221 30.3621 61.5004 30.3843C61.4467 30.4387 61.3799 30.4554 61.3065 30.4526C61.1949 30.4481 61.1159 30.378 61.0977 30.2682C61.0953 30.2544 61.0977 30.2512 61.1115 30.2514C61.1961 30.2524 61.2802 30.2524 61.3642 30.2524L61.3636 30.252ZM61.6944 31.5511C61.7772 31.5511 61.8601 31.5511 61.9429 31.5511C61.9587 31.5511 61.9629 31.5457 61.9653 31.5317C61.9747 31.48 61.9754 31.4272 61.9675 31.3752C61.9492 31.2643 61.8929 31.1794 61.7909 31.1286C61.7213 31.0959 61.6435 31.0849 61.5675 31.0968C61.4415 31.1124 61.3427 31.1714 61.2792 31.2831C61.2305 31.3701 61.2117 31.4707 61.2259 31.5694C61.2408 31.6888 61.2933 31.7891 61.3955 31.8569C61.5122 31.934 61.6407 31.9455 61.7742 31.9138C61.8556 31.8951 61.9284 31.8496 61.9809 31.7847C61.9853 31.7796 61.9921 31.7751 61.9826 31.7675C61.9408 31.7341 61.8992 31.7003 61.8577 31.6662C61.8521 31.6616 61.8492 31.6625 61.8451 31.6679C61.8003 31.7244 61.7407 31.7492 61.6711 31.7527C61.5408 31.7593 61.4474 31.6909 61.4277 31.5675C61.4256 31.5535 61.4277 31.5508 61.4418 31.5508C61.5257 31.5515 61.6103 31.5511 61.695 31.5511H61.6944ZM58.1287 31.5511C58.2108 31.5511 58.2927 31.5511 58.3754 31.5511C58.393 31.5511 58.4 31.5468 58.4025 31.5289C58.4104 31.4806 58.4113 31.4314 58.405 31.3829C58.3882 31.2691 58.3325 31.1813 58.2278 31.1293C58.1578 31.0961 58.0793 31.0848 58.0028 31.0969C57.8711 31.1138 57.7704 31.1775 57.7083 31.2966C57.6643 31.3828 57.6486 31.4806 57.6636 31.5762C57.6793 31.6931 57.7316 31.7911 57.8318 31.8564C57.9612 31.9407 58.1017 31.9489 58.2463 31.9031C58.3137 31.8813 58.3732 31.8403 58.4176 31.7851C58.422 31.7796 58.4289 31.775 58.4185 31.7668C58.3768 31.734 58.336 31.7002 58.2948 31.6665C58.2899 31.6625 58.2868 31.6613 58.2821 31.6674C58.2381 31.7241 58.1777 31.749 58.1084 31.7527C57.9861 31.7592 57.887 31.6994 57.8648 31.57C57.8623 31.556 57.8633 31.5505 57.8797 31.5508C57.9624 31.5517 58.0457 31.5511 58.1293 31.5511H58.1287ZM56.9644 30.0605C56.9644 30.2338 56.9644 30.4073 56.9644 30.5807C56.9644 30.5956 56.9686 30.5995 56.9832 30.5994C57.0428 30.5985 57.1037 30.5983 57.1638 30.5994C57.1796 30.5994 57.1835 30.5956 57.1835 30.5798C57.1835 30.4422 57.1835 30.3045 57.1835 30.1668C57.1835 30.1527 57.1872 30.1489 57.2012 30.1491C57.3056 30.1491 57.41 30.1491 57.5144 30.1491C57.5273 30.1491 57.5316 30.1465 57.5315 30.1327C57.5306 30.0778 57.5306 30.023 57.5315 29.9686C57.5315 29.9547 57.5282 29.9509 57.514 29.951C57.4103 29.951 57.3065 29.951 57.2029 29.951C57.188 29.951 57.1836 29.948 57.1838 29.9327C57.1847 29.8684 57.1848 29.8039 57.1838 29.7397C57.1838 29.7235 57.1881 29.72 57.2036 29.7201C57.3276 29.7201 57.4515 29.7201 57.5755 29.7201C57.5895 29.7201 57.5936 29.7165 57.5933 29.7024C57.5933 29.6481 57.5925 29.5939 57.5933 29.5396C57.5933 29.5247 57.5899 29.521 57.5749 29.521C57.3782 29.5216 57.1815 29.5216 56.9848 29.521C56.969 29.521 56.9654 29.5249 56.9654 29.5405C56.9651 29.7155 56.965 29.8876 56.965 30.0605H56.9644ZM58.7702 30.5281C58.7702 30.5498 58.7702 30.5677 58.7702 30.5855C58.7702 30.597 58.7737 30.5994 58.7851 30.5992C58.8404 30.5992 58.8959 30.5985 58.9514 30.5992C58.9646 30.5992 58.9682 30.5961 58.9681 30.5825C58.9681 30.4156 58.9703 30.2486 58.9669 30.0818C58.9645 29.9613 58.9072 29.8718 58.7948 29.8226C58.7312 29.7962 58.6619 29.7866 58.5936 29.7947C58.5411 29.7983 58.4899 29.8128 58.4433 29.8371C58.3967 29.8614 58.3555 29.8951 58.3226 29.9361C58.3152 29.945 58.3166 29.9491 58.3251 29.9555C58.3666 29.9867 58.4077 30.0182 58.4484 30.05C58.4575 30.0572 58.4611 30.0557 58.4674 30.0468C58.4834 30.0229 58.5046 30.0031 58.5296 29.9889C58.5545 29.9747 58.5824 29.9665 58.611 29.9649C58.7072 29.9567 58.7734 30.0148 58.7712 30.1055C58.7712 30.1148 58.7694 30.1188 58.7591 30.1204C58.7014 30.1294 58.644 30.1397 58.5864 30.1489C58.5308 30.1556 58.4767 30.1712 58.4262 30.1953C58.2936 30.2642 58.2542 30.426 58.3448 30.541C58.4068 30.6198 58.4939 30.6366 58.5877 30.6258C58.6588 30.6173 58.7241 30.5824 58.7708 30.5281H58.7702ZM59.3668 29.8806C59.3668 29.8621 59.3668 29.8485 59.3668 29.835C59.3668 29.8253 59.3635 29.823 59.3544 29.823C59.2959 29.823 59.2376 29.823 59.1791 29.823C59.1685 29.823 59.1666 29.8265 59.1666 29.8362C59.1666 30.086 59.1666 30.3359 59.1666 30.5856C59.1666 30.5973 59.1705 30.5992 59.1815 30.5992C59.2368 30.5992 59.2923 30.5983 59.3478 30.5992C59.3627 30.5992 59.3677 30.5958 59.3675 30.5797C59.3675 30.4223 59.3675 30.265 59.3675 30.1075C59.3664 30.0998 59.3675 30.092 59.3708 30.0849C59.4043 30.0299 59.4483 29.9892 59.5149 29.9781C59.5935 29.9653 59.6613 30.0032 59.6855 30.0746C59.6931 30.098 59.6967 30.1223 59.6964 30.1468C59.6964 30.2917 59.6964 30.4365 59.6964 30.5815C59.6964 30.5953 59.7 30.5994 59.7141 30.5992C59.7684 30.5983 59.8226 30.5983 59.8769 30.5992C59.891 30.5992 59.8945 30.5955 59.8945 30.5815C59.8945 30.4653 59.8945 30.3489 59.8945 30.2327C59.8963 30.1803 59.8951 30.1278 59.8909 30.0755C59.8821 30.001 59.8599 29.9331 59.8065 29.8791C59.7214 29.7929 59.6172 29.7784 59.5043 29.8045C59.4528 29.8175 59.4056 29.8437 59.3675 29.8806H59.3668ZM60.3689 31.5134C60.3685 31.5318 60.3696 31.5503 60.3722 31.5685C60.3895 31.6961 60.4481 31.7981 60.5585 31.8668C60.648 31.9222 60.7458 31.9377 60.8486 31.9265C60.9 31.9218 60.95 31.907 60.9957 31.8829C61.0414 31.8588 61.0819 31.8258 61.1148 31.786C61.123 31.7762 61.1218 31.772 61.112 31.7647C61.0671 31.7312 61.0227 31.6971 60.9786 31.6625C60.9686 31.6546 60.9645 31.6564 60.9569 31.6658C60.9227 31.7095 60.8727 31.7381 60.8176 31.7452C60.7626 31.7523 60.7069 31.7375 60.6627 31.704C60.5794 31.6412 60.5576 31.5533 60.5773 31.4553C60.595 31.3669 60.6493 31.3062 60.7379 31.2846C60.8265 31.2629 60.902 31.2865 60.9587 31.3591C60.9645 31.3667 60.9678 31.3685 60.9763 31.3618C61.021 31.3263 61.0675 31.291 61.1139 31.2567C61.1241 31.2492 61.1214 31.2446 61.1153 31.2374C61.0977 31.2157 61.0777 31.1961 61.0556 31.179C60.9243 31.0825 60.7803 31.0696 60.6304 31.1215C60.4693 31.1772 60.3697 31.3296 60.3697 31.5134H60.3689ZM60.4553 29.7925C60.4392 29.7938 60.4141 29.7947 60.3895 29.7984C60.2808 29.815 60.1893 29.8629 60.1231 29.9522C60.0444 30.0585 60.0236 30.1785 60.0499 30.3064C60.0604 30.3644 60.084 30.4192 60.1191 30.4666C60.1541 30.514 60.1996 30.5527 60.252 30.5797C60.3291 30.6198 60.4163 30.6364 60.5028 30.6276C60.5571 30.6247 60.6102 30.6106 60.6589 30.5862C60.7075 30.5619 60.7505 30.5278 60.7853 30.486C60.7932 30.4765 60.7934 30.4718 60.7831 30.4642C60.7384 30.4308 60.6936 30.3968 60.6498 30.3622C60.6395 30.3542 60.6348 30.3559 60.6277 30.3652C60.5932 30.4092 60.5426 30.4377 60.4871 30.4445C60.4316 30.4514 60.3756 30.4359 60.3315 30.4016C60.2505 30.3383 60.2293 30.2514 60.249 30.155C60.2667 30.0669 60.3204 30.0059 60.4095 29.9843C60.4985 29.9626 60.5735 29.9861 60.6301 30.0588C60.638 30.0688 60.6422 30.066 60.6498 30.0602C60.6945 30.026 60.7384 29.9917 60.7833 29.9585C60.7947 29.95 60.7935 29.945 60.7852 29.9352C60.7012 29.8363 60.5919 29.7948 60.456 29.7925H60.4553ZM59.495 31.6728C59.4916 31.6643 59.4892 31.6589 59.4873 31.6534C59.4249 31.4826 59.3627 31.3117 59.3007 31.1408C59.2995 31.1351 59.2962 31.1301 59.2915 31.1268C59.2867 31.1236 59.2809 31.1223 59.2752 31.1232C59.2175 31.1241 59.1596 31.1241 59.1019 31.1232C59.0859 31.1232 59.0847 31.1269 59.0898 31.1409C59.1805 31.3888 59.2706 31.6369 59.36 31.885C59.3642 31.8965 59.3699 31.8985 59.3806 31.8983C59.4552 31.8983 59.5308 31.8983 59.6058 31.8983C59.611 31.8992 59.6162 31.8981 59.6205 31.8951C59.6248 31.8922 59.6278 31.8877 59.6288 31.8827C59.6566 31.8042 59.6853 31.7261 59.7137 31.6479C59.775 31.4789 59.8364 31.3096 59.8979 31.14C59.9007 31.1323 59.908 31.123 59.8903 31.1232C59.8282 31.1232 59.7663 31.1232 59.7043 31.1232C59.7011 31.1227 59.6979 31.1236 59.6952 31.1254C59.6926 31.1273 59.6909 31.1302 59.6903 31.1333C59.6833 31.1536 59.6754 31.1736 59.6685 31.1937C59.6111 31.3526 59.5539 31.5111 59.495 31.6728ZM62.4112 31.0929C62.3724 31.0921 62.3337 31.0984 62.2971 31.1115C62.2047 31.1457 62.1446 31.2086 62.1349 31.3095C62.1253 31.4079 62.1647 31.4844 62.2491 31.5368C62.2851 31.5577 62.3228 31.5756 62.3617 31.5903C62.3954 31.6022 62.4277 31.6175 62.4582 31.6361C62.5121 31.6724 62.4898 31.7357 62.4472 31.7538C62.4154 31.7667 62.38 31.7676 62.3476 31.7565C62.3017 31.7407 62.2615 31.7116 62.2321 31.673C62.2233 31.6622 62.2191 31.6627 62.2097 31.6722C62.1745 31.7077 62.1387 31.7425 62.1022 31.7766C62.0928 31.7856 62.094 31.7915 62.1022 31.7991C62.2076 31.9107 62.3368 31.9507 62.4855 31.9185C62.6265 31.8879 62.7061 31.7598 62.6769 31.6187C62.6638 31.5554 62.6256 31.5099 62.5725 31.4755C62.5262 31.4485 62.4776 31.4258 62.4272 31.4078C62.3997 31.3981 62.3737 31.3844 62.3502 31.367C62.3418 31.3612 62.3352 31.3531 62.3311 31.3437C62.327 31.3343 62.3255 31.324 62.3268 31.3138C62.3282 31.3037 62.3323 31.2941 62.3387 31.2861C62.3451 31.2781 62.3536 31.272 62.3632 31.2685C62.3856 31.2582 62.4106 31.2551 62.4348 31.2595C62.4867 31.2683 62.5236 31.3005 62.5559 31.3392C62.5622 31.3466 62.5655 31.3484 62.5734 31.3406C62.6092 31.3057 62.6453 31.2711 62.6821 31.2371C62.6925 31.2276 62.6922 31.2222 62.683 31.2115C62.6485 31.1738 62.6065 31.1438 62.5597 31.1234C62.5129 31.103 62.4623 31.0926 62.4112 31.0929ZM57.2357 31.0929C57.1903 31.0925 57.1452 31.1013 57.1032 31.1187C56.922 31.1958 56.9243 31.4136 57.0322 31.5065C57.0762 31.5412 57.1255 31.5685 57.1783 31.5873C57.2137 31.5995 57.2478 31.6153 57.2801 31.6343C57.3027 31.6492 57.3182 31.6691 57.314 31.6983C57.3122 31.7123 57.3063 31.7255 57.2969 31.7361C57.2876 31.7468 57.2753 31.7544 57.2616 31.758C57.2371 31.7656 57.2109 31.7664 57.1859 31.7604C57.1314 31.748 57.0913 31.7141 57.0567 31.6728C57.0473 31.6618 57.0428 31.6634 57.0339 31.6728C56.9981 31.7086 56.9617 31.7439 56.9252 31.7789C56.918 31.7857 56.9174 31.7897 56.9252 31.7973C57.0313 31.9113 57.162 31.9538 57.3129 31.9186C57.4825 31.8789 57.5329 31.7259 57.4985 31.6042C57.4788 31.5344 57.4288 31.4911 57.3674 31.4585C57.3253 31.4361 57.2803 31.4203 57.2366 31.4016C57.213 31.3932 57.1912 31.3805 57.1721 31.3642C57.1649 31.3583 57.1593 31.3507 57.1559 31.342C57.1524 31.3333 57.1512 31.3239 57.1525 31.3147C57.1537 31.3054 57.1572 31.2966 57.1628 31.2892C57.1683 31.2817 57.1757 31.2757 57.1842 31.2719C57.2076 31.2595 57.2346 31.2555 57.2606 31.2605C57.3104 31.2688 57.347 31.2987 57.378 31.3362C57.3875 31.3475 57.3929 31.3485 57.4035 31.3377C57.4371 31.304 57.4715 31.271 57.5067 31.2389C57.5177 31.2289 57.5186 31.2231 57.5085 31.2122C57.4341 31.1324 57.3423 31.0956 57.2357 31.0928V31.0929ZM57.9367 29.8981C57.9367 29.8751 57.9367 29.8567 57.9367 29.8384C57.9367 29.8277 57.9352 29.8235 57.9225 29.8235C57.8658 29.8242 57.8093 29.8235 57.7526 29.8235C57.7412 29.8235 57.7377 29.8263 57.7377 29.8384C57.7377 30.087 57.7377 30.3356 57.7377 30.5841C57.7377 30.5967 57.7415 30.6001 57.7538 30.6C57.8087 30.6 57.8635 30.5991 57.9179 30.6C57.9328 30.6 57.9364 30.5959 57.9364 30.5813C57.9364 30.4389 57.9376 30.2964 57.9349 30.154C57.9341 30.1372 57.9374 30.1205 57.9445 30.1052C57.9516 30.09 57.9623 30.0767 57.9756 30.0664C57.9927 30.0515 58.0121 30.0395 58.033 30.0309C58.0846 30.0113 58.141 30.0082 58.1944 30.0221C58.2056 30.0247 58.2076 30.0221 58.2074 30.0119C58.2074 29.9522 58.2074 29.8925 58.2074 29.8329C58.2074 29.8212 58.2031 29.818 58.1925 29.8153C58.1399 29.803 58.0848 29.8078 58.0351 29.8288C57.9984 29.8453 57.9651 29.8688 57.9373 29.8979L57.9367 29.8981ZM58.76 31.1978C58.76 31.1757 58.759 31.1578 58.76 31.14C58.7612 31.1259 58.7557 31.1235 58.7429 31.1236C58.6881 31.1236 58.6332 31.1244 58.5788 31.1236C58.5657 31.1236 58.5619 31.1265 58.5619 31.1402C58.5619 31.3877 58.5619 31.6351 58.5619 31.8825C58.5619 31.8974 58.5664 31.8988 58.5789 31.8986C58.632 31.8979 58.6851 31.8976 58.7381 31.8986C58.7552 31.8986 58.7609 31.8958 58.7608 31.877C58.7597 31.7362 58.7618 31.5955 58.7591 31.4547C58.7582 31.4374 58.7616 31.42 58.769 31.4043C58.7764 31.3885 58.7876 31.3749 58.8016 31.3645C58.8108 31.3569 58.8204 31.35 58.8306 31.3438C58.8883 31.3095 58.9499 31.3081 59.0139 31.3207C59.0268 31.3233 59.0315 31.3226 59.0312 31.3075C59.0303 31.2497 59.0303 31.1918 59.0312 31.1341C59.0312 31.1206 59.0258 31.1169 59.0145 31.1144C58.9606 31.1024 58.9043 31.1082 58.854 31.1309C58.8191 31.1474 58.7875 31.17 58.7606 31.1976L58.76 31.1978ZM60.0078 31.5117C60.0078 31.6356 60.0078 31.7596 60.0078 31.8836C60.0078 31.8944 60.0096 31.8985 60.0227 31.8985C60.0799 31.8977 60.1371 31.8977 60.1943 31.8985C60.2068 31.8985 60.2092 31.8941 60.2092 31.8836C60.2092 31.6359 60.2092 31.388 60.2092 31.14C60.2092 31.1251 60.2044 31.1236 60.1919 31.1238C60.137 31.1238 60.0822 31.1245 60.0278 31.1238C60.0129 31.1238 60.009 31.1271 60.009 31.1423C60.0087 31.2649 60.0084 31.3882 60.0084 31.5116L60.0078 31.5117ZM59.9792 30.8729C59.9791 30.9066 59.9924 30.9389 60.0162 30.9628C60.0399 30.9867 60.0721 31.0002 60.1058 31.0004C60.1232 31.0017 60.1406 30.9993 60.1571 30.9936C60.1735 30.9878 60.1886 30.9787 60.2013 30.9669C60.2141 30.955 60.2243 30.9407 60.2313 30.9247C60.2383 30.9088 60.242 30.8915 60.242 30.8741C60.2421 30.8567 60.2386 30.8395 60.2317 30.8235C60.2248 30.8075 60.2147 30.793 60.202 30.7811C60.1893 30.7692 60.1743 30.76 60.1579 30.7541C60.1415 30.7482 60.1241 30.7457 60.1067 30.7469C60.0733 30.747 60.0412 30.7603 60.0174 30.7838C59.9937 30.8074 59.9802 30.8393 59.9798 30.8728L59.9792 30.8729ZM60.459 27.6826C60.4671 27.6861 60.4729 27.6826 60.4788 27.6802C60.5264 27.6676 60.5741 27.6596 60.6231 27.6724C60.639 27.6766 60.6407 27.6805 60.6301 27.6934C60.6215 27.7034 60.611 27.7115 60.5992 27.7173C60.5796 27.7289 60.561 27.7421 60.5436 27.7568C60.5322 27.7656 60.5275 27.7807 60.5087 27.7773C60.504 27.7764 60.4969 27.7773 60.4955 27.7835C60.4942 27.7898 60.5014 27.7901 60.5042 27.7935C60.5206 27.8126 60.5503 27.7992 60.5673 27.8195C60.5701 27.8229 60.5777 27.8231 60.5776 27.8311C60.5779 27.8348 60.5767 27.8384 60.5743 27.8412C60.5719 27.844 60.5685 27.8457 60.5649 27.846C60.5556 27.8477 60.5462 27.8484 60.5351 27.8499C60.5543 27.8562 60.5747 27.8582 60.5947 27.8556C60.6314 27.8536 60.635 27.8492 60.6341 27.8128C60.6333 27.8087 60.6333 27.8045 60.6341 27.8004C60.6389 27.7855 60.629 27.7688 60.6442 27.7556C60.6513 27.7504 60.6592 27.7463 60.6677 27.7437C60.6757 27.7407 60.6826 27.7346 60.6739 27.7267C60.6653 27.7188 60.6692 27.7137 60.6765 27.7078C60.6897 27.6984 60.6994 27.6848 60.7038 27.6691C60.706 27.659 60.7054 27.6484 60.6951 27.6447C60.6725 27.634 60.648 27.6281 60.6231 27.6274C60.5765 27.6308 60.531 27.6427 60.4888 27.6626C60.4779 27.6673 60.468 27.674 60.4596 27.6824L60.459 27.6826Z" fill="#FEFEFE"/>
+<path d="M58.8052 28.6631L58.7855 28.6752C58.7687 28.6855 58.7505 28.6932 58.7469 28.7174C58.7425 28.7302 58.736 28.7422 58.7277 28.7529C58.7596 28.7579 58.7623 28.7192 58.7885 28.7181C58.7886 28.7246 58.7869 28.7309 58.7836 28.7365C58.7804 28.742 58.7757 28.7466 58.77 28.7497C58.7443 28.7624 58.7242 28.7843 58.7141 28.8112C58.7067 28.8272 58.6974 28.8422 58.6864 28.8559C58.6956 28.86 58.6995 28.8539 58.7037 28.8497C58.734 28.8178 58.7672 28.7888 58.8029 28.7629C58.8457 28.7321 58.8825 28.6919 58.9383 28.6811C59.005 28.6683 59.0706 28.6501 59.1393 28.6543C59.1699 28.6568 59.2005 28.6501 59.2272 28.635C59.2431 28.6257 59.2612 28.6295 59.2767 28.6221C59.2999 28.6099 59.322 28.5957 59.3428 28.5797C59.3608 28.5661 59.3801 28.5541 59.4004 28.5439C59.4108 28.5391 59.4208 28.532 59.4338 28.5388C59.4408 28.5426 59.4455 28.5353 59.4505 28.5312C59.4755 28.5101 59.5 28.4881 59.5335 28.481C59.5352 28.4804 59.537 28.4799 59.5388 28.4796C59.5498 28.4796 59.5649 28.4714 59.5705 28.4859C59.5752 28.4978 59.5586 28.4992 59.5523 28.5059C59.5461 28.5126 59.5388 28.5168 59.5329 28.5238C59.5546 28.5238 59.5658 28.5036 59.5847 28.498C59.5856 28.5012 59.5853 28.5047 59.5839 28.5078C59.5826 28.5109 59.5802 28.5134 59.5772 28.515C59.5149 28.5622 59.4587 28.617 59.41 28.6782C59.3461 28.7577 59.2634 28.809 59.1726 28.8506C59.1019 28.8829 59.0316 28.9168 58.9617 28.951C58.9397 28.9616 58.9186 28.9739 58.8986 28.9879C58.886 28.9966 58.8708 29.001 58.8555 29.0003C58.2326 29.0003 57.6097 29.0003 56.9866 29.0003C56.969 29.0003 56.9641 28.9967 56.9641 28.9781C56.9641 28.2936 56.9641 27.6091 56.9641 26.9247C56.9641 26.9074 56.9672 26.9019 56.9862 26.9019C57.8719 26.9019 58.7578 26.9019 59.6438 26.9019H59.6624C59.6223 26.9201 59.5825 26.9365 59.5431 26.954C59.4596 26.991 59.4077 27.0561 59.3744 27.1388C59.3728 27.1444 59.3694 27.1494 59.3647 27.1529C59.3189 27.1828 59.2888 27.2263 59.2621 27.2723C59.2414 27.3083 59.2206 27.3444 59.2006 27.381C59.1741 27.4298 59.1783 27.4811 59.19 27.5324C59.2059 27.6014 59.2142 27.672 59.2348 27.74C59.2369 27.7505 59.2378 27.7613 59.2376 27.7721C59.2411 27.7954 59.2487 27.8179 59.26 27.8386C59.2673 27.8505 59.2731 27.8633 59.2772 27.8768C59.2794 27.8841 59.2838 27.8907 59.2897 27.8957C59.3153 27.9224 59.3384 27.9513 59.3587 27.9822C59.3635 27.9904 59.3737 27.9995 59.366 28.0094C59.3584 28.0192 59.3473 28.0137 59.3373 28.0123C59.3089 28.0072 59.2828 27.9934 59.2627 27.9727C59.2461 27.9578 59.2302 27.9416 59.213 27.9252C59.2078 27.9346 59.2139 27.939 59.2178 27.9433C59.2297 27.9566 59.2423 27.9694 59.2539 27.983C59.2575 27.9861 59.2601 27.9904 59.2611 27.9952C59.262 27.9999 59.2615 28.0048 59.2594 28.0092C59.2537 28.0191 59.2436 28.0183 59.2337 28.0165H59.2303C59.2035 28.012 59.2014 28.0137 59.1987 28.0422C59.1804 28.0351 59.1609 28.0314 59.1413 28.0311C59.1358 28.031 59.1305 28.0295 59.1258 28.0267C59.1211 28.0239 59.1172 28.0199 59.1146 28.0152C59.1107 28.0082 59.1052 28.0022 59.0985 27.9978C59.0918 27.9934 59.0842 27.9906 59.0762 27.9897C58.9816 27.968 58.8851 27.9554 58.7881 27.9522C58.7493 27.9495 58.7104 27.9567 58.6751 27.9733C58.6399 27.9898 58.6095 28.015 58.5867 28.0466C58.5826 28.0522 58.5745 28.0581 58.58 28.0648C58.5855 28.0716 58.5934 28.0675 58.5999 28.0638C58.6825 28.0159 58.7756 28.0041 58.8668 27.9864C58.8809 27.984 58.8952 27.9833 58.9095 27.9843C58.9096 27.9854 58.9096 27.9865 58.9095 27.9876C58.8729 27.9926 58.8369 28.0012 58.8021 28.0135C58.7614 28.0268 58.7193 28.0347 58.6777 28.0449C58.6608 28.0488 58.6445 28.0549 58.6292 28.0631C58.6655 28.0622 58.7017 28.0634 58.7378 28.0666C58.834 28.0781 58.9284 28.0956 59.014 28.1446C59.026 28.1513 59.037 28.1594 59.047 28.1688C59.0579 28.1798 59.0715 28.1878 59.0864 28.1919C59.1013 28.1961 59.117 28.1964 59.132 28.1927C59.1595 28.188 59.1867 28.1818 59.2135 28.1739C59.2499 28.1644 59.2836 28.1465 59.3119 28.1217C59.3147 28.1188 59.3176 28.1153 59.3225 28.1182C59.3274 28.1212 59.3253 28.1257 59.3241 28.1293C59.3158 28.157 59.3128 28.1864 59.2951 28.2112C59.2865 28.2231 59.2928 28.2344 59.31 28.241C59.2964 28.2477 59.281 28.2474 59.27 28.2568C59.2667 28.2596 59.2551 28.2616 59.2655 28.2701C59.267 28.2711 59.2672 28.2738 59.2655 28.274C59.2496 28.2754 59.2506 28.2878 59.2473 28.299C59.2454 28.3059 59.2324 28.3045 59.2281 28.3139C59.2346 28.3218 59.2442 28.3154 59.254 28.3188C59.221 28.3359 59.1868 28.3508 59.1519 28.3636C59.1455 28.3655 59.1395 28.3676 59.1414 28.3751C59.1434 28.3825 59.1505 28.3764 59.1553 28.3784C59.1543 28.3846 59.148 28.3851 59.144 28.3875C59.1044 28.4095 59.0646 28.4309 59.0254 28.4532C59.0123 28.4607 58.9956 28.4649 58.9906 28.4819C58.9891 28.486 58.9847 28.485 58.9812 28.4849C58.9663 28.4849 58.9663 28.4981 58.9663 28.5048C58.9681 28.5162 58.9784 28.5092 58.9853 28.508C58.9956 28.5063 59.0057 28.4978 59.0194 28.5093C58.9896 28.5129 58.9715 28.5329 58.9502 28.5503C59.0163 28.5423 59.0824 28.5448 59.1456 28.5268C59.227 28.5036 59.2948 28.4558 59.3555 28.3989C59.3583 28.3959 59.3613 28.3929 59.3644 28.3901C59.3707 28.3852 59.3769 28.3721 59.3826 28.3763C59.391 28.3828 59.3826 28.3936 59.3784 28.4018C59.3647 28.4324 59.3419 28.4582 59.3131 28.4755C59.2945 28.4872 59.2767 28.5005 59.2593 28.5135C59.2187 28.5433 59.1716 28.552 59.125 28.5609C59.0525 28.5746 58.9787 28.58 58.9073 28.6C58.8645 28.6109 58.8241 28.6295 58.7879 28.6547C58.7773 28.6625 58.7624 28.6588 58.7536 28.6697C58.7509 28.6731 58.7439 28.675 58.7474 28.6805C58.7508 28.6861 58.7562 28.6835 58.7605 28.6805C58.7732 28.6718 58.787 28.6646 58.8014 28.6591L58.8052 28.6631ZM58.6492 28.4068C58.6555 28.4095 58.6622 28.4109 58.669 28.4109C58.6758 28.4109 58.6825 28.4095 58.6887 28.4068C58.7163 28.3973 58.7433 28.3845 58.7739 28.3873C58.7769 28.3871 58.7798 28.3865 58.7826 28.3854C58.8161 28.3779 58.85 28.3705 58.8834 28.3627C58.9391 28.3495 58.9931 28.3301 59.0445 28.3048C58.9445 28.2291 58.8269 28.2025 58.7111 28.1688C58.7143 28.1655 58.7207 28.1676 58.7207 28.1627C58.7207 28.1578 58.7153 28.1569 58.7119 28.156C58.7014 28.1533 58.6908 28.1516 58.6805 28.1493C58.6771 28.1493 58.6704 28.1493 58.6713 28.1461C58.6768 28.1288 58.6609 28.1327 58.6549 28.1312C58.6325 28.1248 58.6094 28.1206 58.5845 28.1153C58.5966 28.109 58.6064 28.1033 58.6103 28.0917C58.6124 28.0857 58.6167 28.079 58.6103 28.0738C58.6039 28.0686 58.5993 28.0738 58.594 28.0765C58.5645 28.0939 58.5404 28.1191 58.5244 28.1494C58.5169 28.1624 58.5011 28.1792 58.5084 28.1901C58.5157 28.201 58.5383 28.1991 58.5553 28.1989C58.5663 28.197 58.5776 28.1974 58.5885 28.2001C58.5825 28.2058 58.5748 28.2095 58.5666 28.2107C58.5554 28.212 58.5444 28.2148 58.5339 28.2191C58.5242 28.2247 58.5181 28.2311 58.5312 28.2402C58.5238 28.2452 58.5145 28.2461 58.5107 28.2552C58.5142 28.2579 58.5184 28.2598 58.5228 28.2606C58.5272 28.2614 58.5317 28.2612 58.536 28.2599C58.5415 28.2578 58.5476 28.2578 58.5531 28.2598C58.5586 28.2619 58.5631 28.2659 58.5658 28.2711C58.5301 28.286 58.5221 28.3281 58.4913 28.3476C58.4906 28.3482 58.49 28.3489 58.4897 28.3498C58.4893 28.3506 58.4891 28.3515 58.4892 28.3524C58.4907 28.3625 58.4837 28.3673 58.4771 28.3722C58.4543 28.3904 58.4324 28.4106 58.4085 28.4267C58.3846 28.4428 58.381 28.4781 58.3548 28.4938C58.3538 28.4943 58.353 28.4949 58.3523 28.4957C58.3516 28.4965 58.3511 28.4974 58.3508 28.4984C58.3504 28.4994 58.3503 28.5005 58.3504 28.5015C58.3505 28.5026 58.3509 28.5036 58.3514 28.5045C58.3548 28.5095 58.359 28.5057 58.3626 28.5045C58.3708 28.5012 58.3789 28.4975 58.3867 28.4932C58.4261 28.4684 58.4671 28.4462 58.5095 28.4268C58.5573 28.4065 58.6031 28.3849 58.6567 28.396C58.6576 28.3964 58.6584 28.397 58.6591 28.3977C58.6586 28.4037 58.6504 28.4003 58.6492 28.4068ZM58.7034 27.8903C58.6844 27.882 58.6638 27.8782 58.6431 27.8792C58.6224 27.8802 58.6022 27.8859 58.584 27.8959C58.51 27.9383 58.4432 27.9923 58.3863 28.0559C58.3496 28.0976 58.3072 28.1338 58.2604 28.1636C58.2511 28.1688 58.2437 28.1768 58.2391 28.1864C58.2076 28.2479 58.1709 28.3066 58.1293 28.3618C58.1262 28.366 58.1197 28.3693 58.122 28.3767C58.1288 28.3776 58.1308 28.3718 58.1339 28.3682C58.1739 28.3235 58.2141 28.2801 58.2576 28.2392C58.3063 28.1928 58.3594 28.151 58.416 28.1145C58.4221 28.1105 58.4268 28.1088 58.4322 28.1145C58.4376 28.1202 58.4286 28.1221 58.4274 28.1261C58.4262 28.1302 58.4239 28.1311 58.4228 28.1338C58.4218 28.1364 58.4149 28.144 58.4195 28.1478C58.4242 28.1515 58.4313 28.1461 58.4356 28.1414C58.4376 28.1391 58.4385 28.1358 58.4407 28.1339C58.4489 28.1264 58.4474 28.1115 58.4547 28.1068C58.4826 28.0883 58.4971 28.0605 58.5116 28.0322C58.5228 28.0087 58.5387 27.9877 58.5582 27.9704C58.587 27.9464 58.6192 27.9269 58.6468 27.8999C58.6497 27.9057 58.6491 27.9158 58.6568 27.9115C58.6713 27.9039 58.6893 27.9042 58.7034 27.8903ZM58.6658 28.6186C58.6394 28.6061 58.6154 28.6143 58.593 28.6089C58.5829 28.6069 58.5724 28.6082 58.5632 28.6127C58.5463 28.6202 58.5285 28.6256 58.5102 28.6288C58.458 28.6372 58.4108 28.6646 58.3775 28.7056C58.3734 28.7102 58.3496 28.7151 58.3724 28.7278C58.3724 28.7278 58.3708 28.7321 58.3705 28.7344C58.3683 28.7498 58.3622 28.7644 58.3529 28.7769C58.3414 28.7927 58.3293 28.8082 58.3169 28.8236C58.3126 28.8291 58.3102 28.8345 58.3169 28.8385C58.3236 28.8425 58.3241 28.8351 58.3271 28.8321C58.3454 28.8142 58.3582 28.7873 58.3906 28.7911C58.3927 28.7911 58.3954 28.7878 58.3975 28.7857C58.4195 28.7605 58.4472 28.741 58.4783 28.7287C58.5456 28.7043 58.5978 28.6519 58.6658 28.6186ZM58.8096 28.4441C58.7897 28.4292 58.7706 28.4244 58.7499 28.4392C58.7436 28.4424 58.7369 28.4447 58.7299 28.4459C58.7242 28.4475 58.719 28.4507 58.715 28.455C58.7125 28.4582 58.7086 28.4619 58.7113 28.4659C58.714 28.4699 58.7177 28.4681 58.721 28.4677C58.7442 28.4641 58.7675 28.4607 58.7906 28.4564C58.7983 28.4549 58.8051 28.4505 58.8096 28.4441ZM58.6343 28.7116C58.6343 28.7093 58.6316 28.7083 58.6285 28.7078C58.625 28.7074 58.6214 28.7079 58.6181 28.7092C58.6148 28.7105 58.6118 28.7126 58.6095 28.7153C58.5966 28.7281 58.5832 28.7405 58.5702 28.7535C58.5669 28.7568 58.5587 28.7596 58.5638 28.7654C58.5648 28.7665 58.5661 28.7673 58.5675 28.7679C58.5689 28.7685 58.5704 28.7688 58.5719 28.7688C58.5734 28.7688 58.5749 28.7685 58.5763 28.7679C58.5777 28.7673 58.579 28.7665 58.58 28.7654C58.5895 28.7565 58.6007 28.7497 58.613 28.7454C58.6273 28.739 58.6288 28.725 58.6343 28.7116Z" fill="#273375"/>
+<path d="M60.7511 28.2247C60.7661 28.2152 60.779 28.2085 60.7902 28.2C60.8113 28.1842 60.8138 28.1687 60.8007 28.1457L60.7969 28.1396C60.7784 28.1054 60.7747 28.0786 60.8278 28.0678C60.8324 28.0668 60.8371 28.0656 60.8415 28.0642C60.8814 28.0525 60.8949 28.0259 60.8779 27.9879C60.8579 27.9493 60.8345 27.9127 60.808 27.8783C60.7916 27.8541 60.7752 27.8301 60.7604 27.8049C60.7428 27.7769 60.7368 27.7431 60.7437 27.7108C60.757 27.6486 60.7449 27.5874 60.7288 27.5274C60.7162 27.4817 60.7016 27.4363 60.6875 27.391C60.6841 27.3821 60.68 27.3735 60.6751 27.3653C60.6728 27.3624 60.6712 27.3589 60.6704 27.3553C60.6696 27.3517 60.6695 27.3479 60.6703 27.3442C60.6711 27.3406 60.6726 27.3371 60.6748 27.3341C60.677 27.3311 60.6799 27.3286 60.6831 27.3268C60.6934 27.3188 60.7039 27.3107 60.713 27.3018C60.7174 27.2976 60.7209 27.2925 60.7232 27.2868C60.7254 27.2811 60.7263 27.275 60.7258 27.2689C60.7253 27.2628 60.7235 27.2569 60.7204 27.2516C60.7173 27.2463 60.7131 27.2418 60.708 27.2384C60.7062 27.2366 60.7039 27.2353 60.7015 27.2345C60.699 27.2338 60.6964 27.2337 60.6939 27.2343C60.6913 27.2348 60.689 27.2359 60.687 27.2376C60.685 27.2392 60.6835 27.2414 60.6825 27.2438C60.6788 27.2525 60.6738 27.2607 60.6676 27.2679C60.6655 27.2705 60.6624 27.2721 60.6591 27.2724C60.6558 27.2727 60.6525 27.2717 60.6499 27.2696C60.6451 27.2654 60.6499 27.2599 60.6526 27.2554C60.6642 27.239 60.6642 27.2391 60.6445 27.2353C60.64 27.235 60.6357 27.2339 60.6317 27.2319C60.6277 27.2299 60.6241 27.2272 60.6212 27.2238C60.5884 27.181 60.5444 27.1481 60.4942 27.1286C60.4919 27.1277 60.4898 27.1266 60.4877 27.1253C60.4877 27.1253 60.4877 27.1243 60.4877 27.1221C60.4977 27.1229 60.5073 27.1237 60.5176 27.1247C60.5336 27.1267 60.5497 27.127 60.5658 27.1256C60.5789 27.1256 60.5918 27.1212 60.6022 27.1131C60.6126 27.105 60.62 27.0937 60.6233 27.0809C60.6373 27.0339 60.6299 27.0063 60.5902 26.9734C60.5596 26.9478 60.5229 26.9332 60.4889 26.9137L60.4731 26.9049C60.4793 26.9016 60.4864 26.9005 60.4933 26.9019C61.2191 26.9019 61.945 26.9019 62.6709 26.9019C62.6874 26.9019 62.6928 26.905 62.6928 26.9229C62.6928 27.609 62.6928 28.2947 62.6928 28.9799C62.6928 28.9967 62.6879 29.0002 62.6719 29.0002C61.9549 28.9998 61.2384 28.9996 60.5225 28.9996C60.512 28.9996 60.5017 28.9968 60.4927 28.9915C60.4118 28.9468 60.3247 28.916 60.2378 28.8855C60.2329 28.8833 60.228 28.8816 60.2229 28.8803C60.1899 28.8752 60.1794 28.8516 60.1772 28.823C60.1665 28.6907 60.2114 28.5811 60.3144 28.4969C60.3389 28.4794 60.3691 28.4717 60.399 28.4755C60.4551 28.4787 60.5095 28.4931 60.5649 28.5005C60.5798 28.5025 60.5936 28.5077 60.608 28.5105C60.6273 28.5147 60.6473 28.5147 60.6666 28.5106C60.6859 28.5065 60.7042 28.4983 60.7201 28.4866C60.7383 28.4713 60.7511 28.4506 60.7566 28.4275C60.7621 28.4044 60.76 28.3801 60.7507 28.3582C60.7469 28.3521 60.7455 28.3447 60.7469 28.3376C60.7482 28.3304 60.7522 28.3241 60.758 28.3197C60.7668 28.312 60.7762 28.3048 60.7853 28.2968C60.7903 28.2925 60.7937 28.2866 60.7947 28.2802C60.7958 28.2737 60.7945 28.267 60.7911 28.2614C60.7882 28.2524 60.783 28.2443 60.776 28.2378C60.769 28.2314 60.7604 28.2269 60.7511 28.2247Z" fill="#E20613"/>
+<path d="M61.3633 30.2524C61.2794 30.2524 61.1952 30.2524 61.1113 30.2524C61.0964 30.2524 61.095 30.2554 61.0974 30.2693C61.1153 30.3788 61.1943 30.4492 61.3062 30.4537C61.3799 30.4565 61.4467 30.4398 61.5001 30.3853C61.5219 30.3631 61.5219 30.363 61.5463 30.3828C61.5796 30.4098 61.6126 30.4375 61.6466 30.4635C61.6588 30.4729 61.6563 30.4784 61.6481 30.4886C61.5841 30.5639 61.4941 30.6124 61.396 30.6244C61.2956 30.6385 61.1973 30.6291 61.1056 30.5818C60.9882 30.5212 60.9212 30.4226 60.8989 30.2944C60.8767 30.1832 60.8971 30.0678 60.956 29.971C61.017 29.8714 61.1086 29.8165 61.2231 29.7992C61.3073 29.7865 61.3899 29.7923 61.4667 29.8323C61.5663 29.8842 61.6211 29.9688 61.6384 30.0785C61.6461 30.1311 61.645 30.1846 61.6351 30.2368C61.633 30.2484 61.6285 30.2532 61.6154 30.253C61.5314 30.2516 61.4473 30.2524 61.3633 30.2524ZM61.2774 30.0926C61.3304 30.0926 61.3835 30.0926 61.4364 30.0926C61.4467 30.0926 61.4495 30.0903 61.4475 30.0794C61.4419 30.0468 61.4248 30.0174 61.3991 29.9965C61.3589 29.9637 61.3114 29.9565 61.2613 29.9594C61.2272 29.961 61.1944 29.973 61.1673 29.994C61.1403 30.0149 61.1204 30.0436 61.1104 30.0763C61.1066 30.0881 61.1074 30.093 61.1219 30.0927C61.1738 30.0917 61.2255 30.0921 61.2774 30.0921V30.0926Z" fill="#273375"/>
+<path d="M61.6942 31.5511C61.6095 31.5511 61.5249 31.5511 61.4406 31.5511C61.4269 31.5511 61.4245 31.5538 61.4266 31.5678C61.4458 31.6912 61.5396 31.7596 61.67 31.7531C61.7397 31.7495 61.7998 31.7247 61.8439 31.6682C61.8481 31.6628 61.8509 31.6619 61.8566 31.6665C61.8981 31.7005 61.9397 31.7343 61.9814 31.7678C61.991 31.7754 61.9841 31.7799 61.9798 31.785C61.9273 31.8499 61.8545 31.8954 61.7731 31.9141C61.6396 31.9458 61.511 31.9343 61.3944 31.8572C61.2918 31.7887 61.2385 31.6894 61.2243 31.5694C61.2102 31.4707 61.2289 31.3701 61.2776 31.2831C61.3411 31.1714 61.4399 31.1124 61.5659 31.0968C61.6423 31.0849 61.7205 31.0961 61.7904 31.1292C61.8925 31.18 61.9486 31.2649 61.967 31.3758C61.9749 31.4278 61.9741 31.4806 61.9647 31.5323C61.9623 31.5463 61.9582 31.5518 61.9424 31.5517C61.8599 31.5501 61.7769 31.5511 61.6942 31.5511ZM61.4361 31.3931C61.5474 31.3931 61.6575 31.3931 61.7676 31.3931C61.7792 31.3931 61.7781 31.3878 61.7767 31.3799C61.7735 31.3598 61.7658 31.3407 61.7543 31.324C61.7427 31.3073 61.7276 31.2933 61.71 31.2832C61.6754 31.264 61.636 31.2553 61.5966 31.2582C61.5584 31.2588 61.5216 31.2726 61.4924 31.2971C61.4632 31.3217 61.4433 31.3556 61.4361 31.3931Z" fill="#E20714"/>
+<path d="M58.1284 31.5511C58.0448 31.5511 57.9615 31.5511 57.8779 31.5511C57.8614 31.5511 57.8603 31.5563 57.863 31.5703C57.8851 31.6992 57.9841 31.7589 58.1063 31.7528C58.1759 31.749 58.2361 31.7241 58.2801 31.6674C58.2847 31.6613 58.2878 31.6625 58.2927 31.6665C58.3339 31.7003 58.3748 31.734 58.4164 31.7668C58.4268 31.775 58.42 31.7796 58.4155 31.7851C58.3711 31.8403 58.3116 31.8813 58.2443 31.9031C58.0996 31.9489 57.9591 31.9407 57.8298 31.8564C57.7295 31.7911 57.6772 31.6924 57.6615 31.5762C57.6466 31.4806 57.6622 31.3828 57.7063 31.2967C57.7683 31.1773 57.869 31.1138 58.0007 31.0969C58.0777 31.0845 58.1567 31.0958 58.2271 31.1293C58.3315 31.1818 58.3874 31.2695 58.4043 31.3829C58.4105 31.4314 58.4097 31.4806 58.4018 31.5289C58.3992 31.5468 58.3922 31.5514 58.3746 31.5511C58.2929 31.5501 58.2107 31.5511 58.1284 31.5511ZM58.0438 31.3932C58.0961 31.3932 58.1482 31.3932 58.2009 31.3932C58.2125 31.3932 58.2149 31.3905 58.2128 31.379C58.2075 31.3457 58.1898 31.3157 58.1634 31.2949C58.1263 31.2673 58.0803 31.2542 58.0342 31.258C57.9985 31.2584 57.9639 31.2702 57.9353 31.2916C57.9068 31.3131 57.8858 31.3431 57.8756 31.3773C57.8718 31.3891 57.8721 31.3936 57.8867 31.3933C57.9391 31.3927 57.9914 31.3932 58.0438 31.3932Z" fill="#E20714"/>
+<path d="M56.9641 30.0605C56.9641 29.8876 56.9641 29.7148 56.9641 29.5419C56.9641 29.5262 56.9676 29.5223 56.9834 29.5223C57.1801 29.5229 57.3768 29.5229 57.5735 29.5223C57.5884 29.5223 57.5921 29.5262 57.592 29.541C57.5909 29.5953 57.5911 29.6494 57.592 29.7037C57.592 29.7179 57.5881 29.7216 57.5741 29.7215C57.4501 29.7215 57.3262 29.7215 57.2023 29.7215C57.1873 29.7215 57.1821 29.7249 57.1824 29.741C57.1835 29.8053 57.1833 29.8697 57.1824 29.934C57.1824 29.9489 57.1872 29.9525 57.2015 29.9524C57.3059 29.9524 57.409 29.9524 57.5126 29.9524C57.5276 29.9524 57.5304 29.9561 57.5301 29.9699C57.5293 30.0248 57.5293 30.0796 57.5301 30.134C57.5301 30.1479 57.5259 30.1504 57.5131 30.1504C57.4087 30.1504 57.3043 30.1504 57.1999 30.1504C57.1858 30.1504 57.182 30.154 57.1821 30.1682C57.1821 30.3058 57.1821 30.4435 57.1821 30.5812C57.1821 30.597 57.1782 30.601 57.1624 30.6007C57.1028 30.5997 57.0421 30.5998 56.9818 30.6007C56.9669 30.6007 56.963 30.5971 56.963 30.5821C56.9642 30.4073 56.9641 30.2338 56.9641 30.0605Z" fill="#273375"/>
+<path d="M58.7698 30.5281C58.7231 30.5823 58.6577 30.617 58.5865 30.6253C58.4926 30.6362 58.4056 30.6194 58.3436 30.5406C58.253 30.4256 58.2924 30.2638 58.425 30.1949C58.4755 30.1708 58.5296 30.1551 58.5852 30.1485C58.6428 30.1392 58.7002 30.1289 58.7579 30.12C58.7682 30.1184 58.7698 30.1143 58.77 30.1051C58.7722 30.0144 58.706 29.9559 58.6098 29.9644C58.5811 29.966 58.5533 29.9743 58.5283 29.9885C58.5034 30.0027 58.4821 30.0225 58.4662 30.0463C58.4599 30.0553 58.4563 30.0568 58.4472 30.0496C58.4064 30.0177 58.3653 29.9862 58.3239 29.955C58.3154 29.9486 58.314 29.9446 58.3213 29.9356C58.3543 29.8947 58.3954 29.861 58.4421 29.8366C58.4887 29.8123 58.5399 29.7979 58.5923 29.7943C58.6607 29.7862 58.73 29.7958 58.7935 29.8221C58.9065 29.8714 58.9633 29.9609 58.9657 30.0814C58.9691 30.2481 58.9657 30.4152 58.9669 30.5821C58.9669 30.5956 58.9634 30.5989 58.9502 30.5988C58.8947 30.5979 58.8392 30.5988 58.7839 30.5988C58.7731 30.5988 58.7689 30.5965 58.7689 30.5851C58.7706 30.5678 58.7698 30.5499 58.7698 30.5281ZM58.7698 30.3133C58.7698 30.3027 58.7691 30.2918 58.7698 30.2812C58.7712 30.2684 58.767 30.2651 58.7542 30.2674C58.7121 30.2753 58.6699 30.2823 58.6277 30.2891C58.594 30.2924 58.561 30.3014 58.5303 30.3157C58.516 30.3227 58.5042 30.3339 58.4967 30.3479C58.4891 30.3619 58.4861 30.3779 58.4881 30.3937C58.4895 30.4102 58.4965 30.4257 58.5078 30.4377C58.5192 30.4498 58.5343 30.4576 58.5507 30.4599C58.5818 30.4662 58.6139 30.4648 58.6443 30.4561C58.6747 30.4473 58.7026 30.4313 58.7255 30.4095C58.7545 30.3841 58.7806 30.3569 58.7698 30.3133Z" fill="#273375"/>
+<path d="M59.3667 29.8806C59.4046 29.8436 59.4515 29.8172 59.5028 29.8041C59.6157 29.7786 59.72 29.7931 59.805 29.8787C59.8584 29.9327 59.8806 30.0013 59.8894 30.0751C59.8937 30.1274 59.8949 30.1799 59.893 30.2323C59.893 30.3485 59.893 30.4648 59.893 30.581C59.893 30.595 59.8896 30.5989 59.8754 30.5988C59.8211 30.5979 59.767 30.5979 59.7127 30.5988C59.6978 30.5988 59.6949 30.5949 59.6949 30.581C59.6949 30.436 59.6949 30.2912 59.6949 30.1464C59.6953 30.1219 59.6916 30.0975 59.6841 30.0742C59.6599 30.0028 59.592 29.9649 59.5134 29.9777C59.4469 29.9887 59.4029 30.0295 59.3693 30.0845C59.3661 30.0915 59.3649 30.0994 59.3661 30.107C59.3661 30.2645 59.3661 30.4219 59.3661 30.5792C59.3661 30.5953 59.3619 30.5991 59.3464 30.5988C59.2909 30.5977 59.2354 30.5988 59.1801 30.5988C59.1695 30.5988 59.1652 30.5968 59.1652 30.5852C59.1652 30.3354 59.1652 30.0856 59.1652 29.8357C59.1652 29.826 59.1671 29.8224 59.1777 29.8226C59.2362 29.8226 59.2945 29.8226 59.3529 29.8226C59.362 29.8226 59.3658 29.8248 59.3653 29.8345C59.3661 29.8485 59.3667 29.8621 59.3667 29.8806Z" fill="#273375"/>
+<path d="M60.3687 31.5134C60.3687 31.3296 60.4683 31.1775 60.6298 31.1216C60.7797 31.0696 60.9238 31.0825 61.0551 31.179C61.0771 31.1961 61.0971 31.2157 61.1147 31.2374C61.1208 31.2446 61.1235 31.2492 61.1134 31.2567C61.067 31.291 61.0212 31.3263 60.9757 31.3618C60.9672 31.3685 60.9639 31.3668 60.9581 31.3591C60.901 31.2861 60.8255 31.2621 60.7374 31.2846C60.6492 31.3071 60.5945 31.3669 60.5767 31.4554C60.5571 31.5533 60.5788 31.6412 60.6622 31.704C60.7064 31.7375 60.7621 31.7524 60.8171 31.7452C60.8721 31.7381 60.9222 31.7095 60.9563 31.6658C60.9639 31.6564 60.9681 31.6546 60.9781 31.6625C61.0222 31.6971 61.0666 31.7312 61.1114 31.7647C61.1213 31.772 61.1225 31.7762 61.1143 31.786C61.0814 31.8258 61.0409 31.8588 60.9952 31.8829C60.9495 31.907 60.8995 31.9218 60.848 31.9265C60.7453 31.938 60.647 31.9225 60.5579 31.8669C60.4476 31.7983 60.389 31.6962 60.3717 31.5686C60.3691 31.5503 60.3681 31.5318 60.3687 31.5134Z" fill="#E20714"/>
+<path d="M60.4551 29.7925C60.591 29.7948 60.7003 29.8363 60.7843 29.9353C60.7926 29.9452 60.7938 29.9503 60.7823 29.9586C60.7376 29.9919 60.6928 30.0262 60.6488 30.0603C60.6412 30.0662 60.6371 30.069 60.6292 30.059C60.5722 29.9859 60.497 29.9622 60.4086 29.9844C60.3201 30.0066 60.2658 30.067 60.2481 30.1552C60.2284 30.2515 60.2496 30.3385 60.3305 30.4017C60.3747 30.4361 60.4307 30.4516 60.4863 30.4447C60.5418 30.4379 60.5924 30.4093 60.6269 30.3652C60.6344 30.356 60.6387 30.3542 60.649 30.3622C60.6928 30.3968 60.7374 30.4308 60.7823 30.4642C60.7926 30.4718 60.7925 30.4765 60.7846 30.486C60.7497 30.5278 60.7067 30.5619 60.6581 30.5862C60.6095 30.6106 60.5564 30.6247 60.5021 30.6276C60.4156 30.6364 60.3284 30.6198 60.2512 30.5797C60.1988 30.5527 60.1534 30.514 60.1183 30.4666C60.0833 30.4192 60.0596 30.3644 60.0491 30.3064C60.0229 30.1785 60.0436 30.0585 60.1223 29.9522C60.1886 29.8627 60.28 29.815 60.3887 29.7984C60.4139 29.7947 60.439 29.7938 60.4551 29.7925Z" fill="#273375"/>
+<path d="M59.4942 31.6728C59.5528 31.5111 59.6103 31.3526 59.6677 31.1939C59.675 31.1737 59.6826 31.1538 59.6895 31.1335C59.69 31.1303 59.6918 31.1275 59.6944 31.1256C59.697 31.1237 59.7003 31.1229 59.7035 31.1233C59.7655 31.1233 59.8274 31.1233 59.8895 31.1233C59.9072 31.1233 59.8999 31.1324 59.8971 31.1402C59.8356 31.3092 59.7742 31.4785 59.7129 31.6481C59.6845 31.7262 59.6557 31.8044 59.628 31.8828C59.627 31.8879 59.624 31.8924 59.6197 31.8953C59.6154 31.8982 59.6101 31.8994 59.605 31.8985C59.5305 31.8985 59.4548 31.8985 59.3798 31.8985C59.3691 31.8985 59.3634 31.8967 59.3592 31.8852C59.2697 31.6366 59.1797 31.3886 59.089 31.1411C59.0839 31.1271 59.0851 31.1232 59.1011 31.1233C59.1588 31.1242 59.2166 31.1242 59.2744 31.1233C59.2801 31.1224 59.2859 31.1237 59.2907 31.127C59.2954 31.1303 59.2987 31.1353 59.2999 31.1409C59.3616 31.312 59.4238 31.4828 59.4865 31.6536C59.4884 31.6589 59.4908 31.6643 59.4942 31.6728Z" fill="#E20714"/>
+<path d="M62.4103 31.0929C62.4614 31.0927 62.512 31.1032 62.5587 31.1238C62.6055 31.1443 62.6475 31.1745 62.6819 31.2122C62.6911 31.2224 62.6914 31.2283 62.681 31.2379C62.6442 31.2719 62.6081 31.3065 62.5723 31.3414C62.5644 31.3492 62.5611 31.3474 62.5548 31.3399C62.5225 31.3013 62.4856 31.2691 62.4337 31.2603C62.4095 31.2559 62.3845 31.259 62.3621 31.2692C62.3525 31.2727 62.344 31.2788 62.3376 31.2868C62.3312 31.2948 62.3271 31.3044 62.3257 31.3146C62.3244 31.3247 62.3259 31.3351 62.33 31.3444C62.3341 31.3538 62.3407 31.3619 62.3491 31.3678C62.3726 31.3851 62.3986 31.3989 62.4261 31.4085C62.4765 31.4266 62.5251 31.4492 62.5714 31.4762C62.6245 31.5107 62.6627 31.5562 62.6758 31.6194C62.7056 31.7605 62.6254 31.8886 62.4844 31.9192C62.3353 31.9514 62.2066 31.9115 62.1011 31.7999C62.093 31.7915 62.0919 31.7863 62.1011 31.7774C62.1375 31.7431 62.1733 31.7083 62.2086 31.673C62.218 31.6634 62.2222 31.663 62.231 31.6737C62.2604 31.7124 62.3006 31.7414 62.3465 31.7572C62.3789 31.7684 62.4143 31.7674 62.4461 31.7545C62.4887 31.7365 62.511 31.6731 62.4571 31.6369C62.4266 31.6183 62.3943 31.6029 62.3606 31.5911C62.3217 31.5764 62.284 31.5585 62.248 31.5375C62.163 31.4852 62.1242 31.4087 62.1338 31.3102C62.1435 31.2094 62.2036 31.1462 62.296 31.1123C62.3326 31.0989 62.3713 31.0923 62.4103 31.0929Z" fill="#E20714"/>
+<path d="M57.2349 31.0928C57.3415 31.0956 57.4332 31.1321 57.5065 31.2121C57.5166 31.223 57.5157 31.2288 57.5047 31.2388C57.4695 31.2708 57.4351 31.3037 57.4015 31.3375C57.3904 31.3484 57.3855 31.3474 57.376 31.336C57.3449 31.2986 57.3084 31.2686 57.2586 31.2604C57.2326 31.2553 57.2056 31.2593 57.1822 31.2717C57.1737 31.2756 57.1663 31.2815 57.1608 31.289C57.1552 31.2965 57.1516 31.3053 57.1504 31.3145C57.1492 31.3238 57.1504 31.3332 57.1538 31.3419C57.1573 31.3505 57.1629 31.3582 57.1701 31.3641C57.1891 31.3804 57.211 31.3931 57.2346 31.4015C57.2783 31.4201 57.324 31.436 57.3654 31.4583C57.4268 31.491 57.4768 31.5342 57.4965 31.6041C57.5309 31.7258 57.4805 31.8788 57.3109 31.9185C57.1604 31.9537 57.0298 31.9112 56.9231 31.7972C56.9161 31.7896 56.9167 31.7856 56.9231 31.7787C56.9597 31.7438 56.9961 31.7085 57.0319 31.6727C57.0408 31.6637 57.0453 31.6621 57.0547 31.6727C57.0893 31.714 57.1293 31.7472 57.1838 31.7602C57.2088 31.7663 57.235 31.7655 57.2596 31.7578C57.2733 31.7542 57.2856 31.7466 57.2949 31.736C57.3042 31.7254 57.3102 31.7122 57.312 31.6982C57.3161 31.6683 57.3006 31.6492 57.2781 31.6342C57.2458 31.6151 57.2117 31.5994 57.1762 31.5872C57.1235 31.5684 57.0742 31.5411 57.0302 31.5064C56.9216 31.4136 56.92 31.1958 57.1012 31.1186C57.1436 31.101 57.189 31.0922 57.2349 31.0928Z" fill="#E20714"/>
+<path d="M57.9364 29.8979C57.9647 29.8685 57.9985 29.8449 58.0359 29.8286C58.0856 29.8075 58.1407 29.8028 58.1933 29.815C58.2037 29.8175 58.2082 29.821 58.2082 29.8326C58.2082 29.8922 58.2082 29.9519 58.2082 30.0116C58.2082 30.022 58.2064 30.0244 58.1952 30.0219C58.1418 30.0079 58.0854 30.011 58.0338 30.0307C58.0129 30.0392 57.9935 30.0512 57.9764 30.0662C57.9631 30.0764 57.9524 30.0897 57.9453 30.1049C57.9382 30.1202 57.9349 30.1369 57.9357 30.1537C57.9384 30.2961 57.9366 30.4386 57.9372 30.581C57.9372 30.5959 57.9338 30.6 57.9187 30.5997C57.8638 30.5986 57.8091 30.5989 57.7546 30.5997C57.7423 30.5997 57.7385 30.5964 57.7385 30.5839C57.7385 30.3353 57.7385 30.0867 57.7385 29.8381C57.7385 29.8262 57.742 29.8232 57.7534 29.8232C57.8101 29.8232 57.8666 29.8232 57.9233 29.8232C57.936 29.8232 57.9382 29.8278 57.9375 29.8381C57.936 29.8566 57.9364 29.8749 57.9364 29.8979Z" fill="#273375"/>
+<path d="M58.7596 31.1976C58.7867 31.17 58.8185 31.1474 58.8536 31.1309C58.9039 31.1082 58.9602 31.1024 59.014 31.1144C59.0254 31.1169 59.0309 31.1207 59.0308 31.1341C59.0297 31.1919 59.0297 31.2497 59.0308 31.3075C59.0308 31.3225 59.0264 31.3234 59.0135 31.3207C58.9499 31.3081 58.8879 31.3095 58.8301 31.3438C58.82 31.35 58.8103 31.3569 58.8012 31.3645C58.7872 31.3749 58.776 31.3885 58.7686 31.4043C58.7612 31.42 58.7578 31.4374 58.7587 31.4548C58.7614 31.5956 58.7587 31.7362 58.7603 31.877C58.7603 31.8958 58.7548 31.8989 58.7377 31.8986C58.6847 31.8974 58.6316 31.8977 58.5785 31.8986C58.566 31.8986 58.5615 31.8967 58.5615 31.8825C58.5615 31.6351 58.5615 31.3877 58.5615 31.1402C58.5615 31.1265 58.5653 31.1233 58.5784 31.1236C58.6333 31.1244 58.6882 31.1236 58.7424 31.1236C58.7553 31.1236 58.7608 31.1259 58.7596 31.14C58.7586 31.1576 58.7596 31.1755 58.7596 31.1976Z" fill="#E20613"/>
+<path d="M60.0075 31.5116C60.0075 31.3882 60.0075 31.2649 60.0075 31.1417C60.0075 31.1268 60.0116 31.1229 60.0263 31.1232C60.0811 31.1241 60.1358 31.1239 60.1904 31.1232C60.2029 31.1232 60.2079 31.1253 60.2077 31.1394C60.2077 31.3873 60.2077 31.6352 60.2077 31.883C60.2077 31.894 60.2058 31.8979 60.1928 31.8979C60.1357 31.8971 60.0784 31.8971 60.0213 31.8979C60.0089 31.8979 60.0063 31.8937 60.0063 31.883C60.0073 31.7594 60.0077 31.6356 60.0075 31.5116Z" fill="#E20714"/>
+<path d="M59.9788 30.8728C59.979 30.8391 59.9925 30.8069 60.0164 30.7832C60.0403 30.7595 60.0726 30.7462 60.1063 30.7463C60.1237 30.7452 60.1411 30.7476 60.1575 30.7535C60.1739 30.7594 60.1889 30.7686 60.2016 30.7805C60.2143 30.7925 60.2244 30.8069 60.2313 30.8229C60.2381 30.8389 60.2417 30.8561 60.2416 30.8735C60.2415 30.891 60.2379 30.9082 60.2309 30.9241C60.2239 30.9401 60.2137 30.9544 60.2009 30.9663C60.1882 30.9781 60.1731 30.9872 60.1566 30.993C60.1402 30.9988 60.1228 31.0011 60.1054 30.9998C60.0718 30.9996 60.0396 30.9862 60.0159 30.9624C59.9922 30.9386 59.9788 30.9064 59.9788 30.8728Z" fill="#E20714"/>
+<path d="M60.4586 27.6824C60.4673 27.6742 60.4774 27.6677 60.4884 27.6632C60.5307 27.6433 60.5762 27.6314 60.6227 27.628C60.6477 27.6285 60.6723 27.6343 60.695 27.6448C60.7053 27.6486 60.7059 27.6597 60.7037 27.6693C60.6993 27.6849 60.6897 27.6986 60.6764 27.7079C60.6691 27.7139 60.6641 27.7179 60.6738 27.7269C60.6835 27.7358 60.6756 27.7409 60.6676 27.7439C60.6591 27.7465 60.6512 27.7505 60.6442 27.7558C60.6292 27.7685 60.6388 27.7856 60.634 27.8005C60.6333 27.8046 60.6333 27.8088 60.634 27.8129C60.6349 27.8493 60.6313 27.8538 60.5946 27.8557C60.5746 27.8583 60.5542 27.8564 60.535 27.8501C60.5462 27.8486 60.5556 27.8478 60.5648 27.8462C60.5685 27.8459 60.5719 27.8441 60.5742 27.8413C60.5766 27.8385 60.5778 27.8349 60.5775 27.8313C60.5775 27.8232 60.57 27.8231 60.5672 27.8196C60.5502 27.7993 60.5205 27.8128 60.5041 27.7937C60.5013 27.7902 60.494 27.7891 60.4955 27.7837C60.497 27.7783 60.504 27.7765 60.5086 27.7774C60.5274 27.7808 60.5321 27.7658 60.5435 27.757C60.5608 27.7421 60.5793 27.7286 60.5988 27.7169C60.6106 27.7111 60.6211 27.703 60.6297 27.693C60.6403 27.68 60.6386 27.6761 60.6227 27.672C60.5738 27.6591 60.526 27.6672 60.4785 27.6797C60.4725 27.6817 60.4667 27.686 60.4586 27.6824Z" fill="#9E9E9D"/>
+<path d="M58.9093 27.9876C58.9095 27.9865 58.9095 27.9854 58.9093 27.9843C58.9262 27.9814 58.9435 27.9814 58.9605 27.9843L58.9093 27.9876Z" fill="#9E9E9D"/>
+<path d="M58.8152 28.658L58.8053 28.6643L58.801 28.6602L58.8125 28.6549L58.8152 28.658Z" fill="#273375"/>
+<path d="M58.811 28.655C58.8147 28.6534 58.8182 28.6507 58.822 28.655L58.8141 28.6588L58.811 28.655Z" fill="#273375"/>
+<path d="M58.8219 28.6556L58.8198 28.6524L58.8228 28.6512C58.8222 28.6525 58.8217 28.6538 58.8213 28.6552L58.8219 28.6556Z" fill="#273375"/>
+<path d="M58.6488 28.4068C58.65 28.4003 58.6582 28.4037 58.6591 28.3977C58.6584 28.397 58.6576 28.3964 58.6567 28.3959C58.6031 28.3849 58.5573 28.4065 58.5095 28.4268C58.4666 28.4458 58.425 28.4677 58.3851 28.4923C58.3772 28.4966 58.3692 28.5003 58.3609 28.5036C58.3573 28.5051 58.3532 28.5089 58.3497 28.5036C58.3492 28.5027 58.3489 28.5017 58.3488 28.5006C58.3487 28.4996 58.3488 28.4985 58.3491 28.4975C58.3494 28.4965 58.35 28.4956 58.3507 28.4948C58.3514 28.494 58.3522 28.4934 58.3532 28.4929C58.3794 28.478 58.3815 28.4429 58.4068 28.4258C58.4322 28.4086 58.4526 28.3895 58.4755 28.3713C58.482 28.3661 58.489 28.3616 58.4875 28.3515C58.4875 28.3506 58.4877 28.3497 58.488 28.3489C58.4884 28.348 58.4889 28.3473 58.4896 28.3467C58.5209 28.3272 58.5289 28.2851 58.5642 28.2702C58.5615 28.265 58.5569 28.261 58.5514 28.2589C58.5459 28.2568 58.5398 28.2569 58.5344 28.259C58.5301 28.2603 58.5255 28.2605 58.5211 28.2597C58.5167 28.2589 58.5126 28.257 58.509 28.2543C58.5129 28.2453 58.5221 28.2444 58.5296 28.2393C58.5165 28.2302 58.5226 28.2244 58.5323 28.2182C58.5427 28.2139 58.5537 28.2111 58.5649 28.2098C58.5732 28.2086 58.5808 28.2049 58.5869 28.1992C58.576 28.1965 58.5647 28.1961 58.5536 28.198C58.5371 28.198 58.5151 28.2029 58.5068 28.1892C58.4984 28.1755 58.5153 28.1615 58.5227 28.1485C58.5391 28.1184 58.5634 28.0934 58.593 28.0763C58.5982 28.0733 58.604 28.0692 58.6092 28.0736C58.6145 28.0781 58.611 28.0856 58.6092 28.0915C58.6054 28.1032 58.5955 28.1088 58.5834 28.1151C58.6083 28.1205 58.6315 28.1246 58.6538 28.1311C58.6598 28.1327 58.6758 28.1288 58.6702 28.146C58.6694 28.1485 58.6761 28.1484 58.6795 28.1491C58.6898 28.1515 58.7004 28.1531 58.7108 28.1558C58.7142 28.1567 58.7198 28.1572 58.7196 28.1625C58.7195 28.1679 58.7132 28.1654 58.7101 28.1686C58.8258 28.2023 58.9435 28.2283 59.0434 28.3047C58.9921 28.3299 58.938 28.3493 58.8823 28.3625C58.8489 28.3709 58.8151 28.3775 58.7815 28.3852C58.7788 28.3863 58.7758 28.387 58.7729 28.3871C58.743 28.3843 58.7153 28.3971 58.6877 28.4067C58.6816 28.4093 58.6749 28.4107 58.6682 28.4107C58.6616 28.4107 58.6549 28.4094 58.6488 28.4068Z" fill="#FEFEFE"/>
+<path d="M58.703 27.8903C58.6889 27.9042 58.6709 27.9039 58.6564 27.912C58.6487 27.9163 58.6493 27.9061 58.6464 27.9003C58.6188 27.9273 58.5868 27.9469 58.5578 27.9709C58.538 27.9881 58.5219 28.0092 58.5104 28.0328C58.4955 28.0608 58.4815 28.0886 58.4536 28.1073C58.4463 28.1121 58.4478 28.127 58.4396 28.1345C58.4373 28.1364 58.4364 28.1397 58.4345 28.1419C58.4302 28.1467 58.4251 28.1534 58.4184 28.1484C58.4117 28.1433 58.42 28.139 58.4217 28.1343C58.4233 28.1297 58.4255 28.1296 58.4263 28.1267C58.427 28.1239 58.4373 28.1221 58.4311 28.1151C58.4248 28.1081 58.4209 28.1106 58.4148 28.1151C58.3582 28.1513 58.3052 28.1928 58.2564 28.2389C58.213 28.2798 58.1727 28.3238 58.1328 28.3679C58.1296 28.3715 58.1277 28.3773 58.1208 28.3764C58.1186 28.3688 58.125 28.3655 58.1281 28.3615C58.1697 28.3063 58.2065 28.2476 58.2379 28.1861C58.2425 28.1765 58.25 28.1685 58.2592 28.1633C58.3061 28.1335 58.3485 28.0973 58.3851 28.0556C58.4423 27.9921 58.5094 27.9381 58.5836 27.8958C58.6018 27.8858 58.622 27.8801 58.6427 27.8792C58.6633 27.8782 58.684 27.882 58.703 27.8903Z" fill="#FEFEFE"/>
+<path d="M58.6653 28.6186C58.5973 28.6519 58.5451 28.7043 58.4777 28.729C58.4466 28.7413 58.4189 28.7608 58.3968 28.786C58.3947 28.7881 58.3921 28.7915 58.39 28.7914C58.3576 28.7879 58.3452 28.8145 58.3264 28.8324C58.3235 28.8354 58.3218 28.8425 58.3163 28.8388C58.3108 28.8351 58.3124 28.8291 58.3163 28.8239C58.3287 28.809 58.3408 28.793 58.3522 28.7772C58.3616 28.7647 58.3677 28.7501 58.3698 28.7347C58.3698 28.7324 58.3721 28.7284 58.3718 28.7281C58.349 28.7154 58.3728 28.7105 58.3768 28.7059C58.4102 28.6648 58.4574 28.6375 58.5096 28.6291C58.5278 28.6259 58.5456 28.6205 58.5625 28.613C58.5718 28.6085 58.5823 28.6072 58.5924 28.6092C58.6149 28.6143 58.6389 28.6061 58.6653 28.6186Z" fill="#FEFEFE"/>
+<path d="M58.8091 28.4441C58.8068 28.4473 58.8039 28.4501 58.8006 28.4522C58.7973 28.4543 58.7936 28.4557 58.7897 28.4564C58.7666 28.4607 58.7433 28.4641 58.72 28.4677C58.7167 28.4677 58.7117 28.4677 58.7103 28.4659C58.709 28.4641 58.7115 28.4581 58.7141 28.455C58.7181 28.4507 58.7233 28.4475 58.729 28.4459C58.7359 28.4447 58.7427 28.4424 58.749 28.4392C58.7701 28.4244 58.7892 28.4297 58.8091 28.4441Z" fill="#FEFEFE"/>
+<path d="M58.6345 28.7116C58.629 28.7251 58.6274 28.7393 58.6129 28.7455C58.6006 28.7498 58.5892 28.7567 58.5797 28.7656C58.5786 28.7667 58.5773 28.7676 58.5759 28.7681C58.5745 28.7687 58.573 28.769 58.5715 28.769C58.57 28.769 58.5684 28.7687 58.567 28.7681C58.5656 28.7676 58.5644 28.7667 58.5633 28.7656C58.5582 28.7598 58.5664 28.7569 58.5697 28.7536C58.5828 28.7405 58.5964 28.728 58.6095 28.7151C58.6118 28.7123 58.6147 28.7102 58.6181 28.7089C58.6214 28.7076 58.625 28.7071 58.6286 28.7075C58.6317 28.7083 58.6343 28.7093 58.6345 28.7116Z" fill="#FEFEFE"/>
+<path d="M61.2773 30.0921C61.2254 30.0921 61.1737 30.0921 61.1217 30.0921C61.1068 30.0921 61.1068 30.0875 61.1103 30.0757C61.1203 30.043 61.1402 30.0143 61.1672 29.9934C61.1943 29.9724 61.2271 29.9603 61.2612 29.9588C61.3113 29.9559 61.3587 29.9631 61.399 29.9959C61.4246 30.0168 61.4418 30.0462 61.4473 30.0788C61.4494 30.0897 61.4466 30.0921 61.4363 30.092C61.3834 30.092 61.3303 30.0921 61.2773 30.0921Z" fill="#FEFEFE"/>
+<path d="M61.4362 31.3932C61.4435 31.3558 61.4634 31.322 61.4926 31.2976C61.5218 31.2732 61.5586 31.2595 61.5966 31.2589C61.6361 31.256 61.6755 31.2647 61.71 31.284C61.7276 31.2941 61.7428 31.308 61.7543 31.3247C61.7658 31.3415 61.7735 31.3606 61.7767 31.3806C61.7782 31.3885 61.7792 31.394 61.7676 31.3939C61.6575 31.393 61.5474 31.3932 61.4362 31.3932Z" fill="#FEFEFE"/>
+<path d="M58.0437 31.3932C57.9914 31.3932 57.9393 31.3932 57.8867 31.3932C57.8718 31.3932 57.8718 31.389 57.8755 31.3772C57.8858 31.343 57.9067 31.313 57.9352 31.2915C57.9638 31.27 57.9985 31.2582 58.0342 31.2579C58.0803 31.2541 58.1262 31.2672 58.1633 31.2947C58.1898 31.3156 58.2074 31.3456 58.2127 31.3788C58.2148 31.3903 58.2127 31.3938 58.2008 31.393C58.1484 31.3929 58.0961 31.3932 58.0437 31.3932Z" fill="#FEFEFE"/>
+<path d="M58.7698 30.3133C58.7806 30.3571 58.7549 30.3841 58.7251 30.4095C58.7021 30.4313 58.6743 30.4473 58.6439 30.4561C58.6134 30.4648 58.5813 30.4662 58.5503 30.4599C58.5339 30.4576 58.5188 30.4498 58.5074 30.4377C58.496 30.4257 58.4891 30.4102 58.4877 30.3937C58.4857 30.3779 58.4887 30.3619 58.4962 30.3479C58.5038 30.3339 58.5156 30.3227 58.5299 30.3157C58.5606 30.3014 58.5935 30.2924 58.6273 30.2891C58.6695 30.2818 58.7117 30.2753 58.7537 30.2674C58.7666 30.2651 58.7707 30.2684 58.7694 30.2812C58.7691 30.2918 58.7698 30.3027 58.7698 30.3133Z" fill="#FEFEFE"/>
+<path d="M98.6191 18C99.1376 18.2055 99.6983 18.1632 100.233 18.2813C101.74 18.6155 103.172 19.1273 104.492 19.9406C104.726 20.0846 104.79 20.1902 104.636 20.4553C103.707 22.0556 102.791 23.6636 101.888 25.2794C101.726 25.5674 101.627 25.6116 101.331 25.4099C99.9576 24.4776 98.4577 24.0205 96.7956 24.4123C94.7571 24.8924 93.4704 26.6899 93.6269 28.7784C93.769 30.6585 95.4619 32.3033 97.4284 32.4896C98.1922 32.5745 98.9653 32.504 99.7013 32.2826C100.437 32.0612 101.121 31.6933 101.711 31.201C101.944 31.0089 102.022 31.0483 102.156 31.2874C103.06 32.9015 103.967 34.5137 104.896 36.1144C105.06 36.4024 105.038 36.533 104.772 36.7203C103.304 37.7573 101.649 38.3402 99.8981 38.5937C96.9857 39.0152 94.1867 38.6618 91.6623 37.016C89.0611 35.3212 87.6525 32.8775 87.2857 29.825C86.9496 27.026 87.4777 24.4171 89.1773 22.1155C90.9959 19.6516 93.5059 18.4196 96.5085 18.096C96.5709 18.0893 96.6343 18.0807 96.7006 18.072C97.244 18.0432 97.7923 18.1047 98.3329 18H98.6191ZM97.9095 35.2051C94.1147 35.1561 91.5164 33.0062 90.9959 29.3756C90.5571 26.3029 92.008 23.1256 95.3083 22.0002C97.0756 21.3791 99.0103 21.4345 100.739 22.1558C101.219 22.3478 101.211 21.9782 101.326 21.7775C101.505 21.4644 101.155 21.5048 101.027 21.452C100.155 21.0922 99.2244 20.8925 98.2811 20.8624C92.9202 20.6703 89.1677 25.1084 90.3853 30.2974C91.6422 35.6516 97.6262 37.0343 101.441 35.1772C101.641 35.0812 101.779 34.9919 101.594 34.7605C101.453 34.5857 101.438 34.2727 101.047 34.4897C100.08 35.0265 99.0128 35.2127 97.9095 35.2051Z" fill="#A30248"/>
+<path d="M15 30.8524C15.2429 30.0919 15.2698 29.295 15.3735 28.5133C15.5358 27.2891 15.5128 27.2756 16.7457 27.2651C17.026 27.2651 17.1653 27.1931 17.173 26.9069C17.173 26.7792 17.1989 26.6525 17.2133 26.5228C17.317 25.5626 17.316 25.5377 16.3203 25.5626C15.9036 25.5751 15.8047 25.4512 15.8652 25.0575C16.0361 23.9539 16.1903 22.8478 16.328 21.7391C16.3587 21.4923 16.4442 21.3943 16.6833 21.427C16.6992 21.4289 16.7153 21.4289 16.7313 21.427C17.1201 21.3857 17.6252 21.6046 17.8691 21.3204C18.0813 21.0736 18.0227 20.5935 18.0794 20.2162C18.1466 19.7581 18.2205 19.3011 18.2714 18.8411C18.2983 18.602 18.3972 18.5156 18.6392 18.5175C19.8231 18.5271 21.0071 18.532 22.192 18.5175C22.5175 18.5175 22.5137 18.6693 22.48 18.9016C22.3735 19.6112 22.2688 20.3227 22.1766 21.0352C22.1584 21.1735 21.9846 21.4491 22.312 21.4116C22.5905 21.379 23.0379 21.6882 23.1311 21.1447C23.2591 20.4053 23.3628 19.6624 23.4422 18.916C23.4748 18.6116 23.5766 18.5108 23.8848 18.5156C25.0198 18.531 26.1554 18.531 27.2917 18.5156C27.6028 18.5156 27.718 18.5809 27.6585 18.916C27.5308 19.6381 27.4415 20.3669 27.3234 21.0909C27.2849 21.3262 27.307 21.4539 27.5961 21.4327C27.9148 21.4097 28.2365 21.4327 28.5563 21.4251C28.7656 21.4183 28.8328 21.4827 28.8011 21.7026C28.634 22.8548 28.4727 24.0071 28.3268 25.1651C28.2855 25.4858 28.1443 25.5645 27.8303 25.5597C26.7357 25.5463 26.7357 25.5597 26.5533 26.6361C26.4486 27.2497 26.4486 27.2497 27.1006 27.2497C27.9821 27.2497 27.9878 27.2497 27.8784 28.1139C27.7535 29.0952 27.6076 30.0737 27.4943 31.056C27.4635 31.3104 27.3877 31.4151 27.1102 31.4141C26.7146 31.4141 26.1951 31.2346 25.9579 31.4871C25.7208 31.7397 25.7909 32.2342 25.7294 32.625C25.6583 33.082 25.5873 33.5391 25.5278 33.9981C25.5009 34.2084 25.4145 34.2909 25.1888 34.2861C24.0058 34.2756 22.8219 34.2717 21.636 34.2861C21.322 34.2861 21.3028 34.1536 21.3393 33.9097C21.4469 33.1838 21.5314 32.4541 21.6533 31.7301C21.6956 31.4804 21.66 31.4007 21.3912 31.3959C20.7421 31.3825 20.7382 31.3681 20.6374 32.0239C20.5414 32.6394 20.4454 33.2549 20.3753 33.8723C20.3417 34.144 20.2792 34.2957 19.9441 34.289C18.7919 34.265 17.6396 34.2669 16.4874 34.289C16.159 34.2948 16.1138 34.1728 16.1561 33.8963C16.2694 33.1713 16.3481 32.4396 16.4797 31.7195C16.5335 31.4314 16.4394 31.3921 16.2003 31.4017C15.8008 31.417 15.4014 31.4151 15.0019 31.4199L15 30.8524ZM27.0372 23.2572C26.5456 23.2572 26.0655 23.2293 25.5911 23.2658C25.1869 23.2975 25.1523 23.1371 25.207 22.7982C25.3386 22.0118 25.4452 21.2196 25.5393 20.4274C25.5566 20.2891 25.738 20.0376 25.3703 20.0078C25.064 19.9819 25.0044 20.123 24.9708 20.3919C24.8652 21.2311 24.7135 22.0646 24.6136 22.9038C24.5791 23.1976 24.4696 23.2687 24.1931 23.2658C22.9621 23.2536 21.7304 23.2536 20.4982 23.2658C20.2207 23.2658 20.1323 23.1919 20.1746 22.9124C20.3026 22.0758 20.4188 21.2381 20.5231 20.3996C20.5404 20.2632 20.7046 20.0347 20.3714 20.0155C20.1458 20.002 19.9873 20.0155 19.9576 20.3141C19.8615 21.1543 19.7098 21.9878 19.6033 22.827C19.562 23.1506 19.4544 23.3071 19.0943 23.2696C18.7103 23.2331 18.3262 23.2783 17.9421 23.2562C17.654 23.2389 17.6031 23.381 17.5801 23.624C17.5503 23.9264 17.7481 23.8698 17.9133 23.8707C18.2974 23.8707 18.6814 23.8918 19.0655 23.8659C19.3814 23.8438 19.4496 23.9619 19.4045 24.25C19.199 25.7038 19.0031 27.1588 18.8168 28.6151C18.7823 28.883 18.6642 28.9531 18.4116 28.9406C18.0131 28.9214 17.6099 28.9637 17.2133 28.9253C16.8436 28.8907 16.8014 29.0933 16.7802 29.3689C16.7524 29.7386 17.0318 29.5782 17.1778 29.5869C17.5616 29.6066 17.9462 29.6066 18.33 29.5869C18.5864 29.5753 18.6526 29.6454 18.6094 29.9085C18.4808 30.6959 18.3655 31.4862 18.283 32.2793C18.2666 32.4339 18.0151 32.7354 18.4462 32.7901C18.8178 32.8381 18.8082 32.5875 18.8389 32.3465C18.9349 31.5553 19.0531 30.765 19.1481 29.9729C19.1827 29.6915 19.2845 29.5773 19.5975 29.583C20.7968 29.6041 21.998 29.607 23.1964 29.583C23.5804 29.5753 23.687 29.679 23.6208 30.0631C23.4844 30.8486 23.3817 31.6408 23.2789 32.4329C23.2626 32.5587 23.1339 32.7719 23.4239 32.7901C23.639 32.8036 23.808 32.8151 23.8464 32.5021C23.9424 31.6619 24.098 30.8294 24.1825 29.9882C24.218 29.6416 24.3534 29.5744 24.6626 29.5926C25.0611 29.6176 25.4634 29.5811 25.8619 29.6041C26.2018 29.6243 26.1961 29.4035 26.2297 29.1769C26.2758 28.8619 26.0492 28.9445 25.8955 28.9406C25.5436 28.9238 25.191 28.9257 24.8393 28.9464C24.4552 28.979 24.3179 28.909 24.3889 28.4663C24.6175 27.049 24.8018 25.6241 24.9862 24.1991C25.0217 23.9274 25.1389 23.8563 25.3914 23.8688C25.7419 23.8861 26.0972 23.8458 26.4476 23.8794C26.8826 23.9168 27.1217 23.7968 27.0372 23.2572Z" fill="#A30248"/>
+<path d="M74.3142 30.9869C74.3142 33.2568 74.3065 35.5258 74.3228 37.7957C74.3228 38.151 74.2403 38.2499 73.8763 38.247C71.9886 38.2265 70.1001 38.2265 68.2111 38.247C67.827 38.247 67.7752 38.1289 67.7761 37.789C67.7867 33.2664 67.7761 28.7428 67.7934 24.2202C67.7934 23.7958 67.6897 23.6758 67.2653 23.6912C66.355 23.7248 65.4409 23.6912 64.5306 23.7075C64.2541 23.7075 64.1398 23.6604 64.1465 23.3455C64.1638 21.8597 64.1638 20.3736 64.1465 18.8872C64.1465 18.5742 64.255 18.5243 64.5306 18.5252C68.865 18.5329 73.2 18.5329 77.5357 18.5252C77.866 18.5252 77.9726 18.6117 77.9688 18.9516C77.9505 20.3919 77.9467 21.8322 77.9688 23.2668C77.9755 23.6412 77.8507 23.72 77.505 23.7113C76.5937 23.6893 75.6806 23.7248 74.7703 23.6941C74.3747 23.6806 74.3017 23.8189 74.3036 24.1799C74.3219 26.4479 74.3142 28.7179 74.3142 30.9869ZM70.6808 28.7256C70.6808 30.9638 70.6884 33.2011 70.6731 35.4394C70.6731 35.7725 70.7557 35.8628 71.0927 35.8666C71.4845 35.8715 71.4374 35.6496 71.4374 35.4067C71.4374 30.9782 71.4374 26.5507 71.4278 22.1241C71.4278 21.7227 71.4931 21.572 71.9406 21.5873C73.0429 21.6248 74.149 21.596 75.2514 21.6018C75.4962 21.6018 75.6691 21.6018 75.6739 21.2618C75.6787 20.9219 75.5298 20.8778 75.2456 20.8778C72.4463 20.8854 69.6466 20.8854 66.8466 20.8778C66.6008 20.8778 66.4337 20.873 66.427 21.2157C66.4203 21.5585 66.5749 21.5998 66.8553 21.5998C67.9912 21.5893 69.1271 21.6085 70.2631 21.5873C70.5963 21.5816 70.6913 21.6709 70.6884 22.0089C70.6731 24.2539 70.6808 26.4921 70.6808 28.7256Z" fill="#A30248"/>
+<path d="M48.2973 28.3693C48.2973 25.2544 48.305 22.1404 48.2877 19.0255C48.2877 18.6328 48.3761 18.5147 48.7832 18.5214C51.1165 18.5627 53.4517 18.4628 55.7841 18.5761C57.4597 18.6577 59.0738 19.0303 60.5237 19.9204C62.3663 21.0506 63.3467 22.73 63.581 24.8578C63.7615 26.5027 63.6473 28.1091 62.8868 29.6157C61.8901 31.5889 60.1761 32.6077 58.1164 33.1416C57.1273 33.4059 56.1069 33.5351 55.0831 33.5257C54.677 33.5189 54.5819 33.6659 54.5886 34.0509C54.6117 35.3126 54.5829 36.5743 54.6069 37.8361C54.6136 38.199 54.4753 38.2422 54.1642 38.2403C52.3398 38.2269 50.5154 38.223 48.6968 38.2403C48.3386 38.2403 48.2896 38.1184 48.2906 37.8044C48.3021 34.6635 48.2973 31.5169 48.2973 28.3693ZM51.274 28.3693V35.4154C51.274 35.6496 51.2077 35.883 51.6129 35.8724C51.9682 35.8638 52.0287 35.7389 52.0239 35.424C52.0085 34.1757 52.0335 32.9323 52.0085 31.6859C52.0009 31.2836 52.0777 31.1213 52.5261 31.1463C53.2943 31.1895 54.0624 31.1674 54.8306 31.1568C56.3112 31.1357 57.7266 30.8544 58.9528 29.971C60.6111 28.7765 61.2487 26.2751 60.4546 24.1137C59.7642 22.2393 58.2461 21.4251 56.414 21.0708C54.8776 20.7731 53.3221 20.9315 51.7742 20.8787C51.3902 20.8662 51.2625 20.9575 51.2653 21.3675C51.2826 23.7037 51.2721 26.037 51.2721 28.3684L51.274 28.3693Z" fill="#A30248"/>
+<path d="M28.222 38.2374C28.7348 36.8758 29.2264 35.5661 29.7229 34.2573C31.6542 29.1759 33.5816 24.0932 35.5052 19.0092C35.6493 18.6251 35.8327 18.5147 36.2264 18.5224C37.5054 18.5473 38.7853 18.5377 40.0672 18.5224C40.3399 18.5224 40.4916 18.5829 40.5982 18.8652C43.0045 25.2326 45.4172 31.5966 47.8363 37.957C47.8641 38.03 47.8824 38.1059 47.9064 38.1856C47.7489 38.2739 47.5895 38.2307 47.4388 38.2307C45.647 38.2307 43.8552 38.2307 42.0616 38.2393C41.8014 38.2393 41.6285 38.1961 41.5863 37.9157C41.5821 37.9003 41.5766 37.8852 41.5699 37.8706C41.3981 37.426 41.3453 36.823 41.0217 36.5782C40.652 36.2997 40.0355 36.4985 39.5266 36.4946C38.167 36.4841 36.8073 36.5004 35.4476 36.4841C35.1759 36.4841 35.052 36.5647 34.9675 36.8173C34.811 37.2858 34.7457 37.9446 34.4125 38.151C34.0284 38.3891 33.3918 38.2307 32.8656 38.2326C31.3379 38.2403 29.8074 38.2374 28.222 38.2374ZM44.2845 35.8081C44.2716 35.7432 44.2552 35.6791 44.2355 35.616C42.4015 30.8047 40.5697 25.9928 38.7402 21.1802C38.5482 20.6809 38.1842 20.9613 37.8981 20.8922C37.5668 20.8115 37.4708 21.0362 37.3729 21.2945C35.5958 25.9726 33.815 30.6498 32.0302 35.3261C31.8267 35.858 31.8805 35.9166 32.4364 35.8609C32.6217 35.8426 32.6765 35.7466 32.7245 35.6064C32.8393 35.3436 32.9397 35.0747 33.025 34.8008C33.1105 34.4638 33.2881 34.3745 33.6309 34.3764C36.4155 34.3918 39.2001 34.385 41.979 34.385C42.9651 34.385 43.0055 34.3726 43.2935 35.2857C43.4654 35.8206 43.7362 35.9684 44.2845 35.8081Z" fill="#A30248"/>
+<path d="M78.9232 28.4077C78.9232 25.2918 78.9338 22.175 78.9108 19.0591C78.9108 18.5982 79.0548 18.5176 79.4715 18.5224C81.3747 18.5425 83.2788 18.5387 85.1819 18.5224C85.5151 18.5224 85.614 18.6097 85.614 18.9487C85.6044 25.2458 85.6044 31.5425 85.614 37.8389C85.614 38.1443 85.5449 38.2451 85.2213 38.2432C83.2538 38.2278 81.2844 38.2249 79.3189 38.2432C78.954 38.2432 78.9165 38.1087 78.9175 37.8015C78.9271 34.6731 78.9232 31.5409 78.9232 28.4077ZM81.8999 28.353C81.8999 30.7023 81.8999 33.052 81.8999 35.4019C81.8999 35.666 81.8557 35.882 82.2686 35.8763C82.6614 35.8715 82.6527 35.689 82.6527 35.4067C82.6482 30.7241 82.6482 26.0408 82.6527 21.3569C82.6527 21.0909 82.6892 20.8768 82.2754 20.8768C81.8615 20.8768 81.9028 21.0919 81.9028 21.3569C81.8996 23.6877 81.897 26.0197 81.8951 28.353H81.8999Z" fill="#A30248"/>
+<path d="M97.9095 35.2051C99.0127 35.2127 100.08 35.0265 101.049 34.4897C101.44 34.2727 101.455 34.5857 101.596 34.7605C101.781 34.9919 101.643 35.0802 101.443 35.1772C97.6281 37.0343 91.6441 35.6516 90.3872 30.2974C89.1696 25.1123 92.9221 20.6713 98.283 20.8624C99.2263 20.8925 100.157 21.0922 101.029 21.452C101.157 21.5048 101.509 21.4644 101.328 21.7775C101.213 21.9781 101.221 22.3536 100.741 22.1558C99.0118 21.4358 97.077 21.3817 95.3102 22.0041C92.0099 23.1294 90.559 26.3049 90.9979 29.3795C91.5164 33.0062 94.1147 35.159 97.9095 35.2051Z" fill="#FBF4F7"/>
+<path d="M27.0372 23.2572C27.1217 23.7968 26.8826 23.9168 26.4467 23.8746C26.0981 23.841 25.7429 23.8813 25.3905 23.864C25.1379 23.8515 25.0208 23.9226 24.9852 24.1943C24.8009 25.6193 24.6165 27.0442 24.388 28.4615C24.3169 28.9013 24.4571 28.9714 24.8383 28.9416C25.1901 28.9209 25.5426 28.919 25.8946 28.9358C26.0482 28.9358 26.2786 28.8571 26.2287 29.1721C26.1951 29.3987 26.2009 29.6195 25.861 29.5993C25.4625 29.5763 25.0601 29.6128 24.6617 29.5878C24.3544 29.5696 24.219 29.6368 24.1815 29.9834C24.097 30.8246 23.9367 31.6571 23.8455 32.4973C23.8109 32.8141 23.6381 32.8026 23.423 32.7853C23.1349 32.7671 23.2617 32.5539 23.278 32.4281C23.3807 31.636 23.4835 30.8438 23.6198 30.0583C23.6861 29.6742 23.5843 29.5782 23.1954 29.5782C21.9961 29.6032 20.7949 29.6003 19.5965 29.5782C19.2835 29.5725 19.1817 29.6867 19.1472 29.9681C19.0511 30.7602 18.9388 31.5505 18.838 32.3417C18.8072 32.5827 18.8168 32.8333 18.4452 32.7853C18.0141 32.7306 18.2657 32.4291 18.282 32.2745C18.3646 31.4814 18.4798 30.6911 18.6085 29.9037C18.6517 29.6406 18.5854 29.5705 18.3291 29.5821C17.9452 29.6018 17.5606 29.6018 17.1768 29.5821C17.0309 29.5734 16.7514 29.7338 16.7793 29.3641C16.8004 29.0885 16.8427 28.884 17.2123 28.9205C17.6089 28.9589 18.0122 28.9205 18.4107 28.9358C18.6632 28.9483 18.7813 28.8782 18.8159 28.6103C19.0022 27.154 19.1981 25.699 19.4035 24.2452C19.4448 23.9571 19.3805 23.8381 19.0646 23.8611C18.6805 23.8871 18.2964 23.8688 17.9123 23.8659C17.7472 23.8659 17.5494 23.9216 17.5791 23.6192C17.6022 23.3762 17.6521 23.2351 17.9411 23.2514C18.3252 23.2735 18.7093 23.2283 19.0934 23.2648C19.4535 23.2994 19.561 23.1458 19.6023 22.8222C19.7089 21.983 19.8587 21.1495 19.9566 20.3093C19.9912 20.0078 20.1487 19.9972 20.3705 20.0107C20.7037 20.0308 20.5395 20.2594 20.5222 20.3948C20.4166 21.2333 20.3004 22.071 20.1736 22.9076C20.1314 23.1871 20.2197 23.2639 20.4972 23.261C21.7288 23.2488 22.9605 23.2488 24.1921 23.261C24.4687 23.261 24.5762 23.1928 24.6127 22.899C24.7087 22.0598 24.8643 21.2263 24.9699 20.3871C25.0035 20.1211 25.0659 19.98 25.3693 20.003C25.7371 20.0328 25.5556 20.2843 25.5383 20.4226C25.4423 21.2148 25.3376 22.007 25.2061 22.7934C25.1494 23.1323 25.184 23.2927 25.5902 23.261C26.0655 23.2293 26.5456 23.2572 27.0372 23.2572ZM21.5256 28.933C22.1651 28.933 22.8046 28.9214 23.446 28.9387C23.688 28.9445 23.785 28.8667 23.8167 28.6295C24.0126 27.1572 24.2158 25.6878 24.4264 24.2212C24.4658 23.9495 24.4034 23.8592 24.1163 23.8621C22.868 23.8755 21.6197 23.8717 20.3714 23.8621C20.1458 23.8621 20.0277 23.9091 19.9941 24.1646C19.7982 25.6689 19.5914 27.17 19.3738 28.6679C19.3392 28.9013 19.4122 28.9378 19.6119 28.9349C20.2466 28.9282 20.8861 28.932 21.5256 28.933Z" fill="#FBF4F7"/>
+<path d="M70.6807 28.7256C70.6807 26.4883 70.673 24.25 70.6884 22.0127C70.6884 21.6747 70.5924 21.5854 70.263 21.5912C69.1271 21.6123 67.9911 21.5912 66.8552 21.6037C66.5748 21.6037 66.4202 21.5768 66.427 21.2196C66.4337 20.8624 66.6008 20.8816 66.8466 20.8816C69.6466 20.8861 72.4462 20.8861 75.2455 20.8816C75.5336 20.8816 75.6776 20.9123 75.6738 21.2657C75.67 21.619 75.4962 21.6065 75.2513 21.6056C74.148 21.5998 73.0428 21.6286 71.9405 21.5912C71.493 21.5758 71.4258 21.7266 71.4277 22.1279C71.4412 26.5545 71.4354 30.9821 71.4373 35.4105C71.4373 35.6535 71.4844 35.8753 71.0926 35.8705C70.7556 35.8705 70.6711 35.7745 70.673 35.4432C70.6884 33.2049 70.6807 30.9676 70.6807 28.7256Z" fill="#FBF4F7"/>
+<path d="M51.272 28.3684C51.272 26.036 51.2826 23.7037 51.2615 21.3713C51.2615 20.9613 51.3834 20.8701 51.7704 20.8826C53.3182 20.9334 54.8757 20.775 56.4101 21.0746C58.247 21.428 59.7603 22.2413 60.4507 24.1165C61.2448 26.2751 60.6072 28.7765 58.9489 29.9738C57.7227 30.8572 56.3074 31.1386 54.8267 31.1597C54.0586 31.1703 53.2904 31.1923 52.5222 31.1491C52.0738 31.1242 51.997 31.2864 52.0047 31.6888C52.0296 32.937 52.0047 34.1853 52.02 35.4269C52.0248 35.7418 51.9643 35.8667 51.6091 35.8753C51.2039 35.8859 51.2701 35.6525 51.2701 35.4182L51.272 28.3684ZM52.021 26.0139C52.021 27.3717 52.0268 28.7284 52.0162 30.0862C52.0162 30.3579 52.0556 30.4827 52.3744 30.4751C53.3173 30.452 54.2621 30.5058 55.2031 30.4549C56.4783 30.3867 57.7247 30.138 58.7012 29.2297C60.0647 27.9622 60.1694 26.3346 59.7882 24.6667C59.4233 23.0728 58.2518 22.2288 56.7232 21.8408C55.2608 21.4692 53.7667 21.643 52.2851 21.6018C51.973 21.5931 52.022 21.8053 52.022 21.9858C52.0168 23.3301 52.0165 24.6728 52.021 26.0139Z" fill="#FBF4F7"/>
+<path d="M44.2846 35.8081C43.7363 35.9684 43.4655 35.8206 43.2975 35.2876C43.0094 34.3745 42.9691 34.387 41.9829 34.387C39.1983 34.387 36.4137 34.3937 33.6349 34.3783C33.2921 34.3783 33.1144 34.4657 33.029 34.8027C32.9436 35.0766 32.8433 35.3455 32.7284 35.6084C32.6766 35.7485 32.6218 35.8446 32.4404 35.8628C31.8844 35.9185 31.8306 35.8628 32.0342 35.328C33.8163 30.6511 35.5972 25.9739 37.3768 21.2964C37.4728 21.0381 37.5688 20.8163 37.902 20.8941C38.1901 20.9642 38.5559 20.6838 38.7441 21.1821C40.566 25.9979 42.3977 30.8099 44.2394 35.618C44.2578 35.6805 44.2729 35.744 44.2846 35.8081ZM38.0979 21.6075C38.0345 21.7352 37.9933 21.7996 37.9654 21.8764C36.5104 25.6903 35.0537 29.5027 33.5955 33.3135C33.4361 33.7263 33.6157 33.7158 33.9191 33.7158C36.6864 33.71 39.4547 33.7052 42.222 33.7158C42.6224 33.7158 42.7117 33.6524 42.5552 33.2491C41.5662 30.7084 40.6021 28.16 39.6295 25.6116L38.0979 21.6075Z" fill="#FBF4F7"/>
+<path d="M81.8951 28.353C81.8951 26.0197 81.8951 23.6861 81.8951 21.3521C81.8951 21.089 81.8557 20.872 82.2677 20.872C82.6796 20.872 82.645 21.089 82.645 21.3521C82.645 26.036 82.645 30.7193 82.645 35.4019C82.645 35.6842 82.6546 35.8667 82.2609 35.8715C81.848 35.8715 81.8913 35.6612 81.8922 35.3971C81.8967 33.051 81.8977 30.703 81.8951 28.353Z" fill="#FBF4F7"/>
+<path d="M21.5256 28.932C20.8861 28.932 20.2466 28.932 19.6052 28.932C19.4054 28.932 19.3325 28.8984 19.367 28.6651C19.5891 27.1691 19.7985 25.6695 19.995 24.1665C20.0286 23.9111 20.1467 23.8631 20.3724 23.864C21.6206 23.8717 22.8689 23.8755 24.1172 23.864C24.4052 23.864 24.4667 23.9514 24.4273 24.2231C24.2122 25.6884 24.008 27.1572 23.8147 28.6295C23.783 28.8667 23.686 28.9445 23.4441 28.9387C22.8046 28.9176 22.1651 28.933 21.5256 28.932ZM21.7743 27.2507C22.1584 27.3467 22.336 27.1979 22.3379 26.7984C22.3505 26.6074 22.3778 26.4177 22.4195 26.2309C22.5415 25.4839 22.6509 25.5751 21.8271 25.5588C21.6024 25.553 21.5198 25.6222 21.4996 25.8468C21.4665 26.1641 21.4155 26.4792 21.347 26.7907C21.2682 27.1499 21.3499 27.3486 21.7743 27.2507Z" fill="#A30248"/>
+<path d="M52.021 26.0139C52.021 24.6696 52.021 23.3282 52.021 21.9897C52.021 21.8053 51.9721 21.5931 52.2841 21.6056C53.7657 21.6469 55.2608 21.4731 56.7222 21.8447C58.2586 22.2288 59.4223 23.0766 59.7872 24.6706C60.1713 26.3385 60.0638 27.966 58.7003 29.2335C57.7237 30.1419 56.4774 30.3906 55.2022 30.4587C54.2612 30.5096 53.3164 30.4587 52.3734 30.4789C52.0546 30.4866 52.0124 30.3618 52.0153 30.09C52.021 28.7256 52.021 27.3717 52.021 26.0139ZM54.6002 26.0139C54.6002 26.6361 54.6002 27.2587 54.6002 27.8815C54.6002 28.039 54.5752 28.1878 54.8181 28.2234C55.5777 28.3367 56.5542 27.9353 56.8845 27.2852C57.307 26.4547 57.3176 25.5914 56.8711 24.7647C56.4486 23.9812 55.6804 23.8928 54.893 23.8515C54.6414 23.839 54.5944 23.9303 54.5973 24.1473C54.6002 24.7714 54.5954 25.3936 54.5954 26.0158L54.6002 26.0139Z" fill="#A30248"/>
+<path d="M38.0979 21.6075L39.6295 25.6154C40.6022 28.1629 41.5662 30.7122 42.5552 33.253C42.7118 33.6562 42.6225 33.7215 42.2221 33.7196C39.4547 33.7052 36.6864 33.71 33.9191 33.7196C33.6157 33.7196 33.439 33.7302 33.5955 33.3173C35.0608 29.5065 36.5158 25.6929 37.9606 21.8764C37.9885 21.8034 38.0298 21.7352 38.0979 21.6075ZM38.0855 28.7054C37.6553 29.826 37.2674 30.8505 36.866 31.8741C36.7873 32.0757 36.841 32.1218 37.0369 32.1209C37.8051 32.1151 38.5656 32.1209 39.3904 32.1209C38.9506 30.9782 38.532 29.8855 38.0807 28.7054H38.0855Z" fill="#A30248"/>
+</symbol>
+
+<symbol id="maisonFranceService" viewBox="0 0 120 56" fill="none" stroke="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M49.8218 20.2578C49.7845 20.222 49.7503 20.2484 49.7146 20.2578L49.6105 20.3059C49.4606 20.3639 49.3178 20.439 49.1849 20.5296C49.1399 20.5576 49.0793 20.5731 49.0482 20.5296C49.0172 20.4861 49.0855 20.4519 49.1135 20.4162C49.2051 20.2981 49.3604 20.337 49.4707 20.2609C49.8474 19.9978 50.2683 19.8047 50.7134 19.6908C51.4574 19.4827 52.2263 19.4267 52.9812 19.2838C53.4736 19.1906 53.9645 19.1036 54.3792 18.7899C54.5609 18.6547 54.7458 18.5165 54.94 18.3938C55.24 18.2137 55.4774 17.9458 55.6203 17.6264C55.6576 17.541 55.7508 17.4292 55.6638 17.3608C55.6048 17.3173 55.5395 17.454 55.4743 17.5053C55.4417 17.5342 55.4106 17.5648 55.3811 17.5969C54.7427 18.1887 54.0437 18.6842 53.1956 18.9281C52.537 19.1161 51.8489 19.0835 51.1607 19.1735C51.3829 18.9918 51.5646 18.7837 51.8815 18.7464C51.7386 18.6268 51.6329 18.7153 51.5258 18.7324C51.4543 18.7448 51.3471 18.8178 51.3285 18.6998C51.3176 18.6299 51.3285 18.4854 51.4838 18.4916C51.5196 18.4916 51.5662 18.5041 51.5817 18.4606C51.6392 18.2835 51.8069 18.24 51.9436 18.1623C52.3521 17.9293 52.7669 17.7072 53.1785 17.4773C53.2204 17.4525 53.2857 17.4478 53.2965 17.3826C53.2468 17.3624 53.1723 17.4261 53.1521 17.3484C53.1319 17.2707 53.194 17.249 53.2608 17.2288C53.625 17.0961 53.9804 16.9404 54.3248 16.7628C54.2223 16.7271 54.1229 16.7939 54.0546 16.7115C54.0981 16.6152 54.2348 16.6292 54.2549 16.5562C54.2891 16.4397 54.2782 16.3108 54.4445 16.2952C54.4662 16.2952 54.4646 16.2657 54.4445 16.2549C54.3326 16.1663 54.4569 16.1461 54.491 16.1166C54.606 16.0188 54.766 16.0219 54.9073 15.952C54.7225 15.8852 54.6573 15.7671 54.752 15.6413C54.9369 15.3834 54.9679 15.0774 55.0549 14.7885C55.0673 14.7512 55.0922 14.7046 55.0378 14.6736C54.9834 14.6425 54.957 14.6736 54.9275 14.7093C54.6332 14.9684 54.282 15.1546 53.9023 15.253C53.6238 15.3352 53.3406 15.4006 53.0542 15.4487C52.8978 15.4874 52.7339 15.4848 52.5787 15.4412C52.4236 15.3977 52.2823 15.3146 52.1688 15.2002C52.065 15.1027 51.9498 15.0182 51.8256 14.9485C50.9339 14.4375 49.9507 14.2557 48.9488 14.1361C48.5729 14.1026 48.1953 14.0901 47.818 14.0988C47.978 14.015 48.1482 13.9524 48.3244 13.9125C48.7577 13.8068 49.1958 13.7245 49.6198 13.5863C49.9825 13.4583 50.3572 13.3678 50.7382 13.316L51.2679 13.2756C51.0932 13.2454 50.9145 13.2454 50.7398 13.2756C50.5914 13.2649 50.4422 13.2722 50.2955 13.2973C49.3449 13.4822 48.3756 13.608 47.5151 14.1035C47.4483 14.1423 47.3598 14.175 47.3085 14.1144C47.2572 14.0538 47.3349 13.9824 47.3784 13.9249C47.6151 13.5957 47.932 13.3326 48.299 13.1605C48.666 12.9884 49.071 12.9131 49.4754 12.9416C50.4845 12.9767 51.4879 13.1088 52.4717 13.3362C52.5546 13.3456 52.634 13.3746 52.7034 13.4207C52.7729 13.4669 52.8303 13.529 52.8709 13.6018C52.8986 13.6507 52.9385 13.6915 52.9867 13.7204C53.0349 13.7493 53.0897 13.7651 53.1459 13.7664C53.3505 13.7688 53.553 13.8078 53.7439 13.8814C53.7719 13.5847 53.7936 13.5707 54.0732 13.6142H54.1089C54.2115 13.6329 54.3171 13.6406 54.3761 13.5381C54.3976 13.4925 54.4036 13.4411 54.3933 13.3918C54.3829 13.3424 54.3567 13.2978 54.3186 13.2647C54.1975 13.1234 54.067 12.9898 53.9427 12.8515C53.9023 12.8065 53.8387 12.7614 53.893 12.6636C54.0717 12.8344 54.2379 12.9991 54.4103 13.1575C54.6196 13.3731 54.8912 13.5176 55.1869 13.5707C55.291 13.5847 55.4153 13.6313 55.4867 13.5397C55.5582 13.448 55.4603 13.3424 55.4106 13.257C55.1991 12.9352 54.9583 12.6336 54.6914 12.356C54.6301 12.304 54.5849 12.2356 54.561 12.1588C54.5188 12.0191 54.4587 11.8854 54.3823 11.7611C54.2645 11.5457 54.1856 11.3112 54.1493 11.0683C54.1513 10.9563 54.1414 10.8443 54.1198 10.7344C53.9117 10.026 53.8247 9.29133 53.6538 8.57214C53.5311 8.0378 53.4876 7.50346 53.7641 6.99552C53.9722 6.61496 54.1882 6.23906 54.4041 5.86315C54.6821 5.38162 54.9959 4.93116 55.4727 4.6205C55.5218 4.58385 55.5573 4.53194 55.5737 4.47293C55.9201 3.61239 56.4607 2.93359 57.3305 2.54837C57.7406 2.36663 58.1553 2.19577 58.5732 2.00626H58.379C49.1523 2.00626 39.9266 2.00626 30.702 2.00626C30.5047 2.00626 30.4721 2.06373 30.4721 2.24392C30.4721 9.37262 30.4721 16.5008 30.4721 23.6285C30.4721 23.8226 30.5233 23.8599 30.7066 23.8599C37.1943 23.8537 43.682 23.8537 50.1697 23.8599C50.3294 23.8668 50.4869 23.8215 50.6186 23.731C50.8269 23.5851 51.0466 23.4563 51.2757 23.3458C52.0042 22.99 52.7358 22.6374 53.4721 22.3004C54.418 21.867 55.2786 21.3327 55.945 20.5047C56.4521 19.8678 57.0371 19.2969 57.6862 18.8054C57.7173 18.789 57.7419 18.7626 57.756 18.7304C57.7701 18.6983 57.7729 18.6623 57.7639 18.6283C57.5666 18.6874 57.4532 18.9002 57.2249 18.8971C57.2855 18.824 57.3662 18.7759 57.4268 18.7107C57.4874 18.6454 57.6645 18.6268 57.6163 18.5025C57.5573 18.3472 57.4004 18.4435 57.2855 18.4373C57.267 18.4405 57.2488 18.4451 57.2311 18.4512C56.8816 18.5258 56.6269 18.7619 56.3659 18.9747C56.3146 19.0167 56.2649 19.0928 56.1919 19.0539C56.0568 18.9825 55.9527 19.0539 55.844 19.1068C55.6333 19.2127 55.4326 19.3374 55.2444 19.4795C55.0283 19.6463 54.798 19.7939 54.5563 19.9207C54.401 19.9984 54.2068 19.958 54.0406 20.0558C53.7625 20.2126 53.4438 20.2824 53.1257 20.2562C52.4096 20.2127 51.7277 20.4022 51.0318 20.5358C50.4509 20.6476 50.0672 21.067 49.6214 21.387C49.2505 21.6566 48.9048 21.9592 48.5884 22.2911C48.5449 22.3345 48.5046 22.3982 48.4083 22.3563C48.5228 22.2131 48.6198 22.0566 48.6972 21.8903C48.8028 21.6106 49.0111 21.3817 49.2797 21.2503C49.3385 21.2179 49.3874 21.1701 49.4213 21.1122C49.4552 21.0542 49.4728 20.9882 49.4723 20.921C49.1989 20.9319 49.1709 21.3358 48.8385 21.2829C48.9252 21.1716 48.9929 21.0467 49.0389 20.9133C49.0762 20.6616 49.2657 20.5809 49.4412 20.4737L49.6462 20.3479L49.7363 20.2904L49.8125 20.2531L49.8249 20.2236L49.8031 20.2329L49.8218 20.2578ZM69.9202 15.7842C70.0169 15.8069 70.1062 15.8544 70.1791 15.9219C70.2521 15.9894 70.3063 16.0747 70.3365 16.1694C70.3718 16.228 70.3851 16.2972 70.374 16.3647C70.3629 16.4321 70.3281 16.4934 70.2759 16.5376C70.1811 16.6183 70.0833 16.6929 69.9916 16.7768C69.931 16.8219 69.8895 16.8881 69.8754 16.9623C69.8613 17.0365 69.8756 17.1133 69.9155 17.1775C70.0119 17.4066 70.0317 17.6606 69.9721 17.9019C69.9125 18.1431 69.7766 18.3587 69.5847 18.5165C69.4186 18.6382 69.2286 18.7232 69.0273 18.7661C68.8259 18.8089 68.6178 18.8086 68.4166 18.765C68.2612 18.7355 68.123 18.6811 67.9676 18.6609C67.3914 18.5833 66.8244 18.4342 66.2404 18.4C65.9291 18.3607 65.6144 18.4406 65.3596 18.6237C64.2863 19.4997 63.8187 20.643 63.9306 22.0192C63.9539 22.3175 64.0626 22.5629 64.4059 22.6157C64.4591 22.6295 64.511 22.6477 64.5612 22.6701C65.4668 22.9885 66.3739 23.3023 67.2158 23.7745C67.3102 23.8292 67.4174 23.8582 67.5265 23.8584C74.9886 23.8584 82.4508 23.8584 89.9129 23.8584C90.0791 23.8584 90.1304 23.8226 90.1304 23.6471C90.1304 16.5018 90.1304 9.36123 90.1304 2.22528C90.1304 2.03888 90.0745 2.00626 89.9021 2.00626C82.3426 2.00626 74.7831 2.00626 67.2236 2.00626C67.1522 1.99171 67.078 2.00271 67.0139 2.03733L67.1786 2.12897C67.5327 2.3309 67.9148 2.48313 68.2333 2.7503C68.6464 3.09358 68.7241 3.38095 68.5781 3.87024C68.5438 4.00328 68.4663 4.12118 68.3578 4.2055C68.2493 4.28981 68.1159 4.33579 67.9785 4.33624C67.8114 4.35021 67.6433 4.34708 67.4768 4.32692C67.3774 4.31605 67.278 4.30828 67.1661 4.29896C67.1661 4.32226 67.1661 4.33158 67.1661 4.33313C67.1876 4.34606 67.2099 4.35748 67.2329 4.36731C67.7565 4.57017 68.2143 4.91298 68.5564 5.35832C68.5865 5.39369 68.6235 5.42253 68.6652 5.4431C68.7069 5.46366 68.7523 5.47551 68.7987 5.47793C69.0037 5.51832 69.0037 5.51676 68.8825 5.68763C68.8484 5.73423 68.8049 5.7917 68.8546 5.83519C68.8815 5.85724 68.9159 5.86782 68.9505 5.86462C68.9851 5.86142 69.0171 5.84471 69.0394 5.81811C69.1034 5.74239 69.1557 5.65758 69.1948 5.56647C69.2047 5.54153 69.2207 5.51944 69.2413 5.50217C69.2618 5.48489 69.2863 5.47295 69.3126 5.46742C69.3389 5.46189 69.3661 5.46293 69.3919 5.47045C69.4177 5.47798 69.4412 5.49175 69.4604 5.51055C69.5132 5.54613 69.5573 5.59318 69.5893 5.64819C69.6214 5.70321 69.6406 5.76476 69.6455 5.82824C69.6505 5.89173 69.641 5.9555 69.6178 6.01481C69.5946 6.07411 69.5583 6.12741 69.5116 6.17071C69.4122 6.26391 69.3035 6.34779 69.201 6.43167C69.167 6.45047 69.1374 6.47639 69.1143 6.50765C69.0912 6.53891 69.0752 6.57479 69.0672 6.61283C69.0593 6.65086 69.0596 6.69017 69.0682 6.72807C69.0768 6.76596 69.0935 6.80156 69.1171 6.83242C69.1678 6.91752 69.211 7.00693 69.246 7.09959C69.3936 7.56559 69.5458 8.04401 69.6763 8.52088C69.8456 9.14221 69.9714 9.78218 69.8316 10.4299C69.7649 10.7697 69.8341 11.1222 70.0242 11.4116C70.1796 11.6741 70.3489 11.9242 70.5197 12.1758C70.7959 12.5341 71.0397 12.9162 71.2483 13.3175C71.4253 13.7136 71.284 13.9901 70.8692 14.1128C70.8226 14.1268 70.7745 14.1392 70.7263 14.1501C70.1734 14.2619 70.2122 14.5415 70.4048 14.8973L70.4436 14.9609C70.5803 15.2002 70.5539 15.3617 70.3349 15.5263C70.2106 15.6211 70.0786 15.6848 69.9202 15.7842ZM76.2888 36.8969C77.1633 36.8969 78.0394 36.8969 78.9139 36.8969C79.0506 36.8969 79.0972 36.8488 79.1189 36.7276C79.222 36.184 79.2335 35.627 79.1531 35.0795C78.9729 33.9363 78.4028 33.0602 77.3652 32.515C76.5653 32.0987 75.7047 32.0381 74.8287 32.1702C73.6357 32.3503 72.682 32.922 72.0467 33.9596C71.4331 34.9678 71.2208 36.1698 71.4517 37.3272C71.6847 38.663 72.3837 39.6898 73.6046 40.3204C74.5599 40.8128 75.5836 40.9107 76.6289 40.7647C77.6507 40.6395 78.5878 40.1343 79.2541 39.3496C79.3395 39.2502 79.3659 39.1865 79.2385 39.0886C78.8844 38.8184 78.5411 38.5294 78.1947 38.2483C77.94 38.0417 77.94 38.0433 77.7132 38.2747C77.154 38.8417 76.4581 39.0156 75.6939 38.9861C74.532 38.9395 73.7087 38.2095 73.5192 37.0662C73.4944 36.9218 73.5192 36.8891 73.6637 36.8907C74.5444 36.9016 75.4205 36.9016 76.295 36.9016L76.2888 36.8969ZM79.734 50.4263C80.5961 50.4263 81.4598 50.4263 82.3219 50.4263C82.4865 50.4263 82.53 50.3704 82.5549 50.2244C82.6526 49.6863 82.6605 49.1357 82.5782 48.595C82.3871 47.4393 81.8015 46.5554 80.739 46.0258C80.0137 45.6862 79.2034 45.571 78.4122 45.6949C77.0996 45.858 76.0713 46.4716 75.4096 47.635C74.9022 48.5412 74.7073 49.5893 74.8551 50.6174C75.0104 51.86 75.5572 52.9054 76.6212 53.6106C77.8359 54.4137 79.1748 54.5333 80.5651 54.204C81.4128 54.0088 82.1708 53.5352 82.718 52.8588C82.763 52.806 82.8345 52.7594 82.735 52.6802C82.3001 52.3322 81.8667 51.9807 81.4349 51.6255C81.3759 51.5773 81.3464 51.5866 81.3029 51.6426C80.8369 52.2313 80.2156 52.4891 79.4917 52.5264C78.1341 52.5948 77.1617 51.8818 76.9567 50.5972C76.935 50.4512 76.9567 50.4232 77.1027 50.4232C77.9772 50.431 78.858 50.4263 79.7402 50.4263H79.734ZM42.5988 50.4263C43.4547 50.4263 44.3075 50.4263 45.168 50.4263C45.3513 50.4263 45.4243 50.3813 45.4507 50.1949C45.5333 49.6919 45.5422 49.1797 45.4771 48.6742C45.3016 47.489 44.7222 46.5756 43.6318 46.0335C42.9023 45.6875 42.0853 45.57 41.2878 45.6965C39.9163 45.872 38.8678 46.5353 38.2216 47.7764C37.7629 48.6732 37.5998 49.6921 37.7556 50.6873C37.9187 51.9051 38.4639 52.9256 39.5077 53.606C40.8545 54.4836 42.3177 54.569 43.8244 54.0922C44.5259 53.8651 45.1457 53.4381 45.6076 52.8635C45.6542 52.806 45.7257 52.7579 45.6169 52.6724C45.1836 52.3307 44.758 51.9796 44.3292 51.6286C44.278 51.5866 44.2454 51.5742 44.1972 51.6379C43.739 52.2282 43.1099 52.4876 42.3876 52.5264C41.1139 52.5932 40.0825 51.9703 39.851 50.6236C39.8246 50.4776 39.8355 50.4201 40.0064 50.4232C40.8669 50.4325 41.7352 50.4263 42.6051 50.4263H42.5988ZM30.4736 34.9025C30.4736 36.7074 30.4736 38.5139 30.4736 40.3204C30.4736 40.4758 30.5171 40.5161 30.6693 40.5146C31.2907 40.5053 31.9244 40.5037 32.5504 40.5146C32.7151 40.5146 32.7555 40.4758 32.7555 40.3111C32.7555 38.8774 32.7555 37.4437 32.7555 36.01C32.7555 35.8624 32.7943 35.8236 32.9403 35.8251C34.0276 35.8251 35.1149 35.8251 36.2023 35.8251C36.3359 35.8251 36.3809 35.7987 36.3793 35.6543C36.37 35.0826 36.37 34.5126 36.3793 33.9456C36.3793 33.8011 36.3452 33.7608 36.1976 33.7623C35.1181 33.7623 34.0369 33.7623 32.9574 33.7623C32.8021 33.7623 32.757 33.7312 32.7586 33.5713C32.7679 32.9018 32.7694 32.2307 32.7586 31.5613C32.7586 31.3935 32.8036 31.3562 32.9652 31.3578C34.256 31.3578 35.5468 31.3578 36.8376 31.3578C36.9836 31.3578 37.0271 31.3205 37.024 31.1729C37.024 30.6075 37.0147 30.0437 37.024 29.4783C37.024 29.3229 36.9883 29.2841 36.8314 29.2841C34.7831 29.2903 32.7347 29.2903 30.6864 29.2841C30.5218 29.2841 30.4845 29.3245 30.4845 29.4876C30.4814 31.3096 30.4798 33.1022 30.4798 34.9025H30.4736ZM49.2797 39.7721C49.2797 39.9989 49.2797 40.1853 49.2797 40.3701C49.2797 40.4897 49.3169 40.5146 49.435 40.513C50.0113 40.513 50.5891 40.5053 51.1669 40.513C51.3052 40.513 51.3425 40.4804 51.3409 40.3391C51.3409 38.6009 51.3642 36.8612 51.3285 35.1246C51.3036 33.8695 50.7072 32.9375 49.536 32.4249C48.8738 32.1506 48.1524 32.0506 47.4405 32.1344C46.894 32.1722 46.3612 32.3226 45.8756 32.576C45.3899 32.8293 44.9618 33.1804 44.6182 33.607C44.542 33.7002 44.556 33.7421 44.6446 33.8089C45.0764 34.1341 45.5046 34.4623 45.9292 34.7937C46.0239 34.8683 46.0612 34.8527 46.1264 34.7595C46.2928 34.5114 46.5145 34.3052 46.774 34.1572C47.0336 34.0092 47.324 33.9235 47.6223 33.9068C48.6242 33.8213 49.3138 34.4271 49.2905 35.3716C49.2905 35.4679 49.2719 35.5098 49.1647 35.5269C48.5636 35.6201 47.9656 35.7273 47.366 35.8236C46.7873 35.8928 46.2238 36.056 45.6977 36.3066C44.3168 37.0243 43.9067 38.7096 44.8496 39.9072C45.4958 40.7274 46.4029 40.9029 47.38 40.7895C48.1203 40.7011 48.8004 40.338 49.2859 39.7721H49.2797ZM55.4929 33.0291C55.4929 32.8365 55.4929 32.6952 55.4929 32.5538C55.4929 32.4529 55.4588 32.4296 55.364 32.4296C54.7551 32.4296 54.1478 32.4296 53.5389 32.4296C53.4286 32.4296 53.4084 32.4653 53.4084 32.5663C53.4084 35.1686 53.4084 37.7704 53.4084 40.3717C53.4084 40.4928 53.4488 40.513 53.5637 40.513C54.14 40.513 54.7178 40.5037 55.2957 40.513C55.451 40.513 55.5023 40.4773 55.5007 40.3096C55.5007 38.6708 55.5007 37.0321 55.5007 35.3917C55.489 35.3119 55.5009 35.2304 55.5349 35.1572C55.8844 34.584 56.3426 34.16 57.0354 34.045C57.854 33.9114 58.5607 34.306 58.8124 35.05C58.8911 35.2927 58.9294 35.5467 58.9258 35.8018C58.9258 37.3101 58.9258 38.8184 58.9258 40.3282C58.9258 40.4727 58.9631 40.5146 59.1106 40.513C59.676 40.5037 60.2399 40.5037 60.8053 40.513C60.9529 40.513 60.9886 40.4742 60.9886 40.3282C60.9886 39.1182 60.9886 37.9066 60.9886 36.6965C61.008 36.1505 60.9956 35.6039 60.9513 35.0593C60.8597 34.2827 60.6282 33.5759 60.0721 33.0136C59.1867 32.1158 58.101 31.9651 56.9251 32.237C56.3891 32.3716 55.8978 32.6448 55.5007 33.0291H55.4929ZM65.9297 50.0333C65.9251 50.2255 65.9365 50.4178 65.9639 50.6081C66.144 51.9361 66.7545 52.9986 67.904 53.7147C68.836 54.291 69.8549 54.4525 70.9252 54.336C71.461 54.2871 71.9819 54.1327 72.4578 53.8815C72.9336 53.6304 73.3551 53.2876 73.6978 52.8728C73.7833 52.7703 73.7708 52.7268 73.6683 52.6507C73.2013 52.3017 72.7384 51.947 72.2797 51.5867C72.1756 51.5043 72.1321 51.523 72.0529 51.6208C71.697 52.0763 71.1761 52.3734 70.6028 52.4478C70.0296 52.5222 69.4501 52.368 68.9897 52.0185C68.1214 51.3645 67.8946 50.4496 68.0997 49.4291C68.2845 48.508 68.8499 47.8758 69.7726 47.6505C70.6953 47.4253 71.4813 47.6707 72.0715 48.4272C72.1321 48.5064 72.1663 48.5251 72.2548 48.4552C72.7208 48.0855 73.2054 47.7173 73.6885 47.3601C73.7941 47.2824 73.7662 47.2342 73.7025 47.1597C73.5194 46.9336 73.3109 46.7293 73.0812 46.5508C71.7142 45.5458 70.2137 45.4122 68.6527 45.9528C66.9751 46.5321 65.9375 48.1196 65.9375 50.0333H65.9297ZM66.8291 32.1111C66.6613 32.1251 66.4003 32.1344 66.144 32.1733C65.0117 32.3457 64.0595 32.8443 63.3698 33.7747C62.5497 34.8823 62.3338 36.1311 62.6071 37.4639C62.7163 38.0678 62.9629 38.6386 63.3279 39.132C63.6929 39.6254 64.1664 40.0283 64.7119 40.3096C65.5154 40.7274 66.4237 40.9008 67.3246 40.8082C67.89 40.778 68.4431 40.6315 68.9493 40.3779C69.4555 40.1242 69.9039 39.7689 70.2666 39.3341C70.3489 39.2347 70.3504 39.1865 70.2433 39.1073C69.7773 38.7593 69.3113 38.4052 68.8546 38.0448C68.7474 37.9609 68.6993 37.9796 68.6247 38.0759C68.2651 38.5341 67.7386 38.8313 67.1605 38.9023C66.5824 38.9733 65.9996 38.8125 65.5398 38.4549C64.6964 37.7963 64.4758 36.8907 64.6808 35.8873C64.8657 34.9692 65.4249 34.3339 66.3522 34.1087C67.2795 33.8835 68.0608 34.1273 68.6496 34.8854C68.7319 34.9894 68.7754 34.9599 68.8546 34.8993C69.3206 34.5436 69.7773 34.1864 70.2448 33.84C70.3644 33.7514 70.352 33.7002 70.265 33.5977C69.3905 32.5678 68.2519 32.136 66.8368 32.1111H66.8291ZM56.8288 51.6938C56.7931 51.6053 56.7682 51.5494 56.748 51.4919C56.0987 49.7128 55.451 47.9332 54.8048 46.1531C54.7928 46.0942 54.7584 46.0422 54.7089 46.0081C54.6594 45.9739 54.5986 45.9602 54.5392 45.9698C53.9381 45.9792 53.3354 45.9792 52.7342 45.9698C52.568 45.9698 52.5556 46.0087 52.6084 46.1547C53.5528 48.7363 54.491 51.3195 55.423 53.9042C55.4665 54.0238 55.5256 54.044 55.6374 54.0424C56.4141 54.0424 57.2016 54.0424 57.9829 54.0424C58.0362 54.0516 58.0909 54.0397 58.1355 54.0093C58.1802 53.9789 58.2112 53.9323 58.2221 53.8793C58.511 53.0623 58.8108 52.2484 59.106 51.4344C59.7449 49.674 60.3843 47.911 61.0243 46.1454C61.0538 46.0646 61.1299 45.9683 60.9451 45.9698C60.2989 45.9698 59.6543 45.9698 59.0081 45.9698C58.9748 45.9653 58.9411 45.9737 58.9139 45.9934C58.8867 46.0131 58.8682 46.0425 58.8621 46.0755C58.7891 46.2867 58.7068 46.4949 58.6353 46.7046C58.0373 48.3588 57.4424 50.01 56.8288 51.6938ZM87.1993 45.6545C86.7947 45.6461 86.3919 45.7119 86.011 45.8487C85.0479 46.2044 84.422 46.8599 84.321 47.9099C84.2216 48.9351 84.6317 49.732 85.5108 50.2772C85.8856 50.4954 86.2778 50.6819 86.6836 50.8348C87.0344 50.9582 87.3712 51.118 87.6886 51.3117C88.2493 51.6892 88.0179 52.3493 87.5736 52.5373C87.2424 52.6714 86.874 52.6813 86.536 52.5652C86.058 52.4006 85.6396 52.0979 85.3338 51.6954C85.2421 51.5835 85.1986 51.5882 85.1008 51.6876C84.7342 52.0573 84.3609 52.4197 83.9808 52.7749C83.8829 52.8681 83.8954 52.9303 83.9808 53.0095C85.079 54.1714 86.4242 54.5877 87.9728 54.2521C89.4407 53.9337 90.2702 52.5994 89.9657 51.13C89.8291 50.4714 89.4314 49.9976 88.8784 49.6388C88.3969 49.3576 87.8905 49.1215 87.3655 48.9336C87.0787 48.8329 86.8085 48.69 86.564 48.5095C86.4766 48.4482 86.4077 48.3641 86.3647 48.2664C86.3218 48.1687 86.3064 48.061 86.3204 47.9552C86.3343 47.8494 86.377 47.7494 86.4437 47.6661C86.5105 47.5828 86.5988 47.5194 86.6991 47.4828C86.9324 47.3765 87.1925 47.344 87.4447 47.3896C87.9853 47.4812 88.3689 47.8167 88.706 48.2191C88.7712 48.2967 88.8054 48.3154 88.8877 48.2346C89.2605 47.8711 89.6364 47.5107 90.0201 47.1566C90.1288 47.0572 90.1257 47.0012 90.0294 46.8894C89.6701 46.4974 89.2326 46.185 88.7451 45.9723C88.2577 45.7596 87.7311 45.6514 87.1993 45.6545ZM33.2991 45.6545C32.826 45.6505 32.3568 45.7419 31.9198 45.9232C30.0325 46.7263 30.0558 48.9942 31.1804 49.9619C31.6381 50.3233 32.1518 50.6077 32.7011 50.8038C33.0703 50.9308 33.4257 51.0947 33.762 51.2931C33.9966 51.4484 34.1581 51.655 34.1146 51.9594C34.0959 52.1055 34.0341 52.2427 33.9369 52.3534C33.8398 52.4641 33.7118 52.5433 33.5694 52.5808C33.3135 52.6604 33.0407 52.669 32.7803 52.6056C32.2133 52.4767 31.7955 52.1241 31.4351 51.6938C31.3373 51.5789 31.2907 51.596 31.1975 51.6938C30.8247 52.0666 30.4457 52.4348 30.0651 52.7982C29.9905 52.8697 29.9843 52.9116 30.0651 52.9908C31.1711 54.1776 32.5318 54.6203 34.1037 54.2537C35.8699 53.8405 36.3949 52.2468 36.0361 50.9793C35.831 50.2523 35.3107 49.8019 34.6707 49.4617C34.2327 49.2287 33.7636 49.0641 33.3084 48.8699C33.0629 48.7819 32.8355 48.6498 32.6374 48.48C32.5621 48.4186 32.5037 48.339 32.4679 48.2487C32.432 48.1585 32.4198 48.0605 32.4324 47.9642C32.445 47.8679 32.482 47.7764 32.5399 47.6984C32.5978 47.6204 32.6747 47.5584 32.7632 47.5185C33.007 47.3894 33.2877 47.3478 33.5585 47.4005C34.0773 47.4859 34.4579 47.7981 34.781 48.188C34.8804 48.306 34.9363 48.3169 35.0466 48.2035C35.3966 47.8525 35.7549 47.5097 36.1215 47.1752C36.2364 47.0712 36.2458 47.0106 36.1401 46.8972C35.365 46.0662 34.4097 45.6825 33.2991 45.653V45.6545ZM40.5997 33.2109C40.5997 32.9717 40.5997 32.7806 40.5997 32.5896C40.5997 32.4777 40.5842 32.4342 40.4522 32.4342C39.8619 32.442 39.2732 32.4342 38.6829 32.4342C38.5633 32.4342 38.5276 32.4637 38.5276 32.5896C38.5276 35.1784 38.5276 37.7673 38.5276 40.3562C38.5276 40.4866 38.5664 40.5224 38.6953 40.5208C39.267 40.5208 39.837 40.5115 40.404 40.5208C40.5593 40.5208 40.5966 40.4789 40.5966 40.3266C40.5966 38.8432 40.609 37.3598 40.5811 35.8764C40.5731 35.7015 40.6075 35.5273 40.6814 35.3685C40.7552 35.2098 40.8663 35.0712 41.0051 34.9646C41.1827 34.8092 41.3848 34.6843 41.6032 34.5949C42.1403 34.3904 42.7277 34.3584 43.2839 34.5032C43.4004 34.5297 43.4205 34.5032 43.419 34.3961C43.419 33.7747 43.419 33.1534 43.419 32.5321C43.419 32.4109 43.3739 32.3768 43.2637 32.3488C42.7162 32.2214 42.1425 32.2709 41.6249 32.4901C41.2418 32.6615 40.8957 32.9058 40.6059 33.2093L40.5997 33.2109ZM49.174 46.7465C49.174 46.5166 49.1632 46.3302 49.174 46.1454C49.1865 45.9978 49.129 45.973 48.9954 45.9745C48.4253 45.9745 47.8537 45.9823 47.2868 45.9745C47.1501 45.9745 47.1112 46.004 47.1112 46.1469C47.1112 48.7244 47.1112 51.3014 47.1112 53.8778C47.1112 54.0331 47.1578 54.0471 47.2883 54.0456C47.8413 54.0378 48.3943 54.0347 48.9457 54.0456C49.1243 54.0456 49.1834 54.016 49.1818 53.8203C49.1709 52.354 49.1927 50.8892 49.1647 49.4229C49.1552 49.2419 49.1907 49.0613 49.2679 48.8973C49.3452 48.7334 49.4618 48.5911 49.6074 48.4831C49.7025 48.4039 49.8032 48.3317 49.9088 48.2672C50.5099 47.9099 51.1514 47.896 51.8178 48.0264C51.9529 48.0544 52.0011 48.0466 51.998 47.8897C51.9887 47.2871 51.9887 46.6849 51.998 46.0832C51.998 45.9434 51.9421 45.9046 51.824 45.8782C51.2629 45.7532 50.6764 45.8137 50.1526 46.0506C49.7899 46.2226 49.4607 46.4577 49.1803 46.745L49.174 46.7465ZM62.1691 50.0162C62.1691 51.3065 62.1691 52.5973 62.1691 53.8887C62.1691 54.0021 62.1877 54.044 62.3244 54.044C62.9194 54.0362 63.5158 54.0362 64.1108 54.044C64.2412 54.044 64.2661 53.999 64.2661 53.8887C64.2661 51.3091 64.2661 48.728 64.2661 46.1454C64.2661 45.99 64.2164 45.9745 64.0859 45.9761C63.5143 45.9761 62.9442 45.9838 62.3772 45.9761C62.2219 45.9761 62.1815 46.0102 62.1815 46.1687C62.1784 47.4455 62.1753 48.7301 62.1753 50.0147L62.1691 50.0162ZM61.8709 43.3634C61.8705 43.7141 62.009 44.0508 62.2561 44.2996C62.5032 44.5485 62.8389 44.6894 63.1896 44.6915C63.3706 44.7045 63.5523 44.6802 63.7234 44.6201C63.8946 44.56 64.0516 44.4653 64.1846 44.3419C64.3177 44.2186 64.4239 44.0692 64.4968 43.903C64.5696 43.7369 64.6076 43.5576 64.6082 43.3761C64.6089 43.1947 64.5722 43.0151 64.5005 42.8485C64.4288 42.6818 64.3236 42.5317 64.1914 42.4074C64.0593 42.2831 63.903 42.1873 63.7323 42.126C63.5615 42.0646 63.38 42.0391 63.199 42.0508C62.8506 42.052 62.5167 42.1902 62.2694 42.4355C62.0221 42.6808 61.8812 43.0135 61.8771 43.3618L61.8709 43.3634ZM66.8679 10.1379C66.9518 10.1752 67.0124 10.1379 67.0745 10.113C67.57 9.98255 68.0671 9.89867 68.5765 10.0323C68.7427 10.0758 68.7598 10.1161 68.6496 10.2513C68.5604 10.3552 68.451 10.4397 68.328 10.4998C68.1236 10.6204 67.9298 10.7581 67.7486 10.9114C67.6306 11.0031 67.5809 11.16 67.3852 11.1242C67.337 11.1149 67.2624 11.1242 67.2485 11.1895C67.2345 11.2547 67.309 11.2578 67.3386 11.2936C67.5094 11.4924 67.8185 11.3526 67.9956 11.5638C68.0251 11.5996 68.1043 11.6011 68.1028 11.685C68.1058 11.7231 68.0936 11.7608 68.0688 11.7899C68.0441 11.819 68.0088 11.8372 67.9708 11.8403C67.8744 11.8574 67.7766 11.8652 67.6601 11.8807C67.8602 11.9464 68.0725 11.9666 68.2814 11.9397C68.6635 11.9195 68.7008 11.8729 68.6915 11.4939C68.6837 11.4513 68.6837 11.4076 68.6915 11.365C68.7412 11.2097 68.6387 11.0357 68.7971 10.899C68.8707 10.844 68.9532 10.8019 69.041 10.7747C69.1249 10.7437 69.1963 10.68 69.1062 10.5977C69.0161 10.5153 69.0565 10.4625 69.1326 10.4004C69.2709 10.303 69.3713 10.1609 69.4169 9.99809C69.4402 9.89246 69.434 9.78218 69.3268 9.74334C69.0919 9.63209 68.8364 9.57073 68.5765 9.56316C68.0921 9.5989 67.6182 9.72315 67.1786 9.92974C67.0652 9.97922 66.962 10.0493 66.8741 10.1363L66.8679 10.1379Z" fill="#FEFEFE"/>
+<path d="M49.6493 20.3494L49.4442 20.4752C49.2687 20.5824 49.0792 20.6632 49.0419 20.9148C48.9959 21.0482 48.9282 21.1731 48.8415 21.2845C49.174 21.3373 49.2019 20.9335 49.4753 20.9226C49.4758 20.9897 49.4582 21.0558 49.4243 21.1137C49.3904 21.1717 49.3415 21.2194 49.2827 21.2519C49.0141 21.3833 48.8058 21.6122 48.7002 21.8918C48.6228 22.0582 48.5258 22.2146 48.4113 22.3578C48.5076 22.3998 48.548 22.3361 48.5915 22.2926C48.9078 21.9608 49.2536 21.6582 49.6244 21.3886C50.0702 21.0686 50.4539 20.6492 51.0348 20.5374C51.7292 20.4038 52.4126 20.2143 53.1287 20.2578C53.4468 20.2839 53.7655 20.2141 54.0436 20.0574C54.2098 19.9595 54.3978 19.9999 54.5593 19.9222C54.801 19.7954 55.0313 19.6478 55.2474 19.4811C55.4356 19.339 55.6363 19.2142 55.847 19.1083C55.9557 19.0586 56.0598 18.984 56.195 19.0555C56.268 19.0943 56.3177 19.0182 56.3689 18.9763C56.6299 18.7557 56.8846 18.5274 57.2341 18.4528C57.2518 18.4467 57.27 18.442 57.2885 18.4388C57.4034 18.4388 57.5603 18.3534 57.6193 18.5041C57.6675 18.6283 57.4951 18.6423 57.4298 18.7122C57.3646 18.7821 57.2885 18.8256 57.2279 18.8986C57.4531 18.8986 57.5696 18.6889 57.7669 18.6299C57.7759 18.6638 57.7731 18.6998 57.759 18.732C57.7449 18.7641 57.7203 18.7906 57.6892 18.807C57.0401 19.2985 56.4552 19.8694 55.948 20.5063C55.2816 21.3342 54.4211 21.8685 53.4751 22.3019C52.7388 22.639 52.0072 22.9916 51.2787 23.3473C51.0497 23.4578 50.8299 23.5866 50.6216 23.7325C50.49 23.8231 50.3324 23.8683 50.1727 23.8615C43.6861 23.8615 37.1984 23.8615 30.7096 23.8615C30.5264 23.8615 30.4751 23.8242 30.4751 23.63C30.4751 16.5013 30.4751 9.37313 30.4751 2.24547C30.4751 2.06529 30.5077 2.00781 30.705 2.00781C39.9296 2.00781 49.1553 2.00781 58.382 2.00781H58.5762C58.1583 2.19732 57.7436 2.36818 57.3335 2.54992C56.4637 2.93514 55.9231 3.61394 55.5767 4.47448C55.5603 4.5335 55.5248 4.5854 55.4758 4.62205C54.9989 4.93271 54.6851 5.38628 54.4071 5.8647C54.1912 6.24061 53.9753 6.61651 53.7671 6.99707C53.4906 7.50501 53.5341 8.03935 53.6568 8.57369C53.8215 9.29288 53.9085 10.0276 54.1228 10.7359C54.1445 10.8459 54.1544 10.9578 54.1523 11.0699C54.1887 11.3127 54.2675 11.5472 54.3853 11.7627C54.4618 11.887 54.5218 12.0206 54.564 12.1603C54.5879 12.2371 54.6331 12.3055 54.6944 12.3576C54.9613 12.6351 55.2021 12.9367 55.4136 13.2585C55.4633 13.3439 55.569 13.4387 55.4897 13.5412C55.4105 13.6437 55.294 13.5863 55.19 13.5723C54.8942 13.5191 54.6226 13.3746 54.4133 13.1591C54.2409 13.0038 54.0747 12.836 53.896 12.6651C53.8417 12.763 53.9054 12.808 53.9457 12.8531C54.07 12.9913 54.2005 13.1249 54.3217 13.2663C54.3597 13.2994 54.3859 13.344 54.3963 13.3933C54.4067 13.4427 54.4006 13.494 54.3791 13.5397C54.3201 13.6422 54.2145 13.6344 54.112 13.6158H54.0762C53.7966 13.5692 53.7749 13.5863 53.7469 13.8829C53.556 13.8093 53.3535 13.7704 53.1489 13.768C53.0921 13.7671 53.0365 13.7512 52.9877 13.722C52.9389 13.6929 52.8986 13.6514 52.8709 13.6018C52.8302 13.529 52.7728 13.4669 52.7033 13.4207C52.6339 13.3746 52.5545 13.3456 52.4716 13.3362C51.4862 13.1101 50.4812 12.9795 49.4706 12.9463C49.0663 12.9177 48.6613 12.9931 48.2943 13.1652C47.9272 13.3373 47.6103 13.6004 47.3737 13.9295C47.3302 13.987 47.2463 14.0491 47.3038 14.119C47.3612 14.1889 47.4436 14.147 47.5103 14.1082C48.3709 13.6096 49.3402 13.4868 50.2908 13.302C50.4375 13.2769 50.5866 13.2696 50.735 13.2802C50.7366 13.2916 50.7366 13.3031 50.735 13.3144C50.354 13.3662 49.9793 13.4568 49.6166 13.5847C49.1926 13.7229 48.7546 13.8053 48.3212 13.9109C48.1454 13.9519 47.9757 14.0156 47.8164 14.1004C48.1937 14.0917 48.5712 14.1041 48.9472 14.1377C49.9491 14.2573 50.9323 14.439 51.8239 14.9501C51.9481 15.0197 52.0634 15.1042 52.1672 15.2017C52.2807 15.3162 52.4219 15.3992 52.5771 15.4428C52.7323 15.4863 52.8961 15.4889 53.0526 15.4502C53.339 15.4021 53.6222 15.3368 53.9007 15.2545C54.2803 15.1562 54.6315 14.9699 54.9259 14.7109C54.9554 14.6813 54.9849 14.6441 55.0362 14.6751C55.0874 14.7062 55.0657 14.7528 55.0533 14.7901C54.9663 15.079 54.9352 15.385 54.7504 15.6428C54.6618 15.7671 54.7271 15.8852 54.9057 15.9535C54.7643 16.0234 54.6044 16.0203 54.4894 16.1182C54.4552 16.1477 54.3341 16.1679 54.4428 16.2564C54.4583 16.2673 54.4599 16.2952 54.4428 16.2968C54.2766 16.3123 54.2875 16.4413 54.2533 16.5578C54.2331 16.6292 54.098 16.6152 54.0529 16.7131C54.1213 16.7954 54.2207 16.7286 54.3232 16.7643C53.9787 16.942 53.6233 17.0976 53.2592 17.2303C53.1924 17.2505 53.1303 17.2723 53.1504 17.3499C53.1706 17.4276 53.2452 17.3639 53.2949 17.3841C53.284 17.4494 53.2188 17.454 53.1769 17.4789C52.7652 17.7088 52.3505 17.9309 51.942 18.1639C51.8053 18.2415 51.6313 18.285 51.58 18.4621C51.5645 18.5056 51.5179 18.4947 51.4822 18.4932C51.3269 18.4932 51.3269 18.6314 51.3269 18.7013C51.3455 18.8194 51.4527 18.7464 51.5241 18.734C51.6313 18.7169 51.7369 18.6283 51.8798 18.7479C51.5692 18.7852 51.3812 18.9934 51.1591 19.1751C51.8472 19.0912 52.5353 19.1176 53.1939 18.9297C54.0421 18.6889 54.7473 18.1903 55.3795 17.5985C55.409 17.5664 55.4401 17.5358 55.4727 17.5068C55.5379 17.4556 55.6031 17.3189 55.6622 17.3624C55.7492 17.4307 55.6622 17.5426 55.6187 17.628C55.4758 17.9474 55.2383 18.2152 54.9383 18.3953C54.7442 18.518 54.5593 18.6563 54.3776 18.7914C53.9551 19.1021 53.4642 19.1922 52.9796 19.2854C52.2247 19.4283 51.4558 19.4842 50.7117 19.6924C50.2667 19.8063 49.8457 19.9994 49.4691 20.2624C49.3588 20.3432 49.2035 20.3044 49.1118 20.4177C49.0839 20.4535 49.0109 20.4737 49.0466 20.5311C49.0823 20.5886 49.1382 20.5622 49.1833 20.5311C49.3161 20.4405 49.4589 20.3655 49.6089 20.3075L49.6493 20.3494ZM48.0245 17.6808C48.0895 17.7089 48.1595 17.7234 48.2303 17.7234C48.3011 17.7234 48.3711 17.7089 48.4361 17.6808C48.7235 17.5814 49.0046 17.4478 49.3231 17.4773C49.354 17.4755 49.3844 17.4687 49.4132 17.4571C49.7627 17.3795 50.1153 17.3018 50.4632 17.221C51.0432 17.0836 51.6059 16.8815 52.1408 16.6183C51.1001 15.8292 49.8745 15.5528 48.6691 15.2017C48.7017 15.1675 48.7685 15.1893 48.7685 15.138C48.7685 15.0868 48.7126 15.0774 48.6769 15.0681C48.5682 15.0402 48.4579 15.0231 48.3507 14.9982C48.315 14.9982 48.2451 14.9982 48.2544 14.9656C48.3119 14.7854 48.1457 14.8258 48.0835 14.8103C47.8505 14.7435 47.6098 14.7 47.3504 14.6441C47.4762 14.5788 47.5787 14.5198 47.6191 14.3986C47.6408 14.3365 47.6859 14.2666 47.6191 14.2122C47.5523 14.1579 47.5041 14.2122 47.4498 14.2402C47.1425 14.4216 46.8915 14.6845 46.7244 14.9998C46.6467 15.1349 46.482 15.3104 46.5582 15.4238C46.6343 15.5372 46.8688 15.517 47.0459 15.5155C47.161 15.4957 47.2789 15.4999 47.3923 15.5279C47.3294 15.5874 47.2497 15.626 47.164 15.6382C47.0471 15.6515 46.9327 15.6808 46.8238 15.7252C46.7228 15.7842 46.6591 15.851 46.7958 15.9457C46.7182 15.997 46.6218 16.0063 46.5815 16.1011C46.6183 16.1298 46.6615 16.1493 46.7075 16.1579C46.7534 16.1666 46.8007 16.1641 46.8455 16.1508C46.9026 16.1285 46.9658 16.1281 47.0231 16.1496C47.0805 16.1711 47.1279 16.213 47.1562 16.2673C46.7834 16.4226 46.7011 16.8606 46.3795 17.0641C46.3723 17.0702 46.3666 17.0778 46.3628 17.0864C46.359 17.095 46.3573 17.1044 46.3578 17.1138C46.3733 17.2195 46.3003 17.2692 46.232 17.3204C45.9943 17.5099 45.766 17.7196 45.5174 17.8874C45.2689 18.0551 45.2316 18.4233 44.9582 18.5864C44.9483 18.5911 44.9395 18.5979 44.9323 18.6062C44.9251 18.6145 44.9196 18.6241 44.9163 18.6346C44.9129 18.6451 44.9118 18.6561 44.9128 18.6671C44.9139 18.678 44.9172 18.6886 44.9225 18.6982C44.9582 18.7495 45.0017 18.7107 45.039 18.6982C45.1252 18.6639 45.2092 18.6245 45.2907 18.5802C45.701 18.3217 46.1281 18.0908 46.569 17.8889C47.0676 17.6777 47.5445 17.4525 48.1022 17.5674C48.1114 17.5722 48.1198 17.5785 48.127 17.586C48.1224 17.6482 48.0369 17.6125 48.0245 17.6808ZM48.5884 12.3017C48.3907 12.2154 48.1758 12.1757 47.9603 12.1856C47.7449 12.1956 47.5346 12.255 47.3457 12.3591C46.5746 12.8013 45.8793 13.364 45.286 14.0258C44.9042 14.4598 44.4628 14.8374 43.975 15.1473C43.8786 15.2022 43.8011 15.2851 43.7529 15.385C43.4255 16.0259 43.043 16.6371 42.6096 17.2117C42.577 17.2552 42.5102 17.2894 42.5335 17.367C42.605 17.3763 42.6252 17.3158 42.6578 17.2785C43.0741 16.8125 43.4935 16.3605 43.9455 15.9349C44.4534 15.4512 45.0057 15.0165 45.5951 14.6363C45.6588 14.5944 45.7085 14.5773 45.7644 14.6363C45.8203 14.6953 45.7271 14.7155 45.7147 14.7575C45.7023 14.7994 45.6774 14.8087 45.6666 14.8367C45.6557 14.8646 45.5842 14.9439 45.6324 14.9827C45.6805 15.0215 45.7551 14.9656 45.8001 14.9159C45.8203 14.8926 45.8297 14.8584 45.853 14.8382C45.9384 14.7606 45.9229 14.6052 45.999 14.5555C46.2894 14.3629 46.4401 14.074 46.5908 13.7789C46.7082 13.5342 46.8736 13.3155 47.077 13.1358C47.3768 12.8857 47.7123 12.6822 47.9996 12.4011C48.0292 12.4616 48.0229 12.5673 48.1037 12.5222C48.2544 12.443 48.4423 12.4461 48.5884 12.3017ZM48.1969 19.8865C47.922 19.756 47.6719 19.8415 47.4389 19.7855C47.3339 19.7642 47.2248 19.7779 47.1282 19.8244C46.9522 19.9031 46.7669 19.9595 46.5768 19.9921C46.0333 20.0798 45.5412 20.3646 45.1943 20.7921C45.1524 20.8403 44.9039 20.8915 45.1415 21.0235C45.1415 21.0235 45.1244 21.0686 45.1213 21.0919C45.0988 21.2526 45.0358 21.405 44.9381 21.5346C44.8184 21.6992 44.6926 21.8608 44.5637 22.0208C44.5187 22.0782 44.4938 22.1342 44.5637 22.1761C44.6336 22.218 44.6383 22.1404 44.6693 22.1093C44.8604 21.9229 44.994 21.6433 45.331 21.6822C45.3528 21.6822 45.3807 21.648 45.4025 21.6262C45.6318 21.3641 45.9205 21.1607 46.2444 21.0329C46.9449 20.7781 47.4886 20.2329 48.1969 19.8865ZM49.6943 18.0691C49.4877 17.9138 49.2889 17.8641 49.073 18.0179C49.0074 18.0513 48.9373 18.0748 48.8648 18.0878C48.8053 18.1044 48.7516 18.1372 48.7095 18.1825C48.6831 18.2151 48.6427 18.254 48.6707 18.2959C48.6986 18.3379 48.7375 18.3192 48.7716 18.3146C49.014 18.2773 49.2563 18.2415 49.497 18.1965C49.5769 18.1815 49.6478 18.1358 49.6943 18.0691ZM47.8692 20.8542C47.8692 20.8309 47.8412 20.8201 47.8086 20.8154C47.7718 20.8109 47.7345 20.8156 47.7001 20.8292C47.6656 20.8427 47.6351 20.8647 47.6113 20.8931C47.4762 21.0266 47.3364 21.1556 47.2012 21.2907C47.1671 21.3249 47.0816 21.3544 47.1344 21.415C47.1456 21.4261 47.1587 21.4349 47.1733 21.441C47.1878 21.447 47.2034 21.4501 47.2191 21.4501C47.2348 21.4501 47.2504 21.447 47.2649 21.441C47.2794 21.4349 47.2926 21.4261 47.3038 21.415C47.4023 21.3223 47.5193 21.2514 47.647 21.2068C47.7962 21.14 47.8117 20.994 47.8692 20.8542Z" fill="#273375"/>
+<path d="M69.9201 15.7842C70.0754 15.6848 70.2106 15.6149 70.3271 15.5264C70.5461 15.3617 70.5725 15.2002 70.4358 14.9609L70.397 14.8973C70.2044 14.5415 70.1655 14.2619 70.7185 14.1501C70.7667 14.1392 70.8148 14.1268 70.8614 14.1128C71.2761 13.9901 71.4175 13.7136 71.2404 13.3175C71.0319 12.9162 70.7881 12.5341 70.5119 12.1758C70.341 11.9242 70.1702 11.6741 70.0164 11.4116C69.8331 11.12 69.7707 10.7684 69.8424 10.4315C69.9807 9.78373 69.8549 9.14687 69.6871 8.52244C69.5566 8.04557 69.4044 7.57336 69.2568 7.10115C69.2218 7.00848 69.1786 6.91908 69.1279 6.83398C69.1043 6.80311 69.0876 6.76752 69.079 6.72962C69.0704 6.69173 69.0701 6.65242 69.078 6.61438C69.086 6.57634 69.1021 6.54047 69.1251 6.50921C69.1482 6.47794 69.1778 6.45203 69.2118 6.43322C69.319 6.34934 69.4277 6.26546 69.5224 6.17227C69.5691 6.12896 69.6054 6.07567 69.6286 6.01636C69.6518 5.95706 69.6613 5.89328 69.6564 5.8298C69.6514 5.76631 69.6322 5.70476 69.6001 5.64975C69.5681 5.59474 69.524 5.54768 69.4712 5.5121C69.452 5.4933 69.4285 5.47953 69.4027 5.47201C69.3769 5.46448 69.3497 5.46344 69.3234 5.46897C69.2971 5.47451 69.2726 5.48644 69.2521 5.50372C69.2315 5.521 69.2155 5.54309 69.2056 5.56802C69.1665 5.65914 69.1142 5.74394 69.0502 5.81966C69.0279 5.84626 68.9959 5.86297 68.9613 5.86617C68.9267 5.86937 68.8923 5.8588 68.8654 5.83675C68.8157 5.79326 68.8654 5.73578 68.8934 5.68918C69.0145 5.51832 69.0145 5.51987 68.8095 5.47948C68.7631 5.47707 68.7177 5.46522 68.676 5.44465C68.6343 5.42409 68.5973 5.39524 68.5672 5.35988C68.2251 4.91454 67.7673 4.57172 67.2437 4.36886C67.2207 4.35903 67.1984 4.34761 67.1769 4.33469C67.1769 4.33469 67.1769 4.32382 67.1769 4.30052C67.281 4.30984 67.3804 4.3176 67.4876 4.32848C67.6541 4.34864 67.8222 4.35176 67.9893 4.3378C68.1267 4.33735 68.2601 4.29137 68.3686 4.20705C68.4771 4.12274 68.5546 4.00484 68.5889 3.8718C68.7349 3.3825 68.6572 3.09514 68.2441 2.75186C67.9256 2.48624 67.5435 2.33401 67.1894 2.13053L67.0247 2.03888C67.0888 2.00426 67.163 1.99327 67.2344 2.00782C74.7939 2.00782 82.3534 2.00782 89.9129 2.00782C90.0853 2.00782 90.1412 2.04044 90.1412 2.22684C90.1412 9.3721 90.1412 16.5127 90.1412 23.6487C90.1412 23.8242 90.0899 23.8599 89.9237 23.8599C82.4564 23.8558 74.9948 23.8537 67.5389 23.8537C67.4297 23.8535 67.3226 23.8246 67.2282 23.7698C66.3863 23.3038 65.4792 22.9838 64.5736 22.6654C64.5234 22.643 64.4714 22.6248 64.4182 22.611C64.075 22.5582 63.9662 22.3128 63.9429 22.0146C63.8311 20.6368 64.2986 19.4951 65.372 18.619C65.6268 18.4359 65.9414 18.356 66.2527 18.3953C66.8368 18.4295 67.4037 18.5786 67.98 18.6563C68.1353 18.6765 68.2798 18.7308 68.4289 18.7604C68.6301 18.8039 68.8383 18.8043 69.0396 18.7614C69.241 18.7186 69.431 18.6335 69.597 18.5118C69.7865 18.3525 69.9197 18.1365 69.9771 17.8957C70.0344 17.6549 70.0128 17.402 69.9154 17.1744C69.8756 17.1102 69.8613 17.0334 69.8754 16.9592C69.8895 16.885 69.9309 16.8188 69.9916 16.7737C70.0832 16.6929 70.1811 16.6183 70.2758 16.5345C70.3281 16.4903 70.3629 16.429 70.374 16.3616C70.3851 16.2941 70.3717 16.2249 70.3364 16.1663C70.3058 16.0722 70.2514 15.9875 70.1784 15.9206C70.1055 15.8536 70.0165 15.8066 69.9201 15.7842Z" fill="#E20613"/>
+<path d="M76.2947 36.9016C75.4202 36.9016 74.5441 36.9016 73.6696 36.9016C73.5143 36.9016 73.5003 36.9326 73.5252 37.0771C73.7116 38.2172 74.5348 38.9504 75.6998 38.997C76.4671 39.0265 77.163 38.8525 77.7191 38.2856C77.9459 38.0541 77.9459 38.0526 78.2007 38.2592C78.547 38.5403 78.8903 38.8292 79.2445 39.0995C79.3719 39.1974 79.3454 39.2549 79.26 39.3605C78.5938 40.1451 77.6566 40.6503 76.6349 40.7756C75.5895 40.9216 74.5659 40.8237 73.6106 40.3313C72.3881 39.7007 71.6907 38.6739 71.4577 37.3381C71.2268 36.1806 71.4391 34.9787 72.0526 33.9705C72.6879 32.9328 73.6417 32.3612 74.8346 32.181C75.7107 32.049 76.5712 32.1096 77.3712 32.5259C78.4088 33.0664 78.9789 33.9472 79.159 35.0904C79.2395 35.6378 79.2279 36.1948 79.1249 36.7385C79.1031 36.8596 79.0565 36.9093 78.9198 36.9078C78.0453 36.8923 77.1692 36.9016 76.2947 36.9016ZM75.4 35.2364C75.9514 35.2364 76.5044 35.2364 77.0559 35.2364C77.163 35.2364 77.1925 35.2131 77.1708 35.0997C77.1133 34.7603 76.9344 34.4534 76.6675 34.2361C76.2481 33.8943 75.7542 33.8198 75.2323 33.8493C74.8768 33.8658 74.535 33.9916 74.2537 34.2096C73.9723 34.4275 73.7651 34.727 73.6603 35.0671C73.6215 35.1898 73.6292 35.2411 73.7799 35.238C74.3205 35.2271 74.8595 35.2318 75.4 35.2318V35.2364Z" fill="#273375"/>
+<path d="M79.7401 50.4263C78.8578 50.4263 77.9771 50.4263 77.0995 50.4263C76.9566 50.4263 76.9317 50.4543 76.9534 50.6003C77.1538 51.8849 78.1309 52.5979 79.4885 52.5295C80.2139 52.4922 80.8399 52.2344 81.2996 51.6457C81.3431 51.5898 81.3726 51.5804 81.4317 51.6286C81.8635 51.9828 82.2969 52.3343 82.7318 52.6833C82.8312 52.7625 82.7598 52.8091 82.7147 52.8619C82.1676 53.5383 81.4096 54.0119 80.5618 54.2071C79.1716 54.5364 77.8326 54.4168 76.6179 53.6137C75.5493 52.9008 74.9947 51.8663 74.8471 50.6174C74.6994 49.5893 74.8943 48.5413 75.4017 47.635C76.0634 46.4716 77.0917 45.858 78.4043 45.6949C79.1997 45.5707 80.0141 45.6882 80.742 46.032C81.806 46.5617 82.3901 47.4455 82.5811 48.6012C82.6635 49.1419 82.6556 49.6925 82.5578 50.2306C82.533 50.3766 82.4895 50.4341 82.3248 50.4325C81.4658 50.4154 80.6022 50.4263 79.7401 50.4263ZM77.0529 48.7814C78.2116 48.7814 79.358 48.7814 80.5043 48.7814C80.6255 48.7814 80.6146 48.7254 80.5991 48.6431C80.5658 48.4342 80.4861 48.2353 80.366 48.0612C80.2458 47.887 80.0882 47.7419 79.9048 47.6366C79.5451 47.4363 79.1348 47.3455 78.7242 47.3756C78.3265 47.3821 77.9432 47.5255 77.6388 47.7815C77.3344 48.0375 77.1274 48.3906 77.0529 48.7814Z" fill="#E20714"/>
+<path d="M42.6046 50.4263C41.7348 50.4263 40.8665 50.4263 39.9966 50.4263C39.8242 50.4263 39.8133 50.4807 39.8413 50.6267C40.0712 51.9688 41.1026 52.5901 42.3747 52.5264C43.1001 52.4876 43.7261 52.2282 44.1843 51.6379C44.2325 51.5742 44.2651 51.5866 44.3164 51.6286C44.7451 51.9796 45.1707 52.3307 45.6041 52.6724C45.7128 52.7578 45.6414 52.806 45.5948 52.8635C45.1328 53.4381 44.513 53.8651 43.8115 54.0921C42.3048 54.569 40.8416 54.4836 39.4949 53.606C38.451 52.9256 37.9058 51.8973 37.7427 50.6873C37.5869 49.6921 37.7501 48.6732 38.2087 47.7764C38.8549 46.5337 39.9034 45.872 41.275 45.6965C42.077 45.5671 42.8993 45.6847 43.6329 46.0335C44.7202 46.5803 45.3027 47.4936 45.4783 48.6742C45.5433 49.1797 45.5344 49.6919 45.4519 50.1949C45.4254 50.3813 45.3524 50.4294 45.1692 50.4263C44.3179 50.4154 43.4621 50.4263 42.6046 50.4263ZM41.7239 48.7813C42.2691 48.7813 42.8112 48.7813 43.3595 48.7813C43.4807 48.7813 43.5055 48.7534 43.4838 48.6338C43.4283 48.2876 43.2448 47.9749 42.9697 47.7577C42.5827 47.4707 42.1046 47.3343 41.6245 47.374C41.2525 47.3779 40.8915 47.5005 40.5941 47.7241C40.2968 47.9476 40.0787 48.2604 39.9717 48.6167C39.9329 48.7394 39.936 48.786 40.0882 48.7829C40.6335 48.7767 41.1787 48.7813 41.7239 48.7813Z" fill="#E20714"/>
+<path d="M30.4796 34.9024C30.4796 33.1022 30.4796 31.3019 30.4796 29.5016C30.4796 29.3385 30.5169 29.2981 30.6816 29.2981C32.7299 29.3043 34.7782 29.3043 36.8265 29.2981C36.9818 29.2981 37.0207 29.3385 37.0191 29.4922C37.0082 30.0576 37.0098 30.6215 37.0191 31.1869C37.0191 31.3345 36.9787 31.3733 36.8327 31.3718C35.5419 31.3718 34.2511 31.3718 32.9603 31.3718C32.8049 31.3718 32.7506 31.4075 32.7537 31.5752C32.7646 32.2447 32.763 32.9158 32.7537 33.5852C32.7537 33.7406 32.8034 33.7778 32.9525 33.7763C34.0398 33.7763 35.1132 33.7763 36.1927 33.7763C36.3481 33.7763 36.3776 33.8151 36.3745 33.9596C36.3667 34.5312 36.3667 35.1013 36.3745 35.6682C36.3745 35.8127 36.331 35.8391 36.1974 35.8391C35.1101 35.8391 34.0227 35.8391 32.9354 35.8391C32.7894 35.8391 32.749 35.8764 32.7506 36.0239C32.7506 37.4577 32.7506 38.8914 32.7506 40.3251C32.7506 40.4897 32.7102 40.5317 32.5455 40.5286C31.9242 40.5177 31.292 40.5192 30.6645 40.5286C30.5091 40.5286 30.4688 40.4913 30.4688 40.3344C30.4812 38.5139 30.4796 36.7074 30.4796 34.9024Z" fill="#273375"/>
+<path d="M49.2856 39.7721C48.7987 40.337 48.1174 40.6984 47.3766 40.7849C46.398 40.8983 45.4924 40.7227 44.8462 39.9026C43.9034 38.705 44.3135 37.0196 45.6944 36.302C46.2205 36.0513 46.784 35.8882 47.3626 35.8189C47.9622 35.7226 48.5602 35.6154 49.1614 35.5222C49.2685 35.5051 49.2856 35.4632 49.2872 35.3669C49.3105 34.4225 48.6208 33.8136 47.6189 33.9021C47.3206 33.9188 47.0302 34.0045 46.7707 34.1525C46.5111 34.3005 46.2894 34.5067 46.1231 34.7549C46.0578 34.8481 46.0206 34.8636 45.9258 34.7891C45.5012 34.4566 45.073 34.1284 44.6412 33.8043C44.5527 33.7375 44.5387 33.6955 44.6148 33.6023C44.9584 33.1757 45.3865 32.8247 45.8722 32.5713C46.3579 32.3179 46.8907 32.1676 47.4372 32.1298C48.149 32.046 48.8704 32.146 49.5326 32.4202C50.7085 32.9328 51.3003 33.8648 51.3251 35.1199C51.3609 36.8565 51.3251 38.5962 51.3376 40.3344C51.3376 40.4758 51.3018 40.5099 51.1636 40.5084C50.5858 40.4991 50.0079 40.5084 49.4316 40.5084C49.3198 40.5084 49.2763 40.4851 49.2763 40.3655C49.2934 40.1853 49.2856 39.9989 49.2856 39.7721ZM49.2856 37.5353C49.2856 37.425 49.2779 37.3116 49.2856 37.2014C49.2996 37.0678 49.2561 37.0336 49.1225 37.0569C48.6845 37.1392 48.2449 37.2122 47.8053 37.2837C47.454 37.3177 47.111 37.4112 46.791 37.5602C46.6421 37.6328 46.5197 37.7502 46.4409 37.8958C46.362 38.0415 46.3308 38.2082 46.3514 38.3726C46.3662 38.5443 46.4387 38.706 46.5572 38.8313C46.6757 38.9565 46.8331 39.0379 47.0038 39.0622C47.3271 39.1272 47.6613 39.1134 47.9782 39.022C48.295 38.9307 48.5852 38.7644 48.8243 38.5372C49.1256 38.2732 49.3975 37.9889 49.2856 37.5353Z" fill="#273375"/>
+<path d="M55.5004 33.0291C55.8952 32.644 56.3843 32.3692 56.9186 32.2323C58.0944 31.9667 59.1802 32.1173 60.0656 33.0089C60.6217 33.5713 60.8531 34.2858 60.9448 35.0547C60.989 35.5992 61.0015 36.1459 60.9821 36.6919C60.9821 37.9019 60.9821 39.1135 60.9821 40.3235C60.9821 40.4695 60.9463 40.5099 60.7988 40.5084C60.2333 40.4991 59.6695 40.4991 59.1041 40.5084C58.9488 40.5084 58.9192 40.468 58.9192 40.3235C58.9192 38.8137 58.9192 37.3054 58.9192 35.7972C58.9229 35.542 58.8846 35.2881 58.8059 35.0454C58.5542 34.3013 57.8475 33.9068 57.0289 34.0404C56.3361 34.1553 55.8778 34.5794 55.5283 35.1525C55.4944 35.2257 55.4825 35.3072 55.4942 35.3871C55.4942 37.0274 55.4942 38.6661 55.4942 40.3049C55.4942 40.4726 55.4507 40.5115 55.2891 40.5084C54.7113 40.4975 54.1335 40.5084 53.5572 40.5084C53.4469 40.5084 53.4019 40.4882 53.4019 40.367C53.4019 37.7657 53.4019 35.1639 53.4019 32.5616C53.4019 32.4606 53.422 32.4233 53.5323 32.4249C54.1412 32.4249 54.7486 32.4249 55.3575 32.4249C55.4522 32.4249 55.4911 32.4482 55.4864 32.5492C55.4942 32.6952 55.5004 32.8365 55.5004 33.0291Z" fill="#273375"/>
+<path d="M65.937 50.0333C65.937 48.1196 66.9747 46.5353 68.6569 45.9528C70.218 45.4122 71.7185 45.5458 73.0854 46.5508C73.3152 46.7293 73.5237 46.9336 73.7067 47.1597C73.7704 47.2343 73.7984 47.2824 73.6928 47.3601C73.2097 47.7173 72.7328 48.0855 72.2591 48.4552C72.1705 48.5251 72.1363 48.5064 72.0758 48.4272C71.4808 47.6661 70.6949 47.416 69.7769 47.6505C68.8588 47.8851 68.2888 48.508 68.1039 49.4291C67.8989 50.4496 68.1257 51.3645 68.994 52.0185C69.4544 52.368 70.0339 52.5222 70.6071 52.4478C71.1803 52.3734 71.7012 52.0763 72.0571 51.6208C72.1363 51.523 72.1798 51.5043 72.2839 51.5866C72.7427 51.947 73.2055 52.3017 73.6726 52.6507C73.7751 52.7268 73.7875 52.7703 73.7021 52.8728C73.3593 53.2876 72.9379 53.6304 72.462 53.8815C71.9861 54.1327 71.4653 54.2871 70.9294 54.336C69.8592 54.4556 68.8355 54.2941 67.9082 53.7147C66.7588 53.0002 66.1483 51.9377 65.9681 50.6081C65.9418 50.4177 65.9314 50.2254 65.937 50.0333Z" fill="#E20714"/>
+<path d="M66.8366 32.1111C68.2517 32.136 69.3903 32.5678 70.2648 33.5992C70.3518 33.7017 70.3642 33.7545 70.2446 33.8415C69.7786 34.1879 69.3126 34.5452 68.8544 34.9009C68.7752 34.9615 68.7317 34.991 68.6494 34.8869C68.056 34.1258 67.2731 33.8788 66.352 34.1103C65.4309 34.3417 64.8655 34.9708 64.6806 35.8888C64.4756 36.8923 64.6962 37.7978 65.5396 38.4564C65.9997 38.8143 66.5829 38.9752 67.1615 38.9039C67.74 38.8326 68.2667 38.5348 68.6261 38.0759C68.7037 37.9796 68.7488 37.9609 68.856 38.0448C69.3126 38.4052 69.7771 38.7593 70.2446 39.1073C70.3518 39.1865 70.3502 39.2347 70.2679 39.3341C69.9053 39.7689 69.4568 40.1243 68.9506 40.3779C68.4444 40.6315 67.8913 40.778 67.3259 40.8082C66.425 40.9008 65.5167 40.7274 64.7133 40.3096C64.1678 40.0283 63.6942 39.6254 63.3293 39.132C62.9643 38.6386 62.7177 38.0678 62.6085 37.4639C62.3351 36.1311 62.551 34.8823 63.3712 33.7747C64.0609 32.8427 65.013 32.3457 66.1454 32.1733C66.4079 32.1344 66.6689 32.1251 66.8366 32.1111Z" fill="#273375"/>
+<path d="M56.8285 51.6938C57.4389 50.01 58.037 48.3588 58.635 46.7061C58.7111 46.4964 58.7903 46.2883 58.8618 46.077C58.8679 46.044 58.8864 46.0146 58.9136 45.995C58.9408 45.9753 58.9745 45.9668 59.0078 45.9714C59.654 45.9714 60.2986 45.9714 60.9448 45.9714C61.1296 45.9714 61.0535 46.0661 61.024 46.1469C60.384 47.9073 59.7446 49.6704 59.1056 51.436C58.8105 52.2499 58.5107 53.0638 58.2218 53.8809C58.2109 53.9338 58.1798 53.9804 58.1352 54.0108C58.0906 54.0413 58.0358 54.0532 57.9826 54.044C57.2059 54.044 56.4184 54.044 55.6371 54.044C55.5252 54.044 55.4662 54.0254 55.4227 53.9057C54.4907 51.3169 53.5525 48.7337 52.6081 46.1562C52.5553 46.0102 52.5677 45.9698 52.7339 45.9714C53.3351 45.9807 53.9378 45.9807 54.5389 45.9714C54.5983 45.9618 54.6591 45.9754 54.7086 46.0096C54.7581 46.0438 54.7924 46.0958 54.8045 46.1547C55.4476 47.9358 56.0953 49.7154 56.7477 51.4934C56.7679 51.5494 56.7928 51.6053 56.8285 51.6938Z" fill="#E20714"/>
+<path d="M87.1993 45.6545C87.7314 45.6526 88.2581 45.7621 88.7453 45.9762C89.2324 46.1902 89.6694 46.5039 90.0279 46.8972C90.1242 47.0028 90.1273 47.0649 90.0186 47.1644C89.6349 47.5185 89.259 47.8789 88.8862 48.2424C88.8039 48.3231 88.7697 48.3045 88.7045 48.2268C88.3674 47.8245 87.9837 47.489 87.4432 47.3974C87.191 47.3517 86.9308 47.3843 86.6976 47.4906C86.5973 47.5272 86.509 47.5906 86.4422 47.6738C86.3754 47.7571 86.3328 47.8571 86.3188 47.963C86.3049 48.0688 86.3202 48.1764 86.3632 48.2742C86.4061 48.3719 86.4751 48.456 86.5624 48.5173C86.807 48.6978 87.0772 48.8407 87.364 48.9414C87.8889 49.1293 88.3954 49.3654 88.8769 49.6466C89.4299 50.0054 89.8275 50.4791 89.9642 51.1377C90.2749 52.6072 89.4392 53.9415 87.9713 54.2599C86.418 54.5954 85.0775 54.1791 83.9793 53.0173C83.8954 52.9303 83.883 52.8759 83.9793 52.7827C84.3583 52.4254 84.7316 52.063 85.0992 51.6954C85.1971 51.596 85.2406 51.5913 85.3322 51.7032C85.6381 52.1057 86.0565 52.4084 86.5345 52.573C86.8724 52.6891 87.2409 52.6792 87.5721 52.545C88.0163 52.3571 88.2478 51.6969 87.687 51.3195C87.3697 51.1258 87.0328 50.9659 86.682 50.8426C86.2763 50.6897 85.884 50.5032 85.5093 50.285C84.6239 49.7398 84.22 48.9429 84.3194 47.9177C84.4204 46.8677 85.0464 46.2091 86.0095 45.8565C86.3904 45.7169 86.7937 45.6484 87.1993 45.6545Z" fill="#E20714"/>
+<path d="M33.2989 45.653C34.4095 45.6825 35.3648 46.063 36.1275 46.8956C36.2331 47.009 36.2238 47.0696 36.1088 47.1737C35.7423 47.5071 35.384 47.8499 35.0339 48.202C34.919 48.3154 34.8677 48.3045 34.7683 48.1864C34.4452 47.7965 34.0647 47.4843 33.5459 47.3989C33.2751 47.3462 32.9944 47.3879 32.7506 47.517C32.662 47.5569 32.5851 47.6188 32.5272 47.6968C32.4693 47.7748 32.4323 47.8663 32.4197 47.9626C32.4071 48.059 32.4193 48.1569 32.4552 48.2472C32.4911 48.3375 32.5495 48.4171 32.6247 48.4785C32.8228 48.6482 33.0502 48.7804 33.2958 48.8683C33.7509 49.0625 34.2278 49.2272 34.658 49.4602C35.298 49.8003 35.8184 50.2508 36.0234 50.9777C36.3822 52.2453 35.8572 53.839 34.0911 54.2521C32.5238 54.6187 31.1631 54.176 30.0525 52.9893C29.9794 52.9101 29.9857 52.8681 30.0525 52.7967C30.433 52.4332 30.812 52.0651 31.1848 51.6923C31.278 51.5991 31.3246 51.582 31.4225 51.6923C31.7828 52.1225 32.1991 52.4689 32.7677 52.6041C33.0281 52.6674 33.3008 52.6589 33.5567 52.5792C33.6992 52.5417 33.8271 52.4626 33.9243 52.3519C34.0214 52.2412 34.0833 52.104 34.102 51.9579C34.1454 51.6472 33.9839 51.4484 33.7493 51.2915C33.4131 51.0932 33.0576 50.9292 32.6884 50.8022C32.1391 50.6062 31.6255 50.3218 31.1677 49.9603C30.0369 48.9942 30.0198 46.7263 31.9071 45.9217C32.348 45.7387 32.8215 45.6473 33.2989 45.653Z" fill="#E20714"/>
+<path d="M40.6057 33.2093C40.9002 32.9028 41.2523 32.6574 41.6418 32.487C42.1593 32.2678 42.733 32.2183 43.2805 32.3457C43.3892 32.3721 43.4358 32.4078 43.4358 32.529C43.4358 33.1503 43.4358 33.7716 43.4358 34.393C43.4358 34.5017 43.4172 34.5265 43.3007 34.5001C42.7446 34.3553 42.1571 34.3873 41.62 34.5918C41.4016 34.6812 41.1996 34.8061 41.022 34.9615C40.8831 35.0681 40.772 35.2067 40.6982 35.3654C40.6244 35.5242 40.59 35.6984 40.5979 35.8733C40.6259 37.3567 40.6072 38.8401 40.6135 40.3235C40.6135 40.4789 40.5777 40.5208 40.4208 40.5177C39.8492 40.5068 39.2792 40.5099 38.7122 40.5177C38.5833 40.5177 38.5444 40.4835 38.5444 40.353C38.5444 37.7642 38.5444 35.1753 38.5444 32.5865C38.5444 32.4622 38.5802 32.4311 38.6998 32.4311C39.29 32.4311 39.8787 32.4311 40.469 32.4311C40.601 32.4311 40.6243 32.4793 40.6166 32.5865C40.601 32.7791 40.6057 32.9701 40.6057 33.2093Z" fill="#273375"/>
+<path d="M49.18 46.7449C49.4623 46.4571 49.7937 46.222 50.1586 46.0506C50.6823 45.8137 51.2689 45.7532 51.83 45.8782C51.948 45.9046 52.0055 45.9434 52.0039 46.0832C51.9925 46.6849 51.9925 47.2871 52.0039 47.8897C52.0039 48.0451 51.9589 48.0544 51.8237 48.0264C51.162 47.896 50.5158 47.9099 49.9147 48.2672C49.8091 48.3317 49.7084 48.4039 49.6134 48.4831C49.4678 48.5911 49.3511 48.7334 49.2739 48.8973C49.1966 49.0613 49.1612 49.2419 49.1707 49.4229C49.1986 50.8892 49.1707 52.354 49.1878 53.8203C49.1878 54.016 49.1303 54.0487 48.9517 54.0455C48.4002 54.0331 47.8472 54.0362 47.2943 54.0455C47.1638 54.0455 47.1172 54.0254 47.1172 53.8778C47.1172 51.3014 47.1172 48.7244 47.1172 46.1469C47.1172 46.004 47.156 45.9714 47.2927 45.9745C47.8643 45.9823 48.436 45.9745 49.0014 45.9745C49.1349 45.9745 49.1924 45.9978 49.18 46.1454C49.1691 46.3287 49.18 46.5151 49.18 46.7449Z" fill="#E20613"/>
+<path d="M62.175 50.0147C62.175 48.7301 62.175 47.4455 62.175 46.1625C62.175 46.0071 62.217 45.9668 62.3707 45.9699C62.9408 45.9792 63.5109 45.9776 64.0794 45.9699C64.2099 45.9699 64.2611 45.9916 64.2596 46.1392C64.2596 48.7208 64.2596 51.3019 64.2596 53.8825C64.2596 53.9974 64.2394 54.0378 64.1042 54.0378C63.5093 54.03 62.9129 54.03 62.3179 54.0378C62.189 54.0378 62.1626 53.9943 62.1626 53.8825C62.173 52.5953 62.1771 51.306 62.175 50.0147Z" fill="#E20714"/>
+<path d="M61.8767 43.3618C61.8792 43.0114 62.0202 42.6761 62.2691 42.4293C62.5179 42.1825 62.8543 42.0442 63.2048 42.0446C63.3858 42.0328 63.5674 42.0584 63.7381 42.1198C63.9088 42.1811 64.0651 42.2769 64.1973 42.4012C64.3295 42.5255 64.4346 42.6756 64.5063 42.8422C64.578 43.0089 64.6147 43.1885 64.6141 43.3699C64.6134 43.5513 64.5755 43.7307 64.5026 43.8968C64.4297 44.063 64.3235 44.2124 64.1905 44.3357C64.0574 44.4591 63.9005 44.5537 63.7293 44.6139C63.5581 44.674 63.3764 44.6983 63.1955 44.6853C62.8455 44.6832 62.5106 44.543 62.2636 44.2951C62.0166 44.0472 61.8775 43.7118 61.8767 43.3618Z" fill="#E20714"/>
+<path d="M66.874 10.1363C66.9643 10.0508 67.0696 9.98289 67.1847 9.93595C67.6244 9.72935 68.0982 9.60511 68.5827 9.56937C68.8432 9.57505 69.0998 9.63482 69.336 9.74489C69.4432 9.78372 69.4494 9.90022 69.4261 9.99964C69.3805 10.1625 69.2801 10.3045 69.1419 10.4019C69.0658 10.4641 69.0145 10.506 69.1155 10.5992C69.2164 10.6924 69.1341 10.7452 69.0502 10.7763C68.9624 10.8035 68.8799 10.8455 68.8064 10.9006C68.651 11.0326 68.7504 11.2112 68.7007 11.3666C68.6929 11.4092 68.6929 11.4529 68.7007 11.4955C68.71 11.8745 68.6728 11.9211 68.2906 11.9413C68.0817 11.9681 67.8694 11.948 67.6693 11.8823C67.7858 11.8667 67.8837 11.859 67.98 11.8419C68.0181 11.8387 68.0533 11.8206 68.0781 11.7915C68.1028 11.7624 68.115 11.7246 68.112 11.6865C68.112 11.6027 68.0344 11.6011 68.0048 11.5654C67.8278 11.3541 67.5186 11.4939 67.3478 11.2951C67.3183 11.2594 67.2422 11.247 67.2577 11.191C67.2732 11.1351 67.3462 11.1165 67.3944 11.1258C67.5901 11.1615 67.6398 11.0046 67.7579 10.913C67.9378 10.7576 68.1306 10.6178 68.3341 10.4951C68.4571 10.4351 68.5665 10.3505 68.6557 10.2466C68.766 10.1115 68.7489 10.0711 68.5827 10.0276C68.0732 9.89401 67.5761 9.97789 67.0806 10.1084C67.0185 10.1286 66.9579 10.1736 66.874 10.1363Z" fill="#9E9E9D"/>
+<path d="M50.738 13.3144C50.7396 13.3031 50.7396 13.2916 50.738 13.2803C50.9128 13.2501 51.0914 13.2501 51.2662 13.2803L50.738 13.3144Z" fill="#9E9E9D"/>
+<path d="M49.7399 20.2921L49.6494 20.3498L49.6104 20.3123L49.7149 20.264L49.7399 20.2921Z" fill="#273375"/>
+<path d="M49.7144 20.2641C49.7502 20.2485 49.7846 20.2219 49.822 20.2641L49.744 20.3015L49.7144 20.2641Z" fill="#273375"/>
+<path d="M49.8222 20.2587L49.8062 20.2347L49.8286 20.2251C49.8241 20.235 49.8204 20.2452 49.8174 20.2555L49.8222 20.2587Z" fill="#273375"/>
+<path d="M48.0244 17.6808C48.0368 17.6125 48.1222 17.6482 48.1315 17.5861C48.1243 17.5785 48.1159 17.5722 48.1067 17.5674C47.549 17.4525 47.0722 17.6777 46.5736 17.889C46.127 18.0871 45.6942 18.3149 45.2781 18.5709C45.1966 18.6152 45.1126 18.6546 45.0265 18.6889C44.9892 18.7044 44.9457 18.7433 44.91 18.6889C44.9047 18.6793 44.9014 18.6687 44.9003 18.6577C44.8992 18.6468 44.9004 18.6358 44.9037 18.6253C44.9071 18.6148 44.9125 18.6051 44.9197 18.5969C44.927 18.5886 44.9358 18.5818 44.9457 18.5771C45.2191 18.4217 45.2408 18.0567 45.5049 17.8781C45.7689 17.6994 45.9818 17.5006 46.2194 17.3111C46.2878 17.2568 46.3608 17.2102 46.3452 17.1045C46.3447 17.0951 46.3465 17.0857 46.3502 17.0771C46.354 17.0685 46.3597 17.0608 46.367 17.0548C46.6932 16.8513 46.7755 16.4133 47.1436 16.258C47.1153 16.2037 47.0679 16.1618 47.0106 16.1403C46.9533 16.1188 46.89 16.1192 46.833 16.1415C46.7882 16.1548 46.7408 16.1572 46.6949 16.1486C46.649 16.14 46.6058 16.1205 46.5689 16.0918C46.6093 15.9986 46.7056 15.9892 46.7833 15.9364C46.6466 15.8417 46.7103 15.7811 46.8112 15.7159C46.9201 15.6715 47.0346 15.6422 47.1514 15.6289C47.2371 15.6167 47.3169 15.5781 47.3797 15.5186C47.2664 15.4906 47.1484 15.4864 47.0333 15.5062C46.8609 15.5062 46.6326 15.5574 46.5456 15.4145C46.4586 15.2716 46.6341 15.1256 46.7118 14.9905C46.8818 14.6772 47.1349 14.4171 47.4434 14.2387C47.4978 14.2076 47.5584 14.1641 47.6127 14.2107C47.6671 14.2573 47.6314 14.335 47.6127 14.3971C47.5724 14.5182 47.4698 14.5773 47.344 14.6425C47.6034 14.6984 47.8442 14.7419 48.0772 14.8087C48.1393 14.8258 48.3055 14.7854 48.248 14.9641C48.2387 14.9905 48.3086 14.9889 48.3443 14.9967C48.4515 15.0215 48.5618 15.0386 48.6705 15.0666C48.7063 15.0759 48.7637 15.0806 48.7622 15.1365C48.7606 15.1924 48.6954 15.166 48.6628 15.2002C49.8682 15.5512 51.0937 15.8215 52.1344 16.6168C51.5996 16.8799 51.0369 17.0821 50.4569 17.2195C50.1089 17.3065 49.7563 17.3748 49.4068 17.4556C49.3781 17.4671 49.3477 17.4739 49.3167 17.4758C49.0061 17.4463 48.7171 17.5798 48.4298 17.6793C48.3658 17.7067 48.2969 17.721 48.2272 17.7213C48.1576 17.7215 48.0886 17.7078 48.0244 17.6808Z" fill="#FEFEFE"/>
+<path d="M48.5884 12.3017C48.4424 12.4461 48.2545 12.443 48.1038 12.5269C48.023 12.5719 48.0292 12.4663 47.9997 12.4057C47.7124 12.6869 47.3784 12.8904 47.0771 13.1405C46.8707 13.3199 46.7027 13.5391 46.5831 13.7851C46.4278 14.0771 46.2818 14.366 45.9913 14.5617C45.9152 14.6114 45.9307 14.7668 45.8453 14.8444C45.822 14.8646 45.8127 14.8988 45.7925 14.9221C45.7474 14.9718 45.6946 15.0417 45.6247 14.9889C45.5548 14.9361 45.6418 14.891 45.6589 14.8429C45.676 14.7947 45.6993 14.7932 45.707 14.7637C45.7148 14.7342 45.822 14.7155 45.7567 14.6425C45.6915 14.5695 45.6511 14.5959 45.5874 14.6425C44.9984 15.0197 44.4461 15.4514 43.9378 15.9318C43.4858 16.3574 43.0664 16.8156 42.6501 17.2754C42.6175 17.3127 42.5973 17.3732 42.5258 17.3639C42.5025 17.2847 42.5693 17.2505 42.6019 17.2086C43.0353 16.634 43.4178 16.0228 43.7452 15.3819C43.7934 15.282 43.8709 15.1991 43.9673 15.1442C44.4551 14.8342 44.8965 14.4567 45.2783 14.0227C45.8742 13.3613 46.5722 12.7997 47.3458 12.3591C47.5347 12.255 47.7449 12.1956 47.9604 12.1856C48.1759 12.1757 48.3907 12.2154 48.5884 12.3017Z" fill="#FEFEFE"/>
+<path d="M48.1969 19.8865C47.4886 20.2329 46.9449 20.7781 46.2428 21.036C45.9189 21.1638 45.6302 21.3673 45.4009 21.6293C45.3792 21.6511 45.3512 21.6868 45.3295 21.6853C44.9924 21.6495 44.8635 21.926 44.6677 22.1124C44.6367 22.1435 44.6196 22.2181 44.5621 22.1792C44.5046 22.1404 44.5217 22.0783 44.5621 22.0239C44.691 21.8686 44.8169 21.7024 44.9365 21.5377C45.0342 21.4081 45.0973 21.2557 45.1198 21.095C45.1198 21.0717 45.1431 21.0298 45.14 21.0267C44.9023 20.8946 45.1508 20.8434 45.1928 20.7952C45.5396 20.3677 46.0318 20.083 46.5752 19.9953C46.7653 19.9626 46.9506 19.9062 47.1266 19.8275C47.2232 19.781 47.3323 19.7673 47.4373 19.7887C47.6719 19.8415 47.9219 19.756 48.1969 19.8865Z" fill="#FEFEFE"/>
+<path d="M49.694 18.0691C49.6704 18.1026 49.6404 18.1311 49.6058 18.153C49.5711 18.1748 49.5325 18.1896 49.4921 18.1965C49.2513 18.2415 49.009 18.2773 48.7667 18.3146C48.7325 18.3146 48.6797 18.3146 48.6657 18.2959C48.6518 18.2773 48.6782 18.2151 48.7046 18.1825C48.7466 18.1372 48.8004 18.1044 48.8599 18.0878C48.9323 18.0748 49.0025 18.0513 49.068 18.0179C49.2886 17.8641 49.4874 17.9185 49.694 18.0691Z" fill="#FEFEFE"/>
+<path d="M47.869 20.8542C47.813 20.994 47.796 21.14 47.6468 21.2037C47.5191 21.2483 47.4021 21.3192 47.3036 21.4119C47.2924 21.423 47.2792 21.4318 47.2647 21.4379C47.2502 21.4439 47.2346 21.447 47.2189 21.447C47.2032 21.447 47.1876 21.4439 47.1731 21.4379C47.1585 21.4318 47.1454 21.423 47.1342 21.4119C47.0814 21.3513 47.1669 21.3218 47.201 21.2876C47.3362 21.1525 47.476 21.0235 47.6111 20.89C47.6349 20.8616 47.6654 20.8396 47.6999 20.8261C47.7343 20.8125 47.7716 20.8078 47.8084 20.8123C47.841 20.8201 47.8674 20.8309 47.869 20.8542Z" fill="#FEFEFE"/>
+<path d="M75.4 35.2318C74.8594 35.2318 74.3204 35.2318 73.7799 35.2318C73.6245 35.2318 73.6245 35.1836 73.6603 35.0609C73.7651 34.7208 73.9723 34.4213 74.2537 34.2034C74.535 33.9854 74.8767 33.8596 75.2322 33.8431C75.7541 33.8136 76.2481 33.8881 76.6675 34.2299C76.9344 34.4472 77.1133 34.7541 77.1708 35.0935C77.1925 35.2069 77.163 35.2318 77.0558 35.2302C76.5044 35.2302 75.9514 35.2318 75.4 35.2318Z" fill="#FEFEFE"/>
+<path d="M77.0527 48.7814C77.1289 48.3921 77.3365 48.0407 77.6407 47.7862C77.945 47.5317 78.3275 47.3895 78.7241 47.3834C79.1346 47.3533 79.545 47.444 79.9046 47.6443C80.0881 47.7497 80.2457 47.8948 80.3659 48.0689C80.486 48.2431 80.5656 48.4419 80.599 48.6509C80.6145 48.7332 80.6254 48.7907 80.5042 48.7891C79.3579 48.7798 78.2115 48.7814 77.0527 48.7814Z" fill="#FEFEFE"/>
+<path d="M41.7239 48.7814C41.1787 48.7814 40.6366 48.7814 40.0883 48.7814C39.9329 48.7814 39.9329 48.7379 39.9718 48.6152C40.0787 48.2589 40.2968 47.9461 40.5942 47.7225C40.8915 47.499 41.2525 47.3763 41.6245 47.3725C42.1046 47.3328 42.5828 47.4692 42.9697 47.7562C43.2448 47.9734 43.4284 48.2861 43.4838 48.6322C43.5056 48.7518 43.4838 48.7876 43.3596 48.7798C42.8143 48.7782 42.2691 48.7814 41.7239 48.7814Z" fill="#FEFEFE"/>
+<path d="M49.2857 37.5353C49.3975 37.992 49.1303 38.2732 48.8197 38.5372C48.5806 38.7644 48.2904 38.9307 47.9735 39.0221C47.6567 39.1134 47.3225 39.1272 46.9992 39.0622C46.8285 39.0379 46.6711 38.9565 46.5526 38.8313C46.4341 38.706 46.3616 38.5443 46.3468 38.3726C46.3261 38.2082 46.3574 38.0415 46.4362 37.8959C46.5151 37.7502 46.6375 37.6328 46.7864 37.5602C47.1064 37.4112 47.4494 37.3177 47.8007 37.2837C48.2403 37.2076 48.6799 37.1392 49.1179 37.0569C49.2515 37.0336 49.295 37.0678 49.281 37.2014C49.2779 37.3117 49.2857 37.425 49.2857 37.5353Z" fill="#FEFEFE"/>
+</symbol>
+
+<symbol id="fabriqueDeTerritoire" viewBox="0 0 120 56" fill="none" stroke="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M67.2273 20.667H65.6731V24.4108H67.2273C68.0184 24.4108 68.6205 24.2445 69.0371 23.9102C69.4536 23.5759 69.6602 23.0823 69.6602 22.4278C69.6602 21.7732 69.4519 21.3164 69.0371 21.0573C68.6223 20.7965 68.0184 20.667 67.2273 20.667ZM67.4723 18.2727L67.6229 18.2744C68.2757 18.2832 68.89 18.3514 69.4659 18.4774C70.0855 18.614 70.628 18.8415 71.0919 19.1635C71.5557 19.4838 71.9232 19.9109 72.1963 20.4412C72.4693 20.9733 72.6058 21.6349 72.6058 22.426C72.6058 23.4079 72.3905 24.2165 71.9617 24.8501C71.5329 25.4837 70.9571 25.958 70.2342 26.2713L73.2604 31.6096H69.8859L67.3288 26.8016H65.6731V31.6096H62.6662V18.2727H67.4723ZM60.8687 18.2727V20.8105H55.5304V23.4902H60.0705V26.007H55.5304V29.0752H61.0717V31.6113H52.5235V18.2744H60.8687V18.2727ZM50.4407 18.2727V31.6096H47.4337V18.2727H50.4407ZM46.4133 18.2727V20.8105H42.7536V31.6113H39.7274V20.8105H36.0676V18.2727H46.4133ZM78.3309 18.0276C79.108 18.0276 79.8746 18.1782 80.6307 18.4774C81.3868 18.7767 82.0519 19.2143 82.6242 19.7866L81.091 21.6892L80.9983 21.6174C80.5939 21.3111 80.1879 21.0731 79.7836 20.9015C79.3478 20.7178 78.863 20.625 78.3309 20.625C77.8128 20.625 77.3997 20.73 77.0935 20.9418C76.7872 21.1536 76.6331 21.4494 76.6331 21.8309C76.6331 22.0357 76.6839 22.209 76.7872 22.3525C76.8887 22.496 77.0322 22.6255 77.216 22.7411C77.3997 22.8566 77.615 22.9668 77.8601 23.0683C78.1051 23.1699 78.3711 23.2836 78.6582 23.4061L80.3752 24.101L80.4679 24.1395C81.2415 24.4633 81.8541 24.9009 82.3074 25.4504C82.7783 26.0228 83.0128 26.7806 83.0128 27.7205C83.0128 28.2788 82.9008 28.8074 82.675 29.3062C82.4492 29.8033 82.1237 30.2409 81.6931 30.6154C81.2643 30.99 80.7357 31.291 80.1074 31.5151C79.4808 31.7408 78.7719 31.8528 77.9808 31.8528C77.1075 31.8528 76.2393 31.6918 75.373 31.3715C74.5066 31.0512 73.733 30.5699 73.0521 29.9293L74.7691 27.864L74.8654 27.9445C75.317 28.3173 75.814 28.6236 76.3549 28.8669C76.9342 29.126 77.503 29.2555 78.0631 29.2555C78.6897 29.2555 79.157 29.14 79.4633 28.9072C79.7696 28.6761 79.9236 28.3611 79.9236 27.9655C79.9236 27.7608 79.8799 27.584 79.7906 27.4335C79.7013 27.2829 79.5718 27.1499 79.402 27.0344C79.2323 26.9189 79.0275 26.8086 78.7877 26.7071C78.5497 26.6056 78.2871 26.4918 78.0001 26.3693L76.2621 25.6325L76.1483 25.5852C75.8473 25.4557 75.555 25.2947 75.2697 25.1004C74.9494 24.8816 74.6624 24.6261 74.4103 24.3338C74.1583 24.0397 73.957 23.7002 73.8065 23.3116C73.656 22.9231 73.5807 22.4838 73.5807 21.9919C73.5807 21.4459 73.6962 20.9313 73.929 20.4482C74.16 19.9634 74.4873 19.5416 74.9109 19.1793C75.3327 18.8187 75.835 18.5352 76.4144 18.3304C76.9972 18.1309 77.6343 18.0276 78.3309 18.0276ZM76.4336 33.274L77.5993 35.7909L77.6745 35.9484C77.7988 36.2145 77.9248 36.4928 78.0491 36.7815C78.1996 37.1299 78.3694 37.5149 78.5602 37.9367H78.6424L78.6914 37.7967C78.8245 37.4291 78.954 37.0896 79.0817 36.7798C79.2253 36.4315 79.3653 36.1007 79.5018 35.7874L80.566 33.2706H83.7759L80.3192 39.8987L83.9999 46.6092H80.6465L79.318 43.8893L79.1553 43.5358C79.0485 43.3012 78.9417 43.0667 78.8367 42.8357C78.6792 42.4874 78.5059 42.1093 78.3151 41.6998H78.2329L78.1769 41.852C78.0456 42.2038 77.9143 42.5311 77.7831 42.8357C77.6325 43.184 77.4838 43.534 77.3332 43.8893L76.0853 46.6092H72.8544L76.5561 39.757L73.0801 33.2723H76.4336V33.274ZM59.6522 33.274V35.8102H54.314V38.4898H58.8541V41.0067H54.314V44.0748H59.8553V46.6109H51.307V33.274H59.6522ZM49.0107 33.274V46.6109H46.0038V33.274H49.0107ZM39.2688 33.274V44.0748H44.5458V46.6109H36.2637V33.274H39.2688ZM64.6072 33.274V40.8386C64.6159 42.0953 64.8137 42.9774 65.2005 43.4815C65.5961 43.9996 66.1684 44.2586 66.9175 44.2586C67.6666 44.2586 68.2459 43.9996 68.6555 43.4815C69.0651 42.9634 69.2698 42.0498 69.2698 40.7406V33.274H72.1735V40.5516C72.1578 42.7271 71.7114 44.3181 70.8346 45.3228C69.9419 46.3449 68.6363 46.8577 66.9175 46.8577C65.1865 46.8577 63.8633 46.3467 62.9497 45.3228C62.0361 44.3006 61.5793 42.6711 61.5793 40.4343V33.274H64.6072Z" fill="#4232C5"/>
+<path d="M65.7327 50.1237H52.9559V53.4072H65.7327V50.1237Z" fill="#E8336D"/>
+<path d="M77.9546 13.3755C78.0141 13.1059 78.0701 12.8697 78.1226 12.6684C78.1751 12.4653 78.2399 12.2781 78.3169 12.103C78.3939 11.928 78.4989 11.76 78.6355 11.5972C78.7702 11.4344 78.9575 11.2524 79.192 11.0494C79.1693 11.3189 79.1325 11.557 79.0853 11.7652C79.038 11.9735 78.968 12.1661 78.8735 12.3463C78.779 12.5266 78.6582 12.6999 78.5112 12.8697C78.3642 13.0394 78.1786 13.2075 77.9546 13.3755ZM78.8875 16.9547C79.0818 16.9547 79.3181 16.932 79.5981 16.8865C79.8781 16.841 80.1722 16.7727 80.4802 16.6799C80.7883 16.5889 81.0998 16.4734 81.4131 16.3369C81.7264 16.2004 82.0064 16.0429 82.2515 15.8661C82.4965 15.6893 82.696 15.4898 82.8501 15.2657C83.0041 15.0435 83.0811 14.8054 83.0811 14.5551C83.0811 14.4641 83.0688 14.3731 83.0461 14.2804C83.0233 14.1893 82.9551 14.1438 82.8413 14.1438C82.7275 14.1438 82.619 14.1858 82.5158 14.2716C82.4125 14.3574 82.3162 14.4571 82.2252 14.5709C82.1342 14.6847 82.0449 14.7967 81.9592 14.9052C81.8734 15.0137 81.8017 15.096 81.7457 15.1537C81.3343 15.4845 80.8845 15.7243 80.3927 15.8731C79.9026 16.0218 79.3881 16.0954 78.8507 16.0954C78.6687 16.0954 78.4989 16.0866 78.3449 16.0691C78.1909 16.0516 78.0544 16.0061 77.9336 15.9326C77.8146 15.8591 77.7201 15.7576 77.6518 15.6333C77.5836 15.5073 77.5486 15.3428 77.5486 15.1362V15.1012C77.5486 15.0662 77.5608 15.0102 77.5836 14.9297C77.6063 14.8492 77.6238 14.7932 77.6343 14.7582C78.0001 14.4501 78.3257 14.1561 78.611 13.876C78.8963 13.596 79.1395 13.2967 79.3391 12.9764C79.5386 12.6561 79.6874 12.3078 79.7836 11.9315C79.8799 11.5552 79.9289 11.1212 79.9289 10.6293C79.9289 10.5838 79.9254 10.5016 79.9201 10.3808C79.9149 10.26 79.9114 10.1778 79.9114 10.1323C79.8659 10.0062 79.8116 9.88898 79.7486 9.78046C79.6856 9.67195 79.5806 9.61769 79.4318 9.61769C79.0328 9.61769 78.6985 9.70695 78.4307 9.88373C78.1629 10.0605 77.9424 10.2863 77.7708 10.5611C77.5993 10.8359 77.4663 11.1317 77.3683 11.452C77.272 11.7722 77.188 12.0698 77.1197 12.3428C77.097 12.4111 77.0655 12.5406 77.0252 12.7279C76.985 12.9169 76.9395 13.1129 76.8887 13.3195C76.838 13.526 76.7854 13.7168 76.7347 13.8935C76.6839 14.0703 76.6454 14.1928 76.6227 14.2628L76.5369 15.446C76.6857 16.0516 76.9622 16.4542 77.3683 16.6537C77.7761 16.855 78.2819 16.9547 78.8875 16.9547ZM70.7226 16.9547C70.8696 16.9547 70.9974 16.9512 71.1041 16.946C71.2109 16.9407 71.3159 16.925 71.4174 16.9022C71.5189 16.8795 71.6327 16.8532 71.757 16.8235C71.8812 16.7937 72.0335 16.7517 72.2155 16.6939C72.3521 16.6362 72.5638 16.5522 72.8509 16.4419C73.1397 16.3316 73.4355 16.2196 73.7418 16.1041C74.0463 15.9886 74.3333 15.8783 74.5976 15.7751C74.8637 15.6718 75.0352 15.607 75.1157 15.5843C75.3992 15.4565 75.695 15.3007 76.0066 15.1152C76.3181 14.9297 76.6034 14.7162 76.8625 14.4729C77.1232 14.2296 77.3403 13.9583 77.5153 13.6573C77.6903 13.3562 77.7778 13.0219 77.7778 12.6509C77.7778 12.5354 77.7586 12.4163 77.7183 12.2956C77.6781 12.1748 77.5853 12.1135 77.4383 12.1135C77.2808 12.1135 77.1617 12.1713 77.0812 12.2868C77.0025 12.4023 76.9307 12.5389 76.8695 12.6946C76.8064 12.8504 76.7504 13.0097 76.6997 13.1707C76.6489 13.3317 76.5894 13.4595 76.5212 13.5522C76.2271 13.8883 75.8316 14.2086 75.3345 14.5149C74.8374 14.8212 74.3088 15.0837 73.7488 15.3042C73.1887 15.5248 72.6321 15.6998 72.0773 15.8328C71.5224 15.9658 71.0429 16.0324 70.6351 16.0324C70.6123 16.0324 70.5336 16.0289 70.397 16.0236C70.2605 16.0183 70.1765 16.0149 70.1432 16.0149C70.0522 15.9571 69.9542 15.8993 69.8457 15.8416C69.7389 15.7838 69.6724 15.6963 69.6514 15.5808V15.425C69.6514 15.355 69.6479 15.2867 69.6427 15.2167C69.6374 15.1467 69.6339 15.0785 69.6339 15.0085V14.8527C69.6339 14.4834 69.6759 14.1648 69.7617 13.8988C69.8457 13.6328 69.9647 13.3842 70.1187 13.1532C70.271 12.9222 70.4495 12.6929 70.6526 12.4688C70.8556 12.2431 71.0761 11.9858 71.3142 11.697C71.3247 11.6742 71.3509 11.6427 71.3912 11.6025C71.4314 11.5622 71.4559 11.536 71.4682 11.5237H71.5364C71.6275 11.5465 71.701 11.5867 71.757 11.6445C71.813 11.7022 71.8672 11.76 71.918 11.8178C71.9688 11.8755 72.0283 11.9245 72.0965 11.9648C72.1648 12.005 72.2435 12.026 72.3346 12.026C72.4816 12.026 72.6111 11.9963 72.7249 11.9385C72.8386 11.8808 72.8946 11.7775 72.8946 11.627C72.8946 11.4887 72.8684 11.3347 72.8176 11.1667C72.7669 10.9986 72.6934 10.8394 72.5971 10.6906C72.5008 10.5418 72.3906 10.4123 72.2663 10.309C72.142 10.2058 72.0003 10.1533 71.8427 10.1533C71.764 10.1533 71.7045 10.162 71.6642 10.1795C71.624 10.197 71.5907 10.2198 71.5627 10.2495C71.5347 10.2793 71.4997 10.3073 71.4612 10.337C71.4209 10.3668 71.3737 10.3983 71.3177 10.4316C71.1024 10.351 70.8504 10.4141 70.5633 10.6223C70.2763 10.8306 69.9927 11.1247 69.7144 11.5062C69.4379 11.8878 69.1946 12.3446 68.9846 12.8767C68.7746 13.4087 68.6433 13.9688 68.5855 14.5586C68.6083 14.9524 68.6555 15.2955 68.729 15.5913C68.8026 15.8871 68.9181 16.1339 69.0773 16.3369C69.2349 16.5399 69.4484 16.6922 69.7127 16.7972C69.9787 16.9022 70.3148 16.9547 70.7226 16.9547ZM61.7998 16.9547C61.8733 16.9547 61.9451 16.946 62.0133 16.9285C62.0816 16.911 62.1411 16.8847 62.1919 16.8497C62.2426 16.8147 62.2636 16.7622 62.2514 16.6922C62.2619 16.5977 62.2846 16.4454 62.3196 16.2354C62.3529 16.0254 62.3914 15.8013 62.4299 15.5685C62.4702 15.334 62.5122 15.1117 62.5577 14.9017C62.6032 14.6917 62.6364 14.5446 62.6592 14.4624C62.7274 14.2278 62.8377 13.9303 62.9917 13.5663C63.1458 13.2039 63.3278 12.8451 63.5378 12.4951C63.7478 12.1433 63.9876 11.8458 64.2537 11.599C64.5214 11.3522 64.791 11.2297 65.064 11.2297V11.809L64.3989 15.2167V15.4443C64.3989 15.6315 64.4077 15.8066 64.4252 15.9711C64.4427 16.1356 64.4812 16.2844 64.5442 16.4192C64.6072 16.5539 64.7 16.6624 64.826 16.7447C64.9503 16.827 65.1218 16.8672 65.3371 16.8672C65.5523 16.8672 65.8149 16.827 66.1212 16.7447C66.4275 16.6624 66.7443 16.5522 67.0681 16.4104C67.3919 16.2704 67.7209 16.1006 68.057 15.9011C68.393 15.7016 68.687 15.4915 68.9443 15.2692C69.1999 15.047 69.4099 14.8089 69.5744 14.5586C69.7389 14.3066 69.8212 14.0528 69.8212 13.7938C69.8212 13.7115 69.7949 13.645 69.7442 13.5925C69.6934 13.54 69.6269 13.5137 69.5482 13.5137H69.4799C69.2524 13.7833 68.9846 14.0616 68.6783 14.3486C68.372 14.6357 68.0412 14.8894 67.6894 15.1135C67.3376 15.3358 66.97 15.5213 66.5902 15.6665C66.2087 15.8136 65.8429 15.8853 65.4911 15.8853V14.4624L66.1387 11.459V11.3889C66.1387 11.3662 66.1422 11.3504 66.1474 11.3452L66.1509 11.3399C66.1544 11.3329 66.1562 11.3189 66.1562 11.3014C66.1562 10.9741 66.0617 10.7046 65.8744 10.4928C65.6871 10.2828 65.4281 10.176 65.099 10.176C64.9398 10.176 64.7717 10.2163 64.5967 10.2985C64.4199 10.3808 64.2694 10.4806 64.1451 10.5978C64.1119 10.6451 64.0366 10.7203 63.9229 10.8254C63.8091 10.9304 63.6866 11.0424 63.5571 11.1597C63.4258 11.2769 63.3033 11.3872 63.1913 11.494C63.0775 11.599 62.9987 11.669 62.9532 11.704V10.5086C62.9532 10.4036 62.8937 10.3178 62.7747 10.253C62.6557 10.1883 62.5507 10.1568 62.4597 10.1568C62.4264 10.1568 62.3634 10.1603 62.2724 10.1655C62.1814 10.1708 62.1184 10.197 62.0851 10.2443L61.7438 12.5809V13.0727L61.1592 16.5854V16.6379C61.1592 16.778 61.21 16.8655 61.3132 16.9022C61.4148 16.9372 61.518 16.9547 61.6195 16.9547H61.7998ZM53.5579 16.0604V15.579L53.9727 13.4927C53.985 13.4577 54.0042 13.4122 54.0322 13.3597C54.0602 13.3055 54.0952 13.2495 54.1355 13.1899C54.1757 13.1304 54.2125 13.0797 54.2475 13.0377C54.2825 12.9957 54.3052 12.9747 54.3157 12.9747C54.3735 12.9152 54.4803 12.8031 54.6343 12.6369C54.7883 12.4706 54.9563 12.2921 55.1349 12.1013C55.3134 11.9105 55.4832 11.7355 55.6442 11.5762C55.8052 11.4169 55.9207 11.3067 55.989 11.2472C56.0117 11.2349 56.0607 11.2297 56.136 11.2297H56.283C56.4563 11.2297 56.5928 11.2419 56.6978 11.2647C56.8011 11.2892 56.9271 11.3662 57.0776 11.4957C57.0776 11.5202 57.0811 11.5552 57.0864 11.6025L57.0899 11.6287C57.0934 11.6637 57.0951 11.69 57.0951 11.7092C57.0951 12.054 57.0514 12.3901 56.9656 12.7156C56.8799 13.0429 56.8309 13.3842 56.8186 13.7413C56.6803 13.9548 56.4843 14.1963 56.2323 14.4624C55.9785 14.7302 55.6984 14.9822 55.3869 15.2202C55.0754 15.4583 54.7603 15.6578 54.4383 15.8171C54.1145 15.9798 53.8222 16.0604 53.5579 16.0604ZM53.4214 16.9547C53.7312 16.9547 54.0357 16.8917 54.3333 16.764C54.6308 16.6362 54.9231 16.4857 55.2101 16.3124C55.4972 16.1391 55.772 15.9466 56.0362 15.7383C56.3005 15.53 56.5473 15.3323 56.7766 15.1467C56.7538 15.3673 56.7573 15.579 56.7854 15.7821C56.8134 15.9851 56.8694 16.1584 56.9481 16.3036C57.0286 16.4489 57.1494 16.5644 57.3087 16.6519C57.4697 16.7395 57.6762 16.7832 57.9283 16.7832C58.0893 16.7832 58.2696 16.7622 58.4708 16.7219C58.6721 16.6817 58.8751 16.6257 59.0817 16.5574C59.2882 16.4874 59.4895 16.4157 59.6838 16.3404C59.878 16.2651 60.0566 16.1811 60.2176 16.0884C60.3086 16.0534 60.4609 15.9781 60.6727 15.8626C60.8844 15.7471 61.112 15.6245 61.3517 15.4968C61.5933 15.369 61.8191 15.2535 62.0308 15.1485C62.2426 15.0435 62.3896 14.9629 62.4702 14.9052C62.5279 14.8579 62.5594 14.8089 62.5647 14.7564C62.5699 14.7039 62.5734 14.6497 62.5734 14.5919C62.5734 14.4764 62.5367 14.3836 62.4614 14.3136C62.3861 14.2436 62.2916 14.2086 62.1779 14.2086C62.1656 14.2086 62.1464 14.2121 62.1184 14.2173L62.0991 14.2208C62.0816 14.2243 62.0676 14.2261 62.0589 14.2261L58.7911 15.7576C58.6756 15.8048 58.5653 15.8293 58.4551 15.8363C58.3448 15.8433 58.2346 15.8451 58.119 15.8451C58.0963 15.8451 58.0385 15.8416 57.9475 15.8363C57.8565 15.8311 57.7987 15.8276 57.776 15.8276C57.7637 15.8048 57.7497 15.7383 57.7322 15.628C57.7147 15.5178 57.7007 15.4513 57.6885 15.4285V15.3235C57.6885 15.0102 57.72 14.7109 57.783 14.4274C57.846 14.1438 57.9143 13.8568 57.9895 13.5663C58.0648 13.2757 58.133 12.9887 58.1961 12.7051C58.2591 12.4216 58.2906 12.1275 58.2906 11.8265C58.2906 11.606 58.2713 11.3854 58.2311 11.1649C58.1908 10.9444 58.1225 10.7466 58.0245 10.5733C57.9265 10.4001 57.7952 10.2565 57.629 10.1463C57.4627 10.036 57.2527 9.98174 57.0006 9.98174H56.6908C56.003 10.0623 55.3694 10.2863 54.7901 10.6521C54.2107 11.0179 53.7347 11.4695 53.3619 12.0085C52.9891 12.5476 52.7318 13.1532 52.5883 13.827C52.4447 14.4991 52.471 15.1835 52.6653 15.8801V16.4192C52.723 16.6047 52.8193 16.7412 52.9576 16.8287C53.0958 16.911 53.2498 16.9547 53.4214 16.9547ZM49.2103 16.9547C49.3713 16.9547 49.6023 16.9022 49.9051 16.7972C50.2079 16.6922 50.5405 16.5522 50.901 16.3754C51.2616 16.2004 51.6309 16.0043 52.0089 15.7873C52.387 15.5703 52.73 15.3515 53.0398 15.1292C53.3496 14.9069 53.6016 14.6899 53.7959 14.4799C53.9902 14.2699 54.0882 14.0931 54.0882 13.9531C54.0882 13.9181 54.083 13.8655 54.0707 13.7955C54.0585 13.7255 54.0357 13.6905 54.0025 13.6905H53.4879C53.3969 13.7605 53.3111 13.8305 53.2306 13.9005C53.1476 13.9674 53.071 14.0257 53.0008 14.0764C52.9348 14.1242 52.8744 14.165 52.8193 14.1998C52.751 14.2471 52.6793 14.2961 52.604 14.3486C52.5287 14.4011 52.4692 14.4694 52.4237 14.5499L50.9133 15.4985C50.7872 15.5213 50.6665 15.5598 50.5527 15.6123C50.4389 15.6648 50.3217 15.7208 50.2009 15.7786C50.0801 15.8363 49.9629 15.8906 49.8491 15.9361C49.7353 15.9816 49.6093 16.0061 49.4711 16.0061C49.4133 16.0061 49.3538 16.0026 49.2908 15.9973C49.2278 15.9921 49.2015 15.9361 49.2138 15.8311V15.3743C49.2138 15.1397 49.24 14.8789 49.2908 14.5936C49.3415 14.3066 49.394 14.0196 49.4448 13.7325C49.4956 13.4455 49.5481 13.1619 49.5988 12.8802C49.6496 12.5984 49.6758 12.3481 49.6758 12.1258C49.6758 11.8808 49.6321 11.69 49.5463 11.5552C49.4606 11.4204 49.3153 11.2944 49.1088 11.1772C48.925 11.0826 48.7132 10.9951 48.4734 10.9146C48.2336 10.8341 48.0061 10.7571 47.7943 10.6871C47.5825 10.6171 47.4058 10.5523 47.2622 10.4946C47.1187 10.4368 47.054 10.3825 47.0645 10.337C46.9507 10.337 46.8527 10.3773 46.7722 10.4596C46.6917 10.5418 46.6234 10.6381 46.5656 10.7501C46.5079 10.8621 46.4659 10.9811 46.4361 11.1107C46.4081 11.2402 46.3924 11.3504 46.3924 11.445C46.3924 11.5395 46.3959 11.6182 46.4011 11.6812C46.4064 11.746 46.4326 11.8195 46.4781 11.9C46.3521 12.2168 46.2611 12.5056 46.2033 12.7699C46.1456 13.0324 46.0721 13.2827 45.9793 13.5155C45.8883 13.75 45.764 13.9846 45.61 14.2173C45.456 14.4519 45.218 14.6917 44.8977 14.9367C44.8854 15.1467 44.8924 15.3077 44.9152 15.4198C44.9379 15.5318 44.9694 15.6123 45.0097 15.6648C45.0499 15.7173 45.0902 15.7488 45.1304 15.7611C45.1707 15.7733 45.1969 15.7786 45.2074 15.7786C45.6538 15.4618 45.9723 15.1397 46.1613 14.8124C46.3504 14.4851 46.4939 14.1561 46.5901 13.8288C46.6864 13.5015 46.7844 13.1847 46.8824 12.8802C46.9805 12.5756 47.1537 12.2886 47.4058 12.019C47.4058 12.0313 47.488 12.075 47.6543 12.1503C47.8206 12.2256 48.0008 12.3148 48.1951 12.4128C48.3894 12.5126 48.5697 12.6036 48.736 12.6841C48.9022 12.7664 48.9845 12.8136 48.9845 12.8241C48.9845 12.9642 48.9442 13.1514 48.8637 13.386C48.7832 13.6205 48.6922 13.8603 48.5889 14.1053C48.4857 14.3504 48.3947 14.5919 48.3141 14.8247C48.2336 15.0592 48.1934 15.2395 48.1934 15.369C48.1934 15.544 48.2074 15.7226 48.2371 15.9046C48.2651 16.0866 48.3194 16.2529 48.3999 16.4052C48.4804 16.5574 48.5837 16.6869 48.7097 16.792C48.8392 16.9022 49.0055 16.9547 49.2103 16.9547ZM38.2817 16.7762C38.4007 16.7762 38.483 16.7412 38.5302 16.6729L39.5209 14.8334L40.5115 11.5657L40.6831 10.225H41.0069C41.0979 10.225 41.1924 10.2215 41.2886 10.2163C41.3849 10.211 41.4672 10.2075 41.5372 10.2075C42.015 10.2075 42.4911 10.239 42.9636 10.302C43.4362 10.365 43.9 10.3966 44.3551 10.3966C44.5038 10.3966 44.6544 10.351 44.8084 10.2583C44.9624 10.1673 45.0394 10.0342 45.0394 9.86272C45.0394 9.72445 44.9817 9.62469 44.8679 9.56168C44.7541 9.49867 44.6194 9.45317 44.4671 9.42341C44.3131 9.39541 44.1626 9.37966 44.0138 9.37966H40.9228C40.8318 9.40241 40.7828 9.38841 40.7776 9.3359C40.7723 9.28339 40.7688 9.23614 40.7688 9.18888C40.7688 8.73031 40.7828 8.2805 40.8108 7.83944L40.8266 7.5734C40.8441 7.2181 40.8546 6.8558 40.8546 6.48999C40.8546 6.20295 40.8406 5.92291 40.8126 5.64812C40.7846 5.37334 40.7706 5.09855 40.7706 4.82201V4.70124L44.9222 4.35644C45.0587 4.34419 45.2074 4.28468 45.3667 4.17617C45.526 4.06765 45.6065 3.93813 45.6065 3.78936C45.6065 3.77711 45.603 3.75786 45.5978 3.72985L45.5943 3.7106C45.5908 3.6931 45.589 3.6791 45.589 3.67035C45.554 3.63534 45.512 3.58458 45.4612 3.51632C45.4105 3.44806 45.3475 3.3728 45.274 3.29229C45.2004 3.21178 45.1199 3.14352 45.0342 3.08576C44.9484 3.028 44.8609 3 44.7699 3C44.6561 3 44.5879 3.02625 44.5651 3.07701C44.5424 3.12777 44.5336 3.19253 44.5389 3.26604C44.5441 3.3413 44.5441 3.41306 44.5389 3.48132C44.5336 3.54958 44.5021 3.58983 44.4443 3.60208C43.921 3.70535 43.3819 3.77186 42.8306 3.79986C42.2775 3.82787 41.7402 3.84362 41.2169 3.84362C41.0349 3.84362 40.8668 3.82612 40.7128 3.79286C40.5588 3.75786 40.4083 3.7211 40.2595 3.68085C40.1107 3.64059 39.9602 3.60033 39.8062 3.56008C39.6522 3.51982 39.5016 3.50057 39.3529 3.50057C39.3301 3.50057 39.2881 3.50407 39.2251 3.50932L39.1953 3.51282C39.1481 3.51632 39.1166 3.51807 39.0973 3.51807C39.0518 3.57583 39.0256 3.63009 39.0203 3.68085C39.0151 3.7316 39.0116 3.78761 39.0116 3.84362C39.0116 3.96964 39.0343 4.06765 39.0798 4.13591C39.1253 4.20417 39.1831 4.26718 39.2514 4.32494C39.3196 4.3827 39.3914 4.4457 39.4649 4.51396C39.5384 4.58222 39.6154 4.66799 39.6959 4.77125C39.7992 4.92002 39.8674 5.09155 39.9007 5.28757C39.934 5.4836 39.9585 5.67963 39.969 5.88091C39.9812 6.08219 39.9812 6.28172 39.969 6.48299C39.9567 6.68427 39.9515 6.86455 39.9515 7.02557C39.9515 7.17434 39.9567 7.35812 39.969 7.57515C39.9812 7.79218 39.983 8.01446 39.9777 8.23674C39.9725 8.46078 39.9515 8.67606 39.9182 8.88083C39.8849 9.08561 39.8324 9.25364 39.7642 9.37966C39.4334 9.40241 39.0746 9.43041 38.6878 9.46542C38.301 9.50042 37.9072 9.53368 37.5099 9.56868C37.1126 9.60369 36.7135 9.62644 36.3144 9.63694C35.9154 9.64744 35.5461 9.64919 35.2048 9.63694C35.1015 9.61419 35.042 9.63694 35.0263 9.7052C35.0105 9.77346 35 9.83122 35 9.87673C35 9.95724 35.0088 10.0255 35.0263 10.0833C35.0438 10.141 35.1033 10.1865 35.2048 10.2215C35.3185 10.2443 35.4131 10.2583 35.4866 10.2653C35.5601 10.2723 35.6353 10.2775 35.7088 10.2828C35.7824 10.288 35.8576 10.2915 35.9311 10.2915H36.1954C36.731 10.2915 37.2631 10.2793 37.7934 10.2565C38.3237 10.2338 38.8558 10.2215 39.3914 10.2215C39.4824 10.2215 39.5559 10.2303 39.6137 10.2478C39.6714 10.2653 39.6994 10.3248 39.6994 10.4281C39.6994 10.8516 39.6574 11.2682 39.5717 11.6742C39.4859 12.0803 39.3774 12.4828 39.2479 12.8784C39.1183 13.274 38.9661 13.6608 38.7945 14.0388C38.623 14.4169 38.4532 14.7897 38.2817 15.1572C38.2135 15.2832 38.1452 15.3918 38.0769 15.4845C38.0087 15.5773 37.9457 15.6648 37.8897 15.7506C37.8336 15.8363 37.7846 15.9343 37.7444 16.0429C37.7041 16.1514 37.6849 16.2914 37.6849 16.4647C37.6849 16.5329 37.6884 16.5872 37.6936 16.6274C37.6989 16.6677 37.7251 16.7167 37.7706 16.7745H38.2817V16.7762Z" fill="#E8336D"/>
+</symbol>
+
+<symbol id="espacePublicNumeriqueepn" viewBox="0 0 120 56" fill="none" stroke="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M40.0664 21.1289V25.8184H46.6836V28.8398H40.0664V34.8418H49.1445V38H36.5117V17.9707H49.2949V21.1289H40.0664ZM56.0078 30.6309V38H52.4531V17.9844C54.8229 17.8841 56.2083 17.834 56.6094 17.834C59.7721 17.834 62.0827 18.3216 63.541 19.2969C65.0085 20.263 65.7422 21.776 65.7422 23.8359C65.7422 28.4297 63.0352 30.7266 57.6211 30.7266C57.2201 30.7266 56.6823 30.6947 56.0078 30.6309ZM56.0078 21.0605V27.4727C56.6094 27.5365 57.0833 27.5684 57.4297 27.5684C59.0521 27.5684 60.237 27.2995 60.9844 26.7617C61.7318 26.2148 62.1055 25.3307 62.1055 24.1094C62.1055 22.0312 60.4329 20.9922 57.0879 20.9922C56.7142 20.9922 56.3542 21.015 56.0078 21.0605ZM82.0254 38.2734L72.3047 25.5996V38.0137H68.8867V17.9707H70.5957L80.0566 30.0566V17.9707H83.4746V38.2734H82.0254Z" fill="#D50000"/>
+</symbol>
+
+<symbol id="aidantsConnect" viewBox="0 0 120 56" fill="none" stroke="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M31.6926 35.1771C31.4886 34.8727 31.2845 34.5974 31.0367 34.3365C30.2787 33.5249 29.3458 33.0611 28.2234 33.0032C26.5471 32.9307 25.1914 33.5249 24.3168 35.0032C23.3548 36.6264 23.588 38.8582 24.827 40.2061C25.585 41.0322 26.5471 41.4235 27.6549 41.4959C28.7773 41.5684 29.7685 41.2785 30.6285 40.5539C30.993 40.2351 31.3136 39.8872 31.576 39.4669C31.6635 39.3365 31.7072 39.351 31.8238 39.4235C32.4069 39.8438 32.99 40.2496 33.573 40.6553C33.6897 40.7278 33.6751 40.7858 33.6168 40.8872C32.611 42.5104 31.1533 43.4959 29.2729 43.8438C27.4217 44.1916 25.6579 43.9017 24.069 42.8872C22.3198 41.7568 21.2849 40.1336 21.0516 38.0611C20.8184 36.0322 21.3723 34.2351 22.7717 32.7278C23.8649 31.5394 25.2497 30.8582 26.8386 30.6264C28.2234 30.4235 29.5499 30.5684 30.8326 31.1481C32.0279 31.6843 32.9608 32.5249 33.6459 33.6409C33.6897 33.6988 33.748 33.7568 33.6313 33.8293C32.9754 34.264 32.334 34.7278 31.6926 35.1771Z" fill="#003188"/>
+<path d="M61.4437 34.8727C61.5603 34.7713 61.6623 34.6843 61.7644 34.6119C62.6244 33.9597 63.601 33.7423 64.6506 33.8148C65.5397 33.8727 66.3269 34.1771 66.9537 34.8293C67.5368 35.438 67.8283 36.1771 67.9303 36.9887C67.9741 37.2496 67.9741 37.5104 67.9741 37.7713C67.9741 39.6988 67.9741 41.6409 67.9741 43.5684C67.9741 43.7278 67.9303 43.7568 67.7846 43.7568C67.0266 43.7423 66.254 43.7423 65.496 43.7568C65.3502 43.7568 65.3065 43.7133 65.3211 43.5684C65.3211 41.7133 65.3211 39.8582 65.3211 38.0177C65.3211 37.1916 64.8546 36.5104 64.1258 36.293C62.9305 35.9452 61.6769 36.6119 61.6623 38.0611C61.6478 39.8872 61.6623 41.7133 61.6623 43.5539C61.6623 43.7278 61.6186 43.7568 61.4437 43.7568C60.6711 43.7423 59.8986 43.7423 59.1406 43.7568C59.0094 43.7568 58.9802 43.7278 58.9802 43.5974C58.9802 40.4669 58.9802 37.322 58.9802 34.1916C58.9802 34.0611 59.024 34.0322 59.1406 34.0322C59.8548 34.0322 60.5691 34.0322 61.2688 34.0322C61.4 34.0322 61.4291 34.0756 61.4291 34.1916C61.4291 34.3945 61.4437 34.6119 61.4437 34.8727Z" fill="#003188"/>
+<path d="M66.2687 20.0467C66.3853 19.9452 66.4727 19.8727 66.5602 19.8003C67.5223 19.0612 68.6155 18.8438 69.7962 19.0177C70.8895 19.1626 71.7349 19.6988 72.2888 20.6554C72.6533 21.293 72.8136 21.9742 72.8136 22.6988C72.8136 24.7133 72.8136 26.7278 72.8136 28.7423C72.8136 28.8727 72.7844 28.9017 72.6533 28.9017C71.8807 28.9017 71.1081 28.8872 70.3501 28.9017C70.2044 28.9017 70.1606 28.8727 70.1606 28.7133C70.1606 26.8583 70.1606 25.0032 70.1606 23.1336C70.1606 22.3655 69.7379 21.7278 69.0674 21.4669C68.3531 21.1916 67.5077 21.351 66.9975 21.8872C66.6331 22.2641 66.5019 22.7278 66.5019 23.2351C66.5019 25.0467 66.5019 26.8727 66.5019 28.6843C66.5019 28.8438 66.4727 28.9017 66.2978 28.9017C65.5252 28.8872 64.7527 28.8872 63.9947 28.9017C63.8635 28.9017 63.8344 28.8727 63.8344 28.7423C63.8344 25.5974 63.8344 22.4669 63.8344 19.322C63.8344 19.1916 63.8781 19.1626 63.9947 19.1626C64.709 19.1626 65.4232 19.1626 66.1229 19.1626C66.2541 19.1626 66.2832 19.2061 66.2832 19.322C66.2541 19.5684 66.2687 19.7858 66.2687 20.0467Z" fill="#003188"/>
+<path d="M50.1759 34.8727C51.2546 33.9162 52.479 33.6409 53.8347 33.8727C55.2778 34.1046 56.3273 35.1771 56.6043 36.6409C56.6771 37.0032 56.7063 37.3655 56.7063 37.7423C56.7063 39.6843 56.7063 41.6264 56.7063 43.5539C56.7063 43.6988 56.6771 43.7423 56.5168 43.7423C55.7588 43.7278 54.9862 43.7278 54.2282 43.7423C54.0679 43.7423 54.0387 43.6988 54.0387 43.5539C54.0387 41.7133 54.0387 39.8582 54.0387 38.0177C54.0387 37.1916 53.5869 36.5104 52.8435 36.2785C51.6919 35.9162 50.38 36.5539 50.38 38.0466C50.3654 39.8872 50.38 41.7133 50.38 43.5539C50.38 43.7133 50.3363 43.7568 50.1759 43.7568C49.4179 43.7423 48.6454 43.7568 47.8874 43.7568C47.7562 43.7568 47.6979 43.7278 47.6979 43.5829C47.6979 40.4524 47.6979 37.3365 47.6979 34.2061C47.6979 34.0611 47.7416 34.0322 47.8874 34.0322C48.5871 34.0466 49.3013 34.0466 50.001 34.0322C50.1322 34.0322 50.1759 34.0611 50.1613 34.1916C50.1613 34.3945 50.1759 34.6264 50.1759 34.8727Z" fill="#003188"/>
+<path d="M86.4428 33.7858C87.8276 33.8003 89.0083 34.2061 89.9703 35.1626C90.2327 35.438 90.4659 35.7278 90.6554 36.0612C90.7137 36.1626 90.7138 36.2061 90.6117 36.2785C90.0578 36.6988 89.5185 37.1191 88.9645 37.5394C88.8625 37.6119 88.8334 37.5974 88.775 37.5104C88.4398 37.0177 88.0316 36.6119 87.4631 36.38C86.0492 35.8293 84.2417 36.5394 83.9793 38.4235C83.8773 39.1771 84.0085 39.8872 84.4603 40.5104C85.3495 41.7278 87.1716 41.8583 88.2794 40.7858C88.4689 40.6119 88.6293 40.4235 88.775 40.2061C88.8188 40.1336 88.8625 40.1191 88.9354 40.1771C89.4893 40.6119 90.0432 41.0322 90.6117 41.4525C90.7283 41.5394 90.6846 41.5974 90.6263 41.6698C89.9412 42.7858 88.95 43.5249 87.6672 43.8148C85.437 44.322 83.0027 43.438 81.8511 41.3075C80.2185 38.322 81.822 34.5394 85.437 33.8583C85.8014 33.8293 86.1367 33.8003 86.4428 33.7858Z" fill="#003188"/>
+<path d="M86.7489 29.1336C85.3787 29.1191 84.1543 28.7133 83.1485 27.7568C83.0173 27.6264 82.8861 27.4669 82.7549 27.3365C82.6966 27.2785 82.7112 27.2206 82.7549 27.1626C83.1485 26.6988 83.542 26.2206 83.9356 25.7423C84.0231 25.6409 84.0522 25.6554 84.1397 25.7423C84.6644 26.2496 85.2621 26.6698 85.9763 26.8583C86.4428 26.9742 86.9093 27.0032 87.3757 26.8727C87.5069 26.8438 87.6235 26.7858 87.7401 26.6988C88.1191 26.4235 88.1191 25.9307 87.7401 25.6554C87.5215 25.4814 87.2591 25.3945 86.9967 25.2785C86.3845 25.0177 85.7431 24.7858 85.1455 24.4814C84.5624 24.1916 84.0231 23.8293 83.6732 23.2641C82.8423 21.9452 83.3817 20.1336 84.7811 19.409C85.5682 19.0177 86.3991 18.9017 87.2591 18.9597C88.4107 19.0322 89.431 19.438 90.2619 20.2496C90.3785 20.3655 90.4222 20.438 90.2911 20.5974C89.9121 21.0322 89.5476 21.4814 89.1832 21.9452C89.0958 22.0612 89.052 22.0467 88.95 21.9597C88.294 21.409 87.5506 21.0901 86.676 21.1481C86.4865 21.1626 86.3116 21.2061 86.1367 21.293C85.7723 21.5104 85.7285 21.9742 86.0492 22.2641C86.2096 22.409 86.4136 22.4959 86.6031 22.5829C87.3028 22.8872 88.0317 23.1481 88.7168 23.4814C89.0666 23.6554 89.4019 23.8727 89.708 24.1191C90.4368 24.7568 90.6555 25.5684 90.5243 26.4814C90.3202 27.8438 89.431 28.5829 88.1628 28.9597C87.711 29.0901 87.2445 29.1481 86.7489 29.1336Z" fill="#003188"/>
+<path d="M93.221 38.7713C93.221 37.8872 93.221 37.1481 93.221 36.409C93.221 36.293 93.1919 36.2496 93.0607 36.2496C92.6525 36.2641 92.2298 36.2496 91.8217 36.2496C91.7051 36.2496 91.6759 36.2206 91.6759 36.1046C91.6759 35.4525 91.6759 34.8003 91.6759 34.1481C91.6759 34.0322 91.7196 34.0032 91.8217 34.0032C92.2298 34.0032 92.6525 34.0032 93.0607 34.0032C93.1919 34.0032 93.221 33.9597 93.221 33.8438C93.221 33.1336 93.221 32.4235 93.221 31.7133C93.221 31.5684 93.2648 31.5394 93.396 31.5394C94.1831 31.5394 94.9557 31.5539 95.7428 31.5394C95.9032 31.5394 95.9177 31.5829 95.9177 31.7278C95.9177 32.438 95.9177 33.1336 95.9177 33.8438C95.9177 33.9742 95.9615 34.0032 96.0781 34.0032C96.8944 34.0032 97.7107 34.0032 98.527 34.0032C98.6436 34.0032 98.6873 34.0322 98.6873 34.1481C98.6873 34.8003 98.6727 35.438 98.6873 36.0901C98.6873 36.2351 98.6436 36.2496 98.5124 36.2496C97.6961 36.2496 96.8944 36.2496 96.0781 36.2496C95.9323 36.2496 95.9032 36.2785 95.9032 36.4235C95.9032 37.6554 95.9032 38.8872 95.9032 40.1191C95.9032 41.0032 96.355 41.4814 97.2588 41.5684C97.7836 41.6119 98.3229 41.5539 98.8477 41.5249C98.9643 41.5104 98.9934 41.5394 98.9934 41.6554C98.9934 42.3075 98.9934 42.9597 98.9934 43.6119C98.9934 43.6698 99.0226 43.7278 98.9205 43.7568C97.769 44.0177 96.632 44.0901 95.495 43.7423C94.1977 43.3365 93.498 42.4235 93.3085 41.1191C93.1627 40.293 93.2502 39.4525 93.221 38.7713Z" fill="#003188"/>
+<path d="M78.5714 23.6119C78.586 24.1626 78.5277 24.8438 78.6005 25.5249C78.6588 26.1916 79.0233 26.5684 79.6938 26.6988C80.1894 26.7858 80.685 26.7568 81.1952 26.7133C81.2681 26.7133 81.341 26.6988 81.4284 26.6988C81.6762 26.6843 81.6762 26.6843 81.6762 26.9452C81.6762 27.5539 81.6762 28.1481 81.6762 28.7568C81.6762 28.8293 81.6908 28.9162 81.5742 28.9307C80.4226 29.1916 79.2711 29.2496 78.1195 28.8872C76.8951 28.4959 76.21 27.6409 75.9913 26.3945C75.933 26.0756 75.9184 25.7568 75.9184 25.4235C75.9184 24.1481 75.9184 22.8728 75.9184 21.5974C75.9184 21.438 75.8747 21.3945 75.7143 21.3945C75.3062 21.409 74.9126 21.3945 74.5045 21.3945C74.4024 21.3945 74.3733 21.3655 74.3733 21.2641C74.3733 20.5974 74.3733 19.9452 74.3733 19.2785C74.3733 19.1771 74.4024 19.1481 74.5045 19.1481C74.9126 19.1481 75.3354 19.1481 75.7435 19.1481C75.8747 19.1481 75.9038 19.1191 75.9038 18.9887C75.9038 18.2785 75.9038 17.5684 75.9038 16.8583C75.9038 16.7278 75.933 16.6988 76.0642 16.6988C76.8513 16.6988 77.6385 16.6988 78.4256 16.6988C78.5422 16.6988 78.586 16.7278 78.586 16.8583C78.586 17.5684 78.586 18.2785 78.586 18.9887C78.586 19.1336 78.6297 19.1626 78.7609 19.1626C79.5772 19.1626 80.3789 19.1626 81.1952 19.1626C81.3264 19.1626 81.3701 19.1916 81.3701 19.3365C81.3555 19.9742 81.3701 20.6264 81.3701 21.2641C81.3701 21.3945 81.3264 21.4235 81.2098 21.409C80.3935 21.409 79.5772 21.409 78.7609 21.409C78.6297 21.409 78.586 21.438 78.586 21.5829C78.5714 22.2206 78.5714 22.8583 78.5714 23.6119Z" fill="#003188"/>
+<path d="M37.9752 24.0467C37.9752 25.5974 37.9752 27.1626 37.9752 28.7133C37.9752 28.8727 37.9315 28.9017 37.7711 28.9017C37.0131 28.8872 36.2406 28.9017 35.4826 28.9017C35.3514 28.9017 35.2931 28.8727 35.2931 28.7278C35.2931 25.5974 35.2931 22.4814 35.2931 19.351C35.2931 19.2206 35.3222 19.1771 35.468 19.1771C36.2552 19.1771 37.0277 19.1916 37.8149 19.1771C37.9606 19.1771 37.9752 19.2351 37.9752 19.351C37.9752 20.9162 37.9752 22.4814 37.9752 24.0467Z" fill="#003188"/>
+<path d="M50.2196 14.1771C49.4616 14.1771 48.689 14.1916 47.9311 14.1771C47.7707 14.1771 47.7124 14.2061 47.7124 14.38C47.727 16.0322 47.7124 17.6988 47.7124 19.351C47.7124 19.5974 47.7124 19.8293 47.7124 20.1191C47.6249 20.0467 47.5812 19.9887 47.5229 19.9452C46.6629 19.1771 45.6425 18.9162 44.5201 18.9887C42.7126 19.1046 41.4007 19.9742 40.599 21.5829C40.0013 22.7858 39.9139 24.0612 40.1908 25.3655C40.3949 26.351 40.8614 27.2206 41.6048 27.9307C42.5668 28.8293 43.733 29.2061 45.0449 29.1481C45.9924 29.1046 46.8524 28.8293 47.5521 28.1626C47.6833 28.0467 47.7999 27.9017 47.9311 27.7568C47.9311 28.1046 47.9311 28.4235 47.9311 28.7423C47.9311 28.8583 47.9456 28.9162 48.0914 28.9162C48.8057 28.9017 49.5199 28.9017 50.2488 28.9162C50.3799 28.9162 50.4091 28.8727 50.4091 28.7423C50.4091 23.9452 50.4091 19.1481 50.4091 14.3365C50.4091 14.1916 50.3508 14.1771 50.2196 14.1771ZM47.6395 24.9887C47.3334 26.0612 46.4442 26.7133 45.3073 26.7133C43.9808 26.7133 42.9312 25.7713 42.8001 24.438C42.7272 23.6988 42.8292 23.0032 43.2665 22.3945C43.9079 21.5249 44.7971 21.2206 45.832 21.438C46.867 21.6409 47.4646 22.322 47.6833 23.3365C47.8144 23.8727 47.7999 24.438 47.6395 24.9887Z" fill="#003188"/>
+<path d="M33.6313 28.7423C33.3397 28.0322 33.0482 27.3075 32.7567 26.5974C31.299 23.0177 29.8413 19.4235 28.3837 15.8438C28.3399 15.7423 28.2816 15.7133 28.1796 15.7133C27.7131 15.7133 27.2321 15.7278 26.7656 15.7133C26.6053 15.7133 26.5324 15.7713 26.4741 15.9162C25.6432 17.9597 24.8124 20.0032 23.9669 22.0467C23.0632 24.2641 22.1448 26.4959 21.2265 28.7278C21.1828 28.8438 21.1682 28.9017 21.3285 28.9017C22.174 28.8872 23.034 28.9017 23.8795 28.9017C23.9961 28.9017 24.0544 28.8583 24.0981 28.7568C24.3022 28.2785 24.5063 27.8003 24.7103 27.322C24.7395 27.2351 24.7832 27.2206 24.8707 27.2206C26.5616 27.2206 28.267 27.2206 29.9579 27.2206C30.06 27.2206 30.1037 27.2496 30.1329 27.3365C30.3369 27.8148 30.541 28.293 30.7451 28.7713C30.7888 28.8727 30.8325 28.9162 30.9492 28.9017C31.3719 28.9017 31.7946 28.9017 32.2319 28.9017C32.6692 28.9017 33.0774 28.9017 33.5147 28.9017C33.675 28.9162 33.6896 28.8727 33.6313 28.7423ZM25.7015 25.0322C26.27 23.351 26.8531 21.6698 27.4362 19.9597C28.0192 21.6698 28.5877 23.351 29.1708 25.0322C28.0047 25.0322 26.8677 25.0322 25.7015 25.0322Z" fill="#003188"/>
+<path d="M45.3073 37.3655C44.593 35.1191 42.3336 33.6264 39.9139 33.8148C38.5874 33.9162 37.4067 34.38 36.4884 35.3365C35.0599 36.8148 34.6954 38.5684 35.3077 40.4959C35.9636 42.5829 37.9752 43.9597 40.3075 43.9597C40.7156 43.9452 41.1675 43.9017 41.6194 43.7858C44.5056 43.0901 46.1965 40.1481 45.3073 37.3655ZM40.9926 41.409C39.4766 41.8148 38.0044 40.9597 37.7857 39.3075C37.6545 38.3365 37.8877 37.4669 38.6311 36.8003C39.841 35.7278 42.0858 36.0756 42.6689 38.0322C42.7126 38.1771 42.7418 38.3365 42.7709 38.4959C42.7855 38.6264 42.7855 38.7423 42.8001 38.8727C42.8001 40.1046 42.1004 41.1191 40.9926 41.409Z" fill="#003188"/>
+<path d="M61.2542 23.2206C61.2542 22.8293 61.2251 22.438 61.1522 22.0467C60.9044 20.7568 60.2193 19.8003 58.9802 19.3075C58.0036 18.9162 56.9978 18.8872 55.9774 19.0612C54.7093 19.2785 53.6889 19.9307 52.858 20.8872C52.7997 20.9452 52.7997 20.9887 52.858 21.0612C53.2808 21.5394 53.6889 22.0322 54.097 22.5249C54.1554 22.5974 54.1991 22.6119 54.272 22.5249C54.374 22.4235 54.476 22.322 54.5781 22.2206C55.2632 21.5684 56.0649 21.1916 57.0415 21.2785C57.6975 21.3365 58.2223 21.6119 58.4701 22.2641C58.5867 22.5829 58.5721 22.9162 58.5867 23.2351C58.5867 23.3655 58.5429 23.3945 58.4263 23.3945C57.6392 23.3945 56.852 23.3945 56.0649 23.3945C55.4381 23.3945 54.8259 23.4959 54.2428 23.7133C51.9251 24.5829 52.0855 27.2641 53.3682 28.3365C53.9367 28.8003 54.5927 29.0467 55.3069 29.1046C56.371 29.2061 57.3768 29.0322 58.266 28.4235C58.4555 28.293 58.6158 28.1481 58.8053 27.9887C58.8053 28.2496 58.8199 28.4814 58.8053 28.7133C58.8053 28.8583 58.8345 28.9017 58.9802 28.9017C59.6654 28.8872 60.3505 28.8872 61.0356 28.9017C61.2105 28.9017 61.2542 28.8727 61.2542 28.6843C61.2542 26.8727 61.2542 25.0467 61.2542 23.2206ZM56.648 27.1916C56.3127 27.2061 55.992 27.1771 55.7005 27.0322C55.3069 26.8438 55.0883 26.4814 55.132 26.0612C55.1757 25.6264 55.409 25.3655 55.8608 25.2351C56.0795 25.1771 56.2981 25.1626 56.5168 25.1626C56.7937 25.1626 57.0707 25.1626 57.3331 25.1626C57.6975 25.1626 58.0619 25.1626 58.4409 25.1626C58.5575 25.1626 58.5867 25.2061 58.5867 25.3075C58.5429 26.3365 57.7121 27.1626 56.648 27.1916Z" fill="#003188"/>
+<path d="M40.6719 18.0756C40.497 17.9452 40.3221 17.8148 40.1472 17.6843C39.9868 17.5104 39.8265 17.322 39.6953 17.1336C39.5058 16.7568 39.3309 16.38 39.3017 15.9452C39.3017 15.9452 39.3017 15.9307 39.2871 15.9307C39.2871 15.9307 39.2871 15.9452 39.3017 15.9452C39.3017 15.7133 39.2871 15.4814 39.3309 15.2495C39.3892 14.8872 39.5349 14.5684 39.6953 14.2495C39.841 14.0756 39.9868 13.8872 40.1472 13.7133C40.3221 13.5539 40.5116 13.4235 40.7157 13.3075C41.0072 13.1771 41.3133 13.0756 41.634 13.0032C41.3424 13.0032 41.0509 13.0032 40.7594 13.0032C40.5553 13.0032 40.3658 13.0032 40.1617 13.0032C40.0014 13.0032 39.841 13.0032 39.6661 13.0032C39.5204 13.0032 39.3892 13.0032 39.2434 13.0032C39.1122 13.0032 38.981 13.0032 38.8644 13.0032C38.7478 13.0032 38.6312 13.0032 38.5146 13.0032C38.398 13.0032 38.2813 13.0032 38.1647 13.0032C38.0481 13.0032 37.9315 13.0032 37.8149 13.0032C37.6983 13.0032 37.5817 13.0032 37.465 13.0032C37.3484 13.0032 37.2318 13.0032 37.1152 13.0032C37.0132 13.0032 36.9111 13.0032 36.7945 13.0032C36.6925 13.0032 36.5904 13.0032 36.4738 13.0032C36.3426 12.9887 36.2114 13.0322 36.0948 13.0322C35.9053 13.0611 35.7158 13.1481 35.5409 13.2061C35.3514 13.2785 35.1911 13.409 35.0162 13.5249C34.9578 13.5684 34.8995 13.5974 34.8412 13.6409C34.5934 13.8727 34.3894 14.0901 34.4039 14.4959C34.4331 15.351 34.4185 16.2206 34.4039 17.0756C34.4039 17.2061 34.4185 17.322 34.506 17.4235C34.6517 17.5684 34.7829 17.7423 34.9724 17.8582C35.1473 17.9887 35.3223 18.1046 35.5263 18.1771C35.6867 18.2785 35.8616 18.322 36.0511 18.351C36.1823 18.3945 36.3281 18.3945 36.4738 18.4235C36.5759 18.4235 36.6779 18.4235 36.7945 18.4235C36.8966 18.4235 36.9986 18.4235 37.1152 18.4235C37.2318 18.4235 37.3484 18.4235 37.465 18.4235C37.5817 18.4235 37.6983 18.4235 37.8149 18.4235C37.9315 18.4235 38.0481 18.4235 38.1647 18.4235C38.2813 18.4235 38.398 18.4235 38.5146 18.4235C38.6312 18.4235 38.7478 18.4235 38.8644 18.4235C38.981 18.4235 39.0976 18.4235 39.2142 18.4235C39.36 18.4235 39.5204 18.4235 39.6661 18.4235C39.8119 18.4235 39.9722 18.4235 40.118 18.4235C40.3075 18.4235 40.497 18.4235 40.6719 18.4235C41.0072 18.4235 41.357 18.4235 41.6923 18.4235C41.3424 18.3365 40.9926 18.2351 40.6719 18.0756Z" fill="url(#paint0_linear)"/>
+<path d="M41.5756 13.0177C42.3336 12.9452 43.0333 13.0901 43.6455 13.5539C44.5056 14.2061 44.8991 15.322 44.6368 16.38C44.3744 17.438 43.4852 18.2206 42.4065 18.3945C42.1441 18.438 41.8963 18.4235 41.634 18.4235C41.2695 18.4235 40.9343 18.3075 40.6136 18.1336C40.4241 18.0177 40.2346 17.8872 40.0742 17.7278C39.8847 17.5539 39.739 17.3655 39.5932 17.1481C39.3891 16.7713 39.1996 16.3945 39.1996 15.9597C39.1705 15.4959 39.2142 15.0467 39.4037 14.6264C39.462 14.5104 39.5203 14.3945 39.5786 14.293C39.7098 14.0901 39.8702 13.9017 40.0597 13.7278C40.2346 13.5539 40.4241 13.409 40.6427 13.3075C40.9488 13.1336 41.255 13.0322 41.5756 13.0177Z" fill="#FE3954"/>
+<path d="M79.6792 37.7133C79.5335 36.5684 79.0524 35.5974 78.1633 34.8582C77.0117 33.9017 75.6561 33.6264 74.213 33.8727C71.7932 34.2785 70.0878 36.2206 69.9857 38.6553C69.8983 40.8727 71.1227 42.8148 73.178 43.5684C75.3354 44.3655 77.347 44.0177 79.169 42.5974C79.2565 42.5249 79.2419 42.4814 79.1982 42.409C78.8775 41.8872 78.5568 41.38 78.2507 40.8582C78.1778 40.7278 78.1195 40.7278 78.0029 40.8148C77.0554 41.5104 75.9913 41.8293 74.796 41.6409C73.7757 41.4814 73.076 40.9452 72.7261 39.9597C72.6824 39.8148 72.6824 39.7713 72.8573 39.7713C73.936 39.7858 75.0147 39.7713 76.0934 39.7713C77.1866 39.7713 78.2799 39.7713 79.3731 39.7713C79.4752 39.7713 79.5335 39.7568 79.5626 39.6264C79.6938 39.0032 79.7667 38.3655 79.6792 37.7133ZM76.9388 37.9017C76.2537 37.8872 75.5832 37.9017 74.8981 37.9017C74.213 37.9017 73.5279 37.9017 72.8428 37.9017C72.7699 37.9017 72.6824 37.9307 72.7261 37.7858C73.0031 36.8727 73.557 36.2206 74.5336 35.9887C75.5394 35.7568 76.5744 36.2206 76.968 37.0756C77.0554 37.2785 77.0992 37.4814 77.1283 37.6988C77.1429 37.8582 77.1137 37.9017 76.9388 37.9017Z" fill="#003188"/>
+<defs>
+<linearGradient id="paint0_linear" x1="34.4071" y1="15.7001" x2="41.6955" y2="15.7001" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="#FEACB7"/>
+</linearGradient>
+</defs>
+</symbol>
+
+<symbol id="accesLivresInformatiques" viewBox="0 0 35 35" xmlns="http://www.w3.org/2000/svg">
+<path d="M3.68164 4.18183C3.68164 3.90568 3.9055 3.68182 4.18164 3.68182H31.6632C31.9393 3.68182 32.1632 3.90568 32.1632 4.18182V24.4545C32.1632 24.7307 31.9393 24.9546 31.6632 24.9546H4.18164C3.9055 24.9546 3.68164 24.7307 3.68164 24.4546V4.18183Z" fill="white" stroke="#4F4F4F"/>
+<rect x="3" y="21" width="29" height="4" fill="#4F4F4F" stroke="none"/>
+<rect x="15.1135" y="25.4546" width="6.36364" height="3.18182" fill="#333333" stroke="none"/>
+<path d="M11.9316 29.244C11.9316 28.8716 12.1421 28.5312 12.4752 28.3646L14.9023 27.151C15.0412 27.0816 15.1943 27.0455 15.3495 27.0455H21.241C21.3963 27.0455 21.5494 27.0816 21.6882 27.151L24.1154 28.3646C24.4485 28.5312 24.6589 28.8716 24.6589 29.244C24.6589 29.7871 24.2187 30.2273 23.6757 30.2273H12.9149C12.3719 30.2273 11.9316 29.7871 11.9316 29.244Z" fill="#4F4F4F" stroke="none"/>
+<path d="M17.7498 7.95525L17.7498 7.95478L17.7498 7.95402L17.75 7.94502C17.7503 7.93631 17.7509 7.92239 17.7522 7.90401C17.7549 7.86715 17.7602 7.81287 17.7712 7.74708C17.7933 7.6143 17.8371 7.44109 17.9222 7.27091C18.0068 7.1017 18.1298 6.9401 18.3096 6.82024C18.4878 6.70142 18.7367 6.61365 19.0907 6.61365H19.1H19.1095H19.119H19.1285H19.1382H19.1479H19.1577H19.1675H19.1775H19.1875H19.1975H19.2077H19.2179H19.2281H19.2385H19.2489H19.2594H19.2699H19.2805H19.2912H19.3019H19.3127H19.3236H19.3345H19.3455H19.3566H19.3677H19.3789H19.3902H19.4015H19.4129H19.4243H19.4358H19.4474H19.459H19.4707H19.4824H19.4942H19.5061H19.518H19.53H19.542H19.5541H19.5663H19.5785H19.5907H19.6031H19.6154H19.6279H19.6404H19.6529H19.6655H19.6782H19.6909H19.7036H19.7165H19.7293H19.7423H19.7552H19.7683H19.7813H19.7945H19.8076H19.8209H19.8341H19.8475H19.8609H19.8743H19.8878H19.9013H19.9149H19.9285H19.9421H19.9559H19.9696H19.9834H19.9973H20.0112H20.0251H20.0391H20.0531H20.0672H20.0813H20.0955H20.1097H20.1239H20.1382H20.1526H20.1669H20.1814H20.1958H20.2103H20.2249H20.2394H20.254H20.2687H20.2834H20.2981H20.3129H20.3277H20.3425H20.3574H20.3723H20.3873H20.4023H20.4173H20.4324H20.4475H20.4626H20.4778H20.493H20.5082H20.5235H20.5388H20.5541H20.5695H20.5848H20.6003H20.6157H20.6312H20.6467H20.6623H20.6778H20.6934H20.7091H20.7247H20.7404H20.7561H20.7719H20.7877H20.8035H20.8193H20.8351H20.851H20.8669H20.8828H20.8988H20.9148H20.9308H20.9468H20.9628H20.9789H20.995H21.0111H21.0272H21.0434H21.0595H21.0757H21.092H21.1082H21.1245H21.1407H21.157H21.1733H21.1897H21.206H21.2224H21.2388H21.2551H21.2716H21.288H21.3044H21.3209H21.3374H21.3539H21.3704H21.3869H21.4034H21.42H21.4365H21.4531H21.4697H21.4863H21.5029H21.5195H21.5361H21.5528H21.5694H21.5861H21.6027H21.6194H21.6361H21.6528H21.6695H21.6862H21.7029H21.7196H21.7363H21.7531H21.7698H21.7865H21.8033H21.82H21.8368H21.8536H21.8703H21.8871H21.9039H21.9206H21.9374H21.9542H21.971H21.9877H22.0045H22.0213H22.0381H22.0549H22.0716H22.0884H22.1052H22.122H22.1387H22.1555H22.1723H22.189H22.2058H22.2225H22.2393H22.256H22.2728H22.2895H22.3062H22.323H22.3397H22.3564H22.3731H22.3898H22.4065H22.4232H22.4398H22.4565H22.4731H22.4898H22.5064H22.523H22.5396H22.5562H22.5728H22.5894H22.606H22.6225H22.6391H22.6556H22.6721H22.6886H22.7051H22.7216H22.738H22.7545H22.7709H22.7873H22.8037H22.8201H22.8364H22.8528H22.8691H22.8854H22.9017H22.9179H22.9342H22.9504H22.9666H22.9828H22.999H23.0151H23.0312H23.0473H23.0634H23.0795H23.0955H23.1115H23.1275H23.1435H23.1594H23.1753H23.1912H23.2071H23.2229H23.2387H23.2545H23.2703H23.286H23.3017H23.3174H23.3331H23.3487H23.3643H23.3798H23.3954H23.4109H23.4263H23.4418H23.4572H23.4726H23.4879H23.5032H23.5185H23.5338H23.549H23.5642H23.5793H23.5944H23.6095H23.6246H23.6396H23.6546H23.6695H23.6844H23.6993H23.7141H23.7289H23.7436H23.7584H23.773H23.7877H23.8023H23.8168H23.8314H23.8458H23.8603H23.8747H23.889H23.9034H23.9176H23.9319H23.9461H23.9602H23.9743H23.9884H24.0024H24.0163H24.0303H24.0441H24.058H24.0718H24.0855H24.0992H24.1129H24.1265H24.14H24.1535H24.167H24.1804H24.1937H24.207H24.2203H24.2335H24.2467H24.2598H24.2728H24.2858H24.2988H24.3117H24.3245H24.3373H24.3501H24.3628H24.3754H24.388H24.4005H24.413H24.4254H24.4377H24.45H24.4623H24.4745H24.4866H24.4987H24.5107H24.5226H24.5345H24.5464H24.5582H24.5699H24.5815H24.5931H24.6047H24.6162H24.6276H24.6389H24.6502H24.6614H24.6726H24.6837H24.6947H24.7057H24.7166H24.7275H24.7382H24.749H24.7596H24.7702H24.7807H24.7912H24.8015H24.8118H24.8221H24.8323H24.8424H24.8524H24.8624H24.8723H24.8821H24.8919H24.9016H24.9112H24.9207H24.9302H24.9396H24.9489H24.9582H24.9674H24.9765H24.9855H24.9945H25.0034H25.0122H25.0209H25.0296H25.0382H25.0467H25.0551H25.0634H25.0717H25.0799H25.088H25.0961H25.104H25.1119H25.1197H25.1274H25.1351H25.1426H25.1501H25.1575H25.1648H25.1721H25.1792H25.1863H25.1933H25.2002H25.2043V17.25H25.2002H25.1933H25.1863H25.1792H25.1721H25.1648H25.1575H25.1501H25.1426H25.1351H25.1274H25.1197H25.1119H25.104H25.0961H25.088H25.0799H25.0717H25.0634H25.0551H25.0467H25.0382H25.0296H25.0209H25.0122H25.0034H24.9945H24.9855H24.9765H24.9674H24.9582H24.9489H24.9396H24.9302H24.9207H24.9112H24.9016H24.8919H24.8821H24.8723H24.8624H24.8524H24.8424H24.8323H24.8221H24.8118H24.8015H24.7912H24.7807H24.7702H24.7596H24.749H24.7382H24.7275H24.7166H24.7057H24.6947H24.6837H24.6726H24.6614H24.6502H24.6389H24.6276H24.6162H24.6047H24.5931H24.5815H24.5699H24.5582H24.5464H24.5345H24.5226H24.5107H24.4987H24.4866H24.4745H24.4623H24.45H24.4377H24.4254H24.413H24.4005H24.388H24.3754H24.3628H24.3501H24.3373H24.3245H24.3117H24.2988H24.2858H24.2728H24.2598H24.2467H24.2335H24.2203H24.207H24.1937H24.1804H24.167H24.1535H24.14H24.1265H24.1129H24.0992H24.0855H24.0718H24.058H24.0441H24.0303H24.0163H24.0024H23.9884H23.9743H23.9602H23.9461H23.9319H23.9176H23.9034H23.889H23.8747H23.8603H23.8458H23.8314H23.8168H23.8023H23.7877H23.773H23.7584H23.7436H23.7289H23.7141H23.6993H23.6844H23.6695H23.6546H23.6396H23.6246H23.6095H23.5944H23.5793H23.5642H23.549H23.5338H23.5185H23.5032H23.4879H23.4726H23.4572H23.4418H23.4263H23.4109H23.3954H23.3798H23.3643H23.3487H23.3331H23.3174H23.3017H23.286H23.2703H23.2545H23.2387H23.2229H23.2071H23.1912H23.1753H23.1594H23.1435H23.1275H23.1115H23.0955H23.0795H23.0634H23.0473H23.0312H23.0151H22.999H22.9828H22.9666H22.9504H22.9342H22.9179H22.9017H22.8854H22.8691H22.8528H22.8364H22.8201H22.8037H22.7873H22.7709H22.7545H22.738H22.7216H22.7051H22.6886H22.6721H22.6556H22.6391H22.6225H22.606H22.5894H22.5728H22.5562H22.5396H22.523H22.5064H22.4898H22.4731H22.4565H22.4398H22.4232H22.4065H22.3898H22.3731H22.3564H22.3397H22.323H22.3062H22.2895H22.2728H22.256H22.2393H22.2225H22.2058H22.189H22.1723H22.1555H22.1387H22.122H22.1052H22.0884H22.0716H22.0549H22.0381H22.0213H22.0045H21.9877H21.971H21.9542H21.9374H21.9206H21.9039H21.8871H21.8703H21.8536H21.8368H21.82H21.8033H21.7865H21.7698H21.7531H21.7363H21.7196H21.7029H21.6862H21.6695H21.6528H21.6361H21.6194H21.6027H21.5861H21.5694H21.5528H21.5361H21.5195H21.5029H21.4863H21.4697H21.4531H21.4365H21.42H21.4034H21.3869H21.3704H21.3539H21.3374H21.3209H21.3044H21.288H21.2716H21.2551H21.2388H21.2224H21.206H21.1897H21.1733H21.157H21.1407H21.1245H21.1082H21.092H21.0757H21.0595H21.0434H21.0272H21.0111H20.995H20.9789H20.9628H20.9468H20.9308H20.9148H20.8988H20.8828H20.8669H20.851H20.8351H20.8193H20.8035H20.7877H20.7719H20.7561H20.7404H20.7247H20.7091H20.6934H20.6778H20.6623H20.6467H20.6312H20.6157H20.6003H20.5848H20.5695H20.5541H20.5388H20.5235H20.5082H20.493H20.4778H20.4626H20.4475H20.4324H20.4173H20.4023H20.3873H20.3723H20.3574H20.3425H20.3277H20.3129H20.2981H20.2834H20.2687H20.254H20.2394H20.2249H20.2103H20.1958H20.1814H20.1669H20.1526H20.1382H20.1239H20.1097H20.0955H20.0813H20.0672H20.0531H20.0391H20.0251H20.0112H19.9973H19.9834H19.9696H19.9559H19.9421H19.9285H19.9149H19.9013H19.8878H19.8743H19.8609H19.8475H19.8341H19.8209H19.8076H19.7945H19.7813H19.7683H19.7552H19.7423H19.7293H19.7165H19.7036H19.6909H19.6782H19.6655H19.6529H19.6404H19.6279H19.6154H19.6031H19.5907H19.5785H19.5663H19.5541H19.542H19.53H19.518H19.5061H19.4942H19.4824H19.4707H19.459H19.4474H19.4358H19.4243H19.4129H19.4015H19.3902H19.3789H19.3677H19.3566H19.3455H19.3345H19.3236H19.3127H19.3019H19.2912H19.2805H19.2699H19.2594H19.2489H19.2385H19.2281H19.2179H19.2077H19.1975H19.1875H19.1775H19.1675H19.1577H19.1479H19.1382H19.1285H19.119H19.1095H19.1H19.0907C18.6492 17.25 18.3015 17.3611 18.0322 17.5406C17.9236 17.613 17.8301 17.695 17.7498 17.7821V7.95525Z" fill="none" stroke-width="0.5"/>
+<path d="M18.0452 7.95525L18.0452 7.95478L18.0451 7.95402L18.0449 7.94502C18.0446 7.93631 18.044 7.92239 18.0427 7.90401C18.0401 7.86715 18.0347 7.81287 18.0237 7.74708C18.0016 7.6143 17.9578 7.44109 17.8727 7.27091C17.7881 7.1017 17.6651 6.9401 17.4853 6.82024C17.3071 6.70142 17.0582 6.61365 16.7043 6.61365H16.6949H16.6855H16.676H16.6664H16.6567H16.647H16.6372H16.6274H16.6175H16.6075H16.5974H16.5873H16.5771H16.5668H16.5564H16.546H16.5356H16.525H16.5144H16.5037H16.493H16.4822H16.4713H16.4604H16.4494H16.4383H16.4272H16.416H16.4047H16.3934H16.3821H16.3706H16.3591H16.3476H16.3359H16.3242H16.3125H16.3007H16.2888H16.2769H16.2649H16.2529H16.2408H16.2287H16.2164H16.2042H16.1919H16.1795H16.167H16.1545H16.142H16.1294H16.1167H16.104H16.0913H16.0785H16.0656H16.0527H16.0397H16.0267H16.0136H16.0005H15.9873H15.9741H15.9608H15.9474H15.9341H15.9206H15.9072H15.8936H15.8801H15.8664H15.8528H15.8391H15.8253H15.8115H15.7976H15.7838H15.7698H15.7558H15.7418H15.7277H15.7136H15.6994H15.6852H15.671H15.6567H15.6424H15.628H15.6136H15.5991H15.5846H15.5701H15.5555H15.5409H15.5262H15.5115H15.4968H15.482H15.4672H15.4524H15.4375H15.4226H15.4076H15.3926H15.3776H15.3625H15.3474H15.3323H15.3172H15.302H15.2867H15.2715H15.2562H15.2408H15.2255H15.2101H15.1947H15.1792H15.1637H15.1482H15.1327H15.1171H15.1015H15.0858H15.0702H15.0545H15.0388H15.023H15.0073H14.9915H14.9756H14.9598H14.9439H14.928H14.9121H14.8961H14.8802H14.8642H14.8481H14.8321H14.816H14.7999H14.7838H14.7677H14.7515H14.7354H14.7192H14.703H14.6867H14.6705H14.6542H14.6379H14.6216H14.6053H14.5889H14.5726H14.5562H14.5398H14.5234H14.5069H14.4905H14.474H14.4575H14.4411H14.4246H14.408H14.3915H14.375H14.3584H14.3418H14.3252H14.3087H14.2921H14.2754H14.2588H14.2422H14.2255H14.2089H14.1922H14.1755H14.1588H14.1422H14.1255H14.1088H14.092H14.0753H14.0586H14.0419H14.0251H14.0084H13.9916H13.9749H13.9581H13.9414H13.9246H13.9078H13.8911H13.8743H13.8575H13.8407H13.824H13.8072H13.7904H13.7736H13.7569H13.7401H13.7233H13.7065H13.6897H13.673H13.6562H13.6394H13.6227H13.6059H13.5891H13.5724H13.5556H13.5389H13.5222H13.5054H13.4887H13.472H13.4552H13.4385H13.4218H13.4051H13.3884H13.3718H13.3551H13.3384H13.3218H13.3051H13.2885H13.2719H13.2553H13.2387H13.2221H13.2055H13.1889H13.1724H13.1559H13.1393H13.1228H13.1063H13.0898H13.0734H13.0569H13.0405H13.024H13.0076H12.9912H12.9749H12.9585H12.9422H12.9258H12.9095H12.8933H12.877H12.8607H12.8445H12.8283H12.8121H12.796H12.7798H12.7637H12.7476H12.7315H12.7154H12.6994H12.6834H12.6674H12.6514H12.6355H12.6196H12.6037H12.5878H12.572H12.5562H12.5404H12.5246H12.5089H12.4932H12.4775H12.4619H12.4463H12.4307H12.4151H12.3996H12.3841H12.3686H12.3531H12.3377H12.3224H12.307H12.2917H12.2764H12.2612H12.2459H12.2307H12.2156H12.2005H12.1854H12.1704H12.1553H12.1404H12.1254H12.1105H12.0957H12.0808H12.066H12.0513H12.0366H12.0219H12.0072H11.9926H11.9781H11.9636H11.9491H11.9346H11.9202H11.9059H11.8916H11.8773H11.8631H11.8489H11.8347H11.8206H11.8066H11.7926H11.7786H11.7647H11.7508H11.7369H11.7232H11.7094H11.6957H11.6821H11.6685H11.6549H11.6414H11.628H11.6145H11.6012H11.5879H11.5746H11.5614H11.5482H11.5351H11.5221H11.5091H11.4961H11.4832H11.4704H11.4576H11.4448H11.4322H11.4195H11.4069H11.3944H11.382H11.3695H11.3572H11.3449H11.3326H11.3204H11.3083H11.2962H11.2842H11.2723H11.2604H11.2485H11.2368H11.225H11.2134H11.2018H11.1902H11.1788H11.1674H11.156H11.1447H11.1335H11.1223H11.1112H11.1002H11.0892H11.0783H11.0675H11.0567H11.046H11.0353H11.0247H11.0142H11.0038H10.9934H10.9831H10.9728H10.9627H10.9525H10.9425H10.9325H10.9226H10.9128H10.903H10.8934H10.8837H10.8742H10.8647H10.8553H10.846H10.8367H10.8276H10.8184H10.8094H10.8004H10.7916H10.7828H10.774H10.7654H10.7568H10.7483H10.7398H10.7315H10.7232H10.715H10.7069H10.6989H10.6909H10.683H10.6752H10.6675H10.6598H10.6523H10.6448H10.6374H10.6301H10.6229H10.6157H10.6086H10.6016H10.5947H10.5906V17.25H10.5947H10.6016H10.6086H10.6157H10.6229H10.6301H10.6374H10.6448H10.6523H10.6598H10.6675H10.6752H10.683H10.6909H10.6989H10.7069H10.715H10.7232H10.7315H10.7398H10.7483H10.7568H10.7654H10.774H10.7828H10.7916H10.8004H10.8094H10.8184H10.8276H10.8367H10.846H10.8553H10.8647H10.8742H10.8837H10.8934H10.903H10.9128H10.9226H10.9325H10.9425H10.9525H10.9627H10.9728H10.9831H10.9934H11.0038H11.0142H11.0247H11.0353H11.046H11.0567H11.0675H11.0783H11.0892H11.1002H11.1112H11.1223H11.1335H11.1447H11.156H11.1674H11.1788H11.1902H11.2018H11.2134H11.225H11.2368H11.2485H11.2604H11.2723H11.2842H11.2962H11.3083H11.3204H11.3326H11.3449H11.3572H11.3695H11.382H11.3944H11.4069H11.4195H11.4322H11.4448H11.4576H11.4704H11.4832H11.4961H11.5091H11.5221H11.5351H11.5482H11.5614H11.5746H11.5879H11.6012H11.6145H11.628H11.6414H11.6549H11.6685H11.6821H11.6957H11.7094H11.7232H11.7369H11.7508H11.7647H11.7786H11.7926H11.8066H11.8206H11.8347H11.8489H11.8631H11.8773H11.8916H11.9059H11.9202H11.9346H11.9491H11.9636H11.9781H11.9926H12.0072H12.0219H12.0366H12.0513H12.066H12.0808H12.0957H12.1105H12.1254H12.1404H12.1553H12.1704H12.1854H12.2005H12.2156H12.2307H12.2459H12.2612H12.2764H12.2917H12.307H12.3224H12.3377H12.3531H12.3686H12.3841H12.3996H12.4151H12.4307H12.4463H12.4619H12.4775H12.4932H12.5089H12.5246H12.5404H12.5562H12.572H12.5878H12.6037H12.6196H12.6355H12.6514H12.6674H12.6834H12.6994H12.7154H12.7315H12.7476H12.7637H12.7798H12.796H12.8121H12.8283H12.8445H12.8607H12.877H12.8933H12.9095H12.9258H12.9422H12.9585H12.9749H12.9912H13.0076H13.024H13.0405H13.0569H13.0734H13.0898H13.1063H13.1228H13.1393H13.1559H13.1724H13.1889H13.2055H13.2221H13.2387H13.2553H13.2719H13.2885H13.3051H13.3218H13.3384H13.3551H13.3718H13.3884H13.4051H13.4218H13.4385H13.4552H13.472H13.4887H13.5054H13.5222H13.5389H13.5556H13.5724H13.5891H13.6059H13.6227H13.6394H13.6562H13.673H13.6897H13.7065H13.7233H13.7401H13.7569H13.7736H13.7904H13.8072H13.824H13.8407H13.8575H13.8743H13.8911H13.9078H13.9246H13.9414H13.9581H13.9749H13.9916H14.0084H14.0251H14.0419H14.0586H14.0753H14.092H14.1088H14.1255H14.1422H14.1588H14.1755H14.1922H14.2089H14.2255H14.2422H14.2588H14.2754H14.2921H14.3087H14.3252H14.3418H14.3584H14.375H14.3915H14.408H14.4246H14.4411H14.4575H14.474H14.4905H14.5069H14.5234H14.5398H14.5562H14.5726H14.5889H14.6053H14.6216H14.6379H14.6542H14.6705H14.6867H14.703H14.7192H14.7354H14.7515H14.7677H14.7838H14.7999H14.816H14.8321H14.8481H14.8642H14.8802H14.8961H14.9121H14.928H14.9439H14.9598H14.9756H14.9915H15.0073H15.023H15.0388H15.0545H15.0702H15.0858H15.1015H15.1171H15.1327H15.1482H15.1637H15.1792H15.1947H15.2101H15.2255H15.2408H15.2562H15.2715H15.2867H15.302H15.3172H15.3323H15.3474H15.3625H15.3776H15.3926H15.4076H15.4226H15.4375H15.4524H15.4672H15.482H15.4968H15.5115H15.5262H15.5409H15.5555H15.5701H15.5846H15.5991H15.6136H15.628H15.6424H15.6567H15.671H15.6852H15.6994H15.7136H15.7277H15.7418H15.7558H15.7698H15.7838H15.7976H15.8115H15.8253H15.8391H15.8528H15.8664H15.8801H15.8936H15.9072H15.9206H15.9341H15.9474H15.9608H15.9741H15.9873H16.0005H16.0136H16.0267H16.0397H16.0527H16.0656H16.0785H16.0913H16.104H16.1167H16.1294H16.142H16.1545H16.167H16.1795H16.1919H16.2042H16.2164H16.2287H16.2408H16.2529H16.2649H16.2769H16.2888H16.3007H16.3125H16.3242H16.3359H16.3476H16.3591H16.3706H16.3821H16.3934H16.4047H16.416H16.4272H16.4383H16.4494H16.4604H16.4713H16.4822H16.493H16.5037H16.5144H16.525H16.5356H16.546H16.5564H16.5668H16.5771H16.5873H16.5974H16.6075H16.6175H16.6274H16.6372H16.647H16.6567H16.6664H16.676H16.6855H16.6949H16.7043C17.1457 17.25 17.4935 17.3611 17.7627 17.5406C17.8714 17.613 17.9648 17.695 18.0452 17.7821V7.95525Z" fill="none" stroke-width="0.5"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M10.5 7.95456H8.71143V19.0909H15.5906C16.0738 19.0909 16.8128 19.1928 17.0823 19.3451C17.1152 19.3636 17.1308 19.4099 17.1504 19.4679C17.2053 19.6307 17.2915 19.8864 17.8778 19.8864C18.6732 19.8864 18.6732 19.4157 18.6732 19.4157C18.9989 19.2252 19.458 19.0909 20.105 19.0909H27.0452V7.95456H25.5V17H10.5V7.95456Z" stroke="none"/>
+<rect x="11.9316" y="9.54547" width="4.77273" height="0.795455" rx="0.397727" stroke="none"/>
+<rect x="19.0908" y="9.54547" width="4.77273" height="0.795455" rx="0.397727" stroke="none"/>
+<rect x="11.9316" y="11.9318" width="4.77273" height="0.795455" rx="0.397727" stroke="none"/>
+<rect x="19.0908" y="11.9318" width="4.77273" height="0.795455" rx="0.397727" stroke="none"/>
+<rect x="11.9316" y="14.3182" width="4.77273" height="0.795455" rx="0.397727" stroke="none"/>
+<rect x="19.0908" y="14.3182" width="4.77273" height="0.795455" rx="0.397727" stroke="none"/>
+</symbol>
+
+<symbol id="donDeMateriels" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M13.6364 8.18182H4.09093C3.33782 8.18182 2.72729 8.79234 2.72729 9.54546V13.6364L13.6364 13.6364V8.18182ZM2.72729 15V23.1818C2.72729 23.9349 3.33782 24.5455 4.09093 24.5455H12.2727H13.6364V15H2.72729ZM16.3637 24.5455H17.7273H25.9091C26.6622 24.5455 27.2728 23.9349 27.2728 23.1818V15H16.3637V24.5455ZM27.2728 13.6364L16.3637 13.6364V8.18182H25.9091C26.6622 8.18182 27.2728 8.79234 27.2728 9.54546V13.6364Z" stroke="none"/>
+<path d="M17.7272 6.81818H9.10467C7.84184 6.81818 6.81812 5.79445 6.81812 4.53162V4.53162C6.81812 2.65509 8.95378 1.57748 10.4632 2.69239L16.0489 6.81818" fill="none"/>
+<path d="M12.2728 6.81818H20.8953C22.1582 6.81818 23.1819 5.79445 23.1819 4.53162V4.53162C23.1819 2.65509 21.0462 1.57748 19.5368 2.69239L13.9511 6.81818" fill="none"/>
+<path d="M12.2727 24.5454V25.9476C12.1734 25.9717 12.0768 26.007 11.9848 26.053L10.0113 27.0398C9.72576 27.1825 9.54541 27.4744 9.54541 27.7936C9.54541 28.259 9.92273 28.6363 10.3882 28.6363H19.6117C20.0772 28.6363 20.4545 28.259 20.4545 27.7936C20.4545 27.4744 20.2741 27.1825 19.9886 27.0398L18.0152 26.053C17.9231 26.007 17.8265 25.9717 17.7272 25.9476V24.5454H12.2727Z" stroke="none" fill="#333333"/>
+</symbol>
+
+<symbol id="reconditionnementsDeMateriel" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M24.6458 4.07059C23.19 3.6818 21.5723 4.05846 20.4302 5.20056C19.2881 6.34266 18.9115 7.96033 19.3002 9.41611L15.8209 12.8955L18.9064 15.981L22.3858 12.5017C23.8416 12.8904 25.4593 12.5138 26.6013 11.3717C27.7434 10.2296 28.1201 8.61195 27.7313 7.15618L25.5729 9.31462L23.0016 8.80036L22.4873 6.22906L24.6458 4.07059ZM16.8494 18.0381L13.7638 14.9525L9.21799 19.4984C7.76221 19.1096 6.14454 19.4863 5.00244 20.6283C3.86034 21.7705 3.48368 23.3882 3.87247 24.844L6.03106 22.6854L8.60236 23.1996L9.11662 25.7709L6.95807 27.9295C8.41384 28.3182 10.0315 27.9415 11.1736 26.7995C12.3157 25.6574 12.6923 24.0397 12.3035 22.5839L16.8494 18.0381Z" stroke="none" fill="#333333"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M10.2536 6.42804C10.1525 6.19203 9.96439 6.00397 9.72838 5.90282L6.49622 4.51761L5.4677 5.54612L6.85291 8.77828C6.95406 9.0143 7.14212 9.20236 7.37814 9.30351L10.6103 10.6887L10.6164 10.6826L19.0192 19.0855L20.0478 18.057L11.6297 9.63888L10.2536 6.42804Z" fill="#333333" stroke="none"/>
+<rect x="17.7522" y="19.8494" width="4.36364" height="11.6364" rx="1" transform="rotate(-45 17.7522 19.8494)" stroke="none"/>
+</symbol>
+
+<symbol id="emailVerification" viewBox="0 0 196 119" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g opacity="0.35" filter="url(#filter0_f)">
+<rect x="74.145" y="49.134" width="94.7677" height="60.8093" transform="rotate(-19.503 74.145 49.134)" fill="#348899"/>
+</g>
+<path d="M72.012 33.98C69.9322 34.3896 68.691 36.5394 69.3763 38.5454L95.4069 114.744C96.0855 116.73 98.3483 117.677 100.239 116.765L182.813 76.9455C184.422 76.1698 185.188 74.3077 184.592 72.6244L165.466 18.6229C164.886 16.9861 163.194 16.0218 161.49 16.3573L72.012 33.98Z" fill="#C9ECF3" stroke="#83B6C1" stroke-width="3"/>
+<path d="M72.2571 38.0604C70.0496 37.0427 70.4459 33.7921 72.8333 33.3347L161.294 16.3859C163.287 16.0041 164.88 18.0294 164.04 19.8761M72.2571 38.0604L164.04 19.8761M72.2571 38.0604L132.625 65.8898C137.408 68.0943 143.071 65.9885 145.25 61.195L164.04 19.8761M72.2571 38.0604L164.04 19.8761" fill="#EAF8FB" stroke="#83B6C1" stroke-width="3"/>
+<path d="M63.4997 63L2.12107 78.1767" stroke="#DC2A59" stroke-width="3" stroke-linecap="round"/>
+<path d="M77.0343 97L36.1785 116.5" stroke="#DC2A59" stroke-width="3" stroke-linecap="round"/>
+<path d="M70.0344 80L48.5 88" stroke="#DC2A59" stroke-width="3" stroke-linecap="round"/>
+<defs>
+<filter id="filter0_f" x="62.145" y="5.49524" width="133.632" height="112.959" 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"/>
+</filter>
+</defs>
+</symbol>
+
+<symbol id="chevronRight" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
+<path d="M8 6L16 12.5L8 19" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
+</symbol>
+
+<symbol id="chevronLeft" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
+<path d="M16 6L8 12.5L16 19" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
+</symbol>
+
+</svg>
\ No newline at end of file
diff --git a/src/assets/form/validate.svg b/src/assets/form/validate.svg
new file mode 100644
index 0000000000000000000000000000000000000000..991694b27aee6ebb7e16c88850251638d0e014f1
--- /dev/null
+++ b/src/assets/form/validate.svg
@@ -0,0 +1,4 @@
+<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/scan.svg b/src/assets/ico/scan.svg
new file mode 100644
index 0000000000000000000000000000000000000000..171bc45da05cde27b0a723208f5f40533db74c58
--- /dev/null
+++ b/src/assets/ico/scan.svg
@@ -0,0 +1,11 @@
+<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="3" y="1" width="4" height="1" fill="#333333"/>
+<rect x="3" y="20" width="4" height="1" fill="#333333"/>
+<rect x="3" y="21" width="4" height="1" transform="rotate(-90 3 21)" fill="#333333"/>
+<rect x="3" y="5" width="4" height="1" transform="rotate(-90 3 5)" fill="#333333"/>
+<rect x="18" y="5" width="4" height="1" transform="rotate(-90 18 5)" fill="#333333"/>
+<rect x="18" y="21" width="4" height="1" transform="rotate(-90 18 21)" fill="#333333"/>
+<rect x="15" y="1" width="4" height="1" fill="#333333"/>
+<rect x="15" y="20" width="4" height="1" fill="#333333"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M6 5C6 4.44772 6.44772 4 7 4H13V6C13 6.55228 13.4477 7 14 7H16V17C16 17.5523 15.5523 18 15 18H7C6.44772 18 6 17.5523 6 17V5ZM8.5 8C8.22386 8 8 8.22386 8 8.5C8 8.77614 8.22386 9 8.5 9H11.5C11.7761 9 12 8.77614 12 8.5C12 8.22386 11.7761 8 11.5 8H8.5ZM8 11.5C8 11.2239 8.22386 11 8.5 11H13.5C13.7761 11 14 11.2239 14 11.5C14 11.7761 13.7761 12 13.5 12H8.5C8.22386 12 8 11.7761 8 11.5ZM8.5 14C8.22386 14 8 14.2239 8 14.5C8 14.7761 8.22386 15 8.5 15H13.5C13.7761 15 14 14.7761 14 14.5C14 14.2239 13.7761 14 13.5 14H8.5Z" fill="#333333"/>
+</svg>
diff --git a/src/assets/ico/sprite.svg b/src/assets/ico/sprite.svg
index 5a89acce08f64a8c491ee7dd313a10564027abfe..7242edba1b355c50c202b50750613300327db6bf 100644
--- a/src/assets/ico/sprite.svg
+++ b/src/assets/ico/sprite.svg
@@ -14,6 +14,36 @@
 <path fill-rule="evenodd" clip-rule="evenodd" d="M7 4C5.89543 4 5 4.89543 5 6V23C5 24.1046 5.89543 25 7 25L7 26.5C7 27.3284 7.67157 28 8.5 28C9.32843 28 10 27.3284 10 26.5V25H21V26.5C21 27.3284 21.6716 28 22.5 28C23.3284 28 24 27.3284 24 26.5V25C25.1046 25 26 24.1046 26 23V6C26 4.89543 25.1046 4 24 4H7ZM24 9H7V18H24V9ZM12 22H19L18.125 23H12.875L12 22ZM10 6C9.44772 6 9 6.44772 9 7C9 7.55228 9.44772 8 10 8H21C21.5523 8 22 7.55228 22 7C22 6.44772 21.5523 6 21 6H10ZM10.6668 21.8754C10.4609 21.1805 9.89524 20.6514 9.18821 20.4923L7 20V23H11L10.6668 21.8754ZM21.8118 20.4923C21.1048 20.6514 20.5391 21.1805 20.3332 21.8754L20 23H24V20L21.8118 20.4923Z" fill="black"/>
 </symbol>
 
+<symbol id="paste" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M14 16L5 16V4H14L14 16Z" stroke="#333333" stroke-width="2"/>
+<path d="M19 21C19.5523 21 20 20.5523 20 20V7C20 6.44772 19.5523 6 19 6H16V17C16 17.5523 15.5523 18 15 18H9V20C9 20.5523 9.44772 21 10 21H19Z" fill="#32383D"/>
+</symbol>
+
+
+<symbol id="copy" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M4 4C4 3.44771 4.44772 3 5 3H14C14.5523 3 15 3.44772 15 4V6H9C8.44772 6 8 6.44772 8 7V18H5C4.44772 18 4 17.5523 4 17V4ZM10 7C9.44772 7 9 7.44772 9 8V20C9 20.5523 9.44771 21 10 21H19C19.5523 21 20 20.5523 20 20V8C20 7.44772 19.5523 7 19 7H10Z" fill="#32383D"/>
+</symbol>
+
+<symbol id="cancel" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M16.9498 5.36385C17.3403 4.97332 17.9734 4.97332 18.364 5.36385C18.7545 5.75437 18.7545 6.38753 18.364 6.77806L7.05026 18.0918C6.65973 18.4823 6.02657 18.4823 5.63605 18.0918C5.24552 17.7012 5.24552 17.0681 5.63605 16.6776L16.9498 5.36385Z" fill="black"/>
+<path d="M18.364 16.6777C18.7545 17.0682 18.7545 17.7013 18.364 18.0919C17.9734 18.4824 17.3403 18.4824 16.9498 18.0919L5.63605 6.77816C5.24552 6.38764 5.24552 5.75447 5.63605 5.36395C6.02657 4.97343 6.65974 4.97343 7.05026 5.36395L18.364 16.6777Z" fill="black"/>
+</symbol>
+
+<symbol id="nok" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<circle cx="16" cy="16" r="13" fill="#DA6C2E"/>
+<path d="M16.25 17.5L16.25 9.00001" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M16.25 23.6065L16.25 22.9999" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
+</symbol>
+
+<symbol id="ok" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<circle cx="16" cy="16" r="13" fill="#47C562"/>
+<path d="M11 16.8182L14.8889 20L21 13" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
+</symbol>
+
+<symbol id="add" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M12 5C11.4477 5 11 5.44772 11 6V11H6C5.44772 11 5 11.4477 5 12C5 12.5523 5.44772 13 6 13H11V18C11 18.5523 11.4477 19 12 19C12.5523 19 13 18.5523 13 18V13H18C18.5523 13 19 12.5523 19 12C19 11.4477 18.5523 11 18 11H13V6C13 5.44772 12.5523 5 12 5Z" fill="#333333"/>
+</symbol>
+
 
 <symbol id="liste" viewBox="0 0 32 32"  xmlns="http://www.w3.org/2000/svg">
 <rect x="10" y="9" width="16" height="2" rx="1" />
@@ -50,6 +80,18 @@
 <path fill-rule="evenodd" clip-rule="evenodd" d="M1.55556 5C1.24873 5 1 5.24873 1 5.55556V14.4444C1 14.7513 1.24873 15 1.55556 15H20.4444C20.7513 15 21 14.7513 21 14.4444V5.55556C21 5.24873 20.7513 5 20.4444 5H1.55556ZM4.77222 8.76388C4.78333 8.77499 4.79722 8.78055 4.81389 8.78055H4.91667C4.93333 8.78055 4.94722 8.77499 4.95833 8.76388C4.96944 8.75277 4.97683 8.73888 4.98055 8.72221L5.03055 8.3861H5.43889L5.38889 8.72221C5.38705 8.73888 5.39167 8.75277 5.40278 8.76388C5.41389 8.77499 5.42778 8.78055 5.44444 8.78055H5.54722C5.56389 8.78055 5.57778 8.77499 5.58889 8.76388C5.6 8.75277 5.60739 8.73888 5.61111 8.72221L5.66111 8.3861H5.99444C6.01294 8.3861 6.02778 8.38055 6.03889 8.36943C6.05183 8.35832 6.05833 8.34349 6.05833 8.32499V8.23055C6.05833 8.21205 6.05183 8.19721 6.03889 8.1861C6.02778 8.17499 6.01294 8.16943 5.99444 8.16943H5.69444L5.76667 7.68055H6.06667C6.08517 7.68055 6.1 7.67499 6.11111 7.66388C6.12406 7.65277 6.13056 7.63793 6.13056 7.61943V7.52499C6.13056 7.50649 6.12406 7.49166 6.11111 7.48055C6.1 7.46943 6.08517 7.46388 6.06667 7.46388H5.79722L5.84722 7.12777C5.84905 7.1111 5.84444 7.09721 5.83333 7.0861C5.82222 7.07499 5.80833 7.06943 5.79167 7.06943H5.68889C5.67222 7.06943 5.65833 7.07499 5.64722 7.0861C5.63794 7.09721 5.6315 7.1111 5.62778 7.12777L5.57778 7.46388H5.16667L5.21667 7.12777C5.2185 7.1111 5.21389 7.09721 5.20278 7.0861C5.19167 7.07499 5.17778 7.06943 5.16111 7.06943H5.05833C5.04167 7.06943 5.02778 7.07499 5.01667 7.0861C5.00739 7.09721 5.00094 7.1111 4.99722 7.12777L4.94722 7.46388H4.60555C4.58705 7.46388 4.57222 7.46943 4.56111 7.48055C4.55 7.49166 4.54444 7.50649 4.54444 7.52499V7.61943C4.54444 7.63793 4.55 7.65277 4.56111 7.66388C4.57222 7.67499 4.58705 7.68055 4.60555 7.68055H4.91389L4.84167 8.16943H4.53333C4.51483 8.16943 4.5 8.17499 4.48889 8.1861C4.47778 8.19721 4.47222 8.21205 4.47222 8.23055V8.32499C4.47222 8.34349 4.47778 8.35832 4.48889 8.36943C4.5 8.38055 4.51483 8.3861 4.53333 8.3861H4.80833L4.75833 8.72221C4.7565 8.73888 4.76111 8.75277 4.77222 8.76388ZM6.34239 8.87221C6.3535 8.88332 6.3665 8.88888 6.38128 8.88888H6.52294C6.5415 8.88888 6.55628 8.88427 6.56739 8.87499C6.58039 8.86388 6.58872 8.85277 6.59239 8.84166L6.74517 8.44721H7.65628L7.80905 8.84166C7.81278 8.85277 7.82017 8.86388 7.83128 8.87499C7.84239 8.88427 7.85817 8.88888 7.8785 8.88888H8.02017C8.035 8.88888 8.04794 8.88332 8.05906 8.87221C8.07017 8.8611 8.07572 8.84816 8.07572 8.83332L8.07017 8.80277L7.38406 7.00555C7.36928 6.96482 7.33961 6.94443 7.29517 6.94443H7.10628C7.06183 6.94443 7.03222 6.96482 7.01739 7.00555L6.3285 8.80277C6.32667 8.80832 6.32572 8.81849 6.32572 8.83332C6.32572 8.84816 6.33128 8.8611 6.34239 8.87221ZM8.38939 8.87221C8.40239 8.88332 8.41811 8.88888 8.43661 8.88888H8.58383C8.60239 8.88888 8.61811 8.88332 8.63106 8.87221C8.64406 8.85927 8.6505 8.84349 8.6505 8.82499V8.13055H9.14217C9.35328 8.13055 9.51811 8.08054 9.63661 7.98054C9.757 7.87871 9.81717 7.73149 9.81717 7.53888C9.81717 7.34627 9.757 7.19904 9.63661 7.09721C9.51628 6.99538 9.35144 6.94443 9.14217 6.94443H8.43661C8.41811 6.94443 8.40239 6.95093 8.38939 6.96388C8.37828 6.97499 8.37272 6.99071 8.37272 7.0111V8.82499C8.37272 8.84349 8.37828 8.85927 8.38939 8.87221ZM10.5966 8.87221C10.6096 8.88332 10.6253 8.88888 10.6438 8.88888H10.7883C10.8068 8.88888 10.8226 8.88332 10.8355 8.87221C10.8485 8.85927 10.8549 8.84349 10.8549 8.82499V7.19166H11.3855C11.4041 7.19166 11.4198 7.1861 11.4327 7.17499C11.4457 7.16205 11.4522 7.14627 11.4522 7.12777V7.0111C11.4522 6.99071 11.4457 6.97499 11.4327 6.96388C11.4216 6.95093 11.4059 6.94443 11.3855 6.94443H10.0466C10.0281 6.94443 10.0124 6.95093 9.99939 6.96388C9.98828 6.97682 9.98272 6.9926 9.98272 7.0111V7.12777C9.98272 7.14627 9.98828 7.16205 9.99939 7.17499C10.0124 7.1861 10.0281 7.19166 10.0466 7.19166H10.5799V8.82499C10.5799 8.84349 10.5855 8.85927 10.5966 8.87221ZM11.7803 8.87221C11.7932 8.88332 11.8089 8.88888 11.8275 8.88888H11.9747C11.9932 8.88888 12.0081 8.88332 12.0192 8.87221C12.0321 8.85927 12.0386 8.84349 12.0386 8.82499V7.00832C12.0386 6.98982 12.0321 6.97499 12.0192 6.96388C12.0081 6.95093 11.9932 6.94443 11.9747 6.94443H11.8275C11.8089 6.94443 11.7932 6.95093 11.7803 6.96388C11.7692 6.97499 11.7636 6.98982 11.7636 7.00832V8.82499C11.7636 8.84349 11.7692 8.85927 11.7803 8.87221ZM12.6564 8.71666C12.7861 8.84999 12.975 8.91666 13.2231 8.91666C13.3879 8.91666 13.5278 8.88793 13.6426 8.83055C13.7574 8.77127 13.8444 8.69443 13.9037 8.59999C13.9629 8.50554 13.9953 8.40371 14.0009 8.29443C14.0028 8.27777 13.9972 8.26482 13.9842 8.25555C13.9731 8.24443 13.9592 8.23888 13.9426 8.23888H13.7898C13.7713 8.23888 13.7564 8.24349 13.7453 8.25277C13.7342 8.26204 13.7259 8.27871 13.7203 8.30277C13.6907 8.44166 13.6342 8.53982 13.5509 8.59721C13.4694 8.65277 13.3602 8.68055 13.2231 8.68055C12.9046 8.68055 12.7398 8.50371 12.7287 8.14999C12.7268 8.09627 12.7259 8.0176 12.7259 7.91388C12.7259 7.81016 12.7268 7.73332 12.7287 7.68332C12.7398 7.3296 12.9046 7.15277 13.2231 7.15277C13.3602 7.15277 13.4694 7.18149 13.5509 7.23888C13.6324 7.29443 13.6889 7.39166 13.7203 7.53055C13.7296 7.57316 13.7528 7.59443 13.7898 7.59443H13.9426C13.9574 7.59443 13.9703 7.58982 13.9814 7.58055C13.9944 7.56943 14.0009 7.55649 14.0009 7.54166V7.5361C13.9953 7.42871 13.9629 7.32777 13.9037 7.23332C13.8444 7.13888 13.7574 7.06293 13.6426 7.00555C13.5278 6.94627 13.3879 6.91666 13.2231 6.91666C12.9768 6.91666 12.7889 6.98427 12.6592 7.11943C12.5296 7.25277 12.4602 7.4361 12.4509 7.66943C12.4491 7.72127 12.4481 7.8046 12.4481 7.91943C12.4481 8.03238 12.4491 8.11388 12.4509 8.16388C12.4602 8.39904 12.5287 8.58332 12.6564 8.71666ZM4.25 11C4.11193 11 4 11.1119 4 11.25C4 11.3881 4.11193 11.5 4.25 11.5H12.7259C12.864 11.5 12.9759 11.3881 12.9759 11.25C12.9759 11.1119 12.864 11 12.7259 11H4.25ZM16.6144 11.9418H16.0068C16.0133 12.1185 16.0594 12.249 16.1451 12.3333C16.2321 12.4177 16.3749 12.4598 16.5735 12.4598C16.702 12.4598 16.8163 12.4398 16.9163 12.3996L17 12.9398C16.8273 12.9799 16.6566 13 16.4878 13C16.1373 13 15.8575 12.9063 15.6485 12.7189C15.4408 12.5315 15.3317 12.2724 15.3213 11.9418H15V11.6205H15.3213V11.3755H15V11.0562H15.3272C15.3518 10.7242 15.4726 10.4652 15.6894 10.2791C15.9062 10.093 16.1925 10 16.5482 10C16.6858 10 16.8364 10.0207 17 10.0622L16.9163 10.6044C16.815 10.5629 16.7066 10.5422 16.591 10.5422C16.4119 10.5422 16.2749 10.5843 16.1801 10.6687C16.0854 10.7517 16.0295 10.8809 16.0127 11.0562H16.6144V11.3755H16.0068V11.6205H16.6144V11.9418ZM9.12828 7.89721C9.2635 7.89721 9.36533 7.86666 9.43383 7.80554C9.50422 7.74443 9.53939 7.65554 9.53939 7.53888C9.53939 7.42221 9.50517 7.33332 9.43661 7.27221C9.36811 7.20927 9.26533 7.17777 9.12828 7.17777H8.64772V7.89721H9.12828ZM7.20072 7.22221L7.57572 8.20832H6.82572L7.20072 7.22221ZM5.54444 7.68055L5.47222 8.16943H5.06389L5.13611 7.68055H5.54444ZM19.75 6C19.6119 6 19.5 6.11193 19.5 6.25V6.75C19.5 6.88807 19.6119 7 19.75 7C19.8881 7 20 6.88807 20 6.75V6.25C20 6.11193 19.8881 6 19.75 6ZM19.5 8.25C19.5 8.11193 19.6119 8 19.75 8C19.8881 8 20 8.11193 20 8.25V10.75C20 10.8881 19.8881 11 19.75 11C19.6119 11 19.5 10.8881 19.5 10.75V8.25ZM19.75 12C19.6119 12 19.5 12.1119 19.5 12.25V13.75C19.5 13.8881 19.6119 14 19.75 14C19.8881 14 20 13.8881 20 13.75V12.25C20 12.1119 19.8881 12 19.75 12Z" fill="#333333"/>
 </symbol>
 
+<symbol id="scan" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
+<rect x="3" y="1" width="4" height="1" stroke="none"/>
+<rect x="3" y="20" width="4" height="1" stroke="none"/>
+<rect x="3" y="21" width="4" height="1" transform="rotate(-90 3 21)" stroke="none"/>
+<rect x="3" y="5" width="4" height="1" transform="rotate(-90 3 5)" stroke="none"/>
+<rect x="18" y="5" width="4" height="1" transform="rotate(-90 18 5)" stroke="none"/>
+<rect x="18" y="21" width="4" height="1" transform="rotate(-90 18 21)" stroke="none"/>
+<rect x="15" y="1" width="4" height="1" stroke="none"/>
+<rect x="15" y="20" width="4" height="1" stroke="none"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M6 5C6 4.44772 6.44772 4 7 4H13V6C13 6.55228 13.4477 7 14 7H16V17C16 17.5523 15.5523 18 15 18H7C6.44772 18 6 17.5523 6 17V5ZM8.5 8C8.22386 8 8 8.22386 8 8.5C8 8.77614 8.22386 9 8.5 9H11.5C11.7761 9 12 8.77614 12 8.5C12 8.22386 11.7761 8 11.5 8H8.5ZM8 11.5C8 11.2239 8.22386 11 8.5 11H13.5C13.7761 11 14 11.2239 14 11.5C14 11.7761 13.7761 12 13.5 12H8.5C8.22386 12 8 11.7761 8 11.5ZM8.5 14C8.22386 14 8 14.2239 8 14.5C8 14.7761 8.22386 15 8.5 15H13.5C13.7761 15 14 14.7761 14 14.5C14 14.2239 13.7761 14 13.5 14H8.5Z" stroke="none"/>
+</symbol>
+
 <symbol id="public" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
 <path d="M13.0474 10.437C14.2168 9.73893 15 8.46093 15 7C15 4.79086 13.2091 3 11 3C8.79086 3 7 4.79086 7 7C7 8.46093 7.7832 9.73893 8.95263 10.437C7.21207 11.2192 6 12.9681 6 15V18H16V15C16 12.9681 14.7879 11.2192 13.0474 10.437Z" fill="#333333"/>
 <path fill-rule="evenodd" clip-rule="evenodd" d="M16.917 14H21V11.8C21 10.3099 20.1516 9.02743 18.9332 8.45382C19.7518 7.94188 20.3 7.00468 20.3 5.93333C20.3 4.3133 19.0464 3 17.5 3C16.542 3 15.6963 3.50407 15.1915 4.27286C15.7028 5.05718 16 5.99389 16 7C16 7.44599 15.9416 7.87827 15.832 8.28963C15.9075 8.34834 15.9858 8.40316 16.0668 8.45382C15.9493 8.50916 15.8352 8.57108 15.725 8.63916C15.5088 9.26223 15.173 9.82915 14.7453 10.3124C15.8722 11.214 16.6677 12.514 16.917 14ZM14.9929 7.24086C14.9976 7.16118 15 7.08087 15 7C15 6.48461 14.9025 5.99199 14.725 5.53957C14.7085 5.66836 14.7 5.79981 14.7 5.93333C14.7 6.40316 14.8054 6.84718 14.9929 7.24086ZM15.9 14H14V11.8C14 11.5447 14.0249 11.2955 14.0723 11.055C14.9949 11.7745 15.6585 12.8106 15.9 14Z" fill="#333333"/>
diff --git a/src/assets/logos/lyon.svg b/src/assets/logos/demarcheMetropolitaine.svg
similarity index 100%
rename from src/assets/logos/lyon.svg
rename to src/assets/logos/demarcheMetropolitaine.svg
diff --git a/src/assets/scss/_color.scss b/src/assets/scss/_color.scss
index 63829c4a2ad33e66578aaac365b529f5494d8523..b5a0368f86e54b9c0a9c93edf235f24235d9e01c 100644
--- a/src/assets/scss/_color.scss
+++ b/src/assets/scss/_color.scss
@@ -8,9 +8,12 @@ $grey-2: #4f4f4f;
 $grey-3: #828282;
 $grey-4: #bdbdbd;
 $grey-6: #f2f2f2;
+/* form colors */
+$green-1: #47c562;
 /* Status colors */
 $green: #41c29c;
 $red: #f98181;
+$orange-warning: #da6c2e;
 /* OTHERS */
 $blue: #348899;
 $blue-hover: #117083;
diff --git a/src/assets/scss/_inputs.scss b/src/assets/scss/_inputs.scss
index e672692f6e3e66ced23a2d0175dd1a3bfe61c43d..c9fbb4a9f2a42a079b6f6ba9ff287db52956b3c2 100644
--- a/src/assets/scss/_inputs.scss
+++ b/src/assets/scss/_inputs.scss
@@ -1,5 +1,6 @@
 @import './color';
 @import './shapes';
+@import './typography';
 
 @mixin input-search {
   width: 100%;
@@ -12,14 +13,67 @@
 }
 
 .form-input {
-  min-width: 290px;
+  width: 296px;
   background: $grey-6;
   border: 1px solid $grey-4;
   box-sizing: border-box;
   border-radius: $input-radius;
   height: 40px;
+  padding: 8px;
+  @include cn-regular-14;
 }
 .form-input:focus {
   border: 1px solid $blue;
   outline: none !important;
 }
+
+/* The switch - the box around the slider */
+.switch {
+  position: relative;
+  display: inline-block;
+  width: 60px;
+  height: 34px;
+}
+
+/* Hide default HTML checkbox */
+.switch input {
+  opacity: 0;
+  width: 0;
+  height: 0;
+}
+
+/* The slider */
+.slider {
+  position: absolute;
+  cursor: pointer;
+  top: 10px;
+  background-color: $white;
+  border-radius: 7px;
+  width: 34px;
+  height: 14px;
+  border: 1px solid $grey-4;
+}
+
+.slider:before {
+  position: absolute;
+  content: '';
+  height: 20px;
+  width: 20px;
+  left: -6px;
+  bottom: -3px;
+  background-color: $grey-4;
+  -webkit-transition: 0.4s;
+  transition: 0.4s;
+  border-radius: 50%;
+}
+
+input:checked + .slider {
+  border: 1px solid $secondary-color;
+}
+
+input:checked + .slider:before {
+  -webkit-transform: translateX(26px);
+  -ms-transform: translateX(26px);
+  transform: translateX(26px);
+  background-color: $secondary-color;
+}
diff --git a/src/assets/scss/_layout.scss b/src/assets/scss/_layout.scss
index 6e84660e0325b17dafd7f25ecd84c7a1861d6493..b80043aa24c23f2824ec2e30be3f94cc8d926627 100644
--- a/src/assets/scss/_layout.scss
+++ b/src/assets/scss/_layout.scss
@@ -1,2 +1,4 @@
 $header-height: 70px;
 $footer-height: 56px;
+$header-height-phone: 50px;
+$footer-height-phone: 75px;
diff --git a/src/assets/scss/_shapes.scss b/src/assets/scss/_shapes.scss
index d2c8d047278aeef88b47a5272f5511308a6e1825..9eb400742e995d1da5d6a163ad8b9e1771a58eab 100644
--- a/src/assets/scss/_shapes.scss
+++ b/src/assets/scss/_shapes.scss
@@ -2,7 +2,7 @@
 
 $card-radius: 0.625em;
 $bouton-radius: 0.625em;
-$input-radius: 4px;
+$input-radius: 1px;
 $bouton-width: 12.25em;
 $round-bouton-radius: 1.25em;
 $round-radius: 50%;
diff --git a/src/assets/scss/_typography.scss b/src/assets/scss/_typography.scss
index 5ac70fdc41284f7938e14160cdd407a72e418f0f..8d7611006df3862e440590cf1edcabf810eff3d0 100644
--- a/src/assets/scss/_typography.scss
+++ b/src/assets/scss/_typography.scss
@@ -5,11 +5,12 @@ $title-font: 'Trebuchet MS', 'Helvetica', sans-serif;
 $font-size-xxsmall: 0.75em; // 12px
 $font-size-xsmall: 0.875em; // 14px
 $font-size-small: 1em; // 16px
-$font-size-medium: 1.25em; // 20px
+$font-size-smedium: 1.25em; // 20px
+$font-size-medium: 1.375em; // 22px
 $font-size-xmedium: 1.5em; // 24px
 $font-size-large: 1.75em; // 28px
 $font-size-xlarge: 2em; // 32px
-$font-size-medium-mobile: 1em;
+$font-size-medium-mobile: 1.1em;
 
 html,
 body,
@@ -97,29 +98,43 @@ h6,
   font-weight: bold;
   font-size: $font-size-xmedium;
 }
-@mixin cn-bold-20 {
+
+@mixin cn-regular-22 {
+  font-family: $text-font;
+  font-style: normal;
+  font-weight: normal;
+  font-size: $font-size-medium;
+}
+
+@mixin cn-bold-22 {
   font-family: $text-font;
   font-style: normal;
   font-weight: bold;
   font-size: $font-size-medium;
 }
+@mixin cn-bold-20 {
+  font-family: $text-font;
+  font-style: normal;
+  font-weight: bold;
+  font-size: $font-size-smedium;
+}
 @mixin cn-regular-20 {
   font-family: $text-font;
   font-style: normal;
   font-weight: normal;
-  font-size: $font-size-medium;
+  font-size: $font-size-smedium;
 }
 @mixin cn-bold-20 {
   font-family: $title-font;
   font-style: normal;
   font-weight: bold;
-  font-size: $font-size-medium;
+  font-size: $font-size-smedium;
 }
 @mixin cn-regular-20 {
   font-family: $title-font;
   font-style: normal;
   font-weight: normal;
-  font-size: $font-size-medium;
+  font-size: $font-size-smedium;
 }
 @mixin cn-regular-18 {
   font-family: $title-font;
diff --git a/src/assets/scss/_z-index.scss b/src/assets/scss/_z-index.scss
index a9230fbd4da7814c07407923abced79e6a5c7f48..18c12fc2c0511495842353125e55957dbf5b2e49 100644
--- a/src/assets/scss/_z-index.scss
+++ b/src/assets/scss/_z-index.scss
@@ -7,3 +7,4 @@ $structure-details-z-index: 1001;
 
 // Modals (filters/confirmationPopup/authen/...)
 $modal-z-index: 1002;
+$modal-confirmation-z-index: 1004;
diff --git a/src/styles.scss b/src/styles.scss
index fe31c70d7e4ad14257c952527a54dafccabc77e4..25c9dd89ed29725762f2fcff2a38ea94fe8b6225 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -157,6 +157,7 @@ button {
     }
   }
 }
+
 // Layout
 .w-100 {
   width: 100%;