From 15a87e531ef87e3ed55dbc0d21587ab15f0630b1 Mon Sep 17 00:00:00 2001
From: "guilhem.carron" <gcarron@grandlyon.com>
Date: Thu, 10 Mar 2022 15:21:10 +0100
Subject: [PATCH 01/40] feat(search): Rework structure search bar

---
 src/app/carto/carto.component.html            | 80 ++++++++++--------
 src/app/carto/carto.component.scss            |  9 +-
 src/app/carto/carto.component.ts              | 20 ++++-
 src/app/map/components/map.component.ts       |  1 +
 .../components/button/button.component.html   |  8 +-
 .../components/button/button.component.scss   |  7 +-
 .../structure-list-search.component.html      | 82 ++++++++-----------
 .../structure-list-search.component.scss      | 39 ++++-----
 .../structure-list-search.component.ts        |  6 +-
 .../structure-list.component.html             |  8 --
 .../structure-list.component.ts               | 16 +---
 src/assets/ico/search.svg                     |  3 +
 src/assets/ico/sprite.svg                     |  3 +
 src/assets/scss/_inputs.scss                  |  3 +-
 14 files changed, 139 insertions(+), 146 deletions(-)
 create mode 100644 src/assets/ico/search.svg

diff --git a/src/app/carto/carto.component.html b/src/app/carto/carto.component.html
index 3b47fe933..c5fde954f 100644
--- a/src/app/carto/carto.component.html
+++ b/src/app/carto/carto.component.html
@@ -1,37 +1,47 @@
-<div fxLayout="row" class="content-container">
-  <app-structure-list
-    (searchEvent)="getStructures($event)"
-    [structureList]="structures"
-    [location]="currentLocation"
-    [locate]="locate"
-    (displayMapMarkerId)="setMapMarkerId($event)"
-    (selectedMarkerId)="setSelectedMarkerId($event)"
-    [selectedStructure]="currentStructure"
-    (updatedStructure)="updateStructures($event)"
-    (locatationReset)="locatationReset()"
-    (locatationTrigger)="locatationTrigger(null)"
-    class="left-pane"
-    [ngClass]="{ mapPhone: isMapPhone == true }"
-    fxLayout="column"
-  ></app-structure-list>
-  <div class="btnSwitch">
-    <app-button
-      [style]="'roundedButton'"
-      [text]="isMapPhone ? 'Liste' : 'Carte'"
-      [iconBtn]="isMapPhone ? 'liste' : 'map-marker'"
-      (action)="switchMapList()"
-    ></app-button>
+<div class="content-container">
+  <div class="hide-on-print">
+    <app-structure-list-search
+      (searchEvent)="fetchResults($event)"
+      (locationReset)="sendLocationReset()"
+      (locationTrigger)="sendlocationTrigger()"
+      [locate]="locate"
+    ></app-structure-list-search>
+  </div>
+  <div fxLayout="row">
+    <app-structure-list
+      (searchEvent)="getStructures($event)"
+      [structureList]="structures"
+      [location]="currentLocation"
+      [locate]="locate"
+      (displayMapMarkerId)="setMapMarkerId($event)"
+      (selectedMarkerId)="setSelectedMarkerId($event)"
+      [selectedStructure]="currentStructure"
+      (updatedStructure)="updateStructures($event)"
+      (locatationReset)="maplocationReset()"
+      (locatationTrigger)="maplocationTrigger(null)"
+      class="left-pane"
+      [ngClass]="{ mapPhone: isMapPhone == true }"
+      fxLayout="column"
+    ></app-structure-list>
+    <div class="btnSwitch">
+      <app-button
+        [style]="'roundedButton'"
+        [text]="isMapPhone ? 'Liste' : 'Carte'"
+        [iconBtn]="isMapPhone ? 'liste' : 'map-marker'"
+        (action)="switchMapList()"
+      ></app-button>
+    </div>
+    <app-map
+      [structures]="structures"
+      [toogleToolTipId]="displayMarkerId"
+      [selectedMarkerId]="selectedMarkerId"
+      [locate]="locate"
+      (selectedStructure)="showDetailStructure($event)"
+      (locatationTrigger)="maplocationTrigger($event)"
+      [isMapPhone]="isMapPhone"
+      [searchedValue]="searchedValue"
+      class="right-pane"
+      [ngClass]="{ mapPhone: isMapPhone == true }"
+    ></app-map>
   </div>
-  <app-map
-    [structures]="structures"
-    [toogleToolTipId]="displayMarkerId"
-    [selectedMarkerId]="selectedMarkerId"
-    [locate]="locate"
-    (selectedStructure)="showDetailStructure($event)"
-    (locatationTrigger)="locatationTrigger($event)"
-    [isMapPhone]="isMapPhone"
-    [searchedValue]="searchedValue"
-    class="right-pane"
-    [ngClass]="{ mapPhone: isMapPhone == true }"
-  ></app-map>
 </div>
diff --git a/src/app/carto/carto.component.scss b/src/app/carto/carto.component.scss
index b30874632..e9665df13 100644
--- a/src/app/carto/carto.component.scss
+++ b/src/app/carto/carto.component.scss
@@ -21,7 +21,6 @@
 }
 .right-pane {
   width: 80%;
-  padding: 0 16px;
   @media #{$tablet} {
     display: none;
     &.mapPhone {
@@ -32,11 +31,9 @@
   }
 }
 .content-container {
-  height: calc(100vh - #{$header-height} - #{$footer-height});
-  @media #{$tablet} {
-    padding: 0;
-    height: calc(100vh - #{$header-height});
-  }
+  height: calc(100vh - #{$header-height});
+  background: white;
+  padding-top: 0.6rem;
 }
 .btnSwitch {
   position: fixed;
diff --git a/src/app/carto/carto.component.ts b/src/app/carto/carto.component.ts
index 3c6d3289a..75d74b0ee 100644
--- a/src/app/carto/carto.component.ts
+++ b/src/app/carto/carto.component.ts
@@ -1,6 +1,5 @@
-import { Component, OnInit } from '@angular/core';
+import { Component, EventEmitter, OnInit, Output } from '@angular/core';
 import { Meta } from '@angular/platform-browser';
-const { DateTime } = require('luxon');
 import * as _ from 'lodash';
 
 import { Structure } from '../models/structure.model';
@@ -17,6 +16,9 @@ import { ActivatedRoute } from '@angular/router';
   styleUrls: ['./carto.component.scss'],
 })
 export class CartoComponent implements OnInit {
+  @Output() searchEvent = new EventEmitter();
+  @Output() public locationReset: EventEmitter<boolean> = new EventEmitter<boolean>();
+  @Output() public locationTrigger: EventEmitter<boolean> = new EventEmitter<boolean>();
   public structures: Structure[] = [];
   public displayMarkerId: string;
   public selectedMarkerId: string;
@@ -208,7 +210,7 @@ export class CartoComponent implements OnInit {
     this.isMapPhone = !this.isMapPhone;
   }
 
-  public locatationTrigger(event: any): void {
+  public maplocationTrigger(event: any): void {
     if (event && event !== this.locate) {
       this.locate = !this.locate;
     }
@@ -217,7 +219,17 @@ export class CartoComponent implements OnInit {
     }
   }
 
-  public locatationReset(): void {
+  public maplocationReset(): void {
     this.locate = false;
   }
+  public sendLocationReset(): void {
+    this.locationReset.emit(true);
+  }
+
+  public sendlocationTrigger(): void {
+    this.locationTrigger.emit(true);
+  }
+  public fetchResults(filters: Filter[]): void {
+    this.searchEvent.emit(filters);
+  }
 }
diff --git a/src/app/map/components/map.component.ts b/src/app/map/components/map.component.ts
index 35f1387f2..f94a16343 100644
--- a/src/app/map/components/map.component.ts
+++ b/src/app/map/components/map.component.ts
@@ -10,6 +10,7 @@ import metropole from '../../../assets/geojson/metropole.json';
 import L from 'leaflet';
 import 'leaflet.locatecontrol';
 import { ZoomLevel } from './zoomLevel.enum';
+import { Filter } from '../../structure-list/models/filter.model';
 
 @Component({
   selector: 'app-map',
diff --git a/src/app/shared/components/button/button.component.html b/src/app/shared/components/button/button.component.html
index d9ee298fb..3f4662f6c 100644
--- a/src/app/shared/components/button/button.component.html
+++ b/src/app/shared/components/button/button.component.html
@@ -13,7 +13,13 @@
     </div>
   </button>
 </ng-container>
-
+<ng-container *ngIf="style === 'searchIcon'">
+  <button class="searchIcon" type="{{ type }}" (click)="doAction()">
+    <div fxLayout="row center" class="searchIcon withIcon" fxLayoutAlign="space-between center">
+      <app-svg-icon [type]="'ico'" [icon]="iconBtn" [iconColor]="'currentColor'"></app-svg-icon>
+    </div>
+  </button>
+</ng-container>
 <ng-container *ngIf="style === 'button'">
   <button class="btn-search-filter" type="{{ type }}">{{ text }}</button>
 </ng-container>
diff --git a/src/app/shared/components/button/button.component.scss b/src/app/shared/components/button/button.component.scss
index 6cb409630..2cd292049 100644
--- a/src/app/shared/components/button/button.component.scss
+++ b/src/app/shared/components/button/button.component.scss
@@ -21,6 +21,10 @@ button {
   cursor: pointer;
   border: 1px solid;
 }
+.searchIcon {
+  background: transparent;
+  border: none;
+}
 .btnSearch {
   @include background-hash($grey-2);
   border-color: $grey-4;
@@ -39,7 +43,8 @@ button {
     border-color: $grey-6;
   }
   .searchButton {
-    background: $white;
+    background: $grey-6;
+
     height: 31px;
     color: $secondary-color;
     padding: 3px 16px 3px 16px;
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
index 844590f9f..f03f62c6d 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
@@ -1,31 +1,19 @@
 <div class="block">
-  <div class="header">
-    <span class="title"
-      >Recherche d’acteur <br />
-      du réseau d’inclusion numérique</span
+  <div class="content" fxLayout="row" fxLayoutAlign="start center">
+    <form
+      class="inputSearch"
+      [formGroup]="searchForm"
+      fxLayout="row"
+      fxLayoutGap="16px"
+      fxLayoutAlign=" center"
+      (ngSubmit)="applyFilter(searchForm.value.searchTerm)"
     >
-  </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="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 fxLayout="row" fxLayoutAlign="space-between center">
+        <input type="text" formControlName="searchTerm" placeholder="Rechercher une association, une commune..." />
+        <button (click)="clearInput()" class="icon close" type="button"><div class="ico-close-search"></div></button>
+        <app-button class="isntPhoneContent" [style]="'searchIcon'" [iconBtn]="" [type]="'submit'"></app-button>
+      </div>
+    </form>
     <div (clickOutside)="closeModal()">
       <div class="btnSection isntPhoneContent" fxLayout="row" fxLayoutAlign="space-between center" fxLayoutGap="16px">
         <button
@@ -39,7 +27,7 @@
           fxLayoutAlign="space-between center"
           (click)="openModal(TypeModal.accompaniment)"
         >
-          <span>Démarches en ligne</span>
+          <span>Aide numérique</span>
           <div class="arrow"></div>
         </button>
         <button
@@ -70,6 +58,20 @@
           <span>Plus de critères</span>
           <div class="arrow"></div>
         </button>
+        <div class="checkbox no-width">
+          <div class="checkboxItem">
+            <label fxLayout="row" fxLayoutAlign="center center">
+              <input
+                type="checkbox"
+                value="passNumerique"
+                [checked]="searchService.getIndex(checkedModulesFilter, 'passNumerique', 'labelsQualifications') > -1"
+                (change)="externalCheckboxCheck($event, 'labelsQualifications')"
+              />
+              <span class="customCheck"></span>
+              <div class="label pass">Pass numérique</div>
+            </label>
+          </div>
+        </div>
       </div>
       <div *ngIf="modalTypeOpened">
         <app-modal-filter
@@ -82,7 +84,7 @@
       </div>
     </div>
   </div>
-  <div class="phoneSection">
+  <!-- <div class="phoneSection">
     <div class="btnSection" fxLayout="row" fxLayoutAlign="space-between center">
       <app-button
         [style]="'buttonPhone'"
@@ -92,24 +94,9 @@
       ></app-button>
       <a routerLink="/create-structure" tabindex="0">Ajouter une structure</a>
     </div>
-  </div>
-  <div class="footerSearchSection isntPhoneContent" fxLayout="row" fxLayoutAlign="space-between center">
-    <div class="checkbox no-width">
-      <div class="checkboxItem">
-        <label fxLayout="row" fxLayoutAlign="center center">
-          <input
-            type="checkbox"
-            value="passNumerique"
-            [checked]="searchService.getIndex(checkedModulesFilter, 'passNumerique', 'labelsQualifications') > -1"
-            (change)="externalCheckboxCheck($event, 'labelsQualifications')"
-          />
-          <span class="customCheck"></span>
-          <div class="label pass">Pass numérique</div>
-        </label>
-      </div>
-    </div>
-    <!-- Temporary remove because of user consideration issue -->
-    <!-- <div class="checkbox no-width">
+  </div> -->
+  <!-- Temporary remove because of user consideration issue -->
+  <!-- <div class="checkbox no-width">
       <div class="checkboxItem">
         <label fxLayout="row" fxLayoutAlign="center center">
           <input
@@ -125,6 +112,5 @@
         </label>
       </div>
     </div> -->
-    <a routerLink="/create-structure" tabindex="0">Ajouter une structure</a>
-  </div>
+  <!-- <a routerLink="/create-structure" tabindex="0">Ajouter une structure</a> -->
 </div>
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss b/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
index 46d79929c..e87b3b254 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
@@ -5,50 +5,41 @@
 @import '../../../../assets/scss/breakpoint';
 
 .block {
-  padding: 0 25px;
-}
-.header {
-  .title {
-    @include cn-bold-26;
-    padding-bottom: 16px;
-    display: flex;
-    align-items: center;
-  }
+  padding: 0 25px 10px 25px;
+  border-bottom: solid 1px $grey-4;
 }
 .content {
-  margin: 10px 0 0px 0;
+  // margin: 10px 0 0px 0;
 
   input {
     @include cn-regular-14;
     @include input-search;
   }
-  .searchSection {
-    .inputSection {
-      padding: 6px 3px 6px 6px;
-      width: 100%;
-      border: 1px solid $grey-4;
-      background-color: $white;
-      height: 40px;
-    }
+  .inputSearch {
+    padding: 6px 3px 6px 6px;
+    max-width: 300px;
+    background-color: $grey-6;
+    color: $grey-3;
+    height: 40px;
+    border-radius: 50px;
+    margin-right: 1rem;
   }
 }
 .btnSection {
-  padding: 16px 0 0px 0;
   button {
     background: $white;
     height: 40px;
-    width: 100%;
     border: 1px solid $grey-4;
-    padding: 3px 8px;
+    padding: 10px 12px;
     outline: none;
-    border-radius: 4px;
+    border-radius: 50px;
     cursor: pointer;
     white-space: nowrap;
     @include btn-normal;
     .arrow {
       background-color: transparent;
-      border-bottom: 1px solid $grey-2;
-      border-right: 1px solid $grey-2;
+      border-bottom: 1px solid black;
+      border-right: 1px solid black;
       transform: translateY(-25%) rotate(45deg);
       margin: 0 5px 0 10px;
       height: 7px;
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
index 8c775223c..78458c8fa 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
@@ -22,8 +22,8 @@ export class StructureListSearchComponent implements OnInit {
   // Show/hide form createStructure
   public addStructureFormModal = false;
 
-  @Output() locatationReset: EventEmitter<boolean> = new EventEmitter<boolean>();
-  @Output() locatationTrigger: EventEmitter<boolean> = new EventEmitter<boolean>();
+  @Output() locationReset: EventEmitter<boolean> = new EventEmitter<boolean>();
+  @Output() locationTrigger: EventEmitter<boolean> = new EventEmitter<boolean>();
   @Input() locate = false;
   // Form search input
   public searchForm: FormGroup;
@@ -78,7 +78,7 @@ export class StructureListSearchComponent implements OnInit {
     this.searchForm.reset();
     this.applyFilter(null);
     if (this.locate) {
-      this.locatationReset.emit(true);
+      this.locationReset.emit(true);
     }
   }
 
diff --git a/src/app/structure-list/structure-list.component.html b/src/app/structure-list/structure-list.component.html
index 9f2fc1b20..5ebe05aee 100644
--- a/src/app/structure-list/structure-list.component.html
+++ b/src/app/structure-list/structure-list.component.html
@@ -1,11 +1,3 @@
-<div class="topBlock hide-on-print">
-  <app-structure-list-search
-    (searchEvent)="fetchResults($event)"
-    (locatationReset)="sendLocatationReset()"
-    (locatationTrigger)="sendlocatationTrigger()"
-    [locate]="locate"
-  ></app-structure-list-search>
-</div>
 <div class="nbStructuresLabel hide-on-print" [ngPlural]="structureList.length">
   <ng-template ngPluralCase="0">0 structure trouvée</ng-template>
   <ng-template ngPluralCase="1">1 structure trouvée</ng-template>
diff --git a/src/app/structure-list/structure-list.component.ts b/src/app/structure-list/structure-list.component.ts
index 22404f28f..37ab9ba73 100644
--- a/src/app/structure-list/structure-list.component.ts
+++ b/src/app/structure-list/structure-list.component.ts
@@ -1,5 +1,4 @@
 import { Component, EventEmitter, Input, Output, OnChanges, SimpleChanges } from '@angular/core';
-import { Filter } from './models/filter.model';
 import { Structure } from '../models/structure.model';
 import { GeoJson } from '../map/models/geojson.model';
 import * as _ from 'lodash';
@@ -13,15 +12,12 @@ import { StructureService } from '../services/structure.service';
 })
 export class StructureListComponent implements OnChanges {
   @Input() public structureList: Structure[];
-  @Output() searchEvent = new EventEmitter();
   @Input() public location: GeoJson;
   @Input() public selectedStructure: Structure = new Structure();
   @Input() public locate = false;
   @Output() public displayMapMarkerId: EventEmitter<string> = new EventEmitter<string>();
   @Output() public selectedMarkerId: EventEmitter<string> = new EventEmitter<string>();
   @Output() public updatedStructure: EventEmitter<Structure> = new EventEmitter<Structure>();
-  @Output() public locatationReset: EventEmitter<boolean> = new EventEmitter<boolean>();
-  @Output() public locatationTrigger: EventEmitter<boolean> = new EventEmitter<boolean>();
 
   public showStructureDetails = false;
   public structure: Structure;
@@ -59,9 +55,7 @@ export class StructureListComponent implements OnChanges {
       document.getElementById('listCard').scrollTo(0, 0);
     }
   }
-  public fetchResults(filters: Filter[]): void {
-    this.searchEvent.emit(filters);
-  }
+
   public showDetails(event: Structure): void {
     this.showStructureDetails = true;
     this.structure = event;
@@ -106,12 +100,4 @@ export class StructureListComponent implements OnChanges {
       this.structuresListChunked = [...this.structuresListChunked, ...newStructures];
     }
   }
-
-  public sendLocatationReset(): void {
-    this.locatationReset.emit(true);
-  }
-
-  public sendlocatationTrigger(): void {
-    this.locatationTrigger.emit(true);
-  }
 }
diff --git a/src/assets/ico/search.svg b/src/assets/ico/search.svg
new file mode 100644
index 000000000..13c32fbe9
--- /dev/null
+++ b/src/assets/ico/search.svg
@@ -0,0 +1,3 @@
+<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M7.6087 14.2174C11.2586 14.2174 14.2174 11.2586 14.2174 7.6087C14.2174 3.95881 11.2586 1 7.6087 1C3.95881 1 1 3.95881 1 7.6087C1 11.2586 3.95881 14.2174 7.6087 14.2174Z" stroke="#828282" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/src/assets/ico/sprite.svg b/src/assets/ico/sprite.svg
index 81f91788f..ac526caa1 100644
--- a/src/assets/ico/sprite.svg
+++ b/src/assets/ico/sprite.svg
@@ -367,4 +367,7 @@
 <line x1="10.0176" y1="24.9287" x2="16.0176" y2="24.9287" stroke="#348899" stroke-width="2" stroke-linecap="round"/>
 </symbol>
 
+<symbol id="search" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M7.6087 14.2174C11.2586 14.2174 14.2174 11.2586 14.2174 7.6087C14.2174 3.95881 11.2586 1 7.6087 1C3.95881 1 1 3.95881 1 7.6087C1 11.2586 3.95881 14.2174 7.6087 14.2174Z" stroke="#828282" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+</symbol>
 </svg>
diff --git a/src/assets/scss/_inputs.scss b/src/assets/scss/_inputs.scss
index 477d2319b..46b8b6b55 100644
--- a/src/assets/scss/_inputs.scss
+++ b/src/assets/scss/_inputs.scss
@@ -7,7 +7,8 @@
   border: none;
   padding-left: 10px;
   text-overflow: ellipsis;
-  color: $grey-1;
+  background-color: $grey-6;
+  color: $grey-3;
   outline: none;
   font-style: italic;
 }
-- 
GitLab


From dcacbdd1fe6c00df42d98e241eb0f42242c71b54 Mon Sep 17 00:00:00 2001
From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com>
Date: Thu, 10 Mar 2022 17:40:04 +0100
Subject: [PATCH 02/40] feat: update map and structure list

---
 src/app/carto/carto.component.scss            |  7 +-
 src/app/map/components/map.component.html     | 18 ++--
 src/app/map/components/map.component.scss     | 82 +++++--------------
 src/app/map/components/map.component.ts       | 23 +-----
 .../components/card/card.component.html       | 17 ++--
 .../components/card/card.component.scss       |  6 +-
 .../structure-list.component.html             | 11 ++-
 .../structure-list.component.scss             | 23 ++++--
 .../structure-list.component.ts               |  4 +
 9 files changed, 74 insertions(+), 117 deletions(-)

diff --git a/src/app/carto/carto.component.scss b/src/app/carto/carto.component.scss
index e9665df13..d42e9fd69 100644
--- a/src/app/carto/carto.component.scss
+++ b/src/app/carto/carto.component.scss
@@ -9,8 +9,8 @@
 }
 
 .left-pane {
-  width: 640px;
-  min-width: 640px;
+  width: 600px;
+  min-width: 600px;
   @media #{$tablet} {
     width: 100%;
     min-width: unset;
@@ -20,13 +20,12 @@
   }
 }
 .right-pane {
-  width: 80%;
+  width: 100%;
   @media #{$tablet} {
     display: none;
     &.mapPhone {
       display: block;
     }
-    width: 100%;
     padding: 0;
   }
 }
diff --git a/src/app/map/components/map.component.html b/src/app/map/components/map.component.html
index 1c4483bc5..3f5bbc3ed 100644
--- a/src/app/map/components/map.component.html
+++ b/src/app/map/components/map.component.html
@@ -1,10 +1,8 @@
-<div class="map-wrapper">
-  <div
-    id="map"
-    class="body-wrap"
-    [ngClass]="{ orientation: isOrientationForm }"
-    leaflet
-    [leafletOptions]="mapOptions"
-    (leafletMapReady)="onMapReady($event)"
-  ></div>
-</div>
+<div
+  id="map"
+  class="body-wrap"
+  [ngClass]="{ orientation: isOrientationForm }"
+  leaflet
+  [leafletOptions]="mapOptions"
+  (leafletMapReady)="onMapReady($event)"
+></div>
diff --git a/src/app/map/components/map.component.scss b/src/app/map/components/map.component.scss
index 3fe53bca3..37ba38bfb 100644
--- a/src/app/map/components/map.component.scss
+++ b/src/app/map/components/map.component.scss
@@ -7,16 +7,9 @@
 @import '../../../assets/scss/breakpoint';
 @import '../../../assets/scss/z-index';
 
-.map-wrapper {
-  border-radius: 6px;
-  @include background-hash($grey-2);
-  border: 1px solid $grey-4;
-}
-
 #map {
-  height: calc(100vh - #{$header-height} - #{$footer-height} - 60px);
-  border: 10px solid $white;
-  border-radius: 6px;
+  // TODO - adapt the height - remove search bar height
+  height: calc(100vh - #{$header-height} - #{$footer-height});
   @media #{$tablet} {
     height: calc(100vh - #{$header-height} - #{$footer-height} - 24px);
   }
@@ -28,67 +21,41 @@
   }
 }
 
+/*** Right controls ***/
 ::ng-deep .leaflet-popup-close-button {
   display: none;
 }
-::ng-deep .leaflet-bar-part-single {
-  &:hover {
-    .fa-map-marker {
-      background-color: $blue-hover;
+::ng-deep .leaflet-left {
+  right: 0;
+  left: unset;
+  .leaflet-control {
+    margin-left: 0;
+    margin-right: 10px;
+    border: none;
+    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
+    &.leaflet-bar a:first-child {
+      border-top-left-radius: 8px;
+      border-top-right-radius: 8px;
     }
-  }
-  &:active {
-    .fa-map-marker {
-      background-color: $blue-active;
+    &.leaflet-bar a:last-child {
+      border-bottom-left-radius: 8px;
+      border-bottom-right-radius: 8px;
     }
   }
 }
-::ng-deep .fa-map-marker {
-  position: absolute;
-  width: 18px;
-  height: 18px;
-  border-radius: 50% 50% 50% 0;
-  -webkit-transform: rotate(-45deg);
-  transform: rotate(-45deg);
-  background-color: $grey-3;
-  margin-left: -8px;
-  margin-top: 4px;
-  &:before {
-    content: '';
-    position: absolute;
-    left: 5px;
-    top: 6px;
-    width: 7px;
-    height: 7px;
-    border-radius: 4px;
-    background-color: $white;
-  }
-}
-
-::ng-deep .leaflet-control-locate-circle {
-  &.leaflet-interactive {
-    stroke: $white !important;
-    fill: $black !important;
-    stroke-width: 2px !important;
-  }
-}
-
 ::ng-deep .leaflet-control-zoom {
   a {
     color: $grey-3;
+    opacity: 0.55;
     &:hover {
       color: $blue-hover;
+      opacity: 1;
     }
   }
 }
 
+/*** Marker ***/
 ::ng-deep .leaflet-marker-icon {
-  &.leaflet-interactive {
-    circle {
-      fill: $primary-color !important;
-      stroke-width: unset !important;
-    }
-  }
   &:hover {
     z-index: calc($map-selected-marker - 1) !important;
     svg {
@@ -103,16 +70,7 @@
   }
 }
 
-::ng-deep .leaflet-left {
-  right: 0;
-  left: unset;
-  .leaflet-control {
-    margin-left: 0;
-    margin-right: 10px;
-  }
-}
 /*** POP-UP ***/
-
 ::ng-deep .leaflet-popup {
   border-radius: 6px;
   @include background-hash($grey-2);
diff --git a/src/app/map/components/map.component.ts b/src/app/map/components/map.component.ts
index f94a16343..7e3bfc06a 100644
--- a/src/app/map/components/map.component.ts
+++ b/src/app/map/components/map.component.ts
@@ -1,5 +1,5 @@
-import { Component, EventEmitter, HostListener, Input, OnChanges, OnInit, Output, SimpleChanges } from '@angular/core';
-import { latLng, MapOptions, geoJSON, tileLayer, Map, latLngBounds, layerGroup } from 'leaflet';
+import { Component, EventEmitter, HostListener, Input, OnChanges, Output, SimpleChanges } from '@angular/core';
+import L, { latLng, MapOptions, geoJSON, tileLayer, Map, latLngBounds, layerGroup } from 'leaflet';
 import { Structure } from '../../models/structure.model';
 import { GeojsonService } from '../../services/geojson.service';
 import { MapService } from '../services/map.service';
@@ -7,7 +7,6 @@ import * as _ from 'lodash';
 import { GeoJsonProperties } from '../models/geoJsonProperties.model';
 import { MarkerType } from './markerType.enum';
 import metropole from '../../../assets/geojson/metropole.json';
-import L from 'leaflet';
 import 'leaflet.locatecontrol';
 import { ZoomLevel } from './zoomLevel.enum';
 import { Filter } from '../../structure-list/models/filter.model';
@@ -34,14 +33,6 @@ export class MapComponent implements OnChanges {
 
   public map: Map;
   public mapOptions: MapOptions;
-  // Init locate options
-  public locateOptions = {
-    flyTo: false,
-    keepCurrentZoomLevel: false,
-    icon: 'fa-map-marker',
-    clickBehavior: { inView: 'stop', outOfView: 'setView', inViewNotFollowing: 'setView' },
-    circlePadding: [5, 5],
-  };
 
   // Add listener on the popup button to show details of structure
   @HostListener('document:click', ['$event'])
@@ -181,7 +172,7 @@ export class MapComponent implements OnChanges {
     }
   }
 
-  private isToPrint(id: String): boolean {
+  private isToPrint(id: string): boolean {
     return this.structuresToPrint.findIndex((elem) => elem._id == id) > -1 ? true : false;
   }
 
@@ -272,14 +263,6 @@ export class MapComponent implements OnChanges {
    */
   public onMapReady(map: Map): void {
     this.map = map;
-    // Handle location
-    if (!this.isOrientationForm) {
-      this.lc = L.control.locate(this.locateOptions).addTo(this.map);
-      this.map.on('locationfound', () => {
-        this.locatationTrigger.emit(true);
-      });
-    }
-
     if (this.searchedValue) {
       if (Array.isArray(this.searchedValue)) {
         this.centerOnCoordinates(this.searchedValue);
diff --git a/src/app/structure-list/components/card/card.component.html b/src/app/structure-list/components/card/card.component.html
index eae83fda6..01441d867 100644
--- a/src/app/structure-list/components/card/card.component.html
+++ b/src/app/structure-list/components/card/card.component.html
@@ -11,13 +11,19 @@
         <span class="structure-name" [ngClass]="{ notClaimed: !isClaimed }">{{ structure.structureName }}</span>
         <span class="typeStructure">{{ structure.getLabelTypeStructure() }}</span>
       </div>
-      <div class="distanceStructure" fxLayout="column" fxLayoutAlign="none end">
-        <div *ngIf="!isOrientation">
+      <div *ngIf="!isOrientation" fxLayout="column" fxLayoutAlign="none end">
+        <div class="distanceStructure">
           {{ this.structure.address.commune }}
         </div>
+        <div class="distance" *ngIf="structure.distance">
+          {{ this.formatDistance() }}
+        </div>
       </div>
     </div>
-    <div
+    <div class="distance" *ngIf="isOrientation && structure.distance">
+      {{ this.formatDistance() }}
+    </div>
+    <!-- <div
       fxLayout="row"
       fxLayoutAlign="none flex-end"
       fxLayoutGap="7px"
@@ -30,10 +36,7 @@
         [icon]="structure.getEquipmentsIcon(equipement)"
         [title]="structure.getEquipmentsTitle(equipement)"
       ></app-svg-icon>
-    </div>
-    <div class="distance" *ngIf="structure.distance">
-      {{ this.formatDistance() }}
-    </div>
+    </div> -->
   </div>
   <div class="actions right" *ngIf="isOrientation">
     <div
diff --git a/src/app/structure-list/components/card/card.component.scss b/src/app/structure-list/components/card/card.component.scss
index 220adda58..cb817a531 100644
--- a/src/app/structure-list/components/card/card.component.scss
+++ b/src/app/structure-list/components/card/card.component.scss
@@ -5,8 +5,10 @@
 
 .structure {
   padding: 12px 0 12px 0;
-  border-bottom: 1px dashed $grey !important;
+  border-bottom: 1px solid $grey !important;
   min-height: 110px;
+  display: flex;
+  justify-content: center;
   cursor: pointer;
   @media #{$large-phone} {
     height: unset;
@@ -28,7 +30,6 @@
   .distanceStructure {
     @include cn-regular-16;
     color: $grey-3;
-    width: 50%;
   }
 }
 
@@ -54,6 +55,7 @@
 }
 
 .distance {
+  @include cn-regular-14;
   color: $grey-3;
 }
 
diff --git a/src/app/structure-list/structure-list.component.html b/src/app/structure-list/structure-list.component.html
index 5ebe05aee..2a6987403 100644
--- a/src/app/structure-list/structure-list.component.html
+++ b/src/app/structure-list/structure-list.component.html
@@ -1,7 +1,10 @@
-<div class="nbStructuresLabel hide-on-print" [ngPlural]="structureList.length">
-  <ng-template ngPluralCase="0">0 structure trouvée</ng-template>
-  <ng-template ngPluralCase="1">1 structure trouvée</ng-template>
-  <ng-template ngPluralCase="other">{{ structureList.length }} structures trouvées</ng-template>
+<div class="structureListHeader hide-on-print">
+  <div class="nbStructuresLabel" [ngPlural]="structureList.length">
+    <ng-template ngPluralCase="0">0 structure</ng-template>
+    <ng-template ngPluralCase="1">1 structure</ng-template>
+    <ng-template ngPluralCase="other">{{ structureList.length }} structures</ng-template>
+  </div>
+  <button class="addStructureButton" (click)="addStructure()">Ajouter une structure</button>
 </div>
 
 <div (scroll)="onScrollDown($event)" id="listCard" class="listCard" (mouseleave)="mouseLeave()">
diff --git a/src/app/structure-list/structure-list.component.scss b/src/app/structure-list/structure-list.component.scss
index 56305e76c..8bab8f83a 100644
--- a/src/app/structure-list/structure-list.component.scss
+++ b/src/app/structure-list/structure-list.component.scss
@@ -1,16 +1,23 @@
 @import '../../assets/scss/color';
 @import '../../assets/scss/icons';
 @import '../../assets/scss/typography';
+@import '../../assets/scss/buttons';
 
-.nbStructuresLabel {
-  color: $white;
-  @include cn-regular-16;
-  display: grid;
+.structureListHeader {
+  height: 50px;
+  display: flex;
+  flex-direction: row;
   align-items: center;
-  height: 32px;
-  background-color: $grey-4;
-  padding-left: 9px;
-  margin: 0 16px;
+  margin-left: 1rem;
+  .nbStructuresLabel {
+    @include cn-regular-14;
+    color: $grey-3;
+    flex: 1;
+  }
+  .addStructureButton {
+    @include btn-grey;
+    margin: 0 7.5px;
+  }
 }
 
 .listCard {
diff --git a/src/app/structure-list/structure-list.component.ts b/src/app/structure-list/structure-list.component.ts
index 37ab9ba73..b00cbb69a 100644
--- a/src/app/structure-list/structure-list.component.ts
+++ b/src/app/structure-list/structure-list.component.ts
@@ -56,6 +56,10 @@ export class StructureListComponent implements OnChanges {
     }
   }
 
+  public addStructure(): void {
+    this.router.navigate(['/create-structure', { tabIndex: 0 }]);
+  }
+
   public showDetails(event: Structure): void {
     this.showStructureDetails = true;
     this.structure = event;
-- 
GitLab


From ad50423232900cfad459da592dfe974fd788c63e Mon Sep 17 00:00:00 2001
From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com>
Date: Thu, 10 Mar 2022 17:41:39 +0100
Subject: [PATCH 03/40] feat: clean card component

---
 .../components/card/card.component.html            | 14 --------------
 .../components/card/card.component.ts              |  5 -----
 2 files changed, 19 deletions(-)

diff --git a/src/app/structure-list/components/card/card.component.html b/src/app/structure-list/components/card/card.component.html
index 01441d867..79c33855b 100644
--- a/src/app/structure-list/components/card/card.component.html
+++ b/src/app/structure-list/components/card/card.component.html
@@ -23,20 +23,6 @@
     <div class="distance" *ngIf="isOrientation && structure.distance">
       {{ this.formatDistance() }}
     </div>
-    <!-- <div
-      fxLayout="row"
-      fxLayoutAlign="none flex-end"
-      fxLayoutGap="7px"
-      *ngIf="structure.hasEquipments() && !isOrientation"
-    >
-      <app-svg-icon
-        *ngFor="let equipement of filterOnlyEquipments(structure.equipmentsAndServices)"
-        [type]="'ico'"
-        [iconColor]="'grey'"
-        [icon]="structure.getEquipmentsIcon(equipement)"
-        [title]="structure.getEquipmentsTitle(equipement)"
-      ></app-svg-icon>
-    </div> -->
   </div>
   <div class="actions right" *ngIf="isOrientation">
     <div
diff --git a/src/app/structure-list/components/card/card.component.ts b/src/app/structure-list/components/card/card.component.ts
index 12e3d46d2..5b891466c 100644
--- a/src/app/structure-list/components/card/card.component.ts
+++ b/src/app/structure-list/components/card/card.component.ts
@@ -71,9 +71,4 @@ export class CardComponent implements OnInit {
   public cardAddToList(): void {
     this.addToList.emit(this.structure);
   }
-  public filterOnlyEquipments(equipmentsAndServices: string[]): string[] {
-    return equipmentsAndServices.filter((eqpt) =>
-      ['ordinateurs', 'tablettes', 'bornesNumeriques', 'imprimantes', 'scanners', 'wifiEnAccesLibre'].includes(eqpt)
-    );
-  }
 }
-- 
GitLab


From b24e888c7a744b1c322b7728b16755bc7987b55d Mon Sep 17 00:00:00 2001
From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com>
Date: Thu, 10 Mar 2022 18:14:59 +0100
Subject: [PATCH 04/40] feat: fix after pull from origin

---
 .../structure-list/components/card/card.component.scss    | 4 ++--
 src/app/structure-list/structure-list.component.html      | 2 +-
 src/app/structure-list/structure-list.component.scss      | 8 ++------
 3 files changed, 5 insertions(+), 9 deletions(-)

diff --git a/src/app/structure-list/components/card/card.component.scss b/src/app/structure-list/components/card/card.component.scss
index a745664a9..210b89966 100644
--- a/src/app/structure-list/components/card/card.component.scss
+++ b/src/app/structure-list/components/card/card.component.scss
@@ -4,7 +4,7 @@
 @import '../../../../assets/scss/breakpoint';
 
 .structure {
-  padding: 12px 0 12px 0;
+  padding: 12px 24px;
   border-bottom: 1px solid $grey !important;
   min-height: 110px;
   display: flex;
@@ -55,7 +55,7 @@
 }
 
 .distance {
-  @include cn-regular-14;
+  @include lato-regular-14;
   color: $grey-3;
 }
 
diff --git a/src/app/structure-list/structure-list.component.html b/src/app/structure-list/structure-list.component.html
index 2a6987403..7fbdf6136 100644
--- a/src/app/structure-list/structure-list.component.html
+++ b/src/app/structure-list/structure-list.component.html
@@ -4,7 +4,7 @@
     <ng-template ngPluralCase="1">1 structure</ng-template>
     <ng-template ngPluralCase="other">{{ structureList.length }} structures</ng-template>
   </div>
-  <button class="addStructureButton" (click)="addStructure()">Ajouter une structure</button>
+  <app-button (action)="addStructure()" [text]="'Ajouter une structure'" [style]="'secondary'"></app-button>
 </div>
 
 <div (scroll)="onScrollDown($event)" id="listCard" class="listCard" (mouseleave)="mouseLeave()">
diff --git a/src/app/structure-list/structure-list.component.scss b/src/app/structure-list/structure-list.component.scss
index 8bab8f83a..04c57c489 100644
--- a/src/app/structure-list/structure-list.component.scss
+++ b/src/app/structure-list/structure-list.component.scss
@@ -9,20 +9,16 @@
   flex-direction: row;
   align-items: center;
   margin-left: 1rem;
+  margin-right: 7.5px;
   .nbStructuresLabel {
-    @include cn-regular-14;
+    @include lato-regular-14;
     color: $grey-3;
     flex: 1;
   }
-  .addStructureButton {
-    @include btn-grey;
-    margin: 0 7.5px;
-  }
 }
 
 .listCard {
   overflow-y: auto;
-  padding: 0 25px;
 }
 
 ::ng-deep .structure-card:last-child .structure {
-- 
GitLab


From e4ac90247dd0c18d0df027873d743081262b0dc6 Mon Sep 17 00:00:00 2001
From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com>
Date: Thu, 10 Mar 2022 18:20:53 +0100
Subject: [PATCH 05/40] feat: add tab index

---
 src/app/structure-list/structure-list.component.html | 7 ++++++-
 src/app/structure-list/structure-list.component.ts   | 2 +-
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/app/structure-list/structure-list.component.html b/src/app/structure-list/structure-list.component.html
index 7fbdf6136..a862df1d2 100644
--- a/src/app/structure-list/structure-list.component.html
+++ b/src/app/structure-list/structure-list.component.html
@@ -4,7 +4,12 @@
     <ng-template ngPluralCase="1">1 structure</ng-template>
     <ng-template ngPluralCase="other">{{ structureList.length }} structures</ng-template>
   </div>
-  <app-button (action)="addStructure()" [text]="'Ajouter une structure'" [style]="'secondary'"></app-button>
+  <app-button
+    tabindex="0"
+    (action)="addStructure()"
+    [text]="'Ajouter une structure'"
+    [style]="'secondary'"
+  ></app-button>
 </div>
 
 <div (scroll)="onScrollDown($event)" id="listCard" class="listCard" (mouseleave)="mouseLeave()">
diff --git a/src/app/structure-list/structure-list.component.ts b/src/app/structure-list/structure-list.component.ts
index b00cbb69a..8599725fb 100644
--- a/src/app/structure-list/structure-list.component.ts
+++ b/src/app/structure-list/structure-list.component.ts
@@ -57,7 +57,7 @@ export class StructureListComponent implements OnChanges {
   }
 
   public addStructure(): void {
-    this.router.navigate(['/create-structure', { tabIndex: 0 }]);
+    this.router.navigate(['/create-structure']);
   }
 
   public showDetails(event: Structure): void {
-- 
GitLab


From ad5e3bf7e824c5e0cde1cafa1019035a51aecb07 Mon Sep 17 00:00:00 2001
From: Etienne LOUPIAS <eloupias@grandlyon.com>
Date: Fri, 11 Mar 2022 08:07:04 +0000
Subject: [PATCH 06/40] fix(carto): issue #11 responsive structure details

---
 .../structure-details/structure-details.component.scss      | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/src/app/structure-list/components/structure-details/structure-details.component.scss b/src/app/structure-list/components/structure-details/structure-details.component.scss
index 2b5a439e1..083fba5be 100644
--- a/src/app/structure-list/components/structure-details/structure-details.component.scss
+++ b/src/app/structure-list/components/structure-details/structure-details.component.scss
@@ -18,17 +18,15 @@ a {
   left: 0;
   max-width: 980px;
   width: 100%;
+  box-sizing: border-box;
   height: calc(100vh - #{$header-height} - #{$footer-height});
   padding: 0px 24px;
   overflow: auto;
   @media #{$tablet} {
+    height: calc(100vh - #{$header-height});
     .printButton {
       display: none !important;
     }
-
-    .ico-close {
-      margin-left: 16px;
-    }
   }
   .printButton {
     margin-right: 75px;
-- 
GitLab


From d4b41e3317abe937aa311187539c86bc0e09810e Mon Sep 17 00:00:00 2001
From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com>
Date: Fri, 11 Mar 2022 09:33:50 +0100
Subject: [PATCH 07/40] feat: review hover on card component

---
 src/app/map/components/map.component.scss          |  3 +--
 .../components/card/card.component.scss            | 14 ++++++++++----
 2 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/src/app/map/components/map.component.scss b/src/app/map/components/map.component.scss
index 6a41936f9..2e9b11e73 100644
--- a/src/app/map/components/map.component.scss
+++ b/src/app/map/components/map.component.scss
@@ -45,11 +45,10 @@
 }
 ::ng-deep .leaflet-control-zoom {
   a {
-    color: $grey-3;
+    color: $grey-1;
     opacity: 0.55;
     &:hover {
       opacity: 1;
-      color: $blue-middle;
     }
   }
 }
diff --git a/src/app/structure-list/components/card/card.component.scss b/src/app/structure-list/components/card/card.component.scss
index 210b89966..88a4a541f 100644
--- a/src/app/structure-list/components/card/card.component.scss
+++ b/src/app/structure-list/components/card/card.component.scss
@@ -18,14 +18,20 @@
     @include lato-regular-16;
     font-style: italic;
   }
-  .structure-name {
-    &.notClaimed {
-      color: $primary-color;
+  &:hover {
+    .structure-name {
+      text-decoration: underline;
     }
-    color: $grey-1;
+  }
+  .structure-name {
     @include lato-bold-18;
+    color: $grey-1;
     padding-bottom: 5px;
     width: 100%;
+
+    &.notClaimed {
+      color: $primary-color;
+    }
   }
   .distanceStructure {
     @include lato-regular-16;
-- 
GitLab


From a13de9a2d184fac6569564a4953b5aeb6a100b04 Mon Sep 17 00:00:00 2001
From: Bastien DUMONT <bdumont@grandlyon.com>
Date: Fri, 11 Mar 2022 08:34:56 +0000
Subject: [PATCH 08/40] fix(carto): maker not setting in some case fix(carto):
 bug fix when multiple markers were selected

---
 src/app/map/components/map.component.ts | 49 ++++++++++++++++++-------
 src/app/map/services/map.service.ts     |  6 +--
 2 files changed, 37 insertions(+), 18 deletions(-)

diff --git a/src/app/map/components/map.component.ts b/src/app/map/components/map.component.ts
index 35f1387f2..1758fe273 100644
--- a/src/app/map/components/map.component.ts
+++ b/src/app/map/components/map.component.ts
@@ -106,7 +106,7 @@ export class MapComponent implements OnChanges {
         );
       }
     }
-    // Handle map marker selection
+    // Handle map marker if none selected
     if (changes.selectedMarkerId && this.map) {
       this.map.closePopup();
       if (changes.selectedMarkerId.currentValue === undefined) {
@@ -115,14 +115,15 @@ export class MapComponent implements OnChanges {
           this.getMarkerTypeByStructureId(changes.selectedMarkerId.previousValue)
         );
         this.map.setView(this.mapOptions.center, this.mapOptions.zoom);
-      } else {
-        this.mapService.setSelectedMarker(
-          changes.selectedMarkerId.currentValue,
-          this.getMarkerTypeByStructureId(changes.selectedMarkerId.currentValue)
-        );
-        this.centerLeafletMapOnMarker(changes.selectedMarkerId.currentValue);
       }
     }
+    // Handle map marker if one is set with url or selected
+    if (this.mapService.getMarker(this.selectedMarkerId)) {
+      this.mapService.setSelectedMarker(this.selectedMarkerId, this.getMarkerTypeByStructureId(this.selectedMarkerId));
+      this.centerLeafletMapOnMarker(this.selectedMarkerId);
+    }
+
+    this.closePreviousMarker(changes);
 
     if (changes.structuresToPrint) {
       if (changes.structuresToPrint.currentValue < changes.structuresToPrint.previousValue) {
@@ -205,7 +206,7 @@ export class MapComponent implements OnChanges {
   }
 
   private getStructuresPositions(structureList: Structure[]): void {
-    structureList.forEach((structure: Structure) => {
+    for (const structure of structureList) {
       this.mapService
         .createMarker(
           structure.getLat(),
@@ -219,7 +220,8 @@ export class MapComponent implements OnChanges {
         .on('popupopen', () => {
           this.currentStructure = structure;
         });
-    });
+    }
+
     // Reset location if active to prevent graphical issue
     if (this.locate) {
       this.lc.stop();
@@ -329,11 +331,13 @@ export class MapComponent implements OnChanges {
   }
 
   private centerLeafletMapOnMarker(markerId: string): void {
-    const marker = this.mapService.getMarker(markerId);
-    const latLngs = [marker.getLatLng()];
-    const markerBounds = latLngBounds(latLngs);
-    // paddingTopLeft is used for centering marker because of structure details pane
-    this.map.fitBounds(markerBounds, { paddingTopLeft: [300, 0] });
+    if (this.mapService.getMarker(markerId)) {
+      const marker = this.mapService.getMarker(markerId);
+      const latLngs = [marker.getLatLng()];
+      const markerBounds = latLngBounds(latLngs);
+      // paddingTopLeft is used for centering marker because of structure details pane
+      this.map.fitBounds(markerBounds, { paddingTopLeft: [300, 0] });
+    }
   }
 
   private initMetropoleLayer(): void {
@@ -347,4 +351,21 @@ export class MapComponent implements OnChanges {
       )
     );
   }
+
+  /**
+   * Close previous markers
+   * - if strucure is closed
+   * - if a new marker is selected
+   */
+  private closePreviousMarker(changes: SimpleChanges): void {
+    if (
+      (changes.selectedMarkerId?.currentValue === undefined && changes.selectedMarkerId?.previousValue) ||
+      changes.selectedMarkerId?.currentValue !== changes.selectedMarkerId?.previousValue
+    ) {
+      this.mapService.setUnactiveMarker(
+        changes.selectedMarkerId.previousValue,
+        this.getMarkerTypeByStructureId(changes.selectedMarkerId.previousValue)
+      );
+    }
+  }
 }
diff --git a/src/app/map/services/map.service.ts b/src/app/map/services/map.service.ts
index c65d92585..75cd373b1 100644
--- a/src/app/map/services/map.service.ts
+++ b/src/app/map/services/map.service.ts
@@ -122,9 +122,7 @@ export class MapService {
 
   public setUnactiveMarker(id: string, type: MarkerType = MarkerType.structure): void {
     // To skip mouseleave when user emit click on structure list
-    if (!this.isMarkerActive) {
-      this.getMarker(id).setIcon(this.getMarkerIcon(type));
-    }
+    this.getMarker(id)?.setIcon(this.getMarkerIcon(type));
     this.isMarkerActive = false;
   }
 
@@ -144,7 +142,7 @@ export class MapService {
    */
   public setSelectedMarker(id: string, type: MarkerType = MarkerType.structure): void {
     if (id) {
-      this.getMarker(id).setIcon(this.getActiveMarkerIcon(type));
+      this.getMarker(id)?.setIcon(this.getActiveMarkerIcon(type));
       this.isMarkerActive = true;
     }
   }
-- 
GitLab


From 85091f9ba6111d98b2299fcc2a71e603510a386c Mon Sep 17 00:00:00 2001
From: "guilhem.carron" <gcarron@grandlyon.com>
Date: Fri, 11 Mar 2022 14:05:09 +0100
Subject: [PATCH 09/40] add modal + filter rework

---
 src/app/carto/carto.component.ts              |  14 +-
 .../components/button/button.component.html   |  21 ++-
 .../components/button/button.component.scss   |  24 +++-
 .../svg-icon/svg-icon.component.scss          |   4 +
 .../modal-filter/modal-filter.component.html  |  18 +--
 .../modal-filter/modal-filter.component.scss  |  81 +++++++-----
 .../modal-filter/modal-filter.component.ts    |   6 +
 .../structure-list-search.component.html      | 124 +++++++++++++-----
 .../structure-list-search.component.scss      |  64 ++++++++-
 .../structure-list-search.component.ts        |  53 ++++++--
 src/app/structure-list/enum/typeModal.enum.ts |   2 +
 .../structure-list/services/search.service.ts |  11 ++
 src/assets/ico/search.svg                     |   6 +-
 src/assets/ico/sprite.svg                     |   7 +-
 src/assets/scss/_buttons.scss                 |   5 +
 src/assets/scss/_inputs.scss                  |   2 +-
 src/styles.scss                               |   2 +-
 17 files changed, 338 insertions(+), 106 deletions(-)

diff --git a/src/app/carto/carto.component.ts b/src/app/carto/carto.component.ts
index 75d74b0ee..3f5bc94bb 100644
--- a/src/app/carto/carto.component.ts
+++ b/src/app/carto/carto.component.ts
@@ -1,4 +1,4 @@
-import { Component, EventEmitter, OnInit, Output } from '@angular/core';
+import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
 import { Meta } from '@angular/platform-browser';
 import * as _ from 'lodash';
 
@@ -16,9 +16,7 @@ import { ActivatedRoute } from '@angular/router';
   styleUrls: ['./carto.component.scss'],
 })
 export class CartoComponent implements OnInit {
-  @Output() searchEvent = new EventEmitter();
-  @Output() public locationReset: EventEmitter<boolean> = new EventEmitter<boolean>();
-  @Output() public locationTrigger: EventEmitter<boolean> = new EventEmitter<boolean>();
+  public filters: Filter[] = [];
   public structures: Structure[] = [];
   public displayMarkerId: string;
   public selectedMarkerId: string;
@@ -223,13 +221,15 @@ export class CartoComponent implements OnInit {
     this.locate = false;
   }
   public sendLocationReset(): void {
-    this.locationReset.emit(true);
+    // this.locationReset.emit(true);
   }
 
   public sendlocationTrigger(): void {
-    this.locationTrigger.emit(true);
+    // this.locationTrigger.emit(true);
   }
   public fetchResults(filters: Filter[]): void {
-    this.searchEvent.emit(filters);
+    console.log('filters', filters);
+    // this.searchEvent.emit(filters);
+    this.getStructures(filters);
   }
 }
diff --git a/src/app/shared/components/button/button.component.html b/src/app/shared/components/button/button.component.html
index f7edf910d..376bb2f5d 100644
--- a/src/app/shared/components/button/button.component.html
+++ b/src/app/shared/components/button/button.component.html
@@ -31,7 +31,7 @@
 <ng-container *ngIf="style === 'searchIcon'">
   <button class="searchIcon" type="{{ type }}" (click)="doAction()">
     <div fxLayout="row center" class="searchIcon withIcon" fxLayoutAlign="space-between center">
-      <app-svg-icon [type]="'ico'" [icon]="iconBtn" [iconColor]="'currentColor'"></app-svg-icon>
+      <app-svg-icon [type]="'ico'" [icon]="iconBtn" [iconColor]="'currentColor'" [iconClass]="'icon30'"></app-svg-icon>
     </div>
   </button>
 </ng-container>
@@ -66,6 +66,25 @@
   </button>
 </ng-container>
 
+<ng-container *ngIf="style === 'modal-primary'">
+  <button
+    class="btn-regular modal-primary"
+    type="{{ type }}"
+    (click)="doAction()"
+    [disabled]="disabled"
+    [ngClass]="{ disabled: disabled }"
+  >
+    <div *ngIf="!iconBtn" class="text">{{ text }}</div>
+    <div *ngIf="iconBtn && iconPos === 'left'" fxLayout="row center" class="text" fxLayoutAlign="space-around center">
+      <app-svg-icon [type]="iconType" [icon]="iconBtn" [iconColor]="'currentColor'"></app-svg-icon>
+      <span>{{ text }}</span>
+    </div>
+    <div *ngIf="iconBtn && iconPos === 'right'" fxLayout="row center" class="text" fxLayoutAlign="space-around center">
+      <span>{{ text }}</span>
+      <app-svg-icon [type]="iconType" [icon]="iconBtn" [iconColor]="'currentColor'"></app-svg-icon>
+    </div>
+  </button>
+</ng-container>
 <!-- <ng-container *ngIf="style === 'secondary'">
   <button [disabled]="disabled" class="btn-secondary" type="{{ type }}" [ngClass]="{ disabled: disabled }">
     <div class="text">{{ text }}</div>
diff --git a/src/app/shared/components/button/button.component.scss b/src/app/shared/components/button/button.component.scss
index d2e069a53..2b1be4710 100644
--- a/src/app/shared/components/button/button.component.scss
+++ b/src/app/shared/components/button/button.component.scss
@@ -14,7 +14,6 @@
   @include lato-regular-14;
   line-height: 19px;
 }
-
 button {
   outline: none;
   border-radius: 4px;
@@ -25,6 +24,10 @@ button {
 .searchIcon {
   background: transparent;
   border: none;
+  & > svg {
+    width: 30px;
+    height: 30px;
+  }
 }
 .btnSearch {
   @include background-hash($grey-2);
@@ -62,6 +65,25 @@ button {
       }
     }
   }
+  &.modal-primary {
+    background: $primary-color;
+    border: none;
+    width: 100%;
+    .text {
+      display: flex;
+      text-align: center;
+      align-items: center;
+      justify-content: center;
+      background: transparent;
+      text-align: center;
+      margin: auto;
+      color: $white;
+      width: auto;
+      &.withIcon {
+        color: $white;
+      }
+    }
+  }
   &.secondary {
     div:first-child {
       width: unset;
diff --git a/src/app/shared/components/svg-icon/svg-icon.component.scss b/src/app/shared/components/svg-icon/svg-icon.component.scss
index 0ce39a373..38f0cf7f0 100644
--- a/src/app/shared/components/svg-icon/svg-icon.component.scss
+++ b/src/app/shared/components/svg-icon/svg-icon.component.scss
@@ -11,6 +11,10 @@
     width: 28px;
     height: 28px;
   }
+  &.icon30 {
+    width: 30px;
+    height: 30px;
+  }
   &.icon-32 {
     width: 2em;
   }
diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.html b/src/app/structure-list/components/modal-filter/modal-filter.component.html
index fded02625..a79bc9f81 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.html
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.html
@@ -6,32 +6,34 @@
     </div>
     <div class="contentModal" fxLayout="row wrap" fxLayoutAlign="flex-start" *ngIf="categories.length > 0">
       <div class="blockFiltre" *ngFor="let c of categories">
-        <h4>{{ c.name }}</h4>
+        <!-- <h4>{{ c.name }}</h4> -->
 
         <ul class="blockLigne">
-          <div fxLayout="row" class="ligneFiltre" *ngFor="let module of c.modules">
+          <div fxLayout="row" fxLayoutAlign="start center" class="ligneFiltre" *ngFor="let module of c.modules">
             <li class="checkbox">
               <div class="checkboxItem">
-                <label>
+                <label fxLayout="row" fxLayoutAlign="start center">
                   <input
                     type="checkbox"
                     [checked]="searchService.getIndex(checkedModules, module.id, c.id) > -1"
                     [value]="module.id"
                     (change)="onCheckboxChange($event, c.id)"
                   />
-                  <span class="customCheck"></span>
+                  <span class="customCheck customCheckPrimary"></span>
                   <div class="label">{{ module.text }}</div>
                 </label>
               </div>
             </li>
-            <span class="nbResult">{{ module.count ? module.count : '0' }}</span>
           </div>
         </ul>
       </div>
     </div>
-    <div class="footer" fxLayout="row" fxLayoutAlign="end center" fxLayoutGap="3vw">
-      <a (click)="clearFilters()" tabindex="0">Effacer</a>
-      <app-button [style]="'button'" [text]="'Appliquer'" (click)="emitModules(checkedModules)"></app-button>
+
+    <div class="footer" fxLayout="row" fxLayoutAlign="center center">
+      <a class="reset" (click)="clearFilters()" tabindex="0">Effacer</a>
+      <div class="half-width">
+        <app-button [style]="'modal-primary'" [text]="'Appliquer'" (click)="emitModules(checkedModules)"></app-button>
+      </div>
     </div>
   </div>
 </div>
diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.scss b/src/app/structure-list/components/modal-filter/modal-filter.component.scss
index c73816e98..cfbd09587 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.scss
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.scss
@@ -6,25 +6,47 @@
 @import '../../../../assets/scss/hyperlink';
 @import '../../../../assets/scss/z-index';
 
-.modaltraining {
+.modalaccompaniment {
   @media #{$desktop} {
     margin-left: 0;
   }
 
   margin-left: 201px;
 }
+.modaltraining {
+  @media #{$desktop} {
+    margin-left: 170px;
+  }
+
+  margin-left: 0;
+}
+.modalpublic {
+  @media #{$desktop} {
+    margin-left: 295px;
+  }
+
+  margin-left: 0;
+}
+.modalequipments {
+  @media #{$desktop} {
+    margin-left: 405px;
+  }
+
+  margin-left: 0;
+}
 .modalmoreFilters {
   @media #{$desktop} {
     margin-left: 0;
   }
-  margin-left: 404px;
+  margin-left: 700px;
 }
 .modal {
   max-width: 754px;
-  width: 94%;
+  width: auto;
   z-index: $modal-z-index !important;
   position: fixed;
-  border-radius: 6px;
+  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
+  border-radius: 8px;
   margin-top: 3.5px;
   @media #{$large-phone} {
     height: 100%;
@@ -37,16 +59,15 @@
     border: none;
     padding: 0;
   }
-  @include background-hash($grey-2);
-  border: 1px solid $grey-4;
+  background: white;
   ::-webkit-scrollbar {
-    width: 16px;
+    width: 8px;
   }
   ::-webkit-scrollbar-track {
     background: $grey-8;
   }
   ::-webkit-scrollbar-thumb {
-    background: $grey;
+    background: $primary-color;
     border-radius: 6px;
   }
   .body-wrap {
@@ -67,23 +88,16 @@
     overflow-y: auto;
     max-width: 1100px;
     border-bottom: 1px solid $grey;
-    margin-bottom: 16px;
     max-height: 40vh;
     @media #{$large-phone} {
       max-height: none;
       height: 100%;
     }
     .blockFiltre {
-      width: 100%;
-      margin: 0 32px;
-      padding: 40px 0;
-      min-width: 450px;
-      border-bottom: 1px dashed $grey-4;
+      width: auto;
+      margin: 25px 20px;
+      min-width: 200px;
 
-      &:last-child {
-        padding-bottom: 32px;
-        border-bottom: none;
-      }
       @media #{$large-phone} {
         margin: 0 18px;
         padding: 25px 0;
@@ -92,22 +106,11 @@
     }
     .blockLigne {
       padding-left: 0;
-      -moz-column-count: 2;
-      -moz-column-gap: 46px;
-      -webkit-column-count: 2;
-      -webkit-column-gap: 46px;
-      column-count: 2;
-      column-gap: 46px;
       margin: 0px;
-      @media #{$large-phone} {
-        -moz-column-count: 1;
-        -webkit-column-count: 1;
-        column-count: 1;
+      li {
+        margin-bottom: 1rem;
       }
     }
-    .ligneFiltre {
-      padding: 5px 0;
-    }
     h4 {
       @include lato-bold-16;
       line-height: 17px;
@@ -125,12 +128,22 @@
       padding-top: 3px;
     }
     label {
-      @include lato-regular-14;
+      @include lato-regular-16;
+      color: $grey-1;
     }
   }
   .footer {
-    margin: 0px 20px 16px 0;
-    height: 32px;
+    box-sizing: border-box;
+    height: 50px;
+    padding: 0.5rem 0.5rem 0.5rem 0;
+    .reset {
+      width: 45%;
+      text-align: center;
+      color: $grey-4;
+    }
+    .half-width {
+      width: 50%;
+    }
   }
 }
 a {
diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.ts b/src/app/structure-list/components/modal-filter/modal-filter.component.ts
index a7df06d05..e864e709f 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.ts
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.ts
@@ -55,8 +55,14 @@ export class ModalFilterComponent implements OnInit {
 
   public getModalType(): string {
     switch (this.modalType) {
+      case TypeModal.accompaniment:
+        return 'accompaniment';
       case TypeModal.training:
         return 'training';
+      case TypeModal.public:
+        return 'public';
+      case TypeModal.equipments:
+        return 'equipments';
       case TypeModal.moreFilters:
         return 'moreFilters';
       default:
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
index f03f62c6d..8321c81ca 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
@@ -8,10 +8,18 @@
       fxLayoutAlign=" center"
       (ngSubmit)="applyFilter(searchForm.value.searchTerm)"
     >
-      <div fxLayout="row" fxLayoutAlign="space-between center">
+      <div fxLayout="row" fxLayoutAlign="space-between center" class="container">
         <input type="text" formControlName="searchTerm" placeholder="Rechercher une association, une commune..." />
-        <button (click)="clearInput()" class="icon close" type="button"><div class="ico-close-search"></div></button>
-        <app-button class="isntPhoneContent" [style]="'searchIcon'" [iconBtn]="" [type]="'submit'"></app-button>
+        <button
+          *ngIf="this.searchForm.get('searchTerm').value?.length > 0"
+          (click)="clearInput()"
+          class="icon close"
+          type="button"
+        >
+          <div class="ico-close-search"></div>
+        </button>
+        <span *ngIf="this.searchForm.get('searchTerm').value?.length > 0" class="separation"></span>
+        <app-button class="isntPhoneContent" [style]="'searchIcon'" [iconBtn]="'search'" [type]="'submit'"></app-button>
       </div>
     </form>
     <div (clickOutside)="closeModal()">
@@ -49,29 +57,90 @@
           type="button"
           fxLayout="row"
           [ngClass]="{
-            selected: modalTypeOpened === TypeModal.moreFilters,
-            containCheckedFilters: numberMoreFiltersChecked
+            selected: modalTypeOpened === TypeModal.public,
+            containCheckedFilters: numberTrainingChecked
+          }"
+          fxLayoutAlign="space-between center"
+          (click)="openModal(TypeModal.public)"
+        >
+          <span>Public</span>
+          <div class="arrow"></div>
+        </button>
+        <button
+          class="btn-filter"
+          type="button"
+          fxLayout="row"
+          [ngClass]="{
+            selected: modalTypeOpened === TypeModal.equipments,
+            containCheckedFilters: numberTrainingChecked
+          }"
+          fxLayoutAlign="space-between center"
+          (click)="openModal(TypeModal.equipments)"
+        >
+          <span>Matériel et wifi</span>
+          <div class="arrow"></div>
+        </button>
+        <div
+          class="checkboxButton"
+          [ngClass]="{
+            checked: searchService.getIndex(checkedModulesFilter, 'passNumerique', 'labelsQualifications') > -1
+          }"
+        >
+          <label fxLayout="row" fxLayoutAlign="center center">
+            <input
+              type="checkbox"
+              value="passNumerique"
+              [checked]="searchService.getIndex(checkedModulesFilter, 'passNumerique', 'labelsQualifications') > -1"
+              (change)="externalCheckboxCheck($event, 'labelsQualifications')"
+            />
+            <div class="label pass">Pass numérique</div>
+          </label>
+        </div>
+        <div
+          class="checkboxButton"
+          [ngClass]="{
+            checked:
+              searchService.getIndex(checkedModulesFilter, 'conseillerNumFranceServices', 'labelsQualifications') > -1
+          }"
+        >
+          <label fxLayout="row" fxLayoutAlign="center center">
+            <input
+              type="checkbox"
+              value="conseillerNumFranceServices"
+              [checked]="
+                searchService.getIndex(checkedModulesFilter, 'conseillerNumFranceServices', 'labelsQualifications') > -1
+              "
+              (change)="externalCheckboxCheck($event, 'labelsQualifications')"
+            />
+            <div class="label pass">Conseillers numériques</div>
+          </label>
+        </div>
+        <div
+          class="checkboxButton"
+          [ngClass]="{
+            checked: searchService.getIndex(checkedModulesFilter, 'accesLibre', 'labelsQualifications') > -1
           }"
+        >
+          <label fxLayout="row" fxLayoutAlign="center center">
+            <input
+              type="checkbox"
+              value="accesLibre"
+              [checked]="searchService.getIndex(checkedModulesFilter, 'accesLibre', 'labelsQualifications') > -1"
+              (change)="externalCheckboxCheck($event, 'labelsQualifications')"
+            />
+            <div class="label pass">Accès libre</div>
+          </label>
+        </div>
+        <button
+          class="btn-filter"
+          type="button"
+          fxLayout="row"
           fxLayoutAlign="space-between center"
           (click)="openModal(TypeModal.moreFilters)"
         >
           <span>Plus de critères</span>
           <div class="arrow"></div>
         </button>
-        <div class="checkbox no-width">
-          <div class="checkboxItem">
-            <label fxLayout="row" fxLayoutAlign="center center">
-              <input
-                type="checkbox"
-                value="passNumerique"
-                [checked]="searchService.getIndex(checkedModulesFilter, 'passNumerique', 'labelsQualifications') > -1"
-                (change)="externalCheckboxCheck($event, 'labelsQualifications')"
-              />
-              <span class="customCheck"></span>
-              <div class="label pass">Pass numérique</div>
-            </label>
-          </div>
-        </div>
       </div>
       <div *ngIf="modalTypeOpened">
         <app-modal-filter
@@ -95,22 +164,5 @@
       <a routerLink="/create-structure" tabindex="0">Ajouter une structure</a>
     </div>
   </div> -->
-  <!-- Temporary remove because of user consideration issue -->
-  <!-- <div class="checkbox no-width">
-      <div class="checkboxItem">
-        <label fxLayout="row" fxLayoutAlign="center center">
-          <input
-            type="checkbox"
-            value="conseillerNumFranceServices"
-            [checked]="
-              searchService.getIndex(checkedModulesFilter, 'conseillerNumFranceServices', 'labelsQualifications') > -1
-            "
-            (change)="externalCheckboxCheck($event, 'labelsQualifications')"
-          />
-          <span class="customCheck"></span>
-          <div class="label pass">Conseiller numérique</div>
-        </label>
-      </div>
-    </div> -->
   <!-- <a routerLink="/create-structure" tabindex="0">Ajouter une structure</a> -->
 </div>
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss b/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
index 1d6ca75b3..0d3f45706 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
@@ -3,6 +3,7 @@
 @import '../../../../assets/scss/inputs';
 @import '../../../../assets/scss/hyperlink';
 @import '../../../../assets/scss/breakpoint';
+@import '../../../../assets/scss/buttons';
 
 .block {
   padding: 0 25px 10px 25px;
@@ -16,13 +17,23 @@
     @include input-search;
   }
   .inputSearch {
-    padding: 6px 3px 6px 6px;
-    max-width: 300px;
-    background-color: $grey-6;
+    padding: 6px 10px 6px 6px;
+    width: 300px;
+    min-width: 250px;
+    background-color: $grey-8;
     color: $grey-3;
     height: 40px;
     border-radius: 50px;
     margin-right: 1rem;
+    .container {
+      width: 100%;
+      .separation {
+        border-right: solid 1px $grey-4;
+        width: 5px;
+        height: 23px;
+        margin-right: 5px;
+      }
+    }
   }
 }
 .btnSection {
@@ -66,6 +77,53 @@
   .containCheckedFilters {
     border-color: $primary-color;
   }
+  .checkboxButton {
+    box-sizing: border-box;
+    @include btn-filter;
+    width: auto;
+    border-radius: 50px;
+    padding: 0px 10px;
+    display: flex;
+    align-items: center;
+    justify-content: center;
+
+    &.checked {
+      border-color: $primary-color;
+    }
+    label {
+      cursor: pointer;
+    }
+    input[type='checkbox'] {
+      appearance: none;
+      border-radius: 50%;
+      width: 20px;
+      min-width: 20px;
+      height: 20px;
+      border: solid 1px $grey-4;
+      background: transparent;
+      margin-left: 0;
+      margin-right: 5px;
+      transition: all 300ms ease;
+      position: relative;
+
+      &:checked {
+        background: $primary-color;
+        border: none;
+        &:after {
+          border-bottom: 2px solid white;
+          border-left: 2px solid white;
+          content: '';
+          height: 4px;
+          left: 4px;
+          opacity: 1;
+          position: absolute;
+          top: 6px;
+          transform: rotate(-45deg);
+          width: 10px;
+        }
+      }
+    }
+  }
 }
 
 .footerSearchSection {
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
index 78458c8fa..66483fa11 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
@@ -17,14 +17,13 @@ import { ActivatedRoute, Router } from '@angular/router';
   styleUrls: ['./structure-list-search.component.scss'],
 })
 export class StructureListSearchComponent implements OnInit {
+  @Input() locate = false;
   @Output() searchEvent = new EventEmitter();
-
+  @Output() locationReset: EventEmitter<boolean> = new EventEmitter<boolean>();
+  @Output() locationTrigger: EventEmitter<boolean> = new EventEmitter<boolean>();
   // Show/hide form createStructure
   public addStructureFormModal = false;
 
-  @Output() locationReset: EventEmitter<boolean> = new EventEmitter<boolean>();
-  @Output() locationTrigger: EventEmitter<boolean> = new EventEmitter<boolean>();
-  @Input() locate = false;
   // Form search input
   public searchForm: FormGroup;
   // Modal variable
@@ -35,6 +34,8 @@ export class StructureListSearchComponent implements OnInit {
 
   public numberTrainingChecked = 0;
   public numberAccompanimentChecked = 0;
+  public numberPublicChecked = 0;
+  public numberEquipmentChecked = 0;
   public numberMoreFiltersChecked = 0;
 
   public queryString: string;
@@ -57,6 +58,7 @@ export class StructureListSearchComponent implements OnInit {
     });
   }
   ngOnInit(): void {
+    console.log('output', this.searchEvent);
     // Will store the different categories
     this.queryString = this.activatedRoute.snapshot.queryParamMap.get('search');
     this.categories = [];
@@ -119,19 +121,22 @@ export class StructureListSearchComponent implements OnInit {
         case TypeModal.accompaniment:
           this.numberAccompanimentChecked = this.countCheckFiltersOnModules(
             checkedModules,
-            this.numberTrainingChecked + this.numberMoreFiltersChecked
+            this.numberAccompanimentChecked
           );
           break;
         case TypeModal.training:
-          this.numberTrainingChecked = this.countCheckFiltersOnModules(
-            checkedModules,
-            this.numberAccompanimentChecked + this.numberMoreFiltersChecked
-          );
+          this.numberTrainingChecked = this.countCheckFiltersOnModules(checkedModules, this.numberTrainingChecked);
+          break;
+        case TypeModal.public:
+          this.numberPublicChecked = this.countCheckFiltersOnModules(checkedModules, this.numberPublicChecked);
+          break;
+        case TypeModal.equipments:
+          this.numberEquipmentChecked = this.countCheckFiltersOnModules(checkedModules, this.numberEquipmentChecked);
           break;
         case TypeModal.moreFilters:
           this.numberMoreFiltersChecked = this.countCheckFiltersOnModules(
             checkedModules,
-            this.numberAccompanimentChecked + this.numberTrainingChecked
+            this.numberMoreFiltersChecked
           );
           break;
         default:
@@ -217,6 +222,34 @@ export class StructureListSearchComponent implements OnInit {
           this.categories.push(category);
         });
       });
+    } else if (option === TypeModal.public) {
+      forkJoin([
+        this.searchService.getCategoriesPublic(),
+        this.searchService.getFakeCounterModule(this.checkedModulesFilter),
+      ]).subscribe((res) => {
+        const categories: Category[] = res[0];
+        const structureCounter: StructureCounter[] = res[1];
+        categories
+          .filter((category) => category.id === 'publicsAccompaniment')
+          .map((category) => {
+            category = this.searchService.setCountModules(category, structureCounter);
+            this.categories.push(category);
+          });
+      });
+    } else if (option === TypeModal.equipments) {
+      forkJoin([
+        this.searchService.getCategoriesEquipments(),
+        this.searchService.getFakeCounterModule(this.checkedModulesFilter),
+      ]).subscribe((res) => {
+        const categories: Category[] = res[0];
+        const structureCounter: StructureCounter[] = res[1];
+        categories
+          .filter((category) => category.id === 'equipmentsAndServices')
+          .map((category) => {
+            category = this.searchService.setCountModules(category, structureCounter);
+            this.categories.push(category);
+          });
+      });
     } else if (option === TypeModal.moreFilters) {
       forkJoin([
         this.searchService.getCategoriesMoreFilters(),
diff --git a/src/app/structure-list/enum/typeModal.enum.ts b/src/app/structure-list/enum/typeModal.enum.ts
index 53ef9b1ec..232ac2844 100644
--- a/src/app/structure-list/enum/typeModal.enum.ts
+++ b/src/app/structure-list/enum/typeModal.enum.ts
@@ -1,5 +1,7 @@
 export enum TypeModal {
   accompaniment = 1,
   training,
+  public,
+  equipments,
   moreFilters,
 }
diff --git a/src/app/structure-list/services/search.service.ts b/src/app/structure-list/services/search.service.ts
index 8436bc53f..ad738f9e5 100644
--- a/src/app/structure-list/services/search.service.ts
+++ b/src/app/structure-list/services/search.service.ts
@@ -22,6 +22,17 @@ export class SearchService {
       .get('/api/categories/categoriesAccompagnement')
       .pipe(map((data: any[]) => data.map((item) => new Category(item))));
   }
+  public getCategoriesPublic(): Observable<Category[]> {
+    const res = this.http
+      .get('/api/categories/categoriesOthers')
+      .pipe(map((data: any[]) => data.map((item) => new Category(item))));
+    return res;
+  }
+  public getCategoriesEquipments(): Observable<Category[]> {
+    return this.http
+      .get('/api/categories/categoriesOthers')
+      .pipe(map((data: any[]) => data.map((item) => new Category(item))));
+  }
   public getCategoriesMoreFilters(): Observable<Category[]> {
     return this.http
       .get('/api/categories/categoriesOthers')
diff --git a/src/assets/ico/search.svg b/src/assets/ico/search.svg
index 13c32fbe9..6bb967269 100644
--- a/src/assets/ico/search.svg
+++ b/src/assets/ico/search.svg
@@ -1,3 +1,5 @@
-<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M7.6087 14.2174C11.2586 14.2174 14.2174 11.2586 14.2174 7.6087C14.2174 3.95881 11.2586 1 7.6087 1C3.95881 1 1 3.95881 1 7.6087C1 11.2586 3.95881 14.2174 7.6087 14.2174Z" stroke="#828282" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M19.8262 19.8262L24.0001 24.0001Z" fill="#333333"/>
+<path d="M19.8262 19.8262L24.0001 24.0001" stroke="#828282" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M14.6087 21.2174C18.2586 21.2174 21.2174 18.2586 21.2174 14.6087C21.2174 10.9588 18.2586 8 14.6087 8C10.9588 8 8 10.9588 8 14.6087C8 18.2586 10.9588 21.2174 14.6087 21.2174Z" stroke="#828282" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
 </svg>
diff --git a/src/assets/ico/sprite.svg b/src/assets/ico/sprite.svg
index ac526caa1..d9d63f5f3 100644
--- a/src/assets/ico/sprite.svg
+++ b/src/assets/ico/sprite.svg
@@ -367,7 +367,10 @@
 <line x1="10.0176" y1="24.9287" x2="16.0176" y2="24.9287" stroke="#348899" stroke-width="2" stroke-linecap="round"/>
 </symbol>
 
-<symbol id="search" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M7.6087 14.2174C11.2586 14.2174 14.2174 11.2586 14.2174 7.6087C14.2174 3.95881 11.2586 1 7.6087 1C3.95881 1 1 3.95881 1 7.6087C1 11.2586 3.95881 14.2174 7.6087 14.2174Z" stroke="#828282" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+<symbol id="search" width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M19.8262 19.8262L24.0001 24.0001Z" fill="#333333"/>
+<path d="M19.8262 19.8262L24.0001 24.0001" stroke="#828282" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M14.6087 21.2174C18.2586 21.2174 21.2174 18.2586 21.2174 14.6087C21.2174 10.9588 18.2586 8 14.6087 8C10.9588 8 8 10.9588 8 14.6087C8 18.2586 10.9588 21.2174 14.6087 21.2174Z" stroke="#828282" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
 </symbol>
+
 </svg>
diff --git a/src/assets/scss/_buttons.scss b/src/assets/scss/_buttons.scss
index 277e0c9fa..7dfbbbd66 100644
--- a/src/assets/scss/_buttons.scss
+++ b/src/assets/scss/_buttons.scss
@@ -12,7 +12,12 @@
   border-radius: 4px;
   cursor: pointer;
   @include btn-normal;
+  transition: all 300ms ease;
+  & > * {
+    transition: all 300ms ease;
+  }
 }
+
 @mixin btn-search {
   background: $white;
   height: 31px;
diff --git a/src/assets/scss/_inputs.scss b/src/assets/scss/_inputs.scss
index ef34fc274..4a14f81e5 100644
--- a/src/assets/scss/_inputs.scss
+++ b/src/assets/scss/_inputs.scss
@@ -7,7 +7,7 @@
   border: none;
   padding-left: 10px;
   text-overflow: ellipsis;
-  background-color: $grey-6;
+  background-color: $grey-8;
   color: $grey-3;
   outline: none;
   font-style: italic;
diff --git a/src/styles.scss b/src/styles.scss
index d352c7245..fd88f2394 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -176,7 +176,7 @@ button {
     border: 1px solid $grey;
     cursor: pointer;
     position: relative;
-
+    border-radius: 4px;
     top: 0;
     left: 0;
     &:hover {
-- 
GitLab


From bdb63d0c1d7c964ed492c5924c043a367ac08eca Mon Sep 17 00:00:00 2001
From: "guilhem.carron" <gcarron@grandlyon.com>
Date: Fri, 11 Mar 2022 14:07:52 +0100
Subject: [PATCH 10/40] ifx modal

---
 .../modal-filter/modal-filter.component.scss     | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.scss b/src/app/structure-list/components/modal-filter/modal-filter.component.scss
index cfbd09587..1e58dbd7f 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.scss
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.scss
@@ -10,29 +10,25 @@
   @media #{$desktop} {
     margin-left: 0;
   }
-
   margin-left: 201px;
 }
 .modaltraining {
   @media #{$desktop} {
-    margin-left: 170px;
+    margin-left: 0;
   }
-
-  margin-left: 0;
+  margin-left: 170px;
 }
 .modalpublic {
   @media #{$desktop} {
-    margin-left: 295px;
+    margin-left: 0;
   }
-
-  margin-left: 0;
+  margin-left: 295px;
 }
 .modalequipments {
   @media #{$desktop} {
-    margin-left: 405px;
+    margin-left: 0;
   }
-
-  margin-left: 0;
+  margin-left: 405px;
 }
 .modalmoreFilters {
   @media #{$desktop} {
-- 
GitLab


From 87fc4aa5a233e3bec38038f117db6a3b99453546 Mon Sep 17 00:00:00 2001
From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com>
Date: Fri, 11 Mar 2022 14:32:23 +0100
Subject: [PATCH 11/40] feat: handle router outlet for footer

---
 src/app/app-routing.module.ts | 193 ++++++++++++++++++++++++++++------
 src/app/app.component.html    |   3 +-
 2 files changed, 160 insertions(+), 36 deletions(-)

diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts
index ea7f55407..c64cd7f3d 100644
--- a/src/app/app-routing.module.ts
+++ b/src/app/app-routing.module.ts
@@ -1,5 +1,5 @@
 import { NgModule } from '@angular/core';
-import { Routes, RouterModule } from '@angular/router';
+import { Routes, RouterModule, Route } from '@angular/router';
 import { PageComponent } from './page/page.component';
 import { ContactComponent } from './contact/contact.component';
 import { FormComponent } from './form/structure-form/form.component';
@@ -21,13 +21,34 @@ import { StructureListPrintComponent } from './form/orientation-form/component/s
 import { StructureResolver } from './resolvers/structure.resolver';
 import { RoleGuard } from './guards/role.guard';
 import { RouteRole } from './shared/enum/routeRole.enum';
+import { FooterComponent } from './footer/footer.component';
+
+const footerOutletRoute: Route = {
+  path: '',
+  outlet: 'footer',
+  component: FooterComponent,
+};
 
 const routes: Routes = [
-  { path: 'print', outlet: 'print', children: [{ path: 'structure', component: StructureDetailsComponent }] },
-  { path: 'print', outlet: 'print', children: [{ path: 'structures', component: StructureListPrintComponent }] },
+  {
+    path: 'print',
+    outlet: 'print',
+    children: [{ path: 'structure', component: StructureDetailsComponent }, footerOutletRoute],
+  },
+  {
+    path: 'print',
+    outlet: 'print',
+    children: [{ path: 'structures', component: StructureListPrintComponent }, footerOutletRoute],
+  },
   {
     path: 'orientation',
-    component: OrientationFormComponent,
+    children: [
+      {
+        path: '',
+        component: OrientationFormComponent,
+      },
+      footerOutletRoute,
+    ],
   },
   {
     path: 'acteurs',
@@ -35,86 +56,188 @@ const routes: Routes = [
   },
   {
     path: 'login',
-    component: CartoComponent,
+    children: [
+      {
+        path: '',
+        component: CartoComponent,
+      },
+      footerOutletRoute,
+    ],
   },
   {
     path: 'structures',
-    component: StructureListComponent,
+    children: [
+      {
+        path: '',
+        component: StructureListComponent,
+      },
+      footerOutletRoute,
+    ],
   },
   {
     path: 'legal-notice',
-    component: LegalNoticeComponent,
+    children: [
+      {
+        path: '',
+        component: LegalNoticeComponent,
+      },
+      footerOutletRoute,
+    ],
   },
   {
     path: 'page/:slugPage',
-    component: PageComponent,
+    children: [
+      {
+        path: '',
+        component: PageComponent,
+      },
+      footerOutletRoute,
+    ],
   },
   {
     path: 'contact',
-    component: ContactComponent,
+    children: [
+      {
+        path: '',
+        component: ContactComponent,
+      },
+      footerOutletRoute,
+    ],
   },
   {
     path: 'users/verify/:id',
-    component: UserVerificationComponent,
+    children: [
+      {
+        path: '',
+        component: UserVerificationComponent,
+      },
+      footerOutletRoute,
+    ],
   },
   {
     path: 'register',
-    component: FormComponent,
-    canDeactivate: [DeactivateGuard],
-    resolve: {
-      user: TempUserResolver,
-    },
+    children: [
+      {
+        path: '',
+        component: FormComponent,
+        canDeactivate: [DeactivateGuard],
+        resolve: {
+          user: TempUserResolver,
+        },
+      },
+      footerOutletRoute,
+    ],
   },
   {
     path: 'change-email/:id',
-    component: ResetEmailComponent,
+    children: [
+      {
+        path: '',
+        component: ResetEmailComponent,
+      },
+      footerOutletRoute,
+    ],
   },
   {
     path: 'profile',
-    canActivate: [AuthGuard],
-    loadChildren: () => import('./profile/profile.module').then((m) => m.ProfileModule),
+    children: [
+      {
+        path: '',
+        canActivate: [AuthGuard],
+        loadChildren: () => import('./profile/profile.module').then((m) => m.ProfileModule),
+      },
+      footerOutletRoute,
+    ],
   },
   {
     path: 'join',
-    canActivate: [AuthGuard],
-    component: StructureJoinComponent,
+    children: [
+      {
+        path: '',
+        canActivate: [AuthGuard],
+        component: StructureJoinComponent,
+      },
+      footerOutletRoute,
+    ],
   },
   {
     path: 'reset-password',
-    component: ResetPasswordComponent,
+    children: [
+      {
+        path: '',
+        component: ResetPasswordComponent,
+      },
+      footerOutletRoute,
+    ],
   },
   {
     path: 'create-structure',
-    component: FormComponent,
-    canDeactivate: [DeactivateGuard],
+    children: [
+      {
+        path: '',
+        component: FormComponent,
+        canDeactivate: [DeactivateGuard],
+      },
+      footerOutletRoute,
+    ],
   },
   {
     path: 'create-structure/:id',
-    component: FormComponent,
-    canDeactivate: [DeactivateGuard],
-    canActivate: [RoleGuard],
-    data: { allowedRoles: [RouteRole.structureAdmin] },
-    resolve: {
-      structure: StructureResolver,
-    },
+    children: [
+      {
+        path: '',
+        component: FormComponent,
+        canDeactivate: [DeactivateGuard],
+        canActivate: [RoleGuard],
+        data: { allowedRoles: [RouteRole.structureAdmin] },
+        resolve: {
+          structure: StructureResolver,
+        },
+      },
+      footerOutletRoute,
+    ],
   },
   {
     path: 'newsletter',
-    component: NewsletterSubscriptionComponent,
+    children: [
+      {
+        path: '',
+        component: NewsletterSubscriptionComponent,
+      },
+      footerOutletRoute,
+    ],
   },
   {
     path: 'newsletter-unsubscribe',
-    component: NewsletterSubscriptionComponent,
+    children: [
+      {
+        path: '',
+        component: NewsletterSubscriptionComponent,
+      },
+      footerOutletRoute,
+    ],
   },
 
   {
     path: 'news',
-    loadChildren: () => import('./post/post.module').then((m) => m.PostModule),
+    children: [
+      {
+        path: '',
+        loadChildren: () => import('./post/post.module').then((m) => m.PostModule),
+      },
+      footerOutletRoute,
+    ],
   },
   {
     path: 'admin',
-    canActivate: [AdminGuard],
-    loadChildren: () => import('./admin/admin.module').then((m) => m.AdminModule),
+    children: [
+      {
+        path: '',
+        canActivate: [AdminGuard],
+        loadChildren: () => import('./admin/admin.module').then((m) => m.AdminModule),
+      },
+      footerOutletRoute,
+    ],
   },
   {
     path: 'home',
diff --git a/src/app/app.component.html b/src/app/app.component.html
index aa331e09e..2d9da54e0 100644
--- a/src/app/app.component.html
+++ b/src/app/app.component.html
@@ -3,6 +3,7 @@
   <div (scroll)="onScrollDown($event)" class="app-body">
     <router-outlet></router-outlet>
     <router-outlet name="print"></router-outlet>
-    <app-footer></app-footer>
+    <router-outlet name="footer"></router-outlet>
+    <!-- <app-footer></app-footer> -->
   </div>
 </div>
-- 
GitLab


From ac80221271f301cb6529d1506191a6a683d83c0e Mon Sep 17 00:00:00 2001
From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com>
Date: Fri, 11 Mar 2022 14:56:41 +0100
Subject: [PATCH 12/40] feat: change color of markers

---
 src/app/map/components/map.component.scss | 6 +++---
 src/app/map/components/map.component.ts   | 1 -
 src/app/map/services/map.service.ts       | 2 +-
 src/app/map/services/marker.ts            | 2 +-
 src/assets/ico/mapMarker.svg              | 2 +-
 src/assets/scss/_color.scss               | 2 ++
 6 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/src/app/map/components/map.component.scss b/src/app/map/components/map.component.scss
index 2e9b11e73..bf5d1f7b3 100644
--- a/src/app/map/components/map.component.scss
+++ b/src/app/map/components/map.component.scss
@@ -32,7 +32,7 @@
     margin-left: 0;
     margin-right: 10px;
     border: none;
-    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
+    box-shadow: 0px 2px 8px rgba($black, 0.25);
     &.leaflet-bar a:first-child {
       border-top-left-radius: 8px;
       border-top-right-radius: 8px;
@@ -58,9 +58,9 @@
   &:hover {
     z-index: calc($map-selected-marker - 1) !important;
     svg {
-      fill: $blue-middle;
+      fill: $primary-color-dark;
       &.mdm {
-        fill: #bd9e6a;
+        fill: $gold;
       }
       &.france-service {
         fill: $primary-color;
diff --git a/src/app/map/components/map.component.ts b/src/app/map/components/map.component.ts
index 7e3bfc06a..97884ad1d 100644
--- a/src/app/map/components/map.component.ts
+++ b/src/app/map/components/map.component.ts
@@ -9,7 +9,6 @@ import { MarkerType } from './markerType.enum';
 import metropole from '../../../assets/geojson/metropole.json';
 import 'leaflet.locatecontrol';
 import { ZoomLevel } from './zoomLevel.enum';
-import { Filter } from '../../structure-list/models/filter.model';
 
 @Component({
   selector: 'app-map',
diff --git a/src/app/map/services/map.service.ts b/src/app/map/services/map.service.ts
index c65d92585..3bec6bcc5 100644
--- a/src/app/map/services/map.service.ts
+++ b/src/app/map/services/map.service.ts
@@ -1,5 +1,5 @@
 import { Injectable } from '@angular/core';
-import { DivIcon, divIcon, Map, Marker } from 'leaflet';
+import { DivIcon, Map, Marker } from 'leaflet';
 import { Layers } from '../components/layers.enum';
 import { MarkerType } from '../components/markerType.enum';
 import {
diff --git a/src/app/map/services/marker.ts b/src/app/map/services/marker.ts
index e458b0b9d..35efbc6ed 100644
--- a/src/app/map/services/marker.ts
+++ b/src/app/map/services/marker.ts
@@ -2,7 +2,7 @@ import { divIcon } from 'leaflet';
 
 export const markerIcon = divIcon({
   className: null,
-  html: '<svg width="48" height="48" fill="#348899"><use xlink:href="assets/ico/sprite.svg#map-marker"></use></svg>',
+  html: '<svg width="48" height="48" fill="#4C4D53"><use xlink:href="assets/ico/sprite.svg#map-marker"></use></svg>',
   iconSize: [48, 48],
   iconAnchor: [24, 48],
   popupAnchor: [0, -48],
diff --git a/src/assets/ico/mapMarker.svg b/src/assets/ico/mapMarker.svg
index e69749ae0..e66f307f2 100644
--- a/src/assets/ico/mapMarker.svg
+++ b/src/assets/ico/mapMarker.svg
@@ -1 +1 @@
-<svg width="40" height="46" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19.72 43.73l.706.66.683-.683c2.038-2.04 4.04-3.864 5.934-5.588l.179-.163c6.32-5.755 11.624-10.585 11.624-18.493C38.846 9.267 30.59 1 20.402 1 10.214 1 1.957 9.267 1.957 19.463c0 4.152 1.08 7.233 3.179 10.152 2.04 2.84 5.05 5.523 8.833 8.899l.078.07c1.717 1.531 3.607 3.217 5.672 5.147zm6.508-24.267a5.83 5.83 0 01-5.826 5.833 5.83 5.83 0 01-5.826-5.833 5.83 5.83 0 015.826-5.833 5.83 5.83 0 015.826 5.833z" fill="#348899" stroke="#fff" stroke-width="2"/></svg>
\ No newline at end of file
+<svg width="40" height="46" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19.72 43.73l.706.66.683-.683c2.038-2.04 4.04-3.864 5.934-5.588l.179-.163c6.32-5.755 11.624-10.585 11.624-18.493C38.846 9.267 30.59 1 20.402 1 10.214 1 1.957 9.267 1.957 19.463c0 4.152 1.08 7.233 3.179 10.152 2.04 2.84 5.05 5.523 8.833 8.899l.078.07c1.717 1.531 3.607 3.217 5.672 5.147zm6.508-24.267a5.83 5.83 0 01-5.826 5.833 5.83 5.83 0 01-5.826-5.833 5.83 5.83 0 015.826-5.833 5.83 5.83 0 015.826 5.833z" fill="#4C4D53" stroke="#fff" stroke-width="2"/></svg>
\ No newline at end of file
diff --git a/src/assets/scss/_color.scss b/src/assets/scss/_color.scss
index 31a19f508..5df023097 100644
--- a/src/assets/scss/_color.scss
+++ b/src/assets/scss/_color.scss
@@ -13,6 +13,8 @@ $grey-8: #f8f8f8;
 /* REDS */
 $red: #da3635;
 $red-dark: #b85959;
+/* GOLD */
+$gold: #bd9e6a;
 /* form colors */
 $green-1: #47c562;
 /* Status colors */
-- 
GitLab


From e3bd50c08c2c8671f648977a6555b08dbdcb5b49 Mon Sep 17 00:00:00 2001
From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com>
Date: Fri, 11 Mar 2022 17:07:24 +0100
Subject: [PATCH 13/40] feat: change layour for carto

---
 src/app/carto/carto.component.html            |  2 +-
 src/app/carto/carto.component.scss            | 59 ++++++++++++-------
 src/app/map/components/map.component.scss     | 12 +---
 .../components/card/card.component.scss       |  2 +-
 .../structure-list.component.html             | 56 +++++++++---------
 .../structure-list.component.scss             | 28 +++++++--
 src/assets/ico/sprite.svg                     |  4 +-
 src/assets/scss/_color.scss                   |  2 +
 src/styles.scss                               |  1 +
 9 files changed, 98 insertions(+), 68 deletions(-)

diff --git a/src/app/carto/carto.component.html b/src/app/carto/carto.component.html
index c5fde954f..be46fff8b 100644
--- a/src/app/carto/carto.component.html
+++ b/src/app/carto/carto.component.html
@@ -7,7 +7,7 @@
       [locate]="locate"
     ></app-structure-list-search>
   </div>
-  <div fxLayout="row">
+  <div class="panes-container" fxLayout="row">
     <app-structure-list
       (searchEvent)="getStructures($event)"
       [structureList]="structures"
diff --git a/src/app/carto/carto.component.scss b/src/app/carto/carto.component.scss
index d42e9fd69..243265526 100644
--- a/src/app/carto/carto.component.scss
+++ b/src/app/carto/carto.component.scss
@@ -1,6 +1,7 @@
 @import '../../assets/scss/breakpoint';
 @import '../../assets/scss/layout';
 @import '../../assets/scss/z-index';
+@import '../../assets/scss/color';
 
 ::ng-deep .footer {
   @media #{$tablet} {
@@ -8,32 +9,48 @@
   }
 }
 
-.left-pane {
-  width: 600px;
-  min-width: 600px;
-  @media #{$tablet} {
-    width: 100%;
-    min-width: unset;
-    &.mapPhone {
-      display: none !important;
-    }
-  }
+.content-container {
+  height: calc(100vh - #{$header-height});
+  background: $white;
+  padding-top: 0.6rem;
+  display: flex;
+  flex-direction: column;
 }
-.right-pane {
+
+.panes-container {
   width: 100%;
-  @media #{$tablet} {
-    display: none;
-    &.mapPhone {
-      display: block;
+  position: relative;
+  flex: 1;
+  overflow-y: hidden;
+  overflow-x: hidden;
+  .left-pane {
+    height: 100%;
+    width: 600px;
+    min-width: 600px;
+    overflow-y: auto;
+    border-right: 1px solid $grey-4;
+    @media #{$tablet} {
+      width: 100%;
+      min-width: unset;
+      border-right: none;
+      &.mapPhone {
+        display: none !important;
+      }
+    }
+  }
+  .right-pane {
+    height: 100%;
+    width: 100%;
+    @media #{$tablet} {
+      display: none;
+      &.mapPhone {
+        display: block;
+      }
+      padding: 0;
     }
-    padding: 0;
   }
 }
-.content-container {
-  height: calc(100vh - #{$header-height});
-  background: white;
-  padding-top: 0.6rem;
-}
+
 .btnSwitch {
   position: fixed;
   left: 50%;
diff --git a/src/app/map/components/map.component.scss b/src/app/map/components/map.component.scss
index bf5d1f7b3..b33ebc7ca 100644
--- a/src/app/map/components/map.component.scss
+++ b/src/app/map/components/map.component.scss
@@ -8,17 +8,7 @@
 @import '../../../assets/scss/z-index';
 
 #map {
-  // TODO - adapt the height - remove search bar height
-  height: calc(100vh - #{$header-height} - #{$footer-height});
-  @media #{$tablet} {
-    height: calc(100vh - #{$header-height} - #{$footer-height} - 24px);
-  }
-  @media #{$large-phone} {
-    height: calc(100vh - #{$header-height} - 28px);
-  }
-  &.orientation {
-    height: calc(96vh - #{$header-height} - #{$footer-height} - 68px - #{$footer-height-phone});
-  }
+  height: 100%;
 }
 
 /*** Right controls ***/
diff --git a/src/app/structure-list/components/card/card.component.scss b/src/app/structure-list/components/card/card.component.scss
index 88a4a541f..7d0eca6a0 100644
--- a/src/app/structure-list/components/card/card.component.scss
+++ b/src/app/structure-list/components/card/card.component.scss
@@ -5,7 +5,7 @@
 
 .structure {
   padding: 12px 24px;
-  border-bottom: 1px solid $grey !important;
+  border-bottom: 1px solid $grey-8 !important;
   min-height: 110px;
   display: flex;
   justify-content: center;
diff --git a/src/app/structure-list/structure-list.component.html b/src/app/structure-list/structure-list.component.html
index a862df1d2..e4c9b66fe 100644
--- a/src/app/structure-list/structure-list.component.html
+++ b/src/app/structure-list/structure-list.component.html
@@ -1,31 +1,33 @@
-<div class="structureListHeader hide-on-print">
-  <div class="nbStructuresLabel" [ngPlural]="structureList.length">
-    <ng-template ngPluralCase="0">0 structure</ng-template>
-    <ng-template ngPluralCase="1">1 structure</ng-template>
-    <ng-template ngPluralCase="other">{{ structureList.length }} structures</ng-template>
+<div class="structureList-container">
+  <div class="structureListHeader hide-on-print">
+    <div class="nbStructuresLabel" [ngPlural]="structureList.length">
+      <ng-template ngPluralCase="0">0 structure</ng-template>
+      <ng-template ngPluralCase="1">1 structure</ng-template>
+      <ng-template ngPluralCase="other">{{ structureList.length }} structures</ng-template>
+    </div>
+    <app-button
+      tabindex="0"
+      (action)="addStructure()"
+      [text]="'Ajouter une structure'"
+      [style]="'secondary'"
+    ></app-button>
+  </div>
+
+  <div (scroll)="onScrollDown($event)" id="listCard" class="listCard" (mouseleave)="mouseLeave()">
+    <app-card
+      *ngFor="let structure of structuresListChunked"
+      [structure]="structure"
+      (showDetails)="showDetails($event, filters)"
+      (hover)="handleCardHover($event)"
+      class="structure-card"
+    ></app-card>
+    <p *ngIf="structureList && structureList.length <= 0">Il n'y a aucune réponse correspondant à votre recherche</p>
   </div>
-  <app-button
-    tabindex="0"
-    (action)="addStructure()"
-    [text]="'Ajouter une structure'"
-    [style]="'secondary'"
-  ></app-button>
-</div>
 
-<div (scroll)="onScrollDown($event)" id="listCard" class="listCard" (mouseleave)="mouseLeave()">
-  <app-card
-    *ngFor="let structure of structuresListChunked"
+  <app-structure-details
+    *ngIf="showStructureDetails"
     [structure]="structure"
-    (showDetails)="showDetails($event, filters)"
-    (hover)="handleCardHover($event)"
-    class="structure-card"
-  ></app-card>
-  <p *ngIf="structureList && structureList.length <= 0">Il n'y a aucune réponse correspondant à votre recherche</p>
+    (closeDetails)="closeDetails()"
+    (updatedStructure)="emitUpdatedStructure($event)"
+  ></app-structure-details>
 </div>
-
-<app-structure-details
-  *ngIf="showStructureDetails"
-  [structure]="structure"
-  (closeDetails)="closeDetails()"
-  (updatedStructure)="emitUpdatedStructure($event)"
-></app-structure-details>
diff --git a/src/app/structure-list/structure-list.component.scss b/src/app/structure-list/structure-list.component.scss
index 04c57c489..c0ea7ebf4 100644
--- a/src/app/structure-list/structure-list.component.scss
+++ b/src/app/structure-list/structure-list.component.scss
@@ -3,13 +3,35 @@
 @import '../../assets/scss/typography';
 @import '../../assets/scss/buttons';
 
+.structureList-container {
+  overflow-y: auto;
+  scrollbar-gutter: stable;
+  &::-webkit-scrollbar {
+    width: 8px;
+  }
+  /* Track */
+  &::-webkit-scrollbar-track {
+    background: $scrollbar-track;
+  }
+  /* Handle */
+  &::-webkit-scrollbar-thumb {
+    background: $scrollbar-thumb;
+    border-radius: 8px;
+  }
+  /* Handle on hover */
+  &::-webkit-scrollbar-thumb:hover {
+    background: $grey-3;
+    border-radius: 8px;
+  }
+}
+
 .structureListHeader {
   height: 50px;
   display: flex;
   flex-direction: row;
   align-items: center;
   margin-left: 1rem;
-  margin-right: 7.5px;
+  margin-right: 1rem;
   .nbStructuresLabel {
     @include lato-regular-14;
     color: $grey-3;
@@ -17,10 +39,6 @@
   }
 }
 
-.listCard {
-  overflow-y: auto;
-}
-
 ::ng-deep .structure-card:last-child .structure {
   border-bottom: unset !important;
 }
diff --git a/src/assets/ico/sprite.svg b/src/assets/ico/sprite.svg
index d9d63f5f3..2c68fa96a 100644
--- a/src/assets/ico/sprite.svg
+++ b/src/assets/ico/sprite.svg
@@ -4,11 +4,11 @@
 </symbol>
 
 <symbol  id="map-markerSelected" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M23.74 45.7307L24.4466 46.3909L25.1301 45.7067C27.1682 43.6665 29.1698 41.8435 31.0637 40.1188L31.2426 39.9559C37.5627 34.201 42.8674 29.3707 42.8674 21.463C42.8674 11.2671 34.6104 3 24.4227 3C14.2349 3 5.97791 11.2671 5.97791 21.463C5.97791 25.615 7.05764 28.6957 9.15679 31.6153C11.1977 34.4541 14.2063 37.1381 17.9903 40.514L18.0681 40.5834C19.7853 42.1155 21.6751 43.8015 23.74 45.7307ZM30.2489 21.463C30.2489 24.6856 27.6394 27.2963 24.4227 27.2963C21.2059 27.2963 18.5965 24.6856 18.5965 21.463C18.5965 18.2403 21.2059 15.6296 24.4227 15.6296C27.6394 15.6296 30.2489 18.2403 30.2489 21.463Z" fill="#ED3939" stroke="white" stroke-width="2"/>
+<path d="M23.74 45.7307L24.4466 46.3909L25.1301 45.7067C27.1682 43.6665 29.1698 41.8435 31.0637 40.1188L31.2426 39.9559C37.5627 34.201 42.8674 29.3707 42.8674 21.463C42.8674 11.2671 34.6104 3 24.4227 3C14.2349 3 5.97791 11.2671 5.97791 21.463C5.97791 25.615 7.05764 28.6957 9.15679 31.6153C11.1977 34.4541 14.2063 37.1381 17.9903 40.514L18.0681 40.5834C19.7853 42.1155 21.6751 43.8015 23.74 45.7307ZM30.2489 21.463C30.2489 24.6856 27.6394 27.2963 24.4227 27.2963C21.2059 27.2963 18.5965 24.6856 18.5965 21.463C18.5965 18.2403 21.2059 15.6296 24.4227 15.6296C27.6394 15.6296 30.2489 18.2403 30.2489 21.463Z" fill="#da3635" stroke="white" stroke-width="2"/>
 </symbol>
 
 <symbol  id="map-markerHover" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M23.74 45.7307L24.4466 46.3909L25.1301 45.7067C27.1682 43.6665 29.1698 41.8435 31.0637 40.1188L31.2426 39.9559C37.5627 34.201 42.8674 29.3707 42.8674 21.463C42.8674 11.2671 34.6104 3 24.4227 3C14.2349 3 5.97791 11.2671 5.97791 21.463C5.97791 25.615 7.05764 28.6957 9.15679 31.6153C11.1977 34.4541 14.2063 37.1381 17.9903 40.514L18.0681 40.5834C19.7853 42.1155 21.6751 43.8015 23.74 45.7307ZM30.2489 21.463C30.2489 24.6856 27.6394 27.2963 24.4227 27.2963C21.2059 27.2963 18.5965 24.6856 18.5965 21.463C18.5965 18.2403 21.2059 15.6296 24.4227 15.6296C27.6394 15.6296 30.2489 18.2403 30.2489 21.463Z" fill="#117083" stroke="white" stroke-width="2"/>
+<path d="M23.74 45.7307L24.4466 46.3909L25.1301 45.7067C27.1682 43.6665 29.1698 41.8435 31.0637 40.1188L31.2426 39.9559C37.5627 34.201 42.8674 29.3707 42.8674 21.463C42.8674 11.2671 34.6104 3 24.4227 3C14.2349 3 5.97791 11.2671 5.97791 21.463C5.97791 25.615 7.05764 28.6957 9.15679 31.6153C11.1977 34.4541 14.2063 37.1381 17.9903 40.514L18.0681 40.5834C19.7853 42.1155 21.6751 43.8015 23.74 45.7307ZM30.2489 21.463C30.2489 24.6856 27.6394 27.2963 24.4227 27.2963C21.2059 27.2963 18.5965 24.6856 18.5965 21.463C18.5965 18.2403 21.2059 15.6296 24.4227 15.6296C27.6394 15.6296 30.2489 18.2403 30.2489 21.463Z" fill="#B85959" stroke="white" stroke-width="2"/>
 </symbol>
 
 <symbol id="map-marker-added" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
diff --git a/src/assets/scss/_color.scss b/src/assets/scss/_color.scss
index 5df023097..f15cca9b7 100644
--- a/src/assets/scss/_color.scss
+++ b/src/assets/scss/_color.scss
@@ -35,3 +35,5 @@ $app-background: $grey-8;
 $modal-background: rgba($grey-1, 0.75);
 $app-background: $grey-8;
 $ram-hover-principal: $primary-color;
+$scrollbar-track: rgba($grey-8, 0.65);
+$scrollbar-thumb: $grey-4;
diff --git a/src/styles.scss b/src/styles.scss
index fd88f2394..d2147f0d3 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -63,6 +63,7 @@ a {
   margin: 0;
   padding-top: 16px;
   width: 100%;
+  box-sizing: border-box;
   &.medium-pt {
     padding: 25px 0 30px 0;
   }
-- 
GitLab


From d36356dd44dab6616404ce9fc3ec3a209c1b9e73 Mon Sep 17 00:00:00 2001
From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com>
Date: Fri, 11 Mar 2022 17:19:23 +0100
Subject: [PATCH 14/40] feat: review margin for button in structure list

---
 src/app/structure-list/structure-list.component.scss | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/app/structure-list/structure-list.component.scss b/src/app/structure-list/structure-list.component.scss
index c0ea7ebf4..86b868861 100644
--- a/src/app/structure-list/structure-list.component.scss
+++ b/src/app/structure-list/structure-list.component.scss
@@ -31,7 +31,7 @@
   flex-direction: row;
   align-items: center;
   margin-left: 1rem;
-  margin-right: 1rem;
+  margin-right: 0.5rem;
   .nbStructuresLabel {
     @include lato-regular-14;
     color: $grey-3;
-- 
GitLab


From e97836cde6a2bae967f26a10bc991880af72f8bd Mon Sep 17 00:00:00 2001
From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com>
Date: Fri, 11 Mar 2022 17:25:39 +0100
Subject: [PATCH 15/40] feat: clean unused variables

---
 src/app/carto/carto.component.html                 | 4 ----
 src/app/carto/carto.component.ts                   | 2 +-
 src/app/map/components/map.component.ts            | 1 -
 src/app/structure-list/structure-list.component.ts | 1 -
 4 files changed, 1 insertion(+), 7 deletions(-)

diff --git a/src/app/carto/carto.component.html b/src/app/carto/carto.component.html
index be46fff8b..3eb1278e1 100644
--- a/src/app/carto/carto.component.html
+++ b/src/app/carto/carto.component.html
@@ -12,13 +12,10 @@
       (searchEvent)="getStructures($event)"
       [structureList]="structures"
       [location]="currentLocation"
-      [locate]="locate"
       (displayMapMarkerId)="setMapMarkerId($event)"
       (selectedMarkerId)="setSelectedMarkerId($event)"
       [selectedStructure]="currentStructure"
       (updatedStructure)="updateStructures($event)"
-      (locatationReset)="maplocationReset()"
-      (locatationTrigger)="maplocationTrigger(null)"
       class="left-pane"
       [ngClass]="{ mapPhone: isMapPhone == true }"
       fxLayout="column"
@@ -37,7 +34,6 @@
       [selectedMarkerId]="selectedMarkerId"
       [locate]="locate"
       (selectedStructure)="showDetailStructure($event)"
-      (locatationTrigger)="maplocationTrigger($event)"
       [isMapPhone]="isMapPhone"
       [searchedValue]="searchedValue"
       class="right-pane"
diff --git a/src/app/carto/carto.component.ts b/src/app/carto/carto.component.ts
index 3f5bc94bb..de3feb92b 100644
--- a/src/app/carto/carto.component.ts
+++ b/src/app/carto/carto.component.ts
@@ -1,4 +1,4 @@
-import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
+import { Component, OnInit } from '@angular/core';
 import { Meta } from '@angular/platform-browser';
 import * as _ from 'lodash';
 
diff --git a/src/app/map/components/map.component.ts b/src/app/map/components/map.component.ts
index 97884ad1d..a3eb5a4d7 100644
--- a/src/app/map/components/map.component.ts
+++ b/src/app/map/components/map.component.ts
@@ -26,7 +26,6 @@ export class MapComponent implements OnChanges {
   @Input() public searchedValue: string | [number, number];
   @Output() public selectedStructure: EventEmitter<Structure> = new EventEmitter<Structure>();
   @Output() public onOrientationButtonClick: EventEmitter<Structure> = new EventEmitter<Structure>();
-  @Output() locatationTrigger: EventEmitter<boolean> = new EventEmitter<boolean>();
   private lc; // Locate control
   private currentStructure: Structure;
 
diff --git a/src/app/structure-list/structure-list.component.ts b/src/app/structure-list/structure-list.component.ts
index 8599725fb..01b682c32 100644
--- a/src/app/structure-list/structure-list.component.ts
+++ b/src/app/structure-list/structure-list.component.ts
@@ -14,7 +14,6 @@ export class StructureListComponent implements OnChanges {
   @Input() public structureList: Structure[];
   @Input() public location: GeoJson;
   @Input() public selectedStructure: Structure = new Structure();
-  @Input() public locate = false;
   @Output() public displayMapMarkerId: EventEmitter<string> = new EventEmitter<string>();
   @Output() public selectedMarkerId: EventEmitter<string> = new EventEmitter<string>();
   @Output() public updatedStructure: EventEmitter<Structure> = new EventEmitter<Structure>();
-- 
GitLab


From 39efcc9cec5acc03b87fda15de114dc3c189d524 Mon Sep 17 00:00:00 2001
From: "guilhem.carron" <gcarron@grandlyon.com>
Date: Fri, 11 Mar 2022 18:17:36 +0100
Subject: [PATCH 16/40] add filter modal

---
 .../modal-filter/modal-filter.component.html  | 52 +++++++++++++-
 .../modal-filter/modal-filter.component.scss  | 68 ++++++++++++++-----
 .../modal-filter/modal-filter.component.ts    | 42 +++++++++++-
 .../structure-list-search.component.html      |  4 +-
 .../structure-list-search.component.scss      |  1 +
 .../structure-list-search.component.ts        |  1 -
 src/styles.scss                               |  2 +
 7 files changed, 146 insertions(+), 24 deletions(-)

diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.html b/src/app/structure-list/components/modal-filter/modal-filter.component.html
index a79bc9f81..1ab7a02ea 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.html
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.html
@@ -4,10 +4,8 @@
       <span>Filtres</span>
       <div (click)="closeModal()" class="ico-close-details"></div>
     </div>
-    <div class="contentModal" fxLayout="row wrap" fxLayoutAlign="flex-start" *ngIf="categories.length > 0">
+    <div class="contentModal" fxLayout="row wrap" fxLayoutAlign="flex-start" *ngIf="categories.length === 1">
       <div class="blockFiltre" *ngFor="let c of categories">
-        <!-- <h4>{{ c.name }}</h4> -->
-
         <ul class="blockLigne">
           <div fxLayout="row" fxLayoutAlign="start center" class="ligneFiltre" *ngFor="let module of c.modules">
             <li class="checkbox">
@@ -28,6 +26,54 @@
         </ul>
       </div>
     </div>
+    <div class="contentModal maxModal" fxLayout="row wrap" fxLayoutAlign="flex-start" *ngIf="categories.length > 1">
+      <ul class="blockLigne">
+        <div class="blockFiltre" *ngFor="let c of categories">
+          <li class="checkbox">
+            <div class="checkboxItem categoryCheckBox">
+              <div fxLayout="row" fxLayoutAlign="start center">
+                <label>
+                  <input
+                    type="checkbox"
+                    class="multiCheck"
+                    [checked]="getCategoryCheckboxStatus(c) === 'checked'"
+                    (change)="handleCategoryCheckBox($event, c)"
+                  />
+                  <span
+                    class="customCheck customCheckPrimary"
+                    [ngClass]="{ halfCheck: getCategoryCheckboxStatus(c) === 'halfChecked' }"
+                  ></span>
+                  <div class="label">{{ c.name }}</div>
+                </label>
+                <div
+                  class="arrow"
+                  (click)="toggleShowCategory(c.id)"
+                  [ngClass]="{ toggled: this.toggledCategories.includes(c.id) }"
+                ></div>
+              </div>
+              <ul class="blockLigne smallList" [ngClass]="{ show: this.toggledCategories.includes(c.id) }">
+                <div fxLayout="row" fxLayoutAlign="start center" class="ligneFiltre" *ngFor="let module of c.modules">
+                  <li class="checkbox">
+                    <div class="checkboxItem">
+                      <label fxLayout="row" fxLayoutAlign="start center">
+                        <input
+                          type="checkbox"
+                          [checked]="searchService.getIndex(checkedModules, module.id, c.id) > -1"
+                          [value]="module.id"
+                          (change)="onCheckboxChange($event, c.id)"
+                        />
+                        <span class="customCheck customCheckPrimary"></span>
+                        <div class="label">{{ module.text }}</div>
+                      </label>
+                    </div>
+                  </li>
+                </div>
+              </ul>
+            </div>
+          </li>
+        </div>
+      </ul>
+    </div>
 
     <div class="footer" fxLayout="row" fxLayoutAlign="center center">
       <a class="reset" (click)="clearFilters()" tabindex="0">Effacer</a>
diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.scss b/src/app/structure-list/components/modal-filter/modal-filter.component.scss
index 1e58dbd7f..13acac994 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.scss
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.scss
@@ -36,8 +36,20 @@
   }
   margin-left: 700px;
 }
+.maxModal .blockLigne {
+  box-sizing: border-box;
+  width: 360px;
+  .smallList {
+    display: block;
+    box-sizing: border-box;
+    background: $grey-8;
+    max-width: 300px;
+    padding: 0.5rem !important;
+    margin-top: 1rem !important;
+  }
+}
 .modal {
-  max-width: 754px;
+  max-width: 360px;
   width: auto;
   z-index: $modal-z-index !important;
   position: fixed;
@@ -99,6 +111,28 @@
         padding: 25px 0;
         min-width: 0;
       }
+      .categoryCheckBox {
+        .halfCheck {
+          position: relative;
+          &:before {
+            content: '';
+            position: absolute;
+            display: block;
+            width: 10px;
+            left: 4px;
+            top: 8px;
+            transform: rotate(0deg);
+            border-bottom: solid 2px $grey-2;
+            border-radius: 0;
+          }
+        }
+        ul {
+          display: none;
+        }
+        .show {
+          display: block !important;
+        }
+      }
     }
     .blockLigne {
       padding-left: 0;
@@ -107,26 +141,26 @@
         margin-bottom: 1rem;
       }
     }
-    h4 {
-      @include lato-bold-16;
-      line-height: 17px;
-      text-transform: uppercase;
-      color: $grey-3;
-      display: flex;
-      align-items: center;
-      margin-top: 0;
-      margin-bottom: 9px;
-    }
-    .nbResult {
-      @include lato-regular-14;
-      line-height: 16px;
-      color: $grey-3;
-      padding-top: 3px;
-    }
     label {
       @include lato-regular-16;
       color: $grey-1;
     }
+
+    .arrow {
+      cursor: pointer;
+      margin-left: auto;
+      background-color: transparent;
+      border-bottom: 1px solid black;
+      border-right: 1px solid black;
+      transform: translateY(-25%) rotate(45deg);
+      height: 7px;
+      width: 7px;
+      transition: all 300ms ease;
+      margin-top: -5px;
+    }
+    .toggled {
+      transform: translateY(25%) rotate(-135deg);
+    }
   }
   .footer {
     box-sizing: border-box;
diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.ts b/src/app/structure-list/components/modal-filter/modal-filter.component.ts
index e864e709f..ae94ead36 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.ts
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.ts
@@ -1,4 +1,5 @@
 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
+import { map } from 'leaflet';
 import { TypeModal } from '../../enum/typeModal.enum';
 import { Category } from '../../models/category.model';
 import { Module } from '../../models/module.model';
@@ -18,9 +19,10 @@ export class ModalFilterComponent implements OnInit {
   @Output() closeEvent = new EventEmitter();
   // Checkbox variable
   public checkedModules: Module[] = [];
+  public toggledCategories: string[] = [];
   ngOnInit(): void {
     // Manage checkbox
-    this.checkedModules = this.modules.slice();
+    // this.checkedModules = this.modules.slice();
   }
 
   // Management of the checkbox event (Check / Uncheck)
@@ -73,4 +75,42 @@ export class ModalFilterComponent implements OnInit {
   public closeModal(): void {
     this.closeEvent.emit();
   }
+
+  public handleCategoryCheckBox(event, category: Category): void {
+    const modules = this.categories.filter((c: Category) => c.id === category.id)[0].modules;
+    if (event.target.checked) {
+      for (const module of modules) {
+        if (this.searchService.getIndex(this.checkedModules, module.id, category.id) === -1) {
+          this.checkedModules.push(new Module(module.id, category.id));
+        }
+      }
+    } else {
+      for (const module of modules) {
+        if (this.searchService.getIndex(this.checkedModules, module.id, category.id) > -1) {
+          this.checkedModules.splice(this.searchService.getIndex(this.checkedModules, module.id, category.id), 1);
+        }
+      }
+    }
+  }
+
+  public toggleShowCategory(categoryId: string) {
+    if (this.toggledCategories.includes(categoryId)) {
+      const index = this.toggledCategories.indexOf(categoryId);
+      this.toggledCategories.splice(index);
+    } else {
+      this.toggledCategories.push(categoryId);
+    }
+  }
+
+  public getCategoryCheckboxStatus(c: Category): string {
+    const test = this.checkedModules.filter((m) => m.text === c.id);
+
+    if (test.length === c.modules.length) {
+      return 'checked';
+    } else if (test.length === 0) {
+      return 'unchecked';
+    } else if (test.length && test.length > 0) {
+      return 'halfChecked';
+    }
+  }
 }
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
index 8321c81ca..cf4a53d2a 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
@@ -58,7 +58,7 @@
           fxLayout="row"
           [ngClass]="{
             selected: modalTypeOpened === TypeModal.public,
-            containCheckedFilters: numberTrainingChecked
+            containCheckedFilters: numberPublicChecked
           }"
           fxLayoutAlign="space-between center"
           (click)="openModal(TypeModal.public)"
@@ -72,7 +72,7 @@
           fxLayout="row"
           [ngClass]="{
             selected: modalTypeOpened === TypeModal.equipments,
-            containCheckedFilters: numberTrainingChecked
+            containCheckedFilters: numberEquipmentChecked
           }"
           fxLayoutAlign="space-between center"
           (click)="openModal(TypeModal.equipments)"
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss b/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
index 0d3f45706..02ad8a12a 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
@@ -55,6 +55,7 @@
       margin: 0 5px 0 10px;
       height: 7px;
       width: 7px;
+      transition: all 300ms ease;
     }
     &:focus {
       border-color: $blue-middle;
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
index 66483fa11..e5426be93 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
@@ -58,7 +58,6 @@ export class StructureListSearchComponent implements OnInit {
     });
   }
   ngOnInit(): void {
-    console.log('output', this.searchEvent);
     // Will store the different categories
     this.queryString = this.activatedRoute.snapshot.queryParamMap.get('search');
     this.categories = [];
diff --git a/src/styles.scss b/src/styles.scss
index fd88f2394..2941d3d94 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -172,6 +172,8 @@ button {
     display: inline-grid;
     width: 18px;
     height: 18px;
+    min-width: 18px;
+    min-height: 18px;
     background-color: $white;
     border: 1px solid $grey;
     cursor: pointer;
-- 
GitLab


From d2c21ea2cecaa3541c1611891122969bd6afeb11 Mon Sep 17 00:00:00 2001
From: "guilhem.carron" <gcarron@grandlyon.com>
Date: Mon, 14 Mar 2022 15:18:09 +0100
Subject: [PATCH 17/40] fix merge

---
 src/app/shared/components/button/button.component.html     | 4 ++--
 src/app/shared/components/button/buttonType.enum.ts        | 2 ++
 .../components/modal-filter/modal-filter.component.html    | 6 +++++-
 .../structure-list-search.component.html                   | 7 ++++++-
 .../structure-list-search.component.ts                     | 2 ++
 5 files changed, 17 insertions(+), 4 deletions(-)

diff --git a/src/app/shared/components/button/button.component.html b/src/app/shared/components/button/button.component.html
index bf7778fdd..13c176a70 100644
--- a/src/app/shared/components/button/button.component.html
+++ b/src/app/shared/components/button/button.component.html
@@ -28,7 +28,7 @@
   </button>
 </ng-container>
 
-<ng-container *ngIf="style === 'searchIcon'">
+<ng-container *ngIf="style === buttonTypeEnum.searchIcon">
   <button class="searchIcon" type="{{ type }}" (click)="doAction()">
     <div fxLayout="row center" class="searchIcon withIcon" fxLayoutAlign="space-between center">
       <app-svg-icon [type]="'ico'" [icon]="iconBtn" [iconColor]="'currentColor'" [iconClass]="'icon30'"></app-svg-icon>
@@ -66,7 +66,7 @@
   </button>
 </ng-container>
 
-<ng-container *ngIf="style === 'modal-primary'">
+<ng-container *ngIf="style === buttonTypeEnum.modalPrimary">
   <button
     class="btn-regular modal-primary"
     type="{{ type }}"
diff --git a/src/app/shared/components/button/buttonType.enum.ts b/src/app/shared/components/button/buttonType.enum.ts
index bfff9b13a..3b6fdce1c 100644
--- a/src/app/shared/components/button/buttonType.enum.ts
+++ b/src/app/shared/components/button/buttonType.enum.ts
@@ -6,4 +6,6 @@ export enum ButtonType {
   ButtonPhone,
   Filter,
   IconOnly,
+  searchIcon,
+  modalPrimary,
 }
diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.html b/src/app/structure-list/components/modal-filter/modal-filter.component.html
index 1ab7a02ea..0bff4b4f2 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.html
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.html
@@ -78,7 +78,11 @@
     <div class="footer" fxLayout="row" fxLayoutAlign="center center">
       <a class="reset" (click)="clearFilters()" tabindex="0">Effacer</a>
       <div class="half-width">
-        <app-button [style]="'modal-primary'" [text]="'Appliquer'" (click)="emitModules(checkedModules)"></app-button>
+        <app-button
+          [style]="buttonTypeEnum.modalPrimary"
+          [text]="'Appliquer'"
+          (click)="emitModules(checkedModules)"
+        ></app-button>
       </div>
     </div>
   </div>
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
index cf4a53d2a..fbf71e687 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
@@ -19,7 +19,12 @@
           <div class="ico-close-search"></div>
         </button>
         <span *ngIf="this.searchForm.get('searchTerm').value?.length > 0" class="separation"></span>
-        <app-button class="isntPhoneContent" [style]="'searchIcon'" [iconBtn]="'search'" [type]="'submit'"></app-button>
+        <app-button
+          class="isntPhoneContent"
+          [style]="buttonTypeEnum.searchIcon"
+          [iconBtn]="'search'"
+          [type]="'submit'"
+        ></app-button>
       </div>
     </form>
     <div (clickOutside)="closeModal()">
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
index e5426be93..6ea9898bc 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
@@ -10,6 +10,7 @@ import { StructureCounter } from '../../models/structureCounter.model';
 import { SearchService } from '../../services/search.service';
 import { Location } from '@angular/common';
 import { ActivatedRoute, Router } from '@angular/router';
+import { ButtonType } from '../../../shared/components/button/buttonType.enum';
 
 @Component({
   selector: 'app-structure-list-search',
@@ -23,6 +24,7 @@ export class StructureListSearchComponent implements OnInit {
   @Output() locationTrigger: EventEmitter<boolean> = new EventEmitter<boolean>();
   // Show/hide form createStructure
   public addStructureFormModal = false;
+  public buttonTypeEnum = ButtonType;
 
   // Form search input
   public searchForm: FormGroup;
-- 
GitLab


From 29998e878b0ae0e0167a763c4a7add80ac04a308 Mon Sep 17 00:00:00 2001
From: Marlene Simondant <msimondant@grandlyon.com>
Date: Mon, 14 Mar 2022 16:39:51 +0100
Subject: [PATCH 18/40] feat(carto): structure details new design

---
 .../structure-detail-print.component.html     |   4 +-
 .../structure-detail-print.component.scss     |   8 +-
 .../structure-list-print.component.scss       |   2 +-
 .../orientation-form.component.scss           |   4 +-
 .../logo-card/logo-card.component.html        |   2 +-
 .../logo-card/logo-card.component.scss        |  15 +-
 .../svg-icon/svg-icon.component.scss          |   4 +
 .../structure-details.component.html          | 689 +++++++++---------
 .../structure-details.component.scss          |  57 +-
 .../structure-details.component.ts            |  10 -
 src/assets/ico/sprite.svg                     |  63 +-
 src/assets/logos/accompagnantCaf.svg          |  86 +--
 src/assets/logos/aidantsConnect.svg           |  36 +-
 src/assets/logos/cpam.svg                     | 118 +--
 src/assets/logos/impots.svg                   |  10 +-
 src/assets/logos/logement.svg                 |  33 +-
 src/assets/logos/passNumerique.svg            |  96 +--
 src/assets/logos/poleEmploi.svg               |  62 +-
 src/assets/scss/_icons.scss                   |  15 +-
 19 files changed, 673 insertions(+), 641 deletions(-)

diff --git a/src/app/form/orientation-form/component/structure-detail-print/structure-detail-print.component.html b/src/app/form/orientation-form/component/structure-detail-print/structure-detail-print.component.html
index 1a4934a37..5f2a0d047 100644
--- a/src/app/form/orientation-form/component/structure-detail-print/structure-detail-print.component.html
+++ b/src/app/form/orientation-form/component/structure-detail-print/structure-detail-print.component.html
@@ -1,4 +1,4 @@
-<div class="structrue-details-container" *ngIf="structure">
+<div class="structure-details-container" *ngIf="structure">
   <!-- Header info -->
   <div fxLayout="row" class="structure-details-block" fxLayoutAlign="baseline baseline" fxLayoutGap="8px">
     <div fxLayout="column" fxLayoutGap="10px" fxFlex="100%">
@@ -62,7 +62,7 @@
       <div *ngIf="structure.accessModality.length > 0" fxFlex="40%">
         <h3 class="subtitle">Accès</h3>
         <div fxLayout="column">
-          <div *ngFor="let tclStop of tclStopPoints">
+          <div *ngFor="let tclStop of tclStopPoints | slice: 0:3">
             <div fxLayout="row wrap" fxLayoutGap="5px">
               <p>{{ tclStop.name }}:</p>
               <p *ngIf="tclStop.subLines.length > 0">Métro</p>
diff --git a/src/app/form/orientation-form/component/structure-detail-print/structure-detail-print.component.scss b/src/app/form/orientation-form/component/structure-detail-print/structure-detail-print.component.scss
index 1192428a5..6ef491c4a 100644
--- a/src/app/form/orientation-form/component/structure-detail-print/structure-detail-print.component.scss
+++ b/src/app/form/orientation-form/component/structure-detail-print/structure-detail-print.component.scss
@@ -10,7 +10,7 @@ a {
   padding: unset;
 }
 
-.structrue-details-container {
+.structure-details-container {
   max-width: 980px;
   width: 64%;
   margin-top: 1%;
@@ -28,7 +28,7 @@ a {
   }
 }
 
-.structrue-details-container > .structure-details-block {
+.structure-details-container > .structure-details-block {
   .subtitle {
     text-transform: uppercase;
     @include lato-bold-16;
@@ -37,7 +37,7 @@ a {
   }
 }
 
-.structrue-details-container > .structure-details-block ~ .structure-details-block {
+.structure-details-container > .structure-details-block ~ .structure-details-block {
   padding: 24px 0;
 }
 
@@ -89,7 +89,7 @@ p,
 }
 
 @media print {
-  .structrue-details-container {
+  .structure-details-container {
     background-color: unset;
     z-index: unset;
     position: unset;
diff --git a/src/app/form/orientation-form/component/structure-list-print/structure-list-print.component.scss b/src/app/form/orientation-form/component/structure-list-print/structure-list-print.component.scss
index 15f013edc..c4dbabbea 100644
--- a/src/app/form/orientation-form/component/structure-list-print/structure-list-print.component.scss
+++ b/src/app/form/orientation-form/component/structure-list-print/structure-list-print.component.scss
@@ -12,7 +12,7 @@
     background-color: $grey-8;
   }
   ::ng-deep {
-    .structrue-details-container {
+    .structure-details-container {
       margin-top: 2%;
       margin-left: 34%;
       height: 98%;
diff --git a/src/app/form/orientation-form/orientation-form.component.scss b/src/app/form/orientation-form/orientation-form.component.scss
index fd49901b4..a172f4b9c 100644
--- a/src/app/form/orientation-form/orientation-form.component.scss
+++ b/src/app/form/orientation-form/orientation-form.component.scss
@@ -274,14 +274,14 @@ input {
 }
 
 .print-structure-container {
-  ::ng-deep .structrue-details-container {
+  ::ng-deep .structure-details-container {
     border-bottom: solid 1px $grey-3;
     margin-bottom: 4%;
   }
 }
 
 .print-structure-container:last-child {
-  ::ng-deep .structrue-details-container {
+  ::ng-deep .structure-details-container {
     border-bottom: none;
   }
 }
diff --git a/src/app/shared/components/logo-card/logo-card.component.html b/src/app/shared/components/logo-card/logo-card.component.html
index 16f8be1cd..651abe1aa 100644
--- a/src/app/shared/components/logo-card/logo-card.component.html
+++ b/src/app/shared/components/logo-card/logo-card.component.html
@@ -1,4 +1,4 @@
-<div fxLayout="column" fxLayoutAlign="center center" *ngIf="name">
+<div fxLayout="row" fxLayoutAlign="start center" *ngIf="name">
   <img [src]="'assets/logos/' + name + '.svg'" [alt]="'logo ' + name" />
   <p>{{ getName(name) }}</p>
 </div>
diff --git a/src/app/shared/components/logo-card/logo-card.component.scss b/src/app/shared/components/logo-card/logo-card.component.scss
index c14c41ccb..d0b199e61 100644
--- a/src/app/shared/components/logo-card/logo-card.component.scss
+++ b/src/app/shared/components/logo-card/logo-card.component.scss
@@ -2,21 +2,16 @@
 @import '../../../../assets/scss/color';
 
 img {
-  margin-bottom: 10px;
+  margin: 0 10px;
+  width: 40px;
 }
 
 p {
-  @include lato-bold-18;
+  @include lato-regular-16;
   margin: 0;
 }
 
 div {
-  border: 1px solid $grey-4;
-  box-sizing: border-box;
-  border-radius: 16px;
-  margin-bottom: 24px;
-  padding: 16px 25px;
-  max-width: 185px;
-  height: 135px;
-  text-align: center;
+  padding: 16px 35px 16px 0;
+  width: 250px;
 }
diff --git a/src/app/shared/components/svg-icon/svg-icon.component.scss b/src/app/shared/components/svg-icon/svg-icon.component.scss
index 0ce39a373..7f4cd3de3 100644
--- a/src/app/shared/components/svg-icon/svg-icon.component.scss
+++ b/src/app/shared/components/svg-icon/svg-icon.component.scss
@@ -11,6 +11,10 @@
     width: 28px;
     height: 28px;
   }
+  &.icon-30 {
+    width: 30px;
+    height: 30px;
+  }
   &.icon-32 {
     width: 2em;
   }
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 51b6bdd20..afcbc0bde 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
@@ -1,393 +1,394 @@
-<div class="structrue-details-container" *ngIf="structure && !isLoading">
+<div class="structure-details-container" *ngIf="structure && !isLoading">
   <!-- Header info -->
   <div fxLayout="space-between wrap-reverse" class="sticky-title">
-    <div fxLayout="column" class="no-margin" fxLayoutAlign="end end">
+    <div fxLayout="column" class="no-margin" fxLayoutAlign="center center">
       <h2 class="bold">{{ structure.structureName }}</h2>
     </div>
-    <div fxLayout="column" fxLayoutAlign="end start" class="ico-close">
+    <div fxLayout="column" fxLayoutAlign="center center" class="ico-close">
       <div (click)="close()" class="ico-close-details"></div>
     </div>
   </div>
-  <div fxLayout="row" class="structure-details-block" fxLayoutAlign="baseline baseline" fxLayoutGap="8px">
-    <div fxLayout="column" fxLayoutGap="10px" fxFlex="100%">
-      <div fxLayout="row" fxLayoutAlign="space-between center">
-        <div class="typeInformationHeader" fxLayout="column">
-          <h3>{{ structure.getLabelTypeStructure() }}</h3>
-          <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="7px" *ngIf="structure.hasEquipments()">
-            <div></div>
-            <app-svg-icon
-              *ngFor="let equipement of filterOnlyEquipments(structure.equipmentsAndServices)"
-              [type]="'ico'"
-              [iconColor]="'currentColor'"
-              [icon]="structure.getEquipmentsIcon(equipement)"
-              [title]="getEquipmentsLabel(equipement)"
-            ></app-svg-icon>
-          </div>
-        </div>
-        <div class="printButton" fxLayout="column" fxLayoutAlign="end">
-          <app-button
-            class="hide-on-print"
-            [type]="'button'"
-            [style]="'regular'"
-            [text]="'Imprimer'"
-            [iconBtn]="'print'"
-            (action)="print()"
-          ></app-button>
-        </div>
-      </div>
-      <div fxLayout="row" class="mobile-column">
-        <div fxLayout="column" fxFlex="50%">
-          <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="13px">
-            <app-structure-opening-status
-              class="hide-on-print"
-              [structure]="structure"
-              [isCalledByDetails]="true"
-              [title]="'Horaire d\'ouverture'"
-            ></app-structure-opening-status>
-          </div>
-          <div *ngIf="structure.address" fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="13px">
-            <app-svg-icon [type]="'ico'" [icon]="'adress'" [title]="'Adresse'"></app-svg-icon>
-            <p>{{ structure.address.numero }} {{ structure.address.street }}, {{ structure.address.commune }}</p>
-          </div>
-          <div *ngIf="structure.website" fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="13px">
-            <app-svg-icon [type]="'ico'" [icon]="'web'" [title]="'Site web'"></app-svg-icon>
-            <a
-              target="_blank"
-              class="custom-link"
-              rel="noopener noreferrer"
-              [href]="structure.website.includes('http') ? structure.website : 'http://' + structure.website"
-              >{{ structure.website | url }}</a
-            >
-          </div>
-          <div *ngIf="structure.hasSocialNetwork()" fxLayout="row" fxLayoutAlign="none baseline" fxLayoutGap="13px">
-            <app-svg-icon [type]="'ico'" [icon]="'network'"></app-svg-icon>
-            <div fxLayout="row" fxLayoutAlign="none baseline" fxLayoutGap="8px">
-              <a
-                *ngIf="structure.facebook"
-                target="_blank"
-                class="custom-link"
-                rel="noopener noreferrer"
-                [href]="'http://' + structure.facebook"
-              >
-                <app-svg-icon [type]="'ico'" [icon]="'facebook'" [title]="'Facebook'"></app-svg-icon
-              ></a>
-              <a
-                *ngIf="structure.twitter"
-                target="_blank"
-                class="custom-link"
-                rel="noopener noreferrer"
-                [href]="'http://' + structure.twitter"
-              >
-                <app-svg-icon [type]="'ico'" [icon]="'twitter'" [title]="'Twitter'"></app-svg-icon
-              ></a>
-              <a
-                *ngIf="structure.instagram"
-                target="_blank"
-                class="custom-link"
-                rel="noopener noreferrer"
-                [href]="'http://' + structure.instagram"
-              >
-                <app-svg-icon [type]="'ico'" [icon]="'instagram'" [title]="'Instagram'"></app-svg-icon
-              ></a>
-              <a
-                *ngIf="structure.linkedin"
-                target="_blank"
-                class="custom-link"
-                rel="noopener noreferrer"
-                [href]="'http://' + structure.linkedin"
-              >
-                <app-svg-icon [type]="'ico'" [icon]="'linkedin'" [title]="'Linkedin'"></app-svg-icon
-              ></a>
+
+  <div class="buttons hide-on-print" fxLayout="row" fxLayoutAlign="space-between wrap">
+    <!-- Voir le conseiller numérique -->
+    <div class="clickableDiv" role="button" fxLayout="column">
+      <app-svg-icon
+        [type]="'ico'"
+        [icon]="'advisor'"
+        [iconClass]="'icon-32'"
+        fxLayoutAlign="space-evenly"
+      ></app-svg-icon>
+      Voir le conseiller numérique
+    </div>
+    <!-- Voir le site -->
+    <div class="clickableDiv" role="button" fxLayout="column">
+      <app-svg-icon [type]="'ico'" [icon]="'web'" [iconClass]="'icon-32'" fxLayoutAlign="space-evenly"></app-svg-icon>
+      Voir le site
+    </div>
+    <!-- Voir la plaquette -->
+    <div class="clickableDiv" role="button" fxLayout="column">
+      <app-svg-icon [type]="'ico'" [icon]="'docs'" [iconClass]="'icon-32'"></app-svg-icon>
+      Voir la plaquette
+    </div>
+    <!-- Imprimer -->
+    <div class="clickableDiv" role="button" class="printButton" class="hide-on-print" (action)="print()">
+      <app-svg-icon [type]="'ico'" [icon]="'printStructure'" [iconClass]="'icon-32'"></app-svg-icon>
+      Imprimer
+    </div>
+    <!-- Signaler une erreur -->
+    <div
+      class="clickableDiv"
+      role="button"
+      fxLayout="column"
+      fxLayoutAlign="space-between center"
+      (click)="displayModalError()"
+      tabindex="0"
+    >
+      <app-svg-icon [type]="'ico'" [icon]="'watch'" [iconClass]="'icon-32'"></app-svg-icon>
+      Signaler une erreur
+    </div>
+    <!-- Je travaille ici -->
+    <div class="clickableDiv" role="button" fxLayout="column" *ngIf="displayJoin()" (click)="handleJoin()" tabindex="0">
+      <app-svg-icon [type]="'ico'" [icon]="'workhere'" [iconClass]="'icon-32'"></app-svg-icon>
+      Je travaille ici
+    </div>
+  </div>
+
+  <div class="structure-details-content">
+    <div fxLayout="row" class="structure-details-block" fxLayoutAlign="baseline baseline" fxLayoutGap="8px">
+      <div fxLayout="column" fxLayoutGap="10px" fxFlex="100%">
+        <div fxLayout="row" fxLayoutAlign="space-between center">
+          <!-- ADMIN (suppr?)-->
+          <div *ngIf="profileService.isAdmin()" class="hide-on-print">
+            Administrateur(s) de cette structure:
+            <div *ngIf="structureAdmins.length === 0">Aucun administrateur</div>
+            <div *ngIf="structureAdmins.length > 0">
+              <div *ngFor="let structureAdmin of structureAdmins">
+                {{ structureAdmin.email }}
+              </div>
             </div>
           </div>
-          <div *ngIf="structure.contactPhone" fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="13px">
-            <app-svg-icon [type]="'ico'" [icon]="'tel'" [title]="'Téléphone'"></app-svg-icon>
-            <p>{{ structure.contactPhone | phone }}</p>
-          </div>
         </div>
-        <div fxLayout="column" fxFlex="50%">
-          <div
-            *ngIf="structure.contactMail && structure.contactMail !== 'unknown@unknown.com'"
-            fxLayout="row"
-            fxLayoutAlign="none center"
-            fxLayoutGap="13px"
-          >
-            <app-svg-icon [type]="'ico'" [iconClass]="'grey-1'" [icon]="'email'" [title]="'Email'"></app-svg-icon>
-            <p>{{ structure.contactMail }}</p>
-          </div>
-          <div *ngIf="structure.hasPassNumeric()" fxLayout="row" fxLayoutAlign="none center" fxLayoutGap="13px">
-            <app-svg-icon [type]="'ico'" [icon]="'pass'" [title]="'Pass numérique'"></app-svg-icon>
-            <p>agréé Pass Numérique</p>
-          </div>
-          <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="13px">
-            <app-svg-icon [type]="'ico'" [icon]="'calendar'"></app-svg-icon>
-            <p>Mise à jour le {{ structure.updatedAt | date: 'mediumDate' }}</p>
+
+        <!-- Informations-->
+        <div fxLayout="row" class="mobile-column">
+          <div fxLayout="column">
+            <h2>Informations</h2>
+            <div class="info-block">
+              <div fxLayout="row">
+                {{ structure.structureName }}
+              </div>
+              <div *ngIf="structure.address" fxLayout="row">
+                {{ structure.address.numero }} {{ structure.address.street }}, {{ structure.address.commune }}
+              </div>
+              <div *ngIf="structure.contactPhone" fxLayout="row">
+                {{ structure.contactPhone | phone }}
+              </div>
+              <div *ngIf="structure.contactMail && structure.contactMail !== 'unknown@unknown.com'" fxLayout="row">
+                {{ structure.contactMail }}
+              </div>
+            </div>
+
+            <!-- Social networks-->
+            <div *ngIf="structure.hasSocialNetwork()" fxLayout="row" fxLayoutAlign="none baseline" fxLayoutGap="13px">
+              <div fxLayout="row" fxLayoutAlign="none baseline" fxLayoutGap="8px">
+                <a
+                  *ngIf="structure.facebook"
+                  target="_blank"
+                  class="custom-link"
+                  rel="noopener noreferrer"
+                  [href]="'http://' + structure.facebook"
+                >
+                  <app-svg-icon
+                    [type]="'ico'"
+                    [icon]="'facebook'"
+                    [title]="'Facebook'"
+                    [iconClass]="'icon-30'"
+                  ></app-svg-icon
+                ></a>
+                <a
+                  *ngIf="structure.twitter"
+                  target="_blank"
+                  class="custom-link"
+                  rel="noopener noreferrer"
+                  [href]="'http://' + structure.twitter"
+                >
+                  <app-svg-icon
+                    [type]="'ico'"
+                    [icon]="'twitter'"
+                    [title]="'Twitter'"
+                    [iconClass]="'icon-30'"
+                  ></app-svg-icon
+                ></a>
+                <a
+                  *ngIf="structure.instagram"
+                  target="_blank"
+                  class="custom-link"
+                  rel="noopener noreferrer"
+                  [href]="'http://' + structure.instagram"
+                >
+                  <app-svg-icon
+                    [type]="'ico'"
+                    [icon]="'instagram'"
+                    [title]="'Instagram'"
+                    [iconClass]="'icon-30'"
+                  ></app-svg-icon
+                ></a>
+                <a
+                  *ngIf="structure.linkedin"
+                  target="_blank"
+                  class="custom-link"
+                  rel="noopener noreferrer"
+                  [href]="'http://' + structure.linkedin"
+                >
+                  <app-svg-icon
+                    [type]="'ico'"
+                    [icon]="'linkedin'"
+                    [title]="'Linkedin'"
+                    [iconClass]="'icon-30'"
+                  ></app-svg-icon
+                ></a>
+              </div>
+            </div>
           </div>
         </div>
-      </div>
-      <div *ngIf="profileService.isAdmin()" class="hide-on-print">
-        Administrateur(s) de cette structure:
-        <div *ngIf="structureAdmins.length === 0">Aucun administrateur</div>
-        <div *ngIf="structureAdmins.length > 0">
-          <div *ngFor="let structureAdmin of structureAdmins">
-            {{ structureAdmin.email }}
-          </div>
+
+        <div class="description">{{ structure.description }}</div>
+        <div class="info">
+          {{ structure.lockdownActivity }}
         </div>
       </div>
-      <div fxLayout="row" fxLayoutAlign="center center" class="hide-on-print">
-        <a *ngIf="!isClaimed" (click)="handleClaim()" class="primary" tabindex="0">Revendiquer cette structure</a>
-        <a *ngIf="displayJoin()" (click)="handleJoin()" class="primary" tabindex="0">Rejoindre cette structure</a>
-        <a
-          *ngIf="!profileService.isLinkedToStructure(structure._id) && !profileService.isAdmin()"
-          (click)="displayModalError()"
-          class="primary"
-          tabindex="0"
-        >
-          Signaler une erreur
-        </a>
-        <!-- temporary remove edit -->
-        <a
-          *ngIf="profileService.isLinkedToStructure(structure._id) || profileService.isAdmin()"
-          [routerLink]="['/create-structure', structure._id]"
-          class="primary"
-          tabindex="0"
-        >
-          Modifier cette structure
-        </a>
-        <a *ngIf="canDelete()" (click)="toggleDeleteModal()" class="primary" tabindex="0">
-          Supprimer cette structure
-        </a>
-      </div>
-      <div class="description">{{ structure.description }}</div>
-      <div class="info">
-        {{ structure.lockdownActivity }}
-      </div>
     </div>
-  </div>
-  <!-- Accueil -->
-  <div
-    *ngIf="structure.accessModality.length > 0 || structure.hours.hasData() || structure.remoteAccompaniment"
-    fxLayout="column"
-    class="structure-details-block"
-    fxLayoutAlign="baseline baseline"
-    fxLayoutGap="20px"
-  >
-    <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-      <app-svg-icon [type]="'ico'" [icon]="'accueil'" [iconClass]="'icon-32'"></app-svg-icon>
-      <h2>Accueil</h2>
-    </div>
-    <!-- Opening Hours -->
-    <div fxLayout="row" class="w-100 mobile-column">
-      <div *ngIf="structure.hours.hasData()" fxFlex="50%">
-        <h3 class="subtitle">Horaires d’ouverture au public</h3>
-        <div fxLayout="column">
-          <div *ngFor="let day of structure.hours | keyvalue: keepOriginalOrder">
-            <div *ngIf="day.value.open">
-              <h4>{{ day.key | day }}</h4>
-              <div class="opening-time" fxLayout="row" fxLayoutAlign="none flex-end">
-                <div *ngFor="let timeRange of day.value.time; let isFirst = first">
-                  <p *ngIf="isFirst && timeRange.opening">
-                    de {{ timeRange.formatOpeningDate() }} à {{ timeRange.formatClosingDate() }}
-                  </p>
-                  <p *ngIf="!isFirst && timeRange.opening">
-                    et de {{ timeRange.formatOpeningDate() }} à {{ timeRange.formatClosingDate() }}
-                  </p>
+
+    <div
+      *ngIf="structure.accessModality.length > 0 || structure.hours.hasData() || structure.remoteAccompaniment"
+      fxLayout="column"
+      class="structure-details-block"
+      fxLayoutAlign="baseline baseline"
+      fxLayoutGap="20px"
+    >
+      <!-- Opening Hours -->
+      <div fxLayout="row" class="w-100 mobile-column">
+        <div *ngIf="structure.hours.hasData()" fxFlex="50%">
+          <h2>Horaires d’ouverture</h2>
+          <div fxLayout="column" class="opening-hours">
+            <div *ngFor="let day of structure.hours | keyvalue: keepOriginalOrder" fxLayout="row">
+              <div *ngIf="day.value.open" fxLayout="row">
+                <h4 class="day">{{ day.key | day }}</h4>
+                <div class="opening-time" fxLayout="column" fxLayoutAlign="none flex-start">
+                  <div *ngFor="let timeRange of day.value.time; let isFirst = first">
+                    <p *ngIf="isFirst && timeRange.opening">
+                      {{ timeRange.formatOpeningDate() }} à {{ timeRange.formatClosingDate() }}
+                    </p>
+                    <p *ngIf="!isFirst && timeRange.opening">
+                      {{ timeRange.formatOpeningDate() }} à {{ timeRange.formatClosingDate() }}
+                    </p>
+                  </div>
                 </div>
               </div>
             </div>
           </div>
         </div>
-      </div>
-      <!-- accessModality -->
-      <div *ngIf="structure.accessModality.length > 0" fxFlex="50%">
-        <h3 class="subtitle">Accès</h3>
-        <div fxLayout="column" fxLayoutGap="10px">
-          <div fxLayout="column" fxLayoutGap="8px">
+
+        <!-- services -->
+        <div *ngIf="structure.accessModality.length > 0" fxFlex="50%">
+          <h2>Services</h2>
+          <div fxLayout="column" fxLayoutGap="10px" class="listItems">
+            <div fxLayout="column" fxLayoutGap="8px">
+              <div
+                fxLayout="row"
+                fxLayoutAlign="none flex-end"
+                fxLayoutGap="8px"
+                *ngFor="let acces of structure.accessModality"
+              >
+                <p>{{ getAccessLabel(acces) }}</p>
+              </div>
+              <p *ngIf="structure.pmrAccess">Accessible aux personnes à mobilité réduite</p>
+            </div>
             <div
+              *ngFor="let public of structure.publics"
               fxLayout="row"
               fxLayoutAlign="none flex-end"
               fxLayoutGap="8px"
-              *ngFor="let acces of structure.accessModality"
             >
-              <p class="no-margin">{{ getAccessLabel(acces) }}</p>
+              <p>{{ getPublicLabel(public) }}</p>
+            </div>
+            <div
+              *ngFor="let accompaniment of structure.publicsAccompaniment"
+              fxLayout="row"
+              fxLayoutAlign="none flex-end"
+              fxLayoutGap="8px"
+            >
+              <p>{{ accompaniment }}</p>
             </div>
-            <p *ngIf="structure.pmrAccess" class="no-margin">Accessible aux personnes à mobilité réduite</p>
-          </div>
-          <div *ngFor="let public of structure.publics" fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-            <p class="no-margin">{{ getPublicLabel(public) }}</p>
-          </div>
-          <div
-            *ngFor="let accompaniment of structure.publicsAccompaniment"
-            fxLayout="row"
-            fxLayoutAlign="none flex-end"
-            fxLayoutGap="8px"
-          >
-            <p class="no-margin">{{ accompaniment }}</p>
           </div>
         </div>
       </div>
+      <div *ngIf="structure.exceptionalClosures" class="bold-info">
+        <h3 class="subtitle">Précisions sur les horaires</h3>
+        <p class="description">{{ structure.exceptionalClosures }}</p>
+      </div>
+      <div *ngIf="structure.remoteAccompaniment" class="bold-info">
+        <h3>Cette structure propose un accompagnement à distance.</h3>
+      </div>
     </div>
-    <div *ngIf="structure.exceptionalClosures" class="bold-info">
-      <h3 class="subtitle">Précisions sur les horaires</h3>
-      <p>{{ structure.exceptionalClosures }}</p>
-    </div>
-    <div *ngIf="structure.remoteAccompaniment" class="bold-info">
-      <h3>Cette structure propose un accompagnement à distance.</h3>
-    </div>
-  </div>
-  <!-- Démarches en ligne -->
-  <div
-    *ngIf="structure.proceduresAccompaniment.length || structure.otherDescription"
-    fxLayout="column"
-    class="structure-details-block"
-    fxLayoutAlign="baseline baseline"
-    fxLayoutGap="20px"
-  >
-    <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-      <app-svg-icon [type]="'ico'" [icon]="'demarches'" [iconClass]="'icon-32'"></app-svg-icon>
-      <h2 *ngIf="multipleAccompaniment()">Démarches en ligne</h2>
-      <h2 *ngIf="!multipleAccompaniment()">Démarche en ligne</h2>
-    </div>
-    <div fxLayout="column">
-      <div fxLayout="row wrap" fxLayoutGap="24px">
-        <div *ngFor="let accompagnement of structure.proceduresAccompaniment">
-          <app-logo-card *ngIf="accompagnement != 'autres'" [name]="accompagnement"></app-logo-card>
+
+    <!-- Aides numérique -->
+    <div
+      *ngIf="structure.proceduresAccompaniment.length || structure.otherDescription"
+      fxLayout="column"
+      class="structure-details-block"
+      fxLayoutAlign="baseline baseline"
+      fxLayoutGap="20px"
+    >
+      <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
+        <h2>Aide numérique</h2>
+      </div>
+      <div fxLayout="column">
+        <div fxLayout="row wrap" fxLayoutGap="24px">
+          <div *ngFor="let accompagnement of structure.proceduresAccompaniment">
+            <app-logo-card *ngIf="accompagnement != 'autres'" [name]="accompagnement"></app-logo-card>
+          </div>
         </div>
+        <p *ngIf="structure.otherDescription" fxLayout="column">
+          {{ structure.otherDescription }}
+        </p>
       </div>
-      <p *ngIf="structure.otherDescription">
-        {{ structure.otherDescription }}
-      </p>
-    </div>
-  </div>
-  <!-- Ateliers -->
-  <div
-    *ngIf="isBaseSkills() || isAccessRights() || isParentingHelp() || isSocialAndProfessional() || isDigitalSecurity()"
-    fxLayout="column"
-    class="structure-details-block"
-    fxLayoutAlign="baseline baseline"
-    fxLayoutGap="20px"
-  >
-    <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-      <app-svg-icon [type]="'ico'" [icon]="'services'" [iconClass]="'icon-32'"></app-svg-icon>
-      <h2 *ngIf="multipleWorkshop()">Ateliers</h2>
-      <h2 *ngIf="!multipleWorkshop()">Atelier</h2>
-    </div>
-    <div *ngIf="structure.freeWorkShop">
-      <span *ngIf="multipleWorkshop()" class="bold-info">L'accès à ces ateliers est gratuit</span>
-      <span *ngIf="!multipleWorkshop()" class="bold-info">L'accès à cet atelier est gratuit</span>
     </div>
-    <div *ngIf="!structure.freeWorkShop">
-      <span *ngIf="multipleWorkshop()" class="bold-info">L'accès à ces ateliers est payant</span>
-      <span *ngIf="!multipleWorkshop()" class="bold-info">L'accès à cet atelier est payant</span>
-    </div>
-    <div class="wrapper">
-      <div *ngIf="isBaseSkills()">
-        <h3 class="subtitle">Compétences de base</h3>
-        <p *ngFor="let skill of baseSkills">{{ skill.text }}</p>
-      </div>
-      <div *ngIf="isAccessRights()">
-        <h3 class="subtitle">Accès aux droits</h3>
-        <p *ngFor="let rights of accessRights">{{ rights.text }}</p>
+
+    <!-- Formation -->
+    <div
+      *ngIf="
+        isBaseSkills() || isAccessRights() || isParentingHelp() || isSocialAndProfessional() || isDigitalSecurity()
+      "
+      fxLayout="column"
+      class="structure-details-block"
+      fxLayoutAlign="baseline baseline"
+      fxLayoutGap="20px"
+    >
+      <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
+        <app-svg-icon [type]="'ico'" [icon]="'services'" [iconClass]="'icon-32'"></app-svg-icon>
+        <h2 *ngIf="multipleWorkshop()">Ateliers</h2>
+        <h2 *ngIf="!multipleWorkshop()">Atelier</h2>
       </div>
-      <div *ngIf="isParentingHelp()">
-        <h3 class="subtitle">Aide à la parentalité</h3>
-        <p *ngFor="let help of parentingHelp">{{ help.text }}</p>
+      <div *ngIf="structure.freeWorkShop">
+        <span *ngIf="multipleWorkshop()" class="bold-info">L'accès à ces ateliers est gratuit</span>
+        <span *ngIf="!multipleWorkshop()" class="bold-info">L'accès à cet atelier est gratuit</span>
       </div>
-      <div *ngIf="isSocialAndProfessional()">
-        <h3 class="subtitle">Insertion sociale et professionnelle</h3>
-        <p *ngFor="let skill of socialAndProfessional">{{ skill.text }}</p>
+      <div *ngIf="!structure.freeWorkShop">
+        <span *ngIf="multipleWorkshop()" class="bold-info">L'accès à ces ateliers est payant</span>
+        <span *ngIf="!multipleWorkshop()" class="bold-info">L'accès à cet atelier est payant</span>
       </div>
-      <div *ngIf="isDigitalSecurity()">
-        <h3 class="subtitle">Culture et sécurité numérique</h3>
-        <p *ngFor="let skill of digitalCultureSecurity">{{ skill.text }}</p>
+      <div class="wrapper">
+        <div *ngIf="isBaseSkills()">
+          <h3 class="subtitle">Compétences de base</h3>
+          <p *ngFor="let skill of baseSkills">{{ skill.text }}</p>
+        </div>
+        <div *ngIf="isAccessRights()">
+          <h3 class="subtitle">Accès aux droits</h3>
+          <p *ngFor="let rights of accessRights">{{ rights.text }}</p>
+        </div>
+        <div *ngIf="isParentingHelp()">
+          <h3 class="subtitle">Aide à la parentalité</h3>
+          <p *ngFor="let help of parentingHelp">{{ help.text }}</p>
+        </div>
+        <div *ngIf="isSocialAndProfessional()">
+          <h3 class="subtitle">Insertion sociale et professionnelle</h3>
+          <p *ngFor="let skill of socialAndProfessional">{{ skill.text }}</p>
+        </div>
+        <div *ngIf="isDigitalSecurity()">
+          <h3 class="subtitle">Culture et sécurité numérique</h3>
+          <p *ngFor="let skill of digitalCultureSecurity">{{ skill.text }}</p>
+        </div>
       </div>
     </div>
-  </div>
-  <!-- Equipements -->
-  <div
-    *ngIf="structure.hasEquipments()"
-    fxLayout="column"
-    class="structure-details-block"
-    fxLayoutAlign="baseline baseline"
-  >
-    <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-      <app-svg-icon [type]="'ico'" [icon]="'equipement'" [iconClass]="'icon-32'"></app-svg-icon>
-      <h2 *ngIf="multipleEquipement()">Équipements</h2>
-      <h2 *ngIf="!multipleEquipement()">Équipement</h2>
-    </div>
-    <div fxLayout="column">
-      <p *ngFor="let equipement of filterOnlyEquipments(structure.equipmentsAndServices)" class="no-margin-bottom">
-        <span *ngIf="equipement == 'ordinateurs' && structure.nbComputers"
-          >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbComputers }}</span
-        >
-        <span *ngIf="equipement == 'tablettes' && structure.nbTablets"
-          >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbTablets }}</span
-        >
-        <span *ngIf="equipement == 'bornesNumeriques' && structure.nbNumericTerminal">
-          {{ getEquipmentsLabel(equipement) }} : {{ structure.nbNumericTerminal }}</span
-        >
-        <span *ngIf="equipement == 'imprimantes' && structure.nbPrinters"
-          >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbPrinters }}</span
-        >
-        <span *ngIf="equipement == 'scanners' && structure.nbScanners"
-          >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbScanners }}</span
-        >
-      </p>
-    </div>
-  </div>
-  <!-- Labels -->
-  <div
-    *ngIf="structure.labelsQualifications.length"
-    fxLayout="column"
-    class="structure-details-block"
-    fxLayoutAlign="baseline baseline"
-    fxLayoutGap="20px"
-  >
-    <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-      <app-svg-icon [type]="'ico'" [icon]="'label'" [iconClass]="'icon-32'"></app-svg-icon>
-      <h2>Labelisation</h2>
-    </div>
-    <div fxLayout="row wrap" fxLayoutGap="24px">
-      <div *ngFor="let labels of structure.labelsQualifications">
-        <app-logo-card [name]="labels"></app-logo-card>
+
+    <!-- Matériel et wifi -->
+    <div
+      *ngIf="structure.hasEquipments()"
+      fxLayout="column"
+      class="structure-details-block"
+      fxLayoutAlign="baseline baseline"
+    >
+      <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
+        <h2>Matériel et wifi</h2>
+      </div>
+      <div fxLayout="column">
+        <p *ngFor="let equipement of filterOnlyEquipments(structure.equipmentsAndServices)" class="no-margin-bottom">
+          <span *ngIf="equipement == 'ordinateurs' && structure.nbComputers"
+            >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbComputers }}</span
+          >
+          <span *ngIf="equipement == 'tablettes' && structure.nbTablets"
+            >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbTablets }}</span
+          >
+          <span *ngIf="equipement == 'bornesNumeriques' && structure.nbNumericTerminal">
+            {{ getEquipmentsLabel(equipement) }} : {{ structure.nbNumericTerminal }}</span
+          >
+          <span *ngIf="equipement == 'imprimantes' && structure.nbPrinters"
+            >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbPrinters }}</span
+          >
+          <span *ngIf="equipement == 'scanners' && structure.nbScanners"
+            >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbScanners }}</span
+          >
+          <span *ngIf="equipement == 'wifiEnAccesLibre'">{{ getEquipmentsLabel(equipement) }}</span>
+        </p>
       </div>
     </div>
-  </div>
-  <!-- Transport -->
-  <div
-    *ngIf="tclStopPoints.length"
-    fxLayout="column"
-    class="structure-details-block"
-    fxLayoutAlign="baseline baseline"
-    fxLayoutGap="20px"
-  >
-    <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-      <app-svg-icon [type]="'ico'" [icon]="'transport'" [iconClass]="'icon-32'"></app-svg-icon>
-      <h2>Accès</h2>
+
+    <!-- Labellisation -->
+    <div
+      *ngIf="structure.labelsQualifications.length"
+      fxLayout="column"
+      class="structure-details-block"
+      fxLayoutAlign="baseline baseline"
+      fxLayoutGap="20px"
+    >
+      <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
+        <h2>Labelisation</h2>
+      </div>
+      <div fxLayout="row wrap" fxLayoutGap="24px">
+        <div *ngFor="let labels of structure.labelsQualifications">
+          <app-logo-card [name]="labels"></app-logo-card>
+        </div>
+      </div>
     </div>
-    <div fxLayout="column wrap" fxLayoutGap="24px">
-      <div *ngFor="let tclStop of tclStopPoints">
-        {{ tclStop.name }}
-        <div fxLayout="row wrap" fxLayoutGap="24px">
-          <p *ngFor="let sub of tclStop.subLines">
-            <app-svg-icon [type]="'tcl'" [icon]="sub" [iconClass]="'icon-75'"></app-svg-icon>
-          </p>
-          <p *ngFor="let tram of tclStop.tramLines">
-            <app-svg-icon [type]="'tcl'" [icon]="tram" [iconClass]="'icon-75'"></app-svg-icon>
-          </p>
-          <p *ngFor="let bus of tclStop.busLines">
-            <app-svg-icon [type]="'tcl'" [icon]="bus" [iconClass]="'icon-75'"></app-svg-icon>
-          </p>
+
+    <!-- Transport -->
+    <div
+      *ngIf="tclStopPoints.length"
+      fxLayout="column"
+      class="structure-details-block"
+      fxLayoutAlign="baseline baseline"
+      fxLayoutGap="20px"
+    >
+      <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
+        <h2>Accès</h2>
+      </div>
+      <div fxLayout="column wrap" fxLayoutGap="24px">
+        <div *ngFor="let tclStop of tclStopPoints | slice: 0:3">
+          {{ tclStop.name }}
+          <div fxLayout="row wrap" fxLayoutGap="24px">
+            <p *ngFor="let sub of tclStop.subLines">
+              <app-svg-icon [type]="'tcl'" [icon]="sub" [iconClass]="'icon-75'"></app-svg-icon>
+            </p>
+            <p *ngFor="let tram of tclStop.tramLines">
+              <app-svg-icon [type]="'tcl'" [icon]="tram" [iconClass]="'icon-75'"></app-svg-icon>
+            </p>
+            <p *ngFor="let bus of tclStop.busLines">
+              <app-svg-icon [type]="'tcl'" [icon]="bus" [iconClass]="'icon-75'"></app-svg-icon>
+            </p>
+          </div>
+        </div>
+      </div>
+
+      <div fxLayout="column" fxFlex="50%">
+        <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="13px">
+          <p class="updated">Mise à jour le {{ structure.updatedAt | date: 'mediumDate' }}</p>
         </div>
       </div>
     </div>
   </div>
 </div>
-<app-modal-confirmation
-  [openned]="deleteModalOpenned"
-  [content]="'Voulez-vous vraiment supprimer cette structure&nbsp;?'"
-  (closed)="deleteStructure($event)"
-></app-modal-confirmation>
 
 <app-modal-confirmation
   [openned]="claimModalOpenned"
diff --git a/src/app/structure-list/components/structure-details/structure-details.component.scss b/src/app/structure-list/components/structure-details/structure-details.component.scss
index d1fe6597e..4bdc5f53a 100644
--- a/src/app/structure-list/components/structure-details/structure-details.component.scss
+++ b/src/app/structure-list/components/structure-details/structure-details.component.scss
@@ -9,14 +9,14 @@ a {
   padding: unset;
 }
 
-.structrue-details-container {
+.structure-details-container {
   border-right: solid 1px $grey-4;
   background-color: $white;
   z-index: $structure-details-z-index;
   position: absolute;
   top: 0;
   left: 0;
-  max-width: 980px;
+  max-width: 700px;
   width: 100%;
   height: calc(100vh - #{$header-height} - #{$footer-height});
   padding: 0px 24px;
@@ -35,9 +35,13 @@ a {
   }
 }
 
-.structrue-details-container > .structure-details-block {
+.structure-details-content {
+  padding: 0px calc(44px - 24px);
+}
+
+.structure-details-container .structure-details-block {
   padding: 0px 0px 24px 0;
-  border-bottom: 1px dashed $grey-2;
+  border-bottom: 2px solid $grey-8;
   .subtitle {
     text-transform: uppercase;
     @include lato-bold-16;
@@ -46,7 +50,7 @@ a {
   }
 }
 
-.structrue-details-container > .structure-details-block ~ .structure-details-block {
+.structure-details-container .structure-details-block ~ .structure-details-block {
   padding: 24px 0;
 }
 
@@ -54,18 +58,45 @@ a {
   border-bottom: none !important;
 }
 
+.structure-details-block .info-block > div {
+  margin-top: 8px;
+}
+
+.buttons {
+  width: 100%;
+  margin: 16px 0px 40px 0px;
+  position: relative;
+  left: -15px;
+  > div {
+    text-align: center;
+    max-width: 120px;
+  }
+}
+.opening-hours {
+  margin-top: 15px;
+}
 .opening-time {
   p {
     margin: 0 5px 12px 0;
   }
 }
+.day {
+  min-width: 70px;
+}
+.listItems {
+  margin-top: 15px;
+  p {
+    display: list-item;
+    margin: 0 0 0 25px;
+  }
+}
 .typeInformationHeader {
   color: $grey-3;
 }
 h2 {
   margin-top: 0;
   margin-bottom: 5px;
-  @include lato-regular-26;
+  @include lato-bold-20;
 }
 h3 {
   margin: 0 0 8px 0;
@@ -77,7 +108,7 @@ h4 {
   margin-top: 4px;
   @include lato-regular-14;
   color: $grey-2;
-  text-transform: uppercase;
+  text-transform: capitalize;
 }
 p,
 .custom-link {
@@ -93,12 +124,18 @@ p,
   }
 }
 
+.updated {
+  @include lato-regular-14;
+  color: $grey-3;
+  font-style: italic;
+}
+
 .bold-info {
   @include lato-bold-16;
 }
 
 @media print {
-  .structrue-details-container {
+  .structure-details-container {
     background-color: unset;
     z-index: unset;
     position: unset;
@@ -132,9 +169,11 @@ p,
   gap: 20px 30px;
   grid-template-columns: 1fr 1fr;
 }
+.clickableDiv {
+  cursor: pointer;
+}
 .ico-close {
   margin-left: auto;
-  padding-top: 10px;
 }
 .sticky-title {
   position: sticky;
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 cae5b0b60..b74101aeb 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
@@ -330,14 +330,4 @@ export class StructureDetailsComponent implements OnInit {
     }
     return false;
   }
-
-  public multipleAccompaniment(): boolean {
-    if (
-      (this.structure.otherDescription && this.structure.proceduresAccompaniment.length > 0) ||
-      this.structure.proceduresAccompaniment.length > 1
-    ) {
-      return true;
-    }
-    return false;
-  }
 }
diff --git a/src/assets/ico/sprite.svg b/src/assets/ico/sprite.svg
index 81f91788f..771f070d4 100644
--- a/src/assets/ico/sprite.svg
+++ b/src/assets/ico/sprite.svg
@@ -154,25 +154,25 @@
 </symbol>
 
 <symbol id="facebook" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
-<rect x="0.5" y="0.5" width="29" height="29" rx="3.5" fill="white" stroke="#BDBDBD"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M13.0938 24.4152H16.9241V16.9509H19.7723L20.3125 13.4152H16.9241V11.1071C16.9241 9.8631 17.5789 9.24107 18.8884 9.24107H20.4107V6.24554C19.494 6.08185 18.5938 6 17.7098 6C16.7604 6 15.942 6.18006 15.2545 6.54018C14.5997 6.9003 14.0759 7.44048 13.683 8.16071C13.2902 8.88095 13.0938 9.73214 13.0938 10.7143V13.4152H10V16.9509H13.0938V24.4152Z" fill="#333333"/>
+<rect width="30" height="30" rx="15" fill="#F4F4F4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M13.3774 22.1509H16.3208V16.4151H18.5094L18.9245 13.6981H16.3208V11.9245C16.3208 10.9686 16.8239 10.4906 17.8302 10.4906H19V8.18868C18.2956 8.06289 17.6038 8 16.9245 8C16.195 8 15.566 8.13836 15.0377 8.41509C14.5346 8.69182 14.1321 9.10692 13.8302 9.66038C13.5283 10.2138 13.3774 10.8679 13.3774 11.6226V13.6981H11V16.4151H13.3774V22.1509Z" fill="#696969"/>
 </symbol>
 
 <symbol id="twitter" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
-<rect x="0.5" y="0.5" width="29" height="29" rx="3.5" fill="white" stroke="#BDBDBD"/>
-<path d="M22.7143 10.5223C22.256 11.1771 21.7158 11.7336 21.0938 12.192V12.5848C21.0938 14.058 20.75 15.4821 20.0625 16.8571C19.4077 18.2321 18.3601 19.3943 16.9196 20.3438C15.4792 21.2932 13.8259 21.7679 11.9598 21.7679C10.1592 21.7679 8.50595 21.2768 7 20.2946C7.22917 20.3274 7.49107 20.3438 7.78571 20.3438C9.25893 20.3438 10.5848 19.8854 11.7634 18.9688C11.0759 18.9688 10.4539 18.7723 9.89732 18.3795C9.34077 17.9539 8.96429 17.4137 8.76786 16.7589C9.29167 16.8244 9.78274 16.808 10.2411 16.7098C9.4881 16.5461 8.86607 16.1696 8.375 15.5804C7.88393 14.9911 7.63839 14.3036 7.63839 13.5179V13.4688C8.09673 13.7307 8.5878 13.878 9.11161 13.9107C8.8497 13.7143 8.60417 13.4688 8.375 13.1741C8.14583 12.8795 7.96577 12.5685 7.83482 12.2411C7.70387 11.881 7.63839 11.5372 7.63839 11.2098C7.63839 10.6205 7.78571 10.0804 8.08036 9.58929C9.81548 11.6845 12.0417 12.814 14.7589 12.9777C14.5298 11.8973 14.7426 10.9643 15.3973 10.1786C16.0521 9.39286 16.8869 9 17.9018 9C18.8185 9 19.5878 9.34375 20.2098 10.0312C20.9301 9.9003 21.6176 9.63839 22.2723 9.24554C22.0104 9.99851 21.5357 10.5878 20.8482 11.0134C21.4702 10.9479 22.0923 10.7842 22.7143 10.5223Z" fill="#333333"/>
+<rect width="30" height="30" rx="15" fill="#F4F4F4"/>
+<path d="M22.1818 10.4308C21.7682 11.0462 21.2807 11.5692 20.7193 12V12.3692C20.7193 13.7538 20.4091 15.0923 19.7886 16.3846C19.1977 17.6769 18.2523 18.7692 16.9523 19.6615C15.6523 20.5538 14.1602 21 12.4761 21C10.8511 21 9.35909 20.5385 8 19.6154C8.20682 19.6462 8.44318 19.6615 8.70909 19.6615C10.0386 19.6615 11.2352 19.2308 12.2989 18.3692C11.6784 18.3692 11.117 18.1846 10.6148 17.8154C10.1125 17.4154 9.77273 16.9077 9.59545 16.2923C10.0682 16.3538 10.5114 16.3385 10.925 16.2462C10.2455 16.0923 9.68409 15.7385 9.24091 15.1846C8.79773 14.6308 8.57614 13.9846 8.57614 13.2462V13.2C8.98977 13.4462 9.43295 13.5846 9.90568 13.6154C9.66932 13.4308 9.44773 13.2 9.24091 12.9231C9.03409 12.6462 8.87159 12.3538 8.75341 12.0462C8.63523 11.7077 8.57614 11.3846 8.57614 11.0769C8.57614 10.5231 8.70909 10.0154 8.975 9.55385C10.5409 11.5231 12.55 12.5846 15.0023 12.7385C14.7955 11.7231 14.9875 10.8462 15.5784 10.1077C16.1693 9.36923 16.9227 9 17.8386 9C18.6659 9 19.3602 9.32308 19.9216 9.96923C20.5716 9.84615 21.192 9.6 21.783 9.23077C21.5466 9.93846 21.1182 10.4923 20.4977 10.8923C21.0591 10.8308 21.6205 10.6769 22.1818 10.4308Z" fill="#696969"/>
 </symbol>
 
 <symbol id="instagram" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
-<rect x="0.5" y="0.5" width="29" height="29" rx="3.5" fill="white" stroke="#BDBDBD"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M14.9511 10.8691C13.8152 10.8691 12.845 11.2714 12.0404 12.0759C11.2595 12.8568 10.8691 13.8152 10.8691 14.9511C10.8691 16.087 11.2595 17.0572 12.0404 17.8618C12.845 18.6427 13.8152 19.0331 14.9511 19.0331C16.087 19.0331 17.0453 18.6427 17.8263 17.8618C18.6308 17.0572 19.0331 16.087 19.0331 14.9511C19.0331 13.8152 18.6308 12.8568 17.8263 12.0759C17.0453 11.2714 16.087 10.8691 14.9511 10.8691ZM14.9511 17.6133C14.2175 17.6133 13.5904 17.353 13.0698 16.8324C12.5492 16.3118 12.2889 15.6847 12.2889 14.9511C12.2889 14.2175 12.5492 13.5904 13.0698 13.0698C13.5904 12.5492 14.2175 12.2889 14.9511 12.2889C15.6847 12.2889 16.3118 12.5492 16.8324 13.0698C17.353 13.5904 17.6133 14.2175 17.6133 14.9511C17.6133 15.6847 17.353 16.3118 16.8324 16.8324C16.3118 17.353 15.6847 17.6133 14.9511 17.6133Z" fill="#333333"/>
-<path d="M20.1335 10.6916C20.1335 10.4313 20.0388 10.2183 19.8495 10.0526C19.6839 9.86332 19.4709 9.76868 19.2106 9.76868C18.9503 9.76868 18.7255 9.86332 18.5362 10.0526C18.3469 10.2183 18.2522 10.4313 18.2522 10.6916C18.2522 10.9519 18.3469 11.1767 18.5362 11.366C18.7255 11.5553 18.9503 11.65 19.2106 11.65C19.4709 11.65 19.6839 11.5553 19.8495 11.366C20.0388 11.1767 20.1335 10.9519 20.1335 10.6916Z" fill="#333333"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M22.8667 11.6855C22.8903 12.3244 22.9022 13.4129 22.9022 14.9511C22.9022 16.4893 22.8903 17.5778 22.8667 18.2167C22.7957 19.6602 22.3579 20.7843 21.5533 21.5888C20.7724 22.3697 19.6602 22.7838 18.2167 22.8312C17.5778 22.8785 16.4892 22.9022 14.9511 22.9022C13.4129 22.9022 12.3244 22.8785 11.6855 22.8312C10.242 22.7602 9.12976 22.3342 8.34885 21.5533C8.04122 21.2694 7.79275 20.938 7.60343 20.5594C7.41411 20.1808 7.27213 19.814 7.17748 19.4591C7.10649 19.1041 7.07099 18.69 7.07099 18.2167C7.02366 17.5778 7 16.4893 7 14.9511C7 13.4129 7.02366 12.3125 7.07099 11.65C7.14198 10.2301 7.56793 9.12976 8.34885 8.34885C9.12976 7.54429 10.242 7.10649 11.6855 7.0355C12.3244 7.01185 13.4129 7 14.9511 7C16.4892 7 17.5778 7.01185 18.2167 7.0355C19.6602 7.10649 20.7724 7.54429 21.5533 8.34885C22.3579 9.12976 22.7957 10.242 22.8667 11.6855ZM21.3404 18.9266C21.293 19.2106 21.2339 19.4472 21.1629 19.6365C20.8789 20.3465 20.3701 20.8553 19.6365 21.1629C19.4472 21.2339 19.1988 21.293 18.8911 21.3404C18.6072 21.3877 18.2522 21.4232 17.8263 21.4468C17.424 21.4705 17.0927 21.4823 16.8324 21.4823H13.0343C12.7977 21.4823 12.4664 21.4705 12.0404 21.4468C11.6381 21.4232 11.2832 21.3877 10.9755 21.3404C10.6916 21.293 10.4549 21.2339 10.2656 21.1629C9.55571 20.8789 9.04693 20.3701 8.7393 19.6365C8.69197 19.4709 8.64465 19.2579 8.59732 18.9976C8.54998 18.7373 8.51449 18.4888 8.49083 18.2522C8.46717 17.9919 8.4435 17.6843 8.41984 17.3293V13.0698C8.41984 12.8095 8.43167 12.4782 8.45533 12.0759C8.47899 11.65 8.51449 11.295 8.56182 11.011C8.60915 10.7034 8.66831 10.455 8.7393 10.2656C9.02327 9.53206 9.53205 9.02327 10.2656 8.7393C10.4549 8.66831 10.6916 8.60917 10.9755 8.56182C11.2832 8.51447 11.6381 8.47898 12.0404 8.45533C12.4664 8.43169 12.8095 8.41984 13.0698 8.41984H16.8324C17.0927 8.41984 17.424 8.43169 17.8263 8.45533C18.2522 8.47898 18.6072 8.51447 18.8911 8.56182C19.1988 8.60917 19.4472 8.66831 19.6365 8.7393C20.3701 9.02327 20.8789 9.53206 21.1629 10.2656C21.2339 10.455 21.293 10.7034 21.3404 11.011C21.3877 11.295 21.4232 11.65 21.4468 12.0759C21.4705 12.4782 21.4823 12.8095 21.4823 13.0698V16.8324C21.4823 17.0927 21.4705 17.4358 21.4468 17.8618C21.4232 18.2641 21.3877 18.619 21.3404 18.9266Z" fill="#333333"/>
+<rect width="30" height="30" rx="15" fill="#F4F4F4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M15 10.8929C13.8571 10.8929 12.8809 11.2976 12.0714 12.1071C11.2857 12.8929 10.8929 13.8571 10.8929 15C10.8929 16.1429 11.2857 17.1191 12.0714 17.9286C12.8809 18.7143 13.8571 19.1071 15 19.1071C16.1429 19.1071 17.1071 18.7143 17.8929 17.9286C18.7024 17.1191 19.1071 16.1429 19.1071 15C19.1071 13.8571 18.7024 12.8929 17.8929 12.1071C17.1071 11.2976 16.1429 10.8929 15 10.8929ZM15 17.6786C14.2619 17.6786 13.6309 17.4166 13.1071 16.8929C12.5833 16.3691 12.3214 15.7381 12.3214 15C12.3214 14.2619 12.5833 13.6309 13.1071 13.1071C13.6309 12.5834 14.2619 12.3214 15 12.3214C15.7381 12.3214 16.3691 12.5834 16.8929 13.1071C17.4167 13.6309 17.6786 14.2619 17.6786 15C17.6786 15.7381 17.4167 16.3691 16.8929 16.8929C16.3691 17.4166 15.7381 17.6786 15 17.6786Z" fill="#696969"/>
+<path d="M20.2143 10.7143C20.2143 10.4524 20.1191 10.2381 19.9286 10.0714C19.7619 9.88093 19.5476 9.78571 19.2857 9.78571C19.0238 9.78571 18.7976 9.88093 18.6071 10.0714C18.4167 10.2381 18.3214 10.4524 18.3214 10.7143C18.3214 10.9762 18.4167 11.2024 18.6071 11.3929C18.7976 11.5834 19.0238 11.6786 19.2857 11.6786C19.5476 11.6786 19.7619 11.5834 19.9286 11.3929C20.1191 11.2024 20.2143 10.9762 20.2143 10.7143Z" fill="#696969"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M22.9643 11.7143C22.9881 12.3571 23 13.4524 23 15C23 16.5476 22.9881 17.6429 22.9643 18.2857C22.8929 19.7381 22.4524 20.8691 21.6429 21.6786C20.8571 22.4643 19.7381 22.8809 18.2857 22.9286C17.6429 22.9762 16.5476 23 15 23C13.4524 23 12.3571 22.9762 11.7143 22.9286C10.2619 22.8571 9.14286 22.4286 8.35714 21.6429C8.04762 21.3571 7.79762 21.0238 7.60714 20.6429C7.41666 20.2619 7.2738 19.8929 7.17857 19.5357C7.10714 19.1786 7.07143 18.7619 7.07143 18.2857C7.0238 17.6429 7 16.5476 7 15C7 13.4524 7.0238 12.3452 7.07143 11.6786C7.14286 10.25 7.57143 9.14286 8.35714 8.35714C9.14286 7.54764 10.2619 7.10714 11.7143 7.03571C12.3571 7.01192 13.4524 7 15 7C16.5476 7 17.6429 7.01192 18.2857 7.03571C19.7381 7.10714 20.8571 7.54764 21.6429 8.35714C22.4524 9.14286 22.8929 10.2619 22.9643 11.7143ZM21.4286 19C21.3809 19.2857 21.3214 19.5238 21.25 19.7143C20.9643 20.4286 20.4524 20.9405 19.7143 21.25C19.5238 21.3214 19.2738 21.3809 18.9643 21.4286C18.6786 21.4762 18.3214 21.5119 17.8929 21.5357C17.4881 21.5595 17.1548 21.5714 16.8929 21.5714H13.0714C12.8333 21.5714 12.5 21.5595 12.0714 21.5357C11.6667 21.5119 11.3095 21.4762 11 21.4286C10.7143 21.3809 10.4762 21.3214 10.2857 21.25C9.57143 20.9643 9.05952 20.4524 8.75 19.7143C8.70238 19.5476 8.65477 19.3334 8.60714 19.0714C8.55952 18.8095 8.5238 18.5595 8.5 18.3214C8.4762 18.0595 8.45238 17.75 8.42857 17.3929V13.1071C8.42857 12.8452 8.44048 12.5119 8.46429 12.1071C8.48809 11.6786 8.5238 11.3214 8.57143 11.0357C8.61905 10.7262 8.67857 10.4762 8.75 10.2857C9.03571 9.54764 9.54762 9.03571 10.2857 8.75C10.4762 8.67857 10.7143 8.61907 11 8.57143C11.3095 8.52379 11.6667 8.48808 12.0714 8.46429C12.5 8.4405 12.8452 8.42857 13.1071 8.42857H16.8929C17.1548 8.42857 17.4881 8.4405 17.8929 8.46429C18.3214 8.48808 18.6786 8.52379 18.9643 8.57143C19.2738 8.61907 19.5238 8.67857 19.7143 8.75C20.4524 9.03571 20.9643 9.54764 21.25 10.2857C21.3214 10.4762 21.3809 10.7262 21.4286 11.0357C21.4762 11.3214 21.5119 11.6786 21.5357 12.1071C21.5595 12.5119 21.5714 12.8452 21.5714 13.1071V16.8929C21.5714 17.1548 21.5595 17.5 21.5357 17.9286C21.5119 18.3334 21.4762 18.6905 21.4286 19Z" fill="#696969"/>
 </symbol>
 
 <symbol id="linkedin" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
-<rect x="0.5" y="0.5" width="29" height="29" rx="3.5" fill="white" stroke="#BDBDBD"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M10.5357 22.7143H10.4866H7.24554V12.2054H10.5357V22.7143ZM8.86607 10.7812C8.34226 10.7812 7.9003 10.6012 7.54018 10.2411C7.18006 9.84821 7 9.40625 7 8.91518C7 8.39137 7.18006 7.9494 7.54018 7.58929C7.9003 7.19643 8.34226 7 8.86607 7C9.38988 7 9.83185 7.19643 10.192 7.58929C10.5848 7.9494 10.7812 8.39137 10.7812 8.91518C10.7812 9.40625 10.5848 9.84821 10.192 10.2411C9.83185 10.6012 9.38988 10.7812 8.86607 10.7812ZM22.7143 16.9688V22.7143H19.4732V17.6071C19.4732 17.2143 19.4568 16.9033 19.4241 16.6741C19.3914 16.4122 19.3259 16.1176 19.2277 15.7902C19.1622 15.4628 18.9985 15.2173 18.7366 15.0536C18.4747 14.8899 18.1473 14.808 17.7545 14.808C17.0015 14.808 16.494 15.0536 16.2321 15.5446C15.9702 16.0357 15.8393 16.6905 15.8393 17.5089V22.7143H12.5491V12.2054H15.692V13.6295H15.7411C15.9702 13.1711 16.3467 12.7783 16.8705 12.4509C17.4271 12.1235 18.0818 11.9598 18.8348 11.9598C19.6205 11.9598 20.2753 12.0908 20.7991 12.3527C21.3557 12.5818 21.7649 12.942 22.0268 13.433C22.2887 13.8914 22.4688 14.3988 22.567 14.9554C22.6652 15.5119 22.7143 16.183 22.7143 16.9688Z" fill="#333333"/>
+<rect width="30" height="30" rx="15" fill="#F4F4F4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M11.925 21H11.8844H9.20312V12.3062H11.925V21ZM10.5437 11.1281C10.1104 11.1281 9.74479 10.9792 9.44687 10.6812C9.14896 10.3562 9 9.99062 9 9.58437C9 9.15104 9.14896 8.78542 9.44687 8.4875C9.74479 8.1625 10.1104 8 10.5437 8C10.9771 8 11.3427 8.1625 11.6406 8.4875C11.9656 8.78542 12.1281 9.15104 12.1281 9.58437C12.1281 9.99062 11.9656 10.3562 11.6406 10.6812C11.3427 10.9792 10.9771 11.1281 10.5437 11.1281ZM22 16.2469V21H19.3187V16.775C19.3187 16.45 19.3052 16.1927 19.2781 16.0031C19.251 15.7865 19.1969 15.5427 19.1156 15.2719C19.0615 15.001 18.926 14.7979 18.7094 14.6625C18.4927 14.5271 18.2219 14.4594 17.8969 14.4594C17.274 14.4594 16.8542 14.6625 16.6375 15.0687C16.4208 15.475 16.3125 16.0167 16.3125 16.6937V21H13.5906V12.3062H16.1906V13.4844H16.2312C16.4208 13.1052 16.7323 12.7802 17.1656 12.5094C17.626 12.2385 18.1677 12.1031 18.7906 12.1031C19.4406 12.1031 19.9823 12.2115 20.4156 12.4281C20.876 12.6177 21.2146 12.9156 21.4312 13.3219C21.6479 13.701 21.7969 14.1208 21.8781 14.5812C21.9594 15.0417 22 15.5969 22 16.2469Z" fill="#696969"/>
 </symbol>
 
 <symbol id="public" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
@@ -189,26 +189,45 @@
 <path d="M14.4979 12.1969L11.9719 14.7228L6.92 9.67091L9.44596 7.14494C9.74589 6.84502 9.74589 6.35946 9.44596 6.0603L5.61061 2.22494C5.31068 1.92502 4.82512 1.92502 4.52597 2.22494L2 4.75091C2 13.2401 8.40121 19.6428 16.8919 19.6428L19.4179 17.1169C19.7178 16.8169 19.7178 16.3314 19.4179 16.0322L15.5825 12.1969C15.2834 11.8977 14.7971 11.8977 14.4979 12.1969Z" fill="#333333"/>
 </symbol>
 
-<symbol id="web" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
-<path d="M11 4C7.13895 4 4 7.13895 4 11C4 14.8611 7.13895 18 11 18C14.8611 18 18 14.8611 18 11C18 7.13895 14.8611 4 11 4ZM16.2611 8.31789H14.4926C14.2568 7.25684 13.9032 6.32842 13.4316 5.60632C14.6547 6.16632 15.6568 7.12421 16.2611 8.31789ZM16.9095 11C16.9095 11.5453 16.8358 12.0905 16.6884 12.5916H14.6842C14.7432 12.0758 14.7726 11.5453 14.7726 11C14.7726 10.4547 14.7432 9.92421 14.6842 9.40842H16.7032C16.8358 9.90948 16.9095 10.4547 16.9095 11ZM5.09053 11C5.09053 10.4547 5.16421 9.90948 5.31158 9.40842H7.33052C7.27158 9.92421 7.24211 10.4547 7.24211 11C7.24211 11.5453 7.27158 12.0758 7.33052 12.5916H5.31158C5.16421 12.0905 5.09053 11.5453 5.09053 11ZM8.31789 11C8.31789 10.4695 8.3621 9.93895 8.43579 9.40842H10.4695V12.5916H8.43579C8.3621 12.0611 8.31789 11.5305 8.31789 11ZM11.5453 5.22316C12.3558 5.60631 13.0042 6.84421 13.3579 8.33263H11.5453V5.22316ZM10.4547 5.22316V8.33263H8.64211C8.99579 6.84421 9.64421 5.60631 10.4547 5.22316ZM10.4547 13.6821V16.7916C9.64421 16.4084 8.99579 15.1705 8.64211 13.6821H10.4547ZM11.5453 16.7768V13.6674H13.3579C13.0042 15.1558 12.3558 16.3937 11.5453 16.7768ZM11.5453 12.5916V9.40842H13.5789C13.6526 9.93895 13.6968 10.4695 13.6968 11C13.6968 11.5305 13.6526 12.0611 13.5789 12.5916H11.5453ZM8.56842 5.62105C8.11158 6.34316 7.74316 7.27158 7.50737 8.33263H5.73895C6.34316 7.12421 7.34526 6.16632 8.56842 5.62105ZM5.73895 13.6821H7.50737C7.74316 14.7432 8.09684 15.6716 8.56842 16.3937C7.34526 15.8337 6.34316 14.8758 5.73895 13.6821ZM13.4316 16.3789C13.8884 15.6568 14.2568 14.7284 14.4926 13.6674H16.2611C15.6568 14.8758 14.6547 15.8337 13.4316 16.3789Z" fill="#333333"/>
+<symbol id="web" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="11" y="10" width="2" height="2" fill="#333333"/>
+<path d="M6.75 16C6.75 13.6528 8.65279 11.75 11 11.75H13C15.3472 11.75 17.25 13.6528 17.25 16V23C17.25 25.8995 14.8995 28.25 12 28.25C9.10051 28.25 6.75 25.8995 6.75 23V16Z" stroke="#333333" stroke-width="1.5"/>
+<rect x="11" y="14.5" width="2" height="5" rx="1" fill="#333333"/>
+<path d="M12 10.5C12 9.33333 12 9.7 12 8.5C12 7 13 3 16.9999 3C20.9998 3 21.9999 7 21.9999 9.5C21.9999 12 21.9999 11 21.9999 12.5C21.9999 14 22.4999 17 24.9999 17C27.4999 17 27.9999 14.5 27.9999 12.5" stroke="#333333" stroke-width="1.5"/>
 </symbol>
 
-<symbol id="accueil" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
-<path d="M17.375 10.8789C19.724 11.194 21.6862 12.2539 23.2617 14.0586C24.8372 15.8633 25.625 17.9688 25.625 20.375H6.375C6.375 17.9688 7.16276 15.8633 8.73828 14.0586C10.3138 12.2539 12.276 11.194 14.625 10.8789V10.0625H13.9375C13.737 10.0625 13.5651 10.0052 13.4219 9.89062C13.3073 9.7474 13.25 9.57552 13.25 9.375V8.6875C13.25 8.48698 13.3073 8.32943 13.4219 8.21484C13.5651 8.07161 13.737 8 13.9375 8H18.0625C18.263 8 18.4206 8.07161 18.5352 8.21484C18.6784 8.32943 18.75 8.48698 18.75 8.6875V9.375C18.75 9.57552 18.6784 9.7474 18.5352 9.89062C18.4206 10.0052 18.263 10.0625 18.0625 10.0625H17.375V10.8789ZM26.3125 21.75C26.513 21.75 26.6706 21.8216 26.7852 21.9648C26.9284 22.0794 27 22.237 27 22.4375V23.8125C27 24.013 26.9284 24.1849 26.7852 24.3281C26.6706 24.4427 26.513 24.5 26.3125 24.5H5.6875C5.48698 24.5 5.3151 24.4427 5.17188 24.3281C5.05729 24.1849 5 24.013 5 23.8125V22.4375C5 22.237 5.05729 22.0794 5.17188 21.9648C5.3151 21.8216 5.48698 21.75 5.6875 21.75H26.3125Z" fill="black"/>
+<symbol id="watch" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M8 16C9.25818 18.3413 12.3636 20 16 20C19.6364 20 22.7418 18.3413 24 16" stroke="#333333" stroke-width="1.5" stroke-linecap="round"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M16 12C13.7867 12 12 13.7867 12 16C12 18.2133 13.7867 20 16 20C18.2133 20 20 18.2133 20 16C20 13.7867 18.2133 12 16 12Z" stroke="#333333" stroke-width="1.5" stroke-linecap="round"/>
+<path d="M8 16C9.25818 13.6587 12.3636 12 16 12C19.6364 12 22.7418 13.6587 24 16" stroke="#333333" stroke-width="1.5" stroke-linecap="round"/>
+<circle cx="16" cy="16" r="11.25" stroke="#333333" stroke-width="1.5"/>
+<path d="M24 24.5L28 28.5" stroke="#333333" stroke-width="1.5" stroke-linecap="round"/>
+<circle cx="16" cy="16" r="1.5" fill="#333333"/>
 </symbol>
 
-<symbol id="demarches" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
-<rect x="11" y="10" width="2" height="2" fill="black"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M11 11C8.23858 11 6 13.2386 6 16V23C6 26.3137 8.68629 29 12 29C15.3137 29 18 26.3137 18 23V16C18 13.2386 15.7614 11 13 11H11ZM12 14.5C11.4477 14.5 11 14.9477 11 15.5V18.5C11 19.0523 11.4477 19.5 12 19.5C12.5523 19.5 13 19.0523 13 18.5V15.5C13 14.9477 12.5523 14.5 12 14.5Z" fill="black"/>
-<path d="M12 10.5C12 9.33333 12 9.7 12 8.5C12 7 13 3 16.9999 3C20.9998 3 21.9999 7 21.9999 9.5C21.9999 12 21.9999 11 21.9999 12.5C21.9999 14 22.4999 17 24.9999 17C27.4999 17 27.9999 14.5 27.9999 12.5" stroke="black"/>
+<symbol id="docs" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="11" y="2" width="16" height="21" rx="2" fill="white" stroke="#333333" stroke-width="1.5" stroke-linecap="round"/>
+<rect x="7" y="6" width="16" height="21" rx="2" fill="white" stroke="#333333" stroke-width="1.5" stroke-linecap="round"/>
+<path d="M11 15H19" stroke="#333333" stroke-width="1.5" stroke-linecap="round"/>
+<path d="M11 19H19" stroke="#333333" stroke-width="1.5" stroke-linecap="round"/>
+<path d="M11 23H19" stroke="#333333" stroke-width="1.5" stroke-linecap="round"/>
 </symbol>
 
-<symbol id="equipement" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
-<path d="M18.75 19.0625V17H27V23.1875C27 23.7318 26.7852 24.2044 26.3555 24.6055C25.9544 25.0352 25.4818 25.25 24.9375 25.25H7.0625C6.51823 25.25 6.03125 25.0352 5.60156 24.6055C5.20052 24.2044 5 23.7318 5 23.1875V17H13.25V19.0625C13.25 19.263 13.3073 19.4349 13.4219 19.5781C13.5651 19.6927 13.737 19.75 13.9375 19.75H18.0625C18.263 19.75 18.4206 19.6927 18.5352 19.5781C18.6784 19.4349 18.75 19.263 18.75 19.0625ZM24.9375 10.125C25.4818 10.125 25.9544 10.3398 26.3555 10.7695C26.7852 11.1706 27 11.6432 27 12.1875V15.625H5V12.1875C5 11.6432 5.20052 11.1706 5.60156 10.7695C6.03125 10.3398 6.51823 10.125 7.0625 10.125H10.5V8.0625C10.5 7.51823 10.7005 7.04557 11.1016 6.64453C11.5312 6.21484 12.0182 6 12.5625 6H19.4375C19.9818 6 20.4544 6.21484 20.8555 6.64453C21.2852 7.04557 21.5 7.51823 21.5 8.0625V10.125H24.9375ZM18.75 10.125V8.75H13.25V10.125H18.75Z" fill="black"/>
+<symbol id="workhere" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M17.4211 8.42773L18.0467 8.01412C17.8931 7.78179 17.6234 7.65371 17.3463 7.68147C17.0692 7.70923 16.8303 7.88827 16.7258 8.14644L17.4211 8.42773ZM8.76791 27.8156C8.61255 28.1996 8.79789 28.6368 9.18187 28.7922C9.56584 28.9475 10.0031 28.7622 10.1584 28.3782L8.76791 27.8156ZM15.5263 8.42773L16.2178 8.71816C16.331 8.44856 16.2773 8.13774 16.08 7.92186C15.8828 7.70598 15.5781 7.62441 15.2994 7.71289L15.5263 8.42773ZM12.5436 15.5295L13.2351 15.8199L12.5436 15.5295ZM12.9615 17.2587L13.444 16.6846L12.9615 17.2587ZM18.5579 21.9616L19.2597 21.697C19.2143 21.5767 19.1388 21.4701 19.0404 21.3874L18.5579 21.9616ZM20.5087 29.2637C20.6548 29.6513 21.0875 29.8471 21.4751 29.701C21.8626 29.5549 22.0584 29.1222 21.9123 28.7346L20.5087 29.2637ZM10.4105 10.0518L10.1836 9.33695C10.075 9.37141 9.97576 9.43014 9.89328 9.50869L10.4105 10.0518ZM6.48276 12.7568C6.18281 13.0425 6.17123 13.5172 6.4569 13.8172C6.74256 14.1171 7.21729 14.1287 7.51724 13.843L6.48276 12.7568ZM20.6421 13.2999L20.0165 13.7135C20.104 13.846 20.2314 13.9472 20.3802 14.0027L20.6421 13.2999ZM24.7381 15.6268C25.1262 15.7714 25.5581 15.574 25.7028 15.1859C25.8474 14.7977 25.65 14.3658 25.2619 14.2212L24.7381 15.6268ZM16.7258 8.14644L12.9279 17.5335L14.3184 18.096L18.1163 8.70902L16.7258 8.14644ZM12.9279 17.5335L8.76791 27.8156L10.1584 28.3782L14.3184 18.096L12.9279 17.5335ZM14.8348 8.13731L11.8521 15.2391L13.2351 15.8199L16.2178 8.71816L14.8348 8.13731ZM12.479 17.8329L13.1407 18.3889L14.1057 17.2406L13.444 16.6846L12.479 17.8329ZM13.1407 18.3889L18.0754 22.5358L19.0404 21.3874L14.1057 17.2406L13.1407 18.3889ZM17.8561 22.2261L20.5087 29.2637L21.9123 28.7346L19.2597 21.697L17.8561 22.2261ZM15.2994 7.71289L10.1836 9.33695L10.6375 10.7666L15.7533 9.14258L15.2994 7.71289ZM9.89328 9.50869L6.48276 12.7568L7.51724 13.843L10.9278 10.5949L9.89328 9.50869ZM16.7954 8.84135L20.0165 13.7135L21.2677 12.8863L18.0467 8.01412L16.7954 8.84135ZM20.3802 14.0027L24.7381 15.6268L25.2619 14.2212L20.904 12.5971L20.3802 14.0027ZM11.8521 15.2391C11.4705 16.1477 11.7245 17.1989 12.479 17.8329L13.444 16.6846C13.1925 16.4732 13.1078 16.1228 13.2351 15.8199L11.8521 15.2391Z" fill="#333333"/>
+<circle cx="17.2853" cy="4.57143" r="1.82143" fill="#333333" stroke="#333333" stroke-width="1.5"/>
+<ellipse cx="16.4616" cy="8.06669" rx="1.74777" ry="0.783482" fill="#333333"/>
 </symbol>
 
-<symbol id ="label" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
-<path d="M6.375 26.75V24H25.625V26.75H6.375ZM22.875 15.75C24.0208 15.75 24.9948 16.151 25.7969 16.9531C26.599 17.7552 27 18.7292 27 19.875V21.25C27 21.6224 26.8568 21.9518 26.5703 22.2383C26.3125 22.4961 25.9974 22.625 25.625 22.625H6.375C6.0026 22.625 5.67318 22.4961 5.38672 22.2383C5.12891 21.9518 5 21.6224 5 21.25V19.875C5 18.7292 5.40104 17.7552 6.20312 16.9531C7.00521 16.151 7.97917 15.75 9.125 15.75H12.0039C12.3477 15.75 12.6341 15.6354 12.8633 15.4062C13.1211 15.1484 13.25 14.8477 13.25 14.5039V14.4609C13.25 13.3151 12.9206 12.026 12.2617 10.5938C12.0039 10.0495 11.875 9.47656 11.875 8.875C11.875 7.61458 12.362 6.56901 13.3359 5.73828C14.3099 4.90755 15.4414 4.60677 16.7305 4.83594C17.5612 4.97917 18.2773 5.36589 18.8789 5.99609C19.5091 6.59766 19.9102 7.3138 20.082 8.14453C20.2253 9.0612 20.082 9.92057 19.6523 10.7227C19.0508 11.9258 18.75 13.043 18.75 14.0742V14.5039C18.75 14.8477 18.8646 15.1484 19.0938 15.4062C19.3516 15.6354 19.6523 15.75 19.9961 15.75H22.875Z" fill="black"/>
+<symbol id="advisor" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M14.5 2.86603C15.4282 2.33013 16.5718 2.33013 17.5 2.86603L26.6244 8.13397C27.5526 8.66987 28.1244 9.66025 28.1244 10.7321V21.2679C28.1244 22.3397 27.5526 23.3301 26.6244 23.866L17.5 29.134C16.5718 29.6699 15.4282 29.6699 14.5 29.134L5.37564 23.866C4.44744 23.3301 3.87564 22.3397 3.87564 21.2679V10.7321C3.87564 9.66025 4.44744 8.66987 5.37564 8.13397L14.5 2.86603Z" stroke="#333333" stroke-width="1.5"/>
+<path d="M18.5906 17.1168L16.0096 18.7232L13.4285 17.1168V13.904L16.0096 12.2767L18.5416 13.8731H22L22 11.7552L16.0097 8L10 11.7552V19.2656L16.0097 23L22 19.2656V17.1168L18.5906 17.1168Z" stroke="#333333" stroke-width="1.5"/>
+</symbol>
+
+<symbol id="printStructure" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M8 11.9993V2.66602H24V11.9993" stroke="#333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M8.00033 24H5.33366C4.62641 24 3.94814 23.719 3.44804 23.219C2.94794 22.7189 2.66699 22.0406 2.66699 21.3333V14.6667C2.66699 13.9594 2.94794 13.2811 3.44804 12.781C3.94814 12.281 4.62641 12 5.33366 12H26.667C27.3742 12 28.0525 12.281 28.5526 12.781C29.0527 13.2811 29.3337 13.9594 29.3337 14.6667V21.3333C29.3337 22.0406 29.0527 22.7189 28.5526 23.219C28.0525 23.719 27.3742 24 26.667 24H24.0003" stroke="#333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M24 18.666H8V29.3327H24V18.666Z" stroke="#333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
 </symbol>
 
 <symbol id="services" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
diff --git a/src/assets/logos/accompagnantCaf.svg b/src/assets/logos/accompagnantCaf.svg
index 8975359c9..4ec854fac 100644
--- a/src/assets/logos/accompagnantCaf.svg
+++ b/src/assets/logos/accompagnantCaf.svg
@@ -1,44 +1,44 @@
-<svg id="caf" width="120" height="56" viewBox="0 0 120 56" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M87.4411 0.564224H32.5632V55.4362H87.4411V0.564224Z" fill="#0F6BAF"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M52.2874 22.0029L52.6639 21.7931H51.9685C52.0859 21.8693 52.1941 21.9401 52.2874 22.0029Z" fill="#9CB4DA"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M58.0268 24.5633C57.7237 24.4522 57.4866 24.2223 57.3598 23.9149C57.3389 23.8655 57.3227 23.8145 57.3088 23.762C57.1504 23.9232 56.9686 24.0662 56.764 24.1804L54.9429 25.1935H57.8253C57.8829 24.9758 57.9679 24.7699 58.0777 24.5783L58.0268 24.5633Z" fill="#9CB4DA"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M63.5787 24.1543C63.3926 24.0314 63.2346 23.8766 63.1065 23.6999C63.0654 23.8248 63.0078 23.9469 62.9315 24.0563C62.6877 24.4104 62.3155 24.6111 61.939 24.6312C62.003 24.8102 62.0425 24.9995 62.0603 25.1939H65.03C65.0339 25.167 65.0371 25.1405 65.0406 25.1137L63.5787 24.1543Z" fill="#9CB4DA"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M74.0169 21.7927C74.1572 22.7102 73.689 23.6936 72.8146 24.1796C72.8146 24.1804 71.6178 24.8466 70.9927 25.1935H82.7775V21.7927H74.0169Z" fill="#9CB4DA"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M48.9905 25.1137L47.5277 24.1543C47.0998 23.8718 46.8114 23.4265 46.7134 22.8994C46.6466 22.5351 46.6755 22.1538 46.7936 21.7927H37.2756V25.1935H48.9794C48.983 25.1666 48.9869 25.1405 48.9905 25.1137Z" fill="#AFC2E1"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M68.0183 21.7927C68.1372 21.869 68.2435 21.9401 68.3372 22.0025L68.7145 21.7927H68.0183Z" fill="#9CB4DA"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M62.0176 5.12351C63.0848 5.12351 64.0749 4.27479 64.2286 3.22615C64.3831 2.17949 63.6415 1.32919 62.5739 1.32919C61.5083 1.32919 60.5165 2.17909 60.3628 3.22615C60.2087 4.27479 60.9496 5.12351 62.0176 5.12351Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M68.6766 4.37909C68.2953 3.51576 67.215 3.221 66.2644 3.71924L61.8956 6.00697L58.2012 3.71924C57.3956 3.221 56.228 3.51576 55.5934 4.37909C54.9593 5.24203 55.0995 6.34519 55.904 6.84344L58.4644 8.41956L57.8018 12.9318C57.7852 13.048 57.7966 13.1657 57.844 13.2728C57.9882 13.5999 58.3996 13.7118 58.7599 13.5229L60.9619 12.3707L62.8241 13.5229C63.1295 13.7122 63.5728 13.5999 63.8135 13.2728C63.8921 13.1657 63.9391 13.048 63.9577 12.9318L64.6191 8.41956L67.641 6.84344C68.594 6.3448 69.0571 5.24163 68.6766 4.37909Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M60.1684 17.7218C61.2344 17.7218 62.2246 16.8715 62.3795 15.8244C62.5324 14.777 61.7923 13.9271 60.7247 13.9271C59.6571 13.9271 58.6673 14.7766 58.5136 15.8244C58.3599 16.8715 59.0996 17.7218 60.1684 17.7218Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M66.8276 16.9766C66.4463 16.1137 65.3661 15.8181 64.4138 16.316L60.0466 18.6045L56.3515 16.316C55.5458 15.8181 54.3782 16.1137 53.7441 16.9766C53.1099 17.8396 53.2494 18.9431 54.0546 19.4394L56.6146 21.0167L55.9512 25.5289C55.935 25.6463 55.948 25.7628 55.9951 25.8699C56.1393 26.1971 56.5494 26.3089 56.9109 26.1208L59.1121 24.9671L60.9739 26.1208C61.2801 26.3093 61.7231 26.1971 61.9625 25.8699C62.0411 25.7628 62.0897 25.6463 62.1059 25.5289L62.769 21.0167L65.7916 19.4394C66.745 18.9431 67.2077 17.8396 66.8276 16.9766Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M50.0285 11.4252C51.0957 11.4252 52.0858 10.5765 52.2395 9.52786C52.394 8.4812 51.6524 7.63051 50.5852 7.63051C49.5176 7.63051 48.5278 8.4808 48.3737 9.52786C48.22 10.5761 48.9608 11.4252 50.0285 11.4252Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M56.6877 10.68C56.3068 9.81708 55.2262 9.52233 54.2743 10.0202L49.9067 12.3091L46.2124 10.0202C45.4067 9.52233 44.2387 9.81708 43.6046 10.68C42.9712 11.543 43.1099 12.6469 43.9151 13.1448L46.4751 14.7213L45.8129 19.2335C45.7963 19.3489 45.8093 19.4666 45.8564 19.5741C46.0002 19.9013 46.4111 20.0127 46.7714 19.8238L48.973 18.6717L50.836 19.8238C51.1422 20.0131 51.5844 19.9013 51.8246 19.5741C51.9028 19.4666 51.9499 19.3489 51.9676 19.2335L52.6302 14.7213L55.6533 13.1448C56.6051 12.6465 57.0682 11.5426 56.6877 10.68Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M48.1782 24.0232C49.2466 24.0232 50.2359 23.1736 50.39 22.1254C50.5441 21.0779 49.8037 20.2288 48.7365 20.2288C47.6689 20.2288 46.6787 21.0779 46.5246 22.1254C46.3709 23.1733 47.1109 24.0232 48.1782 24.0232Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M54.8383 23.2776C54.4574 22.4154 53.3772 22.1199 52.4257 22.6185L48.0577 24.9058L44.3622 22.6185C43.5565 22.1199 42.3893 22.4154 41.7552 23.2776C41.121 24.1405 41.2601 25.2441 42.0657 25.7407L44.6257 27.3188L43.9631 31.8318C43.9465 31.9468 43.9595 32.0642 44.007 32.172C44.1512 32.4984 44.5609 32.611 44.9224 32.4222L47.1229 31.2692L48.9858 32.4222C49.2917 32.6114 49.7354 32.4984 49.9748 32.172C50.0542 32.0642 50.1013 31.9468 50.119 31.8318L50.7816 27.3188L53.8039 25.7407C54.7561 25.2441 55.2192 24.1405 54.8383 23.2776Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M72.1618 11.4252C71.0954 11.4252 70.353 10.5765 70.5071 9.52786C70.6608 8.4812 71.6509 7.63051 72.7189 7.63051C73.7861 7.63051 74.527 8.4808 74.3737 9.52786C74.2184 10.5761 73.229 11.4252 72.1618 11.4252Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M65.7209 10.68C66.355 9.81708 67.523 9.52233 68.3279 10.0202L72.0238 12.3091L76.3918 10.0202C77.3432 9.52233 78.4239 9.81708 78.804 10.68C79.1841 11.543 78.7214 12.6469 77.77 13.1448L74.7465 14.7213L74.0843 19.2335C74.0673 19.3489 74.0211 19.4666 73.9417 19.5741C73.7003 19.9013 73.2573 20.0127 72.9515 19.8238L71.0885 18.6717L68.8877 19.8238C68.5282 20.0131 68.1169 19.9013 67.9726 19.5741C67.9256 19.4666 67.9126 19.3489 67.9296 19.2335L68.5926 14.7213L66.0326 13.1448C65.2254 12.6465 65.0871 11.5426 65.7209 10.68Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M70.3127 24.0232C69.2447 24.0232 68.5039 23.1736 68.658 22.1254C68.8117 21.0779 69.8022 20.2288 70.8698 20.2288C71.9374 20.2288 72.6771 21.0779 72.5246 22.1254C72.3693 23.1733 71.3799 24.0232 70.3127 24.0232Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M63.8719 23.2776C64.5056 22.4154 65.6724 22.1199 66.4788 22.6185L70.1732 24.9058L74.5412 22.6185C75.4934 22.1199 76.5741 22.4154 76.9542 23.2776C77.3355 24.1405 76.8724 25.2441 75.9202 25.7407L72.8975 27.3188L72.2345 31.8318C72.2183 31.9468 72.1721 32.0642 72.0927 32.172C71.8513 32.4984 71.4091 32.611 71.1025 32.4222L69.2395 31.2692L67.0387 32.4222C66.6776 32.6114 66.2686 32.4984 66.1236 32.172C66.0758 32.0642 66.0636 31.9468 66.0806 31.8318L66.7428 27.3188L64.1824 25.7407C63.3764 25.2441 63.2369 24.1405 63.8719 23.2776Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M58.3181 30.3193C59.3857 30.3193 60.3755 29.4698 60.5303 28.4216C60.6833 27.3737 59.942 26.5246 58.8748 26.5246C57.8076 26.5246 56.8174 27.3733 56.6633 28.4216C56.5092 29.4698 57.2509 30.3193 58.3181 30.3193Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M64.9771 29.5749C64.5966 28.712 63.5164 28.4165 62.5649 28.9143L58.1977 31.204L54.5025 28.9143C53.6969 28.4165 52.5285 28.712 51.8944 29.5749C51.2606 30.4371 51.3993 31.5407 52.2057 32.0381L54.7657 33.6138L54.1031 38.1277C54.0865 38.2442 54.0983 38.3608 54.1461 38.4679C54.2907 38.795 54.6997 38.9068 55.0616 38.718L57.2624 37.5658L59.1254 38.718C59.43 38.9072 59.8742 38.795 60.1148 38.4679C60.1926 38.3608 60.2408 38.2442 60.2582 38.1277L60.9204 33.6138L63.9423 32.0381C64.8953 31.5403 65.3592 30.4367 64.9771 29.5749Z" fill="white"/>
-<path d="M36.9316 42.8497L36.608 41.0772L35.5772 42.8497H36.9316ZM35.2899 43.3159C34.9888 43.8924 34.7146 44.3654 34.4752 44.8909C34.3582 44.8826 34.25 44.8664 34.1314 44.8664C34.0133 44.8664 33.892 44.8826 33.7715 44.8909L36.8842 39.6161C36.9775 39.6315 37.0652 39.6394 37.1612 39.6394C37.2572 39.6394 37.3469 39.6315 37.4469 39.6161L38.5113 44.9055C38.2991 44.8909 38.0964 44.866 37.8815 44.866C37.6666 44.866 37.4556 44.8905 37.2382 44.9055C37.1742 44.3429 37.1177 43.8252 37.0134 43.3159H35.2899Z" fill="white"/>
-<path d="M40.567 44.3191C41.2115 44.3191 41.7694 44.265 42.2814 44.2133C42.2467 44.3191 42.2032 44.4333 42.1827 44.5404C42.1625 44.6471 42.1633 44.7605 42.1582 44.866H39.354L40.3339 39.684C40.516 39.6994 40.6962 39.7227 40.8811 39.7227C41.0657 39.7227 41.2557 39.6994 41.4438 39.684L40.567 44.3191Z" fill="white"/>
-<path d="M44.4151 44.3191C45.0583 44.3191 45.6158 44.265 46.1287 44.2133C46.0943 44.3191 46.0505 44.4333 46.0307 44.5404C46.0105 44.6471 46.0105 44.7605 46.0046 44.866H43.2017L44.1808 39.684C44.3637 39.6994 44.5439 39.7227 44.7288 39.7227C44.9137 39.7227 45.1026 39.6994 45.291 39.684L44.4151 44.3191Z" fill="white"/>
-<path d="M48.3528 42.5087C48.1655 43.4965 48.403 44.5475 49.5133 44.5475C50.6524 44.5475 51.3841 43.376 51.6232 42.112C51.8085 41.1313 51.577 40.0037 50.4687 40.0037C49.4394 40.0037 48.6744 40.8034 48.3528 42.5087ZM49.39 45.0035C47.7554 45.0035 46.8403 44.0149 47.1667 42.2871C47.4527 40.7722 48.757 39.5481 50.5983 39.5481C52.7074 39.5481 53.0393 41.0768 52.8232 42.2566C52.5505 43.7411 51.202 45.0035 49.39 45.0035Z" fill="white"/>
-<path d="M57.4894 44.022L57.2022 44.6763C56.7138 44.9134 56.1721 45.0035 55.6762 45.0035C54.093 45.0035 53.0839 44.0003 53.3798 42.44C53.754 40.4529 55.2574 39.5485 56.8695 39.5485C57.3579 39.5485 57.926 39.6773 58.3089 39.9211C58.1935 40.1795 58.1007 40.4383 57.9904 40.705H57.8865C57.6909 40.2937 57.2713 40.0037 56.7917 40.0037C55.5628 40.0037 54.839 41.2143 54.6268 42.3329C54.3814 43.634 54.8307 44.5475 55.9686 44.5475C56.4278 44.5475 57.0066 44.3053 57.4013 43.9766L57.4894 44.022Z" fill="white"/>
-<path d="M61.0622 42.8497L60.739 41.0772L59.7085 42.8497H61.0622ZM59.4217 43.3159C59.119 43.8924 58.8456 44.3654 58.605 44.8909C58.4888 44.8826 58.3805 44.8664 58.2624 44.8664C58.1443 44.8664 58.0226 44.8826 57.9028 44.8909L61.016 39.6161C61.1084 39.6315 61.1965 39.6394 61.2922 39.6394C61.387 39.6394 61.4783 39.6315 61.5762 39.6161L62.6419 44.9055C62.4297 44.8909 62.2282 44.866 62.0128 44.866C61.7975 44.866 61.5869 44.8905 61.3692 44.9055C61.306 44.3429 61.2471 43.8252 61.144 43.3159H59.4217Z" fill="white"/>
-<path d="M65.5642 44.9055C65.382 44.8909 65.2015 44.866 65.0154 44.866C64.8308 44.866 64.642 44.8905 64.4551 44.9055L65.3386 40.2249C64.8139 40.2249 64.3377 40.2775 63.9426 40.3316C63.9774 40.2249 64.0189 40.1187 64.0414 40.0037C64.0623 39.897 64.0584 39.7915 64.0639 39.684H67.874C67.8401 39.7911 67.7986 39.897 67.7768 40.0037C67.7551 40.1187 67.7591 40.2253 67.7535 40.3316C67.3268 40.2775 66.8993 40.2249 66.4477 40.2249L65.5642 44.9055Z" fill="white"/>
-<path d="M68.8512 39.6844C69.0334 39.6998 69.2139 39.7231 69.3984 39.7231C69.5838 39.7231 69.7726 39.6998 69.9611 39.6844L68.9741 44.9059C68.7927 44.8913 68.6106 44.8664 68.4268 44.8664C68.2415 44.8664 68.0519 44.8909 67.865 44.9059L68.8512 39.6844Z" fill="white"/>
-<path d="M71.6291 42.5087C71.4422 43.4965 71.6801 44.5475 72.7904 44.5475C73.9295 44.5475 74.6609 43.376 74.9003 42.112C75.0864 41.1313 74.8557 40.0037 73.745 40.0037C72.7173 40.0037 71.9516 40.8034 71.6291 42.5087ZM72.6663 45.0035C71.0325 45.0035 70.1174 44.0149 70.443 42.2871C70.7295 40.7722 72.0333 39.5481 73.8762 39.5481C75.9845 39.5481 76.3156 41.0768 76.0995 42.2566C75.8281 43.7411 74.4799 45.0035 72.6663 45.0035Z" fill="white"/>
-<path d="M77.6068 39.6844H78.3386C79.166 40.8642 80.0502 42.0211 80.8622 43.2468L81.5351 39.6844C81.6291 39.6998 81.7295 39.7077 81.8259 39.7077C81.9223 39.7077 82.0282 39.6998 82.1262 39.6844L81.14 44.9059L80.5125 44.898C79.8404 43.9165 79.2185 42.9797 78.5539 42.0745L77.9111 41.2064L77.2141 44.8913C77.1208 44.883 77.0181 44.8668 76.9241 44.8668C76.8277 44.8668 76.7202 44.883 76.6238 44.8913L77.6068 39.6844Z" fill="white"/>
-<path d="M85.5646 40.6667C85.4942 40.2625 85.2603 40.0037 84.8383 40.0037C84.254 40.0037 83.9655 40.317 83.8845 40.75C83.6901 41.7781 85.9759 41.5881 85.6456 43.3298C85.4618 44.3053 84.5159 45.0043 83.3689 45.0043C82.9623 45.0043 82.5447 44.9055 82.2393 44.6763C82.3882 44.3575 82.5309 44.0382 82.6375 43.7095H82.7774C82.7889 44.2366 83.1302 44.5475 83.6411 44.5475C84.0995 44.5475 84.5562 44.2804 84.655 43.7565C84.8858 42.5387 82.5984 42.9793 82.9449 41.1471C83.1101 40.2696 83.8308 39.5481 84.9561 39.5481C85.4879 39.5481 85.9229 39.7536 86.0549 39.9124C85.9214 40.1562 85.7989 40.4071 85.6752 40.6663H85.5646" fill="white"/>
-<path d="M37.576 52.6877C37.3646 52.6715 37.1556 52.6474 36.9411 52.6474C36.7265 52.6474 36.5072 52.6715 36.2883 52.6877L37.4334 47.3011H40.7038C40.6627 47.4105 40.6125 47.5279 40.5884 47.6377C40.5655 47.7472 40.5663 47.8653 40.5599 47.9752C40.0483 47.9202 39.5018 47.8657 38.601 47.8657L38.2422 49.554H39.151C39.486 49.554 39.8361 49.5224 40.2047 49.4829C40.164 49.594 40.1139 49.7113 40.0905 49.8215C40.0676 49.931 40.0676 50.0491 40.0621 50.159C39.7081 50.1274 39.3726 50.0886 39.0297 50.0886H38.128L37.576 52.6877Z" fill="white"/>
-<path d="M43.7176 50.5667L43.3426 48.7369L42.1478 50.5667H43.7176ZM41.8143 51.046C41.4642 51.6434 41.1462 52.1294 40.8676 52.6711C40.7321 52.6632 40.6064 52.647 40.4693 52.647C40.3322 52.647 40.1912 52.6632 40.0525 52.6711L43.6631 47.2304C43.7709 47.2442 43.8725 47.2537 43.9839 47.2537C44.0957 47.2537 44.2004 47.2446 44.3158 47.2304L45.5505 52.6873C45.3052 52.6711 45.0705 52.647 44.8216 52.647C44.5726 52.647 44.3273 52.6711 44.0748 52.6873C44.0009 52.1053 43.9337 51.5731 43.8136 51.046H41.8143Z" fill="white"/>
-<path d="M53.0045 47.3011C53.1203 47.3173 53.2357 47.3406 53.3566 47.3406C53.4763 47.3406 53.6098 47.3173 53.7335 47.3011C53.551 49.4126 53.385 51.125 53.3443 52.6877C53.1072 52.6715 52.8805 52.6474 52.6406 52.6474C52.4 52.6474 52.1807 52.6715 51.9369 52.6877C52.1333 51.4399 52.2174 50.2376 52.3451 49.0274C51.4375 50.2297 50.5386 51.4305 49.6701 52.6474C49.5626 52.6312 49.4607 52.6241 49.3449 52.6474C49.0261 51.564 48.6065 50.3478 48.2157 49.1147C47.7246 50.4976 47.3559 51.5873 47.0959 52.6877C46.9624 52.6715 46.8391 52.6474 46.7016 52.6474C46.5637 52.6474 46.4389 52.6715 46.2986 52.6877C46.9426 51.1088 47.6041 49.2869 48.318 47.3011C48.435 47.3173 48.5409 47.3406 48.661 47.3406C48.7815 47.3406 48.9068 47.3173 49.0304 47.3011C49.386 48.5342 49.8037 49.7583 50.2205 50.9915C51.0744 49.8753 52.0661 48.6437 53.0045 47.3011Z" fill="white"/>
-<path d="M55.7323 47.3011C55.9437 47.3173 56.1527 47.3406 56.3684 47.3406C56.5822 47.3406 56.8019 47.3173 57.02 47.3011L55.8749 52.6877C55.6643 52.6715 55.4549 52.6474 55.24 52.6474C55.0254 52.6474 54.8061 52.6715 54.5876 52.6877L55.7323 47.3011Z" fill="white"/>
-<path d="M58.8512 52.0824C59.5992 52.0824 60.2452 52.0267 60.8402 51.9714C60.8007 52.0824 60.7493 52.2005 60.7268 52.31C60.7027 52.4194 60.7035 52.5376 60.696 52.6474H57.4446L58.5805 47.3011C58.7923 47.3173 59.0017 47.3406 59.2163 47.3406C59.43 47.3406 59.6501 47.3173 59.8678 47.3011L58.8512 52.0824Z" fill="white"/>
-<path d="M63.0515 47.3011C63.2629 47.3173 63.4727 47.3406 63.6857 47.3406C63.901 47.3406 64.1219 47.3173 64.3392 47.3011L63.195 52.6877C62.9828 52.6715 62.7738 52.6474 62.5592 52.6474C62.3447 52.6474 62.1254 52.6715 61.9065 52.6877L63.0515 47.3011Z" fill="white"/>
-<path d="M67.8487 50.5667L67.4737 48.7369L66.2793 50.5667H67.8487ZM65.9438 51.046C65.5941 51.6434 65.2768 52.1294 64.9983 52.6711C64.8624 52.6632 64.7375 52.647 64.5984 52.647C64.4617 52.647 64.3215 52.6632 64.1824 52.6711L67.7926 47.2304C67.9012 47.2442 68.0032 47.2537 68.115 47.2537C68.226 47.2537 68.3311 47.2446 68.4461 47.2304L69.6808 52.6873C69.4355 52.6711 69.1992 52.647 68.9499 52.647C68.7013 52.647 68.4568 52.6711 68.2043 52.6873C68.1308 52.1053 68.064 51.5731 67.9435 51.046H65.9438Z" fill="white"/>
-<path d="M71.9803 52.0824C72.7283 52.0824 73.3747 52.0267 73.9698 51.9714C73.9295 52.0824 73.8793 52.2005 73.8548 52.31C73.8315 52.4194 73.8331 52.5376 73.8263 52.6474H70.5737L71.7089 47.3011C71.9211 47.3173 72.1301 47.3406 72.3454 47.3406C72.5608 47.3406 72.7793 47.3173 72.9982 47.3011L71.9803 52.0824Z" fill="white"/>
-<path d="M79.4273 47.3011C79.3858 47.4105 79.3341 47.5279 79.3115 47.6377C79.2882 47.7472 79.2882 47.8653 79.2831 47.9752C78.7738 47.9135 78.2028 47.8503 77.3221 47.8657L76.9649 49.554H77.8571C78.2443 49.554 78.6027 49.5224 78.9283 49.4829C78.8872 49.5939 78.8366 49.7113 78.8133 49.8215C78.7908 49.931 78.7908 50.0491 78.7848 50.159C78.4771 50.1202 78.1313 50.0886 77.7437 50.0886H76.8507L76.4272 52.0828C77.3047 52.0757 77.8974 52.0358 78.4336 51.9718C78.3933 52.0828 78.3427 52.2009 78.3202 52.3104C78.2957 52.4198 78.2961 52.538 78.2894 52.6478H75.0198L76.1565 47.3015H79.4273" fill="white"/>
-<path d="M83.0567 48.3134C82.9718 47.8965 82.7039 47.6298 82.2147 47.6298C81.5363 47.6298 81.2024 47.9522 81.1064 48.3999C80.8804 49.4604 83.532 49.2628 83.15 51.0614C82.9354 52.0662 81.839 52.7901 80.509 52.7901C80.036 52.7901 79.5512 52.6873 79.198 52.4514C79.3715 52.1219 79.5358 51.7924 79.6587 51.4546H79.8231C79.8361 51.9963 80.2312 52.3175 80.8239 52.3175C81.3549 52.3175 81.886 52.0437 82.0014 51.5028C82.2677 50.2455 79.6129 50.7011 80.0151 48.8089C80.2079 47.9052 81.044 47.1596 82.3487 47.1596C82.9658 47.1596 83.47 47.3718 83.6237 47.537C83.4673 47.7871 83.3274 48.0463 83.1839 48.3142H83.0567" fill="white"/>
+<svg id="caf" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M39.6007 0.403015H0.402222V39.5973H39.6007V0.403015Z" fill="#0F6BAF"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4909 15.7164L14.7599 15.5665H14.2632C14.347 15.621 14.4243 15.6715 14.4909 15.7164Z" fill="#9CB4DA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M18.5906 17.5452C18.3741 17.4659 18.2048 17.3016 18.1142 17.0821C18.0992 17.0468 18.0877 17.0104 18.0778 16.9728C17.9646 17.088 17.8348 17.1901 17.6886 17.2717L16.3878 17.9953H18.4467C18.4879 17.8398 18.5485 17.6928 18.627 17.5559L18.5906 17.5452Z" fill="#9CB4DA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M22.5561 17.2531C22.4232 17.1653 22.3103 17.0547 22.2189 16.9285C22.1895 17.0177 22.1483 17.1049 22.0938 17.1831C21.9197 17.436 21.6538 17.5793 21.3849 17.5937C21.4306 17.7216 21.4588 17.8568 21.4715 17.9956H23.5927C23.5956 17.9764 23.5978 17.9575 23.6004 17.9383L22.5561 17.2531Z" fill="#9CB4DA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M30.012 15.5662C30.1122 16.2215 29.7777 16.924 29.1532 17.2711C29.1532 17.2717 28.2983 17.7475 27.8518 17.9953H36.2695V15.5662H30.012Z" fill="#9CB4DA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M12.1361 17.9383L11.0912 17.2531C10.7856 17.0513 10.5796 16.7332 10.5096 16.3567C10.4619 16.0965 10.4825 15.8242 10.5669 15.5662H3.76831V17.9953H12.1281C12.1307 17.9761 12.1335 17.9575 12.1361 17.9383Z" fill="#AFC2E1"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M25.7273 15.5662C25.8122 15.6207 25.8882 15.6715 25.9551 15.7161L26.2246 15.5662H25.7273Z" fill="#9CB4DA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M21.4411 3.65964C22.2034 3.65964 22.9106 3.05342 23.0204 2.30439C23.1308 1.55677 22.601 0.949417 21.8385 0.949417C21.0773 0.949417 20.3689 1.55649 20.2591 2.30439C20.149 3.05342 20.6782 3.65964 21.4411 3.65964Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M26.1974 3.12792C25.9251 2.51125 25.1535 2.30071 24.4744 2.6566L21.3539 4.29069L18.715 2.6566C18.1396 2.30071 17.3056 2.51125 16.8523 3.12792C16.3994 3.7443 16.4996 4.53228 17.0742 4.88816L18.903 6.01397L18.4297 9.237C18.4178 9.31997 18.426 9.40407 18.4599 9.48056C18.5629 9.71424 18.8567 9.79411 19.1141 9.65921L20.687 8.83623L22.0171 9.65921C22.2353 9.79439 22.5519 9.71424 22.7238 9.48056C22.7799 9.40407 22.8135 9.31997 22.8268 9.237L23.2992 6.01397L25.4577 4.88816C26.1385 4.53199 26.4692 3.74402 26.1974 3.12792Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M20.1202 12.6584C20.8817 12.6584 21.5889 12.0511 21.6996 11.3032C21.8088 10.555 21.2802 9.94792 20.5176 9.94792C19.755 9.94792 19.048 10.5547 18.9383 11.3032C18.8285 12.0511 19.3568 12.6584 20.1202 12.6584Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M24.877 12.1261C24.6046 11.5098 23.833 11.2987 23.1528 11.6543L20.0334 13.2889L17.394 11.6543C16.8185 11.2987 15.9846 11.5098 15.5316 12.1261C15.0786 12.7425 15.1782 13.5308 15.7534 13.8853L17.582 15.0119L17.1081 18.2349C17.0965 18.3188 17.1058 18.402 17.1394 18.4785C17.2424 18.7122 17.5354 18.7921 17.7936 18.6577L19.3659 17.8336L20.6958 18.6577C20.9145 18.7923 21.2309 18.7122 21.4019 18.4785C21.4581 18.402 21.4928 18.3188 21.5044 18.2349L21.9779 15.0119L24.137 13.8853C24.818 13.5308 25.1485 12.7425 24.877 12.1261Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M12.8774 8.16087C13.6397 8.16087 14.347 7.55464 14.4568 6.80561C14.5671 6.05799 14.0374 5.45036 13.2751 5.45036C12.5125 5.45036 11.8055 6.05771 11.6954 6.80561C11.5857 7.55436 12.1148 8.16087 12.8774 8.16087Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M17.6341 7.62859C17.3621 7.0122 16.5902 6.80166 15.9103 7.15727L12.7906 8.79221L10.1517 7.15727C9.57627 6.80166 8.74201 7.0122 8.28904 7.62859C7.83663 8.24497 7.93569 9.03351 8.51087 9.38912L10.3394 10.5152L9.8664 13.7382C9.85455 13.8206 9.86386 13.9047 9.89745 13.9815C10.0002 14.2152 10.2937 14.2948 10.5511 14.1599L12.1237 13.3369L13.4544 14.1599C13.6731 14.2951 13.9889 14.2152 14.1605 13.9815C14.2164 13.9047 14.2499 13.8206 14.2626 13.7382L14.7359 10.5152L16.8953 9.38912C17.5751 9.03323 17.9059 8.24469 17.6341 7.62859Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M11.5558 17.1594C12.3189 17.1594 13.0256 16.5526 13.1357 15.8039C13.2458 15.0557 12.7169 14.4492 11.9546 14.4492C11.192 14.4492 10.4847 15.0557 10.3747 15.8039C10.2649 16.5523 10.7935 17.1594 11.5558 17.1594Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M16.313 16.6268C16.041 16.011 15.2694 15.7999 14.5898 16.1561L11.4698 17.7899L8.83009 16.1561C8.25462 15.7999 7.42093 16.011 6.96795 16.6268C6.51498 17.2432 6.61432 18.0315 7.18978 18.3862L9.01833 19.5134L8.54504 22.737C8.53318 22.8192 8.5425 22.903 8.57636 22.98C8.67938 23.2131 8.97205 23.2936 9.23028 23.1587L10.802 22.3351L12.1327 23.1587C12.3511 23.2939 12.6681 23.2131 12.8391 22.98C12.8958 22.903 12.9294 22.8192 12.9421 22.737L13.4154 19.5134L15.5742 18.3862C16.2543 18.0315 16.5851 17.2432 16.313 16.6268Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M28.687 8.16087C27.9253 8.16087 27.395 7.55464 27.5051 6.80561C27.6148 6.05799 28.3221 5.45036 29.085 5.45036C29.8473 5.45036 30.3764 6.05771 30.2669 6.80561C30.156 7.55436 29.4493 8.16087 28.687 8.16087Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M24.0864 7.62859C24.5394 7.0122 25.3736 6.80166 25.9485 7.15727L28.5885 8.79221L31.7085 7.15727C32.3881 6.80166 33.16 7.0122 33.4315 7.62859C33.703 8.24497 33.3725 9.03351 32.6929 9.38912L30.5333 10.5152L30.0603 13.7382C30.0481 13.8206 30.0151 13.9047 29.9584 13.9815C29.786 14.2152 29.4696 14.2948 29.2511 14.1599L27.9204 13.3369L26.3484 14.1599C26.0916 14.2951 25.7978 14.2152 25.6948 13.9815C25.6612 13.9047 25.6519 13.8206 25.664 13.7382L26.1376 10.5152L24.3091 9.38912C23.7325 9.03323 23.6337 8.24469 24.0864 7.62859Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M27.3661 17.1594C26.6033 17.1594 26.0741 16.5526 26.1842 15.8039C26.2939 15.0557 27.0015 14.4492 27.7641 14.4492C28.5266 14.4492 29.055 15.0557 28.946 15.8039C28.8351 16.5523 28.1284 17.1594 27.3661 17.1594Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M22.7655 16.6268C23.2182 16.011 24.0516 15.7999 24.6277 16.1561L27.2665 17.7899L30.3865 16.1561C31.0667 15.7999 31.8386 16.011 32.1101 16.6268C32.3824 17.2432 32.0516 18.0315 31.3715 18.3862L29.2124 19.5134L28.7389 22.737C28.7273 22.8192 28.6943 22.903 28.6375 22.98C28.4651 23.2131 28.1493 23.2936 27.9303 23.1587L26.5996 22.3351L25.0276 23.1587C24.7696 23.2939 24.4775 23.2131 24.3739 22.98C24.3398 22.903 24.331 22.8192 24.3432 22.737L24.8162 19.5134L22.9873 18.3862C22.4116 18.0315 22.312 17.2432 22.7655 16.6268Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M18.7986 21.6567C19.5612 21.6567 20.2682 21.0499 20.3788 20.3011C20.488 19.5527 19.9586 18.9462 19.1963 18.9462C18.434 18.9462 17.7267 19.5524 17.6166 20.3011C17.5066 21.0499 18.0363 21.6567 18.7986 21.6567Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M23.5549 21.125C23.2831 20.5086 22.5115 20.2975 21.8319 20.6531L18.7125 22.2886L16.0731 20.6531C15.4976 20.2975 14.6631 20.5086 14.2101 21.125C13.7574 21.7408 13.8565 22.529 14.4325 22.8844L16.261 24.0099L15.7877 27.234C15.7759 27.3173 15.7844 27.4006 15.8185 27.477C15.9218 27.7107 16.2139 27.7906 16.4724 27.6557L18.0444 26.8327L19.3751 27.6557C19.5927 27.7909 19.91 27.7107 20.0818 27.477C20.1374 27.4006 20.1719 27.3173 20.1843 27.234L20.6573 24.0099L22.8158 22.8844C23.4965 22.5288 23.8278 21.7405 23.5549 21.125Z" fill="white"/>
+<path d="M3.52251 30.6069L3.29136 29.3409L2.55504 30.6069H3.52251ZM2.34986 30.94C2.1348 31.3517 1.93893 31.6895 1.7679 32.0649C1.68437 32.059 1.60704 32.0474 1.52237 32.0474C1.43798 32.0474 1.35134 32.059 1.26526 32.0649L3.48864 28.2972C3.55525 28.3082 3.6179 28.3138 3.68648 28.3138C3.75506 28.3138 3.81913 28.3082 3.89053 28.2972L4.65085 32.0753C4.49929 32.0649 4.35451 32.0471 4.20098 32.0471C4.04745 32.0471 3.89674 32.0646 3.74152 32.0753C3.6958 31.6735 3.65544 31.3037 3.58093 30.94H2.34986Z" fill="white"/>
+<path d="M6.11924 31.6565C6.57956 31.6565 6.97806 31.6179 7.34383 31.5809C7.31899 31.6565 7.28795 31.7381 7.27327 31.8146C7.25888 31.8908 7.25944 31.9718 7.25577 32.0471H5.25281L5.95273 28.3457C6.08284 28.3567 6.21153 28.3734 6.34361 28.3734C6.47541 28.3734 6.61116 28.3567 6.7455 28.3457L6.11924 31.6565Z" fill="white"/>
+<path d="M8.86782 31.6565C9.32728 31.6565 9.7255 31.6179 10.0918 31.5809C10.0673 31.6565 10.036 31.7381 10.0218 31.8146C10.0074 31.8908 10.0074 31.9718 10.0032 32.0471H8.0011L8.70046 28.3457C8.83113 28.3567 8.95982 28.3734 9.0919 28.3734C9.22399 28.3734 9.35889 28.3567 9.49351 28.3457L8.86782 31.6565Z" fill="white"/>
+<path d="M11.6806 30.3634C11.5468 31.0689 11.7164 31.8197 12.5095 31.8197C13.3232 31.8197 13.8458 30.9828 14.0166 30.08C14.1489 29.3795 13.9836 28.574 13.1919 28.574C12.4567 28.574 11.9103 29.1453 11.6806 30.3634ZM12.4214 32.1453C11.2539 32.1453 10.6002 31.4392 10.8333 30.205C11.0377 29.123 11.9693 28.2486 13.2845 28.2486C14.791 28.2486 15.0281 29.3406 14.8737 30.1833C14.679 31.2436 13.7157 32.1453 12.4214 32.1453Z" fill="white"/>
+<path d="M18.2068 31.4443L18.0016 31.9117C17.6528 32.081 17.2659 32.1453 16.9117 32.1453C15.7808 32.1453 15.06 31.4288 15.2714 30.3142C15.5386 28.8949 16.6125 28.2489 17.764 28.2489C18.1128 28.2489 18.5187 28.3409 18.7921 28.5151C18.7097 28.6996 18.6434 28.8845 18.5647 29.075H18.4904C18.3507 28.7812 18.051 28.574 17.7084 28.574C16.8307 28.574 16.3136 29.4388 16.1621 30.2378C15.9868 31.1671 16.3077 31.8196 17.1205 31.8196C17.4485 31.8196 17.8619 31.6466 18.1439 31.4118L18.2068 31.4443Z" fill="white"/>
+<path d="M20.7586 30.6069L20.5278 29.3409L19.7917 30.6069H20.7586ZM19.5868 30.94C19.3706 31.3517 19.1753 31.6895 19.0035 32.0649C18.9205 32.059 18.8432 32.0474 18.7588 32.0474C18.6744 32.0474 18.5875 32.059 18.502 32.0649L20.7256 28.2972C20.7917 28.3082 20.8546 28.3138 20.9229 28.3138C20.9906 28.3138 21.0558 28.3082 21.1258 28.2972L21.887 32.0753C21.7354 32.0649 21.5915 32.0471 21.4377 32.0471C21.2839 32.0471 21.1334 32.0646 20.9779 32.0753C20.9328 31.6735 20.8907 31.3037 20.8171 30.94H19.5868Z" fill="white"/>
+<path d="M23.9743 32.0753C23.8442 32.0649 23.7152 32.0471 23.5823 32.0471C23.4505 32.0471 23.3156 32.0646 23.1821 32.0753L23.8131 28.7321C23.4383 28.7321 23.0983 28.7696 22.816 28.8083C22.8409 28.7321 22.8705 28.6562 22.8866 28.574C22.9016 28.4978 22.8987 28.4225 22.9027 28.3457H25.6242C25.5999 28.4222 25.5703 28.4978 25.5548 28.574C25.5392 28.6562 25.5421 28.7324 25.5381 28.8083C25.2333 28.7696 24.9279 28.7321 24.6054 28.7321L23.9743 32.0753Z" fill="white"/>
+<path d="M26.3222 28.346C26.4523 28.357 26.5813 28.3737 26.7131 28.3737C26.8455 28.3737 26.9804 28.357 27.115 28.346L26.41 32.0756C26.2805 32.0652 26.1504 32.0474 26.0191 32.0474C25.8868 32.0474 25.7513 32.0649 25.6178 32.0756L26.3222 28.346Z" fill="white"/>
+<path d="M28.3065 30.3634C28.173 31.0689 28.3429 31.8197 29.136 31.8197C29.9496 31.8197 30.472 30.9828 30.643 30.08C30.776 29.3795 30.6112 28.574 29.8178 28.574C29.0837 28.574 28.5368 29.1453 28.3065 30.3634ZM29.0473 32.1453C27.8803 32.1453 27.2267 31.4392 27.4592 30.205C27.6639 29.123 28.5952 28.2486 29.9115 28.2486C31.4175 28.2486 31.654 29.3406 31.4996 30.1833C31.3057 31.2436 30.3428 32.1453 29.0473 32.1453Z" fill="white"/>
+<path d="M32.5763 28.346H33.099C33.69 29.1887 34.3216 30.0151 34.9016 30.8906L35.3822 28.346C35.4494 28.357 35.5211 28.3627 35.5899 28.3627C35.6588 28.3627 35.7344 28.357 35.8044 28.346L35.1 32.0756L34.6518 32.07C34.1718 31.3689 33.7275 30.6998 33.2528 30.0532L32.7936 29.4331L32.2958 32.0652C32.2292 32.0593 32.1558 32.0477 32.0886 32.0477C32.0198 32.0477 31.943 32.0593 31.8741 32.0652L32.5763 28.346Z" fill="white"/>
+<path d="M38.2603 29.0476C38.2101 28.7589 38.043 28.574 37.7416 28.574C37.3242 28.574 37.1182 28.7978 37.0603 29.1072C36.9215 29.8415 38.5541 29.7058 38.3182 30.9498C38.187 31.6466 37.5113 32.1459 36.692 32.1459C36.4016 32.1459 36.1033 32.0753 35.8851 31.9117C35.9915 31.6839 36.0934 31.4559 36.1696 31.221H36.2695C36.2777 31.5975 36.5216 31.8197 36.8865 31.8197C37.2139 31.8197 37.5401 31.6289 37.6107 31.2546C37.7755 30.3848 36.1417 30.6995 36.3892 29.3908C36.5072 28.764 37.0219 28.2486 37.8257 28.2486C38.2056 28.2486 38.5163 28.3954 38.6106 28.5088C38.5152 28.683 38.4277 28.8622 38.3394 29.0473H38.2603" fill="white"/>
+<path d="M3.98277 37.6341C3.83177 37.6225 3.68248 37.6053 3.52923 37.6053C3.37598 37.6053 3.21934 37.6225 3.06299 37.6341L3.88088 33.7865H6.21687C6.18752 33.8647 6.15168 33.9485 6.13446 34.0269C6.11809 34.1051 6.11866 34.1895 6.11414 34.268C5.74866 34.2287 5.35834 34.1898 4.71486 34.1898L4.4586 35.3957H5.10772C5.34705 35.3957 5.5971 35.3732 5.86042 35.3449C5.83135 35.4242 5.79551 35.5081 5.77886 35.5868C5.76249 35.665 5.76249 35.7494 5.75854 35.8278C5.50566 35.8053 5.26605 35.7776 5.02108 35.7776H4.37704L3.98277 37.6341Z" fill="white"/>
+<path d="M8.36977 36.1191L8.10193 34.8121L7.24848 36.1191H8.36977ZM7.01028 36.4614C6.76023 36.8882 6.53303 37.2353 6.33407 37.6222C6.23726 37.6166 6.14751 37.605 6.04958 37.605C5.95165 37.605 5.85089 37.6166 5.75183 37.6222L8.33082 33.736C8.40787 33.7459 8.4804 33.7526 8.55999 33.7526C8.63986 33.7526 8.71465 33.7461 8.79706 33.736L9.67902 37.6338C9.50375 37.6222 9.33611 37.605 9.15831 37.605C8.9805 37.605 8.80524 37.6222 8.6249 37.6338C8.57212 37.2181 8.52414 36.8379 8.43835 36.4614H7.01028Z" fill="white"/>
+<path d="M15.0032 33.7865C15.0859 33.7981 15.1683 33.8147 15.2547 33.8147C15.3402 33.8147 15.4356 33.7981 15.5239 33.7865C15.3935 35.2947 15.275 36.5179 15.2459 37.6341C15.0766 37.6225 14.9146 37.6053 14.7433 37.6053C14.5714 37.6053 14.4148 37.6225 14.2406 37.6341C14.3809 36.7428 14.441 35.884 14.5322 35.0195C13.8839 35.8784 13.2418 36.736 12.6215 37.6053C12.5447 37.5937 12.4719 37.5886 12.3892 37.6053C12.1615 36.8314 11.8617 35.9627 11.5826 35.0819C11.2318 36.0697 10.9685 36.8481 10.7828 37.6341C10.6874 37.6225 10.5993 37.6053 10.5011 37.6053C10.4026 37.6053 10.3134 37.6225 10.2133 37.6341C10.6733 36.5063 11.1457 35.205 11.6557 33.7865C11.7393 33.7981 11.8149 33.8147 11.9007 33.8147C11.9868 33.8147 12.0762 33.7981 12.1646 33.7865C12.4186 34.6673 12.7169 35.5417 13.0146 36.4225C13.6245 35.6252 14.3329 34.7455 15.0032 33.7865Z" fill="white"/>
+<path d="M16.9516 33.7865C17.1026 33.7981 17.2519 33.8147 17.406 33.8147C17.5587 33.8147 17.7156 33.7981 17.8714 33.7865L17.0535 37.6341C16.9031 37.6225 16.7535 37.6053 16.6 37.6053C16.4467 37.6053 16.2901 37.6225 16.134 37.6341L16.9516 33.7865Z" fill="white"/>
+<path d="M19.1793 37.2017C19.7135 37.2017 20.175 37.1619 20.6 37.1224C20.5718 37.2017 20.5351 37.2861 20.519 37.3643C20.5018 37.4425 20.5024 37.5268 20.497 37.6053H18.1746L18.986 33.7865C19.1372 33.7981 19.2868 33.8147 19.4401 33.8147C19.5927 33.8147 19.7499 33.7981 19.9055 33.7865L19.1793 37.2017Z" fill="white"/>
+<path d="M22.1797 33.7865C22.3307 33.7981 22.4806 33.8147 22.6327 33.8147C22.7865 33.8147 22.9443 33.7981 23.0995 33.7865L22.2822 37.6341C22.1306 37.6225 21.9813 37.6053 21.8281 37.6053C21.6748 37.6053 21.5182 37.6225 21.3618 37.6341L22.1797 33.7865Z" fill="white"/>
+<path d="M25.6062 36.1191L25.3384 34.8121L24.4852 36.1191H25.6062ZM24.2456 36.4614C23.9958 36.8882 23.7692 37.2353 23.5702 37.6222C23.4731 37.6166 23.384 37.605 23.2846 37.605C23.187 37.605 23.0868 37.6166 22.9874 37.6222L25.5661 33.736C25.6437 33.7459 25.7166 33.7526 25.7964 33.7526C25.8757 33.7526 25.9508 33.7461 26.0329 33.736L26.9149 37.6338C26.7396 37.6222 26.5709 37.605 26.3928 37.605C26.2153 37.605 26.0406 37.6222 25.8602 37.6338C25.8077 37.2181 25.76 36.8379 25.6739 36.4614H24.2456Z" fill="white"/>
+<path d="M28.5575 37.2017C29.0917 37.2017 29.5534 37.1619 29.9785 37.1224C29.9497 37.2017 29.9138 37.2861 29.8963 37.3643C29.8797 37.4425 29.8808 37.5268 29.876 37.6053H27.5527L28.3636 33.7865C28.5151 33.7981 28.6644 33.8147 28.8182 33.8147C28.9721 33.8147 29.1281 33.7981 29.2845 33.7865L28.5575 37.2017Z" fill="white"/>
+<path d="M33.8765 33.7865C33.8469 33.8647 33.8099 33.9485 33.7938 34.0269C33.7772 34.1051 33.7772 34.1895 33.7735 34.268C33.4097 34.2239 33.0019 34.1788 32.3728 34.1898L32.1177 35.3957H32.7549C33.0315 35.3957 33.2875 35.3732 33.5201 35.3449C33.4907 35.4242 33.4546 35.5081 33.4379 35.5868C33.4218 35.665 33.4218 35.7494 33.4176 35.8278C33.1978 35.8002 32.9508 35.7776 32.6739 35.7776H32.0361L31.7336 37.202C32.3604 37.1969 32.7837 37.1684 33.1667 37.1227C33.1379 37.202 33.1018 37.2864 33.0857 37.3645C33.0682 37.4427 33.0685 37.5271 33.0637 37.6056H30.7283L31.5402 33.7868H33.8765" fill="white"/>
+<path d="M36.4691 34.5096C36.4084 34.2118 36.2171 34.0213 35.8677 34.0213C35.3831 34.0213 35.1446 34.2516 35.076 34.5714C34.9146 35.3289 36.8086 35.1877 36.5357 36.4724C36.3825 37.1901 35.5993 37.7072 34.6493 37.7072C34.3115 37.7072 33.9652 37.6338 33.7129 37.4653C33.8368 37.2299 33.9542 36.9946 34.042 36.7533H34.1594C34.1687 37.1402 34.4509 37.3696 34.8743 37.3696C35.2536 37.3696 35.6329 37.1741 35.7153 36.7877C35.9055 35.8896 34.0092 36.2151 34.2965 34.8635C34.4343 34.218 35.0315 33.6855 35.9634 33.6855C36.4042 33.6855 36.7643 33.837 36.8741 33.955C36.7624 34.1336 36.6624 34.3188 36.56 34.5101H36.4691" fill="white"/>
 </svg>
diff --git a/src/assets/logos/aidantsConnect.svg b/src/assets/logos/aidantsConnect.svg
index 82d3c8936..0a2279e41 100644
--- a/src/assets/logos/aidantsConnect.svg
+++ b/src/assets/logos/aidantsConnect.svg
@@ -1,22 +1,22 @@
-<svg id="aidants.svg" width="120" height="56" viewBox="0 0 120 56" fill="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"/>
+<svg id="aidants.svg" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M5.4836 23.3733C5.37894 23.2172 5.27428 23.076 5.1472 22.9422C4.75847 22.526 4.28004 22.2881 3.70443 22.2584C2.84475 22.2212 2.14953 22.526 1.701 23.2841C1.20761 24.1165 1.32722 25.2611 1.96264 25.9523C2.35136 26.376 2.84475 26.5766 3.41288 26.6138C3.9885 26.651 4.49683 26.5023 4.93789 26.1307C5.12477 25.9672 5.28924 25.7888 5.42379 25.5733C5.46865 25.5064 5.49107 25.5138 5.55088 25.551C5.8499 25.7665 6.14892 25.9746 6.44794 26.1827C6.50774 26.2199 6.50027 26.2496 6.47036 26.3016C5.95455 27.1341 5.20701 27.6395 4.24267 27.8179C3.29328 27.9962 2.38874 27.8476 1.57391 27.3273C0.676852 26.7476 0.146091 25.9152 0.0264831 24.8523C-0.0931249 23.8118 0.190944 22.8901 0.908592 22.1172C1.46925 21.5077 2.17943 21.1584 2.99426 21.0395C3.70443 20.9354 4.3847 21.0097 5.04254 21.307C5.65553 21.582 6.13397 22.0131 6.48532 22.5854C6.50774 22.6151 6.53764 22.6449 6.47784 22.682C6.14144 22.905 5.81252 23.1429 5.4836 23.3733Z" fill="#003188"/>
+<path d="M20.7411 23.2172C20.8009 23.1652 20.8533 23.1206 20.9056 23.0834C21.3467 22.7489 21.8475 22.6375 22.3858 22.6746C22.8418 22.7043 23.2454 22.8604 23.5669 23.1949C23.8659 23.507 24.0154 23.8861 24.0677 24.3023C24.0902 24.4361 24.0902 24.5699 24.0902 24.7037C24.0902 25.6922 24.0902 26.6881 24.0902 27.6767C24.0902 27.7584 24.0677 27.7733 23.993 27.7733C23.6043 27.7658 23.2081 27.7658 22.8193 27.7733C22.7446 27.7733 22.7222 27.751 22.7296 27.6767C22.7296 26.7253 22.7296 25.7739 22.7296 24.83C22.7296 24.4064 22.4904 24.057 22.1166 23.9456C21.5036 23.7672 20.8608 24.1091 20.8533 24.8523C20.8458 25.7888 20.8533 26.7253 20.8533 27.6692C20.8533 27.7584 20.8308 27.7733 20.7411 27.7733C20.3449 27.7658 19.9487 27.7658 19.56 27.7733C19.4927 27.7733 19.4778 27.7584 19.4778 27.6915C19.4778 26.0861 19.4778 24.4733 19.4778 22.8679C19.4778 22.801 19.5002 22.7861 19.56 22.7861C19.9263 22.7861 20.2926 22.7861 20.6514 22.7861C20.7187 22.7861 20.7337 22.8084 20.7337 22.8679C20.7337 22.9719 20.7411 23.0834 20.7411 23.2172Z" fill="#003188"/>
+<path d="M23.2155 15.6138C23.2753 15.5618 23.3201 15.5246 23.365 15.4875C23.8583 15.1084 24.419 14.9969 25.0245 15.0861C25.5852 15.1604 26.0188 15.4354 26.3028 15.926C26.4897 16.253 26.572 16.6023 26.572 16.9739C26.572 18.0071 26.572 19.0402 26.572 20.0733C26.572 20.1402 26.557 20.155 26.4897 20.155C26.0935 20.155 25.6973 20.1476 25.3086 20.155C25.2338 20.155 25.2114 20.1402 25.2114 20.0584C25.2114 19.1071 25.2114 18.1557 25.2114 17.1969C25.2114 16.803 24.9946 16.476 24.6507 16.3422C24.2844 16.201 23.8509 16.2827 23.5892 16.5577C23.4023 16.751 23.3351 16.9888 23.3351 17.2489C23.3351 18.178 23.3351 19.1145 23.3351 20.0435C23.3351 20.1253 23.3201 20.155 23.2304 20.155C22.8342 20.1476 22.438 20.1476 22.0493 20.155C21.982 20.155 21.967 20.1402 21.967 20.0733C21.967 18.4604 21.967 16.855 21.967 15.2422C21.967 15.1753 21.9895 15.1604 22.0493 15.1604C22.4156 15.1604 22.7819 15.1604 23.1407 15.1604C23.208 15.1604 23.2229 15.1827 23.2229 15.2422C23.208 15.3685 23.2155 15.48 23.2155 15.6138Z" fill="#003188"/>
+<path d="M14.9626 23.2172C15.5158 22.7266 16.1437 22.5854 16.839 22.7043C17.579 22.8232 18.1173 23.3732 18.2593 24.1239C18.2967 24.3097 18.3116 24.4955 18.3116 24.6888C18.3116 25.6847 18.3116 26.6807 18.3116 27.6692C18.3116 27.7435 18.2967 27.7658 18.2145 27.7658C17.8257 27.7584 17.4295 27.7584 17.0408 27.7658C16.9586 27.7658 16.9436 27.7435 16.9436 27.6692C16.9436 26.7253 16.9436 25.7739 16.9436 24.83C16.9436 24.4063 16.7119 24.057 16.3306 23.9381C15.7401 23.7523 15.0673 24.0793 15.0673 24.8449C15.0598 25.7888 15.0673 26.7253 15.0673 27.6692C15.0673 27.7509 15.0448 27.7732 14.9626 27.7732C14.5739 27.7658 14.1777 27.7732 13.789 27.7732C13.7217 27.7732 13.6918 27.7584 13.6918 27.6841C13.6918 26.0786 13.6918 24.4807 13.6918 22.8753C13.6918 22.8009 13.7142 22.7861 13.789 22.7861C14.1478 22.7935 14.5141 22.7935 14.8729 22.7861C14.9402 22.7861 14.9626 22.8009 14.9551 22.8678C14.9551 22.9719 14.9626 23.0908 14.9626 23.2172Z" fill="#003188"/>
+<path d="M33.5616 22.6597C34.2718 22.6672 34.8773 22.8753 35.3707 23.3658C35.5052 23.507 35.6248 23.6557 35.722 23.8266C35.7519 23.8786 35.7519 23.9009 35.6996 23.9381C35.4155 24.1536 35.1389 24.3692 34.8549 24.5847C34.8025 24.6219 34.7876 24.6145 34.7577 24.5699C34.5858 24.3172 34.3764 24.1091 34.0849 23.9901C33.3598 23.7077 32.4328 24.0719 32.2983 25.0381C32.2459 25.4246 32.3132 25.7888 32.5449 26.1084C33.0009 26.7327 33.9354 26.7996 34.5035 26.2496C34.6007 26.1604 34.6829 26.0638 34.7577 25.9523C34.7801 25.9151 34.8025 25.9077 34.8399 25.9374C35.124 26.1604 35.4081 26.3759 35.6996 26.5915C35.7594 26.6361 35.737 26.6658 35.7071 26.703C35.3557 27.2753 34.8474 27.6543 34.1896 27.803C33.0458 28.0631 31.7974 27.6097 31.2068 26.5172C30.3696 24.9861 31.1919 23.0462 33.0458 22.6969C33.2327 22.682 33.4046 22.6672 33.5616 22.6597Z" fill="#003188"/>
+<path d="M33.7185 20.2739C33.0158 20.2665 32.3879 20.0584 31.8721 19.5678C31.8048 19.5009 31.7375 19.4192 31.6702 19.3523C31.6403 19.3226 31.6478 19.2928 31.6702 19.2631C31.8721 19.0253 32.0739 18.78 32.2757 18.5347C32.3206 18.4827 32.3356 18.4901 32.3804 18.5347C32.6495 18.7949 32.956 19.0104 33.3223 19.107C33.5615 19.1665 33.8008 19.1813 34.04 19.1145C34.1072 19.0996 34.1671 19.0699 34.2269 19.0253C34.4212 18.884 34.4212 18.6313 34.2269 18.4901C34.1147 18.4009 33.9802 18.3563 33.8456 18.2969C33.5316 18.1631 33.2027 18.0442 32.8962 17.8881C32.5972 17.7395 32.3206 17.5536 32.1412 17.2638C31.7151 16.5874 31.9917 15.6584 32.7093 15.2867C33.113 15.0861 33.5391 15.0266 33.9802 15.0563C34.5707 15.0935 35.094 15.3016 35.5201 15.7178C35.5799 15.7773 35.6023 15.8145 35.5351 15.8962C35.3407 16.1192 35.1538 16.3496 34.9669 16.5874C34.9221 16.6469 34.8997 16.6395 34.8473 16.5949C34.5109 16.3124 34.1297 16.1489 33.6811 16.1786C33.584 16.1861 33.4943 16.2084 33.4046 16.253C33.2177 16.3645 33.1952 16.6023 33.3597 16.7509C33.4419 16.8253 33.5466 16.8699 33.6438 16.9145C34.0026 17.0705 34.3764 17.2043 34.7277 17.3753C34.9071 17.4645 35.0791 17.5759 35.236 17.7023C35.6098 18.0293 35.722 18.4455 35.6547 18.9138C35.55 19.6124 35.094 19.9915 34.4436 20.1847C34.2119 20.2516 33.9727 20.2813 33.7185 20.2739Z" fill="#003188"/>
+<path d="M37.0378 25.2165C37.0378 24.7632 37.0378 24.3841 37.0378 24.0051C37.0378 23.9456 37.0228 23.9233 36.9555 23.9233C36.7462 23.9307 36.5294 23.9233 36.3201 23.9233C36.2603 23.9233 36.2454 23.9084 36.2454 23.849C36.2454 23.5145 36.2454 23.1801 36.2454 22.8456C36.2454 22.7861 36.2678 22.7713 36.3201 22.7713C36.5294 22.7713 36.7462 22.7713 36.9555 22.7713C37.0228 22.7713 37.0378 22.749 37.0378 22.6895C37.0378 22.3253 37.0378 21.9611 37.0378 21.5969C37.0378 21.5226 37.0602 21.5078 37.1275 21.5078C37.5312 21.5078 37.9274 21.5152 38.331 21.5078C38.4133 21.5078 38.4207 21.53 38.4207 21.6044C38.4207 21.9686 38.4207 22.3253 38.4207 22.6895C38.4207 22.7564 38.4432 22.7713 38.503 22.7713C38.9216 22.7713 39.3402 22.7713 39.7589 22.7713C39.8187 22.7713 39.8411 22.7861 39.8411 22.8456C39.8411 23.1801 39.8336 23.5071 39.8411 23.8415C39.8411 23.9159 39.8187 23.9233 39.7514 23.9233C39.3328 23.9233 38.9216 23.9233 38.503 23.9233C38.4282 23.9233 38.4133 23.9382 38.4133 24.0125C38.4133 24.6442 38.4133 25.276 38.4133 25.9078C38.4133 26.3611 38.645 26.6064 39.1085 26.651C39.3776 26.6733 39.6542 26.6436 39.9233 26.6287C39.9831 26.6213 39.9981 26.6361 39.9981 26.6956C39.9981 27.0301 39.9981 27.3645 39.9981 27.699C39.9981 27.7287 40.013 27.7584 39.9607 27.7733C39.3701 27.9071 38.787 27.9442 38.2039 27.7659C37.5386 27.5578 37.1798 27.0895 37.0826 26.4206C37.0079 25.9969 37.0527 25.5659 37.0378 25.2165Z" fill="#003188"/>
+<path d="M29.5248 17.4422C29.5322 17.7246 29.5023 18.0739 29.5397 18.4233C29.5696 18.7652 29.7565 18.9584 30.1004 19.0253C30.3546 19.0699 30.6087 19.055 30.8704 19.0327C30.9077 19.0327 30.9451 19.0253 30.99 19.0253C31.1171 19.0179 31.1171 19.0179 31.1171 19.1516C31.1171 19.4638 31.1171 19.7685 31.1171 20.0807C31.1171 20.1179 31.1245 20.1625 31.0647 20.1699C30.4742 20.3037 29.8836 20.3334 29.293 20.1476C28.6651 19.9469 28.3137 19.5084 28.2016 18.8692C28.1717 18.7057 28.1642 18.5422 28.1642 18.3712C28.1642 17.7172 28.1642 17.0631 28.1642 16.4091C28.1642 16.3273 28.1418 16.305 28.0596 16.305C27.8503 16.3125 27.6484 16.305 27.4391 16.305C27.3868 16.305 27.3718 16.2902 27.3718 16.2381C27.3718 15.8962 27.3718 15.5618 27.3718 15.2199C27.3718 15.1679 27.3868 15.153 27.4391 15.153C27.6484 15.153 27.8652 15.153 28.0745 15.153C28.1418 15.153 28.1568 15.1381 28.1568 15.0712C28.1568 14.707 28.1568 14.3429 28.1568 13.9787C28.1568 13.9118 28.1717 13.8969 28.239 13.8969C28.6427 13.8969 29.0463 13.8969 29.45 13.8969C29.5098 13.8969 29.5322 13.9118 29.5322 13.9787C29.5322 14.3429 29.5322 14.707 29.5322 15.0712C29.5322 15.1456 29.5547 15.1604 29.622 15.1604C30.0406 15.1604 30.4517 15.1604 30.8704 15.1604C30.9376 15.1604 30.9601 15.1753 30.9601 15.2496C30.9526 15.5766 30.9601 15.9111 30.9601 16.2381C30.9601 16.305 30.9376 16.3199 30.8778 16.3125C30.4592 16.3125 30.0406 16.3125 29.622 16.3125C29.5547 16.3125 29.5322 16.3273 29.5322 16.4016C29.5248 16.7287 29.5248 17.0557 29.5248 17.4422Z" fill="#003188"/>
+<path d="M8.70557 17.6651C8.70557 18.4604 8.70557 19.2631 8.70557 20.0584C8.70557 20.1402 8.68314 20.155 8.60091 20.155C8.21219 20.1476 7.81599 20.155 7.42726 20.155C7.35998 20.155 7.33008 20.1402 7.33008 20.0658C7.33008 18.4604 7.33008 16.8624 7.33008 15.257C7.33008 15.1901 7.34503 15.1678 7.41978 15.1678C7.82346 15.1678 8.21966 15.1753 8.62334 15.1678C8.6981 15.1678 8.70557 15.1976 8.70557 15.257C8.70557 16.0597 8.70557 16.8624 8.70557 17.6651Z" fill="#003188"/>
+<path d="M14.9849 12.6036C14.5962 12.6036 14.2 12.6111 13.8113 12.6036C13.7291 12.6036 13.6992 12.6185 13.6992 12.7077C13.7066 13.555 13.6992 14.4097 13.6992 15.257C13.6992 15.3834 13.6992 15.5023 13.6992 15.6509C13.6543 15.6138 13.6319 15.584 13.602 15.5618C13.1609 15.1678 12.6376 15.034 12.062 15.0712C11.1351 15.1307 10.4623 15.5766 10.0511 16.4016C9.74461 17.0185 9.69976 17.6726 9.84179 18.3415C9.94645 18.8469 10.1857 19.2928 10.5669 19.657C11.0603 20.1178 11.6583 20.3111 12.3311 20.2814C12.817 20.2591 13.2581 20.1178 13.6169 19.7759C13.6842 19.7165 13.744 19.6422 13.8113 19.5678C13.8113 19.7462 13.8113 19.9097 13.8113 20.0732C13.8113 20.1327 13.8188 20.1624 13.8935 20.1624C14.2598 20.155 14.6261 20.155 14.9999 20.1624C15.0672 20.1624 15.0821 20.1401 15.0821 20.0732C15.0821 17.6131 15.0821 15.153 15.0821 12.6854C15.0821 12.6111 15.0522 12.6036 14.9849 12.6036ZM13.6618 18.1482C13.5048 18.6982 13.0488 19.0327 12.4657 19.0327C11.7854 19.0327 11.2472 18.5496 11.1799 17.8658C11.1425 17.4868 11.1949 17.13 11.4191 16.8178C11.748 16.3719 12.204 16.2158 12.7348 16.3273C13.2656 16.4313 13.5721 16.7807 13.6842 17.3009C13.7515 17.5759 13.744 17.8658 13.6618 18.1482Z" fill="#003188"/>
+<path d="M6.47784 20.0732C6.32833 19.7091 6.17882 19.3374 6.02931 18.9732C5.28176 17.1374 4.53421 15.2942 3.78666 13.4584C3.76423 13.4063 3.73433 13.3915 3.682 13.3915C3.44278 13.3915 3.19609 13.3989 2.95688 13.3915C2.87465 13.3915 2.83727 13.4212 2.80737 13.4955C2.38126 14.5435 1.95516 15.5915 1.52158 16.6395C1.0581 17.7766 0.587142 18.9212 0.116185 20.0658C0.0937585 20.1253 0.086283 20.155 0.168514 20.155C0.602093 20.1476 1.04315 20.155 1.47673 20.155C1.53653 20.155 1.56643 20.1327 1.58886 20.0807C1.69352 19.8354 1.79817 19.5901 1.90283 19.3449C1.91778 19.3003 1.94021 19.2928 1.98506 19.2928C2.85222 19.2928 3.72685 19.2928 4.59401 19.2928C4.64634 19.2928 4.66877 19.3077 4.68372 19.3523C4.78837 19.5976 4.89303 19.8428 4.99769 20.0881C5.02011 20.1401 5.04254 20.1624 5.10235 20.155C5.31914 20.155 5.53592 20.155 5.76019 20.155C5.98445 20.155 6.19377 20.155 6.41803 20.155C6.50026 20.1624 6.50774 20.1401 6.47784 20.0732ZM2.41116 18.1705C2.70271 17.3084 3.00173 16.4462 3.30075 15.5692C3.59977 16.4462 3.89131 17.3084 4.19033 18.1705C3.59229 18.1705 3.0092 18.1705 2.41116 18.1705Z" fill="#003188"/>
+<path d="M12.4656 24.4955C12.0993 23.3435 10.9406 22.578 9.69968 22.6746C9.01941 22.7266 8.41389 22.9645 7.94294 23.455C7.21034 24.2131 7.02345 25.1124 7.33742 26.1009C7.67382 27.1712 8.70544 27.8773 9.90152 27.8773C10.1108 27.8699 10.3426 27.8476 10.5743 27.7881C12.0545 27.4314 12.9216 25.9226 12.4656 24.4955ZM10.2529 26.5692C9.47541 26.7773 8.72039 26.3388 8.60826 25.4915C8.54098 24.9935 8.66059 24.5476 9.04184 24.2057C9.6623 23.6557 10.8135 23.834 11.1125 24.8374C11.135 24.9118 11.1499 24.9935 11.1649 25.0753C11.1724 25.1422 11.1724 25.2016 11.1798 25.2685C11.1798 25.9003 10.821 26.4205 10.2529 26.5692Z" fill="#003188"/>
+<path d="M20.6439 17.2415C20.6439 17.0408 20.629 16.8402 20.5916 16.6395C20.4645 15.978 20.1132 15.4875 19.4778 15.2348C18.9769 15.0341 18.4611 15.0192 17.9378 15.1084C17.2874 15.2199 16.7641 15.5544 16.338 16.0449C16.3081 16.0746 16.3081 16.0969 16.338 16.1341C16.5548 16.3794 16.7641 16.6321 16.9735 16.8848C17.0034 16.9219 17.0258 16.9294 17.0632 16.8848C17.1155 16.8327 17.1678 16.7807 17.2202 16.7287C17.5715 16.3942 17.9827 16.201 18.4835 16.2456C18.8199 16.2753 19.089 16.4165 19.2161 16.751C19.2759 16.9145 19.2684 17.0854 19.2759 17.2489C19.2759 17.3158 19.2535 17.3307 19.1937 17.3307C18.79 17.3307 18.3863 17.3307 17.9827 17.3307C17.6612 17.3307 17.3472 17.3827 17.0482 17.4942C15.8596 17.9402 15.9418 19.3152 16.5997 19.8652C16.8912 20.103 17.2276 20.2294 17.5939 20.2591C18.1396 20.3111 18.6554 20.2219 19.1115 19.9098C19.2086 19.8429 19.2909 19.7685 19.388 19.6868C19.388 19.8206 19.3955 19.9395 19.388 20.0584C19.388 20.1327 19.403 20.155 19.4778 20.155C19.8291 20.1476 20.1804 20.1476 20.5318 20.155C20.6215 20.155 20.6439 20.1402 20.6439 20.0435C20.6439 19.1145 20.6439 18.178 20.6439 17.2415ZM18.2817 19.278C18.1097 19.2854 17.9453 19.2706 17.7958 19.1962C17.5939 19.0996 17.4818 18.9138 17.5042 18.6983C17.5266 18.4753 17.6463 18.3415 17.878 18.2746C17.9901 18.2449 18.1023 18.2375 18.2144 18.2375C18.3564 18.2375 18.4985 18.2375 18.633 18.2375C18.8199 18.2375 19.0068 18.2375 19.2012 18.2375C19.261 18.2375 19.2759 18.2598 19.2759 18.3118C19.2535 18.8395 18.8274 19.2631 18.2817 19.278Z" fill="#003188"/>
+<path d="M10.0885 14.603C9.9988 14.5361 9.90909 14.4692 9.81938 14.4023C9.73715 14.3131 9.65492 14.2165 9.58764 14.1199C9.49046 13.9266 9.40075 13.7334 9.3858 13.5104C9.3858 13.5104 9.3858 13.503 9.37833 13.503C9.37833 13.503 9.37833 13.5104 9.3858 13.5104C9.3858 13.3915 9.37833 13.2726 9.40076 13.1537C9.43066 12.9679 9.50541 12.8043 9.58764 12.6408C9.6624 12.5516 9.73715 12.455 9.81938 12.3658C9.90909 12.2841 10.0063 12.2172 10.1109 12.1577C10.2604 12.0908 10.4174 12.0388 10.5819 12.0016C10.4324 12.0016 10.2829 12.0016 10.1334 12.0016C10.0287 12.0016 9.93152 12.0016 9.82686 12.0016C9.74463 12.0016 9.6624 12.0016 9.57269 12.0016C9.49794 12.0016 9.43066 12.0016 9.3559 12.0016C9.28862 12.0016 9.22134 12.0016 9.16154 12.0016C9.10173 12.0016 9.04193 12.0016 8.98213 12.0016C8.92232 12.0016 8.86252 12.0016 8.80271 12.0016C8.74291 12.0016 8.68311 12.0016 8.6233 12.0016C8.5635 12.0016 8.50369 12.0016 8.44389 12.0016C8.38409 12.0016 8.32428 12.0016 8.26448 12.0016C8.21215 12.0016 8.15982 12.0016 8.10002 12.0016C8.04769 12.0016 7.99536 12.0016 7.93556 12.0016C7.86828 11.9942 7.801 12.0165 7.74119 12.0165C7.64401 12.0314 7.54683 12.076 7.45712 12.1057C7.35994 12.1429 7.27771 12.2097 7.18801 12.2692C7.1581 12.2915 7.1282 12.3064 7.0983 12.3287C6.97122 12.4476 6.86656 12.5591 6.87403 12.7672C6.88899 13.2057 6.88151 13.6516 6.87403 14.0902C6.87403 14.157 6.88151 14.2165 6.92636 14.2685C7.00112 14.3429 7.0684 14.432 7.16558 14.4915C7.25529 14.5584 7.34499 14.6179 7.44965 14.655C7.53188 14.707 7.62159 14.7293 7.71877 14.7442C7.78605 14.7665 7.8608 14.7665 7.93556 14.7814C7.98788 14.7814 8.04021 14.7814 8.10002 14.7814C8.15235 14.7814 8.20467 14.7814 8.26448 14.7814C8.32428 14.7814 8.38409 14.7814 8.44389 14.7814C8.50369 14.7814 8.5635 14.7814 8.6233 14.7814C8.68311 14.7814 8.74291 14.7814 8.80271 14.7814C8.86252 14.7814 8.92232 14.7814 8.98213 14.7814C9.04193 14.7814 9.10173 14.7814 9.16154 14.7814C9.22134 14.7814 9.28115 14.7814 9.34095 14.7814C9.41571 14.7814 9.49794 14.7814 9.57269 14.7814C9.64745 14.7814 9.72968 14.7814 9.80443 14.7814C9.90161 14.7814 9.9988 14.7814 10.0885 14.7814C10.2604 14.7814 10.4399 14.7814 10.6118 14.7814C10.4324 14.7368 10.253 14.6848 10.0885 14.603Z" fill="url(#paint0_linear_5665_162221)"/>
+<path d="M10.552 12.0091C10.9407 11.9719 11.2995 12.0462 11.6135 12.2841C12.0545 12.6185 12.2564 13.1908 12.1218 13.7334C11.9873 14.276 11.5312 14.6773 10.9781 14.7665C10.8435 14.7888 10.7164 14.7814 10.5819 14.7814C10.395 14.7814 10.223 14.7219 10.0586 14.6327C9.96139 14.5733 9.86421 14.5064 9.78198 14.4246C9.6848 14.3354 9.61004 14.2388 9.53529 14.1273C9.43063 13.9341 9.33345 13.7408 9.33345 13.5178C9.3185 13.28 9.34092 13.0496 9.4381 12.8341C9.46801 12.7746 9.49791 12.7151 9.52781 12.6631C9.59509 12.5591 9.67732 12.4624 9.7745 12.3733C9.86421 12.2841 9.96139 12.2097 10.0735 12.1577C10.2305 12.0685 10.3875 12.0165 10.552 12.0091Z" fill="#FE3954"/>
+<path d="M30.093 24.674C30.0182 24.0868 29.7715 23.5888 29.3155 23.2098C28.725 22.7192 28.0297 22.578 27.2897 22.7044C26.0487 22.9125 25.1741 23.9084 25.1218 25.1571C25.0769 26.2942 25.7048 27.2902 26.7589 27.6767C27.8653 28.0855 28.8969 27.9071 29.8313 27.1787C29.8762 27.1415 29.8687 27.1192 29.8463 27.0821C29.6818 26.8145 29.5174 26.5544 29.3604 26.2868C29.323 26.2199 29.2931 26.2199 29.2333 26.2645C28.7474 26.6213 28.2017 26.7848 27.5887 26.6882C27.0654 26.6064 26.7066 26.3314 26.5272 25.826C26.5047 25.7517 26.5047 25.7294 26.5944 25.7294C27.1476 25.7368 27.7008 25.7294 28.254 25.7294C28.8147 25.7294 29.3753 25.7294 29.936 25.7294C29.9883 25.7294 30.0182 25.7219 30.0332 25.6551C30.1004 25.3355 30.1378 25.0084 30.093 24.674ZM28.6876 24.7706C28.3362 24.7632 27.9924 24.7706 27.641 24.7706C27.2897 24.7706 26.9383 24.7706 26.587 24.7706C26.5496 24.7706 26.5047 24.7855 26.5272 24.7111C26.6692 24.2429 26.9533 23.9084 27.4541 23.7895C27.9699 23.6706 28.5007 23.9084 28.7025 24.3469C28.7474 24.451 28.7698 24.555 28.7848 24.6665C28.7922 24.7483 28.7773 24.7706 28.6876 24.7706Z" fill="#003188"/>
 <defs>
-<linearGradient id="paint0_linear" x1="34.4071" y1="15.7001" x2="41.6955" y2="15.7001" gradientUnits="userSpaceOnUse">
+<linearGradient id="paint0_linear_5665_162221" x1="6.87565" y1="13.3847" x2="10.6134" y2="13.3847" gradientUnits="userSpaceOnUse">
 <stop stop-color="white"/>
 <stop offset="1" stop-color="#FEACB7"/>
 </linearGradient>
diff --git a/src/assets/logos/cpam.svg b/src/assets/logos/cpam.svg
index a6b0447d4..b44b89bd4 100644
--- a/src/assets/logos/cpam.svg
+++ b/src/assets/logos/cpam.svg
@@ -1,60 +1,60 @@
-<svg id="cpam" width="120" height="56" viewBox="0 0 120 56" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M27.0332 29.1903H41.4479V29.0112H27.0332V29.1903Z" fill="#95C11F"/>
-<path d="M27.3232 25.1342H43.2304V24.9552H27.3232V25.1342Z" fill="#95C11F"/>
-<path d="M27.0332 21.0762H43.4411V20.8978H27.0332V21.0762Z" fill="#95C11F"/>
-<path d="M27.0332 17.0202H43.4411V16.8404H27.0332V17.0202Z" fill="#95C11F"/>
-<path d="M27.0332 12.9628H43.4411V12.783H27.0332V12.9628Z" fill="#95C11F"/>
-<path d="M21.8098 21.2486C21.88 21.1426 21.9351 20.989 21.9386 20.8244C21.9427 20.5799 21.818 20.4345 21.6293 20.4318C21.4592 20.429 21.3545 20.5261 21.2574 20.7741C21.1417 21.0744 20.9791 21.259 20.7209 21.2535C20.4323 21.2493 20.2222 21.0069 20.2284 20.646C20.2318 20.4593 20.2787 20.3202 20.3262 20.241L20.5197 20.3106C20.4839 20.367 20.4288 20.491 20.4261 20.6584C20.4219 20.9105 20.5714 21.0096 20.6974 21.0117C20.871 21.0145 20.9585 20.9036 21.0618 20.6494C21.1906 20.3381 21.3421 20.1838 21.6135 20.1894C21.8993 20.1942 22.1466 20.4077 22.139 20.8443C22.1355 21.0227 22.077 21.2176 22.0088 21.3148L21.8098 21.2486Z" fill="#005DA9"/>
-<path d="M21.4455 18.5322L21.3456 19.2423L22.0068 19.3353L22.1184 18.5405L22.3174 18.5687L22.1721 19.6032L20.3373 19.3449L20.4764 18.3511L20.6755 18.3786L20.5701 19.1335L21.1486 19.2148L21.2485 18.504L21.4455 18.5322ZM20.0453 18.3786L20.3173 18.7754L20.2898 18.9689L20.0046 18.6672L20.0453 18.3786Z" fill="#005DA9"/>
-<path d="M22.7238 16.758C22.7424 16.8524 22.7369 17.0356 22.6763 17.2532C22.5358 17.756 22.1136 18.0439 21.5247 17.8793C20.9641 17.7223 20.6934 17.2388 20.8483 16.6857C20.9096 16.466 20.9971 16.3365 21.046 16.2835L21.2175 16.3951C21.1507 16.4674 21.0853 16.5831 21.0433 16.7319C20.9269 17.1499 21.117 17.5026 21.5853 17.6334C22.0247 17.756 22.3739 17.5825 22.4938 17.1506C22.5337 17.0074 22.5447 16.8558 22.5254 16.7512L22.7238 16.758Z" fill="#005DA9"/>
-<path d="M21.3538 15.3282L22.3594 15.7731C22.7368 15.9398 22.9724 15.8434 23.0722 15.6175C23.1831 15.3681 23.0888 15.1312 22.7168 14.9659L21.712 14.5217L21.8098 14.3006L22.8002 14.7386C23.3202 14.9694 23.4104 15.3358 23.2472 15.7036C23.0943 16.0507 22.7823 16.2249 22.254 15.9915L21.2567 15.5493L21.3538 15.3282Z" fill="#005DA9"/>
-<path d="M23.1231 13.7365L23.2533 13.5292C23.389 13.3129 23.3573 13.1008 23.1782 12.9872C22.9751 12.8611 22.7939 12.9513 22.6596 13.1655C22.5983 13.2633 22.5653 13.337 22.5529 13.3784L23.1231 13.7365ZM22.2836 13.4913C22.3263 13.3763 22.4069 13.2179 22.4923 13.0801C22.6286 12.8639 22.7595 12.7489 22.9096 12.7062C23.026 12.671 23.1617 12.6931 23.285 12.7702C23.4896 12.8983 23.544 13.118 23.4978 13.3157L23.504 13.3198C23.6204 13.2275 23.7781 13.2255 23.9648 13.2888C24.2176 13.3749 24.3911 13.4328 24.4717 13.4404L24.3388 13.6497C24.2795 13.6477 24.1225 13.5974 23.9007 13.5175C23.6549 13.4273 23.5199 13.4624 23.3966 13.6415L23.276 13.8322L23.9565 14.26L23.8291 14.4624L22.2836 13.4913Z" fill="#005DA9"/>
-<path d="M23.5544 11.6062L25.0077 12.7557L24.8569 12.9458L23.4043 11.7963L23.5544 11.6062Z" fill="#005DA9"/>
-<path d="M24.4717 10.8617L24.0812 11.2688L23.9338 11.1283L24.8829 10.1372L25.0296 10.2777L24.6391 10.6868L25.8299 11.8273L25.6633 12.0023L24.4717 10.8617Z" fill="#005DA9"/>
-<path d="M25.7742 8.82096L25.7081 9.29757L25.5572 9.42155L25.5497 9.00692L25.7742 8.82096ZM26.7047 9.87887L26.1516 10.3355L26.5773 10.8514L27.1964 10.3389L27.3232 10.4939L26.5187 11.1592L25.3375 9.73148L26.1124 9.09164L26.2398 9.24661L25.653 9.73148L26.0263 10.1826L26.5786 9.72528L26.7047 9.87887Z" fill="#005DA9"/>
-<path d="M28.4306 9.40778C28.5567 9.41742 28.7178 9.39056 28.8625 9.31205C29.0781 9.19496 29.1435 9.01658 29.0533 8.84921C28.9734 8.69907 28.8377 8.65705 28.5732 8.69356C28.2543 8.74039 28.0139 8.68943 27.8914 8.46145C27.7536 8.20731 27.8631 7.90495 28.1792 7.73414C28.3439 7.64529 28.4878 7.61705 28.5808 7.6205L28.6152 7.82299C28.5477 7.81954 28.4134 7.83263 28.2667 7.91184C28.0436 8.03237 28.0312 8.21144 28.0918 8.32301C28.1737 8.47454 28.3129 8.49658 28.5842 8.46214C28.9196 8.4215 29.1276 8.47798 29.2571 8.71697C29.3928 8.96905 29.3281 9.28863 28.9437 9.49594C28.786 9.58135 28.5877 9.62474 28.4699 9.61441L28.4306 9.40778Z" fill="#005DA9"/>
-<path d="M30.5375 8.54824C30.8922 8.41394 30.9693 8.01171 30.8205 7.61707C30.6904 7.27269 30.3742 6.98136 30.0009 7.12255C29.6283 7.26305 29.5746 7.67974 29.7165 8.0551C29.8542 8.42014 30.1828 8.68117 30.534 8.54893L30.5375 8.54824ZM30.5953 8.73352C30.1352 8.90777 29.6821 8.67428 29.4844 8.14946C29.2764 7.59847 29.4796 7.11015 29.9424 6.93521C30.419 6.75545 30.8619 7.00271 31.0554 7.51789C31.2806 8.11158 31.0382 8.56684 30.5981 8.73283L30.5953 8.73352Z" fill="#005DA9"/>
-<path d="M33.0845 7.95661C33.0094 8.01722 32.8448 8.09849 32.6251 8.14739C32.1141 8.25896 31.6622 8.01997 31.5314 7.42421C31.4067 6.85531 31.707 6.38903 32.2683 6.26575C32.4908 6.21753 32.6465 6.23406 32.7146 6.25266L32.6981 6.45584C32.6024 6.43242 32.4701 6.42691 32.3186 6.46066C31.895 6.55295 31.6726 6.88699 31.7773 7.36153C31.8751 7.80784 32.1912 8.03374 32.6292 7.93732C32.7739 7.90564 32.913 7.84434 32.997 7.77891L33.0845 7.95661Z" fill="#005DA9"/>
-<path d="M33.6776 6.0853L33.8835 7.927L33.6425 7.95386L33.4365 6.11216L33.6776 6.0853Z" fill="#005DA9"/>
-<path d="M35.4531 7.08741L35.2671 6.55433C35.2285 6.43449 35.2003 6.3236 35.1721 6.21684H35.1638C35.1397 6.32429 35.1094 6.44 35.0743 6.55226L34.8959 7.08948L35.4531 7.08741ZM34.8463 7.27613L34.6569 7.86018L34.4089 7.86087L35.0316 6.00609L35.3195 6.00471L35.9593 7.85467L35.7038 7.85605L35.5027 7.27337L34.8463 7.27613Z" fill="#005DA9"/>
-<path d="M36.6694 6.06599L36.9084 6.09561L36.7039 7.7355L37.4904 7.8333L37.4656 8.03304L36.4401 7.90493L36.6694 6.06599Z" fill="#005DA9"/>
-<path d="M39.0504 7.50553L38.3527 7.33541L38.1936 7.98489L38.9739 8.17499L38.9264 8.37059L37.9119 8.12195L38.352 6.32227L39.3272 6.56058L39.279 6.7548L38.5393 6.57435L38.3995 7.14325L39.0972 7.31337L39.0504 7.50553Z" fill="#005DA9"/>
-<path d="M59.9378 37.9947C59.9378 38.7172 59.7278 39.1015 59.1072 39.1015C58.57 39.1015 58.2766 38.753 58.2766 37.9224V35.3968C58.2766 34.5661 58.57 34.2183 59.1072 34.2183C59.6423 34.2183 59.9378 34.5661 59.9378 35.3968V37.9947ZM61.4517 38.149V30.5921H59.9399V33.1549C59.8469 33.075 59.539 32.9228 59.1072 32.9228C57.3936 32.9228 56.7765 34.0206 56.7765 35.6013V37.7178C56.7765 39.2978 57.3936 40.3963 59.1072 40.3963C60.3958 40.3963 61.4517 39.7854 61.4517 38.149Z" fill="#005DA9"/>
-<path d="M40.6311 30.5921V40.2627H39.1365V32.7024H39.109L37.6082 40.2627H36.8038L35.3023 32.7024H35.2761V40.2627H33.7809V30.5921H36.0124L37.1929 36.2411H37.2191L38.3982 30.5921H40.6311Z" fill="#005DA9"/>
-<path d="M62.8402 33.0555H64.3396V40.2625H62.8402V33.0555Z" fill="#005DA9"/>
-<path d="M64.4649 31.347C64.4649 31.8305 64.0737 32.2217 63.5902 32.2217C63.1067 32.2217 62.7148 31.8305 62.7148 31.347C62.7148 30.8635 63.1067 30.4716 63.5902 30.4716C64.0737 30.4716 64.4649 30.8635 64.4649 31.347Z" fill="#005DA9"/>
-<path d="M54.0112 38.4465C53.6958 38.753 53.4196 39.1201 52.9485 39.1201C52.527 39.1201 52.2246 38.8136 52.2246 38.2709C52.2246 37.2557 53.0077 37.0195 54.0112 36.7963V38.4465ZM55.5154 39.4989V34.8782C55.5154 33.5654 54.7247 32.9228 53.3321 32.9228C51.9257 32.9228 51.0014 33.7128 50.9215 35.1723H52.4216C52.4485 34.5565 52.5958 34.155 53.2784 34.155C53.775 34.155 54.0153 34.4753 54.0153 35.0786L54.0167 35.6413C51.7873 35.9457 50.7445 37.0773 50.7445 38.4796C50.7445 39.4679 51.3127 40.4005 52.4471 40.4005C53.2336 40.4005 53.4857 40.2008 54.0897 39.7262C54.1001 39.8626 54.1297 40.0251 54.1751 40.2627H55.6091C55.5691 40.021 55.5154 39.7262 55.5154 39.4989Z" fill="#005DA9"/>
-<path d="M44.9427 38.4465C44.6286 38.753 44.3531 39.1201 43.8813 39.1201C43.4591 39.1201 43.1567 38.8136 43.1567 38.2709C43.1567 37.2557 43.9398 37.0195 44.9427 36.7963V38.4465ZM46.4482 39.4989V34.8782C46.4482 33.5654 45.6576 32.9228 44.2642 32.9228C42.8585 32.9228 41.9342 33.7128 41.8536 35.1723H43.3544C43.3806 34.5565 43.5287 34.155 44.2112 34.155C44.7078 34.155 44.9475 34.4753 44.9475 35.0786L44.9488 35.6413C42.7187 35.9457 41.6766 37.0773 41.6766 38.4796C41.6766 39.4679 42.2448 40.4005 43.3806 40.4005C44.1658 40.4005 44.4178 40.2008 45.0225 39.7262C45.0322 39.8626 45.0618 40.0251 45.1079 40.2627H46.5412C46.502 40.021 46.4482 39.7262 46.4482 39.4989Z" fill="#005DA9"/>
-<path d="M49.9719 39.1263C49.2032 39.1249 49.1502 38.702 49.1502 38.1751V30.5921H47.6494V38.1187C47.6494 39.3371 48.1901 40.3591 49.9801 40.3591H50.1282V39.1263H49.9719Z" fill="#005DA9"/>
-<path d="M67.0973 35.3341C67.0973 34.5035 67.3914 34.1556 67.9272 34.1556C68.4637 34.1556 68.7578 34.5035 68.7578 35.3341V35.7088H67.0973V35.3341ZM70.2586 36.9416V35.6013C70.2586 34.0207 69.6429 32.9228 67.9272 32.9228C66.2129 32.9228 65.5979 34.0207 65.5979 35.6013V37.7178C65.5979 39.2978 66.2129 40.3963 67.9272 40.3963C69.4803 40.3963 70.1339 39.4968 70.2428 38.149C70.2428 38.149 70.2517 38.0209 70.2448 37.9623H68.7565L68.7537 38.1483C68.7165 38.8618 68.4272 39.1649 67.9272 39.1649C67.3914 39.1649 67.0973 38.8164 67.0973 37.9857V36.9416H70.2586Z" fill="#005DA9"/>
-<path d="M54.3204 25.7089H55.7054L55.0194 21.4497H54.9926L54.3204 25.7089ZM53.8004 29.1905H52.1942L53.9753 19.5212H56.0381L57.8199 29.1905H56.2123L55.9052 26.9776H54.1192L53.8004 29.1905Z" fill="#005DA9"/>
-<path d="M74.6335 29.1905V21.9863H76.0668V22.5992H76.0937C76.4546 21.9842 77.3059 21.8506 77.7949 21.8506H78.1027V23.4181C77.8348 23.3513 77.5807 23.2708 77.1371 23.2708C76.6295 23.2708 76.1343 23.5917 76.1343 24.2357V29.1905H74.6335Z" fill="#005DA9"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M73.3139 21.9863V26.6456C73.3139 28.2256 72.6975 29.3255 70.9825 29.3255C69.2696 29.3255 68.6532 28.2256 68.6532 26.6456V21.9863H70.154V26.9142C70.154 27.7442 70.4481 28.0927 70.9825 28.0927C71.5197 28.0927 71.8138 27.7442 71.8138 26.9142V21.9863H73.3139Z" fill="#005DA9"/>
-<path d="M84.2842 29.1905V24.5305C84.2842 23.0001 84.8999 21.8506 86.6149 21.8506C88.3292 21.8506 88.9456 23.0001 88.9456 24.5305V29.1905H87.4448V24.2722C87.4448 23.5001 87.1335 23.1378 86.6149 23.1378C86.0956 23.1378 85.7836 23.5001 85.7836 24.2722V29.1905H84.2842Z" fill="#005DA9"/>
-<path d="M81.5959 27.3756C81.2832 27.6814 81.0064 28.0478 80.5346 28.0478C80.1124 28.0478 79.8107 27.742 79.8107 27.1993C79.8107 26.1834 80.5938 25.9472 81.5959 25.7233V27.3756ZM83.1022 28.4273V23.8059C83.1022 22.4938 82.3108 21.8505 80.9182 21.8505C79.5118 21.8505 78.5875 22.6405 78.5076 24.1014H80.0084C80.0346 23.4849 80.1819 23.0827 80.8652 23.0827C81.3611 23.0827 81.6014 23.4037 81.6014 24.007L81.6028 24.5697C79.3727 24.8741 78.3313 26.0057 78.3313 27.408C78.3313 28.3957 78.8988 29.3289 80.0346 29.3289C80.819 29.3289 81.0718 29.1285 81.6751 28.6553C81.6862 28.791 81.7165 28.9535 81.7612 29.1905H83.1938C83.1559 28.9494 83.1022 28.6546 83.1022 28.4273Z" fill="#005DA9"/>
-<path d="M49.9719 28.0569C49.2032 28.0548 49.1502 27.6319 49.1502 27.105V19.522H47.6494V27.0493C47.6494 28.2663 48.1901 29.289 49.9801 29.289H50.1282V28.0569H49.9719Z" fill="#005DA9"/>
-<path d="M59.7926 23.6593C59.7926 23.2846 60.0729 23.0835 60.4793 23.0835C60.9896 23.0835 61.1997 23.3631 61.2865 23.9809L62.624 23.8652C62.4877 22.9354 62.0207 21.8506 60.4083 21.8506C59.234 21.8506 58.3111 22.6413 58.3111 23.7798C58.3111 25.7489 61.2541 26.2179 61.2541 27.4632C61.2541 27.8654 60.9607 28.0934 60.5482 28.0934C59.8353 28.0934 59.6115 27.5575 59.5137 26.9549L58.1259 27.1767C58.2891 28.5466 59.1638 29.3255 60.5351 29.3255C61.8141 29.3255 62.7377 28.6692 62.7377 27.3833C62.7377 25.2399 59.7926 24.784 59.7926 23.6593Z" fill="#005DA9"/>
-<path d="M64.8927 23.6593C64.8927 23.2846 65.1723 23.0835 65.5773 23.0835C66.0814 23.0835 66.2915 23.3631 66.3783 23.9809L67.7158 23.8652C67.5808 22.9354 67.1125 21.8506 65.5077 21.8506C64.3334 21.8506 63.4091 22.6413 63.4091 23.7798C63.4091 25.7489 66.3466 26.2179 66.3466 27.4632C66.3466 27.8654 66.0532 28.0934 65.6461 28.0934C64.9347 28.0934 64.7108 27.5575 64.613 26.9549L63.2252 27.1767C63.3885 28.5466 64.2632 29.3255 65.6337 29.3255C66.9059 29.3255 67.8288 28.6692 67.8288 27.3833C67.8288 25.2399 64.8927 24.784 64.8927 23.6593Z" fill="#005DA9"/>
-<path d="M97.0308 24.2619C97.0308 23.4313 97.3256 23.0835 97.8621 23.0835C98.398 23.0835 98.692 23.4313 98.692 24.2619V24.6373H97.0308V24.2619ZM100.192 25.8701V24.5305C100.192 22.9499 99.5785 21.8506 97.8621 21.8506C96.1471 21.8506 95.5321 22.9499 95.5321 24.5305V26.6463C95.5321 28.227 96.1471 29.3255 97.8621 29.3255C99.4138 29.3255 100.068 28.426 100.177 27.0782C100.177 27.0782 100.185 26.9494 100.179 26.8908H98.6907L98.6886 27.0768C98.6507 27.7897 98.3621 28.0934 97.8621 28.0934C97.3256 28.0934 97.0308 27.7456 97.0308 26.9143V25.8701H100.192Z" fill="#005DA9"/>
-<path d="M50.6797 19.522V20.8933H51.1157C50.9779 21.2404 50.6845 21.9863 50.6845 21.9863H51.4173L52.051 20.8933V19.522H50.6797Z" fill="#005DA9"/>
-<path d="M93.1683 26.8054L93.1669 27.0768C93.1297 27.7896 92.8404 28.0934 92.3411 28.0934C91.8039 28.0934 91.5105 27.7456 91.5105 26.9142V24.2619C91.5105 23.4313 91.8039 23.0835 92.3411 23.0835C92.8769 23.0835 93.1717 23.4313 93.1717 24.2619V24.5298L94.6711 24.5305C94.6711 22.9498 94.0554 21.8506 92.3411 21.8506C90.6261 21.8506 90.0104 22.9498 90.0104 24.5305V26.6463C90.0104 28.227 90.6261 29.3255 92.3411 29.3255C94.1711 29.3255 94.6615 28.0341 94.6615 26.8054H93.1683Z" fill="#005DA9"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M27.9354 17.6203C28.1572 18.1155 27.9857 18.8242 27.6717 19.1776C28.2282 19.8842 29.6208 19.5894 30.3688 19.3876C30.5719 19.3477 30.7331 18.9833 30.9266 19.1245C30.9769 19.1659 31.3103 18.8112 31.2696 19.1459C31.2696 19.3477 31.1794 19.564 30.97 19.6418C30.813 19.6996 30.3626 19.8339 30.3626 19.8339C29.5636 20.086 29.129 20.1976 28.3294 20.5826C27.9609 20.7775 28.056 21.4862 28.1076 21.7438C28.1579 22.0014 28.4052 22.9264 28.1882 23.3865C28.0098 23.7625 27.39 24.111 27.3789 24.5759C27.3789 24.7784 27.715 25.0236 27.5208 25.1882C27.3955 25.295 27.3025 25.3122 27.226 25.2413C27.226 25.2413 26.6261 24.6235 26.7012 24.412C26.6964 24.3301 27.3755 23.3562 27.0848 22.9168C26.923 23.0683 26.9044 23.4801 26.5772 23.6303C26.423 23.7005 26.2005 23.5222 26.0683 23.5972C26.0159 23.6282 26.0221 23.8362 25.9725 23.8858C25.9229 23.9368 25.7053 23.9292 25.6585 23.8362C25.5324 23.5828 25.582 23.1495 25.6288 22.9367C25.6977 22.6206 26.3562 22.967 26.1426 22.5173C26.0641 22.3527 25.9636 22.1371 25.9711 21.7907C25.9773 21.5248 26.1984 21.2183 25.9801 21.084C25.7363 20.9614 25.1584 20.7052 25.1474 20.4022C25.0792 19.6817 26.4168 19.6817 26.7212 19.0343C26.7212 18.7223 26.33 18.4571 26.4078 17.9647C26.4464 17.7147 26.6406 17.4289 26.9622 17.3855C27.3645 17.3304 27.6117 17.3779 27.9354 17.6203Z" fill="#005DA9"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M45.5157 17.7973C45.5666 17.4537 45.3566 16.6533 45.4633 16.3248L46.0735 16.6423C45.9434 16.8572 45.6851 17.3366 45.5157 17.7973ZM46.7003 16.1602C45.8821 15.6333 45.172 14.7042 44.2511 14.8571C43.7662 14.8158 44.1616 14.3006 44.0293 14.0988C43.8069 13.7041 43.7821 13.5554 42.917 13.6387C42.6787 13.6621 42.4886 13.7496 42.4005 13.9569C42.3226 14.1883 42.3943 14.1332 42.3385 14.3488C42.2682 14.5637 42.0127 14.6636 42.2593 14.8261C42.2793 14.8964 42.2772 15.0176 42.2593 15.2407C42.2462 15.3964 42.4418 15.3819 42.5224 15.4322C41.5409 16.1506 39.7757 16.0211 38.9113 15.457C38.7515 15.353 38.1936 15.3757 38.1923 15.4391C38.1936 15.5844 38.5552 15.6161 38.6861 15.7676C38.6262 15.7883 38.5208 15.7642 38.5669 15.8544C38.6117 15.9446 39.2729 16.0665 39.275 16.0665C39.7819 16.4102 40.5705 16.5748 41.1855 16.696C42.4397 16.882 42.7931 16.8131 42.957 17.6155C43.123 18.4275 42.9294 19.1762 42.7442 20.2837C42.5933 21.2741 42.7993 21.8898 42.957 22.8603C42.9866 23.04 43.0796 23.3362 42.9914 23.4126C42.8172 23.5662 42.3591 23.6985 42.1622 23.8707C42.0768 24.1537 42.8723 23.9719 43.4019 23.9994C43.6547 24.0194 43.7153 23.7494 43.7153 23.5876C43.7621 22.0717 43.8069 21.5971 44.0493 20.6473C44.1919 21.4663 44.2091 22.8437 44.3909 23.6737C44.1836 23.9189 43.6299 24.1393 43.7669 24.2729C43.9281 24.4244 44.2029 24.3989 44.3475 24.3624C44.6857 24.2805 44.8758 24.1751 45.1217 23.9519C45.1217 23.9519 45.6259 20.626 45.5363 18.9792C45.486 18.0625 46.3869 17.5349 46.8422 16.716C46.9524 16.5039 46.9475 16.3193 46.7003 16.1602Z" fill="#005DA9"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M35.6962 13.2345C36.0516 13.2992 36.8815 13.5347 36.9786 13.554C37.0757 13.574 37.3202 13.802 37.3953 13.8199C37.4359 13.8295 37.4483 13.8357 37.4835 13.7717C37.5172 13.7083 37.6591 13.8082 37.8044 13.7648C37.8995 13.7365 37.9904 13.4817 37.967 13.4528C37.874 13.3412 37.3905 13.211 37.157 13.2097C36.8843 13.1187 36.2499 12.8591 35.7726 12.7076C34.6934 12.3659 33.5673 11.8494 32.5342 12.4644C32.1023 12.2867 32.0947 11.7261 31.3482 11.7847C30.9928 11.8122 30.7359 12.0877 30.6505 12.3329C30.5637 12.5788 30.5286 12.8846 30.6883 13.1883C30.7765 13.3557 30.9487 13.4376 31.1202 13.4955C31.2056 13.5244 31.2965 13.5437 31.3819 13.574C31.5045 13.6167 31.5279 13.7152 31.667 13.6952C31.771 13.6794 31.8571 13.6635 31.9653 13.6697C32.0631 13.6759 32.3145 13.7152 32.3565 13.5823C32.3585 13.5823 32.362 13.5823 32.3654 13.583C32.3744 13.8295 32.3269 14.1925 32.1994 14.2538C32.0279 14.2944 31.9522 14.187 31.5355 14.0665C31.1236 13.948 30.1511 13.8247 30.1332 14.5692C30.1022 15.7642 30.2455 16.1485 29.4197 17.1617C29.2771 17.3366 29.036 17.3469 29.1772 17.5301C29.2888 17.6438 29.47 17.5577 29.556 17.4867C29.7661 18.0212 30.4762 17.2264 30.6319 17.1038C30.9521 16.8531 30.5892 16.6341 30.7414 16.3923C31.0024 15.8847 31.4053 15.6781 31.4907 15.2986C31.9067 15.623 32.4123 15.8765 32.9295 15.8351C33.1423 15.7945 33.3372 15.7146 33.5776 15.4708C33.8187 15.227 33.8834 14.4508 33.9048 13.9129C33.9488 12.8198 34.703 13.0533 35.6962 13.2345Z" fill="#005DA9"/>
-<path d="M42.8666 28.8172C42.4375 28.7153 41.9534 28.4109 41.7109 28.0369C41.5415 27.7745 41.421 27.4783 41.2832 27.1753C40.8169 26.1552 40.549 25.036 40.2467 24.6621C39.7136 24.0015 38.6729 23.0807 37.9717 22.6254C37.7637 22.4904 37.5723 22.3933 37.3994 22.3183C37.5695 21.4925 37.5303 20.6143 37.5303 20.6143C37.5303 20.4463 37.5337 20.4414 37.5929 20.3712C37.7734 20.2286 37.8925 20.0544 37.8388 19.783C37.8326 19.7444 37.6832 19.4207 37.6398 19.3505C37.8912 19.451 38.9993 19.7134 39.3203 19.6907C39.8727 19.6528 41.1847 18.7423 41.3824 18.6039C41.5263 18.5192 41.609 18.4978 41.6841 18.4772C41.7605 18.4558 41.9499 18.336 41.9933 18.2182C42.0112 18.1658 41.954 17.7857 41.8225 17.7622C41.7653 17.7567 41.6159 17.849 41.5635 17.8339C41.5318 17.8249 41.4974 17.765 41.4699 17.7664C41.3975 17.7636 41.3239 17.8793 41.2887 17.9351C41.2412 18.0088 41.2254 18.1424 41.1758 18.2044C41.0855 18.3194 39.8128 18.679 39.3906 18.878C39.3175 18.9124 39.2411 18.94 39.166 18.9166C38.832 18.8133 37.4862 18.0412 36.9545 18.1514C36.7864 18.1865 36.524 18.2816 36.4097 18.1576C36.3491 18.0915 36.3153 17.9861 36.3663 17.8814C36.4228 17.7622 36.7038 17.7464 36.7582 17.6093C36.8174 17.4578 36.7196 17.1561 36.7203 17.1389C36.7231 17.0811 36.7899 17.0528 36.7837 17.0019C36.7768 16.9475 36.7072 16.8889 36.6301 16.7794C36.5488 16.6685 36.5254 16.3861 36.4517 16.2628C36.4689 16.2236 36.5192 15.9674 36.2196 15.7924C35.92 15.6203 35.4255 15.581 35.1479 15.8248C34.9909 15.9646 34.7815 15.9109 34.6148 15.9977C34.2994 16.1637 34.5019 16.4956 33.9798 16.9674C33.7532 17.172 33.8868 17.568 33.9405 17.6569C33.7195 18.0701 34.1107 18.557 34.4626 18.4744C34.5783 18.5853 34.6513 18.6349 34.7794 18.6287C34.7815 18.6411 34.7856 18.6535 34.7904 18.6666C34.7112 18.6955 34.5411 18.7809 34.4667 18.8188C34.267 18.9235 34.1499 19.0516 33.9653 19.2306C33.3751 19.805 32.4983 20.6963 30.4073 21.7425C30.1697 21.8878 29.4878 21.8251 29.4878 21.9732C29.5312 22.0448 29.6793 22.1192 29.6793 22.1192C29.6834 22.2039 29.4279 22.2377 29.2895 22.268C29.1689 22.3362 29.4017 22.4319 29.492 22.5152C29.9562 22.5986 30.1959 22.4946 30.5898 22.1647C32.1794 21.5476 33.3613 20.9442 34.6493 20.106C34.9227 19.929 35.077 20.1212 35.2974 20.938C35.3821 21.2548 34.9606 21.5138 34.7994 21.9629C34.6176 22.465 34.6396 22.841 34.7746 23.133C34.6265 23.4581 34.1699 23.8893 34.1699 23.8893C34.1699 23.8893 33.0879 24.7853 32.541 25.3267C32.0672 25.7964 31.4941 25.6876 31.0526 25.8983C30.6036 26.1153 30.1959 26.4569 29.815 26.7717C29.5367 27.0017 29.2585 27.2063 28.8886 27.3592C28.7454 27.4177 28.6751 27.4363 28.5229 27.457C28.3321 27.4831 28.2171 27.6595 28.2336 27.8213C28.2481 27.9701 28.3817 28.3048 28.525 28.5927C28.6021 28.7511 28.7784 29.1189 29.0071 29.165C29.1614 29.1981 29.4878 29.2635 29.5608 29.1223C29.6579 28.935 29.2433 28.882 29.2137 28.6375C29.1951 28.4811 29.1786 28.2249 29.2302 28.0755C29.3198 27.8172 29.6903 27.6381 29.9121 27.5183C30.5981 27.1457 32.6264 26.6684 33.2311 26.4865C34.1051 26.1043 34.7953 25.7909 35.3628 25.419C35.8663 25.1146 36.2733 24.6317 36.5874 24.2302C37.3367 24.6028 38.4408 25.067 39.1736 25.3473C39.6048 25.5126 39.3706 25.7895 39.6109 26.4108C39.7824 26.855 40.091 27.1794 41.1138 28.3875C41.2605 28.5879 41.1035 28.7256 41.1351 28.9481C41.1716 29.1891 41.2894 29.1967 41.5119 29.1919C41.7185 29.185 41.9265 29.1919 42.1331 29.1919C42.3969 29.1919 42.7282 29.1933 42.9913 29.1905C43.0884 29.1891 43.2806 29.1582 43.2806 29.017C43.2806 28.8606 42.9982 28.8489 42.8666 28.8172Z" fill="#005DA9"/>
-<path d="M50.8527 48.7542C50.7728 49.0545 50.5153 49.9953 49.2576 49.9953C48.2156 49.9953 47.5068 49.2377 47.5068 48.0393C47.5068 46.9704 48.0496 46.0192 49.3003 46.0192C49.5159 46.0192 50.0524 46.0406 50.4767 46.46C50.6709 46.6536 50.7673 46.8788 50.8424 47.1474L50.0745 47.3306C49.978 46.9111 49.6605 46.6859 49.2631 46.6859C48.3072 46.6859 48.3072 47.7383 48.3072 47.9863C48.3072 48.3458 48.3505 48.706 48.511 48.9526C48.6508 49.1682 48.9084 49.3286 49.2521 49.3286C49.768 49.3286 50.0049 48.9367 50.1013 48.518L50.8527 48.7542Z" fill="#005DA9"/>
-<path d="M53.2171 48.5924C53.142 48.6199 53.0772 48.6413 52.9057 48.6785C52.8679 48.6833 52.6853 48.7218 52.653 48.7329C52.518 48.759 52.2232 48.8341 52.2232 49.0924C52.2232 49.2487 52.3465 49.474 52.6309 49.474C52.8031 49.474 52.9484 49.3982 53.0614 49.3018C53.2171 49.1682 53.2171 48.9905 53.2171 48.7384V48.5924ZM51.562 47.8733C51.6853 47.427 51.9388 47.0833 52.7659 47.0833C53.9368 47.0833 53.9423 47.6309 53.9423 48.1309C53.9423 48.3031 53.9313 49.0545 53.9368 49.2109C53.9526 49.5759 53.9905 49.6992 54.098 49.9306H53.3727C53.3562 49.8927 53.3403 49.8555 53.3183 49.7742L53.2756 49.6248C53.131 49.7694 52.8624 49.9953 52.4112 49.9953C51.8527 49.9953 51.4869 49.6558 51.4869 49.173C51.4869 48.4904 52.1158 48.3671 52.5021 48.2921C52.9161 48.217 53.0717 48.1736 53.2171 48.1144V48.0393C53.2171 47.8568 53.2171 47.6474 52.7122 47.6474C52.3513 47.6474 52.2776 47.8568 52.228 47.9959L51.562 47.8733Z" fill="#005DA9"/>
-<path d="M54.8123 47.1471H55.5485V49.9303H54.8123V47.1471ZM54.8123 46.0837H55.5485V46.7662H54.8123V46.0837Z" fill="#005DA9"/>
-<path d="M57.0156 49.0228C57.101 49.3934 57.3751 49.4684 57.6113 49.4684C57.6761 49.4684 58.143 49.4629 58.143 49.1626C58.143 49.0008 58.0149 48.9636 57.8427 48.9257C56.999 48.7425 56.3812 48.5979 56.3812 47.9367C56.3812 47.2982 56.9667 47.0833 57.5521 47.0833C58.2126 47.0833 58.6272 47.2658 58.7877 47.8189L58.0893 47.9477C57.9977 47.6205 57.6974 47.6095 57.5679 47.6095C57.4453 47.6095 57.0638 47.6157 57.0638 47.8409C57.0638 47.9215 57.1223 47.9808 57.2029 48.0124C57.342 48.0662 57.6437 48.1412 57.8262 48.1846C58.32 48.3031 58.8793 48.4477 58.8793 49.06C58.8793 49.4953 58.5301 49.9953 57.6113 49.9953C57.342 49.9953 56.8971 49.9464 56.5748 49.6558C56.3647 49.4684 56.3055 49.2425 56.2793 49.1358L57.0156 49.0228Z" fill="#005DA9"/>
-<path d="M60.1631 49.0228C60.2492 49.3934 60.5226 49.4684 60.7595 49.4684C60.8236 49.4684 61.2919 49.4629 61.2919 49.1626C61.2919 49.0008 61.1624 48.9636 60.9902 48.9257C60.1472 48.7425 59.5294 48.5979 59.5294 47.9367C59.5294 47.2982 60.1149 47.0833 60.6996 47.0833C61.3608 47.0833 61.7747 47.2658 61.9359 47.8189L61.2382 47.9477C61.1466 47.6205 60.8449 47.6095 60.7161 47.6095C60.5922 47.6095 60.2113 47.6157 60.2113 47.8409C60.2113 47.9215 60.2705 47.9808 60.3504 48.0124C60.4916 48.0662 60.7919 48.1412 60.9744 48.1846C61.4682 48.3031 62.0275 48.4477 62.0275 49.06C62.0275 49.4953 61.6776 49.9953 60.7595 49.9953C60.4916 49.9953 60.0446 49.9464 59.7223 49.6558C59.5136 49.4684 59.4537 49.2425 59.4275 49.1358L60.1631 49.0228Z" fill="#005DA9"/>
-<path d="M64.4339 48.2976C64.4181 47.6901 63.9986 47.6474 63.8857 47.6474C63.5365 47.6474 63.3271 47.9325 63.3326 48.2976H64.4339ZM65.1268 49.1682C65.0675 49.339 64.8361 49.9953 63.9125 49.9953C63.6715 49.9953 63.0261 49.963 62.7306 49.3286C62.6074 49.06 62.564 48.7859 62.564 48.5552C62.564 47.8031 62.9621 47.0833 63.843 47.0833C64.8898 47.0833 65.1805 47.9263 65.1647 48.748H63.3168C63.3271 49.0821 63.5048 49.4306 63.9235 49.4306C64.2672 49.4306 64.3533 49.173 64.3912 49.0442L65.1268 49.1682Z" fill="#005DA9"/>
-<path d="M67.6036 46.084H68.3557L69.9185 48.6523H69.9295V46.084H70.65V49.9306H69.871L68.3337 47.4215H68.3234V49.9306H67.6036V46.084Z" fill="#005DA9"/>
-<path d="M73.1575 48.5924C73.0831 48.6199 73.0184 48.6413 72.8462 48.6785C72.809 48.6833 72.6258 48.7218 72.5941 48.7329C72.4591 48.759 72.1644 48.8341 72.1644 49.0924C72.1644 49.2487 72.2876 49.474 72.5728 49.474C72.745 49.474 72.8896 49.3982 73.0026 49.3018C73.1575 49.1682 73.1575 48.9905 73.1575 48.7384V48.5924ZM71.5039 47.8733C71.6271 47.427 71.8792 47.0833 72.7071 47.0833C73.8779 47.0833 73.8835 47.6309 73.8835 48.1309C73.8835 48.3031 73.8724 49.0545 73.8779 49.2109C73.8938 49.5759 73.931 49.6992 74.0391 49.9306H73.3139C73.2973 49.8927 73.2815 49.8555 73.2601 49.7742L73.2168 49.6248C73.0721 49.7694 72.8035 49.9953 72.3517 49.9953C71.7938 49.9953 71.4281 49.6558 71.4281 49.173C71.4281 48.4904 72.0569 48.3671 72.4433 48.2921C72.8572 48.217 73.0129 48.1736 73.1575 48.1144V48.0393C73.1575 47.8568 73.1575 47.6474 72.6534 47.6474C72.2932 47.6474 72.2181 47.8568 72.1699 47.9959L71.5039 47.8733Z" fill="#005DA9"/>
-<path d="M76.0324 47.7328H75.5324V48.8555C75.5324 49.2542 75.5324 49.3824 75.7362 49.3824C75.8334 49.3824 75.9195 49.3555 76.0111 49.3176L76.0324 49.3128L76.0971 49.8824C75.8547 49.9843 75.5916 49.9953 75.5165 49.9953C75.2906 49.9953 75.0007 49.9196 74.8932 49.7102C74.8016 49.5387 74.7913 49.3713 74.7913 48.9471V47.7328H74.4531V47.1474H74.7913V46.5943L75.5324 46.159V47.1474H76.0324V47.7328Z" fill="#005DA9"/>
-<path d="M76.7039 47.1471H77.4395V49.9303H76.7039V47.1471ZM76.7039 46.0837H77.4395V46.7662H76.7039V46.0837Z" fill="#005DA9"/>
-<path d="M79.6152 49.3934C79.9485 49.3934 80.2977 49.1516 80.2977 48.5338C80.2977 47.9746 79.9912 47.6846 79.6152 47.6846C79.2605 47.6846 78.9388 47.9532 78.9388 48.5386C78.9388 49.1303 79.266 49.3934 79.6152 49.3934ZM79.6152 47.0833C80.5822 47.0833 81.0547 47.8244 81.0547 48.5283C81.0547 49.2963 80.5174 49.9953 79.6207 49.9953C79.1799 49.9953 78.1805 49.7908 78.1805 48.5014C78.1805 47.8409 78.6268 47.0833 79.6152 47.0833Z" fill="#005DA9"/>
-<path d="M83.5913 48.5063C83.5913 48.0496 83.5913 47.6474 83.1395 47.6474C82.9081 47.6474 82.6987 47.7707 82.6071 47.9746C82.5321 48.1357 82.5272 48.4429 82.5272 48.6681V49.9306H81.7903V47.1474H82.4783V47.5565H82.4894C82.7635 47.1798 83.1127 47.0833 83.3971 47.0833C83.5211 47.0833 83.8055 47.1047 84.0363 47.2872C84.3317 47.5131 84.3207 47.9264 84.3269 48.2005V49.9306H83.5913V48.5063Z" fill="#005DA9"/>
-<path d="M86.7981 48.5924C86.7224 48.6199 86.6583 48.6413 86.4861 48.6785C86.4482 48.6833 86.2657 48.7218 86.2333 48.7329C86.0997 48.759 85.8036 48.8341 85.8036 49.0924C85.8036 49.2487 85.9275 49.474 86.212 49.474C86.3842 49.474 86.5288 49.3982 86.6418 49.3018C86.7981 49.1682 86.7981 48.9905 86.7981 48.7384V48.5924ZM85.1438 47.8733C85.267 47.427 85.5191 47.0833 86.347 47.0833C87.5179 47.0833 87.5234 47.6309 87.5234 48.1309C87.5234 48.3031 87.5123 49.0545 87.5179 49.2109C87.5337 49.5759 87.5716 49.6992 87.6783 49.9306H86.9531C86.9379 49.8927 86.9221 49.8555 86.9 49.7742L86.8573 49.6248C86.712 49.7694 86.4434 49.9953 85.9916 49.9953C85.4323 49.9953 85.068 49.6558 85.068 49.173C85.068 48.4904 85.6961 48.3671 86.0839 48.2921C86.4964 48.217 86.6528 48.1736 86.7981 48.1144V48.0393C86.7981 47.8568 86.7981 47.6474 86.2933 47.6474C85.9324 47.6474 85.858 47.8568 85.8091 47.9959L85.1438 47.8733Z" fill="#005DA9"/>
-<path d="M88.3932 46.0837H89.1294V49.9303H88.3932V46.0837Z" fill="#005DA9"/>
-<path d="M91.7185 48.2976C91.7026 47.6901 91.2839 47.6474 91.1702 47.6474C90.8217 47.6474 90.6117 47.9325 90.6172 48.2976H91.7185ZM92.4114 49.1682C92.3521 49.339 92.1207 49.9953 91.1978 49.9953C90.9561 49.9953 90.3107 49.963 90.0152 49.3286C89.8919 49.06 89.8492 48.7859 89.8492 48.5552C89.8492 47.8031 90.2466 47.0833 91.1275 47.0833C92.1744 47.0833 92.4644 47.9263 92.4492 48.748H90.6007C90.6117 49.0821 90.7894 49.4306 91.2081 49.4306C91.5518 49.4306 91.6379 49.173 91.6751 49.0442L92.4114 49.1682Z" fill="#005DA9"/>
+<svg id="cpam" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M4.2915 20.9673H11.1396V20.8823H4.2915V20.9673Z" fill="#95C11F"/>
+<path d="M4.42932 19.0404H11.9865V18.9553H4.42932V19.0404Z" fill="#95C11F"/>
+<path d="M4.2915 17.1125H12.0865V17.0278H4.2915V17.1125Z" fill="#95C11F"/>
+<path d="M4.2915 15.1856H12.0865V15.1002H4.2915V15.1856Z" fill="#95C11F"/>
+<path d="M4.2915 13.258H12.0865V13.1726H4.2915V13.258Z" fill="#95C11F"/>
+<path d="M1.80992 17.1944C1.8433 17.1441 1.86947 17.0711 1.87111 16.9929C1.87307 16.8767 1.81385 16.8077 1.72419 16.8064C1.64337 16.8051 1.59364 16.8512 1.5475 16.969C1.49253 17.1117 1.41531 17.1993 1.29261 17.1967C1.15551 17.1948 1.05571 17.0796 1.05866 16.9081C1.06029 16.8195 1.08254 16.7534 1.10512 16.7157L1.19707 16.7488C1.18005 16.7756 1.15387 16.8345 1.15257 16.914C1.1506 17.0338 1.22161 17.0809 1.28148 17.0819C1.36394 17.0832 1.4055 17.0305 1.45458 16.9098C1.51576 16.7619 1.58775 16.6886 1.71667 16.6912C1.85246 16.6935 1.96992 16.7949 1.96633 17.0024C1.96469 17.0871 1.93688 17.1797 1.90448 17.2259L1.80992 17.1944Z" fill="#005DA9"/>
+<path d="M1.63691 15.9039L1.58946 16.2413L1.90358 16.2855L1.95659 15.9079L2.05115 15.9213L1.98211 16.4127L1.11043 16.29L1.17653 15.8179L1.27109 15.831L1.22103 16.1896L1.49588 16.2282L1.54333 15.8905L1.63691 15.9039ZM0.971698 15.831L1.10094 16.0194L1.08786 16.1114L0.952393 15.9681L0.971698 15.831Z" fill="#005DA9"/>
+<path d="M2.24425 15.0611C2.25309 15.1059 2.25047 15.1929 2.22168 15.2963C2.15493 15.5352 1.95435 15.6719 1.67459 15.5937C1.40824 15.5191 1.27965 15.2894 1.35327 15.0267C1.38239 14.9223 1.42395 14.8608 1.44718 14.8356L1.52866 14.8886C1.49692 14.923 1.46583 14.9779 1.44587 15.0486C1.39057 15.2472 1.48088 15.4148 1.70338 15.4769C1.91214 15.5352 2.07803 15.4527 2.13497 15.2476C2.15395 15.1795 2.15918 15.1075 2.15002 15.0578L2.24425 15.0611Z" fill="#005DA9"/>
+<path d="M1.59338 14.3818L2.0711 14.5931C2.25041 14.6723 2.36231 14.6265 2.40976 14.5192C2.46244 14.4008 2.41761 14.2882 2.24092 14.2097L1.76352 13.9986L1.80999 13.8936L2.28051 14.1017C2.52755 14.2113 2.57041 14.3854 2.49287 14.5601C2.42023 14.725 2.272 14.8078 2.02103 14.6969L1.54724 14.4868L1.59338 14.3818Z" fill="#005DA9"/>
+<path d="M2.4339 13.6256L2.49574 13.5271C2.5602 13.4244 2.54515 13.3236 2.46007 13.2696C2.36355 13.2097 2.27749 13.2526 2.21369 13.3543C2.18457 13.4008 2.16886 13.4358 2.16297 13.4555L2.4339 13.6256ZM2.03503 13.5091C2.05532 13.4545 2.0936 13.3792 2.13418 13.3138C2.19896 13.211 2.26113 13.1564 2.33246 13.1361C2.38776 13.1194 2.45222 13.1299 2.51079 13.1665C2.60797 13.2274 2.63382 13.3318 2.6119 13.4257L2.61484 13.4276C2.67014 13.3838 2.74507 13.3828 2.83374 13.4129C2.95383 13.4538 3.03628 13.4813 3.07457 13.4849L3.01142 13.5844C2.98328 13.5834 2.90867 13.5595 2.80331 13.5215C2.6865 13.4787 2.62237 13.4954 2.5638 13.5804L2.50654 13.6711L2.82982 13.8743L2.76928 13.9705L2.03503 13.5091Z" fill="#005DA9"/>
+<path d="M2.63884 12.6135L3.32924 13.1596L3.25758 13.25L2.5675 12.7038L2.63884 12.6135Z" fill="#005DA9"/>
+<path d="M3.07464 12.2598L2.88911 12.4532L2.81909 12.3865L3.26998 11.9156L3.33968 11.9824L3.15415 12.1767L3.71989 12.7186L3.6407 12.8017L3.07464 12.2598Z" fill="#005DA9"/>
+<path d="M3.69341 11.2903L3.662 11.5168L3.59034 11.5757L3.58674 11.3787L3.69341 11.2903ZM4.13546 11.7929L3.87272 12.0099L4.07493 12.2549L4.36909 12.0115L4.4293 12.0851L4.04712 12.4012L3.48596 11.7229L3.85407 11.4189L3.9146 11.4926L3.63582 11.7229L3.81317 11.9372L4.07559 11.72L4.13546 11.7929Z" fill="#005DA9"/>
+<path d="M4.95536 11.5691C5.01524 11.5737 5.09181 11.5609 5.16052 11.5236C5.26294 11.468 5.29402 11.3833 5.25116 11.3038C5.2132 11.2324 5.14874 11.2125 5.0231 11.2298C4.8716 11.2521 4.7574 11.2278 4.69916 11.1195C4.63372 10.9988 4.68575 10.8552 4.83593 10.774C4.91414 10.7318 4.98252 10.7184 5.0267 10.72L5.04306 10.8162C5.01099 10.8146 4.94718 10.8208 4.87749 10.8584C4.77147 10.9157 4.76558 11.0008 4.79438 11.0538C4.83332 11.1258 4.89941 11.1362 5.02833 11.1199C5.18768 11.1006 5.2865 11.1274 5.34801 11.2409C5.41247 11.3607 5.38171 11.5125 5.19913 11.611C5.1242 11.6516 5.02997 11.6722 4.97402 11.6673L4.95536 11.5691Z" fill="#005DA9"/>
+<path d="M5.95628 11.1608C6.12479 11.097 6.16144 10.9059 6.09076 10.7184C6.02892 10.5548 5.87873 10.4164 5.70139 10.4835C5.52437 10.5502 5.49885 10.7482 5.56625 10.9265C5.63169 11.0999 5.78777 11.2239 5.95464 11.1611L5.95628 11.1608ZM5.98376 11.2488C5.76519 11.3316 5.54989 11.2206 5.45598 10.9713C5.35717 10.7096 5.45369 10.4776 5.67357 10.3945C5.9 10.3091 6.11039 10.4265 6.20234 10.6713C6.30933 10.9533 6.19416 11.1696 5.98507 11.2485L5.98376 11.2488Z" fill="#005DA9"/>
+<path d="M7.1663 10.8797C7.13063 10.9085 7.05243 10.9471 6.94805 10.9703C6.70526 11.0233 6.49062 10.9098 6.42845 10.6268C6.36922 10.3565 6.51189 10.135 6.77856 10.0764C6.88425 10.0535 6.95819 10.0614 6.99059 10.0702L6.98274 10.1667C6.93725 10.1556 6.87443 10.153 6.80244 10.169C6.60121 10.2128 6.49553 10.3715 6.54526 10.597C6.59172 10.809 6.74191 10.9163 6.95001 10.8705C7.01873 10.8555 7.08482 10.8264 7.12474 10.7953L7.1663 10.8797Z" fill="#005DA9"/>
+<path d="M7.44814 9.99068L7.54597 10.8656L7.43145 10.8784L7.33362 10.0034L7.44814 9.99068Z" fill="#005DA9"/>
+<path d="M8.29158 10.4668L8.20323 10.2135C8.18491 10.1566 8.17149 10.1039 8.15808 10.0532H8.15415C8.1427 10.1042 8.1283 10.1592 8.11161 10.2125L8.02687 10.4677L8.29158 10.4668ZM8.00331 10.5564L7.91333 10.8339L7.79553 10.8342L8.09133 9.95305L8.2281 9.95239L8.53207 10.8313L8.41068 10.8319L8.31513 10.5551L8.00331 10.5564Z" fill="#005DA9"/>
+<path d="M8.86946 9.98151L8.983 9.99558L8.88582 10.7747L9.25949 10.8211L9.24771 10.916L8.7605 10.8551L8.86946 9.98151Z" fill="#005DA9"/>
+<path d="M10.0006 10.6654L9.66913 10.5846L9.59354 10.8931L9.96427 10.9834L9.94169 11.0764L9.45972 10.9582L9.6688 10.1033L10.1321 10.2165L10.1092 10.3087L9.7578 10.223L9.69138 10.4933L10.0228 10.5741L10.0006 10.6654Z" fill="#005DA9"/>
+<path d="M19.9238 25.1501C19.9238 25.4933 19.824 25.6759 19.5291 25.6759C19.2739 25.6759 19.1345 25.5104 19.1345 25.1158V23.9159C19.1345 23.5213 19.2739 23.356 19.5291 23.356C19.7834 23.356 19.9238 23.5213 19.9238 23.9159V25.1501ZM20.643 25.2234V21.6333H19.9247V22.8508C19.8806 22.8129 19.7343 22.7406 19.5291 22.7406C18.7151 22.7406 18.4219 23.2621 18.4219 24.0131V25.0186C18.4219 25.7692 18.7151 26.2911 19.5291 26.2911C20.1413 26.2911 20.643 26.0008 20.643 25.2234Z" fill="#005DA9"/>
+<path d="M10.7516 21.6333V26.2276H10.0415V22.6359H10.0285L9.31547 26.2276H8.9333L8.21999 22.6359H8.20756V26.2276H7.49719V21.6333H8.55734L9.11817 24.317H9.1306L9.69078 21.6333H10.7516Z" fill="#005DA9"/>
+<path d="M21.3026 22.8036H22.0149V26.2275H21.3026V22.8036Z" fill="#005DA9"/>
+<path d="M22.0745 21.9919C22.0745 22.2216 21.8886 22.4075 21.6589 22.4075C21.4292 22.4075 21.243 22.2216 21.243 21.9919C21.243 21.7622 21.4292 21.576 21.6589 21.576C21.8886 21.576 22.0745 21.7622 22.0745 21.9919Z" fill="#005DA9"/>
+<path d="M17.1082 25.3648C16.9583 25.5104 16.8271 25.6848 16.6033 25.6848C16.4031 25.6848 16.2594 25.5392 16.2594 25.2813C16.2594 24.799 16.6315 24.6868 17.1082 24.5808V25.3648ZM17.8228 25.8647V23.6695C17.8228 23.0459 17.4472 22.7406 16.7856 22.7406C16.1174 22.7406 15.6783 23.1159 15.6404 23.8092H16.353C16.3658 23.5167 16.4358 23.326 16.7601 23.326C16.996 23.326 17.1102 23.4781 17.1102 23.7647L17.1108 24.0321C16.0517 24.1767 15.5563 24.7143 15.5563 25.3805C15.5563 25.85 15.8262 26.2931 16.3651 26.2931C16.7388 26.2931 16.8586 26.1982 17.1455 25.9727C17.1504 26.0375 17.1645 26.1147 17.1861 26.2276H17.8673C17.8483 26.1128 17.8228 25.9727 17.8228 25.8647Z" fill="#005DA9"/>
+<path d="M12.7999 25.3648C12.6507 25.5104 12.5198 25.6848 12.2957 25.6848C12.0951 25.6848 11.9515 25.5392 11.9515 25.2813C11.9515 24.799 12.3235 24.6868 12.7999 24.5808V25.3648ZM13.5152 25.8647V23.6695C13.5152 23.0459 13.1395 22.7406 12.4776 22.7406C11.8098 22.7406 11.3707 23.1159 11.3324 23.8092H12.0454C12.0578 23.5167 12.1281 23.326 12.4524 23.326C12.6883 23.326 12.8022 23.4781 12.8022 23.7647L12.8028 24.0321C11.7434 24.1767 11.2483 24.7143 11.2483 25.3805C11.2483 25.85 11.5182 26.2931 12.0578 26.2931C12.4308 26.2931 12.5506 26.1982 12.8379 25.9727C12.8424 26.0375 12.8565 26.1147 12.8784 26.2276H13.5593C13.5407 26.1128 13.5152 25.9727 13.5152 25.8647Z" fill="#005DA9"/>
+<path d="M15.1892 25.6877C14.824 25.6871 14.7988 25.4862 14.7988 25.2358V21.6333H14.0858V25.209C14.0858 25.7878 14.3427 26.2734 15.1931 26.2734H15.2634V25.6877H15.1892Z" fill="#005DA9"/>
+<path d="M23.325 23.8861C23.325 23.4915 23.4647 23.3263 23.7193 23.3263C23.9742 23.3263 24.1139 23.4915 24.1139 23.8861V24.0641H23.325V23.8861ZM24.8269 24.6498V24.0131C24.8269 23.2621 24.5343 22.7406 23.7193 22.7406C22.9049 22.7406 22.6127 23.2621 22.6127 24.0131V25.0186C22.6127 25.7692 22.9049 26.2911 23.7193 26.2911C24.4571 26.2911 24.7676 25.8637 24.8193 25.2234C24.8193 25.2234 24.8236 25.1625 24.8203 25.1347H24.1132L24.1119 25.2231C24.0943 25.5621 23.9568 25.706 23.7193 25.706C23.4647 25.706 23.325 25.5405 23.325 25.1459V24.6498H24.8269Z" fill="#005DA9"/>
+<path d="M17.2551 19.3134H17.9131L17.5872 17.29H17.5744L17.2551 19.3134ZM17.008 20.9674H16.245L17.0911 16.3738H18.0711L18.9176 20.9674H18.1539L18.008 19.9161H17.1595L17.008 20.9674Z" fill="#005DA9"/>
+<path d="M26.9053 20.9674V17.5449H27.5862V17.8361H27.5989C27.7704 17.5439 28.1748 17.4804 28.4071 17.4804H28.5534V18.2251C28.4261 18.1934 28.3054 18.1551 28.0947 18.1551C27.8535 18.1551 27.6183 18.3076 27.6183 18.6135V20.9674H26.9053Z" fill="#005DA9"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M26.2784 17.5449V19.7584C26.2784 20.509 25.9856 21.0316 25.1708 21.0316C24.3571 21.0316 24.0642 20.509 24.0642 19.7584V17.5449H24.7772V19.886C24.7772 20.2803 24.9169 20.4459 25.1708 20.4459C25.426 20.4459 25.5658 20.2803 25.5658 19.886V17.5449H26.2784Z" fill="#005DA9"/>
+<path d="M31.4902 20.9674V18.7536C31.4902 18.0265 31.7828 17.4804 32.5975 17.4804C33.4119 17.4804 33.7048 18.0265 33.7048 18.7536V20.9674H32.9918V18.6309C32.9918 18.2641 32.8439 18.092 32.5975 18.092C32.3508 18.092 32.2026 18.2641 32.2026 18.6309V20.9674H31.4902Z" fill="#005DA9"/>
+<path d="M30.2131 20.1052C30.0645 20.2505 29.933 20.4246 29.7088 20.4246C29.5083 20.4246 29.3649 20.2793 29.3649 20.0215C29.3649 19.5388 29.737 19.4266 30.2131 19.3203V20.1052ZM30.9287 20.6049V18.4093C30.9287 17.786 30.5527 17.4804 29.8911 17.4804C29.2229 17.4804 28.7838 17.8557 28.7459 18.5497H29.4589C29.4713 18.2568 29.5413 18.0658 29.8659 18.0658C30.1015 18.0658 30.2157 18.2182 30.2157 18.5049L30.2163 18.7722C29.1568 18.9168 28.6621 19.4544 28.6621 20.1206C28.6621 20.5898 28.9317 21.0332 29.4713 21.0332C29.844 21.0332 29.9641 20.938 30.2507 20.7132C30.2559 20.7776 30.2703 20.8549 30.2916 20.9674H30.9722C30.9542 20.8529 30.9287 20.7129 30.9287 20.6049Z" fill="#005DA9"/>
+<path d="M15.1892 20.4289C14.824 20.4279 14.7988 20.227 14.7988 19.9767V16.3741H14.0858V19.9502C14.0858 20.5284 14.3427 21.0143 15.1931 21.0143H15.2634V20.4289H15.1892Z" fill="#005DA9"/>
+<path d="M19.8547 18.3397C19.8547 18.1617 19.9879 18.0661 20.1809 18.0661C20.4234 18.0661 20.5232 18.199 20.5644 18.4925L21.1998 18.4375C21.1351 17.9958 20.9132 17.4804 20.1472 17.4804C19.5893 17.4804 19.1509 17.8561 19.1509 18.3969C19.1509 19.3324 20.549 19.5552 20.549 20.1468C20.549 20.3379 20.4096 20.4462 20.2136 20.4462C19.875 20.4462 19.7686 20.1917 19.7222 19.9054L19.0629 20.0107C19.1404 20.6615 19.556 21.0316 20.2074 21.0316C20.8151 21.0316 21.2538 20.7198 21.2538 20.1089C21.2538 19.0906 19.8547 18.874 19.8547 18.3397Z" fill="#005DA9"/>
+<path d="M22.2776 18.3397C22.2776 18.1617 22.4105 18.0661 22.6029 18.0661C22.8424 18.0661 22.9422 18.199 22.9834 18.4925L23.6189 18.4375C23.5547 17.9958 23.3322 17.4804 22.5698 17.4804C22.0119 17.4804 21.5728 17.8561 21.5728 18.3969C21.5728 19.3324 22.9684 19.5552 22.9684 20.1468C22.9684 20.3379 22.829 20.4462 22.6356 20.4462C22.2976 20.4462 22.1913 20.1917 22.1448 19.9054L21.4855 20.0107C21.563 20.6615 21.9786 21.0316 22.6297 21.0316C23.2341 21.0316 23.6725 20.7198 23.6725 20.1089C23.6725 19.0906 22.2776 18.874 22.2776 18.3397Z" fill="#005DA9"/>
+<path d="M37.5457 18.626C37.5457 18.2314 37.6858 18.0661 37.9407 18.0661C38.1952 18.0661 38.335 18.2314 38.335 18.626V18.8043H37.5457V18.626ZM39.0476 19.39V18.7536C39.0476 18.0027 38.7561 17.4804 37.9407 17.4804C37.1259 17.4804 36.8337 18.0027 36.8337 18.7536V19.7588C36.8337 20.5097 37.1259 21.0316 37.9407 21.0316C38.6779 21.0316 38.9887 20.6043 39.0404 19.9639C39.0404 19.9639 39.0443 19.9027 39.0414 19.8749H38.3343L38.3333 19.9633C38.3153 20.3019 38.1782 20.4462 37.9407 20.4462C37.6858 20.4462 37.5457 20.281 37.5457 19.886V19.39H39.0476Z" fill="#005DA9"/>
+<path d="M15.5254 16.3741V17.0256H15.7325C15.6671 17.1905 15.5277 17.5449 15.5277 17.5449H15.8758L16.1769 17.0256V16.3741H15.5254Z" fill="#005DA9"/>
+<path d="M35.7108 19.8343L35.7102 19.9633C35.6925 20.3019 35.5551 20.4462 35.3178 20.4462C35.0626 20.4462 34.9232 20.281 34.9232 19.886V18.626C34.9232 18.2314 35.0626 18.0661 35.3178 18.0661C35.5724 18.0661 35.7124 18.2314 35.7124 18.626V18.7533L36.4248 18.7536C36.4248 18.0026 36.1323 17.4804 35.3178 17.4804C34.5031 17.4804 34.2106 18.0026 34.2106 18.7536V19.7588C34.2106 20.5097 34.5031 21.0316 35.3178 21.0316C36.1872 21.0316 36.4202 20.4181 36.4202 19.8343H35.7108Z" fill="#005DA9"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M4.72013 15.4707C4.82549 15.706 4.74402 16.0427 4.59481 16.2105C4.8592 16.5462 5.5208 16.4062 5.87615 16.3103C5.97268 16.2913 6.04924 16.1183 6.14119 16.1853C6.16507 16.205 6.32344 16.0365 6.30413 16.1955C6.30413 16.2913 6.26127 16.3941 6.1618 16.4311C6.0872 16.4585 5.87321 16.5224 5.87321 16.5224C5.49365 16.6421 5.28718 16.6951 4.90729 16.878C4.73224 16.9706 4.77739 17.3073 4.80193 17.4297C4.82582 17.5521 4.94329 17.9915 4.84022 18.2101C4.75547 18.3887 4.46099 18.5543 4.45575 18.7752C4.45575 18.8714 4.61543 18.9878 4.52316 19.066C4.4636 19.1168 4.41943 19.1249 4.38311 19.0912C4.38311 19.0912 4.09812 18.7977 4.13378 18.6973C4.13149 18.6584 4.45411 18.1957 4.31603 17.9869C4.23914 18.0589 4.23031 18.2546 4.07488 18.3259C4.00159 18.3593 3.8959 18.2745 3.83308 18.3102C3.80821 18.3249 3.81116 18.4237 3.7876 18.4473C3.76404 18.4715 3.66064 18.4679 3.63839 18.4237C3.57851 18.3033 3.60207 18.0975 3.62432 17.9964C3.65704 17.8462 3.96985 18.0108 3.86842 17.7971C3.83112 17.7189 3.78334 17.6165 3.78694 17.4519C3.78989 17.3256 3.89492 17.18 3.7912 17.1162C3.67537 17.058 3.40084 16.9363 3.3956 16.7923C3.36321 16.45 3.99864 16.45 4.14327 16.1425C4.14327 15.9942 3.95742 15.8683 3.99439 15.6343C4.01271 15.5155 4.10499 15.3798 4.25779 15.3591C4.44888 15.333 4.56635 15.3555 4.72013 15.4707Z" fill="#005DA9"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M13.0721 15.5548C13.0963 15.3915 12.9965 15.0113 13.0472 14.8552L13.3371 15.0061C13.2753 15.1082 13.1526 15.3359 13.0721 15.5548ZM13.6349 14.777C13.2461 14.5267 12.9088 14.0853 12.4713 14.158C12.241 14.1383 12.4288 13.8936 12.366 13.7977C12.2603 13.6102 12.2485 13.5395 11.8375 13.5791C11.7243 13.5903 11.634 13.6318 11.5921 13.7303C11.5551 13.8402 11.5892 13.8141 11.5627 13.9165C11.5293 14.0186 11.4079 14.066 11.525 14.1432C11.5345 14.1766 11.5336 14.2342 11.525 14.3402C11.5188 14.4142 11.6118 14.4073 11.65 14.4312C11.1838 14.7725 10.3451 14.7109 9.9345 14.443C9.85859 14.3936 9.59355 14.4043 9.5929 14.4345C9.59355 14.5035 9.76533 14.5185 9.8275 14.5905C9.79904 14.6003 9.74897 14.5889 9.7709 14.6318C9.79216 14.6746 10.1063 14.7325 10.1073 14.7325C10.3481 14.8958 10.7227 14.974 11.0149 15.0316C11.6108 15.1199 11.7786 15.0872 11.8565 15.4684C11.9354 15.8542 11.8434 16.2099 11.7554 16.736C11.6837 17.2065 11.7816 17.4991 11.8565 17.9601C11.8706 18.0455 11.9147 18.1862 11.8729 18.2225C11.7901 18.2955 11.5725 18.3583 11.4789 18.4401C11.4383 18.5746 11.8163 18.4882 12.0679 18.5013C12.188 18.5108 12.2168 18.3825 12.2168 18.3056C12.239 17.5854 12.2603 17.36 12.3755 16.9088C12.4432 17.2978 12.4514 17.9522 12.5377 18.3465C12.4393 18.463 12.1762 18.5677 12.2413 18.6312C12.3179 18.7032 12.4484 18.6911 12.5171 18.6737C12.6778 18.6348 12.7681 18.5847 12.8849 18.4787C12.8849 18.4787 13.1244 16.8986 13.0819 16.1163C13.058 15.6808 13.486 15.4301 13.7023 15.0411C13.7546 14.9403 13.7523 14.8526 13.6349 14.777Z" fill="#005DA9"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M8.40715 13.3871C8.57599 13.4178 8.97027 13.5297 9.0164 13.5389C9.06254 13.5484 9.1787 13.6567 9.21436 13.6652C9.23367 13.6698 9.23956 13.6727 9.25625 13.6423C9.27228 13.6122 9.33968 13.6596 9.40872 13.639C9.45388 13.6256 9.49707 13.5045 9.48594 13.4908C9.44177 13.4378 9.21207 13.376 9.10115 13.3753C8.97158 13.3321 8.67022 13.2088 8.44347 13.1368C7.93074 12.9745 7.39576 12.7291 6.90495 13.0213C6.69979 12.9368 6.69619 12.6705 6.3415 12.6983C6.17266 12.7114 6.05061 12.8423 6.01004 12.9588C5.96881 13.0756 5.95212 13.2209 6.02804 13.3652C6.06992 13.4447 6.15172 13.4836 6.23319 13.5111C6.27377 13.5248 6.31696 13.534 6.35753 13.5484C6.41577 13.5687 6.4269 13.6155 6.493 13.606C6.5424 13.5985 6.5833 13.5909 6.63468 13.5939C6.68114 13.5968 6.80057 13.6155 6.82053 13.5523C6.82151 13.5523 6.82315 13.5523 6.82478 13.5526C6.82904 13.6698 6.80646 13.8422 6.74593 13.8713C6.66445 13.8906 6.62846 13.8396 6.4305 13.7823C6.23483 13.7261 5.77282 13.6675 5.76431 14.0212C5.74958 14.5889 5.81764 14.7715 5.42532 15.2528C5.35759 15.3359 5.24307 15.3408 5.31015 15.4279C5.36315 15.4818 5.44921 15.4409 5.49011 15.4072C5.58991 15.6612 5.92726 15.2836 6.00121 15.2253C6.15336 15.1062 5.98092 15.0022 6.05323 14.8873C6.17724 14.6462 6.36866 14.548 6.40923 14.3677C6.60686 14.5218 6.84703 14.6422 7.09276 14.6226C7.19387 14.6033 7.28647 14.5653 7.40066 14.4495C7.51519 14.3337 7.54594 13.9649 7.55609 13.7094C7.57703 13.1901 7.93532 13.301 8.40715 13.3871Z" fill="#005DA9"/>
+<path d="M11.8136 20.7901C11.6098 20.7417 11.3798 20.5971 11.2646 20.4194C11.1841 20.2947 11.1268 20.154 11.0614 20.01C10.8399 19.5255 10.7126 18.9937 10.5689 18.8161C10.3157 18.5023 9.82128 18.0648 9.48819 17.8485C9.38937 17.7844 9.29841 17.7383 9.21628 17.7026C9.2971 17.3103 9.27845 16.8931 9.27845 16.8931C9.27845 16.8133 9.28009 16.811 9.30823 16.7776C9.39395 16.7099 9.45056 16.6271 9.42504 16.4982C9.42209 16.4798 9.35109 16.326 9.33048 16.2927C9.44991 16.3404 9.97638 16.4651 10.1289 16.4543C10.3913 16.4363 11.0146 16.0037 11.1085 15.938C11.1769 15.8977 11.2162 15.8876 11.2518 15.8778C11.2881 15.8676 11.3781 15.8107 11.3987 15.7547C11.4072 15.7299 11.3801 15.5493 11.3176 15.5381C11.2904 15.5355 11.2194 15.5794 11.1946 15.5722C11.1795 15.5679 11.1632 15.5394 11.1501 15.5401C11.1157 15.5388 11.0807 15.5938 11.064 15.6203C11.0414 15.6553 11.0339 15.7187 11.0103 15.7482C10.9675 15.8028 10.3628 15.9736 10.1622 16.0682C10.1275 16.0846 10.0912 16.0977 10.0556 16.0865C9.89687 16.0374 9.25751 15.6706 9.00491 15.723C8.92507 15.7397 8.8004 15.7848 8.74609 15.7259C8.71729 15.6945 8.70126 15.6445 8.72547 15.5947C8.7523 15.5381 8.8858 15.5306 8.91165 15.4655C8.93979 15.3935 8.89333 15.2502 8.89366 15.242C8.89497 15.2145 8.9267 15.2011 8.92376 15.1769C8.92049 15.151 8.88744 15.1232 8.85079 15.0712C8.81218 15.0185 8.80106 14.8844 8.76605 14.8258C8.77423 14.8072 8.79811 14.6854 8.65578 14.6023C8.51344 14.5205 8.27851 14.5019 8.14665 14.6177C8.07204 14.6841 7.97257 14.6586 7.89339 14.6998C7.74353 14.7787 7.83973 14.9364 7.59171 15.1605C7.48406 15.2577 7.54753 15.4459 7.57306 15.4881C7.46802 15.6844 7.65388 15.9157 7.82108 15.8765C7.87605 15.9291 7.91073 15.9527 7.97159 15.9498C7.97257 15.9556 7.97454 15.9615 7.97683 15.9678C7.9392 15.9815 7.85838 16.0221 7.82304 16.0401C7.72815 16.0898 7.67253 16.1507 7.58483 16.2357C7.30442 16.5086 6.88789 16.932 5.89449 17.4291C5.78161 17.4981 5.45767 17.4683 5.45767 17.5387C5.47829 17.5727 5.54864 17.608 5.54864 17.608C5.5506 17.6483 5.42921 17.6643 5.36344 17.6787C5.30618 17.7111 5.41677 17.7566 5.45964 17.7962C5.68017 17.8358 5.79404 17.7864 5.9812 17.6296C6.73639 17.3365 7.29788 17.0498 7.90975 16.6516C8.03965 16.5675 8.11294 16.6588 8.21765 17.0469C8.2579 17.1974 8.05765 17.3204 7.98108 17.5338C7.8947 17.7723 7.90517 17.9509 7.9693 18.0897C7.89895 18.2441 7.68201 18.4489 7.68201 18.4489C7.68201 18.4489 7.16798 18.8746 6.90817 19.1318C6.68306 19.355 6.41082 19.3033 6.20108 19.4034C5.98774 19.5065 5.79404 19.6688 5.61309 19.8183C5.4809 19.9276 5.34871 20.0248 5.173 20.0974C5.10494 20.1252 5.07157 20.1341 4.99926 20.1439C4.90862 20.1563 4.85398 20.2401 4.86183 20.317C4.8687 20.3876 4.93218 20.5467 5.00024 20.6834C5.03689 20.7587 5.12065 20.9334 5.22928 20.9553C5.30258 20.971 5.45767 21.0021 5.49236 20.9351C5.53849 20.8461 5.34151 20.8209 5.32744 20.7047C5.31861 20.6304 5.31076 20.5087 5.3353 20.4377C5.37783 20.315 5.55387 20.2299 5.65923 20.173C5.98513 19.996 6.94875 19.7692 7.23603 19.6828C7.65126 19.5012 7.97912 19.3524 8.24873 19.1757C8.48792 19.031 8.6813 18.8017 8.83051 18.6109C9.18651 18.7879 9.71102 19.0085 10.0592 19.1416C10.264 19.2202 10.1527 19.3517 10.2669 19.6468C10.3484 19.8579 10.495 20.012 10.9809 20.5859C11.0506 20.6811 10.976 20.7466 10.991 20.8523C11.0084 20.9668 11.0643 20.9704 11.17 20.9681C11.2682 20.9648 11.367 20.9681 11.4652 20.9681C11.5905 20.9681 11.7479 20.9688 11.8729 20.9674C11.919 20.9668 12.0103 20.9521 12.0103 20.885C12.0103 20.8107 11.8761 20.8052 11.8136 20.7901Z" fill="#005DA9"/>
+<path d="M15.6076 30.2617C15.5697 30.4044 15.4473 30.8513 14.8498 30.8513C14.3548 30.8513 14.0181 30.4914 14.0181 29.9221C14.0181 29.4142 14.2759 28.9624 14.8701 28.9624C14.9725 28.9624 15.2274 28.9725 15.429 29.1718C15.5212 29.2637 15.5671 29.3707 15.6027 29.4983L15.2379 29.5854C15.1921 29.3861 15.0412 29.2791 14.8524 29.2791C14.3983 29.2791 14.3983 29.7791 14.3983 29.8969C14.3983 30.0677 14.4189 30.2388 14.4951 30.3559C14.5616 30.4584 14.6839 30.5346 14.8472 30.5346C15.0923 30.5346 15.2048 30.3484 15.2506 30.1495L15.6076 30.2617Z" fill="#005DA9"/>
+<path d="M16.7309 30.1848C16.6952 30.1979 16.6645 30.2081 16.583 30.2257C16.565 30.228 16.4783 30.2463 16.4629 30.2516C16.3988 30.264 16.2587 30.2997 16.2587 30.4224C16.2587 30.4966 16.3173 30.6036 16.4524 30.6036C16.5342 30.6036 16.6033 30.5677 16.6569 30.5218C16.7309 30.4584 16.7309 30.3739 16.7309 30.2542V30.1848ZM15.9446 29.8432C16.0032 29.6312 16.1236 29.4679 16.5166 29.4679C17.0728 29.4679 17.0754 29.728 17.0754 29.9656C17.0754 30.0474 17.0702 30.4044 17.0728 30.4787C17.0803 30.6521 17.0983 30.7106 17.1494 30.8206H16.8048C16.797 30.8026 16.7894 30.7849 16.779 30.7463L16.7587 30.6753C16.69 30.744 16.5624 30.8513 16.348 30.8513C16.0827 30.8513 15.9089 30.69 15.9089 30.4607C15.9089 30.1364 16.2077 30.0778 16.3912 30.0422C16.5879 30.0065 16.6618 29.9859 16.7309 29.9577V29.9221C16.7309 29.8354 16.7309 29.7359 16.491 29.7359C16.3196 29.7359 16.2846 29.8354 16.261 29.9015L15.9446 29.8432Z" fill="#005DA9"/>
+<path d="M17.4886 29.4982H17.8384V30.8204H17.4886V29.4982ZM17.4886 28.993H17.8384V29.3173H17.4886V28.993Z" fill="#005DA9"/>
+<path d="M18.5355 30.3893C18.576 30.5654 18.7063 30.601 18.8185 30.601C18.8492 30.601 19.0711 30.5984 19.0711 30.4557C19.0711 30.3789 19.0102 30.3612 18.9284 30.3432C18.5276 30.2562 18.2341 30.1874 18.2341 29.8733C18.2341 29.57 18.5122 29.4679 18.7903 29.4679C19.1041 29.4679 19.3011 29.5546 19.3774 29.8174L19.0456 29.8786C19.002 29.7231 18.8594 29.7179 18.7979 29.7179C18.7396 29.7179 18.5584 29.7208 18.5584 29.8278C18.5584 29.8661 18.5862 29.8943 18.6245 29.9093C18.6905 29.9348 18.8339 29.9705 18.9206 29.9911C19.1552 30.0474 19.4209 30.1161 19.4209 30.407C19.4209 30.6138 19.255 30.8513 18.8185 30.8513C18.6905 30.8513 18.4792 30.8281 18.326 30.69C18.2262 30.601 18.1981 30.4937 18.1857 30.443L18.5355 30.3893Z" fill="#005DA9"/>
+<path d="M20.0307 30.3893C20.0716 30.5654 20.2015 30.601 20.3141 30.601C20.3445 30.601 20.567 30.5984 20.567 30.4557C20.567 30.3789 20.5055 30.3612 20.4237 30.3432C20.0232 30.2562 19.7297 30.1874 19.7297 29.8733C19.7297 29.57 20.0078 29.4679 20.2856 29.4679C20.5997 29.4679 20.7964 29.5546 20.873 29.8174L20.5415 29.8786C20.498 29.7231 20.3547 29.7179 20.2935 29.7179C20.2346 29.7179 20.0536 29.7208 20.0536 29.8278C20.0536 29.8661 20.0818 29.8943 20.1197 29.9093C20.1868 29.9348 20.3295 29.9705 20.4162 29.9911C20.6508 30.0474 20.9165 30.1161 20.9165 30.407C20.9165 30.6138 20.7503 30.8513 20.3141 30.8513C20.1868 30.8513 19.9744 30.8281 19.8213 30.69C19.7222 30.601 19.6937 30.4937 19.6813 30.443L20.0307 30.3893Z" fill="#005DA9"/>
+<path d="M22.0598 30.0448C22.0522 29.7562 21.853 29.7359 21.7993 29.7359C21.6334 29.7359 21.5339 29.8714 21.5365 30.0448H22.0598ZM22.3889 30.4584C22.3608 30.5395 22.2508 30.8513 21.8121 30.8513C21.6975 30.8513 21.3909 30.836 21.2506 30.5346C21.192 30.407 21.1714 30.2768 21.1714 30.1671C21.1714 29.8098 21.3605 29.4679 21.779 29.4679C22.2764 29.4679 22.4144 29.8684 22.4069 30.2588H21.529C21.5339 30.4175 21.6184 30.583 21.8173 30.583C21.9806 30.583 22.0215 30.4607 22.0395 30.3995L22.3889 30.4584Z" fill="#005DA9"/>
+<path d="M23.5656 28.9931H23.9229L24.6653 30.2133H24.6705V28.9931H25.0128V30.8206H24.6427L23.9124 29.6286H23.9075V30.8206H23.5656V28.9931Z" fill="#005DA9"/>
+<path d="M26.2042 30.1848C26.1688 30.1979 26.1381 30.2081 26.0563 30.2257C26.0386 30.228 25.9516 30.2463 25.9365 30.2516C25.8724 30.264 25.7323 30.2997 25.7323 30.4224C25.7323 30.4966 25.7909 30.6036 25.9264 30.6036C26.0082 30.6036 26.0769 30.5677 26.1306 30.5218C26.2042 30.4584 26.2042 30.3739 26.2042 30.2542V30.1848ZM25.4186 29.8432C25.4771 29.6312 25.5969 29.4679 25.9902 29.4679C26.5464 29.4679 26.549 29.728 26.549 29.9656C26.549 30.0474 26.5438 30.4044 26.5464 30.4787C26.554 30.6521 26.5716 30.7106 26.623 30.8206H26.2785C26.2706 30.8026 26.2631 30.7849 26.2529 30.7463L26.2323 30.6753C26.1636 30.744 26.036 30.8513 25.8213 30.8513C25.5563 30.8513 25.3826 30.69 25.3826 30.4607C25.3826 30.1364 25.6813 30.0778 25.8649 30.0422C26.0615 30.0065 26.1355 29.9859 26.2042 29.9577V29.9221C26.2042 29.8354 26.2042 29.7359 25.9647 29.7359C25.7935 29.7359 25.7579 29.8354 25.735 29.9015L25.4186 29.8432Z" fill="#005DA9"/>
+<path d="M27.5699 29.7765H27.3323V30.3098C27.3323 30.4993 27.3323 30.5601 27.4292 30.5601C27.4753 30.5601 27.5162 30.5474 27.5597 30.5294L27.5699 30.5271L27.6006 30.7977C27.4854 30.8461 27.3604 30.8513 27.3248 30.8513C27.2175 30.8513 27.0797 30.8153 27.0287 30.7159C26.9851 30.6344 26.9802 30.5549 26.9802 30.3533V29.7765H26.8196V29.4983H26.9802V29.2356L27.3323 29.0288V29.4983H27.5699V29.7765Z" fill="#005DA9"/>
+<path d="M27.8889 29.4982H28.2384V30.8204H27.8889V29.4982ZM27.8889 28.993H28.2384V29.3173H27.8889V28.993Z" fill="#005DA9"/>
+<path d="M29.272 30.5654C29.4304 30.5654 29.5963 30.4505 29.5963 30.157C29.5963 29.8913 29.4507 29.7536 29.272 29.7536C29.1035 29.7536 28.9507 29.8812 28.9507 30.1593C28.9507 30.4404 29.1061 30.5654 29.272 30.5654ZM29.272 29.4679C29.7314 29.4679 29.9559 29.82 29.9559 30.1544C29.9559 30.5192 29.7007 30.8513 29.2746 30.8513C29.0652 30.8513 28.5905 30.7542 28.5905 30.1416C28.5905 29.8278 28.8025 29.4679 29.272 29.4679Z" fill="#005DA9"/>
+<path d="M31.1609 30.1439C31.1609 29.927 31.1609 29.7359 30.9463 29.7359C30.8364 29.7359 30.7369 29.7945 30.6934 29.8913C30.6577 29.9679 30.6554 30.1138 30.6554 30.2208V30.8206H30.3053V29.4983H30.6322V29.6927H30.6374C30.7676 29.5137 30.9335 29.4679 31.0687 29.4679C31.1276 29.4679 31.2627 29.4781 31.3723 29.5648C31.5127 29.6721 31.5075 29.8684 31.5104 29.9986V30.8206H31.1609V30.1439Z" fill="#005DA9"/>
+<path d="M32.6845 30.1848C32.6485 30.1979 32.6181 30.2081 32.5363 30.2257C32.5183 30.228 32.4316 30.2463 32.4162 30.2516C32.3527 30.264 32.212 30.2997 32.212 30.4224C32.212 30.4966 32.2709 30.6036 32.406 30.6036C32.4878 30.6036 32.5566 30.5677 32.6102 30.5218C32.6845 30.4584 32.6845 30.3739 32.6845 30.2542V30.1848ZM31.8985 29.8432C31.9571 29.6312 32.0769 29.4679 32.4702 29.4679C33.0264 29.4679 33.029 29.728 33.029 29.9656C33.029 30.0474 33.0238 30.4044 33.0264 30.4787C33.0339 30.6521 33.0519 30.7106 33.1027 30.8206H32.7581C32.7509 30.8026 32.7434 30.7849 32.7329 30.7463L32.7126 30.6753C32.6436 30.744 32.516 30.8513 32.3013 30.8513C32.0356 30.8513 31.8625 30.69 31.8625 30.4607C31.8625 30.1364 32.161 30.0778 32.3452 30.0422C32.5412 30.0065 32.6155 29.9859 32.6845 29.9577V29.9221C32.6845 29.8354 32.6845 29.7359 32.4446 29.7359C32.2732 29.7359 32.2379 29.8354 32.2146 29.9015L31.8985 29.8432Z" fill="#005DA9"/>
+<path d="M33.4423 28.993H33.792V30.8204H33.4423V28.993Z" fill="#005DA9"/>
+<path d="M35.0221 30.0448C35.0145 29.7562 34.8156 29.7359 34.7616 29.7359C34.596 29.7359 34.4962 29.8714 34.4989 30.0448H35.0221ZM35.3512 30.4584C35.3231 30.5395 35.2132 30.8513 34.7747 30.8513C34.6599 30.8513 34.3533 30.836 34.2129 30.5346C34.1543 30.407 34.134 30.2768 34.134 30.1671C34.134 29.8098 34.3228 29.4679 34.7413 29.4679C35.2387 29.4679 35.3764 29.8684 35.3692 30.2588H34.491C34.4962 30.4175 34.5807 30.583 34.7796 30.583C34.9429 30.583 34.9838 30.4607 35.0015 30.3995L35.3512 30.4584Z" fill="#005DA9"/>
 </svg>
diff --git a/src/assets/logos/impots.svg b/src/assets/logos/impots.svg
index 53930db8c..b34b407ec 100644
--- a/src/assets/logos/impots.svg
+++ b/src/assets/logos/impots.svg
@@ -1,6 +1,6 @@
-<svg id="impots" width="120" height="56" viewBox="0 0 120 56" fill="none" xmlns="http://www.w3.org/2000/svg">
-<rect x="20" y="14" width="80" height="28.8" fill="white"/>
-<path d="M53.2366 39.4592C53.5559 39.1424 53.8752 38.8256 54.1655 38.48C54.746 37.8176 55.3266 37.2128 55.9942 36.6368C56.1974 36.464 56.4006 36.2912 56.6038 36.176C56.6619 36.1184 56.6619 36.0032 56.7199 35.9456C56.4587 36.0608 56.2845 36.2624 55.9942 36.3776C55.9362 36.3776 55.8781 36.32 55.9362 36.2624C56.1394 36.1184 56.3426 35.9744 56.5167 35.8304H56.4877C56.4296 35.8304 56.4296 35.7728 56.4296 35.7152C55.704 35.6 55.1815 36.0896 54.688 36.5216C54.5719 36.5792 54.4558 36.464 54.4267 36.464C53.614 36.7232 53.0044 37.4432 52.1916 37.76V37.6448C51.8723 37.76 51.553 37.9616 51.2047 38.0192C50.7112 38.1344 50.2758 38.0768 49.8404 38.0768C49.1727 38.1344 48.5051 38.2784 47.8375 38.4224C47.8084 38.4224 47.8084 38.4224 47.7794 38.4512C47.4311 38.5376 47.0828 38.6816 46.7635 38.8544L46.6473 38.9696C46.5312 39.0848 46.4151 39.2288 46.27 39.2864C45.9217 39.4592 45.6604 39.7472 45.3701 40.0064C45.3411 40.0352 45.3121 40.0352 45.283 40.0352C44.9928 40.3232 44.7025 40.6112 44.4122 40.8704C44.3832 40.8992 44.2961 40.8992 44.2381 40.8992C44.2381 40.8704 44.2671 40.8704 44.2671 40.8416C44.3251 40.7552 44.3542 40.6976 44.4122 40.6112L44.5864 40.352C44.6735 40.2368 44.7315 40.1216 44.8186 40.0352C44.8476 40.0064 44.8476 39.9776 44.8186 39.9776C44.7896 39.9488 44.7606 39.9488 44.7315 39.9488C44.9928 39.6896 45.3411 39.4592 45.6604 39.2576C45.6314 39.2576 45.5733 39.2288 45.6024 39.2C45.6314 39.1424 45.6604 39.1136 45.6894 39.056C45.6894 39.0272 45.6894 39.0272 45.7185 38.9984C45.7185 38.9696 45.6894 38.9696 45.6894 38.9408L45.4282 39.1136C45.283 39.2288 45.196 39.4592 44.9928 39.4592H44.9057C44.8767 39.4592 44.8476 39.4592 44.8476 39.4304V39.4016C44.8476 39.3728 44.8767 39.3728 44.8767 39.344C44.8767 39.3152 44.9057 39.3152 44.9057 39.2864C44.9057 39.2864 44.9057 39.2576 44.9347 39.2576C44.9347 39.2288 44.9637 39.2 44.9637 39.2C44.9637 39.1712 44.9928 39.1712 44.9928 39.1424C45.0218 39.1136 45.0508 39.056 45.0508 39.0272C45.0508 38.9984 45.0799 38.9984 45.0799 38.9696C45.1089 38.9408 45.1089 38.912 45.1379 38.8832C45.1669 38.8256 45.1379 38.7968 45.1089 38.7968C45.196 38.6528 45.3411 38.5664 45.4862 38.48H45.4572C45.6604 38.3648 45.8926 38.2496 46.0958 38.1344L46.1829 38.048C45.8636 38.1632 45.6024 38.3072 45.3121 38.48C45.3121 38.48 45.254 38.5088 45.225 38.5376C45.225 38.5376 45.1669 38.5664 45.0799 38.48V38.4512C45.1379 38.336 45.3121 38.2784 45.3992 38.192C45.4572 38.192 45.5153 38.192 45.5153 38.2496C47.286 36.896 49.6952 37.2128 51.7272 36.5216C51.9013 36.4064 52.0465 36.2912 52.2206 36.2048C52.4819 36.0896 52.7141 35.8304 53.0334 35.6576C53.4688 35.3408 53.7881 34.9376 53.9623 34.4192C53.9623 34.3616 53.9042 34.304 53.9042 34.304C53.1786 35.0528 52.3658 35.6576 51.495 36.0896C50.3339 36.6944 49.0857 36.5792 47.8665 36.752C47.9246 36.6368 48.0407 36.6368 48.1278 36.6368C48.1278 36.464 48.2439 36.4064 48.36 36.32H48.5341C48.5922 36.32 48.5922 36.2048 48.6502 36.2048C48.7664 36.2048 48.9405 36.1472 48.8825 36.1472C48.7083 35.9168 48.389 36.32 48.1278 36.1472C48.2439 36.032 48.1858 35.888 48.3019 35.8304H48.5341C48.5341 35.7152 48.6502 35.6 48.6502 35.6C49.463 35.1104 50.2468 34.736 51.0015 34.304C50.8273 34.304 50.7402 34.4768 50.5661 34.3616C50.6822 34.3616 50.5661 34.1888 50.6822 34.1888C51.2918 34.016 51.7852 33.6992 52.3948 33.4688C52.1626 33.4688 52.0175 33.6416 51.7852 33.4688C51.9013 33.4112 51.9594 33.296 52.1045 33.296V33.1232C52.1045 33.0656 52.1626 33.0656 52.2206 33.0656C52.1626 33.0656 52.1045 33.008 52.1045 33.008C52.1626 32.8928 52.3368 32.9504 52.4238 32.8352C52.3658 32.8352 52.2497 32.8352 52.2497 32.7776C52.4238 32.5472 52.6851 32.5184 52.9754 32.4608C52.9173 32.3456 52.7431 32.4608 52.7431 32.3456C52.7431 32.288 52.8012 32.288 52.8593 32.288H52.7431C52.627 32.2304 52.6851 32.1152 52.6851 32.0576C53.0044 31.6832 53.0044 31.1936 53.1786 30.7616C53.1205 30.7616 53.0624 30.7616 53.0624 30.704C52.5109 31.3088 51.6401 31.5104 50.8273 31.7408H50.45C50.1887 31.856 49.7823 31.856 49.5211 31.6832C49.2889 31.568 49.2018 31.424 48.9696 31.2512C48.5341 30.992 48.0987 30.7616 47.6053 30.5888C46.241 30.1568 44.8186 29.9264 43.3963 29.984C44.0058 29.6672 44.6735 29.6384 45.3121 29.4368C46.241 29.1776 47.1118 28.832 48.0987 28.8896C47.9246 28.832 47.7214 28.8896 47.5472 28.8896C46.7925 28.832 46.0087 29.0624 45.196 29.2064C44.6444 29.3216 44.151 29.5232 43.5994 29.6384C43.2801 29.7536 43.106 30.0704 42.7286 30.0128V29.84C43.2801 29.1776 43.9478 28.544 44.8186 28.4864C45.8055 28.3136 46.7344 28.4864 47.7214 28.6016C48.4471 28.6592 49.0857 28.832 49.8114 28.976C50.0726 28.976 50.1307 29.408 50.3629 29.4656C50.6822 29.5808 51.0305 29.4656 51.3498 29.696C51.3498 29.5808 51.2918 29.4656 51.3498 29.3792C51.582 29.1488 51.8433 29.4368 52.0755 29.3216C52.5109 29.0624 51.6981 28.5728 51.4659 28.1696C51.4659 28.112 51.524 28.0544 51.524 28.0544C51.9594 28.4288 52.2787 28.8608 52.8302 29.1488C53.0915 29.264 53.7591 29.408 53.643 29.0912C53.3818 28.4864 52.8302 27.9968 52.3658 27.4496V27.2192C52.2497 27.2192 52.2497 27.1616 52.1916 27.104V26.8736C51.9594 26.7584 52.0175 26.5568 51.9304 26.384C51.7562 26.1248 51.8723 25.7216 51.7562 25.4048C51.6401 25.088 51.582 24.8 51.524 24.4832C51.3498 23.5616 51.1466 22.7552 51.0305 21.8624C50.9144 20.8256 51.6401 20.0192 52.1336 19.0976C52.5109 18.4352 52.9463 17.8016 53.672 17.3696C53.8462 16.7072 54.2816 16.16 54.717 15.6416C55.1524 15.1232 55.8781 14.7776 56.4006 14.5472C57.1553 14.2016 57.852 14 57.852 14H20V42.8H46.9086C47.9536 42.0512 48.9986 41.7056 50.45 40.9856C51.1466 40.6976 52.7141 39.9776 53.2366 39.4592ZM44.8186 35.5424C44.7025 35.5424 44.4993 35.6 44.5574 35.4848C44.6154 35.2256 44.9928 35.2256 45.225 35.1104C45.3411 35.0528 45.4862 34.9376 45.6024 34.9952C45.7185 35.168 45.8636 35.1104 45.9797 35.2256C45.6314 35.5424 45.196 35.3984 44.8186 35.5424ZM36.4006 34.3616C36.4006 34.3616 36.3425 34.304 36.3425 34.2464C37.0682 33.3248 37.5907 32.4608 38.1132 31.4816C38.8389 31.1072 39.4195 30.56 39.971 29.9552C40.8999 28.976 41.8868 28.112 43.0479 27.5648C43.4833 27.392 44.0349 27.4496 44.4703 27.6224C44.2961 27.8528 44.0349 27.7952 43.8026 27.9392C43.7446 27.9392 43.6865 27.9392 43.6285 27.8816C43.6865 27.824 43.6865 27.7664 43.6865 27.7088C43.135 28.3136 42.3803 28.5728 41.9449 29.2928C41.6256 29.84 41.3933 30.5312 40.6967 30.704C40.4645 30.7616 40.7547 30.5312 40.6386 30.5888C38.926 31.6256 37.7359 32.8928 36.4006 34.3616ZM40.9579 30.7616C40.8999 30.8768 40.8418 30.8768 40.7838 30.992C40.7257 31.1072 40.6677 31.1648 40.5515 31.2224C40.4935 31.2224 40.4354 31.2224 40.4354 31.1648C40.4935 30.9344 40.6677 30.7328 40.8709 30.6752C40.9579 30.6464 40.9579 30.704 40.9579 30.7616ZM43.5124 38.912C43.4833 38.9696 43.4253 39.0272 43.3672 39.0848C43.4253 39.0848 43.4833 39.1424 43.4253 39.1712C43.3092 39.2864 43.164 39.4016 43.0189 39.4592H42.9318C42.8738 39.5168 42.7867 39.5744 42.7286 39.6608C42.6706 39.7184 42.3513 39.6896 42.4383 39.6032C42.5835 39.488 42.6996 39.344 42.8447 39.2288C42.9318 39.1712 43.0189 39.0848 43.077 38.9984C43.106 38.9408 43.135 38.912 43.1931 38.8832C43.2801 38.8256 43.5704 38.7968 43.5124 38.912ZM42.5254 38.48C42.2932 38.624 42.09 38.768 41.8868 38.912C41.6546 39.056 41.3933 39.1424 41.1611 39.2576C41.1321 39.2288 41.1031 39.2288 41.074 39.2288C40.8709 39.344 40.6967 39.488 40.5225 39.6608L40.4354 39.7472L40.3484 39.8336L40.2322 39.9488C40.2032 39.9776 40.2032 40.0064 40.1452 40.0352C40.1161 40.064 40.0291 40.064 40.0291 40.0064C40 40.0352 39.971 40.0352 39.942 40.064C39.9129 40.0928 39.8839 40.0928 39.8549 40.1216H39.7968C39.7388 40.1792 39.6517 40.2368 39.5936 40.2944C39.4775 40.4096 39.3614 40.496 39.2743 40.64V40.6688L39.2453 40.6976C39.2453 40.6976 39.2453 40.7264 39.2163 40.7264C39.2163 40.7552 39.1873 40.7552 39.1873 40.784C39.1873 40.784 39.1582 40.8128 39.1292 40.8128L39.1002 40.784C39.1002 40.784 39.1002 40.7552 39.0711 40.7552C39.0421 40.7264 39.0421 40.6976 39.0131 40.6688V40.64C39.0711 40.5824 39.1292 40.5248 39.1873 40.4384C39.2163 40.4096 39.2163 40.3808 39.2453 40.3808C39.2743 40.352 39.3034 40.2944 39.3324 40.2656C39.3324 40.2368 39.3614 40.2368 39.3614 40.208C39.4195 40.1216 39.4775 40.064 39.5356 39.9776L39.5646 39.9488C39.5936 39.92 39.6227 39.8624 39.6517 39.8336C39.6807 39.8048 39.6807 39.776 39.7097 39.7184V39.6896C39.7388 39.632 39.7388 39.6032 39.7678 39.5744V39.5456C39.7678 39.5168 39.7678 39.5168 39.7968 39.488C39.7968 39.4592 39.7968 39.4304 39.8259 39.4016V39.3728C39.8839 39.2576 39.971 39.1712 40.0581 39.0848H40.0291C39.942 39.1424 39.8839 39.2 39.8259 39.2576C39.7678 39.3152 39.6517 39.2288 39.7388 39.1712C39.7968 39.1424 39.8259 39.0848 39.8549 39.056C39.942 38.9696 40.0291 38.8544 40.1452 38.768C40.2032 38.7104 40.2613 38.6816 40.3193 38.6528L40.3484 38.624C40.3774 38.5664 40.4354 38.5376 40.4645 38.48C40.987 37.9904 41.8868 37.9904 42.5545 37.6736C42.8157 37.5584 43.164 37.7312 43.4253 37.6736C43.5994 37.6736 43.7446 37.6736 43.9188 37.7888C43.4253 37.8752 42.9899 38.192 42.5254 38.48ZM43.6575 34.6784C43.5994 34.6208 43.8317 34.6784 43.8897 34.5632H43.4543C43.3963 34.5632 43.3963 34.5056 43.3963 34.448C43.135 34.5056 42.7867 34.6208 42.5254 34.6784C42.1481 34.7936 41.7997 35.0528 41.3643 35.168C40.7547 35.3984 40.2613 35.888 39.6227 36.0896C39.5646 36.0896 39.5646 36.032 39.5646 35.9744C39.6227 35.8016 39.8259 35.744 39.942 35.6C39.942 35.5424 39.942 35.4848 39.8839 35.4848C40.3193 34.88 40.9289 34.5632 41.4804 34.0736V33.9008C41.6546 33.6704 41.9158 33.584 42.032 33.296C42.09 33.1232 42.3222 32.9216 42.5835 32.8064C42.5254 32.7488 42.4093 32.7488 42.4093 32.6336C42.1771 32.6336 41.9739 32.7488 41.7417 32.576C41.8578 32.4896 41.9739 32.432 42.09 32.3744C42.032 32.3744 42.0029 32.3456 41.9739 32.288C41.9158 32.1728 42.09 32.0576 42.2351 32.0288C42.4674 31.9712 42.7286 31.9712 42.9028 31.7984C42.5254 31.7408 42.09 31.9136 41.6836 31.6832C41.9449 30.9632 42.4093 30.3872 43.0479 30.0416C43.106 30.0416 43.2221 30.0416 43.2221 30.0992C43.2221 30.3584 43.0479 30.5888 42.7867 30.6464C43.2221 30.7616 43.6575 30.7616 44.0929 30.9632C44.0349 31.0784 43.9188 31.0208 43.8607 31.0208C44.1219 31.1936 44.4703 31.0784 44.7315 31.28C44.5574 31.4528 44.4122 31.28 44.2381 31.28C45.9507 31.7696 47.7504 32.144 49.1727 33.2384C47.9536 33.8432 46.7054 34.1024 45.3992 34.3904C45.225 34.3904 45.1379 34.3904 44.9637 34.3328C44.9637 34.3904 44.9637 34.5056 44.9057 34.5056C44.6735 34.5056 44.5283 34.5056 44.3542 34.6208C44.151 34.7936 43.8317 34.8512 43.6575 34.6784Z" fill="#000091"/>
-<path d="M99.971 14H68.7965C68.7965 14 68.8546 14 69.0868 14.144C69.348 14.288 69.6673 14.4608 69.8705 14.5472C70.2769 14.7488 70.6542 15.008 70.9154 15.4112C71.0316 15.584 71.1767 15.9008 71.0896 16.1312C70.9735 16.3904 70.9154 16.8512 70.6542 16.9376C70.3349 17.1104 69.8995 17.1104 69.4931 17.0528C69.2609 17.0528 69.0577 16.9952 68.8255 16.9376C69.6383 17.2544 70.422 17.6576 70.9735 18.4064C71.0316 18.5216 71.2347 18.5792 71.4669 18.5792C71.525 18.5792 71.525 18.6944 71.525 18.752C71.4089 18.8672 71.2928 18.9248 71.3508 19.0688H71.525C71.7862 18.9536 71.7572 18.4064 72.1346 18.5792C72.3958 18.752 72.5119 19.1264 72.3668 19.3856C72.1346 19.616 71.9314 19.76 71.6992 19.9328C71.6411 20.048 71.6411 20.192 71.6992 20.3072C71.8733 20.5376 71.9314 20.7392 71.9604 20.9696C72.1346 21.344 72.1926 21.776 72.3377 22.1792C72.57 22.9856 72.7731 23.8208 72.7151 24.6272C72.7151 25.0592 72.4829 25.4336 72.657 25.8656C72.7731 26.2976 73.0344 26.6144 73.2666 27.0176C73.4988 27.3344 73.702 27.5648 73.8761 27.8816C74.1954 28.4288 74.805 28.976 74.5438 29.6096C74.3696 29.984 73.7891 29.9264 73.3827 30.1568C73.0634 30.416 73.3246 30.8768 73.4988 31.136C73.76 31.6256 73.1795 31.9424 72.7731 32.0864C72.8892 32.2592 73.0924 32.2016 73.1505 32.3168C73.2085 32.576 73.4698 32.7488 73.3246 33.0368C73.0924 33.3536 72.4538 33.5264 72.7731 34.016C73.0054 34.3904 72.8602 34.8224 72.7151 35.2256C72.5409 35.6576 72.1636 35.9456 71.7282 36.032C71.4089 36.1472 71.0025 36.1472 70.6832 36.0896C70.5671 36.032 70.451 35.9744 70.3639 35.9744C69.4351 35.8592 68.5062 35.6 67.5774 35.6C67.3162 35.6576 67.0259 35.7152 66.8227 35.8016C66.5905 35.9744 66.3583 36.176 66.1551 36.3776C66.1261 36.4352 66.068 36.464 66.039 36.5216C66.01 36.5504 65.9809 36.5792 65.9809 36.608L65.9229 36.6656C65.7487 36.8672 65.6326 37.0688 65.4875 37.2992C65.4875 37.328 65.4585 37.328 65.4585 37.328C65.4585 37.3568 65.4294 37.3856 65.4004 37.4144C65.2263 37.7312 65.0811 38.0768 64.994 38.4224C64.6167 39.6608 64.7909 40.7264 65.0521 40.9856C65.1101 41.0432 66.8517 41.5904 68.0708 42.1376C68.6514 42.3968 69.0287 42.5696 69.377 42.8H100V14H99.971Z" fill="#E1000F"/>
-<path d="M70.653 24.5409C70.8853 24.5985 71.2046 24.5985 71.2046 24.7137C71.0885 25.1457 70.4499 25.2609 70.1015 25.6928H69.9274C69.7532 25.808 69.8113 26.0672 69.6661 26.0672C69.492 26.0096 69.3468 26.0672 69.1727 26.1248C69.4049 26.3552 69.6661 26.4992 69.9854 26.4416C70.0435 26.4416 70.1596 26.5568 70.1596 26.672C70.1596 26.672 70.2176 26.672 70.2757 26.6144C70.3337 26.6144 70.3918 26.6144 70.3918 26.672V26.9024C70.2176 27.1327 69.9564 27.0175 69.7242 27.0751C70.1596 27.1903 70.595 27.1903 71.0014 27.0751C71.3207 26.9599 71.0014 26.4128 71.2336 26.1536C71.1175 26.1536 71.2336 25.9808 71.1175 25.9808C71.2336 25.8656 71.3497 25.7216 71.4368 25.664C71.5529 25.664 71.698 25.6064 71.7561 25.4912C71.7561 25.3761 71.5239 25.3185 71.5819 25.2321C71.9012 25.0017 72.1915 24.6849 72.0754 24.3681C72.0173 24.1953 71.5819 24.1953 71.3207 24.0801C71.0594 23.9649 70.7111 24.0801 70.3918 24.1377C70.1306 24.1377 69.8403 24.3105 69.579 24.3681C69.2017 24.4833 68.8534 24.6849 68.5341 24.9153C68.9114 24.7425 69.2888 24.6849 69.7242 24.5985C70.0435 24.5409 70.3047 24.4833 70.653 24.5409Z" fill="#808080"/>
+<svg id="impots" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect y="13" width="40" height="14.4" fill="white"/>
+<path d="M16.6183 25.7296C16.778 25.5712 16.9376 25.4128 17.0827 25.24C17.373 24.9088 17.6633 24.6064 17.9971 24.3184C18.0987 24.232 18.2003 24.1456 18.3019 24.088C18.3309 24.0592 18.3309 24.0016 18.36 23.9728C18.2293 24.0304 18.1423 24.1312 17.9971 24.1888C17.9681 24.1888 17.9391 24.16 17.9681 24.1312C18.0697 24.0592 18.1713 23.9872 18.2584 23.9152H18.2439C18.2148 23.9152 18.2148 23.8864 18.2148 23.8576C17.852 23.8 17.5907 24.0448 17.344 24.2608C17.2859 24.2896 17.2279 24.232 17.2134 24.232C16.807 24.3616 16.5022 24.7216 16.0958 24.88V24.8224C15.9362 24.88 15.7765 24.9808 15.6023 25.0096C15.3556 25.0672 15.1379 25.0384 14.9202 25.0384C14.5864 25.0672 14.2526 25.1392 13.9187 25.2112C13.9042 25.2112 13.9042 25.2112 13.8897 25.2256C13.7155 25.2688 13.5414 25.3408 13.3817 25.4272L13.3237 25.4848C13.2656 25.5424 13.2076 25.6144 13.135 25.6432C12.9608 25.7296 12.8302 25.8736 12.6851 26.0032C12.6705 26.0176 12.656 26.0176 12.6415 26.0176C12.4964 26.1616 12.3512 26.3056 12.2061 26.4352C12.1916 26.4496 12.1481 26.4496 12.119 26.4496C12.119 26.4352 12.1335 26.4352 12.1335 26.4208C12.1626 26.3776 12.1771 26.3488 12.2061 26.3056L12.2932 26.176C12.3367 26.1184 12.3658 26.0608 12.4093 26.0176C12.4238 26.0032 12.4238 25.9888 12.4093 25.9888C12.3948 25.9744 12.3803 25.9744 12.3658 25.9744C12.4964 25.8448 12.6705 25.7296 12.8302 25.6288C12.8157 25.6288 12.7867 25.6144 12.8012 25.6C12.8157 25.5712 12.8302 25.5568 12.8447 25.528C12.8447 25.5136 12.8447 25.5136 12.8592 25.4992C12.8592 25.4848 12.8447 25.4848 12.8447 25.4704L12.7141 25.5568C12.6415 25.6144 12.598 25.7296 12.4964 25.7296H12.4528C12.4383 25.7296 12.4238 25.7296 12.4238 25.7152V25.7008C12.4238 25.6864 12.4383 25.6864 12.4383 25.672C12.4383 25.6576 12.4528 25.6576 12.4528 25.6432C12.4528 25.6432 12.4528 25.6288 12.4674 25.6288C12.4674 25.6144 12.4819 25.6 12.4819 25.6C12.4819 25.5856 12.4964 25.5856 12.4964 25.5712C12.5109 25.5568 12.5254 25.528 12.5254 25.5136C12.5254 25.4992 12.5399 25.4992 12.5399 25.4848C12.5544 25.4704 12.5544 25.456 12.569 25.4416C12.5835 25.4128 12.569 25.3984 12.5544 25.3984C12.598 25.3264 12.6705 25.2832 12.7431 25.24H12.7286C12.8302 25.1824 12.9463 25.1248 13.0479 25.0672L13.0914 25.024C12.9318 25.0816 12.8012 25.1536 12.656 25.24C12.656 25.24 12.627 25.2544 12.6125 25.2688C12.6125 25.2688 12.5835 25.2832 12.5399 25.24V25.2256C12.569 25.168 12.656 25.1392 12.6996 25.096C12.7286 25.096 12.7576 25.096 12.7576 25.1248C13.643 24.448 14.8476 24.6064 15.8636 24.2608C15.9507 24.2032 16.0232 24.1456 16.1103 24.1024C16.2409 24.0448 16.3571 23.9152 16.5167 23.8288C16.7344 23.6704 16.8941 23.4688 16.9811 23.2096C16.9811 23.1808 16.9521 23.152 16.9521 23.152C16.5893 23.5264 16.1829 23.8288 15.7475 24.0448C15.1669 24.3472 14.5428 24.2896 13.9333 24.376C13.9623 24.3184 14.0203 24.3184 14.0639 24.3184C14.0639 24.232 14.1219 24.2032 14.18 24.16H14.2671C14.2961 24.16 14.2961 24.1024 14.3251 24.1024C14.3832 24.1024 14.4703 24.0736 14.4412 24.0736C14.3542 23.9584 14.1945 24.16 14.0639 24.0736C14.1219 24.016 14.0929 23.944 14.151 23.9152H14.2671C14.2671 23.8576 14.3251 23.8 14.3251 23.8C14.7315 23.5552 15.1234 23.368 15.5007 23.152C15.4137 23.152 15.3701 23.2384 15.283 23.1808C15.3411 23.1808 15.283 23.0944 15.3411 23.0944C15.6459 23.008 15.8926 22.8496 16.1974 22.7344C16.0813 22.7344 16.0087 22.8208 15.8926 22.7344C15.9507 22.7056 15.9797 22.648 16.0523 22.648V22.5616C16.0523 22.5328 16.0813 22.5328 16.1103 22.5328C16.0813 22.5328 16.0523 22.504 16.0523 22.504C16.0813 22.4464 16.1684 22.4752 16.2119 22.4176C16.1829 22.4176 16.1248 22.4176 16.1248 22.3888C16.2119 22.2736 16.3425 22.2592 16.4877 22.2304C16.4587 22.1728 16.3716 22.2304 16.3716 22.1728C16.3716 22.144 16.4006 22.144 16.4296 22.144H16.3716C16.3135 22.1152 16.3425 22.0576 16.3425 22.0288C16.5022 21.8416 16.5022 21.5968 16.5893 21.3808C16.5602 21.3808 16.5312 21.3808 16.5312 21.352C16.2555 21.6544 15.82 21.7552 15.4137 21.8704H15.225C15.0944 21.928 14.8912 21.928 14.7605 21.8416C14.6444 21.784 14.6009 21.712 14.4848 21.6256C14.2671 21.496 14.0494 21.3808 13.8026 21.2944C13.1205 21.0784 12.4093 20.9632 11.6981 20.992C12.0029 20.8336 12.3367 20.8192 12.656 20.7184C13.1205 20.5888 13.5559 20.416 14.0494 20.4448C13.9623 20.416 13.8607 20.4448 13.7736 20.4448C13.3962 20.416 13.0044 20.5312 12.598 20.6032C12.3222 20.6608 12.0755 20.7616 11.7997 20.8192C11.6401 20.8768 11.553 21.0352 11.3643 21.0064V20.92C11.6401 20.5888 11.9739 20.272 12.4093 20.2432C12.9028 20.1568 13.3672 20.2432 13.8607 20.3008C14.2235 20.3296 14.5428 20.416 14.9057 20.488C15.0363 20.488 15.0653 20.704 15.1814 20.7328C15.3411 20.7904 15.5153 20.7328 15.6749 20.848C15.6749 20.7904 15.6459 20.7328 15.6749 20.6896C15.791 20.5744 15.9216 20.7184 16.0378 20.6608C16.2555 20.5312 15.8491 20.2864 15.733 20.0848C15.733 20.056 15.762 20.0272 15.762 20.0272C15.9797 20.2144 16.1393 20.4304 16.4151 20.5744C16.5457 20.632 16.8796 20.704 16.8215 20.5456C16.6909 20.2432 16.4151 19.9984 16.1829 19.7248V19.6096C16.1248 19.6096 16.1248 19.5808 16.0958 19.552V19.4368C15.9797 19.3792 16.0087 19.2784 15.9652 19.192C15.8781 19.0624 15.9362 18.8608 15.8781 18.7024C15.82 18.544 15.791 18.4 15.762 18.2416C15.6749 17.7808 15.5733 17.3776 15.5153 16.9312C15.4572 16.4128 15.82 16.0096 16.0668 15.5488C16.2555 15.2176 16.4732 14.9008 16.836 14.6848C16.9231 14.3536 17.1408 14.08 17.3585 13.8208C17.5762 13.5616 17.9391 13.3888 18.2003 13.2736C18.5777 13.1008 18.926 13 18.926 13H0V27.4H13.4543C13.9768 27.0256 14.4993 26.8528 15.225 26.4928C15.5733 26.3488 16.3571 25.9888 16.6183 25.7296ZM12.4093 23.7712C12.3512 23.7712 12.2496 23.8 12.2787 23.7424C12.3077 23.6128 12.4964 23.6128 12.6125 23.5552C12.6705 23.5264 12.7431 23.4688 12.8012 23.4976C12.8592 23.584 12.9318 23.5552 12.9899 23.6128C12.8157 23.7712 12.598 23.6992 12.4093 23.7712ZM8.2003 23.1808C8.2003 23.1808 8.17127 23.152 8.17127 23.1232C8.53412 22.6624 8.79536 22.2304 9.05661 21.7408C9.41946 21.5536 9.70973 21.28 9.9855 20.9776C10.4499 20.488 10.9434 20.056 11.524 19.7824C11.7417 19.696 12.0174 19.7248 12.2351 19.8112C12.1481 19.9264 12.0174 19.8976 11.9013 19.9696C11.8723 19.9696 11.8433 19.9696 11.8142 19.9408C11.8433 19.912 11.8433 19.8832 11.8433 19.8544C11.5675 20.1568 11.1901 20.2864 10.9724 20.6464C10.8128 20.92 10.6967 21.2656 10.3483 21.352C10.2322 21.3808 10.3774 21.2656 10.3193 21.2944C9.463 21.8128 8.86793 22.4464 8.2003 23.1808ZM10.479 21.3808C10.4499 21.4384 10.4209 21.4384 10.3919 21.496C10.3629 21.5536 10.3338 21.5824 10.2758 21.6112C10.2467 21.6112 10.2177 21.6112 10.2177 21.5824C10.2467 21.4672 10.3338 21.3664 10.4354 21.3376C10.479 21.3232 10.479 21.352 10.479 21.3808ZM11.7562 25.456C11.7417 25.4848 11.7126 25.5136 11.6836 25.5424C11.7126 25.5424 11.7417 25.5712 11.7126 25.5856C11.6546 25.6432 11.582 25.7008 11.5094 25.7296H11.4659C11.4369 25.7584 11.3933 25.7872 11.3643 25.8304C11.3353 25.8592 11.1756 25.8448 11.2192 25.8016C11.2917 25.744 11.3498 25.672 11.4224 25.6144C11.4659 25.5856 11.5094 25.5424 11.5385 25.4992C11.553 25.4704 11.5675 25.456 11.5965 25.4416C11.6401 25.4128 11.7852 25.3984 11.7562 25.456ZM11.2627 25.24C11.1466 25.312 11.045 25.384 10.9434 25.456C10.8273 25.528 10.6967 25.5712 10.5806 25.6288C10.566 25.6144 10.5515 25.6144 10.537 25.6144C10.4354 25.672 10.3483 25.744 10.2613 25.8304L10.2177 25.8736L10.1742 25.9168L10.1161 25.9744C10.1016 25.9888 10.1016 26.0032 10.0726 26.0176C10.0581 26.032 10.0145 26.032 10.0145 26.0032C10 26.0176 9.9855 26.0176 9.97098 26.032C9.95647 26.0464 9.94195 26.0464 9.92744 26.0608H9.89841C9.86939 26.0896 9.82584 26.1184 9.79682 26.1472C9.73876 26.2048 9.68071 26.248 9.63717 26.32V26.3344L9.62265 26.3488C9.62265 26.3488 9.62265 26.3632 9.60814 26.3632C9.60814 26.3776 9.59362 26.3776 9.59362 26.392C9.59362 26.392 9.57911 26.4064 9.5646 26.4064L9.55008 26.392C9.55008 26.392 9.55008 26.3776 9.53557 26.3776C9.52105 26.3632 9.52105 26.3488 9.50654 26.3344V26.32C9.53557 26.2912 9.5646 26.2624 9.59362 26.2192C9.60814 26.2048 9.60814 26.1904 9.62265 26.1904C9.63717 26.176 9.65168 26.1472 9.66619 26.1328C9.66619 26.1184 9.68071 26.1184 9.68071 26.104C9.70973 26.0608 9.73876 26.032 9.76779 25.9888L9.7823 25.9744C9.79682 25.96 9.81133 25.9312 9.82584 25.9168C9.84036 25.9024 9.84036 25.888 9.85487 25.8592V25.8448C9.86939 25.816 9.86939 25.8016 9.8839 25.7872V25.7728C9.8839 25.7584 9.8839 25.7584 9.89841 25.744C9.89841 25.7296 9.89841 25.7152 9.91293 25.7008V25.6864C9.94195 25.6288 9.9855 25.5856 10.029 25.5424H10.0145C9.97098 25.5712 9.94195 25.6 9.91293 25.6288C9.8839 25.6576 9.82584 25.6144 9.86939 25.5856C9.89841 25.5712 9.91293 25.5424 9.92744 25.528C9.97098 25.4848 10.0145 25.4272 10.0726 25.384C10.1016 25.3552 10.1306 25.3408 10.1597 25.3264L10.1742 25.312C10.1887 25.2832 10.2177 25.2688 10.2322 25.24C10.4935 24.9952 10.9434 24.9952 11.2772 24.8368C11.4078 24.7792 11.582 24.8656 11.7126 24.8368C11.7997 24.8368 11.8723 24.8368 11.9594 24.8944C11.7126 24.9376 11.4949 25.096 11.2627 25.24ZM11.8287 23.3392C11.7997 23.3104 11.9158 23.3392 11.9449 23.2816H11.7272C11.6981 23.2816 11.6981 23.2528 11.6981 23.224C11.5675 23.2528 11.3933 23.3104 11.2627 23.3392C11.074 23.3968 10.8999 23.5264 10.6822 23.584C10.3774 23.6992 10.1306 23.944 9.81133 24.0448C9.7823 24.0448 9.7823 24.016 9.7823 23.9872C9.81133 23.9008 9.91293 23.872 9.97098 23.8C9.97098 23.7712 9.97098 23.7424 9.94195 23.7424C10.1597 23.44 10.4645 23.2816 10.7402 23.0368V22.9504C10.8273 22.8352 10.9579 22.792 11.016 22.648C11.045 22.5616 11.1611 22.4608 11.2917 22.4032C11.2627 22.3744 11.2047 22.3744 11.2047 22.3168C11.0885 22.3168 10.9869 22.3744 10.8708 22.288C10.9289 22.2448 10.9869 22.216 11.045 22.1872C11.016 22.1872 11.0015 22.1728 10.9869 22.144C10.9579 22.0864 11.045 22.0288 11.1176 22.0144C11.2337 21.9856 11.3643 21.9856 11.4514 21.8992C11.2627 21.8704 11.045 21.9568 10.8418 21.8416C10.9724 21.4816 11.2047 21.1936 11.524 21.0208C11.553 21.0208 11.611 21.0208 11.611 21.0496C11.611 21.1792 11.524 21.2944 11.3933 21.3232C11.611 21.3808 11.8287 21.3808 12.0465 21.4816C12.0174 21.5392 11.9594 21.5104 11.9303 21.5104C12.061 21.5968 12.2351 21.5392 12.3658 21.64C12.2787 21.7264 12.2061 21.64 12.119 21.64C12.9753 21.8848 13.8752 22.072 14.5864 22.6192C13.9768 22.9216 13.3527 23.0512 12.6996 23.1952C12.6125 23.1952 12.569 23.1952 12.4819 23.1664C12.4819 23.1952 12.4819 23.2528 12.4528 23.2528C12.3367 23.2528 12.2642 23.2528 12.1771 23.3104C12.0755 23.3968 11.9158 23.4256 11.8287 23.3392Z" fill="#000091"/>
+<path d="M39.9854 13H24.3982C24.3982 13 24.4272 13 24.5433 13.072C24.6739 13.144 24.8336 13.2304 24.9352 13.2736C25.1384 13.3744 25.327 13.504 25.4577 13.7056C25.5157 13.792 25.5883 13.9504 25.5447 14.0656C25.4867 14.1952 25.4577 14.4256 25.327 14.4688C25.1674 14.5552 24.9497 14.5552 24.7465 14.5264C24.6304 14.5264 24.5288 14.4976 24.4127 14.4688C24.8191 14.6272 25.2109 14.8288 25.4867 15.2032C25.5157 15.2608 25.6173 15.2896 25.7334 15.2896C25.7624 15.2896 25.7624 15.3472 25.7624 15.376C25.7044 15.4336 25.6463 15.4624 25.6754 15.5344H25.7624C25.8931 15.4768 25.8785 15.2032 26.0672 15.2896C26.1978 15.376 26.2559 15.5632 26.1833 15.6928C26.0672 15.808 25.9656 15.88 25.8495 15.9664C25.8205 16.024 25.8205 16.096 25.8495 16.1536C25.9366 16.2688 25.9656 16.3696 25.9801 16.4848C26.0672 16.672 26.0962 16.888 26.1688 17.0896C26.2849 17.4928 26.3865 17.9104 26.3575 18.3136C26.3575 18.5296 26.2414 18.7168 26.3285 18.9328C26.3865 19.1488 26.5171 19.3072 26.6332 19.5088C26.7493 19.6672 26.8509 19.7824 26.938 19.9408C27.0977 20.2144 27.4024 20.488 27.2718 20.8048C27.1847 20.992 26.8945 20.9632 26.6913 21.0784C26.5316 21.208 26.6623 21.4384 26.7493 21.568C26.88 21.8128 26.5897 21.9712 26.3865 22.0432C26.4446 22.1296 26.5462 22.1008 26.5752 22.1584C26.6042 22.288 26.7348 22.3744 26.6623 22.5184C26.5462 22.6768 26.2269 22.7632 26.3865 23.008C26.5026 23.1952 26.43 23.4112 26.3575 23.6128C26.2704 23.8288 26.0817 23.9728 25.864 24.016C25.7044 24.0736 25.5012 24.0736 25.3416 24.0448C25.2835 24.016 25.2254 23.9872 25.1819 23.9872C24.7175 23.9296 24.2531 23.8 23.7886 23.8C23.658 23.8288 23.5129 23.8576 23.4113 23.9008C23.2952 23.9872 23.1791 24.088 23.0775 24.1888C23.063 24.2176 23.0339 24.232 23.0194 24.2608C23.0049 24.2752 22.9904 24.2896 22.9904 24.304L22.9614 24.3328C22.8743 24.4336 22.8163 24.5344 22.7437 24.6496C22.7437 24.664 22.7292 24.664 22.7292 24.664C22.7292 24.6784 22.7147 24.6928 22.7001 24.7072C22.6131 24.8656 22.5405 25.0384 22.497 25.2112C22.3083 25.8304 22.3954 26.3632 22.526 26.4928C22.555 26.5216 23.4258 26.7952 24.0354 27.0688C24.3256 27.1984 24.5143 27.2848 24.6885 27.4H39.9999V13H39.9854Z" fill="#E1000F"/>
+<path d="M25.3266 18.2705C25.4427 18.2993 25.6023 18.2993 25.6023 18.3569C25.5443 18.5728 25.225 18.6304 25.0508 18.8464H24.9637C24.8767 18.904 24.9057 19.0336 24.8331 19.0336C24.746 19.0048 24.6735 19.0336 24.5864 19.0624C24.7025 19.1776 24.8331 19.2496 24.9928 19.2208C25.0218 19.2208 25.0799 19.2784 25.0799 19.336C25.0799 19.336 25.1089 19.336 25.1379 19.3072C25.1669 19.3072 25.196 19.3072 25.196 19.336V19.4512C25.1089 19.5664 24.9783 19.5088 24.8621 19.5376C25.0799 19.5952 25.2976 19.5952 25.5007 19.5376C25.6604 19.48 25.5007 19.2064 25.6169 19.0768C25.5588 19.0768 25.6169 18.9904 25.5588 18.9904C25.6169 18.9328 25.6749 18.8608 25.7185 18.832C25.7765 18.832 25.8491 18.8032 25.8781 18.7456C25.8781 18.688 25.762 18.6592 25.791 18.616C25.9507 18.5008 26.0958 18.3425 26.0378 18.1841C26.0087 18.0977 25.791 18.0977 25.6604 18.0401C25.5298 17.9825 25.3556 18.0401 25.196 18.0689C25.0653 18.0689 24.9202 18.1553 24.7896 18.1841C24.6009 18.2417 24.4267 18.3425 24.2671 18.4577C24.4558 18.3713 24.6444 18.3425 24.8621 18.2993C25.0218 18.2705 25.1524 18.2417 25.3266 18.2705Z" fill="#808080"/>
 </svg>
diff --git a/src/assets/logos/logement.svg b/src/assets/logos/logement.svg
index e50017d90..5dfad7c6f 100644
--- a/src/assets/logos/logement.svg
+++ b/src/assets/logos/logement.svg
@@ -1,23 +1,12 @@
-<svg id="logement" width="120" height="56" viewBox="0 0 120 56" fill="none" xmlns="http://www.w3.org/2000/svg">
-<rect x="18" y="47" width="85" height="2" rx="1" fill="#333333"/>
-<rect x="24" y="35.9999" width="17" height="11" fill="#4F4F4F"/>
-<path d="M31.9157 27.4206C32.2647 27.1694 32.7353 27.1694 33.0843 27.4206L42.484 34.1884C43.2719 34.7557 42.8706 35.9999 41.8996 35.9999H23.1003C22.1294 35.9999 21.7281 34.7557 22.516 34.1884L31.9157 27.4206Z" fill="#4F4F4F"/>
-<rect x="27" y="37.9999" width="4" height="3" fill="white"/>
-<rect x="34" y="37.9999" width="4" height="3" fill="white"/>
-<rect x="66" y="36" width="31" height="11" fill="#828282"/>
-<rect x="65" y="34" width="33" height="3" rx="1.5" fill="#828282"/>
-<rect x="68.9016" y="38" width="4" height="3" fill="white"/>
-<rect x="75.9016" y="38" width="4" height="3" fill="white"/>
-<rect x="83" y="38" width="4" height="3" fill="white"/>
-<rect x="90" y="38" width="4" height="3" fill="white"/>
-<rect x="45" y="9" width="17" height="38" fill="#333333"/>
-<rect x="48" y="14" width="4" height="3" fill="white"/>
-<rect x="48" y="22" width="4" height="3" fill="white"/>
-<rect x="48" y="30" width="4" height="3" fill="white"/>
-<rect x="48" y="38" width="4" height="3" fill="white"/>
-<rect x="55" y="14" width="4" height="3" fill="white"/>
-<rect x="55" y="22" width="4" height="3" fill="white"/>
-<rect x="55" y="30" width="4" height="3" fill="white"/>
-<rect x="55" y="38" width="4" height="3" fill="white"/>
-<rect x="43" y="7" width="21" height="3" rx="1.5" fill="#333333"/>
+<svg id="logement" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M28 11H18V22.2705C18.9579 23.0955 20.2428 24.1821 21.6 25.2L22 25.5V26V26.4229V26.4248V34H28V11ZM21 34V33V26.4248V26.4229V26C19.9111 25.1833 18.8661 24.3217 18 23.5865V34H20H21Z" fill="#0F5282"/>
+<rect x="20" y="19" width="2" height="2" fill="white"/>
+<rect x="20" y="14" width="2" height="2" fill="white"/>
+<rect x="24" y="19" width="2" height="2" fill="white"/>
+<rect x="24" y="14" width="2" height="2" fill="white"/>
+<rect x="24" y="24" width="2" height="2" fill="white"/>
+<rect x="24" y="29" width="2" height="2" fill="white"/>
+<path d="M16.2809 22.1075C16.1131 21.9642 15.8869 21.9642 15.7191 22.1075C14.8518 22.8483 13.5 24 11 26V26.4237V34H21V26.4248V26.4229V26C19 24.5 17.1482 22.8483 16.2809 22.1075Z" fill="#0F5282"/>
+<rect x="13" y="28" width="2" height="2" fill="white"/>
+<rect x="17" y="28" width="2" height="2" fill="white"/>
 </svg>
diff --git a/src/assets/logos/passNumerique.svg b/src/assets/logos/passNumerique.svg
index 2ba9ad69b..c1a48efbf 100644
--- a/src/assets/logos/passNumerique.svg
+++ b/src/assets/logos/passNumerique.svg
@@ -1,49 +1,49 @@
-<svg width="120" height="56" viewBox="0 0 120 56" fill="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"/>
+<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M19.4767 19.7352C19.4751 19.7337 19.4737 19.7348 19.4722 19.7352L19.4677 19.7373C19.4613 19.7398 19.4552 19.743 19.4495 19.7468C19.4476 19.748 19.445 19.7487 19.4437 19.7468C19.4424 19.745 19.4453 19.7435 19.4465 19.742C19.4504 19.7369 19.457 19.7386 19.4617 19.7354C19.4778 19.7241 19.4958 19.7159 19.5148 19.711C19.5465 19.7021 19.5793 19.6998 19.6116 19.6937C19.6326 19.6897 19.6535 19.686 19.6712 19.6726C19.679 19.6668 19.6869 19.6609 19.6952 19.6557C19.708 19.648 19.7181 19.6366 19.7242 19.6229C19.7258 19.6193 19.7298 19.6145 19.726 19.6116C19.7235 19.6097 19.7207 19.6156 19.718 19.6178C19.7166 19.619 19.7152 19.6203 19.714 19.6217C19.6867 19.6469 19.6569 19.6681 19.6207 19.6785C19.5926 19.6865 19.5632 19.6851 19.5339 19.689C19.5433 19.6812 19.5511 19.6723 19.5646 19.6707C19.5585 19.6656 19.554 19.6694 19.5494 19.6701C19.5464 19.6707 19.5418 19.6738 19.541 19.6687C19.5406 19.6658 19.541 19.6596 19.5477 19.6599C19.5492 19.6599 19.5512 19.6604 19.5518 19.6585C19.5543 19.651 19.5614 19.6491 19.5673 19.6458C19.5847 19.6359 19.6024 19.6264 19.62 19.6166C19.6218 19.6155 19.6246 19.6153 19.625 19.6125C19.6229 19.6117 19.6197 19.6144 19.6189 19.6111C19.618 19.6077 19.6206 19.6068 19.6235 19.606C19.639 19.6003 19.6542 19.5937 19.6689 19.5861C19.6645 19.5845 19.6603 19.5874 19.6574 19.5839C19.6592 19.5798 19.6651 19.5804 19.6659 19.5773C19.6674 19.5723 19.6669 19.5668 19.674 19.5661C19.6749 19.5661 19.6749 19.5649 19.674 19.5644C19.6692 19.5606 19.6745 19.5598 19.676 19.5585C19.6809 19.5543 19.6877 19.5545 19.6938 19.5515C19.6859 19.5486 19.6831 19.5436 19.6871 19.5382C19.695 19.5272 19.6963 19.5141 19.7001 19.5018C19.7006 19.5002 19.7016 19.4982 19.6993 19.4969C19.697 19.4956 19.6959 19.4969 19.6946 19.4984C19.6821 19.5095 19.6671 19.5174 19.6509 19.5216C19.639 19.5251 19.6269 19.5279 19.6147 19.53C19.608 19.5316 19.601 19.5315 19.5944 19.5297C19.5878 19.5278 19.5817 19.5243 19.5769 19.5194C19.5725 19.5152 19.5675 19.5116 19.5622 19.5086C19.5242 19.4868 19.4822 19.4791 19.4395 19.474C19.4234 19.4725 19.4073 19.472 19.3912 19.4724C19.398 19.4688 19.4053 19.4661 19.4128 19.4644C19.4313 19.4599 19.45 19.4564 19.4681 19.4505C19.4836 19.4451 19.4996 19.4412 19.5158 19.439L19.5384 19.4373C19.531 19.436 19.5234 19.436 19.5159 19.4373C19.5096 19.4368 19.5032 19.4371 19.4969 19.4382C19.4564 19.4461 19.415 19.4514 19.3783 19.4726C19.3754 19.4742 19.3717 19.4756 19.3695 19.473C19.3673 19.4705 19.3706 19.4674 19.3725 19.465C19.3826 19.4509 19.3961 19.4397 19.4117 19.4323C19.4274 19.425 19.4447 19.4218 19.4619 19.423C19.505 19.4245 19.5478 19.4301 19.5898 19.4398C19.5934 19.4402 19.5967 19.4415 19.5997 19.4434C19.6027 19.4454 19.6051 19.4481 19.6069 19.4512C19.608 19.4533 19.6097 19.455 19.6118 19.4562C19.6138 19.4575 19.6162 19.4581 19.6186 19.4582C19.6273 19.4583 19.636 19.46 19.6441 19.4631C19.6453 19.4504 19.6462 19.4498 19.6582 19.4517H19.6597C19.6641 19.4525 19.6686 19.4528 19.6711 19.4485C19.672 19.4465 19.6723 19.4443 19.6718 19.4422C19.6714 19.4401 19.6703 19.4382 19.6686 19.4368C19.6635 19.4308 19.6579 19.4251 19.6526 19.4192C19.6509 19.4172 19.6482 19.4153 19.6505 19.4111C19.6581 19.4184 19.6652 19.4255 19.6725 19.4322C19.6815 19.4414 19.6931 19.4476 19.7057 19.4498C19.7101 19.4504 19.7154 19.4524 19.7185 19.4485C19.7215 19.4446 19.7174 19.4401 19.7152 19.4365C19.7062 19.4227 19.6959 19.4099 19.6845 19.398C19.6819 19.3958 19.68 19.3929 19.679 19.3896C19.6772 19.3836 19.6746 19.3779 19.6714 19.3726C19.6663 19.3634 19.663 19.3534 19.6614 19.3431C19.6615 19.3383 19.6611 19.3335 19.6602 19.3288C19.6513 19.2986 19.6476 19.2672 19.6403 19.2365C19.635 19.2137 19.6332 19.1909 19.645 19.1692C19.6539 19.153 19.6631 19.137 19.6723 19.1209C19.6841 19.1004 19.6975 19.0811 19.7179 19.0679C19.72 19.0663 19.7215 19.0641 19.7222 19.0616C19.737 19.0249 19.76 18.9959 19.7972 18.9795C19.8147 18.9717 19.8324 18.9644 19.8502 18.9563H19.8419C19.4482 18.9563 19.0544 18.9563 18.6608 18.9563C18.6524 18.9563 18.651 18.9588 18.651 18.9665C18.651 19.2707 18.651 19.5749 18.651 19.8791C18.651 19.8874 18.6531 19.8889 18.661 19.8889C18.9378 19.8887 19.2147 19.8887 19.4916 19.8889C19.4984 19.8892 19.5051 19.8873 19.5107 19.8834C19.5196 19.8772 19.529 19.8717 19.5388 19.867C19.5699 19.8518 19.6011 19.8368 19.6325 19.8224C19.6729 19.8039 19.7096 19.7811 19.738 19.7458C19.7597 19.7186 19.7847 19.6942 19.8124 19.6732C19.8137 19.6725 19.8147 19.6714 19.8153 19.67C19.8159 19.6687 19.816 19.6671 19.8157 19.6657C19.8072 19.6682 19.8024 19.6773 19.7927 19.6772C19.7952 19.674 19.7987 19.672 19.8013 19.6692C19.8039 19.6664 19.8114 19.6656 19.8094 19.6603C19.8068 19.6537 19.8002 19.6578 19.7952 19.6575C19.7945 19.6577 19.7937 19.6579 19.7929 19.6581C19.778 19.6613 19.7671 19.6714 19.756 19.6805C19.7538 19.6823 19.7517 19.6855 19.7486 19.6838C19.7428 19.6808 19.7384 19.6838 19.7337 19.6861C19.7247 19.6906 19.7162 19.6959 19.7081 19.702C19.6989 19.7091 19.6891 19.7154 19.6788 19.7208C19.6721 19.7242 19.6639 19.7224 19.6568 19.7266C19.6449 19.7333 19.6313 19.7363 19.6177 19.7352C19.5872 19.7333 19.5581 19.7414 19.5284 19.7471C19.5036 19.7519 19.4872 19.7698 19.4682 19.7834C19.4524 19.7949 19.4376 19.8078 19.4241 19.822C19.4222 19.8239 19.4205 19.8266 19.4164 19.8248C19.4213 19.8187 19.4254 19.812 19.4287 19.8049C19.4332 19.793 19.4421 19.7832 19.4536 19.7776C19.4561 19.7762 19.4582 19.7742 19.4596 19.7717C19.4611 19.7692 19.4618 19.7664 19.4618 19.7635C19.4501 19.764 19.449 19.7812 19.4348 19.779C19.4385 19.7742 19.4414 19.7689 19.4433 19.7632C19.4449 19.7525 19.453 19.749 19.4605 19.7444L19.4692 19.7391L19.4731 19.7366L19.4763 19.735L19.4769 19.7338L19.4759 19.7342L19.4767 19.7352ZM20.3344 19.5443C20.3386 19.5453 20.3424 19.5473 20.3455 19.5502C20.3486 19.5531 20.3509 19.5567 20.3522 19.5607C20.3537 19.5632 20.3543 19.5662 20.3538 19.5691C20.3533 19.572 20.3519 19.5746 20.3496 19.5765C20.3456 19.5799 20.3414 19.5831 20.3375 19.5867C20.3349 19.5886 20.3331 19.5914 20.3325 19.5946C20.3319 19.5978 20.3325 19.601 20.3342 19.6038C20.3384 19.6135 20.3392 19.6244 20.3367 19.6347C20.3341 19.645 20.3283 19.6542 20.3201 19.6609C20.313 19.6661 20.3049 19.6697 20.2963 19.6716C20.2878 19.6734 20.2789 19.6734 20.2703 19.6715C20.2637 19.6703 20.2578 19.6679 20.2511 19.6671C20.2265 19.6638 20.2023 19.6574 20.1774 19.6559C20.1641 19.6543 20.1507 19.6577 20.1398 19.6655C20.094 19.7029 20.0741 19.7517 20.0788 19.8104C20.0798 19.8231 20.0845 19.8336 20.0991 19.8359C20.1014 19.8364 20.1036 19.8372 20.1057 19.8382C20.1444 19.8518 20.1831 19.8652 20.219 19.8853C20.2231 19.8876 20.2276 19.8889 20.2323 19.8889C20.5508 19.8889 20.8692 19.8889 21.1877 19.8889C21.1948 19.8889 21.1969 19.8874 21.1969 19.8799C21.1969 19.5749 21.1969 19.2702 21.1969 18.9657C21.1969 18.9577 21.1946 18.9563 21.1872 18.9563C20.8646 18.9563 20.542 18.9563 20.2194 18.9563C20.2163 18.9557 20.2132 18.9562 20.2104 18.9576L20.2174 18.9616C20.2326 18.9702 20.2489 18.9767 20.2625 18.9881C20.2801 19.0027 20.2834 19.015 20.2772 19.0359C20.2757 19.0415 20.2724 19.0466 20.2678 19.0502C20.2631 19.0538 20.2575 19.0557 20.2516 19.0558C20.2445 19.0564 20.2373 19.0562 20.2302 19.0554C20.2259 19.0549 20.2217 19.0546 20.2169 19.0542C20.2169 19.0552 20.2169 19.0556 20.2169 19.0556C20.2178 19.0562 20.2188 19.0567 20.2198 19.0571C20.2421 19.0657 20.2617 19.0804 20.2762 19.0994C20.2775 19.1009 20.2791 19.1021 20.2809 19.103C20.2827 19.1039 20.2846 19.1044 20.2866 19.1045C20.2953 19.1062 20.2953 19.1061 20.2902 19.1134C20.2887 19.1154 20.2869 19.1179 20.289 19.1197C20.2901 19.1207 20.2916 19.1211 20.2931 19.121C20.2945 19.1208 20.2959 19.1201 20.2969 19.119C20.2996 19.1158 20.3018 19.1121 20.3035 19.1083C20.3039 19.1072 20.3046 19.1063 20.3055 19.1055C20.3064 19.1048 20.3074 19.1043 20.3085 19.104C20.3096 19.1038 20.3108 19.1038 20.3119 19.1042C20.313 19.1045 20.314 19.1051 20.3148 19.1059C20.3171 19.1074 20.319 19.1094 20.3203 19.1117C20.3217 19.1141 20.3225 19.1167 20.3227 19.1194C20.3229 19.1221 20.3225 19.1249 20.3215 19.1274C20.3206 19.1299 20.319 19.1322 20.317 19.134C20.3128 19.138 20.3081 19.1416 20.3038 19.1452C20.3023 19.146 20.301 19.1471 20.3001 19.1484C20.2991 19.1498 20.2984 19.1513 20.298 19.1529C20.2977 19.1545 20.2977 19.1562 20.2981 19.1578C20.2985 19.1594 20.2992 19.161 20.3002 19.1623C20.3023 19.1659 20.3042 19.1697 20.3057 19.1737C20.312 19.1936 20.3185 19.214 20.324 19.2343C20.3313 19.2609 20.3366 19.2882 20.3307 19.3158C20.3278 19.3303 20.3308 19.3454 20.3389 19.3577C20.3455 19.3689 20.3527 19.3796 20.36 19.3903C20.3718 19.4056 20.3822 19.4219 20.3911 19.439C20.3987 19.4559 20.3927 19.4677 20.375 19.473C20.373 19.4736 20.3709 19.4741 20.3689 19.4746C20.3453 19.4793 20.3469 19.4913 20.3551 19.5065L20.3568 19.5092C20.3626 19.5194 20.3615 19.5263 20.3521 19.5333C20.3468 19.5373 20.3412 19.5401 20.3344 19.5443ZM20.6062 20.4453C20.6436 20.4453 20.6809 20.4453 20.7183 20.4453C20.7241 20.4453 20.7261 20.4433 20.727 20.4381C20.7314 20.4149 20.7319 20.3911 20.7285 20.3678C20.7208 20.319 20.6965 20.2816 20.6522 20.2583C20.618 20.2405 20.5813 20.238 20.5439 20.2436C20.493 20.2513 20.4523 20.2757 20.4252 20.32C20.399 20.363 20.39 20.4143 20.3998 20.4637C20.4098 20.5207 20.4396 20.5645 20.4917 20.5914C20.5325 20.6124 20.5761 20.6166 20.6208 20.6104C20.6644 20.605 20.7044 20.5835 20.7328 20.55C20.7364 20.5457 20.7376 20.543 20.7321 20.5389C20.717 20.5273 20.7024 20.515 20.6876 20.503C20.6767 20.4942 20.6767 20.4942 20.667 20.5041C20.6432 20.5283 20.6135 20.5357 20.5808 20.5345C20.5313 20.5325 20.4961 20.5013 20.488 20.4525C20.487 20.4464 20.488 20.445 20.4942 20.4451C20.5318 20.4455 20.5692 20.4455 20.6065 20.4455L20.6062 20.4453ZM20.7533 21.0227C20.7901 21.0227 20.8269 21.0227 20.8637 21.0227C20.8707 21.0227 20.8726 21.0203 20.8736 21.0141C20.8778 20.9911 20.8782 20.9676 20.8746 20.9445C20.8665 20.8952 20.8415 20.8575 20.7962 20.8349C20.7652 20.8204 20.7306 20.8155 20.6969 20.8208C20.6408 20.8277 20.597 20.8539 20.5687 20.9036C20.5471 20.9423 20.5387 20.987 20.5451 21.0309C20.5517 21.0839 20.575 21.1285 20.6204 21.1586C20.6723 21.1929 20.7294 21.198 20.7887 21.1839C20.8249 21.1756 20.8573 21.1554 20.8806 21.1265C20.8825 21.1243 20.8856 21.1223 20.8813 21.1189C20.8628 21.104 20.8443 21.089 20.8259 21.0739C20.8233 21.0718 20.8221 21.0722 20.8202 21.0746C20.8003 21.0997 20.7738 21.1107 20.7429 21.1123C20.685 21.1152 20.6435 21.0848 20.6347 21.03C20.6338 21.0238 20.6347 21.0226 20.641 21.0226C20.6783 21.0229 20.7159 21.0227 20.7535 21.0227H20.7533ZM19.1685 21.0227C19.205 21.0227 19.2414 21.0227 19.2781 21.0227C19.2859 21.0227 19.2891 21.0208 19.2902 21.0128C19.2937 20.9914 19.2941 20.9695 19.2913 20.9479C19.2838 20.8973 19.2591 20.8584 19.2126 20.8352C19.1814 20.8205 19.1466 20.8155 19.1125 20.8208C19.054 20.8283 19.0093 20.8566 18.9817 20.9096C18.9621 20.9479 18.9551 20.9914 18.9618 21.0338C18.9688 21.0858 18.992 21.1294 19.0366 21.1584C19.094 21.1958 19.1565 21.1995 19.2208 21.1791C19.2507 21.1695 19.2772 21.1512 19.2969 21.1267C19.2989 21.1243 19.3019 21.1222 19.2973 21.1186C19.2788 21.104 19.2606 21.089 19.2423 21.074C19.2401 21.0722 19.2387 21.0717 19.2367 21.0744C19.2171 21.0996 19.1903 21.1107 19.1595 21.1123C19.1051 21.1152 19.0611 21.0886 19.0512 21.0311C19.0501 21.0249 19.0506 21.0224 19.0578 21.0226C19.0946 21.023 19.1316 21.0227 19.1687 21.0227H19.1685ZM18.651 20.3602C18.651 20.4372 18.651 20.5143 18.651 20.5914C18.651 20.598 18.6529 20.5998 18.6594 20.5997C18.6859 20.5993 18.7129 20.5992 18.7397 20.5997C18.7467 20.5997 18.7484 20.598 18.7484 20.591C18.7484 20.5298 18.7484 20.4687 18.7484 20.4075C18.7484 20.4012 18.7501 20.3995 18.7563 20.3996C18.8027 20.3996 18.8491 20.3996 18.8955 20.3996C18.9012 20.3996 18.9031 20.3985 18.9031 20.3923C18.9027 20.3679 18.9027 20.3436 18.9031 20.3194C18.9031 20.3132 18.9016 20.3115 18.8953 20.3115C18.8492 20.3115 18.8031 20.3115 18.757 20.3115C18.7504 20.3115 18.7485 20.3102 18.7485 20.3034C18.7489 20.2748 18.749 20.2462 18.7485 20.2176C18.7485 20.2105 18.7505 20.2089 18.7574 20.2089C18.8124 20.2089 18.8675 20.2089 18.9226 20.2089C18.9288 20.2089 18.9307 20.2073 18.9306 20.201C18.9306 20.1769 18.9302 20.1528 18.9306 20.1287C18.9306 20.1221 18.929 20.1204 18.9223 20.1204C18.8349 20.1207 18.7475 20.1207 18.6601 20.1204C18.6531 20.1204 18.6515 20.1222 18.6515 20.1291C18.6514 20.2069 18.6513 20.2834 18.6513 20.3602H18.651ZM19.4536 20.568C19.4536 20.5777 19.4536 20.5857 19.4536 20.5935C19.4536 20.5986 19.4552 20.5997 19.4602 20.5996C19.4848 20.5996 19.5095 20.5993 19.5341 20.5996C19.54 20.5996 19.5416 20.5982 19.5416 20.5922C19.5416 20.518 19.5426 20.4438 19.541 20.3697C19.54 20.3161 19.5145 20.2763 19.4645 20.2545C19.4363 20.2428 19.4055 20.2385 19.3751 20.2421C19.3518 20.2437 19.329 20.2501 19.3083 20.2609C19.2876 20.2717 19.2693 20.2867 19.2547 20.3049C19.2514 20.3089 19.252 20.3107 19.2558 20.3135C19.2742 20.3274 19.2925 20.3414 19.3106 20.3556C19.3146 20.3587 19.3162 20.3581 19.319 20.3541C19.3261 20.3435 19.3356 20.3347 19.3467 20.3284C19.3577 20.3221 19.3701 20.3184 19.3829 20.3177C19.4256 20.3141 19.4551 20.3399 19.4541 20.3802C19.4541 20.3843 19.4533 20.3861 19.4487 20.3868C19.423 20.3908 19.3975 20.3954 19.3719 20.3995C19.3472 20.4025 19.3232 20.4094 19.3007 20.4201C19.2418 20.4508 19.2243 20.5227 19.2645 20.5738C19.2921 20.6088 19.3308 20.6163 19.3725 20.6114C19.4041 20.6077 19.4331 20.5922 19.4539 20.568H19.4536ZM19.7188 20.2803C19.7188 20.272 19.7188 20.266 19.7188 20.26C19.7188 20.2557 19.7173 20.2547 19.7132 20.2547C19.6873 20.2547 19.6613 20.2547 19.6354 20.2547C19.6307 20.2547 19.6298 20.2562 19.6298 20.2605C19.6298 20.3716 19.6298 20.4826 19.6298 20.5936C19.6298 20.5988 19.6315 20.5996 19.6364 20.5996C19.661 20.5996 19.6857 20.5992 19.7103 20.5996C19.717 20.5996 19.7191 20.5981 19.7191 20.591C19.7191 20.521 19.7191 20.4511 19.7191 20.3811C19.7186 20.3777 19.7191 20.3742 19.7205 20.3711C19.7355 20.3466 19.755 20.3285 19.7846 20.3236C19.8195 20.3179 19.8497 20.3347 19.8604 20.3665C19.8638 20.3769 19.8654 20.3877 19.8653 20.3986C19.8653 20.4629 19.8653 20.5273 19.8653 20.5918C19.8653 20.5979 19.8668 20.5997 19.8731 20.5996C19.8973 20.5992 19.9213 20.5992 19.9455 20.5996C19.9518 20.5996 19.9533 20.598 19.9533 20.5918C19.9533 20.5401 19.9533 20.4884 19.9533 20.4368C19.9541 20.4135 19.9536 20.3901 19.9517 20.3669C19.9478 20.3338 19.9379 20.3036 19.9142 20.2796C19.8764 20.2413 19.8301 20.2348 19.7799 20.2464C19.757 20.2522 19.736 20.2639 19.7191 20.2803H19.7188ZM20.1642 21.0059C20.164 21.0141 20.1644 21.0223 20.1656 21.0305C20.1733 21.0871 20.1994 21.1325 20.2484 21.163C20.2882 21.1876 20.3317 21.1945 20.3773 21.1895C20.4002 21.1875 20.4224 21.1809 20.4427 21.1702C20.4631 21.1594 20.481 21.1448 20.4957 21.1271C20.4993 21.1227 20.4988 21.1209 20.4944 21.1176C20.4745 21.1027 20.4547 21.0876 20.4351 21.0722C20.4307 21.0687 20.4288 21.0695 20.4255 21.0737C20.4103 21.0931 20.388 21.1058 20.3636 21.109C20.3391 21.1121 20.3144 21.1056 20.2947 21.0906C20.2577 21.0627 20.248 21.0237 20.2568 20.9801C20.2646 20.9408 20.2888 20.9139 20.3282 20.9042C20.3675 20.8946 20.4011 20.9051 20.4263 20.9374C20.4288 20.9408 20.4303 20.9416 20.4341 20.9386C20.454 20.9228 20.4747 20.9071 20.4953 20.8918C20.4998 20.8885 20.4986 20.8865 20.4959 20.8833C20.4881 20.8736 20.4792 20.8649 20.4693 20.8573C20.411 20.8144 20.347 20.8087 20.2804 20.8318C20.2088 20.8565 20.1645 20.9243 20.1645 21.0059H20.1642ZM20.2025 20.2411C20.1954 20.2417 20.1842 20.2421 20.1733 20.2437C20.125 20.2511 20.0843 20.2724 20.0549 20.3121C20.0199 20.3593 20.0107 20.4126 20.0224 20.4695C20.027 20.4953 20.0375 20.5196 20.0531 20.5407C20.0687 20.5618 20.0889 20.579 20.1122 20.591C20.1465 20.6088 20.1852 20.6162 20.2237 20.6122C20.2478 20.6109 20.2714 20.6047 20.293 20.5939C20.3146 20.583 20.3338 20.5679 20.3492 20.5493C20.3527 20.5451 20.3528 20.543 20.3482 20.5396C20.3284 20.5248 20.3085 20.5097 20.289 20.4943C20.2844 20.4907 20.2823 20.4915 20.2792 20.4956C20.2638 20.5152 20.2414 20.5279 20.2167 20.5309C20.192 20.5339 20.1671 20.5271 20.1475 20.5118C20.1115 20.4837 20.1021 20.4451 20.1109 20.4022C20.1187 20.3631 20.1426 20.3359 20.1822 20.3263C20.2218 20.3167 20.2551 20.3271 20.2802 20.3595C20.2837 20.3639 20.2856 20.3627 20.289 20.3601C20.3089 20.3449 20.3284 20.3296 20.3483 20.3149C20.3534 20.3111 20.3529 20.3089 20.3492 20.3045C20.3118 20.2606 20.2633 20.2421 20.2029 20.2411H20.2025ZM19.7758 21.0768C19.7742 21.073 19.7732 21.0706 19.7723 21.0682C19.7446 20.9922 19.717 20.9163 19.6894 20.8403C19.6889 20.8378 19.6874 20.8356 19.6853 20.8341C19.6832 20.8327 19.6806 20.8321 19.678 20.8325C19.6524 20.8329 19.6267 20.8329 19.601 20.8325C19.5939 20.8325 19.5934 20.8342 19.5957 20.8404C19.636 20.9506 19.676 21.0608 19.7158 21.1711C19.7176 21.1762 19.7201 21.1771 19.7249 21.177C19.7581 21.177 19.7917 21.177 19.825 21.177C19.8273 21.1774 19.8296 21.1769 19.8315 21.1756C19.8334 21.1743 19.8348 21.1723 19.8352 21.1701C19.8476 21.1352 19.8603 21.1005 19.8729 21.0657C19.9002 20.9906 19.9275 20.9154 19.9548 20.84C19.9561 20.8366 19.9593 20.8324 19.9514 20.8325C19.9239 20.8325 19.8963 20.8325 19.8688 20.8325C19.8673 20.8323 19.8659 20.8327 19.8647 20.8335C19.8636 20.8344 19.8628 20.8356 19.8625 20.837C19.8594 20.846 19.8559 20.8549 19.8529 20.8639C19.8273 20.9345 19.8019 21.0049 19.7758 21.0768ZM21.0719 20.8191C21.0546 20.8187 21.0374 20.8215 21.0211 20.8273C20.98 20.8425 20.9533 20.8705 20.949 20.9153C20.9448 20.9591 20.9623 20.9931 20.9998 21.0163C21.0158 21.0256 21.0325 21.0336 21.0498 21.0401C21.0648 21.0454 21.0792 21.0522 21.0927 21.0605C21.1167 21.0766 21.1068 21.1048 21.0878 21.1128C21.0737 21.1185 21.058 21.1189 21.0435 21.114C21.0232 21.107 21.0053 21.094 20.9922 21.0769C20.9883 21.0721 20.9865 21.0723 20.9823 21.0765C20.9667 21.0923 20.9507 21.1078 20.9345 21.1229C20.9303 21.1269 20.9309 21.1296 20.9345 21.1329C20.9814 21.1825 21.0388 21.2003 21.1049 21.186C21.1675 21.1724 21.2029 21.1154 21.1899 21.0527C21.1841 21.0246 21.1671 21.0044 21.1435 20.9891C21.123 20.9771 21.1014 20.967 21.0789 20.959C21.0667 20.9547 21.0552 20.9486 21.0447 20.9409C21.041 20.9383 21.0381 20.9347 21.0362 20.9305C21.0344 20.9264 21.0338 20.9218 21.0343 20.9172C21.0349 20.9127 21.0368 20.9085 21.0396 20.9049C21.0425 20.9013 21.0462 20.8986 21.0505 20.8971C21.0605 20.8925 21.0716 20.8912 21.0823 20.8931C21.1054 20.897 21.1218 20.9113 21.1362 20.9285C21.1389 20.9318 21.1404 20.9326 21.1439 20.9292C21.1598 20.9137 21.1759 20.8983 21.1922 20.8832C21.1969 20.8789 21.1967 20.8765 21.1926 20.8718C21.1773 20.855 21.1586 20.8417 21.1378 20.8326C21.117 20.8235 21.0945 20.8189 21.0719 20.8191ZM18.7716 20.8191C18.7514 20.8189 18.7314 20.8228 18.7127 20.8305C18.6322 20.8648 18.6332 20.9616 18.6812 21.0029C18.7007 21.0183 18.7226 21.0304 18.7461 21.0388C18.7618 21.0442 18.777 21.0512 18.7914 21.0597C18.8014 21.0663 18.8083 21.0751 18.8064 21.0881C18.8056 21.0944 18.803 21.1002 18.7988 21.1049C18.7947 21.1097 18.7892 21.113 18.7831 21.1146C18.7722 21.118 18.7606 21.1184 18.7495 21.1157C18.7253 21.1102 18.7074 21.0952 18.6921 21.0768C18.6879 21.0719 18.6859 21.0726 18.6819 21.0768C18.666 21.0927 18.6498 21.1084 18.6336 21.1239C18.6304 21.127 18.6301 21.1288 18.6336 21.1321C18.6808 21.1828 18.7389 21.2017 18.8059 21.186C18.8813 21.1684 18.9037 21.1004 18.8884 21.0463C18.8797 21.0153 18.8575 20.9961 18.8301 20.9815C18.8114 20.9716 18.7914 20.9646 18.772 20.9563C18.7615 20.9525 18.7518 20.9469 18.7434 20.9396C18.7402 20.937 18.7377 20.9336 18.7361 20.9298C18.7346 20.9259 18.7341 20.9217 18.7346 20.9176C18.7352 20.9135 18.7367 20.9096 18.7392 20.9063C18.7417 20.903 18.745 20.9003 18.7487 20.8986C18.7591 20.8931 18.7711 20.8913 18.7827 20.8936C18.8048 20.8972 18.8211 20.9105 18.8348 20.9272C18.8391 20.9322 18.8415 20.9327 18.8462 20.9278C18.8611 20.9129 18.8764 20.8982 18.8921 20.884C18.897 20.8795 18.8974 20.8769 18.8928 20.8721C18.8598 20.8366 18.819 20.8203 18.7716 20.819V20.8191ZM19.0832 20.288C19.0832 20.2778 19.0832 20.2696 19.0832 20.2615C19.0832 20.2567 19.0825 20.2549 19.0769 20.2549C19.0517 20.2552 19.0266 20.2549 19.0014 20.2549C18.9963 20.2549 18.9947 20.2561 18.9947 20.2615C18.9947 20.372 18.9947 20.4825 18.9947 20.5929C18.9947 20.5985 18.9964 20.6 19.0019 20.6C19.0263 20.6 19.0506 20.5996 19.0748 20.6C19.0814 20.6 19.083 20.5982 19.083 20.5917C19.083 20.5284 19.0836 20.4651 19.0824 20.4018C19.082 20.3943 19.0835 20.3869 19.0867 20.3801C19.0898 20.3733 19.0945 20.3674 19.1005 20.3629C19.108 20.3562 19.1167 20.3509 19.126 20.3471C19.1489 20.3383 19.174 20.337 19.1977 20.3432C19.2027 20.3443 19.2035 20.3432 19.2035 20.3386C19.2035 20.3121 19.2035 20.2856 19.2035 20.259C19.2035 20.2539 19.2016 20.2524 19.1969 20.2512C19.1735 20.2458 19.149 20.2479 19.1269 20.2573C19.1106 20.2646 19.0958 20.275 19.0834 20.2879L19.0832 20.288ZM19.4491 20.8657C19.4491 20.8558 19.4486 20.8479 19.4491 20.84C19.4496 20.8337 19.4472 20.8326 19.4415 20.8327C19.4171 20.8327 19.3927 20.833 19.3685 20.8327C19.3627 20.8327 19.3611 20.834 19.3611 20.8401C19.3611 20.9501 19.3611 21.06 19.3611 21.17C19.3611 21.1766 19.363 21.1772 19.3686 21.1772C19.3922 21.1768 19.4158 21.1767 19.4393 21.1772C19.447 21.1772 19.4495 21.1759 19.4494 21.1675C19.449 21.105 19.4499 21.0425 19.4487 20.9799C19.4483 20.9722 19.4498 20.9644 19.4531 20.9574C19.4564 20.9505 19.4614 20.9444 19.4676 20.9398C19.4716 20.9364 19.4759 20.9333 19.4804 20.9306C19.5061 20.9153 19.5335 20.9147 19.5619 20.9203C19.5677 20.9215 19.5697 20.9211 19.5696 20.9144C19.5692 20.8887 19.5692 20.863 19.5696 20.8374C19.5696 20.8314 19.5672 20.8297 19.5622 20.8286C19.5382 20.8233 19.5132 20.8259 19.4908 20.836C19.4754 20.8433 19.4613 20.8533 19.4494 20.8656L19.4491 20.8657ZM20.0037 21.0052C20.0037 21.0603 20.0037 21.1153 20.0037 21.1705C20.0037 21.1753 20.0045 21.1771 20.0103 21.1771C20.0357 21.1768 20.0611 21.1768 20.0865 21.1771C20.0921 21.1771 20.0932 21.1752 20.0932 21.1705C20.0932 21.0604 20.0932 20.9502 20.0932 20.84C20.0932 20.8334 20.091 20.8327 20.0855 20.8328C20.0611 20.8328 20.0367 20.8331 20.0125 20.8328C20.0059 20.8328 20.0042 20.8342 20.0042 20.841C20.0041 20.8955 20.0039 20.9503 20.0039 21.0051L20.0037 21.0052ZM19.9909 20.7213C19.9909 20.7362 19.9968 20.7506 20.0074 20.7612C20.0179 20.7719 20.0322 20.7779 20.0472 20.778C20.0549 20.7785 20.0627 20.7775 20.07 20.7749C20.0773 20.7723 20.084 20.7683 20.0897 20.763C20.0954 20.7578 20.0999 20.7514 20.103 20.7443C20.1061 20.7372 20.1077 20.7296 20.1078 20.7218C20.1078 20.7141 20.1062 20.7064 20.1032 20.6993C20.1001 20.6922 20.0956 20.6858 20.09 20.6805C20.0843 20.6752 20.0777 20.6711 20.0704 20.6685C20.0631 20.6659 20.0553 20.6648 20.0476 20.6653C20.0327 20.6653 20.0185 20.6712 20.0079 20.6817C19.9974 20.6921 19.9914 20.7063 19.9912 20.7212L19.9909 20.7213ZM20.2042 19.3033C20.2078 19.3049 20.2104 19.3033 20.213 19.3023C20.2342 19.2967 20.2554 19.2931 20.2771 19.2988C20.2842 19.3007 20.2849 19.3024 20.2802 19.3082C20.2764 19.3126 20.2718 19.3162 20.2665 19.3188C20.2578 19.3239 20.2495 19.3298 20.2418 19.3364C20.2367 19.3403 20.2346 19.347 20.2263 19.3454C20.2242 19.345 20.221 19.3454 20.2204 19.3482C20.2198 19.351 20.223 19.3511 20.2243 19.3527C20.2316 19.3612 20.2448 19.3552 20.2523 19.3642C20.2536 19.3657 20.257 19.3658 20.2569 19.3694C20.257 19.371 20.2565 19.3726 20.2554 19.3738C20.2544 19.3751 20.2529 19.3759 20.2513 19.376C20.2471 19.3767 20.243 19.3771 20.238 19.3777C20.2465 19.3805 20.2556 19.3814 20.2645 19.3802C20.2808 19.3794 20.2824 19.3774 20.282 19.3612C20.2817 19.3594 20.2817 19.3575 20.282 19.3557C20.2841 19.3491 20.2798 19.3417 20.2865 19.3358C20.2897 19.3335 20.2932 19.3317 20.2969 19.3305C20.3005 19.3292 20.3036 19.3265 20.2997 19.323C20.2959 19.3195 20.2976 19.3172 20.3008 19.3146C20.3067 19.3104 20.311 19.3043 20.313 19.2974C20.314 19.2929 20.3137 19.2882 20.3091 19.2865C20.2991 19.2818 20.2882 19.2791 20.2771 19.2788C20.2564 19.2803 20.2362 19.2856 20.2174 19.2945C20.2126 19.2966 20.2082 19.2996 20.2045 19.3033L20.2042 19.3033Z" fill="#FEFEFE"/>
+<path d="M19.4692 19.7391L19.4604 19.7445C19.4529 19.7491 19.4448 19.7525 19.4432 19.7632C19.4413 19.7689 19.4384 19.7743 19.4347 19.779C19.4489 19.7813 19.4501 19.764 19.4617 19.7636C19.4618 19.7664 19.461 19.7693 19.4596 19.7717C19.4581 19.7742 19.456 19.7762 19.4535 19.7776C19.4421 19.7832 19.4332 19.793 19.4287 19.8049C19.4254 19.812 19.4212 19.8187 19.4163 19.8248C19.4204 19.8266 19.4222 19.8239 19.424 19.822C19.4375 19.8079 19.4523 19.795 19.4681 19.7835C19.4871 19.7698 19.5035 19.7519 19.5283 19.7471C19.5579 19.7414 19.5871 19.7333 19.6176 19.7352C19.6312 19.7363 19.6448 19.7333 19.6567 19.7266C19.6638 19.7225 19.6718 19.7242 19.6787 19.7209C19.689 19.7155 19.6988 19.7092 19.7081 19.7021C19.7161 19.696 19.7247 19.6907 19.7337 19.6861C19.7383 19.684 19.7427 19.6808 19.7485 19.6839C19.7516 19.6855 19.7537 19.6823 19.7559 19.6805C19.7671 19.6711 19.7779 19.6613 19.7928 19.6582C19.7936 19.6579 19.7944 19.6577 19.7952 19.6576C19.8001 19.6576 19.8068 19.6539 19.8093 19.6604C19.8113 19.6657 19.804 19.6663 19.8012 19.6692C19.7984 19.6722 19.7952 19.6741 19.7926 19.6772C19.8022 19.6772 19.8072 19.6682 19.8156 19.6657C19.816 19.6672 19.8159 19.6687 19.8152 19.6701C19.8146 19.6715 19.8136 19.6726 19.8123 19.6733C19.7846 19.6943 19.7596 19.7186 19.738 19.7458C19.7095 19.7811 19.6728 19.8039 19.6324 19.8224C19.601 19.8368 19.5698 19.8519 19.5387 19.867C19.5289 19.8718 19.5195 19.8773 19.5107 19.8835C19.505 19.8874 19.4983 19.8893 19.4915 19.889C19.2147 19.889 18.9378 19.889 18.6609 19.889C18.6531 19.889 18.6509 19.8874 18.6509 19.8791C18.6509 19.5749 18.6509 19.2707 18.6509 18.9665C18.6509 18.9588 18.6523 18.9564 18.6607 18.9564C19.0544 18.9564 19.4481 18.9564 19.8418 18.9564H19.8501C19.8323 18.9644 19.8146 18.9717 19.7971 18.9795C19.76 18.9959 19.7369 19.0249 19.7221 19.0616C19.7214 19.0641 19.7199 19.0664 19.7178 19.0679C19.6975 19.0812 19.6841 19.1005 19.6722 19.121C19.663 19.137 19.6538 19.153 19.6449 19.1693C19.6331 19.191 19.6349 19.2138 19.6402 19.2366C19.6472 19.2673 19.6509 19.2986 19.6601 19.3288C19.661 19.3335 19.6614 19.3383 19.6613 19.3431C19.6629 19.3535 19.6662 19.3635 19.6713 19.3727C19.6745 19.378 19.6771 19.3837 19.6789 19.3896C19.6799 19.3929 19.6818 19.3958 19.6845 19.398C19.6959 19.4099 19.7061 19.4228 19.7152 19.4365C19.7173 19.4401 19.7218 19.4442 19.7184 19.4486C19.715 19.4529 19.7101 19.4505 19.7056 19.4499C19.693 19.4476 19.6814 19.4415 19.6725 19.4323C19.6651 19.4256 19.658 19.4185 19.6504 19.4112C19.6481 19.4153 19.6508 19.4173 19.6525 19.4192C19.6578 19.4251 19.6634 19.4308 19.6686 19.4368C19.6702 19.4382 19.6713 19.4401 19.6717 19.4422C19.6722 19.4444 19.6719 19.4465 19.671 19.4485C19.6685 19.4529 19.664 19.4525 19.6596 19.4517H19.6581C19.6462 19.4498 19.6452 19.4505 19.644 19.4631C19.6359 19.46 19.6272 19.4583 19.6185 19.4582C19.6161 19.4582 19.6137 19.4575 19.6116 19.4563C19.6095 19.455 19.6078 19.4533 19.6066 19.4511C19.6049 19.448 19.6025 19.4454 19.5995 19.4434C19.5965 19.4414 19.5931 19.4402 19.5896 19.4398C19.5475 19.4302 19.5047 19.4246 19.4615 19.4232C19.4443 19.422 19.427 19.4252 19.4113 19.4325C19.3957 19.4399 19.3821 19.4511 19.372 19.4651C19.3702 19.4676 19.3666 19.4702 19.3691 19.4732C19.3715 19.4762 19.375 19.4744 19.3779 19.4728C19.4146 19.4515 19.456 19.4462 19.4965 19.4384C19.5028 19.4373 19.5092 19.437 19.5155 19.4374C19.5156 19.4379 19.5156 19.4384 19.5155 19.4389C19.4992 19.4411 19.4832 19.445 19.4678 19.4504C19.4497 19.4563 19.431 19.4598 19.4125 19.4643C19.405 19.4661 19.3977 19.4688 19.3909 19.4724C19.407 19.4721 19.4232 19.4726 19.4392 19.474C19.482 19.4791 19.5239 19.4869 19.562 19.5087C19.5673 19.5117 19.5722 19.5153 19.5766 19.5194C19.5815 19.5243 19.5875 19.5279 19.5941 19.5297C19.6007 19.5316 19.6077 19.5317 19.6144 19.53C19.6266 19.528 19.6387 19.5252 19.6506 19.5217C19.6668 19.5175 19.6818 19.5095 19.6943 19.4985C19.6956 19.4972 19.6969 19.4956 19.699 19.497C19.7012 19.4983 19.7003 19.5003 19.6998 19.5019C19.6961 19.5142 19.6947 19.5272 19.6869 19.5382C19.6831 19.5436 19.6859 19.5486 19.6935 19.5515C19.6874 19.5545 19.6806 19.5544 19.6757 19.5585C19.6743 19.5598 19.6691 19.5607 19.6737 19.5644C19.6744 19.5649 19.6745 19.5661 19.6737 19.5662C19.6666 19.5668 19.6671 19.5723 19.6656 19.5773C19.6648 19.5803 19.659 19.5797 19.6571 19.5839C19.66 19.5874 19.6642 19.5846 19.6686 19.5861C19.6539 19.5937 19.6388 19.6003 19.6232 19.606C19.6204 19.6069 19.6177 19.6078 19.6186 19.6111C19.6194 19.6144 19.6226 19.6117 19.6247 19.6126C19.6243 19.6153 19.6215 19.6155 19.6197 19.6166C19.6021 19.6264 19.5844 19.6359 19.567 19.6458C19.5612 19.6492 19.5537 19.651 19.5516 19.6586C19.5509 19.6604 19.5489 19.66 19.5474 19.6599C19.5408 19.6599 19.5408 19.6658 19.5408 19.6688C19.5415 19.6738 19.5461 19.6707 19.5492 19.6702C19.5537 19.6694 19.5583 19.6657 19.5643 19.6708C19.5511 19.6724 19.5431 19.6812 19.5336 19.689C19.563 19.6854 19.5923 19.6865 19.6204 19.6785C19.6566 19.6682 19.6867 19.647 19.7137 19.6217C19.715 19.6203 19.7163 19.619 19.7177 19.6178C19.7205 19.6156 19.7232 19.6098 19.7258 19.6116C19.7295 19.6145 19.7258 19.6193 19.7239 19.623C19.7178 19.6366 19.7077 19.648 19.6949 19.6557C19.6866 19.661 19.6787 19.6669 19.6709 19.6726C19.6529 19.6859 19.632 19.6897 19.6113 19.6937C19.5791 19.6998 19.5463 19.7022 19.5145 19.7111C19.4955 19.7159 19.4775 19.7242 19.4615 19.7354C19.4568 19.7388 19.4501 19.7372 19.4462 19.742C19.445 19.7435 19.4419 19.7444 19.4434 19.7469C19.445 19.7493 19.4473 19.7482 19.4493 19.7469C19.4549 19.743 19.461 19.7398 19.4674 19.7373L19.4692 19.7391ZM19.3998 19.6252C19.4026 19.6264 19.4056 19.627 19.4086 19.627C19.4116 19.627 19.4146 19.6264 19.4174 19.6252C19.4296 19.621 19.4416 19.6153 19.4552 19.6165C19.4566 19.6165 19.4579 19.6162 19.4591 19.6157C19.474 19.6124 19.489 19.609 19.5039 19.6056C19.5286 19.5997 19.5527 19.5911 19.5755 19.5799C19.5311 19.5462 19.4788 19.5344 19.4273 19.5194C19.4287 19.518 19.4316 19.5189 19.4316 19.5167C19.4316 19.5145 19.4292 19.5141 19.4277 19.5137C19.423 19.5125 19.4183 19.5118 19.4137 19.5107C19.4122 19.5107 19.4092 19.5107 19.4096 19.5093C19.4121 19.5017 19.405 19.5034 19.4023 19.5027C19.3924 19.4999 19.3821 19.498 19.371 19.4956C19.3764 19.4928 19.3808 19.4903 19.3825 19.4852C19.3834 19.4825 19.3854 19.4795 19.3825 19.4772C19.3797 19.4749 19.3776 19.4772 19.3753 19.4784C19.3622 19.4861 19.3515 19.4974 19.3443 19.5108C19.341 19.5166 19.334 19.5241 19.3372 19.5289C19.3405 19.5337 19.3505 19.5329 19.3581 19.5328C19.363 19.532 19.368 19.5321 19.3728 19.5333C19.3702 19.5359 19.3668 19.5375 19.3631 19.5381C19.3581 19.5386 19.3532 19.5399 19.3486 19.5418C19.3443 19.5443 19.3416 19.5471 19.3474 19.5512C19.3441 19.5534 19.34 19.5538 19.3382 19.5578C19.3398 19.559 19.3417 19.5599 19.3436 19.5602C19.3456 19.5606 19.3476 19.5605 19.3495 19.5599C19.3519 19.559 19.3546 19.559 19.3571 19.5599C19.3595 19.5608 19.3616 19.5626 19.3628 19.5649C19.3469 19.5715 19.3433 19.5902 19.3296 19.5989C19.3293 19.5992 19.3291 19.5995 19.3289 19.5999C19.3287 19.6002 19.3287 19.6006 19.3287 19.601C19.3294 19.6055 19.3262 19.6077 19.3233 19.6098C19.3132 19.6179 19.3034 19.6269 19.2928 19.634C19.2822 19.6412 19.2806 19.6569 19.269 19.6639C19.2685 19.6641 19.2682 19.6644 19.2679 19.6647C19.2675 19.6651 19.2673 19.6655 19.2672 19.6659C19.267 19.6664 19.267 19.6668 19.267 19.6673C19.2671 19.6678 19.2672 19.6682 19.2674 19.6686C19.269 19.6708 19.2708 19.6692 19.2724 19.6686C19.2761 19.6672 19.2797 19.6655 19.2831 19.6636C19.3007 19.6526 19.3189 19.6427 19.3377 19.6341C19.359 19.6251 19.3793 19.6155 19.4031 19.6204C19.4035 19.6206 19.4039 19.6209 19.4042 19.6212C19.404 19.6238 19.4003 19.6223 19.3998 19.6252ZM19.4239 19.3957C19.4154 19.392 19.4063 19.3903 19.3971 19.3907C19.3879 19.3911 19.3789 19.3937 19.3708 19.3981C19.3379 19.417 19.3083 19.441 19.283 19.4692C19.2667 19.4878 19.2478 19.5039 19.227 19.5171C19.2229 19.5194 19.2196 19.523 19.2175 19.5272C19.2036 19.5546 19.1872 19.5807 19.1687 19.6052C19.1673 19.6071 19.1645 19.6085 19.1655 19.6118C19.1685 19.6122 19.1694 19.6096 19.1708 19.6081C19.1886 19.5882 19.2065 19.5689 19.2257 19.5507C19.2474 19.5301 19.271 19.5115 19.2961 19.4953C19.2989 19.4935 19.301 19.4928 19.3034 19.4953C19.3058 19.4978 19.3018 19.4987 19.3012 19.5005C19.3007 19.5023 19.2997 19.5027 19.2992 19.5038C19.2987 19.505 19.2957 19.5084 19.2977 19.5101C19.2998 19.5117 19.303 19.5093 19.3049 19.5072C19.3058 19.5062 19.3062 19.5048 19.3071 19.5039C19.3108 19.5006 19.3101 19.494 19.3134 19.4918C19.3258 19.4836 19.3322 19.4713 19.3386 19.4587C19.3436 19.4483 19.3507 19.4389 19.3594 19.4313C19.3722 19.4206 19.3865 19.4119 19.3988 19.3999C19.4 19.4025 19.3998 19.407 19.4032 19.4051C19.4096 19.4017 19.4177 19.4018 19.4239 19.3957ZM19.4072 19.7194C19.3954 19.7138 19.3848 19.7174 19.3748 19.715C19.3703 19.7141 19.3657 19.7147 19.3616 19.7167C19.3541 19.7201 19.3461 19.7225 19.338 19.7239C19.3148 19.7276 19.2938 19.7398 19.279 19.758C19.2772 19.7601 19.2666 19.7622 19.2768 19.7679C19.2768 19.7679 19.2761 19.7698 19.2759 19.7708C19.275 19.7777 19.2723 19.7842 19.2681 19.7897C19.263 19.7967 19.2576 19.8036 19.2521 19.8104C19.2502 19.8129 19.2491 19.8153 19.2521 19.8171C19.2551 19.8189 19.2553 19.8155 19.2566 19.8142C19.2648 19.8063 19.2705 19.7943 19.2849 19.796C19.2858 19.796 19.287 19.7945 19.2879 19.7936C19.2977 19.7824 19.31 19.7737 19.3239 19.7683C19.3537 19.7574 19.3769 19.7341 19.4072 19.7194ZM19.4711 19.6418C19.4623 19.6352 19.4538 19.633 19.4446 19.6396C19.4418 19.641 19.4388 19.642 19.4357 19.6426C19.4331 19.6433 19.4308 19.6447 19.4291 19.6466C19.4279 19.648 19.4262 19.6497 19.4274 19.6515C19.4286 19.6533 19.4302 19.6525 19.4317 19.6523C19.442 19.6507 19.4524 19.6492 19.4627 19.6472C19.4661 19.6466 19.4691 19.6446 19.4711 19.6418ZM19.3932 19.7607C19.3932 19.7597 19.392 19.7592 19.3906 19.759C19.389 19.7588 19.3874 19.759 19.386 19.7596C19.3845 19.7602 19.3832 19.7611 19.3822 19.7623C19.3764 19.768 19.3705 19.7735 19.3647 19.7793C19.3632 19.7807 19.3596 19.782 19.3618 19.7846C19.3623 19.7851 19.3629 19.7854 19.3635 19.7857C19.3641 19.7859 19.3648 19.7861 19.3654 19.7861C19.3661 19.7861 19.3668 19.7859 19.3674 19.7857C19.368 19.7854 19.3686 19.7851 19.3691 19.7846C19.3733 19.7806 19.3783 19.7776 19.3837 19.7757C19.3901 19.7728 19.3907 19.7666 19.3932 19.7607Z" fill="#273375"/>
+<path d="M20.3341 19.5443C20.3408 19.5401 20.3465 19.5371 20.3515 19.5333C20.3609 19.5263 20.362 19.5194 20.3561 19.5092L20.3545 19.5065C20.3463 19.4913 20.3446 19.4793 20.3682 19.4746C20.3703 19.4741 20.3723 19.4736 20.3743 19.473C20.392 19.4677 20.398 19.4559 20.3905 19.439C20.3816 19.4219 20.3712 19.4056 20.3594 19.3903C20.3521 19.3796 20.3448 19.3689 20.3383 19.3577C20.3304 19.3453 20.3278 19.3302 20.3308 19.3159C20.3367 19.2882 20.3314 19.261 20.3242 19.2344C20.3186 19.2141 20.3121 19.1939 20.3058 19.1737C20.3043 19.1698 20.3025 19.166 20.3003 19.1623C20.2993 19.161 20.2986 19.1595 20.2982 19.1579C20.2979 19.1563 20.2979 19.1546 20.2982 19.153C20.2985 19.1513 20.2992 19.1498 20.3002 19.1485C20.3012 19.1472 20.3025 19.146 20.3039 19.1452C20.3085 19.1417 20.3131 19.1381 20.3172 19.1341C20.3192 19.1323 20.3207 19.13 20.3217 19.1275C20.3227 19.1249 20.3231 19.1222 20.3229 19.1195C20.3227 19.1168 20.3219 19.1142 20.3205 19.1118C20.3191 19.1095 20.3172 19.1075 20.315 19.1059C20.3142 19.1051 20.3132 19.1045 20.3121 19.1042C20.311 19.1039 20.3098 19.1039 20.3087 19.1041C20.3076 19.1043 20.3065 19.1048 20.3056 19.1056C20.3048 19.1063 20.3041 19.1073 20.3036 19.1083C20.302 19.1122 20.2997 19.1158 20.297 19.1191C20.2961 19.1202 20.2947 19.1209 20.2932 19.121C20.2917 19.1212 20.2903 19.1207 20.2891 19.1198C20.287 19.1179 20.2891 19.1155 20.2903 19.1135C20.2955 19.1062 20.2955 19.1063 20.2867 19.1045C20.2848 19.1044 20.2828 19.1039 20.281 19.1031C20.2793 19.1022 20.2777 19.1009 20.2764 19.0994C20.2618 19.0804 20.2423 19.0658 20.2199 19.0571C20.2189 19.0567 20.218 19.0562 20.2171 19.0557C20.2171 19.0557 20.2171 19.0552 20.2171 19.0542C20.2215 19.0546 20.2258 19.055 20.2303 19.0554C20.2374 19.0563 20.2446 19.0564 20.2517 19.0558C20.2576 19.0558 20.2633 19.0538 20.2679 19.0502C20.2726 19.0466 20.2759 19.0416 20.2773 19.0359C20.2836 19.015 20.2802 19.0028 20.2626 18.9881C20.249 18.9768 20.2327 18.9703 20.2176 18.9616L20.2106 18.9577C20.2133 18.9562 20.2165 18.9558 20.2195 18.9564C20.5421 18.9564 20.8647 18.9564 21.1874 18.9564C21.1947 18.9564 21.1971 18.9578 21.1971 18.9657C21.1971 19.2707 21.1971 19.5754 21.1971 19.8799C21.1971 19.8874 21.1949 19.8889 21.1878 19.8889C20.8691 19.8888 20.5507 19.8887 20.2325 19.8887C20.2279 19.8887 20.2233 19.8874 20.2193 19.8851C20.1833 19.8652 20.1446 19.8516 20.106 19.838C20.1038 19.837 20.1016 19.8362 20.0993 19.8356C20.0847 19.8334 20.0801 19.8229 20.0791 19.8102C20.0743 19.7514 20.0942 19.7027 20.14 19.6653C20.1509 19.6575 20.1643 19.6541 20.1776 19.6557C20.2026 19.6572 20.2268 19.6636 20.2513 19.6669C20.258 19.6677 20.2641 19.6701 20.2705 19.6713C20.2791 19.6732 20.288 19.6732 20.2966 19.6714C20.3052 19.6695 20.3133 19.6659 20.3204 19.6607C20.3284 19.6539 20.3341 19.6447 20.3366 19.6344C20.339 19.6241 20.3381 19.6133 20.3339 19.6036C20.3322 19.6009 20.3316 19.5976 20.3322 19.5945C20.3328 19.5913 20.3346 19.5885 20.3372 19.5865C20.3411 19.5831 20.3453 19.5799 20.3493 19.5763C20.3516 19.5744 20.353 19.5718 20.3535 19.5689C20.354 19.5661 20.3534 19.5631 20.3519 19.5606C20.3506 19.5566 20.3483 19.553 20.3452 19.5501C20.3421 19.5473 20.3383 19.5453 20.3341 19.5443Z" fill="#E20613"/>
+<path d="M20.6061 20.4455C20.5687 20.4455 20.5314 20.4455 20.494 20.4455C20.4874 20.4455 20.4868 20.4468 20.4879 20.453C20.4958 20.5017 20.531 20.5329 20.5807 20.5349C20.6134 20.5362 20.6431 20.5288 20.6668 20.5046C20.6765 20.4947 20.6765 20.4946 20.6874 20.5034C20.7022 20.5154 20.7168 20.5278 20.7319 20.5393C20.7374 20.5435 20.7363 20.5459 20.7326 20.5504C20.7042 20.5839 20.6642 20.6055 20.6206 20.6108C20.576 20.6171 20.5323 20.6129 20.4915 20.5919C20.4393 20.565 20.4096 20.5211 20.3996 20.4641C20.3898 20.4147 20.3988 20.3635 20.425 20.3204C20.4521 20.2761 20.4928 20.2517 20.5437 20.2441C20.5811 20.2384 20.6179 20.241 20.652 20.2588C20.6963 20.2818 20.7206 20.3194 20.7283 20.3682C20.7317 20.3916 20.7312 20.4154 20.7268 20.4386C20.7259 20.4437 20.7239 20.4458 20.7181 20.4458C20.6808 20.4451 20.6434 20.4455 20.6061 20.4455ZM20.5679 20.3744C20.5914 20.3744 20.615 20.3744 20.6385 20.3744C20.6431 20.3744 20.6444 20.3735 20.6434 20.3686C20.641 20.3541 20.6334 20.341 20.622 20.3318C20.6041 20.3172 20.583 20.314 20.5607 20.3153C20.5455 20.316 20.531 20.3213 20.519 20.3306C20.507 20.3399 20.4981 20.3527 20.4936 20.3672C20.492 20.3725 20.4923 20.3746 20.4987 20.3745C20.5218 20.3741 20.5448 20.3743 20.5679 20.3743V20.3744Z" fill="#273375"/>
+<path d="M20.7531 21.0227C20.7154 21.0227 20.6779 21.0227 20.6404 21.0227C20.6343 21.0227 20.6332 21.0239 20.6342 21.0301C20.6427 21.0849 20.6844 21.1154 20.7424 21.1125C20.7733 21.1109 20.8 21.0999 20.8197 21.0747C20.8215 21.0723 20.8228 21.072 20.8253 21.074C20.8437 21.0891 20.8622 21.1041 20.8808 21.119C20.885 21.1224 20.882 21.1244 20.88 21.1266C20.8567 21.1555 20.8243 21.1757 20.7882 21.184C20.7288 21.1981 20.6717 21.193 20.6199 21.1587C20.5743 21.1283 20.5506 21.0841 20.5443 21.0309C20.538 20.987 20.5463 20.9422 20.568 20.9036C20.5962 20.8539 20.6401 20.8277 20.6961 20.8208C20.73 20.8155 20.7648 20.8205 20.7959 20.8352C20.8413 20.8578 20.8662 20.8955 20.8743 20.9448C20.8779 20.9679 20.8775 20.9914 20.8733 21.0143C20.8723 21.0206 20.8704 21.023 20.8634 21.023C20.8267 21.0222 20.7899 21.0227 20.7531 21.0227ZM20.6384 20.9525C20.6879 20.9525 20.7368 20.9525 20.7857 20.9525C20.7909 20.9525 20.7904 20.9501 20.7898 20.9466C20.7883 20.9377 20.7849 20.9292 20.7798 20.9218C20.7747 20.9143 20.768 20.9081 20.7601 20.9036C20.7448 20.8951 20.7273 20.8912 20.7097 20.8925C20.6928 20.8928 20.6764 20.8989 20.6634 20.9098C20.6504 20.9208 20.6416 20.9358 20.6384 20.9525Z" fill="#E20714"/>
+<path d="M19.1684 21.0227C19.1313 21.0227 19.0943 21.0227 19.0571 21.0227C19.0498 21.0227 19.0493 21.025 19.0505 21.0312C19.0603 21.0885 19.1043 21.115 19.1586 21.1123C19.1896 21.1107 19.2163 21.0996 19.2359 21.0744C19.2379 21.0717 19.2393 21.0722 19.2415 21.074C19.2598 21.089 19.2779 21.104 19.2964 21.1186C19.3011 21.1222 19.298 21.1243 19.296 21.1267C19.2763 21.1512 19.2499 21.1695 19.2199 21.1791C19.1556 21.1995 19.0932 21.1958 19.0357 21.1584C18.9912 21.1294 18.9679 21.0855 18.9609 21.0338C18.9543 20.9914 18.9613 20.9479 18.9808 20.9096C19.0084 20.8566 19.0532 20.8283 19.1117 20.8208C19.1459 20.8153 19.181 20.8203 19.2123 20.8352C19.2587 20.8586 19.2836 20.8975 19.2911 20.9479C19.2938 20.9695 19.2935 20.9914 19.2899 21.0128C19.2888 21.0208 19.2857 21.0228 19.2779 21.0227C19.2416 21.0222 19.205 21.0227 19.1684 21.0227ZM19.1308 20.9525C19.1541 20.9525 19.1773 20.9525 19.2007 20.9525C19.2058 20.9525 19.2069 20.9513 19.206 20.9462C19.2036 20.9314 19.1958 20.9181 19.184 20.9088C19.1675 20.8966 19.1471 20.8907 19.1266 20.8924C19.1107 20.8926 19.0953 20.8978 19.0826 20.9074C19.0699 20.9169 19.0606 20.9303 19.0561 20.9455C19.0544 20.9507 19.0545 20.9527 19.061 20.9526C19.0843 20.9523 19.1076 20.9525 19.1308 20.9525Z" fill="#E20714"/>
+<path d="M18.6509 20.3602C18.6509 20.2834 18.6509 20.2065 18.6509 20.1297C18.6509 20.1228 18.6524 20.121 18.6595 20.121C18.7469 20.1213 18.8343 20.1213 18.9217 20.121C18.9283 20.121 18.93 20.1228 18.9299 20.1293C18.9295 20.1534 18.9295 20.1775 18.9299 20.2016C18.9299 20.2079 18.9282 20.2096 18.922 20.2095C18.8669 20.2095 18.8118 20.2095 18.7567 20.2095C18.7501 20.2095 18.7478 20.2111 18.7479 20.2182C18.7484 20.2468 18.7483 20.2754 18.7479 20.304C18.7479 20.3106 18.75 20.3122 18.7564 20.3121C18.8028 20.3121 18.8486 20.3121 18.8947 20.3121C18.9013 20.3121 18.9026 20.3138 18.9024 20.32C18.9021 20.3444 18.9021 20.3687 18.9024 20.3929C18.9024 20.3991 18.9006 20.4002 18.8949 20.4002C18.8485 20.4002 18.8021 20.4002 18.7557 20.4002C18.7494 20.4002 18.7477 20.4018 18.7478 20.4081C18.7478 20.4693 18.7478 20.5304 18.7478 20.5916C18.7478 20.5987 18.746 20.6004 18.739 20.6003C18.7125 20.5998 18.6855 20.5999 18.6587 20.6003C18.6521 20.6003 18.6504 20.5987 18.6504 20.592C18.6509 20.5143 18.6509 20.4372 18.6509 20.3602Z" fill="#273375"/>
+<path d="M19.4534 20.568C19.4326 20.5921 19.4036 20.6076 19.372 20.6113C19.3302 20.6161 19.2915 20.6086 19.264 20.5736C19.2237 20.5225 19.2412 20.4506 19.3002 20.4199C19.3226 20.4092 19.3467 20.4023 19.3714 20.3993C19.3969 20.3952 19.4225 20.3906 19.4481 20.3867C19.4527 20.3859 19.4534 20.3841 19.4535 20.38C19.4545 20.3397 19.425 20.3137 19.3823 20.3175C19.3696 20.3182 19.3572 20.3219 19.3461 20.3282C19.335 20.3345 19.3256 20.3433 19.3185 20.3539C19.3157 20.3579 19.3141 20.3586 19.31 20.3554C19.2919 20.3412 19.2736 20.3272 19.2552 20.3133C19.2514 20.3105 19.2508 20.3087 19.2541 20.3047C19.2688 20.2865 19.287 20.2715 19.3077 20.2607C19.3285 20.2499 19.3512 20.2435 19.3745 20.2419C19.4049 20.2383 19.4357 20.2426 19.464 20.2543C19.5141 20.2762 19.5394 20.3159 19.5405 20.3695C19.542 20.4436 19.5405 20.5179 19.541 20.592C19.541 20.5981 19.5395 20.5995 19.5336 20.5995C19.5089 20.5991 19.4842 20.5995 19.4597 20.5995C19.4549 20.5995 19.453 20.5985 19.453 20.5934C19.4538 20.5857 19.4534 20.5777 19.4534 20.568ZM19.4534 20.4726C19.4534 20.4679 19.4531 20.463 19.4534 20.4583C19.454 20.4526 19.4522 20.4512 19.4465 20.4522C19.4278 20.4557 19.409 20.4588 19.3902 20.4618C19.3753 20.4633 19.3606 20.4673 19.347 20.4736C19.3406 20.4767 19.3354 20.4817 19.332 20.488C19.3287 20.4942 19.3273 20.5013 19.3282 20.5083C19.3288 20.5156 19.3319 20.5225 19.337 20.5279C19.342 20.5332 19.3488 20.5367 19.356 20.5377C19.3698 20.5405 19.3841 20.5399 19.3976 20.536C19.4111 20.5321 19.4235 20.525 19.4337 20.5153C19.4466 20.5041 19.4582 20.4919 19.4534 20.4726Z" fill="#273375"/>
+<path d="M19.7187 20.2803C19.7356 20.2638 19.7564 20.2521 19.7792 20.2463C19.8294 20.2349 19.8757 20.2413 19.9135 20.2794C19.9373 20.3034 19.9471 20.3339 19.9511 20.3667C19.9529 20.3899 19.9535 20.4133 19.9526 20.4366C19.9526 20.4882 19.9526 20.5399 19.9526 20.5916C19.9526 20.5978 19.9511 20.5995 19.9448 20.5994C19.9207 20.599 19.8966 20.599 19.8725 20.5994C19.8659 20.5994 19.8646 20.5977 19.8646 20.5916C19.8646 20.5271 19.8646 20.4628 19.8646 20.3984C19.8648 20.3875 19.8631 20.3767 19.8598 20.3663C19.849 20.3346 19.8189 20.3177 19.7839 20.3234C19.7544 20.3283 19.7348 20.3464 19.7199 20.3709C19.7185 20.374 19.7179 20.3775 19.7184 20.3809C19.7184 20.4509 19.7184 20.5208 19.7184 20.5908C19.7184 20.5979 19.7166 20.5996 19.7097 20.5994C19.685 20.599 19.6604 20.5994 19.6358 20.5994C19.6311 20.5994 19.6292 20.5986 19.6292 20.5934C19.6292 20.4824 19.6292 20.3714 19.6292 20.2603C19.6292 20.256 19.63 20.2544 19.6347 20.2545C19.6607 20.2545 19.6866 20.2545 19.7126 20.2545C19.7167 20.2545 19.7183 20.2555 19.7181 20.2598C19.7184 20.266 19.7187 20.272 19.7187 20.2803Z" fill="#273375"/>
+<path d="M20.1641 21.0059C20.1641 20.9243 20.2084 20.8567 20.2802 20.8318C20.3468 20.8087 20.4109 20.8144 20.4692 20.8573C20.479 20.8649 20.4879 20.8737 20.4957 20.8833C20.4984 20.8865 20.4996 20.8885 20.4951 20.8919C20.4745 20.9071 20.4541 20.9228 20.4339 20.9386C20.4301 20.9416 20.4287 20.9408 20.4261 20.9374C20.4007 20.9049 20.3672 20.8942 20.328 20.9042C20.2888 20.9143 20.2645 20.9408 20.2566 20.9801C20.2479 21.0237 20.2575 21.0627 20.2946 21.0907C20.3142 21.1056 20.339 21.1122 20.3634 21.109C20.3879 21.1058 20.4101 21.0931 20.4253 21.0737C20.4287 21.0695 20.4305 21.0687 20.435 21.0722C20.4546 21.0876 20.4743 21.1027 20.4942 21.1176C20.4986 21.1209 20.4992 21.1227 20.4955 21.1271C20.4809 21.1448 20.4629 21.1594 20.4426 21.1702C20.4223 21.1809 20.4 21.1875 20.3772 21.1896C20.3315 21.1947 20.2878 21.1878 20.2482 21.163C20.1992 21.1325 20.1731 21.0872 20.1655 21.0305C20.1643 21.0223 20.1639 21.0141 20.1641 21.0059Z" fill="#E20714"/>
+<path d="M20.2023 20.2411C20.2627 20.2421 20.3113 20.2606 20.3486 20.3046C20.3523 20.309 20.3529 20.3112 20.3478 20.3149C20.3279 20.3297 20.308 20.345 20.2884 20.3601C20.285 20.3627 20.2832 20.364 20.2797 20.3595C20.2544 20.3271 20.2209 20.3165 20.1816 20.3264C20.1423 20.3363 20.1182 20.3631 20.1103 20.4023C20.1016 20.4451 20.111 20.4838 20.147 20.5119C20.1666 20.5272 20.1915 20.534 20.2162 20.531C20.2409 20.5279 20.2633 20.5152 20.2787 20.4956C20.282 20.4915 20.2839 20.4907 20.2885 20.4943C20.308 20.5097 20.3278 20.5248 20.3478 20.5397C20.3523 20.543 20.3523 20.5451 20.3487 20.5493C20.3333 20.5679 20.3141 20.5831 20.2925 20.5939C20.2709 20.6047 20.2473 20.611 20.2232 20.6122C20.1848 20.6162 20.146 20.6088 20.1117 20.591C20.0884 20.579 20.0682 20.5618 20.0526 20.5407C20.0371 20.5197 20.0265 20.4953 20.0219 20.4695C20.0102 20.4126 20.0194 20.3593 20.0544 20.3121C20.0839 20.2723 20.1245 20.2511 20.1728 20.2437C20.184 20.2421 20.1952 20.2417 20.2023 20.2411Z" fill="#273375"/>
+<path d="M19.7753 21.0768C19.8013 21.0049 19.8269 20.9345 19.8524 20.8639C19.8556 20.855 19.859 20.8461 19.8621 20.8371C19.8623 20.8357 19.8631 20.8344 19.8643 20.8336C19.8654 20.8328 19.8669 20.8324 19.8683 20.8326C19.8959 20.8326 19.9234 20.8326 19.951 20.8326C19.9588 20.8326 19.9556 20.8366 19.9543 20.8401C19.927 20.9152 19.8997 20.9904 19.8725 21.0658C19.8599 21.1005 19.8471 21.1353 19.8348 21.1701C19.8343 21.1724 19.833 21.1744 19.8311 21.1757C19.8292 21.177 19.8268 21.1775 19.8245 21.1771C19.7914 21.1771 19.7578 21.1771 19.7244 21.1771C19.7197 21.1771 19.7172 21.1763 19.7153 21.1712C19.6755 21.0607 19.6355 20.9505 19.5952 20.8405C19.5929 20.8342 19.5935 20.8325 19.6005 20.8326C19.6262 20.833 19.6519 20.833 19.6776 20.8326C19.6801 20.8322 19.6827 20.8328 19.6848 20.8342C19.6869 20.8357 19.6884 20.8379 19.6889 20.8404C19.7164 20.9164 19.744 20.9924 19.7718 21.0682C19.7727 21.0706 19.7738 21.073 19.7753 21.0768Z" fill="#E20714"/>
+<path d="M21.0715 20.819C21.0942 20.819 21.1166 20.8236 21.1374 20.8328C21.1582 20.8419 21.1769 20.8553 21.1922 20.8721C21.1963 20.8766 21.1964 20.8792 21.1918 20.8835C21.1754 20.8986 21.1594 20.914 21.1434 20.9295C21.1399 20.9329 21.1385 20.9321 21.1357 20.9288C21.1213 20.9117 21.1049 20.8973 21.0819 20.8934C21.0711 20.8915 21.06 20.8929 21.05 20.8974C21.0458 20.899 21.042 20.9017 21.0391 20.9052C21.0363 20.9088 21.0345 20.913 21.0339 20.9176C21.0333 20.9221 21.0339 20.9267 21.0358 20.9308C21.0376 20.935 21.0405 20.9386 21.0443 20.9412C21.0547 20.9489 21.0662 20.955 21.0785 20.9593C21.1009 20.9673 21.1225 20.9774 21.143 20.9894C21.1666 21.0047 21.1836 21.0249 21.1895 21.053C21.2027 21.1158 21.167 21.1727 21.1044 21.1863C21.0381 21.2006 20.9809 21.1828 20.934 21.1333C20.9305 21.1295 20.9299 21.1272 20.934 21.1233C20.9502 21.108 20.9661 21.0925 20.9818 21.0768C20.986 21.0726 20.9879 21.0724 20.9918 21.0772C21.0048 21.0944 21.0227 21.1073 21.0431 21.1143C21.0575 21.1193 21.0732 21.1188 21.0874 21.1131C21.1063 21.1051 21.1162 21.0769 21.0923 21.0608C21.0787 21.0525 21.0644 21.0457 21.0494 21.0405C21.0321 21.0339 21.0153 21.026 20.9993 21.0167C20.9615 20.9934 20.9443 20.9594 20.9486 20.9156C20.9529 20.8708 20.9796 20.8427 21.0207 20.8277C21.0369 20.8217 21.0541 20.8188 21.0715 20.819Z" fill="#E20714"/>
+<path d="M18.7712 20.819C18.8186 20.8202 18.8593 20.8365 18.8919 20.872C18.8964 20.8769 18.896 20.8794 18.8911 20.8839C18.8754 20.8981 18.8601 20.9127 18.8452 20.9278C18.8403 20.9326 18.8381 20.9321 18.8339 20.9271C18.8201 20.9105 18.8038 20.8971 18.7817 20.8935C18.7701 20.8912 18.7582 20.893 18.7478 20.8985C18.744 20.9002 18.7407 20.9029 18.7382 20.9062C18.7358 20.9095 18.7342 20.9134 18.7336 20.9175C18.7331 20.9217 18.7336 20.9258 18.7351 20.9297C18.7367 20.9335 18.7392 20.9369 18.7424 20.9396C18.7508 20.9468 18.7605 20.9524 18.771 20.9562C18.7904 20.9645 18.8108 20.9715 18.8292 20.9815C18.8565 20.996 18.8787 21.0152 18.8874 21.0462C18.9027 21.1003 18.8803 21.1683 18.805 21.186C18.7381 21.2016 18.68 21.1827 18.6326 21.1321C18.6295 21.1287 18.6298 21.1269 18.6326 21.1238C18.6489 21.1083 18.665 21.0926 18.6809 21.0767C18.6849 21.0727 18.6869 21.072 18.6911 21.0767C18.7065 21.0951 18.7242 21.1099 18.7485 21.1156C18.7596 21.1183 18.7712 21.118 18.7822 21.1146C18.7882 21.113 18.7937 21.1096 18.7978 21.1049C18.802 21.1001 18.8046 21.0943 18.8054 21.0881C18.8073 21.0748 18.8004 21.0663 18.7904 21.0596C18.776 21.0511 18.7609 21.0442 18.7451 21.0387C18.7217 21.0304 18.6997 21.0182 18.6802 21.0028C18.6319 20.9616 18.6312 20.8648 18.7118 20.8304C18.7306 20.8226 18.7508 20.8187 18.7712 20.819Z" fill="#E20714"/>
+<path d="M19.0831 20.288C19.0957 20.2749 19.1107 20.2644 19.1273 20.2572C19.1494 20.2478 19.1739 20.2457 19.1972 20.2511C19.2019 20.2522 19.2039 20.2538 19.2039 20.2589C19.2039 20.2855 19.2039 20.312 19.2039 20.3385C19.2039 20.3431 19.2031 20.3442 19.1981 20.3431C19.1744 20.3369 19.1493 20.3382 19.1264 20.347C19.1171 20.3508 19.1084 20.3561 19.1008 20.3628C19.0949 20.3673 19.0902 20.3732 19.087 20.38C19.0839 20.3868 19.0824 20.3942 19.0828 20.4017C19.0839 20.465 19.0831 20.5283 19.0834 20.5916C19.0834 20.5982 19.0819 20.6 19.0752 20.5999C19.0508 20.5994 19.0265 20.5995 19.0023 20.5999C18.9968 20.5999 18.9951 20.5984 18.9951 20.5928C18.9951 20.4824 18.9951 20.3719 18.9951 20.2614C18.9951 20.2561 18.9966 20.2548 19.0017 20.2548C19.0269 20.2548 19.0521 20.2548 19.0772 20.2548C19.0829 20.2548 19.0839 20.2568 19.0835 20.2614C19.0829 20.2696 19.0831 20.2778 19.0831 20.288Z" fill="#273375"/>
+<path d="M19.4489 20.8656C19.4609 20.8533 19.4751 20.8432 19.4906 20.8359C19.513 20.8258 19.538 20.8232 19.562 20.8286C19.567 20.8297 19.5695 20.8314 19.5694 20.8373C19.5689 20.863 19.5689 20.8887 19.5694 20.9144C19.5694 20.9211 19.5675 20.9214 19.5617 20.9203C19.5335 20.9147 19.5059 20.9153 19.4802 20.9305C19.4757 20.9333 19.4714 20.9364 19.4674 20.9397C19.4612 20.9444 19.4562 20.9504 19.4529 20.9574C19.4496 20.9644 19.4481 20.9721 19.4485 20.9799C19.4497 21.0424 19.4485 21.1049 19.4492 21.1675C19.4492 21.1759 19.4468 21.1773 19.4391 21.1771C19.4156 21.1766 19.392 21.1767 19.3684 21.1771C19.3628 21.1771 19.3608 21.1763 19.3608 21.17C19.3608 21.06 19.3608 20.95 19.3608 20.84C19.3608 20.8339 19.3625 20.8326 19.3683 20.8327C19.3927 20.833 19.4171 20.8327 19.4412 20.8327C19.447 20.8327 19.4494 20.8337 19.4489 20.84C19.4484 20.8478 19.4489 20.8558 19.4489 20.8656Z" fill="#E20613"/>
+<path d="M20.0035 21.0051C20.0035 20.9503 20.0035 20.8955 20.0035 20.8407C20.0035 20.8341 20.0052 20.8324 20.0118 20.8325C20.0361 20.8329 20.0605 20.8329 20.0847 20.8325C20.0903 20.8325 20.0925 20.8335 20.0924 20.8398C20.0924 20.9499 20.0924 21.0601 20.0924 21.1702C20.0924 21.1751 20.0916 21.1768 20.0858 21.1768C20.0604 21.1765 20.0349 21.1765 20.0096 21.1768C20.0041 21.1768 20.0029 21.175 20.0029 21.1702C20.0034 21.1153 20.0035 21.0603 20.0035 21.0051Z" fill="#E20714"/>
+<path d="M19.9907 20.7212C19.9908 20.7062 19.9968 20.6919 20.0075 20.6814C20.0181 20.6709 20.0324 20.665 20.0474 20.665C20.0551 20.6645 20.0629 20.6656 20.0702 20.6682C20.0774 20.6708 20.0841 20.6749 20.0898 20.6802C20.0954 20.6855 20.0999 20.6919 20.1029 20.699C20.106 20.7061 20.1076 20.7138 20.1075 20.7215C20.1075 20.7293 20.1059 20.7369 20.1028 20.744C20.0997 20.7511 20.0951 20.7575 20.0895 20.7627C20.0838 20.768 20.0771 20.7721 20.0698 20.7746C20.0625 20.7772 20.0547 20.7782 20.047 20.7777C20.0321 20.7776 20.0178 20.7716 20.0072 20.761C19.9967 20.7504 19.9908 20.7361 19.9907 20.7212Z" fill="#E20714"/>
+<path d="M20.2039 19.3033C20.2077 19.2997 20.2122 19.2968 20.2171 19.2948C20.2359 19.2859 20.2561 19.2806 20.2768 19.2791C20.2879 19.2794 20.2988 19.2819 20.3089 19.2866C20.3135 19.2883 20.3138 19.2932 20.3128 19.2975C20.3108 19.3044 20.3065 19.3105 20.3006 19.3146C20.2974 19.3173 20.2952 19.3191 20.2995 19.3231C20.3038 19.327 20.3003 19.3293 20.2967 19.3306C20.293 19.3318 20.2895 19.3336 20.2863 19.3359C20.2797 19.3416 20.2839 19.3492 20.2818 19.3558C20.2815 19.3576 20.2815 19.3595 20.2818 19.3613C20.2822 19.3775 20.2806 19.3795 20.2643 19.3803C20.2554 19.3815 20.2463 19.3806 20.2378 19.3778C20.2428 19.3772 20.2469 19.3768 20.2511 19.3761C20.2527 19.376 20.2542 19.3752 20.2552 19.3739C20.2563 19.3727 20.2568 19.3711 20.2567 19.3695C20.2567 19.3659 20.2534 19.3658 20.2521 19.3643C20.2446 19.3553 20.2314 19.3612 20.2241 19.3528C20.2228 19.3512 20.2196 19.3507 20.2202 19.3483C20.2209 19.3459 20.224 19.3451 20.2261 19.3455C20.2344 19.3471 20.2365 19.3404 20.2416 19.3365C20.2493 19.3298 20.2575 19.3239 20.2662 19.3186C20.2714 19.3161 20.2761 19.3124 20.2799 19.308C20.2846 19.3022 20.2839 19.3005 20.2768 19.2987C20.255 19.293 20.2338 19.2965 20.2127 19.3021C20.21 19.303 20.2074 19.3049 20.2039 19.3033Z" fill="#9E9E9D"/>
+<path d="M19.5154 19.4389C19.5154 19.4384 19.5154 19.4379 19.5154 19.4374C19.5229 19.4361 19.5306 19.4361 19.5381 19.4374L19.5154 19.4389Z" fill="#9E9E9D"/>
+<path d="M19.4736 19.7368L19.4692 19.7396L19.4673 19.7378L19.4724 19.7355L19.4736 19.7368Z" fill="#273375"/>
+<path d="M19.4717 19.7355C19.4733 19.7348 19.4749 19.7336 19.4766 19.7355L19.473 19.7372L19.4717 19.7355Z" fill="#273375"/>
+<path d="M19.4765 19.7358L19.4756 19.7344L19.4769 19.7338C19.4766 19.7344 19.4764 19.735 19.4762 19.7356L19.4765 19.7358Z" fill="#273375"/>
+<path d="M19.3997 19.6252C19.4002 19.6223 19.4039 19.6238 19.4043 19.6212C19.404 19.6209 19.4036 19.6206 19.4032 19.6204C19.3794 19.6155 19.3591 19.6251 19.3378 19.6341C19.3187 19.6426 19.3003 19.6523 19.2825 19.6632C19.279 19.6651 19.2754 19.6668 19.2718 19.6682C19.2702 19.6689 19.2683 19.6706 19.2668 19.6682C19.2666 19.6678 19.2664 19.6674 19.2664 19.6669C19.2663 19.6664 19.2664 19.666 19.2665 19.6655C19.2667 19.6651 19.2669 19.6647 19.2672 19.6643C19.2675 19.664 19.2679 19.6637 19.2683 19.6635C19.28 19.6568 19.2809 19.6413 19.2922 19.6336C19.3034 19.626 19.3125 19.6175 19.3227 19.6094C19.3256 19.6071 19.3287 19.6051 19.328 19.6006C19.328 19.6002 19.3281 19.5998 19.3283 19.5995C19.3284 19.5991 19.3287 19.5988 19.329 19.5985C19.3429 19.5898 19.3464 19.5711 19.3621 19.5645C19.3609 19.5622 19.3589 19.5604 19.3564 19.5595C19.354 19.5586 19.3513 19.5586 19.3489 19.5595C19.3469 19.5601 19.3449 19.5602 19.343 19.5598C19.341 19.5595 19.3392 19.5586 19.3376 19.5574C19.3393 19.5534 19.3434 19.553 19.3467 19.5508C19.3409 19.5467 19.3436 19.5441 19.3479 19.5414C19.3526 19.5395 19.3575 19.5382 19.3624 19.5377C19.3661 19.5371 19.3695 19.5355 19.3722 19.5329C19.3673 19.5318 19.3623 19.5316 19.3574 19.5324C19.35 19.5324 19.3403 19.5346 19.3366 19.5285C19.3329 19.5224 19.3404 19.5162 19.3437 19.5104C19.3509 19.497 19.3617 19.4859 19.3749 19.4783C19.3772 19.477 19.3798 19.4751 19.3821 19.4771C19.3844 19.4791 19.3829 19.4824 19.3821 19.4851C19.3804 19.4903 19.376 19.4928 19.3707 19.4956C19.3817 19.4979 19.392 19.4998 19.402 19.5027C19.4046 19.5034 19.4117 19.5017 19.4092 19.5093C19.4088 19.5104 19.4118 19.5103 19.4134 19.5107C19.4179 19.5117 19.4226 19.5125 19.4273 19.5137C19.4288 19.5141 19.4312 19.5143 19.4312 19.5166C19.4311 19.519 19.4283 19.5179 19.4269 19.5194C19.4784 19.5343 19.5307 19.5459 19.5751 19.5798C19.5523 19.591 19.5283 19.5997 19.5035 19.6055C19.4887 19.6092 19.4736 19.6122 19.4587 19.6156C19.4575 19.6161 19.4562 19.6164 19.4548 19.6165C19.4416 19.6152 19.4293 19.6209 19.417 19.6252C19.4143 19.6263 19.4113 19.6269 19.4084 19.6269C19.4054 19.627 19.4024 19.6264 19.3997 19.6252Z" fill="#FEFEFE"/>
+<path d="M19.4237 19.3957C19.4175 19.4019 19.4095 19.4017 19.403 19.4053C19.3996 19.4072 19.3999 19.4027 19.3986 19.4001C19.3863 19.4121 19.3721 19.4208 19.3592 19.4315C19.3504 19.4392 19.3433 19.4485 19.3382 19.459C19.3315 19.4715 19.3253 19.4838 19.3129 19.4922C19.3096 19.4943 19.3103 19.5009 19.3067 19.5042C19.3057 19.5051 19.3053 19.5065 19.3044 19.5075C19.3025 19.5097 19.3002 19.5126 19.2973 19.5104C19.2943 19.5081 19.298 19.5062 19.2987 19.5042C19.2994 19.5021 19.3004 19.502 19.3008 19.5008C19.3011 19.4995 19.3057 19.4987 19.3029 19.4956C19.3001 19.4925 19.2984 19.4936 19.2957 19.4956C19.2705 19.5117 19.247 19.5301 19.2253 19.5506C19.206 19.5688 19.1881 19.5883 19.1703 19.608C19.1689 19.6096 19.1681 19.6121 19.165 19.6117C19.164 19.6084 19.1669 19.6069 19.1682 19.6051C19.1867 19.5806 19.2031 19.5545 19.217 19.5272C19.2191 19.5229 19.2224 19.5194 19.2265 19.517C19.2473 19.5038 19.2662 19.4877 19.2825 19.4692C19.3079 19.4409 19.3377 19.417 19.3707 19.3982C19.3788 19.3937 19.3877 19.3912 19.3969 19.3908C19.4061 19.3903 19.4153 19.392 19.4237 19.3957Z" fill="#FEFEFE"/>
+<path d="M19.4069 19.7194C19.3767 19.7342 19.3535 19.7574 19.3235 19.7684C19.3097 19.7739 19.2974 19.7826 19.2876 19.7938C19.2867 19.7947 19.2855 19.7962 19.2846 19.7961C19.2702 19.7946 19.2647 19.8064 19.2563 19.8144C19.255 19.8157 19.2543 19.8189 19.2518 19.8172C19.2494 19.8156 19.2501 19.8129 19.2518 19.8106C19.2573 19.804 19.2627 19.7969 19.2678 19.7898C19.272 19.7843 19.2747 19.7778 19.2756 19.771C19.2756 19.77 19.2766 19.7682 19.2765 19.768C19.2663 19.7624 19.2769 19.7602 19.2787 19.7582C19.2935 19.7399 19.3145 19.7278 19.3377 19.724C19.3458 19.7226 19.3538 19.7202 19.3613 19.7169C19.3654 19.7149 19.37 19.7143 19.3745 19.7152C19.3845 19.7175 19.3952 19.7138 19.4069 19.7194Z" fill="#FEFEFE"/>
+<path d="M19.4708 19.6418C19.4698 19.6432 19.4685 19.6444 19.467 19.6454C19.4656 19.6463 19.4639 19.6469 19.4622 19.6472C19.4519 19.6491 19.4416 19.6507 19.4312 19.6523C19.4298 19.6523 19.4275 19.6523 19.4269 19.6515C19.4263 19.6507 19.4275 19.648 19.4286 19.6466C19.4304 19.6447 19.4327 19.6433 19.4352 19.6426C19.4383 19.642 19.4413 19.641 19.4441 19.6396C19.4535 19.633 19.462 19.6354 19.4708 19.6418Z" fill="#FEFEFE"/>
+<path d="M19.3932 19.7607C19.3908 19.7667 19.3901 19.773 19.3836 19.7758C19.3781 19.7777 19.3731 19.7807 19.3689 19.7847C19.3684 19.7852 19.3678 19.7856 19.3672 19.7859C19.3666 19.7861 19.3659 19.7863 19.3652 19.7863C19.3645 19.7863 19.3639 19.7861 19.3632 19.7859C19.3626 19.7856 19.362 19.7852 19.3616 19.7847C19.3593 19.7821 19.363 19.7809 19.3644 19.7794C19.3703 19.7736 19.3763 19.768 19.3821 19.7623C19.3831 19.761 19.3844 19.7601 19.3859 19.7595C19.3874 19.7589 19.389 19.7587 19.3906 19.7589C19.392 19.7593 19.3931 19.7597 19.3932 19.7607Z" fill="#FEFEFE"/>
+<path d="M20.568 20.3743C20.5449 20.3743 20.5219 20.3743 20.4989 20.3743C20.4922 20.3743 20.4922 20.3722 20.4937 20.367C20.4982 20.3525 20.5071 20.3397 20.5191 20.3304C20.5311 20.3211 20.5457 20.3157 20.5608 20.315C20.5831 20.3137 20.6042 20.3169 20.6221 20.3315C20.6335 20.3408 20.6411 20.3539 20.6436 20.3684C20.6445 20.3732 20.6432 20.3743 20.6387 20.3742C20.6151 20.3742 20.5915 20.3743 20.568 20.3743Z" fill="#FEFEFE"/>
+<path d="M20.6384 20.9525C20.6417 20.9359 20.6505 20.9209 20.6635 20.91C20.6765 20.8992 20.6928 20.8931 20.7098 20.8928C20.7273 20.8915 20.7448 20.8954 20.7601 20.904C20.768 20.9085 20.7747 20.9146 20.7798 20.9221C20.7849 20.9295 20.7883 20.938 20.7898 20.9469C20.7904 20.9504 20.7909 20.9529 20.7857 20.9528C20.7368 20.9524 20.6879 20.9525 20.6384 20.9525Z" fill="#FEFEFE"/>
+<path d="M19.1306 20.9525C19.1074 20.9525 19.0842 20.9525 19.0608 20.9525C19.0542 20.9525 19.0542 20.9506 19.0559 20.9454C19.0604 20.9302 19.0697 20.9169 19.0824 20.9073C19.0951 20.8978 19.1105 20.8925 19.1264 20.8924C19.1469 20.8907 19.1673 20.8965 19.1838 20.9088C19.1955 20.918 19.2034 20.9314 19.2057 20.9461C19.2067 20.9512 19.2057 20.9528 19.2004 20.9524C19.1772 20.9524 19.1539 20.9525 19.1306 20.9525Z" fill="#FEFEFE"/>
+<path d="M19.4533 20.4725C19.4581 20.492 19.4467 20.504 19.4334 20.5153C19.4232 20.525 19.4108 20.5321 19.3973 20.536C19.3838 20.5399 19.3695 20.5405 19.3557 20.5377C19.3485 20.5367 19.3417 20.5332 19.3367 20.5279C19.3316 20.5225 19.3285 20.5156 19.3279 20.5083C19.327 20.5013 19.3284 20.4942 19.3317 20.4879C19.3351 20.4817 19.3403 20.4767 19.3467 20.4736C19.3603 20.4673 19.375 20.4633 19.3899 20.4618C19.4087 20.4586 19.4275 20.4556 19.4462 20.4521C19.4519 20.4511 19.4537 20.4526 19.4531 20.4583C19.453 20.463 19.4533 20.4678 19.4533 20.4725Z" fill="#FEFEFE"/>
+<path d="M37.1639 15C37.3943 15.0913 37.6436 15.0725 37.8813 15.125C38.5509 15.2736 39.1876 15.501 39.774 15.8625C39.8781 15.9265 39.9067 15.9734 39.838 16.0912C39.4252 16.8025 39.018 17.5172 38.6166 18.2353C38.5449 18.3633 38.5009 18.3829 38.3691 18.2933C37.7588 17.8789 37.0922 17.6758 36.3535 17.8499C35.4475 18.0633 34.8756 18.8622 34.9452 19.7904C35.0083 20.626 35.7607 21.357 36.6347 21.4398C36.9742 21.4775 37.3178 21.4462 37.6449 21.3478C37.972 21.2494 38.2758 21.0859 38.5381 20.8671C38.6418 20.7818 38.6763 20.7993 38.7361 20.9055C39.1377 21.6229 39.5409 22.3394 39.9536 23.0508C40.0266 23.1789 40.0168 23.2369 39.8986 23.3201C39.2461 23.781 38.5103 24.0401 37.7323 24.1527C36.438 24.3401 35.194 24.183 34.072 23.4516C32.9159 22.6983 32.2899 21.6122 32.1268 20.2556C31.9775 19.0116 32.2122 17.852 32.9676 16.8291C33.7758 15.734 34.8914 15.1865 36.2259 15.0427C36.2536 15.0397 36.2818 15.0358 36.3112 15.032C36.5528 15.0192 36.7965 15.0465 37.0367 15H37.1639ZM36.8485 22.6467C35.162 22.6249 34.0071 21.6694 33.7758 20.0558C33.5808 18.6902 34.2256 17.278 35.6924 16.7779C36.4779 16.5018 37.3378 16.5265 38.1062 16.847C38.3196 16.9324 38.3157 16.7681 38.3669 16.6789C38.4467 16.5398 38.291 16.5577 38.2342 16.5342C37.8464 16.3743 37.4329 16.2856 37.0137 16.2722C34.6311 16.1868 32.9633 18.1593 33.5044 20.4655C34.0631 22.8451 36.7226 23.4597 38.4181 22.6343C38.5069 22.5916 38.5684 22.552 38.486 22.4491C38.4233 22.3714 38.4169 22.2323 38.2432 22.3288C37.813 22.5673 37.3389 22.6501 36.8485 22.6467Z" fill="#A30248"/>
+<path d="M0 20.7122C0.10797 20.3742 0.11992 20.02 0.16601 19.6726C0.238132 19.1285 0.22789 19.1225 0.775851 19.1178C0.900465 19.1178 0.962345 19.0858 0.965759 18.9587C0.965759 18.9019 0.977282 18.8456 0.983683 18.788C1.02977 18.3612 1.02935 18.3501 0.586796 18.3612C0.401582 18.3667 0.357625 18.3117 0.384511 18.1367C0.460475 17.6462 0.529041 17.1546 0.59021 16.6618C0.603866 16.5522 0.641848 16.5086 0.748111 16.5231C0.755198 16.524 0.762362 16.524 0.769449 16.5231C0.942287 16.5048 1.16676 16.6021 1.27516 16.4758C1.36947 16.3661 1.34344 16.1527 1.36862 15.985C1.39849 15.7814 1.43136 15.5783 1.45397 15.3739C1.46592 15.2676 1.50988 15.2292 1.61742 15.2301C2.14362 15.2343 2.66981 15.2365 3.19644 15.2301C3.34111 15.2301 3.3394 15.2975 3.32447 15.4008C3.27709 15.7161 3.23058 16.0324 3.18961 16.349C3.1815 16.4105 3.10426 16.533 3.24978 16.5163C3.37354 16.5018 3.57241 16.6392 3.61381 16.3977C3.67071 16.0691 3.7168 15.7389 3.75208 15.4072C3.76659 15.2719 3.81183 15.2271 3.94882 15.2292C4.45325 15.236 4.95796 15.236 5.46296 15.2292C5.60123 15.2292 5.65244 15.2582 5.62599 15.4072C5.56923 15.7281 5.52954 16.052 5.47705 16.3738C5.45998 16.4783 5.46979 16.5351 5.59825 16.5257C5.73993 16.5155 5.8829 16.5257 6.02501 16.5223C6.11804 16.5193 6.14791 16.5479 6.13383 16.6456C6.05957 17.1577 5.98788 17.6698 5.92301 18.1845C5.90466 18.3271 5.84193 18.362 5.70238 18.3599C5.21587 18.3539 5.21587 18.3599 5.13478 18.8383C5.08827 19.111 5.08827 19.111 5.37804 19.111C5.7698 19.111 5.77236 19.111 5.72371 19.4951C5.66823 19.9312 5.60337 20.3661 5.55301 20.8027C5.53935 20.9158 5.50564 20.9623 5.38231 20.9619C5.20648 20.9619 4.9756 20.8821 4.87019 20.9943C4.76478 21.1065 4.79594 21.3263 4.76862 21.5C4.73704 21.7032 4.70546 21.9063 4.679 22.1103C4.66705 22.2037 4.62865 22.2404 4.52836 22.2383C4.00259 22.2336 3.47639 22.2319 2.94934 22.2383C2.80979 22.2383 2.80126 22.1794 2.81747 22.071C2.86527 21.7484 2.90283 21.4241 2.95702 21.1023C2.9758 20.9913 2.96001 20.9559 2.84052 20.9538C2.55203 20.9478 2.55032 20.9414 2.50551 21.2329C2.46284 21.5064 2.42016 21.78 2.38901 22.0544C2.37407 22.1752 2.34633 22.2426 2.19739 22.2396C1.68528 22.2289 1.17316 22.2298 0.661052 22.2396C0.5151 22.2422 0.495042 22.188 0.51382 22.0651C0.564178 21.7428 0.599172 21.4177 0.657638 21.0976C0.681537 20.9696 0.639714 20.9521 0.533451 20.9563C0.355918 20.9632 0.178386 20.9623 0.000853459 20.9644L0 20.7122ZM5.34987 17.3365C5.13137 17.3365 4.91799 17.3242 4.70717 17.3404C4.5275 17.3545 4.51214 17.2832 4.53647 17.1326C4.59493 16.783 4.6423 16.431 4.68412 16.0789C4.69181 16.0174 4.77246 15.9056 4.60901 15.8924C4.47288 15.8809 4.44642 15.9436 4.43148 16.0631C4.38454 16.4361 4.31711 16.8065 4.27273 17.1795C4.25736 17.3101 4.20871 17.3417 4.08581 17.3404C3.5387 17.335 2.99131 17.335 2.44363 17.3404C2.3203 17.3404 2.28104 17.3075 2.29981 17.1833C2.35671 16.8115 2.40835 16.4392 2.45473 16.0665C2.46241 16.0059 2.53538 15.9043 2.3873 15.8958C2.28701 15.8898 2.21659 15.8958 2.20337 16.0285C2.16069 16.4019 2.09326 16.7724 2.04589 17.1454C2.02754 17.2892 1.97974 17.3587 1.81971 17.3421C1.649 17.3259 1.4783 17.3459 1.30759 17.3361C1.17957 17.3284 1.15695 17.3916 1.14671 17.4996C1.13348 17.634 1.22139 17.6088 1.29479 17.6092C1.4655 17.6092 1.6362 17.6186 1.8069 17.6071C1.94731 17.5973 1.97761 17.6498 1.95755 17.7778C1.86622 18.4239 1.77917 19.0706 1.69637 19.7179C1.68101 19.8369 1.62852 19.8681 1.51628 19.8625C1.33917 19.854 1.15994 19.8728 0.983683 19.8557C0.81938 19.8403 0.800603 19.9304 0.791214 20.0529C0.778838 20.2172 0.903025 20.1459 0.967893 20.1497C1.13848 20.1585 1.30941 20.1585 1.48001 20.1497C1.59395 20.1446 1.6234 20.1758 1.60419 20.2927C1.54701 20.6427 1.4958 20.9939 1.45909 21.3464C1.45184 21.4151 1.34003 21.5491 1.53164 21.5734C1.6968 21.5948 1.69253 21.4834 1.70619 21.3763C1.74887 21.0246 1.80136 20.6734 1.84361 20.3213C1.85897 20.1963 1.90421 20.1455 2.04333 20.148C2.57635 20.1574 3.11023 20.1587 3.64283 20.148C3.81353 20.1446 3.8609 20.1907 3.83146 20.3614C3.77086 20.7105 3.72519 21.0626 3.67953 21.4147C3.67228 21.4706 3.61509 21.5653 3.74397 21.5734C3.83957 21.5794 3.91468 21.5845 3.93175 21.4454C3.97442 21.072 4.04356 20.702 4.08111 20.3281C4.0969 20.1741 4.15708 20.1442 4.29449 20.1523C4.4716 20.1634 4.65041 20.1472 4.82752 20.1574C4.97859 20.1664 4.97603 20.0682 4.99097 19.9675C5.01145 19.8275 4.91073 19.8642 4.84245 19.8625C4.68604 19.8551 4.52934 19.8559 4.37302 19.8651C4.20231 19.8796 4.14128 19.8485 4.17287 19.6517C4.27443 19.0218 4.35637 18.3885 4.43831 17.7552C4.4541 17.6344 4.50617 17.6028 4.6184 17.6084C4.77417 17.6161 4.93207 17.5981 5.08784 17.6131C5.28116 17.6297 5.38743 17.5764 5.34987 17.3365Z" fill="#A30248"/>
+<path d="M26.3619 20.772C26.3619 21.7808 26.3585 22.7893 26.3657 23.7981C26.3657 23.956 26.329 24 26.1673 23.9987C25.3282 23.9896 24.489 23.9896 23.6494 23.9987C23.4787 23.9987 23.4556 23.9462 23.4561 23.7951C23.4607 21.7851 23.4561 19.7746 23.4637 17.7646C23.4637 17.576 23.4176 17.5226 23.229 17.5294C22.8244 17.5444 22.4182 17.5294 22.0136 17.5367C21.8907 17.5367 21.8399 17.5158 21.8429 17.3758C21.8506 16.7155 21.8506 16.055 21.8429 15.3944C21.8429 15.2552 21.8911 15.233 22.0136 15.2335C23.94 15.2369 25.8667 15.2369 27.7936 15.2335C27.9405 15.2335 27.9878 15.2719 27.9861 15.4229C27.978 16.0631 27.9763 16.7032 27.9861 17.3408C27.9891 17.5072 27.9336 17.5422 27.78 17.5384C27.375 17.5286 26.9691 17.5444 26.5646 17.5307C26.3887 17.5247 26.3563 17.5862 26.3572 17.7467C26.3653 18.7547 26.3619 19.7635 26.3619 20.772ZM24.747 19.7669C24.747 20.7617 24.7504 21.7561 24.7436 22.7509C24.7436 22.8989 24.7803 22.9391 24.9301 22.9408C25.1042 22.9429 25.0833 22.8443 25.0833 22.7363C25.0833 20.7681 25.0833 18.8003 25.079 16.833C25.079 16.6546 25.108 16.5876 25.3069 16.5944C25.7968 16.611 26.2885 16.5982 26.7784 16.6008C26.8872 16.6008 26.964 16.6008 26.9662 16.4497C26.9683 16.2987 26.9021 16.279 26.7758 16.279C25.5317 16.2824 24.2874 16.2824 23.0429 16.279C22.9337 16.279 22.8594 16.2769 22.8565 16.4292C22.8535 16.5816 22.9222 16.6 23.0468 16.6C23.5516 16.5953 24.0565 16.6038 24.5614 16.5944C24.7094 16.5918 24.7517 16.6315 24.7504 16.7818C24.7436 17.7795 24.747 18.7743 24.747 19.7669Z" fill="#A30248"/>
+<path d="M14.7987 19.6086C14.7987 18.2242 14.8021 16.8402 14.7944 15.4558C14.7944 15.2812 14.8337 15.2287 15.0146 15.2317C16.0517 15.2501 17.0896 15.2057 18.1262 15.2561C18.8709 15.2923 19.5882 15.4579 20.2326 15.8535C21.0516 16.3558 21.4873 17.1022 21.5915 18.0479C21.6717 18.779 21.6209 19.4929 21.2829 20.1625C20.8399 21.0395 20.0782 21.4923 19.1628 21.7296C18.7231 21.847 18.2696 21.9045 17.8146 21.9003C17.6341 21.8973 17.5918 21.9626 17.5948 22.1337C17.6051 22.6945 17.5923 23.2553 17.6029 23.816C17.6059 23.9773 17.5445 23.9965 17.4062 23.9957C16.5954 23.9897 15.7845 23.988 14.9762 23.9957C14.8171 23.9957 14.7953 23.9415 14.7957 23.8019C14.8008 22.406 14.7987 21.0075 14.7987 19.6086ZM16.1217 19.6086V22.7402C16.1217 22.8443 16.0922 22.948 16.2723 22.9433C16.4302 22.9395 16.4571 22.884 16.455 22.744C16.4481 22.1892 16.4592 21.6366 16.4481 21.0826C16.4447 20.9038 16.4789 20.8317 16.6782 20.8428C17.0196 20.862 17.361 20.8522 17.7024 20.8475C18.3604 20.8381 18.9895 20.713 19.5345 20.3204C20.2715 19.7895 20.5548 18.6778 20.2019 17.7172C19.8951 16.8841 19.2204 16.5223 18.4061 16.3648C17.7233 16.2325 17.0319 16.3029 16.344 16.2794C16.1733 16.2739 16.1165 16.3144 16.1178 16.4966C16.1255 17.535 16.1208 18.572 16.1208 19.6082L16.1217 19.6086Z" fill="#A30248"/>
+<path d="M5.87646 23.9944C6.10436 23.3893 6.32286 22.8072 6.54349 22.2255C7.40185 19.9671 8.2585 17.7081 9.11344 15.4485C9.17746 15.2778 9.25897 15.2287 9.43394 15.2322C10.0024 15.2433 10.5713 15.239 11.141 15.2322C11.2622 15.2322 11.3296 15.259 11.377 15.3845C12.4464 18.2145 13.5188 21.0429 14.5939 23.8698C14.6063 23.9022 14.6144 23.9359 14.6251 23.9714C14.5551 24.0106 14.4842 23.9914 14.4172 23.9914C13.6209 23.9914 12.8246 23.9914 12.0274 23.9953C11.9117 23.9953 11.8349 23.9761 11.8161 23.8514C11.8143 23.8446 11.8118 23.8379 11.8089 23.8314C11.7325 23.6338 11.709 23.3658 11.5652 23.257C11.4009 23.1332 11.1269 23.2215 10.9007 23.2198C10.2964 23.2151 9.69213 23.2224 9.08784 23.2151C8.96707 23.2151 8.91201 23.251 8.87446 23.3632C8.8049 23.5715 8.77588 23.8642 8.62779 23.956C8.45709 24.0618 8.17414 23.9914 7.94028 23.9923C7.2613 23.9957 6.58105 23.9944 5.87646 23.9944ZM13.0153 22.9147C13.0096 22.8859 13.0023 22.8574 12.9936 22.8294C12.1784 20.691 11.3643 18.5524 10.5512 16.4134C10.4658 16.1915 10.3041 16.3161 10.1769 16.2854C10.0297 16.2496 9.98702 16.3494 9.94349 16.4642C9.1537 18.5434 8.3622 20.6221 7.569 22.7005C7.47852 22.9369 7.50242 22.9629 7.74952 22.9382C7.83188 22.9301 7.85621 22.8874 7.87755 22.8251C7.92859 22.7083 7.97318 22.5887 8.01112 22.467C8.0491 22.3172 8.12805 22.2776 8.28041 22.2784C9.51801 22.2852 10.7556 22.2822 11.9907 22.2822C12.4289 22.2822 12.4469 22.2767 12.5749 22.6825C12.6513 22.9203 12.7716 22.986 13.0153 22.9147Z" fill="#A30248"/>
+<path d="M28.4103 19.6256C28.4103 18.2408 28.415 16.8555 28.4048 15.4707C28.4048 15.2659 28.4688 15.23 28.654 15.2321C29.4999 15.2411 30.3461 15.2394 31.192 15.2321C31.34 15.2321 31.384 15.271 31.384 15.4216C31.3797 18.2203 31.3797 21.0189 31.384 23.8173C31.384 23.953 31.3533 23.9978 31.2095 23.997C30.335 23.9901 29.4597 23.9888 28.5862 23.997C28.424 23.997 28.4073 23.9372 28.4078 23.8006C28.412 22.4103 28.4103 21.0182 28.4103 19.6256ZM29.7333 19.6013C29.7333 20.6455 29.7333 21.6897 29.7333 22.7342C29.7333 22.8515 29.7137 22.9475 29.8972 22.945C30.0717 22.9429 30.0679 22.8618 30.0679 22.7363C30.0659 20.6551 30.0659 18.5737 30.0679 16.4919C30.0679 16.3737 30.0841 16.2786 29.9002 16.2786C29.7162 16.2786 29.7346 16.3742 29.7346 16.4919C29.7332 17.5278 29.732 18.5643 29.7312 19.6013H29.7333Z" fill="#A30248"/>
+<path d="M36.8487 22.6467C37.339 22.6501 37.8132 22.5673 38.2442 22.3288C38.4179 22.2323 38.4243 22.3714 38.487 22.4491C38.5694 22.552 38.5079 22.5912 38.4192 22.6343C36.7236 23.4597 34.0641 22.8451 33.5054 20.4655C32.9643 18.161 34.6321 16.1872 37.0147 16.2722C37.434 16.2856 37.8474 16.3743 38.2352 16.5342C38.292 16.5577 38.4486 16.5398 38.3679 16.6789C38.3167 16.7681 38.3206 16.9349 38.1072 16.847C37.3386 16.527 36.4787 16.503 35.6934 16.7796C34.2267 17.2798 33.5818 18.6911 33.7769 20.0575C34.0073 21.6694 35.1621 22.6262 36.8487 22.6467Z" fill="#FBF4F7"/>
+<path d="M5.34998 17.3365C5.38754 17.5764 5.28128 17.6297 5.08753 17.6109C4.93261 17.596 4.77471 17.6139 4.61809 17.6062C4.50585 17.6007 4.45379 17.6323 4.438 17.7531C4.35606 18.3864 4.27412 19.0197 4.17255 19.6496C4.14097 19.845 4.20328 19.8762 4.3727 19.863C4.52902 19.8538 4.68573 19.8529 4.84214 19.8604C4.91042 19.8604 5.01284 19.8254 4.99065 19.9654C4.97572 20.0661 4.97828 20.1643 4.8272 20.1553C4.6501 20.1451 4.47128 20.1613 4.29418 20.1502C4.15761 20.1421 4.09744 20.1719 4.0808 20.326C4.04324 20.6998 3.97197 21.0698 3.93143 21.4433C3.91607 21.5841 3.83925 21.579 3.74366 21.5713C3.61563 21.5632 3.67196 21.4684 3.67922 21.4125C3.72488 21.0605 3.77054 20.7084 3.83114 20.3593C3.86059 20.1886 3.81535 20.1459 3.64251 20.1459C3.10949 20.157 2.57561 20.1557 2.04302 20.1459C1.90389 20.1433 1.85865 20.1941 1.84329 20.3192C1.80062 20.6712 1.75068 21.0225 1.70587 21.3741C1.69222 21.4812 1.69649 21.5926 1.53133 21.5713C1.33971 21.547 1.45153 21.413 1.45878 21.3442C1.49548 20.9917 1.54669 20.6405 1.60388 20.2906C1.62308 20.1736 1.59364 20.1425 1.47969 20.1476C1.3091 20.1564 1.13817 20.1564 0.967578 20.1476C0.902711 20.1438 0.778523 20.215 0.790899 20.0507C0.800288 19.9283 0.819066 19.8374 0.983369 19.8536C1.15962 19.8706 1.33886 19.8536 1.51597 19.8604C1.6282 19.8659 1.6807 19.8348 1.69606 19.7157C1.77885 19.0685 1.86591 18.4218 1.95724 17.7757C1.97559 17.6476 1.94699 17.5947 1.80659 17.605C1.63589 17.6165 1.46518 17.6084 1.29448 17.6071C1.22107 17.6071 1.13316 17.6319 1.14639 17.4974C1.15663 17.3895 1.17883 17.3267 1.30728 17.334C1.47798 17.3438 1.64869 17.3237 1.81939 17.34C1.97943 17.3553 2.02723 17.287 2.04558 17.1432C2.09295 16.7702 2.15952 16.3998 2.20305 16.0264C2.21841 15.8924 2.2884 15.8877 2.38698 15.8937C2.53507 15.9026 2.46209 16.0042 2.45441 16.0644C2.40747 16.4371 2.35583 16.8093 2.2995 17.1812C2.28072 17.3054 2.31998 17.3395 2.44332 17.3382C2.99071 17.3328 3.5381 17.3328 4.08549 17.3382C4.2084 17.3382 4.2562 17.3079 4.27241 17.1774C4.31509 16.8044 4.38422 16.4339 4.43117 16.0609C4.44611 15.9427 4.47384 15.88 4.6087 15.8902C4.77215 15.9035 4.69149 16.0153 4.68381 16.0767C4.64113 16.4288 4.59462 16.7809 4.53615 17.1304C4.51097 17.2811 4.52634 17.3523 4.70686 17.3382C4.9181 17.3242 5.13148 17.3365 5.34998 17.3365ZM2.90038 19.8591C3.1846 19.8591 3.46882 19.854 3.7539 19.8617C3.86144 19.8642 3.90455 19.8297 3.91863 19.7243C4.00569 19.0699 4.09602 18.4168 4.18962 17.765C4.20712 17.6442 4.17938 17.6041 4.05178 17.6054C3.49699 17.6114 2.9422 17.6097 2.38741 17.6054C2.28712 17.6054 2.23463 17.6263 2.21969 17.7398C2.13264 18.4084 2.04074 19.0756 1.94401 19.7413C1.92864 19.845 1.96108 19.8613 2.04984 19.86C2.33193 19.857 2.61616 19.8587 2.90038 19.8591Z" fill="#FBF4F7"/>
+<path d="M24.7471 19.7669C24.7471 18.7726 24.7437 17.7778 24.7505 16.7834C24.7505 16.6332 24.7078 16.5935 24.5614 16.5961C24.0566 16.6055 23.5517 16.5961 23.0469 16.6016C22.9223 16.6016 22.8536 16.5897 22.8565 16.4309C22.8595 16.2722 22.9338 16.2807 23.043 16.2807C24.2875 16.2827 25.5318 16.2827 26.7759 16.2807C26.9039 16.2807 26.968 16.2944 26.9662 16.4514C26.9645 16.6085 26.8873 16.6029 26.7785 16.6025C26.2881 16.5999 25.7969 16.6127 25.307 16.5961C25.1081 16.5893 25.0783 16.6563 25.0791 16.8347C25.0851 18.802 25.0825 20.7698 25.0834 22.738C25.0834 22.846 25.1043 22.9446 24.9302 22.9425C24.7804 22.9425 24.7428 22.8998 24.7437 22.7525C24.7505 21.7578 24.7471 20.7634 24.7471 19.7669Z" fill="#FBF4F7"/>
+<path d="M16.1209 19.6081C16.1209 18.5715 16.1256 17.5349 16.1162 16.4983C16.1162 16.3161 16.1704 16.2756 16.3424 16.2811C17.0303 16.3037 17.7225 16.2333 18.4045 16.3665C19.2209 16.5235 19.8935 16.885 20.2003 17.7185C20.5532 18.6778 20.2699 19.7895 19.5329 20.3217C18.9879 20.7143 18.3588 20.8394 17.7008 20.8487C17.3594 20.8534 17.018 20.8633 16.6765 20.844C16.4773 20.833 16.4431 20.9051 16.4465 21.0839C16.4576 21.6387 16.4465 22.1935 16.4534 22.7453C16.4555 22.8852 16.4286 22.9407 16.2707 22.9446C16.0906 22.9493 16.1201 22.8456 16.1201 22.7414L16.1209 19.6081ZM16.4538 18.5617C16.4538 19.1652 16.4563 19.7682 16.4516 20.3716C16.4516 20.4924 16.4691 20.5479 16.6108 20.5445C17.0299 20.5342 17.4498 20.5581 17.8681 20.5355C18.4348 20.5052 18.9887 20.3947 19.4228 19.991C20.0288 19.4276 20.0753 18.7043 19.9058 17.963C19.7437 17.2546 19.223 16.8794 18.5436 16.707C17.8937 16.5419 17.2296 16.6191 16.5711 16.6008C16.4324 16.5969 16.4542 16.6912 16.4542 16.7715C16.4519 17.3689 16.4518 17.9657 16.4538 18.5617Z" fill="#FBF4F7"/>
+<path d="M13.0154 22.9147C12.7717 22.986 12.6514 22.9202 12.5767 22.6834C12.4487 22.2775 12.4308 22.2831 11.9925 22.2831C10.7549 22.2831 9.51726 22.2861 8.28221 22.2792C8.12986 22.2792 8.05091 22.3181 8.01293 22.4679C7.97499 22.5896 7.93039 22.7091 7.87935 22.8259C7.85631 22.8882 7.83198 22.9309 7.75132 22.939C7.50423 22.9638 7.48033 22.939 7.5708 22.7013C8.36287 20.6227 9.15437 18.5439 9.9453 16.465C9.98797 16.3503 10.0306 16.2517 10.1787 16.2862C10.3068 16.3174 10.4694 16.1928 10.553 16.4143C11.3627 18.5546 12.1768 20.6933 12.9954 22.8302C13.0035 22.858 13.0102 22.8862 13.0154 22.9147ZM10.2658 16.6033C10.2376 16.6601 10.2193 16.6887 10.2069 16.7228C9.56022 18.4179 8.91282 20.1123 8.26471 21.806C8.19387 21.9895 8.27368 21.9848 8.40853 21.9848C9.63846 21.9822 10.8688 21.9801 12.0987 21.9848C12.2767 21.9848 12.3164 21.9566 12.2468 21.7774C11.8073 20.6482 11.3788 19.5155 10.9465 18.3829L10.2658 16.6033Z" fill="#FBF4F7"/>
+<path d="M29.731 19.6013C29.731 18.5643 29.731 17.5271 29.731 16.4898C29.731 16.3729 29.7135 16.2764 29.8966 16.2764C30.0797 16.2764 30.0643 16.3729 30.0643 16.4898C30.0643 18.5715 30.0643 20.653 30.0643 22.7342C30.0643 22.8596 30.0686 22.9407 29.8936 22.9429C29.7101 22.9429 29.7293 22.8494 29.7298 22.732C29.7318 21.6893 29.7322 20.6457 29.731 19.6013Z" fill="#FBF4F7"/>
+<path d="M2.90028 19.8587C2.61606 19.8587 2.33184 19.8587 2.04676 19.8587C1.958 19.8587 1.92556 19.8437 1.94092 19.74C2.03965 19.0751 2.13268 18.4087 2.22003 17.7406C2.23496 17.6271 2.28745 17.6058 2.38774 17.6062C2.94253 17.6096 3.49732 17.6113 4.05211 17.6062C4.18014 17.6062 4.20745 17.645 4.18995 17.7658C4.09436 18.4171 4.0036 19.0699 3.91768 19.7242C3.9036 19.8296 3.86049 19.8642 3.75295 19.8616C3.46873 19.8522 3.18451 19.8591 2.90028 19.8587ZM3.01081 19.1114C3.18152 19.1541 3.26047 19.0879 3.26132 18.9104C3.26691 18.8255 3.27904 18.7412 3.2976 18.6582C3.3518 18.3262 3.40045 18.3667 3.03429 18.3594C2.93442 18.3569 2.89772 18.3876 2.88876 18.4875C2.87402 18.6285 2.85137 18.7685 2.82091 18.907C2.78591 19.0666 2.82219 19.1549 3.01081 19.1114Z" fill="#A30248"/>
+<path d="M16.4538 18.5617C16.4538 17.9643 16.4538 17.3681 16.4538 16.7732C16.4538 16.6912 16.432 16.5969 16.5707 16.6025C17.2292 16.6208 17.8937 16.5436 18.5432 16.7087C19.226 16.8795 19.7433 17.2563 19.9054 17.9647C20.0761 18.706 20.0283 19.4293 19.4223 19.9927C18.9883 20.3964 18.4344 20.5069 17.8676 20.5372C17.4494 20.5598 17.0295 20.5372 16.6104 20.5462C16.4687 20.5496 16.4499 20.4941 16.4512 20.3733C16.4538 19.7669 16.4538 19.1652 16.4538 18.5617ZM17.6001 18.5617C17.6001 18.8383 17.6001 19.115 17.6001 19.3918C17.6001 19.4618 17.589 19.5279 17.6969 19.5437C18.0345 19.5941 18.4685 19.4157 18.6153 19.1268C18.8031 18.7576 18.8078 18.374 18.6094 18.0065C18.4216 17.6583 18.0802 17.619 17.7302 17.6007C17.6184 17.5951 17.5975 17.6357 17.5988 17.7321C17.6001 18.0095 17.5979 18.2861 17.5979 18.5626L17.6001 18.5617Z" fill="#A30248"/>
+<path d="M10.2657 16.6033L10.9464 18.3846C11.3787 19.5168 11.8072 20.6499 12.2467 21.7791C12.3163 21.9583 12.2766 21.9873 12.0986 21.9865C10.8687 21.9801 9.63836 21.9822 8.40844 21.9865C8.27358 21.9865 8.19506 21.9912 8.26462 21.8077C8.91585 20.114 9.56254 18.4191 10.2047 16.7228C10.217 16.6904 10.2354 16.6601 10.2657 16.6033ZM10.2601 19.7579C10.069 20.256 9.89655 20.7113 9.71816 21.1663C9.68317 21.2559 9.70707 21.2764 9.79413 21.2759C10.1355 21.2734 10.4735 21.2759 10.8401 21.2759C10.6447 20.7681 10.4586 20.2824 10.258 19.7579H10.2601Z" fill="#A30248"/>
 </svg>
diff --git a/src/assets/logos/poleEmploi.svg b/src/assets/logos/poleEmploi.svg
index b89a0ca3d..1cdb45f60 100644
--- a/src/assets/logos/poleEmploi.svg
+++ b/src/assets/logos/poleEmploi.svg
@@ -1,50 +1,44 @@
-<svg id="pole" width="120" height="56" viewBox="0 0 120 56" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M64.0034 10.0493C62.7492 10.5399 61.7047 11.2397 60.8544 12.1517C60.0025 13.0661 59.3519 14.1621 58.9055 15.45C58.4567 16.7394 58.2312 18.1405 58.2312 19.6595C58.2336 22.8917 59.142 25.4013 60.9456 27.2569C62.7476 29.1061 65.2632 30.0409 68.5724 30.0433C69.9831 30.0441 71.2263 29.8617 72.3022 29.5071C74.27 28.8136 76.4846 26.8504 76.8618 24.9988C77.1078 23.788 76.3667 23.5254 75.9667 23.4704C75.8897 23.4625 75.8111 23.457 75.7278 23.457C75.272 23.457 74.9105 23.604 74.6802 23.8139C74.4036 24.0679 73.5989 24.8235 73.1847 25.1859C72.7635 25.5539 72.3045 25.8982 71.8071 26.2198C71.2978 26.5485 70.7674 26.7922 70.2196 26.9479C69.6703 27.1043 69.0691 27.1798 68.4192 27.1798C67.4361 27.1806 66.5221 26.9345 65.7025 26.4455C64.8749 25.9549 64.2132 25.2205 63.7268 24.2692C63.2725 23.3886 63.0289 22.3838 62.9826 21.2713C62.97 20.8994 63.2529 20.6777 63.5814 20.6777H73.5211C74.8618 20.6784 75.8779 20.4827 76.5663 20.1265C77.1785 19.8096 77.5266 19.1083 77.5321 17.8354C77.5321 16.4674 77.1832 15.1261 76.4751 13.795C75.7726 12.478 74.7219 11.4056 73.2994 10.5659C71.8888 9.73405 70.1929 9.31342 68.1889 9.31263C66.6486 9.31263 65.2561 9.5603 64.0034 10.0493ZM71.547 13.7784C72.4146 14.7015 72.9026 16.0459 73.0566 17.7725C73.0778 18.0611 72.7737 18.3134 72.4633 18.3134H63.5995C63.2773 18.3111 62.9558 18.0516 63.0061 17.734C63.2105 16.0475 63.7221 14.7227 64.5787 13.7997C65.469 12.8357 66.6423 12.3451 68.0168 12.3483C69.4487 12.3451 70.6534 12.8247 71.547 13.7784Z" fill="url(#paint0_radial)"/>
-<path d="M44.3284 19.6799C44.3284 28.3403 51.3438 35.359 60.0001 35.359C68.6557 35.359 75.6719 28.3403 75.6719 19.6799C75.6719 11.0195 68.6557 4.00005 60.0001 4.00005C51.3438 4.00005 44.3284 11.0195 44.3284 19.6799Z" fill="url(#paint1_linear)"/>
-<path d="M45.4946 18.205C45.2627 20.4898 45.5732 22.7078 46.3221 24.7284C49.0962 18.286 56.0739 18.1342 61.417 20.0173C67.8399 21.3413 75.1737 21.0386 74.1269 16.2496C72.9284 10.7114 68.0105 5.83204 61.4736 5.16767C60.9746 5.11657 60.4795 5.09141 59.9883 5.09141C52.6059 5.09141 46.2561 10.702 45.4946 18.205Z" fill="url(#paint2_linear)"/>
-<path d="M60.8536 12.1529C60.0026 13.0661 59.3519 14.1621 58.9043 15.4508C58.4568 16.7394 58.2312 18.1405 58.2312 19.6595C58.2336 22.8917 59.142 25.4013 60.9456 27.2569C62.7476 29.1061 65.2631 30.0409 68.5724 30.0433C69.9328 30.0441 71.1336 29.8734 72.1819 29.544C73.5879 27.808 74.6307 25.7662 75.1949 23.534C74.9859 23.5969 74.8114 23.6944 74.6075 23.8812C74.4036 24.0679 73.5989 24.8235 73.1812 25.1887C72.7635 25.5539 72.3045 25.8982 71.8012 26.2234C71.2978 26.5485 70.7674 26.7922 70.2188 26.9483C69.6703 27.1043 69.0691 27.1798 68.2526 27.1802C67.4361 27.1806 66.5221 26.9345 65.6985 26.4447C64.8749 25.9549 64.2132 25.2205 63.7429 24.3045C63.2725 23.3886 63.0289 22.3838 62.9826 21.2713C62.97 20.8994 63.2529 20.6776 63.4171 20.6776H73.5211C74.3588 20.6784 75.0692 20.6014 75.6531 20.4583C75.6657 20.1996 75.672 19.9409 75.672 19.6799C75.672 16.0798 74.4594 12.765 72.4208 10.1185C71.1988 9.58388 69.7929 9.31342 68.2208 9.31303C66.6486 9.31263 65.2561 9.5603 64.0034 10.0493C62.7492 10.5399 61.7047 11.2397 60.8536 12.1529ZM73.0566 17.7725C73.0778 18.0611 72.7737 18.3134 72.4633 18.3134H63.5995C63.2773 18.3111 62.9558 18.0516 63.0061 17.734C63.2105 16.0475 63.7221 14.7227 64.5956 13.7792C65.4691 12.8357 66.6424 12.3451 68.0455 12.3451C69.4487 12.3451 70.6534 12.8247 71.547 13.7784C72.4145 14.7015 72.9026 16.0459 73.0566 17.7725Z" fill="url(#paint3_radial)"/>
-<path d="M34.3466 46.1001C34.3466 45.4255 34.2468 44.938 34.0464 44.6377C33.7942 44.2627 33.3612 44.0755 32.7458 44.0755C32.1305 44.0755 31.7006 44.2627 31.4562 44.6377C31.2558 44.938 31.156 45.4255 31.156 46.1001V48.1129H32.7458C33.3612 48.1129 33.7942 47.9297 34.0464 47.5625C34.2468 47.2543 34.3466 46.7668 34.3466 46.1001ZM35.5026 46.1001C35.5026 48.2976 34.584 49.396 32.7458 49.396H31.156V52H30V46.1017C30 43.8955 30.9148 42.7916 32.7458 42.7916C34.584 42.7916 35.5026 43.8947 35.5026 46.1001Z" fill="#18397A"/>
-<path d="M40.6412 46.1001C40.6412 45.4255 40.5422 44.938 40.3433 44.6377C40.1005 44.2626 39.673 44.0755 39.0624 44.0755C38.4517 44.0755 38.0211 44.2626 37.7704 44.6377C37.5724 44.938 37.4726 45.4255 37.4726 46.1001C37.4726 46.7668 37.5724 47.2543 37.7704 47.5625C38.0211 47.9296 38.4517 48.1128 39.0624 48.1128C39.673 48.1128 40.1005 47.9296 40.3433 47.5625C40.5422 47.2629 40.6412 46.7754 40.6412 46.1001ZM41.3752 41.5328L40.8526 42.2412L39.0074 41.1947L37.1614 42.2412L36.6387 41.5328L39.0074 40.1876L41.3752 41.5328ZM41.8082 46.1001C41.8082 48.2976 40.8927 49.396 39.0624 49.396C37.2242 49.396 36.3055 48.2976 36.3055 46.1001C36.3055 43.8947 37.2242 42.7916 39.0624 42.7916C40.8927 42.7916 41.8082 43.8947 41.8082 46.1001Z" fill="#18397A"/>
-<path d="M45.6975 49.3962C43.7257 49.3962 42.7402 48.5982 42.7402 47.0037V40.187H43.8963V47.0147C43.8963 47.3551 44 47.6099 44.2075 47.7758C44.4817 47.9998 44.9784 48.1123 45.6975 48.1123V49.3962Z" fill="#18397A"/>
-<path d="M50.1489 44.7099C49.943 44.2208 49.4801 43.8859 48.8624 43.8859C48.2448 43.8859 47.7685 44.2208 47.5626 44.7099C47.4337 45.0055 47.4086 45.1989 47.3952 45.5983H50.3289C50.3163 45.1989 50.2778 45.0055 50.1489 44.7099ZM47.3952 46.5119C47.3952 47.6315 47.9878 48.3399 49.055 48.3399C49.789 48.3399 50.1748 48.1339 50.6377 47.67L51.4739 48.4555C50.8051 49.1254 50.1748 49.4729 49.0298 49.4729C47.3952 49.4729 46.0962 48.6104 46.0962 46.1259C46.0962 44.0148 47.1893 42.7914 48.8624 42.7914C50.6118 42.7914 51.6287 44.0785 51.6287 45.9325V46.5119H47.3952Z" fill="#18397A"/>
-<path d="M34.3466 46.1001C34.3466 45.4255 34.2468 44.938 34.0464 44.6377C33.7942 44.2627 33.3612 44.0755 32.7458 44.0755C32.1305 44.0755 31.7006 44.2627 31.4562 44.6377C31.2558 44.938 31.156 45.4255 31.156 46.1001V48.1129H32.7458C33.3612 48.1129 33.7942 47.9297 34.0464 47.5625C34.2468 47.2543 34.3466 46.7668 34.3466 46.1001ZM35.5026 46.1001C35.5026 48.2976 34.584 49.396 32.7458 49.396H31.156V52H30V46.1017C30 43.8955 30.9148 42.7916 32.7458 42.7916C34.584 42.7916 35.5026 43.8947 35.5026 46.1001Z" fill="#18397A"/>
-<path d="M40.6412 46.1001C40.6412 45.4255 40.5422 44.938 40.3433 44.6377C40.1005 44.2626 39.673 44.0755 39.0624 44.0755C38.4517 44.0755 38.0211 44.2626 37.7704 44.6377C37.5724 44.938 37.4726 45.4255 37.4726 46.1001C37.4726 46.7668 37.5724 47.2543 37.7704 47.5625C38.0211 47.9296 38.4517 48.1128 39.0624 48.1128C39.673 48.1128 40.1005 47.9296 40.3433 47.5625C40.5422 47.2629 40.6412 46.7754 40.6412 46.1001ZM41.3752 41.5328L40.8526 42.2412L39.0074 41.1947L37.1614 42.2412L36.6387 41.5328L39.0074 40.1876L41.3752 41.5328ZM41.8082 46.1001C41.8082 48.2976 40.8927 49.396 39.0624 49.396C37.2242 49.396 36.3055 48.2976 36.3055 46.1001C36.3055 43.8947 37.2242 42.7916 39.0624 42.7916C40.8927 42.7916 41.8082 43.8947 41.8082 46.1001Z" fill="#18397A"/>
-<path d="M45.6975 49.3962C43.7257 49.3962 42.7402 48.5982 42.7402 47.0037V40.187H43.8963V47.0147C43.8963 47.3551 44 47.6099 44.2075 47.7758C44.4817 47.9998 44.9784 48.1123 45.6975 48.1123V49.3962Z" fill="#18397A"/>
-<path d="M50.1489 44.7099C49.943 44.2208 49.4801 43.8859 48.8624 43.8859C48.2448 43.8859 47.7685 44.2208 47.5626 44.7099C47.4337 45.0055 47.4086 45.1989 47.3952 45.5983H50.3289C50.3163 45.1989 50.2778 45.0055 50.1489 44.7099ZM47.3952 46.5119C47.3952 47.6315 47.9878 48.3399 49.055 48.3399C49.789 48.3399 50.1748 48.1339 50.6377 47.67L51.4739 48.4555C50.8051 49.1254 50.1748 49.4729 49.0298 49.4729C47.3952 49.4729 46.0962 48.6104 46.0962 46.1259C46.0962 44.0148 47.1893 42.7914 48.8624 42.7914C50.6118 42.7914 51.6287 44.0785 51.6287 45.9325V46.5119H47.3952Z" fill="#18397A"/>
-<path d="M71.9115 49.3962H70.7555V46.094C70.7555 45.421 70.6549 44.9351 70.4553 44.6363C70.2031 44.2621 69.7701 44.0749 69.1547 44.0749C68.5394 44.0749 68.1095 44.2621 67.8651 44.6363C67.6647 44.9351 67.5649 45.421 67.5649 46.094V49.3962H66.4089V46.094C66.4089 45.421 66.3091 44.9351 66.1087 44.6363C65.8564 44.2621 65.4234 44.0749 64.8073 44.0749C64.1927 44.0749 63.7629 44.2621 63.5177 44.6363C63.3181 44.9351 63.2183 45.421 63.2183 46.094V49.3962H62.0623V46.1003C62.0623 43.8941 62.977 42.7918 64.8073 42.7918C65.7865 42.7918 66.5118 43.1244 66.9865 43.7888C67.4541 43.1244 68.1763 42.7918 69.1547 42.7918C70.9921 42.7918 71.9115 43.8941 71.9115 46.1003V49.3962Z" fill="#E31927"/>
-<path d="M77.1922 46.1001C77.1922 45.4255 77.0924 44.938 76.892 44.6377C76.6405 44.2627 76.2067 44.0755 75.5914 44.0755C74.9761 44.0755 74.5462 44.2627 74.3018 44.6377C74.1014 44.938 74.0016 45.4255 74.0016 46.1001V48.1129H75.5914C76.2067 48.1129 76.6405 47.9297 76.892 47.5625C77.0924 47.2543 77.1922 46.7668 77.1922 46.1001ZM78.349 46.1001C78.349 48.2976 77.4295 49.396 75.5914 49.396H74.0016V52H72.8456V46.1017C72.8456 43.8955 73.7611 42.7916 75.5914 42.7916C77.4295 42.7916 78.349 43.8947 78.349 46.1001Z" fill="#E31927"/>
-<path d="M82.1506 49.3962C80.1788 49.3962 79.1934 48.5982 79.1934 47.0037V40.187H80.3494V47.0147C80.3494 47.3551 80.4531 47.6099 80.6613 47.7758C80.9348 47.9998 81.4315 48.1123 82.1506 48.1123V49.3962Z" fill="#E31927"/>
-<path d="M86.8309 46.1001C86.8309 45.4255 86.7311 44.938 86.5307 44.6377C86.2863 44.2626 85.8565 44.0755 85.2411 44.0755C84.6258 44.0755 84.1959 44.2626 83.9515 44.6377C83.7511 44.938 83.6513 45.4255 83.6513 46.1001C83.6513 46.7754 83.7511 47.2629 83.9515 47.5625C84.1959 47.9296 84.6258 48.1128 85.2411 48.1128C85.8565 48.1128 86.2863 47.9296 86.5307 47.5625C86.7311 47.2629 86.8309 46.7754 86.8309 46.1001ZM87.987 46.1001C87.987 48.2976 87.0714 49.396 85.2411 49.396C83.403 49.396 82.4835 48.2976 82.4835 46.1001C82.4835 43.8947 83.403 42.7916 85.2411 42.7916C87.0714 42.7916 87.987 43.8947 87.987 46.1001Z" fill="#E31927"/>
-<path d="M88.843 42.792H89.999V49.3964H88.843V42.792ZM89.999 41.4711H88.843V40.1872H89.999V41.4711Z" fill="#E31927"/>
-<path d="M59.6565 44.7099C59.4506 44.2208 58.9877 43.8859 58.37 43.8859C57.7523 43.8859 57.2761 44.2208 57.0702 44.7099C56.9413 45.0055 56.9162 45.1989 56.9028 45.5983H59.8364C59.8239 45.1989 59.7853 45.0055 59.6565 44.7099ZM56.9028 46.5119C56.9028 47.6315 57.4945 48.3399 58.5625 48.3399C59.2965 48.3399 59.6824 48.1339 60.1453 47.67L60.9822 48.4555C60.3127 49.1254 59.6824 49.4729 58.5374 49.4729C56.9028 49.4729 55.6038 48.6104 55.6038 46.1259C55.6038 44.0148 56.6969 42.7914 58.37 42.7914C60.1193 42.7914 61.1362 44.0785 61.1362 45.9325V46.5119H56.9028Z" fill="#E31927"/>
-<path d="M71.9115 49.3962H70.7555V46.094C70.7555 45.421 70.6549 44.9351 70.4553 44.6363C70.2031 44.2621 69.7701 44.0749 69.1547 44.0749C68.5394 44.0749 68.1095 44.2621 67.8651 44.6363C67.6647 44.9351 67.5649 45.421 67.5649 46.094V49.3962H66.4089V46.094C66.4089 45.421 66.3091 44.9351 66.1087 44.6363C65.8564 44.2621 65.4234 44.0749 64.8073 44.0749C64.1927 44.0749 63.7629 44.2621 63.5177 44.6363C63.3181 44.9351 63.2183 45.421 63.2183 46.094V49.3962H62.0623V46.1003C62.0623 43.8941 62.977 42.7918 64.8073 42.7918C65.7865 42.7918 66.5118 43.1244 66.9865 43.7888C67.4541 43.1244 68.1763 42.7918 69.1547 42.7918C70.9921 42.7918 71.9115 43.8941 71.9115 46.1003V49.3962Z" fill="#E31927"/>
-<path d="M77.1922 46.1001C77.1922 45.4255 77.0924 44.938 76.892 44.6377C76.6405 44.2627 76.2067 44.0755 75.5914 44.0755C74.9761 44.0755 74.5462 44.2627 74.3018 44.6377C74.1014 44.938 74.0016 45.4255 74.0016 46.1001V48.1129H75.5914C76.2067 48.1129 76.6405 47.9297 76.892 47.5625C77.0924 47.2543 77.1922 46.7668 77.1922 46.1001ZM78.349 46.1001C78.349 48.2976 77.4295 49.396 75.5914 49.396H74.0016V52H72.8456V46.1017C72.8456 43.8955 73.7611 42.7916 75.5914 42.7916C77.4295 42.7916 78.349 43.8947 78.349 46.1001Z" fill="#E31927"/>
-<path d="M82.1506 49.3962C80.1788 49.3962 79.1934 48.5982 79.1934 47.0037V40.187H80.3494V47.0147C80.3494 47.3551 80.4531 47.6099 80.6613 47.7758C80.9348 47.9998 81.4315 48.1123 82.1506 48.1123V49.3962Z" fill="#E31927"/>
-<path d="M86.8309 46.1001C86.8309 45.4255 86.7311 44.938 86.5307 44.6377C86.2863 44.2626 85.8565 44.0755 85.2411 44.0755C84.6258 44.0755 84.1959 44.2626 83.9515 44.6377C83.7511 44.938 83.6513 45.4255 83.6513 46.1001C83.6513 46.7754 83.7511 47.2629 83.9515 47.5625C84.1959 47.9296 84.6258 48.1128 85.2411 48.1128C85.8565 48.1128 86.2863 47.9296 86.5307 47.5625C86.7311 47.2629 86.8309 46.7754 86.8309 46.1001ZM87.987 46.1001C87.987 48.2976 87.0714 49.396 85.2411 49.396C83.403 49.396 82.4835 48.2976 82.4835 46.1001C82.4835 43.8947 83.403 42.7916 85.2411 42.7916C87.0714 42.7916 87.987 43.8947 87.987 46.1001Z" fill="#E31927"/>
-<path d="M88.843 42.792H89.999V49.3964H88.843V42.792ZM89.999 41.4711H88.843V40.1872H89.999V41.4711Z" fill="#E31927"/>
-<path d="M59.6565 44.7099C59.4506 44.2208 58.9877 43.8859 58.37 43.8859C57.7523 43.8859 57.2761 44.2208 57.0702 44.7099C56.9413 45.0055 56.9162 45.1989 56.9028 45.5983H59.8364C59.8239 45.1989 59.7853 45.0055 59.6565 44.7099ZM56.9028 46.5119C56.9028 47.6315 57.4945 48.3399 58.5625 48.3399C59.2965 48.3399 59.6824 48.1339 60.1453 47.67L60.9822 48.4555C60.3127 49.1254 59.6824 49.4729 58.5374 49.4729C56.9028 49.4729 55.6038 48.6104 55.6038 46.1259C55.6038 44.0148 56.6969 42.7914 58.37 42.7914C60.1193 42.7914 61.1362 44.0785 61.1362 45.9325V46.5119H56.9028Z" fill="#E31927"/>
+<svg id="pole" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M22.669 8.03245C21.8328 8.35953 21.1365 8.82603 20.5696 9.43406C20.0017 10.0437 19.5679 10.7744 19.2703 11.6329C18.9712 12.4926 18.8208 13.4266 18.8208 14.4393C18.8224 16.5942 19.428 18.2673 20.6304 19.5043C21.8318 20.7372 23.5088 21.3604 25.7151 21.362C26.6555 21.3625 27.4844 21.2409 28.2016 21.0045C29.5135 20.5422 30.9899 19.2333 31.2414 17.9989C31.4054 17.1917 30.9113 17.0166 30.6447 16.9799C30.5933 16.9747 30.5409 16.971 30.4854 16.971C30.1815 16.971 29.9405 17.069 29.787 17.209C29.6026 17.3783 29.0661 17.882 28.79 18.1237C28.5091 18.369 28.2032 18.5986 27.8715 18.8129C27.532 19.032 27.1784 19.1945 26.8132 19.2983C26.447 19.4026 26.0462 19.4529 25.6129 19.4529C24.9575 19.4535 24.3482 19.2894 23.8017 18.9634C23.25 18.6363 22.8089 18.1467 22.4846 17.5125C22.1818 16.9254 22.0193 16.2555 21.9884 15.5139C21.98 15.2659 22.1687 15.1181 22.3877 15.1181H29.0142C29.908 15.1186 30.5855 14.9881 31.0444 14.7507C31.4525 14.5394 31.6846 14.0719 31.6883 13.2233C31.6883 12.3112 31.4557 11.417 30.9836 10.5296C30.5152 9.6516 29.8148 8.93663 28.8665 8.37683C27.926 7.82226 26.7954 7.54183 25.4594 7.54131C24.4325 7.54131 23.5041 7.70642 22.669 8.03245ZM27.6981 10.5186C28.2765 11.1339 28.6019 12.0303 28.7046 13.1813C28.7187 13.3737 28.516 13.5419 28.309 13.5419H22.3997C22.1849 13.5404 21.9706 13.3674 22.0041 13.1556C22.1404 12.0313 22.4814 11.1481 23.0525 10.5327C23.6461 9.89009 24.4283 9.56301 25.3447 9.56511C26.2992 9.56301 27.1024 9.88275 27.6981 10.5186Z" fill="url(#paint0_radial_5665_162177)"/>
+<path d="M9.55225 14.4529C9.55225 20.2266 14.2293 24.9058 20.0003 24.9058C25.7707 24.9058 30.4483 20.2266 30.4483 14.4529C30.4483 8.67927 25.7707 3.99952 20.0003 3.99952C14.2293 3.99952 9.55225 8.67927 9.55225 14.4529Z" fill="url(#paint1_linear_5665_162177)"/>
+<path d="M10.3298 13.4696C10.1752 14.9929 10.3822 16.4715 10.8815 17.8186C12.7309 13.5236 17.3828 13.4225 20.945 14.6778C25.227 15.5605 30.1162 15.3587 29.4183 12.166C28.6193 8.47382 25.3407 5.22086 20.9827 4.77794C20.65 4.74387 20.3199 4.7271 19.9925 4.7271C15.0708 4.7271 10.8375 8.46754 10.3298 13.4696Z" fill="url(#paint2_linear_5665_162177)"/>
+<path d="M20.5691 9.43485C20.0017 10.0437 19.5679 10.7744 19.2695 11.6335C18.9712 12.4926 18.8208 13.4266 18.8208 14.4393C18.8224 16.5942 19.428 18.2673 20.6304 19.5043C21.8318 20.7372 23.5088 21.3604 25.7151 21.362C26.622 21.3625 27.4225 21.2487 28.1214 21.0291C29.0587 19.8718 29.754 18.5105 30.1301 17.0224C29.9908 17.0643 29.8745 17.1293 29.7385 17.2538C29.6026 17.3783 29.0661 17.882 28.7876 18.1255C28.5091 18.369 28.2032 18.5986 27.8676 18.8153C27.532 19.032 27.1784 19.1945 26.8127 19.2986C26.447 19.4026 26.0462 19.4529 25.5018 19.4532C24.9575 19.4535 24.3482 19.2894 23.7991 18.9629C23.25 18.6363 22.8089 18.1467 22.4953 17.5361C22.1818 16.9254 22.0193 16.2555 21.9884 15.5139C21.98 15.2659 22.1687 15.1181 22.2782 15.1181H29.0142C29.5727 15.1186 30.0463 15.0673 30.4356 14.9719C30.444 14.7994 30.4482 14.627 30.4482 14.4529C30.4482 12.0528 29.6398 9.84291 28.2807 8.07858C27.466 7.72214 26.5287 7.54183 25.4806 7.54157C24.4325 7.54131 23.5041 7.70642 22.669 8.03245C21.8328 8.35953 21.1365 8.82604 20.5691 9.43485ZM28.7046 13.1813C28.7187 13.3737 28.5159 13.5419 28.309 13.5419H22.3997C22.1849 13.5404 21.9706 13.3674 22.0041 13.1556C22.1404 12.0313 22.4814 11.1481 23.0638 10.5191C23.6461 9.89009 24.4283 9.56301 25.3638 9.56301C26.2992 9.56301 27.1024 9.88275 27.6981 10.5186C28.2765 11.1339 28.6019 12.0303 28.7046 13.1813Z" fill="white"/>
+<path d="M2.8978 32.0667C2.8978 31.6169 2.83127 31.292 2.69767 31.0917C2.52949 30.8417 2.24081 30.7169 1.83058 30.7169C1.42035 30.7169 1.13376 30.8417 0.970824 31.0917C0.837225 31.292 0.770687 31.6169 0.770687 32.0667V33.4085H1.83058C2.24081 33.4085 2.52949 33.2864 2.69767 33.0416C2.83127 32.8361 2.8978 32.5112 2.8978 32.0667ZM3.66849 32.0667C3.66849 33.5317 3.05603 34.264 1.83058 34.264H0.770687V36H0V32.0677C0 30.5969 0.609843 29.861 1.83058 29.861C3.05603 29.861 3.66849 30.5964 3.66849 32.0667Z" fill="#18397A"/>
+<path d="M7.09432 32.0666C7.09432 31.6169 7.02831 31.2919 6.89576 31.0917C6.73387 30.8417 6.44886 30.7169 6.04177 30.7169C5.63468 30.7169 5.34757 30.8417 5.18044 31.0917C5.04842 31.2919 4.98188 31.6169 4.98188 32.0666C4.98188 32.5111 5.04842 32.8361 5.18044 33.0416C5.34757 33.2864 5.63468 33.4085 6.04177 33.4085C6.44886 33.4085 6.73387 33.2864 6.89576 33.0416C7.02831 32.8419 7.09432 32.5169 7.09432 32.0666ZM7.58367 29.0218L7.23526 29.494L6.00509 28.7964L4.77441 29.494L4.426 29.0218L6.00509 28.1249L7.58367 29.0218ZM7.87235 32.0666C7.87235 33.5317 7.26198 34.264 6.04177 34.264C4.81632 34.264 4.20386 33.5317 4.20386 32.0666C4.20386 30.5964 4.81632 29.861 6.04177 29.861C7.26198 29.861 7.87235 30.5964 7.87235 32.0666Z" fill="#18397A"/>
+<path d="M10.4652 34.2641C9.15065 34.2641 8.49365 33.7321 8.49365 32.6691V28.1246H9.26434V32.6764C9.26434 32.9034 9.3335 33.0732 9.47182 33.1838C9.65467 33.3332 9.98579 33.4081 10.4652 33.4081V34.2641Z" fill="#18397A"/>
+<path d="M13.4328 31.1398C13.2955 30.8138 12.987 30.5905 12.5752 30.5905C12.1634 30.5905 11.8459 30.8138 11.7086 31.1398C11.6227 31.3369 11.6059 31.4659 11.597 31.7321H13.5528C13.5444 31.4659 13.5187 31.3369 13.4328 31.1398ZM11.597 32.3412C11.597 33.0876 11.992 33.5599 12.7035 33.5599C13.1929 33.5599 13.4501 33.4226 13.7587 33.1133L14.3161 33.637C13.8703 34.0835 13.4501 34.3152 12.6867 34.3152C11.597 34.3152 10.731 33.7402 10.731 32.0839C10.731 30.6765 11.4597 29.8609 12.5752 29.8609C13.7414 29.8609 14.4194 30.7189 14.4194 31.9549V32.3412H11.597Z" fill="#18397A"/>
+<path d="M2.8978 32.0667C2.8978 31.6169 2.83127 31.292 2.69767 31.0917C2.52949 30.8417 2.24081 30.7169 1.83058 30.7169C1.42035 30.7169 1.13376 30.8417 0.970824 31.0917C0.837225 31.292 0.770687 31.6169 0.770687 32.0667V33.4085H1.83058C2.24081 33.4085 2.52949 33.2864 2.69767 33.0416C2.83127 32.8361 2.8978 32.5112 2.8978 32.0667ZM3.66849 32.0667C3.66849 33.5317 3.05603 34.264 1.83058 34.264H0.770687V36H0V32.0677C0 30.5969 0.609843 29.861 1.83058 29.861C3.05603 29.861 3.66849 30.5964 3.66849 32.0667Z" fill="#18397A"/>
+<path d="M7.09432 32.0666C7.09432 31.6169 7.02831 31.2919 6.89576 31.0917C6.73387 30.8417 6.44886 30.7169 6.04177 30.7169C5.63468 30.7169 5.34757 30.8417 5.18044 31.0917C5.04842 31.2919 4.98188 31.6169 4.98188 32.0666C4.98188 32.5111 5.04842 32.8361 5.18044 33.0416C5.34757 33.2864 5.63468 33.4085 6.04177 33.4085C6.44886 33.4085 6.73387 33.2864 6.89576 33.0416C7.02831 32.8419 7.09432 32.5169 7.09432 32.0666ZM7.58367 29.0218L7.23526 29.494L6.00509 28.7964L4.77441 29.494L4.426 29.0218L6.00509 28.1249L7.58367 29.0218ZM7.87235 32.0666C7.87235 33.5317 7.26198 34.264 6.04177 34.264C4.81632 34.264 4.20386 33.5317 4.20386 32.0666C4.20386 30.5964 4.81632 29.861 6.04177 29.861C7.26198 29.861 7.87235 30.5964 7.87235 32.0666Z" fill="#18397A"/>
+<path d="M10.4652 34.2641C9.15065 34.2641 8.49365 33.7321 8.49365 32.6691V28.1246H9.26434V32.6764C9.26434 32.9034 9.3335 33.0732 9.47182 33.1838C9.65467 33.3332 9.98579 33.4081 10.4652 33.4081V34.2641Z" fill="#18397A"/>
+<path d="M13.4328 31.1398C13.2955 30.8138 12.987 30.5905 12.5752 30.5905C12.1634 30.5905 11.8459 30.8138 11.7086 31.1398C11.6227 31.3369 11.6059 31.4659 11.597 31.7321H13.5528C13.5444 31.4659 13.5187 31.3369 13.4328 31.1398ZM11.597 32.3412C11.597 33.0876 11.992 33.5599 12.7035 33.5599C13.1929 33.5599 13.4501 33.4226 13.7587 33.1133L14.3161 33.637C13.8703 34.0835 13.4501 34.3152 12.6867 34.3152C11.597 34.3152 10.731 33.7402 10.731 32.0839C10.731 30.6765 11.4597 29.8609 12.5752 29.8609C13.7414 29.8609 14.4194 30.7189 14.4194 31.9549V32.3412H11.597Z" fill="#18397A"/>
+<path d="M27.9413 34.2641H27.1706V32.0626C27.1706 31.6139 27.1035 31.29 26.9705 31.0908C26.8023 30.8413 26.5136 30.7165 26.1034 30.7165C25.6932 30.7165 25.4066 30.8413 25.2436 31.0908C25.11 31.29 25.0435 31.6139 25.0435 32.0626V34.2641H24.2728V32.0626C24.2728 31.6139 24.2063 31.29 24.0727 31.0908C23.9045 30.8413 23.6158 30.7165 23.2051 30.7165C22.7953 30.7165 22.5088 30.8413 22.3453 31.0908C22.2122 31.29 22.1457 31.6139 22.1457 32.0626V34.2641H21.375V32.0668C21.375 30.596 21.9848 29.8611 23.2051 29.8611C23.8579 29.8611 24.3414 30.0828 24.6579 30.5257C24.9696 30.0828 25.4511 29.8611 26.1034 29.8611C27.3283 29.8611 27.9413 30.596 27.9413 32.0668V34.2641Z" fill="#E31927"/>
+<path d="M31.4618 32.0667C31.4618 31.6169 31.3952 31.292 31.2616 31.0917C31.094 30.8417 30.8048 30.7169 30.3945 30.7169C29.9843 30.7169 29.6977 30.8417 29.5348 31.0917C29.4012 31.292 29.3346 31.6169 29.3346 32.0667V33.4085H30.3945C30.8048 33.4085 31.094 33.2864 31.2616 33.0416C31.3952 32.8361 31.4618 32.5112 31.4618 32.0667ZM32.233 32.0667C32.233 33.5317 31.62 34.264 30.3945 34.264H29.3346V36H28.564V32.0677C28.564 30.5969 29.1743 29.861 30.3945 29.861C31.62 29.861 32.233 30.5964 32.233 32.0667Z" fill="#E31927"/>
+<path d="M34.7676 34.2641C33.4531 34.2641 32.7961 33.7321 32.7961 32.6691V28.1246H33.5668V32.6764C33.5668 32.9034 33.636 33.0732 33.7748 33.1838C33.9571 33.3332 34.2883 33.4081 34.7676 33.4081V34.2641Z" fill="#E31927"/>
+<path d="M37.8878 32.0667C37.8878 31.6169 37.8213 31.2919 37.6877 31.0917C37.5248 30.8417 37.2382 30.7169 36.8279 30.7169C36.4177 30.7169 36.1311 30.8417 35.9682 31.0917C35.8346 31.2919 35.768 31.6169 35.768 32.0667C35.768 32.5169 35.8346 32.8419 35.9682 33.0416C36.1311 33.2864 36.4177 33.4085 36.8279 33.4085C37.2382 33.4085 37.5248 33.2864 37.6877 33.0416C37.8213 32.8419 37.8878 32.5169 37.8878 32.0667ZM38.6585 32.0667C38.6585 33.5317 38.0482 34.264 36.8279 34.264C35.6025 34.264 34.9895 33.5317 34.9895 32.0667C34.9895 30.5964 35.6025 29.861 36.8279 29.861C38.0482 29.861 38.6585 30.5964 38.6585 32.0667Z" fill="#E31927"/>
+<path d="M39.2292 29.8612H39.9999V34.2642H39.2292V29.8612ZM39.9999 28.9806H39.2292V28.1247H39.9999V28.9806Z" fill="#E31927"/>
+<path d="M19.7712 31.1398C19.6339 30.8138 19.3253 30.5905 18.9135 30.5905C18.5017 30.5905 18.1842 30.8138 18.047 31.1398C17.961 31.3369 17.9443 31.4659 17.9354 31.7321H19.8912C19.8828 31.4659 19.8571 31.3369 19.7712 31.1398ZM17.9354 32.3412C17.9354 33.0876 18.3299 33.5599 19.0419 33.5599C19.5312 33.5599 19.7885 33.4226 20.0971 33.1133L20.655 33.637C20.2087 34.0835 19.7885 34.3152 19.0251 34.3152C17.9354 34.3152 17.0693 33.7402 17.0693 32.0839C17.0693 30.6765 17.7981 29.8609 18.9135 29.8609C20.0798 29.8609 20.7577 30.7189 20.7577 31.9549V32.3412H17.9354Z" fill="#E31927"/>
+<path d="M27.9413 34.2641H27.1706V32.0626C27.1706 31.6139 27.1035 31.29 26.9705 31.0908C26.8023 30.8413 26.5136 30.7165 26.1034 30.7165C25.6932 30.7165 25.4066 30.8413 25.2436 31.0908C25.11 31.29 25.0435 31.6139 25.0435 32.0626V34.2641H24.2728V32.0626C24.2728 31.6139 24.2063 31.29 24.0727 31.0908C23.9045 30.8413 23.6158 30.7165 23.2051 30.7165C22.7953 30.7165 22.5088 30.8413 22.3453 31.0908C22.2122 31.29 22.1457 31.6139 22.1457 32.0626V34.2641H21.375V32.0668C21.375 30.596 21.9848 29.8611 23.2051 29.8611C23.8579 29.8611 24.3414 30.0828 24.6579 30.5257C24.9696 30.0828 25.4511 29.8611 26.1034 29.8611C27.3283 29.8611 27.9413 30.596 27.9413 32.0668V34.2641Z" fill="#E31927"/>
+<path d="M31.4618 32.0667C31.4618 31.6169 31.3952 31.292 31.2616 31.0917C31.094 30.8417 30.8048 30.7169 30.3945 30.7169C29.9843 30.7169 29.6977 30.8417 29.5348 31.0917C29.4012 31.292 29.3346 31.6169 29.3346 32.0667V33.4085H30.3945C30.8048 33.4085 31.094 33.2864 31.2616 33.0416C31.3952 32.8361 31.4618 32.5112 31.4618 32.0667ZM32.233 32.0667C32.233 33.5317 31.62 34.264 30.3945 34.264H29.3346V36H28.564V32.0677C28.564 30.5969 29.1743 29.861 30.3945 29.861C31.62 29.861 32.233 30.5964 32.233 32.0667Z" fill="#E31927"/>
+<path d="M34.7676 34.2641C33.4531 34.2641 32.7961 33.7321 32.7961 32.6691V28.1246H33.5668V32.6764C33.5668 32.9034 33.636 33.0732 33.7748 33.1838C33.9571 33.3332 34.2883 33.4081 34.7676 33.4081V34.2641Z" fill="#E31927"/>
+<path d="M37.8878 32.0667C37.8878 31.6169 37.8213 31.2919 37.6877 31.0917C37.5248 30.8417 37.2382 30.7169 36.8279 30.7169C36.4177 30.7169 36.1311 30.8417 35.9682 31.0917C35.8346 31.2919 35.768 31.6169 35.768 32.0667C35.768 32.5169 35.8346 32.8419 35.9682 33.0416C36.1311 33.2864 36.4177 33.4085 36.8279 33.4085C37.2382 33.4085 37.5248 33.2864 37.6877 33.0416C37.8213 32.8419 37.8878 32.5169 37.8878 32.0667ZM38.6585 32.0667C38.6585 33.5317 38.0482 34.264 36.8279 34.264C35.6025 34.264 34.9895 33.5317 34.9895 32.0667C34.9895 30.5964 35.6025 29.861 36.8279 29.861C38.0482 29.861 38.6585 30.5964 38.6585 32.0667Z" fill="#E31927"/>
+<path d="M39.2292 29.8612H39.9999V34.2642H39.2292V29.8612ZM39.9999 28.9806H39.2292V28.1247H39.9999V28.9806Z" fill="#E31927"/>
+<path d="M19.7712 31.1398C19.6339 30.8138 19.3253 30.5905 18.9135 30.5905C18.5017 30.5905 18.1842 30.8138 18.047 31.1398C17.961 31.3369 17.9443 31.4659 17.9354 31.7321H19.8912C19.8828 31.4659 19.8571 31.3369 19.7712 31.1398ZM17.9354 32.3412C17.9354 33.0876 18.3299 33.5599 19.0419 33.5599C19.5312 33.5599 19.7885 33.4226 20.0971 33.1133L20.655 33.637C20.2087 34.0835 19.7885 34.3152 19.0251 34.3152C17.9354 34.3152 17.0693 33.7402 17.0693 32.0839C17.0693 30.6765 17.7981 29.8609 18.9135 29.8609C20.0798 29.8609 20.7577 30.7189 20.7577 31.9549V32.3412H17.9354Z" fill="#E31927"/>
 <defs>
-<radialGradient id="paint0_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(64.4478 9.98904) scale(36.6857 36.7028)">
+<radialGradient id="paint0_radial_5665_162177" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(22.9653 7.99225) scale(24.4575 24.4689)">
 <stop stop-color="#E65D1B"/>
 <stop offset="0.0472274" stop-color="#E65D1B"/>
 <stop offset="0.350006" stop-color="#ED1C24"/>
 <stop offset="1" stop-color="#A61217"/>
 </radialGradient>
-<linearGradient id="paint1_linear" x1="60" y1="4.00081" x2="60" y2="35.359" gradientUnits="userSpaceOnUse">
+<linearGradient id="paint1_linear_5665_162177" x1="20.0002" y1="4.00003" x2="20.0002" y2="24.9058" gradientUnits="userSpaceOnUse">
 <stop stop-color="#65CDEB"/>
 <stop offset="0.0548619" stop-color="#65CDEB"/>
 <stop offset="0.406586" stop-color="#164789"/>
 <stop offset="1" stop-color="#06172F"/>
 </linearGradient>
-<linearGradient id="paint2_linear" x1="61.1417" y1="5.13338" x2="59.0184" y2="26.0191" gradientUnits="userSpaceOnUse">
+<linearGradient id="paint2_linear_5665_162177" x1="20.7614" y1="4.75508" x2="19.3458" y2="18.6791" gradientUnits="userSpaceOnUse">
 <stop stop-color="#99DEF9"/>
 <stop offset="1" stop-color="#103568"/>
 </linearGradient>
-<radialGradient id="paint3_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(65.0318 11.5822) scale(21.038 21.0478)">
-<stop stop-color="white"/>
-<stop offset="0.252747" stop-color="white"/>
-<stop offset="0.457171" stop-color="white"/>
-<stop offset="1" stop-color="#CEDDE3"/>
-</radialGradient>
 </defs>
 </svg>
diff --git a/src/assets/scss/_icons.scss b/src/assets/scss/_icons.scss
index 0b84efbf6..c84ed92e7 100644
--- a/src/assets/scss/_icons.scss
+++ b/src/assets/scss/_icons.scss
@@ -542,10 +542,9 @@
 }
 
 .ico-close-details {
-  width: 40px;
-  height: 40px;
-  border-radius: 40px;
-  background-color: $black;
+  width: 44px;
+  height: 44px;
+  border-radius: 44px;
   display: flex;
   justify-content: center;
   align-items: center;
@@ -555,13 +554,15 @@
   &:before,
   &:after {
     content: '';
-    width: 23px;
+    width: 24px;
     height: 2px;
-    background-color: $white;
+    background-color: $grey-1;
     position: absolute;
     border-radius: 1px;
   }
-
+  &:hover {
+    background-color: $grey-7;
+  }
   &:before {
     transform: rotate(45deg);
   }
-- 
GitLab


From 64c9c2c178da9f6333738f1024ca53f126b302b4 Mon Sep 17 00:00:00 2001
From: "guilhem.carron" <gcarron@grandlyon.com>
Date: Tue, 15 Mar 2022 11:23:52 +0100
Subject: [PATCH 19/40] add filter +modal

---
 src/app/carto/carto.component.html            |  7 +-
 src/app/carto/carto.component.ts              | 13 +---
 src/app/services/structure.service.ts         |  2 +
 .../components/button/button.component.html   | 12 ++++
 .../components/button/button.component.scss   | 34 +++++++++-
 .../components/button/buttonType.enum.ts      |  1 +
 .../svg-icon/svg-icon.component.scss          |  3 +
 .../modal-filter/modal-filter.component.html  | 28 ++++++--
 .../modal-filter/modal-filter.component.scss  | 65 +++++++++++++++----
 .../modal-filter/modal-filter.component.ts    | 10 +--
 .../structure-list-search.component.html      | 32 +++++----
 .../structure-list-search.component.scss      | 29 +++++++--
 .../structure-list-search.component.ts        | 34 ++++++++--
 .../structure-list/models/category.model.ts   |  4 +-
 src/app/structure-list/models/module.model.ts |  4 +-
 src/assets/ico/closeModal.svg                 |  4 ++
 src/assets/ico/sprite.svg                     | 15 +++++
 src/assets/ico/tagDelete.svg                  |  4 ++
 src/assets/ico/tagReset.svg                   |  4 ++
 src/assets/scss/_buttons.scss                 | 21 +-----
 20 files changed, 243 insertions(+), 83 deletions(-)
 create mode 100644 src/assets/ico/closeModal.svg
 create mode 100644 src/assets/ico/tagDelete.svg
 create mode 100644 src/assets/ico/tagReset.svg

diff --git a/src/app/carto/carto.component.html b/src/app/carto/carto.component.html
index 3d5a64ef2..9fd0adf04 100644
--- a/src/app/carto/carto.component.html
+++ b/src/app/carto/carto.component.html
@@ -1,11 +1,6 @@
 <div class="content-container">
   <div class="hide-on-print">
-    <app-structure-list-search
-      (searchEvent)="fetchResults($event)"
-      (locationReset)="sendLocationReset()"
-      (locationTrigger)="sendlocationTrigger()"
-      [locate]="locate"
-    ></app-structure-list-search>
+    <app-structure-list-search (searchEvent)="getStructures($event)" [locate]="locate"></app-structure-list-search>
   </div>
   <div class="panes-container" fxLayout="row">
     <app-structure-list
diff --git a/src/app/carto/carto.component.ts b/src/app/carto/carto.component.ts
index 01c775d88..c2e9827b3 100644
--- a/src/app/carto/carto.component.ts
+++ b/src/app/carto/carto.component.ts
@@ -57,6 +57,7 @@ export class CartoComponent implements OnInit {
   }
 
   public getStructures(filters: Filter[]): void {
+    console.log('filters2', filters);
     const queryString = _.find(filters, { name: 'query' });
     if (queryString) {
       this.searchedValue = queryString.value;
@@ -222,16 +223,4 @@ export class CartoComponent implements OnInit {
   public maplocationReset(): void {
     this.locate = false;
   }
-  public sendLocationReset(): void {
-    // this.locationReset.emit(true);
-  }
-
-  public sendlocationTrigger(): void {
-    // this.locationTrigger.emit(true);
-  }
-  public fetchResults(filters: Filter[]): void {
-    console.log('filters', filters);
-    // this.searchEvent.emit(filters);
-    this.getStructures(filters);
-  }
 }
diff --git a/src/app/services/structure.service.ts b/src/app/services/structure.service.ts
index 6135dd776..fbba82762 100644
--- a/src/app/services/structure.service.ts
+++ b/src/app/services/structure.service.ts
@@ -78,6 +78,7 @@ export class StructureService {
   }
 
   public getStructures(filters: Filter[]): Observable<Structure[]> {
+    console.log('filters3 ', filters);
     if (filters && filters.length > 0) {
       let requestUrl = `${this.baseUrl}/search`;
       const queryString = _.find(filters, { name: 'query' });
@@ -86,6 +87,7 @@ export class StructureService {
         requestUrl += `?query=${queryString.value}`;
       }
       const formatedFilters = this.formatFilters(filters);
+      console.log('formatted', formatedFilters);
       return this.http
         .post(requestUrl, { filters: formatedFilters })
         .pipe(map((data: any[]) => data.map((item) => new Structure(item))));
diff --git a/src/app/shared/components/button/button.component.html b/src/app/shared/components/button/button.component.html
index 13c176a70..ad9b5cec2 100644
--- a/src/app/shared/components/button/button.component.html
+++ b/src/app/shared/components/button/button.component.html
@@ -188,3 +188,15 @@
     </div>
   </button>
 </ng-container>
+<ng-container *ngIf="style === buttonTypeEnum.TagCloudButton">
+  <button class="btn-tags-cloud" fxLayout="row" (click)="doAction()">
+    <span>{{ text }}</span>
+    <!-- <app-svg-icon [type]="'ico'" [icon]="'validate'" [iconColor]="'white'"></app-svg-icon> -->
+    <app-svg-icon
+      [type]="'ico'"
+      [iconClass]="'icon-centered'"
+      [icon]="'tagDelete'"
+      [iconColor]="'white'"
+    ></app-svg-icon>
+  </button>
+</ng-container>
diff --git a/src/app/shared/components/button/button.component.scss b/src/app/shared/components/button/button.component.scss
index f0a7bb43a..bd8abaf72 100644
--- a/src/app/shared/components/button/button.component.scss
+++ b/src/app/shared/components/button/button.component.scss
@@ -73,12 +73,13 @@ button {
     background: $primary-color;
     border: none;
     width: 100%;
+    @include btn-bold;
     .text {
       display: flex;
       text-align: center;
       align-items: center;
       justify-content: center;
-      background: transparent;
+      background: $primary-color;
       text-align: center;
       margin: auto;
       color: $white;
@@ -109,6 +110,7 @@ button {
   }
   &.tertiary {
     div:first-child {
+      min-width: 50px;
       width: unset;
     }
     &:hover {
@@ -122,6 +124,8 @@ button {
     color: $black;
     padding: 0px 16px;
     border-radius: 20px;
+    min-width: 50px;
+
     @include btn-regular;
   }
   &.icon-only {
@@ -204,7 +208,35 @@ button {
     border-color: $primary-color;
   }
 }
+.btn-tags-cloud {
+  appearance: none;
+
+  @include lato-regular-12;
+  justify-content: center;
+  align-items: center;
+  box-sizing: border-box;
+  height: 25px;
+  border-radius: 20px;
+  padding: 5px 10px 5px 15px;
+  max-width: 150px;
+  color: $grey-8;
+  border-style: none;
+  margin-top: 5px;
+  background: $grey-1;
+  text-overflow: ellipsis;
 
+  span {
+    text-overflow: ellipsis;
+    max-width: 130px;
+    white-space: nowrap;
+    overflow: hidden;
+    display: inline-block;
+    white-space: nowrap;
+  }
+  &.unchecked {
+    background: $grey-1;
+  }
+}
 .disabled {
   opacity: 0.4;
   cursor: not-allowed;
diff --git a/src/app/shared/components/button/buttonType.enum.ts b/src/app/shared/components/button/buttonType.enum.ts
index 3b6fdce1c..815f2f122 100644
--- a/src/app/shared/components/button/buttonType.enum.ts
+++ b/src/app/shared/components/button/buttonType.enum.ts
@@ -8,4 +8,5 @@ export enum ButtonType {
   IconOnly,
   searchIcon,
   modalPrimary,
+  TagCloudButton,
 }
diff --git a/src/app/shared/components/svg-icon/svg-icon.component.scss b/src/app/shared/components/svg-icon/svg-icon.component.scss
index 38f0cf7f0..e7d187c8c 100644
--- a/src/app/shared/components/svg-icon/svg-icon.component.scss
+++ b/src/app/shared/components/svg-icon/svg-icon.component.scss
@@ -67,3 +67,6 @@ svg {
   top: 0.125em;
   position: relative;
 }
+.icon-centered {
+  padding-top: 0.15rem;
+}
diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.html b/src/app/structure-list/components/modal-filter/modal-filter.component.html
index 0bff4b4f2..0f4965727 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.html
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.html
@@ -14,7 +14,7 @@
                   <input
                     type="checkbox"
                     [checked]="searchService.getIndex(checkedModules, module.id, c.id) > -1"
-                    [value]="module.id"
+                    [value]="module.text"
                     (change)="onCheckboxChange($event, c.id)"
                   />
                   <span class="customCheck customCheckPrimary"></span>
@@ -27,7 +27,22 @@
       </div>
     </div>
     <div class="contentModal maxModal" fxLayout="row wrap" fxLayoutAlign="flex-start" *ngIf="categories.length > 1">
-      <ul class="blockLigne">
+      <ul
+        class="blockLigne"
+        (clickOutside)="getModalType() === 'moreFilters' ? closeModal() : ''"
+        [ngClass]="{ backDropModalUl: getModalType() === 'moreFilters' }"
+      >
+        <div class="headerMoreFilters" *ngIf="getModalType() === 'moreFilters'">
+          Plus de filtres
+          <div class="iconClose" (click)="closeModal()">
+            <app-svg-icon
+              [iconClass]="'icon-28'"
+              [iconColor]="'grey-1'"
+              [icon]="'closeModal'"
+              [type]="'ico'"
+            ></app-svg-icon>
+          </div>
+        </div>
         <div class="blockFiltre" *ngFor="let c of categories">
           <li class="checkbox">
             <div class="checkboxItem categoryCheckBox">
@@ -59,7 +74,7 @@
                         <input
                           type="checkbox"
                           [checked]="searchService.getIndex(checkedModules, module.id, c.id) > -1"
-                          [value]="module.id"
+                          [value]="module.text"
                           (change)="onCheckboxChange($event, c.id)"
                         />
                         <span class="customCheck customCheckPrimary"></span>
@@ -75,7 +90,12 @@
       </ul>
     </div>
 
-    <div class="footer" fxLayout="row" fxLayoutAlign="center center">
+    <div
+      class="footer"
+      fxLayout="row"
+      fxLayoutAlign="center center"
+      [ngClass]="{ backDropModalFooter: getModalType() === 'moreFilters' }"
+    >
       <a class="reset" (click)="clearFilters()" tabindex="0">Effacer</a>
       <div class="half-width">
         <app-button
diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.scss b/src/app/structure-list/components/modal-filter/modal-filter.component.scss
index 13acac994..7e5fcf88e 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.scss
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.scss
@@ -7,10 +7,7 @@
 @import '../../../../assets/scss/z-index';
 
 .modalaccompaniment {
-  @media #{$desktop} {
-    margin-left: 0;
-  }
-  margin-left: 201px;
+  margin-left: 0;
 }
 .modaltraining {
   @media #{$desktop} {
@@ -30,12 +27,7 @@
   }
   margin-left: 405px;
 }
-.modalmoreFilters {
-  @media #{$desktop} {
-    margin-left: 0;
-  }
-  margin-left: 700px;
-}
+
 .maxModal .blockLigne {
   box-sizing: border-box;
   width: 360px;
@@ -70,12 +62,14 @@
   background: white;
   ::-webkit-scrollbar {
     width: 8px;
+    border-radius: 8px;
   }
   ::-webkit-scrollbar-track {
     background: $grey-8;
+    border-radius: 8px;
   }
   ::-webkit-scrollbar-thumb {
-    background: $primary-color;
+    background: $grey-4;
     border-radius: 6px;
   }
   .body-wrap {
@@ -96,7 +90,8 @@
     overflow-y: auto;
     max-width: 1100px;
     border-bottom: 1px solid $grey;
-    max-height: 40vh;
+    height: 40vh;
+
     @media #{$large-phone} {
       max-height: none;
       height: 100%;
@@ -176,6 +171,52 @@
     }
   }
 }
+.modalmoreFilters {
+  width: 100%;
+  min-width: 100%;
+  height: 100vh;
+  min-height: 100vh;
+  top: 0;
+  left: 0;
+  display: flex;
+  flex-direction: column;
+  background: rgba(0, 0, 0, 0.8) !important;
+  .maxModal {
+    max-width: 360px;
+    margin: auto;
+    background: white;
+    margin-top: 15%;
+    border-radius: 8px 8px 0 0;
+  }
+  .backDropModalUl {
+    background: white;
+    width: 360px;
+    height: 450px;
+    min-height: 40vh;
+  }
+  .backDropModalFooter {
+    background: white;
+    width: 360px;
+    margin: auto;
+    border-radius: 0 0 8px 8px;
+  }
+  .headerMoreFilters {
+    position: relative;
+    text-align: center;
+    color: $grey-1;
+    padding: 1rem;
+    @include lato-bold-18;
+    align-items: center;
+    justify-content: center;
+    border-bottom: solid 1px $grey-6;
+    .iconClose {
+      cursor: pointer;
+      position: absolute;
+      right: 14px;
+      top: 7px;
+    }
+  }
+}
 a {
   @include hyperlink;
 }
diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.ts b/src/app/structure-list/components/modal-filter/modal-filter.component.ts
index ae94ead36..79f95beaf 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.ts
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.ts
@@ -1,5 +1,5 @@
 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
-import { map } from 'leaflet';
+import { ButtonType } from '../../../shared/components/button/buttonType.enum';
 import { TypeModal } from '../../enum/typeModal.enum';
 import { Category } from '../../models/category.model';
 import { Module } from '../../models/module.model';
@@ -17,19 +17,21 @@ export class ModalFilterComponent implements OnInit {
   @Input() public modules: Module[] = [];
   @Output() searchEvent = new EventEmitter();
   @Output() closeEvent = new EventEmitter();
+  public buttonTypeEnum = ButtonType;
+
   // Checkbox variable
   public checkedModules: Module[] = [];
   public toggledCategories: string[] = [];
   ngOnInit(): void {
     // Manage checkbox
-    // this.checkedModules = this.modules.slice();
+    this.checkedModules = this.modules.slice();
   }
 
   // Management of the checkbox event (Check / Uncheck)
   public onCheckboxChange(event, categ: string): void {
     const checkValue: string = event.target.value;
     if (event.target.checked) {
-      this.checkedModules.push(new Module(checkValue, categ));
+      this.checkedModules.push(new Module(checkValue, categ, checkValue));
     } else {
       // Check if the module is present in the list and remove it
       if (this.searchService.getIndex(this.checkedModules, checkValue, categ) > -1) {
@@ -81,7 +83,7 @@ export class ModalFilterComponent implements OnInit {
     if (event.target.checked) {
       for (const module of modules) {
         if (this.searchService.getIndex(this.checkedModules, module.id, category.id) === -1) {
-          this.checkedModules.push(new Module(module.id, category.id));
+          this.checkedModules.push(new Module(module.id, category.id, module.displayText));
         }
       }
     } else {
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
index fbf71e687..172e7cefd 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
@@ -96,7 +96,7 @@
               type="checkbox"
               value="passNumerique"
               [checked]="searchService.getIndex(checkedModulesFilter, 'passNumerique', 'labelsQualifications') > -1"
-              (change)="externalCheckboxCheck($event, 'labelsQualifications')"
+              (change)="externalCheckboxCheck($event, 'labelsQualifications', 'Pass numérique')"
             />
             <div class="label pass">Pass numérique</div>
           </label>
@@ -115,7 +115,7 @@
               [checked]="
                 searchService.getIndex(checkedModulesFilter, 'conseillerNumFranceServices', 'labelsQualifications') > -1
               "
-              (change)="externalCheckboxCheck($event, 'labelsQualifications')"
+              (change)="externalCheckboxCheck($event, 'labelsQualifications', 'Conseillers numériques')"
             />
             <div class="label pass">Conseillers numériques</div>
           </label>
@@ -131,21 +131,18 @@
               type="checkbox"
               value="accesLibre"
               [checked]="searchService.getIndex(checkedModulesFilter, 'accesLibre', 'labelsQualifications') > -1"
-              (change)="externalCheckboxCheck($event, 'labelsQualifications')"
+              (change)="externalCheckboxCheck($event, 'labelsQualifications', 'Accès libre')"
             />
             <div class="label pass">Accès libre</div>
           </label>
         </div>
-        <button
-          class="btn-filter"
-          type="button"
+        <app-button
+          [style]="buttonTypeEnum.Tertiary"
+          [text]="'Plus de filtres'"
           fxLayout="row"
           fxLayoutAlign="space-between center"
-          (click)="openModal(TypeModal.moreFilters)"
-        >
-          <span>Plus de critères</span>
-          <div class="arrow"></div>
-        </button>
+          (action)="openModal(TypeModal.moreFilters)"
+        ></app-button>
       </div>
       <div *ngIf="modalTypeOpened">
         <app-modal-filter
@@ -169,5 +166,16 @@
       <a routerLink="/create-structure" tabindex="0">Ajouter une structure</a>
     </div>
   </div> -->
-  <!-- <a routerLink="/create-structure" tabindex="0">Ajouter une structure</a> -->
+  <div *ngIf="checkedModulesFilter.length" fxLayout="row wrap" fxLayoutGap="4px" class="filterTags">
+    <div class="title">Filtres :</div>
+    <app-button
+      *ngFor="let filter of checkedModulesFilter"
+      [style]="buttonTypeEnum.TagCloudButton"
+      [text]="filter.displayText ? filter.displayText : filter.id"
+      (action)="removeFilter(filter)"
+    ></app-button>
+    <div class="reset-icon" (click)="resetFilters()">
+      <app-svg-icon [type]="'ico'" [icon]="'tagReset'" [iconColor]="'black'"></app-svg-icon>
+    </div>
+  </div>
 </div>
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss b/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
index 02ad8a12a..7e7e06082 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
@@ -6,11 +6,11 @@
 @import '../../../../assets/scss/buttons';
 
 .block {
-  padding: 0 25px 10px 25px;
+  padding: 0 25px;
   border-bottom: solid 1px $grey-4;
 }
 .content {
-  // margin: 10px 0 0px 0;
+  margin-bottom: 0.5rem;
 
   input {
     @include lato-regular-14;
@@ -22,7 +22,7 @@
     min-width: 250px;
     background-color: $grey-8;
     color: $grey-3;
-    height: 40px;
+    height: 36px;
     border-radius: 50px;
     margin-right: 1rem;
     .container {
@@ -38,15 +38,21 @@
 }
 .btnSection {
   button {
+    @include lato-regular-14;
+    font-size: 0.875rem !important;
     background: $white;
-    height: 40px;
+    height: 36px;
     border: 1px solid $grey-4;
     padding: 10px 12px;
     outline: none;
     border-radius: 50px;
     cursor: pointer;
     white-space: nowrap;
+    transition: all 300ms ease;
     @include btn-normal;
+    &:hover:not(.selected) {
+      background: $grey-7;
+    }
     .arrow {
       background-color: transparent;
       border-bottom: 1px solid black;
@@ -87,10 +93,13 @@
     display: flex;
     align-items: center;
     justify-content: center;
-
+    transition: all 300ms ease;
     &.checked {
       border-color: $primary-color;
     }
+    &:hover {
+      background: $primary-color-light;
+    }
     label {
       cursor: pointer;
     }
@@ -186,3 +195,13 @@ a {
     display: block;
   }
 }
+.filterTags {
+  margin: 0.5rem 0 0 0;
+  .title {
+    margin-top: 5px;
+  }
+  .reset-icon {
+    padding-top: 0.2rem;
+    cursor: pointer;
+  }
+}
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
index 6ea9898bc..785cd8e8e 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
@@ -1,14 +1,12 @@
 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
 import { FormBuilder, FormGroup } from '@angular/forms';
 import { forkJoin } from 'rxjs';
-import { GeojsonService } from '../../../services/geojson.service';
 import { TypeModal } from '../../enum/typeModal.enum';
 import { Category } from '../../models/category.model';
 import { Filter } from '../../models/filter.model';
 import { Module } from '../../models/module.model';
 import { StructureCounter } from '../../models/structureCounter.model';
 import { SearchService } from '../../services/search.service';
-import { Location } from '@angular/common';
 import { ActivatedRoute, Router } from '@angular/router';
 import { ButtonType } from '../../../shared/components/button/buttonType.enum';
 
@@ -40,6 +38,12 @@ export class StructureListSearchComponent implements OnInit {
   public numberEquipmentChecked = 0;
   public numberMoreFiltersChecked = 0;
 
+  public categoresTraining: Category[] = [];
+  public categoresAccompaniment: Category[] = [];
+  public categoresPublic: Category[] = [];
+  public categoresEquipment: Category[] = [];
+  public categoresMoreFilters: Category[] = [];
+
   public queryString: string;
   // Modal confirmation variable
   public isConfirmationModalOpen = false;
@@ -107,7 +111,7 @@ export class StructureListSearchComponent implements OnInit {
     }
     // Add checked box filter
     this.checkedModulesFilter.forEach((cm) => {
-      filters.push(new Filter(cm.text, cm.id));
+      filters.push(new Filter(cm.text, cm.id, cm.displayText));
     });
     // Send filters
     this.searchEvent.emit(filters);
@@ -146,7 +150,6 @@ export class StructureListSearchComponent implements OnInit {
     }
     // Store checked modules
     this.checkedModulesFilter = checkedModules;
-
     // Close modal after receive filters from her.
     this.closeModal();
     this.applyFilter(inputTerm);
@@ -177,11 +180,11 @@ export class StructureListSearchComponent implements OnInit {
   }
 
   // Management of the checkbox event (Check / Uncheck)
-  public externalCheckboxCheck(event, categ): void {
+  public externalCheckboxCheck(event, categ, displayName): void {
     const checkValue: string = event.target.value;
     const inputTerm = this.searchForm.get('searchTerm').value;
     if (event.target.checked) {
-      this.checkedModulesFilter.push(new Module(checkValue, categ));
+      this.checkedModulesFilter.push(new Module(checkValue, categ, displayName));
       this.numberMoreFiltersChecked++;
     } else {
       // Check if the module is present in the list and remove it
@@ -258,11 +261,28 @@ export class StructureListSearchComponent implements OnInit {
       ]).subscribe((res) => {
         const categories: Category[] = res[0];
         const structureCounter: StructureCounter[] = res[1];
-        categories.forEach((category) => {
+        console.log('cate', categories);
+        categories.map((category) => {
           category = this.searchService.setCountModules(category, structureCounter);
           this.categories.push(category);
         });
       });
     }
   }
+  public resetFilters(): void {
+    this.checkedModulesFilter = [];
+    this.categories = [];
+    this.numberTrainingChecked = 0;
+    this.numberAccompanimentChecked = 0;
+    this.numberPublicChecked = 0;
+    this.numberEquipmentChecked = 0;
+    this.numberMoreFiltersChecked = 0;
+    this.searchEvent.emit(this.checkedModulesFilter);
+  }
+  public removeFilter(module: Module): void {
+    const index = this.checkedModulesFilter.findIndex((m: Module) => m.id === module.id);
+    this.checkedModulesFilter.splice(index, 1);
+    console.log('filters', this.checkedModulesFilter);
+    this.searchEvent.emit(this.checkedModulesFilter);
+  }
 }
diff --git a/src/app/structure-list/models/category.model.ts b/src/app/structure-list/models/category.model.ts
index b130dc133..516a027ae 100644
--- a/src/app/structure-list/models/category.model.ts
+++ b/src/app/structure-list/models/category.model.ts
@@ -10,7 +10,9 @@ export class Category {
     Object.assign(this, obj, {
       modules:
         obj && obj.modules
-          ? obj.modules.map((module) => new Module(module.display_id ? module.display_id : module.id, module.text))
+          ? obj.modules.map(
+              (module) => new Module(module.display_id ? module.display_id : module.id, module.text, module.text)
+            )
           : null,
     });
   }
diff --git a/src/app/structure-list/models/module.model.ts b/src/app/structure-list/models/module.model.ts
index 5bbbc940c..be98b490f 100644
--- a/src/app/structure-list/models/module.model.ts
+++ b/src/app/structure-list/models/module.model.ts
@@ -2,9 +2,11 @@ export class Module {
   id: string;
   text: string;
   count: number;
+  displayText?: string;
 
-  constructor(id: string, text: string) {
+  constructor(id: string, text: string, displayText?: string) {
     this.id = id;
     this.text = text;
+    this.displayText = displayText;
   }
 }
diff --git a/src/assets/ico/closeModal.svg b/src/assets/ico/closeModal.svg
new file mode 100644
index 000000000..db2dffbb3
--- /dev/null
+++ b/src/assets/ico/closeModal.svg
@@ -0,0 +1,4 @@
+<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M27.0279 11.9135C27.5486 11.3928 28.2873 11.2873 28.6778 11.6778C29.0683 12.0683 28.9628 12.807 28.4421 13.3277L13.3572 28.4127C12.8365 28.9334 12.0978 29.0389 11.7072 28.6484C11.3167 28.2578 11.4222 27.5192 11.9429 26.9985L27.0279 11.9135Z" fill="#333333"/>
+<path d="M28.0279 27.0279C28.5486 27.5486 28.6541 28.2873 28.2636 28.6778C27.8731 29.0683 27.1344 28.9628 26.6137 28.4421L11.5287 13.3572C11.008 12.8365 10.9025 12.0978 11.293 11.7072C11.6836 11.3167 12.4223 11.4222 12.943 11.9429L28.0279 27.0279Z" fill="#333333"/>
+</svg>
diff --git a/src/assets/ico/sprite.svg b/src/assets/ico/sprite.svg
index 2c68fa96a..4833fa664 100644
--- a/src/assets/ico/sprite.svg
+++ b/src/assets/ico/sprite.svg
@@ -373,4 +373,19 @@
 <path d="M14.6087 21.2174C18.2586 21.2174 21.2174 18.2586 21.2174 14.6087C21.2174 10.9588 18.2586 8 14.6087 8C10.9588 8 8 10.9588 8 14.6087C8 18.2586 10.9588 21.2174 14.6087 21.2174Z" stroke="#828282" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
 </symbol>
 
+<symbol id="tagDelete" width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M6.5 6.5L15.5 15.5" stroke="#BDBDBD" stroke-width="1.5" stroke-linecap="round"/>
+<path d="M15.5 6.5L6.5 15.5" stroke="#BDBDBD" stroke-width="1.5" stroke-linecap="round"/>
+</symbol>
+
+<symbol id="tagReset" width="26" height="26" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M7.04307 8H7V14H13V13.9569L7.04307 8Z" fill="#696969"/>
+<path d="M10.3738 21.6869C11.5497 22.8501 13.0573 23.6202 14.6889 23.8913C16.3206 24.1623 17.9962 23.9209 19.485 23.2004C20.9738 22.4798 22.2027 21.3155 23.0025 19.8676C23.8023 18.4198 24.1336 16.7597 23.9509 15.1158C23.7683 13.4719 23.0805 11.925 21.9824 10.6881C20.8843 9.45121 19.4297 8.58509 17.819 8.20897C16.2083 7.83285 14.5207 7.96523 12.9883 8.58789C11.456 9.21054 10.1543 10.2929 9.26242 11.6859" stroke="#696969" stroke-width="1.5"/>
+</symbol>
+
+<symbol id="closeModal" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M27.0279 11.9135C27.5486 11.3928 28.2873 11.2873 28.6778 11.6778C29.0683 12.0683 28.9628 12.807 28.4421 13.3277L13.3572 28.4127C12.8365 28.9334 12.0978 29.0389 11.7072 28.6484C11.3167 28.2578 11.4222 27.5192 11.9429 26.9985L27.0279 11.9135Z" fill="#333333"/>
+<path d="M28.0279 27.0279C28.5486 27.5486 28.6541 28.2873 28.2636 28.6778C27.8731 29.0683 27.1344 28.9628 26.6137 28.4421L11.5287 13.3572C11.008 12.8365 10.9025 12.0978 11.293 11.7072C11.6836 11.3167 12.4223 11.4222 12.943 11.9429L28.0279 27.0279Z" fill="#333333"/>
+</symbol>
+
 </svg>
diff --git a/src/assets/ico/tagDelete.svg b/src/assets/ico/tagDelete.svg
new file mode 100644
index 000000000..9f801dfac
--- /dev/null
+++ b/src/assets/ico/tagDelete.svg
@@ -0,0 +1,4 @@
+<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M6.5 6.5L15.5 15.5" stroke="#BDBDBD" stroke-width="1.5" stroke-linecap="round"/>
+<path d="M15.5 6.5L6.5 15.5" stroke="#BDBDBD" stroke-width="1.5" stroke-linecap="round"/>
+</svg>
diff --git a/src/assets/ico/tagReset.svg b/src/assets/ico/tagReset.svg
new file mode 100644
index 000000000..2ae35fd85
--- /dev/null
+++ b/src/assets/ico/tagReset.svg
@@ -0,0 +1,4 @@
+<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M7.04307 8H7V14H13V13.9569L7.04307 8Z" fill="#696969"/>
+<path d="M10.3738 21.6869C11.5497 22.8501 13.0573 23.6202 14.6889 23.8913C16.3206 24.1623 17.9962 23.9209 19.485 23.2004C20.9738 22.4798 22.2027 21.3155 23.0025 19.8676C23.8023 18.4198 24.1336 16.7597 23.9509 15.1158C23.7683 13.4719 23.0805 11.925 21.9824 10.6881C20.8843 9.45121 19.4297 8.58509 17.819 8.20897C16.2083 7.83285 14.5207 7.96523 12.9883 8.58789C11.456 9.21054 10.1543 10.2929 9.26242 11.6859" stroke="#696969" stroke-width="1.5"/>
+</svg>
diff --git a/src/assets/scss/_buttons.scss b/src/assets/scss/_buttons.scss
index 7dfbbbd66..9d2af1f49 100644
--- a/src/assets/scss/_buttons.scss
+++ b/src/assets/scss/_buttons.scss
@@ -12,6 +12,7 @@
   border-radius: 4px;
   cursor: pointer;
   @include btn-normal;
+  @include lato-regular-14;
   transition: all 300ms ease;
   & > * {
     transition: all 300ms ease;
@@ -32,14 +33,14 @@
 }
 @mixin btn-search-filter {
   background: $primary-color;
-  height: 40px;
+  height: 36px;
   color: $white;
   padding: 4px 37px;
   border-radius: 4px;
   outline: none;
   border: 1px solid transparent;
   cursor: pointer;
-  @include lato-bold-16;
+  @include lato-regular-14;
   line-break: 18px;
 }
 @mixin btn-search-addStructure {
@@ -94,19 +95,3 @@
     stroke: $primary-color;
   }
 }
-
-.tags-cloud {
-  font-style: normal;
-  justify-content: center;
-  align-items: center;
-  height: 28px;
-  border-radius: 20px;
-  padding: 5px 15px;
-  color: $white;
-  border-style: none;
-  margin-top: 5px;
-  background: $grey-1;
-  &.unchecked {
-    background: $grey-4;
-  }
-}
-- 
GitLab


From e77beade5f089d289721b5aa14534d55508548fb Mon Sep 17 00:00:00 2001
From: "guilhem.carron" <gcarron@grandlyon.com>
Date: Tue, 15 Mar 2022 17:13:37 +0100
Subject: [PATCH 20/40] Fix more filters + add mobile display

---
 src/app/carto/carto.component.ts              |   1 -
 src/app/services/structure.service.ts         |   2 -
 .../modal-filter/modal-filter.component.html  |  63 ++++++-
 .../modal-filter/modal-filter.component.scss  |  16 +-
 .../modal-filter/modal-filter.component.ts    |   1 +
 .../structure-list-search.component.html      |  41 ++---
 .../structure-list-search.component.scss      |  17 ++
 .../structure-list-search.component.ts        | 172 +++++++++---------
 .../structure-list/services/search.service.ts |  16 --
 9 files changed, 183 insertions(+), 146 deletions(-)

diff --git a/src/app/carto/carto.component.ts b/src/app/carto/carto.component.ts
index c2e9827b3..71287f981 100644
--- a/src/app/carto/carto.component.ts
+++ b/src/app/carto/carto.component.ts
@@ -57,7 +57,6 @@ export class CartoComponent implements OnInit {
   }
 
   public getStructures(filters: Filter[]): void {
-    console.log('filters2', filters);
     const queryString = _.find(filters, { name: 'query' });
     if (queryString) {
       this.searchedValue = queryString.value;
diff --git a/src/app/services/structure.service.ts b/src/app/services/structure.service.ts
index fbba82762..6135dd776 100644
--- a/src/app/services/structure.service.ts
+++ b/src/app/services/structure.service.ts
@@ -78,7 +78,6 @@ export class StructureService {
   }
 
   public getStructures(filters: Filter[]): Observable<Structure[]> {
-    console.log('filters3 ', filters);
     if (filters && filters.length > 0) {
       let requestUrl = `${this.baseUrl}/search`;
       const queryString = _.find(filters, { name: 'query' });
@@ -87,7 +86,6 @@ export class StructureService {
         requestUrl += `?query=${queryString.value}`;
       }
       const formatedFilters = this.formatFilters(filters);
-      console.log('formatted', formatedFilters);
       return this.http
         .post(requestUrl, { filters: formatedFilters })
         .pipe(map((data: any[]) => data.map((item) => new Structure(item))));
diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.html b/src/app/structure-list/components/modal-filter/modal-filter.component.html
index 0f4965727..ae9194ac8 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.html
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.html
@@ -4,6 +4,7 @@
       <span>Filtres</span>
       <div (click)="closeModal()" class="ico-close-details"></div>
     </div>
+    <!-- Filter with single category -->
     <div class="contentModal" fxLayout="row wrap" fxLayoutAlign="flex-start" *ngIf="categories.length === 1">
       <div class="blockFiltre" *ngFor="let c of categories">
         <ul class="blockLigne">
@@ -26,11 +27,17 @@
         </ul>
       </div>
     </div>
-    <div class="contentModal maxModal" fxLayout="row wrap" fxLayoutAlign="flex-start" *ngIf="categories.length > 1">
-      <ul
+    <!-- "Other filters" backdrop fullwidth modal -->
+    <div
+      class="contentModal maxModal"
+      fxLayout="row wrap"
+      fxLayoutAlign="flex-start"
+      *ngIf="categories.length > 1 && getModalType() === 'moreFilters'"
+    >
+      <div
         class="blockLigne"
         (clickOutside)="getModalType() === 'moreFilters' ? closeModal() : ''"
-        [ngClass]="{ backDropModalUl: getModalType() === 'moreFilters' }"
+        [ngClass]="{ backDropModal: getModalType() === 'moreFilters' }"
       >
         <div class="headerMoreFilters" *ngIf="getModalType() === 'moreFilters'">
           Plus de filtres
@@ -43,6 +50,54 @@
             ></app-svg-icon>
           </div>
         </div>
+        <div class="scroll-container">
+          <div class="blockFiltre" *ngFor="let c of categories">
+            <p>{{ c.name }}</p>
+            <ul class="blockLigne smallList" [ngClass]="{ show: this.toggledCategories.includes(c.id) }">
+              <div fxLayout="row" fxLayoutAlign="start center" class="ligneFiltre" *ngFor="let module of c.modules">
+                <li class="checkbox">
+                  <div class="checkboxItem">
+                    <label fxLayout="row" fxLayoutAlign="start center">
+                      <input
+                        type="checkbox"
+                        [checked]="searchService.getIndex(checkedModules, module.id, c.id) > -1"
+                        [value]="module.text"
+                        (change)="onCheckboxChange($event, c.id)"
+                      />
+                      <span class="customCheck customCheckPrimary"></span>
+                      <div class="label">{{ module.text }}</div>
+                    </label>
+                  </div>
+                </li>
+              </div>
+            </ul>
+          </div>
+        </div>
+        <div
+          class="footer"
+          fxLayout="row"
+          fxLayoutAlign="center center"
+          [ngClass]="{ backDropModalFooter: getModalType() === 'moreFilters' }"
+        >
+          <a class="reset" (click)="clearFilters()" tabindex="0">Effacer</a>
+          <div class="half-width">
+            <app-button
+              [style]="buttonTypeEnum.modalPrimary"
+              [text]="'Appliquer'"
+              (click)="emitModules(checkedModules)"
+            ></app-button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <!-- Filter with multiple categories -->
+    <div
+      class="contentModal maxModal"
+      fxLayout="row wrap"
+      fxLayoutAlign="flex-start"
+      *ngIf="categories.length > 1 && getModalType() !== 'moreFilters'"
+    >
+      <ul class="blockLigne">
         <div class="blockFiltre" *ngFor="let c of categories">
           <li class="checkbox">
             <div class="checkboxItem categoryCheckBox">
@@ -89,12 +144,12 @@
         </div>
       </ul>
     </div>
-
     <div
       class="footer"
       fxLayout="row"
       fxLayoutAlign="center center"
       [ngClass]="{ backDropModalFooter: getModalType() === 'moreFilters' }"
+      *ngIf="getModalType() !== 'moreFilters'"
     >
       <a class="reset" (click)="clearFilters()" tabindex="0">Effacer</a>
       <div class="half-width">
diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.scss b/src/app/structure-list/components/modal-filter/modal-filter.component.scss
index 7e5fcf88e..d916f77e6 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.scss
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.scss
@@ -90,8 +90,6 @@
     overflow-y: auto;
     max-width: 1100px;
     border-bottom: 1px solid $grey;
-    height: 40vh;
-
     @media #{$large-phone} {
       max-height: none;
       height: 100%;
@@ -181,17 +179,20 @@
   display: flex;
   flex-direction: column;
   background: rgba(0, 0, 0, 0.8) !important;
+  .scroll-container {
+    max-height: 390px;
+    overflow-y: scroll;
+  }
   .maxModal {
     max-width: 360px;
     margin: auto;
     background: white;
-    margin-top: 15%;
-    border-radius: 8px 8px 0 0;
+    margin-top: 10%;
+    border-radius: 8px;
   }
-  .backDropModalUl {
+  .backDropModal {
     background: white;
     width: 360px;
-    height: 450px;
     min-height: 40vh;
   }
   .backDropModalFooter {
@@ -201,14 +202,15 @@
     border-radius: 0 0 8px 8px;
   }
   .headerMoreFilters {
-    position: relative;
     text-align: center;
     color: $grey-1;
+    background: white;
     padding: 1rem;
     @include lato-bold-18;
     align-items: center;
     justify-content: center;
     border-bottom: solid 1px $grey-6;
+    border-radius: 8px 8px 0 0;
     .iconClose {
       cursor: pointer;
       position: absolute;
diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.ts b/src/app/structure-list/components/modal-filter/modal-filter.component.ts
index 79f95beaf..2e9ada6d9 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.ts
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.ts
@@ -14,6 +14,7 @@ export class ModalFilterComponent implements OnInit {
   constructor(public searchService: SearchService) {}
   @Input() public modalType: TypeModal;
   @Input() public categories: Category[];
+  //checked modules filter list
   @Input() public modules: Module[] = [];
   @Output() searchEvent = new EventEmitter();
   @Output() closeEvent = new EventEmitter();
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
index 172e7cefd..7009fabab 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
@@ -19,18 +19,13 @@
           <div class="ico-close-search"></div>
         </button>
         <span *ngIf="this.searchForm.get('searchTerm').value?.length > 0" class="separation"></span>
-        <app-button
-          class="isntPhoneContent"
-          [style]="buttonTypeEnum.searchIcon"
-          [iconBtn]="'search'"
-          [type]="'submit'"
-        ></app-button>
+        <app-button [style]="buttonTypeEnum.searchIcon" [iconBtn]="'search'" [type]="'submit'"></app-button>
       </div>
     </form>
     <div (clickOutside)="closeModal()">
-      <div class="btnSection isntPhoneContent" fxLayout="row" fxLayoutAlign="space-between center" fxLayoutGap="16px">
+      <div class="btnSection" fxLayout="row" fxLayoutAlign="space-between center" fxLayoutGap="16px">
         <button
-          class="btn-filter"
+          class="btn-filter isntPhoneContent"
           type="button"
           fxLayout="row"
           [ngClass]="{
@@ -44,7 +39,7 @@
           <div class="arrow"></div>
         </button>
         <button
-          class="btn-filter"
+          class="btn-filter isntPhoneContent"
           type="button"
           fxLayout="row"
           [ngClass]="{
@@ -58,7 +53,7 @@
           <div class="arrow"></div>
         </button>
         <button
-          class="btn-filter"
+          class="btn-filter isntPhoneContent"
           type="button"
           fxLayout="row"
           [ngClass]="{
@@ -72,7 +67,7 @@
           <div class="arrow"></div>
         </button>
         <button
-          class="btn-filter"
+          class="btn-filter isntPhoneContent"
           type="button"
           fxLayout="row"
           [ngClass]="{
@@ -121,22 +116,23 @@
           </label>
         </div>
         <div
-          class="checkboxButton"
+          class="checkboxButton isntPhoneContent"
           [ngClass]="{
-            checked: searchService.getIndex(checkedModulesFilter, 'accesLibre', 'labelsQualifications') > -1
+            checked: searchService.getIndex(checkedModulesFilter, 'accesLibre', 'accessModality') > -1
           }"
         >
           <label fxLayout="row" fxLayoutAlign="center center">
             <input
               type="checkbox"
               value="accesLibre"
-              [checked]="searchService.getIndex(checkedModulesFilter, 'accesLibre', 'labelsQualifications') > -1"
-              (change)="externalCheckboxCheck($event, 'labelsQualifications', 'Accès libre')"
+              [checked]="searchService.getIndex(checkedModulesFilter, 'accesLibre', 'accessModality') > -1"
+              (change)="externalCheckboxCheck($event, 'accessModality', 'Accès libre')"
             />
             <div class="label pass">Accès libre</div>
           </label>
         </div>
         <app-button
+          class="isntPhoneContent"
           [style]="buttonTypeEnum.Tertiary"
           [text]="'Plus de filtres'"
           fxLayout="row"
@@ -147,7 +143,7 @@
       <div *ngIf="modalTypeOpened">
         <app-modal-filter
           [modalType]="modalTypeOpened"
-          [categories]="categories"
+          [categories]="getModalCategory()"
           [modules]="checkedModulesFilter"
           (searchEvent)="fetchResults($event)"
           (closeEvent)="closeModal()"
@@ -155,18 +151,7 @@
       </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 routerLink="/create-structure" tabindex="0">Ajouter une structure</a>
-    </div>
-  </div> -->
-  <div *ngIf="checkedModulesFilter.length" fxLayout="row wrap" fxLayoutGap="4px" class="filterTags">
+  <div *ngIf="checkedModulesFilter.length" fxLayout="row wrap" fxLayoutGap="4px" class="filterTags isntPhoneContent">
     <div class="title">Filtres :</div>
     <app-button
       *ngFor="let filter of checkedModulesFilter"
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss b/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
index 7e7e06082..6b5c76a6c 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
@@ -8,6 +8,9 @@
 .block {
   padding: 0 25px;
   border-bottom: solid 1px $grey-4;
+  @media #{$large-phone} {
+    padding: 0 10px;
+  }
 }
 .content {
   margin-bottom: 0.5rem;
@@ -25,6 +28,11 @@
     height: 36px;
     border-radius: 50px;
     margin-right: 1rem;
+    @media #{$large-phone} {
+      width: 100%;
+      margin-bottom: 0.5rem;
+      margin-right: 0;
+    }
     .container {
       width: 100%;
       .separation {
@@ -35,6 +43,9 @@
       }
     }
   }
+  @media #{$large-phone} {
+    flex-direction: column !important;
+  }
 }
 .btnSection {
   button {
@@ -94,6 +105,9 @@
     align-items: center;
     justify-content: center;
     transition: all 300ms ease;
+    @media #{$large-phone} {
+      width: max-content;
+    }
     &.checked {
       border-color: $primary-color;
     }
@@ -102,6 +116,9 @@
     }
     label {
       cursor: pointer;
+      @media #{$large-phone} {
+        @include lato-regular-14;
+      }
     }
     input[type='checkbox'] {
       appearance: none;
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
index 785cd8e8e..5ce22033d 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
@@ -5,7 +5,6 @@ import { TypeModal } from '../../enum/typeModal.enum';
 import { Category } from '../../models/category.model';
 import { Filter } from '../../models/filter.model';
 import { Module } from '../../models/module.model';
-import { StructureCounter } from '../../models/structureCounter.model';
 import { SearchService } from '../../services/search.service';
 import { ActivatedRoute, Router } from '@angular/router';
 import { ButtonType } from '../../../shared/components/button/buttonType.enum';
@@ -26,8 +25,6 @@ export class StructureListSearchComponent implements OnInit {
 
   // Form search input
   public searchForm: FormGroup;
-  // Modal variable
-  public categories: Category[];
   public modalTypeOpened: TypeModal;
   // Checkbox variable
   public checkedModulesFilter: Module[];
@@ -38,11 +35,12 @@ export class StructureListSearchComponent implements OnInit {
   public numberEquipmentChecked = 0;
   public numberMoreFiltersChecked = 0;
 
-  public categoresTraining: Category[] = [];
-  public categoresAccompaniment: Category[] = [];
-  public categoresPublic: Category[] = [];
-  public categoresEquipment: Category[] = [];
-  public categoresMoreFilters: Category[] = [];
+  // Modal categories
+  public categoriesTraining: Category[] = [];
+  public categoriesAccompaniment: Category[] = [];
+  public categoriesPublic: Category[] = [];
+  public categoriesEquipment: Category[] = [];
+  public categoriesMoreFilters: Category[] = [];
 
   public queryString: string;
   // Modal confirmation variable
@@ -65,8 +63,9 @@ export class StructureListSearchComponent implements OnInit {
   }
   ngOnInit(): void {
     // Will store the different categories
+    this.getData();
     this.queryString = this.activatedRoute.snapshot.queryParamMap.get('search');
-    this.categories = [];
+    // this.categories = [];
     this.checkedModulesFilter = new Array();
     if (this.queryString) {
       const filters: Filter[] = [];
@@ -75,6 +74,18 @@ export class StructureListSearchComponent implements OnInit {
     }
   }
 
+  public convertModulesTofilters(modules: Module[], term?: string): Filter[] {
+    const filters: Filter[] = [];
+    if (term) {
+      filters.push(new Filter('query', term));
+    }
+    // Add checked box filter
+    modules.forEach((cm) => {
+      filters.push(new Filter(cm.text, cm.id, cm.displayText));
+    });
+    return filters;
+  }
+
   // Accessor to template angular.
   public get TypeModal(): typeof TypeModal {
     return TypeModal;
@@ -105,14 +116,7 @@ export class StructureListSearchComponent implements OnInit {
         relativeTo: this.route,
       });
     }
-    const filters: Filter[] = [];
-    if (term) {
-      filters.push(new Filter('query', term));
-    }
-    // Add checked box filter
-    this.checkedModulesFilter.forEach((cm) => {
-      filters.push(new Filter(cm.text, cm.id, cm.displayText));
-    });
+    const filters = this.convertModulesTofilters(this.checkedModulesFilter, term);
     // Send filters
     this.searchEvent.emit(filters);
   }
@@ -163,15 +167,34 @@ export class StructureListSearchComponent implements OnInit {
       return 0;
     }
   }
+
+  public getModalCategory(): Category[] {
+    switch (this.modalTypeOpened) {
+      case TypeModal.accompaniment:
+        return this.categoriesAccompaniment;
+      case TypeModal.training:
+        return this.categoriesTraining;
+
+      case TypeModal.public:
+        return this.categoriesPublic;
+
+      case TypeModal.equipments:
+        return this.categoriesEquipment;
+
+      case TypeModal.moreFilters:
+        return this.categoriesMoreFilters;
+      default:
+        throw new Error('Modal type not handle');
+    }
+  }
+
   // Open the modal and display the list according to the right filter button
   public openModal(modalType: TypeModal): void {
-    this.categories = [];
     // if modal already opened, reset type
     if (this.modalTypeOpened === modalType) {
       this.closeModal();
     } else if (this.modalTypeOpened !== modalType) {
       this.modalTypeOpened = modalType;
-      this.getData(modalType);
     }
   }
 
@@ -200,89 +223,62 @@ export class StructureListSearchComponent implements OnInit {
     this.applyFilter(inputTerm);
   }
 
-  // Get the correct list of checkbox/modules depending on the type of modal.
-  private getData(option: TypeModal): void {
-    if (option === TypeModal.accompaniment) {
-      forkJoin([
-        this.searchService.getCategoriesAccompaniment(),
-        this.searchService.getFakeCounterModule(this.checkedModulesFilter),
-      ]).subscribe((res) => {
-        const categories: Category[] = res[0];
-        const structureCounter: StructureCounter[] = res[1];
-        categories.forEach((category) => {
-          category = this.searchService.setCountModules(category, structureCounter);
-          this.categories.push(category);
-        });
-      });
-    } else if (option === TypeModal.training) {
-      forkJoin([
-        this.searchService.getCategoriesTraining(),
-        this.searchService.getFakeCounterModule(this.checkedModulesFilter),
-      ]).subscribe((res) => {
-        const categories: Category[] = res[0];
-        const structureCounter: StructureCounter[] = res[1];
-        categories.forEach((category) => {
-          category = this.searchService.setCountModules(category, structureCounter);
-          this.categories.push(category);
-        });
+  // Get the categories for each modal type
+  private getData(): void {
+    this.searchService.getCategoriesAccompaniment().subscribe((res) => {
+      const categories: Category[] = res;
+      categories.forEach((category) => {
+        this.categoriesAccompaniment.push(category);
       });
-    } else if (option === TypeModal.public) {
-      forkJoin([
-        this.searchService.getCategoriesPublic(),
-        this.searchService.getFakeCounterModule(this.checkedModulesFilter),
-      ]).subscribe((res) => {
-        const categories: Category[] = res[0];
-        const structureCounter: StructureCounter[] = res[1];
-        categories
-          .filter((category) => category.id === 'publicsAccompaniment')
-          .map((category) => {
-            category = this.searchService.setCountModules(category, structureCounter);
-            this.categories.push(category);
-          });
-      });
-    } else if (option === TypeModal.equipments) {
-      forkJoin([
-        this.searchService.getCategoriesEquipments(),
-        this.searchService.getFakeCounterModule(this.checkedModulesFilter),
-      ]).subscribe((res) => {
-        const categories: Category[] = res[0];
-        const structureCounter: StructureCounter[] = res[1];
-        categories
-          .filter((category) => category.id === 'equipmentsAndServices')
-          .map((category) => {
-            category = this.searchService.setCountModules(category, structureCounter);
-            this.categories.push(category);
-          });
+    });
+    this.searchService.getCategoriesTraining().subscribe((res) => {
+      const categories: Category[] = res;
+      categories.forEach((category) => {
+        this.categoriesTraining.push(category);
       });
-    } else if (option === TypeModal.moreFilters) {
-      forkJoin([
-        this.searchService.getCategoriesMoreFilters(),
-        this.searchService.getFakeCounterModule(this.checkedModulesFilter),
-      ]).subscribe((res) => {
-        const categories: Category[] = res[0];
-        const structureCounter: StructureCounter[] = res[1];
-        console.log('cate', categories);
-        categories.map((category) => {
-          category = this.searchService.setCountModules(category, structureCounter);
-          this.categories.push(category);
+    });
+    this.searchService.getCategoriesPublic().subscribe((res) => {
+      const categories: Category[] = res;
+      categories
+        .filter((cat) => cat.id === 'publicsAccompaniment')
+        .map((category) => {
+          this.categoriesPublic.push(category);
         });
-      });
-    }
+    });
+    this.searchService.getCategoriesEquipments().subscribe((res) => {
+      const categories: Category[] = res;
+      categories
+        .filter((cat) => cat.id === 'equipmentsAndServices')
+        .map((category) => {
+          this.categoriesEquipment.push(category);
+        });
+    });
+    this.searchService.getCategoriesMoreFilters().subscribe((res) => {
+      const categories: Category[] = res;
+      categories
+        .filter((cat) => cat.id === 'labelsQualifications' || cat.id === 'accessModality')
+        .map((category) => {
+          this.categoriesMoreFilters.push(category);
+        });
+    });
   }
+
   public resetFilters(): void {
     this.checkedModulesFilter = [];
-    this.categories = [];
     this.numberTrainingChecked = 0;
     this.numberAccompanimentChecked = 0;
     this.numberPublicChecked = 0;
     this.numberEquipmentChecked = 0;
     this.numberMoreFiltersChecked = 0;
-    this.searchEvent.emit(this.checkedModulesFilter);
+    const inputTerm = this.searchForm.get('searchTerm').value;
+    const filters = this.convertModulesTofilters(this.checkedModulesFilter, inputTerm);
+    this.searchEvent.emit(filters);
   }
   public removeFilter(module: Module): void {
     const index = this.checkedModulesFilter.findIndex((m: Module) => m.id === module.id);
     this.checkedModulesFilter.splice(index, 1);
-    console.log('filters', this.checkedModulesFilter);
-    this.searchEvent.emit(this.checkedModulesFilter);
+    const inputTerm = this.searchForm.get('searchTerm').value;
+    const filters = this.convertModulesTofilters(this.checkedModulesFilter, inputTerm);
+    this.searchEvent.emit(filters);
   }
 }
diff --git a/src/app/structure-list/services/search.service.ts b/src/app/structure-list/services/search.service.ts
index ad738f9e5..9507c7d61 100644
--- a/src/app/structure-list/services/search.service.ts
+++ b/src/app/structure-list/services/search.service.ts
@@ -39,22 +39,6 @@ export class SearchService {
       .pipe(map((data: any[]) => data.map((item) => new Category(item))));
   }
 
-  public getFakeCounterModule(selectedFilters: { id: string; text: string }[]): Observable<StructureCounter[]> {
-    return this.http
-      .post('/api/structures/count', selectedFilters)
-      .pipe(map((data: any[]) => data.map((item) => new StructureCounter(item))));
-  }
-  public setCountModules(category: Category, structureCountTab: StructureCounter[]): Category {
-    category.modules.forEach((m: Module) => {
-      for (let i = 0; i < structureCountTab.length; i++) {
-        if (structureCountTab[i].id === m.id) {
-          m.count = structureCountTab[i].count;
-        }
-      }
-    });
-    return category;
-  }
-
   public getIndex(array: Module[], id: string, categ: string): number {
     return array.findIndex((m: Module) => m.id === id && m.text === categ);
   }
-- 
GitLab


From ce0f39d7244d051ee1d708b90fc15c820311c600 Mon Sep 17 00:00:00 2001
From: "guilhem.carron" <gcarron@grandlyon.com>
Date: Tue, 15 Mar 2022 18:13:20 +0100
Subject: [PATCH 21/40] design fix responsive

---
 proxy.conf.json                               |  2 +-
 .../components/button/button.component.scss   |  4 +--
 .../modal-filter/modal-filter.component.html  |  6 ++---
 .../modal-filter/modal-filter.component.scss  |  1 +
 .../modal-filter/modal-filter.component.ts    |  4 +--
 .../structure-list-search.component.html      |  4 +--
 .../structure-list-search.component.scss      | 25 ++++++++++++-------
 src/assets/scss/_buttons.scss                 |  4 +--
 src/assets/scss/_typography.scss              | 13 ++++++++++
 9 files changed, 42 insertions(+), 21 deletions(-)

diff --git a/proxy.conf.json b/proxy.conf.json
index 9f8b1d711..0e6818fdb 100644
--- a/proxy.conf.json
+++ b/proxy.conf.json
@@ -1,6 +1,6 @@
 {
   "/api/*": {
-    "target": "http://localhost:3000",
+    "target": "http://localhost:3001",
     "secure": false,
     "changeOrigin": true,
     "logLevel": "debug"
diff --git a/src/app/shared/components/button/button.component.scss b/src/app/shared/components/button/button.component.scss
index bd8abaf72..73740013c 100644
--- a/src/app/shared/components/button/button.component.scss
+++ b/src/app/shared/components/button/button.component.scss
@@ -3,7 +3,7 @@
 @import '../../../../assets/scss/shapes';
 
 @mixin btn-bold {
-  @include lato-bold-14;
+  @include lato-bold-13;
   line-height: 18px;
 }
 @mixin btn-bold-underline {
@@ -11,7 +11,7 @@
   text-decoration: underline;
 }
 @mixin btn-regular {
-  @include lato-regular-14;
+  @include lato-regular-13;
   line-height: 19px;
 }
 button {
diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.html b/src/app/structure-list/components/modal-filter/modal-filter.component.html
index ae9194ac8..23e76e090 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.html
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.html
@@ -61,8 +61,8 @@
                       <input
                         type="checkbox"
                         [checked]="searchService.getIndex(checkedModules, module.id, c.id) > -1"
-                        [value]="module.text"
-                        (change)="onCheckboxChange($event, c.id)"
+                        [value]="module.id"
+                        (change)="onCheckboxChange($event, c.id, module.displayText)"
                       />
                       <span class="customCheck customCheckPrimary"></span>
                       <div class="label">{{ module.text }}</div>
@@ -129,7 +129,7 @@
                         <input
                           type="checkbox"
                           [checked]="searchService.getIndex(checkedModules, module.id, c.id) > -1"
-                          [value]="module.text"
+                          [value]="module.id"
                           (change)="onCheckboxChange($event, c.id)"
                         />
                         <span class="customCheck customCheckPrimary"></span>
diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.scss b/src/app/structure-list/components/modal-filter/modal-filter.component.scss
index d916f77e6..7935bd575 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.scss
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.scss
@@ -202,6 +202,7 @@
     border-radius: 0 0 8px 8px;
   }
   .headerMoreFilters {
+    position: relative;
     text-align: center;
     color: $grey-1;
     background: white;
diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.ts b/src/app/structure-list/components/modal-filter/modal-filter.component.ts
index 2e9ada6d9..c19c88bb3 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.ts
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.ts
@@ -29,10 +29,10 @@ export class ModalFilterComponent implements OnInit {
   }
 
   // Management of the checkbox event (Check / Uncheck)
-  public onCheckboxChange(event, categ: string): void {
+  public onCheckboxChange(event, categ: string, text?: string): void {
     const checkValue: string = event.target.value;
     if (event.target.checked) {
-      this.checkedModules.push(new Module(checkValue, categ, checkValue));
+      this.checkedModules.push(new Module(checkValue, categ, text ? text : checkValue));
     } else {
       // Check if the module is present in the list and remove it
       if (this.searchService.getIndex(this.checkedModules, checkValue, categ) > -1) {
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
index 7009fabab..1b04565d0 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
@@ -4,7 +4,7 @@
       class="inputSearch"
       [formGroup]="searchForm"
       fxLayout="row"
-      fxLayoutGap="16px"
+      fxLayoutGap="4px"
       fxLayoutAlign=" center"
       (ngSubmit)="applyFilter(searchForm.value.searchTerm)"
     >
@@ -23,7 +23,7 @@
       </div>
     </form>
     <div (clickOutside)="closeModal()">
-      <div class="btnSection" fxLayout="row" fxLayoutAlign="space-between center" fxLayoutGap="16px">
+      <div class="btnSection" fxLayout="row" fxLayoutAlign="space-between center" fxLayoutGap="4px">
         <button
           class="btn-filter isntPhoneContent"
           type="button"
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss b/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
index 6b5c76a6c..fd6664ad7 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
@@ -6,7 +6,7 @@
 @import '../../../../assets/scss/buttons';
 
 .block {
-  padding: 0 25px;
+  padding: 0 0.5rem;
   border-bottom: solid 1px $grey-4;
   @media #{$large-phone} {
     padding: 0 10px;
@@ -16,18 +16,22 @@
   margin-bottom: 0.5rem;
 
   input {
-    @include lato-regular-14;
+    @include lato-regular-13;
     @include input-search;
   }
   .inputSearch {
     padding: 6px 10px 6px 6px;
-    width: 300px;
-    min-width: 250px;
+    width: 200px;
+    min-width: 200px;
     background-color: $grey-8;
     color: $grey-3;
     height: 36px;
     border-radius: 50px;
-    margin-right: 1rem;
+    margin-right: 0.25rem;
+    @media #{$large-desktop} {
+      width: 300px;
+      min-width: 250px;
+    }
     @media #{$large-phone} {
       width: 100%;
       margin-bottom: 0.5rem;
@@ -49,8 +53,6 @@
 }
 .btnSection {
   button {
-    @include lato-regular-14;
-    font-size: 0.875rem !important;
     background: $white;
     height: 36px;
     border: 1px solid $grey-4;
@@ -58,9 +60,12 @@
     outline: none;
     border-radius: 50px;
     cursor: pointer;
-    white-space: nowrap;
+    // white-space: nowrap;
+    text-align: left;
     transition: all 300ms ease;
+    line-height: 110%;
     @include btn-normal;
+    @include lato-regular-13;
     &:hover:not(.selected) {
       background: $grey-7;
     }
@@ -105,6 +110,8 @@
     align-items: center;
     justify-content: center;
     transition: all 300ms ease;
+    @include lato-regular-13;
+    line-height: 110%;
     @media #{$large-phone} {
       width: max-content;
     }
@@ -117,7 +124,7 @@
     label {
       cursor: pointer;
       @media #{$large-phone} {
-        @include lato-regular-14;
+        @include lato-regular-13;
       }
     }
     input[type='checkbox'] {
diff --git a/src/assets/scss/_buttons.scss b/src/assets/scss/_buttons.scss
index 9d2af1f49..782f934f2 100644
--- a/src/assets/scss/_buttons.scss
+++ b/src/assets/scss/_buttons.scss
@@ -12,7 +12,7 @@
   border-radius: 4px;
   cursor: pointer;
   @include btn-normal;
-  @include lato-regular-14;
+  @include lato-regular-13;
   transition: all 300ms ease;
   & > * {
     transition: all 300ms ease;
@@ -40,7 +40,7 @@
   outline: none;
   border: 1px solid transparent;
   cursor: pointer;
-  @include lato-regular-14;
+  @include lato-regular-13;
   line-break: 18px;
 }
 @mixin btn-search-addStructure {
diff --git a/src/assets/scss/_typography.scss b/src/assets/scss/_typography.scss
index 08b4d0c87..7c48f5dee 100644
--- a/src/assets/scss/_typography.scss
+++ b/src/assets/scss/_typography.scss
@@ -3,6 +3,7 @@ $footer-text-font: 'Arial', 'Helvetica', sans-serif;
 $title-font: 'Lato', 'Helvetica', sans-serif;
 
 $font-size-xxsmall: 0.75em; // 12px
+$font-size-xmsmall: 0.813em; // 13px
 $font-size-xsmall: 0.875em; // 14px
 $font-size-small: 1em; // 16px
 
@@ -158,6 +159,18 @@ h6,
   font-weight: normal;
   font-size: $font-size-xsmall;
 }
+@mixin lato-regular-13 {
+  font-family: $text-font;
+  font-style: normal;
+  font-weight: normal;
+  font-size: $font-size-xmsmall;
+}
+@mixin lato-bold-13 {
+  font-family: $text-font;
+  font-style: normal;
+  font-weight: bold;
+  font-size: $font-size-xmsmall;
+}
 @mixin lato-regular-12 {
   font-family: $text-font;
   font-style: normal;
-- 
GitLab


From 404b9f3ef15e8a465e3ae2e41b5b52f3b77c40f0 Mon Sep 17 00:00:00 2001
From: Marlene Simondant <msimondant@grandlyon.com>
Date: Wed, 16 Mar 2022 12:25:36 +0100
Subject: [PATCH 22/40] feat(carto): structure details new design

---
 .../logo-card/logo-card.component.scss        |   5 +-
 .../text-input-modal.component.scss           |   7 +
 .../structure-details.component.html          | 816 ++++++++++--------
 .../structure-details.component.scss          | 102 ++-
 .../structure-details.component.ts            |  40 +
 src/assets/form/sprite.svg                    |   9 +
 src/assets/logos/accompagnantCaf.svg          |  84 +-
 src/assets/logos/aidantsConnect.svg           |  36 +-
 src/assets/logos/carsat.svg                   |  84 +-
 .../logos/conseillerNumFranceServices.svg     |  17 +-
 src/assets/logos/cpam.svg                     | 112 +--
 src/assets/logos/demarcheMetropolitaine.svg   |  44 +-
 src/assets/logos/espacePublicNumeriqueepn.svg |   8 +-
 src/assets/logos/fabriqueDeTerritoire.svg     |  10 +-
 src/assets/logos/grandLyonLaMetropole.svg     |  49 +-
 src/assets/logos/impots.svg                   |   6 +-
 src/assets/logos/logement.svg                 |   2 +-
 src/assets/logos/maisonFranceService.svg      |  68 +-
 src/assets/logos/passNumerique.svg            |  76 +-
 src/assets/logos/pix.svg                      |  50 +-
 src/assets/logos/poleEmploi.svg               |  48 +-
 21 files changed, 957 insertions(+), 716 deletions(-)

diff --git a/src/app/shared/components/logo-card/logo-card.component.scss b/src/app/shared/components/logo-card/logo-card.component.scss
index d0b199e61..71f52c165 100644
--- a/src/app/shared/components/logo-card/logo-card.component.scss
+++ b/src/app/shared/components/logo-card/logo-card.component.scss
@@ -2,7 +2,7 @@
 @import '../../../../assets/scss/color';
 
 img {
-  margin: 0 10px;
+  margin-right: 16px;
   width: 40px;
 }
 
@@ -12,6 +12,7 @@ p {
 }
 
 div {
-  padding: 16px 35px 16px 0;
   width: 250px;
+  min-height: 40px;
+  margin-bottom: 5px;
 }
diff --git a/src/app/shared/components/text-input-modal/text-input-modal.component.scss b/src/app/shared/components/text-input-modal/text-input-modal.component.scss
index 121cb0bdb..a085676ce 100644
--- a/src/app/shared/components/text-input-modal/text-input-modal.component.scss
+++ b/src/app/shared/components/text-input-modal/text-input-modal.component.scss
@@ -45,6 +45,13 @@
     transform: translateY(-50%);
   }
 }
+.modalBackground {
+  .modal {
+    .contentModal {
+      padding: 20px;
+    }
+  }
+}
 
 .textarea {
   padding: 13px 8px;
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 afcbc0bde..661ddeb77 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
@@ -1,6 +1,6 @@
 <div class="structure-details-container" *ngIf="structure && !isLoading">
   <!-- Header info -->
-  <div fxLayout="space-between wrap-reverse" class="sticky-title">
+  <div fxLayout="space-evenly wrap-reverse" class="sticky-title">
     <div fxLayout="column" class="no-margin" fxLayoutAlign="center center">
       <h2 class="bold">{{ structure.structureName }}</h2>
     </div>
@@ -9,409 +9,513 @@
     </div>
   </div>
 
-  <div class="buttons hide-on-print" fxLayout="row" fxLayoutAlign="space-between wrap">
-    <!-- Voir le conseiller numérique -->
-    <div class="clickableDiv" role="button" fxLayout="column">
-      <app-svg-icon
-        [type]="'ico'"
-        [icon]="'advisor'"
-        [iconClass]="'icon-32'"
-        fxLayoutAlign="space-evenly"
-      ></app-svg-icon>
-      Voir le conseiller numérique
-    </div>
-    <!-- Voir le site -->
-    <div class="clickableDiv" role="button" fxLayout="column">
-      <app-svg-icon [type]="'ico'" [icon]="'web'" [iconClass]="'icon-32'" fxLayoutAlign="space-evenly"></app-svg-icon>
-      Voir le site
-    </div>
-    <!-- Voir la plaquette -->
-    <div class="clickableDiv" role="button" fxLayout="column">
-      <app-svg-icon [type]="'ico'" [icon]="'docs'" [iconClass]="'icon-32'"></app-svg-icon>
-      Voir la plaquette
-    </div>
-    <!-- Imprimer -->
-    <div class="clickableDiv" role="button" class="printButton" class="hide-on-print" (action)="print()">
-      <app-svg-icon [type]="'ico'" [icon]="'printStructure'" [iconClass]="'icon-32'"></app-svg-icon>
-      Imprimer
-    </div>
-    <!-- Signaler une erreur -->
-    <div
-      class="clickableDiv"
-      role="button"
-      fxLayout="column"
-      fxLayoutAlign="space-between center"
-      (click)="displayModalError()"
-      tabindex="0"
-    >
-      <app-svg-icon [type]="'ico'" [icon]="'watch'" [iconClass]="'icon-32'"></app-svg-icon>
-      Signaler une erreur
-    </div>
-    <!-- Je travaille ici -->
-    <div class="clickableDiv" role="button" fxLayout="column" *ngIf="displayJoin()" (click)="handleJoin()" tabindex="0">
-      <app-svg-icon [type]="'ico'" [icon]="'workhere'" [iconClass]="'icon-32'"></app-svg-icon>
-      Je travaille ici
-    </div>
-  </div>
-
   <div class="structure-details-content">
-    <div fxLayout="row" class="structure-details-block" fxLayoutAlign="baseline baseline" fxLayoutGap="8px">
-      <div fxLayout="column" fxLayoutGap="10px" fxFlex="100%">
-        <div fxLayout="row" fxLayoutAlign="space-between center">
-          <!-- ADMIN (suppr?)-->
-          <div *ngIf="profileService.isAdmin()" class="hide-on-print">
-            Administrateur(s) de cette structure:
-            <div *ngIf="structureAdmins.length === 0">Aucun administrateur</div>
-            <div *ngIf="structureAdmins.length > 0">
-              <div *ngFor="let structureAdmin of structureAdmins">
-                {{ structureAdmin.email }}
-              </div>
-            </div>
-          </div>
-        </div>
+    <div class="buttons hide-on-print" fxLayout="row" fxLayoutAlign="space-evenly">
+      <!-- Voir le conseiller numérique - Hidden until functionnality is developed -->
+      <!--div class="clickableDiv" role="button" fxLayout="column">
+        <app-svg-icon
+          [type]="'ico'"
+          [icon]="'advisor'"
+          [iconClass]="'icon-32'"
+          fxLayoutAlign="space-evenly"
+        ></app-svg-icon>
+        <div class="iconTitle" fxLayfxLayoutAlignout="center center">Voir le conseiller numérique</div>
+      </div-->
+      <!-- Voir le site -->
+      <div class="clickableDiv" role="button" *ngIf="structure.website" fxLayout="column">
+        <a href="{{ structure.website }}" target="_blank">
+          <app-svg-icon
+            [type]="'ico'"
+            [icon]="'web'"
+            [iconClass]="'icon-32'"
+            fxLayoutAlign="space-evenly"
+          ></app-svg-icon>
+          <div class="iconTitle" fxLayoutAlign="center center">Voir le site</div>
+        </a>
+      </div>
+      <!-- Voir la plaquette - Hidden until functionnality is developed -->
+      <!--div class="clickableDiv" role="button" fxLayout="column">
+        <app-svg-icon [type]="'ico'" [icon]="'docs'" [iconClass]="'icon-32'"></app-svg-icon>
+        <div class="iconTitle" fxLayoutAlign="center center">Voir la plaquette</div>
+      </div-->
+      <!-- Imprimer -->
+      <div role="button" class="printButton" class="hide-on-print clickableDiv" (click)="print()">
+        <app-svg-icon [type]="'ico'" [icon]="'printStructure'" [iconClass]="'icon-32'"></app-svg-icon>
+        <div class="iconTitle" fxLayoutAlign="center center">Imprimer</div>
+      </div>
+      <!-- Signaler une erreur -->
+      <div
+        class="clickableDiv"
+        role="button"
+        fxLayout="column"
+        fxLayoutAlign="space-between center"
+        (click)="displayModalError()"
+        tabindex="0"
+      >
+        <app-svg-icon [type]="'ico'" [icon]="'watch'" [iconClass]="'icon-32'"></app-svg-icon>
+        <div class="iconTitle" fxLayoutAlign="center center">Signaler une erreur</div>
+      </div>
+      <!-- Je travaille ici -->
+      <div class="clickableDiv" role="button" fxLayout="column" (click)="handleJoin()" tabindex="0">
+        <app-svg-icon [type]="'ico'" [icon]="'workhere'" [iconClass]="'icon-32'"></app-svg-icon>
+        <div class="iconTitle" fxLayoutAlign="center center">Je travaille ici</div>
+      </div>
+    </div>
 
-        <!-- Informations-->
-        <div fxLayout="row" class="mobile-column">
-          <div fxLayout="column">
-            <h2>Informations</h2>
-            <div class="info-block">
-              <div fxLayout="row">
-                {{ structure.structureName }}
-              </div>
-              <div *ngIf="structure.address" fxLayout="row">
-                {{ structure.address.numero }} {{ structure.address.street }}, {{ structure.address.commune }}
-              </div>
-              <div *ngIf="structure.contactPhone" fxLayout="row">
-                {{ structure.contactPhone | phone }}
-              </div>
-              <div *ngIf="structure.contactMail && structure.contactMail !== 'unknown@unknown.com'" fxLayout="row">
-                {{ structure.contactMail }}
+    <div class="structure-details-content">
+      <div fxLayout="row" class="structure-details-block" fxLayoutAlign="baseline baseline" fxLayoutGap="8px">
+        <div fxLayout="column" fxLayoutGap="10px" fxFlex="100%">
+          <!-- Informations-->
+          <div fxLayout="row" class="mobile-column">
+            <div fxLayout="column">
+              <h2>Informations</h2>
+              <div class="info-block">
+                <div *ngIf="structure.getLabelTypeStructure()" fxLayout="row">
+                  {{ structure.getLabelTypeStructure() }}
+                </div>
+                <div *ngIf="structure.structureName" fxLayout="row">
+                  {{ structure.structureName }}
+                </div>
+                <div *ngIf="structure.address" fxLayout="row">
+                  {{ structure.address.numero }} {{ structure.address.street }}, {{ structure.address.commune }}
+                </div>
+                <div *ngIf="structure.contactPhone" fxLayout="row">
+                  {{ structure.contactPhone | phone }}
+                </div>
+                <div *ngIf="structure.contactMail && structure.contactMail !== 'unknown@unknown.com'" fxLayout="row">
+                  <a href="mailto:{{ structure.contactMail }}">{{ structure.contactMail }}</a>
+                </div>
               </div>
-            </div>
 
-            <!-- Social networks-->
-            <div *ngIf="structure.hasSocialNetwork()" fxLayout="row" fxLayoutAlign="none baseline" fxLayoutGap="13px">
-              <div fxLayout="row" fxLayoutAlign="none baseline" fxLayoutGap="8px">
-                <a
-                  *ngIf="structure.facebook"
-                  target="_blank"
-                  class="custom-link"
-                  rel="noopener noreferrer"
-                  [href]="'http://' + structure.facebook"
-                >
-                  <app-svg-icon
-                    [type]="'ico'"
-                    [icon]="'facebook'"
-                    [title]="'Facebook'"
-                    [iconClass]="'icon-30'"
-                  ></app-svg-icon
-                ></a>
-                <a
-                  *ngIf="structure.twitter"
-                  target="_blank"
-                  class="custom-link"
-                  rel="noopener noreferrer"
-                  [href]="'http://' + structure.twitter"
-                >
-                  <app-svg-icon
-                    [type]="'ico'"
-                    [icon]="'twitter'"
-                    [title]="'Twitter'"
-                    [iconClass]="'icon-30'"
-                  ></app-svg-icon
-                ></a>
-                <a
-                  *ngIf="structure.instagram"
-                  target="_blank"
-                  class="custom-link"
-                  rel="noopener noreferrer"
-                  [href]="'http://' + structure.instagram"
-                >
-                  <app-svg-icon
-                    [type]="'ico'"
-                    [icon]="'instagram'"
-                    [title]="'Instagram'"
-                    [iconClass]="'icon-30'"
-                  ></app-svg-icon
-                ></a>
-                <a
-                  *ngIf="structure.linkedin"
-                  target="_blank"
-                  class="custom-link"
-                  rel="noopener noreferrer"
-                  [href]="'http://' + structure.linkedin"
-                >
-                  <app-svg-icon
-                    [type]="'ico'"
-                    [icon]="'linkedin'"
-                    [title]="'Linkedin'"
-                    [iconClass]="'icon-30'"
-                  ></app-svg-icon
-                ></a>
+              <!-- Social networks-->
+              <div *ngIf="structure.hasSocialNetwork()" fxLayout="row" fxLayoutAlign="none baseline" fxLayoutGap="13px">
+                <div fxLayout="row" fxLayoutAlign="none baseline" fxLayoutGap="4px">
+                  <a
+                    *ngIf="structure.facebook"
+                    target="_blank"
+                    class="custom-link"
+                    rel="noopener noreferrer"
+                    [href]="'http://' + structure.facebook"
+                  >
+                    <app-svg-icon
+                      [type]="'ico'"
+                      [icon]="'facebook'"
+                      [title]="'Facebook'"
+                      [iconClass]="'icon-30'"
+                    ></app-svg-icon
+                  ></a>
+                  <a
+                    *ngIf="structure.twitter"
+                    target="_blank"
+                    class="custom-link"
+                    rel="noopener noreferrer"
+                    [href]="'http://' + structure.twitter"
+                  >
+                    <app-svg-icon
+                      [type]="'ico'"
+                      [icon]="'twitter'"
+                      [title]="'Twitter'"
+                      [iconClass]="'icon-30'"
+                    ></app-svg-icon
+                  ></a>
+                  <a
+                    *ngIf="structure.instagram"
+                    target="_blank"
+                    class="custom-link"
+                    rel="noopener noreferrer"
+                    [href]="'http://' + structure.instagram"
+                  >
+                    <app-svg-icon
+                      [type]="'ico'"
+                      [icon]="'instagram'"
+                      [title]="'Instagram'"
+                      [iconClass]="'icon-30'"
+                    ></app-svg-icon
+                  ></a>
+                  <a
+                    *ngIf="structure.linkedin"
+                    target="_blank"
+                    class="custom-link"
+                    rel="noopener noreferrer"
+                    [href]="'http://' + structure.linkedin"
+                  >
+                    <app-svg-icon
+                      [type]="'ico'"
+                      [icon]="'linkedin'"
+                      [title]="'Linkedin'"
+                      [iconClass]="'icon-30'"
+                    ></app-svg-icon
+                  ></a>
+                </div>
               </div>
             </div>
           </div>
-        </div>
 
-        <div class="description">{{ structure.description }}</div>
-        <div class="info">
-          {{ structure.lockdownActivity }}
+          <div class="description">{{ structure.description }}</div>
+          <div class="info">
+            {{ structure.lockdownActivity }}
+          </div>
         </div>
       </div>
-    </div>
 
-    <div
-      *ngIf="structure.accessModality.length > 0 || structure.hours.hasData() || structure.remoteAccompaniment"
-      fxLayout="column"
-      class="structure-details-block"
-      fxLayoutAlign="baseline baseline"
-      fxLayoutGap="20px"
-    >
-      <!-- Opening Hours -->
-      <div fxLayout="row" class="w-100 mobile-column">
-        <div *ngIf="structure.hours.hasData()" fxFlex="50%">
-          <h2>Horaires d’ouverture</h2>
-          <div fxLayout="column" class="opening-hours">
-            <div *ngFor="let day of structure.hours | keyvalue: keepOriginalOrder" fxLayout="row">
-              <div *ngIf="day.value.open" fxLayout="row">
-                <h4 class="day">{{ day.key | day }}</h4>
-                <div class="opening-time" fxLayout="column" fxLayoutAlign="none flex-start">
-                  <div *ngFor="let timeRange of day.value.time; let isFirst = first">
-                    <p *ngIf="isFirst && timeRange.opening">
-                      {{ timeRange.formatOpeningDate() }} à {{ timeRange.formatClosingDate() }}
-                    </p>
-                    <p *ngIf="!isFirst && timeRange.opening">
-                      {{ timeRange.formatOpeningDate() }} à {{ timeRange.formatClosingDate() }}
-                    </p>
+      <div
+        *ngIf="structure.accessModality.length > 0 || structure.hours.hasData() || structure.remoteAccompaniment"
+        fxLayout="column"
+        class="structure-details-block"
+        fxLayoutAlign="baseline baseline"
+        fxLayoutGap="20px"
+      >
+        <!-- Opening Hours -->
+        <div fxLayout="row" class="w-100 mobile-column">
+          <div *ngIf="structure.hours.hasData()" fxFlex="50%">
+            <h2>Horaires d’ouverture</h2>
+            <div fxLayout="column" class="opening-hours">
+              <div *ngFor="let day of structure.hours | keyvalue: keepOriginalOrder" fxLayout="row">
+                <div *ngIf="day.value.open" fxLayout="row">
+                  <h4 class="day">{{ day.key | day }}</h4>
+                  <div class="opening-time" fxLayout="column" fxLayoutAlign="none flex-start">
+                    <div *ngFor="let timeRange of day.value.time; let isFirst = first" class="daily-opening-time">
+                      <p *ngIf="isFirst && timeRange.opening">
+                        {{ timeRange.formatOpeningDate() }} - {{ timeRange.formatClosingDate() }}
+                      </p>
+                      <p *ngIf="!isFirst && timeRange.opening">
+                        {{ timeRange.formatOpeningDate() }} - {{ timeRange.formatClosingDate() }}
+                      </p>
+                    </div>
                   </div>
                 </div>
               </div>
             </div>
           </div>
-        </div>
 
-        <!-- services -->
-        <div *ngIf="structure.accessModality.length > 0" fxFlex="50%">
-          <h2>Services</h2>
-          <div fxLayout="column" fxLayoutGap="10px" class="listItems">
-            <div fxLayout="column" fxLayoutGap="8px">
+          <!-- services -->
+          <div *ngIf="structure.accessModality.length > 0" fxFlex="50%">
+            <h2>Services</h2>
+            <div fxLayout="column" fxLayoutGap="10px" class="listItems">
+              <div fxLayout="column" fxLayoutGap="8px">
+                <div
+                  fxLayout="row"
+                  fxLayoutAlign="none flex-end"
+                  fxLayoutGap="8px"
+                  *ngFor="let acces of structure.accessModality"
+                >
+                  <p>{{ getAccessLabel(acces) }}</p>
+                </div>
+                <p *ngIf="structure.pmrAccess">Accessible aux personnes à mobilité réduite</p>
+              </div>
               <div
+                *ngFor="let public of structure.publics"
                 fxLayout="row"
                 fxLayoutAlign="none flex-end"
                 fxLayoutGap="8px"
-                *ngFor="let acces of structure.accessModality"
               >
-                <p>{{ getAccessLabel(acces) }}</p>
+                <p>{{ getPublicLabel(public) }}</p>
+              </div>
+              <div
+                *ngFor="let accompaniment of structure.publicsAccompaniment"
+                fxLayout="row"
+                fxLayoutAlign="none flex-end"
+                fxLayoutGap="8px"
+              >
+                <p>{{ accompaniment }}</p>
               </div>
-              <p *ngIf="structure.pmrAccess">Accessible aux personnes à mobilité réduite</p>
-            </div>
-            <div
-              *ngFor="let public of structure.publics"
-              fxLayout="row"
-              fxLayoutAlign="none flex-end"
-              fxLayoutGap="8px"
-            >
-              <p>{{ getPublicLabel(public) }}</p>
-            </div>
-            <div
-              *ngFor="let accompaniment of structure.publicsAccompaniment"
-              fxLayout="row"
-              fxLayoutAlign="none flex-end"
-              fxLayoutGap="8px"
-            >
-              <p>{{ accompaniment }}</p>
             </div>
           </div>
         </div>
+        <div *ngIf="structure.exceptionalClosures" class="bold-info">
+          <p class="description">{{ structure.exceptionalClosures }}</p>
+        </div>
+        <div *ngIf="structure.remoteAccompaniment" class="bold-info">
+          <h3>Cette structure propose un accompagnement à distance.</h3>
+        </div>
       </div>
-      <div *ngIf="structure.exceptionalClosures" class="bold-info">
-        <h3 class="subtitle">Précisions sur les horaires</h3>
-        <p class="description">{{ structure.exceptionalClosures }}</p>
-      </div>
-      <div *ngIf="structure.remoteAccompaniment" class="bold-info">
-        <h3>Cette structure propose un accompagnement à distance.</h3>
-      </div>
-    </div>
 
-    <!-- Aides numérique -->
-    <div
-      *ngIf="structure.proceduresAccompaniment.length || structure.otherDescription"
-      fxLayout="column"
-      class="structure-details-block"
-      fxLayoutAlign="baseline baseline"
-      fxLayoutGap="20px"
-    >
-      <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-        <h2>Aide numérique</h2>
-      </div>
-      <div fxLayout="column">
+      <!-- Labellisation -->
+      <div
+        *ngIf="structure.labelsQualifications.length"
+        fxLayout="column"
+        class="structure-details-block"
+        fxLayoutAlign="baseline baseline"
+        fxLayoutGap="20px"
+      >
+        <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
+          <h2>Labelisation</h2>
+        </div>
         <div fxLayout="row wrap" fxLayoutGap="24px">
-          <div *ngFor="let accompagnement of structure.proceduresAccompaniment">
-            <app-logo-card *ngIf="accompagnement != 'autres'" [name]="accompagnement"></app-logo-card>
+          <div *ngFor="let labels of structure.labelsQualifications">
+            <app-logo-card [name]="labels"></app-logo-card>
           </div>
         </div>
-        <p *ngIf="structure.otherDescription" fxLayout="column">
-          {{ structure.otherDescription }}
-        </p>
       </div>
-    </div>
 
-    <!-- Formation -->
-    <div
-      *ngIf="
-        isBaseSkills() || isAccessRights() || isParentingHelp() || isSocialAndProfessional() || isDigitalSecurity()
-      "
-      fxLayout="column"
-      class="structure-details-block"
-      fxLayoutAlign="baseline baseline"
-      fxLayoutGap="20px"
-    >
-      <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-        <app-svg-icon [type]="'ico'" [icon]="'services'" [iconClass]="'icon-32'"></app-svg-icon>
-        <h2 *ngIf="multipleWorkshop()">Ateliers</h2>
-        <h2 *ngIf="!multipleWorkshop()">Atelier</h2>
-      </div>
-      <div *ngIf="structure.freeWorkShop">
-        <span *ngIf="multipleWorkshop()" class="bold-info">L'accès à ces ateliers est gratuit</span>
-        <span *ngIf="!multipleWorkshop()" class="bold-info">L'accès à cet atelier est gratuit</span>
-      </div>
-      <div *ngIf="!structure.freeWorkShop">
-        <span *ngIf="multipleWorkshop()" class="bold-info">L'accès à ces ateliers est payant</span>
-        <span *ngIf="!multipleWorkshop()" class="bold-info">L'accès à cet atelier est payant</span>
-      </div>
-      <div class="wrapper">
-        <div *ngIf="isBaseSkills()">
-          <h3 class="subtitle">Compétences de base</h3>
-          <p *ngFor="let skill of baseSkills">{{ skill.text }}</p>
-        </div>
-        <div *ngIf="isAccessRights()">
-          <h3 class="subtitle">Accès aux droits</h3>
-          <p *ngFor="let rights of accessRights">{{ rights.text }}</p>
-        </div>
-        <div *ngIf="isParentingHelp()">
-          <h3 class="subtitle">Aide à la parentalité</h3>
-          <p *ngFor="let help of parentingHelp">{{ help.text }}</p>
-        </div>
-        <div *ngIf="isSocialAndProfessional()">
-          <h3 class="subtitle">Insertion sociale et professionnelle</h3>
-          <p *ngFor="let skill of socialAndProfessional">{{ skill.text }}</p>
+      <!-- Aides numérique -->
+      <div
+        *ngIf="structure.proceduresAccompaniment.length || structure.otherDescription"
+        fxLayout="column"
+        class="structure-details-block"
+        fxLayoutAlign="baseline baseline"
+        fxLayoutGap="20px"
+      >
+        <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
+          <h2>Aide numérique</h2>
         </div>
-        <div *ngIf="isDigitalSecurity()">
-          <h3 class="subtitle">Culture et sécurité numérique</h3>
-          <p *ngFor="let skill of digitalCultureSecurity">{{ skill.text }}</p>
+        <div fxLayout="column">
+          <div fxLayout="row wrap" fxLayoutGap="24px">
+            <div *ngFor="let accompagnement of structure.proceduresAccompaniment">
+              <app-logo-card *ngIf="accompagnement != 'autres'" [name]="accompagnement"></app-logo-card>
+            </div>
+          </div>
+          <p *ngIf="structure.otherDescription" fxLayout="column">
+            {{ structure.otherDescription }}
+          </p>
         </div>
       </div>
-    </div>
 
-    <!-- Matériel et wifi -->
-    <div
-      *ngIf="structure.hasEquipments()"
-      fxLayout="column"
-      class="structure-details-block"
-      fxLayoutAlign="baseline baseline"
-    >
-      <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-        <h2>Matériel et wifi</h2>
-      </div>
-      <div fxLayout="column">
-        <p *ngFor="let equipement of filterOnlyEquipments(structure.equipmentsAndServices)" class="no-margin-bottom">
-          <span *ngIf="equipement == 'ordinateurs' && structure.nbComputers"
-            >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbComputers }}</span
-          >
-          <span *ngIf="equipement == 'tablettes' && structure.nbTablets"
-            >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbTablets }}</span
-          >
-          <span *ngIf="equipement == 'bornesNumeriques' && structure.nbNumericTerminal">
-            {{ getEquipmentsLabel(equipement) }} : {{ structure.nbNumericTerminal }}</span
-          >
-          <span *ngIf="equipement == 'imprimantes' && structure.nbPrinters"
-            >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbPrinters }}</span
-          >
-          <span *ngIf="equipement == 'scanners' && structure.nbScanners"
-            >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbScanners }}</span
+      <!-- Formation -->
+      <div
+        *ngIf="
+          isBaseSkills() || isAccessRights() || isParentingHelp() || isSocialAndProfessional() || isDigitalSecurity()
+        "
+        fxLayout="column"
+        class="structure-details-block"
+        fxLayoutAlign="baseline baseline"
+        fxLayoutGap="20px"
+      >
+        <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
+          <h2>Formation</h2>
+        </div>
+        <div *ngIf="structure.freeWorkShop">
+          <span *ngIf="multipleWorkshop()" class="bold-info">L'accès à ces formations est gratuit</span>
+          <span *ngIf="!multipleWorkshop()" class="bold-info">L'accès à cette formation est gratuit</span>
+        </div>
+        <div class="formationDetails">
+          <!--Toggle BaseSkills-->
+          <div *ngIf="isBaseSkills()" class="collapse" [ngClass]="{ notCollapsed: !showBaseSkills }">
+            <div fxLayout="column">
+              <div
+                class="collapseHeader"
+                fxLayout="row"
+                fxLayoutGap="20px"
+                fxLayoutAlign=" center"
+                (click)="toggleBaseSkills()"
+              >
+                <div class="titleCollapse">Compétences de base</div>
+                <div class="logo">
+                  <svg class="show" aria-hidden="true">
+                    <use [attr.xlink:href]="'assets/form/sprite.svg#unfold'"></use>
+                  </svg>
+                  <svg class="hide" aria-hidden="true">
+                    <use [attr.xlink:href]="'assets/form/sprite.svg#fold'"></use>
+                  </svg>
+                </div>
+              </div>
+              <div *ngIf="showBaseSkills" class="detailsContainer">
+                <div class="details" *ngFor="let skill of baseSkills">{{ skill.text }}</div>
+              </div>
+            </div>
+          </div>
+          <!--Toggle accessRights-->
+          <div *ngIf="isAccessRights()" class="collapse" [ngClass]="{ notCollapsed: !showAccessRights }">
+            <div fxLayout="column">
+              <div
+                class="collapseHeader"
+                fxLayout="row"
+                fxLayoutGap="20px"
+                fxLayoutAlign=" center"
+                (click)="toggleAccessRights()"
+              >
+                <div class="titleCollapse">Accès aux droits</div>
+                <div class="logo">
+                  <svg class="show" aria-hidden="true">
+                    <use [attr.xlink:href]="'assets/form/sprite.svg#unfold'"></use>
+                  </svg>
+                  <svg class="hide" aria-hidden="true">
+                    <use [attr.xlink:href]="'assets/form/sprite.svg#fold'"></use>
+                  </svg>
+                </div>
+              </div>
+              <div *ngIf="showAccessRights" class="detailsContainer">
+                <div class="details" *ngFor="let rights of accessRights">{{ rights.text }}</div>
+              </div>
+            </div>
+          </div>
+          <!--Toggle parentingHelp-->
+          <div *ngIf="isParentingHelp()" class="collapse" [ngClass]="{ notCollapsed: !showParentingHelp }">
+            <div fxLayout="column">
+              <div
+                class="collapseHeader"
+                fxLayout="row"
+                fxLayoutGap="20px"
+                fxLayoutAlign=" center"
+                (click)="toggleParentingHelp()"
+              >
+                <div class="titleCollapse">Accès aux droits</div>
+                <div class="logo">
+                  <svg class="show" aria-hidden="true">
+                    <use [attr.xlink:href]="'assets/form/sprite.svg#unfold'"></use>
+                  </svg>
+                  <svg class="hide" aria-hidden="true">
+                    <use [attr.xlink:href]="'assets/form/sprite.svg#fold'"></use>
+                  </svg>
+                </div>
+              </div>
+              <div *ngIf="showParentingHelp" class="detailsContainer">
+                <div class="details" *ngFor="let help of parentingHelp">{{ help.text }}</div>
+              </div>
+            </div>
+          </div>
+          <!--Toggle socialAndProfessional-->
+          <div
+            *ngIf="isSocialAndProfessional()"
+            class="collapse"
+            [ngClass]="{ notCollapsed: !showSocialAndProfessional }"
           >
-          <span *ngIf="equipement == 'wifiEnAccesLibre'">{{ getEquipmentsLabel(equipement) }}</span>
-        </p>
-      </div>
-    </div>
-
-    <!-- Labellisation -->
-    <div
-      *ngIf="structure.labelsQualifications.length"
-      fxLayout="column"
-      class="structure-details-block"
-      fxLayoutAlign="baseline baseline"
-      fxLayoutGap="20px"
-    >
-      <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-        <h2>Labelisation</h2>
-      </div>
-      <div fxLayout="row wrap" fxLayoutGap="24px">
-        <div *ngFor="let labels of structure.labelsQualifications">
-          <app-logo-card [name]="labels"></app-logo-card>
+            <div fxLayout="column">
+              <div
+                class="collapseHeader"
+                fxLayout="row"
+                fxLayoutGap="20px"
+                fxLayoutAlign=" center"
+                (click)="toggleSocialAndProfessional()"
+              >
+                <div class="titleCollapse">Insertion sociale et professionnelle</div>
+                <div class="logo">
+                  <svg class="show" aria-hidden="true">
+                    <use [attr.xlink:href]="'assets/form/sprite.svg#unfold'"></use>
+                  </svg>
+                  <svg class="hide" aria-hidden="true">
+                    <use [attr.xlink:href]="'assets/form/sprite.svg#fold'"></use>
+                  </svg>
+                </div>
+              </div>
+              <div *ngIf="showSocialAndProfessional" class="detailsContainer">
+                <div class="details" *ngFor="let skill of socialAndProfessional">{{ skill.text }}</div>
+              </div>
+            </div>
+          </div>
+          <!--Toggle digitalSecurity-->
+          <div *ngIf="isDigitalSecurity()" class="collapse" [ngClass]="{ notCollapsed: !showDigitalSecurity }">
+            <div fxLayout="column">
+              <div
+                class="collapseHeader"
+                fxLayout="row"
+                fxLayoutGap="20px"
+                fxLayoutAlign=" center"
+                (click)="toggleDigitalSecurity()"
+              >
+                <div class="titleCollapse">Insertion sociale et professionnelle</div>
+                <div class="logo">
+                  <svg class="show" aria-hidden="true">
+                    <use [attr.xlink:href]="'assets/form/sprite.svg#unfold'"></use>
+                  </svg>
+                  <svg class="hide" aria-hidden="true">
+                    <use [attr.xlink:href]="'assets/form/sprite.svg#fold'"></use>
+                  </svg>
+                </div>
+              </div>
+              <div *ngIf="showDigitalSecurity" class="detailsContainer">
+                <div class="details" *ngFor="let skill of digitalCultureSecurity">{{ skill.text }}</div>
+              </div>
+            </div>
+          </div>
         </div>
-      </div>
-    </div>
 
-    <!-- Transport -->
-    <div
-      *ngIf="tclStopPoints.length"
-      fxLayout="column"
-      class="structure-details-block"
-      fxLayoutAlign="baseline baseline"
-      fxLayoutGap="20px"
-    >
-      <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-        <h2>Accès</h2>
-      </div>
-      <div fxLayout="column wrap" fxLayoutGap="24px">
-        <div *ngFor="let tclStop of tclStopPoints | slice: 0:3">
-          {{ tclStop.name }}
-          <div fxLayout="row wrap" fxLayoutGap="24px">
-            <p *ngFor="let sub of tclStop.subLines">
-              <app-svg-icon [type]="'tcl'" [icon]="sub" [iconClass]="'icon-75'"></app-svg-icon>
-            </p>
-            <p *ngFor="let tram of tclStop.tramLines">
-              <app-svg-icon [type]="'tcl'" [icon]="tram" [iconClass]="'icon-75'"></app-svg-icon>
-            </p>
-            <p *ngFor="let bus of tclStop.busLines">
-              <app-svg-icon [type]="'tcl'" [icon]="bus" [iconClass]="'icon-75'"></app-svg-icon>
+        <!-- Matériel et wifi -->
+        <div
+          *ngIf="structure.hasEquipments()"
+          fxLayout="column"
+          class="structure-details-block"
+          fxLayoutAlign="baseline baseline"
+        >
+          <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
+            <h2>Matériel et wifi</h2>
+          </div>
+          <div fxLayout="column">
+            <p
+              *ngFor="let equipement of filterOnlyEquipments(structure.equipmentsAndServices)"
+              class="no-margin-bottom"
+            >
+              <span *ngIf="equipement == 'ordinateurs' && structure.nbComputers"
+                >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbComputers }}</span
+              >
+              <span *ngIf="equipement == 'tablettes' && structure.nbTablets"
+                >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbTablets }}</span
+              >
+              <span *ngIf="equipement == 'bornesNumeriques' && structure.nbNumericTerminal">
+                {{ getEquipmentsLabel(equipement) }} : {{ structure.nbNumericTerminal }}</span
+              >
+              <span *ngIf="equipement == 'imprimantes' && structure.nbPrinters"
+                >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbPrinters }}</span
+              >
+              <span *ngIf="equipement == 'scanners' && structure.nbScanners"
+                >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbScanners }}</span
+              >
+              <span *ngIf="equipement == 'wifiEnAccesLibre'">{{ getEquipmentsLabel(equipement) }}</span>
             </p>
           </div>
         </div>
-      </div>
 
-      <div fxLayout="column" fxFlex="50%">
-        <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="13px">
-          <p class="updated">Mise à jour le {{ structure.updatedAt | date: 'mediumDate' }}</p>
+        <!-- Transport -->
+        <div
+          *ngIf="tclStopPoints.length"
+          fxLayout="column"
+          class="structure-details-block"
+          fxLayoutAlign="baseline baseline"
+          fxLayoutGap="20px"
+        >
+          <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
+            <h2>Accès</h2>
+          </div>
+          <div fxLayout="column wrap" fxLayoutGap="24px">
+            <div *ngFor="let tclStop of tclStopPoints | slice: 0:3">
+              {{ tclStop.name }}
+              <div fxLayout="row wrap" fxLayoutGap="24px">
+                <p *ngFor="let sub of tclStop.subLines">
+                  <app-svg-icon [type]="'tcl'" [icon]="sub" [iconClass]="'icon-75'"></app-svg-icon>
+                </p>
+                <p *ngFor="let tram of tclStop.tramLines">
+                  <app-svg-icon [type]="'tcl'" [icon]="tram" [iconClass]="'icon-75'"></app-svg-icon>
+                </p>
+                <p *ngFor="let bus of tclStop.busLines">
+                  <app-svg-icon [type]="'tcl'" [icon]="bus" [iconClass]="'icon-75'"></app-svg-icon>
+                </p>
+              </div>
+            </div>
+          </div>
+
+          <div fxLayout="column" fxFlex="50%">
+            <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="13px">
+              <p class="updated">Mise à jour le {{ structure.updatedAt | date: 'mediumDate' }}</p>
+            </div>
+          </div>
         </div>
       </div>
     </div>
   </div>
-</div>
 
-<app-modal-confirmation
-  [openned]="claimModalOpenned"
-  [content]="
-    'Voulez-vous vraiment revendiquer cette structure&nbsp;? Une demande sera envoyée à l\'administrateur pour validation'
-  "
-  (closed)="claimStructure($event)"
-></app-modal-confirmation>
+  <app-modal-confirmation
+    [openned]="claimModalOpenned"
+    [content]="
+      'Voulez-vous vraiment revendiquer cette structure&nbsp;? Une demande sera envoyée à l\'administrateur pour validation'
+    "
+    (closed)="claimStructure($event)"
+  ></app-modal-confirmation>
 
-<app-modal-confirmation
-  [openned]="joinModalOpenned"
-  [content]="
-    'Voulez-vous vraiment rejoindre cette structure&nbsp;? Une demande sera envoyée aux membres pour validation'
-  "
-  (closed)="joinStructure($event)"
-></app-modal-confirmation>
+  <app-modal-confirmation
+    [openned]="joinModalOpenned"
+    [content]="
+      'Voulez-vous vraiment rejoindre cette structure&nbsp;? Une demande sera envoyée aux membres pour validation'
+    "
+    (closed)="joinStructure($event)"
+  ></app-modal-confirmation>
 
-<app-text-input-modal
-  [openned]="structureErrorModalOpenned"
-  [placeholder]="'Décrivez l\'erreur ici. Ex: Horaires faux...'"
-  [content]="
-    'Voulez-vous notifier res\'in d\'une erreur sur la fiche de cet acteur &nbsp;? Votre commentaire sera envoyé à l\'acteur en question ainsi qu\'aux administrateurs.'
-  "
-  (closed)="sendErrorEmail($event)"
-  (newContent)="sendErrorEmail($event)"
-></app-text-input-modal>
+  <app-text-input-modal
+    [openned]="structureErrorModalOpenned"
+    [placeholder]="'Décrivez l\'erreur ici. Ex: Horaires faux...'"
+    [content]="
+      'Voulez-vous notifier res\'in d\'une erreur sur la fiche de cet acteur &nbsp;? Votre commentaire sera envoyé à l\'acteur en question ainsi qu\'aux administrateurs.'
+    "
+    (closed)="sendErrorEmail($event)"
+    (newContent)="sendErrorEmail($event)"
+  ></app-text-input-modal>
+</div>
diff --git a/src/app/structure-list/components/structure-details/structure-details.component.scss b/src/app/structure-list/components/structure-details/structure-details.component.scss
index 4bdc5f53a..1aea80c00 100644
--- a/src/app/structure-list/components/structure-details/structure-details.component.scss
+++ b/src/app/structure-list/components/structure-details/structure-details.component.scss
@@ -7,6 +7,8 @@
 
 a {
   padding: unset;
+  font-size: initial;
+  text-decoration: underline;
 }
 
 .structure-details-container {
@@ -16,19 +18,17 @@ a {
   position: absolute;
   top: 0;
   left: 0;
+  box-sizing: border-box;
   max-width: 700px;
   width: 100%;
   height: calc(100vh - #{$header-height} - #{$footer-height});
-  padding: 0px 24px;
+  //padding: 0px 24px;
   overflow: auto;
   @media #{$tablet} {
+    height: calc(100vh - #{$header-height});
     .printButton {
       display: none !important;
     }
-
-    .ico-close {
-      margin-left: 16px;
-    }
   }
   .printButton {
     margin-right: 75px;
@@ -42,12 +42,7 @@ a {
 .structure-details-container .structure-details-block {
   padding: 0px 0px 24px 0;
   border-bottom: 2px solid $grey-8;
-  .subtitle {
-    text-transform: uppercase;
-    @include lato-bold-16;
-    margin-bottom: 10px;
-    color: $grey-3;
-  }
+  width: 100%;
 }
 
 .structure-details-container .structure-details-block ~ .structure-details-block {
@@ -59,7 +54,10 @@ a {
 }
 
 .structure-details-block .info-block > div {
-  margin-top: 8px;
+  margin-top: 4px;
+  &:first-of-type {
+    margin-top: 8px;
+  }
 }
 
 .buttons {
@@ -123,11 +121,24 @@ p,
     margin-bottom: unset;
   }
 }
+.custom-link {
+  ::ng-deep svg {
+    border: 1px solid $white;
+    border-radius: 20px;
+  }
+  ::ng-deep svg:hover {
+    border-color: $grey-4;
+  }
+}
 
+.daily-opening-time:nth-child(2) {
+  margin-bottom: 8px;
+}
 .updated {
   @include lato-regular-14;
   color: $grey-3;
   font-style: italic;
+  margin-top: 40px;
 }
 
 .bold-info {
@@ -171,6 +182,10 @@ p,
 }
 .clickableDiv {
   cursor: pointer;
+  a {
+    text-decoration: none;
+    color: $black;
+  }
 }
 .ico-close {
   margin-left: auto;
@@ -178,13 +193,13 @@ p,
 .sticky-title {
   position: sticky;
   top: 0px;
+  border-bottom: 1px solid $grey-4;
   max-width: 980px;
   width: 100%;
   background-color: $white;
   height: 60px;
   z-index: 1;
-  border-bottom: solid 1px $grey-4;
-  padding-bottom: 2px;
+  padding: 2px 24px;
   @media #{$tablet} {
     height: auto;
   }
@@ -198,3 +213,62 @@ p,
     }
   }
 }
+
+.iconTitle {
+  height: 36px;
+}
+.formationDetails {
+  width: 100%;
+}
+.collapse {
+  margin-bottom: 13px;
+  @media #{$small-phone} {
+    width: 95% !important;
+  }
+  &.notCollapsed {
+    margin-bottom: 8px;
+    height: 40px;
+    border-bottom: 2px solid $grey-8;
+    .logo {
+      .hide {
+        display: none;
+      }
+      .show {
+        display: block;
+      }
+    }
+  }
+  .titleCollapse {
+    width: 100%;
+    @include lato-regular-16;
+  }
+  .collapseHeader {
+    cursor: pointer;
+  }
+  .logo {
+    height: 24px;
+    width: 24px;
+    svg {
+      width: 100%;
+      height: 100%;
+      fill: $grey-1;
+    }
+  }
+  .logo,
+  .titleCollapse {
+    .hide {
+      display: block;
+    }
+    .show {
+      display: none;
+    }
+  }
+  .detailsContainer {
+    margin: 8px 0px;
+    padding: 8px 0;
+    background-color: $grey-8;
+  }
+  .details {
+    padding: 8px 16px;
+  }
+}
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 b74101aeb..6ad788578 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
@@ -36,6 +36,11 @@ export class StructureDetailsComponent implements OnInit {
   public parentingHelp: Module[];
   public socialAndProfessional: Module[];
   public digitalCultureSecurity: Module[];
+  public showBaseSkills: boolean;
+  public showAccessRights: boolean;
+  public showParentingHelp: boolean;
+  public showSocialAndProfessional: boolean;
+  public showDigitalSecurity: boolean;
   public tclStopPoints: TclStopPoint[] = [];
   public printMode = false;
   public isClaimed: boolean = null;
@@ -94,6 +99,7 @@ export class StructureDetailsComponent implements OnInit {
           this.socialAndProfessionalsReferentiel = referentiel;
         }
       });
+      this.setServiceCategories();
       if (this.printMode) {
         this.printService.onDataReady();
       }
@@ -249,6 +255,24 @@ export class StructureDetailsComponent implements OnInit {
     }
   }
 
+  public setServiceCategories(): void {
+    this.baseSkills = this.structure.baseSkills.map((skill) =>
+      _.find(this.baseSkillssReferentiel.modules, { id: skill })
+    );
+    this.accessRights = this.structure.accessRight.map((rights) =>
+      _.find(this.accessRightsReferentiel.modules, { id: rights })
+    );
+    this.parentingHelp = this.structure.parentingHelp.map((help) =>
+      _.find(this.parentingHelpsReferentiel.modules, { id: help })
+    );
+    this.socialAndProfessional = this.structure.socialAndProfessional.map((skill) =>
+      _.find(this.socialAndProfessionalsReferentiel.modules, { id: skill })
+    );
+    this.digitalCultureSecurity = this.structure.digitalCultureSecurity.map((skill) =>
+      _.find(this.digitalCultureSecuritysReferentiel.modules, { id: skill })
+    );
+  }
+
   public keepOriginalOrder = (a, b) => a.key;
 
   public isBaseSkills(): boolean {
@@ -330,4 +354,20 @@ export class StructureDetailsComponent implements OnInit {
     }
     return false;
   }
+
+  public toggleBaseSkills(): void {
+    this.showBaseSkills = !this.showBaseSkills;
+  }
+  public toggleAccessRights(): void {
+    this.showAccessRights = !this.showAccessRights;
+  }
+  public toggleParentingHelp(): void {
+    this.showParentingHelp = !this.showParentingHelp;
+  }
+  public toggleSocialAndProfessional(): void {
+    this.showSocialAndProfessional = !this.showSocialAndProfessional;
+  }
+  public toggleDigitalSecurity(): void {
+    this.showDigitalSecurity = !this.showDigitalSecurity;
+  }
 }
diff --git a/src/assets/form/sprite.svg b/src/assets/form/sprite.svg
index 6f2814ee4..effaecb8c 100644
--- a/src/assets/form/sprite.svg
+++ b/src/assets/form/sprite.svg
@@ -149,6 +149,15 @@
 <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="fold" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M6 16L12.5 9L19 16" stroke="black" stroke-linecap="round" stroke-linejoin="round"/>
+</symbol>
+
+<symbol id="unfold" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M6 10L12.5 17L19 10" stroke="black" stroke-linecap="round" stroke-linejoin="round"/>
+</symbol>
+
+
 <symbol id="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"/>
diff --git a/src/assets/logos/accompagnantCaf.svg b/src/assets/logos/accompagnantCaf.svg
index 4ec854fac..909312280 100644
--- a/src/assets/logos/accompagnantCaf.svg
+++ b/src/assets/logos/accompagnantCaf.svg
@@ -1,44 +1,44 @@
 <svg id="caf" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M39.6007 0.403015H0.402222V39.5973H39.6007V0.403015Z" fill="#0F6BAF"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4909 15.7164L14.7599 15.5665H14.2632C14.347 15.621 14.4243 15.6715 14.4909 15.7164Z" fill="#9CB4DA"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M18.5906 17.5452C18.3741 17.4659 18.2048 17.3016 18.1142 17.0821C18.0992 17.0468 18.0877 17.0104 18.0778 16.9728C17.9646 17.088 17.8348 17.1901 17.6886 17.2717L16.3878 17.9953H18.4467C18.4879 17.8398 18.5485 17.6928 18.627 17.5559L18.5906 17.5452Z" fill="#9CB4DA"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M22.5561 17.2531C22.4232 17.1653 22.3103 17.0547 22.2189 16.9285C22.1895 17.0177 22.1483 17.1049 22.0938 17.1831C21.9197 17.436 21.6538 17.5793 21.3849 17.5937C21.4306 17.7216 21.4588 17.8568 21.4715 17.9956H23.5927C23.5956 17.9764 23.5978 17.9575 23.6004 17.9383L22.5561 17.2531Z" fill="#9CB4DA"/>
+<path d="M39.6006 0.403076H0.4021V39.5973H39.6006V0.403076Z" fill="#0F6BAF"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4909 15.7165L14.7599 15.5667H14.2632C14.347 15.6211 14.4243 15.6716 14.4909 15.7165Z" fill="#9CB4DA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M18.5905 17.5453C18.374 17.466 18.2047 17.3017 18.1141 17.0821C18.0991 17.0468 18.0875 17.0104 18.0777 16.9729C17.9645 17.088 17.8347 17.1902 17.6885 17.2718L16.3877 17.9954H18.4465C18.4877 17.8399 18.5484 17.6929 18.6269 17.556L18.5905 17.5453Z" fill="#9CB4DA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M22.5562 17.2533C22.4233 17.1655 22.3104 17.0549 22.219 16.9287C22.1896 17.0179 22.1484 17.1051 22.094 17.1833C21.9198 17.4362 21.654 17.5795 21.385 17.5939C21.4307 17.7218 21.459 17.857 21.4717 17.9958H23.5929C23.5957 17.9766 23.598 17.9577 23.6005 17.9385L22.5562 17.2533Z" fill="#9CB4DA"/>
 <path fill-rule="evenodd" clip-rule="evenodd" d="M30.012 15.5662C30.1122 16.2215 29.7777 16.924 29.1532 17.2711C29.1532 17.2717 28.2983 17.7475 27.8518 17.9953H36.2695V15.5662H30.012Z" fill="#9CB4DA"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M12.1361 17.9383L11.0912 17.2531C10.7856 17.0513 10.5796 16.7332 10.5096 16.3567C10.4619 16.0965 10.4825 15.8242 10.5669 15.5662H3.76831V17.9953H12.1281C12.1307 17.9761 12.1335 17.9575 12.1361 17.9383Z" fill="#AFC2E1"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M25.7273 15.5662C25.8122 15.6207 25.8882 15.6715 25.9551 15.7161L26.2246 15.5662H25.7273Z" fill="#9CB4DA"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M21.4411 3.65964C22.2034 3.65964 22.9106 3.05342 23.0204 2.30439C23.1308 1.55677 22.601 0.949417 21.8385 0.949417C21.0773 0.949417 20.3689 1.55649 20.2591 2.30439C20.149 3.05342 20.6782 3.65964 21.4411 3.65964Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M26.1974 3.12792C25.9251 2.51125 25.1535 2.30071 24.4744 2.6566L21.3539 4.29069L18.715 2.6566C18.1396 2.30071 17.3056 2.51125 16.8523 3.12792C16.3994 3.7443 16.4996 4.53228 17.0742 4.88816L18.903 6.01397L18.4297 9.237C18.4178 9.31997 18.426 9.40407 18.4599 9.48056C18.5629 9.71424 18.8567 9.79411 19.1141 9.65921L20.687 8.83623L22.0171 9.65921C22.2353 9.79439 22.5519 9.71424 22.7238 9.48056C22.7799 9.40407 22.8135 9.31997 22.8268 9.237L23.2992 6.01397L25.4577 4.88816C26.1385 4.53199 26.4692 3.74402 26.1974 3.12792Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M20.1202 12.6584C20.8817 12.6584 21.5889 12.0511 21.6996 11.3032C21.8088 10.555 21.2802 9.94792 20.5176 9.94792C19.755 9.94792 19.048 10.5547 18.9383 11.3032C18.8285 12.0511 19.3568 12.6584 20.1202 12.6584Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M24.877 12.1261C24.6046 11.5098 23.833 11.2987 23.1528 11.6543L20.0334 13.2889L17.394 11.6543C16.8185 11.2987 15.9846 11.5098 15.5316 12.1261C15.0786 12.7425 15.1782 13.5308 15.7534 13.8853L17.582 15.0119L17.1081 18.2349C17.0965 18.3188 17.1058 18.402 17.1394 18.4785C17.2424 18.7122 17.5354 18.7921 17.7936 18.6577L19.3659 17.8336L20.6958 18.6577C20.9145 18.7923 21.2309 18.7122 21.4019 18.4785C21.4581 18.402 21.4928 18.3188 21.5044 18.2349L21.9779 15.0119L24.137 13.8853C24.818 13.5308 25.1485 12.7425 24.877 12.1261Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M12.8774 8.16087C13.6397 8.16087 14.347 7.55464 14.4568 6.80561C14.5671 6.05799 14.0374 5.45036 13.2751 5.45036C12.5125 5.45036 11.8055 6.05771 11.6954 6.80561C11.5857 7.55436 12.1148 8.16087 12.8774 8.16087Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M17.6341 7.62859C17.3621 7.0122 16.5902 6.80166 15.9103 7.15727L12.7906 8.79221L10.1517 7.15727C9.57627 6.80166 8.74201 7.0122 8.28904 7.62859C7.83663 8.24497 7.93569 9.03351 8.51087 9.38912L10.3394 10.5152L9.8664 13.7382C9.85455 13.8206 9.86386 13.9047 9.89745 13.9815C10.0002 14.2152 10.2937 14.2948 10.5511 14.1599L12.1237 13.3369L13.4544 14.1599C13.6731 14.2951 13.9889 14.2152 14.1605 13.9815C14.2164 13.9047 14.2499 13.8206 14.2626 13.7382L14.7359 10.5152L16.8953 9.38912C17.5751 9.03323 17.9059 8.24469 17.6341 7.62859Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M11.5558 17.1594C12.3189 17.1594 13.0256 16.5526 13.1357 15.8039C13.2458 15.0557 12.7169 14.4492 11.9546 14.4492C11.192 14.4492 10.4847 15.0557 10.3747 15.8039C10.2649 16.5523 10.7935 17.1594 11.5558 17.1594Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M16.313 16.6268C16.041 16.011 15.2694 15.7999 14.5898 16.1561L11.4698 17.7899L8.83009 16.1561C8.25462 15.7999 7.42093 16.011 6.96795 16.6268C6.51498 17.2432 6.61432 18.0315 7.18978 18.3862L9.01833 19.5134L8.54504 22.737C8.53318 22.8192 8.5425 22.903 8.57636 22.98C8.67938 23.2131 8.97205 23.2936 9.23028 23.1587L10.802 22.3351L12.1327 23.1587C12.3511 23.2939 12.6681 23.2131 12.8391 22.98C12.8958 22.903 12.9294 22.8192 12.9421 22.737L13.4154 19.5134L15.5742 18.3862C16.2543 18.0315 16.5851 17.2432 16.313 16.6268Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M28.687 8.16087C27.9253 8.16087 27.395 7.55464 27.5051 6.80561C27.6148 6.05799 28.3221 5.45036 29.085 5.45036C29.8473 5.45036 30.3764 6.05771 30.2669 6.80561C30.156 7.55436 29.4493 8.16087 28.687 8.16087Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M24.0864 7.62859C24.5394 7.0122 25.3736 6.80166 25.9485 7.15727L28.5885 8.79221L31.7085 7.15727C32.3881 6.80166 33.16 7.0122 33.4315 7.62859C33.703 8.24497 33.3725 9.03351 32.6929 9.38912L30.5333 10.5152L30.0603 13.7382C30.0481 13.8206 30.0151 13.9047 29.9584 13.9815C29.786 14.2152 29.4696 14.2948 29.2511 14.1599L27.9204 13.3369L26.3484 14.1599C26.0916 14.2951 25.7978 14.2152 25.6948 13.9815C25.6612 13.9047 25.6519 13.8206 25.664 13.7382L26.1376 10.5152L24.3091 9.38912C23.7325 9.03323 23.6337 8.24469 24.0864 7.62859Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M27.3661 17.1594C26.6033 17.1594 26.0741 16.5526 26.1842 15.8039C26.2939 15.0557 27.0015 14.4492 27.7641 14.4492C28.5266 14.4492 29.055 15.0557 28.946 15.8039C28.8351 16.5523 28.1284 17.1594 27.3661 17.1594Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M22.7655 16.6268C23.2182 16.011 24.0516 15.7999 24.6277 16.1561L27.2665 17.7899L30.3865 16.1561C31.0667 15.7999 31.8386 16.011 32.1101 16.6268C32.3824 17.2432 32.0516 18.0315 31.3715 18.3862L29.2124 19.5134L28.7389 22.737C28.7273 22.8192 28.6943 22.903 28.6375 22.98C28.4651 23.2131 28.1493 23.2936 27.9303 23.1587L26.5996 22.3351L25.0276 23.1587C24.7696 23.2939 24.4775 23.2131 24.3739 22.98C24.3398 22.903 24.331 22.8192 24.3432 22.737L24.8162 19.5134L22.9873 18.3862C22.4116 18.0315 22.312 17.2432 22.7655 16.6268Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M18.7986 21.6567C19.5612 21.6567 20.2682 21.0499 20.3788 20.3011C20.488 19.5527 19.9586 18.9462 19.1963 18.9462C18.434 18.9462 17.7267 19.5524 17.6166 20.3011C17.5066 21.0499 18.0363 21.6567 18.7986 21.6567Z" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M23.5549 21.125C23.2831 20.5086 22.5115 20.2975 21.8319 20.6531L18.7125 22.2886L16.0731 20.6531C15.4976 20.2975 14.6631 20.5086 14.2101 21.125C13.7574 21.7408 13.8565 22.529 14.4325 22.8844L16.261 24.0099L15.7877 27.234C15.7759 27.3173 15.7844 27.4006 15.8185 27.477C15.9218 27.7107 16.2139 27.7906 16.4724 27.6557L18.0444 26.8327L19.3751 27.6557C19.5927 27.7909 19.91 27.7107 20.0818 27.477C20.1374 27.4006 20.1719 27.3173 20.1843 27.234L20.6573 24.0099L22.8158 22.8844C23.4965 22.5288 23.8278 21.7405 23.5549 21.125Z" fill="white"/>
-<path d="M3.52251 30.6069L3.29136 29.3409L2.55504 30.6069H3.52251ZM2.34986 30.94C2.1348 31.3517 1.93893 31.6895 1.7679 32.0649C1.68437 32.059 1.60704 32.0474 1.52237 32.0474C1.43798 32.0474 1.35134 32.059 1.26526 32.0649L3.48864 28.2972C3.55525 28.3082 3.6179 28.3138 3.68648 28.3138C3.75506 28.3138 3.81913 28.3082 3.89053 28.2972L4.65085 32.0753C4.49929 32.0649 4.35451 32.0471 4.20098 32.0471C4.04745 32.0471 3.89674 32.0646 3.74152 32.0753C3.6958 31.6735 3.65544 31.3037 3.58093 30.94H2.34986Z" fill="white"/>
-<path d="M6.11924 31.6565C6.57956 31.6565 6.97806 31.6179 7.34383 31.5809C7.31899 31.6565 7.28795 31.7381 7.27327 31.8146C7.25888 31.8908 7.25944 31.9718 7.25577 32.0471H5.25281L5.95273 28.3457C6.08284 28.3567 6.21153 28.3734 6.34361 28.3734C6.47541 28.3734 6.61116 28.3567 6.7455 28.3457L6.11924 31.6565Z" fill="white"/>
-<path d="M8.86782 31.6565C9.32728 31.6565 9.7255 31.6179 10.0918 31.5809C10.0673 31.6565 10.036 31.7381 10.0218 31.8146C10.0074 31.8908 10.0074 31.9718 10.0032 32.0471H8.0011L8.70046 28.3457C8.83113 28.3567 8.95982 28.3734 9.0919 28.3734C9.22399 28.3734 9.35889 28.3567 9.49351 28.3457L8.86782 31.6565Z" fill="white"/>
-<path d="M11.6806 30.3634C11.5468 31.0689 11.7164 31.8197 12.5095 31.8197C13.3232 31.8197 13.8458 30.9828 14.0166 30.08C14.1489 29.3795 13.9836 28.574 13.1919 28.574C12.4567 28.574 11.9103 29.1453 11.6806 30.3634ZM12.4214 32.1453C11.2539 32.1453 10.6002 31.4392 10.8333 30.205C11.0377 29.123 11.9693 28.2486 13.2845 28.2486C14.791 28.2486 15.0281 29.3406 14.8737 30.1833C14.679 31.2436 13.7157 32.1453 12.4214 32.1453Z" fill="white"/>
-<path d="M18.2068 31.4443L18.0016 31.9117C17.6528 32.081 17.2659 32.1453 16.9117 32.1453C15.7808 32.1453 15.06 31.4288 15.2714 30.3142C15.5386 28.8949 16.6125 28.2489 17.764 28.2489C18.1128 28.2489 18.5187 28.3409 18.7921 28.5151C18.7097 28.6996 18.6434 28.8845 18.5647 29.075H18.4904C18.3507 28.7812 18.051 28.574 17.7084 28.574C16.8307 28.574 16.3136 29.4388 16.1621 30.2378C15.9868 31.1671 16.3077 31.8196 17.1205 31.8196C17.4485 31.8196 17.8619 31.6466 18.1439 31.4118L18.2068 31.4443Z" fill="white"/>
-<path d="M20.7586 30.6069L20.5278 29.3409L19.7917 30.6069H20.7586ZM19.5868 30.94C19.3706 31.3517 19.1753 31.6895 19.0035 32.0649C18.9205 32.059 18.8432 32.0474 18.7588 32.0474C18.6744 32.0474 18.5875 32.059 18.502 32.0649L20.7256 28.2972C20.7917 28.3082 20.8546 28.3138 20.9229 28.3138C20.9906 28.3138 21.0558 28.3082 21.1258 28.2972L21.887 32.0753C21.7354 32.0649 21.5915 32.0471 21.4377 32.0471C21.2839 32.0471 21.1334 32.0646 20.9779 32.0753C20.9328 31.6735 20.8907 31.3037 20.8171 30.94H19.5868Z" fill="white"/>
-<path d="M23.9743 32.0753C23.8442 32.0649 23.7152 32.0471 23.5823 32.0471C23.4505 32.0471 23.3156 32.0646 23.1821 32.0753L23.8131 28.7321C23.4383 28.7321 23.0983 28.7696 22.816 28.8083C22.8409 28.7321 22.8705 28.6562 22.8866 28.574C22.9016 28.4978 22.8987 28.4225 22.9027 28.3457H25.6242C25.5999 28.4222 25.5703 28.4978 25.5548 28.574C25.5392 28.6562 25.5421 28.7324 25.5381 28.8083C25.2333 28.7696 24.9279 28.7321 24.6054 28.7321L23.9743 32.0753Z" fill="white"/>
-<path d="M26.3222 28.346C26.4523 28.357 26.5813 28.3737 26.7131 28.3737C26.8455 28.3737 26.9804 28.357 27.115 28.346L26.41 32.0756C26.2805 32.0652 26.1504 32.0474 26.0191 32.0474C25.8868 32.0474 25.7513 32.0649 25.6178 32.0756L26.3222 28.346Z" fill="white"/>
-<path d="M28.3065 30.3634C28.173 31.0689 28.3429 31.8197 29.136 31.8197C29.9496 31.8197 30.472 30.9828 30.643 30.08C30.776 29.3795 30.6112 28.574 29.8178 28.574C29.0837 28.574 28.5368 29.1453 28.3065 30.3634ZM29.0473 32.1453C27.8803 32.1453 27.2267 31.4392 27.4592 30.205C27.6639 29.123 28.5952 28.2486 29.9115 28.2486C31.4175 28.2486 31.654 29.3406 31.4996 30.1833C31.3057 31.2436 30.3428 32.1453 29.0473 32.1453Z" fill="white"/>
-<path d="M32.5763 28.346H33.099C33.69 29.1887 34.3216 30.0151 34.9016 30.8906L35.3822 28.346C35.4494 28.357 35.5211 28.3627 35.5899 28.3627C35.6588 28.3627 35.7344 28.357 35.8044 28.346L35.1 32.0756L34.6518 32.07C34.1718 31.3689 33.7275 30.6998 33.2528 30.0532L32.7936 29.4331L32.2958 32.0652C32.2292 32.0593 32.1558 32.0477 32.0886 32.0477C32.0198 32.0477 31.943 32.0593 31.8741 32.0652L32.5763 28.346Z" fill="white"/>
-<path d="M38.2603 29.0476C38.2101 28.7589 38.043 28.574 37.7416 28.574C37.3242 28.574 37.1182 28.7978 37.0603 29.1072C36.9215 29.8415 38.5541 29.7058 38.3182 30.9498C38.187 31.6466 37.5113 32.1459 36.692 32.1459C36.4016 32.1459 36.1033 32.0753 35.8851 31.9117C35.9915 31.6839 36.0934 31.4559 36.1696 31.221H36.2695C36.2777 31.5975 36.5216 31.8197 36.8865 31.8197C37.2139 31.8197 37.5401 31.6289 37.6107 31.2546C37.7755 30.3848 36.1417 30.6995 36.3892 29.3908C36.5072 28.764 37.0219 28.2486 37.8257 28.2486C38.2056 28.2486 38.5163 28.3954 38.6106 28.5088C38.5152 28.683 38.4277 28.8622 38.3394 29.0473H38.2603" fill="white"/>
-<path d="M3.98277 37.6341C3.83177 37.6225 3.68248 37.6053 3.52923 37.6053C3.37598 37.6053 3.21934 37.6225 3.06299 37.6341L3.88088 33.7865H6.21687C6.18752 33.8647 6.15168 33.9485 6.13446 34.0269C6.11809 34.1051 6.11866 34.1895 6.11414 34.268C5.74866 34.2287 5.35834 34.1898 4.71486 34.1898L4.4586 35.3957H5.10772C5.34705 35.3957 5.5971 35.3732 5.86042 35.3449C5.83135 35.4242 5.79551 35.5081 5.77886 35.5868C5.76249 35.665 5.76249 35.7494 5.75854 35.8278C5.50566 35.8053 5.26605 35.7776 5.02108 35.7776H4.37704L3.98277 37.6341Z" fill="white"/>
-<path d="M8.36977 36.1191L8.10193 34.8121L7.24848 36.1191H8.36977ZM7.01028 36.4614C6.76023 36.8882 6.53303 37.2353 6.33407 37.6222C6.23726 37.6166 6.14751 37.605 6.04958 37.605C5.95165 37.605 5.85089 37.6166 5.75183 37.6222L8.33082 33.736C8.40787 33.7459 8.4804 33.7526 8.55999 33.7526C8.63986 33.7526 8.71465 33.7461 8.79706 33.736L9.67902 37.6338C9.50375 37.6222 9.33611 37.605 9.15831 37.605C8.9805 37.605 8.80524 37.6222 8.6249 37.6338C8.57212 37.2181 8.52414 36.8379 8.43835 36.4614H7.01028Z" fill="white"/>
-<path d="M15.0032 33.7865C15.0859 33.7981 15.1683 33.8147 15.2547 33.8147C15.3402 33.8147 15.4356 33.7981 15.5239 33.7865C15.3935 35.2947 15.275 36.5179 15.2459 37.6341C15.0766 37.6225 14.9146 37.6053 14.7433 37.6053C14.5714 37.6053 14.4148 37.6225 14.2406 37.6341C14.3809 36.7428 14.441 35.884 14.5322 35.0195C13.8839 35.8784 13.2418 36.736 12.6215 37.6053C12.5447 37.5937 12.4719 37.5886 12.3892 37.6053C12.1615 36.8314 11.8617 35.9627 11.5826 35.0819C11.2318 36.0697 10.9685 36.8481 10.7828 37.6341C10.6874 37.6225 10.5993 37.6053 10.5011 37.6053C10.4026 37.6053 10.3134 37.6225 10.2133 37.6341C10.6733 36.5063 11.1457 35.205 11.6557 33.7865C11.7393 33.7981 11.8149 33.8147 11.9007 33.8147C11.9868 33.8147 12.0762 33.7981 12.1646 33.7865C12.4186 34.6673 12.7169 35.5417 13.0146 36.4225C13.6245 35.6252 14.3329 34.7455 15.0032 33.7865Z" fill="white"/>
-<path d="M16.9516 33.7865C17.1026 33.7981 17.2519 33.8147 17.406 33.8147C17.5587 33.8147 17.7156 33.7981 17.8714 33.7865L17.0535 37.6341C16.9031 37.6225 16.7535 37.6053 16.6 37.6053C16.4467 37.6053 16.2901 37.6225 16.134 37.6341L16.9516 33.7865Z" fill="white"/>
-<path d="M19.1793 37.2017C19.7135 37.2017 20.175 37.1619 20.6 37.1224C20.5718 37.2017 20.5351 37.2861 20.519 37.3643C20.5018 37.4425 20.5024 37.5268 20.497 37.6053H18.1746L18.986 33.7865C19.1372 33.7981 19.2868 33.8147 19.4401 33.8147C19.5927 33.8147 19.7499 33.7981 19.9055 33.7865L19.1793 37.2017Z" fill="white"/>
-<path d="M22.1797 33.7865C22.3307 33.7981 22.4806 33.8147 22.6327 33.8147C22.7865 33.8147 22.9443 33.7981 23.0995 33.7865L22.2822 37.6341C22.1306 37.6225 21.9813 37.6053 21.8281 37.6053C21.6748 37.6053 21.5182 37.6225 21.3618 37.6341L22.1797 33.7865Z" fill="white"/>
-<path d="M25.6062 36.1191L25.3384 34.8121L24.4852 36.1191H25.6062ZM24.2456 36.4614C23.9958 36.8882 23.7692 37.2353 23.5702 37.6222C23.4731 37.6166 23.384 37.605 23.2846 37.605C23.187 37.605 23.0868 37.6166 22.9874 37.6222L25.5661 33.736C25.6437 33.7459 25.7166 33.7526 25.7964 33.7526C25.8757 33.7526 25.9508 33.7461 26.0329 33.736L26.9149 37.6338C26.7396 37.6222 26.5709 37.605 26.3928 37.605C26.2153 37.605 26.0406 37.6222 25.8602 37.6338C25.8077 37.2181 25.76 36.8379 25.6739 36.4614H24.2456Z" fill="white"/>
-<path d="M28.5575 37.2017C29.0917 37.2017 29.5534 37.1619 29.9785 37.1224C29.9497 37.2017 29.9138 37.2861 29.8963 37.3643C29.8797 37.4425 29.8808 37.5268 29.876 37.6053H27.5527L28.3636 33.7865C28.5151 33.7981 28.6644 33.8147 28.8182 33.8147C28.9721 33.8147 29.1281 33.7981 29.2845 33.7865L28.5575 37.2017Z" fill="white"/>
-<path d="M33.8765 33.7865C33.8469 33.8647 33.8099 33.9485 33.7938 34.0269C33.7772 34.1051 33.7772 34.1895 33.7735 34.268C33.4097 34.2239 33.0019 34.1788 32.3728 34.1898L32.1177 35.3957H32.7549C33.0315 35.3957 33.2875 35.3732 33.5201 35.3449C33.4907 35.4242 33.4546 35.5081 33.4379 35.5868C33.4218 35.665 33.4218 35.7494 33.4176 35.8278C33.1978 35.8002 32.9508 35.7776 32.6739 35.7776H32.0361L31.7336 37.202C32.3604 37.1969 32.7837 37.1684 33.1667 37.1227C33.1379 37.202 33.1018 37.2864 33.0857 37.3645C33.0682 37.4427 33.0685 37.5271 33.0637 37.6056H30.7283L31.5402 33.7868H33.8765" fill="white"/>
-<path d="M36.4691 34.5096C36.4084 34.2118 36.2171 34.0213 35.8677 34.0213C35.3831 34.0213 35.1446 34.2516 35.076 34.5714C34.9146 35.3289 36.8086 35.1877 36.5357 36.4724C36.3825 37.1901 35.5993 37.7072 34.6493 37.7072C34.3115 37.7072 33.9652 37.6338 33.7129 37.4653C33.8368 37.2299 33.9542 36.9946 34.042 36.7533H34.1594C34.1687 37.1402 34.4509 37.3696 34.8743 37.3696C35.2536 37.3696 35.6329 37.1741 35.7153 36.7877C35.9055 35.8896 34.0092 36.2151 34.2965 34.8635C34.4343 34.218 35.0315 33.6855 35.9634 33.6855C36.4042 33.6855 36.7643 33.837 36.8741 33.955C36.7624 34.1336 36.6624 34.3188 36.56 34.5101H36.4691" fill="white"/>
-</svg>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M12.1361 17.9383L11.0912 17.253C10.7856 17.0512 10.5796 16.7332 10.5096 16.3567C10.4619 16.0965 10.4825 15.8241 10.5669 15.5662H3.76831V17.9953H12.1281C12.1307 17.9761 12.1335 17.9575 12.1361 17.9383Z" fill="#AFC2E1"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M25.7273 15.5662C25.8122 15.6206 25.8882 15.6714 25.9551 15.716L26.2246 15.5662H25.7273Z" fill="#9CB4DA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M21.4411 3.65969C22.2034 3.65969 22.9106 3.05346 23.0204 2.30443C23.1308 1.55681 22.601 0.949463 21.8385 0.949463C21.0773 0.949463 20.3689 1.55653 20.2591 2.30443C20.149 3.05346 20.6782 3.65969 21.4411 3.65969Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M26.1976 3.128C25.9252 2.51133 25.1536 2.30079 24.4746 2.65668L21.354 4.29077L18.7152 2.65668C18.1397 2.30079 17.3057 2.51133 16.8525 3.128C16.3995 3.74438 16.4997 4.53236 17.0743 4.88825L18.9031 6.01405L18.4298 9.23708C18.418 9.32005 18.4262 9.40416 18.46 9.48064C18.563 9.71433 18.8568 9.7942 19.1142 9.65929L20.6871 8.83632L22.0172 9.65929C22.2354 9.79448 22.552 9.71433 22.7239 9.48064C22.7801 9.40416 22.8137 9.32005 22.8269 9.23708L23.2994 6.01405L25.4578 4.88825C26.1386 4.53208 26.4693 3.7441 26.1976 3.128Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M20.1202 12.6585C20.8817 12.6585 21.5889 12.0512 21.6996 11.3033C21.8088 10.5551 21.2802 9.948 20.5176 9.948C19.755 9.948 19.048 10.5548 18.9383 11.3033C18.8285 12.0512 19.3568 12.6585 20.1202 12.6585Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M24.877 12.1263C24.6046 11.5099 23.833 11.2988 23.1528 11.6544L20.0334 13.2891L17.394 11.6544C16.8185 11.2988 15.9846 11.5099 15.5316 12.1263C15.0786 12.7427 15.1782 13.5309 15.7534 13.8854L17.582 15.0121L17.1081 18.2351C17.0965 18.3189 17.1058 18.4022 17.1394 18.4786C17.2424 18.7123 17.5354 18.7922 17.7936 18.6579L19.3659 17.8338L20.6958 18.6579C20.9145 18.7925 21.2309 18.7123 21.4019 18.4786C21.4581 18.4022 21.4928 18.3189 21.5044 18.2351L21.9779 15.0121L24.137 13.8854C24.818 13.5309 25.1485 12.7427 24.877 12.1263Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M12.8775 8.16095C13.6398 8.16095 14.3471 7.55472 14.4569 6.80569C14.5672 6.05807 14.0375 5.45044 13.2752 5.45044C12.5126 5.45044 11.8056 6.05779 11.6956 6.80569C11.5858 7.55444 12.115 8.16095 12.8775 8.16095Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M17.634 7.62854C17.3619 7.01216 16.5901 6.80162 15.9102 7.15723L12.7904 8.79217L10.1516 7.15723C9.57615 6.80162 8.74189 7.01216 8.28892 7.62854C7.83651 8.24493 7.93557 9.03347 8.51075 9.38908L10.3393 10.5152L9.86628 13.7382C9.85443 13.8206 9.86374 13.9047 9.89733 13.9815C10.0001 14.2152 10.2936 14.2947 10.551 14.1598L12.1235 13.3369L13.4542 14.1598C13.673 14.295 13.9888 14.2152 14.1604 13.9815C14.2162 13.9047 14.2498 13.8206 14.2625 13.7382L14.7358 10.5152L16.8951 9.38908C17.575 9.03319 17.9058 8.24465 17.634 7.62854Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M11.5559 17.1594C12.319 17.1594 13.0257 16.5527 13.1358 15.8039C13.2459 15.0557 12.717 14.4492 11.9547 14.4492C11.1921 14.4492 10.4848 15.0557 10.3748 15.8039C10.265 16.5524 10.7936 17.1594 11.5559 17.1594Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M16.313 16.6268C16.041 16.011 15.2694 15.7999 14.5898 16.156L11.4698 17.7898L8.83009 16.156C8.25462 15.7999 7.42093 16.011 6.96795 16.6268C6.51498 17.2432 6.61432 18.0314 7.18978 18.3862L9.01833 19.5134L8.54504 22.737C8.53318 22.8191 8.5425 22.9029 8.57636 22.98C8.67938 23.2131 8.97205 23.2935 9.23028 23.1586L10.802 22.3351L12.1327 23.1586C12.3511 23.2938 12.6681 23.2131 12.8391 22.98C12.8958 22.9029 12.9294 22.8191 12.9421 22.737L13.4154 19.5134L15.5742 18.3862C16.2543 18.0314 16.5851 17.2432 16.313 16.6268Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M28.6869 8.16095C27.9252 8.16095 27.3949 7.55472 27.5049 6.80569C27.6147 6.05807 28.322 5.45044 29.0848 5.45044C29.8471 5.45044 30.3763 6.05779 30.2668 6.80569C30.1559 7.55444 29.4492 8.16095 28.6869 8.16095Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M24.0863 7.62854C24.5392 7.01216 25.3735 6.80162 25.9484 7.15723L28.5883 8.79217L31.7084 7.15723C32.388 6.80162 33.1599 7.01216 33.4314 7.62854C33.7029 8.24493 33.3724 9.03347 32.6928 9.38908L30.5332 10.5152L30.0602 13.7382C30.048 13.8206 30.015 13.9047 29.9583 13.9815C29.7858 14.2152 29.4695 14.2947 29.251 14.1598L27.9203 13.3369L26.3483 14.1598C26.0915 14.295 25.7977 14.2152 25.6947 13.9815C25.6611 13.9047 25.6518 13.8206 25.6639 13.7382L26.1375 10.5152L24.3089 9.38908C23.7324 9.03319 23.6336 8.24465 24.0863 7.62854Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M27.3661 17.1594C26.6033 17.1594 26.0741 16.5527 26.1842 15.8039C26.2939 15.0557 27.0015 14.4492 27.7641 14.4492C28.5266 14.4492 29.055 15.0557 28.946 15.8039C28.8351 16.5524 28.1284 17.1594 27.3661 17.1594Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M22.7656 16.6268C23.2183 16.011 24.0518 15.7999 24.6278 16.156L27.2666 17.7898L30.3866 16.156C31.0668 15.7999 31.8387 16.011 32.1102 16.6268C32.3825 17.2432 32.0518 18.0314 31.3716 18.3862L29.2126 19.5134L28.739 22.737C28.7274 22.8191 28.6944 22.9029 28.6377 22.98C28.4652 23.2131 28.1494 23.2935 27.9304 23.1586L26.5997 22.3351L25.0277 23.1586C24.7697 23.2938 24.4776 23.2131 24.3741 22.98C24.3399 22.9029 24.3312 22.8191 24.3433 22.737L24.8163 19.5134L22.9875 18.3862C22.4117 18.0314 22.3121 17.2432 22.7656 16.6268Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M18.7985 21.6568C19.5611 21.6568 20.268 21.05 20.3787 20.3013C20.4879 19.5528 19.9584 18.9463 19.1961 18.9463C18.4339 18.9463 17.7266 19.5525 17.6165 20.3013C17.5065 21.05 18.0362 21.6568 18.7985 21.6568Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M23.555 21.1251C23.2832 20.5087 22.5116 20.2976 21.832 20.6532L18.7126 22.2887L16.0732 20.6532C15.4977 20.2976 14.6632 20.5087 14.2102 21.1251C13.7575 21.7409 13.8566 22.5291 14.4326 22.8845L16.2612 24.01L15.7879 27.2341C15.776 27.3174 15.7845 27.4007 15.8186 27.4771C15.9219 27.7108 16.214 27.7907 16.4726 27.6558L18.0446 26.8328L19.3753 27.6558C19.5929 27.791 19.9101 27.7108 20.082 27.4771C20.1375 27.4007 20.172 27.3174 20.1844 27.2341L20.6574 24.01L22.8159 22.8845C23.4966 22.5289 23.8279 21.7406 23.555 21.1251Z" fill="white"/>
+<path d="M3.52239 30.6071L3.29124 29.341L2.55491 30.6071H3.52239ZM2.34973 30.9401C2.13468 31.3519 1.93881 31.6897 1.76778 32.0651C1.68424 32.0592 1.60691 32.0476 1.52225 32.0476C1.43786 32.0476 1.35122 32.0592 1.26514 32.0651L3.48852 28.2974C3.55512 28.3084 3.61778 28.314 3.68636 28.314C3.75494 28.314 3.81901 28.3084 3.89041 28.2974L4.65073 32.0755C4.49917 32.0651 4.35439 32.0473 4.20086 32.0473C4.04733 32.0473 3.89662 32.0648 3.74139 32.0755C3.69567 31.6736 3.65531 31.3039 3.58081 30.9401H2.34973Z" fill="white"/>
+<path d="M6.11937 31.6565C6.57968 31.6565 6.97818 31.6178 7.34395 31.5809C7.31911 31.6565 7.28807 31.7381 7.27339 31.8146C7.259 31.8908 7.25956 31.9718 7.25589 32.0471H5.25293L5.95285 28.3457C6.08296 28.3567 6.21165 28.3734 6.34374 28.3734C6.47554 28.3734 6.61129 28.3567 6.74563 28.3457L6.11937 31.6565Z" fill="white"/>
+<path d="M8.86794 31.6565C9.3274 31.6565 9.72563 31.6178 10.092 31.5809C10.0674 31.6565 10.0361 31.7381 10.022 31.8146C10.0076 31.8908 10.0076 31.9718 10.0033 32.0471H8.00122L8.70058 28.3457C8.83125 28.3567 8.95994 28.3734 9.09203 28.3734C9.22411 28.3734 9.35901 28.3567 9.49364 28.3457L8.86794 31.6565Z" fill="white"/>
+<path d="M11.6805 30.3635C11.5467 31.0691 11.7163 31.8198 12.5094 31.8198C13.323 31.8198 13.8457 30.983 14.0165 30.0801C14.1488 29.3797 13.9834 28.5742 13.1918 28.5742C12.4566 28.5742 11.9102 29.1454 11.6805 30.3635ZM12.4213 32.1455C11.2537 32.1455 10.6001 31.4394 10.8332 30.2052C11.0376 29.1231 11.9692 28.2488 13.2844 28.2488C14.7909 28.2488 15.028 29.3407 14.8736 30.1834C14.6788 31.2438 13.7156 32.1455 12.4213 32.1455Z" fill="white"/>
+<path d="M18.2068 31.4444L18.0016 31.9118C17.6528 32.0811 17.2659 32.1454 16.9117 32.1454C15.7808 32.1454 15.06 31.4289 15.2714 30.3144C15.5386 28.895 16.6125 28.249 17.764 28.249C18.1128 28.249 18.5187 28.341 18.7921 28.5152C18.7097 28.6997 18.6434 28.8846 18.5647 29.0751H18.4904C18.3507 28.7813 18.051 28.5741 17.7084 28.5741C16.8307 28.5741 16.3136 29.4389 16.1621 30.2379C15.9868 31.1672 16.3077 31.8198 17.1205 31.8198C17.4485 31.8198 17.8619 31.6467 18.1439 31.4119L18.2068 31.4444Z" fill="white"/>
+<path d="M20.7586 30.6071L20.5278 29.341L19.7917 30.6071H20.7586ZM19.5868 30.9401C19.3706 31.3519 19.1753 31.6897 19.0035 32.0651C18.9205 32.0592 18.8432 32.0476 18.7588 32.0476C18.6744 32.0476 18.5875 32.0592 18.502 32.0651L20.7256 28.2974C20.7917 28.3084 20.8546 28.314 20.9229 28.314C20.9906 28.314 21.0558 28.3084 21.1258 28.2974L21.887 32.0755C21.7354 32.0651 21.5915 32.0473 21.4377 32.0473C21.2839 32.0473 21.1334 32.0648 20.9779 32.0755C20.9328 31.6736 20.8907 31.3039 20.8171 30.9401H19.5868Z" fill="white"/>
+<path d="M23.9744 32.0753C23.8443 32.0649 23.7153 32.0471 23.5824 32.0471C23.4506 32.0471 23.3157 32.0646 23.1822 32.0753L23.8133 28.7321C23.4385 28.7321 23.0984 28.7696 22.8162 28.8083C22.841 28.7321 22.8706 28.6562 22.8867 28.574C22.9017 28.4978 22.8989 28.4225 22.9028 28.3457H25.6243C25.6 28.4222 25.5704 28.4978 25.5549 28.574C25.5394 28.6562 25.5422 28.7324 25.5382 28.8083C25.2334 28.7696 24.9281 28.7321 24.6055 28.7321L23.9744 32.0753Z" fill="white"/>
+<path d="M26.3221 28.3459C26.4522 28.357 26.5812 28.3736 26.713 28.3736C26.8454 28.3736 26.9803 28.357 27.1149 28.3459L26.4099 32.0756C26.2803 32.0651 26.1502 32.0474 26.019 32.0474C25.8866 32.0474 25.7512 32.0648 25.6177 32.0756L26.3221 28.3459Z" fill="white"/>
+<path d="M28.3065 30.3635C28.173 31.0691 28.3429 31.8198 29.136 31.8198C29.9496 31.8198 30.472 30.983 30.643 30.0801C30.776 29.3797 30.6112 28.5742 29.8178 28.5742C29.0837 28.5742 28.5368 29.1454 28.3065 30.3635ZM29.0473 32.1455C27.8803 32.1455 27.2267 31.4394 27.4592 30.2052C27.6639 29.1231 28.5952 28.2488 29.9115 28.2488C31.4175 28.2488 31.654 29.3407 31.4996 30.1834C31.3057 31.2438 30.3428 32.1455 29.0473 32.1455Z" fill="white"/>
+<path d="M32.5764 28.3459H33.0991C33.6901 29.1887 34.3217 30.015 34.9017 30.8905L35.3823 28.3459C35.4495 28.357 35.5212 28.3626 35.5901 28.3626C35.6589 28.3626 35.7346 28.357 35.8046 28.3459L35.1001 32.0756L34.6519 32.0699C34.1719 31.3689 33.7277 30.6997 33.2529 30.0531L32.7938 29.4331L32.2959 32.0651C32.2293 32.0592 32.1559 32.0476 32.0888 32.0476C32.0199 32.0476 31.9431 32.0592 31.8743 32.0651L32.5764 28.3459Z" fill="white"/>
+<path d="M38.2605 29.0478C38.2102 28.759 38.0432 28.5742 37.7417 28.5742C37.3243 28.5742 37.1183 28.798 37.0604 29.1073C36.9216 29.8417 38.5543 29.7059 38.3183 30.95C38.1871 31.6468 37.5114 32.146 36.6921 32.146C36.4017 32.146 36.1034 32.0755 35.8853 31.9118C35.9917 31.684 36.0935 31.456 36.1697 31.2212H36.2696C36.2778 31.5977 36.5217 31.8198 36.8866 31.8198C37.214 31.8198 37.5402 31.629 37.6108 31.2548C37.7756 30.385 36.1418 30.6996 36.3893 29.391C36.5073 28.7641 37.0221 28.2488 37.8258 28.2488C38.2057 28.2488 38.5165 28.3955 38.6107 28.509C38.5153 28.6831 38.4278 28.8623 38.3395 29.0475H38.2605" fill="white"/>
+<path d="M3.98277 37.6342C3.83177 37.6227 3.68248 37.6054 3.52923 37.6054C3.37598 37.6054 3.21934 37.6227 3.06299 37.6342L3.88088 33.7866H6.21687C6.18752 33.8648 6.15168 33.9486 6.13446 34.0271C6.11809 34.1053 6.11866 34.1896 6.11414 34.2681C5.74866 34.2289 5.35834 34.1899 4.71486 34.1899L4.4586 35.3959H5.10772C5.34705 35.3959 5.5971 35.3733 5.86042 35.3451C5.83135 35.4244 5.79551 35.5082 5.77886 35.5869C5.76249 35.6651 5.76249 35.7495 5.75854 35.828C5.50566 35.8054 5.26605 35.7777 5.02108 35.7777H4.37704L3.98277 37.6342Z" fill="white"/>
+<path d="M8.36964 36.1192L8.10181 34.8122L7.24836 36.1192H8.36964ZM7.01016 36.4615C6.76011 36.8883 6.53291 37.2354 6.33394 37.6223C6.23714 37.6167 6.14739 37.6051 6.04946 37.6051C5.95153 37.6051 5.85077 37.6167 5.75171 37.6223L8.3307 33.7361C8.40774 33.746 8.48028 33.7527 8.55986 33.7527C8.63973 33.7527 8.71452 33.7462 8.79694 33.7361L9.67889 37.6339C9.50363 37.6223 9.33599 37.6051 9.15819 37.6051C8.98038 37.6051 8.80512 37.6223 8.62478 37.6339C8.572 37.2182 8.52402 36.838 8.43823 36.4615H7.01016Z" fill="white"/>
+<path d="M15.0031 33.7866C15.0858 33.7982 15.1682 33.8148 15.2546 33.8148C15.3401 33.8148 15.4355 33.7982 15.5238 33.7866C15.3934 35.2948 15.2749 36.518 15.2458 37.6342C15.0765 37.6227 14.9145 37.6054 14.7432 37.6054C14.5713 37.6054 14.4146 37.6227 14.2405 37.6342C14.3808 36.743 14.4409 35.8841 14.5321 35.0197C13.8838 35.8785 13.2417 36.7362 12.6214 37.6054C12.5446 37.5939 12.4718 37.5888 12.3891 37.6054C12.1613 36.8316 11.8616 35.9629 11.5825 35.082C11.2317 36.0698 10.9684 36.8482 10.7827 37.6342C10.6873 37.6227 10.5992 37.6054 10.501 37.6054C10.4025 37.6054 10.3133 37.6227 10.2131 37.6342C10.6732 36.5064 11.1456 35.2051 11.6556 33.7866C11.7391 33.7982 11.8148 33.8148 11.9006 33.8148C11.9866 33.8148 12.0761 33.7982 12.1645 33.7866C12.4185 34.6675 12.7168 35.5418 13.0145 36.4226C13.6244 35.6253 14.3328 34.7456 15.0031 33.7866Z" fill="white"/>
+<path d="M16.9516 33.7866C17.1026 33.7982 17.2519 33.8148 17.406 33.8148C17.5587 33.8148 17.7156 33.7982 17.8714 33.7866L17.0535 37.6342C16.9031 37.6227 16.7535 37.6054 16.6 37.6054C16.4467 37.6054 16.2901 37.6227 16.134 37.6342L16.9516 33.7866Z" fill="white"/>
+<path d="M19.1793 37.2018C19.7135 37.2018 20.175 37.1621 20.6 37.1225C20.5718 37.2018 20.5351 37.2862 20.519 37.3644C20.5018 37.4426 20.5024 37.527 20.497 37.6054H18.1746L18.986 33.7866C19.1372 33.7982 19.2868 33.8148 19.4401 33.8148C19.5927 33.8148 19.7499 33.7982 19.9055 33.7866L19.1793 37.2018Z" fill="white"/>
+<path d="M22.1797 33.7866C22.3307 33.7982 22.4806 33.8148 22.6327 33.8148C22.7865 33.8148 22.9443 33.7982 23.0995 33.7866L22.2822 37.6342C22.1306 37.6227 21.9813 37.6054 21.8281 37.6054C21.6748 37.6054 21.5182 37.6227 21.3618 37.6342L22.1797 33.7866Z" fill="white"/>
+<path d="M25.6061 36.1192L25.3383 34.8122L24.4851 36.1192H25.6061ZM24.2455 36.4615C23.9957 36.8883 23.7691 37.2354 23.5701 37.6223C23.473 37.6167 23.3838 37.6051 23.2845 37.6051C23.1868 37.6051 23.0866 37.6167 22.9873 37.6223L25.566 33.7361C25.6436 33.746 25.7164 33.7527 25.7963 33.7527C25.8756 33.7527 25.9507 33.7462 26.0328 33.7361L26.9148 37.6339C26.7395 37.6223 26.5707 37.6051 26.3926 37.6051C26.2151 37.6051 26.0404 37.6223 25.8601 37.6339C25.8076 37.2182 25.7599 36.838 25.6738 36.4615H24.2455Z" fill="white"/>
+<path d="M28.5575 37.2018C29.0917 37.2018 29.5534 37.1621 29.9785 37.1225C29.9497 37.2018 29.9138 37.2862 29.8963 37.3644C29.8797 37.4426 29.8808 37.527 29.876 37.6054H27.5527L28.3636 33.7866C28.5151 33.7982 28.6644 33.8148 28.8182 33.8148C28.9721 33.8148 29.1281 33.7982 29.2845 33.7866L28.5575 37.2018Z" fill="white"/>
+<path d="M33.8765 33.7866C33.8469 33.8648 33.8099 33.9486 33.7938 34.0271C33.7772 34.1053 33.7772 34.1896 33.7735 34.2681C33.4097 34.2241 33.0019 34.1789 32.3728 34.1899L32.1177 35.3959H32.7549C33.0315 35.3959 33.2875 35.3733 33.5201 35.3451C33.4907 35.4244 33.4546 35.5082 33.4379 35.5869C33.4218 35.6651 33.4218 35.7495 33.4176 35.828C33.1978 35.8003 32.9508 35.7777 32.6739 35.7777H32.0361L31.7336 37.2021C32.3604 37.197 32.7837 37.1685 33.1667 37.1228C33.1379 37.2021 33.1018 37.2865 33.0857 37.3647C33.0682 37.4429 33.0685 37.5272 33.0637 37.6057H30.7283L31.5402 33.7869H33.8765" fill="white"/>
+<path d="M36.4691 34.5096C36.4084 34.2119 36.2171 34.0214 35.8677 34.0214C35.3831 34.0214 35.1446 34.2517 35.076 34.5715C34.9146 35.329 36.8086 35.1878 36.5357 36.4725C36.3825 37.1902 35.5993 37.7073 34.6493 37.7073C34.3115 37.7073 33.9652 37.6339 33.7129 37.4654C33.8368 37.23 33.9542 36.9947 34.042 36.7533H34.1594C34.1687 37.1403 34.4509 37.3697 34.8743 37.3697C35.2536 37.3697 35.6329 37.1742 35.7153 36.7878C35.9055 35.8897 34.0092 36.2151 34.2965 34.8636C34.4343 34.2181 35.0315 33.6855 35.9634 33.6855C36.4042 33.6855 36.7643 33.8371 36.8741 33.9551C36.7624 34.1337 36.6624 34.3189 36.56 34.5102H36.4691" fill="white"/>
+</svg>
\ No newline at end of file
diff --git a/src/assets/logos/aidantsConnect.svg b/src/assets/logos/aidantsConnect.svg
index 0a2279e41..bf9f64ab1 100644
--- a/src/assets/logos/aidantsConnect.svg
+++ b/src/assets/logos/aidantsConnect.svg
@@ -1,24 +1,24 @@
 <svg id="aidants.svg" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M5.4836 23.3733C5.37894 23.2172 5.27428 23.076 5.1472 22.9422C4.75847 22.526 4.28004 22.2881 3.70443 22.2584C2.84475 22.2212 2.14953 22.526 1.701 23.2841C1.20761 24.1165 1.32722 25.2611 1.96264 25.9523C2.35136 26.376 2.84475 26.5766 3.41288 26.6138C3.9885 26.651 4.49683 26.5023 4.93789 26.1307C5.12477 25.9672 5.28924 25.7888 5.42379 25.5733C5.46865 25.5064 5.49107 25.5138 5.55088 25.551C5.8499 25.7665 6.14892 25.9746 6.44794 26.1827C6.50774 26.2199 6.50027 26.2496 6.47036 26.3016C5.95455 27.1341 5.20701 27.6395 4.24267 27.8179C3.29328 27.9962 2.38874 27.8476 1.57391 27.3273C0.676852 26.7476 0.146091 25.9152 0.0264831 24.8523C-0.0931249 23.8118 0.190944 22.8901 0.908592 22.1172C1.46925 21.5077 2.17943 21.1584 2.99426 21.0395C3.70443 20.9354 4.3847 21.0097 5.04254 21.307C5.65553 21.582 6.13397 22.0131 6.48532 22.5854C6.50774 22.6151 6.53764 22.6449 6.47784 22.682C6.14144 22.905 5.81252 23.1429 5.4836 23.3733Z" fill="#003188"/>
-<path d="M20.7411 23.2172C20.8009 23.1652 20.8533 23.1206 20.9056 23.0834C21.3467 22.7489 21.8475 22.6375 22.3858 22.6746C22.8418 22.7043 23.2454 22.8604 23.5669 23.1949C23.8659 23.507 24.0154 23.8861 24.0677 24.3023C24.0902 24.4361 24.0902 24.5699 24.0902 24.7037C24.0902 25.6922 24.0902 26.6881 24.0902 27.6767C24.0902 27.7584 24.0677 27.7733 23.993 27.7733C23.6043 27.7658 23.2081 27.7658 22.8193 27.7733C22.7446 27.7733 22.7222 27.751 22.7296 27.6767C22.7296 26.7253 22.7296 25.7739 22.7296 24.83C22.7296 24.4064 22.4904 24.057 22.1166 23.9456C21.5036 23.7672 20.8608 24.1091 20.8533 24.8523C20.8458 25.7888 20.8533 26.7253 20.8533 27.6692C20.8533 27.7584 20.8308 27.7733 20.7411 27.7733C20.3449 27.7658 19.9487 27.7658 19.56 27.7733C19.4927 27.7733 19.4778 27.7584 19.4778 27.6915C19.4778 26.0861 19.4778 24.4733 19.4778 22.8679C19.4778 22.801 19.5002 22.7861 19.56 22.7861C19.9263 22.7861 20.2926 22.7861 20.6514 22.7861C20.7187 22.7861 20.7337 22.8084 20.7337 22.8679C20.7337 22.9719 20.7411 23.0834 20.7411 23.2172Z" fill="#003188"/>
-<path d="M23.2155 15.6138C23.2753 15.5618 23.3201 15.5246 23.365 15.4875C23.8583 15.1084 24.419 14.9969 25.0245 15.0861C25.5852 15.1604 26.0188 15.4354 26.3028 15.926C26.4897 16.253 26.572 16.6023 26.572 16.9739C26.572 18.0071 26.572 19.0402 26.572 20.0733C26.572 20.1402 26.557 20.155 26.4897 20.155C26.0935 20.155 25.6973 20.1476 25.3086 20.155C25.2338 20.155 25.2114 20.1402 25.2114 20.0584C25.2114 19.1071 25.2114 18.1557 25.2114 17.1969C25.2114 16.803 24.9946 16.476 24.6507 16.3422C24.2844 16.201 23.8509 16.2827 23.5892 16.5577C23.4023 16.751 23.3351 16.9888 23.3351 17.2489C23.3351 18.178 23.3351 19.1145 23.3351 20.0435C23.3351 20.1253 23.3201 20.155 23.2304 20.155C22.8342 20.1476 22.438 20.1476 22.0493 20.155C21.982 20.155 21.967 20.1402 21.967 20.0733C21.967 18.4604 21.967 16.855 21.967 15.2422C21.967 15.1753 21.9895 15.1604 22.0493 15.1604C22.4156 15.1604 22.7819 15.1604 23.1407 15.1604C23.208 15.1604 23.2229 15.1827 23.2229 15.2422C23.208 15.3685 23.2155 15.48 23.2155 15.6138Z" fill="#003188"/>
-<path d="M14.9626 23.2172C15.5158 22.7266 16.1437 22.5854 16.839 22.7043C17.579 22.8232 18.1173 23.3732 18.2593 24.1239C18.2967 24.3097 18.3116 24.4955 18.3116 24.6888C18.3116 25.6847 18.3116 26.6807 18.3116 27.6692C18.3116 27.7435 18.2967 27.7658 18.2145 27.7658C17.8257 27.7584 17.4295 27.7584 17.0408 27.7658C16.9586 27.7658 16.9436 27.7435 16.9436 27.6692C16.9436 26.7253 16.9436 25.7739 16.9436 24.83C16.9436 24.4063 16.7119 24.057 16.3306 23.9381C15.7401 23.7523 15.0673 24.0793 15.0673 24.8449C15.0598 25.7888 15.0673 26.7253 15.0673 27.6692C15.0673 27.7509 15.0448 27.7732 14.9626 27.7732C14.5739 27.7658 14.1777 27.7732 13.789 27.7732C13.7217 27.7732 13.6918 27.7584 13.6918 27.6841C13.6918 26.0786 13.6918 24.4807 13.6918 22.8753C13.6918 22.8009 13.7142 22.7861 13.789 22.7861C14.1478 22.7935 14.5141 22.7935 14.8729 22.7861C14.9402 22.7861 14.9626 22.8009 14.9551 22.8678C14.9551 22.9719 14.9626 23.0908 14.9626 23.2172Z" fill="#003188"/>
-<path d="M33.5616 22.6597C34.2718 22.6672 34.8773 22.8753 35.3707 23.3658C35.5052 23.507 35.6248 23.6557 35.722 23.8266C35.7519 23.8786 35.7519 23.9009 35.6996 23.9381C35.4155 24.1536 35.1389 24.3692 34.8549 24.5847C34.8025 24.6219 34.7876 24.6145 34.7577 24.5699C34.5858 24.3172 34.3764 24.1091 34.0849 23.9901C33.3598 23.7077 32.4328 24.0719 32.2983 25.0381C32.2459 25.4246 32.3132 25.7888 32.5449 26.1084C33.0009 26.7327 33.9354 26.7996 34.5035 26.2496C34.6007 26.1604 34.6829 26.0638 34.7577 25.9523C34.7801 25.9151 34.8025 25.9077 34.8399 25.9374C35.124 26.1604 35.4081 26.3759 35.6996 26.5915C35.7594 26.6361 35.737 26.6658 35.7071 26.703C35.3557 27.2753 34.8474 27.6543 34.1896 27.803C33.0458 28.0631 31.7974 27.6097 31.2068 26.5172C30.3696 24.9861 31.1919 23.0462 33.0458 22.6969C33.2327 22.682 33.4046 22.6672 33.5616 22.6597Z" fill="#003188"/>
-<path d="M33.7185 20.2739C33.0158 20.2665 32.3879 20.0584 31.8721 19.5678C31.8048 19.5009 31.7375 19.4192 31.6702 19.3523C31.6403 19.3226 31.6478 19.2928 31.6702 19.2631C31.8721 19.0253 32.0739 18.78 32.2757 18.5347C32.3206 18.4827 32.3356 18.4901 32.3804 18.5347C32.6495 18.7949 32.956 19.0104 33.3223 19.107C33.5615 19.1665 33.8008 19.1813 34.04 19.1145C34.1072 19.0996 34.1671 19.0699 34.2269 19.0253C34.4212 18.884 34.4212 18.6313 34.2269 18.4901C34.1147 18.4009 33.9802 18.3563 33.8456 18.2969C33.5316 18.1631 33.2027 18.0442 32.8962 17.8881C32.5972 17.7395 32.3206 17.5536 32.1412 17.2638C31.7151 16.5874 31.9917 15.6584 32.7093 15.2867C33.113 15.0861 33.5391 15.0266 33.9802 15.0563C34.5707 15.0935 35.094 15.3016 35.5201 15.7178C35.5799 15.7773 35.6023 15.8145 35.5351 15.8962C35.3407 16.1192 35.1538 16.3496 34.9669 16.5874C34.9221 16.6469 34.8997 16.6395 34.8473 16.5949C34.5109 16.3124 34.1297 16.1489 33.6811 16.1786C33.584 16.1861 33.4943 16.2084 33.4046 16.253C33.2177 16.3645 33.1952 16.6023 33.3597 16.7509C33.4419 16.8253 33.5466 16.8699 33.6438 16.9145C34.0026 17.0705 34.3764 17.2043 34.7277 17.3753C34.9071 17.4645 35.0791 17.5759 35.236 17.7023C35.6098 18.0293 35.722 18.4455 35.6547 18.9138C35.55 19.6124 35.094 19.9915 34.4436 20.1847C34.2119 20.2516 33.9727 20.2813 33.7185 20.2739Z" fill="#003188"/>
-<path d="M37.0378 25.2165C37.0378 24.7632 37.0378 24.3841 37.0378 24.0051C37.0378 23.9456 37.0228 23.9233 36.9555 23.9233C36.7462 23.9307 36.5294 23.9233 36.3201 23.9233C36.2603 23.9233 36.2454 23.9084 36.2454 23.849C36.2454 23.5145 36.2454 23.1801 36.2454 22.8456C36.2454 22.7861 36.2678 22.7713 36.3201 22.7713C36.5294 22.7713 36.7462 22.7713 36.9555 22.7713C37.0228 22.7713 37.0378 22.749 37.0378 22.6895C37.0378 22.3253 37.0378 21.9611 37.0378 21.5969C37.0378 21.5226 37.0602 21.5078 37.1275 21.5078C37.5312 21.5078 37.9274 21.5152 38.331 21.5078C38.4133 21.5078 38.4207 21.53 38.4207 21.6044C38.4207 21.9686 38.4207 22.3253 38.4207 22.6895C38.4207 22.7564 38.4432 22.7713 38.503 22.7713C38.9216 22.7713 39.3402 22.7713 39.7589 22.7713C39.8187 22.7713 39.8411 22.7861 39.8411 22.8456C39.8411 23.1801 39.8336 23.5071 39.8411 23.8415C39.8411 23.9159 39.8187 23.9233 39.7514 23.9233C39.3328 23.9233 38.9216 23.9233 38.503 23.9233C38.4282 23.9233 38.4133 23.9382 38.4133 24.0125C38.4133 24.6442 38.4133 25.276 38.4133 25.9078C38.4133 26.3611 38.645 26.6064 39.1085 26.651C39.3776 26.6733 39.6542 26.6436 39.9233 26.6287C39.9831 26.6213 39.9981 26.6361 39.9981 26.6956C39.9981 27.0301 39.9981 27.3645 39.9981 27.699C39.9981 27.7287 40.013 27.7584 39.9607 27.7733C39.3701 27.9071 38.787 27.9442 38.2039 27.7659C37.5386 27.5578 37.1798 27.0895 37.0826 26.4206C37.0079 25.9969 37.0527 25.5659 37.0378 25.2165Z" fill="#003188"/>
-<path d="M29.5248 17.4422C29.5322 17.7246 29.5023 18.0739 29.5397 18.4233C29.5696 18.7652 29.7565 18.9584 30.1004 19.0253C30.3546 19.0699 30.6087 19.055 30.8704 19.0327C30.9077 19.0327 30.9451 19.0253 30.99 19.0253C31.1171 19.0179 31.1171 19.0179 31.1171 19.1516C31.1171 19.4638 31.1171 19.7685 31.1171 20.0807C31.1171 20.1179 31.1245 20.1625 31.0647 20.1699C30.4742 20.3037 29.8836 20.3334 29.293 20.1476C28.6651 19.9469 28.3137 19.5084 28.2016 18.8692C28.1717 18.7057 28.1642 18.5422 28.1642 18.3712C28.1642 17.7172 28.1642 17.0631 28.1642 16.4091C28.1642 16.3273 28.1418 16.305 28.0596 16.305C27.8503 16.3125 27.6484 16.305 27.4391 16.305C27.3868 16.305 27.3718 16.2902 27.3718 16.2381C27.3718 15.8962 27.3718 15.5618 27.3718 15.2199C27.3718 15.1679 27.3868 15.153 27.4391 15.153C27.6484 15.153 27.8652 15.153 28.0745 15.153C28.1418 15.153 28.1568 15.1381 28.1568 15.0712C28.1568 14.707 28.1568 14.3429 28.1568 13.9787C28.1568 13.9118 28.1717 13.8969 28.239 13.8969C28.6427 13.8969 29.0463 13.8969 29.45 13.8969C29.5098 13.8969 29.5322 13.9118 29.5322 13.9787C29.5322 14.3429 29.5322 14.707 29.5322 15.0712C29.5322 15.1456 29.5547 15.1604 29.622 15.1604C30.0406 15.1604 30.4517 15.1604 30.8704 15.1604C30.9376 15.1604 30.9601 15.1753 30.9601 15.2496C30.9526 15.5766 30.9601 15.9111 30.9601 16.2381C30.9601 16.305 30.9376 16.3199 30.8778 16.3125C30.4592 16.3125 30.0406 16.3125 29.622 16.3125C29.5547 16.3125 29.5322 16.3273 29.5322 16.4016C29.5248 16.7287 29.5248 17.0557 29.5248 17.4422Z" fill="#003188"/>
-<path d="M8.70557 17.6651C8.70557 18.4604 8.70557 19.2631 8.70557 20.0584C8.70557 20.1402 8.68314 20.155 8.60091 20.155C8.21219 20.1476 7.81599 20.155 7.42726 20.155C7.35998 20.155 7.33008 20.1402 7.33008 20.0658C7.33008 18.4604 7.33008 16.8624 7.33008 15.257C7.33008 15.1901 7.34503 15.1678 7.41978 15.1678C7.82346 15.1678 8.21966 15.1753 8.62334 15.1678C8.6981 15.1678 8.70557 15.1976 8.70557 15.257C8.70557 16.0597 8.70557 16.8624 8.70557 17.6651Z" fill="#003188"/>
-<path d="M14.9849 12.6036C14.5962 12.6036 14.2 12.6111 13.8113 12.6036C13.7291 12.6036 13.6992 12.6185 13.6992 12.7077C13.7066 13.555 13.6992 14.4097 13.6992 15.257C13.6992 15.3834 13.6992 15.5023 13.6992 15.6509C13.6543 15.6138 13.6319 15.584 13.602 15.5618C13.1609 15.1678 12.6376 15.034 12.062 15.0712C11.1351 15.1307 10.4623 15.5766 10.0511 16.4016C9.74461 17.0185 9.69976 17.6726 9.84179 18.3415C9.94645 18.8469 10.1857 19.2928 10.5669 19.657C11.0603 20.1178 11.6583 20.3111 12.3311 20.2814C12.817 20.2591 13.2581 20.1178 13.6169 19.7759C13.6842 19.7165 13.744 19.6422 13.8113 19.5678C13.8113 19.7462 13.8113 19.9097 13.8113 20.0732C13.8113 20.1327 13.8188 20.1624 13.8935 20.1624C14.2598 20.155 14.6261 20.155 14.9999 20.1624C15.0672 20.1624 15.0821 20.1401 15.0821 20.0732C15.0821 17.6131 15.0821 15.153 15.0821 12.6854C15.0821 12.6111 15.0522 12.6036 14.9849 12.6036ZM13.6618 18.1482C13.5048 18.6982 13.0488 19.0327 12.4657 19.0327C11.7854 19.0327 11.2472 18.5496 11.1799 17.8658C11.1425 17.4868 11.1949 17.13 11.4191 16.8178C11.748 16.3719 12.204 16.2158 12.7348 16.3273C13.2656 16.4313 13.5721 16.7807 13.6842 17.3009C13.7515 17.5759 13.744 17.8658 13.6618 18.1482Z" fill="#003188"/>
-<path d="M6.47784 20.0732C6.32833 19.7091 6.17882 19.3374 6.02931 18.9732C5.28176 17.1374 4.53421 15.2942 3.78666 13.4584C3.76423 13.4063 3.73433 13.3915 3.682 13.3915C3.44278 13.3915 3.19609 13.3989 2.95688 13.3915C2.87465 13.3915 2.83727 13.4212 2.80737 13.4955C2.38126 14.5435 1.95516 15.5915 1.52158 16.6395C1.0581 17.7766 0.587142 18.9212 0.116185 20.0658C0.0937585 20.1253 0.086283 20.155 0.168514 20.155C0.602093 20.1476 1.04315 20.155 1.47673 20.155C1.53653 20.155 1.56643 20.1327 1.58886 20.0807C1.69352 19.8354 1.79817 19.5901 1.90283 19.3449C1.91778 19.3003 1.94021 19.2928 1.98506 19.2928C2.85222 19.2928 3.72685 19.2928 4.59401 19.2928C4.64634 19.2928 4.66877 19.3077 4.68372 19.3523C4.78837 19.5976 4.89303 19.8428 4.99769 20.0881C5.02011 20.1401 5.04254 20.1624 5.10235 20.155C5.31914 20.155 5.53592 20.155 5.76019 20.155C5.98445 20.155 6.19377 20.155 6.41803 20.155C6.50026 20.1624 6.50774 20.1401 6.47784 20.0732ZM2.41116 18.1705C2.70271 17.3084 3.00173 16.4462 3.30075 15.5692C3.59977 16.4462 3.89131 17.3084 4.19033 18.1705C3.59229 18.1705 3.0092 18.1705 2.41116 18.1705Z" fill="#003188"/>
-<path d="M12.4656 24.4955C12.0993 23.3435 10.9406 22.578 9.69968 22.6746C9.01941 22.7266 8.41389 22.9645 7.94294 23.455C7.21034 24.2131 7.02345 25.1124 7.33742 26.1009C7.67382 27.1712 8.70544 27.8773 9.90152 27.8773C10.1108 27.8699 10.3426 27.8476 10.5743 27.7881C12.0545 27.4314 12.9216 25.9226 12.4656 24.4955ZM10.2529 26.5692C9.47541 26.7773 8.72039 26.3388 8.60826 25.4915C8.54098 24.9935 8.66059 24.5476 9.04184 24.2057C9.6623 23.6557 10.8135 23.834 11.1125 24.8374C11.135 24.9118 11.1499 24.9935 11.1649 25.0753C11.1724 25.1422 11.1724 25.2016 11.1798 25.2685C11.1798 25.9003 10.821 26.4205 10.2529 26.5692Z" fill="#003188"/>
-<path d="M20.6439 17.2415C20.6439 17.0408 20.629 16.8402 20.5916 16.6395C20.4645 15.978 20.1132 15.4875 19.4778 15.2348C18.9769 15.0341 18.4611 15.0192 17.9378 15.1084C17.2874 15.2199 16.7641 15.5544 16.338 16.0449C16.3081 16.0746 16.3081 16.0969 16.338 16.1341C16.5548 16.3794 16.7641 16.6321 16.9735 16.8848C17.0034 16.9219 17.0258 16.9294 17.0632 16.8848C17.1155 16.8327 17.1678 16.7807 17.2202 16.7287C17.5715 16.3942 17.9827 16.201 18.4835 16.2456C18.8199 16.2753 19.089 16.4165 19.2161 16.751C19.2759 16.9145 19.2684 17.0854 19.2759 17.2489C19.2759 17.3158 19.2535 17.3307 19.1937 17.3307C18.79 17.3307 18.3863 17.3307 17.9827 17.3307C17.6612 17.3307 17.3472 17.3827 17.0482 17.4942C15.8596 17.9402 15.9418 19.3152 16.5997 19.8652C16.8912 20.103 17.2276 20.2294 17.5939 20.2591C18.1396 20.3111 18.6554 20.2219 19.1115 19.9098C19.2086 19.8429 19.2909 19.7685 19.388 19.6868C19.388 19.8206 19.3955 19.9395 19.388 20.0584C19.388 20.1327 19.403 20.155 19.4778 20.155C19.8291 20.1476 20.1804 20.1476 20.5318 20.155C20.6215 20.155 20.6439 20.1402 20.6439 20.0435C20.6439 19.1145 20.6439 18.178 20.6439 17.2415ZM18.2817 19.278C18.1097 19.2854 17.9453 19.2706 17.7958 19.1962C17.5939 19.0996 17.4818 18.9138 17.5042 18.6983C17.5266 18.4753 17.6463 18.3415 17.878 18.2746C17.9901 18.2449 18.1023 18.2375 18.2144 18.2375C18.3564 18.2375 18.4985 18.2375 18.633 18.2375C18.8199 18.2375 19.0068 18.2375 19.2012 18.2375C19.261 18.2375 19.2759 18.2598 19.2759 18.3118C19.2535 18.8395 18.8274 19.2631 18.2817 19.278Z" fill="#003188"/>
-<path d="M10.0885 14.603C9.9988 14.5361 9.90909 14.4692 9.81938 14.4023C9.73715 14.3131 9.65492 14.2165 9.58764 14.1199C9.49046 13.9266 9.40075 13.7334 9.3858 13.5104C9.3858 13.5104 9.3858 13.503 9.37833 13.503C9.37833 13.503 9.37833 13.5104 9.3858 13.5104C9.3858 13.3915 9.37833 13.2726 9.40076 13.1537C9.43066 12.9679 9.50541 12.8043 9.58764 12.6408C9.6624 12.5516 9.73715 12.455 9.81938 12.3658C9.90909 12.2841 10.0063 12.2172 10.1109 12.1577C10.2604 12.0908 10.4174 12.0388 10.5819 12.0016C10.4324 12.0016 10.2829 12.0016 10.1334 12.0016C10.0287 12.0016 9.93152 12.0016 9.82686 12.0016C9.74463 12.0016 9.6624 12.0016 9.57269 12.0016C9.49794 12.0016 9.43066 12.0016 9.3559 12.0016C9.28862 12.0016 9.22134 12.0016 9.16154 12.0016C9.10173 12.0016 9.04193 12.0016 8.98213 12.0016C8.92232 12.0016 8.86252 12.0016 8.80271 12.0016C8.74291 12.0016 8.68311 12.0016 8.6233 12.0016C8.5635 12.0016 8.50369 12.0016 8.44389 12.0016C8.38409 12.0016 8.32428 12.0016 8.26448 12.0016C8.21215 12.0016 8.15982 12.0016 8.10002 12.0016C8.04769 12.0016 7.99536 12.0016 7.93556 12.0016C7.86828 11.9942 7.801 12.0165 7.74119 12.0165C7.64401 12.0314 7.54683 12.076 7.45712 12.1057C7.35994 12.1429 7.27771 12.2097 7.18801 12.2692C7.1581 12.2915 7.1282 12.3064 7.0983 12.3287C6.97122 12.4476 6.86656 12.5591 6.87403 12.7672C6.88899 13.2057 6.88151 13.6516 6.87403 14.0902C6.87403 14.157 6.88151 14.2165 6.92636 14.2685C7.00112 14.3429 7.0684 14.432 7.16558 14.4915C7.25529 14.5584 7.34499 14.6179 7.44965 14.655C7.53188 14.707 7.62159 14.7293 7.71877 14.7442C7.78605 14.7665 7.8608 14.7665 7.93556 14.7814C7.98788 14.7814 8.04021 14.7814 8.10002 14.7814C8.15235 14.7814 8.20467 14.7814 8.26448 14.7814C8.32428 14.7814 8.38409 14.7814 8.44389 14.7814C8.50369 14.7814 8.5635 14.7814 8.6233 14.7814C8.68311 14.7814 8.74291 14.7814 8.80271 14.7814C8.86252 14.7814 8.92232 14.7814 8.98213 14.7814C9.04193 14.7814 9.10173 14.7814 9.16154 14.7814C9.22134 14.7814 9.28115 14.7814 9.34095 14.7814C9.41571 14.7814 9.49794 14.7814 9.57269 14.7814C9.64745 14.7814 9.72968 14.7814 9.80443 14.7814C9.90161 14.7814 9.9988 14.7814 10.0885 14.7814C10.2604 14.7814 10.4399 14.7814 10.6118 14.7814C10.4324 14.7368 10.253 14.6848 10.0885 14.603Z" fill="url(#paint0_linear_5665_162221)"/>
-<path d="M10.552 12.0091C10.9407 11.9719 11.2995 12.0462 11.6135 12.2841C12.0545 12.6185 12.2564 13.1908 12.1218 13.7334C11.9873 14.276 11.5312 14.6773 10.9781 14.7665C10.8435 14.7888 10.7164 14.7814 10.5819 14.7814C10.395 14.7814 10.223 14.7219 10.0586 14.6327C9.96139 14.5733 9.86421 14.5064 9.78198 14.4246C9.6848 14.3354 9.61004 14.2388 9.53529 14.1273C9.43063 13.9341 9.33345 13.7408 9.33345 13.5178C9.3185 13.28 9.34092 13.0496 9.4381 12.8341C9.46801 12.7746 9.49791 12.7151 9.52781 12.6631C9.59509 12.5591 9.67732 12.4624 9.7745 12.3733C9.86421 12.2841 9.96139 12.2097 10.0735 12.1577C10.2305 12.0685 10.3875 12.0165 10.552 12.0091Z" fill="#FE3954"/>
-<path d="M30.093 24.674C30.0182 24.0868 29.7715 23.5888 29.3155 23.2098C28.725 22.7192 28.0297 22.578 27.2897 22.7044C26.0487 22.9125 25.1741 23.9084 25.1218 25.1571C25.0769 26.2942 25.7048 27.2902 26.7589 27.6767C27.8653 28.0855 28.8969 27.9071 29.8313 27.1787C29.8762 27.1415 29.8687 27.1192 29.8463 27.0821C29.6818 26.8145 29.5174 26.5544 29.3604 26.2868C29.323 26.2199 29.2931 26.2199 29.2333 26.2645C28.7474 26.6213 28.2017 26.7848 27.5887 26.6882C27.0654 26.6064 26.7066 26.3314 26.5272 25.826C26.5047 25.7517 26.5047 25.7294 26.5944 25.7294C27.1476 25.7368 27.7008 25.7294 28.254 25.7294C28.8147 25.7294 29.3753 25.7294 29.936 25.7294C29.9883 25.7294 30.0182 25.7219 30.0332 25.6551C30.1004 25.3355 30.1378 25.0084 30.093 24.674ZM28.6876 24.7706C28.3362 24.7632 27.9924 24.7706 27.641 24.7706C27.2897 24.7706 26.9383 24.7706 26.587 24.7706C26.5496 24.7706 26.5047 24.7855 26.5272 24.7111C26.6692 24.2429 26.9533 23.9084 27.4541 23.7895C27.9699 23.6706 28.5007 23.9084 28.7025 24.3469C28.7474 24.451 28.7698 24.555 28.7848 24.6665C28.7922 24.7483 28.7773 24.7706 28.6876 24.7706Z" fill="#003188"/>
+<path d="M5.4836 23.3734C5.37894 23.2173 5.27428 23.0761 5.1472 22.9423C4.75847 22.5261 4.28004 22.2882 3.70443 22.2585C2.84475 22.2213 2.14953 22.5261 1.701 23.2842C1.20761 24.1166 1.32722 25.2612 1.96264 25.9524C2.35136 26.3761 2.84475 26.5768 3.41288 26.6139C3.9885 26.6511 4.49683 26.5024 4.93789 26.1308C5.12477 25.9673 5.28924 25.7889 5.42379 25.5734C5.46865 25.5065 5.49107 25.5139 5.55088 25.5511C5.8499 25.7666 6.14892 25.9747 6.44794 26.1828C6.50774 26.22 6.50027 26.2497 6.47036 26.3018C5.95455 27.1342 5.20701 27.6396 4.24267 27.818C3.29328 27.9964 2.38874 27.8477 1.57391 27.3274C0.676852 26.7477 0.146091 25.9153 0.0264831 24.8524C-0.0931249 23.8119 0.190944 22.8903 0.908592 22.1173C1.46925 21.5078 2.17943 21.1585 2.99426 21.0396C3.70443 20.9355 4.3847 21.0099 5.04254 21.3072C5.65553 21.5822 6.13397 22.0132 6.48532 22.5855C6.50774 22.6153 6.53764 22.645 6.47784 22.6822C6.14144 22.9051 5.81252 23.143 5.4836 23.3734Z" fill="#003188"/>
+<path d="M20.7411 23.2171C20.8009 23.1651 20.8533 23.1205 20.9056 23.0833C21.3467 22.7489 21.8475 22.6374 22.3858 22.6746C22.8418 22.7043 23.2454 22.8604 23.5669 23.1948C23.8659 23.507 24.0154 23.886 24.0677 24.3023C24.0902 24.436 24.0902 24.5698 24.0902 24.7036C24.0902 25.6921 24.0902 26.6881 24.0902 27.6766C24.0902 27.7583 24.0677 27.7732 23.993 27.7732C23.6043 27.7658 23.2081 27.7658 22.8193 27.7732C22.7446 27.7732 22.7222 27.7509 22.7296 27.6766C22.7296 26.7252 22.7296 25.7739 22.7296 24.83C22.7296 24.4063 22.4904 24.057 22.1166 23.9455C21.5036 23.7671 20.8608 24.109 20.8533 24.8523C20.8458 25.7887 20.8533 26.7252 20.8533 27.6692C20.8533 27.7583 20.8308 27.7732 20.7411 27.7732C20.3449 27.7658 19.9487 27.7658 19.56 27.7732C19.4927 27.7732 19.4778 27.7583 19.4778 27.6915C19.4778 26.086 19.4778 24.4732 19.4778 22.8678C19.4778 22.8009 19.5002 22.786 19.56 22.786C19.9263 22.786 20.2926 22.786 20.6514 22.786C20.7187 22.786 20.7337 22.8083 20.7337 22.8678C20.7337 22.9719 20.7411 23.0833 20.7411 23.2171Z" fill="#003188"/>
+<path d="M23.2155 15.6139C23.2753 15.5618 23.3201 15.5247 23.365 15.4875C23.8583 15.1085 24.419 14.997 25.0245 15.0862C25.5852 15.1605 26.0188 15.4355 26.3028 15.926C26.4897 16.2531 26.572 16.6024 26.572 16.974C26.572 18.0071 26.572 19.0402 26.572 20.0733C26.572 20.1402 26.557 20.1551 26.4897 20.1551C26.0935 20.1551 25.6973 20.1477 25.3086 20.1551C25.2338 20.1551 25.2114 20.1402 25.2114 20.0585C25.2114 19.1071 25.2114 18.1558 25.2114 17.197C25.2114 16.8031 24.9946 16.476 24.6507 16.3422C24.2844 16.201 23.8509 16.2828 23.5892 16.5578C23.4023 16.751 23.3351 16.9889 23.3351 17.249C23.3351 18.1781 23.3351 19.1145 23.3351 20.0436C23.3351 20.1254 23.3201 20.1551 23.2304 20.1551C22.8342 20.1477 22.438 20.1477 22.0493 20.1551C21.982 20.1551 21.967 20.1402 21.967 20.0733C21.967 18.4605 21.967 16.8551 21.967 15.2422C21.967 15.1754 21.9895 15.1605 22.0493 15.1605C22.4156 15.1605 22.7819 15.1605 23.1407 15.1605C23.208 15.1605 23.2229 15.1828 23.2229 15.2422C23.208 15.3686 23.2155 15.4801 23.2155 15.6139Z" fill="#003188"/>
+<path d="M14.9625 23.2172C15.5157 22.7266 16.1436 22.5854 16.8388 22.7043C17.5789 22.8232 18.1172 23.3732 18.2592 24.1239C18.2966 24.3097 18.3115 24.4955 18.3115 24.6888C18.3115 25.6847 18.3115 26.6807 18.3115 27.6692C18.3115 27.7435 18.2966 27.7658 18.2143 27.7658C17.8256 27.7584 17.4294 27.7584 17.0407 27.7658C16.9584 27.7658 16.9435 27.7435 16.9435 27.6692C16.9435 26.7253 16.9435 25.7739 16.9435 24.83C16.9435 24.4063 16.7118 24.057 16.3305 23.9381C15.7399 23.7523 15.0671 24.0793 15.0671 24.8449C15.0597 25.7888 15.0671 26.7253 15.0671 27.6692C15.0671 27.7509 15.0447 27.7732 14.9625 27.7732C14.5738 27.7658 14.1776 27.7732 13.7888 27.7732C13.7216 27.7732 13.6917 27.7584 13.6917 27.6841C13.6917 26.0786 13.6917 24.4807 13.6917 22.8753C13.6917 22.8009 13.7141 22.7861 13.7888 22.7861C14.1477 22.7935 14.514 22.7935 14.8728 22.7861C14.9401 22.7861 14.9625 22.8009 14.955 22.8678C14.955 22.9719 14.9625 23.0908 14.9625 23.2172Z" fill="#003188"/>
+<path d="M33.5616 22.6597C34.2718 22.6671 34.8773 22.8752 35.3707 23.3657C35.5052 23.507 35.6248 23.6556 35.722 23.8266C35.7519 23.8786 35.7519 23.9009 35.6996 23.938C35.4155 24.1536 35.1389 24.3691 34.8549 24.5847C34.8025 24.6218 34.7876 24.6144 34.7577 24.5698C34.5858 24.3171 34.3764 24.109 34.0849 23.9901C33.3598 23.7076 32.4328 24.0718 32.2983 25.038C32.2459 25.4245 32.3132 25.7887 32.5449 26.1083C33.0009 26.7326 33.9354 26.7995 34.5035 26.2495C34.6007 26.1603 34.6829 26.0637 34.7577 25.9522C34.7801 25.9151 34.8025 25.9076 34.8399 25.9374C35.124 26.1603 35.4081 26.3759 35.6996 26.5914C35.7594 26.636 35.737 26.6658 35.7071 26.7029C35.3557 27.2752 34.8474 27.6543 34.1896 27.8029C33.0458 28.0631 31.7974 27.6097 31.2068 26.5171C30.3696 24.986 31.1919 23.0462 33.0458 22.6968C33.2327 22.682 33.4046 22.6671 33.5616 22.6597Z" fill="#003188"/>
+<path d="M33.7186 20.2739C33.0159 20.2664 32.388 20.0583 31.8722 19.5678C31.8049 19.5009 31.7376 19.4191 31.6704 19.3522C31.6405 19.3225 31.6479 19.2928 31.6704 19.263C31.8722 19.0252 32.074 18.7799 32.2759 18.5347C32.3207 18.4826 32.3357 18.4901 32.3805 18.5347C32.6496 18.7948 32.9561 19.0103 33.3224 19.107C33.5617 19.1664 33.8009 19.1813 34.0401 19.1144C34.1074 19.0995 34.1672 19.0698 34.227 19.0252C34.4213 18.884 34.4213 18.6313 34.227 18.4901C34.1148 18.4009 33.9803 18.3563 33.8457 18.2968C33.5318 18.163 33.2028 18.0441 32.8963 17.888C32.5973 17.7394 32.3207 17.5536 32.1413 17.2637C31.7152 16.5874 31.9918 15.6583 32.7095 15.2867C33.1131 15.086 33.5392 15.0266 33.9803 15.0563C34.5709 15.0934 35.0941 15.3016 35.5202 15.7178C35.58 15.7772 35.6025 15.8144 35.5352 15.8961C35.3408 16.1191 35.1539 16.3495 34.9671 16.5874C34.9222 16.6468 34.8998 16.6394 34.8474 16.5948C34.511 16.3124 34.1298 16.1488 33.6813 16.1786C33.5841 16.186 33.4944 16.2083 33.4047 16.2529C33.2178 16.3644 33.1954 16.6022 33.3598 16.7509C33.4421 16.8252 33.5467 16.8698 33.6439 16.9144C34.0027 17.0705 34.3765 17.2043 34.7278 17.3752C34.9073 17.4644 35.0792 17.5759 35.2362 17.7022C35.6099 18.0293 35.7221 18.4455 35.6548 18.9137C35.5501 19.6124 35.0941 19.9914 34.4438 20.1847C34.212 20.2516 33.9728 20.2813 33.7186 20.2739Z" fill="#003188"/>
+<path d="M37.0378 25.2166C37.0378 24.7632 37.0378 24.3842 37.0378 24.0051C37.0378 23.9457 37.0228 23.9234 36.9555 23.9234C36.7462 23.9308 36.5294 23.9234 36.3201 23.9234C36.2603 23.9234 36.2454 23.9085 36.2454 23.849C36.2454 23.5146 36.2454 23.1801 36.2454 22.8457C36.2454 22.7862 36.2678 22.7713 36.3201 22.7713C36.5294 22.7713 36.7462 22.7713 36.9555 22.7713C37.0228 22.7713 37.0378 22.749 37.0378 22.6896C37.0378 22.3254 37.0378 21.9612 37.0378 21.597C37.0378 21.5227 37.0602 21.5078 37.1275 21.5078C37.5312 21.5078 37.9274 21.5152 38.331 21.5078C38.4133 21.5078 38.4207 21.5301 38.4207 21.6044C38.4207 21.9686 38.4207 22.3254 38.4207 22.6896C38.4207 22.7565 38.4432 22.7713 38.503 22.7713C38.9216 22.7713 39.3402 22.7713 39.7589 22.7713C39.8187 22.7713 39.8411 22.7862 39.8411 22.8457C39.8411 23.1801 39.8336 23.5071 39.8411 23.8416C39.8411 23.9159 39.8187 23.9234 39.7514 23.9234C39.3328 23.9234 38.9216 23.9234 38.503 23.9234C38.4282 23.9234 38.4133 23.9382 38.4133 24.0125C38.4133 24.6443 38.4133 25.2761 38.4133 25.9078C38.4133 26.3612 38.645 26.6065 39.1085 26.6511C39.3776 26.6734 39.6542 26.6436 39.9233 26.6288C39.9831 26.6213 39.9981 26.6362 39.9981 26.6957C39.9981 27.0301 39.9981 27.3646 39.9981 27.699C39.9981 27.7288 40.013 27.7585 39.9607 27.7734C39.3701 27.9071 38.787 27.9443 38.2039 27.7659C37.5386 27.5578 37.1798 27.0896 37.0826 26.4207C37.0079 25.997 37.0527 25.5659 37.0378 25.2166Z" fill="#003188"/>
+<path d="M29.5248 17.4422C29.5322 17.7247 29.5023 18.074 29.5397 18.4233C29.5696 18.7652 29.7565 18.9585 30.1004 19.0254C30.3546 19.07 30.6087 19.0551 30.8704 19.0328C30.9077 19.0328 30.9451 19.0254 30.99 19.0254C31.1171 19.0179 31.1171 19.0179 31.1171 19.1517C31.1171 19.4639 31.1171 19.7686 31.1171 20.0808C31.1171 20.1179 31.1245 20.1625 31.0647 20.17C30.4742 20.3037 29.8836 20.3335 29.293 20.1477C28.6651 19.947 28.3137 19.5085 28.2016 18.8693C28.1717 18.7058 28.1642 18.5422 28.1642 18.3713C28.1642 17.7172 28.1642 17.0632 28.1642 16.4091C28.1642 16.3274 28.1418 16.3051 28.0596 16.3051C27.8503 16.3125 27.6484 16.3051 27.4391 16.3051C27.3868 16.3051 27.3718 16.2902 27.3718 16.2382C27.3718 15.8963 27.3718 15.5618 27.3718 15.2199C27.3718 15.1679 27.3868 15.1531 27.4391 15.1531C27.6484 15.1531 27.8652 15.1531 28.0745 15.1531C28.1418 15.1531 28.1568 15.1382 28.1568 15.0713C28.1568 14.7071 28.1568 14.3429 28.1568 13.9787C28.1568 13.9118 28.1717 13.897 28.239 13.897C28.6427 13.897 29.0463 13.897 29.45 13.897C29.5098 13.897 29.5322 13.9118 29.5322 13.9787C29.5322 14.3429 29.5322 14.7071 29.5322 15.0713C29.5322 15.1456 29.5547 15.1605 29.622 15.1605C30.0406 15.1605 30.4517 15.1605 30.8704 15.1605C30.9376 15.1605 30.9601 15.1754 30.9601 15.2497C30.9526 15.5767 30.9601 15.9112 30.9601 16.2382C30.9601 16.3051 30.9376 16.3199 30.8778 16.3125C30.4592 16.3125 30.0406 16.3125 29.622 16.3125C29.5547 16.3125 29.5322 16.3274 29.5322 16.4017C29.5248 16.7287 29.5248 17.0558 29.5248 17.4422Z" fill="#003188"/>
+<path d="M8.70557 17.6653C8.70557 18.4605 8.70557 19.2632 8.70557 20.0585C8.70557 20.1403 8.68314 20.1551 8.60091 20.1551C8.21219 20.1477 7.81599 20.1551 7.42726 20.1551C7.35998 20.1551 7.33008 20.1403 7.33008 20.0659C7.33008 18.4605 7.33008 16.8626 7.33008 15.2572C7.33008 15.1903 7.34503 15.168 7.41978 15.168C7.82346 15.168 8.21966 15.1754 8.62334 15.168C8.6981 15.168 8.70557 15.1977 8.70557 15.2572C8.70557 16.0599 8.70557 16.8626 8.70557 17.6653Z" fill="#003188"/>
+<path d="M14.9848 12.6038C14.5961 12.6038 14.1999 12.6112 13.8112 12.6038C13.7289 12.6038 13.699 12.6186 13.699 12.7078C13.7065 13.5551 13.699 14.4098 13.699 15.2571C13.699 15.3835 13.699 15.5024 13.699 15.6511C13.6542 15.6139 13.6317 15.5842 13.6018 15.5619C13.1608 15.168 12.6375 15.0342 12.0619 15.0713C11.1349 15.1308 10.4621 15.5767 10.051 16.4017C9.74449 17.0186 9.69963 17.6727 9.84167 18.3416C9.94633 18.847 10.1855 19.293 10.5668 19.6571C11.0602 20.118 11.6582 20.3112 12.331 20.2815C12.8169 20.2592 13.258 20.118 13.6168 19.7761C13.6841 19.7166 13.7439 19.6423 13.8112 19.568C13.8112 19.7463 13.8112 19.9099 13.8112 20.0734C13.8112 20.1328 13.8186 20.1626 13.8934 20.1626C14.2597 20.1551 14.626 20.1551 14.9998 20.1626C15.067 20.1626 15.082 20.1403 15.082 20.0734C15.082 17.6132 15.082 15.1531 15.082 12.6855C15.082 12.6112 15.0521 12.6038 14.9848 12.6038ZM13.6617 18.1484C13.5047 18.6984 13.0487 19.0328 12.4656 19.0328C11.7853 19.0328 11.2471 18.5497 11.1798 17.8659C11.1424 17.4869 11.1947 17.1301 11.419 16.818C11.7479 16.372 12.2039 16.2159 12.7347 16.3274C13.2654 16.4315 13.5719 16.7808 13.6841 17.3011C13.7514 17.5761 13.7439 17.8659 13.6617 18.1484Z" fill="#003188"/>
+<path d="M6.47796 20.0734C6.32845 19.7092 6.17894 19.3376 6.02943 18.9734C5.28188 17.1376 4.53433 15.2943 3.78678 13.4585C3.76435 13.4065 3.73445 13.3916 3.68212 13.3916C3.44291 13.3916 3.19621 13.399 2.957 13.3916C2.87477 13.3916 2.83739 13.4213 2.80749 13.4957C2.38138 14.5436 1.95528 15.5916 1.5217 16.6396C1.05822 17.7767 0.587264 18.9213 0.116307 20.0659C0.0938806 20.1254 0.0864051 20.1551 0.168636 20.1551C0.602215 20.1477 1.04327 20.1551 1.47685 20.1551C1.53665 20.1551 1.56655 20.1328 1.58898 20.0808C1.69364 19.8355 1.7983 19.5903 1.90295 19.345C1.9179 19.3004 1.94033 19.293 1.98518 19.293C2.85234 19.293 3.72697 19.293 4.59413 19.293C4.64646 19.293 4.66889 19.3078 4.68384 19.3524C4.7885 19.5977 4.89315 19.843 4.99781 20.0882C5.02024 20.1403 5.04266 20.1626 5.10247 20.1551C5.31926 20.1551 5.53605 20.1551 5.76031 20.1551C5.98458 20.1551 6.19389 20.1551 6.41816 20.1551C6.50039 20.1626 6.50786 20.1403 6.47796 20.0734ZM2.41129 18.1707C2.70283 17.3085 3.00185 16.4463 3.30087 15.5693C3.59989 16.4463 3.89144 17.3085 4.19046 18.1707C3.59242 18.1707 3.00933 18.1707 2.41129 18.1707Z" fill="#003188"/>
+<path d="M12.4656 24.4957C12.0993 23.3436 10.9406 22.5781 9.69968 22.6747C9.01941 22.7267 8.41389 22.9646 7.94294 23.4551C7.21034 24.2132 7.02345 25.1126 7.33742 26.1011C7.67382 27.1713 8.70544 27.8774 9.90152 27.8774C10.1108 27.87 10.3426 27.8477 10.5743 27.7882C12.0545 27.4315 12.9216 25.9227 12.4656 24.4957ZM10.2529 26.5693C9.47541 26.7774 8.72039 26.3389 8.60826 25.4916C8.54098 24.9936 8.66059 24.5477 9.04184 24.2058C9.6623 23.6558 10.8135 23.8342 11.1125 24.8376C11.135 24.9119 11.1499 24.9936 11.1649 25.0754C11.1724 25.1423 11.1724 25.2017 11.1798 25.2686C11.1798 25.9004 10.821 26.4207 10.2529 26.5693Z" fill="#003188"/>
+<path d="M20.6438 17.2414C20.6438 17.0407 20.6289 16.84 20.5915 16.6394C20.4644 15.9779 20.113 15.4873 19.4776 15.2346C18.9768 15.034 18.461 15.0191 17.9377 15.1083C17.2873 15.2198 16.764 15.5542 16.3379 16.0448C16.308 16.0745 16.308 16.0968 16.3379 16.134C16.5547 16.3792 16.764 16.6319 16.9733 16.8846C17.0032 16.9218 17.0257 16.9292 17.063 16.8846C17.1154 16.8326 17.1677 16.7806 17.22 16.7286C17.5714 16.3941 17.9825 16.2009 18.4834 16.2454C18.8198 16.2752 19.0889 16.4164 19.216 16.7509C19.2758 16.9144 19.2683 17.0853 19.2758 17.2488C19.2758 17.3157 19.2534 17.3306 19.1936 17.3306C18.7899 17.3306 18.3862 17.3306 17.9825 17.3306C17.6611 17.3306 17.3471 17.3826 17.0481 17.4941C15.8595 17.94 15.9417 19.315 16.5996 19.865C16.8911 20.1029 17.2275 20.2292 17.5938 20.259C18.1395 20.311 18.6553 20.2218 19.1113 19.9096C19.2085 19.8427 19.2907 19.7684 19.3879 19.6867C19.3879 19.8205 19.3954 19.9394 19.3879 20.0583C19.3879 20.1326 19.4029 20.1549 19.4776 20.1549C19.829 20.1475 20.1803 20.1475 20.5317 20.1549C20.6214 20.1549 20.6438 20.14 20.6438 20.0434C20.6438 19.1144 20.6438 18.1779 20.6438 17.2414ZM18.2815 19.2779C18.1096 19.2853 17.9452 19.2705 17.7956 19.1961C17.5938 19.0995 17.4817 18.9137 17.5041 18.6982C17.5265 18.4752 17.6461 18.3414 17.8779 18.2745C17.99 18.2448 18.1021 18.2373 18.2143 18.2373C18.3563 18.2373 18.4983 18.2373 18.6329 18.2373C18.8198 18.2373 19.0067 18.2373 19.201 18.2373C19.2608 18.2373 19.2758 18.2596 19.2758 18.3117C19.2534 18.8394 18.8273 19.263 18.2815 19.2779Z" fill="#003188"/>
+<path d="M10.0886 14.6029C9.99892 14.536 9.90921 14.4691 9.8195 14.4022C9.73727 14.313 9.65504 14.2164 9.58776 14.1198C9.49058 13.9265 9.40088 13.7333 9.38593 13.5103C9.38593 13.5103 9.38593 13.5029 9.37845 13.5029C9.37845 13.5029 9.37845 13.5103 9.38593 13.5103C9.38593 13.3914 9.37845 13.2725 9.40088 13.1535C9.43078 12.9677 9.50553 12.8042 9.58776 12.6407C9.66252 12.5515 9.73727 12.4549 9.8195 12.3657C9.90921 12.2839 10.0064 12.2171 10.1111 12.1576C10.2606 12.0907 10.4175 12.0387 10.582 12.0015C10.4325 12.0015 10.283 12.0015 10.1335 12.0015C10.0288 12.0015 9.93164 12.0015 9.82698 12.0015C9.74475 12.0015 9.66252 12.0015 9.57281 12.0015C9.49806 12.0015 9.43078 12.0015 9.35602 12.0015C9.28874 12.0015 9.22146 12.0015 9.16166 12.0015C9.10186 12.0015 9.04205 12.0015 8.98225 12.0015C8.92244 12.0015 8.86264 12.0015 8.80284 12.0015C8.74303 12.0015 8.68323 12.0015 8.62342 12.0015C8.56362 12.0015 8.50382 12.0015 8.44401 12.0015C8.38421 12.0015 8.3244 12.0015 8.2646 12.0015C8.21227 12.0015 8.15994 12.0015 8.10014 12.0015C8.04781 12.0015 7.99548 12.0015 7.93568 12.0015C7.8684 11.9941 7.80112 12.0164 7.74131 12.0164C7.64413 12.0312 7.54695 12.0758 7.45725 12.1056C7.36006 12.1427 7.27783 12.2096 7.18813 12.2691C7.15823 12.2914 7.12832 12.3062 7.09842 12.3285C6.97134 12.4475 6.86668 12.559 6.87416 12.7671C6.88911 13.2056 6.88163 13.6515 6.87416 14.09C6.87416 14.1569 6.88163 14.2164 6.92648 14.2684C7.00124 14.3427 7.06852 14.4319 7.1657 14.4914C7.25541 14.5583 7.34511 14.6177 7.44977 14.6549C7.532 14.7069 7.62171 14.7292 7.71889 14.7441C7.78617 14.7664 7.86092 14.7664 7.93568 14.7813C7.98801 14.7813 8.04034 14.7813 8.10014 14.7813C8.15247 14.7813 8.2048 14.7813 8.2646 14.7813C8.3244 14.7813 8.38421 14.7813 8.44401 14.7813C8.50382 14.7813 8.56362 14.7813 8.62342 14.7813C8.68323 14.7813 8.74303 14.7813 8.80284 14.7813C8.86264 14.7813 8.92244 14.7813 8.98225 14.7813C9.04205 14.7813 9.10186 14.7813 9.16166 14.7813C9.22146 14.7813 9.28127 14.7813 9.34107 14.7813C9.41583 14.7813 9.49806 14.7813 9.57281 14.7813C9.64757 14.7813 9.7298 14.7813 9.80455 14.7813C9.90174 14.7813 9.99892 14.7813 10.0886 14.7813C10.2606 14.7813 10.44 14.7813 10.6119 14.7813C10.4325 14.7367 10.2531 14.6846 10.0886 14.6029Z" fill="url(#paint0_linear_1547_3776)"/>
+<path d="M10.5521 12.0091C10.9408 11.9719 11.2996 12.0462 11.6136 12.2841C12.0547 12.6185 12.2565 13.1908 12.1219 13.7334C11.9874 14.276 11.5314 14.6773 10.9782 14.7665C10.8436 14.7888 10.7165 14.7814 10.582 14.7814C10.3951 14.7814 10.2232 14.7219 10.0587 14.6327C9.96151 14.5733 9.86433 14.5064 9.7821 14.4246C9.68492 14.3354 9.61016 14.2388 9.53541 14.1273C9.43075 13.9341 9.33357 13.7408 9.33357 13.5178C9.31862 13.28 9.34105 13.0496 9.43823 12.8341C9.46813 12.7746 9.49803 12.7151 9.52793 12.6631C9.59521 12.5591 9.67744 12.4624 9.77462 12.3733C9.86433 12.2841 9.96151 12.2097 10.0736 12.1577C10.2306 12.0685 10.3876 12.0165 10.5521 12.0091Z" fill="#FE3954"/>
+<path d="M30.0928 24.674C30.0181 24.0868 29.7714 23.5888 29.3154 23.2098C28.7248 22.7192 28.0296 22.578 27.2895 22.7044C26.0486 22.9125 25.174 23.9084 25.1216 25.1571C25.0768 26.2942 25.7047 27.2902 26.7588 27.6767C27.8651 28.0855 28.8968 27.9071 29.8312 27.1787C29.8761 27.1415 29.8686 27.1192 29.8462 27.0821C29.6817 26.8145 29.5172 26.5544 29.3602 26.2868C29.3229 26.2199 29.293 26.2199 29.2332 26.2645C28.7473 26.6213 28.2015 26.7848 27.5886 26.6882C27.0653 26.6064 26.7064 26.3314 26.527 25.826C26.5046 25.7517 26.5046 25.7294 26.5943 25.7294C27.1475 25.7368 27.7007 25.7294 28.2539 25.7294C28.8145 25.7294 29.3752 25.7294 29.9359 25.7294C29.9882 25.7294 30.0181 25.7219 30.033 25.6551C30.1003 25.3355 30.1377 25.0084 30.0928 24.674ZM28.6875 24.7706C28.3361 24.7632 27.9922 24.7706 27.6409 24.7706C27.2895 24.7706 26.9382 24.7706 26.5868 24.7706C26.5495 24.7706 26.5046 24.7855 26.527 24.7111C26.6691 24.2429 26.9531 23.9084 27.454 23.7895C27.9698 23.6706 28.5006 23.9084 28.7024 24.3469C28.7473 24.451 28.7697 24.555 28.7846 24.6665C28.7921 24.7483 28.7772 24.7706 28.6875 24.7706Z" fill="#003188"/>
 <defs>
-<linearGradient id="paint0_linear_5665_162221" x1="6.87565" y1="13.3847" x2="10.6134" y2="13.3847" gradientUnits="userSpaceOnUse">
+<linearGradient id="paint0_linear_1547_3776" x1="6.87577" y1="13.3846" x2="10.6136" y2="13.3846" gradientUnits="userSpaceOnUse">
 <stop stop-color="white"/>
 <stop offset="1" stop-color="#FEACB7"/>
 </linearGradient>
 </defs>
-</svg>
+</svg>
\ No newline at end of file
diff --git a/src/assets/logos/carsat.svg b/src/assets/logos/carsat.svg
index 8c2063fac..03c997e55 100644
--- a/src/assets/logos/carsat.svg
+++ b/src/assets/logos/carsat.svg
@@ -1,46 +1,46 @@
-<svg id="carsat" width="120" height="56" viewBox="0 0 120 56" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g clip-path="url(#clip0)">
-<path d="M43.7276 44.6566C43.5488 45.549 42.9229 46.4413 42.2971 46.4413H41.2242C41.2242 46.4413 41.4924 45.192 41.5818 44.6566C41.7606 43.5858 42.3864 42.9612 43.0123 42.9612C43.4594 43.0504 43.9958 43.5858 43.7276 44.6566ZM45.8734 44.6566C46.1417 43.4073 45.2475 42.2473 43.1017 42.2473C41.0453 42.2473 39.5254 44.032 39.1678 45.9951C38.8101 48.0475 39.8831 49.743 41.6712 49.743H44.4429L44.5323 49.0291H41.7606C41.1348 49.0291 40.7771 48.4937 40.8666 47.7798L40.9559 47.1552H42.0288C44.4429 47.1552 45.6052 45.9059 45.8734 44.6566Z" fill="#1173B7"/>
-<path d="M50.7913 43.1399H49.3607L48.5561 47.5123C48.3772 48.4047 48.9137 49.1185 49.6289 49.1185L49.5396 49.8324C47.5726 49.8324 46.3208 48.2262 46.7679 46.1738L47.2149 43.586C47.3043 43.1399 47.0361 42.8721 46.6784 42.8721L46.7679 42.4259H47.3937L47.8408 39.9274L50.1654 38.8566L49.5396 42.4259H50.9701L50.7913 43.1399Z" fill="#1173B7"/>
-<path d="M55.8875 44.389H55.4405C55.5299 43.8536 55.2616 43.3182 54.7253 43.3182C54.1888 43.3182 53.7417 43.7643 53.6523 44.389L52.6688 49.6538H50.6124L51.6853 43.5859C51.7748 43.1397 51.5065 42.872 51.2383 42.872L51.3277 42.3366H54.01L53.9205 42.7828C54.3676 42.3366 55.0829 42.1581 55.7087 42.1581C56.0664 42.1581 56.6028 42.2474 56.7816 42.3366L55.8875 44.389Z" fill="#1173B7"/>
-<path d="M60.7157 43.1397C60.7157 43.1397 60.0004 46.9768 59.911 47.6907C59.8215 48.4045 59.1957 48.9399 58.5699 48.9399C57.944 48.9399 57.5864 48.3153 57.7652 47.6907C57.8546 46.9768 58.391 44.4782 58.391 44.4782C58.4804 43.7644 59.1063 43.2289 59.6428 43.2289H60.7157V43.1397ZM62.9509 42.4259H59.7322C57.944 42.4259 56.2452 43.9428 55.8876 45.9952C55.5299 48.0476 56.6029 49.7431 58.391 49.7431C58.9275 49.7431 59.4639 49.4754 59.7322 49.2077L59.6428 49.6538H62.2356L62.325 49.2077C61.9674 49.2077 61.7885 48.8507 61.878 48.4938L62.9509 42.4259Z" fill="#1173B7"/>
-<path d="M65.2759 49.6539H63.2195L64.2924 43.586C64.3818 43.1399 64.1136 42.8721 63.8454 42.8721L63.9348 42.4259H66.617L65.2759 49.6539ZM66.7959 41.2659H64.7394L65.1865 38.8566H67.2429L66.7959 41.2659Z" fill="#1173B7"/>
-<path d="M71.5337 43.1397H70.1031L69.2985 47.5122C69.12 48.4045 69.6564 49.1185 70.3713 49.1185L70.2817 49.8323C68.315 49.8323 67.0633 48.2261 67.421 46.2629L67.868 43.6751C67.9574 43.2289 67.6892 42.9613 67.3315 42.9613L67.421 42.5151H68.0468L68.4938 40.0165L70.8188 38.9457L70.1928 42.5151H71.6234L71.5337 43.1397Z" fill="#1173B7"/>
-<path d="M76.0042 44.6566C75.8256 45.549 75.1996 46.4413 74.5742 46.4413H73.5008C73.5008 46.4413 73.769 45.192 73.8586 44.6566C74.0372 43.5858 74.6632 42.9612 75.2892 42.9612C75.8256 43.0504 76.2723 43.5858 76.0042 44.6566ZM78.1504 44.6566C78.4186 43.4073 77.5244 42.2473 75.3788 42.2473C73.3222 42.2473 71.802 44.032 71.4448 45.9951C71.087 48.0475 72.1598 49.743 73.9482 49.743H76.7198L76.8094 49.0291H74.0372C73.4118 49.0291 73.054 48.4937 73.1436 47.7798L73.2326 47.1552H74.3054C76.7198 47.1552 77.8822 45.9059 78.1504 44.6566Z" fill="#1173B7"/>
-<path d="M36.486 44.2999L37.6484 48.7616C37.7378 49.0293 37.9166 49.2078 38.1848 49.2078L38.0954 49.6539H35.3238L33.8038 43.586H34.3403C35.4132 43.586 36.486 42.6937 36.7543 41.5336C37.0225 40.3735 36.3073 39.4812 35.2343 39.4812H34.0721L31.9262 49.6539H29.5122L31.5686 40.0166C31.658 39.5705 31.3898 39.3027 31.0322 39.3027L31.1216 38.8566H37.0225C38.5425 38.8566 39.526 40.1059 39.2578 41.6229C38.8107 42.8721 37.7378 44.0321 36.486 44.2999Z" fill="#1173B7"/>
-<path d="M50.7024 23.5082L47.0366 27.7914L46.9472 28.1484C47.3048 28.1484 47.4836 28.4161 47.3942 28.773L46.2319 33.8594C45.8743 35.4656 47.126 36.8934 49.0036 36.8934L49.093 36.2687C48.2883 36.2687 47.8412 35.6441 48.0201 34.9302L50.7024 23.5082ZM52.8481 23.419L52.2223 26.8991H53.6528L54.2787 23.419H52.8481Z" fill="#1173B7"/>
-<path d="M68.0473 31.0929H67.6003C67.6897 30.4683 67.5109 29.9329 66.885 29.9329C66.1697 29.9329 65.8121 30.4683 65.7227 30.9144C65.6333 31.3606 65.7227 31.5391 65.991 31.8068L66.9745 32.6991C67.5109 33.2345 67.7791 33.7699 67.6003 34.6623C67.4215 35.6439 66.3486 36.8039 64.471 36.8039H62.7722L62.9511 36.09H64.024C64.6498 36.09 65.2757 35.6439 65.3651 34.93C65.4545 34.5731 65.3651 34.2161 65.1862 34.0377L64.2028 33.1453C63.6663 32.6099 63.4875 31.8068 63.6663 31.0929C63.9346 30.0221 65.2757 29.219 66.885 29.219C67.4215 29.219 67.9579 29.3082 68.4049 29.5759L68.0473 31.0929Z" fill="#1173B7"/>
-<path d="M73.8592 31.0929H73.4118C73.5014 30.4683 73.3222 29.9329 72.6968 29.9329C71.9812 29.9329 71.624 30.4683 71.5344 30.9144C71.4448 31.3606 71.5344 31.5391 71.8026 31.8068L72.7858 32.6991C73.3222 33.2345 73.591 33.7699 73.4118 34.6623C73.2332 35.6439 72.1604 36.8039 70.2824 36.8039H68.5839L68.7626 36.09H69.8356C70.4616 36.09 71.087 35.6439 71.1766 34.93C71.2662 34.5731 71.1766 34.2161 70.998 34.0377L70.0142 33.1453C69.4778 32.6099 69.2992 31.8068 69.4778 31.0929C69.746 30.0221 71.087 29.219 72.6968 29.219C73.2332 29.219 73.7696 29.3082 74.2164 29.5759L73.8592 31.0929Z" fill="#1173B7"/>
-<path d="M81.1005 35.5545C81.0109 36.0007 81.2791 36.2684 81.6369 36.2684L81.548 36.7145H78.8653L78.955 36.2684C78.6868 36.5361 78.1504 36.8038 77.614 36.8038C77.2562 36.8038 76.8983 36.7145 76.6302 36.6253C75.4677 36.0899 74.7528 34.7514 75.1099 33.0559L75.5574 30.7359C75.647 30.2897 75.3788 30.022 75.021 30.022L75.1099 29.5758H77.9711L76.988 34.8407C76.8983 35.5545 77.2562 36.0899 77.7926 36.0899C78.4186 36.0899 79.0439 35.5545 79.1335 34.8407L80.1174 29.5758H82.2629L81.1005 35.5545Z" fill="#1173B7"/>
-<path d="M88.4321 31.5393H87.9846C88.0743 31.0038 87.8061 30.4684 87.2697 30.4684C86.7333 30.4684 86.2858 30.9146 86.1969 31.5393L85.2131 36.8041H83.1571L84.2299 30.7362C84.3188 30.29 84.0507 30.0223 83.7825 30.0223L83.8721 29.4869H86.554L86.4651 29.933C86.9119 29.4869 87.6275 29.3084 88.2528 29.3084C88.6107 29.3084 89.147 29.3976 89.3263 29.4869L88.4321 31.5393Z" fill="#1173B7"/>
-<path d="M93.2603 30.2901C93.2603 30.2901 92.5447 34.1272 92.4557 34.841C92.3661 35.555 91.7401 36.0904 91.1141 36.0904C90.4887 36.0904 90.1309 35.4657 90.3095 34.841C90.3991 34.1272 90.9355 31.6286 90.9355 31.6286C91.0251 30.9148 91.6505 30.3794 92.1875 30.3794H93.2603V30.2901ZM95.4955 29.487H92.2765C90.4887 29.487 88.7899 31.004 88.4321 33.0564C88.0743 35.1088 89.1471 36.8042 90.9355 36.8042C91.4719 36.8042 92.0083 36.5365 92.2765 36.2688L92.1875 36.715H94.7799L94.8695 36.2688C94.5117 36.2688 94.3331 35.9119 94.4227 35.555L95.4955 29.487Z" fill="#1173B7"/>
-<path d="M103.363 36.804H100.592C100.592 36.804 101.396 32.2531 101.575 31.5392C101.665 30.8253 101.307 30.2899 100.681 30.2899C100.055 30.2899 99.4295 30.9146 99.2502 31.5392C99.1613 32.2531 98.2671 36.804 98.2671 36.804H96.2104L97.3728 30.7361C97.4625 30.2899 97.1943 30.0222 96.8365 30.0222L96.9261 29.576H99.6977L99.608 29.933C99.6977 29.7545 100.234 29.3976 100.77 29.3976C102.559 29.3976 103.721 31.093 103.363 33.1454L102.916 35.644C102.827 36.0901 103.095 36.3578 103.452 36.3578L103.363 36.804Z" fill="#1173B7"/>
-<path d="M109.801 31.4499H109.264C109.354 30.736 108.996 30.2005 108.46 30.2005C107.923 30.2005 107.297 30.8252 107.209 31.4499C107.119 32.1637 106.672 34.7515 106.672 34.7515C106.582 35.4654 106.94 36.0008 107.477 36.0008H109.086L108.996 36.7147H107.297C105.599 36.7147 104.615 35.0192 104.973 32.9668C105.33 31.0929 106.851 29.219 108.728 29.219C109.444 29.219 109.89 29.3975 110.248 29.6651L109.801 31.4499Z" fill="#1173B7"/>
-<path d="M116.954 31.8069C117.222 30.5576 116.328 29.3976 114.182 29.3976C112.126 29.3976 110.606 31.1822 110.248 33.1454C109.891 35.1978 110.963 36.8932 112.751 36.8932H115.523L115.612 36.1794H112.841C112.215 36.1794 111.858 35.5547 111.946 34.9301L112.036 34.3054H113.109C115.523 34.2162 116.685 33.0562 116.954 31.8069ZM114.808 31.8069C114.629 32.6992 114.003 33.5916 113.377 33.5916H112.304C112.304 33.5916 112.572 32.3423 112.662 31.8069C112.841 30.7361 113.467 30.1114 114.093 30.1114C114.539 30.1114 114.987 30.6468 114.808 31.8069Z" fill="#1173B7"/>
-<path d="M56.424 26.3636C57.1393 26.3636 57.2286 26.7206 57.1393 27.0775C56.9605 27.4344 52.2218 36.804 52.2218 36.804H54.8147C54.8147 36.804 56.7816 32.967 56.9605 32.5208C57.2286 32.0746 57.4075 31.7176 58.3016 31.7176L58.7486 36.7148H62.0567L61.9674 36.2686C61.6097 36.2686 61.3415 36.0009 61.2521 35.5548L60.358 25.9174H56.3346L56.424 26.3636ZM56.424 30.9146L57.9439 27.8806L58.2121 30.9146H56.424Z" fill="#1173B7"/>
-<path d="M27.0982 33.2349C27.0982 33.2349 18.9621 32.2533 15.654 24.133C15.654 24.133 15.1175 22.7052 15.5645 22.616C15.5645 22.616 16.8163 21.7237 19.3197 22.5268C19.3197 22.5268 19.7668 22.8837 19.7668 23.3299C19.7668 23.3299 20.5714 26.0069 22.449 27.9701C22.449 27.9701 24.5948 31.0933 29.9593 31.6287C29.9593 31.6287 38.5425 27.4347 44.98 14.7634L45.5164 13.6926C45.5164 13.6926 45.9635 12.8002 47.6622 12.9787C47.6622 12.9787 49.9868 13.1572 49.808 14.0495C49.808 14.0495 50.0762 14.0495 48.0198 17.5297C48.0198 17.5297 42.2083 28.1485 32.1051 33.5026C32.1051 33.5026 26.1147 37.3397 17.1739 38.589C17.1739 38.589 11.2729 39.4813 9.39537 39.0351C9.39537 39.0351 7.78601 38.589 8.76951 37.6966C8.76951 37.6966 9.75297 37.2505 11.0942 37.2505C11.0047 37.2505 20.8396 36.9827 27.0982 33.2349Z" fill="#F9B92B"/>
-<path d="M35.1449 18.69C36.7543 20.2962 36.2178 23.4194 33.9826 25.6503C31.7474 27.8812 28.6181 28.4166 27.0087 26.8104C25.3993 25.2042 25.9358 22.0809 28.171 19.8501C30.4063 17.6192 33.5355 17.0838 35.1449 18.69Z" fill="#1173B7"/>
-<path d="M5.46106 31.4502C5.63987 31.2717 5.72928 31.0932 5.81869 30.7363C5.9081 30.2902 5.72928 30.0224 5.46106 29.9332C5.19283 29.844 4.9246 30.0224 4.74579 30.3794C4.47756 30.8256 4.11993 31.0932 3.67288 31.004C3.22584 30.9148 2.86821 30.3794 3.04703 29.844C3.13643 29.487 3.22584 29.3086 3.31525 29.2193L3.58348 29.3978C3.49407 29.487 3.40466 29.6655 3.31525 29.9332C3.22584 30.3794 3.40466 30.5578 3.67288 30.647C3.94111 30.7363 4.11993 30.5578 4.38815 30.2009C4.74579 29.7548 5.01401 29.487 5.46106 29.5762C5.9081 29.6655 6.26573 30.1116 6.08692 30.9148C5.99751 31.1824 5.81869 31.5394 5.72928 31.6286L5.46106 31.4502Z" fill="#1173B7"/>
-<path d="M5.64007 26.8992L5.28244 28.0592L6.35533 28.4162L6.80238 27.0777L7.16001 27.2562L6.53415 28.9516L3.49426 27.8808L4.12012 26.2746L4.38835 26.3638L4.03072 27.6131L4.9248 27.97L5.37184 26.81L5.64007 26.8992Z" fill="#1173B7"/>
-<path d="M3.31524 26.1854L3.67287 26.8993L3.58347 27.2563L3.22583 26.6316L3.31524 26.1854Z" fill="#1173B7"/>
-<path d="M8.32176 24.3115C8.32176 24.49 8.23234 24.7577 8.14294 25.1147C7.78531 25.9177 6.98063 26.2747 5.99713 25.8285C5.10305 25.3823 4.74541 24.49 5.19246 23.5977C5.37127 23.2407 5.55009 23.0623 5.6395 22.973L5.90773 23.2407C5.81832 23.3299 5.6395 23.5084 5.55009 23.7761C5.19246 24.49 5.46068 25.1147 6.26536 25.4716C6.98063 25.8285 7.60648 25.5608 7.96412 24.9362C8.05353 24.6685 8.14294 24.49 8.14294 24.2223L8.32176 24.3115Z" fill="#1173B7"/>
-<path d="M6.26566 21.6345L7.87502 22.6161C8.50087 22.973 8.94791 22.8838 9.12674 22.5269C9.39496 22.1699 9.30555 21.7237 8.67969 21.3668L7.07033 20.3852L7.24916 20.0283L8.85851 21.0099C9.66321 21.5453 9.75256 22.1699 9.39496 22.7945C9.03732 23.3299 8.50088 23.5977 7.60679 23.0623L5.99744 22.0807L6.26566 21.6345Z" fill="#1173B7"/>
-<path d="M8.14294 18.8681C8.23235 18.6897 8.41117 18.422 8.58998 18.2435C8.85821 17.8865 9.12643 17.7081 9.39466 17.7081C9.57348 17.7081 9.84168 17.7081 10.0205 17.8865C10.3781 18.1543 10.3781 18.5112 10.2887 18.8681C10.4676 18.6897 10.7358 18.7789 11.0934 18.8681C11.5405 19.0466 11.8087 19.2251 11.8981 19.2251L11.6299 19.582C11.5405 19.582 11.2722 19.4928 10.9146 19.2251C10.4676 19.0466 10.2887 19.0466 10.0205 19.3143L9.75233 19.582L10.8252 20.4743L10.557 20.8313L8.14294 18.8681ZM9.57348 19.4928L9.84168 19.1359C10.1099 18.7789 10.1099 18.4219 9.84168 18.1543C9.48407 17.8865 9.21584 17.9758 8.94762 18.3327C8.85821 18.5112 8.7688 18.6005 8.6794 18.6897L9.57348 19.4928Z" fill="#1173B7"/>
-<path d="M10.4679 16.1019L12.7925 18.3327L12.5243 18.6005L10.1997 16.4588L10.4679 16.1019Z" fill="#1173B7"/>
-<path d="M12.0771 15.0309L11.3618 15.6556L11.183 15.3879L12.8817 13.7817L13.15 14.0494L12.4347 14.7633L14.3122 16.8157L14.0441 17.1726L12.0771 15.0309Z" fill="#1173B7"/>
-<path d="M16.0115 13.6032L15.028 14.3171L15.7432 15.2987L16.8162 14.4955L17.0844 14.7633L15.5645 15.8341L13.6869 13.2463L15.1174 12.1755L15.2962 12.4432L14.2233 13.2463L14.8492 14.0494L15.8327 13.3355L16.0115 13.6032Z" fill="#1173B7"/>
-<path d="M14.5812 11.7295L14.4024 12.5326L14.1342 12.7111V11.9972L14.5812 11.7295Z" fill="#1173B7"/>
-<path d="M18.6934 13.157C18.8722 13.157 19.2298 13.1571 19.4087 12.9786C19.7663 12.8001 19.9451 12.4432 19.7663 12.1755C19.5875 11.9078 19.4087 11.8185 18.9616 11.9078C18.4252 11.997 17.9781 11.9078 17.7993 11.4616C17.5311 11.0154 17.7993 10.48 18.3358 10.2123C18.604 10.0338 18.8722 10.0338 19.0511 10.0338L19.1404 10.3908C19.0511 10.3908 18.7828 10.3908 18.5146 10.5693C18.1569 10.7477 18.0676 11.1047 18.1569 11.2831C18.3358 11.5508 18.5146 11.5508 19.0511 11.5508C19.6769 11.4616 20.0345 11.6401 20.2133 11.997C20.4816 12.4432 20.3028 12.9786 19.6769 13.3355C19.4087 13.514 19.0511 13.514 18.8722 13.514L18.6934 13.157Z" fill="#1173B7"/>
-<path d="M22.5384 11.9972C21.7338 12.2649 20.9291 11.9079 20.5715 11.0156C20.2138 10.034 20.5715 9.23092 21.3762 8.87398C22.1808 8.60628 22.9855 8.96322 23.3432 9.85556C23.7008 10.9264 23.3432 11.6402 22.5384 11.9972ZM22.4491 11.6402C23.0749 11.3725 23.1643 10.7479 22.8961 10.034C22.6279 9.40938 22.0914 8.96322 21.4656 9.14168C20.8397 9.40938 20.7503 10.1233 20.9291 10.7479C21.2867 11.4618 21.8232 11.9079 22.4491 11.6402Z" fill="#1173B7"/>
-<path d="M26.8294 10.5693C26.74 10.6585 26.3823 10.837 26.0247 10.9262C25.1306 11.1047 24.3259 10.7477 24.0577 9.67692C23.7895 8.69534 24.3259 7.89223 25.3094 7.62453C25.6671 7.53529 25.9353 7.53529 26.1141 7.62453V7.98146C25.9353 7.98146 25.7565 7.98146 25.4883 7.98146C24.773 8.15994 24.4153 8.78458 24.5942 9.58768C24.773 10.3908 25.3094 10.7477 26.1141 10.5693C26.3823 10.48 26.5612 10.3908 26.74 10.3016L26.8294 10.5693Z" fill="#1173B7"/>
-<path d="M27.6349 7.35683L28.0819 10.48L27.7243 10.5693L27.1879 7.35683H27.6349Z" fill="#1173B7"/>
-<path d="M29.6013 9.31999L29.333 10.3908H28.886L29.7801 7.08913H30.3165L31.6576 10.2123H31.2106L30.7636 9.23076L29.6013 9.31999ZM30.5847 8.87382L30.2271 7.98147C30.1377 7.803 30.0483 7.62453 30.0483 7.44606C30.0483 7.62453 29.9589 7.803 29.9589 8.0707L29.6906 9.05228L30.5847 8.87382Z" fill="#1173B7"/>
-<path d="M32.462 7H32.909L32.7302 9.8555L34.1608 9.94474V10.3017L32.2832 10.2124L32.462 7Z" fill="#1173B7"/>
-<path d="M36.754 9.14173L35.5023 8.96326L35.3235 10.1233L36.754 10.3018L36.6647 10.6587L34.8765 10.391L35.3235 7.17857L37.0223 7.44628V7.80322L35.6812 7.62475L35.5918 8.60632L36.754 8.7848V9.14173Z" fill="#1173B7"/>
+<svg id="carsat" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g clip-path="url(#clip0_1422_17305)">
+<path d="M14.2905 25.2128C14.2277 25.5259 14.0081 25.839 13.7886 25.839H13.4121C13.4121 25.839 13.5062 25.4007 13.5376 25.2128C13.6003 24.8371 13.8199 24.6179 14.0395 24.6179C14.1964 24.6492 14.3846 24.8371 14.2905 25.2128ZM15.0434 25.2128C15.1375 24.7745 14.8238 24.3674 14.0709 24.3674C13.3493 24.3674 12.816 24.9936 12.6905 25.6825C12.5651 26.4026 12.9415 26.9975 13.5689 26.9975H14.5415L14.5728 26.747H13.6003C13.3807 26.747 13.2552 26.5592 13.2866 26.3087L13.318 26.0895H13.6944C14.5415 26.0895 14.9493 25.6512 15.0434 25.2128Z" fill="#1173B7"/>
+<path d="M16.769 24.6806H16.267L15.9847 26.2148C15.9219 26.5279 16.1102 26.7784 16.3611 26.7784L16.3298 27.0289C15.6396 27.0289 15.2004 26.4653 15.3572 25.7452L15.5141 24.8372C15.5455 24.6806 15.4514 24.5867 15.3259 24.5867L15.3572 24.4301H15.5768L15.7337 23.5535L16.5493 23.1777L16.3298 24.4301H16.8317L16.769 24.6806Z" fill="#1173B7"/>
+<path d="M18.557 25.1189H18.4001C18.4315 24.9311 18.3374 24.7432 18.1492 24.7432C17.9609 24.7432 17.804 24.8998 17.7727 25.1189L17.4276 26.9662H16.7061L17.0825 24.8372C17.1139 24.6806 17.0198 24.5867 16.9257 24.5867L16.957 24.3988H17.8982L17.8668 24.5553C18.0236 24.3988 18.2746 24.3362 18.4942 24.3362C18.6197 24.3362 18.8079 24.3675 18.8707 24.3988L18.557 25.1189Z" fill="#1173B7"/>
+<path d="M20.2511 24.6807C20.2511 24.6807 20.0001 26.027 19.9687 26.2775C19.9373 26.528 19.7177 26.7158 19.4981 26.7158C19.2785 26.7158 19.1531 26.4967 19.2158 26.2775C19.2472 26.027 19.4354 25.1503 19.4354 25.1503C19.4668 24.8998 19.6864 24.712 19.8746 24.712H20.2511V24.6807ZM21.0353 24.4302H19.906C19.2785 24.4302 18.6825 24.9624 18.557 25.6826C18.4315 26.4027 18.808 26.9976 19.4354 26.9976C19.6236 26.9976 19.8119 26.9037 19.906 26.8098L19.8746 26.9663H20.7844L20.8157 26.8098C20.6903 26.8098 20.6275 26.6845 20.6589 26.5593L21.0353 24.4302Z" fill="#1173B7"/>
+<path d="M21.8512 26.9663H21.1296L21.5061 24.8372C21.5375 24.6806 21.4434 24.5867 21.3492 24.5867L21.3806 24.4301H22.3218L21.8512 26.9663ZM22.3845 24.0231H21.663L21.8198 23.1777H22.5414L22.3845 24.0231Z" fill="#1173B7"/>
+<path d="M24.047 24.6806H23.545L23.2627 26.2148C23.2 26.5279 23.3882 26.7784 23.6391 26.7784L23.6077 27.0288C22.9176 27.0288 22.4784 26.4653 22.6039 25.7764L22.7607 24.8684C22.7921 24.7119 22.698 24.618 22.5725 24.618L22.6039 24.4614H22.8235L22.9803 23.5847L23.7961 23.209L23.5764 24.4614H24.0784L24.047 24.6806Z" fill="#1173B7"/>
+<path d="M25.6155 25.2128C25.5529 25.5259 25.3332 25.839 25.1138 25.839H24.7372C24.7372 25.839 24.8313 25.4007 24.8627 25.2128C24.9254 24.8371 25.145 24.6179 25.3647 24.6179C25.5529 24.6492 25.7096 24.8371 25.6155 25.2128ZM26.3686 25.2128C26.4627 24.7745 26.1489 24.3674 25.3961 24.3674C24.6745 24.3674 24.1411 24.9936 24.0158 25.6825C23.8902 26.4026 24.2666 26.9975 24.8941 26.9975H25.8666L25.8981 26.747H24.9254C24.7059 26.747 24.5804 26.5592 24.6118 26.3087L24.643 26.0895H25.0195C25.8666 26.0895 26.2745 25.6512 26.3686 25.2128Z" fill="#1173B7"/>
+<path d="M11.7494 25.0877L12.1573 26.6532C12.1887 26.7471 12.2514 26.8097 12.3455 26.8097L12.3141 26.9663H11.3416L10.8083 24.8372H10.9965C11.373 24.8372 11.7494 24.5241 11.8436 24.117C11.9377 23.71 11.6867 23.3969 11.3103 23.3969H10.9024L10.1495 26.9663H9.30249L10.024 23.5848C10.0554 23.4282 9.96129 23.3343 9.83581 23.3343L9.86718 23.1777H11.9377C12.471 23.1777 12.8161 23.6161 12.722 24.1483C12.5651 24.5867 12.1887 24.9937 11.7494 25.0877Z" fill="#1173B7"/>
+<path d="M16.7377 17.7923L15.4515 19.2952L15.4201 19.4204C15.5456 19.4204 15.6083 19.5144 15.5769 19.6396L15.1691 21.4243C15.0436 21.9879 15.4828 22.4888 16.1416 22.4888L16.173 22.2697C15.8907 22.2697 15.7338 22.0505 15.7965 21.8L16.7377 17.7923ZM17.4906 17.761L17.271 18.9821H17.7729L17.9925 17.761H17.4906Z" fill="#1173B7"/>
+<path d="M22.8236 20.4536H22.6667C22.6981 20.2345 22.6353 20.0466 22.4158 20.0466C22.1648 20.0466 22.0393 20.2345 22.0079 20.391C21.9765 20.5476 22.0079 20.6102 22.102 20.7041L22.4471 21.0172C22.6353 21.2051 22.7295 21.393 22.6667 21.7061C22.604 22.0505 22.2275 22.4575 21.5687 22.4575H20.9727L21.0354 22.207H21.4119C21.6315 22.207 21.8511 22.0505 21.8824 21.8C21.9138 21.6748 21.8824 21.5495 21.8197 21.4869L21.4746 21.1738C21.2864 20.9859 21.2236 20.7041 21.2864 20.4536C21.3805 20.0779 21.8511 19.7961 22.4158 19.7961C22.604 19.7961 22.7922 19.8274 22.949 19.9214L22.8236 20.4536Z" fill="#1173B7"/>
+<path d="M24.863 20.4536H24.706C24.7374 20.2345 24.6745 20.0466 24.4551 20.0466C24.204 20.0466 24.0787 20.2345 24.0472 20.391C24.0158 20.5476 24.0472 20.6102 24.1414 20.7041L24.4863 21.0172C24.6745 21.2051 24.7689 21.393 24.706 21.7061C24.6433 22.0505 24.2669 22.4575 23.6079 22.4575H23.012L23.0747 22.207H23.4512C23.6708 22.207 23.8903 22.0505 23.9217 21.8C23.9531 21.6748 23.9217 21.5495 23.859 21.4869L23.5138 21.1738C23.3256 20.9859 23.263 20.7041 23.3256 20.4536C23.4197 20.0779 23.8903 19.7961 24.4551 19.7961C24.6433 19.7961 24.8315 19.8274 24.9883 19.9214L24.863 20.4536Z" fill="#1173B7"/>
+<path d="M27.4037 22.0192C27.3722 22.1757 27.4663 22.2697 27.5919 22.2697L27.5607 22.4262H26.6194L26.6508 22.2697C26.5567 22.3636 26.3685 22.4575 26.1803 22.4575C26.0548 22.4575 25.9292 22.4262 25.8351 22.3949C25.4272 22.207 25.1764 21.7374 25.3017 21.1425L25.4587 20.3284C25.4901 20.1719 25.396 20.0779 25.2705 20.0779L25.3017 19.9214H26.3056L25.9607 21.7687C25.9292 22.0192 26.0548 22.207 26.243 22.207C26.4626 22.207 26.682 22.0192 26.7135 21.7687L27.0587 19.9214H27.8115L27.4037 22.0192Z" fill="#1173B7"/>
+<path d="M29.9761 20.6101H29.8191C29.8506 20.4223 29.7565 20.2344 29.5683 20.2344C29.38 20.2344 29.223 20.391 29.1918 20.6101L28.8466 22.4574H28.1252L28.5017 20.3284C28.5329 20.1718 28.4388 20.0779 28.3447 20.0779L28.3761 19.89H29.3172L29.2859 20.0466C29.4427 19.89 29.6938 19.8274 29.9132 19.8274C30.0388 19.8274 30.227 19.8587 30.2899 19.89L29.9761 20.6101Z" fill="#1173B7"/>
+<path d="M31.6703 20.1719C31.6703 20.1719 31.4192 21.5183 31.388 21.7688C31.3566 22.0192 31.1369 22.2071 30.9173 22.2071C30.6978 22.2071 30.5723 21.9879 30.6349 21.7688C30.6664 21.5183 30.8546 20.6416 30.8546 20.6416C30.886 20.3911 31.1055 20.2032 31.2939 20.2032H31.6703V20.1719ZM32.4546 19.8901H31.3251C30.6978 19.8901 30.1018 20.4224 29.9762 21.1426C29.8507 21.8627 30.2271 22.4576 30.8546 22.4576C31.0428 22.4576 31.231 22.3637 31.3251 22.2697L31.2939 22.4263H32.2035L32.2349 22.2697C32.1094 22.2697 32.0467 22.1445 32.0782 22.0192L32.4546 19.8901Z" fill="#1173B7"/>
+<path d="M35.2151 22.4576H34.2427C34.2427 22.4576 34.525 20.8608 34.5876 20.6103C34.6191 20.3598 34.4935 20.172 34.2739 20.172C34.0542 20.172 33.8348 20.3912 33.7719 20.6103C33.7407 20.8608 33.4269 22.4576 33.4269 22.4576H32.7053L33.1132 20.3285C33.1446 20.172 33.0505 20.0781 32.925 20.0781L32.9564 19.9215H33.9289L33.8975 20.0467C33.9289 19.9841 34.1171 19.8589 34.3053 19.8589C34.9328 19.8589 35.3405 20.4538 35.2151 21.1739L35.0582 22.0506C35.0269 22.2071 35.121 22.3011 35.2464 22.3011L35.2151 22.4576Z" fill="#1173B7"/>
+<path d="M37.4739 20.5789H37.2857C37.3172 20.3284 37.1916 20.1405 37.0034 20.1405C36.8152 20.1405 36.5956 20.3597 36.5643 20.5789C36.5329 20.8294 36.3761 21.7374 36.3761 21.7374C36.3447 21.9879 36.4702 22.1757 36.6585 22.1757H37.2231L37.1916 22.4262H36.5956C35.9995 22.4262 35.6545 21.8313 35.7801 21.1112C35.9054 20.4536 36.4388 19.7961 37.0975 19.7961C37.3486 19.7961 37.5054 19.8588 37.6309 19.9527L37.4739 20.5789Z" fill="#1173B7"/>
+<path d="M39.9837 20.7043C40.0778 20.2659 39.7641 19.8589 39.011 19.8589C38.2896 19.8589 37.7562 20.4851 37.6307 21.1739C37.5054 21.8941 37.8818 22.4889 38.5091 22.4889H39.4818L39.513 22.2385H38.5405C38.3209 22.2385 38.1955 22.0193 38.2267 21.8001L38.2582 21.5809H38.6346C39.4818 21.5496 39.8894 21.1426 39.9837 20.7043ZM39.2307 20.7043C39.168 21.0174 38.9484 21.3305 38.7287 21.3305H38.3523C38.3523 21.3305 38.4464 20.8921 38.4778 20.7043C38.5405 20.3285 38.7602 20.1094 38.9798 20.1094C39.1366 20.1094 39.2936 20.2972 39.2307 20.7043Z" fill="#1173B7"/>
+<path d="M18.7452 18.7943C18.9962 18.7943 19.0275 18.9195 18.9962 19.0447C18.9334 19.17 17.2708 22.4576 17.2708 22.4576H18.1805C18.1805 22.4576 18.8707 21.1112 18.9334 20.9547C19.0275 20.7981 19.0903 20.6729 19.404 20.6729L19.5609 22.4262H20.7216L20.6902 22.2697C20.5647 22.2697 20.4706 22.1758 20.4393 22.0192L20.1256 18.6377H18.7138L18.7452 18.7943ZM18.7452 20.3911L19.2785 19.3265L19.3726 20.3911H18.7452Z" fill="#1173B7"/>
+<path d="M8.45543 21.2053C8.45543 21.2053 5.60063 20.8609 4.43989 18.0117C4.43989 18.0117 4.25166 17.5107 4.40851 17.4794C4.40851 17.4794 4.84773 17.1663 5.72611 17.4481C5.72611 17.4481 5.88299 17.5733 5.88299 17.7299C5.88299 17.7299 6.16532 18.6692 6.82412 19.358C6.82412 19.358 7.57702 20.4539 9.45931 20.6417C9.45931 20.6417 12.471 19.1702 14.7297 14.7241L14.9179 14.3484C14.9179 14.3484 15.0748 14.0353 15.6709 14.0979C15.6709 14.0979 16.4865 14.1605 16.4238 14.4736C16.4238 14.4736 16.5179 14.4736 15.7963 15.6947C15.7963 15.6947 13.7572 19.4206 10.2122 21.2993C10.2122 21.2993 8.11034 22.6456 4.97321 23.084C4.97321 23.084 2.90269 23.397 2.24389 23.2405C2.24389 23.2405 1.67921 23.084 2.02429 22.7708C2.02429 22.7708 2.36937 22.6143 2.83996 22.6143C2.80858 22.6143 6.25943 22.5203 8.45543 21.2053Z" fill="#F9B92B"/>
+<path d="M11.2789 16.1017C11.8436 16.6653 11.6554 17.7611 10.8711 18.5439C10.0868 19.3266 8.98879 19.5145 8.4241 18.9509C7.8594 18.3873 8.04763 17.2915 8.83191 16.5087C9.61621 15.726 10.7142 15.5381 11.2789 16.1017Z" fill="#1173B7"/>
+<path d="M0.863528 20.5789C0.92627 20.5163 0.957642 20.4536 0.989013 20.3284C1.02039 20.1719 0.957642 20.0779 0.863528 20.0466C0.769413 20.0153 0.675299 20.0779 0.612557 20.2032C0.518442 20.3597 0.392957 20.4536 0.236099 20.4223C0.0792428 20.391 -0.0462427 20.2032 0.0165002 20.0153C0.0478715 19.8901 0.079243 19.8274 0.110614 19.7961L0.204729 19.8588C0.173357 19.8901 0.141986 19.9527 0.110614 20.0466C0.079243 20.2032 0.141986 20.2658 0.236099 20.2971C0.330215 20.3284 0.392957 20.2658 0.487071 20.1405C0.612557 19.984 0.706671 19.8901 0.863528 19.9214C1.02039 19.9527 1.14587 20.1092 1.08313 20.391C1.05176 20.485 0.989013 20.6102 0.957642 20.6415L0.863528 20.5789Z" fill="#1173B7"/>
+<path d="M0.926253 18.9821L0.800769 19.3891L1.17722 19.5144L1.33408 19.0447L1.45957 19.1074L1.23997 19.7022L0.17334 19.3265L0.39294 18.7629L0.487053 18.7942L0.361569 19.2326L0.675282 19.3578L0.83214 18.9508L0.926253 18.9821Z" fill="#1173B7"/>
+<path d="M0.110717 18.7317L0.236203 18.9822L0.204832 19.1074L0.0793457 18.8882L0.110717 18.7317Z" fill="#1173B7"/>
+<path d="M1.86719 18.0742C1.86719 18.1368 1.83582 18.2307 1.80444 18.356C1.67896 18.6377 1.39662 18.763 1.05153 18.6064C0.737818 18.4499 0.612332 18.1368 0.769189 17.8237C0.831932 17.6984 0.894674 17.6358 0.926047 17.6045L1.02016 17.6984C0.988789 17.7297 0.926047 17.7924 0.894674 17.8863C0.769189 18.1368 0.863303 18.356 1.14565 18.4812C1.39662 18.6064 1.61622 18.5125 1.7417 18.2933C1.77307 18.1994 1.80444 18.1368 1.80444 18.0429L1.86719 18.0742Z" fill="#1173B7"/>
+<path d="M1.14587 17.1349L1.71056 17.4793C1.93016 17.6045 2.08701 17.5732 2.14976 17.448C2.24387 17.3227 2.2125 17.1662 1.9929 17.041L1.42821 16.6965L1.49096 16.5713L2.05564 16.9157C2.33799 17.1036 2.36935 17.3227 2.24387 17.5419C2.11838 17.7298 1.93016 17.8237 1.61644 17.6358L1.05176 17.2914L1.14587 17.1349Z" fill="#1173B7"/>
+<path d="M1.80444 16.1644C1.83581 16.1017 1.89856 16.0078 1.9613 15.9452C2.05541 15.8199 2.14953 15.7573 2.24364 15.7573C2.30639 15.7573 2.40049 15.7573 2.46324 15.8199C2.58872 15.9139 2.58872 16.0391 2.55735 16.1644C2.6201 16.1017 2.7142 16.133 2.83971 16.1644C2.99656 16.227 3.09066 16.2896 3.12204 16.2896L3.02794 16.4149C2.99656 16.4149 2.90243 16.3835 2.77695 16.2896C2.6201 16.227 2.55735 16.227 2.46324 16.3209L2.36914 16.4149L2.74558 16.7279L2.65147 16.8532L1.80444 16.1644ZM2.30639 16.3835L2.40049 16.2583C2.49462 16.133 2.49462 16.0078 2.40049 15.9139C2.27501 15.8199 2.1809 15.8513 2.08679 15.9765C2.05541 16.0391 2.02404 16.0704 1.99267 16.1017L2.30639 16.3835Z" fill="#1173B7"/>
+<path d="M2.62023 15.1936L3.43588 15.9764L3.34178 16.0703L2.52612 15.3189L2.62023 15.1936Z" fill="#1173B7"/>
+<path d="M3.1848 14.818L2.93382 15.0372L2.87109 14.9432L3.46714 14.3796L3.56127 14.4736L3.31028 14.7241L3.96908 15.4442L3.87498 15.5694L3.1848 14.818Z" fill="#1173B7"/>
+<path d="M4.56541 14.3169L4.22032 14.5674L4.47128 14.9118L4.84774 14.63L4.94187 14.7239L4.40855 15.0996L3.74976 14.1916L4.2517 13.8159L4.31443 13.9099L3.93799 14.1916L4.15757 14.4734L4.50266 14.223L4.56541 14.3169Z" fill="#1173B7"/>
+<path d="M4.06359 13.6594L4.00084 13.9412L3.90674 14.0038V13.7534L4.06359 13.6594Z" fill="#1173B7"/>
+<path d="M5.50639 14.1603C5.56914 14.1603 5.69462 14.1603 5.75737 14.0977C5.88285 14.0351 5.9456 13.9098 5.88285 13.8159C5.8201 13.722 5.75737 13.6907 5.60052 13.722C5.41229 13.7533 5.25543 13.722 5.19268 13.5654C5.09857 13.4089 5.19268 13.221 5.38091 13.1271C5.47501 13.0645 5.56914 13.0645 5.63189 13.0645L5.66324 13.1897C5.63189 13.1897 5.53777 13.1897 5.44366 13.2523C5.31816 13.3149 5.28681 13.4402 5.31816 13.5028C5.38091 13.5967 5.44366 13.5967 5.63189 13.5967C5.85148 13.5654 5.97696 13.628 6.03971 13.7533C6.13383 13.9098 6.07108 14.0977 5.85148 14.2229C5.75737 14.2856 5.63189 14.2856 5.56914 14.2856L5.50639 14.1603Z" fill="#1173B7"/>
+<path d="M6.8555 13.7533C6.57316 13.8473 6.29083 13.722 6.16535 13.4089C6.03985 13.0645 6.16535 12.7827 6.44768 12.6575C6.73002 12.5635 7.01238 12.6888 7.13786 13.0019C7.26334 13.3776 7.13786 13.6281 6.8555 13.7533ZM6.82415 13.6281C7.04373 13.5341 7.07511 13.315 6.981 13.0645C6.88687 12.8453 6.69864 12.6888 6.47906 12.7514C6.25945 12.8453 6.22808 13.0958 6.29083 13.315C6.41631 13.5655 6.60454 13.722 6.82415 13.6281Z" fill="#1173B7"/>
+<path d="M8.36116 13.2523C8.32979 13.2836 8.20431 13.3462 8.07883 13.3775C7.76512 13.4401 7.48276 13.3149 7.38865 12.9392C7.29452 12.5948 7.48276 12.313 7.82784 12.219C7.95335 12.1877 8.04745 12.1877 8.1102 12.219V12.3443C8.04745 12.3443 7.9847 12.3443 7.89059 12.3443C7.63961 12.4069 7.51413 12.6261 7.57688 12.9079C7.63961 13.1897 7.82784 13.3149 8.1102 13.2523C8.20431 13.221 8.26706 13.1897 8.32979 13.1583L8.36116 13.2523Z" fill="#1173B7"/>
+<path d="M8.64392 12.1252L8.80077 13.2211L8.67527 13.2524L8.48706 12.1252H8.64392Z" fill="#1173B7"/>
+<path d="M9.33375 12.814L9.23962 13.1897H9.08276L9.39647 12.0312H9.58471L10.0553 13.1271H9.89842L9.74156 12.7827L9.33375 12.814ZM9.67881 12.6575L9.55333 12.3444C9.52196 12.2817 9.4906 12.2191 9.4906 12.1565C9.4906 12.2191 9.45923 12.2817 9.45923 12.3757L9.3651 12.7201L9.67881 12.6575Z" fill="#1173B7"/>
+<path d="M10.3376 12H10.4945L10.4318 13.0019L10.9337 13.0332V13.1585L10.2749 13.1272L10.3376 12Z" fill="#1173B7"/>
+<path d="M11.8436 12.7516L11.4044 12.689L11.3417 13.096L11.8436 13.1586L11.8123 13.2838L11.1848 13.1899L11.3417 12.0627L11.9377 12.1567V12.2819L11.4672 12.2193L11.4358 12.5637L11.8436 12.6263V12.7516Z" fill="#1173B7"/>
 </g>
 <defs>
-<clipPath id="clip0">
-<rect width="114" height="42.8324" fill="white" transform="translate(3 7)"/>
+<clipPath id="clip0_1422_17305">
+<rect width="40" height="15.0289" fill="white" transform="translate(0 12)"/>
 </clipPath>
 </defs>
-</svg>
+</svg>
\ No newline at end of file
diff --git a/src/assets/logos/conseillerNumFranceServices.svg b/src/assets/logos/conseillerNumFranceServices.svg
index bd5051432..852c94862 100644
--- a/src/assets/logos/conseillerNumFranceServices.svg
+++ b/src/assets/logos/conseillerNumFranceServices.svg
@@ -1 +1,16 @@
-<svg id="conseillerNumFranceServices" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 371.93 157.55"><defs></defs><path fill="#e1000f" d="M46.81 0 0 27.03v54.05l44.31 76.47h5l44.32-76.47V27.03L46.81 0z"/><path style="fill:#fff" d="M60.2 46.33h17.74V36.09L46.81 18.11 15.68 36.09v35.94L46.81 90l31.13-17.97V61.78H60.2V46.33z"/><path fill="#000091" d="M60.2 61.78V46.33L46.81 38.6l-13.38 7.73v15.45l13.38 7.73 13.39-7.73z"/><path fill="#000000" d="m187.28 64 4.55 3.49a14.54 14.54 0 0 1-12 5.81 15 15 0 1 1 12-24.29l-4.55 3.54a8.9 8.9 0 0 0-7.44-3.9c-5.36 0-9.18 4.18-9.18 9.62s3.82 9.63 9.18 9.63a8.9 8.9 0 0 0 7.44-3.9Z" transform="translate(-37.77 -37.79)"/><path fill="#000000" d="M224.09 58.25a15.1 15.1 0 1 1-15.08-15 14.78 14.78 0 0 1 15.08 15Zm-5.94 0c0-5.44-3.81-9.62-9.14-9.62s-9.18 4.18-9.18 9.62 3.82 9.63 9.18 9.63 9.14-4.18 9.14-9.63ZM229.08 44h7.4l12.71 20.35V44H255v28.47h-7.39L234.85 52v20.47h-5.77ZM264.06 64.67a8.2 8.2 0 0 0 6.3 3.5c2.27 0 3.65-1.22 3.65-3.29 0-5.08-13-3.94-13-13.41 0-4.51 3.69-8.25 9.09-8.25a12.56 12.56 0 0 1 10 4.8l-4.23 3.77c-1.66-2.15-3.53-3.53-5.68-3.53a3 3 0 0 0-3.29 3c0 5.07 13 3.9 13 13.52-.08 5.29-4.22 8.53-9.42 8.53a12.81 12.81 0 0 1-10.56-4.75ZM285.43 44H302v5h-10.8v6.58h9.18v4.92h-9.18v7.11H302v4.91h-16.57ZM308.18 44H314v28.47h-5.77ZM321.43 44h5.77v23.23H338v5.24h-16.57ZM342.59 44h5.77v23.23h10.81v5.24h-16.58ZM363.76 44h16.57v5h-10.8v6.58h9.18v4.92h-9.18v7.11h10.8v4.91h-16.57ZM386.51 44h8.69c6.26 0 10.12 3.2 10.12 8.49a7.74 7.74 0 0 1-4.55 7.35l8.94 12.59h-6.91L395.24 61h-3v11.47h-5.77Zm5.77 5v7.11h3.25c2.44 0 3.86-1.3 3.86-3.62 0-2.15-1.42-3.49-3.86-3.49ZM165.14 85h7.39l12.72 20.35V85H191v28.44h-7.39L170.91 93v20.44h-5.77ZM214.94 85h5.77v17.3c0 7.48-4.39 12-11.54 12s-11.49-4.47-11.49-12V85h5.77v17.79c0 3.82 2.15 6.06 5.77 6.06s5.72-2.24 5.72-6.06ZM227.38 85h7.27l6.86 11.7 6.87-11.7h7.27v28.44h-5.77V93.23l-6.34 10.49h-4.06l-6.34-10.49v20.24h-5.76ZM263.09 85h16.57v4.91h-10.81v6.58H278v4.92h-9.18v7.11h10.81v4.92h-16.54Zm5.6-2.44 4.59-5.48h5.93l-5.28 5.48ZM285.88 85h8.69c6.26 0 10.12 3.21 10.12 8.49a7.73 7.73 0 0 1-4.56 7.35l8.94 12.6h-6.9L294.61 102h-3v11.5h-5.77Zm5.77 4.91v7.11h3.25c2.43 0 3.85-1.3 3.85-3.61 0-2.15-1.42-3.5-3.85-3.5ZM312.16 85h5.77v28.44h-5.77ZM355.22 115.46a5.76 5.76 0 0 0 2-.33V120a7.56 7.56 0 0 1-3 .52 13.44 13.44 0 0 1-8.9-3.73l-3.37-3a15 15 0 1 1 11.17-14.54 15 15 0 0 1-5.61 11.86l1.71 1.62c2.22 1.99 4.18 2.73 6 2.73Zm-8-16.21c0-5.45-3.82-9.63-9.14-9.63s-9.18 4.18-9.18 9.63 3.82 9.63 9.18 9.63 9.14-4.19 9.14-9.63ZM374.6 85h5.77v17.3c0 7.48-4.39 12-11.54 12s-11.49-4.47-11.49-12V85h5.77v17.79c0 3.82 2.15 6.06 5.77 6.06s5.72-2.24 5.72-6.06ZM387 85h16.57v4.91h-10.8v6.58H402v4.92h-9.18v7.11h10.8v4.92H387Z" transform="translate(-37.77 -37.79)"/><path fill="#000091" d="M165.28 127.5h16.57v4.92H171V139h9.18v4.91H171v12h-5.76ZM185.34 135.46h5.16v2a7.36 7.36 0 0 1 5.41-2.43 5.68 5.68 0 0 1 1.78.28v5.41a8.53 8.53 0 0 0-2.27-.29 5.66 5.66 0 0 0-4.92 2.64v12.84h-5.16ZM199.89 150.54c0-3.13 2.4-5.53 6.82-6.26l6.18-1.06v-.53c0-2.15-1.63-3.53-3.94-3.53a5.09 5.09 0 0 0-4.59 2.44l-3.82-2.89a10.3 10.3 0 0 1 8.57-4.06c5.93 0 9 3.53 9 8v13.25h-5.2V154a8.06 8.06 0 0 1-6.09 2.72c-4.13.03-6.93-2.33-6.93-6.18Zm8 2.07a5.8 5.8 0 0 0 5-2.89v-2.8l-4.84.85c-2.19.37-3 1.26-3 2.56s1.05 2.28 2.8 2.28ZM223.09 135.46h5.15v1.63a8.36 8.36 0 0 1 6.06-2.44c4.43 0 8 3 8 9.1v12.19H237V144c0-2.72-1.5-4.42-4-4.42a5.46 5.46 0 0 0-4.76 3v13.37h-5.15ZM261.6 149.48l4.1 3.13a10.56 10.56 0 0 1-8.65 4.14c-7.07 0-11.29-5.08-11.29-11.05s4.22-11 11.29-11a10.59 10.59 0 0 1 8.65 4.14l-4.1 3.13a5.41 5.41 0 0 0-4.63-2.39 6.18 6.18 0 0 0 .08 12.35 5.43 5.43 0 0 0 4.55-2.45ZM278.58 156.75c-7.27 0-11.37-5.08-11.37-11.05s3.81-11 10.52-11c5.68 0 9.42 3.82 9.42 9.18a13.8 13.8 0 0 1-.32 2.93h-14.34c.32 3.37 2.68 5.36 6.17 5.36a6.3 6.3 0 0 0 5.16-2.44l3.7 2.93a10.86 10.86 0 0 1-8.94 4.09Zm-5.77-13.89H282a4 4 0 0 0-4.3-3.9 4.66 4.66 0 0 0-4.89 3.9Z" transform="translate(-37.77 -37.79)"/><path fill="#e1000f" d="M167 187c1.26 1.58 2.76 2.72 4.71 2.72 1.63 0 2.52-.9 2.52-2.11 0-3.58-9.54-2.08-9.54-9.47 0-3.62 3-6.3 7.27-6.3a9.54 9.54 0 0 1 7.51 3.5l-3.47 3.04a5.29 5.29 0 0 0-4-2.35c-1.55 0-2.36.73-2.36 1.87 0 3.49 9.55 2.07 9.55 9.34-.08 4.31-3.54 6.66-7.39 6.66a10.16 10.16 0 0 1-8.21-3.78ZM193 193.9c-7.27 0-11.37-5.08-11.37-11.05s3.81-11 10.52-11c5.68 0 9.42 3.82 9.42 9.18a13.8 13.8 0 0 1-.32 2.93h-14.36c.32 3.37 2.68 5.36 6.17 5.36a6.3 6.3 0 0 0 5.16-2.44l3.7 2.93a10.86 10.86 0 0 1-8.92 4.09Zm-5.79-13.9h9.22a4 4 0 0 0-4.3-3.9 4.66 4.66 0 0 0-4.92 3.9ZM205.7 172.61h5.16v2a7.35 7.35 0 0 1 5.4-2.44 5.8 5.8 0 0 1 1.79.28v5.41a8.55 8.55 0 0 0-2.28-.29 5.63 5.63 0 0 0-4.91 2.64v12.84h-5.16ZM224.38 172.61l5.33 14.63 5.29-14.63h5.56l-7.47 20.48h-6.79l-7.43-20.48ZM242.14 165.67a3.41 3.41 0 0 1 3.37-3.37 3.37 3.37 0 0 1 0 6.74 3.41 3.41 0 0 1-3.37-3.37Zm.77 6.94h5.16v20.48h-5.16ZM267.73 186.63l4.1 3.13a10.55 10.55 0 0 1-8.65 4.14c-7.07 0-11.29-5.08-11.29-11.05s4.22-11 11.29-11a10.56 10.56 0 0 1 8.65 4.15l-4.1 3.12a5.39 5.39 0 0 0-4.63-2.39 6.18 6.18 0 0 0 .08 12.35 5.41 5.41 0 0 0 4.55-2.45ZM284.71 193.9c-7.27 0-11.37-5.08-11.37-11.05s3.82-11 10.52-11c5.69 0 9.42 3.82 9.42 9.18a13.8 13.8 0 0 1-.32 2.93h-14.34c.33 3.37 2.68 5.36 6.17 5.36a6.29 6.29 0 0 0 5.16-2.44l3.7 2.93a10.86 10.86 0 0 1-8.94 4.09ZM279 180h9.22a4 4 0 0 0-4.31-3.9A4.65 4.65 0 0 0 279 180ZM299 187c1.26 1.58 2.77 2.72 4.72 2.72 1.62 0 2.51-.9 2.51-2.11 0-3.58-9.54-2.08-9.54-9.47 0-3.62 3.05-6.3 7.27-6.3a9.57 9.57 0 0 1 7.52 3.5l-3.48 3.04a5.25 5.25 0 0 0-4-2.35c-1.54 0-2.36.73-2.36 1.87 0 3.49 9.55 2.07 9.55 9.34-.08 4.31-3.53 6.66-7.39 6.66a10.16 10.16 0 0 1-8.21-3.78Z" transform="translate(-37.77 -37.79)"/></svg>
\ No newline at end of file
+<svg id="conseillerNumFranceServices" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g clip-path="url(#clip0_5970_70992)">
+<path d="M5.78257 12L1 14.8251V20.4742L5.52714 28.4667H6.03799L10.5662 20.4742V14.8251L5.78257 12Z" fill="#E1000F"/>
+<path d="M7.15065 16.8423H8.96314V15.772L5.7826 13.8928L2.60205 15.772V19.5284L5.7826 21.4066L8.96314 19.5284V18.4571H7.15065V16.8423Z" fill="white"/>
+<path d="M7.15061 18.4571V16.8423L5.78256 16.0344L4.41553 16.8423V18.4571L5.78256 19.265L7.15061 18.4571Z" fill="#000091"/>
+<path d="M16.2754 14.7395L16.7403 15.1043C16.5981 15.2982 16.4126 15.4545 16.1993 15.5601C15.986 15.6658 15.7511 15.7177 15.5143 15.7115C15.2556 15.7076 15.0022 15.6367 14.7775 15.5055C14.5529 15.3744 14.3643 15.1871 14.2294 14.9614C14.0946 14.7356 14.0178 14.4785 14.0062 14.2142C13.9946 13.9498 14.0486 13.6868 14.1632 13.4495C14.2777 13.2123 14.4491 13.0086 14.6614 12.8574C14.8737 12.7062 15.1199 12.6124 15.3772 12.5847C15.6344 12.5571 15.8944 12.5966 16.1327 12.6994C16.371 12.8022 16.5801 12.9651 16.7403 13.1728L16.2754 13.5428C16.1913 13.4161 16.0779 13.3126 15.9453 13.2415C15.8127 13.1703 15.665 13.1338 15.5153 13.1352C14.9676 13.1352 14.5774 13.572 14.5774 14.1406C14.5774 14.7092 14.9676 15.1471 15.5153 15.1471C15.665 15.1484 15.8127 15.1119 15.9453 15.0408C16.0779 14.9697 16.1913 14.8662 16.2754 14.7395Z" fill="black"/>
+<path d="M20.0362 14.1383C20.0382 14.451 19.9494 14.7572 19.7811 15.0182C19.6127 15.2791 19.3723 15.4831 19.0905 15.604C18.8086 15.725 18.498 15.7577 18.198 15.6978C17.898 15.6379 17.6222 15.4882 17.4055 15.2677C17.1888 15.0472 17.041 14.7658 16.9809 14.4593C16.9207 14.1527 16.951 13.8348 17.0678 13.5458C17.1845 13.2569 17.3826 13.0099 17.6368 12.8363C17.891 12.6627 18.1898 12.5702 18.4955 12.5706C18.6983 12.5663 18.8998 12.6039 19.0881 12.6811C19.2763 12.7583 19.4475 12.8735 19.5913 13.0198C19.735 13.1661 19.8486 13.3406 19.925 13.5328C20.0015 13.7249 20.0393 13.9309 20.0362 14.1383ZM19.4293 14.1383C19.4293 13.5698 19.0401 13.1329 18.4955 13.1329C17.9509 13.1329 17.5576 13.5698 17.5576 14.1383C17.5576 14.7069 17.9479 15.1448 18.4955 15.1448C19.0431 15.1448 19.4293 14.708 19.4293 14.1383ZM20.546 12.649H21.3021L22.6007 14.7759V12.649H23.1943V15.6246H22.4392L21.1356 13.4851V15.6246H20.546V12.649ZM24.1199 14.8093C24.1929 14.9164 24.2888 15.0051 24.4004 15.0685C24.5119 15.1319 24.6362 15.1683 24.7636 15.1751C24.9955 15.1751 25.1365 15.0476 25.1365 14.8313C25.1365 14.3003 23.8083 14.4195 23.8083 13.4297C23.8083 12.9583 24.1853 12.5674 24.737 12.5674C24.9335 12.5655 25.1278 12.6097 25.305 12.6967C25.4821 12.7836 25.6374 12.9111 25.7587 13.0691L25.3266 13.4632C25.157 13.2384 24.9659 13.0942 24.7462 13.0942C24.7036 13.09 24.6605 13.0949 24.6198 13.1088C24.5792 13.1226 24.5418 13.1451 24.5101 13.1746C24.4784 13.2042 24.4531 13.2402 24.4359 13.2803C24.4187 13.3205 24.4099 13.3639 24.4101 13.4078C24.4101 13.9377 25.7383 13.8154 25.7383 14.8208C25.7301 15.3737 25.3072 15.7124 24.7759 15.7124C24.5706 15.7221 24.3659 15.6822 24.1785 15.596C23.991 15.5097 23.8261 15.3795 23.697 15.2159L24.1199 14.8093ZM26.3033 12.649H27.9963V13.1716H26.8928V13.8593H27.8307V14.3735H26.8928V15.1166H27.9963V15.6298H26.3033V12.649ZM28.6277 12.649H29.2223V15.6246H28.6328L28.6277 12.649ZM29.9814 12.649H30.5709V15.0769H31.6744V15.6246H29.9814V12.649ZM32.1433 12.649H32.7329V15.0769H33.8373V15.6246H32.1433V12.649ZM34.3063 12.649H35.9992V13.1716H34.8958V13.8593H35.8337V14.3735H34.8958V15.1166H35.9992V15.6298H34.3063V12.649ZM36.6306 12.649H37.5185C38.1581 12.649 38.5524 12.9834 38.5524 13.5363C38.5585 13.6971 38.5174 13.8561 38.4346 13.993C38.3518 14.1298 38.231 14.2383 38.0876 14.3045L39.001 15.6204H38.295L37.5226 14.4258H37.2161V15.6246H36.6265L36.6306 12.649ZM37.2202 13.1716V13.9147H37.5522C37.8015 13.9147 37.9466 13.7788 37.9466 13.5363C37.9466 13.3116 37.8015 13.1716 37.5522 13.1716H37.2202ZM14.0133 16.9342H14.7683L16.0679 19.0611V16.9342H16.6554V19.9066H15.9004L14.6028 17.7703V19.9066H14.0133V16.9342ZM19.1014 16.9342H19.6909V18.7423C19.6909 19.5241 19.2424 19.9965 18.5118 19.9965C17.7813 19.9965 17.3379 19.5293 17.3379 18.7423V16.9342H17.9274V18.7935C17.9274 19.1928 18.1471 19.4269 18.517 19.4269C18.8868 19.4269 19.1014 19.1928 19.1014 18.7935V16.9342ZM20.3724 16.9342H21.1151L21.816 18.157L22.5179 16.9342H23.2607V19.9066H22.6712V17.7943L22.0234 18.8907H21.6086L20.9609 17.7943V19.9098H20.3724V16.9342ZM24.0208 16.9342H25.7138V17.4473H24.6093V18.1351H25.5442V18.6493H24.6063V19.3924H25.7107V19.9066H24.0208V16.9342ZM24.593 16.6791L25.0619 16.1064H25.6678L25.1284 16.6791H24.593ZM26.3493 16.9342H27.2371C27.8767 16.9342 28.2711 17.2697 28.2711 17.8215C28.2772 17.9825 28.236 18.1416 28.153 18.2785C28.07 18.4154 27.9489 18.5238 27.8052 18.5897L28.7186 19.9066H28.0136L27.2412 18.711H26.9347V19.9129H26.3452L26.3493 16.9342ZM26.9388 17.4473V18.1905H27.2709C27.5191 18.1905 27.6642 18.0546 27.6642 17.8132C27.6642 17.5884 27.5191 17.4473 27.2709 17.4473H26.9388ZM29.0343 16.9342H29.6238V19.9066H29.0343V16.9342ZM33.4337 20.1178C33.5033 20.1187 33.5725 20.107 33.6381 20.0833V20.5923C33.5406 20.6315 33.4363 20.65 33.3316 20.6466C32.9917 20.6363 32.6677 20.4974 32.4223 20.2568L32.0779 19.9432C31.7687 20.0268 31.4417 20.0092 31.1427 19.8931C30.8437 19.777 30.5877 19.5681 30.4106 19.2957C30.2335 19.0233 30.1441 18.701 30.155 18.3741C30.1659 18.0471 30.2765 17.7318 30.4713 17.4723C30.6662 17.2129 30.9355 17.0223 31.2415 16.9273C31.5475 16.8322 31.8749 16.8375 32.1779 16.9424C32.4808 17.0473 32.7441 17.2464 32.9308 17.5121C33.1176 17.7777 33.2184 18.0964 33.2192 18.4235C33.2217 18.6611 33.1714 18.8961 33.0721 19.1108C32.9728 19.3256 32.8271 19.5144 32.646 19.6631L32.8207 19.8324C33.0475 20.0404 33.2478 20.1178 33.4337 20.1178ZM32.6164 18.4235C32.6164 17.8539 32.2261 17.417 31.6825 17.417C31.139 17.417 30.7446 17.8539 30.7446 18.4235C30.7446 18.9932 31.1349 19.43 31.6825 19.43C32.2302 19.43 32.6164 18.9921 32.6164 18.4235ZM35.4138 16.9342H36.0033V18.7423C36.0033 19.5241 35.5548 19.9965 34.8243 19.9965C34.0938 19.9965 33.6503 19.5293 33.6503 18.7423V16.9342H34.2399V18.7935C34.2399 19.1928 34.4595 19.4269 34.8294 19.4269C35.1992 19.4269 35.4138 19.1928 35.4138 18.7935V16.9342ZM36.6807 16.9342H38.3737V17.4473H37.2702V18.1351H38.2132V18.6493H37.2753V19.3924H38.3788V19.9066H36.6807V16.9342Z" fill="black"/>
+<path d="M14.0276 21.3762H15.7206V21.8904H14.6121V22.5782H15.55V23.0913H14.6121V24.3456H14.0236L14.0276 21.3762ZM16.0772 22.2082H16.6044V22.4172C16.6742 22.338 16.7595 22.2745 16.8546 22.2307C16.9498 22.187 17.0528 22.164 17.1571 22.1632C17.2189 22.163 17.2803 22.1729 17.339 22.1925V22.7579C17.2633 22.7372 17.1853 22.727 17.107 22.7276C17.0071 22.7252 16.9082 22.7494 16.8201 22.7978C16.732 22.8461 16.6577 22.917 16.6044 23.0036V24.3456H16.0772V22.2082ZM17.5637 23.7843C17.5637 23.4572 17.8089 23.2063 18.2605 23.13L18.8919 23.0192V22.9638C18.8919 22.7391 18.7254 22.5949 18.4894 22.5949C18.396 22.5904 18.3032 22.6117 18.2207 22.6565C18.1382 22.7014 18.069 22.7682 18.0204 22.8499L17.6302 22.5479C17.7322 22.4105 17.865 22.3003 18.0174 22.2265C18.1698 22.1526 18.3372 22.1173 18.5057 22.1235C19.1116 22.1235 19.4253 22.4925 19.4253 22.9597V24.3445H18.894V24.1459C18.8161 24.236 18.7203 24.308 18.613 24.357C18.5057 24.406 18.3893 24.431 18.2718 24.4302C17.8498 24.4333 17.5637 24.1867 17.5637 23.7843ZM18.3811 24.0006C18.4846 24.0003 18.5863 23.9723 18.6759 23.9193C18.7655 23.8663 18.84 23.7902 18.8919 23.6986V23.4059L18.3974 23.4948C18.1737 23.5335 18.0909 23.6265 18.0909 23.7623C18.0909 23.8982 18.1982 24.0006 18.377 24.0006H18.3811ZM19.9341 22.2082H20.4603V22.3785C20.5414 22.2957 20.6381 22.2304 20.7445 22.1866C20.8508 22.1428 20.9648 22.1213 21.0794 22.1235C21.532 22.1235 21.8968 22.4371 21.8968 23.0746V24.3487H21.3553V23.1008C21.3553 22.8165 21.202 22.6388 20.9466 22.6388C20.8453 22.641 20.7466 22.6713 20.6609 22.7265C20.5752 22.7818 20.5059 22.8598 20.4603 22.9523V24.3497H19.9341V22.2082ZM23.8686 23.6735L24.2875 24.0006C24.1841 24.139 24.05 24.2503 23.8964 24.3255C23.7428 24.4007 23.574 24.4377 23.4038 24.4333C22.6814 24.4333 22.2503 23.9024 22.2503 23.2784C22.2503 22.6545 22.6814 22.1287 23.4038 22.1287C23.574 22.1247 23.7427 22.1617 23.8963 22.2369C24.0498 22.3121 24.1839 22.4233 24.2875 22.5614L23.8686 22.8886C23.8167 22.8096 23.7461 22.7453 23.6634 22.7016C23.5808 22.6579 23.4886 22.6363 23.3956 22.6388C23.2326 22.6465 23.0789 22.7184 22.9667 22.8395C22.8544 22.9605 22.7923 23.1213 22.7933 23.2882C22.7944 23.4551 22.8585 23.615 22.9723 23.7346C23.0861 23.8542 23.2407 23.924 23.4038 23.9296C23.4959 23.9298 23.5867 23.9064 23.6679 23.8617C23.7491 23.817 23.818 23.7523 23.8686 23.6735ZM25.6035 24.4333C24.8607 24.4333 24.4418 23.9024 24.4418 23.2784C24.4418 22.6545 24.8311 22.1287 25.5166 22.1287C26.097 22.1287 26.4791 22.528 26.4791 23.0882C26.4789 23.1912 26.4679 23.2939 26.4464 23.3944H24.9813C25.014 23.7467 25.2551 23.9547 25.6117 23.9547C25.7129 23.9576 25.8135 23.936 25.9051 23.8917C25.9967 23.8474 26.0768 23.7816 26.1389 23.6996L26.5169 24.0059C26.4082 24.1456 26.2689 24.2571 26.1102 24.3314C25.9515 24.4057 25.7779 24.4406 25.6035 24.4333ZM25.014 22.9816H25.9529C25.9517 22.9248 25.9392 22.8689 25.9161 22.8173C25.8931 22.7656 25.86 22.7193 25.8189 22.6812C25.7778 22.6431 25.7295 22.6139 25.677 22.5955C25.6245 22.577 25.5689 22.5697 25.5136 22.574C25.3957 22.5664 25.2793 22.604 25.187 22.6793C25.0947 22.7546 25.033 22.8624 25.014 22.9816Z" fill="#000091"/>
+<path d="M14.2034 27.595C14.3321 27.7601 14.4854 27.8793 14.6846 27.8793C14.8511 27.8793 14.9421 27.7852 14.9421 27.6588C14.9421 27.2846 13.9674 27.4414 13.9674 26.669C13.9674 26.2906 14.2739 26.0105 14.7101 26.0105C14.8567 26.0086 15.0018 26.0404 15.1346 26.1038C15.2675 26.1671 15.3847 26.2603 15.4774 26.3763L15.1229 26.6941C15.0775 26.6241 15.0171 26.5655 14.9463 26.523C14.8755 26.4804 14.7961 26.4549 14.7142 26.4484C14.5559 26.4484 14.4731 26.5247 14.4731 26.6439C14.4731 27.0087 15.4488 26.8602 15.4488 27.6201C15.4407 28.0706 15.0871 28.3162 14.6938 28.3162C14.5337 28.321 14.3746 28.2878 14.2291 28.2193C14.0836 28.1508 13.9555 28.0487 13.855 27.9211L14.2034 27.595ZM16.8598 28.3162C16.117 28.3162 15.6981 27.7852 15.6981 27.1613C15.6981 26.5373 16.0874 26.0116 16.7729 26.0116C17.3533 26.0116 17.7354 26.4108 17.7354 26.971C17.7352 27.074 17.7242 27.1767 17.7027 27.2773H16.2355C16.2682 27.6295 16.5094 27.8375 16.8659 27.8375C16.9672 27.8404 17.0678 27.8189 17.1594 27.7746C17.251 27.7302 17.3311 27.6644 17.3931 27.5825L17.7711 27.8887C17.6627 28.0281 17.5237 28.1395 17.3654 28.2137C17.207 28.288 17.0338 28.3231 16.8598 28.3162ZM16.2682 26.8634H17.2102C17.209 26.8066 17.1965 26.7507 17.1734 26.6991C17.1504 26.6474 17.1173 26.6011 17.0762 26.563C17.0351 26.5248 16.9868 26.4957 16.9343 26.4772C16.8819 26.4588 16.8262 26.4515 16.7709 26.4558C16.6525 26.4474 16.5354 26.4846 16.4424 26.56C16.3494 26.6354 16.2873 26.7436 16.2682 26.8634ZM18.1573 26.091H18.6845V26.3C18.7542 26.2207 18.8392 26.157 18.9342 26.1131C19.0292 26.0692 19.132 26.046 19.2363 26.045C19.2983 26.0449 19.3601 26.0548 19.4191 26.0743V26.6397C19.3432 26.6189 19.2648 26.6087 19.1862 26.6094C19.0864 26.6069 18.9876 26.631 18.8996 26.6794C18.8117 26.7278 18.7376 26.7987 18.6845 26.8853V28.2273H18.1573V26.091ZM20.0659 26.091L20.6104 27.6201L21.1509 26.091H21.719L20.9558 28.2315H20.262L19.5029 26.091H20.0659ZM21.8804 25.3657C21.8815 25.2726 21.9181 25.1836 21.9824 25.1178C22.0468 25.052 22.1337 25.0145 22.2247 25.0134C22.316 25.0134 22.4036 25.0505 22.4682 25.1166C22.5328 25.1826 22.569 25.2722 22.569 25.3657C22.569 25.4591 22.5328 25.5487 22.4682 25.6147C22.4036 25.6808 22.316 25.7179 22.2247 25.7179C22.1337 25.7168 22.0468 25.6793 21.9824 25.6135C21.9181 25.5477 21.8815 25.4587 21.8804 25.3657ZM21.9591 26.091H22.4863V28.2315H21.9591V26.091ZM24.4949 27.5563L24.9138 27.8835C24.8104 28.0219 24.6764 28.1333 24.5228 28.2085C24.3692 28.2837 24.2003 28.3206 24.0301 28.3162C23.3077 28.3162 22.8766 27.7852 22.8766 27.1613C22.8766 26.5373 23.3077 26.0116 24.0301 26.0116C24.2004 26.0073 24.3693 26.0445 24.5229 26.1198C24.6765 26.1952 24.8105 26.3068 24.9138 26.4453L24.4949 26.7714C24.4432 26.6923 24.3726 26.6278 24.2899 26.5842C24.2072 26.5405 24.115 26.5189 24.0219 26.5216C23.8589 26.5293 23.7052 26.6012 23.593 26.7223C23.4807 26.8433 23.4186 27.0042 23.4196 27.171C23.4207 27.3379 23.4848 27.4979 23.5986 27.6174C23.7124 27.737 23.867 27.8069 24.0301 27.8124C24.1223 27.8128 24.2131 27.7895 24.2943 27.7448C24.3755 27.7001 24.4445 27.6353 24.4949 27.5563ZM26.2298 28.3162C25.487 28.3162 25.0681 27.7852 25.0681 27.1613C25.0681 26.5373 25.4584 26.0116 26.1429 26.0116C26.7243 26.0116 27.1054 26.4108 27.1054 26.971C27.1052 27.074 27.0942 27.1767 27.0727 27.2773H25.6076C25.6413 27.6295 25.8814 27.8375 26.238 27.8375C26.3393 27.8405 26.4398 27.819 26.5315 27.7747C26.6231 27.7303 26.7032 27.6645 26.7652 27.5825L27.1432 27.8887C27.0345 28.0284 26.8952 28.1399 26.7365 28.2142C26.5778 28.2885 26.4042 28.3234 26.2298 28.3162ZM25.6464 26.8634H26.5884C26.5872 26.8065 26.5746 26.7505 26.5515 26.6988C26.5284 26.6471 26.4952 26.6007 26.454 26.5626C26.4128 26.5244 26.3644 26.4953 26.3118 26.4769C26.2592 26.4585 26.2035 26.4513 26.148 26.4558C26.0298 26.4474 25.9128 26.4846 25.82 26.5601C25.7271 26.6355 25.6652 26.7437 25.6464 26.8634ZM27.6898 27.595C27.8185 27.7601 27.9728 27.8793 28.172 27.8793C28.3375 27.8793 28.4285 27.7852 28.4285 27.6588C28.4285 27.2846 27.4538 27.4414 27.4538 26.669C27.4538 26.2906 27.7654 26.0105 28.1965 26.0105C28.3432 26.0086 28.4885 26.0405 28.6215 26.1038C28.7545 26.1672 28.8718 26.2603 28.9649 26.3763L28.6093 26.6941C28.5641 26.6238 28.5038 26.5652 28.4329 26.5226C28.3621 26.48 28.2826 26.4546 28.2006 26.4484C28.0433 26.4484 27.9595 26.5247 27.9595 26.6439C27.9595 27.0087 28.9352 26.8602 28.9352 27.6201C28.9271 28.0706 28.5746 28.3162 28.1802 28.3162C28.0201 28.321 27.861 28.2878 27.7155 28.2193C27.57 28.1508 27.4419 28.0487 27.3414 27.9211L27.6898 27.595Z" fill="#E1000F"/>
+</g>
+<defs>
+<clipPath id="clip0_5970_70992">
+<rect width="38" height="16.4667" fill="white" transform="translate(1 12)"/>
+</clipPath>
+</defs>
+</svg>
\ No newline at end of file
diff --git a/src/assets/logos/cpam.svg b/src/assets/logos/cpam.svg
index b44b89bd4..e07d57740 100644
--- a/src/assets/logos/cpam.svg
+++ b/src/assets/logos/cpam.svg
@@ -1,60 +1,60 @@
 <svg id="cpam" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M4.2915 20.9673H11.1396V20.8823H4.2915V20.9673Z" fill="#95C11F"/>
-<path d="M4.42932 19.0404H11.9865V18.9553H4.42932V19.0404Z" fill="#95C11F"/>
+<path d="M4.2915 20.9673H11.1396V20.8822H4.2915V20.9673Z" fill="#95C11F"/>
+<path d="M4.42932 19.0403H11.9865V18.9552H4.42932V19.0403Z" fill="#95C11F"/>
 <path d="M4.2915 17.1125H12.0865V17.0278H4.2915V17.1125Z" fill="#95C11F"/>
-<path d="M4.2915 15.1856H12.0865V15.1002H4.2915V15.1856Z" fill="#95C11F"/>
-<path d="M4.2915 13.258H12.0865V13.1726H4.2915V13.258Z" fill="#95C11F"/>
-<path d="M1.80992 17.1944C1.8433 17.1441 1.86947 17.0711 1.87111 16.9929C1.87307 16.8767 1.81385 16.8077 1.72419 16.8064C1.64337 16.8051 1.59364 16.8512 1.5475 16.969C1.49253 17.1117 1.41531 17.1993 1.29261 17.1967C1.15551 17.1948 1.05571 17.0796 1.05866 16.9081C1.06029 16.8195 1.08254 16.7534 1.10512 16.7157L1.19707 16.7488C1.18005 16.7756 1.15387 16.8345 1.15257 16.914C1.1506 17.0338 1.22161 17.0809 1.28148 17.0819C1.36394 17.0832 1.4055 17.0305 1.45458 16.9098C1.51576 16.7619 1.58775 16.6886 1.71667 16.6912C1.85246 16.6935 1.96992 16.7949 1.96633 17.0024C1.96469 17.0871 1.93688 17.1797 1.90448 17.2259L1.80992 17.1944Z" fill="#005DA9"/>
-<path d="M1.63691 15.9039L1.58946 16.2413L1.90358 16.2855L1.95659 15.9079L2.05115 15.9213L1.98211 16.4127L1.11043 16.29L1.17653 15.8179L1.27109 15.831L1.22103 16.1896L1.49588 16.2282L1.54333 15.8905L1.63691 15.9039ZM0.971698 15.831L1.10094 16.0194L1.08786 16.1114L0.952393 15.9681L0.971698 15.831Z" fill="#005DA9"/>
-<path d="M2.24425 15.0611C2.25309 15.1059 2.25047 15.1929 2.22168 15.2963C2.15493 15.5352 1.95435 15.6719 1.67459 15.5937C1.40824 15.5191 1.27965 15.2894 1.35327 15.0267C1.38239 14.9223 1.42395 14.8608 1.44718 14.8356L1.52866 14.8886C1.49692 14.923 1.46583 14.9779 1.44587 15.0486C1.39057 15.2472 1.48088 15.4148 1.70338 15.4769C1.91214 15.5352 2.07803 15.4527 2.13497 15.2476C2.15395 15.1795 2.15918 15.1075 2.15002 15.0578L2.24425 15.0611Z" fill="#005DA9"/>
-<path d="M1.59338 14.3818L2.0711 14.5931C2.25041 14.6723 2.36231 14.6265 2.40976 14.5192C2.46244 14.4008 2.41761 14.2882 2.24092 14.2097L1.76352 13.9986L1.80999 13.8936L2.28051 14.1017C2.52755 14.2113 2.57041 14.3854 2.49287 14.5601C2.42023 14.725 2.272 14.8078 2.02103 14.6969L1.54724 14.4868L1.59338 14.3818Z" fill="#005DA9"/>
-<path d="M2.4339 13.6256L2.49574 13.5271C2.5602 13.4244 2.54515 13.3236 2.46007 13.2696C2.36355 13.2097 2.27749 13.2526 2.21369 13.3543C2.18457 13.4008 2.16886 13.4358 2.16297 13.4555L2.4339 13.6256ZM2.03503 13.5091C2.05532 13.4545 2.0936 13.3792 2.13418 13.3138C2.19896 13.211 2.26113 13.1564 2.33246 13.1361C2.38776 13.1194 2.45222 13.1299 2.51079 13.1665C2.60797 13.2274 2.63382 13.3318 2.6119 13.4257L2.61484 13.4276C2.67014 13.3838 2.74507 13.3828 2.83374 13.4129C2.95383 13.4538 3.03628 13.4813 3.07457 13.4849L3.01142 13.5844C2.98328 13.5834 2.90867 13.5595 2.80331 13.5215C2.6865 13.4787 2.62237 13.4954 2.5638 13.5804L2.50654 13.6711L2.82982 13.8743L2.76928 13.9705L2.03503 13.5091Z" fill="#005DA9"/>
-<path d="M2.63884 12.6135L3.32924 13.1596L3.25758 13.25L2.5675 12.7038L2.63884 12.6135Z" fill="#005DA9"/>
-<path d="M3.07464 12.2598L2.88911 12.4532L2.81909 12.3865L3.26998 11.9156L3.33968 11.9824L3.15415 12.1767L3.71989 12.7186L3.6407 12.8017L3.07464 12.2598Z" fill="#005DA9"/>
-<path d="M3.69341 11.2903L3.662 11.5168L3.59034 11.5757L3.58674 11.3787L3.69341 11.2903ZM4.13546 11.7929L3.87272 12.0099L4.07493 12.2549L4.36909 12.0115L4.4293 12.0851L4.04712 12.4012L3.48596 11.7229L3.85407 11.4189L3.9146 11.4926L3.63582 11.7229L3.81317 11.9372L4.07559 11.72L4.13546 11.7929Z" fill="#005DA9"/>
-<path d="M4.95536 11.5691C5.01524 11.5737 5.09181 11.5609 5.16052 11.5236C5.26294 11.468 5.29402 11.3833 5.25116 11.3038C5.2132 11.2324 5.14874 11.2125 5.0231 11.2298C4.8716 11.2521 4.7574 11.2278 4.69916 11.1195C4.63372 10.9988 4.68575 10.8552 4.83593 10.774C4.91414 10.7318 4.98252 10.7184 5.0267 10.72L5.04306 10.8162C5.01099 10.8146 4.94718 10.8208 4.87749 10.8584C4.77147 10.9157 4.76558 11.0008 4.79438 11.0538C4.83332 11.1258 4.89941 11.1362 5.02833 11.1199C5.18768 11.1006 5.2865 11.1274 5.34801 11.2409C5.41247 11.3607 5.38171 11.5125 5.19913 11.611C5.1242 11.6516 5.02997 11.6722 4.97402 11.6673L4.95536 11.5691Z" fill="#005DA9"/>
-<path d="M5.95628 11.1608C6.12479 11.097 6.16144 10.9059 6.09076 10.7184C6.02892 10.5548 5.87873 10.4164 5.70139 10.4835C5.52437 10.5502 5.49885 10.7482 5.56625 10.9265C5.63169 11.0999 5.78777 11.2239 5.95464 11.1611L5.95628 11.1608ZM5.98376 11.2488C5.76519 11.3316 5.54989 11.2206 5.45598 10.9713C5.35717 10.7096 5.45369 10.4776 5.67357 10.3945C5.9 10.3091 6.11039 10.4265 6.20234 10.6713C6.30933 10.9533 6.19416 11.1696 5.98507 11.2485L5.98376 11.2488Z" fill="#005DA9"/>
-<path d="M7.1663 10.8797C7.13063 10.9085 7.05243 10.9471 6.94805 10.9703C6.70526 11.0233 6.49062 10.9098 6.42845 10.6268C6.36922 10.3565 6.51189 10.135 6.77856 10.0764C6.88425 10.0535 6.95819 10.0614 6.99059 10.0702L6.98274 10.1667C6.93725 10.1556 6.87443 10.153 6.80244 10.169C6.60121 10.2128 6.49553 10.3715 6.54526 10.597C6.59172 10.809 6.74191 10.9163 6.95001 10.8705C7.01873 10.8555 7.08482 10.8264 7.12474 10.7953L7.1663 10.8797Z" fill="#005DA9"/>
-<path d="M7.44814 9.99068L7.54597 10.8656L7.43145 10.8784L7.33362 10.0034L7.44814 9.99068Z" fill="#005DA9"/>
-<path d="M8.29158 10.4668L8.20323 10.2135C8.18491 10.1566 8.17149 10.1039 8.15808 10.0532H8.15415C8.1427 10.1042 8.1283 10.1592 8.11161 10.2125L8.02687 10.4677L8.29158 10.4668ZM8.00331 10.5564L7.91333 10.8339L7.79553 10.8342L8.09133 9.95305L8.2281 9.95239L8.53207 10.8313L8.41068 10.8319L8.31513 10.5551L8.00331 10.5564Z" fill="#005DA9"/>
-<path d="M8.86946 9.98151L8.983 9.99558L8.88582 10.7747L9.25949 10.8211L9.24771 10.916L8.7605 10.8551L8.86946 9.98151Z" fill="#005DA9"/>
-<path d="M10.0006 10.6654L9.66913 10.5846L9.59354 10.8931L9.96427 10.9834L9.94169 11.0764L9.45972 10.9582L9.6688 10.1033L10.1321 10.2165L10.1092 10.3087L9.7578 10.223L9.69138 10.4933L10.0228 10.5741L10.0006 10.6654Z" fill="#005DA9"/>
-<path d="M19.9238 25.1501C19.9238 25.4933 19.824 25.6759 19.5291 25.6759C19.2739 25.6759 19.1345 25.5104 19.1345 25.1158V23.9159C19.1345 23.5213 19.2739 23.356 19.5291 23.356C19.7834 23.356 19.9238 23.5213 19.9238 23.9159V25.1501ZM20.643 25.2234V21.6333H19.9247V22.8508C19.8806 22.8129 19.7343 22.7406 19.5291 22.7406C18.7151 22.7406 18.4219 23.2621 18.4219 24.0131V25.0186C18.4219 25.7692 18.7151 26.2911 19.5291 26.2911C20.1413 26.2911 20.643 26.0008 20.643 25.2234Z" fill="#005DA9"/>
-<path d="M10.7516 21.6333V26.2276H10.0415V22.6359H10.0285L9.31547 26.2276H8.9333L8.21999 22.6359H8.20756V26.2276H7.49719V21.6333H8.55734L9.11817 24.317H9.1306L9.69078 21.6333H10.7516Z" fill="#005DA9"/>
-<path d="M21.3026 22.8036H22.0149V26.2275H21.3026V22.8036Z" fill="#005DA9"/>
+<path d="M4.2915 15.1855H12.0865V15.1001H4.2915V15.1855Z" fill="#95C11F"/>
+<path d="M4.2915 13.2581H12.0865V13.1727H4.2915V13.2581Z" fill="#95C11F"/>
+<path d="M1.80992 17.1944C1.8433 17.144 1.86947 17.0711 1.87111 16.9929C1.87307 16.8767 1.81385 16.8077 1.72419 16.8064C1.64337 16.805 1.59364 16.8512 1.5475 16.969C1.49253 17.1116 1.41531 17.1993 1.29261 17.1967C1.15551 17.1947 1.05571 17.0796 1.05866 16.9081C1.06029 16.8194 1.08254 16.7533 1.10512 16.7157L1.19707 16.7488C1.18005 16.7756 1.15387 16.8345 1.15257 16.914C1.1506 17.0338 1.22161 17.0809 1.28148 17.0819C1.36394 17.0832 1.4055 17.0305 1.45458 16.9097C1.51576 16.7619 1.58775 16.6886 1.71667 16.6912C1.85246 16.6935 1.96992 16.7949 1.96633 17.0023C1.96469 17.0871 1.93688 17.1797 1.90448 17.2258L1.80992 17.1944Z" fill="#005DA9"/>
+<path d="M1.63691 15.904L1.58946 16.2414L1.90358 16.2856L1.95659 15.908L2.05115 15.9214L1.98211 16.4128L1.11043 16.2901L1.17653 15.818L1.27109 15.8311L1.22103 16.1897L1.49588 16.2283L1.54333 15.8906L1.63691 15.904ZM0.971698 15.8311L1.10094 16.0195L1.08786 16.1115L0.952393 15.9682L0.971698 15.8311Z" fill="#005DA9"/>
+<path d="M2.24425 15.061C2.25309 15.1058 2.25047 15.1928 2.22168 15.2962C2.15493 15.5351 1.95435 15.6719 1.67459 15.5937C1.40824 15.5191 1.27965 15.2894 1.35327 15.0266C1.38239 14.9222 1.42395 14.8607 1.44718 14.8355L1.52866 14.8885C1.49692 14.9229 1.46583 14.9779 1.44587 15.0485C1.39057 15.2471 1.48088 15.4147 1.70338 15.4768C1.91214 15.5351 2.07803 15.4526 2.13497 15.2475C2.15395 15.1794 2.15918 15.1074 2.15002 15.0577L2.24425 15.061Z" fill="#005DA9"/>
+<path d="M1.59338 14.3818L2.0711 14.5932C2.25041 14.6724 2.36231 14.6266 2.40976 14.5192C2.46244 14.4008 2.41761 14.2882 2.24092 14.2097L1.76352 13.9987L1.80999 13.8936L2.28051 14.1017C2.52755 14.2113 2.57041 14.3854 2.49287 14.5601C2.42023 14.7251 2.272 14.8078 2.02103 14.6969L1.54724 14.4868L1.59338 14.3818Z" fill="#005DA9"/>
+<path d="M2.4339 13.6256L2.49574 13.5271C2.5602 13.4244 2.54515 13.3236 2.46007 13.2696C2.36355 13.2097 2.27749 13.2526 2.21369 13.3543C2.18457 13.4008 2.16886 13.4358 2.16297 13.4554L2.4339 13.6256ZM2.03503 13.5091C2.05532 13.4545 2.0936 13.3792 2.13418 13.3138C2.19896 13.211 2.26113 13.1564 2.33246 13.1361C2.38776 13.1194 2.45222 13.1299 2.51079 13.1665C2.60797 13.2274 2.63382 13.3318 2.6119 13.4257L2.61484 13.4276C2.67014 13.3838 2.74507 13.3828 2.83374 13.4129C2.95383 13.4538 3.03628 13.4813 3.07457 13.4849L3.01142 13.5844C2.98328 13.5834 2.90867 13.5595 2.80331 13.5215C2.6865 13.4787 2.62237 13.4954 2.5638 13.5804L2.50654 13.6711L2.82982 13.8743L2.76928 13.9705L2.03503 13.5091Z" fill="#005DA9"/>
+<path d="M2.63884 12.6136L3.32924 13.1597L3.25758 13.25L2.5675 12.7039L2.63884 12.6136Z" fill="#005DA9"/>
+<path d="M3.07464 12.2599L2.88911 12.4533L2.81909 12.3865L3.26998 11.9157L3.33968 11.9824L3.15415 12.1768L3.71989 12.7186L3.6407 12.8018L3.07464 12.2599Z" fill="#005DA9"/>
+<path d="M3.69341 11.2903L3.662 11.5167L3.59034 11.5756L3.58674 11.3786L3.69341 11.2903ZM4.13546 11.7928L3.87272 12.0098L4.07493 12.2549L4.36909 12.0114L4.4293 12.085L4.04712 12.4011L3.48596 11.7228L3.85407 11.4189L3.9146 11.4925L3.63582 11.7228L3.81317 11.9371L4.07559 11.7199L4.13546 11.7928Z" fill="#005DA9"/>
+<path d="M4.95536 11.5691C5.01524 11.5737 5.09181 11.5609 5.16052 11.5236C5.26294 11.468 5.29402 11.3832 5.25116 11.3037C5.2132 11.2324 5.14874 11.2124 5.0231 11.2298C4.8716 11.252 4.7574 11.2278 4.69916 11.1195C4.63372 10.9988 4.68575 10.8551 4.83593 10.774C4.91414 10.7318 4.98252 10.7184 5.0267 10.72L5.04306 10.8162C5.01099 10.8146 4.94718 10.8208 4.87749 10.8584C4.77147 10.9157 4.76558 11.0007 4.79438 11.0537C4.83332 11.1257 4.89941 11.1362 5.02833 11.1198C5.18768 11.1005 5.2865 11.1274 5.34801 11.2409C5.41247 11.3607 5.38171 11.5125 5.19913 11.611C5.1242 11.6515 5.02997 11.6722 4.97402 11.6673L4.95536 11.5691Z" fill="#005DA9"/>
+<path d="M5.95628 11.1608C6.12479 11.097 6.16144 10.9059 6.09076 10.7184C6.02892 10.5548 5.87873 10.4164 5.70139 10.4834C5.52437 10.5502 5.49885 10.7482 5.56625 10.9265C5.63169 11.0999 5.78777 11.2239 5.95464 11.1611L5.95628 11.1608ZM5.98376 11.2488C5.76519 11.3316 5.54989 11.2206 5.45598 10.9713C5.35717 10.7095 5.45369 10.4776 5.67357 10.3944C5.9 10.309 6.11039 10.4265 6.20234 10.6713C6.30933 10.9533 6.19416 11.1696 5.98507 11.2485L5.98376 11.2488Z" fill="#005DA9"/>
+<path d="M7.1663 10.8796C7.13063 10.9084 7.05243 10.947 6.94805 10.9703C6.70526 11.0233 6.49062 10.9097 6.42845 10.6267C6.36922 10.3564 6.51189 10.1349 6.77856 10.0763C6.88425 10.0534 6.95819 10.0613 6.99059 10.0701L6.98274 10.1667C6.93725 10.1555 6.87443 10.1529 6.80244 10.1689C6.60121 10.2128 6.49553 10.3715 6.54526 10.5969C6.59172 10.809 6.74191 10.9163 6.95001 10.8705C7.01873 10.8554 7.08482 10.8263 7.12474 10.7952L7.1663 10.8796Z" fill="#005DA9"/>
+<path d="M7.44814 9.99071L7.54597 10.8657L7.43145 10.8784L7.33362 10.0035L7.44814 9.99071Z" fill="#005DA9"/>
+<path d="M8.29158 10.4668L8.20323 10.2135C8.18491 10.1566 8.17149 10.1039 8.15808 10.0532H8.15415C8.1427 10.1042 8.1283 10.1592 8.11161 10.2125L8.02687 10.4678L8.29158 10.4668ZM8.00331 10.5564L7.91333 10.8339L7.79553 10.8342L8.09133 9.95306L8.2281 9.95241L8.53207 10.8313L8.41068 10.8319L8.31513 10.5551L8.00331 10.5564Z" fill="#005DA9"/>
+<path d="M8.86946 9.98152L8.983 9.99559L8.88582 10.7747L9.25949 10.8211L9.24771 10.916L8.7605 10.8552L8.86946 9.98152Z" fill="#005DA9"/>
+<path d="M10.0006 10.6654L9.66913 10.5846L9.59354 10.8932L9.96427 10.9835L9.94169 11.0764L9.45972 10.9583L9.6688 10.1033L10.1321 10.2165L10.1092 10.3088L9.7578 10.2231L9.69138 10.4933L10.0228 10.5742L10.0006 10.6654Z" fill="#005DA9"/>
+<path d="M19.9238 25.15C19.9238 25.4933 19.824 25.6759 19.5291 25.6759C19.2739 25.6759 19.1345 25.5103 19.1345 25.1157V23.9158C19.1345 23.5212 19.2739 23.356 19.5291 23.356C19.7834 23.356 19.9238 23.5212 19.9238 23.9158V25.15ZM20.643 25.2233V21.6332H19.9247V22.8508C19.8806 22.8128 19.7343 22.7405 19.5291 22.7405C18.7151 22.7405 18.4219 23.2621 18.4219 24.013V25.0185C18.4219 25.7691 18.7151 26.291 19.5291 26.291C20.1413 26.291 20.643 26.0008 20.643 25.2233Z" fill="#005DA9"/>
+<path d="M10.7516 21.6332V26.2275H10.0415V22.6358H10.0285L9.31547 26.2275H8.9333L8.21999 22.6358H8.20756V26.2275H7.49719V21.6332H8.55734L9.11817 24.317H9.1306L9.69078 21.6332H10.7516Z" fill="#005DA9"/>
+<path d="M21.3026 22.8037H22.0149V26.2275H21.3026V22.8037Z" fill="#005DA9"/>
 <path d="M22.0745 21.9919C22.0745 22.2216 21.8886 22.4075 21.6589 22.4075C21.4292 22.4075 21.243 22.2216 21.243 21.9919C21.243 21.7622 21.4292 21.576 21.6589 21.576C21.8886 21.576 22.0745 21.7622 22.0745 21.9919Z" fill="#005DA9"/>
-<path d="M17.1082 25.3648C16.9583 25.5104 16.8271 25.6848 16.6033 25.6848C16.4031 25.6848 16.2594 25.5392 16.2594 25.2813C16.2594 24.799 16.6315 24.6868 17.1082 24.5808V25.3648ZM17.8228 25.8647V23.6695C17.8228 23.0459 17.4472 22.7406 16.7856 22.7406C16.1174 22.7406 15.6783 23.1159 15.6404 23.8092H16.353C16.3658 23.5167 16.4358 23.326 16.7601 23.326C16.996 23.326 17.1102 23.4781 17.1102 23.7647L17.1108 24.0321C16.0517 24.1767 15.5563 24.7143 15.5563 25.3805C15.5563 25.85 15.8262 26.2931 16.3651 26.2931C16.7388 26.2931 16.8586 26.1982 17.1455 25.9727C17.1504 26.0375 17.1645 26.1147 17.1861 26.2276H17.8673C17.8483 26.1128 17.8228 25.9727 17.8228 25.8647Z" fill="#005DA9"/>
-<path d="M12.7999 25.3648C12.6507 25.5104 12.5198 25.6848 12.2957 25.6848C12.0951 25.6848 11.9515 25.5392 11.9515 25.2813C11.9515 24.799 12.3235 24.6868 12.7999 24.5808V25.3648ZM13.5152 25.8647V23.6695C13.5152 23.0459 13.1395 22.7406 12.4776 22.7406C11.8098 22.7406 11.3707 23.1159 11.3324 23.8092H12.0454C12.0578 23.5167 12.1281 23.326 12.4524 23.326C12.6883 23.326 12.8022 23.4781 12.8022 23.7647L12.8028 24.0321C11.7434 24.1767 11.2483 24.7143 11.2483 25.3805C11.2483 25.85 11.5182 26.2931 12.0578 26.2931C12.4308 26.2931 12.5506 26.1982 12.8379 25.9727C12.8424 26.0375 12.8565 26.1147 12.8784 26.2276H13.5593C13.5407 26.1128 13.5152 25.9727 13.5152 25.8647Z" fill="#005DA9"/>
-<path d="M15.1892 25.6877C14.824 25.6871 14.7988 25.4862 14.7988 25.2358V21.6333H14.0858V25.209C14.0858 25.7878 14.3427 26.2734 15.1931 26.2734H15.2634V25.6877H15.1892Z" fill="#005DA9"/>
-<path d="M23.325 23.8861C23.325 23.4915 23.4647 23.3263 23.7193 23.3263C23.9742 23.3263 24.1139 23.4915 24.1139 23.8861V24.0641H23.325V23.8861ZM24.8269 24.6498V24.0131C24.8269 23.2621 24.5343 22.7406 23.7193 22.7406C22.9049 22.7406 22.6127 23.2621 22.6127 24.0131V25.0186C22.6127 25.7692 22.9049 26.2911 23.7193 26.2911C24.4571 26.2911 24.7676 25.8637 24.8193 25.2234C24.8193 25.2234 24.8236 25.1625 24.8203 25.1347H24.1132L24.1119 25.2231C24.0943 25.5621 23.9568 25.706 23.7193 25.706C23.4647 25.706 23.325 25.5405 23.325 25.1459V24.6498H24.8269Z" fill="#005DA9"/>
-<path d="M17.2551 19.3134H17.9131L17.5872 17.29H17.5744L17.2551 19.3134ZM17.008 20.9674H16.245L17.0911 16.3738H18.0711L18.9176 20.9674H18.1539L18.008 19.9161H17.1595L17.008 20.9674Z" fill="#005DA9"/>
-<path d="M26.9053 20.9674V17.5449H27.5862V17.8361H27.5989C27.7704 17.5439 28.1748 17.4804 28.4071 17.4804H28.5534V18.2251C28.4261 18.1934 28.3054 18.1551 28.0947 18.1551C27.8535 18.1551 27.6183 18.3076 27.6183 18.6135V20.9674H26.9053Z" fill="#005DA9"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M26.2784 17.5449V19.7584C26.2784 20.509 25.9856 21.0316 25.1708 21.0316C24.3571 21.0316 24.0642 20.509 24.0642 19.7584V17.5449H24.7772V19.886C24.7772 20.2803 24.9169 20.4459 25.1708 20.4459C25.426 20.4459 25.5658 20.2803 25.5658 19.886V17.5449H26.2784Z" fill="#005DA9"/>
-<path d="M31.4902 20.9674V18.7536C31.4902 18.0265 31.7828 17.4804 32.5975 17.4804C33.4119 17.4804 33.7048 18.0265 33.7048 18.7536V20.9674H32.9918V18.6309C32.9918 18.2641 32.8439 18.092 32.5975 18.092C32.3508 18.092 32.2026 18.2641 32.2026 18.6309V20.9674H31.4902Z" fill="#005DA9"/>
-<path d="M30.2131 20.1052C30.0645 20.2505 29.933 20.4246 29.7088 20.4246C29.5083 20.4246 29.3649 20.2793 29.3649 20.0215C29.3649 19.5388 29.737 19.4266 30.2131 19.3203V20.1052ZM30.9287 20.6049V18.4093C30.9287 17.786 30.5527 17.4804 29.8911 17.4804C29.2229 17.4804 28.7838 17.8557 28.7459 18.5497H29.4589C29.4713 18.2568 29.5413 18.0658 29.8659 18.0658C30.1015 18.0658 30.2157 18.2182 30.2157 18.5049L30.2163 18.7722C29.1568 18.9168 28.6621 19.4544 28.6621 20.1206C28.6621 20.5898 28.9317 21.0332 29.4713 21.0332C29.844 21.0332 29.9641 20.938 30.2507 20.7132C30.2559 20.7776 30.2703 20.8549 30.2916 20.9674H30.9722C30.9542 20.8529 30.9287 20.7129 30.9287 20.6049Z" fill="#005DA9"/>
-<path d="M15.1892 20.4289C14.824 20.4279 14.7988 20.227 14.7988 19.9767V16.3741H14.0858V19.9502C14.0858 20.5284 14.3427 21.0143 15.1931 21.0143H15.2634V20.4289H15.1892Z" fill="#005DA9"/>
-<path d="M19.8547 18.3397C19.8547 18.1617 19.9879 18.0661 20.1809 18.0661C20.4234 18.0661 20.5232 18.199 20.5644 18.4925L21.1998 18.4375C21.1351 17.9958 20.9132 17.4804 20.1472 17.4804C19.5893 17.4804 19.1509 17.8561 19.1509 18.3969C19.1509 19.3324 20.549 19.5552 20.549 20.1468C20.549 20.3379 20.4096 20.4462 20.2136 20.4462C19.875 20.4462 19.7686 20.1917 19.7222 19.9054L19.0629 20.0107C19.1404 20.6615 19.556 21.0316 20.2074 21.0316C20.8151 21.0316 21.2538 20.7198 21.2538 20.1089C21.2538 19.0906 19.8547 18.874 19.8547 18.3397Z" fill="#005DA9"/>
-<path d="M22.2776 18.3397C22.2776 18.1617 22.4105 18.0661 22.6029 18.0661C22.8424 18.0661 22.9422 18.199 22.9834 18.4925L23.6189 18.4375C23.5547 17.9958 23.3322 17.4804 22.5698 17.4804C22.0119 17.4804 21.5728 17.8561 21.5728 18.3969C21.5728 19.3324 22.9684 19.5552 22.9684 20.1468C22.9684 20.3379 22.829 20.4462 22.6356 20.4462C22.2976 20.4462 22.1913 20.1917 22.1448 19.9054L21.4855 20.0107C21.563 20.6615 21.9786 21.0316 22.6297 21.0316C23.2341 21.0316 23.6725 20.7198 23.6725 20.1089C23.6725 19.0906 22.2776 18.874 22.2776 18.3397Z" fill="#005DA9"/>
-<path d="M37.5457 18.626C37.5457 18.2314 37.6858 18.0661 37.9407 18.0661C38.1952 18.0661 38.335 18.2314 38.335 18.626V18.8043H37.5457V18.626ZM39.0476 19.39V18.7536C39.0476 18.0027 38.7561 17.4804 37.9407 17.4804C37.1259 17.4804 36.8337 18.0027 36.8337 18.7536V19.7588C36.8337 20.5097 37.1259 21.0316 37.9407 21.0316C38.6779 21.0316 38.9887 20.6043 39.0404 19.9639C39.0404 19.9639 39.0443 19.9027 39.0414 19.8749H38.3343L38.3333 19.9633C38.3153 20.3019 38.1782 20.4462 37.9407 20.4462C37.6858 20.4462 37.5457 20.281 37.5457 19.886V19.39H39.0476Z" fill="#005DA9"/>
-<path d="M15.5254 16.3741V17.0256H15.7325C15.6671 17.1905 15.5277 17.5449 15.5277 17.5449H15.8758L16.1769 17.0256V16.3741H15.5254Z" fill="#005DA9"/>
-<path d="M35.7108 19.8343L35.7102 19.9633C35.6925 20.3019 35.5551 20.4462 35.3178 20.4462C35.0626 20.4462 34.9232 20.281 34.9232 19.886V18.626C34.9232 18.2314 35.0626 18.0661 35.3178 18.0661C35.5724 18.0661 35.7124 18.2314 35.7124 18.626V18.7533L36.4248 18.7536C36.4248 18.0026 36.1323 17.4804 35.3178 17.4804C34.5031 17.4804 34.2106 18.0026 34.2106 18.7536V19.7588C34.2106 20.5097 34.5031 21.0316 35.3178 21.0316C36.1872 21.0316 36.4202 20.4181 36.4202 19.8343H35.7108Z" fill="#005DA9"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M4.72013 15.4707C4.82549 15.706 4.74402 16.0427 4.59481 16.2105C4.8592 16.5462 5.5208 16.4062 5.87615 16.3103C5.97268 16.2913 6.04924 16.1183 6.14119 16.1853C6.16507 16.205 6.32344 16.0365 6.30413 16.1955C6.30413 16.2913 6.26127 16.3941 6.1618 16.4311C6.0872 16.4585 5.87321 16.5224 5.87321 16.5224C5.49365 16.6421 5.28718 16.6951 4.90729 16.878C4.73224 16.9706 4.77739 17.3073 4.80193 17.4297C4.82582 17.5521 4.94329 17.9915 4.84022 18.2101C4.75547 18.3887 4.46099 18.5543 4.45575 18.7752C4.45575 18.8714 4.61543 18.9878 4.52316 19.066C4.4636 19.1168 4.41943 19.1249 4.38311 19.0912C4.38311 19.0912 4.09812 18.7977 4.13378 18.6973C4.13149 18.6584 4.45411 18.1957 4.31603 17.9869C4.23914 18.0589 4.23031 18.2546 4.07488 18.3259C4.00159 18.3593 3.8959 18.2745 3.83308 18.3102C3.80821 18.3249 3.81116 18.4237 3.7876 18.4473C3.76404 18.4715 3.66064 18.4679 3.63839 18.4237C3.57851 18.3033 3.60207 18.0975 3.62432 17.9964C3.65704 17.8462 3.96985 18.0108 3.86842 17.7971C3.83112 17.7189 3.78334 17.6165 3.78694 17.4519C3.78989 17.3256 3.89492 17.18 3.7912 17.1162C3.67537 17.058 3.40084 16.9363 3.3956 16.7923C3.36321 16.45 3.99864 16.45 4.14327 16.1425C4.14327 15.9942 3.95742 15.8683 3.99439 15.6343C4.01271 15.5155 4.10499 15.3798 4.25779 15.3591C4.44888 15.333 4.56635 15.3555 4.72013 15.4707Z" fill="#005DA9"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M13.0721 15.5548C13.0963 15.3915 12.9965 15.0113 13.0472 14.8552L13.3371 15.0061C13.2753 15.1082 13.1526 15.3359 13.0721 15.5548ZM13.6349 14.777C13.2461 14.5267 12.9088 14.0853 12.4713 14.158C12.241 14.1383 12.4288 13.8936 12.366 13.7977C12.2603 13.6102 12.2485 13.5395 11.8375 13.5791C11.7243 13.5903 11.634 13.6318 11.5921 13.7303C11.5551 13.8402 11.5892 13.8141 11.5627 13.9165C11.5293 14.0186 11.4079 14.066 11.525 14.1432C11.5345 14.1766 11.5336 14.2342 11.525 14.3402C11.5188 14.4142 11.6118 14.4073 11.65 14.4312C11.1838 14.7725 10.3451 14.7109 9.9345 14.443C9.85859 14.3936 9.59355 14.4043 9.5929 14.4345C9.59355 14.5035 9.76533 14.5185 9.8275 14.5905C9.79904 14.6003 9.74897 14.5889 9.7709 14.6318C9.79216 14.6746 10.1063 14.7325 10.1073 14.7325C10.3481 14.8958 10.7227 14.974 11.0149 15.0316C11.6108 15.1199 11.7786 15.0872 11.8565 15.4684C11.9354 15.8542 11.8434 16.2099 11.7554 16.736C11.6837 17.2065 11.7816 17.4991 11.8565 17.9601C11.8706 18.0455 11.9147 18.1862 11.8729 18.2225C11.7901 18.2955 11.5725 18.3583 11.4789 18.4401C11.4383 18.5746 11.8163 18.4882 12.0679 18.5013C12.188 18.5108 12.2168 18.3825 12.2168 18.3056C12.239 17.5854 12.2603 17.36 12.3755 16.9088C12.4432 17.2978 12.4514 17.9522 12.5377 18.3465C12.4393 18.463 12.1762 18.5677 12.2413 18.6312C12.3179 18.7032 12.4484 18.6911 12.5171 18.6737C12.6778 18.6348 12.7681 18.5847 12.8849 18.4787C12.8849 18.4787 13.1244 16.8986 13.0819 16.1163C13.058 15.6808 13.486 15.4301 13.7023 15.0411C13.7546 14.9403 13.7523 14.8526 13.6349 14.777Z" fill="#005DA9"/>
+<path d="M17.1082 25.3647C16.9583 25.5103 16.8271 25.6847 16.6033 25.6847C16.4031 25.6847 16.2594 25.5391 16.2594 25.2812C16.2594 24.7989 16.6315 24.6867 17.1082 24.5807V25.3647ZM17.8228 25.8647V23.6694C17.8228 23.0458 17.4472 22.7405 16.7856 22.7405C16.1174 22.7405 15.6783 23.1158 15.6404 23.8092H16.353C16.3658 23.5166 16.4358 23.3259 16.7601 23.3259C16.996 23.3259 17.1102 23.478 17.1102 23.7647L17.1108 24.032C16.0517 24.1766 15.5563 24.7142 15.5563 25.3804C15.5563 25.8499 15.8262 26.293 16.3651 26.293C16.7388 26.293 16.8586 26.1981 17.1455 25.9726C17.1504 26.0374 17.1645 26.1146 17.1861 26.2275H17.8673C17.8483 26.1127 17.8228 25.9726 17.8228 25.8647Z" fill="#005DA9"/>
+<path d="M12.7999 25.3647C12.6507 25.5103 12.5198 25.6847 12.2957 25.6847C12.0951 25.6847 11.9515 25.5391 11.9515 25.2812C11.9515 24.7989 12.3235 24.6867 12.7999 24.5807V25.3647ZM13.5152 25.8647V23.6694C13.5152 23.0458 13.1395 22.7405 12.4776 22.7405C11.8098 22.7405 11.3707 23.1158 11.3324 23.8092H12.0454C12.0578 23.5166 12.1281 23.3259 12.4524 23.3259C12.6883 23.3259 12.8022 23.478 12.8022 23.7647L12.8028 24.032C11.7434 24.1766 11.2483 24.7142 11.2483 25.3804C11.2483 25.8499 11.5182 26.293 12.0578 26.293C12.4308 26.293 12.5506 26.1981 12.8379 25.9726C12.8424 26.0374 12.8565 26.1146 12.8784 26.2275H13.5593C13.5407 26.1127 13.5152 25.9726 13.5152 25.8647Z" fill="#005DA9"/>
+<path d="M15.1892 25.6877C14.824 25.6871 14.7988 25.4862 14.7988 25.2359V21.6333H14.0858V25.209C14.0858 25.7879 14.3427 26.2734 15.1931 26.2734H15.2634V25.6877H15.1892Z" fill="#005DA9"/>
+<path d="M23.325 23.8861C23.325 23.4914 23.4647 23.3262 23.7193 23.3262C23.9742 23.3262 24.1139 23.4914 24.1139 23.8861V24.0641H23.325V23.8861ZM24.8269 24.6498V24.013C24.8269 23.2621 24.5343 22.7405 23.7193 22.7405C22.9049 22.7405 22.6127 23.2621 22.6127 24.013V25.0185C22.6127 25.7691 22.9049 26.291 23.7193 26.291C24.4571 26.291 24.7676 25.8637 24.8193 25.2233C24.8193 25.2233 24.8236 25.1625 24.8203 25.1347H24.1132L24.1119 25.223C24.0943 25.562 23.9568 25.706 23.7193 25.706C23.4647 25.706 23.325 25.5404 23.325 25.1458V24.6498H24.8269Z" fill="#005DA9"/>
+<path d="M17.2551 19.3135H17.9131L17.5872 17.2901H17.5744L17.2551 19.3135ZM17.008 20.9675H16.245L17.0911 16.3739H18.0711L18.9176 20.9675H18.1539L18.008 19.9162H17.1595L17.008 20.9675Z" fill="#005DA9"/>
+<path d="M26.9053 20.9675V17.545H27.5862V17.8362H27.5989C27.7704 17.544 28.1748 17.4805 28.4071 17.4805H28.5534V18.2252C28.4261 18.1935 28.3054 18.1552 28.0947 18.1552C27.8535 18.1552 27.6183 18.3077 27.6183 18.6136V20.9675H26.9053Z" fill="#005DA9"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M26.2784 17.5448V19.7583C26.2784 20.5089 25.9856 21.0315 25.1708 21.0315C24.3571 21.0315 24.0642 20.5089 24.0642 19.7583V17.5448H24.7772V19.8859C24.7772 20.2802 24.9169 20.4458 25.1708 20.4458C25.426 20.4458 25.5658 20.2802 25.5658 19.8859V17.5448H26.2784Z" fill="#005DA9"/>
+<path d="M31.4902 20.9675V18.7537C31.4902 18.0266 31.7828 17.4805 32.5975 17.4805C33.4119 17.4805 33.7048 18.0266 33.7048 18.7537V20.9675H32.9918V18.631C32.9918 18.2642 32.8439 18.092 32.5975 18.092C32.3508 18.092 32.2026 18.2642 32.2026 18.631V20.9675H31.4902Z" fill="#005DA9"/>
+<path d="M30.2131 20.1052C30.0645 20.2505 29.933 20.4246 29.7088 20.4246C29.5083 20.4246 29.3649 20.2793 29.3649 20.0215C29.3649 19.5389 29.737 19.4266 30.2131 19.3203V20.1052ZM30.9287 20.6049V18.4093C30.9287 17.786 30.5527 17.4804 29.8911 17.4804C29.2229 17.4804 28.7838 17.8557 28.7459 18.5497H29.4589C29.4713 18.2569 29.5413 18.0658 29.8659 18.0658C30.1015 18.0658 30.2157 18.2183 30.2157 18.5049L30.2163 18.7722C29.1568 18.9168 28.6621 19.4544 28.6621 20.1206C28.6621 20.5898 28.9317 21.0332 29.4713 21.0332C29.844 21.0332 29.9641 20.938 30.2507 20.7132C30.2559 20.7777 30.2703 20.8549 30.2916 20.9674H30.9722C30.9542 20.8529 30.9287 20.7129 30.9287 20.6049Z" fill="#005DA9"/>
+<path d="M15.1892 20.4288C14.824 20.4278 14.7988 20.2269 14.7988 19.9766V16.3741H14.0858V19.9501C14.0858 20.5283 14.3427 21.0142 15.1931 21.0142H15.2634V20.4288H15.1892Z" fill="#005DA9"/>
+<path d="M19.8547 18.3396C19.8547 18.1616 19.9879 18.066 20.1809 18.066C20.4234 18.066 20.5232 18.1989 20.5644 18.4924L21.1998 18.4374C21.1351 17.9957 20.9132 17.4803 20.1472 17.4803C19.5893 17.4803 19.1509 17.856 19.1509 18.3968C19.1509 19.3323 20.549 19.5551 20.549 20.1467C20.549 20.3378 20.4096 20.4461 20.2136 20.4461C19.875 20.4461 19.7686 20.1916 19.7222 19.9053L19.0629 20.0106C19.1404 20.6614 19.556 21.0315 20.2074 21.0315C20.8151 21.0315 21.2538 20.7197 21.2538 20.1088C21.2538 19.0905 19.8547 18.8739 19.8547 18.3396Z" fill="#005DA9"/>
+<path d="M22.2776 18.3396C22.2776 18.1616 22.4105 18.066 22.6029 18.066C22.8424 18.066 22.9422 18.1989 22.9834 18.4924L23.6189 18.4374C23.5547 17.9957 23.3322 17.4803 22.5698 17.4803C22.0119 17.4803 21.5728 17.856 21.5728 18.3968C21.5728 19.3323 22.9684 19.5551 22.9684 20.1467C22.9684 20.3378 22.829 20.4461 22.6356 20.4461C22.2976 20.4461 22.1913 20.1916 22.1448 19.9053L21.4855 20.0106C21.563 20.6614 21.9786 21.0315 22.6297 21.0315C23.2341 21.0315 23.6725 20.7197 23.6725 20.1088C23.6725 19.0905 22.2776 18.8739 22.2776 18.3396Z" fill="#005DA9"/>
+<path d="M37.5457 18.6259C37.5457 18.2313 37.6858 18.066 37.9407 18.066C38.1952 18.066 38.335 18.2313 38.335 18.6259V18.8042H37.5457V18.6259ZM39.0476 19.3899V18.7535C39.0476 18.0026 38.7561 17.4803 37.9407 17.4803C37.1259 17.4803 36.8337 18.0026 36.8337 18.7535V19.7587C36.8337 20.5096 37.1259 21.0315 37.9407 21.0315C38.6779 21.0315 38.9887 20.6042 39.0404 19.9638C39.0404 19.9638 39.0443 19.9026 39.0414 19.8748H38.3343L38.3333 19.9632C38.3153 20.3018 38.1782 20.4461 37.9407 20.4461C37.6858 20.4461 37.5457 20.2809 37.5457 19.8859V19.3899H39.0476Z" fill="#005DA9"/>
+<path d="M15.5254 16.3742V17.0256H15.7325C15.6671 17.1906 15.5277 17.5449 15.5277 17.5449H15.8758L16.1769 17.0256V16.3742H15.5254Z" fill="#005DA9"/>
+<path d="M35.7108 19.8342L35.7102 19.9632C35.6925 20.3018 35.5551 20.4461 35.3178 20.4461C35.0626 20.4461 34.9232 20.2809 34.9232 19.8859V18.6259C34.9232 18.2313 35.0626 18.066 35.3178 18.066C35.5724 18.066 35.7124 18.2313 35.7124 18.6259V18.7532L36.4248 18.7535C36.4248 18.0026 36.1323 17.4803 35.3178 17.4803C34.5031 17.4803 34.2106 18.0026 34.2106 18.7535V19.7587C34.2106 20.5096 34.5031 21.0315 35.3178 21.0315C36.1872 21.0315 36.4202 20.418 36.4202 19.8342H35.7108Z" fill="#005DA9"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M4.72013 15.4707C4.82549 15.706 4.74402 16.0427 4.59481 16.2106C4.8592 16.5463 5.5208 16.4062 5.87615 16.3104C5.97268 16.2914 6.04924 16.1183 6.14119 16.1854C6.16507 16.205 6.32344 16.0365 6.30413 16.1955C6.30413 16.2914 6.26127 16.3941 6.1618 16.4311C6.0872 16.4586 5.87321 16.5224 5.87321 16.5224C5.49365 16.6421 5.28718 16.6951 4.90729 16.8781C4.73224 16.9707 4.77739 17.3073 4.80193 17.4297C4.82582 17.5521 4.94329 17.9915 4.84022 18.2101C4.75547 18.3888 4.46099 18.5543 4.45575 18.7752C4.45575 18.8714 4.61543 18.9879 4.52316 19.0661C4.4636 19.1168 4.41943 19.125 4.38311 19.0913C4.38311 19.0913 4.09812 18.7978 4.13378 18.6973C4.13149 18.6584 4.45411 18.1957 4.31603 17.987C4.23914 18.0589 4.23031 18.2546 4.07488 18.3259C4.00159 18.3593 3.8959 18.2746 3.83308 18.3102C3.80821 18.325 3.81116 18.4238 3.7876 18.4473C3.76404 18.4715 3.66064 18.4679 3.63839 18.4238C3.57851 18.3034 3.60207 18.0976 3.62432 17.9964C3.65704 17.8463 3.96985 18.0108 3.86842 17.7972C3.83112 17.719 3.78334 17.6166 3.78694 17.452C3.78989 17.3257 3.89492 17.1801 3.7912 17.1163C3.67537 17.058 3.40084 16.9363 3.3956 16.7923C3.36321 16.4501 3.99864 16.4501 4.14327 16.1425C4.14327 15.9943 3.95742 15.8683 3.99439 15.6343C4.01271 15.5156 4.10499 15.3798 4.25779 15.3592C4.44888 15.333 4.56635 15.3556 4.72013 15.4707Z" fill="#005DA9"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M13.0721 15.5548C13.0963 15.3916 12.9965 15.0113 13.0472 14.8553L13.3371 15.0061C13.2753 15.1082 13.1526 15.3359 13.0721 15.5548ZM13.6349 14.7771C13.2461 14.5268 12.9088 14.0854 12.4713 14.158C12.241 14.1384 12.4288 13.8936 12.366 13.7977C12.2603 13.6103 12.2485 13.5396 11.8375 13.5792C11.7243 13.5903 11.634 13.6318 11.5921 13.7303C11.5551 13.8403 11.5892 13.8141 11.5627 13.9165C11.5293 14.0186 11.4079 14.066 11.525 14.1433C11.5345 14.1766 11.5336 14.2342 11.525 14.3402C11.5188 14.4142 11.6118 14.4073 11.65 14.4312C11.1838 14.7725 10.3451 14.711 9.9345 14.443C9.85859 14.3936 9.59355 14.4044 9.5929 14.4345C9.59355 14.5035 9.76533 14.5186 9.8275 14.5906C9.79904 14.6004 9.74897 14.5889 9.7709 14.6318C9.79216 14.6747 10.1063 14.7326 10.1073 14.7326C10.3481 14.8958 10.7227 14.974 11.0149 15.0316C11.6108 15.12 11.7786 15.0873 11.8565 15.4685C11.9354 15.8542 11.8434 16.2099 11.7554 16.736C11.6837 17.2066 11.7816 17.4991 11.8565 17.9601C11.8706 18.0455 11.9147 18.1862 11.8729 18.2225C11.7901 18.2955 11.5725 18.3583 11.4789 18.4401C11.4383 18.5746 11.8163 18.4882 12.0679 18.5013C12.188 18.5108 12.2168 18.3825 12.2168 18.3056C12.239 17.5855 12.2603 17.36 12.3755 16.9088C12.4432 17.2979 12.4514 17.9523 12.5377 18.3465C12.4393 18.463 12.1762 18.5677 12.2413 18.6312C12.3179 18.7032 12.4484 18.6911 12.5171 18.6738C12.6778 18.6348 12.7681 18.5848 12.8849 18.4787C12.8849 18.4787 13.1244 16.8987 13.0819 16.1163C13.058 15.6808 13.486 15.4302 13.7023 15.0411C13.7546 14.9403 13.7523 14.8527 13.6349 14.7771Z" fill="#005DA9"/>
 <path fill-rule="evenodd" clip-rule="evenodd" d="M8.40715 13.3871C8.57599 13.4178 8.97027 13.5297 9.0164 13.5389C9.06254 13.5484 9.1787 13.6567 9.21436 13.6652C9.23367 13.6698 9.23956 13.6727 9.25625 13.6423C9.27228 13.6122 9.33968 13.6596 9.40872 13.639C9.45388 13.6256 9.49707 13.5045 9.48594 13.4908C9.44177 13.4378 9.21207 13.376 9.10115 13.3753C8.97158 13.3321 8.67022 13.2088 8.44347 13.1368C7.93074 12.9745 7.39576 12.7291 6.90495 13.0213C6.69979 12.9368 6.69619 12.6705 6.3415 12.6983C6.17266 12.7114 6.05061 12.8423 6.01004 12.9588C5.96881 13.0756 5.95212 13.2209 6.02804 13.3652C6.06992 13.4447 6.15172 13.4836 6.23319 13.5111C6.27377 13.5248 6.31696 13.534 6.35753 13.5484C6.41577 13.5687 6.4269 13.6155 6.493 13.606C6.5424 13.5985 6.5833 13.5909 6.63468 13.5939C6.68114 13.5968 6.80057 13.6155 6.82053 13.5523C6.82151 13.5523 6.82315 13.5523 6.82478 13.5526C6.82904 13.6698 6.80646 13.8422 6.74593 13.8713C6.66445 13.8906 6.62846 13.8396 6.4305 13.7823C6.23483 13.7261 5.77282 13.6675 5.76431 14.0212C5.74958 14.5889 5.81764 14.7715 5.42532 15.2528C5.35759 15.3359 5.24307 15.3408 5.31015 15.4279C5.36315 15.4818 5.44921 15.4409 5.49011 15.4072C5.58991 15.6612 5.92726 15.2836 6.00121 15.2253C6.15336 15.1062 5.98092 15.0022 6.05323 14.8873C6.17724 14.6462 6.36866 14.548 6.40923 14.3677C6.60686 14.5218 6.84703 14.6422 7.09276 14.6226C7.19387 14.6033 7.28647 14.5653 7.40066 14.4495C7.51519 14.3337 7.54594 13.9649 7.55609 13.7094C7.57703 13.1901 7.93532 13.301 8.40715 13.3871Z" fill="#005DA9"/>
-<path d="M11.8136 20.7901C11.6098 20.7417 11.3798 20.5971 11.2646 20.4194C11.1841 20.2947 11.1268 20.154 11.0614 20.01C10.8399 19.5255 10.7126 18.9937 10.5689 18.8161C10.3157 18.5023 9.82128 18.0648 9.48819 17.8485C9.38937 17.7844 9.29841 17.7383 9.21628 17.7026C9.2971 17.3103 9.27845 16.8931 9.27845 16.8931C9.27845 16.8133 9.28009 16.811 9.30823 16.7776C9.39395 16.7099 9.45056 16.6271 9.42504 16.4982C9.42209 16.4798 9.35109 16.326 9.33048 16.2927C9.44991 16.3404 9.97638 16.4651 10.1289 16.4543C10.3913 16.4363 11.0146 16.0037 11.1085 15.938C11.1769 15.8977 11.2162 15.8876 11.2518 15.8778C11.2881 15.8676 11.3781 15.8107 11.3987 15.7547C11.4072 15.7299 11.3801 15.5493 11.3176 15.5381C11.2904 15.5355 11.2194 15.5794 11.1946 15.5722C11.1795 15.5679 11.1632 15.5394 11.1501 15.5401C11.1157 15.5388 11.0807 15.5938 11.064 15.6203C11.0414 15.6553 11.0339 15.7187 11.0103 15.7482C10.9675 15.8028 10.3628 15.9736 10.1622 16.0682C10.1275 16.0846 10.0912 16.0977 10.0556 16.0865C9.89687 16.0374 9.25751 15.6706 9.00491 15.723C8.92507 15.7397 8.8004 15.7848 8.74609 15.7259C8.71729 15.6945 8.70126 15.6445 8.72547 15.5947C8.7523 15.5381 8.8858 15.5306 8.91165 15.4655C8.93979 15.3935 8.89333 15.2502 8.89366 15.242C8.89497 15.2145 8.9267 15.2011 8.92376 15.1769C8.92049 15.151 8.88744 15.1232 8.85079 15.0712C8.81218 15.0185 8.80106 14.8844 8.76605 14.8258C8.77423 14.8072 8.79811 14.6854 8.65578 14.6023C8.51344 14.5205 8.27851 14.5019 8.14665 14.6177C8.07204 14.6841 7.97257 14.6586 7.89339 14.6998C7.74353 14.7787 7.83973 14.9364 7.59171 15.1605C7.48406 15.2577 7.54753 15.4459 7.57306 15.4881C7.46802 15.6844 7.65388 15.9157 7.82108 15.8765C7.87605 15.9291 7.91073 15.9527 7.97159 15.9498C7.97257 15.9556 7.97454 15.9615 7.97683 15.9678C7.9392 15.9815 7.85838 16.0221 7.82304 16.0401C7.72815 16.0898 7.67253 16.1507 7.58483 16.2357C7.30442 16.5086 6.88789 16.932 5.89449 17.4291C5.78161 17.4981 5.45767 17.4683 5.45767 17.5387C5.47829 17.5727 5.54864 17.608 5.54864 17.608C5.5506 17.6483 5.42921 17.6643 5.36344 17.6787C5.30618 17.7111 5.41677 17.7566 5.45964 17.7962C5.68017 17.8358 5.79404 17.7864 5.9812 17.6296C6.73639 17.3365 7.29788 17.0498 7.90975 16.6516C8.03965 16.5675 8.11294 16.6588 8.21765 17.0469C8.2579 17.1974 8.05765 17.3204 7.98108 17.5338C7.8947 17.7723 7.90517 17.9509 7.9693 18.0897C7.89895 18.2441 7.68201 18.4489 7.68201 18.4489C7.68201 18.4489 7.16798 18.8746 6.90817 19.1318C6.68306 19.355 6.41082 19.3033 6.20108 19.4034C5.98774 19.5065 5.79404 19.6688 5.61309 19.8183C5.4809 19.9276 5.34871 20.0248 5.173 20.0974C5.10494 20.1252 5.07157 20.1341 4.99926 20.1439C4.90862 20.1563 4.85398 20.2401 4.86183 20.317C4.8687 20.3876 4.93218 20.5467 5.00024 20.6834C5.03689 20.7587 5.12065 20.9334 5.22928 20.9553C5.30258 20.971 5.45767 21.0021 5.49236 20.9351C5.53849 20.8461 5.34151 20.8209 5.32744 20.7047C5.31861 20.6304 5.31076 20.5087 5.3353 20.4377C5.37783 20.315 5.55387 20.2299 5.65923 20.173C5.98513 19.996 6.94875 19.7692 7.23603 19.6828C7.65126 19.5012 7.97912 19.3524 8.24873 19.1757C8.48792 19.031 8.6813 18.8017 8.83051 18.6109C9.18651 18.7879 9.71102 19.0085 10.0592 19.1416C10.264 19.2202 10.1527 19.3517 10.2669 19.6468C10.3484 19.8579 10.495 20.012 10.9809 20.5859C11.0506 20.6811 10.976 20.7466 10.991 20.8523C11.0084 20.9668 11.0643 20.9704 11.17 20.9681C11.2682 20.9648 11.367 20.9681 11.4652 20.9681C11.5905 20.9681 11.7479 20.9688 11.8729 20.9674C11.919 20.9668 12.0103 20.9521 12.0103 20.885C12.0103 20.8107 11.8761 20.8052 11.8136 20.7901Z" fill="#005DA9"/>
-<path d="M15.6076 30.2617C15.5697 30.4044 15.4473 30.8513 14.8498 30.8513C14.3548 30.8513 14.0181 30.4914 14.0181 29.9221C14.0181 29.4142 14.2759 28.9624 14.8701 28.9624C14.9725 28.9624 15.2274 28.9725 15.429 29.1718C15.5212 29.2637 15.5671 29.3707 15.6027 29.4983L15.2379 29.5854C15.1921 29.3861 15.0412 29.2791 14.8524 29.2791C14.3983 29.2791 14.3983 29.7791 14.3983 29.8969C14.3983 30.0677 14.4189 30.2388 14.4951 30.3559C14.5616 30.4584 14.6839 30.5346 14.8472 30.5346C15.0923 30.5346 15.2048 30.3484 15.2506 30.1495L15.6076 30.2617Z" fill="#005DA9"/>
-<path d="M16.7309 30.1848C16.6952 30.1979 16.6645 30.2081 16.583 30.2257C16.565 30.228 16.4783 30.2463 16.4629 30.2516C16.3988 30.264 16.2587 30.2997 16.2587 30.4224C16.2587 30.4966 16.3173 30.6036 16.4524 30.6036C16.5342 30.6036 16.6033 30.5677 16.6569 30.5218C16.7309 30.4584 16.7309 30.3739 16.7309 30.2542V30.1848ZM15.9446 29.8432C16.0032 29.6312 16.1236 29.4679 16.5166 29.4679C17.0728 29.4679 17.0754 29.728 17.0754 29.9656C17.0754 30.0474 17.0702 30.4044 17.0728 30.4787C17.0803 30.6521 17.0983 30.7106 17.1494 30.8206H16.8048C16.797 30.8026 16.7894 30.7849 16.779 30.7463L16.7587 30.6753C16.69 30.744 16.5624 30.8513 16.348 30.8513C16.0827 30.8513 15.9089 30.69 15.9089 30.4607C15.9089 30.1364 16.2077 30.0778 16.3912 30.0422C16.5879 30.0065 16.6618 29.9859 16.7309 29.9577V29.9221C16.7309 29.8354 16.7309 29.7359 16.491 29.7359C16.3196 29.7359 16.2846 29.8354 16.261 29.9015L15.9446 29.8432Z" fill="#005DA9"/>
-<path d="M17.4886 29.4982H17.8384V30.8204H17.4886V29.4982ZM17.4886 28.993H17.8384V29.3173H17.4886V28.993Z" fill="#005DA9"/>
-<path d="M18.5355 30.3893C18.576 30.5654 18.7063 30.601 18.8185 30.601C18.8492 30.601 19.0711 30.5984 19.0711 30.4557C19.0711 30.3789 19.0102 30.3612 18.9284 30.3432C18.5276 30.2562 18.2341 30.1874 18.2341 29.8733C18.2341 29.57 18.5122 29.4679 18.7903 29.4679C19.1041 29.4679 19.3011 29.5546 19.3774 29.8174L19.0456 29.8786C19.002 29.7231 18.8594 29.7179 18.7979 29.7179C18.7396 29.7179 18.5584 29.7208 18.5584 29.8278C18.5584 29.8661 18.5862 29.8943 18.6245 29.9093C18.6905 29.9348 18.8339 29.9705 18.9206 29.9911C19.1552 30.0474 19.4209 30.1161 19.4209 30.407C19.4209 30.6138 19.255 30.8513 18.8185 30.8513C18.6905 30.8513 18.4792 30.8281 18.326 30.69C18.2262 30.601 18.1981 30.4937 18.1857 30.443L18.5355 30.3893Z" fill="#005DA9"/>
-<path d="M20.0307 30.3893C20.0716 30.5654 20.2015 30.601 20.3141 30.601C20.3445 30.601 20.567 30.5984 20.567 30.4557C20.567 30.3789 20.5055 30.3612 20.4237 30.3432C20.0232 30.2562 19.7297 30.1874 19.7297 29.8733C19.7297 29.57 20.0078 29.4679 20.2856 29.4679C20.5997 29.4679 20.7964 29.5546 20.873 29.8174L20.5415 29.8786C20.498 29.7231 20.3547 29.7179 20.2935 29.7179C20.2346 29.7179 20.0536 29.7208 20.0536 29.8278C20.0536 29.8661 20.0818 29.8943 20.1197 29.9093C20.1868 29.9348 20.3295 29.9705 20.4162 29.9911C20.6508 30.0474 20.9165 30.1161 20.9165 30.407C20.9165 30.6138 20.7503 30.8513 20.3141 30.8513C20.1868 30.8513 19.9744 30.8281 19.8213 30.69C19.7222 30.601 19.6937 30.4937 19.6813 30.443L20.0307 30.3893Z" fill="#005DA9"/>
-<path d="M22.0598 30.0448C22.0522 29.7562 21.853 29.7359 21.7993 29.7359C21.6334 29.7359 21.5339 29.8714 21.5365 30.0448H22.0598ZM22.3889 30.4584C22.3608 30.5395 22.2508 30.8513 21.8121 30.8513C21.6975 30.8513 21.3909 30.836 21.2506 30.5346C21.192 30.407 21.1714 30.2768 21.1714 30.1671C21.1714 29.8098 21.3605 29.4679 21.779 29.4679C22.2764 29.4679 22.4144 29.8684 22.4069 30.2588H21.529C21.5339 30.4175 21.6184 30.583 21.8173 30.583C21.9806 30.583 22.0215 30.4607 22.0395 30.3995L22.3889 30.4584Z" fill="#005DA9"/>
-<path d="M23.5656 28.9931H23.9229L24.6653 30.2133H24.6705V28.9931H25.0128V30.8206H24.6427L23.9124 29.6286H23.9075V30.8206H23.5656V28.9931Z" fill="#005DA9"/>
-<path d="M26.2042 30.1848C26.1688 30.1979 26.1381 30.2081 26.0563 30.2257C26.0386 30.228 25.9516 30.2463 25.9365 30.2516C25.8724 30.264 25.7323 30.2997 25.7323 30.4224C25.7323 30.4966 25.7909 30.6036 25.9264 30.6036C26.0082 30.6036 26.0769 30.5677 26.1306 30.5218C26.2042 30.4584 26.2042 30.3739 26.2042 30.2542V30.1848ZM25.4186 29.8432C25.4771 29.6312 25.5969 29.4679 25.9902 29.4679C26.5464 29.4679 26.549 29.728 26.549 29.9656C26.549 30.0474 26.5438 30.4044 26.5464 30.4787C26.554 30.6521 26.5716 30.7106 26.623 30.8206H26.2785C26.2706 30.8026 26.2631 30.7849 26.2529 30.7463L26.2323 30.6753C26.1636 30.744 26.036 30.8513 25.8213 30.8513C25.5563 30.8513 25.3826 30.69 25.3826 30.4607C25.3826 30.1364 25.6813 30.0778 25.8649 30.0422C26.0615 30.0065 26.1355 29.9859 26.2042 29.9577V29.9221C26.2042 29.8354 26.2042 29.7359 25.9647 29.7359C25.7935 29.7359 25.7579 29.8354 25.735 29.9015L25.4186 29.8432Z" fill="#005DA9"/>
-<path d="M27.5699 29.7765H27.3323V30.3098C27.3323 30.4993 27.3323 30.5601 27.4292 30.5601C27.4753 30.5601 27.5162 30.5474 27.5597 30.5294L27.5699 30.5271L27.6006 30.7977C27.4854 30.8461 27.3604 30.8513 27.3248 30.8513C27.2175 30.8513 27.0797 30.8153 27.0287 30.7159C26.9851 30.6344 26.9802 30.5549 26.9802 30.3533V29.7765H26.8196V29.4983H26.9802V29.2356L27.3323 29.0288V29.4983H27.5699V29.7765Z" fill="#005DA9"/>
-<path d="M27.8889 29.4982H28.2384V30.8204H27.8889V29.4982ZM27.8889 28.993H28.2384V29.3173H27.8889V28.993Z" fill="#005DA9"/>
-<path d="M29.272 30.5654C29.4304 30.5654 29.5963 30.4505 29.5963 30.157C29.5963 29.8913 29.4507 29.7536 29.272 29.7536C29.1035 29.7536 28.9507 29.8812 28.9507 30.1593C28.9507 30.4404 29.1061 30.5654 29.272 30.5654ZM29.272 29.4679C29.7314 29.4679 29.9559 29.82 29.9559 30.1544C29.9559 30.5192 29.7007 30.8513 29.2746 30.8513C29.0652 30.8513 28.5905 30.7542 28.5905 30.1416C28.5905 29.8278 28.8025 29.4679 29.272 29.4679Z" fill="#005DA9"/>
-<path d="M31.1609 30.1439C31.1609 29.927 31.1609 29.7359 30.9463 29.7359C30.8364 29.7359 30.7369 29.7945 30.6934 29.8913C30.6577 29.9679 30.6554 30.1138 30.6554 30.2208V30.8206H30.3053V29.4983H30.6322V29.6927H30.6374C30.7676 29.5137 30.9335 29.4679 31.0687 29.4679C31.1276 29.4679 31.2627 29.4781 31.3723 29.5648C31.5127 29.6721 31.5075 29.8684 31.5104 29.9986V30.8206H31.1609V30.1439Z" fill="#005DA9"/>
-<path d="M32.6845 30.1848C32.6485 30.1979 32.6181 30.2081 32.5363 30.2257C32.5183 30.228 32.4316 30.2463 32.4162 30.2516C32.3527 30.264 32.212 30.2997 32.212 30.4224C32.212 30.4966 32.2709 30.6036 32.406 30.6036C32.4878 30.6036 32.5566 30.5677 32.6102 30.5218C32.6845 30.4584 32.6845 30.3739 32.6845 30.2542V30.1848ZM31.8985 29.8432C31.9571 29.6312 32.0769 29.4679 32.4702 29.4679C33.0264 29.4679 33.029 29.728 33.029 29.9656C33.029 30.0474 33.0238 30.4044 33.0264 30.4787C33.0339 30.6521 33.0519 30.7106 33.1027 30.8206H32.7581C32.7509 30.8026 32.7434 30.7849 32.7329 30.7463L32.7126 30.6753C32.6436 30.744 32.516 30.8513 32.3013 30.8513C32.0356 30.8513 31.8625 30.69 31.8625 30.4607C31.8625 30.1364 32.161 30.0778 32.3452 30.0422C32.5412 30.0065 32.6155 29.9859 32.6845 29.9577V29.9221C32.6845 29.8354 32.6845 29.7359 32.4446 29.7359C32.2732 29.7359 32.2379 29.8354 32.2146 29.9015L31.8985 29.8432Z" fill="#005DA9"/>
-<path d="M33.4423 28.993H33.792V30.8204H33.4423V28.993Z" fill="#005DA9"/>
-<path d="M35.0221 30.0448C35.0145 29.7562 34.8156 29.7359 34.7616 29.7359C34.596 29.7359 34.4962 29.8714 34.4989 30.0448H35.0221ZM35.3512 30.4584C35.3231 30.5395 35.2132 30.8513 34.7747 30.8513C34.6599 30.8513 34.3533 30.836 34.2129 30.5346C34.1543 30.407 34.134 30.2768 34.134 30.1671C34.134 29.8098 34.3228 29.4679 34.7413 29.4679C35.2387 29.4679 35.3764 29.8684 35.3692 30.2588H34.491C34.4962 30.4175 34.5807 30.583 34.7796 30.583C34.9429 30.583 34.9838 30.4607 35.0015 30.3995L35.3512 30.4584Z" fill="#005DA9"/>
-</svg>
+<path d="M11.8136 20.7901C11.6098 20.7416 11.3798 20.597 11.2646 20.4193C11.1841 20.2947 11.1268 20.154 11.0614 20.01C10.8399 19.5254 10.7126 18.9937 10.5689 18.816C10.3157 18.5022 9.82128 18.0648 9.48819 17.8485C9.38937 17.7843 9.29841 17.7382 9.21628 17.7025C9.2971 17.3102 9.27845 16.893 9.27845 16.893C9.27845 16.8132 9.28009 16.8109 9.30823 16.7775C9.39395 16.7098 9.45056 16.627 9.42504 16.4981C9.42209 16.4798 9.35109 16.326 9.33048 16.2926C9.44991 16.3404 9.97638 16.4651 10.1289 16.4543C10.3913 16.4363 11.0146 16.0037 11.1085 15.9379C11.1769 15.8977 11.2162 15.8875 11.2518 15.8777C11.2881 15.8676 11.3781 15.8106 11.3987 15.7547C11.4072 15.7298 11.3801 15.5492 11.3176 15.5381C11.2904 15.5355 11.2194 15.5793 11.1946 15.5721C11.1795 15.5679 11.1632 15.5394 11.1501 15.54C11.1157 15.5387 11.0807 15.5937 11.064 15.6202C11.0414 15.6552 11.0339 15.7187 11.0103 15.7481C10.9675 15.8028 10.3628 15.9736 10.1622 16.0682C10.1275 16.0845 10.0912 16.0976 10.0556 16.0865C9.89687 16.0374 9.25751 15.6706 9.00491 15.7229C8.92507 15.7396 8.8004 15.7848 8.74609 15.7259C8.71729 15.6945 8.70126 15.6444 8.72547 15.5947C8.7523 15.5381 8.8858 15.5306 8.91165 15.4654C8.93979 15.3935 8.89333 15.2501 8.89366 15.242C8.89497 15.2145 8.9267 15.2011 8.92376 15.1768C8.92049 15.151 8.88744 15.1232 8.85079 15.0712C8.81218 15.0185 8.80106 14.8843 8.76605 14.8258C8.77423 14.8071 8.79811 14.6854 8.65578 14.6023C8.51344 14.5205 8.27851 14.5018 8.14665 14.6176C8.07204 14.6841 7.97257 14.6585 7.89339 14.6998C7.74353 14.7786 7.83973 14.9363 7.59171 15.1605C7.48406 15.2577 7.54753 15.4458 7.57306 15.488C7.46802 15.6843 7.65388 15.9157 7.82108 15.8764C7.87605 15.9291 7.91073 15.9526 7.97159 15.9497C7.97257 15.9556 7.97454 15.9615 7.97683 15.9677C7.9392 15.9814 7.85838 16.022 7.82304 16.04C7.72815 16.0897 7.67253 16.1506 7.58483 16.2357C7.30442 16.5086 6.88789 16.932 5.89449 17.429C5.78161 17.498 5.45767 17.4683 5.45767 17.5386C5.47829 17.5726 5.54864 17.608 5.54864 17.608C5.5506 17.6482 5.42921 17.6643 5.36344 17.6787C5.30618 17.711 5.41677 17.7565 5.45964 17.7961C5.68017 17.8357 5.79404 17.7863 5.9812 17.6296C6.73639 17.3364 7.29788 17.0498 7.90975 16.6516C8.03965 16.5675 8.11294 16.6588 8.21765 17.0468C8.2579 17.1973 8.05765 17.3204 7.98108 17.5337C7.8947 17.7722 7.90517 17.9509 7.9693 18.0896C7.89895 18.2441 7.68201 18.4489 7.68201 18.4489C7.68201 18.4489 7.16798 18.8746 6.90817 19.1318C6.68306 19.3549 6.41082 19.3032 6.20108 19.4034C5.98774 19.5064 5.79404 19.6687 5.61309 19.8183C5.4809 19.9275 5.34871 20.0247 5.173 20.0974C5.10494 20.1252 5.07157 20.134 4.99926 20.1438C4.90862 20.1563 4.85398 20.24 4.86183 20.3169C4.8687 20.3876 4.93218 20.5466 5.00024 20.6834C5.03689 20.7586 5.12065 20.9334 5.22928 20.9553C5.30258 20.971 5.45767 21.0021 5.49236 20.935C5.53849 20.846 5.34151 20.8208 5.32744 20.7047C5.31861 20.6304 5.31076 20.5087 5.3353 20.4377C5.37783 20.3149 5.55387 20.2299 5.65923 20.1729C5.98513 19.9959 6.94875 19.7692 7.23603 19.6828C7.65126 19.5012 7.97912 19.3523 8.24873 19.1756C8.48792 19.031 8.6813 18.8016 8.83051 18.6109C9.18651 18.7879 9.71102 19.0084 10.0592 19.1416C10.264 19.2201 10.1527 19.3517 10.2669 19.6468C10.3484 19.8578 10.495 20.012 10.9809 20.5859C11.0506 20.6811 10.976 20.7465 10.991 20.8522C11.0084 20.9667 11.0643 20.9703 11.17 20.9681C11.2682 20.9648 11.367 20.9681 11.4652 20.9681C11.5905 20.9681 11.7479 20.9687 11.8729 20.9674C11.919 20.9667 12.0103 20.952 12.0103 20.8849C12.0103 20.8107 11.8761 20.8051 11.8136 20.7901Z" fill="#005DA9"/>
+<path d="M15.6076 30.2617C15.5697 30.4044 15.4473 30.8513 14.8498 30.8513C14.3548 30.8513 14.0181 30.4914 14.0181 29.9221C14.0181 29.4142 14.2759 28.9624 14.8701 28.9624C14.9725 28.9624 15.2274 28.9725 15.429 29.1718C15.5212 29.2637 15.5671 29.3707 15.6027 29.4983L15.2379 29.5854C15.1921 29.3861 15.0412 29.2791 14.8524 29.2791C14.3983 29.2791 14.3983 29.7791 14.3983 29.8969C14.3983 30.0677 14.4189 30.2388 14.4951 30.3559C14.5616 30.4583 14.6839 30.5346 14.8472 30.5346C15.0923 30.5346 15.2048 30.3484 15.2506 30.1495L15.6076 30.2617Z" fill="#005DA9"/>
+<path d="M16.7309 30.1848C16.6952 30.1979 16.6645 30.208 16.583 30.2257C16.565 30.228 16.4783 30.2463 16.4629 30.2515C16.3988 30.264 16.2587 30.2996 16.2587 30.4224C16.2587 30.4966 16.3173 30.6036 16.4524 30.6036C16.5342 30.6036 16.6033 30.5676 16.6569 30.5218C16.7309 30.4583 16.7309 30.3739 16.7309 30.2542V30.1848ZM15.9446 29.8432C16.0032 29.6312 16.1236 29.4679 16.5166 29.4679C17.0728 29.4679 17.0754 29.728 17.0754 29.9656C17.0754 30.0474 17.0702 30.4044 17.0728 30.4786C17.0803 30.652 17.0983 30.7106 17.1494 30.8206H16.8048C16.797 30.8026 16.7894 30.7849 16.779 30.7463L16.7587 30.6753C16.69 30.744 16.5624 30.8513 16.348 30.8513C16.0827 30.8513 15.9089 30.69 15.9089 30.4606C15.9089 30.1364 16.2077 30.0778 16.3912 30.0421C16.5879 30.0065 16.6618 29.9859 16.7309 29.9577V29.9221C16.7309 29.8353 16.7309 29.7359 16.491 29.7359C16.3196 29.7359 16.2846 29.8353 16.261 29.9014L15.9446 29.8432Z" fill="#005DA9"/>
+<path d="M17.4886 29.4981H17.8384V30.8203H17.4886V29.4981ZM17.4886 28.9929H17.8384V29.3171H17.4886V28.9929Z" fill="#005DA9"/>
+<path d="M18.5355 30.3893C18.576 30.5653 18.7063 30.601 18.8185 30.601C18.8492 30.601 19.0711 30.5984 19.0711 30.4557C19.0711 30.3788 19.0102 30.3612 18.9284 30.3432C18.5276 30.2561 18.2341 30.1874 18.2341 29.8733C18.2341 29.57 18.5122 29.4679 18.7903 29.4679C19.1041 29.4679 19.3011 29.5546 19.3774 29.8173L19.0456 29.8785C19.002 29.7231 18.8594 29.7179 18.7979 29.7179C18.7396 29.7179 18.5584 29.7208 18.5584 29.8278C18.5584 29.8661 18.5862 29.8942 18.6245 29.9093C18.6905 29.9348 18.8339 29.9705 18.9206 29.9911C19.1552 30.0474 19.4209 30.1161 19.4209 30.407C19.4209 30.6138 19.255 30.8513 18.8185 30.8513C18.6905 30.8513 18.4792 30.8281 18.326 30.69C18.2262 30.601 18.1981 30.4937 18.1857 30.443L18.5355 30.3893Z" fill="#005DA9"/>
+<path d="M20.0307 30.3893C20.0716 30.5653 20.2015 30.601 20.3141 30.601C20.3445 30.601 20.567 30.5984 20.567 30.4557C20.567 30.3788 20.5055 30.3612 20.4237 30.3432C20.0232 30.2561 19.7297 30.1874 19.7297 29.8733C19.7297 29.57 20.0078 29.4679 20.2856 29.4679C20.5997 29.4679 20.7964 29.5546 20.873 29.8173L20.5415 29.8785C20.498 29.7231 20.3547 29.7179 20.2935 29.7179C20.2346 29.7179 20.0536 29.7208 20.0536 29.8278C20.0536 29.8661 20.0818 29.8942 20.1197 29.9093C20.1868 29.9348 20.3295 29.9705 20.4162 29.9911C20.6508 30.0474 20.9165 30.1161 20.9165 30.407C20.9165 30.6138 20.7503 30.8513 20.3141 30.8513C20.1868 30.8513 19.9744 30.8281 19.8213 30.69C19.7222 30.601 19.6937 30.4937 19.6813 30.443L20.0307 30.3893Z" fill="#005DA9"/>
+<path d="M22.0598 30.0448C22.0522 29.7562 21.853 29.7359 21.7993 29.7359C21.6334 29.7359 21.5339 29.8713 21.5365 30.0448H22.0598ZM22.3889 30.4583C22.3608 30.5395 22.2508 30.8513 21.8121 30.8513C21.6975 30.8513 21.3909 30.8359 21.2506 30.5346C21.192 30.407 21.1714 30.2767 21.1714 30.1671C21.1714 29.8098 21.3605 29.4679 21.779 29.4679C22.2764 29.4679 22.4144 29.8684 22.4069 30.2587H21.529C21.5339 30.4174 21.6184 30.583 21.8173 30.583C21.9806 30.583 22.0215 30.4606 22.0395 30.3994L22.3889 30.4583Z" fill="#005DA9"/>
+<path d="M23.5656 28.9931H23.9229L24.6653 30.2133H24.6705V28.9931H25.0128V30.8206H24.6427L23.9124 29.6285H23.9075V30.8206H23.5656V28.9931Z" fill="#005DA9"/>
+<path d="M26.2042 30.1848C26.1688 30.1979 26.1381 30.208 26.0563 30.2257C26.0386 30.228 25.9516 30.2463 25.9365 30.2515C25.8724 30.264 25.7323 30.2996 25.7323 30.4224C25.7323 30.4966 25.7909 30.6036 25.9264 30.6036C26.0082 30.6036 26.0769 30.5676 26.1306 30.5218C26.2042 30.4583 26.2042 30.3739 26.2042 30.2542V30.1848ZM25.4186 29.8432C25.4771 29.6312 25.5969 29.4679 25.9902 29.4679C26.5464 29.4679 26.549 29.728 26.549 29.9656C26.549 30.0474 26.5438 30.4044 26.5464 30.4786C26.554 30.652 26.5716 30.7106 26.623 30.8206H26.2785C26.2706 30.8026 26.2631 30.7849 26.2529 30.7463L26.2323 30.6753C26.1636 30.744 26.036 30.8513 25.8213 30.8513C25.5563 30.8513 25.3826 30.69 25.3826 30.4606C25.3826 30.1364 25.6813 30.0778 25.8649 30.0421C26.0615 30.0065 26.1355 29.9859 26.2042 29.9577V29.9221C26.2042 29.8353 26.2042 29.7359 25.9647 29.7359C25.7935 29.7359 25.7579 29.8353 25.735 29.9014L25.4186 29.8432Z" fill="#005DA9"/>
+<path d="M27.5699 29.7764H27.3323V30.3098C27.3323 30.4992 27.3323 30.5601 27.4292 30.5601C27.4753 30.5601 27.5162 30.5473 27.5597 30.5293L27.5699 30.5271L27.6006 30.7977C27.4854 30.8461 27.3604 30.8513 27.3248 30.8513C27.2175 30.8513 27.0797 30.8153 27.0287 30.7159C26.9851 30.6344 26.9802 30.5549 26.9802 30.3533V29.7764H26.8196V29.4983H26.9802V29.2356L27.3323 29.0288V29.4983H27.5699V29.7764Z" fill="#005DA9"/>
+<path d="M27.8889 29.4981H28.2384V30.8203H27.8889V29.4981ZM27.8889 28.9929H28.2384V29.3171H27.8889V28.9929Z" fill="#005DA9"/>
+<path d="M29.272 30.5653C29.4304 30.5653 29.5963 30.4505 29.5963 30.157C29.5963 29.8913 29.4507 29.7535 29.272 29.7535C29.1035 29.7535 28.9507 29.8812 28.9507 30.1593C28.9507 30.4403 29.1061 30.5653 29.272 30.5653ZM29.272 29.4679C29.7314 29.4679 29.9559 29.82 29.9559 30.1544C29.9559 30.5192 29.7007 30.8513 29.2746 30.8513C29.0652 30.8513 28.5905 30.7541 28.5905 30.1416C28.5905 29.8278 28.8025 29.4679 29.272 29.4679Z" fill="#005DA9"/>
+<path d="M31.1609 30.1439C31.1609 29.927 31.1609 29.7359 30.9463 29.7359C30.8364 29.7359 30.7369 29.7944 30.6934 29.8913C30.6577 29.9679 30.6554 30.1138 30.6554 30.2208V30.8206H30.3053V29.4983H30.6322V29.6927H30.6374C30.7676 29.5137 30.9335 29.4679 31.0687 29.4679C31.1276 29.4679 31.2627 29.478 31.3723 29.5647C31.5127 29.6721 31.5075 29.8684 31.5104 29.9986V30.8206H31.1609V30.1439Z" fill="#005DA9"/>
+<path d="M32.6845 30.1848C32.6485 30.1979 32.6181 30.208 32.5363 30.2257C32.5183 30.228 32.4316 30.2463 32.4162 30.2515C32.3527 30.264 32.212 30.2996 32.212 30.4224C32.212 30.4966 32.2709 30.6036 32.406 30.6036C32.4878 30.6036 32.5566 30.5676 32.6102 30.5218C32.6845 30.4583 32.6845 30.3739 32.6845 30.2542V30.1848ZM31.8985 29.8432C31.9571 29.6312 32.0769 29.4679 32.4702 29.4679C33.0264 29.4679 33.029 29.728 33.029 29.9656C33.029 30.0474 33.0238 30.4044 33.0264 30.4786C33.0339 30.652 33.0519 30.7106 33.1027 30.8206H32.7581C32.7509 30.8026 32.7434 30.7849 32.7329 30.7463L32.7126 30.6753C32.6436 30.744 32.516 30.8513 32.3013 30.8513C32.0356 30.8513 31.8625 30.69 31.8625 30.4606C31.8625 30.1364 32.161 30.0778 32.3452 30.0421C32.5412 30.0065 32.6155 29.9859 32.6845 29.9577V29.9221C32.6845 29.8353 32.6845 29.7359 32.4446 29.7359C32.2732 29.7359 32.2379 29.8353 32.2146 29.9014L31.8985 29.8432Z" fill="#005DA9"/>
+<path d="M33.4423 28.9929H33.792V30.8203H33.4423V28.9929Z" fill="#005DA9"/>
+<path d="M35.0221 30.0448C35.0145 29.7562 34.8156 29.7359 34.7616 29.7359C34.596 29.7359 34.4962 29.8713 34.4989 30.0448H35.0221ZM35.3512 30.4583C35.3231 30.5395 35.2132 30.8513 34.7747 30.8513C34.6599 30.8513 34.3533 30.8359 34.2129 30.5346C34.1543 30.407 34.134 30.2767 34.134 30.1671C34.134 29.8098 34.3228 29.4679 34.7413 29.4679C35.2387 29.4679 35.3764 29.8684 35.3692 30.2587H34.491C34.4962 30.4174 34.5807 30.583 34.7796 30.583C34.9429 30.583 34.9838 30.4606 35.0015 30.3994L35.3512 30.4583Z" fill="#005DA9"/>
+</svg>
\ No newline at end of file
diff --git a/src/assets/logos/demarcheMetropolitaine.svg b/src/assets/logos/demarcheMetropolitaine.svg
index 5efda05cb..3ac37a898 100644
--- a/src/assets/logos/demarcheMetropolitaine.svg
+++ b/src/assets/logos/demarcheMetropolitaine.svg
@@ -1,22 +1,22 @@
-<svg id="lyon" width="120" height="56" viewBox="0 0 120 56" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M13.5089 29.5365C12.5811 30.5516 11.2382 31.1367 9.81552 31.1367C8.49425 31.1367 7.23121 30.6305 6.30342 29.7112C5.02066 28.4425 5 27.2123 5 24.0693C5 20.9253 5.02066 19.6951 6.30342 18.4255C7.23121 17.5071 8.49425 17.0009 9.81552 17.0009C12.2834 17.0009 14.1784 18.6002 14.6132 21.0615H13.5483C13.1332 19.1476 11.7124 17.9363 9.81552 17.9363C8.80884 17.9363 7.86227 18.3081 7.15327 19.0115C6.1466 20.0069 6.06678 21.0812 6.06678 24.0693C6.06678 27.0564 6.14566 28.1298 7.15233 29.1261C7.86133 29.8286 8.80884 30.1995 9.81458 30.1995C10.9217 30.1995 12.0064 29.7318 12.7379 28.8529C13.3502 28.111 13.5868 27.2903 13.5868 26.0986V24.8487H9.81552V23.9115H14.6526V26.1775C14.6526 27.6227 14.3371 28.6566 13.5089 29.5365Z" fill="#E30613"/>
-<path d="M23.6113 18.0546H19.4653V23.6777H23.6113C25.4087 23.6777 26.7093 22.7799 26.7093 20.8661C26.7093 18.9514 25.4077 18.0546 23.6113 18.0546V18.0546ZM26.6905 31.0202L23.3361 24.6158H19.4653V31.0202H18.4014V17.1183H23.7493C26.0397 17.1183 27.777 18.4255 27.777 20.8474C27.777 22.9161 26.5121 24.2646 24.54 24.5961L27.9338 31.0202H26.6905Z" fill="#E30613"/>
-<path d="M35.1374 18.5232L32.1972 26.7043H38.0785L35.1374 18.5232ZM39.6383 31.0202L38.4147 27.6415H31.861L30.6365 31.0202H29.4927L34.665 17.1183H35.6126L40.783 31.0202H39.6383Z" fill="#E30613"/>
-<path d="M52.4246 31.0202L44.3139 18.9345V31.0202H43.248V17.1183H44.3139L52.4246 29.1646V17.1183H53.4923V31.0202H52.4246Z" fill="#E30613"/>
-<path d="M65.3095 19.1289C64.5009 18.3091 63.4144 18.0555 62.2904 18.0555H58.8938V30.083H62.2904C63.4144 30.083 64.5009 29.8295 65.3095 29.0069C66.4335 27.8753 66.3565 25.4159 66.3565 23.873C66.3565 22.3301 66.4335 20.2614 65.3095 19.1289V19.1289ZM66.0598 29.7506C65.2306 30.5695 64.0079 31.0193 62.5458 31.0193H57.8298V17.1174H62.5458C64.0089 17.1174 65.2306 17.5672 66.0598 18.3861C67.4815 19.7928 67.4224 21.9986 67.4224 23.8739C67.4224 25.7464 67.4815 28.3448 66.0598 29.7506Z" fill="#E30613"/>
-<path d="M70.6771 31.0202V17.1183H73.422V28.6003H79.7973V31.0202H70.6771Z" fill="#020203"/>
-<path d="M85.8158 25.3163V31.0202H83.0916V25.3163L78.8677 17.1174H81.8473L84.472 22.7227L87.0582 17.1174H90.0369L85.8158 25.3163Z" fill="#020203"/>
-<path d="M98.0105 20.1628C97.6133 19.713 97.0047 19.4209 96.2526 19.4209C95.5013 19.4209 94.8693 19.7139 94.4749 20.1628C93.9415 20.7487 93.8035 21.3948 93.8035 24.0683C93.8035 26.7418 93.9406 27.3879 94.4749 27.973C94.8693 28.4218 95.5013 28.7158 96.2526 28.7158C97.0047 28.7158 97.6133 28.4218 98.0105 27.973C98.5411 27.3879 98.6988 26.7418 98.6988 24.0683C98.6988 21.3948 98.542 20.7487 98.0105 20.1628ZM100.042 29.6154C99.0557 30.5911 97.8518 31.1367 96.2526 31.1367C94.6533 31.1367 93.4288 30.5911 92.4428 29.6154C91.022 28.2087 91.0595 26.4695 91.0595 24.0693C91.0595 21.6653 91.022 19.9299 92.4428 18.5241C93.4288 17.5465 94.6533 17 96.2526 17C97.8518 17 99.0557 17.5465 100.042 18.5232C101.463 19.9289 101.444 21.6653 101.444 24.0683C101.445 26.4695 101.463 28.2087 100.042 29.6154Z" fill="#020203"/>
-<path d="M112.553 31.0202L106.986 22.4879V31.0202H104.244V17.1183H106.691L112.256 25.63V17.1183H115V31.0202H112.553Z" fill="#020203"/>
-<path d="M98.2631 35.4075H98.2781C98.4509 35.1192 98.6669 34.9793 98.9975 34.9793C99.4999 34.9793 100.009 35.1756 100.009 36.5363C100.009 37.31 99.9835 38.1993 98.9721 38.1993C98.6754 38.1993 98.4566 38.0698 98.2838 37.8265H98.264V39.3103H97.757V35.0403H98.264V35.4075H98.2631ZM99.4754 36.5363C99.4754 36.0705 99.4754 35.3897 98.835 35.3897C98.2086 35.3897 98.2631 36.247 98.2631 36.7203C98.2631 37.1316 98.2904 37.789 98.8538 37.789C99.4003 37.789 99.4754 37.3655 99.4754 36.5363Z" fill="black"/>
-<path d="M63.1984 37.6904H63.1853C63.0313 38.0463 62.7871 38.1984 62.3965 38.1984C61.7325 38.1984 61.54 37.7768 61.54 37.1805C61.54 36.2414 62.4716 36.1992 63.1853 36.2179C63.1984 35.8066 63.2041 35.3578 62.6575 35.3578C62.3176 35.3578 62.1363 35.586 62.1683 35.9118H61.6152C61.6415 35.2178 62.0124 34.9784 62.6782 34.9784C63.4848 34.9784 63.6952 35.3897 63.6952 35.9118V37.4021C63.6952 37.6481 63.7196 37.8998 63.7572 38.1374H63.1984V37.6904ZM62.0499 37.2171C62.0499 37.5185 62.1983 37.7881 62.5392 37.7881C62.8491 37.7881 63.2341 37.5974 63.1853 36.5964C62.7017 36.6039 62.0499 36.5607 62.0499 37.2171Z" fill="black"/>
-<path d="M72.3533 38.1383V35.9907C72.3533 35.677 72.2669 35.3897 71.8575 35.3897C71.7016 35.3897 71.4903 35.4808 71.4171 35.5972C71.3241 35.7512 71.2988 35.9353 71.2988 36.0517V38.1383H70.7898V35.6836C70.7898 35.4686 70.7766 35.2545 70.7588 35.0404H71.2988V35.4254H71.3119C71.4612 35.0929 71.727 34.9784 72.0923 34.9784C72.3796 34.9784 72.7083 35.0929 72.8238 35.3765C72.9994 35.0451 73.2839 34.9784 73.5703 34.9784C73.9 34.9784 74.4268 35.0507 74.4268 35.7813V38.1374H73.9178V35.9897C73.9178 35.6761 73.8305 35.3887 73.4201 35.3887C73.2285 35.3887 73.1741 35.3944 73.037 35.5052C72.8867 35.6282 72.8623 35.9343 72.8623 36.0508V38.1374H72.3533V38.1383Z" fill="black"/>
-<path d="M78.1352 36.7504C78.1352 37.6162 78.3709 37.7871 78.7681 37.7871C79.1146 37.7871 79.2958 37.512 79.3137 37.1983H79.8724C79.8659 37.8857 79.4376 38.1984 78.7812 38.1984C78.1173 38.1984 77.5886 38.0022 77.5886 36.633C77.5886 35.7249 77.6929 34.9765 78.7812 34.9765C79.6733 34.9765 79.8978 35.462 79.8978 36.4846V36.7485H78.1352V36.7504ZM79.3569 36.3701C79.3569 35.4686 79.1033 35.3578 78.7305 35.3578C78.4065 35.3578 78.1408 35.5127 78.1352 36.3701H79.3569ZM79.4808 33.7069L78.6685 34.5718H78.2535L78.8057 33.7069H79.4808Z" fill="black"/>
-<path d="M83.3385 35.0394V34.4431L83.8475 34.2168V35.0394H84.5302V35.4188H83.8475V37.3166C83.8475 37.5129 83.8475 37.7655 84.3133 37.7655C84.349 37.7655 84.4297 37.7514 84.5415 37.7402V38.1271C84.3743 38.1393 84.2072 38.1768 84.0391 38.1768C83.5545 38.1768 83.3385 37.9796 83.3385 37.6228V35.4197H82.823V35.0394H83.3385Z" fill="black"/>
-<path d="M88.3372 35.5061H88.3494C88.5597 35.0319 88.8208 34.9784 89.3185 34.9784V35.4996C89.2734 35.492 89.2237 35.4864 89.1814 35.4798C89.1373 35.4742 89.0941 35.4676 89.0452 35.4676C88.4799 35.4676 88.3372 35.8921 88.3372 36.3081V38.1374H87.8273V35.0394H88.3372V35.5061Z" fill="black"/>
-<path d="M92.2164 36.633C92.2164 35.7268 92.3216 34.9774 93.4081 34.9774C94.4946 34.9774 94.6007 35.7268 94.6007 36.633C94.6007 38.0031 94.073 38.1984 93.4081 38.1984C92.7432 38.1984 92.2164 38.0031 92.2164 36.633ZM94.0664 36.4198C94.0664 35.5737 93.7988 35.3887 93.4081 35.3887C93.0175 35.3887 92.7517 35.5728 92.7517 36.4198C92.7517 37.4256 92.8822 37.789 93.4081 37.789C93.9368 37.789 94.0664 37.4256 94.0664 36.4198Z" fill="black"/>
-<path d="M103.121 36.633C103.121 35.7268 103.225 34.9774 104.313 34.9774C105.398 34.9774 105.504 35.7268 105.504 36.633C105.504 38.0031 104.976 38.1984 104.313 38.1984C103.649 38.1984 103.121 38.0031 103.121 36.633ZM104.971 36.4198C104.971 35.5737 104.703 35.3887 104.313 35.3887C103.922 35.3887 103.655 35.5728 103.655 36.4198C103.655 37.4256 103.786 37.789 104.313 37.789C104.84 37.789 104.971 37.4256 104.971 36.4198Z" fill="black"/>
-<path d="M109.31 33.7069H108.8V38.1383H109.31V33.7069Z" fill="black"/>
-<path d="M113.066 36.7504C113.066 37.6162 113.303 37.788 113.699 37.788C114.047 37.788 114.227 37.512 114.246 37.1983H114.804C114.798 37.8866 114.37 38.1984 113.713 38.1984C113.049 38.1984 112.521 38.0022 112.521 36.633C112.521 35.7249 112.624 34.9774 113.713 34.9774C114.606 34.9774 114.829 35.461 114.829 36.4846V36.7485H113.066V36.7504ZM114.287 36.3701C114.287 35.4686 114.034 35.3578 113.661 35.3578C113.338 35.3578 113.072 35.5127 113.066 36.3701H114.287Z" fill="black"/>
-<path d="M58.6168 33.7069H58.1078V38.1383H58.6168V33.7069Z" fill="black"/>
-</svg>
+<svg id="lyon" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M3.09413 20.5586C2.75675 20.9278 2.26844 21.1405 1.7511 21.1405C1.27064 21.1405 0.811351 20.9564 0.473971 20.6221C0.0075125 20.1608 0 19.7135 0 18.5705C0 17.4273 0.0075125 16.9799 0.473971 16.5183C0.811351 16.1843 1.27064 16.0002 1.7511 16.0002C2.6485 16.0002 3.3376 16.5818 3.49571 17.4768H3.10847C2.95754 16.7809 2.44088 16.3404 1.7511 16.3404C1.38503 16.3404 1.04082 16.4756 0.783008 16.7313C0.416944 17.0933 0.387919 17.484 0.387919 18.5705C0.387919 19.6568 0.416603 20.0471 0.782667 20.4094C1.04048 20.6648 1.38503 20.7997 1.75076 20.7997C2.15336 20.7997 2.54776 20.6297 2.81378 20.31C3.03642 20.0403 3.12247 19.7418 3.12247 19.3085V18.854H1.7511V18.5132H3.51005V19.3372C3.51005 19.8627 3.39531 20.2387 3.09413 20.5586" fill="#E30613"/>
+<path d="M6.76769 16.3834H5.26006V18.4282H6.76769C7.42127 18.4282 7.89422 18.1017 7.89422 17.4058C7.89422 16.7095 7.42093 16.3834 6.76769 16.3834V16.3834ZM7.88739 21.0982L6.66763 18.7693H5.26006V21.0982H4.87317V16.043H6.81788C7.65075 16.043 8.28248 16.5183 8.28248 17.399C8.28248 18.1513 7.82251 18.6416 7.10541 18.7622L8.33951 21.0982H7.88739Z" fill="#E30613"/>
+<path d="M10.959 16.5538L9.88983 19.5288H12.0285L10.959 16.5538ZM12.5957 21.0982L12.1508 19.8696H9.76758L9.32229 21.0982H8.90637L10.7872 16.043H11.1318L13.012 21.0982H12.5957Z" fill="#E30613"/>
+<path d="M17.2454 21.0982L14.296 16.7034V21.0982H13.9084V16.043H14.296L17.2454 20.4234V16.043H17.6336V21.0982H17.2454Z" fill="#E30613"/>
+<path d="M21.9307 16.7742C21.6367 16.4761 21.2416 16.3839 20.8328 16.3839H19.5977V20.7575H20.8328C21.2416 20.7575 21.6367 20.6653 21.9307 20.3662C22.3394 19.9547 22.3114 19.0604 22.3114 18.4993C22.3114 17.9383 22.3394 17.186 21.9307 16.7742V16.7742ZM22.2035 20.6366C21.902 20.9344 21.4574 21.098 20.9257 21.098H19.2108V16.0427H20.9257C21.4577 16.0427 21.902 16.2063 22.2035 16.5041C22.7205 17.0156 22.699 17.8177 22.699 18.4997C22.699 19.1806 22.7205 20.1254 22.2035 20.6366Z" fill="#E30613"/>
+<path d="M23.8826 21.0982V16.043H24.8807V20.2182H27.199V21.0982H23.8826Z" fill="#020203"/>
+<path d="M29.3876 19.0242V21.0983H28.3969V19.0242L26.861 16.0427H27.9445L28.8989 18.081L29.8393 16.0427H30.9225L29.3876 19.0242Z" fill="#020203"/>
+<path d="M33.822 17.1501C33.6775 16.9865 33.4562 16.8803 33.1827 16.8803C32.9095 16.8803 32.6797 16.9869 32.5363 17.1501C32.3423 17.3632 32.2921 17.5981 32.2921 18.5703C32.2921 19.5425 32.342 19.7774 32.5363 19.9902C32.6797 20.1534 32.9095 20.2603 33.1827 20.2603C33.4562 20.2603 33.6775 20.1534 33.822 19.9902C34.0149 19.7774 34.0723 19.5425 34.0723 18.5703C34.0723 17.5981 34.0152 17.3632 33.822 17.1501ZM34.5606 20.5874C34.202 20.9422 33.7643 21.1406 33.1827 21.1406C32.6012 21.1406 32.1559 20.9422 31.7973 20.5874C31.2807 20.0759 31.2943 19.4435 31.2943 18.5706C31.2943 17.6965 31.2807 17.0654 31.7973 16.5542C32.1559 16.1987 32.6012 16 33.1827 16C33.7643 16 34.202 16.1987 34.5606 16.5539C35.0776 17.0651 35.0704 17.6965 35.0704 18.5703C35.0707 19.4435 35.0776 20.0759 34.5606 20.5874Z" fill="#020203"/>
+<path d="M39.1101 21.0982L37.0859 17.9955V21.0982H36.0887V16.043H36.9786L39.0022 19.1381V16.043H40V21.0982H39.1101Z" fill="#020203"/>
+<path d="M33.9138 22.6936H33.9193C33.9821 22.5887 34.0606 22.5378 34.1808 22.5378C34.3635 22.5378 34.5486 22.6092 34.5486 23.104C34.5486 23.3854 34.5394 23.7088 34.1716 23.7088C34.0637 23.7088 33.9841 23.6616 33.9213 23.5732H33.9141V24.1127H33.7297V22.56H33.9141V22.6936H33.9138ZM34.3546 23.104C34.3546 22.9346 34.3546 22.6871 34.1218 22.6871C33.894 22.6871 33.9138 22.9988 33.9138 23.1709C33.9138 23.3205 33.9237 23.5595 34.1286 23.5595C34.3273 23.5595 34.3546 23.4055 34.3546 23.104Z" fill="black"/>
+<path d="M21.1631 23.5238H21.1583C21.1023 23.6532 21.0135 23.7085 20.8715 23.7085C20.6301 23.7085 20.5601 23.5552 20.5601 23.3384C20.5601 22.9969 20.8988 22.9815 21.1583 22.9883C21.1631 22.8388 21.1652 22.6756 20.9664 22.6756C20.8428 22.6756 20.7769 22.7585 20.7885 22.877H20.5874C20.5969 22.6247 20.7318 22.5376 20.9739 22.5376C21.2673 22.5376 21.3438 22.6872 21.3438 22.877V23.419C21.3438 23.5084 21.3526 23.5999 21.3663 23.6863H21.1631V23.5238ZM20.7455 23.3517C20.7455 23.4613 20.7994 23.5593 20.9234 23.5593C21.0361 23.5593 21.1761 23.49 21.1583 23.126C20.9825 23.1287 20.7455 23.113 20.7455 23.3517Z" fill="black"/>
+<path d="M24.4922 23.6867V22.9057C24.4922 22.7917 24.4608 22.6872 24.3119 22.6872C24.2552 22.6872 24.1784 22.7203 24.1517 22.7626C24.1179 22.8186 24.1087 22.8856 24.1087 22.9279V23.6867H23.9236V22.794C23.9236 22.7158 23.9188 22.638 23.9124 22.5601H24.1087V22.7001H24.1135C24.1678 22.5793 24.2644 22.5376 24.3973 22.5376C24.5017 22.5376 24.6213 22.5793 24.6633 22.6824C24.7271 22.5618 24.8306 22.5376 24.9347 22.5376C25.0546 22.5376 25.2462 22.5639 25.2462 22.8296V23.6863H25.0611V22.9054C25.0611 22.7913 25.0293 22.6868 24.8801 22.6868C24.8104 22.6868 24.7906 22.6889 24.7408 22.7292C24.6861 22.7739 24.6773 22.8852 24.6773 22.9276V23.6863H24.4922V23.6867Z" fill="black"/>
+<path d="M26.5946 23.1819C26.5946 23.4968 26.6803 23.5589 26.8248 23.5589C26.9508 23.5589 27.0167 23.4589 27.0232 23.3448H27.2263C27.224 23.5948 27.0682 23.7085 26.8296 23.7085C26.5881 23.7085 26.3959 23.6371 26.3959 23.1392C26.3959 22.809 26.4338 22.5369 26.8296 22.5369C27.154 22.5369 27.2356 22.7134 27.2356 23.0853V23.1812H26.5946V23.1819ZM27.0389 23.0436C27.0389 22.7158 26.9467 22.6755 26.8111 22.6755C26.6933 22.6755 26.5967 22.7319 26.5946 23.0436H27.0389ZM27.084 22.0752L26.7886 22.3897H26.6376L26.8384 22.0752H27.084Z" fill="black"/>
+<path d="M28.4868 22.5599V22.343L28.6719 22.2607V22.5599H28.9201V22.6978H28.6719V23.388C28.6719 23.4593 28.6719 23.5512 28.8412 23.5512C28.8542 23.5512 28.8836 23.5461 28.9242 23.542V23.6827C28.8634 23.6871 28.8027 23.7008 28.7415 23.7008C28.5653 23.7008 28.4868 23.629 28.4868 23.4993V22.6982H28.2993V22.5599H28.4868Z" fill="black"/>
+<path d="M30.3044 22.7295H30.3089C30.3854 22.5571 30.4803 22.5376 30.6613 22.5376V22.7271C30.6449 22.7244 30.6268 22.7223 30.6114 22.7199C30.5954 22.7179 30.5797 22.7155 30.5619 22.7155C30.3563 22.7155 30.3044 22.8699 30.3044 23.0211V23.6863H30.119V22.5598H30.3044V22.7295Z" fill="black"/>
+<path d="M31.7151 23.1394C31.7151 22.8099 31.7533 22.5374 32.1484 22.5374C32.5435 22.5374 32.5821 22.8099 32.5821 23.1394C32.5821 23.6376 32.3902 23.7086 32.1484 23.7086C31.9067 23.7086 31.7151 23.6376 31.7151 23.1394ZM32.3878 23.0619C32.3878 22.7542 32.2905 22.6869 32.1484 22.6869C32.0064 22.6869 31.9097 22.7538 31.9097 23.0619C31.9097 23.4276 31.9572 23.5597 32.1484 23.5597C32.3407 23.5597 32.3878 23.4276 32.3878 23.0619Z" fill="black"/>
+<path d="M35.6803 23.1394C35.6803 22.8099 35.7182 22.5374 36.1136 22.5374C36.5084 22.5374 36.547 22.8099 36.547 23.1394C36.547 23.6376 36.3551 23.7086 36.1136 23.7086C35.8722 23.7086 35.6803 23.6376 35.6803 23.1394ZM36.353 23.0619C36.353 22.7542 36.2557 22.6869 36.1136 22.6869C35.9716 22.6869 35.8746 22.7538 35.8746 23.0619C35.8746 23.4276 35.9221 23.5597 36.1136 23.5597C36.3055 23.5597 36.353 23.4276 36.353 23.0619Z" fill="black"/>
+<path d="M37.931 22.0752H37.7456V23.6866H37.931V22.0752Z" fill="black"/>
+<path d="M39.2969 23.1821C39.2969 23.4969 39.383 23.5594 39.5271 23.5594C39.6534 23.5594 39.719 23.459 39.7258 23.3449H39.9286C39.9266 23.5952 39.7709 23.7086 39.5318 23.7086C39.2904 23.7086 39.0985 23.6373 39.0985 23.1394C39.0985 22.8092 39.1361 22.5374 39.5318 22.5374C39.8566 22.5374 39.9379 22.7132 39.9379 23.0854V23.1814H39.2969V23.1821ZM39.7408 23.0438C39.7408 22.7159 39.6486 22.6757 39.5131 22.6757C39.3956 22.6757 39.299 22.732 39.2966 23.0438H39.7408Z" fill="black"/>
+<path d="M19.497 22.0752H19.3119V23.6866H19.497V22.0752Z" fill="black"/>
+</svg>
\ No newline at end of file
diff --git a/src/assets/logos/espacePublicNumeriqueepn.svg b/src/assets/logos/espacePublicNumeriqueepn.svg
index 00e9e12a5..710578a1e 100644
--- a/src/assets/logos/espacePublicNumeriqueepn.svg
+++ b/src/assets/logos/espacePublicNumeriqueepn.svg
@@ -1,3 +1,5 @@
-<svg id="epn" width="120" height="56" viewBox="0 0 120 56" fill="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"/>
-</svg>
+<svg id="epn" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M5.53906 15.3535V18.7031H10.2656V20.8613H5.53906V25.1484H12.0234V27.4043H3V13.0977H12.1309V15.3535H5.53906Z" fill="#F35453"/>
+<path d="M16.9258 22.1406V27.4043H14.3867V13.1074C16.0794 13.0358 17.069 13 17.3555 13C19.6146 13 21.265 13.3483 22.3066 14.0449C23.3548 14.735 23.8789 15.8158 23.8789 17.2871C23.8789 20.5684 21.9453 22.209 18.0781 22.209C17.7917 22.209 17.4076 22.1862 16.9258 22.1406ZM16.9258 15.3047V19.8848C17.3555 19.9303 17.694 19.9531 17.9414 19.9531C19.1003 19.9531 19.9466 19.7611 20.4805 19.377C21.0143 18.9863 21.2812 18.3548 21.2812 17.4824C21.2812 15.998 20.0866 15.2559 17.6973 15.2559C17.4303 15.2559 17.1732 15.2721 16.9258 15.3047Z" fill="#F35453"/>
+<path d="M35.5098 27.5996L28.5664 18.5469V27.4141H26.125V13.0977H27.3457L34.1035 21.7305V13.0977H36.5449V27.5996H35.5098Z" fill="#F35453"/>
+</svg>
\ No newline at end of file
diff --git a/src/assets/logos/fabriqueDeTerritoire.svg b/src/assets/logos/fabriqueDeTerritoire.svg
index 1c1cb3b1a..73019d789 100644
--- a/src/assets/logos/fabriqueDeTerritoire.svg
+++ b/src/assets/logos/fabriqueDeTerritoire.svg
@@ -1,5 +1,5 @@
-<svg width="120" height="56" viewBox="0 0 120 56" fill="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"/>
-</svg>
+<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M25.0195 14.6194H23.9093V17.2935H25.0195C25.5846 17.2935 26.0146 17.1748 26.3122 16.936C26.6097 16.6972 26.7572 16.3446 26.7572 15.8771C26.7572 15.4095 26.6085 15.0832 26.3122 14.8982C26.0159 14.7119 25.5846 14.6194 25.0195 14.6194ZM25.1945 12.9092L25.302 12.9104C25.7683 12.9167 26.2072 12.9654 26.6185 13.0554C27.061 13.1529 27.4486 13.3155 27.7799 13.5455C28.1112 13.7743 28.3737 14.0793 28.5687 14.4581C28.7638 14.8382 28.8613 15.3107 28.8613 15.8758C28.8613 16.5772 28.7075 17.1548 28.4012 17.6073C28.0949 18.0599 27.6836 18.3987 27.1673 18.6225L29.3289 22.4355H26.9185L25.092 19.0013H23.9093V22.4355H21.7615V12.9092H25.1945ZM20.4776 12.9092V14.7219H16.6645V16.6359H19.9075V18.4337H16.6645V20.6253H20.6226V22.4368H14.5167V12.9104H20.4776V12.9092ZM13.029 12.9092V22.4355H10.8812V12.9092H13.029ZM10.1524 12.9092V14.7219H7.53825V22.4368H5.37669V14.7219H2.76257V12.9092H10.1524ZM32.9506 12.7341C33.5057 12.7341 34.0533 12.8416 34.5934 13.0554C35.1334 13.2692 35.6085 13.5817 36.0173 13.9906L34.9221 15.3495L34.8559 15.2982C34.5671 15.0795 34.2771 14.9094 33.9883 14.7869C33.677 14.6557 33.3307 14.5894 32.9506 14.5894C32.5806 14.5894 32.2855 14.6644 32.0667 14.8157C31.848 14.9669 31.7379 15.1782 31.7379 15.4508C31.7379 15.597 31.7742 15.7208 31.848 15.8233C31.9205 15.9258 32.023 16.0183 32.1543 16.1009C32.2855 16.1834 32.4393 16.2621 32.6143 16.3346C32.7893 16.4072 32.9794 16.4884 33.1844 16.5759L34.4108 17.0722L34.4771 17.0998C35.0297 17.331 35.4672 17.6436 35.791 18.0361C36.1273 18.4449 36.2948 18.9863 36.2948 19.6576C36.2948 20.0564 36.2148 20.434 36.0536 20.7903C35.8923 21.1453 35.6598 21.4579 35.3522 21.7254C35.0459 21.9929 34.6684 22.208 34.2195 22.368C33.772 22.5293 33.2657 22.6093 32.7006 22.6093C32.0767 22.6093 31.4567 22.4943 30.8378 22.2655C30.219 22.0367 29.6664 21.6929 29.1801 21.2353L30.4065 19.7601L30.4753 19.8176C30.7978 20.0839 31.1529 20.3027 31.5392 20.4765C31.953 20.6615 32.3593 20.754 32.7593 20.754C33.2069 20.754 33.5407 20.6715 33.7595 20.5052C33.9783 20.3402 34.0883 20.1152 34.0883 19.8326C34.0883 19.6864 34.057 19.5601 33.9933 19.4526C33.9295 19.3451 33.837 19.2501 33.7157 19.1675C33.5945 19.085 33.4482 19.0063 33.2769 18.9338C33.1069 18.8613 32.9194 18.78 32.7143 18.6925L31.4729 18.1662L31.3916 18.1324C31.1766 18.0399 30.9678 17.9249 30.7641 17.7861C30.5353 17.6298 30.3302 17.4473 30.1502 17.2385C29.9702 17.0285 29.8264 16.786 29.7189 16.5084C29.6114 16.2309 29.5576 15.9171 29.5576 15.5658C29.5576 15.1757 29.6401 14.8082 29.8064 14.4631C29.9714 14.1168 30.2052 13.8155 30.5078 13.5567C30.8091 13.2992 31.1679 13.0967 31.5817 12.9504C31.998 12.8079 32.453 12.7341 32.9506 12.7341ZM31.5954 23.6244L32.428 25.4222L32.4818 25.5347C32.5706 25.7247 32.6606 25.9235 32.7493 26.1298C32.8569 26.3786 32.9781 26.6536 33.1144 26.9549H33.1732L33.2082 26.8549C33.3032 26.5924 33.3957 26.3498 33.4869 26.1285C33.5895 25.8797 33.6895 25.6435 33.787 25.4197L34.5471 23.6219H36.8399L34.3708 28.3564L36.9999 33.1495H34.6046L33.6557 31.2068L33.5395 30.9542C33.4632 30.7867 33.3869 30.6192 33.3119 30.4542C33.1994 30.2054 33.0756 29.9353 32.9394 29.6428H32.8806L32.8406 29.7516C32.7468 30.0028 32.6531 30.2366 32.5593 30.4542C32.4518 30.7029 32.3455 30.953 32.238 31.2068L31.3466 33.1495H29.0388L31.6829 28.2551L29.2001 23.6232H31.5954V23.6244ZM19.6087 23.6244V25.4359H15.7957V27.35H19.0386V29.1477H15.7957V31.3393H19.7537V33.1508H13.6479V23.6244H19.6087ZM12.0076 23.6244V33.1508H9.85983V23.6244H12.0076ZM5.04915 23.6244V31.3393H8.81843V33.1508H2.90259V23.6244H5.04915ZM23.148 23.6244V29.0277C23.1542 29.9253 23.2955 30.5554 23.5718 30.9155C23.8543 31.2855 24.2631 31.4705 24.7982 31.4705C25.3333 31.4705 25.7471 31.2855 26.0396 30.9155C26.3322 30.5454 26.4784 29.8928 26.4784 28.9577V23.6244H28.5525V28.8227C28.5412 30.3766 28.2224 31.5131 27.5961 32.2307C26.9585 32.9608 26.0259 33.3271 24.7982 33.3271C23.5618 33.3271 22.6166 32.962 21.9641 32.2307C21.3115 31.5005 20.9852 30.3366 20.9852 28.7389V23.6244H23.148Z" fill="#4232C5"/>
+<path d="M23.952 35.6597H14.8257V38.005H23.952V35.6597Z" fill="#E8336D"/>
+<path d="M32.6819 9.41105C32.7244 9.21852 32.7644 9.04975 32.8019 8.90598C32.8394 8.76096 32.8857 8.62719 32.9407 8.50217C32.9957 8.37715 33.0707 8.25714 33.1682 8.14087C33.2644 8.0246 33.3982 7.89459 33.5657 7.74957C33.5495 7.94209 33.5232 8.11212 33.4895 8.26089C33.4557 8.40966 33.4057 8.54718 33.3382 8.67595C33.2707 8.80472 33.1844 8.92848 33.0794 9.04975C32.9744 9.17102 32.8419 9.29103 32.6819 9.41105ZM33.3482 11.9677C33.487 11.9677 33.6558 11.9514 33.8558 11.9189C34.0558 11.8864 34.2658 11.8376 34.4859 11.7714C34.7059 11.7064 34.9284 11.6239 35.1522 11.5264C35.376 11.4288 35.576 11.3163 35.7511 11.1901C35.9261 11.0638 36.0686 10.9213 36.1786 10.7612C36.2886 10.6025 36.3436 10.4324 36.3436 10.2537C36.3436 10.1887 36.3349 10.1237 36.3186 10.0574C36.3024 9.99238 36.2536 9.95988 36.1724 9.95988C36.0911 9.95988 36.0136 9.98988 35.9398 10.0511C35.8661 10.1124 35.7973 10.1837 35.7323 10.2649C35.6673 10.3462 35.6035 10.4262 35.5423 10.5037C35.481 10.5812 35.4298 10.64 35.3898 10.6812C35.096 10.9175 34.7747 11.0888 34.4234 11.1951C34.0733 11.3013 33.7058 11.3538 33.322 11.3538C33.1919 11.3538 33.0707 11.3476 32.9607 11.3351C32.8506 11.3226 32.7531 11.2901 32.6669 11.2376C32.5819 11.1851 32.5143 11.1125 32.4656 11.0238C32.4168 10.9338 32.3918 10.8163 32.3918 10.6687V10.6437C32.3918 10.6187 32.4006 10.5787 32.4168 10.5212C32.4331 10.4637 32.4456 10.4237 32.4531 10.3987C32.7144 10.1787 32.9469 9.96863 33.1507 9.7686C33.3545 9.56857 33.5282 9.35479 33.6708 9.12601C33.8133 8.89723 33.9195 8.64844 33.9883 8.37966C34.0571 8.11087 34.0921 7.80082 34.0921 7.44952C34.0921 7.41702 34.0896 7.35826 34.0858 7.272C34.0821 7.18574 34.0796 7.12698 34.0796 7.09447C34.0471 7.00446 34.0083 6.9207 33.9633 6.84319C33.9183 6.76568 33.8433 6.72692 33.737 6.72692C33.452 6.72692 33.2132 6.79068 33.0219 6.91695C32.8306 7.04322 32.6731 7.20449 32.5506 7.40077C32.4281 7.59704 32.3331 7.80832 32.2631 8.03711C32.1943 8.26589 32.1343 8.47842 32.0855 8.67345C32.0693 8.7222 32.0468 8.81472 32.018 8.94849C31.9893 9.08351 31.9568 9.22352 31.9205 9.37105C31.8843 9.51857 31.8467 9.65484 31.8105 9.7811C31.7742 9.90737 31.7467 9.99488 31.7305 10.0449L31.6692 10.89C31.7755 11.3226 31.973 11.6101 32.2631 11.7526C32.5543 11.8964 32.9156 11.9677 33.3482 11.9677ZM27.5161 11.9677C27.6212 11.9677 27.7124 11.9652 27.7887 11.9614C27.8649 11.9577 27.9399 11.9464 28.0125 11.9302C28.085 11.9139 28.1662 11.8952 28.255 11.8739C28.3438 11.8526 28.4525 11.8226 28.5825 11.7814C28.68 11.7401 28.8313 11.6801 29.0363 11.6014C29.2426 11.5226 29.4539 11.4426 29.6727 11.3601C29.8902 11.2776 30.0953 11.1988 30.284 11.125C30.4741 11.0513 30.5966 11.005 30.6541 10.9888C30.8566 10.8975 31.0679 10.7862 31.2904 10.6537C31.513 10.5212 31.7167 10.3687 31.9018 10.1949C32.088 10.0211 32.2431 9.82736 32.3681 9.61233C32.4931 9.3973 32.5556 9.15852 32.5556 8.89348C32.5556 8.81097 32.5418 8.72596 32.5131 8.63969C32.4843 8.55343 32.4181 8.50967 32.3131 8.50967C32.2006 8.50967 32.1155 8.55093 32.058 8.63344C32.0018 8.71595 31.9505 8.81347 31.9068 8.92473C31.8618 9.036 31.8217 9.14977 31.7855 9.26478C31.7492 9.3798 31.7067 9.47106 31.658 9.53732C31.4479 9.77735 31.1654 10.0061 30.8104 10.2249C30.4553 10.4437 30.0777 10.6312 29.6777 10.7887C29.2776 10.9463 28.8801 11.0713 28.4838 11.1663C28.0875 11.2613 27.7449 11.3088 27.4536 11.3088C27.4374 11.3088 27.3811 11.3063 27.2836 11.3026C27.1861 11.2988 27.1261 11.2963 27.1023 11.2963C27.0373 11.2551 26.9673 11.2138 26.8898 11.1726C26.8135 11.1313 26.766 11.0688 26.751 10.9863V10.875C26.751 10.825 26.7485 10.7762 26.7448 10.7262C26.741 10.6762 26.7385 10.6275 26.7385 10.5775V10.4662C26.7385 10.2024 26.7685 9.97488 26.8298 9.78485C26.8898 9.59483 26.9748 9.4173 27.0848 9.25228C27.1936 9.08726 27.3211 8.92348 27.4661 8.76346C27.6111 8.60219 27.7687 8.41841 27.9387 8.21213C27.9462 8.19588 27.9649 8.17338 27.9937 8.14462C28.0225 8.11587 28.04 8.09712 28.0487 8.08836H28.0975C28.1625 8.10462 28.215 8.13337 28.255 8.17463C28.295 8.21588 28.3337 8.25714 28.37 8.29839C28.4063 8.33965 28.4488 8.37466 28.4975 8.40341C28.5463 8.43216 28.6025 8.44716 28.6675 8.44716C28.7726 8.44716 28.8651 8.42591 28.9463 8.38466C29.0276 8.3434 29.0676 8.26964 29.0676 8.16212C29.0676 8.06336 29.0488 7.95334 29.0126 7.83333C28.9763 7.71331 28.9238 7.59954 28.8551 7.49328C28.7863 7.38701 28.7076 7.2945 28.6188 7.22074C28.53 7.14698 28.4288 7.10947 28.3162 7.10947C28.26 7.10947 28.2175 7.11573 28.1887 7.12823C28.16 7.14073 28.1362 7.15698 28.1162 7.17824C28.0962 7.19949 28.0712 7.21949 28.0437 7.24074C28.015 7.262 27.9812 7.2845 27.9412 7.30825C27.7874 7.25074 27.6074 7.29575 27.4024 7.44452C27.1973 7.59329 26.9948 7.80332 26.796 8.07586C26.5985 8.3484 26.4247 8.6747 26.2747 9.05475C26.1247 9.4348 26.0309 9.83486 25.9897 10.2562C26.0059 10.5375 26.0397 10.7825 26.0922 10.9938C26.1447 11.2051 26.2272 11.3813 26.341 11.5264C26.4535 11.6714 26.606 11.7801 26.7948 11.8551C26.9848 11.9302 27.2248 11.9677 27.5161 11.9677ZM21.1427 11.9677C21.1952 11.9677 21.2465 11.9614 21.2952 11.9489C21.344 11.9364 21.3865 11.9177 21.4228 11.8927C21.459 11.8676 21.474 11.8301 21.4653 11.7801C21.4728 11.7126 21.489 11.6039 21.514 11.4538C21.5378 11.3038 21.5653 11.1438 21.5928 10.9775C21.6215 10.81 21.6515 10.6512 21.6841 10.5012C21.7166 10.3512 21.7403 10.2462 21.7566 10.1874C21.8053 10.0199 21.8841 9.80736 21.9941 9.54732C22.1041 9.28853 22.2341 9.03225 22.3842 8.78221C22.5342 8.53093 22.7054 8.3184 22.8955 8.14212C23.0868 7.96585 23.2793 7.87833 23.4743 7.87833V8.29214L22.9992 10.7262V10.8888C22.9992 11.0225 23.0055 11.1475 23.018 11.2651C23.0305 11.3826 23.058 11.4888 23.103 11.5851C23.148 11.6814 23.2143 11.7589 23.3043 11.8176C23.393 11.8764 23.5156 11.9052 23.6693 11.9052C23.8231 11.9052 24.0106 11.8764 24.2294 11.8176C24.4482 11.7589 24.6745 11.6801 24.9058 11.5789C25.137 11.4788 25.3721 11.3576 25.6121 11.2151C25.8521 11.0725 26.0622 10.9225 26.246 10.7637C26.4285 10.605 26.5785 10.4349 26.696 10.2562C26.8135 10.0761 26.8723 9.89487 26.8723 9.70984C26.8723 9.65109 26.8535 9.60358 26.8173 9.56607C26.781 9.52857 26.7335 9.50982 26.6773 9.50982H26.6285C26.466 9.70234 26.2747 9.90112 26.0559 10.1062C25.8371 10.3112 25.6009 10.4925 25.3496 10.6525C25.0983 10.8112 24.8358 10.9438 24.5645 11.0475C24.2919 11.1525 24.0306 11.2038 23.7794 11.2038V10.1874L24.2419 8.04211V7.9921C24.2419 7.97585 24.2444 7.9646 24.2482 7.96085L24.2507 7.95709C24.2532 7.95209 24.2544 7.94209 24.2544 7.92959C24.2544 7.69581 24.1869 7.50328 24.0531 7.35201C23.9194 7.20199 23.7343 7.12573 23.4993 7.12573C23.3855 7.12573 23.2655 7.15448 23.1405 7.21324C23.0142 7.272 22.9067 7.34326 22.818 7.42702C22.7942 7.46077 22.7405 7.51453 22.6592 7.58954C22.5779 7.66455 22.4904 7.74457 22.3979 7.82833C22.3041 7.91209 22.2166 7.99085 22.1366 8.06711C22.0554 8.14212 21.9991 8.19213 21.9666 8.21713V7.36326C21.9666 7.28825 21.9241 7.22699 21.8391 7.18073C21.7541 7.13448 21.6791 7.11198 21.614 7.11198C21.5903 7.11198 21.5453 7.11447 21.4803 7.11823C21.4153 7.12198 21.3703 7.14073 21.3465 7.17448L21.1027 8.84347V9.19477L20.6852 11.7039V11.7414C20.6852 11.8414 20.7214 11.9039 20.7952 11.9302C20.8677 11.9552 20.9414 11.9677 21.014 11.9677H21.1427ZM15.2556 11.3288V10.985L15.5519 9.49481C15.5607 9.46981 15.5744 9.4373 15.5944 9.3998C15.6144 9.36104 15.6394 9.32104 15.6682 9.27853C15.6969 9.23603 15.7232 9.19977 15.7482 9.16977C15.7732 9.13976 15.7895 9.12476 15.797 9.12476C15.8382 9.08225 15.9145 9.00224 16.0245 8.88348C16.1345 8.76471 16.2545 8.63719 16.382 8.50092C16.5096 8.36465 16.6308 8.23964 16.7458 8.12587C16.8609 8.0121 16.9434 7.93334 16.9921 7.89084C17.0084 7.88208 17.0434 7.87833 17.0971 7.87833H17.2022C17.3259 7.87833 17.4234 7.88709 17.4985 7.90334C17.5722 7.92084 17.6622 7.97585 17.7697 8.06836C17.7697 8.08586 17.7722 8.11087 17.776 8.14462L17.7785 8.16337C17.781 8.18838 17.7822 8.20713 17.7822 8.22088C17.7822 8.46717 17.751 8.7072 17.6897 8.93973C17.6285 9.17352 17.5935 9.4173 17.5847 9.67234C17.486 9.82486 17.3459 9.99738 17.1659 10.1874C16.9846 10.3787 16.7846 10.5587 16.5621 10.7287C16.3395 10.8988 16.1145 11.0413 15.8845 11.155C15.6532 11.2713 15.4444 11.3288 15.2556 11.3288ZM15.1581 11.9677C15.3794 11.9677 15.5969 11.9227 15.8095 11.8314C16.022 11.7401 16.2308 11.6326 16.4358 11.5088C16.6408 11.3851 16.8371 11.2476 17.0259 11.0988C17.2147 10.95 17.3909 10.8088 17.5547 10.6762C17.5385 10.8338 17.541 10.985 17.561 11.13C17.581 11.2751 17.621 11.3988 17.6772 11.5026C17.7347 11.6064 17.821 11.6889 17.9348 11.7514C18.0498 11.8139 18.1973 11.8451 18.3773 11.8451C18.4923 11.8451 18.6211 11.8301 18.7649 11.8014C18.9087 11.7726 19.0537 11.7326 19.2012 11.6839C19.3487 11.6339 19.4925 11.5826 19.6313 11.5289C19.77 11.4751 19.8975 11.4151 20.0126 11.3488C20.0776 11.3238 20.1863 11.2701 20.3376 11.1876C20.4889 11.105 20.6514 11.0175 20.8227 10.9263C20.9952 10.835 21.1565 10.7525 21.3078 10.6775C21.459 10.6025 21.564 10.545 21.6215 10.5037C21.6628 10.47 21.6853 10.4349 21.6891 10.3974C21.6928 10.3599 21.6953 10.3212 21.6953 10.2799C21.6953 10.1974 21.6691 10.1312 21.6153 10.0811C21.5615 10.0311 21.494 10.0061 21.4128 10.0061C21.404 10.0061 21.3903 10.0086 21.3703 10.0124L21.3565 10.0149C21.344 10.0174 21.334 10.0186 21.3278 10.0186L18.9937 11.1125C18.9112 11.1463 18.8324 11.1638 18.7536 11.1688C18.6749 11.1738 18.5961 11.1751 18.5136 11.1751C18.4973 11.1751 18.4561 11.1726 18.3911 11.1688C18.3261 11.1651 18.2848 11.1625 18.2686 11.1625C18.2598 11.1463 18.2498 11.0988 18.2373 11.02C18.2248 10.9413 18.2148 10.8938 18.2061 10.8775V10.8025C18.2061 10.5787 18.2286 10.3649 18.2736 10.1624C18.3186 9.95988 18.3673 9.75485 18.4211 9.54732C18.4748 9.33979 18.5236 9.13476 18.5686 8.93223C18.6136 8.7297 18.6361 8.51967 18.6361 8.30464C18.6361 8.14712 18.6224 7.9896 18.5936 7.83208C18.5649 7.67455 18.5161 7.53328 18.4461 7.40952C18.3761 7.28575 18.2823 7.18324 18.1635 7.10448C18.0448 7.02571 17.8948 6.98696 17.7147 6.98696H17.4935C17.0021 7.04447 16.5496 7.20449 16.1358 7.46578C15.722 7.72706 15.3819 8.04961 15.1156 8.43466C14.8493 8.81972 14.6656 9.25228 14.563 9.7336C14.4605 10.2137 14.4793 10.7025 14.618 11.2001V11.5851C14.6593 11.7176 14.7281 11.8151 14.8268 11.8777C14.9256 11.9364 15.0356 11.9677 15.1581 11.9677ZM12.1502 11.9677C12.2652 11.9677 12.4302 11.9302 12.6465 11.8551C12.8628 11.7801 13.1003 11.6801 13.3579 11.5539C13.6154 11.4288 13.8792 11.2888 14.1492 11.1338C14.4193 10.9788 14.6643 10.8225 14.8856 10.6637C15.1069 10.505 15.2869 10.3499 15.4257 10.1999C15.5644 10.0499 15.6344 9.92362 15.6344 9.82361C15.6344 9.79861 15.6307 9.7611 15.6219 9.71109C15.6132 9.66109 15.5969 9.63608 15.5732 9.63608H15.2056C15.1406 9.68609 15.0794 9.7361 15.0219 9.78611C14.9626 9.83386 14.9078 9.87549 14.8577 9.91175C14.8106 9.94588 14.7674 9.97501 14.7281 9.99988C14.6793 10.0336 14.628 10.0686 14.5743 10.1062C14.5205 10.1437 14.478 10.1924 14.4455 10.2499L13.3666 10.9275C13.2766 10.9438 13.1903 10.9713 13.1091 11.0088C13.0278 11.0463 12.9441 11.0863 12.8578 11.1275C12.7715 11.1688 12.6878 11.2076 12.6065 11.2401C12.5252 11.2726 12.4352 11.2901 12.3365 11.2901C12.2952 11.2901 12.2527 11.2876 12.2077 11.2838C12.1627 11.2801 12.1439 11.2401 12.1527 11.1651V10.8388C12.1527 10.6712 12.1714 10.485 12.2077 10.2812C12.244 10.0761 12.2815 9.87112 12.3177 9.66609C12.354 9.46106 12.3915 9.25853 12.4277 9.05725C12.464 8.85597 12.4827 8.6772 12.4827 8.51843C12.4827 8.3434 12.4515 8.20713 12.3902 8.11087C12.329 8.0146 12.2252 7.92459 12.0777 7.84083C11.9464 7.77332 11.7951 7.71081 11.6239 7.6533C11.4526 7.59579 11.2901 7.54079 11.1388 7.49078C10.9875 7.44077 10.8613 7.39452 10.7587 7.35326C10.6562 7.312 10.61 7.27325 10.6175 7.24074C10.5362 7.24074 10.4662 7.2695 10.4087 7.32826C10.3512 7.38701 10.3024 7.45577 10.2612 7.53579C10.2199 7.6158 10.1899 7.70081 10.1687 7.79332C10.1487 7.88584 10.1374 7.9646 10.1374 8.03211C10.1374 8.09962 10.1399 8.15587 10.1437 8.20088C10.1474 8.24714 10.1662 8.29964 10.1987 8.35715C10.1087 8.58343 10.0436 8.78971 10.0024 8.97849C9.96113 9.16602 9.90862 9.34479 9.84236 9.51107C9.77736 9.67859 9.68859 9.84611 9.57858 10.0124C9.46856 10.1799 9.29854 10.3512 9.06976 10.5262C9.061 10.6762 9.06601 10.7912 9.08226 10.8713C9.09851 10.9513 9.12101 11.0088 9.14977 11.0463C9.17852 11.0838 9.20728 11.1063 9.23603 11.115C9.26479 11.1238 9.28353 11.1275 9.29104 11.1275C9.60983 10.9013 9.83737 10.6712 9.97238 10.4374C10.1074 10.2037 10.2099 9.96863 10.2787 9.73485C10.3474 9.50106 10.4174 9.27478 10.4875 9.05725C10.5575 8.83972 10.6812 8.63469 10.8613 8.44216C10.8613 8.45092 10.92 8.48217 11.0388 8.53593C11.1576 8.58969 11.2863 8.65344 11.4251 8.72345C11.5639 8.79471 11.6926 8.85972 11.8114 8.91723C11.9302 8.97599 11.9889 9.00974 11.9889 9.01724C11.9889 9.11726 11.9602 9.25103 11.9027 9.41855C11.8452 9.58608 11.7801 9.75735 11.7064 9.93238C11.6326 10.1074 11.5676 10.2799 11.5101 10.4462C11.4526 10.6137 11.4238 10.7425 11.4238 10.835C11.4238 10.96 11.4338 11.0875 11.4551 11.2176C11.4751 11.3476 11.5139 11.4663 11.5714 11.5751C11.6289 11.6839 11.7026 11.7764 11.7926 11.8514C11.8852 11.9302 12.0039 11.9677 12.1502 11.9677ZM4.34408 11.8401C4.4291 11.8401 4.48785 11.8151 4.52161 11.7664L5.22921 10.4524L5.93681 8.11837L6.05933 7.16073H6.29061C6.35562 7.16073 6.42313 7.15823 6.49189 7.15448C6.56065 7.15073 6.61941 7.14823 6.66942 7.14823C7.01071 7.14823 7.35076 7.17073 7.68831 7.21574C8.02586 7.26075 8.35715 7.28325 8.6822 7.28325C8.78846 7.28325 8.89598 7.25075 9.006 7.18449C9.11601 7.11948 9.17102 7.02446 9.17102 6.90194C9.17102 6.80318 9.12977 6.73192 9.0485 6.68691C8.96724 6.64191 8.87098 6.6094 8.76221 6.58815C8.6522 6.56815 8.54468 6.5569 8.43842 6.5569H6.2306C6.16559 6.57315 6.13059 6.56315 6.12684 6.52564C6.12308 6.48814 6.12059 6.45438 6.12059 6.42063C6.12059 6.09308 6.13059 5.77178 6.15059 5.45674L6.16184 5.26671C6.17434 5.01293 6.18184 4.75414 6.18184 4.49285C6.18184 4.28782 6.17184 4.0878 6.15184 3.89152C6.13184 3.69524 6.12184 3.49896 6.12184 3.30143V3.21517L9.08726 2.96889C9.18477 2.96014 9.29104 2.91763 9.4048 2.84012C9.51857 2.76261 9.57608 2.67009 9.57608 2.56383C9.57608 2.55508 9.57358 2.54133 9.56983 2.52132L9.56733 2.50757C9.56483 2.49507 9.56358 2.48507 9.56358 2.47882C9.53857 2.45381 9.50857 2.41756 9.47231 2.3688C9.43606 2.32005 9.39105 2.26629 9.33854 2.20878C9.28604 2.15127 9.22853 2.10251 9.16727 2.06126C9.10601 2.02 9.0435 2 8.97849 2C8.89723 2 8.84847 2.01875 8.83222 2.05501C8.81597 2.09126 8.80972 2.13752 8.81347 2.19003C8.81722 2.24378 8.81722 2.29504 8.81347 2.3438C8.80972 2.39256 8.78722 2.42131 8.74596 2.43006C8.37216 2.50382 7.9871 2.55133 7.5933 2.57133C7.19824 2.59133 6.81443 2.60258 6.44063 2.60258C6.31061 2.60258 6.19059 2.59008 6.08058 2.56633C5.97056 2.54133 5.86305 2.51507 5.75678 2.48632C5.65052 2.45756 5.543 2.42881 5.43299 2.40006C5.32297 2.3713 5.21546 2.35755 5.10919 2.35755C5.09294 2.35755 5.06293 2.36005 5.01793 2.3638L4.99668 2.3663C4.96292 2.3688 4.94042 2.37005 4.92667 2.37005C4.89416 2.41131 4.87541 2.45006 4.87166 2.48632C4.86791 2.52257 4.86541 2.56258 4.86541 2.60258C4.86541 2.6926 4.88166 2.76261 4.91416 2.81136C4.94667 2.86012 4.98792 2.90513 5.03668 2.94638C5.08544 2.98764 5.13669 3.03265 5.1892 3.0814C5.24171 3.13016 5.29672 3.19142 5.35423 3.26518C5.42799 3.37144 5.47675 3.49396 5.5005 3.63398C5.52425 3.774 5.54175 3.91402 5.54925 4.05779C5.558 4.20156 5.558 4.34408 5.54925 4.48785C5.5405 4.63162 5.53675 4.76039 5.53675 4.87541C5.53675 4.98167 5.5405 5.11294 5.54925 5.26796C5.558 5.42299 5.55926 5.58176 5.55551 5.74053C5.55176 5.90055 5.53675 6.05432 5.513 6.2006C5.48925 6.34687 5.45174 6.46688 5.40298 6.5569C5.1667 6.57315 4.91041 6.59315 4.63412 6.61815C4.35783 6.64316 4.07655 6.66691 3.79275 6.69192C3.50896 6.71692 3.22392 6.73317 2.93888 6.74067C2.65384 6.74817 2.39005 6.74942 2.14627 6.74067C2.07251 6.72442 2.03 6.74067 2.01875 6.78943C2.0075 6.83819 2 6.87944 2 6.91195C2 6.96945 2.00625 7.01821 2.01875 7.05947C2.03125 7.10072 2.07376 7.13323 2.14627 7.15823C2.22753 7.17448 2.29504 7.18449 2.34755 7.18949C2.40006 7.19449 2.45381 7.19824 2.50632 7.20199C2.55883 7.20574 2.61258 7.20824 2.66509 7.20824H2.85387C3.23642 7.20824 3.61648 7.19949 3.99528 7.18323C4.37409 7.16698 4.75414 7.15823 5.1367 7.15823C5.20171 7.15823 5.25421 7.16448 5.29547 7.17698C5.33672 7.18949 5.35673 7.23199 5.35673 7.30575C5.35673 7.60829 5.32672 7.90584 5.26546 8.19588C5.20421 8.48592 5.12669 8.77346 5.03418 9.056C4.94167 9.33854 4.8329 9.61483 4.71039 9.88487C4.58787 10.1549 4.4666 10.4212 4.34408 10.6837C4.29533 10.7737 4.24657 10.8513 4.19781 10.9175C4.14905 10.9838 4.10405 11.0463 4.06404 11.1075C4.02404 11.1688 3.98903 11.2388 3.96028 11.3163C3.93152 11.3938 3.91777 11.4938 3.91777 11.6176C3.91777 11.6664 3.92027 11.7051 3.92402 11.7339C3.92777 11.7626 3.94653 11.7976 3.97903 11.8389H4.34408V11.8401Z" fill="#E8336D"/>
+</svg>
\ No newline at end of file
diff --git a/src/assets/logos/grandLyonLaMetropole.svg b/src/assets/logos/grandLyonLaMetropole.svg
index 9d443ffa2..6510db4f0 100644
--- a/src/assets/logos/grandLyonLaMetropole.svg
+++ b/src/assets/logos/grandLyonLaMetropole.svg
@@ -1,29 +1,22 @@
-<svg width="189" height="43" viewBox="0 0 189 43" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g clip-path="url(#clip0_5084_112181)">
-<path d="M14.6188 24.1594C13.8364 25.1028 12.8909 25.8619 11.8386 26.3915C10.7863 26.921 9.64874 27.2102 8.49363 27.2418C7.33852 27.2733 6.18949 27.0467 5.11498 26.5753C4.04046 26.1039 3.06242 25.3974 2.23911 24.4978C0.0358825 22.0532 1.03355e-07 19.6802 7.15522e-08 13.6244C3.9749e-08 7.56856 0.043059 5.19162 2.23911 2.74699C3.03301 1.87136 3.97472 1.17801 5.01036 0.706612C6.04601 0.235214 7.15526 -0.00498298 8.27465 -0.000236215C12.516 -0.000236237 15.7706 3.08541 16.5278 7.82736L14.6977 7.82736C13.9801 4.14051 11.5436 1.80736 8.28541 1.80736C7.4372 1.79871 6.59591 1.97729 5.81047 2.33273C5.02504 2.68816 4.31114 3.21334 3.71031 3.87773C1.96998 5.81273 1.83722 7.86717 1.83722 13.6244C1.83722 19.3816 1.97357 21.452 3.70314 23.3671C4.30384 24.0316 5.01772 24.5569 5.80318 24.9124C6.58864 25.2678 7.43 25.4463 8.27824 25.4375C9.23644 25.4435 10.1839 25.2138 11.0526 24.765C11.9212 24.3161 12.6894 23.6592 13.3019 22.8415C14.3461 21.4122 14.7551 19.8315 14.7551 17.5382L14.7551 15.1294L8.27465 15.1294L8.27465 13.3218L16.5852 13.3218L16.5852 17.7014C16.5852 20.4885 16.0433 22.4792 14.6188 24.1753" fill="#FF0101"/>
-<path d="M31.9782 2.03265L24.8554 2.03265L24.8554 12.8702L31.9782 12.8702C35.0642 12.8702 37.3033 11.1383 37.3033 7.45144C37.3033 3.76459 35.0642 2.03265 31.9782 2.03265ZM37.2674 27.0204L31.501 14.6778L24.8554 14.6778L24.8554 27.0204L23.0254 27.0204L23.0254 0.237L32.2151 0.236999C36.1622 0.236999 39.1333 2.75728 39.1333 7.42357C39.1333 11.4051 36.9624 14.0089 33.5714 14.65L39.4024 27.0324L37.2674 27.0204Z" fill="#FF0101"/>
-<path d="M51.7832 2.93246L46.7308 18.6991L56.8355 18.6991L51.7832 2.93246ZM59.516 27.0164L57.4133 20.5067L46.1531 20.5067L44.0504 27.0164L42.084 27.0164L50.9686 0.236999L52.5977 0.236999L61.4824 27.0324L59.516 27.0164Z" fill="#FF0101"/>
-<path d="M81.4838 27.0166L67.5468 3.72496L67.5468 27.0166L65.7168 27.0166L65.7168 0.221252L67.5468 0.221252L81.4838 23.4413L81.4838 0.221252L83.3175 0.221252L83.3175 27.0166L81.4838 27.0166Z" fill="#FF0101"/>
-<path d="M103.623 4.09904C102.234 2.50644 100.368 2.03265 98.4342 2.03265L92.5996 2.03265L92.5996 25.2088L98.4306 25.2088C100.365 25.2088 102.231 24.7191 103.619 23.1385C105.55 20.9566 105.413 16.2147 105.413 13.2445C105.413 10.2743 105.546 6.28487 103.619 4.08709L103.623 4.09904ZM104.907 24.5599C103.472 26.1525 101.384 27.0045 98.872 27.0045L90.7695 27.0045L90.7695 0.237L98.8755 0.236999C101.387 0.236999 103.487 1.10496 104.911 2.68561C107.355 5.39302 107.251 9.64524 107.251 13.2604C107.251 16.8756 107.355 21.8604 104.911 24.5718L104.907 24.5599Z" fill="#FF0101"/>
-<path d="M112.846 27.0166L112.846 0.221252L117.561 0.221252L117.561 22.3503L128.516 22.3503L128.516 27.0166L112.846 27.0166Z" fill="#333333"/>
-<path d="M138.852 16.0277L138.852 27.0166L134.173 27.0166L134.173 16.0277L126.914 0.221252L132.035 0.221252L136.545 11.027L140.991 0.221252L146.108 0.221252L138.852 16.0277Z" fill="#333333"/>
-<path d="M159.805 6.09478C159.424 5.62814 158.957 5.25868 158.436 5.0119C157.914 4.76512 157.35 4.64691 156.783 4.66543C156.212 4.64699 155.643 4.76508 155.116 5.01168C154.59 5.25829 154.117 5.62767 153.73 6.09478C152.815 7.22154 152.578 8.48367 152.578 13.6198C152.578 18.7559 152.815 20.014 153.73 21.1448C154.117 21.6117 154.59 21.9809 155.117 22.2275C155.643 22.4741 156.212 22.5923 156.783 22.5741C157.35 22.5924 157.914 22.4741 158.435 22.2273C158.957 21.9805 159.424 21.6112 159.805 21.1448C160.72 20.014 160.992 18.7559 160.992 13.6198C160.992 8.48367 160.723 7.22154 159.805 6.09478ZM163.311 24.3101C161.561 26.1934 159.219 27.2467 156.782 27.2467C154.344 27.2467 152.002 26.1934 150.253 24.3101C147.813 21.6026 147.877 18.2502 147.877 13.6238C147.877 8.99728 147.813 5.6608 150.253 2.93747C152.002 1.05412 154.344 0.000793424 156.782 0.000793411C159.219 0.000793399 161.561 1.05412 163.311 2.93747C165.754 5.64487 165.718 8.9933 165.718 13.6238C165.718 18.2542 165.74 21.6026 163.311 24.3101Z" fill="#333333"/>
-<path d="M184.79 27.0166L175.227 10.5731L175.227 27.0166L170.516 27.0166L170.516 0.221252L174.721 0.221252L184.284 16.6289L184.284 0.221252L188.999 0.221252L188.999 27.0166L184.79 27.0166Z" fill="#333333"/>
-<path d="M160.242 35.4745L160.264 35.4745C160.376 35.2188 160.553 35.0047 160.773 34.8578C160.992 34.7108 161.246 34.6374 161.502 34.6464C162.363 34.6464 163.239 35.0445 163.239 37.6524C163.239 39.1414 163.196 40.8575 161.444 40.8575C161.208 40.8618 160.974 40.7976 160.766 40.6712C160.559 40.5449 160.384 40.3607 160.26 40.1368L160.228 40.1368L160.228 42.9995L159.363 42.9995L159.363 34.7658L160.239 34.7658L160.242 35.4745ZM162.324 37.6524C162.324 36.7526 162.324 35.4387 161.226 35.4387C160.128 35.4387 160.246 37.095 160.246 38.0067C160.246 38.803 160.289 40.0651 161.258 40.0651C162.227 40.0651 162.324 39.2569 162.324 37.6643L162.324 37.6524Z" fill="#333333"/>
-<path d="M99.992 39.8734L99.9705 39.8734C99.8752 40.1805 99.6905 40.4438 99.4457 40.6218C99.2008 40.7998 98.9095 40.8825 98.6177 40.8568C97.4766 40.8568 97.1465 40.0406 97.1465 38.8939C97.1465 37.0824 98.7469 37.0027 99.9705 37.0346C99.992 36.2383 100.003 35.3783 99.0627 35.3783C98.9391 35.3673 98.815 35.3884 98.7001 35.44C98.5853 35.4916 98.4828 35.5722 98.401 35.6754C98.3191 35.7786 98.26 35.9016 98.2285 36.0345C98.197 36.1675 98.1939 36.3068 98.2194 36.4414L97.2864 36.4414C97.3295 35.1036 97.9682 34.6417 99.1093 34.6417C100.494 34.6417 100.857 35.438 100.857 36.4414L100.857 39.316C100.86 39.7921 100.896 40.2672 100.964 40.7374L100.006 40.7374L99.992 39.8734ZM98.022 38.9616C98.022 39.5389 98.2768 40.0605 98.8617 40.0605C99.4466 40.0605 100.057 39.6942 99.9705 37.7632C99.1416 37.7791 98.022 37.6995 98.022 38.9656L98.022 38.9616Z" fill="#333333"/>
-<path d="M115.722 40.7375L115.722 36.5968C115.722 35.9916 115.572 35.4382 114.868 35.4382C114.724 35.4407 114.581 35.4776 114.451 35.5462C114.32 35.6149 114.204 35.7138 114.111 35.8363C113.976 36.1038 113.905 36.4056 113.907 36.7123L113.907 40.7336L113.038 40.7336L113.038 36.0075C113.038 35.6094 113.017 35.1794 112.984 34.7653L113.91 34.7653L113.91 35.5099L113.932 35.5099C114.042 35.2248 114.232 34.9868 114.474 34.8311C114.715 34.6755 114.996 34.6105 115.274 34.6459C115.528 34.6248 115.783 34.6862 116.006 34.8226C116.23 34.959 116.413 35.1646 116.533 35.4143C116.652 35.1581 116.838 34.9478 117.067 34.8107C117.295 34.6736 117.556 34.6162 117.814 34.6459C118.381 34.6459 119.285 34.7892 119.285 36.1947L119.285 40.7375L118.41 40.7375L118.41 36.5968C118.41 35.9916 118.263 35.4382 117.556 35.4382C117.438 35.4175 117.317 35.4268 117.203 35.4654C117.088 35.504 116.983 35.5709 116.896 35.6612C116.684 35.9597 116.579 36.3334 116.598 36.7123L116.598 40.7336L115.722 40.7375Z" fill="#333333"/>
-<path d="M125.656 38.063C125.656 39.7313 126.061 40.0538 126.732 40.0538C127.328 40.0538 127.64 39.5203 127.669 38.9191L128.627 38.9191C128.627 40.2449 127.881 40.8461 126.75 40.8461C125.62 40.8461 124.705 40.4479 124.705 37.8281C124.705 36.0763 124.884 34.6429 126.75 34.6429C128.286 34.6429 128.67 35.5786 128.67 37.5534L128.67 38.063L125.656 38.063ZM127.755 37.3304C127.755 35.5905 127.317 35.3795 126.679 35.3795C126.126 35.3795 125.667 35.6741 125.656 37.3304L127.755 37.3304ZM127.97 32.1943L126.575 33.8626L125.857 33.8626L126.808 32.1943L127.97 32.1943Z" fill="#333333"/>
-<path d="M134.605 34.7658L134.605 33.6191L135.481 33.1812L135.481 34.7737L136.654 34.7737L136.654 35.5063L135.481 35.5063L135.481 39.1613C135.481 39.5595 135.481 40.0253 136.281 40.0253C136.346 40.0253 136.482 40.0014 136.676 39.9775L136.676 40.7221C136.389 40.746 136.098 40.8176 135.811 40.8176C134.979 40.8176 134.605 40.4195 134.605 39.7546L134.605 35.4984L133.723 35.4984L133.723 34.7658L134.605 34.7658Z" fill="#333333"/>
-<path d="M143.185 35.674L143.217 35.674C143.576 34.7623 144.028 34.6588 144.879 34.6588L144.879 35.6661L144.646 35.6302C144.568 35.6157 144.49 35.6077 144.412 35.6063C143.443 35.6063 143.196 36.4226 143.196 37.2268L143.196 40.7544L142.32 40.7544L142.32 34.7822L143.196 34.7822L143.185 35.674Z" fill="#333333"/>
-<path d="M149.852 37.84C149.852 36.0882 150.031 34.6548 151.897 34.6548C153.763 34.6548 153.942 36.1001 153.942 37.84C153.942 40.4797 153.034 40.858 151.897 40.858C150.759 40.858 149.852 40.4797 149.852 37.84ZM153.027 37.4419C153.027 35.8095 152.568 35.4511 151.897 35.4511C151.226 35.4511 150.767 35.8055 150.767 37.4419C150.767 39.3809 150.993 40.0816 151.897 40.0816C152.801 40.0816 153.031 39.3649 153.031 37.426L153.027 37.4419Z" fill="#333333"/>
-<path d="M168.586 37.84C168.586 36.0882 168.765 34.6548 170.631 34.6548C172.497 34.6548 172.68 36.1001 172.68 37.84C172.68 40.4797 171.772 40.858 170.631 40.858C169.49 40.858 168.586 40.4797 168.586 37.84ZM171.762 37.4419C171.762 35.8095 171.302 35.4511 170.631 35.4511C169.96 35.4511 169.501 35.8055 169.501 37.4419C169.501 39.3809 169.723 40.0816 170.631 40.0816C171.539 40.0816 171.765 39.3649 171.765 37.426L171.762 37.4419Z" fill="#333333"/>
-<path d="M179.221 40.7386L178.346 40.7386L178.346 32.1983L179.218 32.1983L179.221 40.7386Z" fill="#333333"/>
-<path d="M185.674 38.0618C185.674 39.7301 186.079 40.0526 186.75 40.0526C187.346 40.0526 187.658 39.519 187.687 38.9178L188.645 38.9178C188.645 40.2437 187.898 40.8449 186.768 40.8449C185.638 40.8449 184.723 40.4467 184.723 37.8269C184.723 36.0751 184.902 34.6417 186.768 34.6417C188.304 34.6417 188.688 35.5774 188.688 37.5522L188.688 38.0618L185.674 38.0618ZM187.773 37.3292C187.773 35.5893 187.335 35.3783 186.696 35.3783C186.144 35.3783 185.684 35.6729 185.674 37.3292L187.773 37.3292Z" fill="#333333"/>
-<path d="M92.1236 40.7386L91.248 40.7386L91.248 32.1983L92.1236 32.1983L92.1236 40.7386Z" fill="#333333"/>
-</g>
-<defs>
-<clipPath id="clip0_5084_112181">
-<rect width="189" height="43" fill="white"/>
-</clipPath>
-</defs>
+<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M3.09413 20.5586C2.75675 20.9278 2.26844 21.1405 1.7511 21.1405C1.27064 21.1405 0.811351 20.9564 0.473971 20.6221C0.0075125 20.1608 0 19.7135 0 18.5705C0 17.4273 0.0075125 16.9799 0.473971 16.5183C0.811351 16.1843 1.27064 16.0002 1.7511 16.0002C2.6485 16.0002 3.3376 16.5818 3.49571 17.4768H3.10847C2.95754 16.7809 2.44088 16.3404 1.7511 16.3404C1.38503 16.3404 1.04082 16.4756 0.783008 16.7313C0.416944 17.0933 0.387919 17.484 0.387919 18.5705C0.387919 19.6568 0.416603 20.0471 0.782667 20.4094C1.04048 20.6648 1.38503 20.7997 1.75076 20.7997C2.15336 20.7997 2.54776 20.6297 2.81378 20.31C3.03642 20.0403 3.12247 19.7418 3.12247 19.3085V18.854H1.7511V18.5132H3.51005V19.3372C3.51005 19.8627 3.39531 20.2387 3.09413 20.5586" fill="#E30613"/>
+<path d="M6.76769 16.3834H5.26006V18.4282H6.76769C7.42127 18.4282 7.89422 18.1017 7.89422 17.4058C7.89422 16.7095 7.42093 16.3834 6.76769 16.3834V16.3834ZM7.88739 21.0982L6.66763 18.7693H5.26006V21.0982H4.87317V16.043H6.81788C7.65075 16.043 8.28248 16.5183 8.28248 17.399C8.28248 18.1513 7.82251 18.6416 7.10541 18.7622L8.33951 21.0982H7.88739Z" fill="#E30613"/>
+<path d="M10.959 16.5538L9.88983 19.5288H12.0285L10.959 16.5538ZM12.5957 21.0982L12.1508 19.8696H9.76758L9.32229 21.0982H8.90637L10.7872 16.043H11.1318L13.012 21.0982H12.5957Z" fill="#E30613"/>
+<path d="M17.2454 21.0982L14.296 16.7034V21.0982H13.9084V16.043H14.296L17.2454 20.4234V16.043H17.6336V21.0982H17.2454Z" fill="#E30613"/>
+<path d="M21.9307 16.7742C21.6367 16.4761 21.2416 16.3839 20.8328 16.3839H19.5977V20.7575H20.8328C21.2416 20.7575 21.6367 20.6653 21.9307 20.3662C22.3394 19.9547 22.3114 19.0604 22.3114 18.4993C22.3114 17.9383 22.3394 17.186 21.9307 16.7742V16.7742ZM22.2035 20.6366C21.902 20.9344 21.4574 21.098 20.9257 21.098H19.2108V16.0427H20.9257C21.4577 16.0427 21.902 16.2063 22.2035 16.5041C22.7205 17.0156 22.699 17.8177 22.699 18.4997C22.699 19.1806 22.7205 20.1254 22.2035 20.6366Z" fill="#E30613"/>
+<path d="M23.8826 21.0982V16.043H24.8807V20.2182H27.199V21.0982H23.8826Z" fill="#020203"/>
+<path d="M29.3876 19.0242V21.0983H28.3969V19.0242L26.861 16.0427H27.9445L28.8989 18.081L29.8393 16.0427H30.9225L29.3876 19.0242Z" fill="#020203"/>
+<path d="M33.822 17.1501C33.6775 16.9865 33.4562 16.8803 33.1827 16.8803C32.9095 16.8803 32.6797 16.9869 32.5363 17.1501C32.3423 17.3632 32.2921 17.5981 32.2921 18.5703C32.2921 19.5425 32.342 19.7774 32.5363 19.9902C32.6797 20.1534 32.9095 20.2603 33.1827 20.2603C33.4562 20.2603 33.6775 20.1534 33.822 19.9902C34.0149 19.7774 34.0723 19.5425 34.0723 18.5703C34.0723 17.5981 34.0152 17.3632 33.822 17.1501ZM34.5606 20.5874C34.202 20.9422 33.7643 21.1406 33.1827 21.1406C32.6012 21.1406 32.1559 20.9422 31.7973 20.5874C31.2807 20.0759 31.2943 19.4435 31.2943 18.5706C31.2943 17.6965 31.2807 17.0654 31.7973 16.5542C32.1559 16.1987 32.6012 16 33.1827 16C33.7643 16 34.202 16.1987 34.5606 16.5539C35.0776 17.0651 35.0704 17.6965 35.0704 18.5703C35.0707 19.4435 35.0776 20.0759 34.5606 20.5874Z" fill="#020203"/>
+<path d="M39.1101 21.0982L37.0859 17.9955V21.0982H36.0887V16.043H36.9786L39.0022 19.1381V16.043H40V21.0982H39.1101Z" fill="#020203"/>
+<path d="M33.9138 22.6936H33.9193C33.9821 22.5887 34.0606 22.5378 34.1808 22.5378C34.3635 22.5378 34.5486 22.6092 34.5486 23.104C34.5486 23.3854 34.5394 23.7088 34.1716 23.7088C34.0637 23.7088 33.9841 23.6616 33.9213 23.5732H33.9141V24.1127H33.7297V22.56H33.9141V22.6936H33.9138ZM34.3546 23.104C34.3546 22.9346 34.3546 22.6871 34.1218 22.6871C33.894 22.6871 33.9138 22.9988 33.9138 23.1709C33.9138 23.3205 33.9237 23.5595 34.1286 23.5595C34.3273 23.5595 34.3546 23.4055 34.3546 23.104Z" fill="black"/>
+<path d="M21.1631 23.5238H21.1583C21.1023 23.6532 21.0135 23.7085 20.8715 23.7085C20.6301 23.7085 20.5601 23.5552 20.5601 23.3384C20.5601 22.9969 20.8988 22.9815 21.1583 22.9883C21.1631 22.8388 21.1652 22.6756 20.9664 22.6756C20.8428 22.6756 20.7769 22.7585 20.7885 22.877H20.5874C20.5969 22.6247 20.7318 22.5376 20.9739 22.5376C21.2673 22.5376 21.3438 22.6872 21.3438 22.877V23.419C21.3438 23.5084 21.3526 23.5999 21.3663 23.6863H21.1631V23.5238ZM20.7455 23.3517C20.7455 23.4613 20.7994 23.5593 20.9234 23.5593C21.0361 23.5593 21.1761 23.49 21.1583 23.126C20.9825 23.1287 20.7455 23.113 20.7455 23.3517Z" fill="black"/>
+<path d="M24.4922 23.6867V22.9057C24.4922 22.7917 24.4608 22.6872 24.3119 22.6872C24.2552 22.6872 24.1784 22.7203 24.1517 22.7626C24.1179 22.8186 24.1087 22.8856 24.1087 22.9279V23.6867H23.9236V22.794C23.9236 22.7158 23.9188 22.638 23.9124 22.5601H24.1087V22.7001H24.1135C24.1678 22.5793 24.2644 22.5376 24.3973 22.5376C24.5017 22.5376 24.6213 22.5793 24.6633 22.6824C24.7271 22.5618 24.8306 22.5376 24.9347 22.5376C25.0546 22.5376 25.2462 22.5639 25.2462 22.8296V23.6863H25.0611V22.9054C25.0611 22.7913 25.0293 22.6868 24.8801 22.6868C24.8104 22.6868 24.7906 22.6889 24.7408 22.7292C24.6861 22.7739 24.6773 22.8852 24.6773 22.9276V23.6863H24.4922V23.6867Z" fill="black"/>
+<path d="M26.5946 23.1819C26.5946 23.4968 26.6803 23.5589 26.8248 23.5589C26.9508 23.5589 27.0167 23.4589 27.0232 23.3448H27.2263C27.224 23.5948 27.0682 23.7085 26.8296 23.7085C26.5881 23.7085 26.3959 23.6371 26.3959 23.1392C26.3959 22.809 26.4338 22.5369 26.8296 22.5369C27.154 22.5369 27.2356 22.7134 27.2356 23.0853V23.1812H26.5946V23.1819ZM27.0389 23.0436C27.0389 22.7158 26.9467 22.6755 26.8111 22.6755C26.6933 22.6755 26.5967 22.7319 26.5946 23.0436H27.0389ZM27.084 22.0752L26.7886 22.3897H26.6376L26.8384 22.0752H27.084Z" fill="black"/>
+<path d="M28.4868 22.5599V22.343L28.6719 22.2607V22.5599H28.9201V22.6978H28.6719V23.388C28.6719 23.4593 28.6719 23.5512 28.8412 23.5512C28.8542 23.5512 28.8836 23.5461 28.9242 23.542V23.6827C28.8634 23.6871 28.8027 23.7008 28.7415 23.7008C28.5653 23.7008 28.4868 23.629 28.4868 23.4993V22.6982H28.2993V22.5599H28.4868Z" fill="black"/>
+<path d="M30.3044 22.7295H30.3089C30.3854 22.5571 30.4803 22.5376 30.6613 22.5376V22.7271C30.6449 22.7244 30.6268 22.7223 30.6114 22.7199C30.5954 22.7179 30.5797 22.7155 30.5619 22.7155C30.3563 22.7155 30.3044 22.8699 30.3044 23.0211V23.6863H30.119V22.5598H30.3044V22.7295Z" fill="black"/>
+<path d="M31.7151 23.1394C31.7151 22.8099 31.7533 22.5374 32.1484 22.5374C32.5435 22.5374 32.5821 22.8099 32.5821 23.1394C32.5821 23.6376 32.3902 23.7086 32.1484 23.7086C31.9067 23.7086 31.7151 23.6376 31.7151 23.1394ZM32.3878 23.0619C32.3878 22.7542 32.2905 22.6869 32.1484 22.6869C32.0064 22.6869 31.9097 22.7538 31.9097 23.0619C31.9097 23.4276 31.9572 23.5597 32.1484 23.5597C32.3407 23.5597 32.3878 23.4276 32.3878 23.0619Z" fill="black"/>
+<path d="M35.6803 23.1394C35.6803 22.8099 35.7182 22.5374 36.1136 22.5374C36.5084 22.5374 36.547 22.8099 36.547 23.1394C36.547 23.6376 36.3551 23.7086 36.1136 23.7086C35.8722 23.7086 35.6803 23.6376 35.6803 23.1394ZM36.353 23.0619C36.353 22.7542 36.2557 22.6869 36.1136 22.6869C35.9716 22.6869 35.8746 22.7538 35.8746 23.0619C35.8746 23.4276 35.9221 23.5597 36.1136 23.5597C36.3055 23.5597 36.353 23.4276 36.353 23.0619Z" fill="black"/>
+<path d="M37.931 22.0752H37.7456V23.6866H37.931V22.0752Z" fill="black"/>
+<path d="M39.2969 23.1821C39.2969 23.4969 39.383 23.5594 39.5271 23.5594C39.6534 23.5594 39.719 23.459 39.7258 23.3449H39.9286C39.9266 23.5952 39.7709 23.7086 39.5318 23.7086C39.2904 23.7086 39.0985 23.6373 39.0985 23.1394C39.0985 22.8092 39.1361 22.5374 39.5318 22.5374C39.8566 22.5374 39.9379 22.7132 39.9379 23.0854V23.1814H39.2969V23.1821ZM39.7408 23.0438C39.7408 22.7159 39.6486 22.6757 39.5131 22.6757C39.3956 22.6757 39.299 22.732 39.2966 23.0438H39.7408Z" fill="black"/>
+<path d="M19.497 22.0752H19.3119V23.6866H19.497V22.0752Z" fill="black"/>
 </svg>
\ No newline at end of file
diff --git a/src/assets/logos/impots.svg b/src/assets/logos/impots.svg
index b34b407ec..ea7ad3fe1 100644
--- a/src/assets/logos/impots.svg
+++ b/src/assets/logos/impots.svg
@@ -1,6 +1,6 @@
-<svg id="impots" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
 <rect y="13" width="40" height="14.4" fill="white"/>
 <path d="M16.6183 25.7296C16.778 25.5712 16.9376 25.4128 17.0827 25.24C17.373 24.9088 17.6633 24.6064 17.9971 24.3184C18.0987 24.232 18.2003 24.1456 18.3019 24.088C18.3309 24.0592 18.3309 24.0016 18.36 23.9728C18.2293 24.0304 18.1423 24.1312 17.9971 24.1888C17.9681 24.1888 17.9391 24.16 17.9681 24.1312C18.0697 24.0592 18.1713 23.9872 18.2584 23.9152H18.2439C18.2148 23.9152 18.2148 23.8864 18.2148 23.8576C17.852 23.8 17.5907 24.0448 17.344 24.2608C17.2859 24.2896 17.2279 24.232 17.2134 24.232C16.807 24.3616 16.5022 24.7216 16.0958 24.88V24.8224C15.9362 24.88 15.7765 24.9808 15.6023 25.0096C15.3556 25.0672 15.1379 25.0384 14.9202 25.0384C14.5864 25.0672 14.2526 25.1392 13.9187 25.2112C13.9042 25.2112 13.9042 25.2112 13.8897 25.2256C13.7155 25.2688 13.5414 25.3408 13.3817 25.4272L13.3237 25.4848C13.2656 25.5424 13.2076 25.6144 13.135 25.6432C12.9608 25.7296 12.8302 25.8736 12.6851 26.0032C12.6705 26.0176 12.656 26.0176 12.6415 26.0176C12.4964 26.1616 12.3512 26.3056 12.2061 26.4352C12.1916 26.4496 12.1481 26.4496 12.119 26.4496C12.119 26.4352 12.1335 26.4352 12.1335 26.4208C12.1626 26.3776 12.1771 26.3488 12.2061 26.3056L12.2932 26.176C12.3367 26.1184 12.3658 26.0608 12.4093 26.0176C12.4238 26.0032 12.4238 25.9888 12.4093 25.9888C12.3948 25.9744 12.3803 25.9744 12.3658 25.9744C12.4964 25.8448 12.6705 25.7296 12.8302 25.6288C12.8157 25.6288 12.7867 25.6144 12.8012 25.6C12.8157 25.5712 12.8302 25.5568 12.8447 25.528C12.8447 25.5136 12.8447 25.5136 12.8592 25.4992C12.8592 25.4848 12.8447 25.4848 12.8447 25.4704L12.7141 25.5568C12.6415 25.6144 12.598 25.7296 12.4964 25.7296H12.4528C12.4383 25.7296 12.4238 25.7296 12.4238 25.7152V25.7008C12.4238 25.6864 12.4383 25.6864 12.4383 25.672C12.4383 25.6576 12.4528 25.6576 12.4528 25.6432C12.4528 25.6432 12.4528 25.6288 12.4674 25.6288C12.4674 25.6144 12.4819 25.6 12.4819 25.6C12.4819 25.5856 12.4964 25.5856 12.4964 25.5712C12.5109 25.5568 12.5254 25.528 12.5254 25.5136C12.5254 25.4992 12.5399 25.4992 12.5399 25.4848C12.5544 25.4704 12.5544 25.456 12.569 25.4416C12.5835 25.4128 12.569 25.3984 12.5544 25.3984C12.598 25.3264 12.6705 25.2832 12.7431 25.24H12.7286C12.8302 25.1824 12.9463 25.1248 13.0479 25.0672L13.0914 25.024C12.9318 25.0816 12.8012 25.1536 12.656 25.24C12.656 25.24 12.627 25.2544 12.6125 25.2688C12.6125 25.2688 12.5835 25.2832 12.5399 25.24V25.2256C12.569 25.168 12.656 25.1392 12.6996 25.096C12.7286 25.096 12.7576 25.096 12.7576 25.1248C13.643 24.448 14.8476 24.6064 15.8636 24.2608C15.9507 24.2032 16.0232 24.1456 16.1103 24.1024C16.2409 24.0448 16.3571 23.9152 16.5167 23.8288C16.7344 23.6704 16.8941 23.4688 16.9811 23.2096C16.9811 23.1808 16.9521 23.152 16.9521 23.152C16.5893 23.5264 16.1829 23.8288 15.7475 24.0448C15.1669 24.3472 14.5428 24.2896 13.9333 24.376C13.9623 24.3184 14.0203 24.3184 14.0639 24.3184C14.0639 24.232 14.1219 24.2032 14.18 24.16H14.2671C14.2961 24.16 14.2961 24.1024 14.3251 24.1024C14.3832 24.1024 14.4703 24.0736 14.4412 24.0736C14.3542 23.9584 14.1945 24.16 14.0639 24.0736C14.1219 24.016 14.0929 23.944 14.151 23.9152H14.2671C14.2671 23.8576 14.3251 23.8 14.3251 23.8C14.7315 23.5552 15.1234 23.368 15.5007 23.152C15.4137 23.152 15.3701 23.2384 15.283 23.1808C15.3411 23.1808 15.283 23.0944 15.3411 23.0944C15.6459 23.008 15.8926 22.8496 16.1974 22.7344C16.0813 22.7344 16.0087 22.8208 15.8926 22.7344C15.9507 22.7056 15.9797 22.648 16.0523 22.648V22.5616C16.0523 22.5328 16.0813 22.5328 16.1103 22.5328C16.0813 22.5328 16.0523 22.504 16.0523 22.504C16.0813 22.4464 16.1684 22.4752 16.2119 22.4176C16.1829 22.4176 16.1248 22.4176 16.1248 22.3888C16.2119 22.2736 16.3425 22.2592 16.4877 22.2304C16.4587 22.1728 16.3716 22.2304 16.3716 22.1728C16.3716 22.144 16.4006 22.144 16.4296 22.144H16.3716C16.3135 22.1152 16.3425 22.0576 16.3425 22.0288C16.5022 21.8416 16.5022 21.5968 16.5893 21.3808C16.5602 21.3808 16.5312 21.3808 16.5312 21.352C16.2555 21.6544 15.82 21.7552 15.4137 21.8704H15.225C15.0944 21.928 14.8912 21.928 14.7605 21.8416C14.6444 21.784 14.6009 21.712 14.4848 21.6256C14.2671 21.496 14.0494 21.3808 13.8026 21.2944C13.1205 21.0784 12.4093 20.9632 11.6981 20.992C12.0029 20.8336 12.3367 20.8192 12.656 20.7184C13.1205 20.5888 13.5559 20.416 14.0494 20.4448C13.9623 20.416 13.8607 20.4448 13.7736 20.4448C13.3962 20.416 13.0044 20.5312 12.598 20.6032C12.3222 20.6608 12.0755 20.7616 11.7997 20.8192C11.6401 20.8768 11.553 21.0352 11.3643 21.0064V20.92C11.6401 20.5888 11.9739 20.272 12.4093 20.2432C12.9028 20.1568 13.3672 20.2432 13.8607 20.3008C14.2235 20.3296 14.5428 20.416 14.9057 20.488C15.0363 20.488 15.0653 20.704 15.1814 20.7328C15.3411 20.7904 15.5153 20.7328 15.6749 20.848C15.6749 20.7904 15.6459 20.7328 15.6749 20.6896C15.791 20.5744 15.9216 20.7184 16.0378 20.6608C16.2555 20.5312 15.8491 20.2864 15.733 20.0848C15.733 20.056 15.762 20.0272 15.762 20.0272C15.9797 20.2144 16.1393 20.4304 16.4151 20.5744C16.5457 20.632 16.8796 20.704 16.8215 20.5456C16.6909 20.2432 16.4151 19.9984 16.1829 19.7248V19.6096C16.1248 19.6096 16.1248 19.5808 16.0958 19.552V19.4368C15.9797 19.3792 16.0087 19.2784 15.9652 19.192C15.8781 19.0624 15.9362 18.8608 15.8781 18.7024C15.82 18.544 15.791 18.4 15.762 18.2416C15.6749 17.7808 15.5733 17.3776 15.5153 16.9312C15.4572 16.4128 15.82 16.0096 16.0668 15.5488C16.2555 15.2176 16.4732 14.9008 16.836 14.6848C16.9231 14.3536 17.1408 14.08 17.3585 13.8208C17.5762 13.5616 17.9391 13.3888 18.2003 13.2736C18.5777 13.1008 18.926 13 18.926 13H0V27.4H13.4543C13.9768 27.0256 14.4993 26.8528 15.225 26.4928C15.5733 26.3488 16.3571 25.9888 16.6183 25.7296ZM12.4093 23.7712C12.3512 23.7712 12.2496 23.8 12.2787 23.7424C12.3077 23.6128 12.4964 23.6128 12.6125 23.5552C12.6705 23.5264 12.7431 23.4688 12.8012 23.4976C12.8592 23.584 12.9318 23.5552 12.9899 23.6128C12.8157 23.7712 12.598 23.6992 12.4093 23.7712ZM8.2003 23.1808C8.2003 23.1808 8.17127 23.152 8.17127 23.1232C8.53412 22.6624 8.79536 22.2304 9.05661 21.7408C9.41946 21.5536 9.70973 21.28 9.9855 20.9776C10.4499 20.488 10.9434 20.056 11.524 19.7824C11.7417 19.696 12.0174 19.7248 12.2351 19.8112C12.1481 19.9264 12.0174 19.8976 11.9013 19.9696C11.8723 19.9696 11.8433 19.9696 11.8142 19.9408C11.8433 19.912 11.8433 19.8832 11.8433 19.8544C11.5675 20.1568 11.1901 20.2864 10.9724 20.6464C10.8128 20.92 10.6967 21.2656 10.3483 21.352C10.2322 21.3808 10.3774 21.2656 10.3193 21.2944C9.463 21.8128 8.86793 22.4464 8.2003 23.1808ZM10.479 21.3808C10.4499 21.4384 10.4209 21.4384 10.3919 21.496C10.3629 21.5536 10.3338 21.5824 10.2758 21.6112C10.2467 21.6112 10.2177 21.6112 10.2177 21.5824C10.2467 21.4672 10.3338 21.3664 10.4354 21.3376C10.479 21.3232 10.479 21.352 10.479 21.3808ZM11.7562 25.456C11.7417 25.4848 11.7126 25.5136 11.6836 25.5424C11.7126 25.5424 11.7417 25.5712 11.7126 25.5856C11.6546 25.6432 11.582 25.7008 11.5094 25.7296H11.4659C11.4369 25.7584 11.3933 25.7872 11.3643 25.8304C11.3353 25.8592 11.1756 25.8448 11.2192 25.8016C11.2917 25.744 11.3498 25.672 11.4224 25.6144C11.4659 25.5856 11.5094 25.5424 11.5385 25.4992C11.553 25.4704 11.5675 25.456 11.5965 25.4416C11.6401 25.4128 11.7852 25.3984 11.7562 25.456ZM11.2627 25.24C11.1466 25.312 11.045 25.384 10.9434 25.456C10.8273 25.528 10.6967 25.5712 10.5806 25.6288C10.566 25.6144 10.5515 25.6144 10.537 25.6144C10.4354 25.672 10.3483 25.744 10.2613 25.8304L10.2177 25.8736L10.1742 25.9168L10.1161 25.9744C10.1016 25.9888 10.1016 26.0032 10.0726 26.0176C10.0581 26.032 10.0145 26.032 10.0145 26.0032C10 26.0176 9.9855 26.0176 9.97098 26.032C9.95647 26.0464 9.94195 26.0464 9.92744 26.0608H9.89841C9.86939 26.0896 9.82584 26.1184 9.79682 26.1472C9.73876 26.2048 9.68071 26.248 9.63717 26.32V26.3344L9.62265 26.3488C9.62265 26.3488 9.62265 26.3632 9.60814 26.3632C9.60814 26.3776 9.59362 26.3776 9.59362 26.392C9.59362 26.392 9.57911 26.4064 9.5646 26.4064L9.55008 26.392C9.55008 26.392 9.55008 26.3776 9.53557 26.3776C9.52105 26.3632 9.52105 26.3488 9.50654 26.3344V26.32C9.53557 26.2912 9.5646 26.2624 9.59362 26.2192C9.60814 26.2048 9.60814 26.1904 9.62265 26.1904C9.63717 26.176 9.65168 26.1472 9.66619 26.1328C9.66619 26.1184 9.68071 26.1184 9.68071 26.104C9.70973 26.0608 9.73876 26.032 9.76779 25.9888L9.7823 25.9744C9.79682 25.96 9.81133 25.9312 9.82584 25.9168C9.84036 25.9024 9.84036 25.888 9.85487 25.8592V25.8448C9.86939 25.816 9.86939 25.8016 9.8839 25.7872V25.7728C9.8839 25.7584 9.8839 25.7584 9.89841 25.744C9.89841 25.7296 9.89841 25.7152 9.91293 25.7008V25.6864C9.94195 25.6288 9.9855 25.5856 10.029 25.5424H10.0145C9.97098 25.5712 9.94195 25.6 9.91293 25.6288C9.8839 25.6576 9.82584 25.6144 9.86939 25.5856C9.89841 25.5712 9.91293 25.5424 9.92744 25.528C9.97098 25.4848 10.0145 25.4272 10.0726 25.384C10.1016 25.3552 10.1306 25.3408 10.1597 25.3264L10.1742 25.312C10.1887 25.2832 10.2177 25.2688 10.2322 25.24C10.4935 24.9952 10.9434 24.9952 11.2772 24.8368C11.4078 24.7792 11.582 24.8656 11.7126 24.8368C11.7997 24.8368 11.8723 24.8368 11.9594 24.8944C11.7126 24.9376 11.4949 25.096 11.2627 25.24ZM11.8287 23.3392C11.7997 23.3104 11.9158 23.3392 11.9449 23.2816H11.7272C11.6981 23.2816 11.6981 23.2528 11.6981 23.224C11.5675 23.2528 11.3933 23.3104 11.2627 23.3392C11.074 23.3968 10.8999 23.5264 10.6822 23.584C10.3774 23.6992 10.1306 23.944 9.81133 24.0448C9.7823 24.0448 9.7823 24.016 9.7823 23.9872C9.81133 23.9008 9.91293 23.872 9.97098 23.8C9.97098 23.7712 9.97098 23.7424 9.94195 23.7424C10.1597 23.44 10.4645 23.2816 10.7402 23.0368V22.9504C10.8273 22.8352 10.9579 22.792 11.016 22.648C11.045 22.5616 11.1611 22.4608 11.2917 22.4032C11.2627 22.3744 11.2047 22.3744 11.2047 22.3168C11.0885 22.3168 10.9869 22.3744 10.8708 22.288C10.9289 22.2448 10.9869 22.216 11.045 22.1872C11.016 22.1872 11.0015 22.1728 10.9869 22.144C10.9579 22.0864 11.045 22.0288 11.1176 22.0144C11.2337 21.9856 11.3643 21.9856 11.4514 21.8992C11.2627 21.8704 11.045 21.9568 10.8418 21.8416C10.9724 21.4816 11.2047 21.1936 11.524 21.0208C11.553 21.0208 11.611 21.0208 11.611 21.0496C11.611 21.1792 11.524 21.2944 11.3933 21.3232C11.611 21.3808 11.8287 21.3808 12.0465 21.4816C12.0174 21.5392 11.9594 21.5104 11.9303 21.5104C12.061 21.5968 12.2351 21.5392 12.3658 21.64C12.2787 21.7264 12.2061 21.64 12.119 21.64C12.9753 21.8848 13.8752 22.072 14.5864 22.6192C13.9768 22.9216 13.3527 23.0512 12.6996 23.1952C12.6125 23.1952 12.569 23.1952 12.4819 23.1664C12.4819 23.1952 12.4819 23.2528 12.4528 23.2528C12.3367 23.2528 12.2642 23.2528 12.1771 23.3104C12.0755 23.3968 11.9158 23.4256 11.8287 23.3392Z" fill="#000091"/>
 <path d="M39.9854 13H24.3982C24.3982 13 24.4272 13 24.5433 13.072C24.6739 13.144 24.8336 13.2304 24.9352 13.2736C25.1384 13.3744 25.327 13.504 25.4577 13.7056C25.5157 13.792 25.5883 13.9504 25.5447 14.0656C25.4867 14.1952 25.4577 14.4256 25.327 14.4688C25.1674 14.5552 24.9497 14.5552 24.7465 14.5264C24.6304 14.5264 24.5288 14.4976 24.4127 14.4688C24.8191 14.6272 25.2109 14.8288 25.4867 15.2032C25.5157 15.2608 25.6173 15.2896 25.7334 15.2896C25.7624 15.2896 25.7624 15.3472 25.7624 15.376C25.7044 15.4336 25.6463 15.4624 25.6754 15.5344H25.7624C25.8931 15.4768 25.8785 15.2032 26.0672 15.2896C26.1978 15.376 26.2559 15.5632 26.1833 15.6928C26.0672 15.808 25.9656 15.88 25.8495 15.9664C25.8205 16.024 25.8205 16.096 25.8495 16.1536C25.9366 16.2688 25.9656 16.3696 25.9801 16.4848C26.0672 16.672 26.0962 16.888 26.1688 17.0896C26.2849 17.4928 26.3865 17.9104 26.3575 18.3136C26.3575 18.5296 26.2414 18.7168 26.3285 18.9328C26.3865 19.1488 26.5171 19.3072 26.6332 19.5088C26.7493 19.6672 26.8509 19.7824 26.938 19.9408C27.0977 20.2144 27.4024 20.488 27.2718 20.8048C27.1847 20.992 26.8945 20.9632 26.6913 21.0784C26.5316 21.208 26.6623 21.4384 26.7493 21.568C26.88 21.8128 26.5897 21.9712 26.3865 22.0432C26.4446 22.1296 26.5462 22.1008 26.5752 22.1584C26.6042 22.288 26.7348 22.3744 26.6623 22.5184C26.5462 22.6768 26.2269 22.7632 26.3865 23.008C26.5026 23.1952 26.43 23.4112 26.3575 23.6128C26.2704 23.8288 26.0817 23.9728 25.864 24.016C25.7044 24.0736 25.5012 24.0736 25.3416 24.0448C25.2835 24.016 25.2254 23.9872 25.1819 23.9872C24.7175 23.9296 24.2531 23.8 23.7886 23.8C23.658 23.8288 23.5129 23.8576 23.4113 23.9008C23.2952 23.9872 23.1791 24.088 23.0775 24.1888C23.063 24.2176 23.0339 24.232 23.0194 24.2608C23.0049 24.2752 22.9904 24.2896 22.9904 24.304L22.9614 24.3328C22.8743 24.4336 22.8163 24.5344 22.7437 24.6496C22.7437 24.664 22.7292 24.664 22.7292 24.664C22.7292 24.6784 22.7147 24.6928 22.7001 24.7072C22.6131 24.8656 22.5405 25.0384 22.497 25.2112C22.3083 25.8304 22.3954 26.3632 22.526 26.4928C22.555 26.5216 23.4258 26.7952 24.0354 27.0688C24.3256 27.1984 24.5143 27.2848 24.6885 27.4H39.9999V13H39.9854Z" fill="#E1000F"/>
-<path d="M25.3266 18.2705C25.4427 18.2993 25.6023 18.2993 25.6023 18.3569C25.5443 18.5728 25.225 18.6304 25.0508 18.8464H24.9637C24.8767 18.904 24.9057 19.0336 24.8331 19.0336C24.746 19.0048 24.6735 19.0336 24.5864 19.0624C24.7025 19.1776 24.8331 19.2496 24.9928 19.2208C25.0218 19.2208 25.0799 19.2784 25.0799 19.336C25.0799 19.336 25.1089 19.336 25.1379 19.3072C25.1669 19.3072 25.196 19.3072 25.196 19.336V19.4512C25.1089 19.5664 24.9783 19.5088 24.8621 19.5376C25.0799 19.5952 25.2976 19.5952 25.5007 19.5376C25.6604 19.48 25.5007 19.2064 25.6169 19.0768C25.5588 19.0768 25.6169 18.9904 25.5588 18.9904C25.6169 18.9328 25.6749 18.8608 25.7185 18.832C25.7765 18.832 25.8491 18.8032 25.8781 18.7456C25.8781 18.688 25.762 18.6592 25.791 18.616C25.9507 18.5008 26.0958 18.3425 26.0378 18.1841C26.0087 18.0977 25.791 18.0977 25.6604 18.0401C25.5298 17.9825 25.3556 18.0401 25.196 18.0689C25.0653 18.0689 24.9202 18.1553 24.7896 18.1841C24.6009 18.2417 24.4267 18.3425 24.2671 18.4577C24.4558 18.3713 24.6444 18.3425 24.8621 18.2993C25.0218 18.2705 25.1524 18.2417 25.3266 18.2705Z" fill="#808080"/>
-</svg>
+<path d="M25.3266 18.2704C25.4427 18.2992 25.6023 18.2992 25.6023 18.3568C25.5443 18.5728 25.225 18.6304 25.0508 18.8464H24.9637C24.8767 18.904 24.9057 19.0336 24.8331 19.0336C24.746 19.0048 24.6735 19.0336 24.5864 19.0624C24.7025 19.1775 24.8331 19.2495 24.9928 19.2207C25.0218 19.2207 25.0799 19.2783 25.0799 19.3359C25.0799 19.3359 25.1089 19.3359 25.1379 19.3071C25.1669 19.3071 25.196 19.3071 25.196 19.3359V19.4511C25.1089 19.5663 24.9783 19.5087 24.8621 19.5375C25.0799 19.5951 25.2976 19.5951 25.5007 19.5375C25.6604 19.4799 25.5007 19.2063 25.6169 19.0768C25.5588 19.0768 25.6169 18.9904 25.5588 18.9904C25.6169 18.9328 25.6749 18.8608 25.7185 18.832C25.7765 18.832 25.8491 18.8032 25.8781 18.7456C25.8781 18.688 25.762 18.6592 25.791 18.616C25.9507 18.5008 26.0958 18.3424 26.0378 18.184C26.0087 18.0976 25.791 18.0976 25.6604 18.04C25.5298 17.9824 25.3556 18.04 25.196 18.0688C25.0653 18.0688 24.9202 18.1552 24.7896 18.184C24.6009 18.2416 24.4267 18.3424 24.2671 18.4576C24.4558 18.3712 24.6444 18.3424 24.8621 18.2992C25.0218 18.2704 25.1524 18.2416 25.3266 18.2704Z" fill="#808080"/>
+</svg>
\ No newline at end of file
diff --git a/src/assets/logos/logement.svg b/src/assets/logos/logement.svg
index 5dfad7c6f..122accbef 100644
--- a/src/assets/logos/logement.svg
+++ b/src/assets/logos/logement.svg
@@ -9,4 +9,4 @@
 <path d="M16.2809 22.1075C16.1131 21.9642 15.8869 21.9642 15.7191 22.1075C14.8518 22.8483 13.5 24 11 26V26.4237V34H21V26.4248V26.4229V26C19 24.5 17.1482 22.8483 16.2809 22.1075Z" fill="#0F5282"/>
 <rect x="13" y="28" width="2" height="2" fill="white"/>
 <rect x="17" y="28" width="2" height="2" fill="white"/>
-</svg>
+</svg>
\ No newline at end of file
diff --git a/src/assets/logos/maisonFranceService.svg b/src/assets/logos/maisonFranceService.svg
index 93ad77c39..718247d5c 100644
--- a/src/assets/logos/maisonFranceService.svg
+++ b/src/assets/logos/maisonFranceService.svg
@@ -1,34 +1,34 @@
-<svg id="france-services" width="120" height="56" viewBox="0 0 120 56" fill="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"/>
-</svg>
+<svg id="france-services" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M13.1836 15.1433C13.1588 15.1195 13.1361 15.1371 13.1123 15.1433L13.0431 15.1753C12.9433 15.2139 12.8484 15.2638 12.76 15.3241C12.7301 15.3427 12.6898 15.353 12.6691 15.3241C12.6484 15.2951 12.6939 15.2724 12.7125 15.2486C12.7734 15.1701 12.8768 15.196 12.9501 15.1453C13.2006 14.9704 13.4806 14.842 13.7766 14.7662C14.2715 14.6277 14.7829 14.5906 15.2849 14.4955C15.6124 14.4335 15.9389 14.3757 16.2148 14.167C16.3356 14.0771 16.4586 13.9851 16.5877 13.9035C16.7872 13.7838 16.9452 13.6056 17.0402 13.3932C17.065 13.3364 17.127 13.262 17.0691 13.2165C17.0299 13.1876 16.9865 13.2785 16.9431 13.3126C16.9214 13.3318 16.9007 13.3522 16.8811 13.3735C16.4565 13.7672 15.9916 14.0967 15.4275 14.2589C14.9895 14.3839 14.5318 14.3622 14.0741 14.4222C14.2219 14.3013 14.3427 14.1628 14.5535 14.138C14.4585 14.0585 14.3882 14.1174 14.3169 14.1287C14.2694 14.137 14.1981 14.1856 14.1857 14.1071C14.1785 14.0606 14.1857 13.9645 14.289 13.9686C14.3128 13.9686 14.3438 13.9769 14.3541 13.948C14.3923 13.8302 14.5039 13.8013 14.5948 13.7496C14.8665 13.5946 15.1424 13.4469 15.4162 13.294C15.444 13.2775 15.4874 13.2744 15.4947 13.231C15.4616 13.2175 15.412 13.2599 15.3986 13.2082C15.3852 13.1566 15.4265 13.1421 15.4709 13.1287C15.7131 13.0404 15.9495 12.9369 16.1786 12.8188C16.1104 12.795 16.0443 12.8394 15.9988 12.7847C16.0278 12.7206 16.1187 12.7299 16.1321 12.6814C16.1548 12.6039 16.1476 12.5181 16.2581 12.5078C16.2726 12.5078 16.2716 12.4882 16.2581 12.4809C16.1838 12.422 16.2664 12.4086 16.2891 12.389C16.3656 12.3239 16.472 12.326 16.566 12.2795C16.4431 12.235 16.3997 12.1565 16.4627 12.0728C16.5856 11.9014 16.6063 11.6978 16.6642 11.5057C16.6724 11.4809 16.6889 11.4499 16.6528 11.4292C16.6166 11.4086 16.5991 11.4292 16.5794 11.453C16.3836 11.6253 16.1501 11.7492 15.8976 11.8146C15.7123 11.8693 15.524 11.9127 15.3335 11.9447C15.2294 11.9705 15.1205 11.9688 15.0173 11.9398C14.914 11.9108 14.8201 11.8556 14.7446 11.7794C14.6756 11.7146 14.5989 11.6584 14.5163 11.6121C13.9233 11.2722 13.2693 11.1513 12.603 11.0718C12.3529 11.0495 12.1018 11.0412 11.8509 11.047C11.9573 10.9912 12.0705 10.9496 12.1877 10.923C12.4759 10.8527 12.7672 10.798 13.0493 10.706C13.2905 10.6209 13.5397 10.5607 13.7931 10.5263L14.1454 10.4994C14.0292 10.4794 13.9104 10.4794 13.7942 10.4994C13.6954 10.4923 13.5962 10.4972 13.4987 10.5139C12.8664 10.6368 12.2218 10.7205 11.6494 11.0501C11.605 11.0759 11.5461 11.0976 11.512 11.0573C11.4779 11.017 11.5296 10.9695 11.5585 10.9313C11.7159 10.7124 11.9267 10.5373 12.1708 10.4229C12.4149 10.3084 12.6843 10.2583 12.9532 10.2773C13.6244 10.3006 14.2917 10.3885 14.9461 10.5397C15.0012 10.546 15.054 10.5652 15.1002 10.596C15.1464 10.6267 15.1845 10.668 15.2116 10.7164C15.23 10.7489 15.2565 10.7761 15.2886 10.7953C15.3206 10.8145 15.3571 10.825 15.3945 10.8259C15.5305 10.8275 15.6652 10.8534 15.7922 10.9023C15.8108 10.705 15.8253 10.6957 16.0112 10.7246H16.035C16.1032 10.737 16.1734 10.7422 16.2127 10.674C16.227 10.6437 16.231 10.6095 16.2241 10.5767C16.2172 10.5439 16.1998 10.5142 16.1745 10.4922C16.0939 10.3982 16.0071 10.3093 15.9244 10.2174C15.8976 10.1874 15.8552 10.1575 15.8914 10.0924C16.0102 10.206 16.1207 10.3155 16.2354 10.4209C16.3746 10.5643 16.5553 10.6604 16.752 10.6957C16.8212 10.705 16.9038 10.736 16.9514 10.675C16.9989 10.6141 16.9338 10.5438 16.9007 10.487C16.76 10.273 16.5999 10.0724 16.4224 9.88781C16.3816 9.85319 16.3515 9.80769 16.3356 9.75661C16.3076 9.6637 16.2676 9.5748 16.2168 9.49213C16.1385 9.34885 16.086 9.19287 16.0618 9.03136C16.0632 8.95683 16.0566 8.88237 16.0422 8.80924C15.9038 8.33814 15.8459 7.84947 15.7323 7.37114C15.6507 7.01575 15.6217 6.66036 15.8056 6.32253C15.9441 6.06942 16.0877 5.8194 16.2313 5.56939C16.4162 5.24912 16.6249 4.94952 16.9421 4.7429C16.9747 4.71852 16.9983 4.684 17.0092 4.64475C17.2396 4.07241 17.5991 3.62093 18.1777 3.36472C18.4504 3.24385 18.7263 3.1302 19.0042 3.00416H18.875C12.7383 3.00416 6.6023 3.00416 0.466973 3.00416C0.335767 3.00416 0.314072 3.04239 0.314072 3.16223C0.314072 7.90354 0.314072 12.6445 0.314072 17.3851C0.314072 17.5143 0.348165 17.5391 0.470072 17.5391C4.78505 17.5349 9.10003 17.5349 13.415 17.5391C13.5212 17.5436 13.626 17.5135 13.7136 17.4533C13.8521 17.3563 13.9983 17.2706 14.1506 17.1971C14.6351 16.9605 15.1217 16.726 15.6114 16.5018C16.2406 16.2136 16.8129 15.8582 17.2561 15.3075C17.5935 14.8839 17.9825 14.5042 18.4143 14.1773C18.4349 14.1664 18.4513 14.1488 18.4606 14.1274C18.47 14.106 18.4719 14.0821 18.4659 14.0595C18.3347 14.0988 18.2593 14.2403 18.1074 14.2383C18.1477 14.1897 18.2014 14.1577 18.2417 14.1143C18.282 14.0709 18.3998 14.0585 18.3678 13.9758C18.3285 13.8725 18.2242 13.9366 18.1477 13.9325C18.1354 13.9346 18.1233 13.9377 18.1116 13.9418C17.8791 13.9913 17.7097 14.1484 17.5361 14.2899C17.502 14.3178 17.469 14.3684 17.4204 14.3426C17.3305 14.2951 17.2613 14.3426 17.189 14.3777C17.0488 14.4482 16.9154 14.5312 16.7902 14.6257C16.6464 14.7366 16.4933 14.8347 16.3325 14.9191C16.2292 14.9707 16.1001 14.9439 15.9895 15.009C15.8046 15.1132 15.5926 15.1596 15.381 15.1422C14.9048 15.1133 14.4512 15.2393 13.9884 15.3282C13.602 15.4026 13.3468 15.6815 13.0503 15.8943C12.8037 16.0737 12.5737 16.2749 12.3633 16.4956C12.3344 16.5245 12.3075 16.5669 12.2435 16.539C12.3197 16.4437 12.3842 16.3397 12.4356 16.2291C12.5059 16.043 12.6444 15.8908 12.823 15.8034C12.8621 15.7818 12.8947 15.7501 12.9172 15.7115C12.9398 15.673 12.9515 15.6291 12.9511 15.5844C12.7693 15.5916 12.7507 15.8602 12.5296 15.8251C12.5873 15.7511 12.6323 15.668 12.6629 15.5792C12.6877 15.4119 12.8137 15.3582 12.9305 15.2869L13.0668 15.2032L13.1268 15.165L13.1774 15.1402L13.1857 15.1205L13.1712 15.1267L13.1836 15.1433ZM26.5511 12.1679C26.6154 12.183 26.6748 12.2146 26.7233 12.2595C26.7718 12.3044 26.8079 12.3611 26.8279 12.4241C26.8515 12.463 26.8603 12.5091 26.8529 12.554C26.8456 12.5988 26.8224 12.6396 26.7877 12.669C26.7246 12.7227 26.6595 12.7723 26.5986 12.8281C26.5583 12.8581 26.5307 12.9021 26.5213 12.9515C26.5119 13.0008 26.5215 13.0519 26.548 13.0946C26.6121 13.2469 26.6252 13.4159 26.5856 13.5764C26.546 13.7368 26.4556 13.8802 26.3279 13.9851C26.2175 14.0661 26.0911 14.1227 25.9572 14.1511C25.8233 14.1796 25.6848 14.1794 25.551 14.1504C25.4477 14.1308 25.3558 14.0947 25.2524 14.0812C24.8692 14.0296 24.4921 13.9304 24.1036 13.9077C23.8966 13.8815 23.6873 13.9347 23.5178 14.0564C22.804 14.6391 22.493 15.3995 22.5674 16.3148C22.5829 16.5132 22.6552 16.6764 22.8835 16.7115C22.9189 16.7207 22.9534 16.7328 22.9868 16.7477C23.5891 16.9595 24.1925 17.1682 24.7524 17.4822C24.8152 17.5187 24.8865 17.5379 24.959 17.538C29.9221 17.538 34.8852 17.538 39.8483 17.538C39.9588 17.538 39.9929 17.5143 39.9929 17.3975C39.9929 12.6452 39.9929 7.89596 39.9929 3.14983C39.9929 3.02586 39.9557 3.00416 39.8411 3.00416C34.8132 3.00416 29.7854 3.00416 24.7576 3.00416C24.7101 2.99449 24.6607 3.0018 24.6181 3.02483L24.7276 3.08578C24.9632 3.22009 25.2173 3.32133 25.4291 3.49903C25.7039 3.72734 25.7556 3.91847 25.6585 4.2439C25.6356 4.33239 25.5841 4.4108 25.5119 4.46688C25.4398 4.52296 25.3511 4.55354 25.2597 4.55384C25.1485 4.56313 25.0367 4.56105 24.926 4.54764C24.8599 4.54041 24.7937 4.53524 24.7194 4.52904C24.7194 4.54454 24.7194 4.55074 24.7194 4.55177C24.7336 4.56037 24.7485 4.56796 24.7638 4.5745C25.112 4.70942 25.4165 4.93743 25.644 5.23363C25.664 5.25715 25.6887 5.27633 25.7164 5.29001C25.7441 5.30369 25.7743 5.31157 25.8052 5.31318C25.9415 5.34004 25.9415 5.339 25.8609 5.45265C25.8382 5.48364 25.8093 5.52187 25.8424 5.55079C25.8602 5.56546 25.8831 5.57249 25.9062 5.57036C25.9292 5.56824 25.9504 5.55712 25.9653 5.53943C26.0078 5.48907 26.0426 5.43266 26.0686 5.37206C26.0752 5.35548 26.0859 5.34079 26.0995 5.3293C26.1132 5.3178 26.1295 5.30987 26.147 5.30619C26.1645 5.30251 26.1826 5.3032 26.1997 5.3082C26.2169 5.31321 26.2325 5.32237 26.2453 5.33487C26.2804 5.35854 26.3097 5.38983 26.331 5.42642C26.3524 5.46301 26.3651 5.50395 26.3684 5.54617C26.3717 5.58839 26.3654 5.63081 26.35 5.67026C26.3345 5.7097 26.3104 5.74515 26.2794 5.77395C26.2132 5.83593 26.1409 5.89172 26.0727 5.94751C26.0501 5.96002 26.0305 5.97725 26.0151 5.99805C25.9998 6.01884 25.9891 6.0427 25.9838 6.068C25.9785 6.0933 25.9787 6.11944 25.9844 6.14465C25.9902 6.16985 26.0012 6.19352 26.0169 6.21405C26.0507 6.27065 26.0794 6.33012 26.1027 6.39175C26.2008 6.70168 26.3021 7.01988 26.3889 7.33705C26.5015 7.7503 26.5852 8.17594 26.4922 8.60675C26.4478 8.83277 26.4938 9.06718 26.6203 9.25968C26.7236 9.43427 26.8362 9.60061 26.9499 9.76797C27.1335 10.0062 27.2957 10.2604 27.4344 10.5273C27.5522 10.7908 27.4581 10.9746 27.1823 11.0563C27.1513 11.0656 27.1193 11.0738 27.0873 11.0811C26.7195 11.1554 26.7453 11.3414 26.8734 11.578L26.8992 11.6203C26.9901 11.7794 26.9726 11.8869 26.8269 11.9964C26.7443 12.0594 26.6564 12.1018 26.5511 12.1679ZM30.7868 26.21C31.3685 26.21 31.9512 26.21 32.5328 26.21C32.6237 26.21 32.6547 26.178 32.6692 26.0974C32.7377 25.7358 32.7454 25.3654 32.6919 25.0013C32.5721 24.2409 32.1929 23.6582 31.5028 23.2956C30.9707 23.0187 30.3984 22.9784 29.8157 23.0662C29.0223 23.1861 28.3879 23.5663 27.9654 24.2564C27.5573 24.927 27.4161 25.7264 27.5697 26.4962C27.7247 27.3847 28.1896 28.0675 29.0016 28.487C29.637 28.8145 30.3178 28.8796 31.0131 28.7825C31.6926 28.6992 32.3159 28.3632 32.7591 27.8413C32.8159 27.7752 32.8334 27.7328 32.7487 27.6677C32.5132 27.488 32.2849 27.2958 32.0545 27.1088C31.885 26.9714 31.885 26.9724 31.7342 27.1264C31.3623 27.5035 30.8995 27.6192 30.3912 27.5995C29.6184 27.5685 29.0708 27.083 28.9448 26.3226C28.9283 26.2265 28.9448 26.2048 29.0409 26.2059C29.6267 26.2131 30.2093 26.2131 30.791 26.2131L30.7868 26.21ZM33.0783 35.2084C33.6517 35.2084 34.2261 35.2084 34.7995 35.2084C34.909 35.2084 34.9379 35.1712 34.9544 35.0741C35.0195 34.7162 35.0247 34.35 34.9699 33.9904C34.8429 33.2218 34.4534 32.6339 33.7467 32.2816C33.2643 32.0558 32.7254 31.9792 32.1991 32.0616C31.3261 32.17 30.6422 32.5781 30.2021 33.3519C29.8646 33.9547 29.735 34.6517 29.8333 35.3355C29.9366 36.162 30.3002 36.8573 31.0079 37.3263C31.8158 37.8604 32.7064 37.94 33.631 37.721C34.1949 37.5911 34.699 37.2761 35.0629 36.8263C35.0929 36.7912 35.1404 36.7602 35.0743 36.7075C34.785 36.4761 34.4968 36.2422 34.2096 36.006C34.1703 35.974 34.1507 35.9802 34.1217 36.0174C33.8118 36.4089 33.3986 36.5804 32.9171 36.6052C32.0142 36.6507 31.3675 36.1765 31.2311 35.3221C31.2166 35.225 31.2311 35.2064 31.3282 35.2064C31.9098 35.2115 32.4956 35.2084 33.0824 35.2084H33.0783ZM8.3796 35.2084C8.94885 35.2084 9.51603 35.2084 10.0884 35.2084C10.2103 35.2084 10.2588 35.1785 10.2764 35.0545C10.3313 34.72 10.3372 34.3793 10.294 34.0431C10.1772 33.2548 9.79187 32.6473 9.06662 32.2868C8.58143 32.0567 8.03803 31.9785 7.50765 32.0626C6.59541 32.1793 5.89806 32.6205 5.46828 33.4459C5.16322 34.0424 5.05473 34.7201 5.15835 35.382C5.26683 36.192 5.62945 36.8707 6.3237 37.3232C7.21941 37.9069 8.19261 37.9638 9.19473 37.6466C9.66127 37.4956 10.0735 37.2116 10.3807 36.8294C10.4117 36.7912 10.4593 36.7591 10.3869 36.7023C10.0987 36.475 9.81563 36.2415 9.53049 36.0081C9.4964 35.9802 9.47471 35.9719 9.44268 36.0143C9.13791 36.4068 8.7195 36.5794 8.2391 36.6052C7.39195 36.6496 6.70596 36.2353 6.55202 35.3396C6.53446 35.2425 6.54169 35.2043 6.65533 35.2064C7.22768 35.2126 7.80519 35.2084 8.38374 35.2084H8.3796ZM0.315105 24.8835C0.315105 26.084 0.315105 27.2855 0.315105 28.487C0.315105 28.5903 0.344032 28.6172 0.445278 28.6161C0.858524 28.6099 1.28004 28.6089 1.69638 28.6161C1.80589 28.6161 1.83275 28.5903 1.83275 28.4808C1.83275 27.5272 1.83275 26.5737 1.83275 25.6201C1.83275 25.5219 1.85858 25.4961 1.95569 25.4972C2.67887 25.4972 3.40205 25.4972 4.12523 25.4972C4.21408 25.4972 4.24404 25.4796 4.24301 25.3835C4.23681 25.0033 4.23681 24.6242 4.24301 24.2471C4.24301 24.151 4.22028 24.1241 4.12213 24.1252C3.40412 24.1252 2.68507 24.1252 1.96706 24.1252C1.86375 24.1252 1.83378 24.1045 1.83482 23.9981C1.84102 23.5528 1.84205 23.1065 1.83482 22.6612C1.83482 22.5497 1.86478 22.5249 1.97222 22.5259C2.83074 22.5259 3.68926 22.5259 4.54778 22.5259C4.64489 22.5259 4.67382 22.5011 4.67175 22.403C4.67175 22.0269 4.66555 21.6519 4.67175 21.2758C4.67175 21.1725 4.64799 21.1467 4.54365 21.1467C3.18131 21.1508 1.81898 21.1508 0.456642 21.1467C0.347132 21.1467 0.322337 21.1736 0.322337 21.282C0.320271 22.4939 0.319238 23.6861 0.319238 24.8835H0.315105ZM12.823 28.1223C12.823 28.2731 12.823 28.3971 12.823 28.52C12.823 28.5996 12.8478 28.6161 12.9263 28.6151C13.3096 28.6151 13.6939 28.6099 14.0783 28.6151C14.1702 28.6151 14.195 28.5934 14.194 28.4994C14.194 27.3433 14.2095 26.1862 14.1857 25.0312C14.1692 24.1965 13.7725 23.5766 12.9935 23.2357C12.5531 23.0532 12.0733 22.9867 11.5998 23.0425C11.2363 23.0676 10.882 23.1676 10.559 23.3361C10.2359 23.5047 9.95121 23.7381 9.72265 24.0219C9.67203 24.0838 9.68133 24.1117 9.74022 24.1562C10.0274 24.3724 10.3122 24.5908 10.5946 24.8112C10.6576 24.8608 10.6824 24.8504 10.7258 24.7884C10.8364 24.6234 10.9839 24.4862 11.1565 24.3878C11.3292 24.2894 11.5223 24.2324 11.7207 24.2213C12.3871 24.1644 12.8458 24.5673 12.8303 25.1955C12.8303 25.2595 12.8179 25.2874 12.7466 25.2988C12.3468 25.3608 11.949 25.4321 11.5502 25.4961C11.1654 25.5422 10.7906 25.6507 10.4407 25.8174C9.52223 26.2947 9.24949 27.4156 9.87659 28.2122C10.3064 28.7577 10.9097 28.8744 11.5595 28.799C12.0519 28.7402 12.5043 28.4987 12.8272 28.1223H12.823ZM16.9555 23.6375C16.9555 23.5094 16.9555 23.4154 16.9555 23.3214C16.9555 23.2543 16.9328 23.2388 16.8697 23.2388C16.4648 23.2388 16.0608 23.2388 15.6558 23.2388C15.5825 23.2388 15.5691 23.2625 15.5691 23.3297C15.5691 25.0605 15.5691 26.791 15.5691 28.5211C15.5691 28.6017 15.5959 28.6151 15.6724 28.6151C16.0557 28.6151 16.44 28.6089 16.8243 28.6151C16.9276 28.6151 16.9617 28.5913 16.9607 28.4798C16.9607 27.3898 16.9607 26.2999 16.9607 25.2089C16.9529 25.1558 16.9608 25.1016 16.9834 25.0529C17.2158 24.6717 17.5206 24.3897 17.9814 24.3132C18.5258 24.2244 18.9959 24.4868 19.1633 24.9816C19.2156 25.143 19.2411 25.312 19.2387 25.4817C19.2387 26.4848 19.2387 27.488 19.2387 28.4921C19.2387 28.5882 19.2635 28.6161 19.3616 28.6151C19.7377 28.6089 20.1127 28.6089 20.4887 28.6151C20.5869 28.6151 20.6107 28.5893 20.6107 28.4921C20.6107 27.6874 20.6107 26.8815 20.6107 26.0767C20.6236 25.7136 20.6153 25.35 20.5859 24.9878C20.5249 24.4713 20.371 24.0012 20.0011 23.6272C19.4122 23.0301 18.6901 22.9299 17.908 23.1107C17.5515 23.2002 17.2248 23.3819 16.9607 23.6375H16.9555ZM23.897 34.9471C23.8939 35.0749 23.9015 35.2027 23.9197 35.3293C24.0396 36.2126 24.4456 36.9193 25.2101 37.3955C25.83 37.7788 26.5077 37.8863 27.2195 37.8088C27.5759 37.7763 27.9223 37.6735 28.2388 37.5065C28.5553 37.3395 28.8356 37.1115 29.0636 36.8356C29.1204 36.7674 29.1122 36.7385 29.044 36.6879C28.7334 36.4557 28.4255 36.2199 28.1204 35.9802C28.0512 35.9254 28.0222 35.9378 27.9695 36.0029C27.7328 36.3058 27.3864 36.5034 27.0051 36.5529C26.6239 36.6024 26.2384 36.4998 25.9322 36.2674C25.3547 35.8324 25.2039 35.2239 25.3403 34.5452C25.4632 33.9325 25.8393 33.5121 26.4529 33.3623C27.0666 33.2125 27.5893 33.3757 27.9819 33.8788C28.0222 33.9315 28.045 33.9439 28.1038 33.8974C28.4138 33.6515 28.7361 33.4067 29.0574 33.1691C29.1277 33.1174 29.1091 33.0854 29.0667 33.0358C28.9449 32.8854 28.8063 32.7495 28.6535 32.6308C27.7443 31.9624 26.7463 31.8735 25.708 32.2331C24.5923 32.6184 23.9022 33.6743 23.9022 34.9471H23.897ZM24.4952 23.027C24.3836 23.0363 24.21 23.0425 24.0396 23.0683C23.2864 23.183 22.6531 23.5146 22.1944 24.1334C21.6489 24.87 21.5053 25.7007 21.6872 26.5871C21.7598 26.9888 21.9238 27.3684 22.1665 27.6965C22.4093 28.0247 22.7242 28.2927 23.087 28.4798C23.6214 28.7577 24.2255 28.873 24.8247 28.8114C25.2008 28.7913 25.5686 28.6939 25.9053 28.5252C26.242 28.3565 26.5403 28.1202 26.7815 27.831C26.8362 27.7648 26.8372 27.7328 26.766 27.6801C26.456 27.4487 26.1461 27.2132 25.8424 26.9735C25.7711 26.9177 25.739 26.9301 25.6894 26.9941C25.4503 27.2989 25.1001 27.4965 24.7156 27.5438C24.3311 27.591 23.9435 27.484 23.6377 27.2462C23.0767 26.8082 22.93 26.2059 23.0664 25.5385C23.1893 24.9279 23.5612 24.5054 24.178 24.3556C24.7948 24.2058 25.3144 24.368 25.706 24.8721C25.7607 24.9413 25.7897 24.9217 25.8424 24.8814C26.1523 24.6448 26.456 24.4072 26.767 24.1768C26.8465 24.1179 26.8383 24.0838 26.7804 24.0157C26.1988 23.3307 25.4415 23.0435 24.5003 23.027H24.4952ZM17.844 36.0515C17.8202 35.9926 17.8037 35.9554 17.7903 35.9171C17.3584 34.7339 16.9276 33.5503 16.4978 32.3663C16.4898 32.3271 16.4669 32.2926 16.434 32.2698C16.4011 32.2471 16.3606 32.238 16.3212 32.2444C15.9213 32.2506 15.5205 32.2506 15.1207 32.2444C15.0101 32.2444 15.0019 32.2703 15.037 32.3674C15.6651 34.0844 16.2891 35.8025 16.909 37.5216C16.9379 37.6011 16.9772 37.6146 17.0516 37.6135C17.5681 37.6135 18.0919 37.6135 18.6116 37.6135C18.647 37.6196 18.6834 37.6117 18.7131 37.5915C18.7428 37.5712 18.7634 37.5402 18.7707 37.505C18.9628 36.9616 19.1622 36.4203 19.3585 35.8789C19.7835 34.7081 20.2088 33.5355 20.6344 32.3612C20.654 32.3074 20.7047 32.2434 20.5817 32.2444C20.152 32.2444 19.7232 32.2444 19.2934 32.2444C19.2713 32.2414 19.2489 32.247 19.2308 32.2601C19.2127 32.2732 19.2004 32.2927 19.1963 32.3147C19.1478 32.4552 19.093 32.5936 19.0455 32.7331C18.6477 33.8334 18.2521 34.9316 17.844 36.0515ZM38.0434 32.0347C37.7743 32.0291 37.5065 32.0729 37.2531 32.1638C36.6126 32.4004 36.1962 32.8364 36.1291 33.5348C36.063 34.2166 36.3357 34.7466 36.9204 35.1093C37.1697 35.2544 37.4306 35.3784 37.7005 35.4801C37.9337 35.5622 38.1578 35.6685 38.3689 35.7973C38.7418 36.0484 38.5879 36.4874 38.2924 36.6124C38.0722 36.7016 37.8271 36.7082 37.6023 36.631C37.2844 36.5215 37.0061 36.3202 36.8027 36.0525C36.7417 35.9781 36.7128 35.9812 36.6477 36.0473C36.4039 36.2932 36.1556 36.5343 35.9028 36.7705C35.8377 36.8325 35.846 36.8738 35.9028 36.9265C36.6332 37.6993 37.5279 37.9762 38.5579 37.753C39.5342 37.5412 40.0859 36.6538 39.8834 35.6764C39.7925 35.2384 39.528 34.9233 39.1602 34.6846C38.84 34.4976 38.5031 34.3406 38.154 34.2156C37.9632 34.1487 37.7836 34.0536 37.6209 33.9336C37.5628 33.8928 37.5169 33.8369 37.4884 33.7719C37.4598 33.7069 37.4496 33.6353 37.4589 33.5649C37.4681 33.4945 37.4965 33.428 37.5409 33.3726C37.5853 33.3172 37.6441 33.275 37.7108 33.2507C37.8659 33.18 38.0389 33.1584 38.2067 33.1887C38.5662 33.2496 38.8214 33.4728 39.0456 33.7404C39.089 33.792 39.1117 33.8044 39.1664 33.7507C39.4144 33.509 39.6644 33.2693 39.9196 33.0337C39.9919 32.9676 39.9898 32.9304 39.9258 32.856C39.6868 32.5953 39.3958 32.3875 39.0716 32.2461C38.7474 32.1046 38.3972 32.0326 38.0434 32.0347ZM2.19434 32.0347C1.87964 32.032 1.56762 32.0928 1.27694 32.2134C0.0217008 32.7476 0.0371973 34.2559 0.785173 34.8995C1.08961 35.1399 1.43124 35.3291 1.79659 35.4595C2.04214 35.544 2.27854 35.653 2.50221 35.7849C2.65821 35.8882 2.76566 36.0256 2.73673 36.2281C2.72432 36.3253 2.68317 36.4165 2.61856 36.4901C2.55395 36.5638 2.46883 36.6164 2.3741 36.6414C2.20389 36.6943 2.02249 36.7 1.84928 36.6579C1.47219 36.5721 1.19429 36.3376 0.954604 36.0515C0.889517 35.975 0.858524 35.9864 0.796537 36.0515C0.548589 36.2994 0.296509 36.5443 0.043396 36.786C-0.00619355 36.8335 -0.010326 36.8614 0.043396 36.9141C0.778974 37.7034 1.68398 37.9978 2.7295 37.754C3.90415 37.4792 4.25334 36.4192 4.01469 35.5762C3.87832 35.0927 3.53223 34.7931 3.10658 34.5669C2.81524 34.4119 2.50324 34.3024 2.20054 34.1733C2.03721 34.1147 1.88596 34.0268 1.75423 33.9139C1.70415 33.8731 1.66534 33.8202 1.64147 33.7601C1.6176 33.7001 1.60948 33.6349 1.61786 33.5709C1.62624 33.5068 1.65086 33.4459 1.68937 33.3941C1.72789 33.3422 1.77902 33.301 1.83792 33.2744C2.00008 33.1886 2.18676 33.1609 2.36687 33.1959C2.71193 33.2527 2.96505 33.4604 3.17993 33.7197C3.24605 33.7982 3.28325 33.8055 3.3566 33.73C3.58939 33.4966 3.8277 33.2686 4.07151 33.0461C4.14796 32.9769 4.15416 32.9366 4.08391 32.8612C3.56839 32.3085 2.93302 32.0533 2.19434 32.0337V32.0347ZM7.04998 23.7584C7.04998 23.5993 7.04998 23.4722 7.04998 23.3452C7.04998 23.2708 7.03965 23.2419 6.95184 23.2419C6.55925 23.247 6.1677 23.2419 5.77512 23.2419C5.69557 23.2419 5.67181 23.2615 5.67181 23.3452C5.67181 25.067 5.67181 26.7889 5.67181 28.5107C5.67181 28.5975 5.69764 28.6213 5.78338 28.6203C6.16357 28.6203 6.54272 28.6141 6.91981 28.6203C7.02312 28.6203 7.04792 28.5924 7.04792 28.4911C7.04792 27.5045 7.05618 26.5179 7.03759 25.5312C7.0323 25.4149 7.05519 25.299 7.10429 25.1935C7.15339 25.0879 7.22727 24.9957 7.31963 24.9248C7.43774 24.8215 7.57214 24.7384 7.71738 24.6789C8.0746 24.5429 8.46532 24.5216 8.83521 24.618C8.91269 24.6355 8.92612 24.618 8.92509 24.5467C8.92509 24.1334 8.92509 23.7202 8.92509 23.3069C8.92509 23.2264 8.89513 23.2036 8.82178 23.185C8.45766 23.1003 8.07607 23.1332 7.73184 23.2791C7.47705 23.393 7.24687 23.5555 7.05412 23.7574L7.04998 23.7584ZM12.7528 32.761C12.7528 32.6081 12.7455 32.4841 12.7528 32.3612C12.761 32.263 12.7228 32.2465 12.634 32.2475C12.2548 32.2475 11.8746 32.2527 11.4975 32.2475C11.4066 32.2475 11.3808 32.2672 11.3808 32.3622C11.3808 34.0765 11.3808 35.7904 11.3808 37.504C11.3808 37.6073 11.4118 37.6166 11.4986 37.6156C11.8664 37.6104 12.2342 37.6084 12.6009 37.6156C12.7197 37.6156 12.759 37.596 12.7579 37.4658C12.7507 36.4905 12.7652 35.5163 12.7466 34.541C12.7403 34.4206 12.7638 34.3006 12.8152 34.1915C12.8666 34.0824 12.9442 33.9878 13.041 33.916C13.1042 33.8633 13.1712 33.8153 13.2414 33.7724C13.6413 33.5348 14.0679 33.5255 14.5111 33.6123C14.601 33.6309 14.633 33.6257 14.631 33.5214C14.6248 33.1205 14.6248 32.72 14.631 32.3198C14.631 32.2269 14.5938 32.201 14.5153 32.1835C14.1421 32.1003 13.752 32.1406 13.4036 32.2981C13.1624 32.4125 12.9434 32.5689 12.7569 32.7599L12.7528 32.761ZM21.3958 34.9357C21.3958 35.7939 21.3958 36.6524 21.3958 37.5112C21.3958 37.5867 21.4082 37.6146 21.4991 37.6146C21.8948 37.6094 22.2915 37.6094 22.6872 37.6146C22.774 37.6146 22.7905 37.5846 22.7905 37.5112C22.7905 35.7956 22.7905 34.0789 22.7905 32.3612C22.7905 32.2579 22.7575 32.2475 22.6707 32.2486C22.2905 32.2486 21.9113 32.2537 21.5343 32.2486C21.4309 32.2486 21.4041 32.2713 21.4041 32.3767C21.402 33.2259 21.4 34.0803 21.4 34.9347L21.3958 34.9357ZM21.1975 30.5109C21.1972 30.7441 21.2893 30.968 21.4537 31.1336C21.6181 31.2991 21.8413 31.3928 22.0746 31.3942C22.1949 31.4028 22.3158 31.3867 22.4296 31.3467C22.5435 31.3067 22.6479 31.2437 22.7363 31.1617C22.8248 31.0796 22.8955 30.9803 22.944 30.8698C22.9924 30.7593 23.0177 30.64 23.0181 30.5193C23.0185 30.3987 22.9941 30.2792 22.9464 30.1684C22.8988 30.0575 22.8288 29.9577 22.7409 29.875C22.653 29.7924 22.549 29.7287 22.4355 29.6879C22.3219 29.6471 22.2012 29.63 22.0808 29.6379C21.8491 29.6387 21.627 29.7306 21.4625 29.8937C21.298 30.0569 21.2043 30.2782 21.2016 30.5098L21.1975 30.5109ZM24.521 8.41252C24.5768 8.43732 24.6171 8.41252 24.6584 8.39599C24.988 8.30921 25.3186 8.25342 25.6574 8.34227C25.768 8.3712 25.7793 8.39806 25.706 8.48794C25.6467 8.55703 25.5739 8.61328 25.4921 8.65324C25.3562 8.73343 25.2272 8.82502 25.1068 8.92701C25.0283 8.98797 24.9952 9.09231 24.865 9.06855C24.833 9.06235 24.7834 9.06855 24.7741 9.11194C24.7648 9.15533 24.8144 9.1574 24.834 9.18116C24.9477 9.3134 25.1533 9.22042 25.271 9.36092C25.2907 9.38468 25.3434 9.38572 25.3423 9.44151C25.3443 9.46684 25.3362 9.49193 25.3197 9.51129C25.3033 9.53066 25.2798 9.54271 25.2545 9.54482C25.1905 9.55618 25.1254 9.56135 25.0479 9.57168C25.181 9.61539 25.3222 9.6288 25.4611 9.61094C25.7153 9.59751 25.7401 9.56651 25.7339 9.31443C25.7287 9.28609 25.7287 9.25703 25.7339 9.22868C25.7669 9.12537 25.6987 9.00966 25.8041 8.91875C25.8531 8.88214 25.9079 8.85418 25.9663 8.8361C26.0221 8.81544 26.0696 8.77308 26.0097 8.71833C25.9498 8.66357 25.9767 8.62844 26.0273 8.58712C26.1192 8.52234 26.186 8.42783 26.2163 8.31954C26.2318 8.24929 26.2277 8.17594 26.1564 8.15011C26.0002 8.07611 25.8302 8.03531 25.6574 8.03027C25.3352 8.05404 25.0201 8.13668 24.7276 8.27409C24.6522 8.30699 24.5836 8.35358 24.5251 8.41149L24.521 8.41252Z" fill="#FEFEFE"/>
+<path d="M13.0687 15.2042L12.9323 15.2878C12.8156 15.3591 12.6895 15.4128 12.6647 15.5802C12.6341 15.6689 12.5891 15.752 12.5315 15.8261C12.7526 15.8612 12.7712 15.5926 12.953 15.5854C12.9533 15.63 12.9416 15.674 12.9191 15.7125C12.8965 15.7511 12.864 15.7828 12.8249 15.8044C12.6463 15.8918 12.5077 16.044 12.4375 16.23C12.386 16.3406 12.3215 16.4447 12.2453 16.54C12.3094 16.5679 12.3362 16.5255 12.3651 16.4966C12.5756 16.2759 12.8055 16.0746 13.0522 15.8953C13.3487 15.6825 13.6038 15.4035 13.9902 15.3292C14.452 15.2403 14.9066 15.1143 15.3829 15.1432C15.5945 15.1606 15.8064 15.1142 15.9914 15.0099C16.1019 14.9448 16.2269 14.9717 16.3344 14.92C16.4951 14.8357 16.6483 14.7375 16.792 14.6266C16.9172 14.5321 17.0507 14.4491 17.1908 14.3787C17.2631 14.3456 17.3324 14.296 17.4222 14.3436C17.4708 14.3694 17.5039 14.3188 17.5379 14.2909C17.7115 14.1442 17.8809 13.9923 18.1134 13.9427C18.1252 13.9387 18.1373 13.9355 18.1496 13.9334C18.226 13.9334 18.3304 13.8766 18.3696 13.9768C18.4016 14.0595 18.287 14.0688 18.2436 14.1152C18.2002 14.1617 18.1496 14.1907 18.1093 14.2392C18.2591 14.2392 18.3365 14.0998 18.4678 14.0605C18.4737 14.0831 18.4719 14.107 18.4625 14.1284C18.4531 14.1498 18.4368 14.1674 18.4161 14.1783C17.9844 14.5052 17.5953 14.8849 17.258 15.3085C16.8148 15.8591 16.2424 16.2145 15.6133 16.5028C15.1236 16.727 14.637 16.9615 14.1524 17.1981C14.0001 17.2716 13.854 17.3572 13.7154 17.4543C13.6278 17.5145 13.523 17.5446 13.4169 17.54C9.10256 17.54 4.78759 17.54 0.471919 17.54C0.350011 17.54 0.315918 17.5152 0.315918 17.3861C0.315918 12.6448 0.315918 7.90381 0.315918 3.16319C0.315918 3.04335 0.337614 3.00513 0.468819 3.00513C6.60415 3.00513 12.7402 3.00513 18.8769 3.00513H19.006C18.7281 3.13117 18.4523 3.24481 18.1795 3.36568C17.601 3.6219 17.2414 4.07337 17.0111 4.64571C17.0002 4.68496 16.9765 4.71949 16.9439 4.74386C16.6267 4.95048 16.4181 5.25215 16.2331 5.57035C16.0895 5.82037 15.9459 6.07038 15.8075 6.32349C15.6236 6.66132 15.6525 7.01671 15.7341 7.37211C15.8436 7.85044 15.9015 8.3391 16.0441 8.8102C16.0585 8.88334 16.065 8.95779 16.0637 9.03232C16.0879 9.19383 16.1403 9.34981 16.2187 9.49309C16.2695 9.57577 16.3094 9.66466 16.3375 9.75757C16.3534 9.80865 16.3835 9.85415 16.4242 9.88877C16.6018 10.0734 16.7619 10.274 16.9026 10.488C16.9356 10.5448 17.0059 10.6078 16.9532 10.676C16.9005 10.7442 16.823 10.706 16.7538 10.6967C16.5571 10.6613 16.3765 10.5652 16.2373 10.4219C16.1226 10.3185 16.012 10.207 15.8932 10.0933C15.8571 10.1584 15.8994 10.1884 15.9263 10.2183C16.0089 10.3103 16.0957 10.3991 16.1763 10.4931C16.2016 10.5152 16.219 10.5448 16.2259 10.5776C16.2328 10.6105 16.2288 10.6446 16.2145 10.675C16.1753 10.7432 16.105 10.738 16.0368 10.7256H16.0131C15.8271 10.6946 15.8126 10.706 15.794 10.9033C15.6671 10.8543 15.5324 10.8284 15.3963 10.8268C15.3585 10.8262 15.3215 10.8157 15.2891 10.7963C15.2566 10.7769 15.2298 10.7493 15.2114 10.7163C15.1843 10.6679 15.1461 10.6266 15.1 10.5959C15.0538 10.5652 15.001 10.5459 14.9459 10.5396C14.2904 10.3893 13.622 10.3024 12.9499 10.2803C12.6809 10.2613 12.4116 10.3114 12.1675 10.4259C11.9234 10.5404 11.7126 10.7154 11.5552 10.9343C11.5263 10.9725 11.4705 11.0138 11.5087 11.0603C11.5469 11.1068 11.6017 11.0789 11.6461 11.0531C12.2184 10.7215 12.8631 10.6398 13.4954 10.5169C13.5929 10.5002 13.6921 10.4953 13.7908 10.5024C13.7919 10.51 13.7919 10.5176 13.7908 10.5252C13.5374 10.5596 13.2882 10.6198 13.047 10.7049C12.765 10.7969 12.4736 10.8516 12.1854 10.9219C12.0685 10.9492 11.9556 10.9916 11.8496 11.0479C12.1006 11.0421 12.3517 11.0504 12.6017 11.0727C13.2681 11.1523 13.922 11.2731 14.5151 11.613C14.5977 11.6594 14.6743 11.7156 14.7434 11.7804C14.8189 11.8565 14.9128 11.9118 15.016 11.9407C15.1192 11.9697 15.2282 11.9714 15.3322 11.9457C15.5227 11.9137 15.7111 11.8702 15.8963 11.8155C16.1488 11.7501 16.3824 11.6263 16.5782 11.4539C16.5978 11.4343 16.6174 11.4095 16.6515 11.4302C16.6856 11.4508 16.6712 11.4818 16.6629 11.5066C16.605 11.6988 16.5844 11.9023 16.4614 12.0738C16.4026 12.1565 16.4459 12.235 16.5648 12.2804C16.4707 12.3269 16.3643 12.3249 16.2879 12.3899C16.2652 12.4096 16.1846 12.423 16.2569 12.4819C16.2672 12.4891 16.2683 12.5077 16.2569 12.5088C16.1463 12.5191 16.1536 12.6048 16.1308 12.6823C16.1174 12.7298 16.0275 12.7205 15.9976 12.7856C16.043 12.8404 16.1092 12.796 16.1773 12.8197C15.9482 12.9379 15.7119 13.0414 15.4697 13.1297C15.4252 13.1431 15.3839 13.1575 15.3973 13.2092C15.4108 13.2609 15.4604 13.2185 15.4934 13.2319C15.4862 13.2753 15.4428 13.2784 15.4149 13.295C15.1411 13.4479 14.8653 13.5956 14.5936 13.7506C14.5027 13.8022 14.3869 13.8311 14.3529 13.9489C14.3425 13.9778 14.3115 13.9706 14.2878 13.9696C14.1845 13.9696 14.1845 14.0615 14.1845 14.108C14.1969 14.1865 14.2681 14.138 14.3157 14.1297C14.3869 14.1183 14.4572 14.0595 14.5522 14.139C14.3456 14.1638 14.2206 14.3022 14.0729 14.4231C14.5306 14.3673 14.9882 14.3849 15.4263 14.2599C15.9903 14.0998 16.4594 13.7681 16.8799 13.3745C16.8995 13.3532 16.9202 13.3328 16.9418 13.3136C16.9852 13.2795 17.0286 13.1885 17.0679 13.2175C17.1257 13.2629 17.0679 13.3373 17.039 13.3941C16.9439 13.6066 16.786 13.7847 16.5865 13.9045C16.4573 13.9861 16.3344 14.0781 16.2135 14.1679C15.9325 14.3746 15.606 14.4345 15.2837 14.4965C14.7816 14.5915 14.2702 14.6287 13.7753 14.7671C13.4793 14.8429 13.1994 14.9714 12.9489 15.1463C12.8755 15.2 12.7722 15.1742 12.7112 15.2496C12.6926 15.2734 12.6441 15.2868 12.6678 15.325C12.6916 15.3633 12.7288 15.3457 12.7588 15.325C12.8471 15.2648 12.9421 15.2148 13.0418 15.1763L13.0687 15.2042ZM11.9881 13.4293C12.0313 13.4479 12.0779 13.4576 12.1249 13.4576C12.172 13.4576 12.2186 13.4479 12.2618 13.4293C12.453 13.3631 12.6399 13.2743 12.8517 13.2939C12.8723 13.2927 12.8925 13.2882 12.9117 13.2805C13.1441 13.2288 13.3786 13.1772 13.61 13.1235C13.9958 13.0321 14.3701 12.8976 14.7258 12.7226C14.0336 12.1978 13.2185 12.0139 12.4168 11.7804C12.4385 11.7577 12.4829 11.7721 12.4829 11.738C12.4829 11.704 12.4457 11.6978 12.422 11.6916C12.3496 11.673 12.2763 11.6616 12.205 11.6451C12.1812 11.6451 12.1348 11.6451 12.141 11.6234C12.1792 11.5035 12.0686 11.5304 12.0273 11.5201C11.8723 11.4756 11.7122 11.4467 11.5397 11.4095C11.6234 11.3661 11.6915 11.3269 11.7184 11.2463C11.7329 11.205 11.7628 11.1585 11.7184 11.1223C11.674 11.0862 11.642 11.1223 11.6058 11.1409C11.4015 11.2616 11.2345 11.4364 11.1233 11.6461C11.0717 11.736 10.9622 11.8527 11.0128 11.9281C11.0634 12.0036 11.2194 11.9901 11.3372 11.9891C11.4137 11.9759 11.4922 11.9787 11.5676 11.9974C11.5258 12.037 11.4727 12.0626 11.4157 12.0707C11.338 12.0796 11.2619 12.0991 11.1895 12.1286C11.1223 12.1678 11.0799 12.2122 11.1709 12.2753C11.1192 12.3094 11.0552 12.3156 11.0283 12.3786C11.0528 12.3977 11.0816 12.4106 11.1121 12.4164C11.1426 12.4221 11.1741 12.4205 11.2039 12.4116C11.2419 12.3968 11.2839 12.3966 11.3221 12.4109C11.3602 12.4252 11.3917 12.453 11.4105 12.4891C11.1626 12.5924 11.1078 12.8838 10.894 13.0191C10.8892 13.0231 10.8854 13.0282 10.8828 13.0339C10.8803 13.0397 10.8792 13.0459 10.8795 13.0522C10.8899 13.1224 10.8413 13.1555 10.7958 13.1896C10.6378 13.3156 10.4859 13.4551 10.3206 13.5667C10.1553 13.6782 10.1305 13.9231 9.94868 14.0316C9.9421 14.0347 9.93622 14.0392 9.93143 14.0447C9.92663 14.0502 9.923 14.0567 9.92078 14.0636C9.91856 14.0706 9.91778 14.0779 9.91849 14.0852C9.9192 14.0925 9.92139 14.0996 9.92492 14.1059C9.94868 14.14 9.97761 14.1142 10.0024 14.1059C10.0597 14.0831 10.1156 14.0569 10.1698 14.0274C10.4427 13.8555 10.7267 13.7019 11.02 13.5677C11.3517 13.4272 11.6688 13.2774 12.0397 13.3538C12.0459 13.357 12.0514 13.3612 12.0562 13.3662C12.0531 13.4076 11.9963 13.3838 11.9881 13.4293ZM12.3631 9.85158C12.2316 9.79419 12.0887 9.76779 11.9454 9.77442C11.8021 9.78104 11.6622 9.82052 11.5366 9.88981C11.0238 10.1839 10.5613 10.5581 10.1667 10.9983C9.91274 11.2869 9.61917 11.5381 9.29472 11.7442C9.23058 11.7807 9.17905 11.8359 9.14699 11.9023C8.92924 12.3286 8.67482 12.7351 8.38661 13.1173C8.36492 13.1462 8.3205 13.1689 8.33599 13.2206C8.38352 13.2268 8.39695 13.1865 8.41864 13.1617C8.69552 12.8517 8.97446 12.5511 9.27509 12.268C9.61293 11.9464 9.98027 11.6572 10.3723 11.4044C10.4146 11.3765 10.4477 11.3651 10.4849 11.4044C10.5221 11.4436 10.4601 11.457 10.4518 11.4849C10.4435 11.5128 10.427 11.519 10.4198 11.5376C10.4126 11.5562 10.365 11.6089 10.3971 11.6347C10.4291 11.6606 10.4787 11.6234 10.5086 11.5903C10.5221 11.5748 10.5283 11.5521 10.5438 11.5387C10.6006 11.487 10.5902 11.3837 10.6409 11.3506C10.8341 11.2225 10.9343 11.0304 11.0345 10.8341C11.1126 10.6713 11.2226 10.5259 11.3579 10.4064C11.5572 10.24 11.7804 10.1047 11.9715 9.9177C11.9912 9.95799 11.987 10.0282 12.0407 9.99828C12.141 9.9456 12.266 9.94766 12.3631 9.85158ZM12.1027 14.8963C11.9199 14.8095 11.7535 14.8663 11.5986 14.8291C11.5287 14.815 11.4562 14.824 11.3919 14.855C11.2748 14.9073 11.1516 14.9448 11.0252 14.9665C10.6637 15.0249 10.3364 15.2143 10.1057 15.4986C10.0778 15.5306 9.91253 15.5647 10.0706 15.6525C10.0706 15.6525 10.0592 15.6825 10.0572 15.698C10.0422 15.8049 10.0002 15.9062 9.93525 15.9924C9.8557 16.1019 9.77202 16.2094 9.68627 16.3158C9.65631 16.354 9.63978 16.3912 9.68627 16.4191C9.73276 16.447 9.73586 16.3953 9.75653 16.3747C9.8836 16.2507 9.97245 16.0647 10.1966 16.0906C10.2111 16.0906 10.2297 16.0678 10.2442 16.0534C10.3967 15.8791 10.5887 15.7437 10.8041 15.6587C11.27 15.4893 11.6316 15.1267 12.1027 14.8963ZM13.0987 13.6875C12.9612 13.5842 12.829 13.5512 12.6854 13.6534C12.6418 13.6757 12.5952 13.6913 12.547 13.6999C12.5074 13.711 12.4716 13.7328 12.4437 13.763C12.4261 13.7847 12.3992 13.8105 12.4178 13.8384C12.4364 13.8663 12.4623 13.8539 12.485 13.8508C12.6461 13.826 12.8073 13.8022 12.9674 13.7723C13.0206 13.7623 13.0677 13.7319 13.0987 13.6875ZM11.8847 15.5399C11.8847 15.5244 11.8661 15.5172 11.8445 15.5141C11.82 15.5111 11.7952 15.5142 11.7723 15.5233C11.7494 15.5323 11.7291 15.5469 11.7132 15.5657C11.6234 15.6546 11.5304 15.7403 11.4405 15.8302C11.4178 15.8529 11.361 15.8726 11.3961 15.9129C11.4035 15.9203 11.4122 15.9261 11.4219 15.9302C11.4316 15.9342 11.4419 15.9362 11.4524 15.9362C11.4628 15.9362 11.4732 15.9342 11.4829 15.9302C11.4925 15.9261 11.5013 15.9203 11.5087 15.9129C11.5743 15.8512 11.652 15.8041 11.737 15.7744C11.8362 15.73 11.8465 15.6329 11.8847 15.5399Z" fill="#273375"/>
+<path d="M26.5509 12.1678C26.6542 12.1017 26.7441 12.0552 26.8216 11.9963C26.9672 11.8868 26.9848 11.7794 26.8939 11.6203L26.868 11.5779C26.7399 11.3413 26.7141 11.1554 27.0819 11.081C27.1139 11.0738 27.146 11.0655 27.1769 11.0562C27.4528 10.9746 27.5468 10.7907 27.429 10.5273C27.2903 10.2603 27.1282 10.0062 26.9445 9.76791C26.8309 9.60055 26.7172 9.43422 26.6149 9.25962C26.493 9.06566 26.4515 8.8318 26.4992 8.60772C26.5912 8.17692 26.5075 7.75334 26.3959 7.33803C26.3091 7.02086 26.2079 6.70679 26.1097 6.39273C26.0864 6.33109 26.0577 6.27163 26.024 6.21503C26.0083 6.1945 25.9972 6.17083 25.9915 6.14562C25.9857 6.12042 25.9855 6.09427 25.9908 6.06898C25.9961 6.04368 26.0068 6.01982 26.0221 5.99902C26.0375 5.97823 26.0572 5.96099 26.0798 5.94849C26.1511 5.8927 26.2234 5.83691 26.2864 5.77492C26.3174 5.74612 26.3416 5.71067 26.357 5.67123C26.3724 5.63179 26.3787 5.58937 26.3755 5.54715C26.3722 5.50492 26.3594 5.46399 26.3381 5.4274C26.3168 5.39081 26.2874 5.35951 26.2523 5.33585C26.2396 5.32335 26.2239 5.31418 26.2068 5.30918C26.1896 5.30418 26.1715 5.30348 26.154 5.30716C26.1365 5.31084 26.1202 5.31878 26.1066 5.33027C26.0929 5.34177 26.0823 5.35646 26.0756 5.37304C26.0497 5.43364 26.0149 5.49004 25.9723 5.54041C25.9575 5.5581 25.9362 5.56921 25.9132 5.57134C25.8902 5.57347 25.8673 5.56644 25.8494 5.55177C25.8163 5.52284 25.8494 5.48462 25.868 5.45362C25.9486 5.33998 25.9486 5.34101 25.8122 5.31415C25.7813 5.31255 25.7511 5.30466 25.7234 5.29099C25.6957 5.27731 25.6711 5.25812 25.651 5.2346C25.4236 4.93841 25.1191 4.7104 24.7708 4.57548C24.7555 4.56894 24.7407 4.56134 24.7264 4.55275C24.7264 4.55275 24.7264 4.54552 24.7264 4.53002C24.7956 4.53622 24.8617 4.54138 24.933 4.54861C25.0438 4.56203 25.1556 4.5641 25.2667 4.55481C25.3581 4.55452 25.4468 4.52394 25.519 4.46786C25.5911 4.41178 25.6427 4.33336 25.6655 4.24488C25.7626 3.91945 25.711 3.72832 25.4361 3.5C25.2244 3.32334 24.9702 3.22209 24.7347 3.08676L24.6252 3.0258C24.6678 3.00278 24.7171 2.99546 24.7646 3.00514C29.7925 3.00514 34.8203 3.00514 39.8481 3.00514C39.9628 3.00514 40 3.02684 40 3.15081C40 7.90314 40 12.6524 40 17.3985C40 17.5152 39.9659 17.539 39.8553 17.539C34.8888 17.5363 29.9261 17.5349 24.9671 17.5349C24.8945 17.5347 24.8233 17.5155 24.7605 17.4791C24.2005 17.1692 23.5972 16.9563 22.9949 16.7445C22.9615 16.7296 22.927 16.7175 22.8916 16.7084C22.6633 16.6733 22.5909 16.51 22.5755 16.3117C22.5011 15.3953 22.812 14.636 23.5259 14.0533C23.6954 13.9315 23.9047 13.8784 24.1117 13.9045C24.5001 13.9272 24.8772 14.0264 25.2605 14.0781C25.3638 14.0915 25.4599 14.1277 25.5591 14.1473C25.6929 14.1762 25.8314 14.1765 25.9653 14.148C26.0992 14.1195 26.2255 14.0629 26.336 13.982C26.462 13.876 26.5506 13.7324 26.5888 13.5722C26.6269 13.412 26.6125 13.2439 26.5478 13.0925C26.5213 13.0498 26.5118 12.9987 26.5211 12.9493C26.5305 12.9 26.5581 12.8559 26.5984 12.8259C26.6594 12.7722 26.7244 12.7226 26.7875 12.6668C26.8222 12.6375 26.8454 12.5967 26.8527 12.5518C26.8601 12.507 26.8513 12.4609 26.8278 12.422C26.8074 12.3594 26.7712 12.3031 26.7227 12.2585C26.6742 12.214 26.615 12.1828 26.5509 12.1678Z" fill="#E20613"/>
+<path d="M30.7906 26.2131C30.2089 26.2131 29.6263 26.2131 29.0446 26.2131C28.9413 26.2131 28.932 26.2338 28.9485 26.3299C29.0725 27.0882 29.6201 27.5758 30.3949 27.6068C30.9053 27.6264 31.3681 27.5107 31.7379 27.1336C31.8888 26.9797 31.8888 26.9787 32.0582 27.1161C32.2886 27.3031 32.5169 27.4952 32.7525 27.675C32.8372 27.7401 32.8196 27.7783 32.7628 27.8486C32.3197 28.3705 31.6964 28.7064 31.0168 28.7897C30.3215 28.8868 29.6407 28.8218 29.0054 28.4943C28.1923 28.0748 27.7284 27.3919 27.5735 26.5034C27.4199 25.7336 27.5611 24.9342 27.9691 24.2637C28.3917 23.5735 29.026 23.1933 29.8195 23.0735C30.4021 22.9857 30.9745 23.026 31.5065 23.3029C32.1966 23.6624 32.5758 24.2482 32.6956 25.0085C32.7491 25.3726 32.7414 25.7431 32.6729 26.1047C32.6585 26.1852 32.6275 26.2183 32.5365 26.2173C31.9549 26.2069 31.3722 26.2131 30.7906 26.2131ZM30.1955 25.1056C30.5623 25.1056 30.9301 25.1056 31.2968 25.1056C31.3681 25.1056 31.3877 25.0901 31.3733 25.0147C31.335 24.789 31.216 24.5849 31.0385 24.4403C30.7596 24.213 30.4311 24.1634 30.0839 24.1831C29.8475 24.1941 29.6202 24.2777 29.4331 24.4227C29.246 24.5677 29.1081 24.7668 29.0384 24.993C29.0126 25.0746 29.0178 25.1087 29.118 25.1067C29.4775 25.0994 29.836 25.1025 30.1955 25.1025V25.1056Z" fill="#273375"/>
+<path d="M33.0822 35.2084C32.4954 35.2084 31.9096 35.2084 31.3259 35.2084C31.2308 35.2084 31.2143 35.227 31.2288 35.3241C31.362 36.1785 32.0119 36.6527 32.9148 36.6073C33.3973 36.5825 33.8136 36.411 34.1194 36.0194C34.1484 35.9822 34.168 35.976 34.2073 36.0081C34.4945 36.2436 34.7827 36.4774 35.072 36.7095C35.1381 36.7622 35.0906 36.7932 35.0606 36.8283C34.6967 37.2782 34.1926 37.5932 33.6287 37.723C32.7041 37.942 31.8135 37.8625 31.0056 37.3284C30.2948 36.8542 29.926 36.1661 29.8279 35.3355C29.7296 34.6517 29.8592 33.9547 30.1967 33.3519C30.6368 32.5781 31.3207 32.17 32.1937 32.0615C32.7227 31.979 33.2644 32.0571 33.7485 32.2857C34.4562 32.638 34.8447 33.2259 34.9718 33.9945C35.0265 34.3541 35.0213 34.7203 34.9563 35.0782C34.9397 35.1754 34.9108 35.2136 34.8013 35.2126C34.23 35.2012 33.6556 35.2084 33.0822 35.2084ZM31.2949 34.1144C32.0656 34.1144 32.828 34.1144 33.5905 34.1144C33.6711 34.1144 33.6638 34.0772 33.6535 34.0224C33.6313 33.8834 33.5784 33.7512 33.4985 33.6353C33.4186 33.5195 33.3137 33.423 33.1917 33.3529C32.9525 33.2197 32.6796 33.1594 32.4065 33.1794C32.142 33.1837 31.8871 33.2791 31.6846 33.4493C31.4821 33.6196 31.3445 33.8545 31.2949 34.1144Z" fill="#E20714"/>
+<path d="M8.38342 35.2084C7.80487 35.2084 7.22736 35.2084 6.64882 35.2084C6.53414 35.2084 6.52691 35.2445 6.54551 35.3416C6.69841 36.2343 7.3844 36.6475 8.23052 36.6052C8.71298 36.5793 9.12933 36.4068 9.4341 36.0142C9.46612 35.9719 9.48782 35.9801 9.52191 36.008C9.80705 36.2415 10.0901 36.475 10.3784 36.7023C10.4507 36.7591 10.4032 36.7911 10.3722 36.8293C10.0649 37.2115 9.65268 37.4955 9.18615 37.6465C8.18403 37.9637 7.21083 37.9069 6.31512 37.3232C5.62087 36.8707 5.25825 36.1867 5.14977 35.3819C5.04615 34.7201 5.15464 34.0423 5.4597 33.4459C5.88948 32.6194 6.58683 32.1793 7.49907 32.0625C8.03247 31.9765 8.57941 32.0547 9.06734 32.2867C9.79052 32.6504 10.1779 33.2579 10.2947 34.043C10.3379 34.3792 10.332 34.7199 10.2771 35.0544C10.2596 35.1784 10.211 35.2104 10.0891 35.2084C9.52294 35.2011 8.9537 35.2084 8.38342 35.2084ZM7.79764 34.1143C8.16027 34.1143 8.52082 34.1143 8.88551 34.1143C8.96609 34.1143 8.98263 34.0957 8.96816 34.0162C8.93127 33.7859 8.80922 33.578 8.6262 33.4335C8.36886 33.2426 8.05084 33.1519 7.73152 33.1783C7.48411 33.1809 7.244 33.2624 7.04624 33.4111C6.84848 33.5598 6.70344 33.7678 6.63229 34.0048C6.60646 34.0864 6.60853 34.1174 6.70977 34.1153C7.0724 34.1112 7.43502 34.1143 7.79764 34.1143Z" fill="#E20714"/>
+<path d="M0.319243 24.8835C0.319243 23.6861 0.319243 22.4887 0.319243 21.2913C0.319243 21.1829 0.344039 21.156 0.453549 21.156C1.81588 21.1601 3.17822 21.1601 4.54056 21.156C4.64387 21.156 4.6697 21.1829 4.66866 21.2851C4.66143 21.6612 4.66246 22.0362 4.66866 22.4123C4.66866 22.5104 4.6418 22.5362 4.54469 22.5352C3.68617 22.5352 2.82765 22.5352 1.96913 22.5352C1.86582 22.5352 1.82966 22.559 1.83173 22.6706C1.83896 23.1158 1.83792 23.5621 1.83173 24.0074C1.83173 24.1107 1.86478 24.1355 1.96396 24.1345C2.68714 24.1345 3.40103 24.1345 4.11904 24.1345C4.22236 24.1345 4.24198 24.1603 4.23992 24.2564C4.23475 24.6366 4.23475 25.0157 4.23992 25.3928C4.23992 25.4889 4.21099 25.5065 4.12214 25.5065C3.39896 25.5065 2.67578 25.5065 1.9526 25.5065C1.85549 25.5065 1.82863 25.5312 1.82966 25.6294C1.82966 26.583 1.82966 27.5365 1.82966 28.4901C1.82966 28.5996 1.8028 28.6275 1.69329 28.6254C1.28004 28.6182 0.859563 28.6192 0.442185 28.6254C0.338873 28.6254 0.312012 28.6006 0.312012 28.4963C0.320277 27.2855 0.319243 26.084 0.319243 24.8835Z" fill="#273375"/>
+<path d="M12.827 28.1223C12.5031 28.498 12.0499 28.7384 11.5573 28.7959C10.9064 28.8713 10.3041 28.7546 9.87432 28.2091C9.24722 27.4126 9.51996 26.2917 10.4384 25.8144C10.7883 25.6477 11.1631 25.5391 11.548 25.4931C11.9467 25.429 12.3445 25.3577 12.7443 25.2957C12.8156 25.2844 12.827 25.2565 12.828 25.1924C12.8435 24.5643 12.3848 24.1593 11.7184 24.2182C11.52 24.2293 11.3269 24.2863 11.1543 24.3847C10.9816 24.4832 10.8342 24.6203 10.7235 24.7854C10.6801 24.8474 10.6554 24.8577 10.5923 24.8081C10.3099 24.587 10.0252 24.3687 9.73794 24.1531C9.67906 24.1087 9.66976 24.0808 9.72038 24.0188C9.94894 23.7351 10.2337 23.5016 10.5567 23.3331C10.8797 23.1645 11.2341 23.0645 11.5976 23.0394C12.071 22.9837 12.5508 23.0502 12.9912 23.2326C13.7733 23.5735 14.1669 24.1934 14.1834 25.0282C14.2072 26.1832 14.1834 27.3403 14.1917 28.4963C14.1917 28.5903 14.1679 28.6131 14.076 28.612C13.6917 28.6058 13.3074 28.612 12.9241 28.612C12.8497 28.612 12.8208 28.5965 12.8208 28.517C12.8321 28.3971 12.827 28.2732 12.827 28.1223ZM12.827 26.6346C12.827 26.5613 12.8218 26.4859 12.827 26.4125C12.8363 26.3237 12.8073 26.3009 12.7185 26.3164C12.4271 26.3712 12.1348 26.4198 11.8424 26.4673C11.6087 26.4899 11.3806 26.5521 11.1678 26.6512C11.0688 26.6995 10.9873 26.7775 10.9349 26.8744C10.8825 26.9713 10.8617 27.0822 10.8754 27.1915C10.8852 27.3057 10.9335 27.4133 11.0123 27.4966C11.0911 27.5799 11.1958 27.634 11.3093 27.6502C11.5243 27.6934 11.7466 27.6842 11.9574 27.6235C12.1681 27.5627 12.3611 27.4521 12.5201 27.301C12.7205 27.1254 12.9013 26.9363 12.827 26.6346Z" fill="#273375"/>
+<path d="M16.9604 23.6376C17.2231 23.3815 17.5483 23.1987 17.9037 23.1076C18.6857 22.931 19.4079 23.0312 19.9968 23.6242C20.3666 23.9982 20.5206 24.4734 20.5815 24.9848C20.611 25.347 20.6192 25.7106 20.6063 26.0737C20.6063 26.8785 20.6063 27.6843 20.6063 28.4891C20.6063 28.5862 20.5825 28.6131 20.4844 28.6121C20.1083 28.6059 19.7333 28.6059 19.3573 28.6121C19.254 28.6121 19.2343 28.5852 19.2343 28.4891C19.2343 27.4849 19.2343 26.4818 19.2343 25.4786C19.2367 25.309 19.2113 25.14 19.1589 24.9786C18.9915 24.4837 18.5215 24.2213 17.977 24.3102C17.5163 24.3866 17.2115 24.6687 16.979 25.0499C16.9564 25.0986 16.9485 25.1528 16.9563 25.2059C16.9563 26.2969 16.9563 27.3868 16.9563 28.4767C16.9563 28.5883 16.9274 28.6141 16.8199 28.6121C16.4356 28.6048 16.0513 28.6121 15.668 28.6121C15.5947 28.6121 15.5647 28.5986 15.5647 28.5181C15.5647 26.7879 15.5647 25.0575 15.5647 23.3267C15.5647 23.2595 15.5781 23.2347 15.6515 23.2357C16.0565 23.2357 16.4604 23.2357 16.8654 23.2357C16.9284 23.2357 16.9542 23.2512 16.9511 23.3184C16.9563 23.4155 16.9604 23.5095 16.9604 23.6376Z" fill="#273375"/>
+<path d="M23.9019 34.9471C23.9019 33.6743 24.592 32.6205 25.7109 32.2331C26.7491 31.8736 27.7471 31.9624 28.6563 32.6308C28.8091 32.7495 28.9477 32.8854 29.0695 33.0358C29.1119 33.0854 29.1305 33.1174 29.0602 33.1691C28.7389 33.4067 28.4218 33.6515 28.1067 33.8974C28.0478 33.9439 28.025 33.9315 27.9848 33.8788C27.5891 33.3726 27.0663 33.2063 26.4557 33.3623C25.8452 33.5183 25.466 33.9326 25.3431 34.5452C25.2067 35.2239 25.3575 35.8325 25.935 36.2674C26.2413 36.4999 26.6267 36.6024 27.0079 36.5529C27.3892 36.5035 27.7356 36.3059 27.9724 36.0029C28.025 35.9378 28.054 35.9254 28.1232 35.9802C28.4283 36.2199 28.7362 36.4558 29.0468 36.6879C29.115 36.7385 29.1232 36.7674 29.0664 36.8356C28.8385 37.1115 28.5581 37.3395 28.2416 37.5065C27.9251 37.6736 27.5787 37.7763 27.2223 37.8088C26.5105 37.8884 25.8297 37.7809 25.2129 37.3956C24.4484 36.9203 24.0424 36.2137 23.9225 35.3293C23.905 35.2027 23.8981 35.0748 23.9019 34.9471Z" fill="#E20714"/>
+<path d="M24.5 23.0269C25.4412 23.0434 26.1985 23.3306 26.7801 24.0166C26.838 24.0848 26.8462 24.1199 26.7667 24.1777C26.4567 24.4081 26.1468 24.6457 25.842 24.8823C25.7893 24.9226 25.7604 24.9423 25.7057 24.873C25.311 24.3668 24.7903 24.2025 24.1777 24.3565C23.5651 24.5104 23.189 24.9288 23.0661 25.5394C22.9297 26.2068 23.0764 26.8091 23.6374 27.2471C23.9434 27.4852 24.3313 27.5922 24.7161 27.5447C25.1009 27.4973 25.4511 27.2993 25.6902 26.994C25.7418 26.93 25.7718 26.9176 25.8431 26.9734C26.1468 27.213 26.4557 27.4486 26.7667 27.68C26.838 27.7327 26.8369 27.7647 26.7822 27.8308C26.541 28.1201 26.2427 28.3564 25.906 28.5251C25.5694 28.6938 25.2015 28.7912 24.8255 28.8113C24.2263 28.8729 23.6222 28.7576 23.0878 28.4796C22.7249 28.2926 22.41 28.0246 22.1673 27.6964C21.9245 27.3683 21.7605 26.9887 21.6879 26.587C21.5061 25.7006 21.6497 24.8699 22.1951 24.1333C22.6538 23.5135 23.2871 23.1829 24.0403 23.0682C24.2149 23.0424 24.3884 23.0362 24.5 23.0269Z" fill="#273375"/>
+<path d="M17.8438 36.0514C18.2498 34.9315 18.6475 33.8333 19.0453 32.7341C19.0959 32.5946 19.1486 32.4562 19.1961 32.3157C19.2002 32.2937 19.2125 32.2742 19.2306 32.2611C19.2487 32.248 19.2711 32.2424 19.2932 32.2454C19.723 32.2454 20.1517 32.2454 20.5815 32.2454C20.7045 32.2454 20.6538 32.3084 20.6342 32.3622C20.2086 33.533 19.7833 34.7056 19.3583 35.8799C19.162 36.4213 18.9626 36.9626 18.7705 37.506C18.7632 37.5412 18.7426 37.5722 18.7129 37.5925C18.6832 37.6127 18.6468 37.6206 18.6114 37.6145C18.0948 37.6145 17.571 37.6145 17.0514 37.6145C16.977 37.6145 16.9377 37.6021 16.9088 37.5226C16.2889 35.8007 15.6649 34.0826 15.0368 32.3684C15.0017 32.2712 15.0099 32.2444 15.1205 32.2454C15.5203 32.2516 15.9211 32.2516 16.321 32.2454C16.3604 32.239 16.4009 32.2481 16.4338 32.2708C16.4667 32.2935 16.4896 32.3281 16.4976 32.3673C16.9253 33.552 17.3561 34.7356 17.79 35.9181C17.8035 35.9553 17.82 35.9925 17.8438 36.0514Z" fill="#E20714"/>
+<path d="M38.0433 32.0347C38.3973 32.0334 38.7475 32.1062 39.0715 32.2486C39.3956 32.391 39.6862 32.5996 39.9246 32.8612C39.9887 32.9314 39.9908 32.9727 39.9184 33.0389C39.6633 33.2744 39.4132 33.5141 39.1653 33.7558C39.1105 33.8096 39.0878 33.7972 39.0444 33.7455C38.8202 33.4779 38.5651 33.2548 38.2055 33.1938C38.0378 33.1635 37.8648 33.1851 37.7096 33.2558C37.6429 33.2802 37.5842 33.3223 37.5398 33.3777C37.4954 33.4331 37.467 33.4996 37.4577 33.57C37.4485 33.6404 37.4587 33.712 37.4872 33.777C37.5158 33.842 37.5616 33.8979 37.6198 33.9387C37.7824 34.0587 37.9621 34.1538 38.1528 34.2207C38.502 34.3458 38.8388 34.5028 39.1591 34.6898C39.5269 34.9284 39.7914 35.2435 39.8823 35.6816C40.0889 36.6589 39.5331 37.5463 38.5568 37.7581C37.5237 37.9813 36.6321 37.7044 35.9017 36.9316C35.8459 36.8738 35.8376 36.8376 35.9017 36.7756C36.1538 36.538 36.4021 36.297 36.6466 36.0525C36.7116 35.9863 36.7406 35.9832 36.8015 36.0576C37.005 36.3253 37.2833 36.5267 37.6012 36.6362C37.8259 36.7134 38.071 36.7068 38.2913 36.6176C38.5868 36.4926 38.7407 36.0535 38.3677 35.8024C38.1566 35.6736 37.9326 35.5673 37.6993 35.4853C37.4294 35.3836 37.1685 35.2595 36.9193 35.1144C36.3304 34.7518 36.0618 34.2218 36.1279 33.5399C36.1951 32.8415 36.6114 32.4035 37.252 32.169C37.5053 32.0761 37.7735 32.0306 38.0433 32.0347Z" fill="#E20714"/>
+<path d="M2.1941 32.0336C2.93277 32.0532 3.56814 32.3064 4.0754 32.8601C4.14565 32.9355 4.13945 32.9758 4.063 33.045C3.81919 33.2668 3.58088 33.4948 3.34809 33.729C3.27164 33.8044 3.23754 33.7971 3.17142 33.7186C2.95654 33.4593 2.70342 33.2517 2.35836 33.1948C2.17825 33.1598 1.99157 33.1875 1.82941 33.2734C1.77051 33.2999 1.71938 33.3411 1.68086 33.393C1.64235 33.4449 1.61773 33.5057 1.60935 33.5698C1.60096 33.6338 1.60909 33.699 1.63296 33.759C1.65683 33.8191 1.69564 33.872 1.74572 33.9129C1.87745 34.0258 2.0287 34.1136 2.19203 34.1722C2.49473 34.3013 2.8119 34.4108 3.09807 34.5658C3.52372 34.792 3.86981 35.0916 4.00618 35.5751C4.24483 36.4182 3.89564 37.4781 2.72099 37.7529C1.67857 37.9968 0.773563 37.7023 0.0348849 36.913C-0.0136716 36.8603 -0.00953912 36.8324 0.0348849 36.7849C0.287998 36.5432 0.540078 36.2983 0.788026 36.0504C0.850013 35.9884 0.881006 35.977 0.946093 36.0504C1.18578 36.3365 1.46265 36.5669 1.84077 36.6568C2.01398 36.699 2.19538 36.6932 2.36559 36.6403C2.46032 36.6153 2.54544 36.5627 2.61005 36.4891C2.67466 36.4154 2.7158 36.3242 2.72822 36.227C2.75715 36.0204 2.6497 35.8882 2.4937 35.7838C2.27003 35.6519 2.03363 35.5429 1.78808 35.4584C1.42273 35.328 1.0811 35.1389 0.776662 34.8984C0.0245537 34.2558 0.0131897 32.7475 1.26843 32.2123C1.56168 32.0906 1.87661 32.0298 2.1941 32.0336Z" fill="#E20714"/>
+<path d="M7.05381 23.7573C7.24971 23.5535 7.48387 23.3903 7.74289 23.2769C8.08712 23.1311 8.46872 23.0982 8.83283 23.1829C8.90515 23.2005 8.93614 23.2243 8.93614 23.3048C8.93614 23.7181 8.93614 24.1313 8.93614 24.5446C8.93614 24.6169 8.92374 24.6334 8.84626 24.6159C8.47637 24.5195 8.08565 24.5408 7.72843 24.6768C7.58319 24.7363 7.44879 24.8194 7.33068 24.9227C7.23832 24.9936 7.16445 25.0858 7.11534 25.1914C7.06624 25.2969 7.04336 25.4128 7.04864 25.5291C7.06724 26.5158 7.05484 27.5024 7.05897 28.489C7.05897 28.5923 7.03521 28.6202 6.93086 28.6182C6.55068 28.6109 6.17153 28.613 5.79444 28.6182C5.70869 28.6182 5.68286 28.5954 5.68286 28.5086C5.68286 26.7868 5.68286 25.0649 5.68286 23.3431C5.68286 23.2604 5.70662 23.2398 5.78617 23.2398C6.17876 23.2398 6.57031 23.2398 6.96289 23.2398C7.05071 23.2398 7.0662 23.2718 7.06104 23.3431C7.05071 23.4712 7.05381 23.5982 7.05381 23.7573Z" fill="#273375"/>
+<path d="M12.7567 32.7598C12.9445 32.5684 13.1649 32.412 13.4076 32.298C13.756 32.1405 14.146 32.1002 14.5192 32.1834C14.5978 32.2009 14.636 32.2268 14.6349 32.3197C14.6274 32.7199 14.6274 33.1204 14.6349 33.5213C14.6349 33.6246 14.605 33.6308 14.5151 33.6122C14.075 33.5254 13.6452 33.5347 13.2454 33.7723C13.1752 33.8152 13.1082 33.8632 13.045 33.9159C12.9481 33.9877 12.8706 34.0823 12.8192 34.1914C12.7678 34.3005 12.7442 34.4205 12.7505 34.5409C12.7691 35.5162 12.7505 36.4904 12.7619 37.4657C12.7619 37.5959 12.7237 37.6176 12.6049 37.6155C12.2381 37.6072 11.8703 37.6093 11.5025 37.6155C11.4158 37.6155 11.3848 37.6021 11.3848 37.5039C11.3848 35.7903 11.3848 34.0764 11.3848 32.3621C11.3848 32.267 11.4106 32.2454 11.5015 32.2474C11.8817 32.2526 12.2619 32.2474 12.6379 32.2474C12.7268 32.2474 12.765 32.2629 12.7567 32.3611C12.7495 32.483 12.7567 32.6069 12.7567 32.7598Z" fill="#E20613"/>
+<path d="M21.3999 34.9347C21.3999 34.0803 21.3999 33.226 21.3999 32.3726C21.3999 32.2693 21.4278 32.2424 21.53 32.2445C21.9092 32.2507 22.2883 32.2497 22.6665 32.2445C22.7533 32.2445 22.7873 32.259 22.7863 32.3571C22.7863 34.0741 22.7863 35.7908 22.7863 37.5072C22.7863 37.5836 22.7729 37.6105 22.683 37.6105C22.2873 37.6053 21.8906 37.6053 21.4949 37.6105C21.4092 37.6105 21.3916 37.5816 21.3916 37.5072C21.3985 36.6511 21.4012 35.7936 21.3999 34.9347Z" fill="#E20714"/>
+<path d="M21.2012 30.5098C21.2028 30.2767 21.2966 30.0537 21.4621 29.8895C21.6276 29.7254 21.8514 29.6334 22.0845 29.6337C22.2049 29.6259 22.3256 29.6429 22.4392 29.6837C22.5527 29.7245 22.6567 29.7882 22.7446 29.8708C22.8325 29.9535 22.9025 30.0534 22.9501 30.1642C22.9978 30.275 23.0222 30.3945 23.0218 30.5152C23.0214 30.6358 22.9961 30.7551 22.9477 30.8656C22.8992 30.9761 22.8285 31.0755 22.7401 31.1575C22.6516 31.2395 22.5472 31.3025 22.4333 31.3425C22.3195 31.3825 22.1986 31.3987 22.0783 31.39C21.8455 31.3886 21.6228 31.2954 21.4585 31.1305C21.2942 30.9656 21.2017 30.7425 21.2012 30.5098Z" fill="#E20714"/>
+<path d="M24.5249 8.41151C24.5849 8.35465 24.655 8.30946 24.7315 8.27824C25.024 8.14083 25.3391 8.05819 25.6613 8.03442C25.8346 8.03821 26.0053 8.07796 26.1624 8.15117C26.2337 8.17699 26.2378 8.25448 26.2223 8.3206C26.192 8.42889 26.1252 8.52339 26.0333 8.58817C25.9826 8.6295 25.9485 8.65739 26.0157 8.71938C26.0828 8.78137 26.0281 8.81649 25.9723 8.83715C25.9139 8.85524 25.859 8.88319 25.8101 8.9198C25.7068 9.00762 25.7729 9.12643 25.7398 9.22974C25.7346 9.25808 25.7346 9.28714 25.7398 9.31549C25.746 9.56757 25.7212 9.59856 25.4671 9.61199C25.3281 9.62986 25.187 9.61644 25.0539 9.57273C25.1313 9.5624 25.1964 9.55723 25.2605 9.54587C25.2858 9.54376 25.3093 9.53171 25.3257 9.51235C25.3422 9.49298 25.3503 9.46789 25.3483 9.44256C25.3483 9.38677 25.2966 9.38574 25.277 9.36198C25.1592 9.22147 24.9536 9.31445 24.84 9.18221C24.8204 9.15845 24.7698 9.15019 24.7801 9.113C24.7904 9.0758 24.839 9.06341 24.871 9.0696C25.0012 9.09337 25.0342 8.98902 25.1127 8.92807C25.2324 8.82474 25.3606 8.73177 25.496 8.65016C25.5778 8.6102 25.6506 8.55395 25.7099 8.48486C25.7832 8.39498 25.7719 8.36812 25.6613 8.33919C25.3225 8.25034 24.9919 8.30613 24.6623 8.39291C24.621 8.40635 24.5807 8.43631 24.5249 8.41151Z" fill="#9E9E9D"/>
+<path d="M13.793 10.5253C13.794 10.5178 13.794 10.5101 13.793 10.5026C13.9092 10.4825 14.028 10.4825 14.1442 10.5026L13.793 10.5253Z" fill="#9E9E9D"/>
+<path d="M13.1289 15.1661L13.0687 15.2045L13.0427 15.1796L13.1123 15.1475L13.1289 15.1661Z" fill="#273375"/>
+<path d="M13.1121 15.1474C13.1359 15.137 13.1588 15.1194 13.1837 15.1474L13.1318 15.1723L13.1121 15.1474Z" fill="#273375"/>
+<path d="M13.1837 15.1439L13.1731 15.128L13.188 15.1216C13.185 15.1281 13.1826 15.1349 13.1805 15.1418L13.1837 15.1439Z" fill="#273375"/>
+<path d="M11.988 13.4292C11.9963 13.3838 12.0531 13.4075 12.0593 13.3662C12.0545 13.3612 12.0489 13.357 12.0428 13.3538C11.6719 13.2774 11.3547 13.4272 11.0231 13.5677C10.7261 13.6994 10.4382 13.8509 10.1615 14.0212C10.1073 14.0507 10.0514 14.0769 9.99409 14.0997C9.96929 14.1101 9.94036 14.1359 9.9166 14.0997C9.91307 14.0933 9.91088 14.0863 9.91017 14.079C9.90946 14.0717 9.91023 14.0644 9.91246 14.0574C9.91468 14.0504 9.91831 14.044 9.9231 14.0385C9.9279 14.033 9.93378 14.0285 9.94036 14.0253C10.1222 13.922 10.1367 13.6792 10.3123 13.5604C10.4879 13.4416 10.6295 13.3094 10.7875 13.1833C10.833 13.1472 10.8815 13.1162 10.8712 13.0459C10.8709 13.0397 10.872 13.0334 10.8745 13.0277C10.877 13.022 10.8808 13.0169 10.8857 13.0129C11.1026 12.8775 11.1574 12.5862 11.4022 12.4829C11.3834 12.4468 11.3519 12.4189 11.3137 12.4046C11.2756 12.3903 11.2335 12.3906 11.1956 12.4054C11.1658 12.4143 11.1343 12.4159 11.1038 12.4102C11.0732 12.4044 11.0445 12.3914 11.02 12.3724C11.0468 12.3104 11.1109 12.3042 11.1625 12.269C11.0716 12.206 11.114 12.1657 11.1811 12.1223C11.2536 12.0928 11.3297 12.0734 11.4074 12.0645C11.4644 12.0564 11.5175 12.0307 11.5593 11.9911C11.4839 11.9725 11.4054 11.9697 11.3289 11.9829C11.2142 11.9829 11.0623 12.017 11.0045 11.9219C10.9466 11.8269 11.0634 11.7298 11.115 11.6399C11.228 11.4315 11.3964 11.2585 11.6016 11.1398C11.6378 11.1192 11.6781 11.0903 11.7142 11.1212C11.7504 11.1522 11.7266 11.2039 11.7142 11.2452C11.6874 11.3258 11.6192 11.3651 11.5355 11.4085C11.708 11.4456 11.8682 11.4746 12.0231 11.519C12.0645 11.5304 12.175 11.5035 12.1368 11.6223C12.1306 11.6399 12.1771 11.6388 12.2008 11.644C12.2721 11.6605 12.3455 11.6719 12.4178 11.6905C12.4415 11.6967 12.4798 11.6998 12.4787 11.737C12.4777 11.7742 12.4343 11.7566 12.4126 11.7793C13.2143 12.0128 14.0294 12.1926 14.7216 12.7215C14.3659 12.8966 13.9916 13.031 13.6059 13.1224C13.3744 13.1802 13.1399 13.2257 12.9075 13.2794C12.8884 13.2871 12.8681 13.2916 12.8476 13.2929C12.6409 13.2732 12.4488 13.3621 12.2576 13.4282C12.2151 13.4465 12.1693 13.456 12.1229 13.4561C12.0766 13.4563 12.0307 13.4472 11.988 13.4292Z" fill="#FEFEFE"/>
+<path d="M12.3633 9.8516C12.2662 9.94768 12.1412 9.94562 12.041 10.0014C11.9873 10.0314 11.9914 9.96111 11.9718 9.92082C11.7807 10.1078 11.5585 10.2432 11.3581 10.4095C11.2209 10.5288 11.1091 10.6746 11.0296 10.8382C10.9263 11.0325 10.8292 11.2246 10.636 11.3548C10.5854 11.3878 10.5957 11.4912 10.5389 11.5428C10.5234 11.5562 10.5172 11.579 10.5037 11.5945C10.4738 11.6275 10.4386 11.674 10.3922 11.6389C10.3457 11.6038 10.4035 11.5738 10.4149 11.5418C10.4263 11.5098 10.4417 11.5087 10.4469 11.4891C10.4521 11.4695 10.5234 11.4571 10.48 11.4085C10.4366 11.36 10.4097 11.3775 10.3674 11.4085C9.97563 11.6594 9.6083 11.9465 9.2702 12.266C8.96956 12.5491 8.69062 12.8538 8.41374 13.1596C8.39205 13.1844 8.37862 13.2247 8.33109 13.2185C8.3156 13.1658 8.36002 13.1431 8.38172 13.1152C8.66993 12.733 8.92434 12.3265 9.14209 11.9003C9.17416 11.8338 9.22568 11.7787 9.28983 11.7422C9.61427 11.536 9.90784 11.2849 10.1618 10.9963C10.5581 10.5564 11.0223 10.1828 11.5369 9.88983C11.6625 9.82055 11.8023 9.78107 11.9456 9.77444C12.0889 9.76781 12.2319 9.79421 12.3633 9.8516Z" fill="#FEFEFE"/>
+<path d="M12.1027 14.8963C11.6316 15.1267 11.27 15.4893 10.8031 15.6608C10.5876 15.7458 10.3956 15.8812 10.2431 16.0555C10.2287 16.0699 10.2101 16.0937 10.1956 16.0927C9.97141 16.0689 9.88566 16.2528 9.75549 16.3768C9.73482 16.3974 9.72346 16.447 9.68524 16.4212C9.64701 16.3954 9.65837 16.354 9.68524 16.3179C9.77098 16.2146 9.85467 16.104 9.93422 15.9945C9.9992 15.9083 10.0412 15.807 10.0561 15.7001C10.0561 15.6846 10.0716 15.6567 10.0696 15.6546C9.91149 15.5668 10.0768 15.5327 10.1047 15.5007C10.3354 15.2164 10.6627 15.027 11.0241 14.9686C11.1506 14.9469 11.2738 14.9094 11.3909 14.8571C11.4551 14.8261 11.5277 14.8171 11.5975 14.8312C11.7535 14.8664 11.9199 14.8095 12.1027 14.8963Z" fill="#FEFEFE"/>
+<path d="M13.0984 13.6875C13.0827 13.7098 13.0627 13.7287 13.0397 13.7433C13.0166 13.7578 12.9909 13.7677 12.9641 13.7722C12.8039 13.8022 12.6428 13.8259 12.4816 13.8507C12.4589 13.8507 12.4237 13.8507 12.4144 13.8383C12.4051 13.8259 12.4227 13.7846 12.4403 13.7629C12.4682 13.7328 12.504 13.711 12.5436 13.6999C12.5918 13.6913 12.6384 13.6756 12.682 13.6534C12.8287 13.5511 12.961 13.5873 13.0984 13.6875Z" fill="#FEFEFE"/>
+<path d="M11.8849 15.54C11.8477 15.633 11.8363 15.7301 11.7371 15.7724C11.6522 15.8021 11.5744 15.8493 11.5088 15.9109C11.5014 15.9183 11.4926 15.9242 11.483 15.9282C11.4733 15.9322 11.463 15.9342 11.4525 15.9342C11.442 15.9342 11.4317 15.9322 11.422 15.9282C11.4124 15.9242 11.4036 15.9183 11.3962 15.9109C11.3611 15.8706 11.4179 15.851 11.4406 15.8282C11.5305 15.7383 11.6235 15.6526 11.7134 15.5637C11.7292 15.5449 11.7495 15.5303 11.7724 15.5213C11.7953 15.5122 11.8201 15.5091 11.8446 15.5121C11.8663 15.5173 11.8838 15.5245 11.8849 15.54Z" fill="#FEFEFE"/>
+<path d="M30.1956 25.1026C29.8361 25.1026 29.4776 25.1026 29.1181 25.1026C29.0148 25.1026 29.0148 25.0705 29.0385 24.9889C29.1083 24.7627 29.2461 24.5635 29.4332 24.4186C29.6203 24.2736 29.8476 24.1899 30.0841 24.179C30.4312 24.1593 30.7597 24.2089 31.0387 24.4362C31.2162 24.5808 31.3351 24.7849 31.3734 25.0106C31.3879 25.086 31.3682 25.1026 31.2969 25.1015C30.9302 25.1015 30.5624 25.1026 30.1956 25.1026Z" fill="#FEFEFE"/>
+<path d="M31.2949 34.1145C31.3456 33.8555 31.4836 33.6219 31.686 33.4526C31.8884 33.2833 32.1428 33.1887 32.4066 33.1847C32.6796 33.1647 32.9525 33.225 33.1917 33.3582C33.3138 33.4283 33.4186 33.5248 33.4985 33.6406C33.5784 33.7565 33.6314 33.8887 33.6535 34.0277C33.6639 34.0824 33.6711 34.1207 33.5905 34.1196C32.8281 34.1134 32.0656 34.1145 31.2949 34.1145Z" fill="#FEFEFE"/>
+<path d="M7.79762 34.1144C7.435 34.1144 7.07444 34.1144 6.70975 34.1144C6.60644 34.1144 6.60644 34.0855 6.63227 34.0038C6.70342 33.7669 6.84846 33.5588 7.04622 33.4102C7.24398 33.2615 7.4841 33.1799 7.7315 33.1773C8.05082 33.1509 8.36884 33.2416 8.62618 33.4325C8.8092 33.577 8.93125 33.785 8.96814 34.0152C8.98261 34.0948 8.96814 34.1185 8.88549 34.1133C8.52287 34.1123 8.16025 34.1144 7.79762 34.1144Z" fill="#FEFEFE"/>
+<path d="M12.8269 26.6347C12.9013 26.9384 12.7236 27.1254 12.517 27.3011C12.358 27.4522 12.165 27.5628 11.9542 27.6235C11.7435 27.6843 11.5212 27.6935 11.3062 27.6503C11.1927 27.6341 11.088 27.58 11.0092 27.4967C10.9304 27.4134 10.8821 27.3058 10.8723 27.1916C10.8585 27.0823 10.8794 26.9714 10.9318 26.8745C10.9842 26.7776 11.0656 26.6995 11.1647 26.6512C11.3775 26.5522 11.6056 26.49 11.8393 26.4673C12.1317 26.4167 12.424 26.3713 12.7154 26.3165C12.8042 26.301 12.8331 26.3237 12.8238 26.4126C12.8218 26.4859 12.8269 26.5614 12.8269 26.6347Z" fill="#FEFEFE"/>
+</svg>
\ No newline at end of file
diff --git a/src/assets/logos/passNumerique.svg b/src/assets/logos/passNumerique.svg
index c1a48efbf..5e8f47eb1 100644
--- a/src/assets/logos/passNumerique.svg
+++ b/src/assets/logos/passNumerique.svg
@@ -1,49 +1,49 @@
 <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
 <path d="M19.4767 19.7352C19.4751 19.7337 19.4737 19.7348 19.4722 19.7352L19.4677 19.7373C19.4613 19.7398 19.4552 19.743 19.4495 19.7468C19.4476 19.748 19.445 19.7487 19.4437 19.7468C19.4424 19.745 19.4453 19.7435 19.4465 19.742C19.4504 19.7369 19.457 19.7386 19.4617 19.7354C19.4778 19.7241 19.4958 19.7159 19.5148 19.711C19.5465 19.7021 19.5793 19.6998 19.6116 19.6937C19.6326 19.6897 19.6535 19.686 19.6712 19.6726C19.679 19.6668 19.6869 19.6609 19.6952 19.6557C19.708 19.648 19.7181 19.6366 19.7242 19.6229C19.7258 19.6193 19.7298 19.6145 19.726 19.6116C19.7235 19.6097 19.7207 19.6156 19.718 19.6178C19.7166 19.619 19.7152 19.6203 19.714 19.6217C19.6867 19.6469 19.6569 19.6681 19.6207 19.6785C19.5926 19.6865 19.5632 19.6851 19.5339 19.689C19.5433 19.6812 19.5511 19.6723 19.5646 19.6707C19.5585 19.6656 19.554 19.6694 19.5494 19.6701C19.5464 19.6707 19.5418 19.6738 19.541 19.6687C19.5406 19.6658 19.541 19.6596 19.5477 19.6599C19.5492 19.6599 19.5512 19.6604 19.5518 19.6585C19.5543 19.651 19.5614 19.6491 19.5673 19.6458C19.5847 19.6359 19.6024 19.6264 19.62 19.6166C19.6218 19.6155 19.6246 19.6153 19.625 19.6125C19.6229 19.6117 19.6197 19.6144 19.6189 19.6111C19.618 19.6077 19.6206 19.6068 19.6235 19.606C19.639 19.6003 19.6542 19.5937 19.6689 19.5861C19.6645 19.5845 19.6603 19.5874 19.6574 19.5839C19.6592 19.5798 19.6651 19.5804 19.6659 19.5773C19.6674 19.5723 19.6669 19.5668 19.674 19.5661C19.6749 19.5661 19.6749 19.5649 19.674 19.5644C19.6692 19.5606 19.6745 19.5598 19.676 19.5585C19.6809 19.5543 19.6877 19.5545 19.6938 19.5515C19.6859 19.5486 19.6831 19.5436 19.6871 19.5382C19.695 19.5272 19.6963 19.5141 19.7001 19.5018C19.7006 19.5002 19.7016 19.4982 19.6993 19.4969C19.697 19.4956 19.6959 19.4969 19.6946 19.4984C19.6821 19.5095 19.6671 19.5174 19.6509 19.5216C19.639 19.5251 19.6269 19.5279 19.6147 19.53C19.608 19.5316 19.601 19.5315 19.5944 19.5297C19.5878 19.5278 19.5817 19.5243 19.5769 19.5194C19.5725 19.5152 19.5675 19.5116 19.5622 19.5086C19.5242 19.4868 19.4822 19.4791 19.4395 19.474C19.4234 19.4725 19.4073 19.472 19.3912 19.4724C19.398 19.4688 19.4053 19.4661 19.4128 19.4644C19.4313 19.4599 19.45 19.4564 19.4681 19.4505C19.4836 19.4451 19.4996 19.4412 19.5158 19.439L19.5384 19.4373C19.531 19.436 19.5234 19.436 19.5159 19.4373C19.5096 19.4368 19.5032 19.4371 19.4969 19.4382C19.4564 19.4461 19.415 19.4514 19.3783 19.4726C19.3754 19.4742 19.3717 19.4756 19.3695 19.473C19.3673 19.4705 19.3706 19.4674 19.3725 19.465C19.3826 19.4509 19.3961 19.4397 19.4117 19.4323C19.4274 19.425 19.4447 19.4218 19.4619 19.423C19.505 19.4245 19.5478 19.4301 19.5898 19.4398C19.5934 19.4402 19.5967 19.4415 19.5997 19.4434C19.6027 19.4454 19.6051 19.4481 19.6069 19.4512C19.608 19.4533 19.6097 19.455 19.6118 19.4562C19.6138 19.4575 19.6162 19.4581 19.6186 19.4582C19.6273 19.4583 19.636 19.46 19.6441 19.4631C19.6453 19.4504 19.6462 19.4498 19.6582 19.4517H19.6597C19.6641 19.4525 19.6686 19.4528 19.6711 19.4485C19.672 19.4465 19.6723 19.4443 19.6718 19.4422C19.6714 19.4401 19.6703 19.4382 19.6686 19.4368C19.6635 19.4308 19.6579 19.4251 19.6526 19.4192C19.6509 19.4172 19.6482 19.4153 19.6505 19.4111C19.6581 19.4184 19.6652 19.4255 19.6725 19.4322C19.6815 19.4414 19.6931 19.4476 19.7057 19.4498C19.7101 19.4504 19.7154 19.4524 19.7185 19.4485C19.7215 19.4446 19.7174 19.4401 19.7152 19.4365C19.7062 19.4227 19.6959 19.4099 19.6845 19.398C19.6819 19.3958 19.68 19.3929 19.679 19.3896C19.6772 19.3836 19.6746 19.3779 19.6714 19.3726C19.6663 19.3634 19.663 19.3534 19.6614 19.3431C19.6615 19.3383 19.6611 19.3335 19.6602 19.3288C19.6513 19.2986 19.6476 19.2672 19.6403 19.2365C19.635 19.2137 19.6332 19.1909 19.645 19.1692C19.6539 19.153 19.6631 19.137 19.6723 19.1209C19.6841 19.1004 19.6975 19.0811 19.7179 19.0679C19.72 19.0663 19.7215 19.0641 19.7222 19.0616C19.737 19.0249 19.76 18.9959 19.7972 18.9795C19.8147 18.9717 19.8324 18.9644 19.8502 18.9563H19.8419C19.4482 18.9563 19.0544 18.9563 18.6608 18.9563C18.6524 18.9563 18.651 18.9588 18.651 18.9665C18.651 19.2707 18.651 19.5749 18.651 19.8791C18.651 19.8874 18.6531 19.8889 18.661 19.8889C18.9378 19.8887 19.2147 19.8887 19.4916 19.8889C19.4984 19.8892 19.5051 19.8873 19.5107 19.8834C19.5196 19.8772 19.529 19.8717 19.5388 19.867C19.5699 19.8518 19.6011 19.8368 19.6325 19.8224C19.6729 19.8039 19.7096 19.7811 19.738 19.7458C19.7597 19.7186 19.7847 19.6942 19.8124 19.6732C19.8137 19.6725 19.8147 19.6714 19.8153 19.67C19.8159 19.6687 19.816 19.6671 19.8157 19.6657C19.8072 19.6682 19.8024 19.6773 19.7927 19.6772C19.7952 19.674 19.7987 19.672 19.8013 19.6692C19.8039 19.6664 19.8114 19.6656 19.8094 19.6603C19.8068 19.6537 19.8002 19.6578 19.7952 19.6575C19.7945 19.6577 19.7937 19.6579 19.7929 19.6581C19.778 19.6613 19.7671 19.6714 19.756 19.6805C19.7538 19.6823 19.7517 19.6855 19.7486 19.6838C19.7428 19.6808 19.7384 19.6838 19.7337 19.6861C19.7247 19.6906 19.7162 19.6959 19.7081 19.702C19.6989 19.7091 19.6891 19.7154 19.6788 19.7208C19.6721 19.7242 19.6639 19.7224 19.6568 19.7266C19.6449 19.7333 19.6313 19.7363 19.6177 19.7352C19.5872 19.7333 19.5581 19.7414 19.5284 19.7471C19.5036 19.7519 19.4872 19.7698 19.4682 19.7834C19.4524 19.7949 19.4376 19.8078 19.4241 19.822C19.4222 19.8239 19.4205 19.8266 19.4164 19.8248C19.4213 19.8187 19.4254 19.812 19.4287 19.8049C19.4332 19.793 19.4421 19.7832 19.4536 19.7776C19.4561 19.7762 19.4582 19.7742 19.4596 19.7717C19.4611 19.7692 19.4618 19.7664 19.4618 19.7635C19.4501 19.764 19.449 19.7812 19.4348 19.779C19.4385 19.7742 19.4414 19.7689 19.4433 19.7632C19.4449 19.7525 19.453 19.749 19.4605 19.7444L19.4692 19.7391L19.4731 19.7366L19.4763 19.735L19.4769 19.7338L19.4759 19.7342L19.4767 19.7352ZM20.3344 19.5443C20.3386 19.5453 20.3424 19.5473 20.3455 19.5502C20.3486 19.5531 20.3509 19.5567 20.3522 19.5607C20.3537 19.5632 20.3543 19.5662 20.3538 19.5691C20.3533 19.572 20.3519 19.5746 20.3496 19.5765C20.3456 19.5799 20.3414 19.5831 20.3375 19.5867C20.3349 19.5886 20.3331 19.5914 20.3325 19.5946C20.3319 19.5978 20.3325 19.601 20.3342 19.6038C20.3384 19.6135 20.3392 19.6244 20.3367 19.6347C20.3341 19.645 20.3283 19.6542 20.3201 19.6609C20.313 19.6661 20.3049 19.6697 20.2963 19.6716C20.2878 19.6734 20.2789 19.6734 20.2703 19.6715C20.2637 19.6703 20.2578 19.6679 20.2511 19.6671C20.2265 19.6638 20.2023 19.6574 20.1774 19.6559C20.1641 19.6543 20.1507 19.6577 20.1398 19.6655C20.094 19.7029 20.0741 19.7517 20.0788 19.8104C20.0798 19.8231 20.0845 19.8336 20.0991 19.8359C20.1014 19.8364 20.1036 19.8372 20.1057 19.8382C20.1444 19.8518 20.1831 19.8652 20.219 19.8853C20.2231 19.8876 20.2276 19.8889 20.2323 19.8889C20.5508 19.8889 20.8692 19.8889 21.1877 19.8889C21.1948 19.8889 21.1969 19.8874 21.1969 19.8799C21.1969 19.5749 21.1969 19.2702 21.1969 18.9657C21.1969 18.9577 21.1946 18.9563 21.1872 18.9563C20.8646 18.9563 20.542 18.9563 20.2194 18.9563C20.2163 18.9557 20.2132 18.9562 20.2104 18.9576L20.2174 18.9616C20.2326 18.9702 20.2489 18.9767 20.2625 18.9881C20.2801 19.0027 20.2834 19.015 20.2772 19.0359C20.2757 19.0415 20.2724 19.0466 20.2678 19.0502C20.2631 19.0538 20.2575 19.0557 20.2516 19.0558C20.2445 19.0564 20.2373 19.0562 20.2302 19.0554C20.2259 19.0549 20.2217 19.0546 20.2169 19.0542C20.2169 19.0552 20.2169 19.0556 20.2169 19.0556C20.2178 19.0562 20.2188 19.0567 20.2198 19.0571C20.2421 19.0657 20.2617 19.0804 20.2762 19.0994C20.2775 19.1009 20.2791 19.1021 20.2809 19.103C20.2827 19.1039 20.2846 19.1044 20.2866 19.1045C20.2953 19.1062 20.2953 19.1061 20.2902 19.1134C20.2887 19.1154 20.2869 19.1179 20.289 19.1197C20.2901 19.1207 20.2916 19.1211 20.2931 19.121C20.2945 19.1208 20.2959 19.1201 20.2969 19.119C20.2996 19.1158 20.3018 19.1121 20.3035 19.1083C20.3039 19.1072 20.3046 19.1063 20.3055 19.1055C20.3064 19.1048 20.3074 19.1043 20.3085 19.104C20.3096 19.1038 20.3108 19.1038 20.3119 19.1042C20.313 19.1045 20.314 19.1051 20.3148 19.1059C20.3171 19.1074 20.319 19.1094 20.3203 19.1117C20.3217 19.1141 20.3225 19.1167 20.3227 19.1194C20.3229 19.1221 20.3225 19.1249 20.3215 19.1274C20.3206 19.1299 20.319 19.1322 20.317 19.134C20.3128 19.138 20.3081 19.1416 20.3038 19.1452C20.3023 19.146 20.301 19.1471 20.3001 19.1484C20.2991 19.1498 20.2984 19.1513 20.298 19.1529C20.2977 19.1545 20.2977 19.1562 20.2981 19.1578C20.2985 19.1594 20.2992 19.161 20.3002 19.1623C20.3023 19.1659 20.3042 19.1697 20.3057 19.1737C20.312 19.1936 20.3185 19.214 20.324 19.2343C20.3313 19.2609 20.3366 19.2882 20.3307 19.3158C20.3278 19.3303 20.3308 19.3454 20.3389 19.3577C20.3455 19.3689 20.3527 19.3796 20.36 19.3903C20.3718 19.4056 20.3822 19.4219 20.3911 19.439C20.3987 19.4559 20.3927 19.4677 20.375 19.473C20.373 19.4736 20.3709 19.4741 20.3689 19.4746C20.3453 19.4793 20.3469 19.4913 20.3551 19.5065L20.3568 19.5092C20.3626 19.5194 20.3615 19.5263 20.3521 19.5333C20.3468 19.5373 20.3412 19.5401 20.3344 19.5443ZM20.6062 20.4453C20.6436 20.4453 20.6809 20.4453 20.7183 20.4453C20.7241 20.4453 20.7261 20.4433 20.727 20.4381C20.7314 20.4149 20.7319 20.3911 20.7285 20.3678C20.7208 20.319 20.6965 20.2816 20.6522 20.2583C20.618 20.2405 20.5813 20.238 20.5439 20.2436C20.493 20.2513 20.4523 20.2757 20.4252 20.32C20.399 20.363 20.39 20.4143 20.3998 20.4637C20.4098 20.5207 20.4396 20.5645 20.4917 20.5914C20.5325 20.6124 20.5761 20.6166 20.6208 20.6104C20.6644 20.605 20.7044 20.5835 20.7328 20.55C20.7364 20.5457 20.7376 20.543 20.7321 20.5389C20.717 20.5273 20.7024 20.515 20.6876 20.503C20.6767 20.4942 20.6767 20.4942 20.667 20.5041C20.6432 20.5283 20.6135 20.5357 20.5808 20.5345C20.5313 20.5325 20.4961 20.5013 20.488 20.4525C20.487 20.4464 20.488 20.445 20.4942 20.4451C20.5318 20.4455 20.5692 20.4455 20.6065 20.4455L20.6062 20.4453ZM20.7533 21.0227C20.7901 21.0227 20.8269 21.0227 20.8637 21.0227C20.8707 21.0227 20.8726 21.0203 20.8736 21.0141C20.8778 20.9911 20.8782 20.9676 20.8746 20.9445C20.8665 20.8952 20.8415 20.8575 20.7962 20.8349C20.7652 20.8204 20.7306 20.8155 20.6969 20.8208C20.6408 20.8277 20.597 20.8539 20.5687 20.9036C20.5471 20.9423 20.5387 20.987 20.5451 21.0309C20.5517 21.0839 20.575 21.1285 20.6204 21.1586C20.6723 21.1929 20.7294 21.198 20.7887 21.1839C20.8249 21.1756 20.8573 21.1554 20.8806 21.1265C20.8825 21.1243 20.8856 21.1223 20.8813 21.1189C20.8628 21.104 20.8443 21.089 20.8259 21.0739C20.8233 21.0718 20.8221 21.0722 20.8202 21.0746C20.8003 21.0997 20.7738 21.1107 20.7429 21.1123C20.685 21.1152 20.6435 21.0848 20.6347 21.03C20.6338 21.0238 20.6347 21.0226 20.641 21.0226C20.6783 21.0229 20.7159 21.0227 20.7535 21.0227H20.7533ZM19.1685 21.0227C19.205 21.0227 19.2414 21.0227 19.2781 21.0227C19.2859 21.0227 19.2891 21.0208 19.2902 21.0128C19.2937 20.9914 19.2941 20.9695 19.2913 20.9479C19.2838 20.8973 19.2591 20.8584 19.2126 20.8352C19.1814 20.8205 19.1466 20.8155 19.1125 20.8208C19.054 20.8283 19.0093 20.8566 18.9817 20.9096C18.9621 20.9479 18.9551 20.9914 18.9618 21.0338C18.9688 21.0858 18.992 21.1294 19.0366 21.1584C19.094 21.1958 19.1565 21.1995 19.2208 21.1791C19.2507 21.1695 19.2772 21.1512 19.2969 21.1267C19.2989 21.1243 19.3019 21.1222 19.2973 21.1186C19.2788 21.104 19.2606 21.089 19.2423 21.074C19.2401 21.0722 19.2387 21.0717 19.2367 21.0744C19.2171 21.0996 19.1903 21.1107 19.1595 21.1123C19.1051 21.1152 19.0611 21.0886 19.0512 21.0311C19.0501 21.0249 19.0506 21.0224 19.0578 21.0226C19.0946 21.023 19.1316 21.0227 19.1687 21.0227H19.1685ZM18.651 20.3602C18.651 20.4372 18.651 20.5143 18.651 20.5914C18.651 20.598 18.6529 20.5998 18.6594 20.5997C18.6859 20.5993 18.7129 20.5992 18.7397 20.5997C18.7467 20.5997 18.7484 20.598 18.7484 20.591C18.7484 20.5298 18.7484 20.4687 18.7484 20.4075C18.7484 20.4012 18.7501 20.3995 18.7563 20.3996C18.8027 20.3996 18.8491 20.3996 18.8955 20.3996C18.9012 20.3996 18.9031 20.3985 18.9031 20.3923C18.9027 20.3679 18.9027 20.3436 18.9031 20.3194C18.9031 20.3132 18.9016 20.3115 18.8953 20.3115C18.8492 20.3115 18.8031 20.3115 18.757 20.3115C18.7504 20.3115 18.7485 20.3102 18.7485 20.3034C18.7489 20.2748 18.749 20.2462 18.7485 20.2176C18.7485 20.2105 18.7505 20.2089 18.7574 20.2089C18.8124 20.2089 18.8675 20.2089 18.9226 20.2089C18.9288 20.2089 18.9307 20.2073 18.9306 20.201C18.9306 20.1769 18.9302 20.1528 18.9306 20.1287C18.9306 20.1221 18.929 20.1204 18.9223 20.1204C18.8349 20.1207 18.7475 20.1207 18.6601 20.1204C18.6531 20.1204 18.6515 20.1222 18.6515 20.1291C18.6514 20.2069 18.6513 20.2834 18.6513 20.3602H18.651ZM19.4536 20.568C19.4536 20.5777 19.4536 20.5857 19.4536 20.5935C19.4536 20.5986 19.4552 20.5997 19.4602 20.5996C19.4848 20.5996 19.5095 20.5993 19.5341 20.5996C19.54 20.5996 19.5416 20.5982 19.5416 20.5922C19.5416 20.518 19.5426 20.4438 19.541 20.3697C19.54 20.3161 19.5145 20.2763 19.4645 20.2545C19.4363 20.2428 19.4055 20.2385 19.3751 20.2421C19.3518 20.2437 19.329 20.2501 19.3083 20.2609C19.2876 20.2717 19.2693 20.2867 19.2547 20.3049C19.2514 20.3089 19.252 20.3107 19.2558 20.3135C19.2742 20.3274 19.2925 20.3414 19.3106 20.3556C19.3146 20.3587 19.3162 20.3581 19.319 20.3541C19.3261 20.3435 19.3356 20.3347 19.3467 20.3284C19.3577 20.3221 19.3701 20.3184 19.3829 20.3177C19.4256 20.3141 19.4551 20.3399 19.4541 20.3802C19.4541 20.3843 19.4533 20.3861 19.4487 20.3868C19.423 20.3908 19.3975 20.3954 19.3719 20.3995C19.3472 20.4025 19.3232 20.4094 19.3007 20.4201C19.2418 20.4508 19.2243 20.5227 19.2645 20.5738C19.2921 20.6088 19.3308 20.6163 19.3725 20.6114C19.4041 20.6077 19.4331 20.5922 19.4539 20.568H19.4536ZM19.7188 20.2803C19.7188 20.272 19.7188 20.266 19.7188 20.26C19.7188 20.2557 19.7173 20.2547 19.7132 20.2547C19.6873 20.2547 19.6613 20.2547 19.6354 20.2547C19.6307 20.2547 19.6298 20.2562 19.6298 20.2605C19.6298 20.3716 19.6298 20.4826 19.6298 20.5936C19.6298 20.5988 19.6315 20.5996 19.6364 20.5996C19.661 20.5996 19.6857 20.5992 19.7103 20.5996C19.717 20.5996 19.7191 20.5981 19.7191 20.591C19.7191 20.521 19.7191 20.4511 19.7191 20.3811C19.7186 20.3777 19.7191 20.3742 19.7205 20.3711C19.7355 20.3466 19.755 20.3285 19.7846 20.3236C19.8195 20.3179 19.8497 20.3347 19.8604 20.3665C19.8638 20.3769 19.8654 20.3877 19.8653 20.3986C19.8653 20.4629 19.8653 20.5273 19.8653 20.5918C19.8653 20.5979 19.8668 20.5997 19.8731 20.5996C19.8973 20.5992 19.9213 20.5992 19.9455 20.5996C19.9518 20.5996 19.9533 20.598 19.9533 20.5918C19.9533 20.5401 19.9533 20.4884 19.9533 20.4368C19.9541 20.4135 19.9536 20.3901 19.9517 20.3669C19.9478 20.3338 19.9379 20.3036 19.9142 20.2796C19.8764 20.2413 19.8301 20.2348 19.7799 20.2464C19.757 20.2522 19.736 20.2639 19.7191 20.2803H19.7188ZM20.1642 21.0059C20.164 21.0141 20.1644 21.0223 20.1656 21.0305C20.1733 21.0871 20.1994 21.1325 20.2484 21.163C20.2882 21.1876 20.3317 21.1945 20.3773 21.1895C20.4002 21.1875 20.4224 21.1809 20.4427 21.1702C20.4631 21.1594 20.481 21.1448 20.4957 21.1271C20.4993 21.1227 20.4988 21.1209 20.4944 21.1176C20.4745 21.1027 20.4547 21.0876 20.4351 21.0722C20.4307 21.0687 20.4288 21.0695 20.4255 21.0737C20.4103 21.0931 20.388 21.1058 20.3636 21.109C20.3391 21.1121 20.3144 21.1056 20.2947 21.0906C20.2577 21.0627 20.248 21.0237 20.2568 20.9801C20.2646 20.9408 20.2888 20.9139 20.3282 20.9042C20.3675 20.8946 20.4011 20.9051 20.4263 20.9374C20.4288 20.9408 20.4303 20.9416 20.4341 20.9386C20.454 20.9228 20.4747 20.9071 20.4953 20.8918C20.4998 20.8885 20.4986 20.8865 20.4959 20.8833C20.4881 20.8736 20.4792 20.8649 20.4693 20.8573C20.411 20.8144 20.347 20.8087 20.2804 20.8318C20.2088 20.8565 20.1645 20.9243 20.1645 21.0059H20.1642ZM20.2025 20.2411C20.1954 20.2417 20.1842 20.2421 20.1733 20.2437C20.125 20.2511 20.0843 20.2724 20.0549 20.3121C20.0199 20.3593 20.0107 20.4126 20.0224 20.4695C20.027 20.4953 20.0375 20.5196 20.0531 20.5407C20.0687 20.5618 20.0889 20.579 20.1122 20.591C20.1465 20.6088 20.1852 20.6162 20.2237 20.6122C20.2478 20.6109 20.2714 20.6047 20.293 20.5939C20.3146 20.583 20.3338 20.5679 20.3492 20.5493C20.3527 20.5451 20.3528 20.543 20.3482 20.5396C20.3284 20.5248 20.3085 20.5097 20.289 20.4943C20.2844 20.4907 20.2823 20.4915 20.2792 20.4956C20.2638 20.5152 20.2414 20.5279 20.2167 20.5309C20.192 20.5339 20.1671 20.5271 20.1475 20.5118C20.1115 20.4837 20.1021 20.4451 20.1109 20.4022C20.1187 20.3631 20.1426 20.3359 20.1822 20.3263C20.2218 20.3167 20.2551 20.3271 20.2802 20.3595C20.2837 20.3639 20.2856 20.3627 20.289 20.3601C20.3089 20.3449 20.3284 20.3296 20.3483 20.3149C20.3534 20.3111 20.3529 20.3089 20.3492 20.3045C20.3118 20.2606 20.2633 20.2421 20.2029 20.2411H20.2025ZM19.7758 21.0768C19.7742 21.073 19.7732 21.0706 19.7723 21.0682C19.7446 20.9922 19.717 20.9163 19.6894 20.8403C19.6889 20.8378 19.6874 20.8356 19.6853 20.8341C19.6832 20.8327 19.6806 20.8321 19.678 20.8325C19.6524 20.8329 19.6267 20.8329 19.601 20.8325C19.5939 20.8325 19.5934 20.8342 19.5957 20.8404C19.636 20.9506 19.676 21.0608 19.7158 21.1711C19.7176 21.1762 19.7201 21.1771 19.7249 21.177C19.7581 21.177 19.7917 21.177 19.825 21.177C19.8273 21.1774 19.8296 21.1769 19.8315 21.1756C19.8334 21.1743 19.8348 21.1723 19.8352 21.1701C19.8476 21.1352 19.8603 21.1005 19.8729 21.0657C19.9002 20.9906 19.9275 20.9154 19.9548 20.84C19.9561 20.8366 19.9593 20.8324 19.9514 20.8325C19.9239 20.8325 19.8963 20.8325 19.8688 20.8325C19.8673 20.8323 19.8659 20.8327 19.8647 20.8335C19.8636 20.8344 19.8628 20.8356 19.8625 20.837C19.8594 20.846 19.8559 20.8549 19.8529 20.8639C19.8273 20.9345 19.8019 21.0049 19.7758 21.0768ZM21.0719 20.8191C21.0546 20.8187 21.0374 20.8215 21.0211 20.8273C20.98 20.8425 20.9533 20.8705 20.949 20.9153C20.9448 20.9591 20.9623 20.9931 20.9998 21.0163C21.0158 21.0256 21.0325 21.0336 21.0498 21.0401C21.0648 21.0454 21.0792 21.0522 21.0927 21.0605C21.1167 21.0766 21.1068 21.1048 21.0878 21.1128C21.0737 21.1185 21.058 21.1189 21.0435 21.114C21.0232 21.107 21.0053 21.094 20.9922 21.0769C20.9883 21.0721 20.9865 21.0723 20.9823 21.0765C20.9667 21.0923 20.9507 21.1078 20.9345 21.1229C20.9303 21.1269 20.9309 21.1296 20.9345 21.1329C20.9814 21.1825 21.0388 21.2003 21.1049 21.186C21.1675 21.1724 21.2029 21.1154 21.1899 21.0527C21.1841 21.0246 21.1671 21.0044 21.1435 20.9891C21.123 20.9771 21.1014 20.967 21.0789 20.959C21.0667 20.9547 21.0552 20.9486 21.0447 20.9409C21.041 20.9383 21.0381 20.9347 21.0362 20.9305C21.0344 20.9264 21.0338 20.9218 21.0343 20.9172C21.0349 20.9127 21.0368 20.9085 21.0396 20.9049C21.0425 20.9013 21.0462 20.8986 21.0505 20.8971C21.0605 20.8925 21.0716 20.8912 21.0823 20.8931C21.1054 20.897 21.1218 20.9113 21.1362 20.9285C21.1389 20.9318 21.1404 20.9326 21.1439 20.9292C21.1598 20.9137 21.1759 20.8983 21.1922 20.8832C21.1969 20.8789 21.1967 20.8765 21.1926 20.8718C21.1773 20.855 21.1586 20.8417 21.1378 20.8326C21.117 20.8235 21.0945 20.8189 21.0719 20.8191ZM18.7716 20.8191C18.7514 20.8189 18.7314 20.8228 18.7127 20.8305C18.6322 20.8648 18.6332 20.9616 18.6812 21.0029C18.7007 21.0183 18.7226 21.0304 18.7461 21.0388C18.7618 21.0442 18.777 21.0512 18.7914 21.0597C18.8014 21.0663 18.8083 21.0751 18.8064 21.0881C18.8056 21.0944 18.803 21.1002 18.7988 21.1049C18.7947 21.1097 18.7892 21.113 18.7831 21.1146C18.7722 21.118 18.7606 21.1184 18.7495 21.1157C18.7253 21.1102 18.7074 21.0952 18.6921 21.0768C18.6879 21.0719 18.6859 21.0726 18.6819 21.0768C18.666 21.0927 18.6498 21.1084 18.6336 21.1239C18.6304 21.127 18.6301 21.1288 18.6336 21.1321C18.6808 21.1828 18.7389 21.2017 18.8059 21.186C18.8813 21.1684 18.9037 21.1004 18.8884 21.0463C18.8797 21.0153 18.8575 20.9961 18.8301 20.9815C18.8114 20.9716 18.7914 20.9646 18.772 20.9563C18.7615 20.9525 18.7518 20.9469 18.7434 20.9396C18.7402 20.937 18.7377 20.9336 18.7361 20.9298C18.7346 20.9259 18.7341 20.9217 18.7346 20.9176C18.7352 20.9135 18.7367 20.9096 18.7392 20.9063C18.7417 20.903 18.745 20.9003 18.7487 20.8986C18.7591 20.8931 18.7711 20.8913 18.7827 20.8936C18.8048 20.8972 18.8211 20.9105 18.8348 20.9272C18.8391 20.9322 18.8415 20.9327 18.8462 20.9278C18.8611 20.9129 18.8764 20.8982 18.8921 20.884C18.897 20.8795 18.8974 20.8769 18.8928 20.8721C18.8598 20.8366 18.819 20.8203 18.7716 20.819V20.8191ZM19.0832 20.288C19.0832 20.2778 19.0832 20.2696 19.0832 20.2615C19.0832 20.2567 19.0825 20.2549 19.0769 20.2549C19.0517 20.2552 19.0266 20.2549 19.0014 20.2549C18.9963 20.2549 18.9947 20.2561 18.9947 20.2615C18.9947 20.372 18.9947 20.4825 18.9947 20.5929C18.9947 20.5985 18.9964 20.6 19.0019 20.6C19.0263 20.6 19.0506 20.5996 19.0748 20.6C19.0814 20.6 19.083 20.5982 19.083 20.5917C19.083 20.5284 19.0836 20.4651 19.0824 20.4018C19.082 20.3943 19.0835 20.3869 19.0867 20.3801C19.0898 20.3733 19.0945 20.3674 19.1005 20.3629C19.108 20.3562 19.1167 20.3509 19.126 20.3471C19.1489 20.3383 19.174 20.337 19.1977 20.3432C19.2027 20.3443 19.2035 20.3432 19.2035 20.3386C19.2035 20.3121 19.2035 20.2856 19.2035 20.259C19.2035 20.2539 19.2016 20.2524 19.1969 20.2512C19.1735 20.2458 19.149 20.2479 19.1269 20.2573C19.1106 20.2646 19.0958 20.275 19.0834 20.2879L19.0832 20.288ZM19.4491 20.8657C19.4491 20.8558 19.4486 20.8479 19.4491 20.84C19.4496 20.8337 19.4472 20.8326 19.4415 20.8327C19.4171 20.8327 19.3927 20.833 19.3685 20.8327C19.3627 20.8327 19.3611 20.834 19.3611 20.8401C19.3611 20.9501 19.3611 21.06 19.3611 21.17C19.3611 21.1766 19.363 21.1772 19.3686 21.1772C19.3922 21.1768 19.4158 21.1767 19.4393 21.1772C19.447 21.1772 19.4495 21.1759 19.4494 21.1675C19.449 21.105 19.4499 21.0425 19.4487 20.9799C19.4483 20.9722 19.4498 20.9644 19.4531 20.9574C19.4564 20.9505 19.4614 20.9444 19.4676 20.9398C19.4716 20.9364 19.4759 20.9333 19.4804 20.9306C19.5061 20.9153 19.5335 20.9147 19.5619 20.9203C19.5677 20.9215 19.5697 20.9211 19.5696 20.9144C19.5692 20.8887 19.5692 20.863 19.5696 20.8374C19.5696 20.8314 19.5672 20.8297 19.5622 20.8286C19.5382 20.8233 19.5132 20.8259 19.4908 20.836C19.4754 20.8433 19.4613 20.8533 19.4494 20.8656L19.4491 20.8657ZM20.0037 21.0052C20.0037 21.0603 20.0037 21.1153 20.0037 21.1705C20.0037 21.1753 20.0045 21.1771 20.0103 21.1771C20.0357 21.1768 20.0611 21.1768 20.0865 21.1771C20.0921 21.1771 20.0932 21.1752 20.0932 21.1705C20.0932 21.0604 20.0932 20.9502 20.0932 20.84C20.0932 20.8334 20.091 20.8327 20.0855 20.8328C20.0611 20.8328 20.0367 20.8331 20.0125 20.8328C20.0059 20.8328 20.0042 20.8342 20.0042 20.841C20.0041 20.8955 20.0039 20.9503 20.0039 21.0051L20.0037 21.0052ZM19.9909 20.7213C19.9909 20.7362 19.9968 20.7506 20.0074 20.7612C20.0179 20.7719 20.0322 20.7779 20.0472 20.778C20.0549 20.7785 20.0627 20.7775 20.07 20.7749C20.0773 20.7723 20.084 20.7683 20.0897 20.763C20.0954 20.7578 20.0999 20.7514 20.103 20.7443C20.1061 20.7372 20.1077 20.7296 20.1078 20.7218C20.1078 20.7141 20.1062 20.7064 20.1032 20.6993C20.1001 20.6922 20.0956 20.6858 20.09 20.6805C20.0843 20.6752 20.0777 20.6711 20.0704 20.6685C20.0631 20.6659 20.0553 20.6648 20.0476 20.6653C20.0327 20.6653 20.0185 20.6712 20.0079 20.6817C19.9974 20.6921 19.9914 20.7063 19.9912 20.7212L19.9909 20.7213ZM20.2042 19.3033C20.2078 19.3049 20.2104 19.3033 20.213 19.3023C20.2342 19.2967 20.2554 19.2931 20.2771 19.2988C20.2842 19.3007 20.2849 19.3024 20.2802 19.3082C20.2764 19.3126 20.2718 19.3162 20.2665 19.3188C20.2578 19.3239 20.2495 19.3298 20.2418 19.3364C20.2367 19.3403 20.2346 19.347 20.2263 19.3454C20.2242 19.345 20.221 19.3454 20.2204 19.3482C20.2198 19.351 20.223 19.3511 20.2243 19.3527C20.2316 19.3612 20.2448 19.3552 20.2523 19.3642C20.2536 19.3657 20.257 19.3658 20.2569 19.3694C20.257 19.371 20.2565 19.3726 20.2554 19.3738C20.2544 19.3751 20.2529 19.3759 20.2513 19.376C20.2471 19.3767 20.243 19.3771 20.238 19.3777C20.2465 19.3805 20.2556 19.3814 20.2645 19.3802C20.2808 19.3794 20.2824 19.3774 20.282 19.3612C20.2817 19.3594 20.2817 19.3575 20.282 19.3557C20.2841 19.3491 20.2798 19.3417 20.2865 19.3358C20.2897 19.3335 20.2932 19.3317 20.2969 19.3305C20.3005 19.3292 20.3036 19.3265 20.2997 19.323C20.2959 19.3195 20.2976 19.3172 20.3008 19.3146C20.3067 19.3104 20.311 19.3043 20.313 19.2974C20.314 19.2929 20.3137 19.2882 20.3091 19.2865C20.2991 19.2818 20.2882 19.2791 20.2771 19.2788C20.2564 19.2803 20.2362 19.2856 20.2174 19.2945C20.2126 19.2966 20.2082 19.2996 20.2045 19.3033L20.2042 19.3033Z" fill="#FEFEFE"/>
-<path d="M19.4692 19.7391L19.4604 19.7445C19.4529 19.7491 19.4448 19.7525 19.4432 19.7632C19.4413 19.7689 19.4384 19.7743 19.4347 19.779C19.4489 19.7813 19.4501 19.764 19.4617 19.7636C19.4618 19.7664 19.461 19.7693 19.4596 19.7717C19.4581 19.7742 19.456 19.7762 19.4535 19.7776C19.4421 19.7832 19.4332 19.793 19.4287 19.8049C19.4254 19.812 19.4212 19.8187 19.4163 19.8248C19.4204 19.8266 19.4222 19.8239 19.424 19.822C19.4375 19.8079 19.4523 19.795 19.4681 19.7835C19.4871 19.7698 19.5035 19.7519 19.5283 19.7471C19.5579 19.7414 19.5871 19.7333 19.6176 19.7352C19.6312 19.7363 19.6448 19.7333 19.6567 19.7266C19.6638 19.7225 19.6718 19.7242 19.6787 19.7209C19.689 19.7155 19.6988 19.7092 19.7081 19.7021C19.7161 19.696 19.7247 19.6907 19.7337 19.6861C19.7383 19.684 19.7427 19.6808 19.7485 19.6839C19.7516 19.6855 19.7537 19.6823 19.7559 19.6805C19.7671 19.6711 19.7779 19.6613 19.7928 19.6582C19.7936 19.6579 19.7944 19.6577 19.7952 19.6576C19.8001 19.6576 19.8068 19.6539 19.8093 19.6604C19.8113 19.6657 19.804 19.6663 19.8012 19.6692C19.7984 19.6722 19.7952 19.6741 19.7926 19.6772C19.8022 19.6772 19.8072 19.6682 19.8156 19.6657C19.816 19.6672 19.8159 19.6687 19.8152 19.6701C19.8146 19.6715 19.8136 19.6726 19.8123 19.6733C19.7846 19.6943 19.7596 19.7186 19.738 19.7458C19.7095 19.7811 19.6728 19.8039 19.6324 19.8224C19.601 19.8368 19.5698 19.8519 19.5387 19.867C19.5289 19.8718 19.5195 19.8773 19.5107 19.8835C19.505 19.8874 19.4983 19.8893 19.4915 19.889C19.2147 19.889 18.9378 19.889 18.6609 19.889C18.6531 19.889 18.6509 19.8874 18.6509 19.8791C18.6509 19.5749 18.6509 19.2707 18.6509 18.9665C18.6509 18.9588 18.6523 18.9564 18.6607 18.9564C19.0544 18.9564 19.4481 18.9564 19.8418 18.9564H19.8501C19.8323 18.9644 19.8146 18.9717 19.7971 18.9795C19.76 18.9959 19.7369 19.0249 19.7221 19.0616C19.7214 19.0641 19.7199 19.0664 19.7178 19.0679C19.6975 19.0812 19.6841 19.1005 19.6722 19.121C19.663 19.137 19.6538 19.153 19.6449 19.1693C19.6331 19.191 19.6349 19.2138 19.6402 19.2366C19.6472 19.2673 19.6509 19.2986 19.6601 19.3288C19.661 19.3335 19.6614 19.3383 19.6613 19.3431C19.6629 19.3535 19.6662 19.3635 19.6713 19.3727C19.6745 19.378 19.6771 19.3837 19.6789 19.3896C19.6799 19.3929 19.6818 19.3958 19.6845 19.398C19.6959 19.4099 19.7061 19.4228 19.7152 19.4365C19.7173 19.4401 19.7218 19.4442 19.7184 19.4486C19.715 19.4529 19.7101 19.4505 19.7056 19.4499C19.693 19.4476 19.6814 19.4415 19.6725 19.4323C19.6651 19.4256 19.658 19.4185 19.6504 19.4112C19.6481 19.4153 19.6508 19.4173 19.6525 19.4192C19.6578 19.4251 19.6634 19.4308 19.6686 19.4368C19.6702 19.4382 19.6713 19.4401 19.6717 19.4422C19.6722 19.4444 19.6719 19.4465 19.671 19.4485C19.6685 19.4529 19.664 19.4525 19.6596 19.4517H19.6581C19.6462 19.4498 19.6452 19.4505 19.644 19.4631C19.6359 19.46 19.6272 19.4583 19.6185 19.4582C19.6161 19.4582 19.6137 19.4575 19.6116 19.4563C19.6095 19.455 19.6078 19.4533 19.6066 19.4511C19.6049 19.448 19.6025 19.4454 19.5995 19.4434C19.5965 19.4414 19.5931 19.4402 19.5896 19.4398C19.5475 19.4302 19.5047 19.4246 19.4615 19.4232C19.4443 19.422 19.427 19.4252 19.4113 19.4325C19.3957 19.4399 19.3821 19.4511 19.372 19.4651C19.3702 19.4676 19.3666 19.4702 19.3691 19.4732C19.3715 19.4762 19.375 19.4744 19.3779 19.4728C19.4146 19.4515 19.456 19.4462 19.4965 19.4384C19.5028 19.4373 19.5092 19.437 19.5155 19.4374C19.5156 19.4379 19.5156 19.4384 19.5155 19.4389C19.4992 19.4411 19.4832 19.445 19.4678 19.4504C19.4497 19.4563 19.431 19.4598 19.4125 19.4643C19.405 19.4661 19.3977 19.4688 19.3909 19.4724C19.407 19.4721 19.4232 19.4726 19.4392 19.474C19.482 19.4791 19.5239 19.4869 19.562 19.5087C19.5673 19.5117 19.5722 19.5153 19.5766 19.5194C19.5815 19.5243 19.5875 19.5279 19.5941 19.5297C19.6007 19.5316 19.6077 19.5317 19.6144 19.53C19.6266 19.528 19.6387 19.5252 19.6506 19.5217C19.6668 19.5175 19.6818 19.5095 19.6943 19.4985C19.6956 19.4972 19.6969 19.4956 19.699 19.497C19.7012 19.4983 19.7003 19.5003 19.6998 19.5019C19.6961 19.5142 19.6947 19.5272 19.6869 19.5382C19.6831 19.5436 19.6859 19.5486 19.6935 19.5515C19.6874 19.5545 19.6806 19.5544 19.6757 19.5585C19.6743 19.5598 19.6691 19.5607 19.6737 19.5644C19.6744 19.5649 19.6745 19.5661 19.6737 19.5662C19.6666 19.5668 19.6671 19.5723 19.6656 19.5773C19.6648 19.5803 19.659 19.5797 19.6571 19.5839C19.66 19.5874 19.6642 19.5846 19.6686 19.5861C19.6539 19.5937 19.6388 19.6003 19.6232 19.606C19.6204 19.6069 19.6177 19.6078 19.6186 19.6111C19.6194 19.6144 19.6226 19.6117 19.6247 19.6126C19.6243 19.6153 19.6215 19.6155 19.6197 19.6166C19.6021 19.6264 19.5844 19.6359 19.567 19.6458C19.5612 19.6492 19.5537 19.651 19.5516 19.6586C19.5509 19.6604 19.5489 19.66 19.5474 19.6599C19.5408 19.6599 19.5408 19.6658 19.5408 19.6688C19.5415 19.6738 19.5461 19.6707 19.5492 19.6702C19.5537 19.6694 19.5583 19.6657 19.5643 19.6708C19.5511 19.6724 19.5431 19.6812 19.5336 19.689C19.563 19.6854 19.5923 19.6865 19.6204 19.6785C19.6566 19.6682 19.6867 19.647 19.7137 19.6217C19.715 19.6203 19.7163 19.619 19.7177 19.6178C19.7205 19.6156 19.7232 19.6098 19.7258 19.6116C19.7295 19.6145 19.7258 19.6193 19.7239 19.623C19.7178 19.6366 19.7077 19.648 19.6949 19.6557C19.6866 19.661 19.6787 19.6669 19.6709 19.6726C19.6529 19.6859 19.632 19.6897 19.6113 19.6937C19.5791 19.6998 19.5463 19.7022 19.5145 19.7111C19.4955 19.7159 19.4775 19.7242 19.4615 19.7354C19.4568 19.7388 19.4501 19.7372 19.4462 19.742C19.445 19.7435 19.4419 19.7444 19.4434 19.7469C19.445 19.7493 19.4473 19.7482 19.4493 19.7469C19.4549 19.743 19.461 19.7398 19.4674 19.7373L19.4692 19.7391ZM19.3998 19.6252C19.4026 19.6264 19.4056 19.627 19.4086 19.627C19.4116 19.627 19.4146 19.6264 19.4174 19.6252C19.4296 19.621 19.4416 19.6153 19.4552 19.6165C19.4566 19.6165 19.4579 19.6162 19.4591 19.6157C19.474 19.6124 19.489 19.609 19.5039 19.6056C19.5286 19.5997 19.5527 19.5911 19.5755 19.5799C19.5311 19.5462 19.4788 19.5344 19.4273 19.5194C19.4287 19.518 19.4316 19.5189 19.4316 19.5167C19.4316 19.5145 19.4292 19.5141 19.4277 19.5137C19.423 19.5125 19.4183 19.5118 19.4137 19.5107C19.4122 19.5107 19.4092 19.5107 19.4096 19.5093C19.4121 19.5017 19.405 19.5034 19.4023 19.5027C19.3924 19.4999 19.3821 19.498 19.371 19.4956C19.3764 19.4928 19.3808 19.4903 19.3825 19.4852C19.3834 19.4825 19.3854 19.4795 19.3825 19.4772C19.3797 19.4749 19.3776 19.4772 19.3753 19.4784C19.3622 19.4861 19.3515 19.4974 19.3443 19.5108C19.341 19.5166 19.334 19.5241 19.3372 19.5289C19.3405 19.5337 19.3505 19.5329 19.3581 19.5328C19.363 19.532 19.368 19.5321 19.3728 19.5333C19.3702 19.5359 19.3668 19.5375 19.3631 19.5381C19.3581 19.5386 19.3532 19.5399 19.3486 19.5418C19.3443 19.5443 19.3416 19.5471 19.3474 19.5512C19.3441 19.5534 19.34 19.5538 19.3382 19.5578C19.3398 19.559 19.3417 19.5599 19.3436 19.5602C19.3456 19.5606 19.3476 19.5605 19.3495 19.5599C19.3519 19.559 19.3546 19.559 19.3571 19.5599C19.3595 19.5608 19.3616 19.5626 19.3628 19.5649C19.3469 19.5715 19.3433 19.5902 19.3296 19.5989C19.3293 19.5992 19.3291 19.5995 19.3289 19.5999C19.3287 19.6002 19.3287 19.6006 19.3287 19.601C19.3294 19.6055 19.3262 19.6077 19.3233 19.6098C19.3132 19.6179 19.3034 19.6269 19.2928 19.634C19.2822 19.6412 19.2806 19.6569 19.269 19.6639C19.2685 19.6641 19.2682 19.6644 19.2679 19.6647C19.2675 19.6651 19.2673 19.6655 19.2672 19.6659C19.267 19.6664 19.267 19.6668 19.267 19.6673C19.2671 19.6678 19.2672 19.6682 19.2674 19.6686C19.269 19.6708 19.2708 19.6692 19.2724 19.6686C19.2761 19.6672 19.2797 19.6655 19.2831 19.6636C19.3007 19.6526 19.3189 19.6427 19.3377 19.6341C19.359 19.6251 19.3793 19.6155 19.4031 19.6204C19.4035 19.6206 19.4039 19.6209 19.4042 19.6212C19.404 19.6238 19.4003 19.6223 19.3998 19.6252ZM19.4239 19.3957C19.4154 19.392 19.4063 19.3903 19.3971 19.3907C19.3879 19.3911 19.3789 19.3937 19.3708 19.3981C19.3379 19.417 19.3083 19.441 19.283 19.4692C19.2667 19.4878 19.2478 19.5039 19.227 19.5171C19.2229 19.5194 19.2196 19.523 19.2175 19.5272C19.2036 19.5546 19.1872 19.5807 19.1687 19.6052C19.1673 19.6071 19.1645 19.6085 19.1655 19.6118C19.1685 19.6122 19.1694 19.6096 19.1708 19.6081C19.1886 19.5882 19.2065 19.5689 19.2257 19.5507C19.2474 19.5301 19.271 19.5115 19.2961 19.4953C19.2989 19.4935 19.301 19.4928 19.3034 19.4953C19.3058 19.4978 19.3018 19.4987 19.3012 19.5005C19.3007 19.5023 19.2997 19.5027 19.2992 19.5038C19.2987 19.505 19.2957 19.5084 19.2977 19.5101C19.2998 19.5117 19.303 19.5093 19.3049 19.5072C19.3058 19.5062 19.3062 19.5048 19.3071 19.5039C19.3108 19.5006 19.3101 19.494 19.3134 19.4918C19.3258 19.4836 19.3322 19.4713 19.3386 19.4587C19.3436 19.4483 19.3507 19.4389 19.3594 19.4313C19.3722 19.4206 19.3865 19.4119 19.3988 19.3999C19.4 19.4025 19.3998 19.407 19.4032 19.4051C19.4096 19.4017 19.4177 19.4018 19.4239 19.3957ZM19.4072 19.7194C19.3954 19.7138 19.3848 19.7174 19.3748 19.715C19.3703 19.7141 19.3657 19.7147 19.3616 19.7167C19.3541 19.7201 19.3461 19.7225 19.338 19.7239C19.3148 19.7276 19.2938 19.7398 19.279 19.758C19.2772 19.7601 19.2666 19.7622 19.2768 19.7679C19.2768 19.7679 19.2761 19.7698 19.2759 19.7708C19.275 19.7777 19.2723 19.7842 19.2681 19.7897C19.263 19.7967 19.2576 19.8036 19.2521 19.8104C19.2502 19.8129 19.2491 19.8153 19.2521 19.8171C19.2551 19.8189 19.2553 19.8155 19.2566 19.8142C19.2648 19.8063 19.2705 19.7943 19.2849 19.796C19.2858 19.796 19.287 19.7945 19.2879 19.7936C19.2977 19.7824 19.31 19.7737 19.3239 19.7683C19.3537 19.7574 19.3769 19.7341 19.4072 19.7194ZM19.4711 19.6418C19.4623 19.6352 19.4538 19.633 19.4446 19.6396C19.4418 19.641 19.4388 19.642 19.4357 19.6426C19.4331 19.6433 19.4308 19.6447 19.4291 19.6466C19.4279 19.648 19.4262 19.6497 19.4274 19.6515C19.4286 19.6533 19.4302 19.6525 19.4317 19.6523C19.442 19.6507 19.4524 19.6492 19.4627 19.6472C19.4661 19.6466 19.4691 19.6446 19.4711 19.6418ZM19.3932 19.7607C19.3932 19.7597 19.392 19.7592 19.3906 19.759C19.389 19.7588 19.3874 19.759 19.386 19.7596C19.3845 19.7602 19.3832 19.7611 19.3822 19.7623C19.3764 19.768 19.3705 19.7735 19.3647 19.7793C19.3632 19.7807 19.3596 19.782 19.3618 19.7846C19.3623 19.7851 19.3629 19.7854 19.3635 19.7857C19.3641 19.7859 19.3648 19.7861 19.3654 19.7861C19.3661 19.7861 19.3668 19.7859 19.3674 19.7857C19.368 19.7854 19.3686 19.7851 19.3691 19.7846C19.3733 19.7806 19.3783 19.7776 19.3837 19.7757C19.3901 19.7728 19.3907 19.7666 19.3932 19.7607Z" fill="#273375"/>
-<path d="M20.3341 19.5443C20.3408 19.5401 20.3465 19.5371 20.3515 19.5333C20.3609 19.5263 20.362 19.5194 20.3561 19.5092L20.3545 19.5065C20.3463 19.4913 20.3446 19.4793 20.3682 19.4746C20.3703 19.4741 20.3723 19.4736 20.3743 19.473C20.392 19.4677 20.398 19.4559 20.3905 19.439C20.3816 19.4219 20.3712 19.4056 20.3594 19.3903C20.3521 19.3796 20.3448 19.3689 20.3383 19.3577C20.3304 19.3453 20.3278 19.3302 20.3308 19.3159C20.3367 19.2882 20.3314 19.261 20.3242 19.2344C20.3186 19.2141 20.3121 19.1939 20.3058 19.1737C20.3043 19.1698 20.3025 19.166 20.3003 19.1623C20.2993 19.161 20.2986 19.1595 20.2982 19.1579C20.2979 19.1563 20.2979 19.1546 20.2982 19.153C20.2985 19.1513 20.2992 19.1498 20.3002 19.1485C20.3012 19.1472 20.3025 19.146 20.3039 19.1452C20.3085 19.1417 20.3131 19.1381 20.3172 19.1341C20.3192 19.1323 20.3207 19.13 20.3217 19.1275C20.3227 19.1249 20.3231 19.1222 20.3229 19.1195C20.3227 19.1168 20.3219 19.1142 20.3205 19.1118C20.3191 19.1095 20.3172 19.1075 20.315 19.1059C20.3142 19.1051 20.3132 19.1045 20.3121 19.1042C20.311 19.1039 20.3098 19.1039 20.3087 19.1041C20.3076 19.1043 20.3065 19.1048 20.3056 19.1056C20.3048 19.1063 20.3041 19.1073 20.3036 19.1083C20.302 19.1122 20.2997 19.1158 20.297 19.1191C20.2961 19.1202 20.2947 19.1209 20.2932 19.121C20.2917 19.1212 20.2903 19.1207 20.2891 19.1198C20.287 19.1179 20.2891 19.1155 20.2903 19.1135C20.2955 19.1062 20.2955 19.1063 20.2867 19.1045C20.2848 19.1044 20.2828 19.1039 20.281 19.1031C20.2793 19.1022 20.2777 19.1009 20.2764 19.0994C20.2618 19.0804 20.2423 19.0658 20.2199 19.0571C20.2189 19.0567 20.218 19.0562 20.2171 19.0557C20.2171 19.0557 20.2171 19.0552 20.2171 19.0542C20.2215 19.0546 20.2258 19.055 20.2303 19.0554C20.2374 19.0563 20.2446 19.0564 20.2517 19.0558C20.2576 19.0558 20.2633 19.0538 20.2679 19.0502C20.2726 19.0466 20.2759 19.0416 20.2773 19.0359C20.2836 19.015 20.2802 19.0028 20.2626 18.9881C20.249 18.9768 20.2327 18.9703 20.2176 18.9616L20.2106 18.9577C20.2133 18.9562 20.2165 18.9558 20.2195 18.9564C20.5421 18.9564 20.8647 18.9564 21.1874 18.9564C21.1947 18.9564 21.1971 18.9578 21.1971 18.9657C21.1971 19.2707 21.1971 19.5754 21.1971 19.8799C21.1971 19.8874 21.1949 19.8889 21.1878 19.8889C20.8691 19.8888 20.5507 19.8887 20.2325 19.8887C20.2279 19.8887 20.2233 19.8874 20.2193 19.8851C20.1833 19.8652 20.1446 19.8516 20.106 19.838C20.1038 19.837 20.1016 19.8362 20.0993 19.8356C20.0847 19.8334 20.0801 19.8229 20.0791 19.8102C20.0743 19.7514 20.0942 19.7027 20.14 19.6653C20.1509 19.6575 20.1643 19.6541 20.1776 19.6557C20.2026 19.6572 20.2268 19.6636 20.2513 19.6669C20.258 19.6677 20.2641 19.6701 20.2705 19.6713C20.2791 19.6732 20.288 19.6732 20.2966 19.6714C20.3052 19.6695 20.3133 19.6659 20.3204 19.6607C20.3284 19.6539 20.3341 19.6447 20.3366 19.6344C20.339 19.6241 20.3381 19.6133 20.3339 19.6036C20.3322 19.6009 20.3316 19.5976 20.3322 19.5945C20.3328 19.5913 20.3346 19.5885 20.3372 19.5865C20.3411 19.5831 20.3453 19.5799 20.3493 19.5763C20.3516 19.5744 20.353 19.5718 20.3535 19.5689C20.354 19.5661 20.3534 19.5631 20.3519 19.5606C20.3506 19.5566 20.3483 19.553 20.3452 19.5501C20.3421 19.5473 20.3383 19.5453 20.3341 19.5443Z" fill="#E20613"/>
-<path d="M20.6061 20.4455C20.5687 20.4455 20.5314 20.4455 20.494 20.4455C20.4874 20.4455 20.4868 20.4468 20.4879 20.453C20.4958 20.5017 20.531 20.5329 20.5807 20.5349C20.6134 20.5362 20.6431 20.5288 20.6668 20.5046C20.6765 20.4947 20.6765 20.4946 20.6874 20.5034C20.7022 20.5154 20.7168 20.5278 20.7319 20.5393C20.7374 20.5435 20.7363 20.5459 20.7326 20.5504C20.7042 20.5839 20.6642 20.6055 20.6206 20.6108C20.576 20.6171 20.5323 20.6129 20.4915 20.5919C20.4393 20.565 20.4096 20.5211 20.3996 20.4641C20.3898 20.4147 20.3988 20.3635 20.425 20.3204C20.4521 20.2761 20.4928 20.2517 20.5437 20.2441C20.5811 20.2384 20.6179 20.241 20.652 20.2588C20.6963 20.2818 20.7206 20.3194 20.7283 20.3682C20.7317 20.3916 20.7312 20.4154 20.7268 20.4386C20.7259 20.4437 20.7239 20.4458 20.7181 20.4458C20.6808 20.4451 20.6434 20.4455 20.6061 20.4455ZM20.5679 20.3744C20.5914 20.3744 20.615 20.3744 20.6385 20.3744C20.6431 20.3744 20.6444 20.3735 20.6434 20.3686C20.641 20.3541 20.6334 20.341 20.622 20.3318C20.6041 20.3172 20.583 20.314 20.5607 20.3153C20.5455 20.316 20.531 20.3213 20.519 20.3306C20.507 20.3399 20.4981 20.3527 20.4936 20.3672C20.492 20.3725 20.4923 20.3746 20.4987 20.3745C20.5218 20.3741 20.5448 20.3743 20.5679 20.3743V20.3744Z" fill="#273375"/>
-<path d="M20.7531 21.0227C20.7154 21.0227 20.6779 21.0227 20.6404 21.0227C20.6343 21.0227 20.6332 21.0239 20.6342 21.0301C20.6427 21.0849 20.6844 21.1154 20.7424 21.1125C20.7733 21.1109 20.8 21.0999 20.8197 21.0747C20.8215 21.0723 20.8228 21.072 20.8253 21.074C20.8437 21.0891 20.8622 21.1041 20.8808 21.119C20.885 21.1224 20.882 21.1244 20.88 21.1266C20.8567 21.1555 20.8243 21.1757 20.7882 21.184C20.7288 21.1981 20.6717 21.193 20.6199 21.1587C20.5743 21.1283 20.5506 21.0841 20.5443 21.0309C20.538 20.987 20.5463 20.9422 20.568 20.9036C20.5962 20.8539 20.6401 20.8277 20.6961 20.8208C20.73 20.8155 20.7648 20.8205 20.7959 20.8352C20.8413 20.8578 20.8662 20.8955 20.8743 20.9448C20.8779 20.9679 20.8775 20.9914 20.8733 21.0143C20.8723 21.0206 20.8704 21.023 20.8634 21.023C20.8267 21.0222 20.7899 21.0227 20.7531 21.0227ZM20.6384 20.9525C20.6879 20.9525 20.7368 20.9525 20.7857 20.9525C20.7909 20.9525 20.7904 20.9501 20.7898 20.9466C20.7883 20.9377 20.7849 20.9292 20.7798 20.9218C20.7747 20.9143 20.768 20.9081 20.7601 20.9036C20.7448 20.8951 20.7273 20.8912 20.7097 20.8925C20.6928 20.8928 20.6764 20.8989 20.6634 20.9098C20.6504 20.9208 20.6416 20.9358 20.6384 20.9525Z" fill="#E20714"/>
-<path d="M19.1684 21.0227C19.1313 21.0227 19.0943 21.0227 19.0571 21.0227C19.0498 21.0227 19.0493 21.025 19.0505 21.0312C19.0603 21.0885 19.1043 21.115 19.1586 21.1123C19.1896 21.1107 19.2163 21.0996 19.2359 21.0744C19.2379 21.0717 19.2393 21.0722 19.2415 21.074C19.2598 21.089 19.2779 21.104 19.2964 21.1186C19.3011 21.1222 19.298 21.1243 19.296 21.1267C19.2763 21.1512 19.2499 21.1695 19.2199 21.1791C19.1556 21.1995 19.0932 21.1958 19.0357 21.1584C18.9912 21.1294 18.9679 21.0855 18.9609 21.0338C18.9543 20.9914 18.9613 20.9479 18.9808 20.9096C19.0084 20.8566 19.0532 20.8283 19.1117 20.8208C19.1459 20.8153 19.181 20.8203 19.2123 20.8352C19.2587 20.8586 19.2836 20.8975 19.2911 20.9479C19.2938 20.9695 19.2935 20.9914 19.2899 21.0128C19.2888 21.0208 19.2857 21.0228 19.2779 21.0227C19.2416 21.0222 19.205 21.0227 19.1684 21.0227ZM19.1308 20.9525C19.1541 20.9525 19.1773 20.9525 19.2007 20.9525C19.2058 20.9525 19.2069 20.9513 19.206 20.9462C19.2036 20.9314 19.1958 20.9181 19.184 20.9088C19.1675 20.8966 19.1471 20.8907 19.1266 20.8924C19.1107 20.8926 19.0953 20.8978 19.0826 20.9074C19.0699 20.9169 19.0606 20.9303 19.0561 20.9455C19.0544 20.9507 19.0545 20.9527 19.061 20.9526C19.0843 20.9523 19.1076 20.9525 19.1308 20.9525Z" fill="#E20714"/>
-<path d="M18.6509 20.3602C18.6509 20.2834 18.6509 20.2065 18.6509 20.1297C18.6509 20.1228 18.6524 20.121 18.6595 20.121C18.7469 20.1213 18.8343 20.1213 18.9217 20.121C18.9283 20.121 18.93 20.1228 18.9299 20.1293C18.9295 20.1534 18.9295 20.1775 18.9299 20.2016C18.9299 20.2079 18.9282 20.2096 18.922 20.2095C18.8669 20.2095 18.8118 20.2095 18.7567 20.2095C18.7501 20.2095 18.7478 20.2111 18.7479 20.2182C18.7484 20.2468 18.7483 20.2754 18.7479 20.304C18.7479 20.3106 18.75 20.3122 18.7564 20.3121C18.8028 20.3121 18.8486 20.3121 18.8947 20.3121C18.9013 20.3121 18.9026 20.3138 18.9024 20.32C18.9021 20.3444 18.9021 20.3687 18.9024 20.3929C18.9024 20.3991 18.9006 20.4002 18.8949 20.4002C18.8485 20.4002 18.8021 20.4002 18.7557 20.4002C18.7494 20.4002 18.7477 20.4018 18.7478 20.4081C18.7478 20.4693 18.7478 20.5304 18.7478 20.5916C18.7478 20.5987 18.746 20.6004 18.739 20.6003C18.7125 20.5998 18.6855 20.5999 18.6587 20.6003C18.6521 20.6003 18.6504 20.5987 18.6504 20.592C18.6509 20.5143 18.6509 20.4372 18.6509 20.3602Z" fill="#273375"/>
-<path d="M19.4534 20.568C19.4326 20.5921 19.4036 20.6076 19.372 20.6113C19.3302 20.6161 19.2915 20.6086 19.264 20.5736C19.2237 20.5225 19.2412 20.4506 19.3002 20.4199C19.3226 20.4092 19.3467 20.4023 19.3714 20.3993C19.3969 20.3952 19.4225 20.3906 19.4481 20.3867C19.4527 20.3859 19.4534 20.3841 19.4535 20.38C19.4545 20.3397 19.425 20.3137 19.3823 20.3175C19.3696 20.3182 19.3572 20.3219 19.3461 20.3282C19.335 20.3345 19.3256 20.3433 19.3185 20.3539C19.3157 20.3579 19.3141 20.3586 19.31 20.3554C19.2919 20.3412 19.2736 20.3272 19.2552 20.3133C19.2514 20.3105 19.2508 20.3087 19.2541 20.3047C19.2688 20.2865 19.287 20.2715 19.3077 20.2607C19.3285 20.2499 19.3512 20.2435 19.3745 20.2419C19.4049 20.2383 19.4357 20.2426 19.464 20.2543C19.5141 20.2762 19.5394 20.3159 19.5405 20.3695C19.542 20.4436 19.5405 20.5179 19.541 20.592C19.541 20.5981 19.5395 20.5995 19.5336 20.5995C19.5089 20.5991 19.4842 20.5995 19.4597 20.5995C19.4549 20.5995 19.453 20.5985 19.453 20.5934C19.4538 20.5857 19.4534 20.5777 19.4534 20.568ZM19.4534 20.4726C19.4534 20.4679 19.4531 20.463 19.4534 20.4583C19.454 20.4526 19.4522 20.4512 19.4465 20.4522C19.4278 20.4557 19.409 20.4588 19.3902 20.4618C19.3753 20.4633 19.3606 20.4673 19.347 20.4736C19.3406 20.4767 19.3354 20.4817 19.332 20.488C19.3287 20.4942 19.3273 20.5013 19.3282 20.5083C19.3288 20.5156 19.3319 20.5225 19.337 20.5279C19.342 20.5332 19.3488 20.5367 19.356 20.5377C19.3698 20.5405 19.3841 20.5399 19.3976 20.536C19.4111 20.5321 19.4235 20.525 19.4337 20.5153C19.4466 20.5041 19.4582 20.4919 19.4534 20.4726Z" fill="#273375"/>
+<path d="M19.4692 19.739L19.4604 19.7444C19.4529 19.749 19.4448 19.7524 19.4432 19.7632C19.4413 19.7689 19.4384 19.7742 19.4347 19.779C19.4489 19.7812 19.4501 19.764 19.4617 19.7635C19.4618 19.7664 19.461 19.7692 19.4596 19.7717C19.4581 19.7741 19.456 19.7762 19.4535 19.7776C19.4421 19.7832 19.4332 19.7929 19.4287 19.8049C19.4254 19.812 19.4212 19.8186 19.4163 19.8248C19.4204 19.8265 19.4222 19.8238 19.424 19.822C19.4375 19.8078 19.4523 19.7949 19.4681 19.7834C19.4871 19.7697 19.5035 19.7518 19.5283 19.7471C19.5579 19.7414 19.5871 19.7333 19.6176 19.7351C19.6312 19.7363 19.6448 19.7333 19.6567 19.7266C19.6638 19.7224 19.6718 19.7241 19.6787 19.7208C19.689 19.7154 19.6988 19.7091 19.7081 19.702C19.7161 19.6959 19.7247 19.6906 19.7337 19.6861C19.7383 19.684 19.7427 19.6808 19.7485 19.6838C19.7516 19.6855 19.7537 19.6822 19.7559 19.6804C19.7671 19.671 19.7779 19.6613 19.7928 19.6581C19.7936 19.6578 19.7944 19.6576 19.7952 19.6575C19.8001 19.6575 19.8068 19.6539 19.8093 19.6603C19.8113 19.6656 19.804 19.6662 19.8012 19.6692C19.7984 19.6722 19.7952 19.674 19.7926 19.6771C19.8022 19.6771 19.8072 19.6682 19.8156 19.6657C19.816 19.6671 19.8159 19.6686 19.8152 19.67C19.8146 19.6714 19.8136 19.6725 19.8123 19.6732C19.7846 19.6942 19.7596 19.7186 19.738 19.7457C19.7095 19.7811 19.6728 19.8039 19.6324 19.8224C19.601 19.8368 19.5698 19.8518 19.5387 19.867C19.5289 19.8717 19.5195 19.8772 19.5107 19.8834C19.505 19.8873 19.4983 19.8892 19.4915 19.8889C19.2147 19.8889 18.9378 19.8889 18.6609 19.8889C18.6531 19.8889 18.6509 19.8873 18.6509 19.879C18.6509 19.5748 18.6509 19.2706 18.6509 18.9664C18.6509 18.9588 18.6523 18.9563 18.6607 18.9563C19.0544 18.9563 19.4481 18.9563 19.8418 18.9563H19.8501C19.8323 18.9644 19.8146 18.9717 19.7971 18.9794C19.76 18.9959 19.7369 19.0248 19.7221 19.0616C19.7214 19.0641 19.7199 19.0663 19.7178 19.0679C19.6975 19.0811 19.6841 19.1005 19.6722 19.1209C19.663 19.1369 19.6538 19.153 19.6449 19.1692C19.6331 19.1909 19.6349 19.2137 19.6402 19.2365C19.6472 19.2672 19.6509 19.2986 19.6601 19.3288C19.661 19.3335 19.6614 19.3383 19.6613 19.343C19.6629 19.3534 19.6662 19.3634 19.6713 19.3726C19.6745 19.3779 19.6771 19.3836 19.6789 19.3896C19.6799 19.3928 19.6818 19.3958 19.6845 19.398C19.6959 19.4098 19.7061 19.4227 19.7152 19.4364C19.7173 19.4401 19.7218 19.4441 19.7184 19.4485C19.715 19.4529 19.7101 19.4504 19.7056 19.4498C19.693 19.4476 19.6814 19.4414 19.6725 19.4322C19.6651 19.4256 19.658 19.4184 19.6504 19.4111C19.6481 19.4153 19.6508 19.4172 19.6525 19.4191C19.6578 19.425 19.6634 19.4307 19.6686 19.4368C19.6702 19.4382 19.6713 19.4401 19.6717 19.4422C19.6722 19.4443 19.6719 19.4465 19.671 19.4484C19.6685 19.4528 19.664 19.4525 19.6596 19.4517H19.6581C19.6462 19.4497 19.6452 19.4504 19.644 19.4631C19.6359 19.4599 19.6272 19.4583 19.6185 19.4582C19.6161 19.4581 19.6137 19.4575 19.6116 19.4562C19.6095 19.455 19.6078 19.4532 19.6066 19.4511C19.6049 19.448 19.6025 19.4453 19.5995 19.4434C19.5965 19.4414 19.5931 19.4401 19.5896 19.4397C19.5475 19.4301 19.5047 19.4245 19.4615 19.4231C19.4443 19.4219 19.427 19.4251 19.4113 19.4325C19.3957 19.4398 19.3821 19.451 19.372 19.4651C19.3702 19.4675 19.3666 19.4702 19.3691 19.4732C19.3715 19.4761 19.375 19.4744 19.3779 19.4727C19.4146 19.4514 19.456 19.4462 19.4965 19.4383C19.5028 19.4372 19.5092 19.4369 19.5155 19.4374C19.5156 19.4378 19.5156 19.4383 19.5155 19.4388C19.4992 19.441 19.4832 19.4449 19.4678 19.4504C19.4497 19.4563 19.431 19.4598 19.4125 19.4643C19.405 19.466 19.3977 19.4687 19.3909 19.4724C19.407 19.472 19.4232 19.4725 19.4392 19.474C19.482 19.4791 19.5239 19.4868 19.562 19.5086C19.5673 19.5116 19.5722 19.5152 19.5766 19.5194C19.5815 19.5242 19.5875 19.5278 19.5941 19.5297C19.6007 19.5315 19.6077 19.5316 19.6144 19.53C19.6266 19.5279 19.6387 19.5251 19.6506 19.5216C19.6668 19.5174 19.6818 19.5095 19.6943 19.4984C19.6956 19.4972 19.6969 19.4956 19.699 19.4969C19.7012 19.4982 19.7003 19.5002 19.6998 19.5018C19.6961 19.5141 19.6947 19.5272 19.6869 19.5382C19.6831 19.5435 19.6859 19.5485 19.6935 19.5514C19.6874 19.5544 19.6806 19.5543 19.6757 19.5585C19.6743 19.5597 19.6691 19.5606 19.6737 19.5644C19.6744 19.5648 19.6745 19.566 19.6737 19.5661C19.6666 19.5668 19.6671 19.5723 19.6656 19.5772C19.6648 19.5803 19.659 19.5797 19.6571 19.5839C19.66 19.5874 19.6642 19.5845 19.6686 19.586C19.6539 19.5936 19.6388 19.6003 19.6232 19.6059C19.6204 19.6068 19.6177 19.6077 19.6186 19.611C19.6194 19.6144 19.6226 19.6116 19.6247 19.6125C19.6243 19.6153 19.6215 19.6155 19.6197 19.6165C19.6021 19.6264 19.5844 19.6358 19.567 19.6458C19.5612 19.6491 19.5537 19.6509 19.5516 19.6585C19.5509 19.6604 19.5489 19.6599 19.5474 19.6598C19.5408 19.6598 19.5408 19.6657 19.5408 19.6687C19.5415 19.6738 19.5461 19.6706 19.5492 19.6701C19.5537 19.6694 19.5583 19.6656 19.5643 19.6707C19.5511 19.6723 19.5431 19.6812 19.5336 19.6889C19.563 19.6854 19.5923 19.6865 19.6204 19.6785C19.6566 19.6682 19.6867 19.6469 19.7137 19.6216C19.715 19.6203 19.7163 19.619 19.7177 19.6177C19.7205 19.6155 19.7232 19.6097 19.7258 19.6116C19.7295 19.6145 19.7258 19.6193 19.7239 19.6229C19.7178 19.6365 19.7077 19.648 19.6949 19.6557C19.6866 19.6609 19.6787 19.6668 19.6709 19.6726C19.6529 19.6858 19.632 19.6897 19.6113 19.6936C19.5791 19.6997 19.5463 19.7021 19.5145 19.711C19.4955 19.7159 19.4775 19.7241 19.4615 19.7353C19.4568 19.7388 19.4501 19.7371 19.4462 19.742C19.445 19.7435 19.4419 19.7443 19.4434 19.7468C19.445 19.7493 19.4473 19.7481 19.4493 19.7468C19.4549 19.7429 19.461 19.7397 19.4674 19.7373L19.4692 19.739ZM19.3998 19.6252C19.4026 19.6264 19.4056 19.627 19.4086 19.627C19.4116 19.627 19.4146 19.6264 19.4174 19.6252C19.4296 19.6209 19.4416 19.6152 19.4552 19.6165C19.4566 19.6164 19.4579 19.6161 19.4591 19.6156C19.474 19.6123 19.489 19.609 19.5039 19.6055C19.5286 19.5997 19.5527 19.591 19.5755 19.5798C19.5311 19.5461 19.4788 19.5343 19.4273 19.5194C19.4287 19.5179 19.4316 19.5188 19.4316 19.5166C19.4316 19.5145 19.4292 19.5141 19.4277 19.5137C19.423 19.5125 19.4183 19.5117 19.4137 19.5107C19.4122 19.5107 19.4092 19.5107 19.4096 19.5093C19.4121 19.5016 19.405 19.5033 19.4023 19.5027C19.3924 19.4998 19.3821 19.498 19.371 19.4956C19.3764 19.4928 19.3808 19.4903 19.3825 19.4851C19.3834 19.4824 19.3854 19.4795 19.3825 19.4771C19.3797 19.4748 19.3776 19.4771 19.3753 19.4783C19.3622 19.4861 19.3515 19.4973 19.3443 19.5107C19.341 19.5165 19.334 19.524 19.3372 19.5288C19.3405 19.5337 19.3505 19.5328 19.3581 19.5328C19.363 19.5319 19.368 19.5321 19.3728 19.5333C19.3702 19.5358 19.3668 19.5375 19.3631 19.538C19.3581 19.5386 19.3532 19.5398 19.3486 19.5417C19.3443 19.5442 19.3416 19.5471 19.3474 19.5511C19.3441 19.5533 19.34 19.5537 19.3382 19.5577C19.3398 19.559 19.3417 19.5598 19.3436 19.5602C19.3456 19.5605 19.3476 19.5604 19.3495 19.5599C19.3519 19.5589 19.3546 19.5589 19.3571 19.5598C19.3595 19.5607 19.3616 19.5625 19.3628 19.5648C19.3469 19.5715 19.3433 19.5902 19.3296 19.5988C19.3293 19.5991 19.3291 19.5994 19.3289 19.5998C19.3287 19.6002 19.3287 19.6006 19.3287 19.601C19.3294 19.6055 19.3262 19.6076 19.3233 19.6098C19.3132 19.6179 19.3034 19.6268 19.2928 19.634C19.2822 19.6411 19.2806 19.6568 19.269 19.6638C19.2685 19.664 19.2682 19.6643 19.2679 19.6647C19.2675 19.665 19.2673 19.6654 19.2672 19.6659C19.267 19.6663 19.267 19.6668 19.267 19.6673C19.2671 19.6677 19.2672 19.6682 19.2674 19.6686C19.269 19.6708 19.2708 19.6691 19.2724 19.6686C19.2761 19.6671 19.2797 19.6654 19.2831 19.6635C19.3007 19.6525 19.3189 19.6427 19.3377 19.634C19.359 19.625 19.3793 19.6154 19.4031 19.6203C19.4035 19.6205 19.4039 19.6208 19.4042 19.6211C19.404 19.6238 19.4003 19.6222 19.3998 19.6252ZM19.4239 19.3956C19.4154 19.3919 19.4063 19.3902 19.3971 19.3906C19.3879 19.3911 19.3789 19.3936 19.3708 19.3981C19.3379 19.4169 19.3083 19.4409 19.283 19.4692C19.2667 19.4877 19.2478 19.5038 19.227 19.517C19.2229 19.5194 19.2196 19.5229 19.2175 19.5272C19.2036 19.5545 19.1872 19.5806 19.1687 19.6051C19.1673 19.607 19.1645 19.6085 19.1655 19.6118C19.1685 19.6122 19.1694 19.6096 19.1708 19.608C19.1886 19.5881 19.2065 19.5688 19.2257 19.5507C19.2474 19.53 19.271 19.5115 19.2961 19.4952C19.2989 19.4934 19.301 19.4927 19.3034 19.4952C19.3058 19.4978 19.3018 19.4986 19.3012 19.5004C19.3007 19.5022 19.2997 19.5026 19.2992 19.5038C19.2987 19.505 19.2957 19.5084 19.2977 19.51C19.2998 19.5117 19.303 19.5093 19.3049 19.5072C19.3058 19.5062 19.3062 19.5047 19.3071 19.5039C19.3108 19.5005 19.3101 19.4939 19.3134 19.4918C19.3258 19.4836 19.3322 19.4712 19.3386 19.4586C19.3436 19.4482 19.3507 19.4389 19.3594 19.4312C19.3722 19.4205 19.3865 19.4118 19.3988 19.3998C19.4 19.4024 19.3998 19.4069 19.4032 19.405C19.4096 19.4016 19.4177 19.4018 19.4239 19.3956ZM19.4072 19.7193C19.3954 19.7137 19.3848 19.7174 19.3748 19.715C19.3703 19.7141 19.3657 19.7147 19.3616 19.7166C19.3541 19.72 19.3461 19.7224 19.338 19.7238C19.3148 19.7275 19.2938 19.7397 19.279 19.7579C19.2772 19.76 19.2666 19.7622 19.2768 19.7678C19.2768 19.7678 19.2761 19.7697 19.2759 19.7707C19.275 19.7776 19.2723 19.7841 19.2681 19.7896C19.263 19.7967 19.2576 19.8035 19.2521 19.8104C19.2502 19.8128 19.2491 19.8152 19.2521 19.817C19.2551 19.8188 19.2553 19.8155 19.2566 19.8142C19.2648 19.8062 19.2705 19.7943 19.2849 19.7959C19.2858 19.7959 19.287 19.7945 19.2879 19.7935C19.2977 19.7824 19.31 19.7737 19.3239 19.7682C19.3537 19.7573 19.3769 19.7341 19.4072 19.7193ZM19.4711 19.6417C19.4623 19.6351 19.4538 19.633 19.4446 19.6395C19.4418 19.641 19.4388 19.642 19.4357 19.6425C19.4331 19.6432 19.4308 19.6446 19.4291 19.6466C19.4279 19.648 19.4262 19.6496 19.4274 19.6514C19.4286 19.6532 19.4302 19.6524 19.4317 19.6522C19.442 19.6506 19.4524 19.6491 19.4627 19.6472C19.4661 19.6465 19.4691 19.6446 19.4711 19.6417ZM19.3932 19.7606C19.3932 19.7596 19.392 19.7591 19.3906 19.7589C19.389 19.7587 19.3874 19.7589 19.386 19.7595C19.3845 19.7601 19.3832 19.761 19.3822 19.7622C19.3764 19.7679 19.3705 19.7735 19.3647 19.7792C19.3632 19.7807 19.3596 19.7819 19.3618 19.7845C19.3623 19.785 19.3629 19.7854 19.3635 19.7856C19.3641 19.7859 19.3648 19.786 19.3654 19.786C19.3661 19.786 19.3668 19.7859 19.3674 19.7856C19.368 19.7854 19.3686 19.785 19.3691 19.7845C19.3733 19.7806 19.3783 19.7775 19.3837 19.7756C19.3901 19.7728 19.3907 19.7666 19.3932 19.7606Z" fill="#273375"/>
+<path d="M20.3341 19.5442C20.3408 19.54 20.3465 19.537 20.3515 19.5332C20.3609 19.5262 20.362 19.5193 20.3561 19.5091L20.3545 19.5064C20.3463 19.4912 20.3446 19.4793 20.3682 19.4745C20.3703 19.474 20.3723 19.4735 20.3743 19.4729C20.392 19.4677 20.398 19.4559 20.3905 19.439C20.3816 19.4218 20.3712 19.4055 20.3594 19.3903C20.3521 19.3795 20.3448 19.3688 20.3383 19.3576C20.3304 19.3452 20.3278 19.3302 20.3308 19.3158C20.3367 19.2882 20.3314 19.261 20.3242 19.2343C20.3186 19.214 20.3121 19.1938 20.3058 19.1737C20.3043 19.1697 20.3025 19.1659 20.3003 19.1623C20.2993 19.161 20.2986 19.1594 20.2982 19.1578C20.2979 19.1562 20.2979 19.1545 20.2982 19.1529C20.2985 19.1513 20.2992 19.1498 20.3002 19.1484C20.3012 19.1471 20.3025 19.146 20.3039 19.1452C20.3085 19.1416 20.3131 19.138 20.3172 19.134C20.3192 19.1322 20.3207 19.1299 20.3217 19.1274C20.3227 19.1249 20.3231 19.1221 20.3229 19.1194C20.3227 19.1167 20.3219 19.1141 20.3205 19.1117C20.3191 19.1094 20.3172 19.1074 20.315 19.1059C20.3142 19.1051 20.3132 19.1045 20.3121 19.1042C20.311 19.1038 20.3098 19.1038 20.3087 19.104C20.3076 19.1043 20.3065 19.1048 20.3056 19.1055C20.3048 19.1063 20.3041 19.1072 20.3036 19.1083C20.302 19.1121 20.2997 19.1158 20.297 19.119C20.2961 19.1201 20.2947 19.1208 20.2932 19.121C20.2917 19.1211 20.2903 19.1207 20.2891 19.1197C20.287 19.1179 20.2891 19.1154 20.2903 19.1134C20.2955 19.1061 20.2955 19.1062 20.2867 19.1045C20.2848 19.1044 20.2828 19.1039 20.281 19.103C20.2793 19.1021 20.2777 19.1009 20.2764 19.0994C20.2618 19.0804 20.2423 19.0657 20.2199 19.0571C20.2189 19.0567 20.218 19.0562 20.2171 19.0556C20.2171 19.0556 20.2171 19.0552 20.2171 19.0542C20.2215 19.0546 20.2258 19.0549 20.2303 19.0554C20.2374 19.0562 20.2446 19.0564 20.2517 19.0558C20.2576 19.0557 20.2633 19.0538 20.2679 19.0502C20.2726 19.0466 20.2759 19.0415 20.2773 19.0359C20.2836 19.015 20.2802 19.0027 20.2626 18.9881C20.249 18.9767 20.2327 18.9702 20.2176 18.9616L20.2106 18.9576C20.2133 18.9562 20.2165 18.9557 20.2195 18.9563C20.5421 18.9563 20.8647 18.9563 21.1874 18.9563C21.1947 18.9563 21.1971 18.9577 21.1971 18.9657C21.1971 19.2706 21.1971 19.5753 21.1971 19.8799C21.1971 19.8874 21.1949 19.8889 21.1878 19.8889C20.8691 19.8887 20.5507 19.8886 20.2325 19.8886C20.2279 19.8886 20.2233 19.8874 20.2193 19.885C20.1833 19.8652 20.1446 19.8515 20.106 19.8379C20.1038 19.837 20.1016 19.8362 20.0993 19.8356C20.0847 19.8333 20.0801 19.8229 20.0791 19.8101C20.0743 19.7513 20.0942 19.7026 20.14 19.6652C20.1509 19.6574 20.1643 19.654 20.1776 19.6557C20.2026 19.6571 20.2268 19.6635 20.2513 19.6668C20.258 19.6677 20.2641 19.67 20.2705 19.6713C20.2791 19.6731 20.288 19.6731 20.2966 19.6713C20.3052 19.6695 20.3133 19.6658 20.3204 19.6606C20.3284 19.6539 20.3341 19.6446 20.3366 19.6344C20.339 19.6241 20.3381 19.6133 20.3339 19.6036C20.3322 19.6008 20.3316 19.5976 20.3322 19.5944C20.3328 19.5912 20.3346 19.5884 20.3372 19.5865C20.3411 19.583 20.3453 19.5798 20.3493 19.5763C20.3516 19.5744 20.353 19.5718 20.3535 19.5689C20.354 19.566 20.3534 19.563 20.3519 19.5606C20.3506 19.5565 20.3483 19.5529 20.3452 19.5501C20.3421 19.5472 20.3383 19.5452 20.3341 19.5442Z" fill="#E20613"/>
+<path d="M20.6061 20.4456C20.5687 20.4456 20.5314 20.4456 20.494 20.4456C20.4874 20.4456 20.4868 20.4469 20.4879 20.4531C20.4958 20.5017 20.531 20.533 20.5807 20.535C20.6134 20.5363 20.6431 20.5288 20.6668 20.5046C20.6765 20.4948 20.6765 20.4947 20.6874 20.5035C20.7022 20.5155 20.7168 20.5278 20.7319 20.5394C20.7374 20.5435 20.7363 20.546 20.7326 20.5505C20.7042 20.584 20.6642 20.6056 20.6206 20.6109C20.576 20.6171 20.5323 20.613 20.4915 20.5919C20.4393 20.565 20.4096 20.5212 20.3996 20.4642C20.3898 20.4148 20.3988 20.3635 20.425 20.3205C20.4521 20.2762 20.4928 20.2518 20.5437 20.2441C20.5811 20.2385 20.6179 20.2411 20.652 20.2588C20.6963 20.2819 20.7206 20.3195 20.7283 20.3683C20.7317 20.3916 20.7312 20.4154 20.7268 20.4386C20.7259 20.4438 20.7239 20.4459 20.7181 20.4458C20.6808 20.4452 20.6434 20.4456 20.6061 20.4456ZM20.5679 20.3745C20.5914 20.3745 20.615 20.3745 20.6385 20.3745C20.6431 20.3745 20.6444 20.3735 20.6434 20.3687C20.641 20.3542 20.6334 20.3411 20.622 20.3318C20.6041 20.3172 20.583 20.3141 20.5607 20.3153C20.5455 20.316 20.531 20.3214 20.519 20.3307C20.507 20.34 20.4981 20.3528 20.4936 20.3673C20.492 20.3725 20.4923 20.3747 20.4987 20.3746C20.5218 20.3741 20.5448 20.3743 20.5679 20.3743V20.3745Z" fill="#273375"/>
+<path d="M20.7531 21.0228C20.7154 21.0228 20.6779 21.0228 20.6404 21.0228C20.6343 21.0228 20.6332 21.024 20.6342 21.0302C20.6427 21.0851 20.6844 21.1155 20.7424 21.1126C20.7733 21.111 20.8 21.1 20.8197 21.0749C20.8215 21.0725 20.8228 21.0721 20.8253 21.0741C20.8437 21.0892 20.8622 21.1042 20.8808 21.1191C20.885 21.1225 20.882 21.1245 20.88 21.1268C20.8567 21.1556 20.8243 21.1758 20.7882 21.1842C20.7288 21.1982 20.6717 21.1931 20.6199 21.1588C20.5743 21.1284 20.5506 21.0843 20.5443 21.031C20.538 20.9871 20.5463 20.9424 20.568 20.9037C20.5962 20.854 20.6401 20.8279 20.6961 20.8209C20.73 20.8156 20.7648 20.8206 20.7959 20.8353C20.8413 20.8579 20.8662 20.8956 20.8743 20.9449C20.8779 20.968 20.8775 20.9915 20.8733 21.0145C20.8723 21.0207 20.8704 21.0232 20.8634 21.0231C20.8267 21.0224 20.7899 21.0228 20.7531 21.0228ZM20.6384 20.9526C20.6879 20.9526 20.7368 20.9526 20.7857 20.9526C20.7909 20.9526 20.7904 20.9502 20.7898 20.9467C20.7883 20.9378 20.7849 20.9293 20.7798 20.9219C20.7747 20.9145 20.768 20.9083 20.7601 20.9038C20.7448 20.8952 20.7273 20.8913 20.7097 20.8926C20.6928 20.8929 20.6764 20.899 20.6634 20.9099C20.6504 20.9209 20.6416 20.9359 20.6384 20.9526Z" fill="#E20714"/>
+<path d="M19.1684 21.0226C19.1313 21.0226 19.0943 21.0226 19.0571 21.0226C19.0498 21.0226 19.0493 21.025 19.0505 21.0312C19.0603 21.0885 19.1043 21.115 19.1586 21.1123C19.1896 21.1106 19.2163 21.0995 19.2359 21.0743C19.2379 21.0716 19.2393 21.0722 19.2415 21.0739C19.2598 21.0889 19.2779 21.1039 19.2964 21.1185C19.3011 21.1221 19.298 21.1242 19.296 21.1266C19.2763 21.1512 19.2499 21.1694 19.2199 21.1791C19.1556 21.1994 19.0932 21.1958 19.0357 21.1583C18.9912 21.1293 18.9679 21.0854 18.9609 21.0338C18.9543 20.9913 18.9613 20.9478 18.9808 20.9095C19.0084 20.8565 19.0532 20.8283 19.1117 20.8208C19.1459 20.8153 19.181 20.8203 19.2123 20.8352C19.2587 20.8585 19.2836 20.8975 19.2911 20.9479C19.2938 20.9694 19.2935 20.9913 19.2899 21.0128C19.2888 21.0207 19.2857 21.0228 19.2779 21.0226C19.2416 21.0222 19.205 21.0226 19.1684 21.0226ZM19.1308 20.9524C19.1541 20.9524 19.1773 20.9524 19.2007 20.9524C19.2058 20.9524 19.2069 20.9512 19.206 20.9461C19.2036 20.9314 19.1958 20.918 19.184 20.9087C19.1675 20.8965 19.1471 20.8907 19.1266 20.8924C19.1107 20.8925 19.0953 20.8978 19.0826 20.9073C19.0699 20.9169 19.0606 20.9302 19.0561 20.9454C19.0544 20.9506 19.0545 20.9526 19.061 20.9525C19.0843 20.9522 19.1076 20.9524 19.1308 20.9524Z" fill="#E20714"/>
+<path d="M18.6509 20.3603C18.6509 20.2834 18.6509 20.2066 18.6509 20.1298C18.6509 20.1228 18.6524 20.1211 18.6595 20.1211C18.7469 20.1214 18.8343 20.1214 18.9217 20.1211C18.9283 20.1211 18.93 20.1228 18.9299 20.1294C18.9295 20.1535 18.9295 20.1776 18.9299 20.2017C18.9299 20.208 18.9282 20.2097 18.922 20.2096C18.8669 20.2096 18.8118 20.2096 18.7567 20.2096C18.7501 20.2096 18.7478 20.2111 18.7479 20.2183C18.7484 20.2468 18.7483 20.2755 18.7479 20.3041C18.7479 20.3107 18.75 20.3123 18.7564 20.3122C18.8028 20.3122 18.8486 20.3122 18.8947 20.3122C18.9013 20.3122 18.9026 20.3139 18.9024 20.32C18.9021 20.3444 18.9021 20.3688 18.9024 20.3929C18.9024 20.3991 18.9006 20.4002 18.8949 20.4002C18.8485 20.4002 18.8021 20.4002 18.7557 20.4002C18.7494 20.4002 18.7477 20.4018 18.7478 20.4081C18.7478 20.4693 18.7478 20.5305 18.7478 20.5917C18.7478 20.5987 18.746 20.6005 18.739 20.6004C18.7125 20.5999 18.6855 20.6 18.6587 20.6004C18.6521 20.6004 18.6504 20.5988 18.6504 20.5921C18.6509 20.5144 18.6509 20.4373 18.6509 20.3603Z" fill="#273375"/>
+<path d="M19.4534 20.5681C19.4326 20.5922 19.4036 20.6076 19.372 20.6113C19.3302 20.6162 19.2915 20.6087 19.264 20.5737C19.2237 20.5226 19.2412 20.4506 19.3002 20.42C19.3226 20.4093 19.3467 20.4023 19.3714 20.3994C19.3969 20.3953 19.4225 20.3907 19.4481 20.3867C19.4527 20.386 19.4534 20.3842 19.4535 20.3801C19.4545 20.3398 19.425 20.3138 19.3823 20.3176C19.3696 20.3183 19.3572 20.322 19.3461 20.3283C19.335 20.3346 19.3256 20.3434 19.3185 20.354C19.3157 20.358 19.3141 20.3586 19.31 20.3554C19.2919 20.3413 19.2736 20.3272 19.2552 20.3134C19.2514 20.3106 19.2508 20.3088 19.2541 20.3048C19.2688 20.2866 19.287 20.2716 19.3077 20.2608C19.3285 20.25 19.3512 20.2436 19.3745 20.242C19.4049 20.2384 19.4357 20.2426 19.464 20.2543C19.5141 20.2762 19.5394 20.316 19.5405 20.3696C19.542 20.4437 19.5405 20.5179 19.541 20.5921C19.541 20.5981 19.5395 20.5996 19.5336 20.5995C19.5089 20.5991 19.4842 20.5995 19.4597 20.5995C19.4549 20.5995 19.453 20.5985 19.453 20.5934C19.4538 20.5857 19.4534 20.5778 19.4534 20.5681ZM19.4534 20.4726C19.4534 20.4679 19.4531 20.4631 19.4534 20.4584C19.454 20.4527 19.4522 20.4512 19.4465 20.4522C19.4278 20.4557 19.409 20.4588 19.3902 20.4619C19.3753 20.4634 19.3606 20.4673 19.347 20.4737C19.3406 20.4768 19.3354 20.4818 19.332 20.488C19.3287 20.4942 19.3273 20.5014 19.3282 20.5084C19.3288 20.5157 19.3319 20.5226 19.337 20.5279C19.342 20.5333 19.3488 20.5368 19.356 20.5378C19.3698 20.5406 19.3841 20.54 19.3976 20.5361C19.4111 20.5322 19.4235 20.5251 19.4337 20.5154C19.4466 20.5041 19.4582 20.492 19.4534 20.4726Z" fill="#273375"/>
 <path d="M19.7187 20.2803C19.7356 20.2638 19.7564 20.2521 19.7792 20.2463C19.8294 20.2349 19.8757 20.2413 19.9135 20.2794C19.9373 20.3034 19.9471 20.3339 19.9511 20.3667C19.9529 20.3899 19.9535 20.4133 19.9526 20.4366C19.9526 20.4882 19.9526 20.5399 19.9526 20.5916C19.9526 20.5978 19.9511 20.5995 19.9448 20.5994C19.9207 20.599 19.8966 20.599 19.8725 20.5994C19.8659 20.5994 19.8646 20.5977 19.8646 20.5916C19.8646 20.5271 19.8646 20.4628 19.8646 20.3984C19.8648 20.3875 19.8631 20.3767 19.8598 20.3663C19.849 20.3346 19.8189 20.3177 19.7839 20.3234C19.7544 20.3283 19.7348 20.3464 19.7199 20.3709C19.7185 20.374 19.7179 20.3775 19.7184 20.3809C19.7184 20.4509 19.7184 20.5208 19.7184 20.5908C19.7184 20.5979 19.7166 20.5996 19.7097 20.5994C19.685 20.599 19.6604 20.5994 19.6358 20.5994C19.6311 20.5994 19.6292 20.5986 19.6292 20.5934C19.6292 20.4824 19.6292 20.3714 19.6292 20.2603C19.6292 20.256 19.63 20.2544 19.6347 20.2545C19.6607 20.2545 19.6866 20.2545 19.7126 20.2545C19.7167 20.2545 19.7183 20.2555 19.7181 20.2598C19.7184 20.266 19.7187 20.272 19.7187 20.2803Z" fill="#273375"/>
-<path d="M20.1641 21.0059C20.1641 20.9243 20.2084 20.8567 20.2802 20.8318C20.3468 20.8087 20.4109 20.8144 20.4692 20.8573C20.479 20.8649 20.4879 20.8737 20.4957 20.8833C20.4984 20.8865 20.4996 20.8885 20.4951 20.8919C20.4745 20.9071 20.4541 20.9228 20.4339 20.9386C20.4301 20.9416 20.4287 20.9408 20.4261 20.9374C20.4007 20.9049 20.3672 20.8942 20.328 20.9042C20.2888 20.9143 20.2645 20.9408 20.2566 20.9801C20.2479 21.0237 20.2575 21.0627 20.2946 21.0907C20.3142 21.1056 20.339 21.1122 20.3634 21.109C20.3879 21.1058 20.4101 21.0931 20.4253 21.0737C20.4287 21.0695 20.4305 21.0687 20.435 21.0722C20.4546 21.0876 20.4743 21.1027 20.4942 21.1176C20.4986 21.1209 20.4992 21.1227 20.4955 21.1271C20.4809 21.1448 20.4629 21.1594 20.4426 21.1702C20.4223 21.1809 20.4 21.1875 20.3772 21.1896C20.3315 21.1947 20.2878 21.1878 20.2482 21.163C20.1992 21.1325 20.1731 21.0872 20.1655 21.0305C20.1643 21.0223 20.1639 21.0141 20.1641 21.0059Z" fill="#E20714"/>
-<path d="M20.2023 20.2411C20.2627 20.2421 20.3113 20.2606 20.3486 20.3046C20.3523 20.309 20.3529 20.3112 20.3478 20.3149C20.3279 20.3297 20.308 20.345 20.2884 20.3601C20.285 20.3627 20.2832 20.364 20.2797 20.3595C20.2544 20.3271 20.2209 20.3165 20.1816 20.3264C20.1423 20.3363 20.1182 20.3631 20.1103 20.4023C20.1016 20.4451 20.111 20.4838 20.147 20.5119C20.1666 20.5272 20.1915 20.534 20.2162 20.531C20.2409 20.5279 20.2633 20.5152 20.2787 20.4956C20.282 20.4915 20.2839 20.4907 20.2885 20.4943C20.308 20.5097 20.3278 20.5248 20.3478 20.5397C20.3523 20.543 20.3523 20.5451 20.3487 20.5493C20.3333 20.5679 20.3141 20.5831 20.2925 20.5939C20.2709 20.6047 20.2473 20.611 20.2232 20.6122C20.1848 20.6162 20.146 20.6088 20.1117 20.591C20.0884 20.579 20.0682 20.5618 20.0526 20.5407C20.0371 20.5197 20.0265 20.4953 20.0219 20.4695C20.0102 20.4126 20.0194 20.3593 20.0544 20.3121C20.0839 20.2723 20.1245 20.2511 20.1728 20.2437C20.184 20.2421 20.1952 20.2417 20.2023 20.2411Z" fill="#273375"/>
-<path d="M19.7753 21.0768C19.8013 21.0049 19.8269 20.9345 19.8524 20.8639C19.8556 20.855 19.859 20.8461 19.8621 20.8371C19.8623 20.8357 19.8631 20.8344 19.8643 20.8336C19.8654 20.8328 19.8669 20.8324 19.8683 20.8326C19.8959 20.8326 19.9234 20.8326 19.951 20.8326C19.9588 20.8326 19.9556 20.8366 19.9543 20.8401C19.927 20.9152 19.8997 20.9904 19.8725 21.0658C19.8599 21.1005 19.8471 21.1353 19.8348 21.1701C19.8343 21.1724 19.833 21.1744 19.8311 21.1757C19.8292 21.177 19.8268 21.1775 19.8245 21.1771C19.7914 21.1771 19.7578 21.1771 19.7244 21.1771C19.7197 21.1771 19.7172 21.1763 19.7153 21.1712C19.6755 21.0607 19.6355 20.9505 19.5952 20.8405C19.5929 20.8342 19.5935 20.8325 19.6005 20.8326C19.6262 20.833 19.6519 20.833 19.6776 20.8326C19.6801 20.8322 19.6827 20.8328 19.6848 20.8342C19.6869 20.8357 19.6884 20.8379 19.6889 20.8404C19.7164 20.9164 19.744 20.9924 19.7718 21.0682C19.7727 21.0706 19.7738 21.073 19.7753 21.0768Z" fill="#E20714"/>
-<path d="M21.0715 20.819C21.0942 20.819 21.1166 20.8236 21.1374 20.8328C21.1582 20.8419 21.1769 20.8553 21.1922 20.8721C21.1963 20.8766 21.1964 20.8792 21.1918 20.8835C21.1754 20.8986 21.1594 20.914 21.1434 20.9295C21.1399 20.9329 21.1385 20.9321 21.1357 20.9288C21.1213 20.9117 21.1049 20.8973 21.0819 20.8934C21.0711 20.8915 21.06 20.8929 21.05 20.8974C21.0458 20.899 21.042 20.9017 21.0391 20.9052C21.0363 20.9088 21.0345 20.913 21.0339 20.9176C21.0333 20.9221 21.0339 20.9267 21.0358 20.9308C21.0376 20.935 21.0405 20.9386 21.0443 20.9412C21.0547 20.9489 21.0662 20.955 21.0785 20.9593C21.1009 20.9673 21.1225 20.9774 21.143 20.9894C21.1666 21.0047 21.1836 21.0249 21.1895 21.053C21.2027 21.1158 21.167 21.1727 21.1044 21.1863C21.0381 21.2006 20.9809 21.1828 20.934 21.1333C20.9305 21.1295 20.9299 21.1272 20.934 21.1233C20.9502 21.108 20.9661 21.0925 20.9818 21.0768C20.986 21.0726 20.9879 21.0724 20.9918 21.0772C21.0048 21.0944 21.0227 21.1073 21.0431 21.1143C21.0575 21.1193 21.0732 21.1188 21.0874 21.1131C21.1063 21.1051 21.1162 21.0769 21.0923 21.0608C21.0787 21.0525 21.0644 21.0457 21.0494 21.0405C21.0321 21.0339 21.0153 21.026 20.9993 21.0167C20.9615 20.9934 20.9443 20.9594 20.9486 20.9156C20.9529 20.8708 20.9796 20.8427 21.0207 20.8277C21.0369 20.8217 21.0541 20.8188 21.0715 20.819Z" fill="#E20714"/>
-<path d="M18.7712 20.819C18.8186 20.8202 18.8593 20.8365 18.8919 20.872C18.8964 20.8769 18.896 20.8794 18.8911 20.8839C18.8754 20.8981 18.8601 20.9127 18.8452 20.9278C18.8403 20.9326 18.8381 20.9321 18.8339 20.9271C18.8201 20.9105 18.8038 20.8971 18.7817 20.8935C18.7701 20.8912 18.7582 20.893 18.7478 20.8985C18.744 20.9002 18.7407 20.9029 18.7382 20.9062C18.7358 20.9095 18.7342 20.9134 18.7336 20.9175C18.7331 20.9217 18.7336 20.9258 18.7351 20.9297C18.7367 20.9335 18.7392 20.9369 18.7424 20.9396C18.7508 20.9468 18.7605 20.9524 18.771 20.9562C18.7904 20.9645 18.8108 20.9715 18.8292 20.9815C18.8565 20.996 18.8787 21.0152 18.8874 21.0462C18.9027 21.1003 18.8803 21.1683 18.805 21.186C18.7381 21.2016 18.68 21.1827 18.6326 21.1321C18.6295 21.1287 18.6298 21.1269 18.6326 21.1238C18.6489 21.1083 18.665 21.0926 18.6809 21.0767C18.6849 21.0727 18.6869 21.072 18.6911 21.0767C18.7065 21.0951 18.7242 21.1099 18.7485 21.1156C18.7596 21.1183 18.7712 21.118 18.7822 21.1146C18.7882 21.113 18.7937 21.1096 18.7978 21.1049C18.802 21.1001 18.8046 21.0943 18.8054 21.0881C18.8073 21.0748 18.8004 21.0663 18.7904 21.0596C18.776 21.0511 18.7609 21.0442 18.7451 21.0387C18.7217 21.0304 18.6997 21.0182 18.6802 21.0028C18.6319 20.9616 18.6312 20.8648 18.7118 20.8304C18.7306 20.8226 18.7508 20.8187 18.7712 20.819Z" fill="#E20714"/>
-<path d="M19.0831 20.288C19.0957 20.2749 19.1107 20.2644 19.1273 20.2572C19.1494 20.2478 19.1739 20.2457 19.1972 20.2511C19.2019 20.2522 19.2039 20.2538 19.2039 20.2589C19.2039 20.2855 19.2039 20.312 19.2039 20.3385C19.2039 20.3431 19.2031 20.3442 19.1981 20.3431C19.1744 20.3369 19.1493 20.3382 19.1264 20.347C19.1171 20.3508 19.1084 20.3561 19.1008 20.3628C19.0949 20.3673 19.0902 20.3732 19.087 20.38C19.0839 20.3868 19.0824 20.3942 19.0828 20.4017C19.0839 20.465 19.0831 20.5283 19.0834 20.5916C19.0834 20.5982 19.0819 20.6 19.0752 20.5999C19.0508 20.5994 19.0265 20.5995 19.0023 20.5999C18.9968 20.5999 18.9951 20.5984 18.9951 20.5928C18.9951 20.4824 18.9951 20.3719 18.9951 20.2614C18.9951 20.2561 18.9966 20.2548 19.0017 20.2548C19.0269 20.2548 19.0521 20.2548 19.0772 20.2548C19.0829 20.2548 19.0839 20.2568 19.0835 20.2614C19.0829 20.2696 19.0831 20.2778 19.0831 20.288Z" fill="#273375"/>
-<path d="M19.4489 20.8656C19.4609 20.8533 19.4751 20.8432 19.4906 20.8359C19.513 20.8258 19.538 20.8232 19.562 20.8286C19.567 20.8297 19.5695 20.8314 19.5694 20.8373C19.5689 20.863 19.5689 20.8887 19.5694 20.9144C19.5694 20.9211 19.5675 20.9214 19.5617 20.9203C19.5335 20.9147 19.5059 20.9153 19.4802 20.9305C19.4757 20.9333 19.4714 20.9364 19.4674 20.9397C19.4612 20.9444 19.4562 20.9504 19.4529 20.9574C19.4496 20.9644 19.4481 20.9721 19.4485 20.9799C19.4497 21.0424 19.4485 21.1049 19.4492 21.1675C19.4492 21.1759 19.4468 21.1773 19.4391 21.1771C19.4156 21.1766 19.392 21.1767 19.3684 21.1771C19.3628 21.1771 19.3608 21.1763 19.3608 21.17C19.3608 21.06 19.3608 20.95 19.3608 20.84C19.3608 20.8339 19.3625 20.8326 19.3683 20.8327C19.3927 20.833 19.4171 20.8327 19.4412 20.8327C19.447 20.8327 19.4494 20.8337 19.4489 20.84C19.4484 20.8478 19.4489 20.8558 19.4489 20.8656Z" fill="#E20613"/>
+<path d="M20.1641 21.0059C20.1641 20.9242 20.2084 20.8566 20.2802 20.8317C20.3468 20.8087 20.4109 20.8144 20.4692 20.8573C20.479 20.8649 20.4879 20.8736 20.4957 20.8832C20.4984 20.8864 20.4996 20.8885 20.4951 20.8918C20.4745 20.907 20.4541 20.9227 20.4339 20.9385C20.4301 20.9415 20.4287 20.9407 20.4261 20.9373C20.4007 20.9049 20.3672 20.8942 20.328 20.9042C20.2888 20.9142 20.2645 20.9408 20.2566 20.9801C20.2479 21.0236 20.2575 21.0627 20.2946 21.0906C20.3142 21.1055 20.339 21.1121 20.3634 21.1089C20.3879 21.1057 20.4101 21.0931 20.4253 21.0736C20.4287 21.0694 20.4305 21.0687 20.435 21.0722C20.4546 21.0875 20.4743 21.1027 20.4942 21.1176C20.4986 21.1208 20.4992 21.1227 20.4955 21.1271C20.4809 21.1448 20.4629 21.1594 20.4426 21.1701C20.4223 21.1808 20.4 21.1874 20.3772 21.1895C20.3315 21.1946 20.2878 21.1877 20.2482 21.163C20.1992 21.1325 20.1731 21.0871 20.1655 21.0304C20.1643 21.0223 20.1639 21.0141 20.1641 21.0059Z" fill="#E20714"/>
+<path d="M20.2023 20.241C20.2627 20.242 20.3113 20.2605 20.3486 20.3045C20.3523 20.3088 20.3529 20.3111 20.3478 20.3148C20.3279 20.3296 20.308 20.3448 20.2884 20.36C20.285 20.3626 20.2832 20.3639 20.2797 20.3594C20.2544 20.3269 20.2209 20.3164 20.1816 20.3263C20.1423 20.3362 20.1182 20.363 20.1103 20.4022C20.1016 20.445 20.111 20.4837 20.147 20.5118C20.1666 20.527 20.1915 20.5339 20.2162 20.5309C20.2409 20.5278 20.2633 20.5151 20.2787 20.4955C20.282 20.4914 20.2839 20.4906 20.2885 20.4942C20.308 20.5096 20.3278 20.5247 20.3478 20.5395C20.3523 20.5429 20.3523 20.545 20.3487 20.5492C20.3333 20.5678 20.3141 20.5829 20.2925 20.5938C20.2709 20.6046 20.2473 20.6108 20.2232 20.6121C20.1848 20.6161 20.146 20.6087 20.1117 20.5908C20.0884 20.5788 20.0682 20.5616 20.0526 20.5406C20.0371 20.5195 20.0265 20.4952 20.0219 20.4694C20.0102 20.4125 20.0194 20.3592 20.0544 20.312C20.0839 20.2722 20.1245 20.251 20.1728 20.2436C20.184 20.242 20.1952 20.2416 20.2023 20.241Z" fill="#273375"/>
+<path d="M19.7753 21.0769C19.8013 21.005 19.8269 20.9345 19.8524 20.864C19.8556 20.8551 19.859 20.8462 19.8621 20.8372C19.8623 20.8357 19.8631 20.8345 19.8643 20.8337C19.8654 20.8328 19.8669 20.8325 19.8683 20.8326C19.8959 20.8326 19.9234 20.8326 19.951 20.8326C19.9588 20.8326 19.9556 20.8367 19.9543 20.8401C19.927 20.9153 19.8997 20.9905 19.8725 21.0659C19.8599 21.1006 19.8471 21.1353 19.8348 21.1702C19.8343 21.1725 19.833 21.1744 19.8311 21.1757C19.8292 21.177 19.8268 21.1775 19.8245 21.1772C19.7914 21.1772 19.7578 21.1772 19.7244 21.1772C19.7197 21.1772 19.7172 21.1764 19.7153 21.1713C19.6755 21.0608 19.6355 20.9505 19.5952 20.8405C19.5929 20.8343 19.5935 20.8326 19.6005 20.8326C19.6262 20.833 19.6519 20.833 19.6776 20.8326C19.6801 20.8322 19.6827 20.8328 19.6848 20.8343C19.6869 20.8357 19.6884 20.838 19.6889 20.8405C19.7164 20.9165 19.744 20.9924 19.7718 21.0683C19.7727 21.0707 19.7738 21.0731 19.7753 21.0769Z" fill="#E20714"/>
+<path d="M21.0715 20.8191C21.0942 20.819 21.1166 20.8237 21.1374 20.8328C21.1582 20.842 21.1769 20.8554 21.1922 20.8721C21.1963 20.8766 21.1964 20.8793 21.1918 20.8835C21.1754 20.8987 21.1594 20.914 21.1434 20.9295C21.1399 20.933 21.1385 20.9322 21.1357 20.9289C21.1213 20.9117 21.1049 20.8974 21.0819 20.8935C21.0711 20.8915 21.06 20.8929 21.05 20.8975C21.0458 20.899 21.042 20.9017 21.0391 20.9053C21.0363 20.9088 21.0345 20.9131 21.0339 20.9176C21.0333 20.9221 21.0339 20.9267 21.0358 20.9309C21.0376 20.9351 21.0405 20.9387 21.0443 20.9413C21.0547 20.949 21.0662 20.9551 21.0785 20.9594C21.1009 20.9674 21.1225 20.9775 21.143 20.9895C21.1666 21.0048 21.1836 21.025 21.1895 21.0531C21.2027 21.1158 21.167 21.1728 21.1044 21.1864C21.0381 21.2007 20.9809 21.1829 20.934 21.1333C20.9305 21.1296 20.9299 21.1273 20.934 21.1233C20.9502 21.1081 20.9661 21.0926 20.9818 21.0769C20.986 21.0727 20.9879 21.0725 20.9918 21.0772C21.0048 21.0944 21.0227 21.1073 21.0431 21.1144C21.0575 21.1193 21.0732 21.1189 21.0874 21.1132C21.1063 21.1051 21.1162 21.077 21.0923 21.0609C21.0787 21.0526 21.0644 21.0458 21.0494 21.0405C21.0321 21.034 21.0153 21.026 20.9993 21.0167C20.9615 20.9934 20.9443 20.9594 20.9486 20.9157C20.9529 20.8709 20.9796 20.8428 21.0207 20.8277C21.0369 20.8218 21.0541 20.8188 21.0715 20.8191Z" fill="#E20714"/>
+<path d="M18.7712 20.8191C18.8186 20.8204 18.8593 20.8366 18.8919 20.8721C18.8964 20.877 18.896 20.8796 18.8911 20.884C18.8754 20.8982 18.8601 20.9129 18.8452 20.9279C18.8403 20.9327 18.8381 20.9323 18.8339 20.9272C18.8201 20.9106 18.8038 20.8973 18.7817 20.8936C18.7701 20.8914 18.7582 20.8931 18.7478 20.8987C18.744 20.9004 18.7407 20.903 18.7382 20.9063C18.7358 20.9097 18.7342 20.9136 18.7336 20.9177C18.7331 20.9218 18.7336 20.926 18.7351 20.9298C18.7367 20.9337 18.7392 20.9371 18.7424 20.9397C18.7508 20.9469 18.7605 20.9526 18.771 20.9563C18.7904 20.9646 18.8108 20.9716 18.8292 20.9816C18.8565 20.9961 18.8787 21.0153 18.8874 21.0463C18.9027 21.1004 18.8803 21.1684 18.805 21.1861C18.7381 21.2017 18.68 21.1828 18.6326 21.1322C18.6295 21.1288 18.6298 21.127 18.6326 21.124C18.6489 21.1085 18.665 21.0927 18.6809 21.0768C18.6849 21.0729 18.6869 21.0721 18.6911 21.0768C18.7065 21.0952 18.7242 21.11 18.7485 21.1157C18.7596 21.1185 18.7712 21.1181 18.7822 21.1147C18.7882 21.1131 18.7937 21.1097 18.7978 21.105C18.802 21.1003 18.8046 21.0944 18.8054 21.0882C18.8073 21.0749 18.8004 21.0664 18.7904 21.0597C18.776 21.0513 18.7609 21.0443 18.7451 21.0389C18.7217 21.0305 18.6997 21.0183 18.6802 21.0029C18.6319 20.9617 18.6312 20.8649 18.7118 20.8306C18.7306 20.8228 18.7508 20.8189 18.7712 20.8191Z" fill="#E20714"/>
+<path d="M19.0831 20.2879C19.0957 20.2748 19.1107 20.2643 19.1273 20.257C19.1494 20.2477 19.1739 20.2456 19.1972 20.251C19.2019 20.2521 19.2039 20.2536 19.2039 20.2588C19.2039 20.2853 19.2039 20.3119 19.2039 20.3384C19.2039 20.343 19.2031 20.3441 19.1981 20.3429C19.1744 20.3368 19.1493 20.3381 19.1264 20.3469C19.1171 20.3507 19.1084 20.356 19.1008 20.3626C19.0949 20.3672 19.0902 20.3731 19.087 20.3799C19.0839 20.3866 19.0824 20.3941 19.0828 20.4015C19.0839 20.4648 19.0831 20.5282 19.0834 20.5915C19.0834 20.5981 19.0819 20.5999 19.0752 20.5997C19.0508 20.5993 19.0265 20.5994 19.0023 20.5997C18.9968 20.5997 18.9951 20.5983 18.9951 20.5927C18.9951 20.4822 18.9951 20.3718 18.9951 20.2613C18.9951 20.256 18.9966 20.2546 19.0017 20.2546C19.0269 20.2546 19.0521 20.2546 19.0772 20.2546C19.0829 20.2546 19.0839 20.2567 19.0835 20.2613C19.0829 20.2695 19.0831 20.2776 19.0831 20.2879Z" fill="#273375"/>
+<path d="M19.4489 20.8656C19.4609 20.8533 19.4751 20.8433 19.4906 20.836C19.513 20.8259 19.538 20.8233 19.562 20.8286C19.567 20.8298 19.5695 20.8314 19.5694 20.8374C19.5689 20.8631 19.5689 20.8888 19.5694 20.9145C19.5694 20.9211 19.5675 20.9215 19.5617 20.9203C19.5335 20.9147 19.5059 20.9153 19.4802 20.9306C19.4757 20.9333 19.4714 20.9364 19.4674 20.9398C19.4612 20.9444 19.4562 20.9505 19.4529 20.9575C19.4496 20.9645 19.4481 20.9722 19.4485 20.9799C19.4497 21.0425 19.4485 21.105 19.4492 21.1676C19.4492 21.1759 19.4468 21.1773 19.4391 21.1772C19.4156 21.1767 19.392 21.1768 19.3684 21.1772C19.3628 21.1772 19.3608 21.1763 19.3608 21.17C19.3608 21.0601 19.3608 20.9501 19.3608 20.8401C19.3608 20.834 19.3625 20.8326 19.3683 20.8327C19.3927 20.8331 19.4171 20.8327 19.4412 20.8327C19.447 20.8327 19.4494 20.8337 19.4489 20.84C19.4484 20.8479 19.4489 20.8558 19.4489 20.8656Z" fill="#E20613"/>
 <path d="M20.0035 21.0051C20.0035 20.9503 20.0035 20.8955 20.0035 20.8407C20.0035 20.8341 20.0052 20.8324 20.0118 20.8325C20.0361 20.8329 20.0605 20.8329 20.0847 20.8325C20.0903 20.8325 20.0925 20.8335 20.0924 20.8398C20.0924 20.9499 20.0924 21.0601 20.0924 21.1702C20.0924 21.1751 20.0916 21.1768 20.0858 21.1768C20.0604 21.1765 20.0349 21.1765 20.0096 21.1768C20.0041 21.1768 20.0029 21.175 20.0029 21.1702C20.0034 21.1153 20.0035 21.0603 20.0035 21.0051Z" fill="#E20714"/>
-<path d="M19.9907 20.7212C19.9908 20.7062 19.9968 20.6919 20.0075 20.6814C20.0181 20.6709 20.0324 20.665 20.0474 20.665C20.0551 20.6645 20.0629 20.6656 20.0702 20.6682C20.0774 20.6708 20.0841 20.6749 20.0898 20.6802C20.0954 20.6855 20.0999 20.6919 20.1029 20.699C20.106 20.7061 20.1076 20.7138 20.1075 20.7215C20.1075 20.7293 20.1059 20.7369 20.1028 20.744C20.0997 20.7511 20.0951 20.7575 20.0895 20.7627C20.0838 20.768 20.0771 20.7721 20.0698 20.7746C20.0625 20.7772 20.0547 20.7782 20.047 20.7777C20.0321 20.7776 20.0178 20.7716 20.0072 20.761C19.9967 20.7504 19.9908 20.7361 19.9907 20.7212Z" fill="#E20714"/>
-<path d="M20.2039 19.3033C20.2077 19.2997 20.2122 19.2968 20.2171 19.2948C20.2359 19.2859 20.2561 19.2806 20.2768 19.2791C20.2879 19.2794 20.2988 19.2819 20.3089 19.2866C20.3135 19.2883 20.3138 19.2932 20.3128 19.2975C20.3108 19.3044 20.3065 19.3105 20.3006 19.3146C20.2974 19.3173 20.2952 19.3191 20.2995 19.3231C20.3038 19.327 20.3003 19.3293 20.2967 19.3306C20.293 19.3318 20.2895 19.3336 20.2863 19.3359C20.2797 19.3416 20.2839 19.3492 20.2818 19.3558C20.2815 19.3576 20.2815 19.3595 20.2818 19.3613C20.2822 19.3775 20.2806 19.3795 20.2643 19.3803C20.2554 19.3815 20.2463 19.3806 20.2378 19.3778C20.2428 19.3772 20.2469 19.3768 20.2511 19.3761C20.2527 19.376 20.2542 19.3752 20.2552 19.3739C20.2563 19.3727 20.2568 19.3711 20.2567 19.3695C20.2567 19.3659 20.2534 19.3658 20.2521 19.3643C20.2446 19.3553 20.2314 19.3612 20.2241 19.3528C20.2228 19.3512 20.2196 19.3507 20.2202 19.3483C20.2209 19.3459 20.224 19.3451 20.2261 19.3455C20.2344 19.3471 20.2365 19.3404 20.2416 19.3365C20.2493 19.3298 20.2575 19.3239 20.2662 19.3186C20.2714 19.3161 20.2761 19.3124 20.2799 19.308C20.2846 19.3022 20.2839 19.3005 20.2768 19.2987C20.255 19.293 20.2338 19.2965 20.2127 19.3021C20.21 19.303 20.2074 19.3049 20.2039 19.3033Z" fill="#9E9E9D"/>
-<path d="M19.5154 19.4389C19.5154 19.4384 19.5154 19.4379 19.5154 19.4374C19.5229 19.4361 19.5306 19.4361 19.5381 19.4374L19.5154 19.4389Z" fill="#9E9E9D"/>
-<path d="M19.4736 19.7368L19.4692 19.7396L19.4673 19.7378L19.4724 19.7355L19.4736 19.7368Z" fill="#273375"/>
-<path d="M19.4717 19.7355C19.4733 19.7348 19.4749 19.7336 19.4766 19.7355L19.473 19.7372L19.4717 19.7355Z" fill="#273375"/>
-<path d="M19.4765 19.7358L19.4756 19.7344L19.4769 19.7338C19.4766 19.7344 19.4764 19.735 19.4762 19.7356L19.4765 19.7358Z" fill="#273375"/>
-<path d="M19.3997 19.6252C19.4002 19.6223 19.4039 19.6238 19.4043 19.6212C19.404 19.6209 19.4036 19.6206 19.4032 19.6204C19.3794 19.6155 19.3591 19.6251 19.3378 19.6341C19.3187 19.6426 19.3003 19.6523 19.2825 19.6632C19.279 19.6651 19.2754 19.6668 19.2718 19.6682C19.2702 19.6689 19.2683 19.6706 19.2668 19.6682C19.2666 19.6678 19.2664 19.6674 19.2664 19.6669C19.2663 19.6664 19.2664 19.666 19.2665 19.6655C19.2667 19.6651 19.2669 19.6647 19.2672 19.6643C19.2675 19.664 19.2679 19.6637 19.2683 19.6635C19.28 19.6568 19.2809 19.6413 19.2922 19.6336C19.3034 19.626 19.3125 19.6175 19.3227 19.6094C19.3256 19.6071 19.3287 19.6051 19.328 19.6006C19.328 19.6002 19.3281 19.5998 19.3283 19.5995C19.3284 19.5991 19.3287 19.5988 19.329 19.5985C19.3429 19.5898 19.3464 19.5711 19.3621 19.5645C19.3609 19.5622 19.3589 19.5604 19.3564 19.5595C19.354 19.5586 19.3513 19.5586 19.3489 19.5595C19.3469 19.5601 19.3449 19.5602 19.343 19.5598C19.341 19.5595 19.3392 19.5586 19.3376 19.5574C19.3393 19.5534 19.3434 19.553 19.3467 19.5508C19.3409 19.5467 19.3436 19.5441 19.3479 19.5414C19.3526 19.5395 19.3575 19.5382 19.3624 19.5377C19.3661 19.5371 19.3695 19.5355 19.3722 19.5329C19.3673 19.5318 19.3623 19.5316 19.3574 19.5324C19.35 19.5324 19.3403 19.5346 19.3366 19.5285C19.3329 19.5224 19.3404 19.5162 19.3437 19.5104C19.3509 19.497 19.3617 19.4859 19.3749 19.4783C19.3772 19.477 19.3798 19.4751 19.3821 19.4771C19.3844 19.4791 19.3829 19.4824 19.3821 19.4851C19.3804 19.4903 19.376 19.4928 19.3707 19.4956C19.3817 19.4979 19.392 19.4998 19.402 19.5027C19.4046 19.5034 19.4117 19.5017 19.4092 19.5093C19.4088 19.5104 19.4118 19.5103 19.4134 19.5107C19.4179 19.5117 19.4226 19.5125 19.4273 19.5137C19.4288 19.5141 19.4312 19.5143 19.4312 19.5166C19.4311 19.519 19.4283 19.5179 19.4269 19.5194C19.4784 19.5343 19.5307 19.5459 19.5751 19.5798C19.5523 19.591 19.5283 19.5997 19.5035 19.6055C19.4887 19.6092 19.4736 19.6122 19.4587 19.6156C19.4575 19.6161 19.4562 19.6164 19.4548 19.6165C19.4416 19.6152 19.4293 19.6209 19.417 19.6252C19.4143 19.6263 19.4113 19.6269 19.4084 19.6269C19.4054 19.627 19.4024 19.6264 19.3997 19.6252Z" fill="#FEFEFE"/>
-<path d="M19.4237 19.3957C19.4175 19.4019 19.4095 19.4017 19.403 19.4053C19.3996 19.4072 19.3999 19.4027 19.3986 19.4001C19.3863 19.4121 19.3721 19.4208 19.3592 19.4315C19.3504 19.4392 19.3433 19.4485 19.3382 19.459C19.3315 19.4715 19.3253 19.4838 19.3129 19.4922C19.3096 19.4943 19.3103 19.5009 19.3067 19.5042C19.3057 19.5051 19.3053 19.5065 19.3044 19.5075C19.3025 19.5097 19.3002 19.5126 19.2973 19.5104C19.2943 19.5081 19.298 19.5062 19.2987 19.5042C19.2994 19.5021 19.3004 19.502 19.3008 19.5008C19.3011 19.4995 19.3057 19.4987 19.3029 19.4956C19.3001 19.4925 19.2984 19.4936 19.2957 19.4956C19.2705 19.5117 19.247 19.5301 19.2253 19.5506C19.206 19.5688 19.1881 19.5883 19.1703 19.608C19.1689 19.6096 19.1681 19.6121 19.165 19.6117C19.164 19.6084 19.1669 19.6069 19.1682 19.6051C19.1867 19.5806 19.2031 19.5545 19.217 19.5272C19.2191 19.5229 19.2224 19.5194 19.2265 19.517C19.2473 19.5038 19.2662 19.4877 19.2825 19.4692C19.3079 19.4409 19.3377 19.417 19.3707 19.3982C19.3788 19.3937 19.3877 19.3912 19.3969 19.3908C19.4061 19.3903 19.4153 19.392 19.4237 19.3957Z" fill="#FEFEFE"/>
-<path d="M19.4069 19.7194C19.3767 19.7342 19.3535 19.7574 19.3235 19.7684C19.3097 19.7739 19.2974 19.7826 19.2876 19.7938C19.2867 19.7947 19.2855 19.7962 19.2846 19.7961C19.2702 19.7946 19.2647 19.8064 19.2563 19.8144C19.255 19.8157 19.2543 19.8189 19.2518 19.8172C19.2494 19.8156 19.2501 19.8129 19.2518 19.8106C19.2573 19.804 19.2627 19.7969 19.2678 19.7898C19.272 19.7843 19.2747 19.7778 19.2756 19.771C19.2756 19.77 19.2766 19.7682 19.2765 19.768C19.2663 19.7624 19.2769 19.7602 19.2787 19.7582C19.2935 19.7399 19.3145 19.7278 19.3377 19.724C19.3458 19.7226 19.3538 19.7202 19.3613 19.7169C19.3654 19.7149 19.37 19.7143 19.3745 19.7152C19.3845 19.7175 19.3952 19.7138 19.4069 19.7194Z" fill="#FEFEFE"/>
-<path d="M19.4708 19.6418C19.4698 19.6432 19.4685 19.6444 19.467 19.6454C19.4656 19.6463 19.4639 19.6469 19.4622 19.6472C19.4519 19.6491 19.4416 19.6507 19.4312 19.6523C19.4298 19.6523 19.4275 19.6523 19.4269 19.6515C19.4263 19.6507 19.4275 19.648 19.4286 19.6466C19.4304 19.6447 19.4327 19.6433 19.4352 19.6426C19.4383 19.642 19.4413 19.641 19.4441 19.6396C19.4535 19.633 19.462 19.6354 19.4708 19.6418Z" fill="#FEFEFE"/>
-<path d="M19.3932 19.7607C19.3908 19.7667 19.3901 19.773 19.3836 19.7758C19.3781 19.7777 19.3731 19.7807 19.3689 19.7847C19.3684 19.7852 19.3678 19.7856 19.3672 19.7859C19.3666 19.7861 19.3659 19.7863 19.3652 19.7863C19.3645 19.7863 19.3639 19.7861 19.3632 19.7859C19.3626 19.7856 19.362 19.7852 19.3616 19.7847C19.3593 19.7821 19.363 19.7809 19.3644 19.7794C19.3703 19.7736 19.3763 19.768 19.3821 19.7623C19.3831 19.761 19.3844 19.7601 19.3859 19.7595C19.3874 19.7589 19.389 19.7587 19.3906 19.7589C19.392 19.7593 19.3931 19.7597 19.3932 19.7607Z" fill="#FEFEFE"/>
-<path d="M20.568 20.3743C20.5449 20.3743 20.5219 20.3743 20.4989 20.3743C20.4922 20.3743 20.4922 20.3722 20.4937 20.367C20.4982 20.3525 20.5071 20.3397 20.5191 20.3304C20.5311 20.3211 20.5457 20.3157 20.5608 20.315C20.5831 20.3137 20.6042 20.3169 20.6221 20.3315C20.6335 20.3408 20.6411 20.3539 20.6436 20.3684C20.6445 20.3732 20.6432 20.3743 20.6387 20.3742C20.6151 20.3742 20.5915 20.3743 20.568 20.3743Z" fill="#FEFEFE"/>
+<path d="M19.9907 20.7211C19.9908 20.7062 19.9968 20.6919 20.0075 20.6813C20.0181 20.6708 20.0324 20.6649 20.0474 20.6649C20.0551 20.6644 20.0629 20.6655 20.0702 20.6681C20.0774 20.6707 20.0841 20.6748 20.0898 20.6801C20.0954 20.6854 20.0999 20.6918 20.1029 20.699C20.106 20.7061 20.1076 20.7137 20.1075 20.7215C20.1075 20.7292 20.1059 20.7369 20.1028 20.744C20.0997 20.751 20.0951 20.7574 20.0895 20.7627C20.0838 20.768 20.0771 20.772 20.0698 20.7746C20.0625 20.7771 20.0547 20.7782 20.047 20.7776C20.0321 20.7775 20.0178 20.7715 20.0072 20.761C19.9967 20.7504 19.9908 20.7361 19.9907 20.7211Z" fill="#E20714"/>
+<path d="M20.2039 19.3032C20.2077 19.2996 20.2122 19.2967 20.2171 19.2947C20.2359 19.2859 20.2561 19.2806 20.2768 19.2791C20.2879 19.2793 20.2988 19.2818 20.3089 19.2865C20.3135 19.2882 20.3138 19.2932 20.3128 19.2974C20.3108 19.3044 20.3065 19.3104 20.3006 19.3146C20.2974 19.3172 20.2952 19.319 20.2995 19.323C20.3038 19.327 20.3003 19.3292 20.2967 19.3306C20.293 19.3317 20.2895 19.3335 20.2863 19.3359C20.2797 19.3415 20.2839 19.3491 20.2818 19.3558C20.2815 19.3576 20.2815 19.3594 20.2818 19.3613C20.2822 19.3774 20.2806 19.3794 20.2643 19.3803C20.2554 19.3814 20.2463 19.3806 20.2378 19.3778C20.2428 19.3771 20.2469 19.3768 20.2511 19.376C20.2527 19.3759 20.2542 19.3751 20.2552 19.3739C20.2563 19.3726 20.2568 19.371 20.2567 19.3694C20.2567 19.3658 20.2534 19.3658 20.2521 19.3642C20.2446 19.3552 20.2314 19.3612 20.2241 19.3527C20.2228 19.3512 20.2196 19.3506 20.2202 19.3483C20.2209 19.3459 20.224 19.3451 20.2261 19.3455C20.2344 19.347 20.2365 19.3403 20.2416 19.3364C20.2493 19.3298 20.2575 19.3238 20.2662 19.3186C20.2714 19.316 20.2761 19.3124 20.2799 19.308C20.2846 19.3022 20.2839 19.3005 20.2768 19.2986C20.255 19.2929 20.2338 19.2965 20.2127 19.3021C20.21 19.3029 20.2074 19.3048 20.2039 19.3032Z" fill="#9E9E9D"/>
+<path d="M19.5154 19.439C19.5154 19.4385 19.5154 19.438 19.5154 19.4375C19.5229 19.4362 19.5306 19.4362 19.5381 19.4375L19.5154 19.439Z" fill="#9E9E9D"/>
+<path d="M19.4736 19.737L19.4692 19.7398L19.4673 19.7379L19.4724 19.7356L19.4736 19.737Z" fill="#273375"/>
+<path d="M19.4717 19.7356C19.4733 19.7349 19.4749 19.7337 19.4766 19.7356L19.473 19.7373L19.4717 19.7356Z" fill="#273375"/>
+<path d="M19.4765 19.7359L19.4756 19.7344L19.4769 19.7339C19.4766 19.7345 19.4764 19.7351 19.4762 19.7357L19.4765 19.7359Z" fill="#273375"/>
+<path d="M19.3997 19.6253C19.4002 19.6224 19.4039 19.6239 19.4043 19.6212C19.404 19.6209 19.4036 19.6206 19.4032 19.6204C19.3794 19.6155 19.3591 19.6251 19.3378 19.6342C19.3187 19.6426 19.3003 19.6523 19.2825 19.6633C19.279 19.6652 19.2754 19.6668 19.2718 19.6683C19.2702 19.669 19.2683 19.6706 19.2668 19.6683C19.2666 19.6679 19.2664 19.6674 19.2664 19.667C19.2663 19.6665 19.2664 19.666 19.2665 19.6656C19.2667 19.6651 19.2669 19.6647 19.2672 19.6644C19.2675 19.664 19.2679 19.6637 19.2683 19.6635C19.28 19.6569 19.2809 19.6413 19.2922 19.6337C19.3034 19.6261 19.3125 19.6176 19.3227 19.6095C19.3256 19.6072 19.3287 19.6052 19.328 19.6007C19.328 19.6003 19.3281 19.5999 19.3283 19.5995C19.3284 19.5991 19.3287 19.5988 19.329 19.5986C19.3429 19.5899 19.3464 19.5712 19.3621 19.5646C19.3609 19.5622 19.3589 19.5605 19.3564 19.5595C19.354 19.5586 19.3513 19.5586 19.3489 19.5596C19.3469 19.5602 19.3449 19.5603 19.343 19.5599C19.341 19.5595 19.3392 19.5587 19.3376 19.5575C19.3393 19.5535 19.3434 19.5531 19.3467 19.5508C19.3409 19.5468 19.3436 19.5442 19.3479 19.5414C19.3526 19.5395 19.3575 19.5383 19.3624 19.5377C19.3661 19.5372 19.3695 19.5355 19.3722 19.533C19.3673 19.5318 19.3623 19.5316 19.3574 19.5325C19.35 19.5325 19.3403 19.5347 19.3366 19.5286C19.3329 19.5225 19.3404 19.5162 19.3437 19.5105C19.3509 19.4971 19.3617 19.486 19.3749 19.4784C19.3772 19.4771 19.3798 19.4752 19.3821 19.4772C19.3844 19.4792 19.3829 19.4825 19.3821 19.4851C19.3804 19.4903 19.376 19.4928 19.3707 19.4956C19.3817 19.498 19.392 19.4999 19.402 19.5027C19.4046 19.5034 19.4117 19.5017 19.4092 19.5093C19.4088 19.5105 19.4118 19.5104 19.4134 19.5107C19.4179 19.5118 19.4226 19.5125 19.4273 19.5137C19.4288 19.5141 19.4312 19.5143 19.4312 19.5167C19.4311 19.5191 19.4283 19.518 19.4269 19.5194C19.4784 19.5344 19.5307 19.5459 19.5751 19.5799C19.5523 19.5911 19.5283 19.5997 19.5035 19.6056C19.4887 19.6093 19.4736 19.6122 19.4587 19.6157C19.4575 19.6162 19.4562 19.6165 19.4548 19.6165C19.4416 19.6153 19.4293 19.621 19.417 19.6252C19.4143 19.6264 19.4113 19.627 19.4084 19.627C19.4054 19.627 19.4024 19.6264 19.3997 19.6253Z" fill="#FEFEFE"/>
+<path d="M19.4237 19.3956C19.4175 19.4018 19.4095 19.4017 19.403 19.4053C19.3996 19.4072 19.3999 19.4027 19.3986 19.4001C19.3863 19.4121 19.3721 19.4208 19.3592 19.4314C19.3504 19.4391 19.3433 19.4485 19.3382 19.4589C19.3315 19.4714 19.3253 19.4837 19.3129 19.4921C19.3096 19.4942 19.3103 19.5008 19.3067 19.5042C19.3057 19.505 19.3053 19.5065 19.3044 19.5075C19.3025 19.5096 19.3002 19.5126 19.2973 19.5103C19.2943 19.5081 19.298 19.5061 19.2987 19.5041C19.2994 19.502 19.3004 19.502 19.3008 19.5007C19.3011 19.4995 19.3057 19.4987 19.3029 19.4955C19.3001 19.4924 19.2984 19.4936 19.2957 19.4955C19.2705 19.5116 19.247 19.5301 19.2253 19.5506C19.206 19.5687 19.1881 19.5883 19.1703 19.6079C19.1689 19.6095 19.1681 19.6121 19.165 19.6117C19.164 19.6083 19.1669 19.6068 19.1682 19.6051C19.1867 19.5805 19.2031 19.5544 19.217 19.5271C19.2191 19.5228 19.2224 19.5193 19.2265 19.517C19.2473 19.5037 19.2662 19.4876 19.2825 19.4691C19.3079 19.4409 19.3377 19.4169 19.3707 19.3981C19.3788 19.3936 19.3877 19.3911 19.3969 19.3907C19.4061 19.3903 19.4153 19.392 19.4237 19.3956Z" fill="#FEFEFE"/>
+<path d="M19.4069 19.7194C19.3767 19.7342 19.3535 19.7575 19.3235 19.7685C19.3097 19.7739 19.2974 19.7826 19.2876 19.7938C19.2867 19.7947 19.2855 19.7963 19.2846 19.7962C19.2702 19.7947 19.2647 19.8065 19.2563 19.8144C19.255 19.8158 19.2543 19.8189 19.2518 19.8173C19.2494 19.8156 19.2501 19.813 19.2518 19.8107C19.2573 19.804 19.2627 19.7969 19.2678 19.7899C19.272 19.7844 19.2747 19.7779 19.2756 19.771C19.2756 19.77 19.2766 19.7682 19.2765 19.7681C19.2663 19.7625 19.2769 19.7603 19.2787 19.7582C19.2935 19.74 19.3145 19.7278 19.3377 19.7241C19.3458 19.7227 19.3538 19.7203 19.3613 19.7169C19.3654 19.7149 19.37 19.7144 19.3745 19.7153C19.3845 19.7175 19.3952 19.7139 19.4069 19.7194Z" fill="#FEFEFE"/>
+<path d="M19.4708 19.6419C19.4698 19.6433 19.4685 19.6445 19.467 19.6454C19.4656 19.6464 19.4639 19.647 19.4622 19.6473C19.4519 19.6492 19.4416 19.6507 19.4312 19.6523C19.4298 19.6523 19.4275 19.6523 19.4269 19.6515C19.4263 19.6507 19.4275 19.6481 19.4286 19.6467C19.4304 19.6448 19.4327 19.6434 19.4352 19.6426C19.4383 19.6421 19.4413 19.6411 19.4441 19.6397C19.4535 19.6331 19.462 19.6354 19.4708 19.6419Z" fill="#FEFEFE"/>
+<path d="M19.3932 19.7607C19.3908 19.7667 19.3901 19.773 19.3836 19.7757C19.3781 19.7776 19.3731 19.7807 19.3689 19.7847C19.3684 19.7852 19.3678 19.7855 19.3672 19.7858C19.3666 19.7861 19.3659 19.7862 19.3652 19.7862C19.3645 19.7862 19.3639 19.7861 19.3632 19.7858C19.3626 19.7855 19.362 19.7852 19.3616 19.7847C19.3593 19.7821 19.363 19.7808 19.3644 19.7793C19.3703 19.7735 19.3763 19.768 19.3821 19.7622C19.3831 19.761 19.3844 19.76 19.3859 19.7595C19.3874 19.7589 19.389 19.7587 19.3906 19.7589C19.392 19.7592 19.3931 19.7597 19.3932 19.7607Z" fill="#FEFEFE"/>
+<path d="M20.568 20.3742C20.5449 20.3742 20.5219 20.3742 20.4989 20.3742C20.4922 20.3742 20.4922 20.3722 20.4937 20.3669C20.4982 20.3524 20.5071 20.3396 20.5191 20.3303C20.5311 20.321 20.5457 20.3157 20.5608 20.3149C20.5831 20.3137 20.6042 20.3169 20.6221 20.3315C20.6335 20.3407 20.6411 20.3538 20.6436 20.3683C20.6445 20.3731 20.6432 20.3742 20.6387 20.3741C20.6151 20.3741 20.5915 20.3742 20.568 20.3742Z" fill="#FEFEFE"/>
 <path d="M20.6384 20.9525C20.6417 20.9359 20.6505 20.9209 20.6635 20.91C20.6765 20.8992 20.6928 20.8931 20.7098 20.8928C20.7273 20.8915 20.7448 20.8954 20.7601 20.904C20.768 20.9085 20.7747 20.9146 20.7798 20.9221C20.7849 20.9295 20.7883 20.938 20.7898 20.9469C20.7904 20.9504 20.7909 20.9529 20.7857 20.9528C20.7368 20.9524 20.6879 20.9525 20.6384 20.9525Z" fill="#FEFEFE"/>
 <path d="M19.1306 20.9525C19.1074 20.9525 19.0842 20.9525 19.0608 20.9525C19.0542 20.9525 19.0542 20.9506 19.0559 20.9454C19.0604 20.9302 19.0697 20.9169 19.0824 20.9073C19.0951 20.8978 19.1105 20.8925 19.1264 20.8924C19.1469 20.8907 19.1673 20.8965 19.1838 20.9088C19.1955 20.918 19.2034 20.9314 19.2057 20.9461C19.2067 20.9512 19.2057 20.9528 19.2004 20.9524C19.1772 20.9524 19.1539 20.9525 19.1306 20.9525Z" fill="#FEFEFE"/>
-<path d="M19.4533 20.4725C19.4581 20.492 19.4467 20.504 19.4334 20.5153C19.4232 20.525 19.4108 20.5321 19.3973 20.536C19.3838 20.5399 19.3695 20.5405 19.3557 20.5377C19.3485 20.5367 19.3417 20.5332 19.3367 20.5279C19.3316 20.5225 19.3285 20.5156 19.3279 20.5083C19.327 20.5013 19.3284 20.4942 19.3317 20.4879C19.3351 20.4817 19.3403 20.4767 19.3467 20.4736C19.3603 20.4673 19.375 20.4633 19.3899 20.4618C19.4087 20.4586 19.4275 20.4556 19.4462 20.4521C19.4519 20.4511 19.4537 20.4526 19.4531 20.4583C19.453 20.463 19.4533 20.4678 19.4533 20.4725Z" fill="#FEFEFE"/>
+<path d="M19.4533 20.4726C19.4581 20.4921 19.4467 20.5041 19.4334 20.5154C19.4232 20.5251 19.4108 20.5322 19.3973 20.5361C19.3838 20.54 19.3695 20.5405 19.3557 20.5378C19.3485 20.5367 19.3417 20.5333 19.3367 20.5279C19.3316 20.5226 19.3285 20.5157 19.3279 20.5083C19.327 20.5013 19.3284 20.4942 19.3317 20.488C19.3351 20.4818 19.3403 20.4768 19.3467 20.4737C19.3603 20.4673 19.375 20.4633 19.3899 20.4619C19.4087 20.4586 19.4275 20.4557 19.4462 20.4522C19.4519 20.4512 19.4537 20.4527 19.4531 20.4584C19.453 20.4631 19.4533 20.4679 19.4533 20.4726Z" fill="#FEFEFE"/>
 <path d="M37.1639 15C37.3943 15.0913 37.6436 15.0725 37.8813 15.125C38.5509 15.2736 39.1876 15.501 39.774 15.8625C39.8781 15.9265 39.9067 15.9734 39.838 16.0912C39.4252 16.8025 39.018 17.5172 38.6166 18.2353C38.5449 18.3633 38.5009 18.3829 38.3691 18.2933C37.7588 17.8789 37.0922 17.6758 36.3535 17.8499C35.4475 18.0633 34.8756 18.8622 34.9452 19.7904C35.0083 20.626 35.7607 21.357 36.6347 21.4398C36.9742 21.4775 37.3178 21.4462 37.6449 21.3478C37.972 21.2494 38.2758 21.0859 38.5381 20.8671C38.6418 20.7818 38.6763 20.7993 38.7361 20.9055C39.1377 21.6229 39.5409 22.3394 39.9536 23.0508C40.0266 23.1789 40.0168 23.2369 39.8986 23.3201C39.2461 23.781 38.5103 24.0401 37.7323 24.1527C36.438 24.3401 35.194 24.183 34.072 23.4516C32.9159 22.6983 32.2899 21.6122 32.1268 20.2556C31.9775 19.0116 32.2122 17.852 32.9676 16.8291C33.7758 15.734 34.8914 15.1865 36.2259 15.0427C36.2536 15.0397 36.2818 15.0358 36.3112 15.032C36.5528 15.0192 36.7965 15.0465 37.0367 15H37.1639ZM36.8485 22.6467C35.162 22.6249 34.0071 21.6694 33.7758 20.0558C33.5808 18.6902 34.2256 17.278 35.6924 16.7779C36.4779 16.5018 37.3378 16.5265 38.1062 16.847C38.3196 16.9324 38.3157 16.7681 38.3669 16.6789C38.4467 16.5398 38.291 16.5577 38.2342 16.5342C37.8464 16.3743 37.4329 16.2856 37.0137 16.2722C34.6311 16.1868 32.9633 18.1593 33.5044 20.4655C34.0631 22.8451 36.7226 23.4597 38.4181 22.6343C38.5069 22.5916 38.5684 22.552 38.486 22.4491C38.4233 22.3714 38.4169 22.2323 38.2432 22.3288C37.813 22.5673 37.3389 22.6501 36.8485 22.6467Z" fill="#A30248"/>
-<path d="M0 20.7122C0.10797 20.3742 0.11992 20.02 0.16601 19.6726C0.238132 19.1285 0.22789 19.1225 0.775851 19.1178C0.900465 19.1178 0.962345 19.0858 0.965759 18.9587C0.965759 18.9019 0.977282 18.8456 0.983683 18.788C1.02977 18.3612 1.02935 18.3501 0.586796 18.3612C0.401582 18.3667 0.357625 18.3117 0.384511 18.1367C0.460475 17.6462 0.529041 17.1546 0.59021 16.6618C0.603866 16.5522 0.641848 16.5086 0.748111 16.5231C0.755198 16.524 0.762362 16.524 0.769449 16.5231C0.942287 16.5048 1.16676 16.6021 1.27516 16.4758C1.36947 16.3661 1.34344 16.1527 1.36862 15.985C1.39849 15.7814 1.43136 15.5783 1.45397 15.3739C1.46592 15.2676 1.50988 15.2292 1.61742 15.2301C2.14362 15.2343 2.66981 15.2365 3.19644 15.2301C3.34111 15.2301 3.3394 15.2975 3.32447 15.4008C3.27709 15.7161 3.23058 16.0324 3.18961 16.349C3.1815 16.4105 3.10426 16.533 3.24978 16.5163C3.37354 16.5018 3.57241 16.6392 3.61381 16.3977C3.67071 16.0691 3.7168 15.7389 3.75208 15.4072C3.76659 15.2719 3.81183 15.2271 3.94882 15.2292C4.45325 15.236 4.95796 15.236 5.46296 15.2292C5.60123 15.2292 5.65244 15.2582 5.62599 15.4072C5.56923 15.7281 5.52954 16.052 5.47705 16.3738C5.45998 16.4783 5.46979 16.5351 5.59825 16.5257C5.73993 16.5155 5.8829 16.5257 6.02501 16.5223C6.11804 16.5193 6.14791 16.5479 6.13383 16.6456C6.05957 17.1577 5.98788 17.6698 5.92301 18.1845C5.90466 18.3271 5.84193 18.362 5.70238 18.3599C5.21587 18.3539 5.21587 18.3599 5.13478 18.8383C5.08827 19.111 5.08827 19.111 5.37804 19.111C5.7698 19.111 5.77236 19.111 5.72371 19.4951C5.66823 19.9312 5.60337 20.3661 5.55301 20.8027C5.53935 20.9158 5.50564 20.9623 5.38231 20.9619C5.20648 20.9619 4.9756 20.8821 4.87019 20.9943C4.76478 21.1065 4.79594 21.3263 4.76862 21.5C4.73704 21.7032 4.70546 21.9063 4.679 22.1103C4.66705 22.2037 4.62865 22.2404 4.52836 22.2383C4.00259 22.2336 3.47639 22.2319 2.94934 22.2383C2.80979 22.2383 2.80126 22.1794 2.81747 22.071C2.86527 21.7484 2.90283 21.4241 2.95702 21.1023C2.9758 20.9913 2.96001 20.9559 2.84052 20.9538C2.55203 20.9478 2.55032 20.9414 2.50551 21.2329C2.46284 21.5064 2.42016 21.78 2.38901 22.0544C2.37407 22.1752 2.34633 22.2426 2.19739 22.2396C1.68528 22.2289 1.17316 22.2298 0.661052 22.2396C0.5151 22.2422 0.495042 22.188 0.51382 22.0651C0.564178 21.7428 0.599172 21.4177 0.657638 21.0976C0.681537 20.9696 0.639714 20.9521 0.533451 20.9563C0.355918 20.9632 0.178386 20.9623 0.000853459 20.9644L0 20.7122ZM5.34987 17.3365C5.13137 17.3365 4.91799 17.3242 4.70717 17.3404C4.5275 17.3545 4.51214 17.2832 4.53647 17.1326C4.59493 16.783 4.6423 16.431 4.68412 16.0789C4.69181 16.0174 4.77246 15.9056 4.60901 15.8924C4.47288 15.8809 4.44642 15.9436 4.43148 16.0631C4.38454 16.4361 4.31711 16.8065 4.27273 17.1795C4.25736 17.3101 4.20871 17.3417 4.08581 17.3404C3.5387 17.335 2.99131 17.335 2.44363 17.3404C2.3203 17.3404 2.28104 17.3075 2.29981 17.1833C2.35671 16.8115 2.40835 16.4392 2.45473 16.0665C2.46241 16.0059 2.53538 15.9043 2.3873 15.8958C2.28701 15.8898 2.21659 15.8958 2.20337 16.0285C2.16069 16.4019 2.09326 16.7724 2.04589 17.1454C2.02754 17.2892 1.97974 17.3587 1.81971 17.3421C1.649 17.3259 1.4783 17.3459 1.30759 17.3361C1.17957 17.3284 1.15695 17.3916 1.14671 17.4996C1.13348 17.634 1.22139 17.6088 1.29479 17.6092C1.4655 17.6092 1.6362 17.6186 1.8069 17.6071C1.94731 17.5973 1.97761 17.6498 1.95755 17.7778C1.86622 18.4239 1.77917 19.0706 1.69637 19.7179C1.68101 19.8369 1.62852 19.8681 1.51628 19.8625C1.33917 19.854 1.15994 19.8728 0.983683 19.8557C0.81938 19.8403 0.800603 19.9304 0.791214 20.0529C0.778838 20.2172 0.903025 20.1459 0.967893 20.1497C1.13848 20.1585 1.30941 20.1585 1.48001 20.1497C1.59395 20.1446 1.6234 20.1758 1.60419 20.2927C1.54701 20.6427 1.4958 20.9939 1.45909 21.3464C1.45184 21.4151 1.34003 21.5491 1.53164 21.5734C1.6968 21.5948 1.69253 21.4834 1.70619 21.3763C1.74887 21.0246 1.80136 20.6734 1.84361 20.3213C1.85897 20.1963 1.90421 20.1455 2.04333 20.148C2.57635 20.1574 3.11023 20.1587 3.64283 20.148C3.81353 20.1446 3.8609 20.1907 3.83146 20.3614C3.77086 20.7105 3.72519 21.0626 3.67953 21.4147C3.67228 21.4706 3.61509 21.5653 3.74397 21.5734C3.83957 21.5794 3.91468 21.5845 3.93175 21.4454C3.97442 21.072 4.04356 20.702 4.08111 20.3281C4.0969 20.1741 4.15708 20.1442 4.29449 20.1523C4.4716 20.1634 4.65041 20.1472 4.82752 20.1574C4.97859 20.1664 4.97603 20.0682 4.99097 19.9675C5.01145 19.8275 4.91073 19.8642 4.84245 19.8625C4.68604 19.8551 4.52934 19.8559 4.37302 19.8651C4.20231 19.8796 4.14128 19.8485 4.17287 19.6517C4.27443 19.0218 4.35637 18.3885 4.43831 17.7552C4.4541 17.6344 4.50617 17.6028 4.6184 17.6084C4.77417 17.6161 4.93207 17.5981 5.08784 17.6131C5.28116 17.6297 5.38743 17.5764 5.34987 17.3365Z" fill="#A30248"/>
-<path d="M26.3619 20.772C26.3619 21.7808 26.3585 22.7893 26.3657 23.7981C26.3657 23.956 26.329 24 26.1673 23.9987C25.3282 23.9896 24.489 23.9896 23.6494 23.9987C23.4787 23.9987 23.4556 23.9462 23.4561 23.7951C23.4607 21.7851 23.4561 19.7746 23.4637 17.7646C23.4637 17.576 23.4176 17.5226 23.229 17.5294C22.8244 17.5444 22.4182 17.5294 22.0136 17.5367C21.8907 17.5367 21.8399 17.5158 21.8429 17.3758C21.8506 16.7155 21.8506 16.055 21.8429 15.3944C21.8429 15.2552 21.8911 15.233 22.0136 15.2335C23.94 15.2369 25.8667 15.2369 27.7936 15.2335C27.9405 15.2335 27.9878 15.2719 27.9861 15.4229C27.978 16.0631 27.9763 16.7032 27.9861 17.3408C27.9891 17.5072 27.9336 17.5422 27.78 17.5384C27.375 17.5286 26.9691 17.5444 26.5646 17.5307C26.3887 17.5247 26.3563 17.5862 26.3572 17.7467C26.3653 18.7547 26.3619 19.7635 26.3619 20.772ZM24.747 19.7669C24.747 20.7617 24.7504 21.7561 24.7436 22.7509C24.7436 22.8989 24.7803 22.9391 24.9301 22.9408C25.1042 22.9429 25.0833 22.8443 25.0833 22.7363C25.0833 20.7681 25.0833 18.8003 25.079 16.833C25.079 16.6546 25.108 16.5876 25.3069 16.5944C25.7968 16.611 26.2885 16.5982 26.7784 16.6008C26.8872 16.6008 26.964 16.6008 26.9662 16.4497C26.9683 16.2987 26.9021 16.279 26.7758 16.279C25.5317 16.2824 24.2874 16.2824 23.0429 16.279C22.9337 16.279 22.8594 16.2769 22.8565 16.4292C22.8535 16.5816 22.9222 16.6 23.0468 16.6C23.5516 16.5953 24.0565 16.6038 24.5614 16.5944C24.7094 16.5918 24.7517 16.6315 24.7504 16.7818C24.7436 17.7795 24.747 18.7743 24.747 19.7669Z" fill="#A30248"/>
-<path d="M14.7987 19.6086C14.7987 18.2242 14.8021 16.8402 14.7944 15.4558C14.7944 15.2812 14.8337 15.2287 15.0146 15.2317C16.0517 15.2501 17.0896 15.2057 18.1262 15.2561C18.8709 15.2923 19.5882 15.4579 20.2326 15.8535C21.0516 16.3558 21.4873 17.1022 21.5915 18.0479C21.6717 18.779 21.6209 19.4929 21.2829 20.1625C20.8399 21.0395 20.0782 21.4923 19.1628 21.7296C18.7231 21.847 18.2696 21.9045 17.8146 21.9003C17.6341 21.8973 17.5918 21.9626 17.5948 22.1337C17.6051 22.6945 17.5923 23.2553 17.6029 23.816C17.6059 23.9773 17.5445 23.9965 17.4062 23.9957C16.5954 23.9897 15.7845 23.988 14.9762 23.9957C14.8171 23.9957 14.7953 23.9415 14.7957 23.8019C14.8008 22.406 14.7987 21.0075 14.7987 19.6086ZM16.1217 19.6086V22.7402C16.1217 22.8443 16.0922 22.948 16.2723 22.9433C16.4302 22.9395 16.4571 22.884 16.455 22.744C16.4481 22.1892 16.4592 21.6366 16.4481 21.0826C16.4447 20.9038 16.4789 20.8317 16.6782 20.8428C17.0196 20.862 17.361 20.8522 17.7024 20.8475C18.3604 20.8381 18.9895 20.713 19.5345 20.3204C20.2715 19.7895 20.5548 18.6778 20.2019 17.7172C19.8951 16.8841 19.2204 16.5223 18.4061 16.3648C17.7233 16.2325 17.0319 16.3029 16.344 16.2794C16.1733 16.2739 16.1165 16.3144 16.1178 16.4966C16.1255 17.535 16.1208 18.572 16.1208 19.6082L16.1217 19.6086Z" fill="#A30248"/>
-<path d="M5.87646 23.9944C6.10436 23.3893 6.32286 22.8072 6.54349 22.2255C7.40185 19.9671 8.2585 17.7081 9.11344 15.4485C9.17746 15.2778 9.25897 15.2287 9.43394 15.2322C10.0024 15.2433 10.5713 15.239 11.141 15.2322C11.2622 15.2322 11.3296 15.259 11.377 15.3845C12.4464 18.2145 13.5188 21.0429 14.5939 23.8698C14.6063 23.9022 14.6144 23.9359 14.6251 23.9714C14.5551 24.0106 14.4842 23.9914 14.4172 23.9914C13.6209 23.9914 12.8246 23.9914 12.0274 23.9953C11.9117 23.9953 11.8349 23.9761 11.8161 23.8514C11.8143 23.8446 11.8118 23.8379 11.8089 23.8314C11.7325 23.6338 11.709 23.3658 11.5652 23.257C11.4009 23.1332 11.1269 23.2215 10.9007 23.2198C10.2964 23.2151 9.69213 23.2224 9.08784 23.2151C8.96707 23.2151 8.91201 23.251 8.87446 23.3632C8.8049 23.5715 8.77588 23.8642 8.62779 23.956C8.45709 24.0618 8.17414 23.9914 7.94028 23.9923C7.2613 23.9957 6.58105 23.9944 5.87646 23.9944ZM13.0153 22.9147C13.0096 22.8859 13.0023 22.8574 12.9936 22.8294C12.1784 20.691 11.3643 18.5524 10.5512 16.4134C10.4658 16.1915 10.3041 16.3161 10.1769 16.2854C10.0297 16.2496 9.98702 16.3494 9.94349 16.4642C9.1537 18.5434 8.3622 20.6221 7.569 22.7005C7.47852 22.9369 7.50242 22.9629 7.74952 22.9382C7.83188 22.9301 7.85621 22.8874 7.87755 22.8251C7.92859 22.7083 7.97318 22.5887 8.01112 22.467C8.0491 22.3172 8.12805 22.2776 8.28041 22.2784C9.51801 22.2852 10.7556 22.2822 11.9907 22.2822C12.4289 22.2822 12.4469 22.2767 12.5749 22.6825C12.6513 22.9203 12.7716 22.986 13.0153 22.9147Z" fill="#A30248"/>
-<path d="M28.4103 19.6256C28.4103 18.2408 28.415 16.8555 28.4048 15.4707C28.4048 15.2659 28.4688 15.23 28.654 15.2321C29.4999 15.2411 30.3461 15.2394 31.192 15.2321C31.34 15.2321 31.384 15.271 31.384 15.4216C31.3797 18.2203 31.3797 21.0189 31.384 23.8173C31.384 23.953 31.3533 23.9978 31.2095 23.997C30.335 23.9901 29.4597 23.9888 28.5862 23.997C28.424 23.997 28.4073 23.9372 28.4078 23.8006C28.412 22.4103 28.4103 21.0182 28.4103 19.6256ZM29.7333 19.6013C29.7333 20.6455 29.7333 21.6897 29.7333 22.7342C29.7333 22.8515 29.7137 22.9475 29.8972 22.945C30.0717 22.9429 30.0679 22.8618 30.0679 22.7363C30.0659 20.6551 30.0659 18.5737 30.0679 16.4919C30.0679 16.3737 30.0841 16.2786 29.9002 16.2786C29.7162 16.2786 29.7346 16.3742 29.7346 16.4919C29.7332 17.5278 29.732 18.5643 29.7312 19.6013H29.7333Z" fill="#A30248"/>
+<path d="M0 20.7121C0.10797 20.3741 0.11992 20.0199 0.16601 19.6725C0.238132 19.1284 0.22789 19.1224 0.775851 19.1177C0.900465 19.1177 0.962345 19.0857 0.965759 18.9585C0.965759 18.9018 0.977282 18.8454 0.983683 18.7878C1.02977 18.3611 1.02935 18.35 0.586796 18.3611C0.401582 18.3666 0.357625 18.3116 0.384511 18.1366C0.460475 17.6461 0.529041 17.1545 0.59021 16.6617C0.603866 16.552 0.641848 16.5085 0.748111 16.523C0.755198 16.5239 0.762362 16.5239 0.769449 16.523C0.942287 16.5047 1.16676 16.602 1.27516 16.4756C1.36947 16.366 1.34344 16.1526 1.36862 15.9849C1.39849 15.7813 1.43136 15.5782 1.45397 15.3737C1.46592 15.2675 1.50988 15.2291 1.61742 15.2299C2.14362 15.2342 2.66981 15.2363 3.19644 15.2299C3.34111 15.2299 3.3394 15.2974 3.32447 15.4006C3.27709 15.716 3.23058 16.0322 3.18961 16.3489C3.1815 16.4103 3.10426 16.5328 3.24978 16.5162C3.37354 16.5017 3.57241 16.6391 3.61381 16.3975C3.67071 16.0689 3.7168 15.7388 3.75208 15.407C3.76659 15.2718 3.81183 15.2269 3.94882 15.2291C4.45325 15.2359 4.95796 15.2359 5.46296 15.2291C5.60123 15.2291 5.65244 15.2581 5.62599 15.407C5.56923 15.728 5.52954 16.0519 5.47705 16.3736C5.45998 16.4782 5.46979 16.535 5.59825 16.5256C5.73993 16.5153 5.8829 16.5256 6.02501 16.5222C6.11804 16.5192 6.14791 16.5478 6.13383 16.6455C6.05957 17.1576 5.98788 17.6697 5.92301 18.1844C5.90466 18.3269 5.84193 18.3619 5.70238 18.3598C5.21587 18.3538 5.21587 18.3598 5.13478 18.8382C5.08827 19.1109 5.08827 19.1109 5.37804 19.1109C5.7698 19.1109 5.77236 19.1109 5.72371 19.495C5.66823 19.9311 5.60337 20.366 5.55301 20.8026C5.53935 20.9157 5.50564 20.9622 5.38231 20.9618C5.20648 20.9618 4.9756 20.8819 4.87019 20.9942C4.76478 21.1064 4.79594 21.3262 4.76862 21.4999C4.73704 21.703 4.70546 21.9062 4.679 22.1102C4.66705 22.2036 4.62865 22.2403 4.52836 22.2382C4.00259 22.2335 3.47639 22.2318 2.94934 22.2382C2.80979 22.2382 2.80126 22.1793 2.81747 22.0709C2.86527 21.7483 2.90283 21.4239 2.95702 21.1022C2.9758 20.9912 2.96001 20.9558 2.84052 20.9536C2.55203 20.9477 2.55032 20.9413 2.50551 21.2327C2.46284 21.5063 2.42016 21.7799 2.38901 22.0543C2.37407 22.175 2.34633 22.2425 2.19739 22.2395C1.68528 22.2288 1.17316 22.2297 0.661052 22.2395C0.5151 22.242 0.495042 22.1878 0.51382 22.0649C0.564178 21.7427 0.599172 21.4175 0.657638 21.0975C0.681537 20.9694 0.639714 20.9519 0.533451 20.9562C0.355918 20.963 0.178386 20.9622 0.000853459 20.9643L0 20.7121ZM5.34987 17.3364C5.13137 17.3364 4.91799 17.324 4.70717 17.3403C4.5275 17.3543 4.51214 17.2831 4.53647 17.1324C4.59493 16.7829 4.6423 16.4308 4.68412 16.0788C4.69181 16.0173 4.77246 15.9055 4.60901 15.8923C4.47288 15.8807 4.44642 15.9435 4.43148 16.063C4.38454 16.436 4.31711 16.8064 4.27273 17.1794C4.25736 17.31 4.20871 17.3415 4.08581 17.3403C3.5387 17.3349 2.99131 17.3349 2.44363 17.3403C2.3203 17.3403 2.28104 17.3074 2.29981 17.1832C2.35671 16.8114 2.40835 16.4391 2.45473 16.0664C2.46241 16.0058 2.53538 15.9042 2.3873 15.8957C2.28701 15.8897 2.21659 15.8957 2.20337 16.0284C2.16069 16.4018 2.09326 16.7722 2.04589 17.1452C2.02754 17.289 1.97974 17.3586 1.81971 17.342C1.649 17.3258 1.4783 17.3458 1.30759 17.336C1.17957 17.3283 1.15695 17.3915 1.14671 17.4994C1.13348 17.6339 1.22139 17.6087 1.29479 17.6091C1.4655 17.6091 1.6362 17.6185 1.8069 17.607C1.94731 17.5972 1.97761 17.6497 1.95755 17.7777C1.86622 18.4238 1.77917 19.0705 1.69637 19.7177C1.68101 19.8368 1.62852 19.868 1.51628 19.8624C1.33917 19.8539 1.15994 19.8727 0.983683 19.8556C0.81938 19.8402 0.800603 19.9303 0.791214 20.0528C0.778838 20.2171 0.903025 20.1458 0.967893 20.1496C1.13848 20.1584 1.30941 20.1584 1.48001 20.1496C1.59395 20.1445 1.6234 20.1757 1.60419 20.2926C1.54701 20.6425 1.4958 20.9938 1.45909 21.3463C1.45184 21.415 1.34003 21.549 1.53164 21.5733C1.6968 21.5946 1.69253 21.4833 1.70619 21.3761C1.74887 21.0245 1.80136 20.6733 1.84361 20.3212C1.85897 20.1961 1.90421 20.1454 2.04333 20.1479C2.57635 20.1573 3.11023 20.1586 3.64283 20.1479C3.81353 20.1445 3.8609 20.1906 3.83146 20.3613C3.77086 20.7104 3.72519 21.0625 3.67953 21.4145C3.67228 21.4705 3.61509 21.5652 3.74397 21.5733C3.83957 21.5793 3.91468 21.5844 3.93175 21.4453C3.97442 21.0719 4.04356 20.7019 4.08111 20.328C4.0969 20.174 4.15708 20.1441 4.29449 20.1522C4.4716 20.1633 4.65041 20.1471 4.82752 20.1573C4.97859 20.1663 4.97603 20.0681 4.99097 19.9674C5.01145 19.8274 4.91073 19.8641 4.84245 19.8624C4.68604 19.8549 4.52934 19.8558 4.37302 19.865C4.20231 19.8795 4.14128 19.8483 4.17287 19.6516C4.27443 19.0217 4.35637 18.3884 4.43831 17.7551C4.4541 17.6343 4.50617 17.6027 4.6184 17.6083C4.77417 17.6159 4.93207 17.598 5.08784 17.613C5.28116 17.6296 5.38743 17.5763 5.34987 17.3364Z" fill="#A30248"/>
+<path d="M26.3619 20.7719C26.3619 21.7808 26.3585 22.7892 26.3657 23.7981C26.3657 23.956 26.329 23.9999 26.1673 23.9986C25.3282 23.9895 24.489 23.9895 23.6494 23.9986C23.4787 23.9986 23.4556 23.9462 23.4561 23.7951C23.4607 21.785 23.4561 19.7746 23.4637 17.7645C23.4637 17.5759 23.4176 17.5225 23.229 17.5294C22.8244 17.5443 22.4182 17.5294 22.0136 17.5366C21.8907 17.5366 21.8399 17.5157 21.8429 17.3757C21.8506 16.7154 21.8506 16.0549 21.8429 15.3943C21.8429 15.2552 21.8911 15.233 22.0136 15.2334C23.94 15.2368 25.8667 15.2368 27.7936 15.2334C27.9405 15.2334 27.9878 15.2718 27.9861 15.4229C27.978 16.063 27.9763 16.7032 27.9861 17.3407C27.9891 17.5072 27.9336 17.5422 27.78 17.5383C27.375 17.5285 26.9691 17.5443 26.5646 17.5307C26.3887 17.5247 26.3563 17.5861 26.3572 17.7466C26.3653 18.7546 26.3619 19.7635 26.3619 20.7719ZM24.747 19.7669C24.747 20.7617 24.7504 21.756 24.7436 22.7508C24.7436 22.8989 24.7803 22.939 24.9301 22.9407C25.1042 22.9428 25.0833 22.8443 25.0833 22.7363C25.0833 20.7681 25.0833 18.8003 25.079 16.8329C25.079 16.6545 25.108 16.5875 25.3069 16.5943C25.7968 16.611 26.2885 16.5982 26.7784 16.6007C26.8872 16.6007 26.964 16.6007 26.9662 16.4497C26.9683 16.2986 26.9021 16.279 26.7758 16.279C25.5317 16.2824 24.2874 16.2824 23.0429 16.279C22.9337 16.279 22.8594 16.2768 22.8565 16.4292C22.8535 16.5815 22.9222 16.5999 23.0468 16.5999C23.5516 16.5952 24.0565 16.6037 24.5614 16.5943C24.7094 16.5918 24.7517 16.6315 24.7504 16.7817C24.7436 17.7795 24.747 18.7742 24.747 19.7669Z" fill="#A30248"/>
+<path d="M14.7987 19.6085C14.7987 18.2241 14.8021 16.8401 14.7944 15.4557C14.7944 15.2812 14.8337 15.2287 15.0146 15.2317C16.0517 15.25 17.0896 15.2056 18.1262 15.256C18.8709 15.2923 19.5882 15.4578 20.2326 15.8535C21.0516 16.3558 21.4873 17.1022 21.5915 18.0479C21.6717 18.7789 21.6209 19.4929 21.2829 20.1625C20.8399 21.0395 20.0782 21.4922 19.1628 21.7295C18.7231 21.847 18.2696 21.9044 17.8146 21.9002C17.6341 21.8972 17.5918 21.9625 17.5948 22.1337C17.6051 22.6944 17.5923 23.2552 17.6029 23.816C17.6059 23.9773 17.5445 23.9965 17.4062 23.9956C16.5954 23.9897 15.7845 23.9879 14.9762 23.9956C14.8171 23.9956 14.7953 23.9414 14.7957 23.8019C14.8008 22.4059 14.7987 21.0074 14.7987 19.6085ZM16.1217 19.6085V22.7401C16.1217 22.8442 16.0922 22.9479 16.2723 22.9432C16.4302 22.9394 16.4571 22.8839 16.455 22.7439C16.4481 22.1891 16.4592 21.6365 16.4481 21.0826C16.4447 20.9037 16.4789 20.8316 16.6782 20.8427C17.0196 20.8619 17.361 20.8521 17.7024 20.8474C18.3604 20.838 18.9895 20.713 19.5345 20.3204C20.2715 19.7895 20.5548 18.6778 20.2019 17.7171C19.8951 16.8841 19.2204 16.5222 18.4061 16.3647C17.7233 16.2324 17.0319 16.3028 16.344 16.2794C16.1733 16.2738 16.1165 16.3144 16.1178 16.4966C16.1255 17.5349 16.1208 18.5719 16.1208 19.6081L16.1217 19.6085Z" fill="#A30248"/>
+<path d="M5.87646 23.9943C6.10436 23.3892 6.32286 22.8071 6.54349 22.2254C7.40185 19.967 8.2585 17.708 9.11344 15.4485C9.17746 15.2778 9.25897 15.2287 9.43394 15.2321C10.0024 15.2432 10.5713 15.2389 11.141 15.2321C11.2622 15.2321 11.3296 15.259 11.377 15.3845C12.4464 18.2144 13.5188 21.0429 14.5939 23.8697C14.6063 23.9022 14.6144 23.9359 14.6251 23.9713C14.5551 24.0106 14.4842 23.9914 14.4172 23.9914C13.6209 23.9914 12.8246 23.9914 12.0274 23.9952C11.9117 23.9952 11.8349 23.976 11.8161 23.8514C11.8143 23.8445 11.8118 23.8378 11.8089 23.8313C11.7325 23.6337 11.709 23.3657 11.5652 23.2569C11.4009 23.1331 11.1269 23.2215 10.9007 23.2198C10.2964 23.2151 9.69213 23.2223 9.08784 23.2151C8.96707 23.2151 8.91201 23.2509 8.87446 23.3632C8.8049 23.5714 8.77588 23.8642 8.62779 23.9559C8.45709 24.0618 8.17414 23.9914 7.94028 23.9922C7.2613 23.9956 6.58105 23.9943 5.87646 23.9943ZM13.0153 22.9146C13.0096 22.8858 13.0023 22.8573 12.9936 22.8293C12.1784 20.6909 11.3643 18.5523 10.5512 16.4134C10.4658 16.1915 10.3041 16.3161 10.1769 16.2853C10.0297 16.2495 9.98702 16.3494 9.94349 16.4642C9.1537 18.5433 8.3622 20.6221 7.569 22.7004C7.47852 22.9368 7.50242 22.9629 7.74952 22.9381C7.83188 22.93 7.85621 22.8873 7.87755 22.825C7.92859 22.7082 7.97318 22.5887 8.01112 22.467C8.0491 22.3172 8.12805 22.2775 8.28041 22.2783C9.51801 22.2852 10.7556 22.2822 11.9907 22.2822C12.4289 22.2822 12.4469 22.2766 12.5749 22.6825C12.6513 22.9202 12.7716 22.9859 13.0153 22.9146Z" fill="#A30248"/>
+<path d="M28.4103 19.6258C28.4103 18.2409 28.415 16.8557 28.4048 15.4708C28.4048 15.266 28.4688 15.2301 28.654 15.2323C29.4999 15.2412 30.3461 15.2395 31.192 15.2323C31.34 15.2323 31.384 15.2711 31.384 15.4217C31.3797 18.2204 31.3797 21.019 31.384 23.8174C31.384 23.9531 31.3533 23.9979 31.2095 23.9971C30.335 23.9902 29.4597 23.989 28.5862 23.9971C28.424 23.9971 28.4073 23.9373 28.4078 23.8008C28.412 22.4104 28.4103 21.0183 28.4103 19.6258ZM29.7333 19.6014C29.7333 20.6456 29.7333 21.6899 29.7333 22.7343C29.7333 22.8516 29.7137 22.9477 29.8972 22.9451C30.0717 22.943 30.0679 22.8619 30.0679 22.7364C30.0659 20.6553 30.0659 18.5738 30.0679 16.4921C30.0679 16.3738 30.0841 16.2787 29.9002 16.2787C29.7162 16.2787 29.7346 16.3743 29.7346 16.4921C29.7332 17.528 29.732 18.5644 29.7312 19.6014H29.7333Z" fill="#A30248"/>
 <path d="M36.8487 22.6467C37.339 22.6501 37.8132 22.5673 38.2442 22.3288C38.4179 22.2323 38.4243 22.3714 38.487 22.4491C38.5694 22.552 38.5079 22.5912 38.4192 22.6343C36.7236 23.4597 34.0641 22.8451 33.5054 20.4655C32.9643 18.161 34.6321 16.1872 37.0147 16.2722C37.434 16.2856 37.8474 16.3743 38.2352 16.5342C38.292 16.5577 38.4486 16.5398 38.3679 16.6789C38.3167 16.7681 38.3206 16.9349 38.1072 16.847C37.3386 16.527 36.4787 16.503 35.6934 16.7796C34.2267 17.2798 33.5818 18.6911 33.7769 20.0575C34.0073 21.6694 35.1621 22.6262 36.8487 22.6467Z" fill="#FBF4F7"/>
 <path d="M5.34998 17.3365C5.38754 17.5764 5.28128 17.6297 5.08753 17.6109C4.93261 17.596 4.77471 17.6139 4.61809 17.6062C4.50585 17.6007 4.45379 17.6323 4.438 17.7531C4.35606 18.3864 4.27412 19.0197 4.17255 19.6496C4.14097 19.845 4.20328 19.8762 4.3727 19.863C4.52902 19.8538 4.68573 19.8529 4.84214 19.8604C4.91042 19.8604 5.01284 19.8254 4.99065 19.9654C4.97572 20.0661 4.97828 20.1643 4.8272 20.1553C4.6501 20.1451 4.47128 20.1613 4.29418 20.1502C4.15761 20.1421 4.09744 20.1719 4.0808 20.326C4.04324 20.6998 3.97197 21.0698 3.93143 21.4433C3.91607 21.5841 3.83925 21.579 3.74366 21.5713C3.61563 21.5632 3.67196 21.4684 3.67922 21.4125C3.72488 21.0605 3.77054 20.7084 3.83114 20.3593C3.86059 20.1886 3.81535 20.1459 3.64251 20.1459C3.10949 20.157 2.57561 20.1557 2.04302 20.1459C1.90389 20.1433 1.85865 20.1941 1.84329 20.3192C1.80062 20.6712 1.75068 21.0225 1.70587 21.3741C1.69222 21.4812 1.69649 21.5926 1.53133 21.5713C1.33971 21.547 1.45153 21.413 1.45878 21.3442C1.49548 20.9917 1.54669 20.6405 1.60388 20.2906C1.62308 20.1736 1.59364 20.1425 1.47969 20.1476C1.3091 20.1564 1.13817 20.1564 0.967578 20.1476C0.902711 20.1438 0.778523 20.215 0.790899 20.0507C0.800288 19.9283 0.819066 19.8374 0.983369 19.8536C1.15962 19.8706 1.33886 19.8536 1.51597 19.8604C1.6282 19.8659 1.6807 19.8348 1.69606 19.7157C1.77885 19.0685 1.86591 18.4218 1.95724 17.7757C1.97559 17.6476 1.94699 17.5947 1.80659 17.605C1.63589 17.6165 1.46518 17.6084 1.29448 17.6071C1.22107 17.6071 1.13316 17.6319 1.14639 17.4974C1.15663 17.3895 1.17883 17.3267 1.30728 17.334C1.47798 17.3438 1.64869 17.3237 1.81939 17.34C1.97943 17.3553 2.02723 17.287 2.04558 17.1432C2.09295 16.7702 2.15952 16.3998 2.20305 16.0264C2.21841 15.8924 2.2884 15.8877 2.38698 15.8937C2.53507 15.9026 2.46209 16.0042 2.45441 16.0644C2.40747 16.4371 2.35583 16.8093 2.2995 17.1812C2.28072 17.3054 2.31998 17.3395 2.44332 17.3382C2.99071 17.3328 3.5381 17.3328 4.08549 17.3382C4.2084 17.3382 4.2562 17.3079 4.27241 17.1774C4.31509 16.8044 4.38422 16.4339 4.43117 16.0609C4.44611 15.9427 4.47384 15.88 4.6087 15.8902C4.77215 15.9035 4.69149 16.0153 4.68381 16.0767C4.64113 16.4288 4.59462 16.7809 4.53615 17.1304C4.51097 17.2811 4.52634 17.3523 4.70686 17.3382C4.9181 17.3242 5.13148 17.3365 5.34998 17.3365ZM2.90038 19.8591C3.1846 19.8591 3.46882 19.854 3.7539 19.8617C3.86144 19.8642 3.90455 19.8297 3.91863 19.7243C4.00569 19.0699 4.09602 18.4168 4.18962 17.765C4.20712 17.6442 4.17938 17.6041 4.05178 17.6054C3.49699 17.6114 2.9422 17.6097 2.38741 17.6054C2.28712 17.6054 2.23463 17.6263 2.21969 17.7398C2.13264 18.4084 2.04074 19.0756 1.94401 19.7413C1.92864 19.845 1.96108 19.8613 2.04984 19.86C2.33193 19.857 2.61616 19.8587 2.90038 19.8591Z" fill="#FBF4F7"/>
-<path d="M24.7471 19.7669C24.7471 18.7726 24.7437 17.7778 24.7505 16.7834C24.7505 16.6332 24.7078 16.5935 24.5614 16.5961C24.0566 16.6055 23.5517 16.5961 23.0469 16.6016C22.9223 16.6016 22.8536 16.5897 22.8565 16.4309C22.8595 16.2722 22.9338 16.2807 23.043 16.2807C24.2875 16.2827 25.5318 16.2827 26.7759 16.2807C26.9039 16.2807 26.968 16.2944 26.9662 16.4514C26.9645 16.6085 26.8873 16.6029 26.7785 16.6025C26.2881 16.5999 25.7969 16.6127 25.307 16.5961C25.1081 16.5893 25.0783 16.6563 25.0791 16.8347C25.0851 18.802 25.0825 20.7698 25.0834 22.738C25.0834 22.846 25.1043 22.9446 24.9302 22.9425C24.7804 22.9425 24.7428 22.8998 24.7437 22.7525C24.7505 21.7578 24.7471 20.7634 24.7471 19.7669Z" fill="#FBF4F7"/>
-<path d="M16.1209 19.6081C16.1209 18.5715 16.1256 17.5349 16.1162 16.4983C16.1162 16.3161 16.1704 16.2756 16.3424 16.2811C17.0303 16.3037 17.7225 16.2333 18.4045 16.3665C19.2209 16.5235 19.8935 16.885 20.2003 17.7185C20.5532 18.6778 20.2699 19.7895 19.5329 20.3217C18.9879 20.7143 18.3588 20.8394 17.7008 20.8487C17.3594 20.8534 17.018 20.8633 16.6765 20.844C16.4773 20.833 16.4431 20.9051 16.4465 21.0839C16.4576 21.6387 16.4465 22.1935 16.4534 22.7453C16.4555 22.8852 16.4286 22.9407 16.2707 22.9446C16.0906 22.9493 16.1201 22.8456 16.1201 22.7414L16.1209 19.6081ZM16.4538 18.5617C16.4538 19.1652 16.4563 19.7682 16.4516 20.3716C16.4516 20.4924 16.4691 20.5479 16.6108 20.5445C17.0299 20.5342 17.4498 20.5581 17.8681 20.5355C18.4348 20.5052 18.9887 20.3947 19.4228 19.991C20.0288 19.4276 20.0753 18.7043 19.9058 17.963C19.7437 17.2546 19.223 16.8794 18.5436 16.707C17.8937 16.5419 17.2296 16.6191 16.5711 16.6008C16.4324 16.5969 16.4542 16.6912 16.4542 16.7715C16.4519 17.3689 16.4518 17.9657 16.4538 18.5617Z" fill="#FBF4F7"/>
-<path d="M13.0154 22.9147C12.7717 22.986 12.6514 22.9202 12.5767 22.6834C12.4487 22.2775 12.4308 22.2831 11.9925 22.2831C10.7549 22.2831 9.51726 22.2861 8.28221 22.2792C8.12986 22.2792 8.05091 22.3181 8.01293 22.4679C7.97499 22.5896 7.93039 22.7091 7.87935 22.8259C7.85631 22.8882 7.83198 22.9309 7.75132 22.939C7.50423 22.9638 7.48033 22.939 7.5708 22.7013C8.36287 20.6227 9.15437 18.5439 9.9453 16.465C9.98797 16.3503 10.0306 16.2517 10.1787 16.2862C10.3068 16.3174 10.4694 16.1928 10.553 16.4143C11.3627 18.5546 12.1768 20.6933 12.9954 22.8302C13.0035 22.858 13.0102 22.8862 13.0154 22.9147ZM10.2658 16.6033C10.2376 16.6601 10.2193 16.6887 10.2069 16.7228C9.56022 18.4179 8.91282 20.1123 8.26471 21.806C8.19387 21.9895 8.27368 21.9848 8.40853 21.9848C9.63846 21.9822 10.8688 21.9801 12.0987 21.9848C12.2767 21.9848 12.3164 21.9566 12.2468 21.7774C11.8073 20.6482 11.3788 19.5155 10.9465 18.3829L10.2658 16.6033Z" fill="#FBF4F7"/>
-<path d="M29.731 19.6013C29.731 18.5643 29.731 17.5271 29.731 16.4898C29.731 16.3729 29.7135 16.2764 29.8966 16.2764C30.0797 16.2764 30.0643 16.3729 30.0643 16.4898C30.0643 18.5715 30.0643 20.653 30.0643 22.7342C30.0643 22.8596 30.0686 22.9407 29.8936 22.9429C29.7101 22.9429 29.7293 22.8494 29.7298 22.732C29.7318 21.6893 29.7322 20.6457 29.731 19.6013Z" fill="#FBF4F7"/>
+<path d="M24.7471 19.7668C24.7471 18.7725 24.7437 17.7777 24.7505 16.7833C24.7505 16.6331 24.7078 16.5934 24.5614 16.596C24.0566 16.6054 23.5517 16.596 23.0469 16.6015C22.9223 16.6015 22.8536 16.5896 22.8565 16.4308C22.8595 16.2721 22.9338 16.2806 23.043 16.2806C24.2875 16.2826 25.5318 16.2826 26.7759 16.2806C26.9039 16.2806 26.968 16.2943 26.9662 16.4513C26.9645 16.6084 26.8873 16.6028 26.7785 16.6024C26.2881 16.5998 25.7969 16.6126 25.307 16.596C25.1081 16.5891 25.0783 16.6561 25.0791 16.8345C25.0851 18.8019 25.0825 20.7697 25.0834 22.7379C25.0834 22.8459 25.1043 22.9445 24.9302 22.9423C24.7804 22.9423 24.7428 22.8997 24.7437 22.7524C24.7505 21.7576 24.7471 20.7633 24.7471 19.7668Z" fill="#FBF4F7"/>
+<path d="M16.1209 19.6083C16.1209 18.5717 16.1256 17.5351 16.1162 16.4985C16.1162 16.3162 16.1704 16.2757 16.3424 16.2812C17.0303 16.3039 17.7225 16.2334 18.4045 16.3666C19.2209 16.5236 19.8935 16.8851 20.2003 17.7186C20.5532 18.6779 20.2699 19.7896 19.5329 20.3218C18.9879 20.7144 18.3588 20.8395 17.7008 20.8489C17.3594 20.8536 17.018 20.8634 16.6765 20.8442C16.4773 20.8331 16.4431 20.9052 16.4465 21.084C16.4576 21.6388 16.4465 22.1936 16.4534 22.7454C16.4555 22.8854 16.4286 22.9408 16.2707 22.9447C16.0906 22.9494 16.1201 22.8457 16.1201 22.7415L16.1209 19.6083ZM16.4538 18.5619C16.4538 19.1653 16.4563 19.7683 16.4516 20.3717C16.4516 20.4925 16.4691 20.548 16.6108 20.5446C17.0299 20.5343 17.4498 20.5582 17.8681 20.5356C18.4348 20.5053 18.9887 20.3948 19.4228 19.9911C20.0288 19.4278 20.0753 18.7044 19.9058 17.9631C19.7437 17.2547 19.223 16.8796 18.5436 16.7072C17.8937 16.542 17.2296 16.6192 16.5711 16.6009C16.4324 16.597 16.4542 16.6914 16.4542 16.7716C16.4519 17.3691 16.4518 17.9658 16.4538 18.5619Z" fill="#FBF4F7"/>
+<path d="M13.0154 22.9146C12.7717 22.9859 12.6514 22.9202 12.5767 22.6833C12.4487 22.2775 12.4308 22.283 11.9925 22.283C10.7549 22.283 9.51726 22.286 8.28221 22.2792C8.12986 22.2792 8.05091 22.318 8.01293 22.4678C7.97499 22.5895 7.93039 22.709 7.87935 22.8259C7.85631 22.8882 7.83198 22.9308 7.75132 22.9389C7.50423 22.9637 7.48033 22.9389 7.5708 22.7012C8.36287 20.6226 9.15437 18.5439 9.9453 16.465C9.98797 16.3502 10.0306 16.2516 10.1787 16.2862C10.3068 16.3173 10.4694 16.1927 10.553 16.4142C11.3627 18.5546 12.1768 20.6932 12.9954 22.8301C13.0035 22.8579 13.0102 22.8861 13.0154 22.9146ZM10.2658 16.6033C10.2376 16.66 10.2193 16.6886 10.2069 16.7228C9.56022 18.4178 8.91282 20.1122 8.26471 21.8059C8.19387 21.9894 8.27368 21.9847 8.40853 21.9847C9.63846 21.9822 10.8688 21.98 12.0987 21.9847C12.2767 21.9847 12.3164 21.9565 12.2468 21.7773C11.8073 20.6481 11.3788 19.5155 10.9465 18.3829L10.2658 16.6033Z" fill="#FBF4F7"/>
+<path d="M29.731 19.6013C29.731 18.5642 29.731 17.5271 29.731 16.4897C29.731 16.3728 29.7135 16.2764 29.8966 16.2764C30.0797 16.2764 30.0643 16.3728 30.0643 16.4897C30.0643 18.5715 30.0643 20.6529 30.0643 22.7341C30.0643 22.8596 30.0686 22.9407 29.8936 22.9428C29.7101 22.9428 29.7293 22.8493 29.7298 22.732C29.7318 21.6893 29.7322 20.6457 29.731 19.6013Z" fill="#FBF4F7"/>
 <path d="M2.90028 19.8587C2.61606 19.8587 2.33184 19.8587 2.04676 19.8587C1.958 19.8587 1.92556 19.8437 1.94092 19.74C2.03965 19.0751 2.13268 18.4087 2.22003 17.7406C2.23496 17.6271 2.28745 17.6058 2.38774 17.6062C2.94253 17.6096 3.49732 17.6113 4.05211 17.6062C4.18014 17.6062 4.20745 17.645 4.18995 17.7658C4.09436 18.4171 4.0036 19.0699 3.91768 19.7242C3.9036 19.8296 3.86049 19.8642 3.75295 19.8616C3.46873 19.8522 3.18451 19.8591 2.90028 19.8587ZM3.01081 19.1114C3.18152 19.1541 3.26047 19.0879 3.26132 18.9104C3.26691 18.8255 3.27904 18.7412 3.2976 18.6582C3.3518 18.3262 3.40045 18.3667 3.03429 18.3594C2.93442 18.3569 2.89772 18.3876 2.88876 18.4875C2.87402 18.6285 2.85137 18.7685 2.82091 18.907C2.78591 19.0666 2.82219 19.1549 3.01081 19.1114Z" fill="#A30248"/>
-<path d="M16.4538 18.5617C16.4538 17.9643 16.4538 17.3681 16.4538 16.7732C16.4538 16.6912 16.432 16.5969 16.5707 16.6025C17.2292 16.6208 17.8937 16.5436 18.5432 16.7087C19.226 16.8795 19.7433 17.2563 19.9054 17.9647C20.0761 18.706 20.0283 19.4293 19.4223 19.9927C18.9883 20.3964 18.4344 20.5069 17.8676 20.5372C17.4494 20.5598 17.0295 20.5372 16.6104 20.5462C16.4687 20.5496 16.4499 20.4941 16.4512 20.3733C16.4538 19.7669 16.4538 19.1652 16.4538 18.5617ZM17.6001 18.5617C17.6001 18.8383 17.6001 19.115 17.6001 19.3918C17.6001 19.4618 17.589 19.5279 17.6969 19.5437C18.0345 19.5941 18.4685 19.4157 18.6153 19.1268C18.8031 18.7576 18.8078 18.374 18.6094 18.0065C18.4216 17.6583 18.0802 17.619 17.7302 17.6007C17.6184 17.5951 17.5975 17.6357 17.5988 17.7321C17.6001 18.0095 17.5979 18.2861 17.5979 18.5626L17.6001 18.5617Z" fill="#A30248"/>
-<path d="M10.2657 16.6033L10.9464 18.3846C11.3787 19.5168 11.8072 20.6499 12.2467 21.7791C12.3163 21.9583 12.2766 21.9873 12.0986 21.9865C10.8687 21.9801 9.63836 21.9822 8.40844 21.9865C8.27358 21.9865 8.19506 21.9912 8.26462 21.8077C8.91585 20.114 9.56254 18.4191 10.2047 16.7228C10.217 16.6904 10.2354 16.6601 10.2657 16.6033ZM10.2601 19.7579C10.069 20.256 9.89655 20.7113 9.71816 21.1663C9.68317 21.2559 9.70707 21.2764 9.79413 21.2759C10.1355 21.2734 10.4735 21.2759 10.8401 21.2759C10.6447 20.7681 10.4586 20.2824 10.258 19.7579H10.2601Z" fill="#A30248"/>
+<path d="M16.4538 18.5616C16.4538 17.9642 16.4538 17.368 16.4538 16.7731C16.4538 16.6911 16.432 16.5968 16.5707 16.6024C17.2292 16.6207 17.8937 16.5435 18.5432 16.7086C19.226 16.8793 19.7433 17.2562 19.9054 17.9646C20.0761 18.7059 20.0283 19.4292 19.4223 19.9925C18.9883 20.3963 18.4344 20.5068 17.8676 20.5371C17.4494 20.5597 17.0295 20.5371 16.6104 20.5461C16.4687 20.5495 16.4499 20.494 16.4512 20.3732C16.4538 19.7668 16.4538 19.1651 16.4538 18.5616ZM17.6001 18.5616C17.6001 18.8382 17.6001 19.1148 17.6001 19.3917C17.6001 19.4617 17.589 19.5278 17.6969 19.5436C18.0345 19.594 18.4685 19.4156 18.6153 19.1267C18.8031 18.7575 18.8078 18.3738 18.6094 18.0064C18.4216 17.6582 18.0802 17.6189 17.7302 17.6006C17.6184 17.595 17.5975 17.6355 17.5988 17.732C17.6001 18.0094 17.5979 18.2859 17.5979 18.5625L17.6001 18.5616Z" fill="#A30248"/>
+<path d="M10.2657 16.6033L10.9464 18.3846C11.3787 19.5168 11.8072 20.6498 12.2467 21.779C12.3163 21.9583 12.2766 21.9873 12.0986 21.9864C10.8687 21.98 9.63836 21.9822 8.40844 21.9864C8.27358 21.9864 8.19506 21.9911 8.26462 21.8076C8.91585 20.1139 9.56254 18.419 10.2047 16.7228C10.217 16.6903 10.2354 16.66 10.2657 16.6033ZM10.2601 19.7579C10.069 20.2559 9.89655 20.7113 9.71816 21.1662C9.68317 21.2558 9.70707 21.2763 9.79413 21.2759C10.1355 21.2733 10.4735 21.2759 10.8401 21.2759C10.6447 20.768 10.4586 20.2824 10.258 19.7579H10.2601Z" fill="#A30248"/>
 </svg>
diff --git a/src/assets/logos/pix.svg b/src/assets/logos/pix.svg
index b0cd8e747..fad7a4b11 100644
--- a/src/assets/logos/pix.svg
+++ b/src/assets/logos/pix.svg
@@ -1,28 +1,24 @@
-<svg width="120" height="56" viewBox="0 -10 240 198" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-    <defs>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
-            <stop stop-color="#12A3FF" offset="0%"></stop>
-            <stop stop-color="#3D68FF" offset="100%"></stop>
-        </linearGradient>
-        <linearGradient x1="68.6429521%" y1="0%" x2="68.6429501%" y2="100%" id="linearGradient-2">
-            <stop stop-color="#FFBE00" offset="0%"></stop>
-            <stop stop-color="#FF9F00" offset="100%"></stop>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="73.0493975%" id="linearGradient-3">
-            <stop stop-color="#12A3FF" offset="0%"></stop>
-            <stop stop-color="#3D68FF" offset="100%"></stop>
-        </linearGradient>
-        <linearGradient x1="50%" y1="28.3619163%" x2="50%" y2="100%" id="linearGradient-4">
-            <stop stop-color="#12A3FF" offset="0%"></stop>
-            <stop stop-color="#3D68FF" offset="100%"></stop>
-        </linearGradient>
-    </defs>
-    <g id="6.-logos/logos--pix/couleur" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-        <g id="Group" transform="translate(143.000000, 58.500000)">
-            <path d="M42.554995,61.4262286 L45.6523522,57.6680705 C48.4082155,54.4902327 50.3666408,51.4215698 51.5276279,48.3989 L75.1046427,77.1846779 C79.3838825,82.6679776 79.1798504,83.6835372 72.048086,83.6835372 L69.6027199,83.6835372 C62.4709555,83.6835372 59.8218592,82.2618741 55.5426194,77.1846779 L42.554995,61.4262286 Z M42.5549622,22.2670198 L55.5426194,6.5085306 C59.8218592,1.4313344 62.4709555,0.00967133196 69.6027199,0.00967133196 L72.048086,0.00967133196 C79.1798504,0.00967133196 79.3838825,1.0252309 75.1046427,6.5085306 L51.5276279,35.2943085 C50.3666384,32.2716324 48.4082074,29.202963 45.6523349,26.0251181 L42.5549622,22.2670198 Z" id="Combined-Shape" fill="url(#linearGradient-1)"></path>
-            <path d="M41.865595,83.6835372 C48.9973595,83.6835372 49.2013915,82.6679776 44.9221517,77.1846779 L20.4696981,47.3300544 C18.6358244,45.0961843 17.6168716,43.2681169 17.6168716,41.8464539 C17.6168716,40.221739 18.6358244,38.3939725 20.4696981,36.3631542 L44.9221517,6.5085306 C49.2013915,1.0252309 48.9973595,0.00967133196 41.865595,0.00967133196 L39.4202289,0.00967133196 C32.2884645,0.00967133196 29.6393682,1.4313344 25.3601284,6.5085306 L6.61332779,29.2548388 C-1.33396111,38.3939725 -1.33396111,45.2992361 6.61332779,54.4383697 L25.3601284,77.1846779 C29.6393682,82.2618741 32.2884645,83.6835372 39.4202289,83.6835372 L41.865595,83.6835372 Z" id="Page-1" fill="url(#linearGradient-2)" transform="translate(24.207059, 41.846604) scale(-1, 1) translate(-24.207059, -41.846604) "></path>
-        </g>
-        <path d="M17,168.219601 C17,174.283189 18.5209622,175.799086 24.6048108,175.799086 L26.6325656,175.799086 C32.7164142,175.799086 34.2373764,174.283189 34.2373764,168.219601 L34.2373764,133.017522 C38.8002629,140.259979 47.0810894,143.965538 59.0795637,143.965538 C82.5697196,143.965538 94.2303322,131.669993 94.2303322,107.247562 L94.2303322,92.5939868 C94.2303322,68.1712646 81.7247731,56.7181434 55.5305545,56.7181434 C31.1954521,56.7181434 17,68.5082925 17,92.5939868 L17,168.219601 Z M76.8240249,107.584298 C76.8240249,121.732477 72.0922075,127.627698 55.6997776,127.627698 C38.9691938,127.627698 34.2373764,121.564109 34.2373764,107.584298 L34.2373764,93.0990917 C34.2373764,78.9509128 39.3073477,72.8873243 55.6997776,72.8873243 C72.4300692,72.8873243 76.8240249,78.9509128 76.8240249,93.0990917 L76.8240249,107.584298 Z" id="Fill-1" fill="url(#linearGradient-3)"></path>
-        <path d="M110.485741,134.401644 C110.485741,140.465232 112.006703,141.98113 118.090552,141.98113 L120.287238,141.98113 C126.371086,141.98113 127.892048,140.465232 127.892048,134.401644 L127.892048,66.0184879 C127.892048,59.9548994 126.371086,58.4390023 120.287238,58.4390023 L118.090552,58.4390023 C112.006703,58.4390023 110.485741,59.9548994 110.485741,66.0184879 L110.485741,134.401644 Z M111.668549,40.2485281 C115.893574,44.2908233 122.653146,44.2908233 126.70924,40.2485281 C130.933973,36.0375733 130.933973,29.3005117 126.70924,25.2582165 C122.653146,21.0472617 115.893574,21.0472617 111.668549,25.2582165 C107.443817,29.3005117 107.443817,36.0375733 111.668549,40.2485281 L111.668549,40.2485281 Z" id="Fill-2" fill="url(#linearGradient-4)"></path>
-    </g>
+<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M30.9258 22.9878L31.442 22.3614C31.9013 21.8318 32.2277 21.3204 32.4212 20.8166L36.3507 25.6142C37.0639 26.5281 37.0299 26.6974 35.8413 26.6974H35.4337C34.2451 26.6974 33.8036 26.4604 33.0904 25.6142L30.9258 22.9878ZM30.9258 16.4613L33.0904 13.8349C33.8036 12.9887 34.2451 12.7517 35.4337 12.7517H35.8413C37.0299 12.7517 37.0639 12.921 36.3507 13.8349L32.4212 18.6325C32.2277 18.1287 31.9013 17.6173 31.442 17.0876L30.9258 16.4613Z" fill="url(#paint0_linear_5970_70958)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M24.9248 26.6974C23.7362 26.6974 23.7022 26.5281 24.4154 25.6142L28.4908 20.6384C28.7964 20.2661 28.9662 19.9614 28.9662 19.7245C28.9662 19.4537 28.7964 19.1491 28.4908 18.8106L24.4154 13.8349C23.7022 12.921 23.7362 12.7517 24.9248 12.7517H25.3324C26.521 12.7517 26.9625 12.9887 27.6757 13.8349L30.8002 17.6259C32.1247 19.1491 32.1247 20.3 30.8002 21.8232L27.6757 25.6142C26.9625 26.4604 26.521 26.6974 25.3324 26.6974H24.9248Z" fill="url(#paint1_linear_5970_70958)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M2.83337 31.0367C2.83337 32.0473 3.08687 32.2999 4.10084 32.2999H4.4388C5.45278 32.2999 5.70627 32.0473 5.70627 31.0367V25.1697C6.46675 26.3768 7.84689 26.9944 9.84663 26.9944C13.7617 26.9944 15.7051 24.9451 15.7051 20.8747V18.4324C15.7051 14.362 13.6208 12.4531 9.25513 12.4531C5.19928 12.4531 2.83337 14.4181 2.83337 18.4324V31.0367ZM12.804 20.9308C12.804 23.2888 12.0154 24.2714 9.28334 24.2714C6.49491 24.2714 5.70627 23.2608 5.70627 20.9308V18.5166C5.70627 16.1586 6.55126 15.148 9.28334 15.148C12.0717 15.148 12.804 16.1586 12.804 18.5166V20.9308Z" fill="url(#paint2_linear_5970_70958)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M18.4143 25.4003C18.4143 26.4109 18.6678 26.6635 19.6818 26.6635H20.0479C21.0619 26.6635 21.3154 26.4109 21.3154 25.4003V14.0031C21.3154 12.9925 21.0619 12.7399 20.0479 12.7399H19.6818C18.6678 12.7399 18.4143 12.9925 18.4143 14.0031V25.4003ZM18.6115 9.7081C19.3156 10.3818 20.4422 10.3818 21.1183 9.7081C21.8224 9.00628 21.8224 7.88343 21.1183 7.20972C20.4422 6.50789 19.3156 6.50789 18.6115 7.20972C17.9073 7.88343 17.9073 9.00628 18.6115 9.7081Z" fill="url(#paint3_linear_5970_70958)"/>
+<defs>
+<linearGradient id="paint0_linear_5970_70958" x1="33.8748" y1="12.7517" x2="33.8748" y2="26.6974" gradientUnits="userSpaceOnUse">
+<stop stop-color="#12A3FF"/>
+<stop offset="1" stop-color="#3D68FF"/>
+</linearGradient>
+<linearGradient id="paint1_linear_5970_70958" x1="26.4041" y1="12.7517" x2="26.4041" y2="26.6974" gradientUnits="userSpaceOnUse">
+<stop stop-color="#FFBE00"/>
+<stop offset="1" stop-color="#FF9F00"/>
+</linearGradient>
+<linearGradient id="paint2_linear_5970_70958" x1="9.26923" y1="12.4531" x2="9.26923" y2="26.9511" gradientUnits="userSpaceOnUse">
+<stop stop-color="#12A3FF"/>
+<stop offset="1" stop-color="#3D68FF"/>
+</linearGradient>
+<linearGradient id="paint3_linear_5970_70958" x1="19.8649" y1="12.3501" x2="19.8649" y2="26.6635" gradientUnits="userSpaceOnUse">
+<stop stop-color="#12A3FF"/>
+<stop offset="1" stop-color="#3D68FF"/>
+</linearGradient>
+</defs>
 </svg>
\ No newline at end of file
diff --git a/src/assets/logos/poleEmploi.svg b/src/assets/logos/poleEmploi.svg
index 1cdb45f60..0b45ea013 100644
--- a/src/assets/logos/poleEmploi.svg
+++ b/src/assets/logos/poleEmploi.svg
@@ -1,44 +1,44 @@
 <svg id="pole" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M22.669 8.03245C21.8328 8.35953 21.1365 8.82603 20.5696 9.43406C20.0017 10.0437 19.5679 10.7744 19.2703 11.6329C18.9712 12.4926 18.8208 13.4266 18.8208 14.4393C18.8224 16.5942 19.428 18.2673 20.6304 19.5043C21.8318 20.7372 23.5088 21.3604 25.7151 21.362C26.6555 21.3625 27.4844 21.2409 28.2016 21.0045C29.5135 20.5422 30.9899 19.2333 31.2414 17.9989C31.4054 17.1917 30.9113 17.0166 30.6447 16.9799C30.5933 16.9747 30.5409 16.971 30.4854 16.971C30.1815 16.971 29.9405 17.069 29.787 17.209C29.6026 17.3783 29.0661 17.882 28.79 18.1237C28.5091 18.369 28.2032 18.5986 27.8715 18.8129C27.532 19.032 27.1784 19.1945 26.8132 19.2983C26.447 19.4026 26.0462 19.4529 25.6129 19.4529C24.9575 19.4535 24.3482 19.2894 23.8017 18.9634C23.25 18.6363 22.8089 18.1467 22.4846 17.5125C22.1818 16.9254 22.0193 16.2555 21.9884 15.5139C21.98 15.2659 22.1687 15.1181 22.3877 15.1181H29.0142C29.908 15.1186 30.5855 14.9881 31.0444 14.7507C31.4525 14.5394 31.6846 14.0719 31.6883 13.2233C31.6883 12.3112 31.4557 11.417 30.9836 10.5296C30.5152 9.6516 29.8148 8.93663 28.8665 8.37683C27.926 7.82226 26.7954 7.54183 25.4594 7.54131C24.4325 7.54131 23.5041 7.70642 22.669 8.03245ZM27.6981 10.5186C28.2765 11.1339 28.6019 12.0303 28.7046 13.1813C28.7187 13.3737 28.516 13.5419 28.309 13.5419H22.3997C22.1849 13.5404 21.9706 13.3674 22.0041 13.1556C22.1404 12.0313 22.4814 11.1481 23.0525 10.5327C23.6461 9.89009 24.4283 9.56301 25.3447 9.56511C26.2992 9.56301 27.1024 9.88275 27.6981 10.5186Z" fill="url(#paint0_radial_5665_162177)"/>
-<path d="M9.55225 14.4529C9.55225 20.2266 14.2293 24.9058 20.0003 24.9058C25.7707 24.9058 30.4483 20.2266 30.4483 14.4529C30.4483 8.67927 25.7707 3.99952 20.0003 3.99952C14.2293 3.99952 9.55225 8.67927 9.55225 14.4529Z" fill="url(#paint1_linear_5665_162177)"/>
-<path d="M10.3298 13.4696C10.1752 14.9929 10.3822 16.4715 10.8815 17.8186C12.7309 13.5236 17.3828 13.4225 20.945 14.6778C25.227 15.5605 30.1162 15.3587 29.4183 12.166C28.6193 8.47382 25.3407 5.22086 20.9827 4.77794C20.65 4.74387 20.3199 4.7271 19.9925 4.7271C15.0708 4.7271 10.8375 8.46754 10.3298 13.4696Z" fill="url(#paint2_linear_5665_162177)"/>
-<path d="M20.5691 9.43485C20.0017 10.0437 19.5679 10.7744 19.2695 11.6335C18.9712 12.4926 18.8208 13.4266 18.8208 14.4393C18.8224 16.5942 19.428 18.2673 20.6304 19.5043C21.8318 20.7372 23.5088 21.3604 25.7151 21.362C26.622 21.3625 27.4225 21.2487 28.1214 21.0291C29.0587 19.8718 29.754 18.5105 30.1301 17.0224C29.9908 17.0643 29.8745 17.1293 29.7385 17.2538C29.6026 17.3783 29.0661 17.882 28.7876 18.1255C28.5091 18.369 28.2032 18.5986 27.8676 18.8153C27.532 19.032 27.1784 19.1945 26.8127 19.2986C26.447 19.4026 26.0462 19.4529 25.5018 19.4532C24.9575 19.4535 24.3482 19.2894 23.7991 18.9629C23.25 18.6363 22.8089 18.1467 22.4953 17.5361C22.1818 16.9254 22.0193 16.2555 21.9884 15.5139C21.98 15.2659 22.1687 15.1181 22.2782 15.1181H29.0142C29.5727 15.1186 30.0463 15.0673 30.4356 14.9719C30.444 14.7994 30.4482 14.627 30.4482 14.4529C30.4482 12.0528 29.6398 9.84291 28.2807 8.07858C27.466 7.72214 26.5287 7.54183 25.4806 7.54157C24.4325 7.54131 23.5041 7.70642 22.669 8.03245C21.8328 8.35953 21.1365 8.82604 20.5691 9.43485ZM28.7046 13.1813C28.7187 13.3737 28.5159 13.5419 28.309 13.5419H22.3997C22.1849 13.5404 21.9706 13.3674 22.0041 13.1556C22.1404 12.0313 22.4814 11.1481 23.0638 10.5191C23.6461 9.89009 24.4283 9.56301 25.3638 9.56301C26.2992 9.56301 27.1024 9.88275 27.6981 10.5186C28.2765 11.1339 28.6019 12.0303 28.7046 13.1813Z" fill="white"/>
+<path d="M22.669 8.03231C21.8328 8.35939 21.1365 8.82589 20.5696 9.43392C20.0017 10.0435 19.5679 10.7742 19.2703 11.6328C18.9712 12.4924 18.8208 13.4265 18.8208 14.4392C18.8224 16.594 19.428 18.2671 20.6304 19.5042C21.8318 20.737 23.5088 21.3602 25.7151 21.3618C26.6555 21.3623 27.4844 21.2407 28.2016 21.0043C29.5135 20.542 30.9899 19.2332 31.2414 17.9988C31.4054 17.1916 30.9113 17.0165 30.6447 16.9798C30.5933 16.9746 30.5409 16.9709 30.4854 16.9709C30.1815 16.9709 29.9405 17.0689 29.787 17.2089C29.6026 17.3782 29.0661 17.8819 28.79 18.1235C28.5091 18.3688 28.2032 18.5984 27.8715 18.8128C27.532 19.0319 27.1784 19.1944 26.8132 19.2982C26.447 19.4025 26.0462 19.4528 25.6129 19.4528C24.9575 19.4533 24.3482 19.2893 23.8017 18.9632C23.25 18.6362 22.8089 18.1466 22.4846 17.5124C22.1818 16.9253 22.0193 16.2554 21.9884 15.5137C21.98 15.2658 22.1687 15.118 22.3877 15.118H29.0142C29.908 15.1185 30.5855 14.988 31.0444 14.7505C31.4525 14.5393 31.6846 14.0717 31.6883 13.2231C31.6883 12.3111 31.4557 11.4168 30.9836 10.5294C30.5152 9.65145 29.8148 8.93649 28.8665 8.37669C27.926 7.82212 26.7954 7.54169 25.4594 7.54117C24.4325 7.54117 23.5041 7.70628 22.669 8.03231ZM27.6981 10.5184C28.2765 11.1338 28.6019 12.0301 28.7046 13.1812C28.7187 13.3735 28.516 13.5418 28.309 13.5418H22.3997C22.1849 13.5402 21.9706 13.3673 22.0041 13.1555C22.1404 12.0312 22.4814 11.1479 23.0525 10.5326C23.6461 9.88995 24.4283 9.56287 25.3447 9.56497C26.2992 9.56287 27.1024 9.88261 27.6981 10.5184Z" fill="url(#paint0_radial_1422_17165)"/>
+<path d="M9.55225 14.4529C9.55225 20.2265 14.2293 24.9058 20.0003 24.9058C25.7707 24.9058 30.4483 20.2265 30.4483 14.4529C30.4483 8.67919 25.7707 3.99945 20.0003 3.99945C14.2293 3.99945 9.55225 8.67919 9.55225 14.4529Z" fill="url(#paint1_linear_1422_17165)"/>
+<path d="M10.3298 13.4696C10.1752 14.9928 10.3822 16.4715 10.8815 17.8186C12.7309 13.5236 17.3828 13.4224 20.945 14.6778C25.227 15.5605 30.1162 15.3587 29.4183 12.166C28.6193 8.47379 25.3407 5.22083 20.9827 4.77791C20.65 4.74384 20.3199 4.72707 19.9925 4.72707C15.0708 4.72707 10.8375 8.46751 10.3298 13.4696Z" fill="url(#paint2_linear_1422_17165)"/>
+<path d="M20.5691 9.43471C20.0017 10.0435 19.5679 10.7742 19.2695 11.6333C18.9712 12.4924 18.8208 13.4265 18.8208 14.4392C18.8224 16.594 19.428 18.2671 20.6304 19.5042C21.8318 20.737 23.5088 21.3602 25.7151 21.3618C26.622 21.3623 27.4225 21.2486 28.1214 21.029C29.0587 19.8716 29.754 18.5104 30.1301 17.0223C29.9908 17.0642 29.8745 17.1292 29.7385 17.2537C29.6026 17.3782 29.0661 17.8819 28.7876 18.1254C28.5091 18.3688 28.2032 18.5984 27.8676 18.8152C27.532 19.0319 27.1784 19.1944 26.8127 19.2984C26.447 19.4025 26.0462 19.4528 25.5018 19.4531C24.9575 19.4533 24.3482 19.2893 23.7991 18.9627C23.25 18.6362 22.8089 18.1466 22.4953 17.5359C22.1818 16.9253 22.0193 16.2554 21.9884 15.5137C21.98 15.2658 22.1687 15.118 22.2782 15.118H29.0142C29.5727 15.1185 30.0463 15.0671 30.4356 14.9717C30.444 14.7993 30.4482 14.6268 30.4482 14.4528C30.4482 12.0527 29.6398 9.84277 28.2807 8.07843C27.466 7.722 26.5287 7.54169 25.4806 7.54143C24.4325 7.54117 23.5041 7.70628 22.669 8.03231C21.8328 8.35939 21.1365 8.82589 20.5691 9.43471ZM28.7046 13.1812C28.7187 13.3735 28.5159 13.5418 28.309 13.5418H22.3997C22.1849 13.5402 21.9706 13.3673 22.0041 13.1555C22.1404 12.0312 22.4814 11.1479 23.0638 10.5189C23.6461 9.88995 24.4283 9.56287 25.3638 9.56287C26.2992 9.56287 27.1024 9.88261 27.6981 10.5184C28.2765 11.1338 28.6019 12.0301 28.7046 13.1812Z" fill="white"/>
 <path d="M2.8978 32.0667C2.8978 31.6169 2.83127 31.292 2.69767 31.0917C2.52949 30.8417 2.24081 30.7169 1.83058 30.7169C1.42035 30.7169 1.13376 30.8417 0.970824 31.0917C0.837225 31.292 0.770687 31.6169 0.770687 32.0667V33.4085H1.83058C2.24081 33.4085 2.52949 33.2864 2.69767 33.0416C2.83127 32.8361 2.8978 32.5112 2.8978 32.0667ZM3.66849 32.0667C3.66849 33.5317 3.05603 34.264 1.83058 34.264H0.770687V36H0V32.0677C0 30.5969 0.609843 29.861 1.83058 29.861C3.05603 29.861 3.66849 30.5964 3.66849 32.0667Z" fill="#18397A"/>
-<path d="M7.09432 32.0666C7.09432 31.6169 7.02831 31.2919 6.89576 31.0917C6.73387 30.8417 6.44886 30.7169 6.04177 30.7169C5.63468 30.7169 5.34757 30.8417 5.18044 31.0917C5.04842 31.2919 4.98188 31.6169 4.98188 32.0666C4.98188 32.5111 5.04842 32.8361 5.18044 33.0416C5.34757 33.2864 5.63468 33.4085 6.04177 33.4085C6.44886 33.4085 6.73387 33.2864 6.89576 33.0416C7.02831 32.8419 7.09432 32.5169 7.09432 32.0666ZM7.58367 29.0218L7.23526 29.494L6.00509 28.7964L4.77441 29.494L4.426 29.0218L6.00509 28.1249L7.58367 29.0218ZM7.87235 32.0666C7.87235 33.5317 7.26198 34.264 6.04177 34.264C4.81632 34.264 4.20386 33.5317 4.20386 32.0666C4.20386 30.5964 4.81632 29.861 6.04177 29.861C7.26198 29.861 7.87235 30.5964 7.87235 32.0666Z" fill="#18397A"/>
-<path d="M10.4652 34.2641C9.15065 34.2641 8.49365 33.7321 8.49365 32.6691V28.1246H9.26434V32.6764C9.26434 32.9034 9.3335 33.0732 9.47182 33.1838C9.65467 33.3332 9.98579 33.4081 10.4652 33.4081V34.2641Z" fill="#18397A"/>
-<path d="M13.4328 31.1398C13.2955 30.8138 12.987 30.5905 12.5752 30.5905C12.1634 30.5905 11.8459 30.8138 11.7086 31.1398C11.6227 31.3369 11.6059 31.4659 11.597 31.7321H13.5528C13.5444 31.4659 13.5187 31.3369 13.4328 31.1398ZM11.597 32.3412C11.597 33.0876 11.992 33.5599 12.7035 33.5599C13.1929 33.5599 13.4501 33.4226 13.7587 33.1133L14.3161 33.637C13.8703 34.0835 13.4501 34.3152 12.6867 34.3152C11.597 34.3152 10.731 33.7402 10.731 32.0839C10.731 30.6765 11.4597 29.8609 12.5752 29.8609C13.7414 29.8609 14.4194 30.7189 14.4194 31.9549V32.3412H11.597Z" fill="#18397A"/>
+<path d="M7.09432 32.0666C7.09432 31.6169 7.02831 31.2919 6.89576 31.0917C6.73387 30.8416 6.44886 30.7169 6.04177 30.7169C5.63468 30.7169 5.34757 30.8416 5.18044 31.0917C5.04842 31.2919 4.98188 31.6169 4.98188 32.0666C4.98188 32.5111 5.04842 32.8361 5.18044 33.0416C5.34757 33.2863 5.63468 33.4085 6.04177 33.4085C6.44886 33.4085 6.73387 33.2863 6.89576 33.0416C7.02831 32.8419 7.09432 32.5169 7.09432 32.0666ZM7.58367 29.0217L7.23526 29.494L6.00509 28.7963L4.77441 29.494L4.426 29.0217L6.00509 28.1249L7.58367 29.0217ZM7.87235 32.0666C7.87235 33.5317 7.26198 34.2639 6.04177 34.2639C4.81632 34.2639 4.20386 33.5317 4.20386 32.0666C4.20386 30.5963 4.81632 29.8609 6.04177 29.8609C7.26198 29.8609 7.87235 30.5963 7.87235 32.0666Z" fill="#18397A"/>
+<path d="M10.4652 34.2642C9.15065 34.2642 8.49365 33.7321 8.49365 32.6691V28.1246H9.26434V32.6765C9.26434 32.9034 9.3335 33.0733 9.47182 33.1839C9.65467 33.3332 9.98579 33.4082 10.4652 33.4082V34.2642Z" fill="#18397A"/>
+<path d="M13.4328 31.1398C13.2955 30.8138 12.987 30.5905 12.5752 30.5905C12.1634 30.5905 11.8459 30.8138 11.7086 31.1398C11.6227 31.3369 11.6059 31.4658 11.597 31.7321H13.5528C13.5444 31.4658 13.5187 31.3369 13.4328 31.1398ZM11.597 32.3412C11.597 33.0876 11.992 33.5599 12.7035 33.5599C13.1929 33.5599 13.4501 33.4225 13.7587 33.1133L14.3161 33.6369C13.8703 34.0835 13.4501 34.3152 12.6867 34.3152C11.597 34.3152 10.731 33.7402 10.731 32.0838C10.731 30.6764 11.4597 29.8608 12.5752 29.8608C13.7414 29.8608 14.4194 30.7189 14.4194 31.9549V32.3412H11.597Z" fill="#18397A"/>
 <path d="M2.8978 32.0667C2.8978 31.6169 2.83127 31.292 2.69767 31.0917C2.52949 30.8417 2.24081 30.7169 1.83058 30.7169C1.42035 30.7169 1.13376 30.8417 0.970824 31.0917C0.837225 31.292 0.770687 31.6169 0.770687 32.0667V33.4085H1.83058C2.24081 33.4085 2.52949 33.2864 2.69767 33.0416C2.83127 32.8361 2.8978 32.5112 2.8978 32.0667ZM3.66849 32.0667C3.66849 33.5317 3.05603 34.264 1.83058 34.264H0.770687V36H0V32.0677C0 30.5969 0.609843 29.861 1.83058 29.861C3.05603 29.861 3.66849 30.5964 3.66849 32.0667Z" fill="#18397A"/>
-<path d="M7.09432 32.0666C7.09432 31.6169 7.02831 31.2919 6.89576 31.0917C6.73387 30.8417 6.44886 30.7169 6.04177 30.7169C5.63468 30.7169 5.34757 30.8417 5.18044 31.0917C5.04842 31.2919 4.98188 31.6169 4.98188 32.0666C4.98188 32.5111 5.04842 32.8361 5.18044 33.0416C5.34757 33.2864 5.63468 33.4085 6.04177 33.4085C6.44886 33.4085 6.73387 33.2864 6.89576 33.0416C7.02831 32.8419 7.09432 32.5169 7.09432 32.0666ZM7.58367 29.0218L7.23526 29.494L6.00509 28.7964L4.77441 29.494L4.426 29.0218L6.00509 28.1249L7.58367 29.0218ZM7.87235 32.0666C7.87235 33.5317 7.26198 34.264 6.04177 34.264C4.81632 34.264 4.20386 33.5317 4.20386 32.0666C4.20386 30.5964 4.81632 29.861 6.04177 29.861C7.26198 29.861 7.87235 30.5964 7.87235 32.0666Z" fill="#18397A"/>
-<path d="M10.4652 34.2641C9.15065 34.2641 8.49365 33.7321 8.49365 32.6691V28.1246H9.26434V32.6764C9.26434 32.9034 9.3335 33.0732 9.47182 33.1838C9.65467 33.3332 9.98579 33.4081 10.4652 33.4081V34.2641Z" fill="#18397A"/>
-<path d="M13.4328 31.1398C13.2955 30.8138 12.987 30.5905 12.5752 30.5905C12.1634 30.5905 11.8459 30.8138 11.7086 31.1398C11.6227 31.3369 11.6059 31.4659 11.597 31.7321H13.5528C13.5444 31.4659 13.5187 31.3369 13.4328 31.1398ZM11.597 32.3412C11.597 33.0876 11.992 33.5599 12.7035 33.5599C13.1929 33.5599 13.4501 33.4226 13.7587 33.1133L14.3161 33.637C13.8703 34.0835 13.4501 34.3152 12.6867 34.3152C11.597 34.3152 10.731 33.7402 10.731 32.0839C10.731 30.6765 11.4597 29.8609 12.5752 29.8609C13.7414 29.8609 14.4194 30.7189 14.4194 31.9549V32.3412H11.597Z" fill="#18397A"/>
-<path d="M27.9413 34.2641H27.1706V32.0626C27.1706 31.6139 27.1035 31.29 26.9705 31.0908C26.8023 30.8413 26.5136 30.7165 26.1034 30.7165C25.6932 30.7165 25.4066 30.8413 25.2436 31.0908C25.11 31.29 25.0435 31.6139 25.0435 32.0626V34.2641H24.2728V32.0626C24.2728 31.6139 24.2063 31.29 24.0727 31.0908C23.9045 30.8413 23.6158 30.7165 23.2051 30.7165C22.7953 30.7165 22.5088 30.8413 22.3453 31.0908C22.2122 31.29 22.1457 31.6139 22.1457 32.0626V34.2641H21.375V32.0668C21.375 30.596 21.9848 29.8611 23.2051 29.8611C23.8579 29.8611 24.3414 30.0828 24.6579 30.5257C24.9696 30.0828 25.4511 29.8611 26.1034 29.8611C27.3283 29.8611 27.9413 30.596 27.9413 32.0668V34.2641Z" fill="#E31927"/>
+<path d="M7.09432 32.0666C7.09432 31.6169 7.02831 31.2919 6.89576 31.0917C6.73387 30.8416 6.44886 30.7169 6.04177 30.7169C5.63468 30.7169 5.34757 30.8416 5.18044 31.0917C5.04842 31.2919 4.98188 31.6169 4.98188 32.0666C4.98188 32.5111 5.04842 32.8361 5.18044 33.0416C5.34757 33.2863 5.63468 33.4085 6.04177 33.4085C6.44886 33.4085 6.73387 33.2863 6.89576 33.0416C7.02831 32.8419 7.09432 32.5169 7.09432 32.0666ZM7.58367 29.0217L7.23526 29.494L6.00509 28.7963L4.77441 29.494L4.426 29.0217L6.00509 28.1249L7.58367 29.0217ZM7.87235 32.0666C7.87235 33.5317 7.26198 34.2639 6.04177 34.2639C4.81632 34.2639 4.20386 33.5317 4.20386 32.0666C4.20386 30.5963 4.81632 29.8609 6.04177 29.8609C7.26198 29.8609 7.87235 30.5963 7.87235 32.0666Z" fill="#18397A"/>
+<path d="M10.4652 34.2642C9.15065 34.2642 8.49365 33.7321 8.49365 32.6691V28.1246H9.26434V32.6765C9.26434 32.9034 9.3335 33.0733 9.47182 33.1839C9.65467 33.3332 9.98579 33.4082 10.4652 33.4082V34.2642Z" fill="#18397A"/>
+<path d="M13.4328 31.1398C13.2955 30.8138 12.987 30.5905 12.5752 30.5905C12.1634 30.5905 11.8459 30.8138 11.7086 31.1398C11.6227 31.3369 11.6059 31.4658 11.597 31.7321H13.5528C13.5444 31.4658 13.5187 31.3369 13.4328 31.1398ZM11.597 32.3412C11.597 33.0876 11.992 33.5599 12.7035 33.5599C13.1929 33.5599 13.4501 33.4225 13.7587 33.1133L14.3161 33.6369C13.8703 34.0835 13.4501 34.3152 12.6867 34.3152C11.597 34.3152 10.731 33.7402 10.731 32.0838C10.731 30.6764 11.4597 29.8608 12.5752 29.8608C13.7414 29.8608 14.4194 30.7189 14.4194 31.9549V32.3412H11.597Z" fill="#18397A"/>
+<path d="M27.9413 34.2642H27.1706V32.0627C27.1706 31.614 27.1035 31.2901 26.9705 31.0909C26.8023 30.8414 26.5136 30.7166 26.1034 30.7166C25.6932 30.7166 25.4066 30.8414 25.2436 31.0909C25.11 31.2901 25.0435 31.614 25.0435 32.0627V34.2642H24.2728V32.0627C24.2728 31.614 24.2063 31.2901 24.0727 31.0909C23.9045 30.8414 23.6158 30.7166 23.2051 30.7166C22.7953 30.7166 22.5088 30.8414 22.3453 31.0909C22.2122 31.2901 22.1457 31.614 22.1457 32.0627V34.2642H21.375V32.0669C21.375 30.5961 21.9848 29.8612 23.2051 29.8612C23.8579 29.8612 24.3414 30.0829 24.6579 30.5258C24.9696 30.0829 25.4511 29.8612 26.1034 29.8612C27.3283 29.8612 27.9413 30.5961 27.9413 32.0669V34.2642Z" fill="#E31927"/>
 <path d="M31.4618 32.0667C31.4618 31.6169 31.3952 31.292 31.2616 31.0917C31.094 30.8417 30.8048 30.7169 30.3945 30.7169C29.9843 30.7169 29.6977 30.8417 29.5348 31.0917C29.4012 31.292 29.3346 31.6169 29.3346 32.0667V33.4085H30.3945C30.8048 33.4085 31.094 33.2864 31.2616 33.0416C31.3952 32.8361 31.4618 32.5112 31.4618 32.0667ZM32.233 32.0667C32.233 33.5317 31.62 34.264 30.3945 34.264H29.3346V36H28.564V32.0677C28.564 30.5969 29.1743 29.861 30.3945 29.861C31.62 29.861 32.233 30.5964 32.233 32.0667Z" fill="#E31927"/>
-<path d="M34.7676 34.2641C33.4531 34.2641 32.7961 33.7321 32.7961 32.6691V28.1246H33.5668V32.6764C33.5668 32.9034 33.636 33.0732 33.7748 33.1838C33.9571 33.3332 34.2883 33.4081 34.7676 33.4081V34.2641Z" fill="#E31927"/>
-<path d="M37.8878 32.0667C37.8878 31.6169 37.8213 31.2919 37.6877 31.0917C37.5248 30.8417 37.2382 30.7169 36.8279 30.7169C36.4177 30.7169 36.1311 30.8417 35.9682 31.0917C35.8346 31.2919 35.768 31.6169 35.768 32.0667C35.768 32.5169 35.8346 32.8419 35.9682 33.0416C36.1311 33.2864 36.4177 33.4085 36.8279 33.4085C37.2382 33.4085 37.5248 33.2864 37.6877 33.0416C37.8213 32.8419 37.8878 32.5169 37.8878 32.0667ZM38.6585 32.0667C38.6585 33.5317 38.0482 34.264 36.8279 34.264C35.6025 34.264 34.9895 33.5317 34.9895 32.0667C34.9895 30.5964 35.6025 29.861 36.8279 29.861C38.0482 29.861 38.6585 30.5964 38.6585 32.0667Z" fill="#E31927"/>
-<path d="M39.2292 29.8612H39.9999V34.2642H39.2292V29.8612ZM39.9999 28.9806H39.2292V28.1247H39.9999V28.9806Z" fill="#E31927"/>
-<path d="M19.7712 31.1398C19.6339 30.8138 19.3253 30.5905 18.9135 30.5905C18.5017 30.5905 18.1842 30.8138 18.047 31.1398C17.961 31.3369 17.9443 31.4659 17.9354 31.7321H19.8912C19.8828 31.4659 19.8571 31.3369 19.7712 31.1398ZM17.9354 32.3412C17.9354 33.0876 18.3299 33.5599 19.0419 33.5599C19.5312 33.5599 19.7885 33.4226 20.0971 33.1133L20.655 33.637C20.2087 34.0835 19.7885 34.3152 19.0251 34.3152C17.9354 34.3152 17.0693 33.7402 17.0693 32.0839C17.0693 30.6765 17.7981 29.8609 18.9135 29.8609C20.0798 29.8609 20.7577 30.7189 20.7577 31.9549V32.3412H17.9354Z" fill="#E31927"/>
-<path d="M27.9413 34.2641H27.1706V32.0626C27.1706 31.6139 27.1035 31.29 26.9705 31.0908C26.8023 30.8413 26.5136 30.7165 26.1034 30.7165C25.6932 30.7165 25.4066 30.8413 25.2436 31.0908C25.11 31.29 25.0435 31.6139 25.0435 32.0626V34.2641H24.2728V32.0626C24.2728 31.6139 24.2063 31.29 24.0727 31.0908C23.9045 30.8413 23.6158 30.7165 23.2051 30.7165C22.7953 30.7165 22.5088 30.8413 22.3453 31.0908C22.2122 31.29 22.1457 31.6139 22.1457 32.0626V34.2641H21.375V32.0668C21.375 30.596 21.9848 29.8611 23.2051 29.8611C23.8579 29.8611 24.3414 30.0828 24.6579 30.5257C24.9696 30.0828 25.4511 29.8611 26.1034 29.8611C27.3283 29.8611 27.9413 30.596 27.9413 32.0668V34.2641Z" fill="#E31927"/>
+<path d="M34.7676 34.2642C33.4531 34.2642 32.7961 33.7321 32.7961 32.6691V28.1246H33.5668V32.6765C33.5668 32.9034 33.636 33.0733 33.7748 33.1839C33.9571 33.3332 34.2883 33.4082 34.7676 33.4082V34.2642Z" fill="#E31927"/>
+<path d="M37.8878 32.0666C37.8878 31.6169 37.8213 31.2919 37.6877 31.0917C37.5248 30.8416 37.2382 30.7169 36.8279 30.7169C36.4177 30.7169 36.1311 30.8416 35.9682 31.0917C35.8346 31.2919 35.768 31.6169 35.768 32.0666C35.768 32.5169 35.8346 32.8419 35.9682 33.0416C36.1311 33.2864 36.4177 33.4085 36.8279 33.4085C37.2382 33.4085 37.5248 33.2864 37.6877 33.0416C37.8213 32.8419 37.8878 32.5169 37.8878 32.0666ZM38.6585 32.0666C38.6585 33.5317 38.0482 34.2639 36.8279 34.2639C35.6025 34.2639 34.9895 33.5317 34.9895 32.0666C34.9895 30.5963 35.6025 29.8609 36.8279 29.8609C38.0482 29.8609 38.6585 30.5963 38.6585 32.0666Z" fill="#E31927"/>
+<path d="M39.2292 29.8612H39.9999V34.2642H39.2292V29.8612ZM39.9999 28.9806H39.2292V28.1246H39.9999V28.9806Z" fill="#E31927"/>
+<path d="M19.7712 31.1398C19.6339 30.8138 19.3253 30.5905 18.9135 30.5905C18.5017 30.5905 18.1842 30.8138 18.047 31.1398C17.961 31.3369 17.9443 31.4658 17.9354 31.7321H19.8912C19.8828 31.4658 19.8571 31.3369 19.7712 31.1398ZM17.9354 32.3412C17.9354 33.0876 18.3299 33.5599 19.0419 33.5599C19.5312 33.5599 19.7885 33.4225 20.0971 33.1133L20.655 33.6369C20.2087 34.0835 19.7885 34.3152 19.0251 34.3152C17.9354 34.3152 17.0693 33.7402 17.0693 32.0838C17.0693 30.6764 17.7981 29.8608 18.9135 29.8608C20.0798 29.8608 20.7577 30.7189 20.7577 31.9549V32.3412H17.9354Z" fill="#E31927"/>
+<path d="M27.9413 34.2642H27.1706V32.0627C27.1706 31.614 27.1035 31.2901 26.9705 31.0909C26.8023 30.8414 26.5136 30.7166 26.1034 30.7166C25.6932 30.7166 25.4066 30.8414 25.2436 31.0909C25.11 31.2901 25.0435 31.614 25.0435 32.0627V34.2642H24.2728V32.0627C24.2728 31.614 24.2063 31.2901 24.0727 31.0909C23.9045 30.8414 23.6158 30.7166 23.2051 30.7166C22.7953 30.7166 22.5088 30.8414 22.3453 31.0909C22.2122 31.2901 22.1457 31.614 22.1457 32.0627V34.2642H21.375V32.0669C21.375 30.5961 21.9848 29.8612 23.2051 29.8612C23.8579 29.8612 24.3414 30.0829 24.6579 30.5258C24.9696 30.0829 25.4511 29.8612 26.1034 29.8612C27.3283 29.8612 27.9413 30.5961 27.9413 32.0669V34.2642Z" fill="#E31927"/>
 <path d="M31.4618 32.0667C31.4618 31.6169 31.3952 31.292 31.2616 31.0917C31.094 30.8417 30.8048 30.7169 30.3945 30.7169C29.9843 30.7169 29.6977 30.8417 29.5348 31.0917C29.4012 31.292 29.3346 31.6169 29.3346 32.0667V33.4085H30.3945C30.8048 33.4085 31.094 33.2864 31.2616 33.0416C31.3952 32.8361 31.4618 32.5112 31.4618 32.0667ZM32.233 32.0667C32.233 33.5317 31.62 34.264 30.3945 34.264H29.3346V36H28.564V32.0677C28.564 30.5969 29.1743 29.861 30.3945 29.861C31.62 29.861 32.233 30.5964 32.233 32.0667Z" fill="#E31927"/>
-<path d="M34.7676 34.2641C33.4531 34.2641 32.7961 33.7321 32.7961 32.6691V28.1246H33.5668V32.6764C33.5668 32.9034 33.636 33.0732 33.7748 33.1838C33.9571 33.3332 34.2883 33.4081 34.7676 33.4081V34.2641Z" fill="#E31927"/>
-<path d="M37.8878 32.0667C37.8878 31.6169 37.8213 31.2919 37.6877 31.0917C37.5248 30.8417 37.2382 30.7169 36.8279 30.7169C36.4177 30.7169 36.1311 30.8417 35.9682 31.0917C35.8346 31.2919 35.768 31.6169 35.768 32.0667C35.768 32.5169 35.8346 32.8419 35.9682 33.0416C36.1311 33.2864 36.4177 33.4085 36.8279 33.4085C37.2382 33.4085 37.5248 33.2864 37.6877 33.0416C37.8213 32.8419 37.8878 32.5169 37.8878 32.0667ZM38.6585 32.0667C38.6585 33.5317 38.0482 34.264 36.8279 34.264C35.6025 34.264 34.9895 33.5317 34.9895 32.0667C34.9895 30.5964 35.6025 29.861 36.8279 29.861C38.0482 29.861 38.6585 30.5964 38.6585 32.0667Z" fill="#E31927"/>
-<path d="M39.2292 29.8612H39.9999V34.2642H39.2292V29.8612ZM39.9999 28.9806H39.2292V28.1247H39.9999V28.9806Z" fill="#E31927"/>
-<path d="M19.7712 31.1398C19.6339 30.8138 19.3253 30.5905 18.9135 30.5905C18.5017 30.5905 18.1842 30.8138 18.047 31.1398C17.961 31.3369 17.9443 31.4659 17.9354 31.7321H19.8912C19.8828 31.4659 19.8571 31.3369 19.7712 31.1398ZM17.9354 32.3412C17.9354 33.0876 18.3299 33.5599 19.0419 33.5599C19.5312 33.5599 19.7885 33.4226 20.0971 33.1133L20.655 33.637C20.2087 34.0835 19.7885 34.3152 19.0251 34.3152C17.9354 34.3152 17.0693 33.7402 17.0693 32.0839C17.0693 30.6765 17.7981 29.8609 18.9135 29.8609C20.0798 29.8609 20.7577 30.7189 20.7577 31.9549V32.3412H17.9354Z" fill="#E31927"/>
+<path d="M34.7676 34.2642C33.4531 34.2642 32.7961 33.7321 32.7961 32.6691V28.1246H33.5668V32.6765C33.5668 32.9034 33.636 33.0733 33.7748 33.1839C33.9571 33.3332 34.2883 33.4082 34.7676 33.4082V34.2642Z" fill="#E31927"/>
+<path d="M37.8878 32.0666C37.8878 31.6169 37.8213 31.2919 37.6877 31.0917C37.5248 30.8416 37.2382 30.7169 36.8279 30.7169C36.4177 30.7169 36.1311 30.8416 35.9682 31.0917C35.8346 31.2919 35.768 31.6169 35.768 32.0666C35.768 32.5169 35.8346 32.8419 35.9682 33.0416C36.1311 33.2864 36.4177 33.4085 36.8279 33.4085C37.2382 33.4085 37.5248 33.2864 37.6877 33.0416C37.8213 32.8419 37.8878 32.5169 37.8878 32.0666ZM38.6585 32.0666C38.6585 33.5317 38.0482 34.2639 36.8279 34.2639C35.6025 34.2639 34.9895 33.5317 34.9895 32.0666C34.9895 30.5963 35.6025 29.8609 36.8279 29.8609C38.0482 29.8609 38.6585 30.5963 38.6585 32.0666Z" fill="#E31927"/>
+<path d="M39.2292 29.8612H39.9999V34.2642H39.2292V29.8612ZM39.9999 28.9806H39.2292V28.1246H39.9999V28.9806Z" fill="#E31927"/>
+<path d="M19.7712 31.1398C19.6339 30.8138 19.3253 30.5905 18.9135 30.5905C18.5017 30.5905 18.1842 30.8138 18.047 31.1398C17.961 31.3369 17.9443 31.4658 17.9354 31.7321H19.8912C19.8828 31.4658 19.8571 31.3369 19.7712 31.1398ZM17.9354 32.3412C17.9354 33.0876 18.3299 33.5599 19.0419 33.5599C19.5312 33.5599 19.7885 33.4225 20.0971 33.1133L20.655 33.6369C20.2087 34.0835 19.7885 34.3152 19.0251 34.3152C17.9354 34.3152 17.0693 33.7402 17.0693 32.0838C17.0693 30.6764 17.7981 29.8608 18.9135 29.8608C20.0798 29.8608 20.7577 30.7189 20.7577 31.9549V32.3412H17.9354Z" fill="#E31927"/>
 <defs>
-<radialGradient id="paint0_radial_5665_162177" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(22.9653 7.99225) scale(24.4575 24.4689)">
+<radialGradient id="paint0_radial_1422_17165" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(22.9653 7.99211) scale(24.4575 24.4689)">
 <stop stop-color="#E65D1B"/>
 <stop offset="0.0472274" stop-color="#E65D1B"/>
 <stop offset="0.350006" stop-color="#ED1C24"/>
 <stop offset="1" stop-color="#A61217"/>
 </radialGradient>
-<linearGradient id="paint1_linear_5665_162177" x1="20.0002" y1="4.00003" x2="20.0002" y2="24.9058" gradientUnits="userSpaceOnUse">
+<linearGradient id="paint1_linear_1422_17165" x1="20.0002" y1="3.99995" x2="20.0002" y2="24.9057" gradientUnits="userSpaceOnUse">
 <stop stop-color="#65CDEB"/>
 <stop offset="0.0548619" stop-color="#65CDEB"/>
 <stop offset="0.406586" stop-color="#164789"/>
 <stop offset="1" stop-color="#06172F"/>
 </linearGradient>
-<linearGradient id="paint2_linear_5665_162177" x1="20.7614" y1="4.75508" x2="19.3458" y2="18.6791" gradientUnits="userSpaceOnUse">
+<linearGradient id="paint2_linear_1422_17165" x1="20.7614" y1="4.75505" x2="19.3458" y2="18.6791" gradientUnits="userSpaceOnUse">
 <stop stop-color="#99DEF9"/>
 <stop offset="1" stop-color="#103568"/>
 </linearGradient>
 </defs>
-</svg>
+</svg>
\ No newline at end of file
-- 
GitLab


From a3777b21975cd554ebe7f035375c71dc382b920e Mon Sep 17 00:00:00 2001
From: "guilhem.carron" <gcarron@grandlyon.com>
Date: Wed, 16 Mar 2022 13:50:39 +0100
Subject: [PATCH 23/40] fix design

---
 .../structure-list-search.component.html      |  6 ++--
 .../structure-list-search.component.scss      | 28 ++++++++++++++++---
 2 files changed, 27 insertions(+), 7 deletions(-)

diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
index 1b04565d0..1ed3b63cb 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
@@ -1,5 +1,5 @@
 <div class="block">
-  <div class="content" fxLayout="row" fxLayoutAlign="start center">
+  <div class="content">
     <form
       class="inputSearch"
       [formGroup]="searchForm"
@@ -22,7 +22,7 @@
         <app-button [style]="buttonTypeEnum.searchIcon" [iconBtn]="'search'" [type]="'submit'"></app-button>
       </div>
     </form>
-    <div (clickOutside)="closeModal()">
+    <div (clickOutside)="closeModal()" class="btn-container">
       <div class="btnSection" fxLayout="row" fxLayoutAlign="space-between center" fxLayoutGap="4px">
         <button
           class="btn-filter isntPhoneContent"
@@ -132,7 +132,7 @@
           </label>
         </div>
         <app-button
-          class="isntPhoneContent"
+          class="isntPhoneContent last-button"
           [style]="buttonTypeEnum.Tertiary"
           [text]="'Plus de filtres'"
           fxLayout="row"
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss b/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
index fd6664ad7..26613327f 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
@@ -14,6 +14,8 @@
 }
 .content {
   margin-bottom: 0.5rem;
+  display: flex;
+  align-items: center;
 
   input {
     @include lato-regular-13;
@@ -51,7 +53,15 @@
     flex-direction: column !important;
   }
 }
+.btn-container {
+  width: 100%;
+  display: flex;
+}
 .btnSection {
+  width: 100%;
+  @media #{$large-phone} {
+    justify-content: center !important;
+  }
   button {
     background: $white;
     height: 36px;
@@ -97,6 +107,12 @@
       width: 7px;
     }
   }
+  .btn-filter {
+    height: 40px;
+    span {
+      line-height: 110%;
+    }
+  }
   .containCheckedFilters {
     border-color: $primary-color;
   }
@@ -115,12 +131,14 @@
     @media #{$large-phone} {
       width: max-content;
     }
+
     &.checked {
       border-color: $primary-color;
-    }
-    &:hover {
       background: $primary-color-light;
     }
+    &:hover:not(.checked) {
+      background: $grey-8;
+    }
     label {
       cursor: pointer;
       @media #{$large-phone} {
@@ -134,7 +152,7 @@
       min-width: 20px;
       height: 20px;
       border: solid 1px $grey-4;
-      background: transparent;
+      background: white;
       margin-left: 0;
       margin-right: 5px;
       transition: all 300ms ease;
@@ -159,7 +177,9 @@
     }
   }
 }
-
+.last-button {
+  margin-left: auto;
+}
 .footerSearchSection {
   margin: 8px 0px 8px 0px;
   height: 40px;
-- 
GitLab


From af63704b66209085dc3bbc0f5e35858e83ccd2e8 Mon Sep 17 00:00:00 2001
From: "guilhem.carron" <gcarron@grandlyon.com>
Date: Wed, 16 Mar 2022 14:49:03 +0100
Subject: [PATCH 24/40] clean files + edit css

---
 proxy.conf.json                               |  2 +-
 .../modal-filter/modal-filter.component.scss  | 20 +++++--------------
 .../structure-list-search.component.html      | 19 +++++++++---------
 .../structure-list-search.component.scss      | 16 +++++++--------
 .../structure-list-search.component.ts        |  1 -
 .../models/structureCounter.model.ts          |  8 --------
 .../structure-list/services/search.service.ts |  1 -
 .../structure-list.component.html             |  2 +-
 .../structure-list.component.ts               |  2 ++
 src/assets/scss/_breakpoint.scss              |  2 ++
 10 files changed, 28 insertions(+), 45 deletions(-)
 delete mode 100644 src/app/structure-list/models/structureCounter.model.ts

diff --git a/proxy.conf.json b/proxy.conf.json
index 0e6818fdb..9f8b1d711 100644
--- a/proxy.conf.json
+++ b/proxy.conf.json
@@ -1,6 +1,6 @@
 {
   "/api/*": {
-    "target": "http://localhost:3001",
+    "target": "http://localhost:3000",
     "secure": false,
     "changeOrigin": true,
     "logLevel": "debug"
diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.scss b/src/app/structure-list/components/modal-filter/modal-filter.component.scss
index 7935bd575..eefd84dd3 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.scss
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.scss
@@ -7,27 +7,17 @@
 @import '../../../../assets/scss/z-index';
 
 .modalaccompaniment {
-  margin-left: 0;
+  left: 205px;
 }
 .modaltraining {
-  @media #{$desktop} {
-    margin-left: 0;
-  }
-  margin-left: 170px;
+  left: 305px;
 }
 .modalpublic {
-  @media #{$desktop} {
-    margin-left: 0;
-  }
-  margin-left: 295px;
+  left: 405px;
 }
 .modalequipments {
-  @media #{$desktop} {
-    margin-left: 0;
-  }
-  margin-left: 405px;
+  left: 505px;
 }
-
 .maxModal .blockLigne {
   box-sizing: border-box;
   width: 360px;
@@ -47,7 +37,7 @@
   position: fixed;
   box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
   border-radius: 8px;
-  margin-top: 3.5px;
+  margin-top: 25px;
   @media #{$large-phone} {
     height: 100%;
     max-height: auto;
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
index 1ed3b63cb..f73769ce6 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
@@ -139,18 +139,19 @@
           fxLayoutAlign="space-between center"
           (action)="openModal(TypeModal.moreFilters)"
         ></app-button>
-      </div>
-      <div *ngIf="modalTypeOpened">
-        <app-modal-filter
-          [modalType]="modalTypeOpened"
-          [categories]="getModalCategory()"
-          [modules]="checkedModulesFilter"
-          (searchEvent)="fetchResults($event)"
-          (closeEvent)="closeModal()"
-        ></app-modal-filter>
+        <div *ngIf="modalTypeOpened">
+          <app-modal-filter
+            [modalType]="modalTypeOpened"
+            [categories]="getModalCategory()"
+            [modules]="checkedModulesFilter"
+            (searchEvent)="fetchResults($event)"
+            (closeEvent)="closeModal()"
+          ></app-modal-filter>
+        </div>
       </div>
     </div>
   </div>
+
   <div *ngIf="checkedModulesFilter.length" fxLayout="row wrap" fxLayoutGap="4px" class="filterTags isntPhoneContent">
     <div class="title">Filtres :</div>
     <app-button
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss b/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
index 26613327f..c9cc66216 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
@@ -8,7 +8,7 @@
 .block {
   padding: 0 0.5rem;
   border-bottom: solid 1px $grey-4;
-  @media #{$large-phone} {
+  @media #{$large-tablet} {
     padding: 0 10px;
   }
 }
@@ -34,7 +34,7 @@
       width: 300px;
       min-width: 250px;
     }
-    @media #{$large-phone} {
+    @media #{$large-tablet} {
       width: 100%;
       margin-bottom: 0.5rem;
       margin-right: 0;
@@ -49,7 +49,7 @@
       }
     }
   }
-  @media #{$large-phone} {
+  @media #{$large-tablet} {
     flex-direction: column !important;
   }
 }
@@ -59,7 +59,7 @@
 }
 .btnSection {
   width: 100%;
-  @media #{$large-phone} {
+  @media #{$large-tablet} {
     justify-content: center !important;
   }
   button {
@@ -128,7 +128,7 @@
     transition: all 300ms ease;
     @include lato-regular-13;
     line-height: 110%;
-    @media #{$large-phone} {
+    @media #{$large-tablet} {
       width: max-content;
     }
 
@@ -141,9 +141,7 @@
     }
     label {
       cursor: pointer;
-      @media #{$large-phone} {
-        @include lato-regular-13;
-      }
+      @include lato-regular-13;
     }
     input[type='checkbox'] {
       appearance: none;
@@ -231,7 +229,7 @@ a {
     padding: 0;
   }
 }
-@media #{$large-phone} {
+@media #{$large-tablet} {
   .isntPhoneContent {
     display: none !important;
   }
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
index 5ce22033d..be9b8d5f0 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
@@ -1,6 +1,5 @@
 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
 import { FormBuilder, FormGroup } from '@angular/forms';
-import { forkJoin } from 'rxjs';
 import { TypeModal } from '../../enum/typeModal.enum';
 import { Category } from '../../models/category.model';
 import { Filter } from '../../models/filter.model';
diff --git a/src/app/structure-list/models/structureCounter.model.ts b/src/app/structure-list/models/structureCounter.model.ts
deleted file mode 100644
index 4121bb18c..000000000
--- a/src/app/structure-list/models/structureCounter.model.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-export class StructureCounter {
-  id: string;
-  count: number;
-
-  constructor(obj?: any) {
-    Object.assign(this, obj);
-  }
-}
diff --git a/src/app/structure-list/services/search.service.ts b/src/app/structure-list/services/search.service.ts
index 9507c7d61..eecab38da 100644
--- a/src/app/structure-list/services/search.service.ts
+++ b/src/app/structure-list/services/search.service.ts
@@ -4,7 +4,6 @@ import { Observable } from 'rxjs';
 import { map } from 'rxjs/operators';
 import { Category } from '../models/category.model';
 import { Module } from '../models/module.model';
-import { StructureCounter } from '../models/structureCounter.model';
 
 @Injectable({
   providedIn: 'root',
diff --git a/src/app/structure-list/structure-list.component.html b/src/app/structure-list/structure-list.component.html
index e4c9b66fe..96dc96e15 100644
--- a/src/app/structure-list/structure-list.component.html
+++ b/src/app/structure-list/structure-list.component.html
@@ -9,7 +9,7 @@
       tabindex="0"
       (action)="addStructure()"
       [text]="'Ajouter une structure'"
-      [style]="'secondary'"
+      [style]="buttonTypeEnum.Secondary"
     ></app-button>
   </div>
 
diff --git a/src/app/structure-list/structure-list.component.ts b/src/app/structure-list/structure-list.component.ts
index 01b682c32..bf5cef388 100644
--- a/src/app/structure-list/structure-list.component.ts
+++ b/src/app/structure-list/structure-list.component.ts
@@ -4,6 +4,7 @@ import { GeoJson } from '../map/models/geojson.model';
 import * as _ from 'lodash';
 import { ActivatedRoute, Router } from '@angular/router';
 import { StructureService } from '../services/structure.service';
+import { ButtonType } from '../shared/components/button/buttonType.enum';
 
 @Component({
   selector: 'app-structure-list',
@@ -18,6 +19,7 @@ export class StructureListComponent implements OnChanges {
   @Output() public selectedMarkerId: EventEmitter<string> = new EventEmitter<string>();
   @Output() public updatedStructure: EventEmitter<Structure> = new EventEmitter<Structure>();
 
+  public buttonTypeEnum = ButtonType;
   public showStructureDetails = false;
   public structure: Structure;
   public structuresListChunked: Structure[];
diff --git a/src/assets/scss/_breakpoint.scss b/src/assets/scss/_breakpoint.scss
index 2c0f772ee..ee69e345f 100644
--- a/src/assets/scss/_breakpoint.scss
+++ b/src/assets/scss/_breakpoint.scss
@@ -2,6 +2,7 @@ $width-small-phone: 320px;
 $width-phone: 576px;
 $width-large-phone: 600px;
 $width-tablet: 980px;
+$width-large-tablet: 1024px;
 $width-desktop: 1280px;
 $width-large-desktop: 1201px;
 $width-news-max: 830px;
@@ -11,5 +12,6 @@ $phone: 'only screen and (max-width : #{$width-phone})';
 $large-phone: 'only screen and (max-width : #{$width-large-phone})';
 $news-max: 'only screen and (max-width :  #{$width-news-max})';
 $tablet: 'only screen and (max-width : #{$width-tablet})';
+$large-tablet: 'only screen and (max-width : #{$width-large-tablet})';
 $desktop: 'only screen and (max-width : #{$width-desktop})';
 $large-desktop: 'only screen and (min-width : #{$width-large-desktop})';
-- 
GitLab


From 6336208ea29e2dd464dd7250dd9c780c6847c727 Mon Sep 17 00:00:00 2001
From: Marlene Simondant <msimondant@grandlyon.com>
Date: Wed, 16 Mar 2022 15:10:03 +0100
Subject: [PATCH 25/40] feat(carto): fix print width on structures without much
 content

---
 .../structure-detail-print.component.scss                       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/app/form/orientation-form/component/structure-detail-print/structure-detail-print.component.scss b/src/app/form/orientation-form/component/structure-detail-print/structure-detail-print.component.scss
index 6ef491c4a..cf8e3f232 100644
--- a/src/app/form/orientation-form/component/structure-detail-print/structure-detail-print.component.scss
+++ b/src/app/form/orientation-form/component/structure-detail-print/structure-detail-print.component.scss
@@ -11,7 +11,7 @@ a {
 }
 
 .structure-details-container {
-  max-width: 980px;
+  width: 980px;
   width: 64%;
   margin-top: 1%;
   float: right;
-- 
GitLab


From b211382718a3d2d3e4a72280d57a21f13d92ae5a Mon Sep 17 00:00:00 2001
From: Marlene Simondant <msimondant@grandlyon.com>
Date: Wed, 16 Mar 2022 15:27:56 +0100
Subject: [PATCH 26/40] fix : correct margins before and after access section

---
 .../structure-details/structure-details.component.html          | 1 -
 .../structure-details/structure-details.component.scss          | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

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 661ddeb77..79f3005aa 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
@@ -461,7 +461,6 @@
           fxLayout="column"
           class="structure-details-block"
           fxLayoutAlign="baseline baseline"
-          fxLayoutGap="20px"
         >
           <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
             <h2>Accès</h2>
diff --git a/src/app/structure-list/components/structure-details/structure-details.component.scss b/src/app/structure-list/components/structure-details/structure-details.component.scss
index 1aea80c00..295bba8b1 100644
--- a/src/app/structure-list/components/structure-details/structure-details.component.scss
+++ b/src/app/structure-list/components/structure-details/structure-details.component.scss
@@ -138,7 +138,7 @@ p,
   @include lato-regular-14;
   color: $grey-3;
   font-style: italic;
-  margin-top: 40px;
+  margin-top: 80px;
 }
 
 .bold-info {
-- 
GitLab


From 1c8009c9b1bd0b36c164811eb5d40c678fec7e0c Mon Sep 17 00:00:00 2001
From: Marlene Simondant <msimondant@grandlyon.com>
Date: Wed, 16 Mar 2022 18:19:42 +0100
Subject: [PATCH 27/40] feat(carto): workshops slider animation

---
 .../structure-details.component.html               | 14 +++++++-------
 .../structure-details.component.ts                 | 14 ++++++++++++++
 2 files changed, 21 insertions(+), 7 deletions(-)

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 79f3005aa..4ca9d47a8 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
@@ -309,7 +309,7 @@
                   </svg>
                 </div>
               </div>
-              <div *ngIf="showBaseSkills" class="detailsContainer">
+              <div *ngIf="showBaseSkills" class="detailsContainer" [@slideInOut]>
                 <div class="details" *ngFor="let skill of baseSkills">{{ skill.text }}</div>
               </div>
             </div>
@@ -334,7 +334,7 @@
                   </svg>
                 </div>
               </div>
-              <div *ngIf="showAccessRights" class="detailsContainer">
+              <div *ngIf="showAccessRights" class="detailsContainer" [@slideInOut]>
                 <div class="details" *ngFor="let rights of accessRights">{{ rights.text }}</div>
               </div>
             </div>
@@ -349,7 +349,7 @@
                 fxLayoutAlign=" center"
                 (click)="toggleParentingHelp()"
               >
-                <div class="titleCollapse">Accès aux droits</div>
+                <div class="titleCollapse">Aide à la parentalité</div>
                 <div class="logo">
                   <svg class="show" aria-hidden="true">
                     <use [attr.xlink:href]="'assets/form/sprite.svg#unfold'"></use>
@@ -359,7 +359,7 @@
                   </svg>
                 </div>
               </div>
-              <div *ngIf="showParentingHelp" class="detailsContainer">
+              <div *ngIf="showParentingHelp" class="detailsContainer" [@slideInOut]>
                 <div class="details" *ngFor="let help of parentingHelp">{{ help.text }}</div>
               </div>
             </div>
@@ -388,7 +388,7 @@
                   </svg>
                 </div>
               </div>
-              <div *ngIf="showSocialAndProfessional" class="detailsContainer">
+              <div *ngIf="showSocialAndProfessional" class="detailsContainer" [@slideInOut]>
                 <div class="details" *ngFor="let skill of socialAndProfessional">{{ skill.text }}</div>
               </div>
             </div>
@@ -403,7 +403,7 @@
                 fxLayoutAlign=" center"
                 (click)="toggleDigitalSecurity()"
               >
-                <div class="titleCollapse">Insertion sociale et professionnelle</div>
+                <div class="titleCollapse">Culture et sécurité numérique</div>
                 <div class="logo">
                   <svg class="show" aria-hidden="true">
                     <use [attr.xlink:href]="'assets/form/sprite.svg#unfold'"></use>
@@ -413,7 +413,7 @@
                   </svg>
                 </div>
               </div>
-              <div *ngIf="showDigitalSecurity" class="detailsContainer">
+              <div *ngIf="showDigitalSecurity" class="detailsContainer" [@slideInOut]>
                 <div class="details" *ngFor="let skill of digitalCultureSecurity">{{ skill.text }}</div>
               </div>
             </div>
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 6ad788578..d2f969303 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
@@ -16,10 +16,24 @@ import { User } from '../../../models/user.model';
 import { AuthService } from '../../../services/auth.service';
 import { PublicCategorie } from '../../enum/public.enum';
 import { Owner } from '../../../models/owner.model';
+import { style, state, animate, transition, trigger, group } from '@angular/animations';
 @Component({
   selector: 'app-structure-details',
   templateUrl: './structure-details.component.html',
   styleUrls: ['./structure-details.component.scss'],
+  animations: [
+    trigger('slideInOut', [
+      state('in', style({ height: '*', opacity: 0 })),
+      transition(':enter', [
+        style({ height: '0', opacity: 0 }),
+        group([animate(300, style({ height: '*' })), animate('400ms ease-in-out', style({ opacity: '1' }))]),
+      ]),
+      transition(':leave', [
+        style({ height: '*', opacity: 1 }),
+        group([animate(300, style({ height: 0 })), animate('200ms ease-in-out', style({ opacity: '0' }))]),
+      ]),
+    ]),
+  ],
 })
 export class StructureDetailsComponent implements OnInit {
   @Input() public structure: Structure;
-- 
GitLab


From 5b64208e693e401dcef1601538cffb3e587d41eb Mon Sep 17 00:00:00 2001
From: Marlene Simondant <msimondant@grandlyon.com>
Date: Thu, 17 Mar 2022 10:19:27 +0100
Subject: [PATCH 28/40] cleanup (remove unused structure-opening-status)

---
 src/app/app.module.ts                         |  2 --
 .../structure-details.component.ts            |  5 ++--
 .../structure-opening-status.component.html   | 18 -------------
 .../structure-opening-status.component.scss   | 22 ----------------
 ...structure-opening-status.component.spec.ts | 25 -------------------
 .../structure-opening-status.component.ts     | 21 ----------------
 6 files changed, 2 insertions(+), 91 deletions(-)
 delete mode 100644 src/app/structure-list/components/structure-opening-status/structure-opening-status.component.html
 delete mode 100644 src/app/structure-list/components/structure-opening-status/structure-opening-status.component.scss
 delete mode 100644 src/app/structure-list/components/structure-opening-status/structure-opening-status.component.spec.ts
 delete mode 100644 src/app/structure-list/components/structure-opening-status/structure-opening-status.component.ts

diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index 4496fc8d9..bc51a2808 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -17,7 +17,6 @@ import { StructureListComponent } from './structure-list/structure-list.componen
 import { CardComponent } from './structure-list/components/card/card.component';
 import { StructureListSearchComponent } from './structure-list/components/structure-list-search/structure-list-search.component';
 import { StructureDetailsComponent } from './structure-list/components/structure-details/structure-details.component';
-import { StructureOpeningStatusComponent } from './structure-list/components/structure-opening-status/structure-opening-status.component';
 import { ModalFilterComponent } from './structure-list/components/modal-filter/modal-filter.component';
 import { LegalNoticeComponent } from './legal-notice/legal-notice.component';
 import { PageComponent } from './page/page.component';
@@ -58,7 +57,6 @@ import { DataShareConsentComponent } from './shared/components/data-share-consen
     StructureListSearchComponent,
     ModalFilterComponent,
     StructureDetailsComponent,
-    StructureOpeningStatusComponent,
     LegalNoticeComponent,
     PageComponent,
     ContactComponent,
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 d2f969303..7395c6f49 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
@@ -23,14 +23,13 @@ import { style, state, animate, transition, trigger, group } from '@angular/anim
   styleUrls: ['./structure-details.component.scss'],
   animations: [
     trigger('slideInOut', [
-      state('in', style({ height: '*', opacity: 0 })),
       transition(':enter', [
         style({ height: '0', opacity: 0 }),
-        group([animate(300, style({ height: '*' })), animate('400ms ease-in-out', style({ opacity: '1' }))]),
+        group([animate(200, style({ height: '*' })), animate('200ms ease-in-out', style({ opacity: '1' }))]),
       ]),
       transition(':leave', [
         style({ height: '*', opacity: 1 }),
-        group([animate(300, style({ height: 0 })), animate('200ms ease-in-out', style({ opacity: '0' }))]),
+        group([animate(1, style({ height: 0 })), animate(1, style({ opacity: '0' }))]),
       ]),
     ]),
   ],
diff --git a/src/app/structure-list/components/structure-opening-status/structure-opening-status.component.html b/src/app/structure-list/components/structure-opening-status/structure-opening-status.component.html
deleted file mode 100644
index e4be2e113..000000000
--- a/src/app/structure-list/components/structure-opening-status/structure-opening-status.component.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<div
-  class="statusStructure"
-  *ngIf="structure"
-  [class]="isCalledByDetails ? 'details' : ''"
-  fxLayout="row"
-  fxLayoutAlign="start center"
->
-  <div>
-    <span *ngIf="structure.isOpen; else closed" class="ico-dot-available"></span>
-    <span class="text">{{ structure.openDisplay() }}</span>
-  </div>
-  <ng-template #closed>
-    <span *ngIf="structure.openedOn.day; else unkown" class="ico-dot-unavailable"></span>
-  </ng-template>
-  <ng-template #unkown>
-    <span class="ico-dot-unknown"></span>
-  </ng-template>
-</div>
diff --git a/src/app/structure-list/components/structure-opening-status/structure-opening-status.component.scss b/src/app/structure-list/components/structure-opening-status/structure-opening-status.component.scss
deleted file mode 100644
index f5f860501..000000000
--- a/src/app/structure-list/components/structure-opening-status/structure-opening-status.component.scss
+++ /dev/null
@@ -1,22 +0,0 @@
-@import '../../../../assets/scss/typography';
-@import '../../../../assets/scss/icons';
-
-.statusStructure {
-  span {
-    @include lato-regular-14;
-    margin-right: 8px;
-    display: inline-block;
-  }
-}
-.details {
-  span {
-    margin-right: 12px;
-    padding: 1px;
-    margin-left: 5px;
-    @include lato-regular-16;
-  }
-  .text {
-    margin-top: 9px;
-    margin-bottom: 9px;
-  }
-}
diff --git a/src/app/structure-list/components/structure-opening-status/structure-opening-status.component.spec.ts b/src/app/structure-list/components/structure-opening-status/structure-opening-status.component.spec.ts
deleted file mode 100644
index 717ca9da1..000000000
--- a/src/app/structure-list/components/structure-opening-status/structure-opening-status.component.spec.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { StructureOpeningStatusComponent } from './structure-opening-status.component';
-
-describe('StructureOpeningStatusComponent', () => {
-  let component: StructureOpeningStatusComponent;
-  let fixture: ComponentFixture<StructureOpeningStatusComponent>;
-
-  beforeEach(async () => {
-    await TestBed.configureTestingModule({
-      declarations: [ StructureOpeningStatusComponent ]
-    })
-    .compileComponents();
-  });
-
-  beforeEach(() => {
-    fixture = TestBed.createComponent(StructureOpeningStatusComponent);
-    component = fixture.componentInstance;
-    fixture.detectChanges();
-  });
-
-  it('should create', () => {
-    expect(component).toBeTruthy();
-  });
-});
diff --git a/src/app/structure-list/components/structure-opening-status/structure-opening-status.component.ts b/src/app/structure-list/components/structure-opening-status/structure-opening-status.component.ts
deleted file mode 100644
index 55dd76561..000000000
--- a/src/app/structure-list/components/structure-opening-status/structure-opening-status.component.ts
+++ /dev/null
@@ -1,21 +0,0 @@
-import { Component, Input, OnInit } from '@angular/core';
-import { Structure } from '../../../models/structure.model';
-import { StructureService } from '../../../services/structure.service';
-
-@Component({
-  selector: 'app-structure-opening-status',
-  templateUrl: './structure-opening-status.component.html',
-  styleUrls: ['./structure-opening-status.component.scss'],
-})
-export class StructureOpeningStatusComponent implements OnInit {
-  @Input() public structure: Structure;
-  @Input() public isCalledByDetails: boolean;
-
-  constructor(private structureService: StructureService) {}
-
-  ngOnInit(): void {
-    if (!this.structure.isOpen && !this.structure.openedOn.day) {
-      this.structure = this.structureService.updateOpeningStructure(this.structure);
-    }
-  }
-}
-- 
GitLab


From cb66eb8fd8408a771508ee4d71f5f18d853f7146 Mon Sep 17 00:00:00 2001
From: Marlene Simondant <msimondant@grandlyon.com>
Date: Thu, 17 Mar 2022 10:39:18 +0100
Subject: [PATCH 29/40] fix p margin when element is empty

---
 .../structure-details/structure-details.component.html     | 4 +++-
 .../structure-details/structure-details.component.scss     | 7 +++++--
 2 files changed, 8 insertions(+), 3 deletions(-)

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 4ca9d47a8..67f213c7e 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
@@ -431,6 +431,9 @@
             <h2>Matériel et wifi</h2>
           </div>
           <div fxLayout="column">
+            <div *ngIf="filterOnlyEquipments(structure.equipmentsAndServices).includes('wifiEnAccesLibre')">
+              {{ getEquipmentsLabel('wifiEnAccesLibre') }}
+            </div>
             <p
               *ngFor="let equipement of filterOnlyEquipments(structure.equipmentsAndServices)"
               class="no-margin-bottom"
@@ -450,7 +453,6 @@
               <span *ngIf="equipement == 'scanners' && structure.nbScanners"
                 >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbScanners }}</span
               >
-              <span *ngIf="equipement == 'wifiEnAccesLibre'">{{ getEquipmentsLabel(equipement) }}</span>
             </p>
           </div>
         </div>
diff --git a/src/app/structure-list/components/structure-details/structure-details.component.scss b/src/app/structure-list/components/structure-details/structure-details.component.scss
index 295bba8b1..c2d9bf20a 100644
--- a/src/app/structure-list/components/structure-details/structure-details.component.scss
+++ b/src/app/structure-list/components/structure-details/structure-details.component.scss
@@ -11,6 +11,10 @@ a {
   text-decoration: underline;
 }
 
+p:empty {
+  margin: 0;
+}
+
 .structure-details-container {
   border-right: solid 1px $grey-4;
   background-color: $white;
@@ -19,10 +23,9 @@ a {
   top: 0;
   left: 0;
   box-sizing: border-box;
-  max-width: 700px;
+  max-width: 600px;
   width: 100%;
   height: calc(100vh - #{$header-height} - #{$footer-height});
-  //padding: 0px 24px;
   overflow: auto;
   @media #{$tablet} {
     height: calc(100vh - #{$header-height});
-- 
GitLab


From e1090a98438ae055e7884dc4e7ecdc0a35ac0cd4 Mon Sep 17 00:00:00 2001
From: Marlene Simondant <msimondant@grandlyon.com>
Date: Thu, 17 Mar 2022 14:58:23 +0100
Subject: [PATCH 30/40] layout improvements

---
 .../structure-details.component.html          | 123 +++++++++---------
 .../structure-details.component.scss          |   5 +-
 2 files changed, 65 insertions(+), 63 deletions(-)

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 67f213c7e..4caa1e36c 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
@@ -277,7 +277,7 @@
           isBaseSkills() || isAccessRights() || isParentingHelp() || isSocialAndProfessional() || isDigitalSecurity()
         "
         fxLayout="column"
-        class="structure-details-block"
+        class="structure-details-block noSeparator"
         fxLayoutAlign="baseline baseline"
         fxLayoutGap="20px"
       >
@@ -419,75 +419,74 @@
             </div>
           </div>
         </div>
+      </div>
 
-        <!-- Matériel et wifi -->
-        <div
-          *ngIf="structure.hasEquipments()"
-          fxLayout="column"
-          class="structure-details-block"
-          fxLayoutAlign="baseline baseline"
-        >
-          <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-            <h2>Matériel et wifi</h2>
+      <!-- Matériel et wifi -->
+      <div
+        *ngIf="structure.hasEquipments()"
+        fxLayout="column"
+        class="structure-details-block"
+        fxLayoutAlign="baseline baseline"
+        fxLayoutGap="20px"
+      >
+        <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
+          <h2>Matériel et wifi</h2>
+        </div>
+        <div fxLayout="column">
+          <div *ngIf="filterOnlyEquipments(structure.equipmentsAndServices).includes('wifiEnAccesLibre')">
+            {{ getEquipmentsLabel('wifiEnAccesLibre') }}
           </div>
-          <div fxLayout="column">
-            <div *ngIf="filterOnlyEquipments(structure.equipmentsAndServices).includes('wifiEnAccesLibre')">
-              {{ getEquipmentsLabel('wifiEnAccesLibre') }}
-            </div>
-            <p
-              *ngFor="let equipement of filterOnlyEquipments(structure.equipmentsAndServices)"
-              class="no-margin-bottom"
+          <p *ngFor="let equipement of filterOnlyEquipments(structure.equipmentsAndServices)" class="no-margin-bottom">
+            <span *ngIf="equipement == 'ordinateurs' && structure.nbComputers"
+              >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbComputers }}</span
             >
-              <span *ngIf="equipement == 'ordinateurs' && structure.nbComputers"
-                >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbComputers }}</span
-              >
-              <span *ngIf="equipement == 'tablettes' && structure.nbTablets"
-                >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbTablets }}</span
-              >
-              <span *ngIf="equipement == 'bornesNumeriques' && structure.nbNumericTerminal">
-                {{ getEquipmentsLabel(equipement) }} : {{ structure.nbNumericTerminal }}</span
-              >
-              <span *ngIf="equipement == 'imprimantes' && structure.nbPrinters"
-                >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbPrinters }}</span
-              >
-              <span *ngIf="equipement == 'scanners' && structure.nbScanners"
-                >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbScanners }}</span
-              >
-            </p>
-          </div>
+            <span *ngIf="equipement == 'tablettes' && structure.nbTablets"
+              >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbTablets }}</span
+            >
+            <span *ngIf="equipement == 'bornesNumeriques' && structure.nbNumericTerminal">
+              {{ getEquipmentsLabel(equipement) }} : {{ structure.nbNumericTerminal }}</span
+            >
+            <span *ngIf="equipement == 'imprimantes' && structure.nbPrinters"
+              >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbPrinters }}</span
+            >
+            <span *ngIf="equipement == 'scanners' && structure.nbScanners"
+              >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbScanners }}</span
+            >
+          </p>
         </div>
+      </div>
 
-        <!-- Transport -->
-        <div
-          *ngIf="tclStopPoints.length"
-          fxLayout="column"
-          class="structure-details-block"
-          fxLayoutAlign="baseline baseline"
-        >
-          <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-            <h2>Accès</h2>
-          </div>
-          <div fxLayout="column wrap" fxLayoutGap="24px">
-            <div *ngFor="let tclStop of tclStopPoints | slice: 0:3">
-              {{ tclStop.name }}
-              <div fxLayout="row wrap" fxLayoutGap="24px">
-                <p *ngFor="let sub of tclStop.subLines">
-                  <app-svg-icon [type]="'tcl'" [icon]="sub" [iconClass]="'icon-75'"></app-svg-icon>
-                </p>
-                <p *ngFor="let tram of tclStop.tramLines">
-                  <app-svg-icon [type]="'tcl'" [icon]="tram" [iconClass]="'icon-75'"></app-svg-icon>
-                </p>
-                <p *ngFor="let bus of tclStop.busLines">
-                  <app-svg-icon [type]="'tcl'" [icon]="bus" [iconClass]="'icon-75'"></app-svg-icon>
-                </p>
-              </div>
+      <!-- Transport -->
+      <div
+        *ngIf="tclStopPoints.length"
+        fxLayout="column"
+        class="structure-details-block"
+        fxLayoutAlign="baseline baseline"
+        fxLayoutGap="20px"
+      >
+        <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
+          <h2>Accès</h2>
+        </div>
+        <div fxLayout="column wrap" fxLayoutGap="24px">
+          <div *ngFor="let tclStop of tclStopPoints | slice: 0:3">
+            {{ tclStop.name }}
+            <div fxLayout="row wrap" fxLayoutGap="24px">
+              <p *ngFor="let sub of tclStop.subLines">
+                <app-svg-icon [type]="'tcl'" [icon]="sub" [iconClass]="'icon-75'"></app-svg-icon>
+              </p>
+              <p *ngFor="let tram of tclStop.tramLines">
+                <app-svg-icon [type]="'tcl'" [icon]="tram" [iconClass]="'icon-75'"></app-svg-icon>
+              </p>
+              <p *ngFor="let bus of tclStop.busLines">
+                <app-svg-icon [type]="'tcl'" [icon]="bus" [iconClass]="'icon-75'"></app-svg-icon>
+              </p>
             </div>
           </div>
+        </div>
 
-          <div fxLayout="column" fxFlex="50%">
-            <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="13px">
-              <p class="updated">Mise à jour le {{ structure.updatedAt | date: 'mediumDate' }}</p>
-            </div>
+        <div fxLayout="column" fxFlex="50%">
+          <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="13px">
+            <p class="updated">Mise à jour le {{ structure.updatedAt | date: 'mediumDate' }}</p>
           </div>
         </div>
       </div>
diff --git a/src/app/structure-list/components/structure-details/structure-details.component.scss b/src/app/structure-list/components/structure-details/structure-details.component.scss
index c2d9bf20a..76eb6724f 100644
--- a/src/app/structure-list/components/structure-details/structure-details.component.scss
+++ b/src/app/structure-list/components/structure-details/structure-details.component.scss
@@ -141,7 +141,7 @@ p,
   @include lato-regular-14;
   color: $grey-3;
   font-style: italic;
-  margin-top: 80px;
+  margin-top: 64px;
 }
 
 .bold-info {
@@ -275,3 +275,6 @@ p,
     padding: 8px 16px;
   }
 }
+.noSeparator {
+  border-bottom: none !important;
+}
-- 
GitLab


From dc6ec81925ef9905fc8443b29c387745806cf5f7 Mon Sep 17 00:00:00 2001
From: Hugo SUBTIL <ext.sopra.husubtil@grandlyon.com>
Date: Thu, 17 Mar 2022 18:09:40 +0100
Subject: [PATCH 31/40] fix: categoryModel issue, now based on id

---
 src/app/structure-list/models/category.model.ts | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/app/structure-list/models/category.model.ts b/src/app/structure-list/models/category.model.ts
index 516a027ae..d269f41b8 100644
--- a/src/app/structure-list/models/category.model.ts
+++ b/src/app/structure-list/models/category.model.ts
@@ -18,22 +18,22 @@ export class Category {
   }
 
   public isBaseSkills(): boolean {
-    return this.name === 'Les compétences de base';
+    return this.id === 'baseSkills';
   }
 
   public isRigthtsAccess(): boolean {
-    return this.name === 'Accès aux droits';
+    return this.id === 'accessRight';
   }
 
   public isParentingHelp(): boolean {
-    return this.name === 'Aide à la parentalité';
+    return this.id === 'parentingHelp';
   }
 
   public isDigitalCultureSecurity(): boolean {
-    return this.name === 'Culture et sécurité numérique';
+    return this.id === 'digitalCultureSecurity';
   }
 
   public isSocialAndProfessional(): boolean {
-    return this.name === 'Insertion sociale et professionnelle';
+    return this.id === 'socialAndProfessional';
   }
 }
-- 
GitLab


From 4728497e10e5e3e71b341a572c4d87cd632a3632 Mon Sep 17 00:00:00 2001
From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com>
Date: Fri, 18 Mar 2022 15:57:09 +0100
Subject: [PATCH 32/40] feat: handle review

---
 src/app/app.component.html                    |  1 -
 src/app/carto/carto.component.html            |  3 +-
 src/app/carto/carto.component.ts              | 14 --------
 .../orientation-form.component.ts             |  4 +--
 src/app/form/structure-form/form.component.ts |  2 +-
 src/app/map/components/map.component.ts       | 17 ----------
 .../components/button/button.component.html   |  6 ----
 .../modal-filter/modal-filter.component.ts    | 11 +++---
 .../structure-details.component.html          | 10 +++---
 .../structure-details.component.scss          |  3 +-
 .../structure-details.component.ts            | 21 +++---------
 .../structure-list-search.component.scss      |  1 -
 .../structure-list-search.component.ts        | 34 +++++--------------
 .../structure-list/services/search.service.ts | 14 +-------
 14 files changed, 28 insertions(+), 113 deletions(-)

diff --git a/src/app/app.component.html b/src/app/app.component.html
index 2d9da54e0..a68e69023 100644
--- a/src/app/app.component.html
+++ b/src/app/app.component.html
@@ -4,6 +4,5 @@
     <router-outlet></router-outlet>
     <router-outlet name="print"></router-outlet>
     <router-outlet name="footer"></router-outlet>
-    <!-- <app-footer></app-footer> -->
   </div>
 </div>
diff --git a/src/app/carto/carto.component.html b/src/app/carto/carto.component.html
index 9fd0adf04..8742b5d3c 100644
--- a/src/app/carto/carto.component.html
+++ b/src/app/carto/carto.component.html
@@ -1,6 +1,6 @@
 <div class="content-container">
   <div class="hide-on-print">
-    <app-structure-list-search (searchEvent)="getStructures($event)" [locate]="locate"></app-structure-list-search>
+    <app-structure-list-search (searchEvent)="getStructures($event)"></app-structure-list-search>
   </div>
   <div class="panes-container" fxLayout="row">
     <app-structure-list
@@ -27,7 +27,6 @@
       [structures]="structures"
       [toogleToolTipId]="displayMarkerId"
       [selectedMarkerId]="selectedMarkerId"
-      [locate]="locate"
       (selectedStructure)="showDetailStructure($event)"
       [isMapPhone]="isMapPhone"
       [searchedValue]="searchedValue"
diff --git a/src/app/carto/carto.component.ts b/src/app/carto/carto.component.ts
index 71287f981..504278456 100644
--- a/src/app/carto/carto.component.ts
+++ b/src/app/carto/carto.component.ts
@@ -28,7 +28,6 @@ export class CartoComponent implements OnInit {
   public userLongitude: number;
   public isMapPhone = false;
   public searchedValue = null;
-  public locate = false; // Use to sync location between search and map
   public buttonTypeEnum = ButtonType;
   constructor(
     private structureService: StructureService,
@@ -209,17 +208,4 @@ export class CartoComponent implements OnInit {
   public switchMapList(): void {
     this.isMapPhone = !this.isMapPhone;
   }
-
-  public maplocationTrigger(event: any): void {
-    if (event && event !== this.locate) {
-      this.locate = !this.locate;
-    }
-    if (!event) {
-      this.locate = true;
-    }
-  }
-
-  public maplocationReset(): void {
-    this.locate = false;
-  }
 }
diff --git a/src/app/form/orientation-form/orientation-form.component.ts b/src/app/form/orientation-form/orientation-form.component.ts
index 31b2c36d0..8c619abdf 100644
--- a/src/app/form/orientation-form/orientation-form.component.ts
+++ b/src/app/form/orientation-form/orientation-form.component.ts
@@ -131,7 +131,7 @@ export class OrientationFormComponent implements OnInit {
       });
     });
 
-    const equipmentsCategs = await this.searchService.getCategoriesMoreFilters().toPromise();
+    const equipmentsCategs = await this.searchService.getCategoriesOthers().toPromise();
     equipmentsCategs.forEach((categ) => {
       if (categ.id == CategoryEnum.equipmentsAndServices) {
         categ.modules = this.filterOnlyEquipments(categ.modules);
@@ -141,7 +141,7 @@ export class OrientationFormComponent implements OnInit {
         });
       }
     });
-    const specificProfileCategs = await this.searchService.getCategoriesMoreFilters().toPromise();
+    const specificProfileCategs = await this.searchService.getCategoriesOthers().toPromise();
     specificProfileCategs.forEach((categ) => {
       switch (categ.id) {
         case CategoryEnum.publicsAccompaniment: {
diff --git a/src/app/form/structure-form/form.component.ts b/src/app/form/structure-form/form.component.ts
index 5de928c31..6db3e2eed 100644
--- a/src/app/form/structure-form/form.component.ts
+++ b/src/app/form/structure-form/form.component.ts
@@ -179,7 +179,7 @@ export class FormComponent implements OnInit {
     this.searchService.getCategoriesAccompaniment().subscribe((categories: Category[]) => {
       this.proceduresAccompaniment = categories[0];
     });
-    const equipmentsCategs = await this.searchService.getCategoriesMoreFilters().toPromise();
+    const equipmentsCategs = await this.searchService.getCategoriesOthers().toPromise();
     equipmentsCategs.forEach((categ) => {
       switch (categ.id) {
         case CategoryEnum.accessModality: {
diff --git a/src/app/map/components/map.component.ts b/src/app/map/components/map.component.ts
index b1c51787b..f2883a9a8 100644
--- a/src/app/map/components/map.component.ts
+++ b/src/app/map/components/map.component.ts
@@ -7,7 +7,6 @@ import * as _ from 'lodash';
 import { GeoJsonProperties } from '../models/geoJsonProperties.model';
 import { MarkerType } from './markerType.enum';
 import metropole from '../../../assets/geojson/metropole.json';
-import 'leaflet.locatecontrol';
 import { ZoomLevel } from './zoomLevel.enum';
 
 @Component({
@@ -22,11 +21,9 @@ export class MapComponent implements OnChanges {
   @Input() public toogleToolTipId: string;
   @Input() public selectedMarkerId: string;
   @Input() public isMapPhone: boolean;
-  @Input() public locate = false;
   @Input() public searchedValue: string | [number, number];
   @Output() public selectedStructure: EventEmitter<Structure> = new EventEmitter<Structure>();
   @Output() public onOrientationButtonClick: EventEmitter<Structure> = new EventEmitter<Structure>();
-  private lc; // Locate control
   private currentStructure: Structure;
 
   public map: Map;
@@ -63,14 +60,6 @@ export class MapComponent implements OnChanges {
         }, 0);
       }
     }
-    // Handle map locate from search bar
-    if (changes.locate && !changes.locate.isFirstChange()) {
-      if (changes.locate.currentValue) {
-        this.lc.start();
-      } else {
-        this.lc.stop();
-      }
-    }
     if (changes.structures) {
       this.handleStructurePosition(changes.structures.previousValue);
     }
@@ -211,12 +200,6 @@ export class MapComponent implements OnChanges {
           this.currentStructure = structure;
         });
     }
-
-    // Reset location if active to prevent graphical issue
-    if (this.locate) {
-      this.lc.stop();
-      this.lc.start();
-    }
   }
 
   /**
diff --git a/src/app/shared/components/button/button.component.html b/src/app/shared/components/button/button.component.html
index 8c2408d50..c09955f92 100644
--- a/src/app/shared/components/button/button.component.html
+++ b/src/app/shared/components/button/button.component.html
@@ -85,11 +85,6 @@
     </div>
   </button>
 </ng-container>
-<!-- <ng-container *ngIf="style === 'secondary'">
-  <button [disabled]="disabled" class="btn-secondary" type="{{ type }}" [ngClass]="{ disabled: disabled }">
-    <div class="text">{{ text }}</div>
-  </button>
-</ng-container> -->
 
 <ng-container *ngIf="style === buttonTypeEnum.Secondary">
   <button
@@ -191,7 +186,6 @@
 <ng-container *ngIf="style === buttonTypeEnum.TagCloudButton">
   <button class="btn-tags-cloud" fxLayout="row" (click)="doAction()">
     <span>{{ text }}</span>
-    <!-- <app-svg-icon [type]="'ico'" [icon]="'validate'" [iconColor]="'white'"></app-svg-icon> -->
     <app-svg-icon
       [type]="'ico'"
       [iconClass]="'icon-centered'"
diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.ts b/src/app/structure-list/components/modal-filter/modal-filter.component.ts
index c19c88bb3..f66820c5c 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.ts
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.ts
@@ -96,7 +96,7 @@ export class ModalFilterComponent implements OnInit {
     }
   }
 
-  public toggleShowCategory(categoryId: string) {
+  public toggleShowCategory(categoryId: string): void {
     if (this.toggledCategories.includes(categoryId)) {
       const index = this.toggledCategories.indexOf(categoryId);
       this.toggledCategories.splice(index);
@@ -106,13 +106,12 @@ export class ModalFilterComponent implements OnInit {
   }
 
   public getCategoryCheckboxStatus(c: Category): string {
-    const test = this.checkedModules.filter((m) => m.text === c.id);
-
-    if (test.length === c.modules.length) {
+    const selectedModule: Module[] = this.checkedModules.filter((m) => m.text === c.id);
+    if (selectedModule.length === c.modules.length) {
       return 'checked';
-    } else if (test.length === 0) {
+    } else if (selectedModule.length === 0) {
       return 'unchecked';
-    } else if (test.length && test.length > 0) {
+    } else if (selectedModule.length && selectedModule.length > 0) {
       return 'halfChecked';
     }
   }
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 4caa1e36c..74a33ab85 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
@@ -483,11 +483,11 @@
             </div>
           </div>
         </div>
-
-        <div fxLayout="column" fxFlex="50%">
-          <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="13px">
-            <p class="updated">Mise à jour le {{ structure.updatedAt | date: 'mediumDate' }}</p>
-          </div>
+      </div>
+      <!-- Mise à jour -->
+      <div fxLayout="column" class="structure-details-block" fxLayoutAlign="baseline baseline" fxLayoutGap="20px">
+        <div fxLayout="row" fxLayoutAlign="none flex-start" fxLayoutGap="13px">
+          <p class="updated">Mise à jour le {{ structure.updatedAt | date: 'mediumDate' }}</p>
         </div>
       </div>
     </div>
diff --git a/src/app/structure-list/components/structure-details/structure-details.component.scss b/src/app/structure-list/components/structure-details/structure-details.component.scss
index 356133107..0073fe8a2 100644
--- a/src/app/structure-list/components/structure-details/structure-details.component.scss
+++ b/src/app/structure-list/components/structure-details/structure-details.component.scss
@@ -53,7 +53,7 @@ p:empty {
   padding: 24px 0;
 }
 
-.structure-details-block:last-child {
+.structure-details-block:nth-last-child(-n + 2) {
   border-bottom: none !important;
 }
 
@@ -142,7 +142,6 @@ p,
   @include lato-regular-14;
   color: $grey-3;
   font-style: italic;
-  margin-top: 64px;
 }
 
 .bold-info {
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 7395c6f49..f433bc179 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
@@ -16,7 +16,8 @@ import { User } from '../../../models/user.model';
 import { AuthService } from '../../../services/auth.service';
 import { PublicCategorie } from '../../enum/public.enum';
 import { Owner } from '../../../models/owner.model';
-import { style, state, animate, transition, trigger, group } from '@angular/animations';
+import { style, animate, transition, trigger, group } from '@angular/animations';
+
 @Component({
   selector: 'app-structure-details',
   templateUrl: './structure-details.component.html',
@@ -186,7 +187,6 @@ export class StructureDetailsComponent implements OnInit {
       this.router.navigate(['create-structure'], { state: { newUser: this.structure } });
     }
   }
-
   public handleJoin(): void {
     if (this.userIsLoggedIn()) {
       this.toggleJoinModal();
@@ -209,7 +209,6 @@ export class StructureDetailsComponent implements OnInit {
     this.router.onSameUrlNavigation = 'reload';
     this.router.navigate(['./'], { relativeTo: this.route });
   }
-
   public claimStructure(shouldClaim: boolean): void {
     this.toggleClaimModal();
     if (shouldClaim) {
@@ -309,12 +308,14 @@ export class StructureDetailsComponent implements OnInit {
       this.tclStopPoints = res;
     });
   }
+
   public canDelete(): boolean {
     if (this.profileService.isAdmin()) {
       return true;
     }
     return false;
   }
+
   public filterOnlyEquipments(equipmentsAndServices: string[]): string[] {
     return equipmentsAndServices.filter((eqpt) =>
       ['ordinateurs', 'tablettes', 'bornesNumeriques', 'imprimantes', 'scanners', 'wifiEnAccesLibre'].includes(eqpt)
@@ -354,20 +355,6 @@ export class StructureDetailsComponent implements OnInit {
     return false;
   }
 
-  public multipleEquipement(): boolean {
-    if (
-      this.structure.nbComputers +
-        this.structure.nbNumericTerminal +
-        this.structure.nbPrinters +
-        this.structure.nbScanners +
-        this.structure.nbTablets >
-      1
-    ) {
-      return true;
-    }
-    return false;
-  }
-
   public toggleBaseSkills(): void {
     this.showBaseSkills = !this.showBaseSkills;
   }
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss b/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
index c9cc66216..923afb7ec 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.scss
@@ -70,7 +70,6 @@
     outline: none;
     border-radius: 50px;
     cursor: pointer;
-    // white-space: nowrap;
     text-align: left;
     transition: all 300ms ease;
     line-height: 110%;
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
index be9b8d5f0..574869be3 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
@@ -14,10 +14,8 @@ import { ButtonType } from '../../../shared/components/button/buttonType.enum';
   styleUrls: ['./structure-list-search.component.scss'],
 })
 export class StructureListSearchComponent implements OnInit {
-  @Input() locate = false;
   @Output() searchEvent = new EventEmitter();
-  @Output() locationReset: EventEmitter<boolean> = new EventEmitter<boolean>();
-  @Output() locationTrigger: EventEmitter<boolean> = new EventEmitter<boolean>();
+  public locate = false;
   // Show/hide form createStructure
   public addStructureFormModal = false;
   public buttonTypeEnum = ButtonType;
@@ -64,7 +62,6 @@ export class StructureListSearchComponent implements OnInit {
     // Will store the different categories
     this.getData();
     this.queryString = this.activatedRoute.snapshot.queryParamMap.get('search');
-    // this.categories = [];
     this.checkedModulesFilter = new Array();
     if (this.queryString) {
       const filters: Filter[] = [];
@@ -94,9 +91,6 @@ export class StructureListSearchComponent implements OnInit {
   public clearInput(): void {
     this.searchForm.reset();
     this.applyFilter(null);
-    if (this.locate) {
-      this.locationReset.emit(true);
-    }
   }
 
   // Sends an array containing all filters
@@ -236,29 +230,17 @@ export class StructureListSearchComponent implements OnInit {
         this.categoriesTraining.push(category);
       });
     });
-    this.searchService.getCategoriesPublic().subscribe((res) => {
+    this.searchService.getCategoriesOthers().subscribe((res) => {
       const categories: Category[] = res;
-      categories
-        .filter((cat) => cat.id === 'publicsAccompaniment')
-        .map((category) => {
+      categories.forEach((category) => {
+        if (category.id === 'publicsAccompaniment') {
           this.categoriesPublic.push(category);
-        });
-    });
-    this.searchService.getCategoriesEquipments().subscribe((res) => {
-      const categories: Category[] = res;
-      categories
-        .filter((cat) => cat.id === 'equipmentsAndServices')
-        .map((category) => {
+        } else if (category.id === 'equipmentsAndServices') {
           this.categoriesEquipment.push(category);
-        });
-    });
-    this.searchService.getCategoriesMoreFilters().subscribe((res) => {
-      const categories: Category[] = res;
-      categories
-        .filter((cat) => cat.id === 'labelsQualifications' || cat.id === 'accessModality')
-        .map((category) => {
+        } else if (category.id === 'labelsQualifications' || category.id === 'accessModality') {
           this.categoriesMoreFilters.push(category);
-        });
+        }
+      });
     });
   }
 
diff --git a/src/app/structure-list/services/search.service.ts b/src/app/structure-list/services/search.service.ts
index eecab38da..edd0de785 100644
--- a/src/app/structure-list/services/search.service.ts
+++ b/src/app/structure-list/services/search.service.ts
@@ -21,23 +21,11 @@ export class SearchService {
       .get('/api/categories/categoriesAccompagnement')
       .pipe(map((data: any[]) => data.map((item) => new Category(item))));
   }
-  public getCategoriesPublic(): Observable<Category[]> {
-    const res = this.http
-      .get('/api/categories/categoriesOthers')
-      .pipe(map((data: any[]) => data.map((item) => new Category(item))));
-    return res;
-  }
-  public getCategoriesEquipments(): Observable<Category[]> {
-    return this.http
-      .get('/api/categories/categoriesOthers')
-      .pipe(map((data: any[]) => data.map((item) => new Category(item))));
-  }
-  public getCategoriesMoreFilters(): Observable<Category[]> {
+  public getCategoriesOthers(): Observable<Category[]> {
     return this.http
       .get('/api/categories/categoriesOthers')
       .pipe(map((data: any[]) => data.map((item) => new Category(item))));
   }
-
   public getIndex(array: Module[], id: string, categ: string): number {
     return array.findIndex((m: Module) => m.id === id && m.text === categ);
   }
-- 
GitLab


From 2117c663ccae12738478d914acc22af4205048c9 Mon Sep 17 00:00:00 2001
From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com>
Date: Fri, 18 Mar 2022 16:20:53 +0100
Subject: [PATCH 33/40] feat: review - loading structure on scroll down

---
 src/app/structure-list/structure-list.component.html | 4 ++--
 src/app/structure-list/structure-list.component.scss | 4 ++++
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/src/app/structure-list/structure-list.component.html b/src/app/structure-list/structure-list.component.html
index 96dc96e15..a52eb78eb 100644
--- a/src/app/structure-list/structure-list.component.html
+++ b/src/app/structure-list/structure-list.component.html
@@ -1,4 +1,4 @@
-<div class="structureList-container">
+<div class="structureList-container" (scroll)="onScrollDown($event)">
   <div class="structureListHeader hide-on-print">
     <div class="nbStructuresLabel" [ngPlural]="structureList.length">
       <ng-template ngPluralCase="0">0 structure</ng-template>
@@ -13,7 +13,7 @@
     ></app-button>
   </div>
 
-  <div (scroll)="onScrollDown($event)" id="listCard" class="listCard" (mouseleave)="mouseLeave()">
+  <div id="listCard" class="listCard" (mouseleave)="mouseLeave()">
     <app-card
       *ngFor="let structure of structuresListChunked"
       [structure]="structure"
diff --git a/src/app/structure-list/structure-list.component.scss b/src/app/structure-list/structure-list.component.scss
index 86b868861..6211fb429 100644
--- a/src/app/structure-list/structure-list.component.scss
+++ b/src/app/structure-list/structure-list.component.scss
@@ -25,6 +25,10 @@
   }
 }
 
+.listCard > p {
+  margin-left: 1rem;
+}
+
 .structureListHeader {
   height: 50px;
   display: flex;
-- 
GitLab


From 7873d3789a9e9214df284dcb538fb70d72ffd1d6 Mon Sep 17 00:00:00 2001
From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com>
Date: Fri, 18 Mar 2022 16:34:17 +0100
Subject: [PATCH 34/40] feat: review - fix issue with single filter

---
 .../components/modal-filter/modal-filter.component.html       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/app/structure-list/components/modal-filter/modal-filter.component.html b/src/app/structure-list/components/modal-filter/modal-filter.component.html
index 23e76e090..bd2109266 100644
--- a/src/app/structure-list/components/modal-filter/modal-filter.component.html
+++ b/src/app/structure-list/components/modal-filter/modal-filter.component.html
@@ -15,8 +15,8 @@
                   <input
                     type="checkbox"
                     [checked]="searchService.getIndex(checkedModules, module.id, c.id) > -1"
-                    [value]="module.text"
-                    (change)="onCheckboxChange($event, c.id)"
+                    [value]="module.id"
+                    (change)="onCheckboxChange($event, c.id, module.text)"
                   />
                   <span class="customCheck customCheckPrimary"></span>
                   <div class="label">{{ module.text }}</div>
-- 
GitLab


From 721332239f86142d4f0e7bc31a82d196b24ae6e9 Mon Sep 17 00:00:00 2001
From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com>
Date: Mon, 21 Mar 2022 18:01:15 +0100
Subject: [PATCH 35/40] feat: review structure list and details

---
 .../structure-details.component.html          | 784 +++++++++---------
 .../structure-details.component.scss          | 409 ++++-----
 .../structure-list.component.html             |  15 +-
 .../structure-list.component.scss             |   8 +
 src/assets/scss/_color.scss                   |   1 +
 5 files changed, 606 insertions(+), 611 deletions(-)

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 74a33ab85..0c37ee066 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
@@ -1,494 +1,462 @@
 <div class="structure-details-container" *ngIf="structure && !isLoading">
   <!-- Header info -->
-  <div fxLayout="space-evenly wrap-reverse" class="sticky-title">
-    <div fxLayout="column" class="no-margin" fxLayoutAlign="center center">
-      <h2 class="bold">{{ structure.structureName }}</h2>
-    </div>
-    <div fxLayout="column" fxLayoutAlign="center center" class="ico-close">
+  <div class="structure-details-title" fxLayout="row" fxLayoutAlign="space-evenly center">
+    <h2 class="bold">{{ structure.structureName }}</h2>
+    <div class="ico-close">
       <div (click)="close()" class="ico-close-details"></div>
     </div>
   </div>
-
+  <!-- Content -->
   <div class="structure-details-content">
-    <div class="buttons hide-on-print" fxLayout="row" fxLayoutAlign="space-evenly">
+    <!-- Action buttons bar -->
+    <div class="structure-buttons hide-on-print" fxLayout="row" fxLayoutAlign="space-evenly">
       <!-- Voir le conseiller numérique - Hidden until functionnality is developed -->
-      <!--div class="clickableDiv" role="button" fxLayout="column">
+      <!--div class="clickableDiv" role="button">
         <app-svg-icon
           [type]="'ico'"
           [icon]="'advisor'"
           [iconClass]="'icon-32'"
           fxLayoutAlign="space-evenly"
         ></app-svg-icon>
-        <div class="iconTitle" fxLayfxLayoutAlignout="center center">Voir le conseiller numérique</div>
+        <div class="iconTitle">Voir le conseiller numérique</div>
       </div-->
       <!-- Voir le site -->
-      <div class="clickableDiv" role="button" *ngIf="structure.website" fxLayout="column">
+      <div class="clickableDiv" role="button" *ngIf="structure.website">
         <a href="{{ structure.website }}" target="_blank">
-          <app-svg-icon
-            [type]="'ico'"
-            [icon]="'web'"
-            [iconClass]="'icon-32'"
-            fxLayoutAlign="space-evenly"
-          ></app-svg-icon>
-          <div class="iconTitle" fxLayoutAlign="center center">Voir le site</div>
+          <app-svg-icon class="icon" [type]="'ico'" [icon]="'web'" [iconClass]="'icon-32'"></app-svg-icon>
+          <div class="iconTitle">Voir le site</div>
         </a>
       </div>
       <!-- Voir la plaquette - Hidden until functionnality is developed -->
-      <!--div class="clickableDiv" role="button" fxLayout="column">
+      <!--div class="clickableDiv" role="button" >
         <app-svg-icon [type]="'ico'" [icon]="'docs'" [iconClass]="'icon-32'"></app-svg-icon>
-        <div class="iconTitle" fxLayoutAlign="center center">Voir la plaquette</div>
+        <div class="iconTitle">Voir la plaquette</div>
       </div-->
       <!-- Imprimer -->
-      <div role="button" class="printButton" class="hide-on-print clickableDiv" (click)="print()">
-        <app-svg-icon [type]="'ico'" [icon]="'printStructure'" [iconClass]="'icon-32'"></app-svg-icon>
-        <div class="iconTitle" fxLayoutAlign="center center">Imprimer</div>
+      <div role="button" class="printButton clickableDiv" (click)="print()">
+        <app-svg-icon class="icon" [type]="'ico'" [icon]="'printStructure'" [iconClass]="'icon-32'"></app-svg-icon>
+        <div class="iconTitle">Imprimer</div>
       </div>
       <!-- Signaler une erreur -->
-      <div
-        class="clickableDiv"
-        role="button"
-        fxLayout="column"
-        fxLayoutAlign="space-between center"
-        (click)="displayModalError()"
-        tabindex="0"
-      >
-        <app-svg-icon [type]="'ico'" [icon]="'watch'" [iconClass]="'icon-32'"></app-svg-icon>
-        <div class="iconTitle" fxLayoutAlign="center center">Signaler une erreur</div>
+      <div class="clickableDiv" role="button" (click)="displayModalError()" tabindex="0">
+        <app-svg-icon class="icon" [type]="'ico'" [icon]="'watch'" [iconClass]="'icon-32'"></app-svg-icon>
+        <div class="iconTitle">Signaler une erreur</div>
       </div>
       <!-- Je travaille ici -->
-      <div class="clickableDiv" role="button" fxLayout="column" (click)="handleJoin()" tabindex="0">
-        <app-svg-icon [type]="'ico'" [icon]="'workhere'" [iconClass]="'icon-32'"></app-svg-icon>
-        <div class="iconTitle" fxLayoutAlign="center center">Je travaille ici</div>
+      <div class="clickableDiv" role="button" (click)="handleJoin()" tabindex="0">
+        <app-svg-icon class="icon" [type]="'ico'" [icon]="'workhere'" [iconClass]="'icon-32'"></app-svg-icon>
+        <div class="iconTitle">Je travaille ici</div>
       </div>
     </div>
 
-    <div class="structure-details-content">
-      <div fxLayout="row" class="structure-details-block" fxLayoutAlign="baseline baseline" fxLayoutGap="8px">
-        <div fxLayout="column" fxLayoutGap="10px" fxFlex="100%">
-          <!-- Informations-->
-          <div fxLayout="row" class="mobile-column">
-            <div fxLayout="column">
-              <h2>Informations</h2>
-              <div class="info-block">
-                <div *ngIf="structure.getLabelTypeStructure()" fxLayout="row">
-                  {{ structure.getLabelTypeStructure() }}
-                </div>
-                <div *ngIf="structure.structureName" fxLayout="row">
-                  {{ structure.structureName }}
-                </div>
-                <div *ngIf="structure.address" fxLayout="row">
-                  {{ structure.address.numero }} {{ structure.address.street }}, {{ structure.address.commune }}
-                </div>
-                <div *ngIf="structure.contactPhone" fxLayout="row">
-                  {{ structure.contactPhone | phone }}
-                </div>
-                <div *ngIf="structure.contactMail && structure.contactMail !== 'unknown@unknown.com'" fxLayout="row">
-                  <a href="mailto:{{ structure.contactMail }}">{{ structure.contactMail }}</a>
-                </div>
-              </div>
-
-              <!-- Social networks-->
-              <div *ngIf="structure.hasSocialNetwork()" fxLayout="row" fxLayoutAlign="none baseline" fxLayoutGap="13px">
-                <div fxLayout="row" fxLayoutAlign="none baseline" fxLayoutGap="4px">
-                  <a
-                    *ngIf="structure.facebook"
-                    target="_blank"
-                    class="custom-link"
-                    rel="noopener noreferrer"
-                    [href]="'http://' + structure.facebook"
-                  >
-                    <app-svg-icon
-                      [type]="'ico'"
-                      [icon]="'facebook'"
-                      [title]="'Facebook'"
-                      [iconClass]="'icon-30'"
-                    ></app-svg-icon
-                  ></a>
-                  <a
-                    *ngIf="structure.twitter"
-                    target="_blank"
-                    class="custom-link"
-                    rel="noopener noreferrer"
-                    [href]="'http://' + structure.twitter"
-                  >
-                    <app-svg-icon
-                      [type]="'ico'"
-                      [icon]="'twitter'"
-                      [title]="'Twitter'"
-                      [iconClass]="'icon-30'"
-                    ></app-svg-icon
-                  ></a>
-                  <a
-                    *ngIf="structure.instagram"
-                    target="_blank"
-                    class="custom-link"
-                    rel="noopener noreferrer"
-                    [href]="'http://' + structure.instagram"
-                  >
-                    <app-svg-icon
-                      [type]="'ico'"
-                      [icon]="'instagram'"
-                      [title]="'Instagram'"
-                      [iconClass]="'icon-30'"
-                    ></app-svg-icon
-                  ></a>
-                  <a
-                    *ngIf="structure.linkedin"
-                    target="_blank"
-                    class="custom-link"
-                    rel="noopener noreferrer"
-                    [href]="'http://' + structure.linkedin"
-                  >
-                    <app-svg-icon
-                      [type]="'ico'"
-                      [icon]="'linkedin'"
-                      [title]="'Linkedin'"
-                      [iconClass]="'icon-30'"
-                    ></app-svg-icon
-                  ></a>
-                </div>
-              </div>
+    <div class="structure-details-block">
+      <div fxLayout="column" fxLayoutGap="10px">
+        <!-- Informations-->
+        <div fxLayout="column">
+          <h2>Informations</h2>
+          <div class="info-block">
+            <div *ngIf="structure.getLabelTypeStructure()">
+              {{ structure.getLabelTypeStructure() }}
+            </div>
+            <div *ngIf="structure.structureName">
+              {{ structure.structureName }}
+            </div>
+            <div *ngIf="structure.address">
+              {{ structure.address.numero }} {{ structure.address.street }}, {{ structure.address.commune }}
+            </div>
+            <div *ngIf="structure.contactPhone">
+              {{ structure.contactPhone | phone }}
+            </div>
+            <div *ngIf="structure.contactMail && structure.contactMail !== 'unknown@unknown.com'">
+              <a href="mailto:{{ structure.contactMail }}">{{ structure.contactMail }}</a>
             </div>
           </div>
-
-          <div class="description">{{ structure.description }}</div>
-          <div class="info">
-            {{ structure.lockdownActivity }}
+          <!-- Social networks-->
+          <div *ngIf="structure.hasSocialNetwork()" fxLayout="row" fxLayoutAlign="none baseline" fxLayoutGap="4px">
+            <a
+              *ngIf="structure.facebook"
+              target="_blank"
+              class="custom-link"
+              rel="noopener noreferrer"
+              [href]="'http://' + structure.facebook"
+            >
+              <app-svg-icon
+                [type]="'ico'"
+                [icon]="'facebook'"
+                [title]="'Facebook'"
+                [iconClass]="'icon-30'"
+              ></app-svg-icon
+            ></a>
+            <a
+              *ngIf="structure.twitter"
+              target="_blank"
+              class="custom-link"
+              rel="noopener noreferrer"
+              [href]="'http://' + structure.twitter"
+            >
+              <app-svg-icon [type]="'ico'" [icon]="'twitter'" [title]="'Twitter'" [iconClass]="'icon-30'"></app-svg-icon
+            ></a>
+            <a
+              *ngIf="structure.instagram"
+              target="_blank"
+              class="custom-link"
+              rel="noopener noreferrer"
+              [href]="'http://' + structure.instagram"
+            >
+              <app-svg-icon
+                [type]="'ico'"
+                [icon]="'instagram'"
+                [title]="'Instagram'"
+                [iconClass]="'icon-30'"
+              ></app-svg-icon
+            ></a>
+            <a
+              *ngIf="structure.linkedin"
+              target="_blank"
+              class="custom-link"
+              rel="noopener noreferrer"
+              [href]="'http://' + structure.linkedin"
+            >
+              <app-svg-icon
+                [type]="'ico'"
+                [icon]="'linkedin'"
+                [title]="'Linkedin'"
+                [iconClass]="'icon-30'"
+              ></app-svg-icon
+            ></a>
           </div>
         </div>
       </div>
+      <div *ngIf="structure.description" class="description">{{ structure.description }}</div>
+      <div *ngIf="structure.lockdownActivity" class="info">
+        {{ structure.lockdownActivity }}
+      </div>
+    </div>
 
-      <div
-        *ngIf="structure.accessModality.length > 0 || structure.hours.hasData() || structure.remoteAccompaniment"
-        fxLayout="column"
-        class="structure-details-block"
-        fxLayoutAlign="baseline baseline"
-        fxLayoutGap="20px"
-      >
+    <div
+      *ngIf="structure.accessModality.length > 0 || structure.hours.hasData() || structure.remoteAccompaniment"
+      class="structure-details-block"
+      fxLayout="column"
+    >
+      <div class="hours-services-block">
         <!-- Opening Hours -->
-        <div fxLayout="row" class="w-100 mobile-column">
-          <div *ngIf="structure.hours.hasData()" fxFlex="50%">
-            <h2>Horaires d’ouverture</h2>
-            <div fxLayout="column" class="opening-hours">
-              <div *ngFor="let day of structure.hours | keyvalue: keepOriginalOrder" fxLayout="row">
-                <div *ngIf="day.value.open" fxLayout="row">
-                  <h4 class="day">{{ day.key | day }}</h4>
-                  <div class="opening-time" fxLayout="column" fxLayoutAlign="none flex-start">
-                    <div *ngFor="let timeRange of day.value.time; let isFirst = first" class="daily-opening-time">
-                      <p *ngIf="isFirst && timeRange.opening">
-                        {{ timeRange.formatOpeningDate() }} - {{ timeRange.formatClosingDate() }}
-                      </p>
-                      <p *ngIf="!isFirst && timeRange.opening">
-                        {{ timeRange.formatOpeningDate() }} - {{ timeRange.formatClosingDate() }}
-                      </p>
-                    </div>
+        <div *ngIf="structure.hours.hasData()" fxLayout="column">
+          <h2>Horaires d’ouverture</h2>
+          <div fxLayout="column" class="opening-hours">
+            <div *ngFor="let day of structure.hours | keyvalue: keepOriginalOrder">
+              <div *ngIf="day.value.open" class="opening-hour" fxLayout="row" fxLayoutAlign="flex-start flex-start">
+                <h4 class="day">{{ day.key | day }}</h4>
+                <div class="opening-time" fxLayout="column" fxLayoutAlign="none flex-start">
+                  <div *ngFor="let timeRange of day.value.time" class="daily-opening-time">
+                    <p *ngIf="timeRange.opening">
+                      {{ timeRange.formatOpeningDate() }} - {{ timeRange.formatClosingDate() }}
+                    </p>
                   </div>
                 </div>
               </div>
             </div>
           </div>
-
-          <!-- services -->
-          <div *ngIf="structure.accessModality.length > 0" fxFlex="50%">
-            <h2>Services</h2>
-            <div fxLayout="column" fxLayoutGap="10px" class="listItems">
-              <div fxLayout="column" fxLayoutGap="8px">
-                <div
-                  fxLayout="row"
-                  fxLayoutAlign="none flex-end"
-                  fxLayoutGap="8px"
-                  *ngFor="let acces of structure.accessModality"
-                >
-                  <p>{{ getAccessLabel(acces) }}</p>
-                </div>
-                <p *ngIf="structure.pmrAccess">Accessible aux personnes à mobilité réduite</p>
-              </div>
-              <div
-                *ngFor="let public of structure.publics"
-                fxLayout="row"
-                fxLayoutAlign="none flex-end"
-                fxLayoutGap="8px"
-              >
-                <p>{{ getPublicLabel(public) }}</p>
-              </div>
+        </div>
+        <!-- services -->
+        <div *ngIf="structure.accessModality.length > 0" fxLayout="column">
+          <h2>Services</h2>
+          <div fxLayout="column" fxLayoutGap="10px" class="services-block">
+            <div fxLayout="column" fxLayoutGap="8px">
               <div
-                *ngFor="let accompaniment of structure.publicsAccompaniment"
                 fxLayout="row"
                 fxLayoutAlign="none flex-end"
                 fxLayoutGap="8px"
+                *ngFor="let acces of structure.accessModality"
               >
-                <p>{{ accompaniment }}</p>
+                <p>{{ getAccessLabel(acces) }}</p>
               </div>
+              <p *ngIf="structure.pmrAccess">Accessible aux personnes à mobilité réduite</p>
+            </div>
+            <div
+              *ngFor="let public of structure.publics"
+              fxLayout="row"
+              fxLayoutAlign="none flex-end"
+              fxLayoutGap="8px"
+            >
+              <p>{{ getPublicLabel(public) }}</p>
+            </div>
+            <div
+              *ngFor="let accompaniment of structure.publicsAccompaniment"
+              fxLayout="row"
+              fxLayoutAlign="none flex-end"
+              fxLayoutGap="8px"
+            >
+              <p>{{ accompaniment }}</p>
             </div>
           </div>
         </div>
-        <div *ngIf="structure.exceptionalClosures" class="bold-info">
-          <p class="description">{{ structure.exceptionalClosures }}</p>
-        </div>
-        <div *ngIf="structure.remoteAccompaniment" class="bold-info">
-          <h3>Cette structure propose un accompagnement à distance.</h3>
-        </div>
       </div>
+      <div *ngIf="structure.exceptionalClosures" class="bold-info">
+        <p class="description">{{ structure.exceptionalClosures }}</p>
+      </div>
+      <div *ngIf="structure.remoteAccompaniment" class="bold-info">
+        <h3>Cette structure propose un accompagnement à distance.</h3>
+      </div>
+    </div>
 
-      <!-- Labellisation -->
-      <div
-        *ngIf="structure.labelsQualifications.length"
-        fxLayout="column"
-        class="structure-details-block"
-        fxLayoutAlign="baseline baseline"
-        fxLayoutGap="20px"
-      >
-        <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-          <h2>Labelisation</h2>
-        </div>
-        <div fxLayout="row wrap" fxLayoutGap="24px">
-          <div *ngFor="let labels of structure.labelsQualifications">
-            <app-logo-card [name]="labels"></app-logo-card>
-          </div>
+    <!-- Labellisation -->
+    <div
+      *ngIf="structure.labelsQualifications.length"
+      fxLayout="column"
+      class="structure-details-block"
+      fxLayoutAlign="baseline baseline"
+      fxLayoutGap="20px"
+    >
+      <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
+        <h2>Labelisation</h2>
+      </div>
+      <div fxLayout="row wrap" fxLayoutGap="24px">
+        <div *ngFor="let labels of structure.labelsQualifications">
+          <app-logo-card [name]="labels"></app-logo-card>
         </div>
       </div>
+    </div>
 
-      <!-- Aides numérique -->
-      <div
-        *ngIf="structure.proceduresAccompaniment.length || structure.otherDescription"
-        fxLayout="column"
-        class="structure-details-block"
-        fxLayoutAlign="baseline baseline"
-        fxLayoutGap="20px"
-      >
-        <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-          <h2>Aide numérique</h2>
-        </div>
-        <div fxLayout="column">
-          <div fxLayout="row wrap" fxLayoutGap="24px">
-            <div *ngFor="let accompagnement of structure.proceduresAccompaniment">
-              <app-logo-card *ngIf="accompagnement != 'autres'" [name]="accompagnement"></app-logo-card>
-            </div>
+    <!-- Aides numérique -->
+    <div
+      *ngIf="structure.proceduresAccompaniment.length || structure.otherDescription"
+      fxLayout="column"
+      class="structure-details-block"
+      fxLayoutAlign="baseline baseline"
+      fxLayoutGap="20px"
+    >
+      <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
+        <h2>Aide numérique</h2>
+      </div>
+      <div fxLayout="column">
+        <div fxLayout="row wrap" fxLayoutGap="24px">
+          <div *ngFor="let accompagnement of structure.proceduresAccompaniment">
+            <app-logo-card *ngIf="accompagnement != 'autres'" [name]="accompagnement"></app-logo-card>
           </div>
-          <p *ngIf="structure.otherDescription" fxLayout="column">
-            {{ structure.otherDescription }}
-          </p>
         </div>
+        <p *ngIf="structure.otherDescription" fxLayout="column">
+          {{ structure.otherDescription }}
+        </p>
       </div>
+    </div>
 
-      <!-- Formation -->
-      <div
-        *ngIf="
-          isBaseSkills() || isAccessRights() || isParentingHelp() || isSocialAndProfessional() || isDigitalSecurity()
-        "
-        fxLayout="column"
-        class="structure-details-block noSeparator"
-        fxLayoutAlign="baseline baseline"
-        fxLayoutGap="20px"
-      >
-        <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-          <h2>Formation</h2>
-        </div>
-        <div *ngIf="structure.freeWorkShop">
-          <span *ngIf="multipleWorkshop()" class="bold-info">L'accès à ces formations est gratuit</span>
-          <span *ngIf="!multipleWorkshop()" class="bold-info">L'accès à cette formation est gratuit</span>
-        </div>
-        <div class="formationDetails">
-          <!--Toggle BaseSkills-->
-          <div *ngIf="isBaseSkills()" class="collapse" [ngClass]="{ notCollapsed: !showBaseSkills }">
-            <div fxLayout="column">
-              <div
-                class="collapseHeader"
-                fxLayout="row"
-                fxLayoutGap="20px"
-                fxLayoutAlign=" center"
-                (click)="toggleBaseSkills()"
-              >
-                <div class="titleCollapse">Compétences de base</div>
-                <div class="logo">
-                  <svg class="show" aria-hidden="true">
-                    <use [attr.xlink:href]="'assets/form/sprite.svg#unfold'"></use>
-                  </svg>
-                  <svg class="hide" aria-hidden="true">
-                    <use [attr.xlink:href]="'assets/form/sprite.svg#fold'"></use>
-                  </svg>
-                </div>
-              </div>
-              <div *ngIf="showBaseSkills" class="detailsContainer" [@slideInOut]>
-                <div class="details" *ngFor="let skill of baseSkills">{{ skill.text }}</div>
+    <!-- Formation -->
+    <div
+      *ngIf="
+        isBaseSkills() || isAccessRights() || isParentingHelp() || isSocialAndProfessional() || isDigitalSecurity()
+      "
+      fxLayout="column"
+      class="structure-details-block noSeparator"
+      fxLayoutAlign="baseline baseline"
+      fxLayoutGap="20px"
+    >
+      <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
+        <h2>Formation</h2>
+      </div>
+      <div *ngIf="structure.freeWorkShop">
+        <span *ngIf="multipleWorkshop()" class="bold-info">L'accès à ces formations est gratuit</span>
+        <span *ngIf="!multipleWorkshop()" class="bold-info">L'accès à cette formation est gratuit</span>
+      </div>
+      <div class="formationDetails">
+        <!--Toggle BaseSkills-->
+        <div *ngIf="isBaseSkills()" class="collapse" [ngClass]="{ notCollapsed: !showBaseSkills }">
+          <div fxLayout="column">
+            <div
+              class="collapseHeader"
+              fxLayout="row"
+              fxLayoutGap="20px"
+              fxLayoutAlign=" center"
+              (click)="toggleBaseSkills()"
+            >
+              <div class="titleCollapse">Compétences de base</div>
+              <div class="logo">
+                <svg class="show" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#unfold'"></use>
+                </svg>
+                <svg class="hide" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#fold'"></use>
+                </svg>
               </div>
             </div>
+            <div *ngIf="showBaseSkills" class="detailsContainer" [@slideInOut]>
+              <div class="details" *ngFor="let skill of baseSkills">{{ skill.text }}</div>
+            </div>
           </div>
-          <!--Toggle accessRights-->
-          <div *ngIf="isAccessRights()" class="collapse" [ngClass]="{ notCollapsed: !showAccessRights }">
-            <div fxLayout="column">
-              <div
-                class="collapseHeader"
-                fxLayout="row"
-                fxLayoutGap="20px"
-                fxLayoutAlign=" center"
-                (click)="toggleAccessRights()"
-              >
-                <div class="titleCollapse">Accès aux droits</div>
-                <div class="logo">
-                  <svg class="show" aria-hidden="true">
-                    <use [attr.xlink:href]="'assets/form/sprite.svg#unfold'"></use>
-                  </svg>
-                  <svg class="hide" aria-hidden="true">
-                    <use [attr.xlink:href]="'assets/form/sprite.svg#fold'"></use>
-                  </svg>
-                </div>
-              </div>
-              <div *ngIf="showAccessRights" class="detailsContainer" [@slideInOut]>
-                <div class="details" *ngFor="let rights of accessRights">{{ rights.text }}</div>
+        </div>
+        <!--Toggle accessRights-->
+        <div *ngIf="isAccessRights()" class="collapse" [ngClass]="{ notCollapsed: !showAccessRights }">
+          <div fxLayout="column">
+            <div
+              class="collapseHeader"
+              fxLayout="row"
+              fxLayoutGap="20px"
+              fxLayoutAlign=" center"
+              (click)="toggleAccessRights()"
+            >
+              <div class="titleCollapse">Accès aux droits</div>
+              <div class="logo">
+                <svg class="show" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#unfold'"></use>
+                </svg>
+                <svg class="hide" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#fold'"></use>
+                </svg>
               </div>
             </div>
+            <div *ngIf="showAccessRights" class="detailsContainer" [@slideInOut]>
+              <div class="details" *ngFor="let rights of accessRights">{{ rights.text }}</div>
+            </div>
           </div>
-          <!--Toggle parentingHelp-->
-          <div *ngIf="isParentingHelp()" class="collapse" [ngClass]="{ notCollapsed: !showParentingHelp }">
-            <div fxLayout="column">
-              <div
-                class="collapseHeader"
-                fxLayout="row"
-                fxLayoutGap="20px"
-                fxLayoutAlign=" center"
-                (click)="toggleParentingHelp()"
-              >
-                <div class="titleCollapse">Aide à la parentalité</div>
-                <div class="logo">
-                  <svg class="show" aria-hidden="true">
-                    <use [attr.xlink:href]="'assets/form/sprite.svg#unfold'"></use>
-                  </svg>
-                  <svg class="hide" aria-hidden="true">
-                    <use [attr.xlink:href]="'assets/form/sprite.svg#fold'"></use>
-                  </svg>
-                </div>
-              </div>
-              <div *ngIf="showParentingHelp" class="detailsContainer" [@slideInOut]>
-                <div class="details" *ngFor="let help of parentingHelp">{{ help.text }}</div>
+        </div>
+        <!--Toggle parentingHelp-->
+        <div *ngIf="isParentingHelp()" class="collapse" [ngClass]="{ notCollapsed: !showParentingHelp }">
+          <div fxLayout="column">
+            <div
+              class="collapseHeader"
+              fxLayout="row"
+              fxLayoutGap="20px"
+              fxLayoutAlign=" center"
+              (click)="toggleParentingHelp()"
+            >
+              <div class="titleCollapse">Aide à la parentalité</div>
+              <div class="logo">
+                <svg class="show" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#unfold'"></use>
+                </svg>
+                <svg class="hide" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#fold'"></use>
+                </svg>
               </div>
             </div>
+            <div *ngIf="showParentingHelp" class="detailsContainer" [@slideInOut]>
+              <div class="details" *ngFor="let help of parentingHelp">{{ help.text }}</div>
+            </div>
           </div>
-          <!--Toggle socialAndProfessional-->
-          <div
-            *ngIf="isSocialAndProfessional()"
-            class="collapse"
-            [ngClass]="{ notCollapsed: !showSocialAndProfessional }"
-          >
-            <div fxLayout="column">
-              <div
-                class="collapseHeader"
-                fxLayout="row"
-                fxLayoutGap="20px"
-                fxLayoutAlign=" center"
-                (click)="toggleSocialAndProfessional()"
-              >
-                <div class="titleCollapse">Insertion sociale et professionnelle</div>
-                <div class="logo">
-                  <svg class="show" aria-hidden="true">
-                    <use [attr.xlink:href]="'assets/form/sprite.svg#unfold'"></use>
-                  </svg>
-                  <svg class="hide" aria-hidden="true">
-                    <use [attr.xlink:href]="'assets/form/sprite.svg#fold'"></use>
-                  </svg>
-                </div>
-              </div>
-              <div *ngIf="showSocialAndProfessional" class="detailsContainer" [@slideInOut]>
-                <div class="details" *ngFor="let skill of socialAndProfessional">{{ skill.text }}</div>
+        </div>
+        <!--Toggle socialAndProfessional-->
+        <div
+          *ngIf="isSocialAndProfessional()"
+          class="collapse"
+          [ngClass]="{ notCollapsed: !showSocialAndProfessional }"
+        >
+          <div fxLayout="column">
+            <div
+              class="collapseHeader"
+              fxLayout="row"
+              fxLayoutGap="20px"
+              fxLayoutAlign=" center"
+              (click)="toggleSocialAndProfessional()"
+            >
+              <div class="titleCollapse">Insertion sociale et professionnelle</div>
+              <div class="logo">
+                <svg class="show" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#unfold'"></use>
+                </svg>
+                <svg class="hide" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#fold'"></use>
+                </svg>
               </div>
             </div>
+            <div *ngIf="showSocialAndProfessional" class="detailsContainer" [@slideInOut]>
+              <div class="details" *ngFor="let skill of socialAndProfessional">{{ skill.text }}</div>
+            </div>
           </div>
-          <!--Toggle digitalSecurity-->
-          <div *ngIf="isDigitalSecurity()" class="collapse" [ngClass]="{ notCollapsed: !showDigitalSecurity }">
-            <div fxLayout="column">
-              <div
-                class="collapseHeader"
-                fxLayout="row"
-                fxLayoutGap="20px"
-                fxLayoutAlign=" center"
-                (click)="toggleDigitalSecurity()"
-              >
-                <div class="titleCollapse">Culture et sécurité numérique</div>
-                <div class="logo">
-                  <svg class="show" aria-hidden="true">
-                    <use [attr.xlink:href]="'assets/form/sprite.svg#unfold'"></use>
-                  </svg>
-                  <svg class="hide" aria-hidden="true">
-                    <use [attr.xlink:href]="'assets/form/sprite.svg#fold'"></use>
-                  </svg>
-                </div>
-              </div>
-              <div *ngIf="showDigitalSecurity" class="detailsContainer" [@slideInOut]>
-                <div class="details" *ngFor="let skill of digitalCultureSecurity">{{ skill.text }}</div>
+        </div>
+        <!--Toggle digitalSecurity-->
+        <div *ngIf="isDigitalSecurity()" class="collapse" [ngClass]="{ notCollapsed: !showDigitalSecurity }">
+          <div fxLayout="column">
+            <div
+              class="collapseHeader"
+              fxLayout="row"
+              fxLayoutGap="20px"
+              fxLayoutAlign=" center"
+              (click)="toggleDigitalSecurity()"
+            >
+              <div class="titleCollapse">Culture et sécurité numérique</div>
+              <div class="logo">
+                <svg class="show" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#unfold'"></use>
+                </svg>
+                <svg class="hide" aria-hidden="true">
+                  <use [attr.xlink:href]="'assets/form/sprite.svg#fold'"></use>
+                </svg>
               </div>
             </div>
+            <div *ngIf="showDigitalSecurity" class="detailsContainer" [@slideInOut]>
+              <div class="details" *ngFor="let skill of digitalCultureSecurity">{{ skill.text }}</div>
+            </div>
           </div>
         </div>
       </div>
+    </div>
 
-      <!-- Matériel et wifi -->
-      <div
-        *ngIf="structure.hasEquipments()"
-        fxLayout="column"
-        class="structure-details-block"
-        fxLayoutAlign="baseline baseline"
-        fxLayoutGap="20px"
-      >
-        <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-          <h2>Matériel et wifi</h2>
-        </div>
-        <div fxLayout="column">
-          <div *ngIf="filterOnlyEquipments(structure.equipmentsAndServices).includes('wifiEnAccesLibre')">
-            {{ getEquipmentsLabel('wifiEnAccesLibre') }}
-          </div>
-          <p *ngFor="let equipement of filterOnlyEquipments(structure.equipmentsAndServices)" class="no-margin-bottom">
-            <span *ngIf="equipement == 'ordinateurs' && structure.nbComputers"
-              >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbComputers }}</span
-            >
-            <span *ngIf="equipement == 'tablettes' && structure.nbTablets"
-              >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbTablets }}</span
-            >
-            <span *ngIf="equipement == 'bornesNumeriques' && structure.nbNumericTerminal">
-              {{ getEquipmentsLabel(equipement) }} : {{ structure.nbNumericTerminal }}</span
-            >
-            <span *ngIf="equipement == 'imprimantes' && structure.nbPrinters"
-              >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbPrinters }}</span
-            >
-            <span *ngIf="equipement == 'scanners' && structure.nbScanners"
-              >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbScanners }}</span
-            >
-          </p>
+    <!-- Matériel et wifi -->
+    <div
+      *ngIf="structure.hasEquipments()"
+      fxLayout="column"
+      class="structure-details-block"
+      fxLayoutAlign="baseline baseline"
+      fxLayoutGap="20px"
+    >
+      <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
+        <h2>Matériel et wifi</h2>
+      </div>
+      <div fxLayout="column">
+        <div *ngIf="filterOnlyEquipments(structure.equipmentsAndServices).includes('wifiEnAccesLibre')">
+          {{ getEquipmentsLabel('wifiEnAccesLibre') }}
         </div>
+        <p *ngFor="let equipement of filterOnlyEquipments(structure.equipmentsAndServices)" class="no-margin-bottom">
+          <span *ngIf="equipement == 'ordinateurs' && structure.nbComputers"
+            >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbComputers }}</span
+          >
+          <span *ngIf="equipement == 'tablettes' && structure.nbTablets"
+            >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbTablets }}</span
+          >
+          <span *ngIf="equipement == 'bornesNumeriques' && structure.nbNumericTerminal">
+            {{ getEquipmentsLabel(equipement) }} : {{ structure.nbNumericTerminal }}</span
+          >
+          <span *ngIf="equipement == 'imprimantes' && structure.nbPrinters"
+            >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbPrinters }}</span
+          >
+          <span *ngIf="equipement == 'scanners' && structure.nbScanners"
+            >{{ getEquipmentsLabel(equipement) }} : {{ structure.nbScanners }}</span
+          >
+        </p>
       </div>
+    </div>
 
-      <!-- Transport -->
-      <div
-        *ngIf="tclStopPoints.length"
-        fxLayout="column"
-        class="structure-details-block"
-        fxLayoutAlign="baseline baseline"
-        fxLayoutGap="20px"
-      >
-        <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-          <h2>Accès</h2>
-        </div>
-        <div fxLayout="column wrap" fxLayoutGap="24px">
-          <div *ngFor="let tclStop of tclStopPoints | slice: 0:3">
-            {{ tclStop.name }}
-            <div fxLayout="row wrap" fxLayoutGap="24px">
-              <p *ngFor="let sub of tclStop.subLines">
-                <app-svg-icon [type]="'tcl'" [icon]="sub" [iconClass]="'icon-75'"></app-svg-icon>
-              </p>
-              <p *ngFor="let tram of tclStop.tramLines">
-                <app-svg-icon [type]="'tcl'" [icon]="tram" [iconClass]="'icon-75'"></app-svg-icon>
-              </p>
-              <p *ngFor="let bus of tclStop.busLines">
-                <app-svg-icon [type]="'tcl'" [icon]="bus" [iconClass]="'icon-75'"></app-svg-icon>
-              </p>
-            </div>
+    <!-- Transport -->
+    <div
+      *ngIf="tclStopPoints.length"
+      fxLayout="column"
+      class="structure-details-block noSeparator"
+      fxLayoutAlign="baseline baseline"
+      fxLayoutGap="20px"
+    >
+      <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
+        <h2>Accès</h2>
+      </div>
+      <div fxLayout="column wrap" fxLayoutGap="24px">
+        <div *ngFor="let tclStop of tclStopPoints | slice: 0:3">
+          {{ tclStop.name }}
+          <div fxLayout="row wrap" fxLayoutGap="24px">
+            <p *ngFor="let sub of tclStop.subLines">
+              <app-svg-icon [type]="'tcl'" [icon]="sub" [iconClass]="'icon-75'"></app-svg-icon>
+            </p>
+            <p *ngFor="let tram of tclStop.tramLines">
+              <app-svg-icon [type]="'tcl'" [icon]="tram" [iconClass]="'icon-75'"></app-svg-icon>
+            </p>
+            <p *ngFor="let bus of tclStop.busLines">
+              <app-svg-icon [type]="'tcl'" [icon]="bus" [iconClass]="'icon-75'"></app-svg-icon>
+            </p>
           </div>
         </div>
       </div>
-      <!-- Mise à jour -->
-      <div fxLayout="column" class="structure-details-block" fxLayoutAlign="baseline baseline" fxLayoutGap="20px">
-        <div fxLayout="row" fxLayoutAlign="none flex-start" fxLayoutGap="13px">
-          <p class="updated">Mise à jour le {{ structure.updatedAt | date: 'mediumDate' }}</p>
-        </div>
+    </div>
+    <!-- Mise à jour -->
+    <div fxLayout="column" class="structure-details-block" fxLayoutAlign="baseline baseline" fxLayoutGap="20px">
+      <div fxLayout="row" fxLayoutAlign="none flex-start" fxLayoutGap="13px">
+        <p class="updated">Mise à jour le {{ structure.updatedAt | date: 'mediumDate' }}</p>
       </div>
     </div>
   </div>
diff --git a/src/app/structure-list/components/structure-details/structure-details.component.scss b/src/app/structure-list/components/structure-details/structure-details.component.scss
index 0073fe8a2..b5c88bb96 100644
--- a/src/app/structure-list/components/structure-details/structure-details.component.scss
+++ b/src/app/structure-list/components/structure-details/structure-details.component.scss
@@ -15,103 +15,240 @@ p:empty {
   margin: 0;
 }
 
+h2 {
+  @include lato-bold-14;
+  color: $grey-3;
+  text-transform: uppercase;
+}
+h3 {
+  @include lato-regular-16;
+}
+
 .structure-details-container {
-  border-right: solid 1px $grey-4;
+  position: relative;
+  height: 100%;
   background-color: $white;
-  z-index: $structure-details-z-index;
-  position: absolute;
-  top: 0;
-  left: 0;
-  box-sizing: border-box;
-  max-width: 600px;
-  width: 100%;
-  box-sizing: border-box;
-  height: calc(100vh - #{$header-height} - #{$footer-height});
-  overflow: auto;
-  @media #{$tablet} {
-    height: calc(100vh - #{$header-height});
-    .printButton {
-      display: none !important;
-    }
+  overflow: hidden;
+}
+
+.structure-details-title {
+  height: 65px;
+  border-bottom: 1px solid $grey-5;
+  padding: 2px 16px 2px 24px;
+  .ico-close {
+    margin-left: auto;
   }
-  .printButton {
-    margin-right: 75px;
+  h2 {
+    @media #{$large-phone} {
+      font-size: $font-size-medium;
+    }
   }
 }
 
 .structure-details-content {
-  padding: 0px calc(44px - 24px);
+  height: calc(100% - 65px);
+  padding: 0px 8px;
+  overflow-y: auto;
+  scrollbar-gutter: stable;
+  @include lato-regular-14;
+
+  &::-webkit-scrollbar {
+    width: 8px;
+  }
+  /* Track */
+  &::-webkit-scrollbar-track {
+    background: $scrollbar-track;
+  }
+  /* Handle */
+  &::-webkit-scrollbar-thumb {
+    background: $scrollbar-thumb;
+    border-radius: 8px;
+  }
+  /* Handle on hover */
+  &::-webkit-scrollbar-thumb:hover {
+    background: $grey-3;
+    border-radius: 8px;
+  }
 }
 
-.structure-details-container .structure-details-block {
-  padding: 0px 0px 24px 0;
-  border-bottom: 2px solid $grey-8;
+.structure-buttons {
   width: 100%;
+  margin: 0 0 16px 0;
+  position: relative;
+  .clickableDiv {
+    text-align: center;
+    height: 90px;
+    width: 115.2px;
+    display: flex;
+    flex-direction: column;
+    cursor: pointer;
+    a {
+      flex: 1;
+      display: flex;
+      flex-direction: column;
+      text-decoration: none;
+      color: $black;
+    }
+    .icon {
+      flex: 1;
+      display: flex;
+      justify-content: center;
+      align-items: center;
+    }
+    .iconTitle {
+      text-align: center;
+      height: 36px;
+    }
+    &:hover {
+      text-decoration: underline;
+    }
+  }
+  @media #{$tablet} {
+    .printButton {
+      display: none !important;
+    }
+  }
 }
 
-.structure-details-container .structure-details-block ~ .structure-details-block {
+.structure-details-block {
+  margin: 0 20px;
   padding: 24px 0;
-}
+  border-bottom: 2px solid $grey-8;
+  &.noSeparator {
+    border-bottom: none;
+    padding-bottom: 0px;
+  }
 
-.structure-details-block:nth-last-child(-n + 2) {
-  border-bottom: none !important;
-}
+  .info-block > div {
+    margin-top: 4px;
+    &:first-of-type {
+      margin-top: 8px;
+    }
+  }
 
-.structure-details-block .info-block > div {
-  margin-top: 4px;
-  &:first-of-type {
-    margin-top: 8px;
+  .description {
+    white-space: pre-wrap;
+    margin-top: '8px';
   }
-}
 
-.buttons {
-  width: 100%;
-  margin: 16px 0px 40px 0px;
-  position: relative;
-  left: -15px;
-  > div {
-    text-align: center;
-    max-width: 120px;
+  .info {
+    color: $red-1;
+    margin-top: '8px';
   }
-}
-.opening-hours {
-  margin-top: 15px;
-}
-.opening-time {
-  p {
-    margin: 0 5px 12px 0;
+
+  .hours-services-block {
+    display: flex;
+    flex-direction: row;
+    & > div {
+      flex: 1;
+    }
+    @media #{$large-phone} {
+      flex-direction: column;
+    }
+
+    .opening-hours {
+      margin-top: 15px;
+      margin-bottom: 8px;
+      .opening-hour {
+        margin-bottom: 8px;
+        .day {
+          min-width: 70px;
+          margin-top: 0;
+          margin-left: 0;
+          margin-bottom: 0;
+          @include lato-regular-14;
+          color: $grey-3;
+          text-transform: capitalize;
+        }
+        .daily-opening-time {
+          p {
+            margin: 0 0 4px 0;
+          }
+        }
+      }
+    }
   }
-}
-.day {
-  min-width: 70px;
-}
-.listItems {
-  margin-top: 15px;
-  p {
-    display: list-item;
-    margin: 0 0 0 25px;
+
+  .services-block {
+    margin-top: 15px;
+    margin-bottom: 8px;
+    p {
+      display: list-item;
+      margin: 0 0 0 25px;
+    }
+  }
+
+  .formationDetails {
+    width: 100%;
+    .collapse {
+      margin-bottom: 13px;
+      @media #{$small-phone} {
+        width: 95% !important;
+      }
+      &.notCollapsed {
+        margin-bottom: 8px;
+        height: 40px;
+        border-bottom: 2px solid $grey-8;
+        .logo {
+          .hide {
+            display: none;
+          }
+          .show {
+            display: block;
+          }
+        }
+      }
+      .titleCollapse {
+        width: 100%;
+        @include lato-regular-16;
+      }
+      .collapseHeader {
+        cursor: pointer;
+      }
+      .logo {
+        height: 24px;
+        width: 24px;
+        svg {
+          width: 100%;
+          height: 100%;
+          fill: $grey-1;
+        }
+      }
+      .logo,
+      .titleCollapse {
+        .hide {
+          display: block;
+        }
+        .show {
+          display: none;
+        }
+      }
+      .detailsContainer {
+        margin: 8px 0px;
+        padding: 8px 0;
+        background-color: $grey-8;
+      }
+      .details {
+        padding: 8px 16px;
+      }
+    }
+  }
+
+  .updated {
+    @include lato-regular-14;
+    color: $grey-3;
+    font-style: italic;
+  }
+
+  h2 {
+    margin-top: 0;
+    margin-bottom: 5px;
+  }
+  h3 {
+    margin: 0 0 8px 0;
   }
 }
-.typeInformationHeader {
-  color: $grey-3;
-}
-h2 {
-  margin-top: 0;
-  margin-bottom: 5px;
-  @include lato-bold-20;
-}
-h3 {
-  margin: 0 0 8px 0;
-  @include lato-regular-16;
-}
-h4 {
-  margin-left: 0;
-  margin-bottom: 0;
-  margin-top: 4px;
-  @include lato-regular-14;
-  color: $grey-2;
-  text-transform: capitalize;
-}
+
 p,
 .custom-link {
   @include lato-regular-16;
@@ -135,15 +272,6 @@ p,
   }
 }
 
-.daily-opening-time:nth-child(2) {
-  margin-bottom: 8px;
-}
-.updated {
-  @include lato-regular-14;
-  color: $grey-3;
-  font-style: italic;
-}
-
 .bold-info {
   @include lato-bold-16;
 }
@@ -167,114 +295,3 @@ p,
     display: none !important;
   }
 }
-
-.info {
-  color: $ram-hover-principal;
-}
-
-.description {
-  white-space: pre-wrap;
-  float: left;
-}
-
-.wrapper {
-  width: 100%;
-  display: grid;
-  gap: 20px 30px;
-  grid-template-columns: 1fr 1fr;
-}
-.clickableDiv {
-  cursor: pointer;
-  a {
-    text-decoration: none;
-    color: $black;
-  }
-}
-.ico-close {
-  margin-left: auto;
-}
-.sticky-title {
-  position: sticky;
-  top: 0px;
-  border-bottom: 1px solid $grey-4;
-  max-width: 980px;
-  width: 100%;
-  background-color: $white;
-  height: 60px;
-  z-index: 1;
-  padding: 2px 24px;
-  @media #{$tablet} {
-    height: auto;
-  }
-  @media #{$small-phone} {
-    width: 111%;
-    padding-right: 20px;
-  }
-  h2 {
-    @media #{$large-phone} {
-      font-size: $font-size-medium;
-    }
-  }
-}
-
-.iconTitle {
-  height: 36px;
-}
-.formationDetails {
-  width: 100%;
-}
-.collapse {
-  margin-bottom: 13px;
-  @media #{$small-phone} {
-    width: 95% !important;
-  }
-  &.notCollapsed {
-    margin-bottom: 8px;
-    height: 40px;
-    border-bottom: 2px solid $grey-8;
-    .logo {
-      .hide {
-        display: none;
-      }
-      .show {
-        display: block;
-      }
-    }
-  }
-  .titleCollapse {
-    width: 100%;
-    @include lato-regular-16;
-  }
-  .collapseHeader {
-    cursor: pointer;
-  }
-  .logo {
-    height: 24px;
-    width: 24px;
-    svg {
-      width: 100%;
-      height: 100%;
-      fill: $grey-1;
-    }
-  }
-  .logo,
-  .titleCollapse {
-    .hide {
-      display: block;
-    }
-    .show {
-      display: none;
-    }
-  }
-  .detailsContainer {
-    margin: 8px 0px;
-    padding: 8px 0;
-    background-color: $grey-8;
-  }
-  .details {
-    padding: 8px 16px;
-  }
-}
-.noSeparator {
-  border-bottom: none !important;
-}
diff --git a/src/app/structure-list/structure-list.component.html b/src/app/structure-list/structure-list.component.html
index a52eb78eb..8f5a9dfab 100644
--- a/src/app/structure-list/structure-list.component.html
+++ b/src/app/structure-list/structure-list.component.html
@@ -23,11 +23,12 @@
     ></app-card>
     <p *ngIf="structureList && structureList.length <= 0">Il n'y a aucune réponse correspondant à votre recherche</p>
   </div>
-
-  <app-structure-details
-    *ngIf="showStructureDetails"
-    [structure]="structure"
-    (closeDetails)="closeDetails()"
-    (updatedStructure)="emitUpdatedStructure($event)"
-  ></app-structure-details>
 </div>
+
+<app-structure-details
+  class="structureList-details"
+  *ngIf="showStructureDetails"
+  [structure]="structure"
+  (closeDetails)="closeDetails()"
+  (updatedStructure)="emitUpdatedStructure($event)"
+></app-structure-details>
diff --git a/src/app/structure-list/structure-list.component.scss b/src/app/structure-list/structure-list.component.scss
index 6211fb429..c98dceed0 100644
--- a/src/app/structure-list/structure-list.component.scss
+++ b/src/app/structure-list/structure-list.component.scss
@@ -47,6 +47,14 @@
   border-bottom: unset !important;
 }
 
+.structureList-details {
+  position: absolute;
+  top: 0;
+  left: 0;
+  height: 100%;
+  width: inherit;
+}
+
 @media print {
   .listCard {
     display: none;
diff --git a/src/assets/scss/_color.scss b/src/assets/scss/_color.scss
index f15cca9b7..68c22e013 100644
--- a/src/assets/scss/_color.scss
+++ b/src/assets/scss/_color.scss
@@ -13,6 +13,7 @@ $grey-8: #f8f8f8;
 /* REDS */
 $red: #da3635;
 $red-dark: #b85959;
+$red-1: #f35453;
 /* GOLD */
 $gold: #bd9e6a;
 /* form colors */
-- 
GitLab


From d9d1799562c437f4081b39b89b43d54525ec6fea Mon Sep 17 00:00:00 2001
From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com>
Date: Mon, 21 Mar 2022 19:12:50 +0100
Subject: [PATCH 36/40] feat: add back admin functionnalities

---
 .../structure-details.component.html          | 40 +++++++++++++++----
 .../structure-details.component.scss          | 25 +++++++-----
 .../structure-details.component.ts            | 14 +++----
 3 files changed, 55 insertions(+), 24 deletions(-)

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 0c37ee066..5937a9676 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
@@ -21,11 +21,9 @@
         <div class="iconTitle">Voir le conseiller numérique</div>
       </div-->
       <!-- Voir le site -->
-      <div class="clickableDiv" role="button" *ngIf="structure.website">
-        <a href="{{ structure.website }}" target="_blank">
-          <app-svg-icon class="icon" [type]="'ico'" [icon]="'web'" [iconClass]="'icon-32'"></app-svg-icon>
-          <div class="iconTitle">Voir le site</div>
-        </a>
+      <div *ngIf="structure.website" class="clickableDiv" role="button" (click)="goToWebsite()" tabindex="0">
+        <app-svg-icon class="icon" [type]="'ico'" [icon]="'web'" [iconClass]="'icon-32'"></app-svg-icon>
+        <div class="iconTitle">Voir le site</div>
       </div>
       <!-- Voir la plaquette - Hidden until functionnality is developed -->
       <!--div class="clickableDiv" role="button" >
@@ -47,6 +45,28 @@
         <app-svg-icon class="icon" [type]="'ico'" [icon]="'workhere'" [iconClass]="'icon-32'"></app-svg-icon>
         <div class="iconTitle">Je travaille ici</div>
       </div>
+      <!-- Modifier la structure -->
+      <div
+        *ngIf="profileService.isLinkedToStructure(structure._id) || profileService.isAdmin()"
+        class="clickableDiv"
+        role="button"
+        (click)="handleModify()"
+        tabindex="0"
+      >
+        <app-svg-icon class="icon" [type]="'ico'" [icon]="'workhere'" [iconClass]="'icon-32'"></app-svg-icon>
+        <div class="iconTitle">Modifier cette structure</div>
+      </div>
+    </div>
+
+    <div *ngIf="profileService.isAdmin()" class="structure-details-block hide-on-print">
+      Administrateur(s) de cette structure:
+      <div *ngIf="structureAdmins.length === 0">Aucun administrateur</div>
+      <div *ngIf="structureAdmins.length > 0">
+        <div *ngFor="let structureAdmin of structureAdmins">
+          {{ structureAdmin.email }}
+        </div>
+      </div>
+      <a (click)="toggleDeleteModal()" class="primary" tabindex="0"> Supprimer cette structure </a>
     </div>
 
     <div class="structure-details-block">
@@ -210,7 +230,7 @@
       <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
         <h2>Labelisation</h2>
       </div>
-      <div fxLayout="row wrap" fxLayoutGap="24px">
+      <div class="wrapper">
         <div *ngFor="let labels of structure.labelsQualifications">
           <app-logo-card [name]="labels"></app-logo-card>
         </div>
@@ -229,7 +249,7 @@
         <h2>Aide numérique</h2>
       </div>
       <div fxLayout="column">
-        <div fxLayout="row wrap" fxLayoutGap="24px">
+        <div class="wrapper">
           <div *ngFor="let accompagnement of structure.proceduresAccompaniment">
             <app-logo-card *ngIf="accompagnement != 'autres'" [name]="accompagnement"></app-logo-card>
           </div>
@@ -461,6 +481,12 @@
     </div>
   </div>
 
+  <app-modal-confirmation
+    [openned]="deleteModalOpenned"
+    [content]="'Voulez-vous vraiment supprimer cette structure&nbsp;?'"
+    (closed)="deleteStructure($event)"
+  ></app-modal-confirmation>
+
   <app-modal-confirmation
     [openned]="claimModalOpenned"
     [content]="
diff --git a/src/app/structure-list/components/structure-details/structure-details.component.scss b/src/app/structure-list/components/structure-details/structure-details.component.scss
index b5c88bb96..678b625d6 100644
--- a/src/app/structure-list/components/structure-details/structure-details.component.scss
+++ b/src/app/structure-list/components/structure-details/structure-details.component.scss
@@ -82,22 +82,19 @@ h3 {
     display: flex;
     flex-direction: column;
     cursor: pointer;
-    a {
-      flex: 1;
-      display: flex;
-      flex-direction: column;
-      text-decoration: none;
-      color: $black;
-    }
     .icon {
+      margin-top: 20px;
       flex: 1;
       display: flex;
       justify-content: center;
       align-items: center;
     }
     .iconTitle {
-      text-align: center;
+      @include lato-regular-13;
       height: 36px;
+      display: flex;
+      justify-content: center;
+      align-items: center;
     }
     &:hover {
       text-decoration: underline;
@@ -128,12 +125,12 @@ h3 {
 
   .description {
     white-space: pre-wrap;
-    margin-top: '8px';
+    margin-top: 8px;
   }
 
   .info {
     color: $red-1;
-    margin-top: '8px';
+    margin-top: 8px;
   }
 
   .hours-services-block {
@@ -178,6 +175,14 @@ h3 {
     }
   }
 
+  .wrapper {
+    display: grid;
+    grid-template-columns: 1fr 1fr;
+    @media #{$large-phone} {
+      grid-template-columns: 1fr;
+    }
+  }
+
   .formationDetails {
     width: 100%;
     .collapse {
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 f433bc179..b7d292dce 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
@@ -194,6 +194,9 @@ export class StructureDetailsComponent implements OnInit {
       this.router.navigate(['create-structure'], { state: { newUser: this.structure, isJoin: true } });
     }
   }
+  public handleModify(): void {
+    this.router.navigate(['create-structure', this.structure._id]);
+  }
 
   public deleteStructure(shouldDelete: boolean): void {
     this.toggleDeleteModal();
@@ -309,13 +312,6 @@ export class StructureDetailsComponent implements OnInit {
     });
   }
 
-  public canDelete(): boolean {
-    if (this.profileService.isAdmin()) {
-      return true;
-    }
-    return false;
-  }
-
   public filterOnlyEquipments(equipmentsAndServices: string[]): string[] {
     return equipmentsAndServices.filter((eqpt) =>
       ['ordinateurs', 'tablettes', 'bornesNumeriques', 'imprimantes', 'scanners', 'wifiEnAccesLibre'].includes(eqpt)
@@ -370,4 +366,8 @@ export class StructureDetailsComponent implements OnInit {
   public toggleDigitalSecurity(): void {
     this.showDigitalSecurity = !this.showDigitalSecurity;
   }
+
+  public goToWebsite(): void {
+    window.open(this.structure.website, '_blank');
+  }
 }
-- 
GitLab


From b5a801e00df5b91666ffeaab5e19ff1715b56aff Mon Sep 17 00:00:00 2001
From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com>
Date: Tue, 22 Mar 2022 09:17:43 +0100
Subject: [PATCH 37/40] feat: review

---
 .../structure-details.component.html           | 18 +++++++++++++-----
 1 file changed, 13 insertions(+), 5 deletions(-)

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 5937a9676..7f6635780 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
@@ -11,8 +11,9 @@
     <!-- Action buttons bar -->
     <div class="structure-buttons hide-on-print" fxLayout="row" fxLayoutAlign="space-evenly">
       <!-- Voir le conseiller numérique - Hidden until functionnality is developed -->
-      <!--div class="clickableDiv" role="button">
+      <!--div class="clickableDiv" role="button" tabindex="0">
         <app-svg-icon
+          class="icon"
           [type]="'ico'"
           [icon]="'advisor'"
           [iconClass]="'icon-32'"
@@ -26,12 +27,12 @@
         <div class="iconTitle">Voir le site</div>
       </div>
       <!-- Voir la plaquette - Hidden until functionnality is developed -->
-      <!--div class="clickableDiv" role="button" >
-        <app-svg-icon [type]="'ico'" [icon]="'docs'" [iconClass]="'icon-32'"></app-svg-icon>
+      <!--div class="clickableDiv" role="button" tabindex="0">
+        <app-svg-icon class="icon" [type]="'ico'" [icon]="'docs'" [iconClass]="'icon-32'"></app-svg-icon>
         <div class="iconTitle">Voir la plaquette</div>
       </div-->
       <!-- Imprimer -->
-      <div role="button" class="printButton clickableDiv" (click)="print()">
+      <div role="button" class="printButton clickableDiv" (click)="print()" tabindex="0">
         <app-svg-icon class="icon" [type]="'ico'" [icon]="'printStructure'" [iconClass]="'icon-32'"></app-svg-icon>
         <div class="iconTitle">Imprimer</div>
       </div>
@@ -41,7 +42,13 @@
         <div class="iconTitle">Signaler une erreur</div>
       </div>
       <!-- Je travaille ici -->
-      <div class="clickableDiv" role="button" (click)="handleJoin()" tabindex="0">
+      <div
+        *ngIf="!profileService.isLinkedToStructure(structure._id)"
+        class="clickableDiv"
+        role="button"
+        (click)="handleJoin()"
+        tabindex="0"
+      >
         <app-svg-icon class="icon" [type]="'ico'" [icon]="'workhere'" [iconClass]="'icon-32'"></app-svg-icon>
         <div class="iconTitle">Je travaille ici</div>
       </div>
@@ -58,6 +65,7 @@
       </div>
     </div>
 
+    <!-- Admin menu -->
     <div *ngIf="profileService.isAdmin()" class="structure-details-block hide-on-print">
       Administrateur(s) de cette structure:
       <div *ngIf="structureAdmins.length === 0">Aucun administrateur</div>
-- 
GitLab


From 956e8468a9be9fcadfc3fa86a687d3d2071d91d3 Mon Sep 17 00:00:00 2001
From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com>
Date: Tue, 22 Mar 2022 11:51:14 +0100
Subject: [PATCH 38/40] feat: design review

---
 src/app/carto/carto.component.html            |  4 +--
 .../orientation-form.component.html           |  2 +-
 .../components/button/button.component.html   | 23 ++++++++++++---
 .../components/button/button.component.scss   | 27 ++++-------------
 .../structure-details.component.html          | 14 ++++-----
 .../structure-details.component.scss          | 29 ++++++++-----------
 src/assets/ico/liste.svg                      | 12 ++++----
 src/assets/ico/sprite.svg                     | 16 ++++++----
 8 files changed, 62 insertions(+), 65 deletions(-)

diff --git a/src/app/carto/carto.component.html b/src/app/carto/carto.component.html
index 8742b5d3c..c2a623685 100644
--- a/src/app/carto/carto.component.html
+++ b/src/app/carto/carto.component.html
@@ -17,9 +17,9 @@
     ></app-structure-list>
     <div class="btnSwitch">
       <app-button
-        [style]="buttonTypeEnum.Tertiary"
+        [style]="buttonTypeEnum.ButtonPhone"
         [text]="isMapPhone ? 'Liste' : 'Carte'"
-        [iconBtn]="isMapPhone ? 'liste' : 'map-marker'"
+        [iconBtn]="isMapPhone ? 'liste' : 'map-markerButtonPhone'"
         (action)="switchMapList()"
       ></app-button>
     </div>
diff --git a/src/app/form/orientation-form/orientation-form.component.html b/src/app/form/orientation-form/orientation-form.component.html
index c8c0679cf..34d96a36f 100644
--- a/src/app/form/orientation-form/orientation-form.component.html
+++ b/src/app/form/orientation-form/orientation-form.component.html
@@ -391,7 +391,7 @@
       <app-button
         [style]="'roundedButton'"
         [text]="isMapPhone ? 'Liste' : 'Carte'"
-        [iconBtn]="isMapPhone ? 'liste' : 'map-marker'"
+        [iconBtn]="isMapPhone ? 'liste' : 'map-markerButtonPhone'"
         (action)="switchMapList()"
       ></app-button>
     </div>
diff --git a/src/app/shared/components/button/button.component.html b/src/app/shared/components/button/button.component.html
index c09955f92..9076662ec 100644
--- a/src/app/shared/components/button/button.component.html
+++ b/src/app/shared/components/button/button.component.html
@@ -119,20 +119,35 @@
 <ng-container *ngIf="style === buttonTypeEnum.ButtonPhone">
   <button
     [disabled]="disabled"
-    class="btn-filter-phone"
-    [ngClass]="extraClass"
+    class="btn-switch-phone"
     type="{{ type }}"
     (click)="doAction()"
     [ngClass]="{ disabled: disabled }"
   >
-    {{ text }}
+    <div *ngIf="!iconBtn" class="text">{{ text }}</div>
+    <div
+      *ngIf="iconBtn"
+      fxLayout="row center"
+      class="text withIcon"
+      fxLayoutAlign="space-around center"
+      fxLayoutGap="13px"
+    >
+      <app-svg-icon
+        class="iconBtn"
+        [type]="'ico'"
+        [iconClass]="'icon-32'"
+        [icon]="iconBtn"
+        [iconColor]="'currentColor'"
+      ></app-svg-icon>
+      {{ text }}
+    </div>
   </button>
 </ng-container>
 
 <ng-container *ngIf="style === buttonTypeEnum.Filter">
   <button
     [disabled]="disabled"
-    class="btn-switch-phone"
+    class="btn-filter-phone"
     type="{{ type }}"
     (click)="doAction()"
     [ngClass]="{ disabled: disabled }"
diff --git a/src/app/shared/components/button/button.component.scss b/src/app/shared/components/button/button.component.scss
index 73740013c..26f8b631b 100644
--- a/src/app/shared/components/button/button.component.scss
+++ b/src/app/shared/components/button/button.component.scss
@@ -171,32 +171,15 @@ button {
 .btn-switch-phone {
   background: $black;
   height: 40px;
+  width: 124px;
   color: $white;
-  padding: 4px 37px 4px 37px;
+  padding: 4px 28px;
   border-radius: 20px;
+  .iconBtn {
+    margin-right: 6px;
+  }
 }
 
-// .btn-secondary {
-//   background: $white;
-//   height: 30px;
-//   width: 132px;
-//   color: $grey-1;
-//   padding: 0 0 1px 1px;
-//   // padding: 4px 37px 4px 37px;
-//   border-color: transparent;
-//   line-break: 18px;
-//   &:hover {
-//     @include background-hash($grey-1);
-//   }
-//   &:focus {
-//     background-color: $white;
-//     border-color: $primary-color;
-//     color: $primary-color;
-//   }
-//   &:active {
-//     background-color: $blue-light;
-//   }
-// }
 .btn-filter-phone {
   background: $white;
   height: 40px;
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 7f6635780..cc4c45675 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
@@ -1,7 +1,7 @@
 <div class="structure-details-container" *ngIf="structure && !isLoading">
   <!-- Header info -->
   <div class="structure-details-title" fxLayout="row" fxLayoutAlign="space-evenly center">
-    <h2 class="bold">{{ structure.structureName }}</h2>
+    <h1 class="bold">{{ structure.structureName }}</h1>
     <div class="ico-close">
       <div (click)="close()" class="ico-close-details"></div>
     </div>
@@ -169,7 +169,7 @@
       <div class="hours-services-block">
         <!-- Opening Hours -->
         <div *ngIf="structure.hours.hasData()" fxLayout="column">
-          <h2>Horaires d’ouverture</h2>
+          <h2>Horaires</h2>
           <div fxLayout="column" class="opening-hours">
             <div *ngFor="let day of structure.hours | keyvalue: keepOriginalOrder">
               <div *ngIf="day.value.open" class="opening-hour" fxLayout="row" fxLayoutAlign="flex-start flex-start">
@@ -233,10 +233,10 @@
       fxLayout="column"
       class="structure-details-block"
       fxLayoutAlign="baseline baseline"
-      fxLayoutGap="20px"
+      fxLayoutGap="12px"
     >
       <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-        <h2>Labelisation</h2>
+        <h2>Labellisations</h2>
       </div>
       <div class="wrapper">
         <div *ngFor="let labels of structure.labelsQualifications">
@@ -251,10 +251,10 @@
       fxLayout="column"
       class="structure-details-block"
       fxLayoutAlign="baseline baseline"
-      fxLayoutGap="20px"
+      fxLayoutGap="12px"
     >
       <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-        <h2>Aide numérique</h2>
+        <h2>Aides numérique</h2>
       </div>
       <div fxLayout="column">
         <div class="wrapper">
@@ -279,7 +279,7 @@
       fxLayoutGap="20px"
     >
       <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px">
-        <h2>Formation</h2>
+        <h2>Formations</h2>
       </div>
       <div *ngIf="structure.freeWorkShop">
         <span *ngIf="multipleWorkshop()" class="bold-info">L'accès à ces formations est gratuit</span>
diff --git a/src/app/structure-list/components/structure-details/structure-details.component.scss b/src/app/structure-list/components/structure-details/structure-details.component.scss
index 678b625d6..e50a6cf69 100644
--- a/src/app/structure-list/components/structure-details/structure-details.component.scss
+++ b/src/app/structure-list/components/structure-details/structure-details.component.scss
@@ -7,28 +7,38 @@
 
 a {
   padding: unset;
-  font-size: initial;
   text-decoration: underline;
+  font-size: inherit;
+  font-weight: inherit;
 }
 
 p:empty {
   margin: 0;
 }
 
+h1 {
+  @include lato-bold-20;
+  color: $grey-1;
+}
 h2 {
   @include lato-bold-14;
   color: $grey-3;
   text-transform: uppercase;
+  margin-top: 0;
+  margin-bottom: 12px;
 }
 h3 {
   @include lato-regular-16;
+  margin: 0 0 8px 0;
 }
 
 .structure-details-container {
   position: relative;
   height: 100%;
+  width: calc(100% - 1px);
   background-color: $white;
   overflow: hidden;
+  border-bottom: 1px solid $grey-5;
 }
 
 .structure-details-title {
@@ -38,11 +48,6 @@ h3 {
   .ico-close {
     margin-left: auto;
   }
-  h2 {
-    @media #{$large-phone} {
-      font-size: $font-size-medium;
-    }
-  }
 }
 
 .structure-details-content {
@@ -119,7 +124,7 @@ h3 {
   .info-block > div {
     margin-top: 4px;
     &:first-of-type {
-      margin-top: 8px;
+      margin-top: 0px;
     }
   }
 
@@ -144,7 +149,6 @@ h3 {
     }
 
     .opening-hours {
-      margin-top: 15px;
       margin-bottom: 8px;
       .opening-hour {
         margin-bottom: 8px;
@@ -167,7 +171,6 @@ h3 {
   }
 
   .services-block {
-    margin-top: 15px;
     margin-bottom: 8px;
     p {
       display: list-item;
@@ -244,14 +247,6 @@ h3 {
     color: $grey-3;
     font-style: italic;
   }
-
-  h2 {
-    margin-top: 0;
-    margin-bottom: 5px;
-  }
-  h3 {
-    margin: 0 0 8px 0;
-  }
 }
 
 p,
diff --git a/src/assets/ico/liste.svg b/src/assets/ico/liste.svg
index 0b72214f2..2e2b86d83 100644
--- a/src/assets/ico/liste.svg
+++ b/src/assets/ico/liste.svg
@@ -1,8 +1,8 @@
 <svg  viewBox="0 0 32 32"  xmlns="http://www.w3.org/2000/svg">
-<rect x="10" y="9" width="16" height="2" rx="1" />
-<rect x="10" y="15" width="16" height="2" rx="1" />
-<rect x="10" y="21" width="16" height="2" rx="1" />
-<rect x="6" y="9" width="2" height="2" rx="1" />
-<rect x="6" y="15" width="2" height="2" rx="1" />
-<rect x="6" y="21" width="2" height="2" rx="1"/>
+<circle cx="7.75" cy="10.75" r="0.75" fill="white"/>
+<rect x="10" y="10" width="15" height="1.5" rx="0.75" fill="white"/>
+<circle cx="7.75" cy="16.25" r="0.75" fill="white"/>
+<rect x="10" y="15.5" width="15" height="1.5" rx="0.75" fill="white"/>
+<circle cx="7.75" cy="21.75" r="0.75" fill="white"/>
+<rect x="10" y="21" width="15" height="1.5" rx="0.75" fill="white"/>
 </svg>
diff --git a/src/assets/ico/sprite.svg b/src/assets/ico/sprite.svg
index e721d9239..82657edf8 100644
--- a/src/assets/ico/sprite.svg
+++ b/src/assets/ico/sprite.svg
@@ -17,6 +17,10 @@
 <path d="M32.3299 15.8789C31.7108 15.3285 30.7627 15.3843 30.2123 16.0035L23.0123 24.1034L18.9396 20.8308C18.2939 20.3118 17.3497 20.4147 16.8308 21.0604C16.3119 21.7062 16.4147 22.6504 17.0605 23.1693L22.2457 27.3359C22.8688 27.8367 23.7752 27.7607 24.3064 27.1632L32.4545 17.9966C33.0049 17.3774 32.9491 16.4293 32.3299 15.8789Z" fill="#47C562"/>
 </symbol>
 
+<symbol id="map-markerButtonPhone" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M19.763 25.4357C23.8485 21.694 27 18.8077 27 14.0741C27 7.95803 22.0751 3 16 3C9.92487 3 5 7.95803 5 14.0741C5 19.075 7.5581 21.3702 12.4128 25.726C13.4953 26.6973 14.692 27.771 16 29C17.2972 27.6941 18.5699 26.5284 19.763 25.4357ZM16 18.4074C18.3772 18.4074 20.3043 16.4673 20.3043 14.0741C20.3043 11.6808 18.3772 9.74074 16 9.74074C13.6228 9.74074 11.6957 11.6808 11.6957 14.0741C11.6957 16.4673 13.6228 18.4074 16 18.4074Z" stroke="white" stroke-width="1.5" stroke-linecap="round"/>
+</symbol>
+
 <symbol id="adress" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
 <path fill-rule="evenodd" clip-rule="evenodd" d="M11 2C12.6055 2.0145 14.1397 2.68885 15.265 3.87463C16.3902 5.06042 17.0142 6.66048 16.9998 8.32269C16.9998 11.8208 12.1242 19 11 19C9.87584 19 5.00025 11.8208 5.00025 8.32269C4.98578 6.66048 5.60982 5.06042 6.73504 3.87463C7.86026 2.68885 9.39446 2.0145 11 2ZM10.9999 5.55695C12.0865 5.53677 13.0768 6.19906 13.5059 7.23274C13.9349 8.26643 13.7173 9.4661 12.9553 10.2683C12.1933 11.0704 11.0384 11.3157 10.0329 10.8888C9.02744 10.4619 8.37129 9.44779 8.37266 8.32272C8.36215 6.80858 9.53743 5.57133 10.9999 5.55695Z" fill="#333333"/>
 </symbol>
@@ -75,12 +79,12 @@
 </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" />
-<rect x="10" y="15" width="16" height="2" rx="1" />
-<rect x="10" y="21" width="16" height="2" rx="1" />
-<rect x="6" y="9" width="2" height="2" rx="1" />
-<rect x="6" y="15" width="2" height="2" rx="1" />
-<rect x="6" y="21" width="2" height="2" rx="1"/>
+<circle cx="7.75" cy="10.75" r="0.75" fill="white"/>
+<rect x="10" y="10" width="15" height="1.5" rx="0.75" fill="white"/>
+<circle cx="7.75" cy="16.25" r="0.75" fill="white"/>
+<rect x="10" y="15.5" width="15" height="1.5" rx="0.75" fill="white"/>
+<circle cx="7.75" cy="21.75" r="0.75" fill="white"/>
+<rect x="10" y="21" width="15" height="1.5" rx="0.75" fill="white"/>
 </symbol>
 
 <svg id="user" viewBox="0 0 28 25" xmlns="http://www.w3.org/2000/svg">
-- 
GitLab


From 3758157e949e1ddd351b006c76dc25801d82eb64 Mon Sep 17 00:00:00 2001
From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com>
Date: Tue, 22 Mar 2022 14:44:12 +0100
Subject: [PATCH 39/40] feat: review on filter

---
 .../structure-list-search.component.ts        | 58 +++++++------------
 1 file changed, 21 insertions(+), 37 deletions(-)

diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
index 574869be3..82f2d6c14 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
@@ -1,4 +1,4 @@
-import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
+import { Component, EventEmitter, OnInit, Output } from '@angular/core';
 import { FormBuilder, FormGroup } from '@angular/forms';
 import { TypeModal } from '../../enum/typeModal.enum';
 import { Category } from '../../models/category.model';
@@ -118,32 +118,7 @@ export class StructureListSearchComponent implements OnInit {
     const inputTerm = this.searchForm.get('searchTerm').value;
     // Check if some modules is checked in filters
     if (this.checkedModulesFilter !== checkedModules) {
-      // First btn
-      switch (this.modalTypeOpened) {
-        case TypeModal.accompaniment:
-          this.numberAccompanimentChecked = this.countCheckFiltersOnModules(
-            checkedModules,
-            this.numberAccompanimentChecked
-          );
-          break;
-        case TypeModal.training:
-          this.numberTrainingChecked = this.countCheckFiltersOnModules(checkedModules, this.numberTrainingChecked);
-          break;
-        case TypeModal.public:
-          this.numberPublicChecked = this.countCheckFiltersOnModules(checkedModules, this.numberPublicChecked);
-          break;
-        case TypeModal.equipments:
-          this.numberEquipmentChecked = this.countCheckFiltersOnModules(checkedModules, this.numberEquipmentChecked);
-          break;
-        case TypeModal.moreFilters:
-          this.numberMoreFiltersChecked = this.countCheckFiltersOnModules(
-            checkedModules,
-            this.numberMoreFiltersChecked
-          );
-          break;
-        default:
-          throw new Error('Modal type not handle');
-      }
+      this.countCheckFiltersOnModules(checkedModules);
     }
     // Store checked modules
     this.checkedModulesFilter = checkedModules;
@@ -153,12 +128,23 @@ export class StructureListSearchComponent implements OnInit {
   }
 
   // Check if some modules is checked on filter and store number of modules checked
-  public countCheckFiltersOnModules(checkedModules: Module[], value: number): number {
-    if (checkedModules.length && value !== checkedModules.length) {
-      return checkedModules.length - value;
-    } else {
-      return 0;
-    }
+  public countCheckFiltersOnModules(checkedModules: Module[]): void {
+    this.numberAccompanimentChecked = checkedModules.filter(
+      (module) => module.text === 'proceduresAccompaniment'
+    ).length;
+    this.numberTrainingChecked = checkedModules.filter(
+      (module) =>
+        module.text === 'baseSkills' ||
+        module.text === 'socialAndProfessional' ||
+        module.text === 'parentingHelp' ||
+        module.text === 'accessRight' ||
+        module.text === 'digitalCultureSecurity'
+    ).length;
+    this.numberPublicChecked = checkedModules.filter((module) => module.text === 'publicsAccompaniment').length;
+    this.numberEquipmentChecked = checkedModules.filter((module) => module.text === 'equipmentsAndServices').length;
+    this.numberMoreFiltersChecked = checkedModules.filter(
+      (module) => module.text === 'labelsQualifications' || module.text === 'accessModality'
+    ).length;
   }
 
   public getModalCategory(): Category[] {
@@ -207,10 +193,7 @@ export class StructureListSearchComponent implements OnInit {
       const index = this.checkedModulesFilter.findIndex((m: Module) => m.id === checkValue && m.text === categ);
       if (index > -1) {
         this.checkedModulesFilter.splice(index, 1);
-        this.numberMoreFiltersChecked = this.countCheckFiltersOnModules(
-          this.checkedModulesFilter,
-          this.numberAccompanimentChecked + this.numberTrainingChecked
-        );
+        this.countCheckFiltersOnModules(this.checkedModulesFilter);
       }
     }
     this.applyFilter(inputTerm);
@@ -260,6 +243,7 @@ export class StructureListSearchComponent implements OnInit {
     this.checkedModulesFilter.splice(index, 1);
     const inputTerm = this.searchForm.get('searchTerm').value;
     const filters = this.convertModulesTofilters(this.checkedModulesFilter, inputTerm);
+    this.countCheckFiltersOnModules(this.checkedModulesFilter);
     this.searchEvent.emit(filters);
   }
 }
-- 
GitLab


From 0c4e710f9e976c647480ccf7ef5cb76ea6251c57 Mon Sep 17 00:00:00 2001
From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com>
Date: Tue, 22 Mar 2022 15:09:39 +0100
Subject: [PATCH 40/40] feat: remove unsued import in scss

---
 .../structure-details/structure-details.component.scss         | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/app/structure-list/components/structure-details/structure-details.component.scss b/src/app/structure-list/components/structure-details/structure-details.component.scss
index e50a6cf69..26198fbf8 100644
--- a/src/app/structure-list/components/structure-details/structure-details.component.scss
+++ b/src/app/structure-list/components/structure-details/structure-details.component.scss
@@ -1,8 +1,5 @@
-@import '../../../../assets/scss/icons';
 @import '../../../../assets/scss/color';
 @import '../../../../assets/scss/typography';
-@import '../../../../assets/scss/z-index';
-@import '../../../../assets/scss/layout';
 @import '../../../../assets/scss/breakpoint';
 
 a {
-- 
GitLab