diff --git a/src/app/admin/components/claim-structure/claim-structure.component.html b/src/app/admin/components/claim-structure/claim-structure.component.html index 3abb0984820faa4fa84952a3009b212fbe03a847..8dae1d01076f113c1cc8b699a90a0ec2836f4308 100644 --- a/src/app/admin/components/claim-structure/claim-structure.component.html +++ b/src/app/admin/components/claim-structure/claim-structure.component.html @@ -3,12 +3,14 @@ <thead> <th scope="col">Utilisateur</th> <th scope="col">Structure</th> + <th scope="col">Date de demande</th> <th scope="col">Options</th> </thead> <tbody> <tr *ngFor="let structure of demandsAttachment"> <td>{{ structure.userEmail }}</td> <td>{{ structure.structureName }}</td> + <td>{{ structure.createdAt | date: 'mediumDate' }}</td> <td> <button (click)="acceptDemand(structure)">Valider</button ><button (click)="refuseDemand(structure)">Refuser</button> diff --git a/src/app/admin/components/claim-structure/claim-structure.component.ts b/src/app/admin/components/claim-structure/claim-structure.component.ts index df55627f47dbd523eb35e4e49c660455dfaf1e50..56938c59b832b44ca43d636af93f8fc00fe7acf8 100644 --- a/src/app/admin/components/claim-structure/claim-structure.component.ts +++ b/src/app/admin/components/claim-structure/claim-structure.component.ts @@ -1,4 +1,5 @@ import { Component, OnInit } from '@angular/core'; +import { NotificationService } from '../../../services/notification.service'; import { StructureAdminInfo } from '../../models/demandAttachment.model'; import { AdminService } from '../../services/admin.service'; @@ -12,7 +13,7 @@ export class ClaimStructureComponent implements OnInit { public structuresUnclaimed: StructureAdminInfo[]; public isClaimedStructure: boolean = true; public isUnclaimedStructure: boolean = false; - constructor(private adminService: AdminService) {} + constructor(private adminService: AdminService, private notificationService: NotificationService) {} ngOnInit(): void { this.adminService.getPendingStructure().subscribe((demands) => { @@ -21,19 +22,27 @@ export class ClaimStructureComponent implements OnInit { } public acceptDemand(demand: StructureAdminInfo): void { - this.adminService - .acceptStructureClaim(demand.userEmail, demand.structureId, demand.structureName) - .subscribe((data) => { + this.adminService.acceptStructureClaim(demand.userEmail, demand.structureId, demand.structureName).subscribe({ + next: (data) => { this.demandsAttachment = data; - }); + this.notificationService.showSuccess('Demande acceptée avec succès'); + }, + error: (e) => { + this.notificationService.showError('Une erreur est survenue'); + }, + }); } public refuseDemand(demand: StructureAdminInfo): void { - this.adminService - .refuseStructureClaim(demand.userEmail, demand.structureId, demand.structureName) - .subscribe((data) => { + this.adminService.refuseStructureClaim(demand.userEmail, demand.structureId, demand.structureName).subscribe({ + next: (data) => { this.demandsAttachment = data; - }); + this.notificationService.showSuccess('Demande refusée avec succès'); + }, + error: (e) => { + this.notificationService.showError('Une erreur est survenue'); + }, + }); } public claimedStructure(_event: boolean): void { diff --git a/src/app/admin/models/demandAttachment.model.ts b/src/app/admin/models/demandAttachment.model.ts index 8a40d4297a40ede226b6f7a5c54d324e34185a31..5940866d986c10b4696f557a6e9df811c7f26cf0 100644 --- a/src/app/admin/models/demandAttachment.model.ts +++ b/src/app/admin/models/demandAttachment.model.ts @@ -2,4 +2,5 @@ export class StructureAdminInfo { userEmail: string; structureId: number; structureName: string; + createdAt: string; } diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 1df6f3126a356a5a17336a0e29ef531ef0fb73d2..fd1620f13f72e9bf2bdd11af42fb7943e52e89d1 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -150,7 +150,21 @@ const routes: Routes = [ ], }, { - path: 'join/:id', + path: 'join-request/:id', + children: [ + { + path: '', + canActivate: [AuthGuard], + component: StructureJoinComponent, + resolve: { + structure: StructureResolver, + }, + }, + footerOutletRoute, + ], + }, + { + path: 'join-validation', children: [ { path: '', diff --git a/src/app/form/form-view/form-view.component.ts b/src/app/form/form-view/form-view.component.ts index 41b2ad9ac36a14960c19dbf54f2b710351a947d1..4fd15c6f3f8c761d97eab3d980493e861a54e54c 100644 --- a/src/app/form/form-view/form-view.component.ts +++ b/src/app/form/form-view/form-view.component.ts @@ -11,6 +11,7 @@ import { ProfileService } from '../../profile/services/profile.service'; import { NotificationService } from '../../services/notification.service'; import { PersonalOfferService } from '../../services/personal-offer.service'; import { StructureService } from '../../services/structure.service'; +import { UserService } from '../../services/user.service'; import { MustMatch } from '../../shared/validator/form'; import { CustomRegExp } from '../../utils/CustomRegExp'; import { formUtils } from '../../utils/formUtils'; @@ -86,7 +87,8 @@ export class FormViewComponent implements OnInit, AfterViewInit { private route: ActivatedRoute, private router: Router, private structureService: StructureService, - private utils: Utils + private utils: Utils, + private usersService: UserService ) {} ngAfterViewInit(): void { @@ -151,7 +153,7 @@ export class FormViewComponent implements OnInit, AfterViewInit { this.route.data.subscribe((data) => { if (data.user) { this.createAccountForm(data.user.email); - this.linkedStructureId = data.user.pendingStructuresLink; + this.linkedStructureId = data.user.structuresLink; this.currentForm = this.accountForm; this.isAccountMode = true; } @@ -275,7 +277,7 @@ export class FormViewComponent implements OnInit, AfterViewInit { this.structureService.isClaimed(this.structure._id, this.profile).subscribe((isClaimed) => { this.structure.isClaimed = isClaimed; if (isClaimed) { - this.structureService.joinStructure(this.structureForm.value._id, this.profile.email).subscribe(() => { + this.usersService.joinStructure(this.structureForm.value._id, this.profile.email).subscribe(() => { this.currentPage = structureFormStep.mailSentInfo; }); } else { diff --git a/src/app/form/form-view/guards/personalOffer.guard.ts b/src/app/form/form-view/guards/personalOffer.guard.ts index a5f6c63f0d78760631c579f52b56e4e308e63977..e28b5efef2a55aa14c99341caa107c85b20214e3 100644 --- a/src/app/form/form-view/guards/personalOffer.guard.ts +++ b/src/app/form/form-view/guards/personalOffer.guard.ts @@ -13,7 +13,7 @@ export class PersonalOfferGuard implements CanActivate { (this.router.routerState.snapshot.url === '/profile' || this.router.routerState.snapshot.url === '/form/profile' || this.router.routerState.snapshot.url === '/form/structure' || - this.router.routerState.snapshot.url.includes('/join/')) + this.router.routerState.snapshot.url.includes('/join-request/')) ) { return true; } diff --git a/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.ts b/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.ts index cb9c5c7903b4eda7704d720eaf9f282046e647fd..bf3ca1dafee6ff33447b68a36d187266d5573685 100644 --- a/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.ts +++ b/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.ts @@ -1,5 +1,6 @@ import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'; import { UntypedFormGroup } from '@angular/forms'; +import { pendingStructureLink } from '../../../../models/pendingStructure.model'; import { Structure } from '../../../../models/structure.model'; import { ProfileService } from '../../../../profile/services/profile.service'; import { StructureService } from '../../../../services/structure.service'; @@ -22,6 +23,7 @@ export class ProfileStructureChoiceComponent implements OnInit { public isAlreadySearching = false; public buttonTypeEnum = ButtonType; public profileStructuresLink: string[] = []; + public profilePendingStructureLink: pendingStructureLink[] = []; constructor(private structureService: StructureService, private profileService: ProfileService) {} @@ -29,7 +31,8 @@ export class ProfileStructureChoiceComponent implements OnInit { this.isAlreadySearching = true; this.profileService.getProfile().then((profile) => { this.isAlreadySearching = false; - this.profileStructuresLink = [...profile.structuresLink, ...profile.pendingStructuresLink]; + this.profileStructuresLink = [...profile.structuresLink]; + this.profilePendingStructureLink = [...profile.pendingStructuresLink]; this.getStructures(null); }); } @@ -68,7 +71,10 @@ export class ProfileStructureChoiceComponent implements OnInit { this.isAlreadySearching = true; this.structureService.getStructuresByName(filters).subscribe((structures) => { structures.forEach((structure) => { - if (this.profileStructuresLink.includes(structure._id)) { + if ( + this.profileStructuresLink.includes(structure._id) || + this.profilePendingStructureLink.map((pending) => pending.id).includes(structure._id) + ) { structure.alreadySelected = true; } }); diff --git a/src/app/models/pendingStructure.model.ts b/src/app/models/pendingStructure.model.ts new file mode 100644 index 0000000000000000000000000000000000000000..37f626067bc9efaaadf2912fbb245289949fb9f3 --- /dev/null +++ b/src/app/models/pendingStructure.model.ts @@ -0,0 +1,5 @@ +export class pendingStructureLink { + id: string; + token: string; + createdAt: string; +} diff --git a/src/app/models/user.model.ts b/src/app/models/user.model.ts index 55068beb893191f17000e8f26ad3dfffae59ece8..7d48ee8777a98942f0b1510305df20b66c5f15ea 100644 --- a/src/app/models/user.model.ts +++ b/src/app/models/user.model.ts @@ -1,5 +1,6 @@ import { Employer } from './employer.model'; import { Job } from './job.model'; +import { pendingStructureLink } from './pendingStructure.model'; export class User { _id: string; @@ -13,7 +14,7 @@ export class User { role: number; validationToken: string; structuresLink: string[]; - pendingStructuresLink: string[] = []; + pendingStructuresLink: pendingStructureLink[] = []; profileImage: string; personalOffers: string[] = []; job: Job; diff --git a/src/app/profile/profile-structure/profile-structure.component.html b/src/app/profile/profile-structure/profile-structure.component.html index 428635d98e976297178344cef978eddfed1b0dd6..08865074074f162ddbc4e79b0ea2b9ed502760d2 100644 --- a/src/app/profile/profile-structure/profile-structure.component.html +++ b/src/app/profile/profile-structure/profile-structure.component.html @@ -1,5 +1,5 @@ -<div class="structureCard" [ngClass]="{ fold: !showDetails }"> - <div class="collapseHeader" (click)="toggleDetails()"> +<div class="structureCard" [ngClass]="{ fold: !showDetails, pending: isPending }"> + <div class="collapseHeader" (click)="toggleDetails(); $event.stopPropagation()"> <div class="left"> <app-svg-icon [type]="'ico'" [icon]="getStructureTypeIcon()" [iconClass]="'icon-52'"></app-svg-icon> <div class="structureInfos"> @@ -8,7 +8,7 @@ </div> </div> <div class="right"> - <div class="missingData" *ngIf="!isPublic && !isValid()"> + <div class="missingData" *ngIf="!isPublic && !isValid() && !isPending"> <app-svg-icon [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'"></app-svg-icon> <p class="invalidText hide-on-mobile"> Informations @@ -16,6 +16,21 @@ manquantes </p> </div> + <div class="missingData" *ngIf="isPending"> + <p class="invalidText hide-on-mobile"> + En attente d'acceptation <br /> + Demande faite le {{ getFormattedDate() }} + </p> + </div> + <app-button + *ngIf="isPending" + class="hide-on-mobile" + [type]="'button'" + [iconType]="'form'" + [text]="'Annuler la demande'" + [style]="buttonTypeEnum.Secondary" + (click)="handleCancelJoin(structure._id); $event.stopPropagation()" + ></app-button> <app-svg-icon class="showDetails" [ngClass]="!showDetails ? 'visible' : 'hidden'" @@ -52,7 +67,7 @@ [routerLinkActive]="'active'" ></app-button> <app-button - *ngIf="!isPublic" + *ngIf="!isPublic && !isPending" class="hide-on-mobile" [type]="'button'" [iconBtn]="'edit'" @@ -63,7 +78,7 @@ [ngClass]="{ warning: !isValid() }" ></app-button> <app-button - *ngIf="!isPublic" + *ngIf="!isPublic && !isPending" class="hide-on-desktop" [type]="'button'" [iconBtn]="'edit'" @@ -84,7 +99,7 @@ </div> <app-personal-offer class="section" - *ngIf="this.personalOffer" + *ngIf="this.personalOffer && !isPending" [personalOffer]="personalOffer" [isPublic]="isPublic" > @@ -93,7 +108,7 @@ <div class="sectionHeader"> <p class="sectionTitle">membres</p> <app-button - *ngIf="!isPublic" + *ngIf="!isPublic && !isPending" class="hide-on-mobile" [type]="'button'" [iconBtn]="'edit'" @@ -103,7 +118,7 @@ [routerLinkActive]="'active'" ></app-button> <app-button - *ngIf="!isPublic" + *ngIf="!isPublic && !isPending" class="hide-on-desktop" [type]="'button'" [iconBtn]="'edit'" @@ -120,7 +135,7 @@ ></app-profile-structure-member> </div> </div> - <div class="call-to-action" *ngIf="!isPublic && members.length === 0"> + <div class="call-to-action" *ngIf="!isPublic && members.length === 0 && !isPending"> <app-button [type]="'button'" [iconBtn]="'add'" @@ -130,7 +145,10 @@ (click)="addMemberModalOpenned = true" ></app-button> </div> - <div class="call-to-action" *ngIf="!isPublic && !this.personalOffer && userProfile.job?.hasPersonalOffer"> + <div + class="call-to-action" + *ngIf="!isPublic && !this.personalOffer && userProfile.job?.hasPersonalOffer && !isPending" + > <app-button [type]="'button'" [iconBtn]="'add'" @@ -143,7 +161,7 @@ </div> </div> <app-structure-add-member-modal - *ngIf="addMemberModalOpenned" + *ngIf="addMemberModalOpenned && !isPending" [openned]="addMemberModalOpenned" [structure]="structureWithOwners" (closed)="closeAddMemberModal($event)" diff --git a/src/app/profile/profile-structure/profile-structure.component.scss b/src/app/profile/profile-structure/profile-structure.component.scss index a8a0e1a97f122ac46132f394d5d2711d645e35f6..9ec224513661bbb6e3b4869a477c1592083be185 100644 --- a/src/app/profile/profile-structure/profile-structure.component.scss +++ b/src/app/profile/profile-structure/profile-structure.component.scss @@ -8,11 +8,13 @@ border: 1px solid $grey-5; border-radius: 4px; overflow: hidden; - &.fold { background-color: $grey-8; border: 1px solid $grey-8; } + &.pending { + border: 1px solid $orange-warning; + } .collapseHeader { padding: 0 0.5rem; @@ -31,6 +33,11 @@ .right { display: flex; + align-items: center; + ::ng-deep button { + margin-right: 1rem; + margin-top: 0.25rem; + } .showDetails { transition: all 0.3s; &.visible { diff --git a/src/app/profile/profile-structure/profile-structure.component.ts b/src/app/profile/profile-structure/profile-structure.component.ts index 700c8fc3044991062cef08db0e5adb4e07c04ebb..ddeddf874cf1b83a71953aa659181e229fcf8602 100644 --- a/src/app/profile/profile-structure/profile-structure.component.ts +++ b/src/app/profile/profile-structure/profile-structure.component.ts @@ -1,11 +1,11 @@ import { animate, AUTO_STYLE, state, style, transition, trigger } from '@angular/animations'; -import { Component, Input, OnInit } from '@angular/core'; +import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { Router } from '@angular/router'; +import { DateTime } from 'luxon'; import { structureFormStep } from '../../form/form-view/structure-form/structureFormStep.enum'; import { Structure } from '../../models/structure.model'; import { StructureWithOwners } from '../../models/structureWithOwners.model'; -import { NotificationService } from '../../services/notification.service'; import { StructureService } from '../../services/structure.service'; import { ButtonType } from '../../shared/components/button/buttonType.enum'; import { SearchService } from '../../structure-list/services/search.service'; @@ -32,6 +32,10 @@ export class ProfileStructureComponent implements OnInit { @Input() public structureWithOwners: StructureWithOwners; @Input() public userProfile: User; @Input() public isPublic: boolean; + @Input() public isPending = false; + @Input() public joinRequestDate: string | null; + @Output() cancelJoin = new EventEmitter<any>(); + public members: User[] = []; public structureForm: FormGroup; public buttonTypeEnum = ButtonType; @@ -43,7 +47,6 @@ export class ProfileStructureComponent implements OnInit { constructor( private router: Router, private userService: UserService, - private notificationService: NotificationService, private searchService: SearchService, private structureService: StructureService, public utils: Utils @@ -132,4 +135,11 @@ export class ProfileStructureComponent implements OnInit { }); } } + public getFormattedDate(): string { + if (this.joinRequestDate) return DateTime.fromISO(this.joinRequestDate, { zone: 'Europe/Paris' }).toISODate(); + } + + public handleCancelJoin(idStructure: string): void { + this.cancelJoin.emit(idStructure); + } } diff --git a/src/app/profile/profile.component.html b/src/app/profile/profile.component.html index 4da17b1d30781623bc09eb7075381824718e8b2c..5fe6c53a59d63bbe4c251089ba06ebbfa0c549fe 100644 --- a/src/app/profile/profile.component.html +++ b/src/app/profile/profile.component.html @@ -83,7 +83,20 @@ [routerLinkActive]="'active'" ></app-button> </div> - <div class="structuresContainer" *ngIf="userProfile.structuresLink.length > 0 && structures"> + <div + class="structuresContainer" + *ngIf="userProfile.structuresLink.length > 0 || userProfile.pendingStructuresLink.length > 0" + > + <div *ngFor="let structure of pendingStructures; let i = index"> + <app-profile-structure + [structureWithOwners]="structure" + [userProfile]="this.userProfile" + [isPublic]="this.isPublic" + [isPending]="true" + [joinRequestDate]="userProfile.pendingStructuresLink[i].createdAt" + (cancelJoin)="cancelJoin($event)" + ></app-profile-structure> + </div> <div *ngFor="let structure of structures; let i = index"> <app-profile-structure [structureWithOwners]="structure" diff --git a/src/app/profile/profile.component.ts b/src/app/profile/profile.component.ts index 68375a50c359942701c52ec8cc260bf314ec0dd9..0813bb5ec5e75d1fe5b0921d5d6f050a08c2549f 100644 --- a/src/app/profile/profile.component.ts +++ b/src/app/profile/profile.component.ts @@ -10,6 +10,8 @@ import { Utils } from '../utils/utils'; import { catchError, map, tap } from 'rxjs/operators'; import { forkJoin, Observable } from 'rxjs'; import { Location } from '@angular/common'; +import { NotificationService } from '../services/notification.service'; +import { pendingStructureLink } from '../models/pendingStructure.model'; @Component({ selector: 'app-profile', @@ -19,6 +21,7 @@ import { Location } from '@angular/common'; export class ProfileComponent implements OnInit { public userProfile: User; public structures: StructureWithOwners[] = []; + public pendingStructures: StructureWithOwners[] = []; public buttonTypeEnum = ButtonType; public isPublic: boolean; @@ -29,7 +32,8 @@ export class ProfileComponent implements OnInit { private route: ActivatedRoute, private router: Router, private location: Location, - public utils: Utils + public utils: Utils, + private notificationService: NotificationService ) {} ngOnInit(): void { @@ -49,12 +53,14 @@ export class ProfileComponent implements OnInit { .subscribe((user) => { this.userProfile = new User(user); this.getStructuresFromProfile(); + this.getPendingStructuresFromProfile(); }); } else { this.isPublic = false; this.profileService.getProfile().then((profile: User) => { this.userProfile = new User(profile); this.getStructuresFromProfile(); + this.getPendingStructuresFromProfile(); }); } }); @@ -77,6 +83,22 @@ export class ProfileComponent implements OnInit { this.structures.sort((a, b) => a.structure.structureName.localeCompare(b.structure.structureName)); }); } + private getPendingStructuresFromProfile() { + const structures$: Observable<any>[] = []; + this.structures = []; + this.userProfile.pendingStructuresLink.forEach((pending: pendingStructureLink) => { + structures$.push( + this.structureService.getStructureWithOwners(pending.id, null).pipe( + tap((structure) => { + this.pendingStructures.push(structure); + }) + ) + ); + }); + forkJoin(structures$).subscribe(() => { + this.pendingStructures.sort((a, b) => a.structure.structureName.localeCompare(b.structure.structureName)); + }); + } public goBack(): void { this.location.back(); @@ -85,4 +107,17 @@ export class ProfileComponent implements OnInit { public addStructure(): void { this.router.navigateByUrl('/form/structure'); } + public cancelJoin(idStructure: string): void { + this.userService.cancelJoin(idStructure, this.userProfile._id).subscribe({ + next: () => { + const index = this.pendingStructures.map((s) => s.structure._id).indexOf(idStructure); + this.pendingStructures.splice(index, 1); + this.notificationService.showSuccess('La demande a été annulée avec succès', ''); + }, + error: (err) => { + this.notificationService.showError(`${err.error.message}`, 'Une erreur est survenue'); + console.error(err); + }, + }); + } } diff --git a/src/app/profile/services/profile.service.ts b/src/app/profile/services/profile.service.ts index 9582385992a5b67d0eec8ed283bc5b1d5505b94d..0925fa451ebf1894a8be15ec95e229c8051546df 100644 --- a/src/app/profile/services/profile.service.ts +++ b/src/app/profile/services/profile.service.ts @@ -49,16 +49,7 @@ export class ProfileService { if (!this.currentProfile) { return false; } - return this.currentProfile.pendingStructuresLink.includes(idStructure); - } - - public removeProfile(): void { - this.currentProfile = null; - } - - public createUserandLinkStructure(id: string, body: User): Observable<User> { - body.pendingStructuresLink = [id]; - return this.http.post<any>(`${this.baseUrl}`, body); + return this.currentProfile.pendingStructuresLink.map((pending) => pending.id).includes(idStructure); } public isAdmin(): boolean { diff --git a/src/app/services/structure.service.ts b/src/app/services/structure.service.ts index e711e20424425645105e8df5c74b6a35e35eebab..936248d6dee8dc55ac289717a24388822d41c33d 100644 --- a/src/app/services/structure.service.ts +++ b/src/app/services/structure.service.ts @@ -3,15 +3,11 @@ import { Injectable } from '@angular/core'; import * as _ from 'lodash'; import { Observable } from 'rxjs'; import { map } from 'rxjs/operators'; -import { OpeningDay } from '../models/openingDay.model'; import { Structure } from '../models/structure.model'; import { StructureWithOwners } from '../models/structureWithOwners.model'; import { TempUser } from '../models/temp-user.model'; import { User } from '../models/user.model'; -import { WeekDayEnum } from '../shared/enum/weekDay.enum'; -import { Weekday } from '../structure-list/enum/weekday.enum'; import { Filter } from '../structure-list/models/filter.model'; -const { DateTime } = require('luxon'); @Injectable({ providedIn: 'root', @@ -54,10 +50,6 @@ export class StructureService { return this.http.get<Structure>(`${this.baseUrl}/${id}`); } - public joinStructure(id: string, email: string): Observable<Structure> { - return this.http.post<any>(`${this.baseUrl}/${id}/join`, { email }); - } - public delete(id: string): Observable<Structure> { return this.http.delete<Structure>(`${this.baseUrl}/${id}`); } @@ -103,78 +95,6 @@ export class StructureService { }); } - /** - * Checks if the current time is in the time interval of the structure - * @param startTime start of period - * @param endTime end of period - * @param currentTime actual time - */ - private compareSchedules(startTime: string, endTime: string, currentTime: typeof DateTime): boolean { - const day = currentTime.toISO().split('T')[0]; - let start = DateTime.fromISO(`${day}T${startTime}`); - if (startTime.length === 4) { - start = DateTime.fromISO(`${day}T0${startTime}`); - } - const end = DateTime.fromISO(`${day}T${endTime}`); - return currentTime > start && currentTime < end; - } - - // Get enum key - private getEnumKeyByEnumValue(enumBase, enumValue): number { - let keys = Object.keys(enumBase).filter((x) => { - if (enumBase[x].toString().toLowerCase() == enumValue) { - return x; - } - }); - return keys.length > 0 ? parseInt(keys[0]) : null; - } - - private getNextOpening(s: Structure, dayOfWeek: number, currentTime: typeof DateTime): OpeningDay { - let periodBeforeCurrentDay = null; - const time = currentTime.toISO().split('T')[1]; - const currentHour = new Date('1/1/1999 ' + time.split('+')[0]); - - // Browse day of week - for (const [i, period] of Object.entries(s.hours)) { - if (period.open) { - // Check if it's current day - if (i === this.numberToDay(dayOfWeek)) { - if ( - (new Date('1/1/1999 ' + period.time[0].opening) <= currentHour && - new Date('1/1/1999 ' + period.time[0].closing) >= currentHour) || - (period.time[1] && - new Date('1/1/1999 ' + period.time[1].opening) <= currentHour && - new Date('1/1/1999 ' + period.time[1].closing) >= currentHour) - ) { - return new OpeningDay(i, null); - } else if (new Date('1/1/1999 ' + period.time[0].opening) > currentHour) { - return new OpeningDay(i, this.numberToHour(period.time[0].opening)); - } else if (period.time[1] && new Date('1/1/1999 ' + period.time[1].opening) > currentHour) { - return new OpeningDay(i, this.numberToHour(period.time[1].opening)); - } - // Return the next day > current day. - } else if ( - this.getEnumKeyByEnumValue(WeekDayEnum, i) > - this.getEnumKeyByEnumValue(WeekDayEnum, this.numberToDay(dayOfWeek)) - ) { - return new OpeningDay(i, this.numberToHour(period.time[0].opening)); - // Return the next day < current day. - } else if (!periodBeforeCurrentDay) { - periodBeforeCurrentDay = new OpeningDay(i, this.numberToHour(period.time[0].opening)); - } - } - } - return periodBeforeCurrentDay ? periodBeforeCurrentDay : ''; - } - - private numberToDay(n: number): string { - return Weekday[n]; - } - - private numberToHour(n: string): string { - return n.replace(':', 'h'); - } - public getStructureWithOwners(structureId: string, profile: User): Observable<StructureWithOwners> { return this.http.post<any>(`${this.baseUrl}/${structureId}/withOwners`, { emailUser: profile?.email }); } diff --git a/src/app/services/user.service.ts b/src/app/services/user.service.ts index f6acfef458d8d0cd8dfa06e2725fbf25102ba018..1bcb892b6c397f8ab1eddf6531937d6fc8733154 100644 --- a/src/app/services/user.service.ts +++ b/src/app/services/user.service.ts @@ -1,6 +1,7 @@ import { HttpClient } from '@angular/common/http'; import { Injectable } from '@angular/core'; import { Observable } from 'rxjs'; +import { Structure } from '../models/structure.model'; import { User } from '../models/user.model'; @Injectable({ @@ -13,4 +14,15 @@ export class UserService { public getUser(userId: string): Observable<User> { return this.http.get<User>(`${this.baseUrl}/${userId}`); } + public joinStructure(id: string, email: string): Observable<Structure> { + return this.http.post<any>(`${this.baseUrl}/join-request/${id}`, { email }); + } + + public validateJoinStructure(token: string, status: string): Observable<any> { + return this.http.get<any>(`${this.baseUrl}/join-validate/${token}/${status}`); + } + public cancelJoin(idStructure: string, idUser: string): Observable<any> { + return this.http.get<any>(`${this.baseUrl}/join-cancel/${idStructure}/${idUser} + `); + } } 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 d39b0625ae9413a1151bbcc4765e559daa06710f..e1866193f4ff93221bfc31a4a999734ae8b34d44 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 @@ -53,7 +53,10 @@ </div> <!-- Je travaille ici --> <div - *ngIf="!profileService.isLinkedToStructure(structure._id)" + *ngIf=" + !profileService.isLinkedToStructure(structure._id) && + !profileService.isPendingLinkedToStructure(structure._id) + " class="clickableDiv" role="button" (click)="handleJoin()" 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 a483ea0caca97dbcaa38a74db3fd54615a68eea9..829f53c61bacd4b77c1ef6e9544855c12d686464 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 @@ -11,6 +11,7 @@ import { ProfileService } from '../../../profile/services/profile.service'; import { AuthService } from '../../../services/auth.service'; import { StructureService } from '../../../services/structure.service'; import { TclService } from '../../../services/tcl.service'; +import { UserService } from '../../../services/user.service'; import { PrintService } from '../../../shared/service/print.service'; import { Utils } from '../../../utils/utils'; import { AccessModality } from '../../enum/access-modality.enum'; @@ -71,7 +72,8 @@ export class StructureDetailsComponent implements OnInit { private parametersService: ParametersService, private route: ActivatedRoute, private location: Location, - private router: Router + private router: Router, + private usersService: UserService ) { this.route.url.subscribe((url) => { if (url.length > 0 && url[0].path === 'structure') { @@ -229,15 +231,15 @@ export class StructureDetailsComponent implements OnInit { this.structureService .claimStructureWithAccount(this.structure._id, this.authService.userValue.username) .subscribe(); - this.router.navigate(['join', this.structure._id], { state: { isClaimed: this.structure.isClaimed } }); + this.router.navigate(['join-request', this.structure._id], { state: { isClaimed: this.structure.isClaimed } }); } } public joinStructure(shouldJoin: boolean): void { this.toggleJoinModal(); if (shouldJoin) { - this.structureService.joinStructure(this.structure._id, this.authService.userValue.username).subscribe(); - this.router.navigate(['join', this.structure._id], { state: { isClaimed: this.structure.isClaimed } }); + this.usersService.joinStructure(this.structure._id, this.authService.userValue.username).subscribe(); + this.router.navigate(['join-request', this.structure._id], { state: { isClaimed: this.structure.isClaimed } }); } } diff --git a/src/app/structure/enums/joinErrors.enum.ts b/src/app/structure/enums/joinErrors.enum.ts new file mode 100644 index 0000000000000000000000000000000000000000..8013c9ed7cf9692a6c0bd90c4b4f10606cbae956 --- /dev/null +++ b/src/app/structure/enums/joinErrors.enum.ts @@ -0,0 +1,5 @@ +export enum JoinErrors { + Expired = 'Demande expirée', + Other = 'Une erreur inconnue est survenue', + AlreadyLinked = 'Demande déjà traitée', +} diff --git a/src/app/structure/interfaces/tokenValidation.interface.ts b/src/app/structure/interfaces/tokenValidation.interface.ts new file mode 100644 index 0000000000000000000000000000000000000000..2e98ef7b78c0630f5fd10272878cb52728ae150d --- /dev/null +++ b/src/app/structure/interfaces/tokenValidation.interface.ts @@ -0,0 +1,5 @@ +export interface IValidationToken { + userId: string; + idStructure: string; + expiresAt: string; +} diff --git a/src/app/structure/structure-join/structure-join.component.html b/src/app/structure/structure-join/structure-join.component.html index 6f9040b7ed1d1151cf9151b73c71d2d165905af5..ca068e210fd765df556dad3663ade4a59ea514e3 100644 --- a/src/app/structure/structure-join/structure-join.component.html +++ b/src/app/structure/structure-join/structure-join.component.html @@ -14,4 +14,46 @@ </div> </div> </ng-container> + <div *ngIf="isLoading" class="loader"> + <img class="loader-gif" src="/assets/gif/loader_circle_grey.gif" alt /> + </div> + <ng-container *ngIf="!structureName && !isLoading && validationToken"> + <div class="container"> + <div class="page"> + <img *ngIf="error" src="../../../assets/img/joinError.svg" alt="join error" /> + <img + *ngIf="!error && isStructureJoinValidated == 'true'" + src="../../../assets/img/joinAccepted.svg" + alt="join accepted" + /> + <img + *ngIf="!error && isStructureJoinValidated == 'false'" + src="../../../assets/img/joinRefused.svg" + alt="join refused" + /> + <h2 *ngIf="error && error === 404"> + {{ errorEnum.Other }} + </h2> + <h2 *ngIf="error && error === 403"> + {{ errorEnum.Expired }} + </h2> + <h2 *ngIf="error && error === 422"> + {{ errorEnum.AlreadyLinked }} + </h2> + <h2 *ngIf="this.structureJoinedId && !error"> + L'utilisateur a été {{ isStructureJoinValidated == 'true' ? 'accepté' : 'refusé' }} dans la structure. + </h2> + <div class="subtitle" *ngIf="this.structureJoinedId && !error"> + Vous avez {{ isStructureJoinValidated == 'true' ? 'accepté' : 'refusé' }} la demande d'ajout dans la structure + {{ structureJoinedName }} + </div> + <div class="subtitle" *ngIf="error && (error === 403 || error === 422)"> + Il semblerait que la demande d’adhésion ait déjà été traitée ou que le mail soit expiré. + </div> + </div> + <div class="button"> + <app-button [style]="buttonTypeEnum.Primary" [text]="'Ok'" (action)="handleCallback()"> </app-button> + </div> + </div> + </ng-container> </div> diff --git a/src/app/structure/structure-join/structure-join.component.scss b/src/app/structure/structure-join/structure-join.component.scss index b69d3cbdcde0cbdf818471c6ed36573255e940cc..9991939fb5221c3b178c087247772b90c803714a 100644 --- a/src/app/structure/structure-join/structure-join.component.scss +++ b/src/app/structure/structure-join/structure-join.component.scss @@ -43,8 +43,18 @@ @media #{$tablet} { width: unset; } + h2 { + margin: 0; + } + .subtitle { + max-width: 600px; + } } .button { margin-top: 16px; } + +.loader { + margin: auto; +} diff --git a/src/app/structure/structure-join/structure-join.component.ts b/src/app/structure/structure-join/structure-join.component.ts index dcf97e5369e28065b7912f51dd945400471faf41..02e293e896a48e3f94f371432848de263f08c430 100644 --- a/src/app/structure/structure-join/structure-join.component.ts +++ b/src/app/structure/structure-join/structure-join.component.ts @@ -5,6 +5,8 @@ import { structureFormStep } from '../../form/form-view/structure-form/structure import { Structure } from '../../models/structure.model'; import { RouterListenerService } from '../../services/routerListener.service'; import { ButtonType } from '../../shared/components/button/buttonType.enum'; +import { JoinErrors } from '../enums/joinErrors.enum'; +import { UserService } from '../../services/user.service'; @Component({ selector: 'app-structure-join', templateUrl: './structure-join.component.html', @@ -17,8 +19,20 @@ export class StructureJoinComponent implements OnInit { public formTypeEnum = formType; public buttonTypeEnum = ButtonType; public structure: Structure; + public isStructureJoinValidated = null; + public validationToken = null; + public isLoading: boolean; + public structureJoinedId: string; + public structureJoinedName: string; + public error: any; + public errorEnum = JoinErrors; - constructor(private routerListener: RouterListenerService, private route: ActivatedRoute, private router: Router) {} + constructor( + private routerListener: RouterListenerService, + private route: ActivatedRoute, + private router: Router, + private usersService: UserService + ) {} ngOnInit(): void { this.isClaimed = history.state.isClaimed; @@ -26,13 +40,40 @@ export class StructureJoinComponent implements OnInit { if (data.structure) { this.structureName = data.structure.structureName; this.structure = data.structure; + } else { + this.isLoading = true; } }); + this.handleStructureJoin(); + } + public handleStructureJoin(): void { + this.route.queryParams.subscribe((params) => { + this.isStructureJoinValidated = params['status']; + this.validationToken = params['token']; + }); + if (this.isStructureJoinValidated !== null && this.validationToken) { + this.usersService.validateJoinStructure(this.validationToken, this.isStructureJoinValidated).subscribe({ + next: (res) => { + this.structureJoinedId = res.id; + this.structureJoinedName = res.name; + }, + error: (err) => { + this.error = err.status; + console.error(err); + this.isLoading = false; + }, + complete: () => (this.isLoading = false), + }); + } } - handleFinish() { - if (this.isClaimed) { - this.router.navigate(['/form/personaloffer'], { state: { structure: this.structure } }); - } else this.routerListener.goToPreviousUrl(); + public handleFinish(): void { + this.routerListener.goToPreviousUrl(); + } + public handleCallback(): any { + if (this.structureJoinedId) { + return this.router.navigateByUrl(`/acteurs?id=${this.structureJoinedId}`); + } + return this.router.navigateByUrl(`/acteurs`); } } diff --git a/src/assets/img/joinAccepted.svg b/src/assets/img/joinAccepted.svg new file mode 100644 index 0000000000000000000000000000000000000000..ddc89cfca12071997df7bc8f744eb204eff5be37 --- /dev/null +++ b/src/assets/img/joinAccepted.svg @@ -0,0 +1,197 @@ +<svg width="200" height="201" viewBox="0 0 200 201" fill="none" xmlns="http://www.w3.org/2000/svg"> +<g clip-path="url(#clip0_11499_201361)"> +<path d="M34.0001 113.833L12.9833 101.799C6.72166 98.2136 6.70077 92.3726 12.9367 88.7723L40.3447 72.9483C46.5625 69.3584 56.6436 69.3584 62.8614 72.9483L178.986 139.993" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M109.406 131.833L27.9999 178.833" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M34 113.833L115.406 160.833" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M180.084 142.273L190.103 147.951C196.42 151.53 196.467 157.397 190.208 161.011L164.414 175.903C158.196 179.493 148.115 179.493 141.898 175.903L115.292 160.543" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M139.719 144.533C141.096 145.326 141.102 146.625 139.735 147.417L95.7302 172.993C94.358 173.79 92.1268 173.785 90.749 172.993L44.3731 146.218C42.9954 145.426 42.9842 144.132 44.3564 143.334L88.3616 117.759C89.7282 116.967 91.965 116.967 93.3428 117.759L139.719 144.533Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M130.487 144.695C131.597 145.337 131.602 146.38 130.498 147.021L95.016 167.643C93.9115 168.285 92.1098 168.285 90.9998 167.643L53.6046 146.051C52.4945 145.409 52.489 144.366 53.5934 143.725L89.0754 123.103C90.1798 122.461 91.9815 122.461 93.0916 123.103L130.487 144.695Z" fill="#EDEDED"/> +<path d="M58.6528 105.593V144.522L92.6845 163.989V125.055L58.6528 105.593Z" fill="white"/> +<path d="M58.6528 105.593V144.522L92.6845 163.989V125.055L58.6528 105.593Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M92.6845 125.055L126.672 105.565L92.6845 86.0587L58.6528 105.593L92.6845 125.055Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M92.7069 122.182L121.623 105.598L92.7069 89.0038L63.7568 105.621L92.7069 122.182Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M126.672 105.565L126.722 144.522L92.6846 163.99V125.055L126.672 105.565Z" fill="white"/> +<path d="M126.672 105.565L126.722 144.522L92.6846 163.99V125.055L126.672 105.565Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M92.6847 81.6018L58.6475 101.142L92.6847 120.603L126.672 101.108L92.6847 81.6018ZM63.757 101.175L92.707 84.5526L121.618 101.153L92.707 117.736L63.757 101.175Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M58.6528 101.142V108.12L92.6845 127.587V120.603L58.6528 101.142Z" fill="white"/> +<path d="M58.6528 101.142V108.12L92.6845 127.587V120.603L58.6528 101.142Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M92.6846 120.604V127.202L126.672 107.707V101.114L92.6846 120.604Z" fill="white"/> +<path d="M92.6846 120.604V127.202L126.672 107.707V101.114L92.6846 120.604Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M92.707 84.5526V89.0039L117.741 103.373L121.624 101.153L92.707 84.5526Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M63.7568 101.175L92.7069 84.5526V89.0039L67.6001 103.373L63.7568 101.175Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M115.454 118.088V128.268L122.031 124.514L123.107 123.906V113.72L115.454 118.088Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M115.454 118.093V127.152L122.031 123.398V114.345L115.454 118.093Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M105.748 123.426V133.611L112.33 129.852L113.401 129.244V119.064L105.748 123.426Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M105.748 123.431V132.496L112.33 128.742V119.683L105.748 123.431Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M96.2544 128.39V138.57L102.831 134.822L103.907 134.208V124.028L96.2544 128.39Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M96.2544 128.396V137.46L102.831 133.706V124.647L96.2544 128.396Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M115.477 130.51V140.69L122.053 136.941L123.13 136.328V126.142L115.477 130.51Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M115.477 130.516V139.58L122.053 135.826V126.767L115.477 130.516Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M105.776 135.848V146.028L112.353 142.28L113.429 141.666V131.486L105.776 135.848Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M105.776 135.854V144.918L112.353 141.164V132.105L105.776 135.854Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M96.2827 140.818V150.998L102.859 147.244L103.93 146.636V136.451L96.2827 140.818Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M96.2827 140.824V149.883L102.859 146.129V137.075L96.2827 140.824Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M82.2759 156.046L82.3093 130.025L90.4087 134.699L90.3752 160.721L82.2759 156.046Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M59.9585 143.167L59.992 117.145L68.0913 121.819L68.0578 147.841L59.9585 143.167Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M79.5038 132.44L79.4368 156.492L67.2544 149.459L67.3213 125.406L79.5038 132.44Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M65.4363 125.283L68.2476 123.655L68.1695 149.994L65.3638 151.628L65.4363 125.283Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M79.5874 131.536L82.3987 129.902L82.315 158.16L79.5093 159.795L79.5874 131.536Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M63.7236 122.377L66.535 120.748L82.3989 129.902L79.5876 131.536L63.7236 122.377Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M79.5876 131.536L79.5095 159.795L77.7914 158.802L77.864 132.462L65.4361 125.283L65.3636 151.628L63.6455 150.635L63.7236 122.377L79.5876 131.536Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M65.375 129.294L66.2006 128.814L77.8587 135.552L77.8643 136.512L65.375 129.294Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M77.8642 136.512L77.8474 140.623L65.3638 133.405L65.3749 129.294L77.8642 136.512Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M76.5416 144.048L76.536 147.339L75.4204 146.698L75.4316 143.406L76.5416 144.048Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M75.5712 144.885L75.3871 145.108C75.3313 145.175 75.2365 145.203 75.1472 145.175L74.1041 144.84C73.9479 144.79 73.7918 144.924 73.8197 145.086C73.8364 145.169 73.8922 145.231 73.9703 145.258L75.5935 145.766C75.6548 145.788 75.7273 145.777 75.7831 145.738L76.2294 145.443C76.3632 145.353 76.3632 145.164 76.2294 145.074L75.8612 144.835C75.7664 144.779 75.6437 144.795 75.5712 144.885Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M58.6528 63.5233V102.458L92.6901 121.92V82.9851L58.6528 63.5233Z" fill="white"/> +<path d="M58.6528 63.5233V102.458L92.6901 121.92V82.9851L58.6528 63.5233Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M92.6901 82.9851L126.672 63.4954L92.6901 43.989L58.6528 63.5233L92.6901 82.9851Z" fill="white"/> +<path d="M92.6901 82.9851L126.672 63.4954L92.6901 43.989L58.6528 63.5233L92.6901 82.9851Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M126.671 63.4954L126.722 102.458L92.6899 121.92V82.9851L126.671 63.4954Z" fill="white"/> +<path d="M126.671 63.4954L126.722 102.458L92.6899 121.92V82.9851L126.671 63.4954Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M68.5315 76.4029V86.5828L61.9494 82.8288L60.8784 82.2208V72.0409L68.5315 76.4029Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M68.5257 76.4084V85.4672L61.9492 81.7132V72.6544L68.5257 76.4084Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M78.2317 81.7412V91.9267L71.6552 88.1726L70.5786 87.5591V77.3792L78.2317 81.7412Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M78.2318 81.7467V90.8055L71.6553 87.057V77.9983L78.2318 81.7467Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M87.7256 86.7055V96.8911L81.1491 93.137L80.0781 92.529V82.3435L87.7256 86.7055Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M87.7254 86.7112V95.7755L81.1489 92.0215V82.9628L87.7254 86.7112Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M68.6321 88.8253V99.0052L62.0556 95.2568L60.979 94.6432V84.4633L68.6321 88.8253Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M68.6322 88.8308V97.8951L62.0557 94.1411V85.0824L68.6322 88.8308Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M78.3321 94.1692V104.349L71.7611 100.595L70.6846 99.9871V89.8071L78.3321 94.1692Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M78.3324 94.1746V103.233L71.7559 99.4793V90.4205L78.3324 94.1746Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M87.8318 99.1334V109.313L81.2553 105.559L80.1787 104.957V94.7714L87.8318 99.1334Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M87.8258 99.1391V108.198L81.2549 104.444V95.3906L87.8258 99.1391Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M115.454 76.018V86.198L122.031 82.4439L123.107 81.8359V71.656L115.454 76.018Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M115.454 76.0236V85.0824L122.031 81.3283V72.2751L115.454 76.0236Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M105.754 81.3562V91.5417L112.33 87.7877L113.401 87.1741V76.9941L105.754 81.3562Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M105.754 81.3617V90.426L112.33 86.672V77.6133L105.754 81.3617Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M96.2544 86.3206V96.5006L102.836 92.7521L103.907 92.1385V81.9586L96.2544 86.3206Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M96.2544 86.3262V95.3905L102.837 91.6365V82.5778L96.2544 86.3262Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M115.476 88.4404V98.6259L122.058 94.8719L123.129 94.2583V84.0784L115.476 88.4404Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M115.476 88.4459V97.5103L122.058 93.7562V84.6975L115.476 88.4459Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M105.776 93.7842V103.964L112.352 100.21L113.429 99.6021V89.4221L105.776 93.7842Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M105.776 93.7898V102.854L112.352 99.1001V90.0358L105.776 93.7898Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M96.2822 98.7486V108.929L102.859 105.175L103.935 104.567V94.3866L96.2822 98.7486Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M96.2822 98.7542V107.813L102.859 104.064V95.0057L96.2822 98.7542Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M58.6528 61.5039V63.5232L92.9634 83.7826V81.7634L58.6528 61.5039Z" fill="white"/> +<path d="M58.6528 61.5039V63.5232L92.9634 83.7826V81.7634L58.6528 61.5039Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M92.9634 81.7634L126.549 62.508L92.2829 42.1984L58.6528 61.504L92.9634 81.7634Z" fill="white"/> +<path d="M92.9634 81.7634L126.549 62.508L92.2829 42.1984L58.6528 61.504L92.9634 81.7634Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M126.549 62.5081L126.599 64.5496L92.9634 83.7827V81.7635L126.549 62.5081Z" fill="white"/> +<path d="M126.549 62.5081L126.599 64.5496L92.9634 83.7827V81.7635L126.549 62.5081Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M90.7543 41.1665L60.5659 58.4975L64.5877 60.7956L92.9688 77.2955L119.135 62.2906L123.113 60.0092L90.7543 41.1665ZM92.9855 74.7463L65.0953 58.5254L90.7766 43.7826L118.639 60.037L116.927 61.0188L92.9855 74.7463Z" fill="white"/> +<path d="M90.7543 41.1665L60.5659 58.4975L64.5877 60.7956L92.9688 77.2955L119.135 62.2906L123.113 60.0092L90.7543 41.1665ZM92.9855 74.7463L65.0953 58.5254L90.7766 43.7826L118.639 60.037L116.927 61.0188L92.9855 74.7463Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M60.5659 58.4974V60.6283L92.9632 79.4319V77.301L60.5659 58.4974Z" fill="white"/> +<path d="M60.5659 58.4974V60.6283L92.9632 79.4319V77.301L60.5659 58.4974Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M92.9634 77.301V79.4318L123.113 62.1399V60.009L92.9634 77.301Z" fill="white"/> +<path d="M92.9634 77.301V79.4318L123.113 62.1399V60.009L92.9634 77.301Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M90.771 43.7826L90.8045 46.2035L116.542 61.2419L118.628 60.037L90.771 43.7826Z" fill="white"/> +<path d="M90.771 43.7826L90.8045 46.2035L116.542 61.2419L118.628 60.037L90.771 43.7826Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M65.0898 58.5254L90.7767 43.7826L90.8102 46.2035L67.1983 59.7247L65.0898 58.5254Z" fill="white"/> +<path d="M65.0898 58.5254L90.7767 43.7826L90.8102 46.2035L67.1983 59.7247L65.0898 58.5254Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M97.1886 55.8248C100.374 57.6609 100.393 60.642 97.2281 62.478C94.0627 64.314 88.9165 64.314 85.7314 62.478C82.5463 60.642 82.5331 57.6609 85.6985 55.8248C88.8639 53.9888 94.0035 53.9822 97.1886 55.8248Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M183.915 137.345C187.146 139.208 187.16 142.228 183.955 144.097C180.75 145.966 175.531 145.959 172.3 144.097C169.069 142.235 169.056 139.214 172.267 137.345C175.472 135.483 180.684 135.483 183.915 137.345Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M178 107.833L178 140.5" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/> +<rect x="0.433013" y="0.25" width="44.4182" height="78.6483" rx="4.5" transform="matrix(0.866025 -0.5 2.20305e-08 1 156.725 34.9453)" fill="white" stroke="#706F6F"/> +<path d="M197.06 9.2409C197.357 9.06837 197.599 9.20641 197.603 9.55146L197.616 14.3693C197.616 14.71 197.374 15.1284 197.077 15.3009L193.652 17.2763C193.354 17.4489 193.113 17.3108 193.109 16.9658L193.096 12.148C193.096 11.8072 193.337 11.3889 193.635 11.2163L197.06 9.2409Z" fill="#DA3635"/> +<path d="M196.391 11.6261C196.421 11.6089 196.447 11.6046 196.473 11.6175C196.516 11.6434 196.516 11.7253 196.473 11.803L195.723 13.1012V13.1875L196.477 13.6188C196.521 13.6447 196.521 13.7266 196.477 13.8043C196.456 13.8431 196.43 13.869 196.4 13.8862C196.374 13.9035 196.344 13.9078 196.318 13.8949L195.563 13.4636L195.49 13.5067L194.739 14.8049C194.718 14.8438 194.692 14.8696 194.662 14.8869C194.631 14.9041 194.606 14.9085 194.58 14.8955C194.537 14.8653 194.537 14.7834 194.58 14.71L195.33 13.4118V13.3255L194.575 12.8942C194.532 12.8683 194.532 12.7864 194.575 12.7087C194.597 12.6699 194.627 12.6397 194.653 12.6268C194.683 12.6095 194.709 12.6052 194.735 12.6182L195.49 13.0495L195.563 13.0064L196.314 11.7081C196.331 11.6736 196.361 11.6434 196.391 11.6261Z" fill="white"/> +<path d="M165.838 52.9246C166.636 52.4631 167.287 52.8341 167.291 53.7528L167.304 58.0832C167.309 59.0019 166.657 60.1233 165.859 60.5848L161.986 62.8233C161.188 63.2849 160.537 62.9096 160.537 61.9952L160.524 57.6648C160.52 56.7461 161.171 55.6247 161.965 55.1675L165.838 52.9246ZM166.998 58.26L166.985 53.9296C166.985 53.205 166.468 52.9117 165.838 53.2783L161.965 55.5168C161.335 55.8792 160.826 56.7634 160.83 57.488L160.843 61.8184C160.843 62.543 161.361 62.832 161.986 62.4697L165.859 60.2311C166.489 59.8645 166.998 58.9846 166.998 58.26Z" fill="#706F6F"/> +<path d="M165.838 53.274C166.467 52.9116 166.981 53.2006 166.985 53.9252L166.998 58.2557C166.998 58.9803 166.489 59.8602 165.859 60.2268L161.986 62.4653C161.356 62.8276 160.843 62.5386 160.843 61.814L160.83 57.4836C160.83 56.759 161.339 55.8748 161.964 55.5125L165.838 53.274Z" fill="white"/> +<path d="M190.315 30.2722C190.652 30.0781 190.928 30.2333 190.928 30.6215C190.928 31.0097 190.656 31.4842 190.32 31.6783L165.631 45.9333C165.29 46.1274 165.019 45.9678 165.019 45.5839C165.019 45.1957 165.29 44.7256 165.627 44.5272L190.315 30.2722Z" fill="#DA3635"/> +<path d="M185.911 29.8406C186.252 29.6465 186.524 29.8018 186.524 30.19C186.524 30.5782 186.252 31.0483 185.915 31.2467L170.034 40.4165C169.698 40.6106 169.426 40.451 169.422 40.0672C169.422 39.679 169.694 39.2088 170.03 39.0147L185.911 29.8406Z" fill="#DA3635"/> +<path d="M182.068 46.9984C182.237 46.9035 182.375 46.9769 182.375 47.1709C182.375 47.365 182.237 47.6023 182.068 47.6972L169.358 55.0382C169.189 55.133 169.051 55.0597 169.051 54.8613C169.051 54.6672 169.189 54.4343 169.358 54.3351L182.068 46.9984Z" fill="#706F6F"/> +<path d="M187.192 46.1314C187.365 46.0322 187.499 46.1099 187.499 46.3083C187.499 46.5024 187.365 46.7396 187.192 46.8345L169.461 57.0739C169.288 57.1731 169.155 57.0912 169.155 56.8971C169.155 56.703 169.288 56.4701 169.461 56.3709L187.192 46.1314Z" fill="#706F6F"/> +<path d="M165.838 64.268C166.636 63.8065 167.287 64.1774 167.291 65.0918L167.304 69.4222C167.309 70.3366 166.657 71.458 165.859 71.9196L161.986 74.1581C161.188 74.6196 160.537 74.2444 160.537 73.33L160.524 68.9996C160.52 68.0852 161.171 66.9637 161.965 66.5022L165.838 64.268ZM166.998 69.5991L166.985 65.2687C166.985 64.5484 166.467 64.2551 165.838 64.6174L161.965 66.8559C161.335 67.2182 160.826 68.1024 160.83 68.8227L160.843 73.1531C160.843 73.8734 161.361 74.1667 161.986 73.8044L165.859 71.5659C166.489 71.2079 166.998 70.3237 166.998 69.5991Z" fill="#706F6F"/> +<path d="M165.838 64.6175C166.467 64.2552 166.981 64.5441 166.985 65.2688L166.998 69.5992C166.998 70.3195 166.489 71.2037 165.859 71.5703L161.986 73.8088C161.356 74.1711 160.843 73.8778 160.843 73.1575L160.83 68.8271C160.83 68.1068 161.339 67.2226 161.964 66.8603L165.838 64.6175Z" fill="white"/> +<path d="M185.92 55.7543C186.092 55.6551 186.226 55.7371 186.226 55.9312C186.226 56.1252 186.092 56.3582 185.92 56.4574L169.241 66.0844C169.068 66.1836 168.935 66.1016 168.935 65.9075C168.935 65.7134 169.068 65.4805 169.241 65.3813L185.92 55.7543Z" fill="#706F6F"/> +<path d="M179.463 61.258C179.631 61.1632 179.769 61.2408 179.769 61.4349C179.769 61.629 179.631 61.8662 179.463 61.9611L169.275 67.8442C169.107 67.9391 168.969 67.8615 168.969 67.6674C168.969 67.4733 169.107 67.2361 169.275 67.1412L179.463 61.258Z" fill="#706F6F"/> +<path d="M165.838 76.3798C166.467 76.0175 166.981 76.3065 166.985 77.0311L166.998 81.3615C166.998 82.0818 166.489 82.966 165.859 83.3326L161.986 85.5711C161.356 85.9334 160.843 85.6401 160.843 84.9198L160.83 80.5894C160.83 79.8648 161.339 78.9806 161.964 78.6183L165.838 76.3798Z" fill="white"/> +<path d="M165.838 76.0303C166.636 75.5688 167.287 75.9398 167.291 76.8585L167.304 81.1889C167.309 82.1076 166.657 83.229 165.859 83.6905L161.986 85.9291C161.188 86.3906 160.537 86.0153 160.537 85.1009L160.524 80.7705C160.52 79.8518 161.171 78.7304 161.965 78.2732L165.838 76.0303ZM166.998 81.3614L166.985 77.031C166.985 76.3064 166.468 76.0131 165.838 76.3797L161.965 78.6182C161.335 78.9806 160.826 79.8648 160.83 80.5894L160.843 84.9198C160.843 85.6401 161.361 85.9334 161.986 85.5711L165.859 83.3325C166.489 82.9702 166.998 82.086 166.998 81.3614Z" fill="#706F6F"/> +<path d="M179.511 71.4842C179.679 71.3893 179.817 71.4626 179.817 71.661C179.817 71.8551 179.679 72.088 179.511 72.1872L169.56 77.9324C169.392 78.0272 169.254 77.9539 169.254 77.7598C169.254 77.5658 169.392 77.3285 169.56 77.2336L179.511 71.4842Z" fill="#706F6F"/> +<path d="M187.434 67.0032C187.602 66.9083 187.74 66.9859 187.74 67.18C187.74 67.3741 187.602 67.6113 187.434 67.7062L181.003 71.4198C180.83 71.519 180.697 71.4414 180.697 71.243C180.697 71.0489 180.83 70.8117 181.003 70.7168L187.434 67.0032Z" fill="#706F6F"/> +<path d="M187.192 69.237C187.365 69.1378 187.499 69.2155 187.499 69.4139C187.499 69.608 187.365 69.8409 187.192 69.9401L169.461 80.1795C169.288 80.2787 169.155 80.2011 169.155 80.007C169.155 79.8129 169.288 79.58 169.461 79.4808L187.192 69.237Z" fill="#706F6F"/> +<path d="M165.838 88.6376C166.636 88.1761 167.287 88.5427 167.291 89.4614L167.304 93.7918C167.309 94.7105 166.657 95.8319 165.859 96.2934L161.986 98.532C161.188 98.9935 160.537 98.6182 160.537 97.7038L160.524 93.3734C160.52 92.4547 161.171 91.3376 161.965 90.8761L165.838 88.6376ZM166.998 93.9686L166.985 89.6382C166.985 88.9179 166.468 88.6246 165.838 88.9869L161.965 91.2255C161.335 91.5878 160.826 92.472 160.83 93.1923L160.843 97.5227C160.843 98.2473 161.361 98.5406 161.986 98.1783L165.859 95.9397C166.489 95.5774 166.998 94.6932 166.998 93.9686Z" fill="#706F6F"/> +<path d="M165.838 88.987C166.467 88.6247 166.981 88.9136 166.985 89.6383L166.998 93.9687C166.998 94.6933 166.489 95.5775 165.859 95.9398L161.986 98.1783C161.356 98.5406 160.843 98.2473 160.843 97.5227L160.83 93.1923C160.83 92.472 161.339 91.5878 161.964 91.2255L165.838 88.987Z" fill="white"/> +<path d="M182.068 82.7071C182.237 82.6122 182.375 82.6855 182.375 82.8839C182.375 83.078 182.237 83.3152 182.068 83.4101L169.358 90.7511C169.189 90.846 169.051 90.7684 169.051 90.5743C169.051 90.3802 169.189 90.143 169.358 90.0481L182.068 82.7071Z" fill="#706F6F"/> +<path d="M187.192 81.8401C187.365 81.7409 187.499 81.8229 187.499 82.017C187.499 82.2111 187.365 82.444 187.192 82.5432L169.461 92.7826C169.288 92.8818 169.155 92.7999 169.155 92.6058C169.155 92.4117 169.288 92.1788 169.461 92.0796L187.192 81.8401Z" fill="#706F6F"/> +<path d="M165.368 66.7224C165.475 66.6577 165.583 66.6448 165.67 66.6922C165.838 66.7871 165.838 67.0977 165.67 67.3823L163.927 70.3972C163.819 70.5827 163.681 70.7293 163.53 70.8156C163.379 70.9019 163.237 70.9191 163.129 70.8544L162.482 70.4835C162.314 70.3886 162.314 70.078 162.482 69.7934C162.564 69.651 162.672 69.5389 162.784 69.4785C162.892 69.4138 163 69.4009 163.086 69.4483L163.535 69.7028L165.074 67.0329C165.152 66.8949 165.26 66.7871 165.368 66.7224Z" fill="#DA3635"/> +<path d="M165.368 55.8146C165.475 55.7499 165.583 55.7369 165.67 55.7844C165.838 55.8793 165.838 56.1898 165.67 56.4745L163.927 59.4894C163.819 59.6748 163.681 59.8215 163.53 59.9077C163.379 59.994 163.237 60.0112 163.129 59.9466L162.482 59.5756C162.314 59.4807 162.314 59.1702 162.482 58.8855C162.564 58.7432 162.672 58.631 162.784 58.5706C162.892 58.506 163 58.493 163.086 58.5405L163.535 58.7949L165.074 56.1251C165.152 55.9871 165.26 55.8749 165.368 55.8146Z" fill="#DA3635"/> +<path d="M165.368 78.9158C165.475 78.8511 165.583 78.8381 165.67 78.8856C165.838 78.9804 165.838 79.291 165.67 79.5757L163.927 82.5906C163.819 82.776 163.681 82.9227 163.53 83.0089C163.379 83.0952 163.237 83.1124 163.129 83.0478L162.482 82.6768C162.314 82.5819 162.314 82.2714 162.482 81.9867C162.564 81.8444 162.672 81.7322 162.784 81.6718C162.892 81.6072 163 81.5942 163.086 81.6417L163.535 81.8961L165.074 79.2263C165.152 79.0926 165.26 78.9805 165.368 78.9158Z" fill="#DA3635"/> +<path d="M165.368 91.0143C165.475 90.9496 165.583 90.9366 165.67 90.9841C165.838 91.079 165.838 91.3895 165.67 91.6742L163.927 94.6891C163.819 94.8746 163.681 95.0212 163.53 95.1075C163.379 95.1937 163.237 95.211 163.129 95.1463L162.482 94.7753C162.314 94.6804 162.314 94.3699 162.482 94.0852C162.564 93.9429 162.672 93.8308 162.784 93.7704C162.892 93.7057 163 93.6927 163.086 93.7402L163.535 93.9947L165.074 91.3248C165.152 91.1911 165.26 91.079 165.368 91.0143Z" fill="#DA3635"/> +<path d="M94.6212 57.1831C96.4499 58.0939 96.4612 59.5728 94.6439 60.4836C92.8265 61.3944 89.8719 61.3944 88.0432 60.4836C86.2146 59.5728 86.207 58.0939 88.0243 57.1831C89.8417 56.2723 92.7925 56.2723 94.6212 57.1831Z" fill="#EDEDED"/> +<path d="M183.136 103.698C185.545 99.5535 185.551 95.0623 183.151 93.667C180.75 92.2717 176.851 94.5006 174.442 98.6454C172.033 102.79 172.026 107.281 174.427 108.677C176.828 110.072 180.727 107.843 183.136 103.698Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M31.3811 176.272C34.6123 178.134 34.6254 181.155 31.4206 183.024C28.2157 184.886 22.9971 184.886 19.766 183.024C16.5348 181.161 16.5216 178.141 19.7331 176.272C22.9379 174.403 28.1565 174.403 31.3811 176.272Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M25.9057 153.364C25.6359 153.996 24.5566 154.127 24.3658 153.331C24.2539 152.89 24.1618 152.949 23.9183 152.568C23.6945 152.186 23.4115 152.554 23.201 152.074C22.918 151.423 22.9772 149.455 23.5168 148.961C24.0236 148.501 24.4184 148.626 24.8988 149.027C25.1357 149.251 25.2608 149.521 25.5174 149.725C25.7083 149.869 25.9912 149.948 26.1492 150.008C27.2416 150.468 26.498 151.133 26.34 151.798C26.2742 152.054 26.2939 152.429 26.1952 152.673C26.0702 152.989 25.8004 153.147 25.7017 153.436" fill="white"/> +<path d="M25.9057 153.364C25.6359 153.996 24.5566 154.127 24.3658 153.331C24.2539 152.89 24.1618 152.949 23.9183 152.568C23.6945 152.186 23.4115 152.554 23.201 152.074C22.918 151.423 22.9772 149.455 23.5168 148.961C24.0236 148.501 24.4184 148.626 24.8988 149.027C25.1357 149.251 25.2608 149.521 25.5174 149.725C25.7083 149.869 25.9912 149.948 26.1492 150.008C27.2416 150.468 26.498 151.133 26.34 151.798C26.2742 152.054 26.2939 152.429 26.1952 152.673C26.0702 152.989 25.8004 153.147 25.7017 153.436" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M25.9057 153.364C25.6359 153.996 24.5566 154.127 24.3658 153.331C24.2539 152.89 24.1618 152.949 23.9183 152.568C23.6945 152.186 23.4115 152.554 23.201 152.074C22.918 151.423 22.9772 149.455 23.5168 148.961C24.0236 148.501 24.4184 148.626 24.8988 149.027C25.1357 149.251 25.2608 149.521 25.5174 149.725C25.7083 149.869 25.9912 149.948 26.1492 150.008C27.2416 150.468 26.498 151.133 26.34 151.798C26.2742 152.054 26.2939 152.429 26.1952 152.673C26.0702 152.989 25.8004 153.147 25.7017 153.436" fill="white"/> +<path d="M25.9057 153.364C25.6359 153.996 24.5566 154.127 24.3658 153.331C24.2539 152.89 24.1618 152.949 23.9183 152.568C23.6945 152.186 23.4115 152.554 23.201 152.074C22.918 151.423 22.9772 149.455 23.5168 148.961C24.0236 148.501 24.4184 148.626 24.8988 149.027C25.1357 149.251 25.2608 149.521 25.5174 149.725C25.7083 149.869 25.9912 149.948 26.1492 150.008C27.2416 150.468 26.498 151.133 26.34 151.798C26.2742 152.054 26.2939 152.429 26.1952 152.673C26.0702 152.989 25.8004 153.147 25.7017 153.436" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M20.2527 157.523C20.5554 158.727 20.6015 160.234 20.6015 161.629C20.6015 163.169 20.2066 164.597 20.2527 166.117C20.7923 166.229 21.3451 162.202 21.4241 161.609C21.5688 160.675 21.661 159.655 21.4899 158.74C21.4241 158.359 20.7133 156.437 20.1079 157.233" fill="white"/> +<path d="M20.2527 157.523C20.5554 158.727 20.6015 160.234 20.6015 161.629C20.6015 163.169 20.2066 164.597 20.2527 166.117C20.7923 166.229 21.3451 162.202 21.4241 161.609C21.5688 160.675 21.661 159.655 21.4899 158.74C21.4241 158.359 20.7133 156.437 20.1079 157.233" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M20.2527 157.523C20.5554 158.727 20.6015 160.234 20.6015 161.629C20.6015 163.169 20.2066 164.597 20.2527 166.117C20.7923 166.229 21.3451 162.202 21.4241 161.609C21.5688 160.675 21.661 159.655 21.4899 158.74C21.4241 158.359 20.7133 156.437 20.1079 157.233" fill="white"/> +<path d="M20.2527 157.523C20.5554 158.727 20.6015 160.234 20.6015 161.629C20.6015 163.169 20.2066 164.597 20.2527 166.117C20.7923 166.229 21.3451 162.202 21.4241 161.609C21.5688 160.675 21.661 159.655 21.4899 158.74C21.4241 158.359 20.7133 156.437 20.1079 157.233" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M29.6372 159.076C30.7165 158.918 30.5454 162.978 30.5585 163.788C30.5717 164.709 30.6507 165.453 30.9863 166.328C31.0982 166.598 31.572 167.308 31.2561 167.598C30.8283 167.993 30.3545 167.249 30.2558 166.914C30.3216 167.249 30.1768 167.262 30.0518 167.44C29.703 166.789 29.703 165.775 29.499 165.058C29.2753 164.235 29.0713 163.472 29.0713 162.616C29.0713 161.649 29.0055 160.695 29.0055 159.76C29.0055 159.556 28.8804 158.747 29.0384 158.602C29.374 158.299 29.782 158.78 29.782 159.129" fill="white"/> +<path d="M29.6372 159.076C30.7165 158.918 30.5454 162.978 30.5585 163.788C30.5717 164.709 30.6507 165.453 30.9863 166.328C31.0982 166.598 31.572 167.308 31.2561 167.598C30.8283 167.993 30.3545 167.249 30.2558 166.914C30.3216 167.249 30.1768 167.262 30.0518 167.44C29.703 166.789 29.703 165.775 29.499 165.058C29.2753 164.235 29.0713 163.472 29.0713 162.616C29.0713 161.649 29.0055 160.695 29.0055 159.76C29.0055 159.556 28.8804 158.747 29.0384 158.602C29.374 158.299 29.782 158.78 29.782 159.129" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M29.6372 159.076C30.7165 158.918 30.5454 162.978 30.5585 163.788C30.5717 164.709 30.6507 165.453 30.9863 166.328C31.0982 166.598 31.572 167.308 31.2561 167.598C30.8283 167.993 30.3545 167.249 30.2558 166.914C30.3216 167.249 30.1768 167.262 30.0518 167.44C29.703 166.789 29.703 165.775 29.499 165.058C29.2753 164.235 29.0713 163.472 29.0713 162.616C29.0713 161.649 29.0055 160.695 29.0055 159.76C29.0055 159.556 28.8804 158.747 29.0384 158.602C29.374 158.299 29.782 158.78 29.782 159.129" fill="white"/> +<path d="M29.6372 159.076C30.7165 158.918 30.5454 162.978 30.5585 163.788C30.5717 164.709 30.6507 165.453 30.9863 166.328C31.0982 166.598 31.572 167.308 31.2561 167.598C30.8283 167.993 30.3545 167.249 30.2558 166.914C30.3216 167.249 30.1768 167.262 30.0518 167.44C29.703 166.789 29.703 165.775 29.499 165.058C29.2753 164.235 29.0713 163.472 29.0713 162.616C29.0713 161.649 29.0055 160.695 29.0055 159.76C29.0055 159.556 28.8804 158.747 29.0384 158.602C29.374 158.299 29.782 158.78 29.782 159.129" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M28.4262 171.402C28.8211 171.876 29.2488 172.369 29.6963 172.817C30.4136 173.547 30.4597 174.067 30.4136 175.1C30.3478 176.054 29.2686 177.417 29.4265 175.732C29.5055 174.89 29.5252 174.969 28.8737 174.541C28.2222 174.113 27.2877 173.369 26.9192 172.665C26.3796 171.619 27.9195 170.428 28.5842 171.329" fill="white"/> +<path d="M28.4262 171.402C28.8211 171.876 29.2488 172.369 29.6963 172.817C30.4136 173.547 30.4597 174.067 30.4136 175.1C30.3478 176.054 29.2686 177.417 29.4265 175.732C29.5055 174.89 29.5252 174.969 28.8737 174.541C28.2222 174.113 27.2877 173.369 26.9192 172.665C26.3796 171.619 27.9195 170.428 28.5842 171.329" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M28.4262 171.402C28.8211 171.876 29.2488 172.369 29.6963 172.817C30.4136 173.547 30.4597 174.067 30.4136 175.1C30.3478 176.054 29.2686 177.417 29.4265 175.732C29.5055 174.89 29.5252 174.969 28.8737 174.541C28.2222 174.113 27.2877 173.369 26.9192 172.665C26.3796 171.619 27.9195 170.428 28.5842 171.329" fill="white"/> +<path d="M28.4262 171.402C28.8211 171.876 29.2488 172.369 29.6963 172.817C30.4136 173.547 30.4597 174.067 30.4136 175.1C30.3478 176.054 29.2686 177.417 29.4265 175.732C29.5055 174.89 29.5252 174.969 28.8737 174.541C28.2222 174.113 27.2877 173.369 26.9192 172.665C26.3796 171.619 27.9195 170.428 28.5842 171.329" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M23.2206 171.691C23.2206 173.231 23.0166 174.751 22.9508 176.311C22.9179 177.074 23.0297 177.976 22.9508 178.72C22.8718 179.529 22.0295 180.023 21.3977 180.562C20.9239 180.009 21.5885 178.739 21.6215 178.042C21.6873 176.916 21.3977 175.85 21.2266 174.758C21.1279 174.106 20.5948 172.218 20.97 171.586C21.5754 170.573 23.0034 171.52 23.2403 172.33" fill="white"/> +<path d="M23.2206 171.691C23.2206 173.231 23.0166 174.751 22.9508 176.311C22.9179 177.074 23.0297 177.976 22.9508 178.72C22.8718 179.529 22.0295 180.023 21.3977 180.562C20.9239 180.009 21.5885 178.739 21.6215 178.042C21.6873 176.916 21.3977 175.85 21.2266 174.758C21.1279 174.106 20.5948 172.218 20.97 171.586C21.5754 170.573 23.0034 171.52 23.2403 172.33" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M23.2206 171.691C23.2206 173.231 23.0166 174.751 22.9508 176.311C22.9179 177.074 23.0297 177.976 22.9508 178.72C22.8718 179.529 22.0295 180.023 21.3977 180.562C20.9239 180.009 21.5885 178.739 21.6215 178.042C21.6873 176.916 21.3977 175.85 21.2266 174.758C21.1279 174.106 20.5948 172.218 20.97 171.586C21.5754 170.573 23.0034 171.52 23.2403 172.33" fill="white"/> +<path d="M23.2206 171.691C23.2206 173.231 23.0166 174.751 22.9508 176.311C22.9179 177.074 23.0297 177.976 22.9508 178.72C22.8718 179.529 22.0295 180.023 21.3977 180.562C20.9239 180.009 21.5885 178.739 21.6215 178.042C21.6873 176.916 21.3977 175.85 21.2266 174.758C21.1279 174.106 20.5948 172.218 20.97 171.586C21.5754 170.573 23.0034 171.52 23.2403 172.33" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M30.4135 173.514C31.5718 173.639 30.6373 176.956 29.8081 177.272C28.9065 177.621 29.5383 176.127 29.716 175.686C29.9397 175.1 30.3806 173.975 30.3346 173.369" fill="white"/> +<path d="M30.4135 173.514C31.5718 173.639 30.6373 176.956 29.8081 177.272C28.9065 177.621 29.5383 176.127 29.716 175.686C29.9397 175.1 30.3806 173.975 30.3346 173.369" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M30.4135 173.514C31.5718 173.639 30.6373 176.956 29.8081 177.272C28.9065 177.621 29.5383 176.127 29.716 175.686C29.9397 175.1 30.3806 173.975 30.3346 173.369" fill="white"/> +<path d="M30.4135 173.514C31.5718 173.639 30.6373 176.956 29.8081 177.272C28.9065 177.621 29.5383 176.127 29.716 175.686C29.9397 175.1 30.3806 173.975 30.3346 173.369" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M22.997 178.384C23.6024 179.45 22.8983 180.497 21.9309 181.128C21.5031 181.411 20.8516 181.747 20.595 181.128C20.3712 180.576 21.0425 179.746 21.2136 179.253C21.2004 181.345 22.5955 179.128 22.9904 178.331C23.1352 178.41 23.0891 178.476 23.1154 178.601" fill="white"/> +<path d="M22.997 178.384C23.6024 179.45 22.8983 180.497 21.9309 181.128C21.5031 181.411 20.8516 181.747 20.595 181.128C20.3712 180.576 21.0425 179.746 21.2136 179.253C21.2004 181.345 22.5955 179.128 22.9904 178.331C23.1352 178.41 23.0891 178.476 23.1154 178.601" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M22.997 178.384C23.6024 179.45 22.8983 180.497 21.9309 181.128C21.5031 181.411 20.8516 181.747 20.595 181.128C20.3712 180.576 21.0425 179.746 21.2136 179.253C21.2004 181.345 22.5955 179.128 22.9904 178.331C23.1352 178.41 23.0891 178.476 23.1154 178.601" fill="white"/> +<path d="M22.997 178.384C23.6024 179.45 22.8983 180.497 21.9309 181.128C21.5031 181.411 20.8516 181.747 20.595 181.128C20.3712 180.576 21.0425 179.746 21.2136 179.253C21.2004 181.345 22.5955 179.128 22.9904 178.331C23.1352 178.41 23.0891 178.476 23.1154 178.601" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M37.3497 164.36C36.7771 164.551 36.5731 165.361 36.6653 165.881C36.7311 166.216 36.8693 166.433 36.889 166.802C36.9022 167.105 36.7771 167.624 37.0338 167.802C37.2905 167.98 37.8762 167.703 38.0341 167.499C38.3368 167.085 38.1591 166.868 38.146 166.466C38.1328 166.025 38.8304 165.894 38.6527 165.433C38.4882 165.045 37.7774 164.156 37.3497 164.36Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M40.2651 169.789C40.1072 170.533 40.1204 171.362 40.0611 172.106C39.9953 172.711 40.252 174.166 39.9032 174.646C39.1398 175.712 38.949 173.442 38.9161 173.027C38.8239 171.981 39.153 171.204 39.2188 170.204" fill="white"/> +<path d="M40.2651 169.789C40.1072 170.533 40.1204 171.362 40.0611 172.106C39.9953 172.711 40.252 174.166 39.9032 174.646C39.1398 175.712 38.949 173.442 38.9161 173.027C38.8239 171.981 39.153 171.204 39.2188 170.204" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M40.2651 169.789C40.1072 170.533 40.1204 171.362 40.0611 172.106C39.9953 172.711 40.252 174.166 39.9032 174.646C39.1398 175.712 38.949 173.442 38.9161 173.027C38.8239 171.981 39.153 171.204 39.2188 170.204" fill="white"/> +<path d="M40.2651 169.789C40.1072 170.533 40.1204 171.362 40.0611 172.106C39.9953 172.711 40.252 174.166 39.9032 174.646C39.1398 175.712 38.949 173.442 38.9161 173.027C38.8239 171.981 39.153 171.204 39.2188 170.204" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M39.0145 175.85C39.0013 176.008 39.0276 176.199 39.0934 176.324C40.0148 176.548 42.4891 176.752 41.7455 177.943C41.219 177.989 40.6004 177.66 40.0806 177.528C39.5278 177.384 38.9223 177.384 38.3695 177.226C37.7641 177.068 37.4482 176.752 37.6522 176.054C37.7641 175.66 37.7312 175.548 38.2577 175.561C38.5604 175.574 38.7973 175.515 38.8631 175.91" fill="white"/> +<path d="M39.0145 175.85C39.0013 176.008 39.0276 176.199 39.0934 176.324C40.0148 176.548 42.4891 176.752 41.7455 177.943C41.219 177.989 40.6004 177.66 40.0806 177.528C39.5278 177.384 38.9223 177.384 38.3695 177.226C37.7641 177.068 37.4482 176.752 37.6522 176.054C37.7641 175.66 37.7312 175.548 38.2577 175.561C38.5604 175.574 38.7973 175.515 38.8631 175.91" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M39.0145 175.85C39.0013 176.008 39.0276 176.199 39.0934 176.324C40.0148 176.548 42.4891 176.752 41.7455 177.943C41.219 177.989 40.6004 177.66 40.0806 177.528C39.5278 177.384 38.9223 177.384 38.3695 177.226C37.7641 177.068 37.4482 176.752 37.6522 176.054C37.7641 175.66 37.7312 175.548 38.2577 175.561C38.5604 175.574 38.7973 175.515 38.8631 175.91" fill="white"/> +<path d="M39.0145 175.85C39.0013 176.008 39.0276 176.199 39.0934 176.324C40.0148 176.548 42.4891 176.752 41.7455 177.943C41.219 177.989 40.6004 177.66 40.0806 177.528C39.5278 177.384 38.9223 177.384 38.3695 177.226C37.7641 177.068 37.4482 176.752 37.6522 176.054C37.7641 175.66 37.7312 175.548 38.2577 175.561C38.5604 175.574 38.7973 175.515 38.8631 175.91" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M36.5995 175.85C36.8693 176.199 36.6785 177.693 36.6653 178.292C36.6521 179.259 36.6785 180.51 35.54 180.431C35.5071 179.338 35.5531 178.259 35.6058 177.18C35.619 176.831 35.4281 175.956 35.5926 175.686C35.8427 175.337 36.5995 175.245 36.5995 175.85Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M41.805 177.259C42.5354 176.337 42.5223 178.068 42.2459 178.542C41.6141 179.687 41.6931 177.43 41.8181 177.193" fill="white"/> +<path d="M41.805 177.259C42.5354 176.337 42.5223 178.068 42.2459 178.542C41.6141 179.687 41.6931 177.43 41.8181 177.193" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M41.805 177.259C42.5354 176.337 42.5223 178.068 42.2459 178.542C41.6141 179.687 41.6931 177.43 41.8181 177.193" fill="white"/> +<path d="M41.805 177.259C42.5354 176.337 42.5223 178.068 42.2459 178.542C41.6141 179.687 41.6931 177.43 41.8181 177.193" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M24.2671 153.015C23.2997 153.015 22.2336 152.87 21.5821 153.726C21.1543 154.298 19.8711 156.141 19.9632 156.819C20.0553 157.536 21.0885 157.786 21.2201 158.53C21.3452 159.247 21.207 160.372 21.1543 161.103C21.0293 162.978 20.5489 164.768 20.5226 166.67C20.5094 167.684 20.0488 168.671 20.0948 169.651C20.1277 170.336 20.7003 171.665 21.3781 171.935C21.8848 172.126 22.1875 171.79 22.635 171.711C23.1286 171.645 23.3523 171.823 23.7801 172.027C25.037 172.659 26.0636 172.823 27.2548 171.961C27.6693 171.678 27.9852 171.389 28.4261 171.152C29.0316 170.849 29.2356 170.961 29.2685 170.119C29.3343 169.309 29.2224 168.5 29.2685 167.703C29.3343 166.611 28.8736 165.453 28.663 164.373C28.4393 163.103 28.5972 162.294 28.8407 161.057C28.9065 160.741 28.7618 159.833 29.0184 159.616C29.354 159.313 30.0977 159.885 30.4596 159.55C31.0782 159.023 29.6173 156.661 29.1566 156.174C28.3932 155.331 27.4456 154.384 26.5704 153.68C26.4716 153.614 26.1426 153.331 26.0176 153.318C25.5569 153.252 25.8596 153.416 25.524 153.541C24.9515 153.844 24.6027 153.857 24.2671 153.015Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M22.2996 153.509C22.3128 153.364 22.4444 153.351 22.3128 153.239C22.8392 156.253 24.7082 158.984 25.9651 161.774C26.1889 162.281 26.5179 163.248 27.0312 163.472C27.5379 163.676 28.4922 163.459 29.0186 163.393C30.0979 163.281 29.861 163.867 30.0057 164.808C30.1637 165.874 30.4467 166.282 29.0844 166.348C28.2421 166.394 26.814 166.631 26.3402 165.795C25.8467 164.939 25.9914 163.59 27.0575 163.577C26.4258 163.419 25.8006 161.912 25.3268 161.169C24.7872 160.313 24.3923 159.135 23.8198 158.299C23.1551 157.345 22.3588 156.141 21.9969 155.029C21.8718 154.634 21.5231 152.712 22.4115 153.173" fill="white"/> +<path d="M22.2996 153.509C22.3128 153.364 22.4444 153.351 22.3128 153.239C22.8392 156.253 24.7082 158.984 25.9651 161.774C26.1889 162.281 26.5179 163.248 27.0312 163.472C27.5379 163.676 28.4922 163.459 29.0186 163.393C30.0979 163.281 29.861 163.867 30.0057 164.808C30.1637 165.874 30.4467 166.282 29.0844 166.348C28.2421 166.394 26.814 166.631 26.3402 165.795C25.8467 164.939 25.9914 163.59 27.0575 163.577C26.4258 163.419 25.8006 161.912 25.3268 161.169C24.7872 160.313 24.3923 159.135 23.8198 158.299C23.1551 157.345 22.3588 156.141 21.9969 155.029C21.8718 154.634 21.5231 152.712 22.4115 153.173" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M22.2996 153.509C22.3128 153.364 22.4444 153.351 22.3128 153.239C22.8392 156.253 24.7082 158.984 25.9651 161.774C26.1889 162.281 26.5179 163.248 27.0312 163.472C27.5379 163.676 28.4922 163.459 29.0186 163.393C30.0979 163.281 29.861 163.867 30.0057 164.808C30.1637 165.874 30.4467 166.282 29.0844 166.348C28.2421 166.394 26.814 166.631 26.3402 165.795C25.8467 164.939 25.9914 163.59 27.0575 163.577C26.4258 163.419 25.8006 161.912 25.3268 161.169C24.7872 160.313 24.3923 159.135 23.8198 158.299C23.1551 157.345 22.3588 156.141 21.9969 155.029C21.8718 154.634 21.5231 152.712 22.4115 153.173" fill="white"/> +<path d="M22.2996 153.509C22.3128 153.364 22.4444 153.351 22.3128 153.239C22.8392 156.253 24.7082 158.984 25.9651 161.774C26.1889 162.281 26.5179 163.248 27.0312 163.472C27.5379 163.676 28.4922 163.459 29.0186 163.393C30.0979 163.281 29.861 163.867 30.0057 164.808C30.1637 165.874 30.4467 166.282 29.0844 166.348C28.2421 166.394 26.814 166.631 26.3402 165.795C25.8467 164.939 25.9914 163.59 27.0575 163.577C26.4258 163.419 25.8006 161.912 25.3268 161.169C24.7872 160.313 24.3923 159.135 23.8198 158.299C23.1551 157.345 22.3588 156.141 21.9969 155.029C21.8718 154.634 21.5231 152.712 22.4115 153.173" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M25.8269 150.192C25.7939 150.416 25.6821 150.666 25.557 150.824C25.5241 150.047 25.0503 149.139 24.2869 148.823C23.3064 148.428 23.3656 149.33 23.2735 150.073C23.1945 150.87 23.0037 151.646 23.7013 152.186C23.9579 152.377 24.6686 152.364 24.1619 152.791C23.9382 152.982 23.3656 152.725 23.0695 152.982C22.8918 152.508 22.9774 152.081 22.7339 151.587C22.497 151.061 22.1284 150.574 22.2601 149.968C22.4838 149.001 23.9908 148.079 24.8924 147.875C26.1954 147.573 26.8929 148.968 27.143 150.08C27.2878 150.731 27.2088 151.047 27.7287 151.521C28.2683 152.015 28.9527 152.285 29.4595 152.857C30.2689 153.759 30.4137 155.456 29.3937 156.286C28.9198 155.634 28.2025 155.351 27.5839 154.858C27.1364 154.509 26.1361 153.89 25.8861 153.43C25.5702 152.844 25.8729 152.067 26.123 151.607C26.2678 151.35 26.6495 151.021 26.5507 150.685C26.4389 150.35 26.044 150.212 25.8203 150.462" fill="white"/> +<path d="M25.8269 150.192C25.7939 150.416 25.6821 150.666 25.557 150.824C25.5241 150.047 25.0503 149.139 24.2869 148.823C23.3064 148.428 23.3656 149.33 23.2735 150.073C23.1945 150.87 23.0037 151.646 23.7013 152.186C23.9579 152.377 24.6686 152.364 24.1619 152.791C23.9382 152.982 23.3656 152.725 23.0695 152.982C22.8918 152.508 22.9774 152.081 22.7339 151.587C22.497 151.061 22.1284 150.574 22.2601 149.968C22.4838 149.001 23.9908 148.079 24.8924 147.875C26.1954 147.573 26.8929 148.968 27.143 150.08C27.2878 150.731 27.2088 151.047 27.7287 151.521C28.2683 152.015 28.9527 152.285 29.4595 152.857C30.2689 153.759 30.4137 155.456 29.3937 156.286C28.9198 155.634 28.2025 155.351 27.5839 154.858C27.1364 154.509 26.1361 153.89 25.8861 153.43C25.5702 152.844 25.8729 152.067 26.123 151.607C26.2678 151.35 26.6495 151.021 26.5507 150.685C26.4389 150.35 26.044 150.212 25.8203 150.462" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M25.8269 150.192C25.7939 150.416 25.6821 150.666 25.557 150.824C25.5241 150.047 25.0503 149.139 24.2869 148.823C23.3064 148.428 23.3656 149.33 23.2735 150.073C23.1945 150.87 23.0037 151.646 23.7013 152.186C23.9579 152.377 24.6686 152.364 24.1619 152.791C23.9382 152.982 23.3656 152.725 23.0695 152.982C22.8918 152.508 22.9774 152.081 22.7339 151.587C22.497 151.061 22.1284 150.574 22.2601 149.968C22.4838 149.001 23.9908 148.079 24.8924 147.875C26.1954 147.573 26.8929 148.968 27.143 150.08C27.2878 150.731 27.2088 151.047 27.7287 151.521C28.2683 152.015 28.9527 152.285 29.4595 152.857C30.2689 153.759 30.4137 155.456 29.3937 156.286C28.9198 155.634 28.2025 155.351 27.5839 154.858C27.1364 154.509 26.1361 153.89 25.8861 153.43C25.5702 152.844 25.8729 152.067 26.123 151.607C26.2678 151.35 26.6495 151.021 26.5507 150.685C26.4389 150.35 26.044 150.212 25.8203 150.462" fill="#DA3635"/> +<path d="M25.8269 150.192C25.7939 150.416 25.6821 150.666 25.557 150.824C25.5241 150.047 25.0503 149.139 24.2869 148.823C23.3064 148.428 23.3656 149.33 23.2735 150.073C23.1945 150.87 23.0037 151.646 23.7013 152.186C23.9579 152.377 24.6686 152.364 24.1619 152.791C23.9382 152.982 23.3656 152.725 23.0695 152.982C22.8918 152.508 22.9774 152.081 22.7339 151.587C22.497 151.061 22.1284 150.574 22.2601 149.968C22.4838 149.001 23.9908 148.079 24.8924 147.875C26.1954 147.573 26.8929 148.968 27.143 150.08C27.2878 150.731 27.2088 151.047 27.7287 151.521C28.2683 152.015 28.9527 152.285 29.4595 152.857C30.2689 153.759 30.4137 155.456 29.3937 156.286C28.9198 155.634 28.2025 155.351 27.5839 154.858C27.1364 154.509 26.1361 153.89 25.8861 153.43C25.5702 152.844 25.8729 152.067 26.123 151.607C26.2678 151.35 26.6495 151.021 26.5507 150.685C26.4389 150.35 26.044 150.212 25.8203 150.462" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M38.1725 167.309C38.3633 167.848 39.074 167.815 39.4886 168.151C39.8045 168.421 40.2849 168.835 40.2652 169.533C40.252 170.105 39.7584 169.928 39.5018 170.296C39.3438 170.533 39.4228 171.422 39.357 171.737C39.278 172.211 39.232 172.626 39.2122 173.119C39.1793 174.041 39.3702 174.896 39.357 175.818C39.0872 175.916 37.771 176.153 37.5341 175.975C37.2314 175.752 37.3433 174.515 37.3104 174.166C37.2314 174.515 37.2117 175.37 36.9616 175.627C36.7049 175.896 35.8034 176.054 35.5796 175.831C35.2966 175.528 35.5664 173.929 35.5335 173.514C35.5204 172.929 35.4348 172.343 35.3888 171.77C35.2769 170.52 34.882 168.848 35.4546 167.677C35.7244 167.124 36.2969 166.71 36.8497 167.045C37.1656 167.236 36.8629 167.697 37.5012 167.73C37.6789 167.743 37.975 167.394 38.054 167.381" fill="white"/> +<path d="M38.1725 167.309C38.3633 167.848 39.074 167.815 39.4886 168.151C39.8045 168.421 40.2849 168.835 40.2652 169.533C40.252 170.105 39.7584 169.928 39.5018 170.296C39.3438 170.533 39.4228 171.422 39.357 171.737C39.278 172.211 39.232 172.626 39.2122 173.119C39.1793 174.041 39.3702 174.896 39.357 175.818C39.0872 175.916 37.771 176.153 37.5341 175.975C37.2314 175.752 37.3433 174.515 37.3104 174.166C37.2314 174.515 37.2117 175.37 36.9616 175.627C36.7049 175.896 35.8034 176.054 35.5796 175.831C35.2966 175.528 35.5664 173.929 35.5335 173.514C35.5204 172.929 35.4348 172.343 35.3888 171.77C35.2769 170.52 34.882 168.848 35.4546 167.677C35.7244 167.124 36.2969 166.71 36.8497 167.045C37.1656 167.236 36.8629 167.697 37.5012 167.73C37.6789 167.743 37.975 167.394 38.054 167.381" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M38.1725 167.309C38.3633 167.848 39.074 167.815 39.4886 168.151C39.8045 168.421 40.2849 168.835 40.2652 169.533C40.252 170.105 39.7584 169.928 39.5018 170.296C39.3438 170.533 39.4228 171.422 39.357 171.737C39.278 172.211 39.232 172.626 39.2122 173.119C39.1793 174.041 39.3702 174.896 39.357 175.818C39.0872 175.916 37.771 176.153 37.5341 175.975C37.2314 175.752 37.3433 174.515 37.3104 174.166C37.2314 174.515 37.2117 175.37 36.9616 175.627C36.7049 175.896 35.8034 176.054 35.5796 175.831C35.2966 175.528 35.5664 173.929 35.5335 173.514C35.5204 172.929 35.4348 172.343 35.3888 171.77C35.2769 170.52 34.882 168.848 35.4546 167.677C35.7244 167.124 36.2969 166.71 36.8497 167.045C37.1656 167.236 36.8629 167.697 37.5012 167.73C37.6789 167.743 37.975 167.394 38.054 167.381" fill="white"/> +<path d="M38.1725 167.309C38.3633 167.848 39.074 167.815 39.4886 168.151C39.8045 168.421 40.2849 168.835 40.2652 169.533C40.252 170.105 39.7584 169.928 39.5018 170.296C39.3438 170.533 39.4228 171.422 39.357 171.737C39.278 172.211 39.232 172.626 39.2122 173.119C39.1793 174.041 39.3702 174.896 39.357 175.818C39.0872 175.916 37.771 176.153 37.5341 175.975C37.2314 175.752 37.3433 174.515 37.3104 174.166C37.2314 174.515 37.2117 175.37 36.9616 175.627C36.7049 175.896 35.8034 176.054 35.5796 175.831C35.2966 175.528 35.5664 173.929 35.5335 173.514C35.5204 172.929 35.4348 172.343 35.3888 171.77C35.2769 170.52 34.882 168.848 35.4546 167.677C35.7244 167.124 36.2969 166.71 36.8497 167.045C37.1656 167.236 36.8629 167.697 37.5012 167.73C37.6789 167.743 37.975 167.394 38.054 167.381" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M37.0929 163.235C37.5536 163.459 37.3957 163.952 37.7247 164.202C38.0735 164.472 38.5012 164.216 38.8961 164.696C39.6397 165.584 38.9948 166.407 38.0077 166.617C38.0077 166.617 36.9284 165.887 37.1982 164.492C37.1127 164.09 36.935 163.597 37.0929 163.235Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M34.4295 103.278C39.4296 106.166 39.4619 110.848 34.4887 113.736C29.5156 116.624 21.4336 116.624 16.4335 113.736C11.4334 110.848 11.4064 106.166 16.3796 103.278C21.3527 100.39 29.424 100.39 34.4295 103.278Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/> +<path d="M32.9909 103.989C37.1882 106.414 37.2151 110.342 33.0448 112.766C28.8744 115.191 22.0855 115.191 17.8829 112.766C13.6856 110.342 13.664 106.414 17.8344 103.989C22.0101 101.565 28.7936 101.565 32.9909 103.989Z" fill="#EDEDED"/> +<path d="M35.2915 103.747C35.2861 103.795 35.2861 103.844 35.2807 103.898C35.2753 103.941 35.2699 103.984 35.2645 104.027C35.2592 104.075 35.2484 104.124 35.243 104.172C35.2376 104.215 35.2268 104.259 35.2161 104.302C35.2053 104.35 35.1945 104.399 35.1783 104.447C35.1676 104.49 35.1514 104.533 35.1406 104.576C35.1245 104.625 35.1083 104.673 35.0921 104.717C35.076 104.76 35.0598 104.803 35.0436 104.846C35.0221 104.894 35.0005 104.943 34.979 104.997C34.9628 105.04 34.9413 105.078 34.9197 105.121C34.8982 105.169 34.8712 105.218 34.8443 105.266C34.8227 105.304 34.8012 105.347 34.7796 105.385C34.7473 105.444 34.7096 105.503 34.6719 105.557C34.6503 105.595 34.6288 105.627 34.6018 105.665C34.5587 105.73 34.5102 105.794 34.4617 105.853C34.4402 105.88 34.4186 105.907 34.3971 105.94C34.3162 106.042 34.23 106.139 34.1438 106.236C34.1223 106.263 34.0953 106.284 34.0738 106.311C34.0037 106.387 33.9283 106.462 33.8529 106.532C33.8152 106.565 33.7828 106.597 33.7451 106.629C33.6966 106.672 33.6481 106.716 33.5997 106.753C33.5565 106.791 33.5134 106.829 33.465 106.866C33.4165 106.909 33.3626 106.947 33.3087 106.99C33.2602 107.028 33.2117 107.066 33.1632 107.098C33.1093 107.136 33.0554 107.179 32.9962 107.217C32.9423 107.254 32.8938 107.287 32.8399 107.324C32.7807 107.362 32.7214 107.4 32.6621 107.438C32.5867 107.486 32.5113 107.529 32.4358 107.578C32.2203 107.702 31.9994 107.815 31.7731 107.928C31.7138 107.955 31.6546 107.987 31.5899 108.014C31.3852 108.111 31.175 108.197 30.9595 108.283C30.9326 108.294 30.9056 108.305 30.8733 108.316C30.6416 108.402 30.4045 108.483 30.1675 108.558C30.0004 108.612 29.828 108.655 29.661 108.704C29.5317 108.741 29.4024 108.774 29.2731 108.806C29.0953 108.849 28.9121 108.887 28.7289 108.925C28.5942 108.952 28.4649 108.984 28.3302 109.005C28.2763 109.016 28.217 109.022 28.1631 109.032C27.9368 109.07 27.7105 109.102 27.4788 109.129C27.4142 109.135 27.3441 109.146 27.2795 109.151C27.1502 109.167 27.0155 109.172 26.8808 109.183C26.6599 109.199 26.439 109.216 26.2127 109.226C26.0726 109.232 25.9271 109.237 25.787 109.237C25.6092 109.242 25.426 109.242 25.2482 109.237C25.0974 109.237 24.9465 109.232 24.7956 109.226C24.6286 109.221 24.4616 109.21 24.2945 109.199C24.1437 109.189 23.9928 109.178 23.8365 109.162C23.6695 109.146 23.5079 109.129 23.3462 109.108C23.2008 109.092 23.0499 109.07 22.9044 109.043C22.7266 109.016 22.5542 108.984 22.3818 108.952C22.2471 108.925 22.107 108.898 21.9723 108.871C21.7675 108.828 21.5628 108.774 21.3581 108.72C21.2287 108.688 21.094 108.655 20.9647 108.612C20.8947 108.591 20.8246 108.569 20.76 108.547C20.5552 108.483 20.3559 108.413 20.1619 108.343C20.1026 108.321 20.0488 108.3 19.9895 108.278C19.8117 108.208 19.6393 108.133 19.4669 108.057C19.3807 108.019 19.2944 107.987 19.2136 107.944C18.9658 107.825 18.7233 107.702 18.4916 107.567C16.5466 106.446 15.5767 104.97 15.5821 103.504L15.5713 107.745C15.5659 109.216 16.5358 110.686 18.4809 111.813C18.7125 111.947 18.955 112.071 19.2029 112.19C19.2837 112.227 19.3753 112.265 19.4561 112.303C19.6016 112.368 19.747 112.438 19.8979 112.497C19.9248 112.508 19.9518 112.518 19.9787 112.524C20.0326 112.545 20.0919 112.567 20.1511 112.588C20.3451 112.658 20.5499 112.729 20.7492 112.793C20.8193 112.815 20.8893 112.836 20.9593 112.858C21.0078 112.874 21.0509 112.89 21.0994 112.901C21.1802 112.923 21.2665 112.939 21.3527 112.96C21.5574 113.014 21.7568 113.063 21.9669 113.111C22.0208 113.122 22.0747 113.138 22.1285 113.149C22.2094 113.165 22.2902 113.176 22.371 113.192C22.5434 113.224 22.7212 113.257 22.8936 113.283C22.9637 113.294 23.0337 113.31 23.1038 113.321C23.1792 113.332 23.26 113.337 23.3355 113.348C23.4971 113.37 23.6641 113.386 23.8312 113.402C23.912 113.407 23.9874 113.424 24.0682 113.429C24.1437 113.434 24.2137 113.434 24.2891 113.44C24.4562 113.451 24.6232 113.461 24.7902 113.467C24.8764 113.472 24.9573 113.477 25.0435 113.477C25.1081 113.477 25.1782 113.477 25.2428 113.477C25.4206 113.477 25.6038 113.477 25.7816 113.477C25.8732 113.477 25.9594 113.477 26.051 113.477C26.1049 113.477 26.1588 113.467 26.2073 113.467C26.4282 113.456 26.6545 113.44 26.8754 113.424C26.967 113.418 27.0532 113.413 27.1448 113.407C27.1879 113.402 27.231 113.397 27.2741 113.391C27.3388 113.386 27.4088 113.375 27.4735 113.37C27.7051 113.343 27.9314 113.31 28.1577 113.273C28.2116 113.262 28.2709 113.257 28.3248 113.246C28.3517 113.24 28.3786 113.24 28.4056 113.235C28.5133 113.213 28.6157 113.187 28.7235 113.165C28.9067 113.127 29.0899 113.09 29.2677 113.046C29.397 113.014 29.5263 112.976 29.6556 112.944C29.828 112.896 29.9951 112.852 30.1621 112.799C30.1998 112.788 30.2375 112.777 30.2698 112.766C30.4746 112.702 30.674 112.632 30.8679 112.556C30.8949 112.545 30.9218 112.535 30.9541 112.524C31.1697 112.438 31.3798 112.351 31.5845 112.254C31.6438 112.227 31.7084 112.2 31.7677 112.168C31.994 112.06 32.2203 111.942 32.4304 111.818C32.4735 111.796 32.5113 111.769 32.549 111.748C32.5867 111.726 32.619 111.705 32.6567 111.678C32.716 111.64 32.7753 111.602 32.8345 111.565C32.8884 111.527 32.9423 111.495 32.9908 111.457C33.0447 111.419 33.1039 111.382 33.1578 111.338C33.2063 111.301 33.2548 111.263 33.3033 111.225C33.3572 111.188 33.4057 111.144 33.4596 111.107C33.508 111.069 33.5512 111.031 33.5943 110.994C33.6427 110.95 33.6912 110.913 33.7344 110.87C33.7559 110.854 33.7721 110.837 33.7936 110.821C33.8098 110.805 33.8259 110.789 33.8421 110.773C33.9175 110.697 33.993 110.627 34.063 110.552C34.0846 110.525 34.1115 110.503 34.1331 110.476C34.2247 110.379 34.3109 110.277 34.3863 110.18C34.3917 110.175 34.3917 110.169 34.3971 110.169C34.4132 110.148 34.4294 110.121 34.451 110.099C34.4994 110.035 34.5479 109.975 34.591 109.911C34.6126 109.873 34.6395 109.841 34.6611 109.803C34.6988 109.744 34.7365 109.684 34.7688 109.63C34.7796 109.614 34.7904 109.598 34.7958 109.582C34.8066 109.56 34.8173 109.533 34.8335 109.512C34.8604 109.463 34.8874 109.415 34.9089 109.366C34.9305 109.323 34.9466 109.286 34.9682 109.242C34.9897 109.194 35.0113 109.146 35.0329 109.092C35.0436 109.07 35.0544 109.049 35.0598 109.027C35.0652 109.005 35.0706 108.984 35.0814 108.968C35.0975 108.919 35.1137 108.871 35.1298 108.828C35.1406 108.785 35.1568 108.741 35.1676 108.698C35.1783 108.65 35.1945 108.601 35.2053 108.553C35.2107 108.526 35.2214 108.499 35.2268 108.477C35.2322 108.461 35.2322 108.44 35.2376 108.424C35.2484 108.375 35.2538 108.327 35.2592 108.278C35.2645 108.235 35.2699 108.192 35.2753 108.149C35.2807 108.1 35.2807 108.052 35.2861 107.998C35.2861 107.971 35.2915 107.939 35.2915 107.912C35.2915 107.885 35.2915 107.852 35.2915 107.825L35.3023 103.585C35.2969 103.634 35.2915 103.687 35.2915 103.747Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M32.3872 99.5064C36.2504 101.737 36.2719 105.352 32.4356 107.583C28.5994 109.814 22.3546 109.814 18.4914 107.583C14.6282 105.352 14.612 101.737 18.4483 99.5064C22.2846 97.2757 28.5239 97.2757 32.3872 99.5064Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M25.7815 99.6194L28.2708 105.234C28.3085 105.315 28.2546 105.406 28.1684 105.417L22.8343 106.198C22.775 106.209 22.7157 106.177 22.6942 106.123L22.2793 105.191C22.2416 105.11 22.2955 105.018 22.3817 105.007L25.5983 104.533C25.6846 104.522 25.733 104.431 25.7007 104.35L23.7718 99.9912C23.7341 99.9103 23.788 99.8187 23.8742 99.808L25.6468 99.5493C25.7007 99.5332 25.7546 99.5655 25.7815 99.6194Z" fill="#DA3635"/> +<path d="M91.3335 42.5L91.3335 58.5" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M110.97 5.64594L104.223 1.72516C105.265 1.12403 106.31 0.978525 107.106 1.43416L113.853 5.35494C113.056 4.89547 112.011 5.04097 110.97 5.64594Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M93.3105 34.2822L86.564 30.3614L101.343 4.75769L108.09 8.67846L93.3105 34.2822Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M108.09 8.67839L101.344 4.75762C102.136 3.38305 103.178 2.32628 104.223 1.72131L110.97 5.64209C109.924 6.24705 108.883 7.30382 108.09 8.67839Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M89.0263 31.8431L82.2798 27.9224L86.5643 30.3614L93.3108 34.2821L89.0263 31.8431Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M83.2828 41.7907L76.5363 37.8699C74.9396 36.9586 74.932 33.9951 76.5171 31.2497C77.3097 29.8752 78.3512 28.8184 79.3926 28.2134C80.4341 27.6123 81.4794 27.4668 82.2758 27.9224L89.0223 31.8432C88.2259 31.3876 87.1806 31.5331 86.1391 32.1342C85.0977 32.7354 84.0562 33.7959 83.2636 35.1705C81.6746 37.9158 81.6861 40.8794 83.2828 41.7907Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M110.97 5.64582C112.011 5.04468 113.056 4.89918 113.853 5.35482C115.449 6.26609 115.457 9.22964 113.872 11.9749L97.1626 40.9137C96.1441 42.6788 94.7848 44.1108 93.3413 44.9455C91.894 45.7802 90.5348 45.918 89.5048 45.3322L83.2829 41.7867C81.6862 40.8754 81.6785 37.9118 83.2637 35.1665C84.0563 33.7919 85.0977 32.7352 86.1392 32.1302C87.1807 31.5291 88.2259 31.3836 89.0223 31.8392L93.3069 34.282L108.086 8.67829C108.883 7.30372 109.924 6.24695 110.97 5.64582Z" fill="#47C562" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +</g> +<defs> +<clipPath id="clip0_11499_201361"> +<rect width="200" height="200" fill="white" transform="translate(0 0.5)"/> +</clipPath> +</defs> +</svg> diff --git a/src/assets/img/joinError.svg b/src/assets/img/joinError.svg new file mode 100644 index 0000000000000000000000000000000000000000..5a870ea901e8cd9a89f93c035d6ad2c7b03ceb7d --- /dev/null +++ b/src/assets/img/joinError.svg @@ -0,0 +1,199 @@ +<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg"> +<g clip-path="url(#clip0_11516_206167)"> +<path d="M34.0001 113.333L12.9833 101.299C6.72166 97.7136 6.70077 91.8726 12.9367 88.2723L40.3447 72.4483C46.5625 68.8584 56.6436 68.8584 62.8614 72.4483L178.986 139.493" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M109.406 131.333L27.9999 178.333" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M34 113.333L115.406 160.333" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M180.084 141.773L190.103 147.451C196.42 151.03 196.467 156.897 190.208 160.511L164.414 175.403C158.196 178.993 148.115 178.993 141.898 175.403L115.292 160.043" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M139.719 144.033C141.096 144.826 141.102 146.125 139.735 146.917L95.7302 172.493C94.358 173.29 92.1268 173.285 90.749 172.493L44.3731 145.718C42.9954 144.926 42.9842 143.632 44.3564 142.834L88.3616 117.259C89.7282 116.467 91.965 116.467 93.3428 117.259L139.719 144.033Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M130.487 144.195C131.597 144.837 131.602 145.88 130.498 146.521L95.016 167.143C93.9115 167.785 92.1098 167.785 90.9998 167.143L53.6046 145.551C52.4945 144.909 52.489 143.866 53.5934 143.225L89.0754 122.603C90.1798 121.961 91.9815 121.961 93.0916 122.603L130.487 144.195Z" fill="#EDEDED"/> +<path d="M58.6528 105.093V144.022L92.6845 163.489V124.555L58.6528 105.093Z" fill="white"/> +<path d="M58.6528 105.093V144.022L92.6845 163.489V124.555L58.6528 105.093Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M92.6845 124.555L126.672 105.065L92.6845 85.5587L58.6528 105.093L92.6845 124.555Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M92.7069 121.682L121.623 105.098L92.7069 88.5038L63.7568 105.121L92.7069 121.682Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M126.672 105.065L126.722 144.022L92.6846 163.49V124.555L126.672 105.065Z" fill="white"/> +<path d="M126.672 105.065L126.722 144.022L92.6846 163.49V124.555L126.672 105.065Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M92.6847 81.1018L58.6475 100.642L92.6847 120.103L126.672 100.608L92.6847 81.1018ZM63.757 100.675L92.707 84.0526L121.618 100.653L92.707 117.236L63.757 100.675Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M58.6528 100.642V107.62L92.6845 127.087V120.103L58.6528 100.642Z" fill="white"/> +<path d="M58.6528 100.642V107.62L92.6845 127.087V120.103L58.6528 100.642Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M92.6846 120.104V126.702L126.672 107.207V100.614L92.6846 120.104Z" fill="white"/> +<path d="M92.6846 120.104V126.702L126.672 107.207V100.614L92.6846 120.104Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M92.707 84.0526V88.5039L117.741 102.873L121.624 100.653L92.707 84.0526Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M63.7568 100.675L92.7069 84.0526V88.5039L67.6001 102.873L63.7568 100.675Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M115.454 117.588V127.768L122.031 124.014L123.107 123.406V113.22L115.454 117.588Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M115.454 117.593V126.652L122.031 122.898V113.845L115.454 117.593Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M105.748 122.926V133.111L112.33 129.352L113.401 128.744V118.564L105.748 122.926Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M105.748 122.931V131.996L112.33 128.242V119.183L105.748 122.931Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M96.2544 127.89V138.07L102.831 134.322L103.907 133.708V123.528L96.2544 127.89Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M96.2544 127.896V136.96L102.831 133.206V124.147L96.2544 127.896Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M115.477 130.01V140.19L122.053 136.441L123.13 135.828V125.642L115.477 130.01Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M115.477 130.016V139.08L122.053 135.326V126.267L115.477 130.016Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M105.776 135.348V145.528L112.353 141.78L113.429 141.166V130.986L105.776 135.348Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M105.776 135.354V144.418L112.353 140.664V131.605L105.776 135.354Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M96.2827 140.318V150.498L102.859 146.744L103.93 146.136V135.951L96.2827 140.318Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M96.2827 140.324V149.383L102.859 145.629V136.575L96.2827 140.324Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M82.2759 155.546L82.3093 129.525L90.4087 134.199L90.3752 160.221L82.2759 155.546Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M59.9585 142.667L59.992 116.645L68.0913 121.319L68.0578 147.341L59.9585 142.667Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M79.5038 131.94L79.4368 155.992L67.2544 148.959L67.3213 124.906L79.5038 131.94Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M65.4363 124.783L68.2476 123.155L68.1695 149.494L65.3638 151.128L65.4363 124.783Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M79.5874 131.036L82.3987 129.402L82.315 157.66L79.5093 159.295L79.5874 131.036Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M63.7236 121.877L66.535 120.248L82.3989 129.402L79.5876 131.036L63.7236 121.877Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M79.5876 131.036L79.5095 159.295L77.7914 158.302L77.864 131.962L65.4361 124.783L65.3636 151.128L63.6455 150.135L63.7236 121.877L79.5876 131.036Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M65.375 128.794L66.2006 128.314L77.8587 135.052L77.8643 136.012L65.375 128.794Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M77.8642 136.012L77.8474 140.123L65.3638 132.905L65.3749 128.794L77.8642 136.012Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M76.5416 143.548L76.536 146.839L75.4204 146.198L75.4316 142.906L76.5416 143.548Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M75.5712 144.385L75.3871 144.608C75.3313 144.675 75.2365 144.703 75.1472 144.675L74.1041 144.34C73.9479 144.29 73.7918 144.424 73.8197 144.586C73.8364 144.669 73.8922 144.731 73.9703 144.758L75.5935 145.266C75.6548 145.288 75.7273 145.277 75.7831 145.238L76.2294 144.943C76.3632 144.853 76.3632 144.664 76.2294 144.574L75.8612 144.335C75.7664 144.279 75.6437 144.295 75.5712 144.385Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M58.6528 63.0233V101.958L92.6901 121.42V82.4851L58.6528 63.0233Z" fill="white"/> +<path d="M58.6528 63.0233V101.958L92.6901 121.42V82.4851L58.6528 63.0233Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M92.6901 82.4851L126.672 62.9954L92.6901 43.489L58.6528 63.0233L92.6901 82.4851Z" fill="white"/> +<path d="M92.6901 82.4851L126.672 62.9954L92.6901 43.489L58.6528 63.0233L92.6901 82.4851Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M126.671 62.9954L126.722 101.958L92.6899 121.42V82.4851L126.671 62.9954Z" fill="white"/> +<path d="M126.671 62.9954L126.722 101.958L92.6899 121.42V82.4851L126.671 62.9954Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M68.5315 75.9029V86.0828L61.9494 82.3288L60.8784 81.7208V71.5409L68.5315 75.9029Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M68.5257 75.9084V84.9672L61.9492 81.2132V72.1544L68.5257 75.9084Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M78.2317 81.2412V91.4267L71.6552 87.6726L70.5786 87.0591V76.8792L78.2317 81.2412Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M78.2318 81.2467V90.3055L71.6553 86.557V77.4983L78.2318 81.2467Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M87.7256 86.2055V96.3911L81.1491 92.637L80.0781 92.029V81.8435L87.7256 86.2055Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M87.7254 86.2112V95.2755L81.1489 91.5215V82.4628L87.7254 86.2112Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M68.6321 88.3253V98.5052L62.0556 94.7568L60.979 94.1432V83.9633L68.6321 88.3253Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M68.6322 88.3308V97.3951L62.0557 93.6411V84.5824L68.6322 88.3308Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M78.3321 93.6692V103.849L71.7611 100.095L70.6846 99.4871V89.3071L78.3321 93.6692Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M78.3324 93.6746V102.733L71.7559 98.9793V89.9205L78.3324 93.6746Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M87.8318 98.6334V108.813L81.2553 105.059L80.1787 104.457V94.2714L87.8318 98.6334Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M87.8258 98.6391V107.698L81.2549 103.944V94.8906L87.8258 98.6391Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M115.454 75.518V85.698L122.031 81.9439L123.107 81.3359V71.156L115.454 75.518Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M115.454 75.5236V84.5824L122.031 80.8283V71.7751L115.454 75.5236Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M105.754 80.8562V91.0417L112.33 87.2877L113.401 86.6741V76.4941L105.754 80.8562Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M105.754 80.8617V89.926L112.33 86.172V77.1133L105.754 80.8617Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M96.2544 85.8206V96.0006L102.836 92.2521L103.907 91.6385V81.4586L96.2544 85.8206Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M96.2544 85.8262V94.8905L102.837 91.1365V82.0778L96.2544 85.8262Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M115.476 87.9404V98.1259L122.058 94.3719L123.129 93.7583V83.5784L115.476 87.9404Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M115.476 87.9459V97.0103L122.058 93.2562V84.1975L115.476 87.9459Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M105.776 93.2842V103.464L112.352 99.7101L113.429 99.1021V88.9221L105.776 93.2842Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M105.776 93.2898V102.354L112.352 98.6001V89.5358L105.776 93.2898Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M96.2822 98.2486V108.429L102.859 104.675L103.935 104.067V93.8866L96.2822 98.2486Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M96.2822 98.2542V107.313L102.859 103.564V94.5057L96.2822 98.2542Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M58.6528 61.0039V63.0232L92.9634 83.2826V81.2634L58.6528 61.0039Z" fill="white"/> +<path d="M58.6528 61.0039V63.0232L92.9634 83.2826V81.2634L58.6528 61.0039Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M92.9634 81.2634L126.549 62.008L92.2829 41.6984L58.6528 61.004L92.9634 81.2634Z" fill="white"/> +<path d="M92.9634 81.2634L126.549 62.008L92.2829 41.6984L58.6528 61.004L92.9634 81.2634Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M126.549 62.0081L126.599 64.0496L92.9634 83.2827V81.2635L126.549 62.0081Z" fill="white"/> +<path d="M126.549 62.0081L126.599 64.0496L92.9634 83.2827V81.2635L126.549 62.0081Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M90.7543 40.6665L60.5659 57.9975L64.5877 60.2956L92.9688 76.7955L119.135 61.7906L123.113 59.5092L90.7543 40.6665ZM92.9855 74.2463L65.0953 58.0254L90.7766 43.2826L118.639 59.537L116.927 60.5188L92.9855 74.2463Z" fill="white"/> +<path d="M90.7543 40.6665L60.5659 57.9975L64.5877 60.2956L92.9688 76.7955L119.135 61.7906L123.113 59.5092L90.7543 40.6665ZM92.9855 74.2463L65.0953 58.0254L90.7766 43.2826L118.639 59.537L116.927 60.5188L92.9855 74.2463Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M60.5659 57.9974V60.1283L92.9632 78.9319V76.801L60.5659 57.9974Z" fill="white"/> +<path d="M60.5659 57.9974V60.1283L92.9632 78.9319V76.801L60.5659 57.9974Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M92.9634 76.801V78.9318L123.113 61.6399V59.509L92.9634 76.801Z" fill="white"/> +<path d="M92.9634 76.801V78.9318L123.113 61.6399V59.509L92.9634 76.801Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M90.771 43.2826L90.8045 45.7035L116.542 60.7419L118.628 59.537L90.771 43.2826Z" fill="white"/> +<path d="M90.771 43.2826L90.8045 45.7035L116.542 60.7419L118.628 59.537L90.771 43.2826Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M65.0898 58.0254L90.7767 43.2826L90.8102 45.7035L67.1983 59.2247L65.0898 58.0254Z" fill="white"/> +<path d="M65.0898 58.0254L90.7767 43.2826L90.8102 45.7035L67.1983 59.2247L65.0898 58.0254Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M97.1886 55.3248C100.374 57.1609 100.393 60.142 97.2281 61.978C94.0627 63.814 88.9165 63.814 85.7314 61.978C82.5463 60.142 82.5331 57.1609 85.6985 55.3248C88.8639 53.4888 94.0035 53.4822 97.1886 55.3248Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M183.915 136.845C187.146 138.708 187.16 141.728 183.955 143.597C180.75 145.466 175.531 145.459 172.3 143.597C169.069 141.735 169.056 138.714 172.267 136.845C175.472 134.983 180.684 134.983 183.915 136.845Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M178 107.333L178 140" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/> +<rect x="0.433013" y="0.25" width="44.4182" height="78.6483" rx="4.5" transform="matrix(0.866025 -0.5 2.20305e-08 1 156.725 34.4453)" fill="white" stroke="#706F6F"/> +<path d="M197.06 8.7409C197.357 8.56837 197.599 8.70641 197.603 9.05146L197.616 13.8693C197.616 14.21 197.374 14.6284 197.077 14.8009L193.652 16.7763C193.354 16.9489 193.113 16.8108 193.109 16.4658L193.096 11.648C193.096 11.3072 193.337 10.8889 193.635 10.7163L197.06 8.7409Z" fill="#DA3635"/> +<path d="M196.391 11.1261C196.421 11.1089 196.447 11.1046 196.473 11.1175C196.516 11.1434 196.516 11.2253 196.473 11.303L195.723 12.6012V12.6875L196.477 13.1188C196.521 13.1447 196.521 13.2266 196.477 13.3043C196.456 13.3431 196.43 13.369 196.4 13.3862C196.374 13.4035 196.344 13.4078 196.318 13.3949L195.563 12.9636L195.49 13.0067L194.739 14.3049C194.718 14.3438 194.692 14.3696 194.662 14.3869C194.631 14.4041 194.606 14.4085 194.58 14.3955C194.537 14.3653 194.537 14.2834 194.58 14.21L195.33 12.9118V12.8255L194.575 12.3942C194.532 12.3683 194.532 12.2864 194.575 12.2087C194.597 12.1699 194.627 12.1397 194.653 12.1268C194.683 12.1095 194.709 12.1052 194.735 12.1182L195.49 12.5495L195.563 12.5064L196.314 11.2081C196.331 11.1736 196.361 11.1434 196.391 11.1261Z" fill="white"/> +<path d="M165.838 52.4246C166.636 51.9631 167.287 52.3341 167.291 53.2528L167.304 57.5832C167.309 58.5019 166.657 59.6233 165.859 60.0848L161.986 62.3233C161.188 62.7849 160.537 62.4096 160.537 61.4952L160.524 57.1648C160.52 56.2461 161.171 55.1247 161.965 54.6675L165.838 52.4246ZM166.998 57.76L166.985 53.4296C166.985 52.705 166.468 52.4117 165.838 52.7783L161.965 55.0168C161.335 55.3792 160.826 56.2634 160.83 56.988L160.843 61.3184C160.843 62.043 161.361 62.332 161.986 61.9697L165.859 59.7311C166.489 59.3645 166.998 58.4846 166.998 57.76Z" fill="#706F6F"/> +<path d="M165.838 52.774C166.467 52.4116 166.981 52.7006 166.985 53.4252L166.998 57.7557C166.998 58.4803 166.489 59.3602 165.859 59.7268L161.986 61.9653C161.356 62.3276 160.843 62.0386 160.843 61.314L160.83 56.9836C160.83 56.259 161.339 55.3748 161.964 55.0125L165.838 52.774Z" fill="white"/> +<path d="M190.315 29.7722C190.652 29.5781 190.928 29.7333 190.928 30.1215C190.928 30.5097 190.656 30.9842 190.32 31.1783L165.631 45.4333C165.29 45.6274 165.019 45.4678 165.019 45.0839C165.019 44.6957 165.29 44.2256 165.627 44.0272L190.315 29.7722Z" fill="#DA3635"/> +<path d="M185.911 29.3406C186.252 29.1465 186.524 29.3018 186.524 29.69C186.524 30.0782 186.252 30.5483 185.915 30.7467L170.034 39.9165C169.698 40.1106 169.426 39.951 169.422 39.5672C169.422 39.179 169.694 38.7088 170.03 38.5147L185.911 29.3406Z" fill="#DA3635"/> +<path d="M182.068 46.4984C182.237 46.4035 182.375 46.4769 182.375 46.6709C182.375 46.865 182.237 47.1023 182.068 47.1972L169.358 54.5382C169.189 54.633 169.051 54.5597 169.051 54.3613C169.051 54.1672 169.189 53.9343 169.358 53.8351L182.068 46.4984Z" fill="#706F6F"/> +<path d="M187.192 45.6314C187.365 45.5322 187.499 45.6099 187.499 45.8083C187.499 46.0024 187.365 46.2396 187.192 46.3345L169.461 56.5739C169.288 56.6731 169.155 56.5912 169.155 56.3971C169.155 56.203 169.288 55.9701 169.461 55.8709L187.192 45.6314Z" fill="#706F6F"/> +<path d="M165.838 63.768C166.636 63.3065 167.287 63.6774 167.291 64.5918L167.304 68.9222C167.309 69.8366 166.657 70.958 165.859 71.4196L161.986 73.6581C161.188 74.1196 160.537 73.7444 160.537 72.83L160.524 68.4996C160.52 67.5852 161.171 66.4637 161.965 66.0022L165.838 63.768ZM166.998 69.0991L166.985 64.7687C166.985 64.0484 166.467 63.7551 165.838 64.1174L161.965 66.3559C161.335 66.7182 160.826 67.6024 160.83 68.3227L160.843 72.6531C160.843 73.3734 161.361 73.6667 161.986 73.3044L165.859 71.0659C166.489 70.7079 166.998 69.8237 166.998 69.0991Z" fill="#706F6F"/> +<path d="M165.838 64.1175C166.467 63.7552 166.981 64.0441 166.985 64.7688L166.998 69.0992C166.998 69.8195 166.489 70.7037 165.859 71.0703L161.986 73.3088C161.356 73.6711 160.843 73.3778 160.843 72.6575L160.83 68.3271C160.83 67.6068 161.339 66.7226 161.964 66.3603L165.838 64.1175Z" fill="white"/> +<path d="M185.92 55.2543C186.092 55.1551 186.226 55.2371 186.226 55.4312C186.226 55.6252 186.092 55.8582 185.92 55.9574L169.241 65.5844C169.068 65.6836 168.935 65.6016 168.935 65.4075C168.935 65.2134 169.068 64.9805 169.241 64.8813L185.92 55.2543Z" fill="#706F6F"/> +<path d="M179.463 60.758C179.631 60.6632 179.769 60.7408 179.769 60.9349C179.769 61.129 179.631 61.3662 179.463 61.4611L169.275 67.3442C169.107 67.4391 168.969 67.3615 168.969 67.1674C168.969 66.9733 169.107 66.7361 169.275 66.6412L179.463 60.758Z" fill="#706F6F"/> +<path d="M165.838 75.8798C166.467 75.5175 166.981 75.8065 166.985 76.5311L166.998 80.8615C166.998 81.5818 166.489 82.466 165.859 82.8326L161.986 85.0711C161.356 85.4334 160.843 85.1401 160.843 84.4198L160.83 80.0894C160.83 79.3648 161.339 78.4806 161.964 78.1183L165.838 75.8798Z" fill="white"/> +<path d="M165.838 75.5303C166.636 75.0688 167.287 75.4398 167.291 76.3585L167.304 80.6889C167.309 81.6076 166.657 82.729 165.859 83.1905L161.986 85.4291C161.188 85.8906 160.537 85.5153 160.537 84.6009L160.524 80.2705C160.52 79.3518 161.171 78.2304 161.965 77.7732L165.838 75.5303ZM166.998 80.8614L166.985 76.531C166.985 75.8064 166.468 75.5131 165.838 75.8797L161.965 78.1182C161.335 78.4806 160.826 79.3648 160.83 80.0894L160.843 84.4198C160.843 85.1401 161.361 85.4334 161.986 85.0711L165.859 82.8325C166.489 82.4702 166.998 81.586 166.998 80.8614Z" fill="#706F6F"/> +<path d="M179.511 70.9842C179.679 70.8893 179.817 70.9626 179.817 71.161C179.817 71.3551 179.679 71.588 179.511 71.6872L169.56 77.4324C169.392 77.5272 169.254 77.4539 169.254 77.2598C169.254 77.0658 169.392 76.8285 169.56 76.7336L179.511 70.9842Z" fill="#706F6F"/> +<path d="M187.434 66.5032C187.602 66.4083 187.74 66.4859 187.74 66.68C187.74 66.8741 187.602 67.1113 187.434 67.2062L181.003 70.9198C180.83 71.019 180.697 70.9414 180.697 70.743C180.697 70.5489 180.83 70.3117 181.003 70.2168L187.434 66.5032Z" fill="#706F6F"/> +<path d="M187.192 68.737C187.365 68.6378 187.499 68.7155 187.499 68.9139C187.499 69.108 187.365 69.3409 187.192 69.4401L169.461 79.6795C169.288 79.7787 169.155 79.7011 169.155 79.507C169.155 79.3129 169.288 79.08 169.461 78.9808L187.192 68.737Z" fill="#706F6F"/> +<path d="M165.838 88.1376C166.636 87.6761 167.287 88.0427 167.291 88.9614L167.304 93.2918C167.309 94.2105 166.657 95.3319 165.859 95.7934L161.986 98.032C161.188 98.4935 160.537 98.1182 160.537 97.2038L160.524 92.8734C160.52 91.9547 161.171 90.8376 161.965 90.3761L165.838 88.1376ZM166.998 93.4686L166.985 89.1382C166.985 88.4179 166.468 88.1246 165.838 88.4869L161.965 90.7255C161.335 91.0878 160.826 91.972 160.83 92.6923L160.843 97.0227C160.843 97.7473 161.361 98.0406 161.986 97.6783L165.859 95.4397C166.489 95.0774 166.998 94.1932 166.998 93.4686Z" fill="#706F6F"/> +<path d="M165.838 88.487C166.467 88.1247 166.981 88.4136 166.985 89.1383L166.998 93.4687C166.998 94.1933 166.489 95.0775 165.859 95.4398L161.986 97.6783C161.356 98.0406 160.843 97.7473 160.843 97.0227L160.83 92.6923C160.83 91.972 161.339 91.0878 161.964 90.7255L165.838 88.487Z" fill="white"/> +<path d="M182.068 82.2071C182.237 82.1122 182.375 82.1855 182.375 82.3839C182.375 82.578 182.237 82.8152 182.068 82.9101L169.358 90.2511C169.189 90.346 169.051 90.2684 169.051 90.0743C169.051 89.8802 169.189 89.643 169.358 89.5481L182.068 82.2071Z" fill="#706F6F"/> +<path d="M187.192 81.3401C187.365 81.2409 187.499 81.3229 187.499 81.517C187.499 81.7111 187.365 81.944 187.192 82.0432L169.461 92.2826C169.288 92.3818 169.155 92.2999 169.155 92.1058C169.155 91.9117 169.288 91.6788 169.461 91.5796L187.192 81.3401Z" fill="#706F6F"/> +<path d="M165.368 66.2224C165.475 66.1577 165.583 66.1448 165.67 66.1922C165.838 66.2871 165.838 66.5977 165.67 66.8823L163.927 69.8972C163.819 70.0827 163.681 70.2293 163.53 70.3156C163.379 70.4019 163.237 70.4191 163.129 70.3544L162.482 69.9835C162.314 69.8886 162.314 69.578 162.482 69.2934C162.564 69.151 162.672 69.0389 162.784 68.9785C162.892 68.9138 163 68.9009 163.086 68.9483L163.535 69.2028L165.074 66.5329C165.152 66.3949 165.26 66.2871 165.368 66.2224Z" fill="#DA3635"/> +<path d="M165.368 55.3146C165.475 55.2499 165.583 55.2369 165.67 55.2844C165.838 55.3793 165.838 55.6898 165.67 55.9745L163.927 58.9894C163.819 59.1748 163.681 59.3215 163.53 59.4077C163.379 59.494 163.237 59.5112 163.129 59.4466L162.482 59.0756C162.314 58.9807 162.314 58.6702 162.482 58.3855C162.564 58.2432 162.672 58.131 162.784 58.0706C162.892 58.006 163 57.993 163.086 58.0405L163.535 58.2949L165.074 55.6251C165.152 55.4871 165.26 55.3749 165.368 55.3146Z" fill="#DA3635"/> +<path d="M165.368 78.4158C165.475 78.3511 165.583 78.3381 165.67 78.3856C165.838 78.4804 165.838 78.791 165.67 79.0757L163.927 82.0906C163.819 82.276 163.681 82.4227 163.53 82.5089C163.379 82.5952 163.237 82.6124 163.129 82.5478L162.482 82.1768C162.314 82.0819 162.314 81.7714 162.482 81.4867C162.564 81.3444 162.672 81.2322 162.784 81.1718C162.892 81.1072 163 81.0942 163.086 81.1417L163.535 81.3961L165.074 78.7263C165.152 78.5926 165.26 78.4805 165.368 78.4158Z" fill="#DA3635"/> +<path d="M165.368 90.5143C165.475 90.4496 165.583 90.4366 165.67 90.4841C165.838 90.579 165.838 90.8895 165.67 91.1742L163.927 94.1891C163.819 94.3746 163.681 94.5212 163.53 94.6075C163.379 94.6937 163.237 94.711 163.129 94.6463L162.482 94.2753C162.314 94.1804 162.314 93.8699 162.482 93.5852C162.564 93.4429 162.672 93.3308 162.784 93.2704C162.892 93.2057 163 93.1927 163.086 93.2402L163.535 93.4947L165.074 90.8248C165.152 90.6911 165.26 90.579 165.368 90.5143Z" fill="#DA3635"/> +<path d="M94.6212 56.6831C96.4499 57.5939 96.4612 59.0728 94.6439 59.9836C92.8265 60.8944 89.8719 60.8944 88.0432 59.9836C86.2146 59.0728 86.207 57.5939 88.0243 56.6831C89.8417 55.7723 92.7925 55.7723 94.6212 56.6831Z" fill="#EDEDED"/> +<path d="M183.136 103.198C185.545 99.0535 185.551 94.5623 183.151 93.167C180.75 91.7717 176.851 94.0006 174.442 98.1454C172.033 102.29 172.026 106.781 174.427 108.177C176.828 109.572 180.727 107.343 183.136 103.198Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M31.3811 175.772C34.6123 177.634 34.6254 180.655 31.4206 182.524C28.2157 184.386 22.9971 184.386 19.766 182.524C16.5348 180.661 16.5216 177.641 19.7331 175.772C22.9379 173.903 28.1565 173.903 31.3811 175.772Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M25.9057 152.864C25.6359 153.496 24.5566 153.627 24.3658 152.831C24.2539 152.39 24.1618 152.449 23.9183 152.068C23.6945 151.686 23.4115 152.054 23.201 151.574C22.918 150.923 22.9772 148.955 23.5168 148.461C24.0236 148.001 24.4184 148.126 24.8988 148.527C25.1357 148.751 25.2608 149.021 25.5174 149.225C25.7083 149.369 25.9912 149.448 26.1492 149.508C27.2416 149.968 26.498 150.633 26.34 151.298C26.2742 151.554 26.2939 151.929 26.1952 152.173C26.0702 152.489 25.8004 152.647 25.7017 152.936" fill="white"/> +<path d="M25.9057 152.864C25.6359 153.496 24.5566 153.627 24.3658 152.831C24.2539 152.39 24.1618 152.449 23.9183 152.068C23.6945 151.686 23.4115 152.054 23.201 151.574C22.918 150.923 22.9772 148.955 23.5168 148.461C24.0236 148.001 24.4184 148.126 24.8988 148.527C25.1357 148.751 25.2608 149.021 25.5174 149.225C25.7083 149.369 25.9912 149.448 26.1492 149.508C27.2416 149.968 26.498 150.633 26.34 151.298C26.2742 151.554 26.2939 151.929 26.1952 152.173C26.0702 152.489 25.8004 152.647 25.7017 152.936" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M25.9057 152.864C25.6359 153.496 24.5566 153.627 24.3658 152.831C24.2539 152.39 24.1618 152.449 23.9183 152.068C23.6945 151.686 23.4115 152.054 23.201 151.574C22.918 150.923 22.9772 148.955 23.5168 148.461C24.0236 148.001 24.4184 148.126 24.8988 148.527C25.1357 148.751 25.2608 149.021 25.5174 149.225C25.7083 149.369 25.9912 149.448 26.1492 149.508C27.2416 149.968 26.498 150.633 26.34 151.298C26.2742 151.554 26.2939 151.929 26.1952 152.173C26.0702 152.489 25.8004 152.647 25.7017 152.936" fill="white"/> +<path d="M25.9057 152.864C25.6359 153.496 24.5566 153.627 24.3658 152.831C24.2539 152.39 24.1618 152.449 23.9183 152.068C23.6945 151.686 23.4115 152.054 23.201 151.574C22.918 150.923 22.9772 148.955 23.5168 148.461C24.0236 148.001 24.4184 148.126 24.8988 148.527C25.1357 148.751 25.2608 149.021 25.5174 149.225C25.7083 149.369 25.9912 149.448 26.1492 149.508C27.2416 149.968 26.498 150.633 26.34 151.298C26.2742 151.554 26.2939 151.929 26.1952 152.173C26.0702 152.489 25.8004 152.647 25.7017 152.936" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M20.2527 157.023C20.5554 158.227 20.6015 159.734 20.6015 161.129C20.6015 162.669 20.2066 164.097 20.2527 165.617C20.7923 165.729 21.3451 161.702 21.4241 161.109C21.5688 160.175 21.661 159.155 21.4899 158.24C21.4241 157.859 20.7133 155.937 20.1079 156.733" fill="white"/> +<path d="M20.2527 157.023C20.5554 158.227 20.6015 159.734 20.6015 161.129C20.6015 162.669 20.2066 164.097 20.2527 165.617C20.7923 165.729 21.3451 161.702 21.4241 161.109C21.5688 160.175 21.661 159.155 21.4899 158.24C21.4241 157.859 20.7133 155.937 20.1079 156.733" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M20.2527 157.023C20.5554 158.227 20.6015 159.734 20.6015 161.129C20.6015 162.669 20.2066 164.097 20.2527 165.617C20.7923 165.729 21.3451 161.702 21.4241 161.109C21.5688 160.175 21.661 159.155 21.4899 158.24C21.4241 157.859 20.7133 155.937 20.1079 156.733" fill="white"/> +<path d="M20.2527 157.023C20.5554 158.227 20.6015 159.734 20.6015 161.129C20.6015 162.669 20.2066 164.097 20.2527 165.617C20.7923 165.729 21.3451 161.702 21.4241 161.109C21.5688 160.175 21.661 159.155 21.4899 158.24C21.4241 157.859 20.7133 155.937 20.1079 156.733" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M29.6372 158.576C30.7165 158.418 30.5454 162.478 30.5585 163.288C30.5717 164.209 30.6507 164.953 30.9863 165.828C31.0982 166.098 31.572 166.808 31.2561 167.098C30.8283 167.493 30.3545 166.749 30.2558 166.414C30.3216 166.749 30.1768 166.762 30.0518 166.94C29.703 166.289 29.703 165.275 29.499 164.558C29.2753 163.735 29.0713 162.972 29.0713 162.116C29.0713 161.149 29.0055 160.195 29.0055 159.26C29.0055 159.056 28.8804 158.247 29.0384 158.102C29.374 157.799 29.782 158.28 29.782 158.629" fill="white"/> +<path d="M29.6372 158.576C30.7165 158.418 30.5454 162.478 30.5585 163.288C30.5717 164.209 30.6507 164.953 30.9863 165.828C31.0982 166.098 31.572 166.808 31.2561 167.098C30.8283 167.493 30.3545 166.749 30.2558 166.414C30.3216 166.749 30.1768 166.762 30.0518 166.94C29.703 166.289 29.703 165.275 29.499 164.558C29.2753 163.735 29.0713 162.972 29.0713 162.116C29.0713 161.149 29.0055 160.195 29.0055 159.26C29.0055 159.056 28.8804 158.247 29.0384 158.102C29.374 157.799 29.782 158.28 29.782 158.629" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M29.6372 158.576C30.7165 158.418 30.5454 162.478 30.5585 163.288C30.5717 164.209 30.6507 164.953 30.9863 165.828C31.0982 166.098 31.572 166.808 31.2561 167.098C30.8283 167.493 30.3545 166.749 30.2558 166.414C30.3216 166.749 30.1768 166.762 30.0518 166.94C29.703 166.289 29.703 165.275 29.499 164.558C29.2753 163.735 29.0713 162.972 29.0713 162.116C29.0713 161.149 29.0055 160.195 29.0055 159.26C29.0055 159.056 28.8804 158.247 29.0384 158.102C29.374 157.799 29.782 158.28 29.782 158.629" fill="white"/> +<path d="M29.6372 158.576C30.7165 158.418 30.5454 162.478 30.5585 163.288C30.5717 164.209 30.6507 164.953 30.9863 165.828C31.0982 166.098 31.572 166.808 31.2561 167.098C30.8283 167.493 30.3545 166.749 30.2558 166.414C30.3216 166.749 30.1768 166.762 30.0518 166.94C29.703 166.289 29.703 165.275 29.499 164.558C29.2753 163.735 29.0713 162.972 29.0713 162.116C29.0713 161.149 29.0055 160.195 29.0055 159.26C29.0055 159.056 28.8804 158.247 29.0384 158.102C29.374 157.799 29.782 158.28 29.782 158.629" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M28.4262 170.902C28.8211 171.376 29.2488 171.869 29.6963 172.317C30.4136 173.047 30.4597 173.567 30.4136 174.6C30.3478 175.554 29.2686 176.917 29.4265 175.232C29.5055 174.39 29.5252 174.469 28.8737 174.041C28.2222 173.613 27.2877 172.869 26.9192 172.165C26.3796 171.119 27.9195 169.928 28.5842 170.829" fill="white"/> +<path d="M28.4262 170.902C28.8211 171.376 29.2488 171.869 29.6963 172.317C30.4136 173.047 30.4597 173.567 30.4136 174.6C30.3478 175.554 29.2686 176.917 29.4265 175.232C29.5055 174.39 29.5252 174.469 28.8737 174.041C28.2222 173.613 27.2877 172.869 26.9192 172.165C26.3796 171.119 27.9195 169.928 28.5842 170.829" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M28.4262 170.902C28.8211 171.376 29.2488 171.869 29.6963 172.317C30.4136 173.047 30.4597 173.567 30.4136 174.6C30.3478 175.554 29.2686 176.917 29.4265 175.232C29.5055 174.39 29.5252 174.469 28.8737 174.041C28.2222 173.613 27.2877 172.869 26.9192 172.165C26.3796 171.119 27.9195 169.928 28.5842 170.829" fill="white"/> +<path d="M28.4262 170.902C28.8211 171.376 29.2488 171.869 29.6963 172.317C30.4136 173.047 30.4597 173.567 30.4136 174.6C30.3478 175.554 29.2686 176.917 29.4265 175.232C29.5055 174.39 29.5252 174.469 28.8737 174.041C28.2222 173.613 27.2877 172.869 26.9192 172.165C26.3796 171.119 27.9195 169.928 28.5842 170.829" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M23.2206 171.191C23.2206 172.731 23.0166 174.251 22.9508 175.811C22.9179 176.574 23.0297 177.476 22.9508 178.22C22.8718 179.029 22.0295 179.523 21.3977 180.062C20.9239 179.509 21.5885 178.239 21.6215 177.542C21.6873 176.416 21.3977 175.35 21.2266 174.258C21.1279 173.606 20.5948 171.718 20.97 171.086C21.5754 170.073 23.0034 171.02 23.2403 171.83" fill="white"/> +<path d="M23.2206 171.191C23.2206 172.731 23.0166 174.251 22.9508 175.811C22.9179 176.574 23.0297 177.476 22.9508 178.22C22.8718 179.029 22.0295 179.523 21.3977 180.062C20.9239 179.509 21.5885 178.239 21.6215 177.542C21.6873 176.416 21.3977 175.35 21.2266 174.258C21.1279 173.606 20.5948 171.718 20.97 171.086C21.5754 170.073 23.0034 171.02 23.2403 171.83" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M23.2206 171.191C23.2206 172.731 23.0166 174.251 22.9508 175.811C22.9179 176.574 23.0297 177.476 22.9508 178.22C22.8718 179.029 22.0295 179.523 21.3977 180.062C20.9239 179.509 21.5885 178.239 21.6215 177.542C21.6873 176.416 21.3977 175.35 21.2266 174.258C21.1279 173.606 20.5948 171.718 20.97 171.086C21.5754 170.073 23.0034 171.02 23.2403 171.83" fill="white"/> +<path d="M23.2206 171.191C23.2206 172.731 23.0166 174.251 22.9508 175.811C22.9179 176.574 23.0297 177.476 22.9508 178.22C22.8718 179.029 22.0295 179.523 21.3977 180.062C20.9239 179.509 21.5885 178.239 21.6215 177.542C21.6873 176.416 21.3977 175.35 21.2266 174.258C21.1279 173.606 20.5948 171.718 20.97 171.086C21.5754 170.073 23.0034 171.02 23.2403 171.83" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M30.4135 173.014C31.5718 173.139 30.6373 176.456 29.8081 176.772C28.9065 177.121 29.5383 175.627 29.716 175.186C29.9397 174.6 30.3806 173.475 30.3346 172.869" fill="white"/> +<path d="M30.4135 173.014C31.5718 173.139 30.6373 176.456 29.8081 176.772C28.9065 177.121 29.5383 175.627 29.716 175.186C29.9397 174.6 30.3806 173.475 30.3346 172.869" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M30.4135 173.014C31.5718 173.139 30.6373 176.456 29.8081 176.772C28.9065 177.121 29.5383 175.627 29.716 175.186C29.9397 174.6 30.3806 173.475 30.3346 172.869" fill="white"/> +<path d="M30.4135 173.014C31.5718 173.139 30.6373 176.456 29.8081 176.772C28.9065 177.121 29.5383 175.627 29.716 175.186C29.9397 174.6 30.3806 173.475 30.3346 172.869" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M22.997 177.884C23.6024 178.95 22.8983 179.997 21.9309 180.628C21.5031 180.911 20.8516 181.247 20.595 180.628C20.3712 180.076 21.0425 179.246 21.2136 178.753C21.2004 180.845 22.5955 178.628 22.9904 177.831C23.1352 177.91 23.0891 177.976 23.1154 178.101" fill="white"/> +<path d="M22.997 177.884C23.6024 178.95 22.8983 179.997 21.9309 180.628C21.5031 180.911 20.8516 181.247 20.595 180.628C20.3712 180.076 21.0425 179.246 21.2136 178.753C21.2004 180.845 22.5955 178.628 22.9904 177.831C23.1352 177.91 23.0891 177.976 23.1154 178.101" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M22.997 177.884C23.6024 178.95 22.8983 179.997 21.9309 180.628C21.5031 180.911 20.8516 181.247 20.595 180.628C20.3712 180.076 21.0425 179.246 21.2136 178.753C21.2004 180.845 22.5955 178.628 22.9904 177.831C23.1352 177.91 23.0891 177.976 23.1154 178.101" fill="white"/> +<path d="M22.997 177.884C23.6024 178.95 22.8983 179.997 21.9309 180.628C21.5031 180.911 20.8516 181.247 20.595 180.628C20.3712 180.076 21.0425 179.246 21.2136 178.753C21.2004 180.845 22.5955 178.628 22.9904 177.831C23.1352 177.91 23.0891 177.976 23.1154 178.101" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M37.3497 163.86C36.7771 164.051 36.5731 164.861 36.6653 165.381C36.7311 165.716 36.8693 165.933 36.889 166.302C36.9022 166.605 36.7771 167.124 37.0338 167.302C37.2905 167.48 37.8762 167.203 38.0341 166.999C38.3368 166.585 38.1591 166.368 38.146 165.966C38.1328 165.525 38.8304 165.394 38.6527 164.933C38.4882 164.545 37.7774 163.656 37.3497 163.86Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M40.2651 169.289C40.1072 170.033 40.1204 170.862 40.0611 171.606C39.9953 172.211 40.252 173.666 39.9032 174.146C39.1398 175.212 38.949 172.942 38.9161 172.527C38.8239 171.481 39.153 170.704 39.2188 169.704" fill="white"/> +<path d="M40.2651 169.289C40.1072 170.033 40.1204 170.862 40.0611 171.606C39.9953 172.211 40.252 173.666 39.9032 174.146C39.1398 175.212 38.949 172.942 38.9161 172.527C38.8239 171.481 39.153 170.704 39.2188 169.704" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M40.2651 169.289C40.1072 170.033 40.1204 170.862 40.0611 171.606C39.9953 172.211 40.252 173.666 39.9032 174.146C39.1398 175.212 38.949 172.942 38.9161 172.527C38.8239 171.481 39.153 170.704 39.2188 169.704" fill="white"/> +<path d="M40.2651 169.289C40.1072 170.033 40.1204 170.862 40.0611 171.606C39.9953 172.211 40.252 173.666 39.9032 174.146C39.1398 175.212 38.949 172.942 38.9161 172.527C38.8239 171.481 39.153 170.704 39.2188 169.704" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M39.0145 175.35C39.0013 175.508 39.0276 175.699 39.0934 175.824C40.0148 176.048 42.4891 176.252 41.7455 177.443C41.219 177.489 40.6004 177.16 40.0806 177.028C39.5278 176.884 38.9223 176.884 38.3695 176.726C37.7641 176.568 37.4482 176.252 37.6522 175.554C37.7641 175.16 37.7312 175.048 38.2577 175.061C38.5604 175.074 38.7973 175.015 38.8631 175.41" fill="white"/> +<path d="M39.0145 175.35C39.0013 175.508 39.0276 175.699 39.0934 175.824C40.0148 176.048 42.4891 176.252 41.7455 177.443C41.219 177.489 40.6004 177.16 40.0806 177.028C39.5278 176.884 38.9223 176.884 38.3695 176.726C37.7641 176.568 37.4482 176.252 37.6522 175.554C37.7641 175.16 37.7312 175.048 38.2577 175.061C38.5604 175.074 38.7973 175.015 38.8631 175.41" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M39.0145 175.35C39.0013 175.508 39.0276 175.699 39.0934 175.824C40.0148 176.048 42.4891 176.252 41.7455 177.443C41.219 177.489 40.6004 177.16 40.0806 177.028C39.5278 176.884 38.9223 176.884 38.3695 176.726C37.7641 176.568 37.4482 176.252 37.6522 175.554C37.7641 175.16 37.7312 175.048 38.2577 175.061C38.5604 175.074 38.7973 175.015 38.8631 175.41" fill="white"/> +<path d="M39.0145 175.35C39.0013 175.508 39.0276 175.699 39.0934 175.824C40.0148 176.048 42.4891 176.252 41.7455 177.443C41.219 177.489 40.6004 177.16 40.0806 177.028C39.5278 176.884 38.9223 176.884 38.3695 176.726C37.7641 176.568 37.4482 176.252 37.6522 175.554C37.7641 175.16 37.7312 175.048 38.2577 175.061C38.5604 175.074 38.7973 175.015 38.8631 175.41" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M36.5995 175.35C36.8693 175.699 36.6785 177.193 36.6653 177.792C36.6521 178.759 36.6785 180.01 35.54 179.931C35.5071 178.838 35.5531 177.759 35.6058 176.68C35.619 176.331 35.4281 175.456 35.5926 175.186C35.8427 174.837 36.5995 174.745 36.5995 175.35Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M41.805 176.759C42.5354 175.837 42.5223 177.568 42.2459 178.042C41.6141 179.187 41.6931 176.93 41.8181 176.693" fill="white"/> +<path d="M41.805 176.759C42.5354 175.837 42.5223 177.568 42.2459 178.042C41.6141 179.187 41.6931 176.93 41.8181 176.693" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M41.805 176.759C42.5354 175.837 42.5223 177.568 42.2459 178.042C41.6141 179.187 41.6931 176.93 41.8181 176.693" fill="white"/> +<path d="M41.805 176.759C42.5354 175.837 42.5223 177.568 42.2459 178.042C41.6141 179.187 41.6931 176.93 41.8181 176.693" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M24.2671 152.515C23.2997 152.515 22.2336 152.37 21.5821 153.226C21.1543 153.798 19.8711 155.641 19.9632 156.319C20.0553 157.036 21.0885 157.286 21.2201 158.03C21.3452 158.747 21.207 159.872 21.1543 160.603C21.0293 162.478 20.5489 164.268 20.5226 166.17C20.5094 167.184 20.0488 168.171 20.0948 169.151C20.1277 169.836 20.7003 171.165 21.3781 171.435C21.8848 171.626 22.1875 171.29 22.635 171.211C23.1286 171.145 23.3523 171.323 23.7801 171.527C25.037 172.159 26.0636 172.323 27.2548 171.461C27.6693 171.178 27.9852 170.889 28.4261 170.652C29.0316 170.349 29.2356 170.461 29.2685 169.619C29.3343 168.809 29.2224 168 29.2685 167.203C29.3343 166.111 28.8736 164.953 28.663 163.873C28.4393 162.603 28.5972 161.794 28.8407 160.557C28.9065 160.241 28.7618 159.333 29.0184 159.116C29.354 158.813 30.0977 159.385 30.4596 159.05C31.0782 158.523 29.6173 156.161 29.1566 155.674C28.3932 154.831 27.4456 153.884 26.5704 153.18C26.4716 153.114 26.1426 152.831 26.0176 152.818C25.5569 152.752 25.8596 152.916 25.524 153.041C24.9515 153.344 24.6027 153.357 24.2671 152.515Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M22.2996 153.009C22.3128 152.864 22.4444 152.851 22.3128 152.739C22.8392 155.753 24.7082 158.484 25.9651 161.274C26.1889 161.781 26.5179 162.748 27.0312 162.972C27.5379 163.176 28.4922 162.959 29.0186 162.893C30.0979 162.781 29.861 163.367 30.0057 164.308C30.1637 165.374 30.4467 165.782 29.0844 165.848C28.2421 165.894 26.814 166.131 26.3402 165.295C25.8467 164.439 25.9914 163.09 27.0575 163.077C26.4258 162.919 25.8006 161.412 25.3268 160.669C24.7872 159.813 24.3923 158.635 23.8198 157.799C23.1551 156.845 22.3588 155.641 21.9969 154.529C21.8718 154.134 21.5231 152.212 22.4115 152.673" fill="white"/> +<path d="M22.2996 153.009C22.3128 152.864 22.4444 152.851 22.3128 152.739C22.8392 155.753 24.7082 158.484 25.9651 161.274C26.1889 161.781 26.5179 162.748 27.0312 162.972C27.5379 163.176 28.4922 162.959 29.0186 162.893C30.0979 162.781 29.861 163.367 30.0057 164.308C30.1637 165.374 30.4467 165.782 29.0844 165.848C28.2421 165.894 26.814 166.131 26.3402 165.295C25.8467 164.439 25.9914 163.09 27.0575 163.077C26.4258 162.919 25.8006 161.412 25.3268 160.669C24.7872 159.813 24.3923 158.635 23.8198 157.799C23.1551 156.845 22.3588 155.641 21.9969 154.529C21.8718 154.134 21.5231 152.212 22.4115 152.673" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M22.2996 153.009C22.3128 152.864 22.4444 152.851 22.3128 152.739C22.8392 155.753 24.7082 158.484 25.9651 161.274C26.1889 161.781 26.5179 162.748 27.0312 162.972C27.5379 163.176 28.4922 162.959 29.0186 162.893C30.0979 162.781 29.861 163.367 30.0057 164.308C30.1637 165.374 30.4467 165.782 29.0844 165.848C28.2421 165.894 26.814 166.131 26.3402 165.295C25.8467 164.439 25.9914 163.09 27.0575 163.077C26.4258 162.919 25.8006 161.412 25.3268 160.669C24.7872 159.813 24.3923 158.635 23.8198 157.799C23.1551 156.845 22.3588 155.641 21.9969 154.529C21.8718 154.134 21.5231 152.212 22.4115 152.673" fill="white"/> +<path d="M22.2996 153.009C22.3128 152.864 22.4444 152.851 22.3128 152.739C22.8392 155.753 24.7082 158.484 25.9651 161.274C26.1889 161.781 26.5179 162.748 27.0312 162.972C27.5379 163.176 28.4922 162.959 29.0186 162.893C30.0979 162.781 29.861 163.367 30.0057 164.308C30.1637 165.374 30.4467 165.782 29.0844 165.848C28.2421 165.894 26.814 166.131 26.3402 165.295C25.8467 164.439 25.9914 163.09 27.0575 163.077C26.4258 162.919 25.8006 161.412 25.3268 160.669C24.7872 159.813 24.3923 158.635 23.8198 157.799C23.1551 156.845 22.3588 155.641 21.9969 154.529C21.8718 154.134 21.5231 152.212 22.4115 152.673" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M25.8269 149.692C25.7939 149.916 25.6821 150.166 25.557 150.324C25.5241 149.547 25.0503 148.639 24.2869 148.323C23.3064 147.928 23.3656 148.83 23.2735 149.573C23.1945 150.37 23.0037 151.146 23.7013 151.686C23.9579 151.877 24.6686 151.864 24.1619 152.291C23.9382 152.482 23.3656 152.225 23.0695 152.482C22.8918 152.008 22.9774 151.581 22.7339 151.087C22.497 150.561 22.1284 150.074 22.2601 149.468C22.4838 148.501 23.9908 147.579 24.8924 147.375C26.1954 147.073 26.8929 148.468 27.143 149.58C27.2878 150.231 27.2088 150.547 27.7287 151.021C28.2683 151.515 28.9527 151.785 29.4595 152.357C30.2689 153.259 30.4137 154.956 29.3937 155.786C28.9198 155.134 28.2025 154.851 27.5839 154.358C27.1364 154.009 26.1361 153.39 25.8861 152.93C25.5702 152.344 25.8729 151.567 26.123 151.107C26.2678 150.85 26.6495 150.521 26.5507 150.185C26.4389 149.85 26.044 149.712 25.8203 149.962" fill="white"/> +<path d="M25.8269 149.692C25.7939 149.916 25.6821 150.166 25.557 150.324C25.5241 149.547 25.0503 148.639 24.2869 148.323C23.3064 147.928 23.3656 148.83 23.2735 149.573C23.1945 150.37 23.0037 151.146 23.7013 151.686C23.9579 151.877 24.6686 151.864 24.1619 152.291C23.9382 152.482 23.3656 152.225 23.0695 152.482C22.8918 152.008 22.9774 151.581 22.7339 151.087C22.497 150.561 22.1284 150.074 22.2601 149.468C22.4838 148.501 23.9908 147.579 24.8924 147.375C26.1954 147.073 26.8929 148.468 27.143 149.58C27.2878 150.231 27.2088 150.547 27.7287 151.021C28.2683 151.515 28.9527 151.785 29.4595 152.357C30.2689 153.259 30.4137 154.956 29.3937 155.786C28.9198 155.134 28.2025 154.851 27.5839 154.358C27.1364 154.009 26.1361 153.39 25.8861 152.93C25.5702 152.344 25.8729 151.567 26.123 151.107C26.2678 150.85 26.6495 150.521 26.5507 150.185C26.4389 149.85 26.044 149.712 25.8203 149.962" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M25.8269 149.692C25.7939 149.916 25.6821 150.166 25.557 150.324C25.5241 149.547 25.0503 148.639 24.2869 148.323C23.3064 147.928 23.3656 148.83 23.2735 149.573C23.1945 150.37 23.0037 151.146 23.7013 151.686C23.9579 151.877 24.6686 151.864 24.1619 152.291C23.9382 152.482 23.3656 152.225 23.0695 152.482C22.8918 152.008 22.9774 151.581 22.7339 151.087C22.497 150.561 22.1284 150.074 22.2601 149.468C22.4838 148.501 23.9908 147.579 24.8924 147.375C26.1954 147.073 26.8929 148.468 27.143 149.58C27.2878 150.231 27.2088 150.547 27.7287 151.021C28.2683 151.515 28.9527 151.785 29.4595 152.357C30.2689 153.259 30.4137 154.956 29.3937 155.786C28.9198 155.134 28.2025 154.851 27.5839 154.358C27.1364 154.009 26.1361 153.39 25.8861 152.93C25.5702 152.344 25.8729 151.567 26.123 151.107C26.2678 150.85 26.6495 150.521 26.5507 150.185C26.4389 149.85 26.044 149.712 25.8203 149.962" fill="#DA3635"/> +<path d="M25.8269 149.692C25.7939 149.916 25.6821 150.166 25.557 150.324C25.5241 149.547 25.0503 148.639 24.2869 148.323C23.3064 147.928 23.3656 148.83 23.2735 149.573C23.1945 150.37 23.0037 151.146 23.7013 151.686C23.9579 151.877 24.6686 151.864 24.1619 152.291C23.9382 152.482 23.3656 152.225 23.0695 152.482C22.8918 152.008 22.9774 151.581 22.7339 151.087C22.497 150.561 22.1284 150.074 22.2601 149.468C22.4838 148.501 23.9908 147.579 24.8924 147.375C26.1954 147.073 26.8929 148.468 27.143 149.58C27.2878 150.231 27.2088 150.547 27.7287 151.021C28.2683 151.515 28.9527 151.785 29.4595 152.357C30.2689 153.259 30.4137 154.956 29.3937 155.786C28.9198 155.134 28.2025 154.851 27.5839 154.358C27.1364 154.009 26.1361 153.39 25.8861 152.93C25.5702 152.344 25.8729 151.567 26.123 151.107C26.2678 150.85 26.6495 150.521 26.5507 150.185C26.4389 149.85 26.044 149.712 25.8203 149.962" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M38.1725 166.809C38.3633 167.348 39.074 167.315 39.4886 167.651C39.8045 167.921 40.2849 168.335 40.2652 169.033C40.252 169.605 39.7584 169.428 39.5018 169.796C39.3438 170.033 39.4228 170.922 39.357 171.237C39.278 171.711 39.232 172.126 39.2122 172.619C39.1793 173.541 39.3702 174.396 39.357 175.318C39.0872 175.416 37.771 175.653 37.5341 175.475C37.2314 175.252 37.3433 174.015 37.3104 173.666C37.2314 174.015 37.2117 174.87 36.9616 175.127C36.7049 175.396 35.8034 175.554 35.5796 175.331C35.2966 175.028 35.5664 173.429 35.5335 173.014C35.5204 172.429 35.4348 171.843 35.3888 171.27C35.2769 170.02 34.882 168.348 35.4546 167.177C35.7244 166.624 36.2969 166.21 36.8497 166.545C37.1656 166.736 36.8629 167.197 37.5012 167.23C37.6789 167.243 37.975 166.894 38.054 166.881" fill="white"/> +<path d="M38.1725 166.809C38.3633 167.348 39.074 167.315 39.4886 167.651C39.8045 167.921 40.2849 168.335 40.2652 169.033C40.252 169.605 39.7584 169.428 39.5018 169.796C39.3438 170.033 39.4228 170.922 39.357 171.237C39.278 171.711 39.232 172.126 39.2122 172.619C39.1793 173.541 39.3702 174.396 39.357 175.318C39.0872 175.416 37.771 175.653 37.5341 175.475C37.2314 175.252 37.3433 174.015 37.3104 173.666C37.2314 174.015 37.2117 174.87 36.9616 175.127C36.7049 175.396 35.8034 175.554 35.5796 175.331C35.2966 175.028 35.5664 173.429 35.5335 173.014C35.5204 172.429 35.4348 171.843 35.3888 171.27C35.2769 170.02 34.882 168.348 35.4546 167.177C35.7244 166.624 36.2969 166.21 36.8497 166.545C37.1656 166.736 36.8629 167.197 37.5012 167.23C37.6789 167.243 37.975 166.894 38.054 166.881" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M38.1725 166.809C38.3633 167.348 39.074 167.315 39.4886 167.651C39.8045 167.921 40.2849 168.335 40.2652 169.033C40.252 169.605 39.7584 169.428 39.5018 169.796C39.3438 170.033 39.4228 170.922 39.357 171.237C39.278 171.711 39.232 172.126 39.2122 172.619C39.1793 173.541 39.3702 174.396 39.357 175.318C39.0872 175.416 37.771 175.653 37.5341 175.475C37.2314 175.252 37.3433 174.015 37.3104 173.666C37.2314 174.015 37.2117 174.87 36.9616 175.127C36.7049 175.396 35.8034 175.554 35.5796 175.331C35.2966 175.028 35.5664 173.429 35.5335 173.014C35.5204 172.429 35.4348 171.843 35.3888 171.27C35.2769 170.02 34.882 168.348 35.4546 167.177C35.7244 166.624 36.2969 166.21 36.8497 166.545C37.1656 166.736 36.8629 167.197 37.5012 167.23C37.6789 167.243 37.975 166.894 38.054 166.881" fill="white"/> +<path d="M38.1725 166.809C38.3633 167.348 39.074 167.315 39.4886 167.651C39.8045 167.921 40.2849 168.335 40.2652 169.033C40.252 169.605 39.7584 169.428 39.5018 169.796C39.3438 170.033 39.4228 170.922 39.357 171.237C39.278 171.711 39.232 172.126 39.2122 172.619C39.1793 173.541 39.3702 174.396 39.357 175.318C39.0872 175.416 37.771 175.653 37.5341 175.475C37.2314 175.252 37.3433 174.015 37.3104 173.666C37.2314 174.015 37.2117 174.87 36.9616 175.127C36.7049 175.396 35.8034 175.554 35.5796 175.331C35.2966 175.028 35.5664 173.429 35.5335 173.014C35.5204 172.429 35.4348 171.843 35.3888 171.27C35.2769 170.02 34.882 168.348 35.4546 167.177C35.7244 166.624 36.2969 166.21 36.8497 166.545C37.1656 166.736 36.8629 167.197 37.5012 167.23C37.6789 167.243 37.975 166.894 38.054 166.881" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M37.0929 162.735C37.5536 162.959 37.3957 163.452 37.7247 163.702C38.0735 163.972 38.5012 163.716 38.8961 164.196C39.6397 165.084 38.9948 165.907 38.0077 166.117C38.0077 166.117 36.9284 165.387 37.1982 163.992C37.1127 163.59 36.935 163.097 37.0929 162.735Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M34.4295 102.778C39.4296 105.666 39.4619 110.348 34.4887 113.236C29.5156 116.124 21.4336 116.124 16.4335 113.236C11.4334 110.348 11.4064 105.666 16.3796 102.778C21.3527 99.8899 29.424 99.8899 34.4295 102.778Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/> +<path d="M32.9909 103.489C37.1882 105.914 37.2151 109.842 33.0448 112.266C28.8744 114.691 22.0855 114.691 17.8829 112.266C13.6856 109.842 13.664 105.914 17.8344 103.489C22.0101 101.065 28.7936 101.065 32.9909 103.489Z" fill="#EDEDED"/> +<path d="M35.2915 103.247C35.2861 103.295 35.2861 103.344 35.2807 103.398C35.2753 103.441 35.2699 103.484 35.2645 103.527C35.2592 103.575 35.2484 103.624 35.243 103.672C35.2376 103.715 35.2268 103.759 35.2161 103.802C35.2053 103.85 35.1945 103.899 35.1783 103.947C35.1676 103.99 35.1514 104.033 35.1406 104.076C35.1245 104.125 35.1083 104.173 35.0921 104.217C35.076 104.26 35.0598 104.303 35.0436 104.346C35.0221 104.394 35.0005 104.443 34.979 104.497C34.9628 104.54 34.9413 104.578 34.9197 104.621C34.8982 104.669 34.8712 104.718 34.8443 104.766C34.8227 104.804 34.8012 104.847 34.7796 104.885C34.7473 104.944 34.7096 105.003 34.6719 105.057C34.6503 105.095 34.6288 105.127 34.6018 105.165C34.5587 105.23 34.5102 105.294 34.4617 105.353C34.4402 105.38 34.4186 105.407 34.3971 105.44C34.3162 105.542 34.23 105.639 34.1438 105.736C34.1223 105.763 34.0953 105.784 34.0738 105.811C34.0037 105.887 33.9283 105.962 33.8529 106.032C33.8152 106.065 33.7828 106.097 33.7451 106.129C33.6966 106.172 33.6481 106.216 33.5997 106.253C33.5565 106.291 33.5134 106.329 33.465 106.366C33.4165 106.409 33.3626 106.447 33.3087 106.49C33.2602 106.528 33.2117 106.566 33.1632 106.598C33.1093 106.636 33.0554 106.679 32.9962 106.717C32.9423 106.754 32.8938 106.787 32.8399 106.824C32.7807 106.862 32.7214 106.9 32.6621 106.938C32.5867 106.986 32.5113 107.029 32.4358 107.078C32.2203 107.202 31.9994 107.315 31.7731 107.428C31.7138 107.455 31.6546 107.487 31.5899 107.514C31.3852 107.611 31.175 107.697 30.9595 107.783C30.9326 107.794 30.9056 107.805 30.8733 107.816C30.6416 107.902 30.4045 107.983 30.1675 108.058C30.0004 108.112 29.828 108.155 29.661 108.204C29.5317 108.241 29.4024 108.274 29.2731 108.306C29.0953 108.349 28.9121 108.387 28.7289 108.425C28.5942 108.452 28.4649 108.484 28.3302 108.505C28.2763 108.516 28.217 108.522 28.1631 108.532C27.9368 108.57 27.7105 108.602 27.4788 108.629C27.4142 108.635 27.3441 108.646 27.2795 108.651C27.1502 108.667 27.0155 108.672 26.8808 108.683C26.6599 108.699 26.439 108.716 26.2127 108.726C26.0726 108.732 25.9271 108.737 25.787 108.737C25.6092 108.742 25.426 108.742 25.2482 108.737C25.0974 108.737 24.9465 108.732 24.7956 108.726C24.6286 108.721 24.4616 108.71 24.2945 108.699C24.1437 108.689 23.9928 108.678 23.8365 108.662C23.6695 108.646 23.5079 108.629 23.3462 108.608C23.2008 108.592 23.0499 108.57 22.9044 108.543C22.7266 108.516 22.5542 108.484 22.3818 108.452C22.2471 108.425 22.107 108.398 21.9723 108.371C21.7675 108.328 21.5628 108.274 21.3581 108.22C21.2287 108.188 21.094 108.155 20.9647 108.112C20.8947 108.091 20.8246 108.069 20.76 108.047C20.5552 107.983 20.3559 107.913 20.1619 107.843C20.1026 107.821 20.0488 107.8 19.9895 107.778C19.8117 107.708 19.6393 107.633 19.4669 107.557C19.3807 107.519 19.2944 107.487 19.2136 107.444C18.9658 107.325 18.7233 107.202 18.4916 107.067C16.5466 105.946 15.5767 104.47 15.5821 103.004L15.5713 107.245C15.5659 108.716 16.5358 110.186 18.4809 111.313C18.7125 111.447 18.955 111.571 19.2029 111.69C19.2837 111.727 19.3753 111.765 19.4561 111.803C19.6016 111.868 19.747 111.938 19.8979 111.997C19.9248 112.008 19.9518 112.018 19.9787 112.024C20.0326 112.045 20.0919 112.067 20.1511 112.088C20.3451 112.158 20.5499 112.229 20.7492 112.293C20.8193 112.315 20.8893 112.336 20.9593 112.358C21.0078 112.374 21.0509 112.39 21.0994 112.401C21.1802 112.423 21.2665 112.439 21.3527 112.46C21.5574 112.514 21.7568 112.563 21.9669 112.611C22.0208 112.622 22.0747 112.638 22.1285 112.649C22.2094 112.665 22.2902 112.676 22.371 112.692C22.5434 112.724 22.7212 112.757 22.8936 112.783C22.9637 112.794 23.0337 112.81 23.1038 112.821C23.1792 112.832 23.26 112.837 23.3355 112.848C23.4971 112.87 23.6641 112.886 23.8312 112.902C23.912 112.907 23.9874 112.924 24.0682 112.929C24.1437 112.934 24.2137 112.934 24.2891 112.94C24.4562 112.951 24.6232 112.961 24.7902 112.967C24.8764 112.972 24.9573 112.977 25.0435 112.977C25.1081 112.977 25.1782 112.977 25.2428 112.977C25.4206 112.977 25.6038 112.977 25.7816 112.977C25.8732 112.977 25.9594 112.977 26.051 112.977C26.1049 112.977 26.1588 112.967 26.2073 112.967C26.4282 112.956 26.6545 112.94 26.8754 112.924C26.967 112.918 27.0532 112.913 27.1448 112.907C27.1879 112.902 27.231 112.897 27.2741 112.891C27.3388 112.886 27.4088 112.875 27.4735 112.87C27.7051 112.843 27.9314 112.81 28.1577 112.773C28.2116 112.762 28.2709 112.757 28.3248 112.746C28.3517 112.74 28.3786 112.74 28.4056 112.735C28.5133 112.713 28.6157 112.687 28.7235 112.665C28.9067 112.627 29.0899 112.59 29.2677 112.546C29.397 112.514 29.5263 112.476 29.6556 112.444C29.828 112.396 29.9951 112.352 30.1621 112.299C30.1998 112.288 30.2375 112.277 30.2698 112.266C30.4746 112.202 30.674 112.132 30.8679 112.056C30.8949 112.045 30.9218 112.035 30.9541 112.024C31.1697 111.938 31.3798 111.851 31.5845 111.754C31.6438 111.727 31.7084 111.7 31.7677 111.668C31.994 111.56 32.2203 111.442 32.4304 111.318C32.4735 111.296 32.5113 111.269 32.549 111.248C32.5867 111.226 32.619 111.205 32.6567 111.178C32.716 111.14 32.7753 111.102 32.8345 111.065C32.8884 111.027 32.9423 110.995 32.9908 110.957C33.0447 110.919 33.1039 110.882 33.1578 110.838C33.2063 110.801 33.2548 110.763 33.3033 110.725C33.3572 110.688 33.4057 110.644 33.4596 110.607C33.508 110.569 33.5512 110.531 33.5943 110.494C33.6427 110.45 33.6912 110.413 33.7344 110.37C33.7559 110.354 33.7721 110.337 33.7936 110.321C33.8098 110.305 33.8259 110.289 33.8421 110.273C33.9175 110.197 33.993 110.127 34.063 110.052C34.0846 110.025 34.1115 110.003 34.1331 109.976C34.2247 109.879 34.3109 109.777 34.3863 109.68C34.3917 109.675 34.3917 109.669 34.3971 109.669C34.4132 109.648 34.4294 109.621 34.451 109.599C34.4994 109.535 34.5479 109.475 34.591 109.411C34.6126 109.373 34.6395 109.341 34.6611 109.303C34.6988 109.244 34.7365 109.184 34.7688 109.13C34.7796 109.114 34.7904 109.098 34.7958 109.082C34.8066 109.06 34.8173 109.033 34.8335 109.012C34.8604 108.963 34.8874 108.915 34.9089 108.866C34.9305 108.823 34.9466 108.786 34.9682 108.742C34.9897 108.694 35.0113 108.646 35.0329 108.592C35.0436 108.57 35.0544 108.549 35.0598 108.527C35.0652 108.505 35.0706 108.484 35.0814 108.468C35.0975 108.419 35.1137 108.371 35.1298 108.328C35.1406 108.285 35.1568 108.241 35.1676 108.198C35.1783 108.15 35.1945 108.101 35.2053 108.053C35.2107 108.026 35.2214 107.999 35.2268 107.977C35.2322 107.961 35.2322 107.94 35.2376 107.924C35.2484 107.875 35.2538 107.827 35.2592 107.778C35.2645 107.735 35.2699 107.692 35.2753 107.649C35.2807 107.6 35.2807 107.552 35.2861 107.498C35.2861 107.471 35.2915 107.439 35.2915 107.412C35.2915 107.385 35.2915 107.352 35.2915 107.325L35.3023 103.085C35.2969 103.134 35.2915 103.187 35.2915 103.247Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M32.3872 99.0064C36.2504 101.237 36.2719 104.852 32.4356 107.083C28.5994 109.314 22.3546 109.314 18.4914 107.083C14.6282 104.852 14.612 101.237 18.4483 99.0064C22.2846 96.7757 28.5239 96.7757 32.3872 99.0064Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M25.7815 99.1194L28.2708 104.734C28.3085 104.815 28.2546 104.906 28.1684 104.917L22.8343 105.698C22.775 105.709 22.7157 105.677 22.6942 105.623L22.2793 104.691C22.2416 104.61 22.2955 104.518 22.3817 104.507L25.5983 104.033C25.6846 104.022 25.733 103.931 25.7007 103.85L23.7718 99.4912C23.7341 99.4103 23.788 99.3187 23.8742 99.308L25.6468 99.0493C25.7007 99.0332 25.7546 99.0655 25.7815 99.1194Z" fill="#DA3635"/> +<path d="M91.3335 42L91.3335 58" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M90.1318 49.7412L83.3568 45.8012C82.9917 45.5897 82.6938 45.263 82.4823 44.8113C82.2709 44.3597 82.146 43.7735 82.146 43.1008C82.146 42.4281 82.2517 41.7362 82.4727 41.0154C82.6938 40.3139 83.0013 39.622 83.3761 38.9685C83.7605 38.3151 84.2121 37.7096 84.7311 37.1523C85.2596 36.5949 85.8266 36.1336 86.4512 35.7781C87.0759 35.4225 87.6236 35.2303 88.1426 35.1822C88.6711 35.1342 89.1228 35.2111 89.5168 35.4225L96.2917 39.3625C95.8977 39.1607 95.4461 39.0742 94.9175 39.1223C94.3986 39.1703 93.8316 39.3722 93.2262 39.7181C92.6208 40.0641 92.0346 40.5349 91.506 41.0923C90.9871 41.6497 90.5354 42.2551 90.151 42.9086C89.7762 43.5621 89.4687 44.254 89.2477 44.9555C89.0267 45.6666 88.921 46.3585 88.921 47.0408C88.921 47.7231 89.0363 48.2901 89.2573 48.7514C89.4783 49.2127 89.7666 49.5298 90.1318 49.7412Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M89.5941 35.4609L96.3691 39.401C96.3691 39.401 96.3306 39.3817 96.3018 39.3625L89.5269 35.4225C89.5269 35.4225 89.5653 35.4417 89.5941 35.4609Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M96.3013 39.3529C96.6953 39.5643 97.0028 39.8911 97.2238 40.3427C97.4449 40.804 97.5602 41.3614 97.5602 42.0437C97.5602 42.726 97.4545 43.4179 97.2334 44.1386C97.0124 44.8594 96.7049 45.5513 96.3205 46.2048C95.9265 46.8678 95.4748 47.4733 94.9463 48.0114C94.4274 48.5592 93.8604 49.0012 93.2549 49.3568C92.6495 49.7124 92.0633 49.9238 91.5348 49.9814C91.0159 50.0391 90.5546 49.9622 90.1702 49.7508C89.7858 49.5394 89.4783 49.203 89.2572 48.7418C89.0362 48.2805 88.9209 47.7039 88.9209 47.0312C88.9209 46.3585 89.0266 45.6666 89.2476 44.9459C89.4687 44.2443 89.7762 43.5524 90.151 42.899C90.5354 42.2455 90.987 41.6401 91.506 41.0827C92.0345 40.5253 92.6015 40.064 93.2261 39.7085C93.8508 39.3529 94.3985 39.1607 94.9175 39.1127C95.446 39.0646 95.8977 39.1415 96.2917 39.3529H96.3013Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M96.3974 13.5023L89.6225 9.56226C90.1895 9.88899 90.4682 10.5809 90.4682 11.6284C90.4682 12.5701 90.3048 13.4831 89.9588 14.3672C89.6129 15.2609 89.19 16.1258 88.6615 16.9811C88.1426 17.8364 87.5756 18.682 86.9702 19.5085C86.3743 20.3349 85.8074 21.1614 85.2788 21.9782C84.7599 22.8047 84.3274 23.6119 83.9815 24.4383C83.6355 25.2552 83.4722 26.0816 83.4722 26.9081C83.4722 27.0234 83.4722 27.1291 83.4818 27.2348C83.4914 27.3405 83.5106 27.4462 83.5202 27.5519L84.0776 31.7803L90.8525 35.7203L90.2952 31.492C90.2856 31.3863 90.2663 31.2806 90.2567 31.1749C90.2567 31.0691 90.2471 30.9538 90.2471 30.8481C90.2471 30.0217 90.4105 29.1952 90.7564 28.3784C91.1024 27.5615 91.5348 26.7447 92.0538 25.9183C92.5823 25.1014 93.1397 24.275 93.7451 23.4485C94.3505 22.6221 94.9175 21.7764 95.4365 20.9211C95.965 20.0658 96.3878 19.201 96.7338 18.3072C97.0797 17.4231 97.2431 16.5198 97.2431 15.5684C97.2431 14.5209 96.9644 13.829 96.3974 13.5023Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M86.6536 19.4221L79.8786 15.4916C79.7633 15.4244 79.6576 15.3187 79.5615 15.1937L86.3365 19.1338C86.4326 19.2683 86.5287 19.3644 86.6536 19.4317V19.4221Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M86.336 19.1242L79.561 15.1841L77.543 12.7913L84.3083 16.7313L86.336 19.1242Z" fill="white" stroke="#DA3635" stroke-linejoin="round"/> +<path d="M95.2251 1.54769L102 5.48773C101.866 5.41086 101.731 5.34359 101.596 5.28593C100.732 4.91114 99.6745 4.84387 98.4348 5.09373C97.2048 5.34359 95.8113 5.90096 94.2738 6.79468C93.1782 7.42893 92.1596 8.13045 91.2178 8.88002C90.276 9.6392 89.4015 10.4464 88.5847 11.3017C87.7679 12.157 87.0087 13.0507 86.2976 13.9636C85.5864 14.8862 84.933 15.8087 84.3275 16.7409L77.543 12.7912C78.1484 11.8591 78.8019 10.9365 79.513 10.014C80.2241 9.09144 80.9929 8.20733 81.8001 7.35205C82.617 6.49677 83.5011 5.68954 84.4332 4.93036C85.375 4.17118 86.3937 3.46966 87.4892 2.84502C89.0268 1.9513 90.4202 1.39393 91.6503 1.14407C92.8899 0.903828 93.9374 0.961487 94.8119 1.33627C94.9561 1.39393 95.0906 1.4612 95.2155 1.53808L95.2251 1.54769Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M103.595 7.27513C104.066 8.23612 104.306 9.47579 104.306 10.9749C104.306 12.4741 104.143 13.7714 103.797 14.9919C103.461 16.2219 103.019 17.3847 102.49 18.461C101.962 19.5373 101.385 20.5368 100.751 21.4593C100.126 22.3818 99.5303 23.2467 98.9633 24.0636C98.3963 24.8804 97.9062 25.6492 97.493 26.3507C97.0798 27.0619 96.8203 27.7442 96.7242 28.3784L96.0515 32.7221L90.8526 35.73L90.2952 31.5016L90.2568 31.1845C90.2568 31.0788 90.2472 30.9635 90.2472 30.8577C90.2472 30.0313 90.4105 29.2049 90.7565 28.388C91.1024 27.5712 91.5349 26.7543 92.0538 25.9279C92.5824 25.111 93.1397 24.2846 93.7452 23.4582C94.3506 22.6317 94.9176 21.786 95.4365 20.9308C95.965 20.0755 96.3879 19.2106 96.7338 18.3169C97.0798 17.4328 97.2431 16.5294 97.2431 15.5781C97.2431 14.4537 96.9164 13.7426 96.2629 13.4447C95.6191 13.1564 94.7254 13.3294 93.601 13.9828C92.7361 14.4825 92.0154 15.0015 91.4292 15.5492C90.8526 16.097 90.3529 16.6063 89.93 17.106C89.5072 17.6057 89.1516 18.0382 88.8441 18.4322C88.5366 18.8166 88.2291 19.1049 87.912 19.2779C87.2104 19.6815 86.6819 19.643 86.3359 19.1433L84.3179 16.7505C84.9233 15.8183 85.5768 14.8958 86.2879 13.9732C86.999 13.0507 87.7678 12.1666 88.575 11.3113C89.3919 10.456 90.276 9.64877 91.2081 8.88959C92.1499 8.13041 93.1686 7.42889 94.2641 6.80425C95.8017 5.91053 97.1951 5.35316 98.4252 5.1033C99.6648 4.86306 100.712 4.92072 101.587 5.2955C102.461 5.67029 103.124 6.34298 103.595 7.30396V7.27513Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10"/> +</g> +<defs> +<clipPath id="clip0_11516_206167"> +<rect width="200" height="200" fill="white"/> +</clipPath> +</defs> +</svg> diff --git a/src/assets/img/joinRefused.svg b/src/assets/img/joinRefused.svg new file mode 100644 index 0000000000000000000000000000000000000000..79b1fce95bef2011d00c914a2b04ae453f08d4d2 --- /dev/null +++ b/src/assets/img/joinRefused.svg @@ -0,0 +1,250 @@ +<svg width="200" height="201" viewBox="0 0 200 201" fill="none" xmlns="http://www.w3.org/2000/svg"> +<path d="M116.463 134.905L184.883 95.4026C191.101 91.8127 191.101 85.9924 184.883 82.4026L148.679 61.5" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M21.0001 126.54L44.0808 113.214C50.2986 109.624 60.3797 109.624 66.5975 113.214L101.945 133.622" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M145.673 140.952C146.993 141.714 146.997 142.953 145.691 143.715L103.532 168.215C102.222 168.977 100.078 168.977 98.7589 168.215L54.3287 142.564C53.0092 141.802 53.0003 140.562 54.311 139.801L96.4697 115.301C97.7804 114.539 99.9235 114.539 101.243 115.301L145.673 140.952Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M136.825 141.112C137.888 141.727 137.892 142.728 136.838 143.339L102.845 163.092C101.787 163.708 100.06 163.708 98.9969 163.092L63.1702 142.409C62.1075 141.794 62.0986 140.797 63.1569 140.182L97.1504 120.429C98.2087 119.813 99.9356 119.813 100.998 120.429L136.825 141.112Z" fill="#EDEDED"/> +<path d="M68.0098 103.645V140.947L100.617 159.593V122.296L68.0098 103.645Z" fill="white"/> +<path d="M68.0098 103.645V140.947L100.617 159.593V122.296L68.0098 103.645Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M100.617 122.298L133.176 103.625L100.617 84.9344L68.0098 103.647L100.617 122.298Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M100.639 119.543L128.336 103.656L100.639 87.7551L72.9023 103.678L100.639 119.543Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M133.176 103.624L133.225 140.948L100.617 159.594V122.297L133.176 103.624Z" fill="white"/> +<path d="M133.176 103.624L133.225 140.948L100.617 159.594V122.297L133.176 103.624Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M100.617 80.6702L68.0098 99.3872L100.617 118.033L133.176 99.3606L100.617 80.6702ZM72.9026 99.4182L100.639 83.4952L128.341 99.396L100.639 115.279L72.9026 99.4182Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M68.0098 99.3876V106.074L100.617 124.72V118.034L68.0098 99.3876Z" fill="white"/> +<path d="M68.0098 99.3876V106.074L100.617 124.72V118.034L68.0098 99.3876Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M100.617 118.032V124.351L133.176 105.674V99.3551L100.617 118.032Z" fill="white"/> +<path d="M100.617 118.032V124.351L133.176 105.674V99.3551L100.617 118.032Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M100.64 83.4957V87.7554L124.622 101.526L128.337 99.3966L100.64 83.4957Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M72.9023 99.4187L100.639 83.4957V87.7554L76.5864 101.526L72.9023 99.4187Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M122.429 115.62V125.37L128.73 121.774L129.757 121.194V111.435L122.429 115.62Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M122.429 115.624V124.302L128.73 120.707V112.032L122.429 115.624Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M113.135 120.734V130.489L119.436 126.893L120.464 126.309V116.554L113.135 120.734Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M113.135 120.739V129.422L119.436 125.827V117.148L113.135 120.739Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M104.035 125.49V135.24L110.336 131.649L111.368 131.065V121.31L104.035 125.49Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M104.035 125.495V134.178L110.336 130.583V121.904L104.035 125.495Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M122.452 127.522V137.277L128.753 133.681L129.784 133.093V123.338L122.452 127.522Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M122.452 127.526V136.209L128.753 132.614V123.935L122.452 127.526Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M113.158 132.637V142.387L119.459 138.796L120.491 138.211V128.457L113.158 132.637Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M113.158 132.642V141.325L119.459 137.729V129.051L113.158 132.642Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M104.063 137.392V147.147L110.36 143.552L111.391 142.967V133.212L104.063 137.392Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M104.063 137.401V146.08L110.36 142.484V133.81L104.063 137.401Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M90.645 151.982L90.676 127.057L98.4338 131.534L98.4028 156.463L90.645 151.982Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M69.2632 139.646L69.2942 114.716L77.052 119.198L77.021 144.123L69.2632 139.646Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M87.9929 129.366L87.9265 152.41L76.2588 145.67L76.3252 122.631L87.9929 129.366Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M74.5157 122.513L77.2035 120.95L77.1326 146.19L74.4404 147.753L74.5157 122.513Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M88.0704 128.503L90.7626 126.94L90.6829 154.008L87.9951 155.575L88.0704 128.503Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M72.8716 119.731L75.5638 118.164L90.7606 126.94L88.0683 128.503L72.8716 119.731Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M88.0704 128.503L87.9951 155.575L86.3479 154.623L86.4188 129.388L74.5164 122.512L74.4412 147.751L72.7983 146.799L72.8736 119.731L88.0704 128.503Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M74.4521 126.355L75.2403 125.895L86.4077 132.351L86.4165 133.272L74.4521 126.355Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M86.4166 133.272L86.4033 137.208L74.439 130.296L74.4522 126.355L86.4166 133.272Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M85.1502 140.491L85.1413 143.644L84.0742 143.029L84.0875 139.876L85.1502 140.491Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M84.2208 141.29L84.0437 141.503C83.9905 141.569 83.8976 141.596 83.8178 141.569L82.8216 141.25C82.671 141.202 82.5205 141.33 82.5515 141.489C82.5647 141.569 82.6223 141.631 82.6976 141.653L84.2518 142.14C84.3138 142.158 84.3802 142.149 84.4289 142.114L84.854 141.835C84.978 141.751 84.978 141.565 84.854 141.485L84.5042 141.255C84.4112 141.188 84.2917 141.21 84.2208 141.29Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M68.0098 63.3492V100.646L100.617 119.292V81.9954L68.0098 63.3492Z" fill="white"/> +<path d="M68.0098 63.3492V100.646L100.617 119.292V81.9954L68.0098 63.3492Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M100.617 81.9955L133.176 63.3227L100.617 44.6367L68.0098 63.3493L100.617 81.9955Z" fill="white"/> +<path d="M100.617 81.9955L133.176 63.3227L100.617 44.6367L68.0098 63.3493L100.617 81.9955Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M133.176 63.3215L133.225 100.645L100.617 119.291V81.9943L133.176 63.3215Z" fill="white"/> +<path d="M133.176 63.3215L133.225 100.645L100.617 119.291V81.9943L133.176 63.3215Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M77.4748 75.6851V85.44L71.1738 81.8444L70.1421 81.26V71.5051L77.4748 75.6851Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M77.4699 75.6903V84.3736L71.1689 80.7736V72.0992L77.4699 75.6903Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M86.7702 80.8039V90.5587L80.4693 86.9632L79.4375 86.3787V76.6239L86.7702 80.8039Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M86.7653 80.8031V89.4863L80.4644 85.8908V77.2164L86.7653 80.8031Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M95.8639 85.5598V95.3146L89.5629 91.7191L88.5356 91.1346V81.3798L95.8639 85.5598Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M95.8635 85.5634V94.2466L89.5625 90.6511V81.9723L95.8635 85.5634Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M77.5729 87.5883V97.3431L71.2719 93.752L70.2446 93.1631V83.4127L77.5729 87.5883Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M77.5725 87.593V96.2763L71.2715 92.6808V84.002L77.5725 87.593Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M86.8679 92.7066V102.461L80.5669 98.8659L79.5396 98.2814V88.5266L86.8679 92.7066Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M86.8679 92.7118V101.391L80.5669 97.7995V89.1207L86.8679 92.7118Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M95.9631 97.4625V107.217L89.6665 103.622L88.6348 103.042V93.2825L95.9631 97.4625Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M95.9626 97.4705V106.145L89.6616 102.554V93.875L95.9626 97.4705Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M122.429 75.3189V85.0737L128.73 81.4782L129.757 80.8937V71.1389L122.429 75.3189Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M122.429 75.3241V84.0029L128.73 80.4118V71.733L122.429 75.3241Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M113.135 80.4328V90.192L119.436 86.5921L120.464 86.0076V76.2528L113.135 80.4328Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M113.135 80.4413V89.1201L119.436 85.529V76.8502L113.135 80.4413Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M104.035 85.1936V94.9439L110.341 91.3528L111.368 90.7639V81.0135L104.035 85.1936Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M104.035 85.1972V93.8804L110.341 90.2849V81.6061L104.035 85.1972Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M122.45 87.22V96.9749L128.751 93.3794L129.782 92.7949V83.04L122.45 87.22Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M122.45 87.2252V95.9085L128.751 92.313V83.6342L122.45 87.2252Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M113.156 92.3388V102.089L119.457 98.4937L120.489 97.9092V88.1588L113.156 92.3388Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M113.156 92.344V101.027L119.457 97.4317V88.7529L113.156 92.344Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M104.061 97.0947V106.845L110.362 103.254L111.389 102.67V92.9147L104.061 97.0947Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M104.061 97.0999V105.779L110.362 102.188V93.5088L104.061 97.0999Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M68.0098 61.4141V63.3491L100.883 82.7569V80.8263L68.0098 61.4141Z" fill="white"/> +<path d="M68.0098 61.4141V63.3491L100.883 82.7569V80.8263L68.0098 61.4141Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M100.883 80.8262L133.057 62.3749L100.232 42.9229L68.0098 61.4141L100.883 80.8262Z" fill="white"/> +<path d="M100.883 80.8262L133.057 62.3749L100.232 42.9229L68.0098 61.4141L100.883 80.8262Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M133.056 62.3744L133.105 64.336L100.882 82.7563V80.8257L133.056 62.3744Z" fill="white"/> +<path d="M133.056 62.3744L133.105 64.336L100.882 82.7563V80.8257L133.056 62.3744Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M98.7628 41.9332L69.8394 58.5381L73.6917 60.7388L100.879 76.5466L125.951 62.1691L129.759 59.986L98.7628 41.9332ZM100.902 74.1024L74.1787 58.5647L98.7805 44.4439L125.472 60.017L123.834 60.9558L100.902 74.1024Z" fill="white"/> +<path d="M98.7628 41.9332L69.8394 58.5381L73.6917 60.7388L100.879 76.5467L125.951 62.169L129.759 59.986L98.7628 41.9332ZM100.902 74.1024L74.1787 58.5647L98.7805 44.4439L125.472 60.017L123.834 60.9558L100.902 74.1024Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M69.8457 58.5364V60.5777L100.881 78.5906V76.5449L69.8457 58.5364Z" fill="white"/> +<path d="M69.8457 58.5364V60.5777L100.881 78.5906V76.5449L69.8457 58.5364Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M100.881 76.5456V78.5913L129.764 62.0219V59.985L100.881 76.5456Z" fill="white"/> +<path d="M100.881 76.5456V78.5913L129.764 62.0219V59.985L100.881 76.5456Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M98.7832 44.4381L98.8142 46.7539L123.469 61.167L125.471 60.0113L98.7832 44.4381Z" fill="white"/> +<path d="M98.7832 44.4381L98.8142 46.7539L123.469 61.167L125.471 60.0113L98.7832 44.4381Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M74.1802 58.5633L98.7864 44.4381L98.8174 46.7539L76.1949 59.7146L74.1802 58.5633Z" fill="white"/> +<path d="M74.1802 58.5633L98.7864 44.4381L98.8174 46.7539L76.1949 59.7146L74.1802 58.5633Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M107.017 55.6205C110.887 57.8566 110.909 61.4742 107.066 63.7104C103.222 65.9465 96.9655 65.9465 93.0954 63.7104C89.2254 61.4742 89.2077 57.8566 93.0511 55.6205C96.8946 53.3843 103.147 53.3843 107.017 55.6205Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M104.372 57.1573C106.772 58.5432 106.786 60.7882 104.403 62.1742C102.021 63.5601 98.1422 63.5601 95.7422 62.1742C93.3422 60.7882 93.3334 58.5432 95.7156 57.1573C98.0978 55.7713 101.972 55.7713 104.372 57.1573Z" fill="#EDEDED"/> +<path d="M123.199 156.5L141.949 167.325C148.167 170.915 148.167 176.735 141.949 180.325L128.462 188.112" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M128.209 154.049C130.249 155.225 130.261 157.134 128.234 158.311C126.206 159.487 122.91 159.487 120.87 158.311C118.829 157.134 118.821 155.225 120.848 154.049C122.876 152.873 126.168 152.873 128.209 154.049Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M133.362 185.95C138.27 188.784 138.301 193.38 133.42 196.215C128.544 199.05 120.605 199.05 115.698 196.215C110.79 193.38 110.763 188.784 115.645 185.95C120.526 183.115 128.454 183.115 133.362 185.95Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/> +<path d="M131.955 186.648C136.075 189.028 136.101 192.883 132.008 195.263C127.914 197.643 121.251 197.643 117.125 195.263C113.005 192.883 112.984 189.028 117.078 186.648C121.171 184.268 127.83 184.268 131.955 186.648Z" fill="#EDEDED"/> +<path d="M134.208 186.41C134.203 186.457 134.203 186.505 134.198 186.558C134.192 186.6 134.187 186.642 134.182 186.685C134.177 186.732 134.166 186.78 134.161 186.827C134.155 186.87 134.145 186.912 134.134 186.954C134.124 187.002 134.113 187.049 134.097 187.097C134.087 187.139 134.071 187.182 134.06 187.224C134.044 187.272 134.028 187.319 134.013 187.362C133.997 187.404 133.981 187.446 133.965 187.488C133.944 187.536 133.923 187.584 133.901 187.637C133.886 187.679 133.864 187.716 133.843 187.758C133.822 187.806 133.796 187.853 133.769 187.901C133.748 187.938 133.727 187.98 133.706 188.017C133.674 188.075 133.637 188.134 133.6 188.187C133.579 188.224 133.558 188.255 133.531 188.292C133.489 188.356 133.441 188.419 133.394 188.477C133.373 188.504 133.351 188.53 133.33 188.562C133.251 188.663 133.166 188.758 133.082 188.853C133.061 188.879 133.034 188.901 133.013 188.927C132.944 189.001 132.87 189.075 132.796 189.144C132.759 189.176 132.727 189.207 132.69 189.239C132.643 189.281 132.595 189.318 132.548 189.361C132.505 189.398 132.463 189.435 132.415 189.472C132.368 189.514 132.315 189.551 132.262 189.593C132.214 189.63 132.167 189.667 132.119 189.699C132.066 189.736 132.013 189.778 131.955 189.815C131.902 189.852 131.855 189.884 131.802 189.921C131.744 189.958 131.686 189.995 131.627 190.032C131.553 190.08 131.479 190.122 131.405 190.17C131.194 190.291 130.977 190.403 130.755 190.514C130.697 190.54 130.638 190.572 130.575 190.598C130.374 190.693 130.168 190.778 129.956 190.863C129.93 190.873 129.903 190.884 129.872 190.894C129.644 190.979 129.411 191.058 129.179 191.132C129.015 191.185 128.845 191.228 128.682 191.275C128.555 191.312 128.428 191.344 128.301 191.376C128.126 191.418 127.946 191.455 127.767 191.492C127.634 191.518 127.507 191.55 127.375 191.571C127.322 191.582 127.264 191.587 127.211 191.598C126.989 191.635 126.767 191.667 126.54 191.693C126.476 191.698 126.407 191.709 126.344 191.714C126.217 191.73 126.085 191.735 125.953 191.746C125.736 191.762 125.519 191.778 125.297 191.788C125.159 191.793 125.016 191.799 124.879 191.799C124.704 191.804 124.525 191.804 124.35 191.799C124.202 191.799 124.054 191.793 123.906 191.788C123.742 191.783 123.578 191.772 123.414 191.762C123.266 191.751 123.118 191.741 122.964 191.725C122.801 191.709 122.642 191.693 122.483 191.672C122.34 191.656 122.192 191.635 122.05 191.608C121.875 191.582 121.706 191.55 121.537 191.518C121.404 191.492 121.267 191.466 121.135 191.439C120.934 191.397 120.733 191.344 120.532 191.291C120.405 191.259 120.273 191.228 120.146 191.185C120.077 191.164 120.008 191.143 119.945 191.122C119.744 191.058 119.548 190.99 119.358 190.921C119.299 190.9 119.246 190.879 119.188 190.857C119.014 190.789 118.845 190.715 118.675 190.641C118.591 190.603 118.506 190.572 118.427 190.529C118.183 190.413 117.945 190.291 117.718 190.159C115.809 189.059 114.857 187.61 114.862 186.166L114.852 190.328C114.846 191.772 115.798 193.216 117.707 194.321C117.935 194.454 118.173 194.575 118.416 194.692C118.495 194.729 118.585 194.766 118.665 194.803C118.808 194.866 118.95 194.935 119.098 194.993C119.125 195.004 119.151 195.014 119.178 195.02C119.231 195.041 119.289 195.062 119.347 195.083C119.537 195.152 119.738 195.221 119.934 195.284C120.003 195.305 120.072 195.326 120.14 195.347C120.188 195.363 120.23 195.379 120.278 195.39C120.357 195.411 120.442 195.427 120.526 195.448C120.727 195.501 120.923 195.548 121.129 195.596C121.182 195.607 121.235 195.622 121.288 195.633C121.367 195.649 121.447 195.659 121.526 195.675C121.695 195.707 121.87 195.739 122.039 195.765C122.108 195.776 122.176 195.792 122.245 195.802C122.319 195.813 122.399 195.818 122.473 195.829C122.631 195.85 122.795 195.866 122.959 195.882C123.038 195.887 123.113 195.903 123.192 195.908C123.266 195.913 123.335 195.913 123.409 195.919C123.573 195.929 123.737 195.94 123.901 195.945C123.985 195.95 124.065 195.956 124.149 195.956C124.213 195.956 124.281 195.956 124.345 195.956C124.519 195.956 124.699 195.956 124.874 195.956C124.964 195.956 125.048 195.956 125.138 195.956C125.191 195.956 125.244 195.945 125.291 195.945C125.508 195.934 125.73 195.919 125.947 195.903C126.037 195.897 126.122 195.892 126.212 195.887C126.254 195.882 126.296 195.876 126.339 195.871C126.402 195.866 126.471 195.855 126.534 195.85C126.762 195.823 126.984 195.792 127.206 195.755C127.259 195.744 127.317 195.739 127.37 195.728C127.396 195.723 127.423 195.723 127.449 195.718C127.555 195.697 127.656 195.67 127.761 195.649C127.941 195.612 128.121 195.575 128.295 195.533C128.422 195.501 128.549 195.464 128.676 195.432C128.845 195.384 129.009 195.342 129.173 195.289C129.21 195.279 129.247 195.268 129.279 195.258C129.48 195.194 129.676 195.125 129.866 195.051C129.893 195.041 129.919 195.03 129.951 195.02C130.162 194.935 130.369 194.85 130.57 194.755C130.628 194.729 130.691 194.702 130.749 194.67C130.972 194.565 131.194 194.448 131.4 194.327C131.442 194.306 131.479 194.279 131.516 194.258C131.553 194.237 131.585 194.216 131.622 194.189C131.68 194.152 131.738 194.115 131.797 194.078C131.849 194.041 131.902 194.009 131.95 193.972C132.003 193.935 132.061 193.898 132.114 193.856C132.162 193.819 132.209 193.782 132.257 193.745C132.31 193.708 132.357 193.666 132.41 193.629C132.458 193.592 132.5 193.555 132.542 193.518C132.59 193.475 132.637 193.438 132.68 193.396C132.701 193.38 132.717 193.364 132.738 193.348C132.754 193.332 132.77 193.317 132.786 193.301C132.86 193.227 132.934 193.158 133.002 193.084C133.024 193.057 133.05 193.036 133.071 193.01C133.161 192.915 133.246 192.814 133.32 192.719C133.325 192.714 133.325 192.708 133.33 192.708C133.346 192.687 133.362 192.661 133.383 192.64C133.431 192.576 133.478 192.518 133.521 192.455C133.542 192.418 133.568 192.386 133.589 192.349C133.626 192.291 133.664 192.232 133.695 192.18C133.706 192.164 133.716 192.148 133.722 192.132C133.732 192.111 133.743 192.084 133.759 192.063C133.785 192.016 133.812 191.968 133.833 191.92C133.854 191.878 133.87 191.841 133.891 191.799C133.912 191.751 133.933 191.704 133.954 191.651C133.965 191.629 133.976 191.608 133.981 191.587C133.986 191.566 133.991 191.545 134.002 191.529C134.018 191.481 134.034 191.434 134.05 191.391C134.06 191.349 134.076 191.307 134.087 191.265C134.097 191.217 134.113 191.169 134.124 191.122C134.129 191.095 134.139 191.069 134.145 191.048C134.15 191.032 134.15 191.011 134.155 190.995C134.166 190.947 134.171 190.9 134.177 190.852C134.182 190.81 134.187 190.767 134.192 190.725C134.198 190.678 134.198 190.63 134.203 190.577C134.203 190.551 134.208 190.519 134.208 190.492C134.208 190.466 134.208 190.434 134.208 190.408L134.219 186.246C134.219 186.298 134.214 186.351 134.208 186.41Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M131.358 182.247C135.15 184.437 135.171 187.986 131.405 190.175C127.64 192.365 121.51 192.365 117.718 190.175C113.926 187.986 113.91 184.437 117.676 182.247C121.441 180.058 127.566 180.058 131.358 182.247Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M129.094 183.966C129.226 184.046 129.231 184.173 129.089 184.252L125.984 186.055C125.852 186.135 125.852 186.262 125.989 186.341L128.951 188.049C129.083 188.128 129.089 188.255 128.946 188.335L128.306 188.705C128.168 188.784 127.941 188.784 127.809 188.71L124.847 187.002C124.71 186.923 124.482 186.923 124.345 187.002L121.214 188.821C121.076 188.901 120.849 188.901 120.717 188.827L119.976 188.398C119.839 188.319 119.833 188.187 119.976 188.107L123.107 186.288C123.245 186.209 123.245 186.076 123.112 186.002L120.172 184.305C120.034 184.225 120.029 184.093 120.172 184.014L120.812 183.644C120.949 183.564 121.177 183.564 121.314 183.644L124.255 185.341C124.387 185.421 124.614 185.421 124.747 185.341L127.851 183.538C127.989 183.459 128.216 183.459 128.354 183.538L129.094 183.966Z" fill="#DA3635"/> +<path d="M24.872 127.409C28.1373 129.363 28.156 132.524 24.9131 134.478C21.6702 136.432 16.3911 136.432 13.1258 134.478C9.86048 132.524 9.84555 129.363 13.0884 127.409C16.3313 125.455 21.6067 125.455 24.872 127.409Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M15.7722 107.513C16.1747 106.267 18.9539 105.714 18.8597 107.5C18.804 108.387 18.5513 108.721 17.6392 108.815C16.9027 108.87 15.6523 108.198 15.7722 107.35" fill="white"/> +<path d="M15.7722 107.513C16.1747 106.267 18.9539 105.714 18.8597 107.5C18.804 108.387 18.5513 108.721 17.6392 108.815C16.9027 108.87 15.6523 108.198 15.7722 107.35" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M15.7722 107.513C16.1747 106.267 18.9539 105.714 18.8597 107.5C18.804 108.387 18.5513 108.721 17.6392 108.815C16.9027 108.87 15.6523 108.198 15.7722 107.35" fill="white"/> +<path d="M15.7722 107.513C16.1747 106.267 18.9539 105.714 18.8597 107.5C18.804 108.387 18.5513 108.721 17.6392 108.815C16.9027 108.87 15.6523 108.198 15.7722 107.35" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M16.2812 108.733C16.08 109.376 15.489 110.677 16.7394 110.305C17.1291 110.185 18.0155 109.997 17.7329 109.513C17.5445 109.179 16.7266 109.042 16.5125 108.669" fill="white"/> +<path d="M16.2812 108.733C16.08 109.376 15.489 110.677 16.7394 110.305C17.1291 110.185 18.0155 109.997 17.7329 109.513C17.5445 109.179 16.7266 109.042 16.5125 108.669" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M16.2812 108.733C16.08 109.376 15.489 110.677 16.7394 110.305C17.1291 110.185 18.0155 109.997 17.7329 109.513C17.5445 109.179 16.7266 109.042 16.5125 108.669" fill="white"/> +<path d="M16.2812 108.733C16.08 109.376 15.489 110.677 16.7394 110.305C17.1291 110.185 18.0155 109.997 17.7329 109.513C17.5445 109.179 16.7266 109.042 16.5125 108.669" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M17.6774 121.336C17.6646 123.7 16.5212 126.046 16.7525 128.393C16.8081 128.89 16.9794 129.425 16.8467 129.935C16.7011 130.431 16.093 130.821 15.6648 130.281C15.395 129.947 15.4635 128.967 15.4507 128.551C15.425 127.866 15.532 127.275 15.4121 126.607C15.1295 125.147 15.6691 123.614 15.2366 122.179C15.0096 121.413 14.8212 121.135 14.9968 120.342C15.2537 119.203 14.7955 118.45 16.2043 118.304C17.0351 118.223 17.8573 118.064 18.6623 117.876C18.9021 117.82 19.8314 117.341 20.0583 117.473C20.3795 117.662 20.1097 119.542 20.1097 119.996C20.1097 121.554 19.947 123.027 20.1097 124.543C20.2296 125.588 19.8956 126.663 19.8014 127.695C19.75 128.337 20.084 129.909 18.9707 129.639C18.0029 129.412 18.2855 126.564 18.247 125.721C18.2084 124.513 18.7309 122.338 17.7888 121.4" fill="white"/> +<path d="M17.6774 121.336C17.6646 123.7 16.5212 126.046 16.7525 128.393C16.8081 128.89 16.9794 129.425 16.8467 129.935C16.7011 130.431 16.093 130.821 15.6648 130.281C15.395 129.947 15.4635 128.967 15.4507 128.551C15.425 127.866 15.532 127.275 15.4121 126.607C15.1295 125.147 15.6691 123.614 15.2366 122.179C15.0096 121.413 14.8212 121.135 14.9968 120.342C15.2537 119.203 14.7955 118.45 16.2043 118.304C17.0351 118.223 17.8573 118.064 18.6623 117.876C18.9021 117.82 19.8314 117.341 20.0583 117.473C20.3795 117.662 20.1097 119.542 20.1097 119.996C20.1097 121.554 19.947 123.027 20.1097 124.543C20.2296 125.588 19.8956 126.663 19.8014 127.695C19.75 128.337 20.084 129.909 18.9707 129.639C18.0029 129.412 18.2855 126.564 18.247 125.721C18.2084 124.513 18.7309 122.338 17.7888 121.4" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M17.6774 121.336C17.6646 123.7 16.5212 126.046 16.7525 128.393C16.8081 128.89 16.9794 129.425 16.8467 129.935C16.7011 130.431 16.093 130.821 15.6648 130.281C15.395 129.947 15.4635 128.967 15.4507 128.551C15.425 127.866 15.532 127.275 15.4121 126.607C15.1295 125.147 15.6691 123.614 15.2366 122.179C15.0096 121.413 14.8212 121.135 14.9968 120.342C15.2537 119.203 14.7955 118.45 16.2043 118.304C17.0351 118.223 17.8573 118.064 18.6623 117.876C18.9021 117.82 19.8314 117.341 20.0583 117.473C20.3795 117.662 20.1097 119.542 20.1097 119.996C20.1097 121.554 19.947 123.027 20.1097 124.543C20.2296 125.588 19.8956 126.663 19.8014 127.695C19.75 128.337 20.084 129.909 18.9707 129.639C18.0029 129.412 18.2855 126.564 18.247 125.721C18.2084 124.513 18.7309 122.338 17.7888 121.4" fill="white"/> +<path d="M17.6774 121.336C17.6646 123.7 16.5212 126.046 16.7525 128.393C16.8081 128.89 16.9794 129.425 16.8467 129.935C16.7011 130.431 16.093 130.821 15.6648 130.281C15.395 129.947 15.4635 128.967 15.4507 128.551C15.425 127.866 15.532 127.275 15.4121 126.607C15.1295 125.147 15.6691 123.614 15.2366 122.179C15.0096 121.413 14.8212 121.135 14.9968 120.342C15.2537 119.203 14.7955 118.45 16.2043 118.304C17.0351 118.223 17.8573 118.064 18.6623 117.876C18.9021 117.82 19.8314 117.341 20.0583 117.473C20.3795 117.662 20.1097 119.542 20.1097 119.996C20.1097 121.554 19.947 123.027 20.1097 124.543C20.2296 125.588 19.8956 126.663 19.8014 127.695C19.75 128.337 20.084 129.909 18.9707 129.639C18.0029 129.412 18.2855 126.564 18.247 125.721C18.2084 124.513 18.7309 122.338 17.7888 121.4" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M18.671 129.455C18.7095 129.695 18.5896 129.802 18.4697 130.003C19.1292 130.701 19.2876 130.072 19.5146 129.562C19.0992 129.656 19.0435 129.682 18.7481 129.536" fill="white"/> +<path d="M18.671 129.455C18.7095 129.695 18.5896 129.802 18.4697 130.003C19.1292 130.701 19.2876 130.072 19.5146 129.562C19.0992 129.656 19.0435 129.682 18.7481 129.536" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M18.671 129.455C18.7095 129.695 18.5896 129.802 18.4697 130.003C19.1292 130.701 19.2876 130.072 19.5146 129.562C19.0992 129.656 19.0435 129.682 18.7481 129.536" fill="white"/> +<path d="M18.671 129.455C18.7095 129.695 18.5896 129.802 18.4697 130.003C19.1292 130.701 19.2876 130.072 19.5146 129.562C19.0992 129.656 19.0435 129.682 18.7481 129.536" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M18.4698 130.097C17.8275 131.142 19.7587 131.052 20.431 131.052C21.6515 131.039 20.6452 130.461 20.1099 130.204C19.8572 130.084 19.6388 129.935 19.3862 129.977C18.9965 130.029 18.9023 130.513 18.4869 129.99" fill="white"/> +<path d="M18.4698 130.097C17.8275 131.142 19.7587 131.052 20.431 131.052C21.6515 131.039 20.6452 130.461 20.1099 130.204C19.8572 130.084 19.6388 129.935 19.3862 129.977C18.9965 130.029 18.9023 130.513 18.4869 129.99" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M18.4698 130.097C17.8275 131.142 19.7587 131.052 20.431 131.052C21.6515 131.039 20.6452 130.461 20.1099 130.204C19.8572 130.084 19.6388 129.935 19.3862 129.977C18.9965 130.029 18.9023 130.513 18.4869 129.99" fill="white"/> +<path d="M18.4698 130.097C17.8275 131.142 19.7587 131.052 20.431 131.052C21.6515 131.039 20.6452 130.461 20.1099 130.204C19.8572 130.084 19.6388 129.935 19.3862 129.977C18.9965 130.029 18.9023 130.513 18.4869 129.99" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M15.7716 130.406C15.7716 130.62 15.7031 130.77 15.716 130.984C16.6152 131.643 16.5467 130.997 16.5467 130.354C16.3197 130.448 16.05 130.517 15.823 130.41" fill="white"/> +<path d="M15.7716 130.406C15.7716 130.62 15.7031 130.77 15.716 130.984C16.6152 131.643 16.5467 130.997 16.5467 130.354C16.3197 130.448 16.05 130.517 15.823 130.41" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M15.7716 130.406C15.7716 130.62 15.7031 130.77 15.716 130.984C16.6152 131.643 16.5467 130.997 16.5467 130.354C16.3197 130.448 16.05 130.517 15.823 130.41" fill="white"/> +<path d="M15.7716 130.406C15.7716 130.62 15.7031 130.77 15.716 130.984C16.6152 131.643 16.5467 130.997 16.5467 130.354C16.3197 130.448 16.05 130.517 15.823 130.41" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M15.609 130.928C15.5405 131.493 15.5148 131.639 15.973 132.11C16.3499 132.487 16.6967 132.846 17.2363 132.902C17.4889 132.324 16.8594 131.506 16.5126 131.078C16.2428 131.21 15.866 131.24 15.7204 130.945" fill="white"/> +<path d="M15.609 130.928C15.5405 131.493 15.5148 131.639 15.973 132.11C16.3499 132.487 16.6967 132.846 17.2363 132.902C17.4889 132.324 16.8594 131.506 16.5126 131.078C16.2428 131.21 15.866 131.24 15.7204 130.945" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M15.609 130.928C15.5405 131.493 15.5148 131.639 15.973 132.11C16.3499 132.487 16.6967 132.846 17.2363 132.902C17.4889 132.324 16.8594 131.506 16.5126 131.078C16.2428 131.21 15.866 131.24 15.7204 130.945" fill="white"/> +<path d="M15.609 130.928C15.5405 131.493 15.5148 131.639 15.973 132.11C16.3499 132.487 16.6967 132.846 17.2363 132.902C17.4889 132.324 16.8594 131.506 16.5126 131.078C16.2428 131.21 15.866 131.24 15.7204 130.945" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M15.7717 109.551C15.3734 109.688 15.0865 109.941 14.7911 110.223C14.4442 110.557 13.9046 110.866 13.6905 111.324C13.3694 112.022 13.2066 113.311 13.1424 114.073C13.0482 114.998 13.1167 115.923 13.1938 116.852C13.1938 116.852 13.1724 117.443 14.5812 116.737C14.5812 116.737 14.3543 118.368 15.1636 118.638C15.9944 119.096 16.8551 118.921 17.7929 118.921C18.812 118.908 19.7927 118.707 20.208 117.713C20.4521 117.289 20.2038 116.03 20.2038 116.03C20.8889 116.433 21.8053 115.713 21.8053 115.713C21.9809 114.399 21.1202 113.003 20.6363 111.821C20.3793 111.204 20.0839 110.72 19.6428 110.211C19.4672 109.997 19.2403 109.568 19.0262 109.418C18.6793 109.149 18.9319 109.243 18.5294 109.337C17.6987 109.538 16.3541 111.08 15.883 109.564C15.8916 109.564 15.883 109.513 15.7717 109.551Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M15.8919 109.564C16.3629 111.08 17.7032 109.538 18.5383 109.337C18.9408 109.243 18.6839 109.149 19.035 109.418C19.2491 109.564 19.4761 109.997 19.6516 110.211C20.0927 110.72 20.3882 111.204 20.6451 111.821C21.129 113.003 21.9854 114.399 21.8141 115.713C21.8141 115.713 20.902 116.433 20.2126 116.03C20.2126 116.03 20.461 117.289 20.2169 117.713C19.8015 118.707 18.8209 118.908 17.8017 118.921C16.8639 118.921 16.0032 119.096 15.1724 118.638C14.3631 118.368 14.5901 116.737 14.5901 116.737C13.1769 117.443 13.2026 116.852 13.2026 116.852C13.1213 115.927 13.057 115.002 13.1512 114.073C13.2198 113.307 13.3782 112.022 13.6994 111.324C13.9135 110.866 14.453 110.557 14.7999 110.223C15.0954 109.941 15.378 109.675 15.7805 109.551C15.772 109.551 15.8447 109.508 15.8919 109.564Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M16.5085 107.474C16.6156 107.449 16.5342 107.205 16.6712 107.14C16.9796 106.965 16.911 107.235 17.2365 107.235C17.639 107.235 18.0801 106.806 18.4698 106.656C18.5383 106.802 18.6325 107.166 18.8594 107.14C19.0992 107.102 19.1678 106.631 19.1421 106.442C19.0736 105.946 18.6453 105.864 18.23 105.744C17.8403 105.637 17.3864 105.53 16.9838 105.505C16.2473 105.449 15.9775 105.907 15.6949 106.579C15.4808 107.076 15.3994 107.586 15.7334 108.057C16.0161 108.459 16.5813 109.089 16.9838 109.384C17.442 109.718 18.3541 109.92 18.6196 109.346C18.928 108.686 18.6196 108.352 18.0415 108.515C17.2365 108.755 17.1294 108.785 16.5256 108.232C16.3629 108.1 15.909 108.031 15.909 107.71C15.9218 107.346 16.2987 107.376 16.4186 107.671" fill="white"/> +<path d="M16.5085 107.474C16.6156 107.449 16.5342 107.205 16.6712 107.14C16.9796 106.965 16.911 107.235 17.2365 107.235C17.639 107.235 18.0801 106.806 18.4698 106.656C18.5383 106.802 18.6325 107.166 18.8594 107.14C19.0992 107.102 19.1678 106.631 19.1421 106.442C19.0736 105.946 18.6453 105.864 18.23 105.744C17.8403 105.637 17.3864 105.53 16.9838 105.505C16.2473 105.449 15.9775 105.907 15.6949 106.579C15.4808 107.076 15.3994 107.586 15.7334 108.057C16.0161 108.459 16.5813 109.089 16.9838 109.384C17.442 109.718 18.3541 109.92 18.6196 109.346C18.928 108.686 18.6196 108.352 18.0415 108.515C17.2365 108.755 17.1294 108.785 16.5256 108.232C16.3629 108.1 15.909 108.031 15.909 107.71C15.9218 107.346 16.2987 107.376 16.4186 107.671" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M16.5085 107.474C16.6156 107.449 16.5342 107.205 16.6712 107.14C16.9796 106.965 16.911 107.235 17.2365 107.235C17.639 107.235 18.0801 106.806 18.4698 106.656C18.5383 106.802 18.6325 107.166 18.8594 107.14C19.0992 107.102 19.1678 106.631 19.1421 106.442C19.0736 105.946 18.6453 105.864 18.23 105.744C17.8403 105.637 17.3864 105.53 16.9838 105.505C16.2473 105.449 15.9775 105.907 15.6949 106.579C15.4808 107.076 15.3994 107.586 15.7334 108.057C16.0161 108.459 16.5813 109.089 16.9838 109.384C17.442 109.718 18.3541 109.92 18.6196 109.346C18.928 108.686 18.6196 108.352 18.0415 108.515C17.2365 108.755 17.1294 108.785 16.5256 108.232C16.3629 108.1 15.909 108.031 15.909 107.71C15.9218 107.346 16.2987 107.376 16.4186 107.671" fill="#DA3635"/> +<path d="M16.5085 107.474C16.6156 107.449 16.5342 107.205 16.6712 107.14C16.9796 106.965 16.911 107.235 17.2365 107.235C17.639 107.235 18.0801 106.806 18.4698 106.656C18.5383 106.802 18.6325 107.166 18.8594 107.14C19.0992 107.102 19.1678 106.631 19.1421 106.442C19.0736 105.946 18.6453 105.864 18.23 105.744C17.8403 105.637 17.3864 105.53 16.9838 105.505C16.2473 105.449 15.9775 105.907 15.6949 106.579C15.4808 107.076 15.3994 107.586 15.7334 108.057C16.0161 108.459 16.5813 109.089 16.9838 109.384C17.442 109.718 18.3541 109.92 18.6196 109.346C18.928 108.686 18.6196 108.352 18.0415 108.515C17.2365 108.755 17.1294 108.785 16.5256 108.232C16.3629 108.1 15.909 108.031 15.909 107.71C15.9218 107.346 16.2987 107.376 16.4186 107.671" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M13 111.281L13.2826 109.92L14.8884 108.986L16.2117 109.414L26.8872 127.789L23.6755 129.656L13 111.281Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M23.6753 129.656L23.9408 128.26L25.5466 127.331L26.8869 127.789L27.5164 132.572L23.6753 129.656Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M25.8594 131.314L26.0478 130.941C26.1934 130.65 26.5017 130.47 26.8314 130.487L27.2468 130.508L27.5209 132.577L25.8594 131.314Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M14.8887 108.986L25.5471 127.331L26.8874 127.789L16.2119 109.414L14.8887 108.986Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M23.941 128.26L13.2826 109.92L13 111.281L23.6755 129.656L23.941 128.26Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M13.6987 116.673C13.6987 116.673 15.0947 116.488 15.7627 115.876L15.2874 115.02C15.2874 115.02 14.0499 115.499 13.9257 115.675C13.8015 115.855 13.6987 116.673 13.6987 116.673Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M15.292 115.02C15.292 115.02 15.292 114.245 15.5917 114.001C15.8958 113.761 15.5917 114.57 15.5917 114.57C15.5917 114.57 16.3069 113.953 16.5124 114.018C16.718 114.082 16.9406 114.75 16.8764 115.071C16.8122 115.392 15.8787 115.739 15.763 115.876L15.292 115.02Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M13.832 117.037C13.832 117.037 15.592 116.073 15.7633 115.876L15.288 115.02C15.288 115.02 14.2688 115.379 13.9733 115.628" fill="white"/> +<path d="M13.832 117.037C13.832 117.037 15.592 116.073 15.7633 115.876L15.288 115.02C15.288 115.02 14.2688 115.379 13.9733 115.628" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M20.6021 114.519C20.6021 114.519 18.8764 114.155 18.5381 113.731L19.4673 115.486C19.4673 115.486 20.0839 116.137 21.1245 116.03" fill="white"/> +<path d="M20.6021 114.519C20.6021 114.519 18.8764 114.155 18.5381 113.731L19.4673 115.486C19.4673 115.486 20.0839 116.137 21.1245 116.03" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M18.8633 111.966C18.8633 111.966 19.4499 114.043 20.0709 114.39L18.8633 111.966Z" fill="white"/> +<path d="M18.8633 111.966C18.8633 111.966 19.4499 114.043 20.0709 114.39" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M153.972 87.8872C154.213 87.8872 154.373 88.0431 154.373 88.3V94.2103C154.373 94.4504 154.217 94.6105 153.972 94.6105C153.728 94.6105 153.56 94.4546 153.56 94.2103V88.3C153.576 88.1315 153.732 87.8872 153.972 87.8872Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M153.973 90.4779C156.125 90.4779 157.861 88.7423 157.861 86.5897C157.861 84.4413 156.125 82.7015 153.973 82.7015C151.82 82.7015 150.084 84.4371 150.084 86.5897C150.084 88.7423 151.824 90.4779 153.973 90.4779Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M153.973 90.4779C156.121 90.4779 157.861 88.7381 157.861 86.5897C157.861 84.4413 156.121 82.7015 153.973 82.7015C151.824 82.7015 150.084 84.4413 150.084 86.5897C150.084 88.7381 151.824 90.4779 153.973 90.4779Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M155.114 89.4246C152.919 89.4246 151.226 87.6469 151.226 85.5364C151.226 84.6392 151.554 83.843 151.95 83.2743C150.809 83.9315 150 85.2247 150 86.5938C150 88.7843 151.782 90.482 153.888 90.482C155.186 90.482 156.323 89.829 157.052 88.8601C156.479 89.2561 155.839 89.4246 155.114 89.4246Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M155.114 89.4246C152.919 89.4246 151.226 87.6469 151.226 85.5364C151.226 84.6392 151.554 83.843 151.95 83.2743C150.809 83.9315 150 85.2247 150 86.5938C150 88.7843 151.782 90.482 153.888 90.482C155.186 90.482 156.323 89.829 157.052 88.8601C156.479 89.2561 155.839 89.4246 155.114 89.4246Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M177.942 79.6306H178.186C178.515 79.6306 178.755 79.8707 178.755 80.1993V89.8376C178.755 90.1662 178.51 90.4063 178.186 90.4063H177.942C177.613 90.4063 177.373 90.1662 177.373 89.8376V80.1993C177.386 79.8707 177.63 79.6306 177.942 79.6306Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M178.026 83.6746C181.43 83.6746 184.176 80.928 184.176 77.5243C184.176 74.1205 181.426 71.3739 178.026 71.3739C174.622 71.3739 171.872 74.1205 171.872 77.5243C171.876 80.9238 174.622 83.6746 178.026 83.6746Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M178.026 83.6746C181.43 83.6746 184.176 80.928 184.176 77.5243C184.176 74.1205 181.426 71.3739 178.026 71.3739C174.622 71.3739 171.872 74.1205 171.872 77.5243C171.876 80.9238 174.622 83.6746 178.026 83.6746Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M179.892 82.0529C176.489 82.0529 173.742 79.3063 173.742 75.9025C173.742 74.5208 174.227 73.3118 174.951 72.2587C173.085 73.3118 171.876 75.3338 171.876 77.596C171.876 80.9997 174.627 83.7463 178.031 83.7463C180.053 83.7463 181.834 82.7774 182.972 81.2398C182.07 81.7369 181.03 82.0529 179.892 82.0529Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M179.892 82.0529C176.489 82.0529 173.742 79.3063 173.742 75.9025C173.742 74.5208 174.227 73.3118 174.951 72.2587C173.085 73.3118 171.876 75.3338 171.876 77.596C171.876 80.9997 174.627 83.7463 178.031 83.7463C180.053 83.7463 181.834 82.7774 182.972 81.2398C182.07 81.7369 181.03 82.0529 179.892 82.0529Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M167.33 73.1516C167.659 73.1516 167.899 73.3959 167.899 73.7203V81.1681C167.899 81.4967 167.655 81.7368 167.33 81.7368C167.002 81.7368 166.762 81.4967 166.762 81.1681V73.7203C166.779 73.3075 167.019 73.1516 167.33 73.1516Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M167.33 76.3827C170.064 76.3827 172.272 74.1753 172.272 71.4413C172.272 68.7074 170.064 66.5 167.33 66.5C164.597 66.5 162.389 68.7074 162.389 71.4413C162.389 74.1795 164.613 76.3827 167.33 76.3827Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M167.33 76.3827C170.064 76.3827 172.272 74.1753 172.272 71.4413C172.272 68.7074 170.064 66.5 167.33 66.5C164.597 66.5 162.389 68.7074 162.389 71.4413C162.389 74.1795 164.613 76.3827 167.33 76.3827Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M168.801 75.0179C166.054 75.0179 163.86 72.8274 163.86 70.0766C163.86 69.0234 164.188 67.9703 164.828 67.1572C163.375 68.0545 162.394 69.5921 162.394 71.3698C162.394 74.1164 164.588 76.3111 167.335 76.3111C168.957 76.3111 170.41 75.4981 171.307 74.2891C170.579 74.7609 169.681 75.0179 168.801 75.0179Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M168.801 75.0179C166.054 75.0179 163.86 72.8274 163.86 70.0766C163.86 69.0234 164.188 67.9703 164.828 67.1572C163.375 68.0545 162.394 69.5921 162.394 71.3698C162.394 74.1164 164.588 76.3111 167.335 76.3111C168.957 76.3111 170.41 75.4981 171.307 74.2891C170.579 74.7609 169.681 75.0179 168.801 75.0179Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M164.913 89.0961C165.313 89.0961 165.726 89.4246 165.726 89.9091V100.601C165.726 101.001 165.397 101.414 164.913 101.414C164.512 101.414 164.1 101.085 164.1 100.601V89.9091C164.1 89.4246 164.428 89.0961 164.913 89.0961Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M164.912 93.7089C168.801 93.7089 171.964 90.5621 171.964 86.6613C171.964 82.7604 168.805 79.6136 164.912 79.6136C161.024 79.6136 157.865 82.7604 157.865 86.6613C157.861 90.5663 161.024 93.7089 164.912 93.7089Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M164.912 93.7089C168.801 93.7089 171.964 90.5621 171.964 86.6613C171.964 82.7604 168.805 79.6136 164.912 79.6136C161.024 79.6136 157.865 82.7604 157.865 86.6613C157.861 90.5663 161.024 93.7089 164.912 93.7089Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M167.019 91.8469C163.13 91.8469 159.971 88.6875 159.971 84.7993C159.971 83.2617 160.455 81.8084 161.353 80.671C159.246 81.88 157.865 84.1464 157.865 86.7497C157.865 90.6379 161.024 93.7974 164.912 93.7974C167.263 93.7974 169.285 92.66 170.582 90.9623C169.441 91.4467 168.316 91.8469 167.019 91.8469Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M167.019 91.8469C163.13 91.8469 159.971 88.6875 159.971 84.7993C159.971 83.2617 160.455 81.8084 161.353 80.671C159.246 81.88 157.865 84.1464 157.865 86.7497C157.865 90.6379 161.024 93.7974 164.912 93.7974C167.263 93.7974 169.285 92.66 170.582 90.9623C169.441 91.4467 168.316 91.8469 167.019 91.8469Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M156.774 58.6321C160.172 60.5827 160.186 63.7463 156.816 65.7037C153.445 67.6543 147.957 67.6543 144.558 65.7037C141.16 63.7532 141.146 60.5896 144.524 58.6321C147.901 56.6747 153.383 56.6816 156.774 58.6321Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M159.036 165.114C160.534 165.978 160.54 167.379 159.054 168.245C157.568 169.109 155.148 169.109 153.649 168.245C152.151 167.382 152.145 165.981 153.634 165.114C155.12 164.248 157.54 164.248 159.036 165.114Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M158.093 165.661C159.063 166.222 159.069 167.131 158.105 167.693C157.14 168.254 155.569 168.254 154.595 167.693C153.625 167.131 153.619 166.222 154.583 165.661C155.551 165.102 157.119 165.102 158.093 165.661Z" fill="#EDEDED"/> +<path d="M143.649 127.091C142.853 127.585 143.033 128.849 143.649 129.206L145.007 129.99C145.297 130.158 145.657 130.158 145.947 129.99L150.726 127.231C151.254 126.926 151.409 125.69 150.726 125.352L145.849 127.918L143.649 127.091Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M154.876 124.323C153.747 123.67 152.401 123.67 151.272 124.323L150.11 124.995L149.591 124.695C149.038 124.375 148.355 124.375 147.8 124.695L143.649 127.091C143.033 127.448 143.033 128.339 143.649 128.696L145.007 129.48C145.297 129.648 145.657 129.648 145.947 129.48L150.726 126.722C151.254 126.417 151.254 125.657 150.726 125.352L150.567 125.26L151.501 124.723C152.487 124.155 153.662 124.155 154.647 124.723C155.633 125.291 156.222 126.31 156.222 127.448V153.439H156.68V127.448C156.677 126.142 156.005 124.976 154.876 124.323Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M154.968 166.634C154.968 167.082 155.6 167.446 156.378 167.446C157.156 167.446 157.788 167.082 157.788 166.634V165.822H154.965V166.634H154.968Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M156.381 166.634C157.159 166.634 157.79 166.27 157.79 165.822C157.79 165.374 157.159 165.01 156.381 165.01C155.602 165.01 154.971 165.374 154.971 165.822C154.971 166.27 155.602 166.634 156.381 166.634Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M155.529 165.74C155.529 166.011 155.911 166.228 156.381 166.228C156.851 166.228 157.232 166.008 157.232 165.74V147.518H155.529V165.74Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M156.381 148.007C156.851 148.007 157.232 147.788 157.232 147.518C157.232 147.249 156.851 147.03 156.381 147.03C155.91 147.03 155.529 147.249 155.529 147.518C155.529 147.788 155.91 148.007 156.381 148.007Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M106.786 30.7707L101.104 27.4701L111.224 33.24L116.913 36.5406L106.786 30.7707Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M111.28 1.76779L116.969 5.07642C116.187 4.61644 115.154 4.7617 114.121 5.35887L108.432 2.05023C109.465 1.45306 110.498 1.31588 111.28 1.76779Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M83.9397 62.2515L78.2504 58.9429C76.6929 58.0391 76.7979 54.9161 78.3715 52.2046L84.0607 55.5132C82.4871 58.2247 82.3741 61.3477 83.9397 62.2515Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M84.0526 55.5129L78.3633 52.2043L88.4183 34.7896L94.1075 38.0982L84.0526 55.5129Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M101.097 25.9852L95.4155 22.6846L105.608 5.03589L111.297 8.33646L101.097 25.9852Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M111.297 8.33659L105.607 5.02795C106.382 3.68029 107.407 2.63121 108.432 2.04211L114.121 5.35074C113.096 5.94791 112.071 6.98893 111.297 8.33659Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M94.1075 38.098L88.4182 34.7894C88.7894 34.1438 88.7894 33.4498 88.4102 33.248L94.0994 36.5567C94.4787 36.7584 94.4868 37.4524 94.1075 38.098Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M99.7567 26.7682L94.0674 23.4595C94.253 23.5644 94.5032 23.5322 94.7453 23.3869C94.9874 23.2497 95.2295 22.9996 95.4151 22.6768L101.104 25.9854C100.919 26.3082 100.677 26.5503 100.434 26.6955C100.184 26.8327 99.9423 26.8731 99.7567 26.7682Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M89.6364 20.99L83.9473 17.6895L94.0668 23.4594L99.756 26.768L89.6364 20.99Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M114.121 5.35071C115.178 4.7374 116.243 4.6083 117.034 5.10863C118.551 6.06894 118.398 9.11126 116.849 11.7985L106.785 29.2213C106.414 29.8588 106.414 30.5528 106.794 30.7626L116.913 36.5326C118.527 37.4445 118.624 40.5271 116.986 43.2628C116.219 44.5459 115.235 45.5304 114.242 46.1034C113.217 46.6925 112.184 46.8377 111.401 46.3858L101.145 40.5433C100.959 40.4384 100.717 40.4706 100.475 40.6078C100.233 40.745 99.9906 40.9952 99.805 41.318L89.6128 58.9667C88.83 60.3224 87.8053 61.3634 86.7804 61.9525C85.7878 62.5255 84.8032 62.6708 84.0285 62.2834C82.3742 61.4441 82.4549 58.2646 84.0528 55.4967L94.1078 38.082C94.479 37.4364 94.479 36.7424 94.0997 36.5406L83.843 30.6981C82.2532 29.7862 82.2693 26.7923 83.8994 24.0566C84.6499 22.7977 85.6102 21.8535 86.5866 21.2886C87.6841 20.6592 88.7978 20.5139 89.6209 20.982L99.7405 26.7519C99.9261 26.8568 100.176 26.8246 100.418 26.6793C100.66 26.5421 100.903 26.2919 101.088 25.9691L111.28 8.32042C112.071 6.98889 113.096 5.94788 114.121 5.35071Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M83.8511 30.7063L78.1618 27.3976C76.572 26.4857 76.5881 23.4918 78.2182 20.7562C78.9687 19.4973 79.9291 18.5531 80.9056 17.9882C82.0031 17.3587 83.1167 17.2135 83.9398 17.6816L89.629 20.9902C88.7978 20.5221 87.6922 20.6593 86.5948 21.2968C85.6183 21.8617 84.658 22.814 83.9075 24.0648C82.2774 26.8005 82.2613 29.7944 83.8511 30.7063Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M100 39.5L100 59.5" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M145.406 52.1318C146.019 51.9933 146.731 51.3491 147.224 51.012C148.155 50.3678 152.341 50.1993 151.248 49.8922C150.854 49.7779 154.821 52.3425 154.721 53.8836C154.678 54.6 154.853 55.9426 154.778 56.671C154.721 57.261 154.896 57.6643 154.853 58.2664C154.447 57.9172 154.328 57.0744 153.791 56.7974C153.309 56.5626 152.597 56.9359 152.135 57.0503C151.716 57.1466 151.26 57.1346 150.873 57.3272C150.454 57.5379 150.379 57.8148 150.236 58.2242C149.986 58.9105 149.873 59.4584 149.83 60.1808C149.567 59.7172 149.336 59.3801 148.986 58.9467C148.636 58.5252 148.099 58.3326 147.605 58.0376C146.356 57.267 145.656 56.4543 145.569 54.9312C145.512 54.0883 145.919 52.8723 145.406 52.1318Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M151.323 41.2954C151.279 42.054 151.729 42.4031 150.885 42.9329C150.448 43.1978 150.404 43.1015 150.261 43.6072C150.161 43.9564 150.173 44.2935 149.986 44.6126C149.655 45.1725 149.536 44.9316 149.074 44.5825C148.593 44.2212 148.286 44.444 148.243 43.8841C148.199 43.4206 148.593 42.8908 148.536 42.4694C148.48 41.9938 148.243 41.6145 148.405 41.3195C148.786 40.6633 150.773 41.3195 151.267 41.2232" fill="white"/> +<path d="M151.323 41.2954C151.279 42.054 151.729 42.4031 150.885 42.9329C150.448 43.1978 150.404 43.1015 150.261 43.6072C150.161 43.9564 150.173 44.2935 149.986 44.6126C149.655 45.1725 149.536 44.9316 149.074 44.5825C148.593 44.2212 148.286 44.444 148.243 43.8841C148.199 43.4206 148.593 42.8908 148.536 42.4694C148.48 41.9938 148.243 41.6145 148.405 41.3195C148.786 40.6633 150.773 41.3195 151.267 41.2232" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M151.323 41.2954C151.279 42.054 151.729 42.4031 150.885 42.9329C150.448 43.1978 150.404 43.1015 150.261 43.6072C150.161 43.9564 150.173 44.2935 149.986 44.6126C149.655 45.1725 149.536 44.9316 149.074 44.5825C148.593 44.2212 148.286 44.444 148.243 43.8841C148.199 43.4206 148.593 42.8908 148.536 42.4694C148.48 41.9938 148.243 41.6145 148.405 41.3195C148.786 40.6633 150.773 41.3195 151.267 41.2232" fill="white"/> +<path d="M151.323 41.2954C151.279 42.054 151.729 42.4031 150.885 42.9329C150.448 43.1978 150.404 43.1015 150.261 43.6072C150.161 43.9564 150.173 44.2935 149.986 44.6126C149.655 45.1725 149.536 44.9316 149.074 44.5825C148.593 44.2212 148.286 44.444 148.243 43.8841C148.199 43.4206 148.593 42.8908 148.536 42.4694C148.48 41.9938 148.243 41.6145 148.405 41.3195C148.786 40.6633 150.773 41.3195 151.267 41.2232" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M152.023 46.1416C152.023 47.6226 151.804 49.0253 151.716 50.4641C150.129 50.1872 151.323 49.1216 151.267 48.3932C151.192 47.5383 150.348 45.8887 152.023 46.0152" fill="white"/> +<path d="M152.023 46.1416C152.023 47.6226 151.804 49.0253 151.716 50.4641C150.129 50.1872 151.323 49.1216 151.267 48.3932C151.192 47.5383 150.348 45.8887 152.023 46.0152" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M152.023 46.1416C152.023 47.6226 151.804 49.0253 151.716 50.4641C150.129 50.1872 151.323 49.1216 151.267 48.3932C151.192 47.5383 150.348 45.8887 152.023 46.0152" fill="white"/> +<path d="M152.023 46.1416C152.023 47.6226 151.804 49.0253 151.716 50.4641C150.129 50.1872 151.323 49.1216 151.267 48.3932C151.192 47.5383 150.348 45.8887 152.023 46.0152" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M144.363 52.0596C144.538 50.8134 145.525 48.8147 143.564 48.1825C143.345 48.1103 142.589 47.8875 142.52 47.719C142.302 47.1471 143.057 47.2434 143.307 47.3578C144.369 47.7912 145.313 48.0441 145.313 49.218C145.313 49.6936 145.094 50.2414 145.038 50.717C144.994 51.1625 144.776 51.8669 144.744 52.3124" fill="white"/> +<path d="M144.363 52.0596C144.538 50.8134 145.525 48.8147 143.564 48.1825C143.345 48.1103 142.589 47.8875 142.52 47.719C142.302 47.1471 143.057 47.2434 143.307 47.3578C144.369 47.7912 145.313 48.0441 145.313 49.218C145.313 49.6936 145.094 50.2414 145.038 50.717C144.994 51.1625 144.776 51.8669 144.744 52.3124" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M144.363 52.0596C144.538 50.8134 145.525 48.8147 143.564 48.1825C143.345 48.1103 142.589 47.8875 142.52 47.719C142.302 47.1471 143.057 47.2434 143.307 47.3578C144.369 47.7912 145.313 48.0441 145.313 49.218C145.313 49.6936 145.094 50.2414 145.038 50.717C144.994 51.1625 144.776 51.8669 144.744 52.3124" fill="white"/> +<path d="M144.363 52.0596C144.538 50.8134 145.525 48.8147 143.564 48.1825C143.345 48.1103 142.589 47.8875 142.52 47.719C142.302 47.1471 143.057 47.2434 143.307 47.3578C144.369 47.7912 145.313 48.0441 145.313 49.218C145.313 49.6936 145.094 50.2414 145.038 50.717C144.994 51.1625 144.776 51.8669 144.744 52.3124" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M143.232 51.8668C144.569 51.7825 145.019 52.4688 145.894 53.1431C147.362 54.2749 147.581 55.8582 147.912 57.3572C148.218 58.7599 147.474 61.0957 145.631 60.8549C143.482 60.572 142.364 59.3559 141.489 57.592C141.071 56.7251 140.921 55.2562 141.039 54.2749C141.108 53.6307 142.151 51.8487 143.232 51.8668Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M145.6 52.7457C146.125 53.0648 146.925 53.4742 147.287 53.9919C147.724 54.5939 147.999 55.2502 148.243 55.9365C148.78 57.3632 149.174 58.9465 148.055 60.1927C147.399 60.9212 146.618 60.9332 145.6 60.879C147.025 60.2048 148.012 59.0429 147.849 57.4355C147.762 56.5144 147.518 55.7017 147.062 54.913C146.8 54.4495 146.044 53.721 145.638 53.2755" fill="white"/> +<path d="M145.6 52.7457C146.125 53.0648 146.925 53.4742 147.287 53.9919C147.724 54.5939 147.999 55.2502 148.243 55.9365C148.78 57.3632 149.174 58.9465 148.055 60.1927C147.399 60.9212 146.618 60.9332 145.6 60.879C147.025 60.2048 148.012 59.0429 147.849 57.4355C147.762 56.5144 147.518 55.7017 147.062 54.913C146.8 54.4495 146.044 53.721 145.638 53.2755" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M145.6 52.7457C146.125 53.0648 146.925 53.4742 147.287 53.9919C147.724 54.5939 147.999 55.2502 148.243 55.9365C148.78 57.3632 149.174 58.9465 148.055 60.1927C147.399 60.9212 146.618 60.9332 145.6 60.879C147.025 60.2048 148.012 59.0429 147.849 57.4355C147.762 56.5144 147.518 55.7017 147.062 54.913C146.8 54.4495 146.044 53.721 145.638 53.2755" fill="white"/> +<path d="M145.6 52.7457C146.125 53.0648 146.925 53.4742 147.287 53.9919C147.724 54.5939 147.999 55.2502 148.243 55.9365C148.78 57.3632 149.174 58.9465 148.055 60.1927C147.399 60.9212 146.618 60.9332 145.6 60.879C147.025 60.2048 148.012 59.0429 147.849 57.4355C147.762 56.5144 147.518 55.7017 147.062 54.913C146.8 54.4495 146.044 53.721 145.638 53.2755" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M145.281 56.1051C145.269 55.9486 145.225 55.786 145.063 55.7138C144.944 55.6717 144.832 55.7138 144.744 55.7981C144.5 56.0208 144.557 56.4001 144.788 56.6228C144.994 56.8215 145.238 56.7372 145.313 56.4844C145.388 56.1894 145.238 55.8703 144.95 55.7439C144.894 55.7319 144.85 55.7318 144.807 55.774C144.575 56.0931 144.557 56.7131 145.081 56.7553C145.125 56.7553 145.169 56.7252 145.181 56.683C145.281 56.4182 145.281 56.1352 145.106 55.9004C145.075 55.8583 144.988 55.8282 144.944 55.8884C144.813 56.0449 144.669 56.4362 144.988 56.4904C145.119 56.5024 145.175 56.3218 145.044 56.2917C144.913 56.2797 145.056 56.069 145.088 56.0268C145.031 56.0268 144.988 56.0148 144.925 56.0148C145.069 56.2135 145.056 56.4362 144.982 56.6589C145.013 56.6288 145.056 56.6168 145.081 56.5867C144.732 56.5566 144.85 56.081 144.982 55.9004C144.938 55.9125 144.882 55.9305 144.838 55.9305C145.013 56.0028 145.113 56.1412 145.113 56.3339C145.113 56.4181 145.1 56.6168 144.969 56.5446C144.794 56.4603 144.738 56.2074 144.807 56.0569C144.838 56.0148 144.894 55.9185 144.95 55.9305C145.038 55.9305 145.069 56.069 145.069 56.1412C145.106 56.2315 145.306 56.2315 145.281 56.1051Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M145.219 56.5987C145.55 56.6408 145.744 56.8817 145.944 57.1044C146.15 57.3272 146.362 57.5379 146.612 57.7064C147.137 58.0737 147.718 58.3506 148.312 58.5733C148.905 58.7841 149.418 58.9947 149.661 59.5967C149.867 60.0723 149.967 60.5901 150.055 61.1078C150.067 61.2342 150.273 61.1801 150.261 61.0537C150.174 60.5058 150.042 59.976 149.824 59.4583C149.605 58.9707 149.243 58.7178 148.737 58.5191C148.056 58.2543 147.368 58.0014 146.762 57.58C146.431 57.3572 146.194 57.0923 145.931 56.8094C145.744 56.5987 145.538 56.4602 145.263 56.4181C145.15 56.388 145.088 56.5806 145.219 56.5987Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M144.769 55.5873C144.9 55.5873 144.9 55.3887 144.769 55.3887C144.638 55.3947 144.638 55.5873 144.769 55.5873Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M144.857 55.5874C145.119 55.2382 144.988 54.7084 144.988 54.299C144.988 54.1726 144.782 54.1726 144.782 54.299C144.782 54.6603 144.913 55.178 144.682 55.491C144.607 55.6054 144.782 55.7018 144.857 55.5874Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M143.782 52.9023C143.145 52.8481 142.564 53.1853 142.183 53.6609C141.764 54.2087 141.702 54.7686 141.833 55.4128C141.995 56.1954 142.208 56.9961 142.633 57.7065C142.939 58.2362 143.376 58.7118 143.826 59.1212C144.263 59.5125 144.8 59.9159 145.413 59.946C145.981 59.9761 146.444 59.5968 146.75 59.1754C147.1 58.6697 147.275 58.0556 147.3 57.4536C147.331 56.8215 147.156 56.2917 146.906 55.7198C146.587 55.0214 146.25 54.2207 145.644 53.7211C145.15 53.3358 144.451 52.8602 143.782 52.9023C143.651 52.9023 143.651 53.113 143.782 53.101C144.351 53.0589 144.932 53.4502 145.35 53.7753C145.813 54.1425 146.119 54.6181 146.369 55.1358C146.631 55.6536 146.937 56.2014 147.037 56.7613C147.137 57.3091 147.093 57.881 146.906 58.4108C146.731 58.9286 146.369 59.5005 145.819 59.7112C145.25 59.9219 144.657 59.5727 144.232 59.2356C143.276 58.477 142.608 57.4837 142.27 56.3519C142.052 55.6536 141.789 54.8408 142.127 54.1545C142.42 53.5405 143.045 53.0468 143.782 53.119C143.913 53.113 143.913 52.9144 143.782 52.9023Z" fill="white"/> +<path d="M143.782 52.9023C143.145 52.8481 142.564 53.1853 142.183 53.6609C141.764 54.2087 141.702 54.7686 141.833 55.4128C141.995 56.1954 142.208 56.9961 142.633 57.7065C142.939 58.2362 143.376 58.7118 143.826 59.1212C144.263 59.5125 144.8 59.9159 145.413 59.946C145.981 59.9761 146.444 59.5968 146.75 59.1754C147.1 58.6697 147.275 58.0556 147.3 57.4536C147.331 56.8215 147.156 56.2917 146.906 55.7198C146.587 55.0214 146.25 54.2207 145.644 53.7211C145.15 53.3358 144.451 52.8602 143.782 52.9023ZM143.782 52.9023C143.651 52.9023 143.651 53.113 143.782 53.101C144.351 53.0589 144.932 53.4502 145.35 53.7753C145.813 54.1425 146.119 54.6181 146.369 55.1358C146.631 55.6536 146.937 56.2014 147.037 56.7613C147.137 57.3091 147.093 57.881 146.906 58.4108C146.731 58.9286 146.369 59.5005 145.819 59.7112C145.25 59.9219 144.657 59.5727 144.232 59.2356C143.276 58.477 142.608 57.4837 142.27 56.3519C142.052 55.6536 141.789 54.8408 142.127 54.1545C142.42 53.5405 143.045 53.0468 143.782 53.119C143.913 53.113 143.913 52.9144 143.782 52.9023Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M143.782 52.9023C143.145 52.8481 142.564 53.1853 142.183 53.6609C141.764 54.2087 141.702 54.7686 141.833 55.4128C141.995 56.1954 142.208 56.9961 142.633 57.7065C142.939 58.2362 143.376 58.7118 143.826 59.1212C144.263 59.5125 144.8 59.9159 145.413 59.946C145.981 59.9761 146.444 59.5968 146.75 59.1754C147.1 58.6697 147.275 58.0556 147.3 57.4536C147.331 56.8215 147.156 56.2917 146.906 55.7198C146.587 55.0214 146.25 54.2207 145.644 53.7211C145.15 53.3358 144.451 52.8602 143.782 52.9023ZM143.782 52.9023C143.651 52.9023 143.651 53.113 143.782 53.101C144.351 53.0589 144.932 53.4502 145.35 53.7753C145.813 54.1425 146.119 54.6181 146.369 55.1358C146.631 55.6536 146.937 56.2014 147.037 56.7613C147.137 57.3091 147.093 57.881 146.906 58.4108C146.731 58.9286 146.369 59.5005 145.819 59.7112C145.25 59.9219 144.657 59.5727 144.232 59.2356C143.276 58.477 142.608 57.4837 142.27 56.3519C142.052 55.6536 141.789 54.8408 142.127 54.1545C142.42 53.5405 143.045 53.0468 143.782 53.119C143.913 53.113 143.913 52.9144 143.782 52.9023Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M149.742 61.0898C148.755 60.6564 148.393 63.3294 149.861 63.4558C151.191 63.5822 151.266 61.144 149.742 61.0898Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M149.742 61.9026C149.686 61.9026 149.667 61.9447 149.624 62.017C149.549 62.2518 149.624 62.4384 149.898 62.3963C149.973 62.1675 149.886 61.9146 149.742 61.9026Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M149.855 41.5242C150.261 41.452 150.929 41.5543 151.323 41.4098C152.066 41.157 151.629 40.4707 151.192 40.0673C150.161 39.1041 149.155 39.6339 147.937 39.7482C147.905 40.3202 147.574 42.9269 148.561 42.8125C148.574 42.5597 148.318 41.5242 148.53 41.3556C148.867 41.0907 149.667 42.3309 149.855 41.5242Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M145.362 47.8875C145.419 49.2722 144.969 50.7832 144.725 52.1257C144.607 52.6977 144.307 53.4261 144.375 54.0161C144.538 55.4308 145.131 53.2455 145.612 53.7813C145.787 53.3478 145.569 52.7157 145.556 52.2401C145.525 51.5418 145.612 51.0361 145.875 50.3919C146.106 49.8019 146.556 49.1578 146.687 48.5437C146.831 47.8032 146.075 47.7852 145.437 47.7852" fill="white"/> +<path d="M145.362 47.8875C145.419 49.2722 144.969 50.7832 144.725 52.1257C144.607 52.6977 144.307 53.4261 144.375 54.0161C144.538 55.4308 145.131 53.2455 145.612 53.7813C145.787 53.3478 145.569 52.7157 145.556 52.2401C145.525 51.5418 145.612 51.0361 145.875 50.3919C146.106 49.8019 146.556 49.1578 146.687 48.5437C146.831 47.8032 146.075 47.7852 145.437 47.7852" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M145.362 47.8875C145.419 49.2722 144.969 50.7832 144.725 52.1257C144.607 52.6977 144.307 53.4261 144.375 54.0161C144.538 55.4308 145.131 53.2455 145.612 53.7813C145.787 53.3478 145.569 52.7157 145.556 52.2401C145.525 51.5418 145.612 51.0361 145.875 50.3919C146.106 49.8019 146.556 49.1578 146.687 48.5437C146.831 47.8032 146.075 47.7852 145.437 47.7852" fill="white"/> +<path d="M145.362 47.8875C145.419 49.2722 144.969 50.7832 144.725 52.1257C144.607 52.6977 144.307 53.4261 144.375 54.0161C144.538 55.4308 145.131 53.2455 145.612 53.7813C145.787 53.3478 145.569 52.7157 145.556 52.2401C145.525 51.5418 145.612 51.0361 145.875 50.3919C146.106 49.8019 146.556 49.1578 146.687 48.5437C146.831 47.8032 146.075 47.7852 145.437 47.7852" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M151.204 55.1539C151.204 56.5386 151.423 57.869 151.379 59.2537C151.367 59.6028 151.479 59.8557 151.117 59.9942C150.711 60.1507 150.373 59.7835 150.273 59.4765C150.086 58.8744 150.217 57.851 150.217 57.2249C150.217 56.8456 150.03 55.8944 150.117 55.5573C150.217 55.2081 150.773 54.3532 151.06 54.8288" fill="white"/> +<path d="M151.204 55.1539C151.204 56.5386 151.423 57.869 151.379 59.2537C151.367 59.6028 151.479 59.8557 151.117 59.9942C150.711 60.1507 150.373 59.7835 150.273 59.4765C150.086 58.8744 150.217 57.851 150.217 57.2249C150.217 56.8456 150.03 55.8944 150.117 55.5573C150.217 55.2081 150.773 54.3532 151.06 54.8288" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M151.204 55.1539C151.204 56.5386 151.423 57.869 151.379 59.2537C151.367 59.6028 151.479 59.8557 151.117 59.9942C150.711 60.1507 150.373 59.7835 150.273 59.4765C150.086 58.8744 150.217 57.851 150.217 57.2249C150.217 56.8456 150.03 55.8944 150.117 55.5573C150.217 55.2081 150.773 54.3532 151.06 54.8288" fill="white"/> +<path d="M151.204 55.1539C151.204 56.5386 151.423 57.869 151.379 59.2537C151.367 59.6028 151.479 59.8557 151.117 59.9942C150.711 60.1507 150.373 59.7835 150.273 59.4765C150.086 58.8744 150.217 57.851 150.217 57.2249C150.217 56.8456 150.03 55.8944 150.117 55.5573C150.217 55.2081 150.773 54.3532 151.06 54.8288" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M152.11 53.673C151.648 53.8536 152.197 55.8583 152.254 56.2616C152.31 56.6228 152.397 56.9479 152.528 57.2971C152.628 57.58 152.628 58.164 152.772 58.3867C152.96 58.6697 153.541 58.7359 153.772 58.5132C154.034 58.2603 154.047 58.6396 154.047 58.3145C154.047 57.4717 153.915 55.6837 153.828 54.8589C153.772 54.3111 153.578 52.5773 153.016 52.4629C152.472 52.3545 152.528 53.4622 152.11 53.673Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M154.997 58.2904C155.228 58.2904 155.621 58.1761 155.784 58.3446C155.871 58.459 155.828 58.9587 155.871 59.2236C155.903 59.4463 156.034 59.7834 155.946 60.0062C155.89 60.1326 155.99 60.3132 155.903 60.4276C155.771 60.6263 155.571 60.831 155.309 60.6805C155.209 60.6082 154.99 60.542 154.978 60.4457C154.947 60.2651 155.053 60.1387 155.065 59.928C155.122 59.3681 154.934 58.7961 154.99 58.2483" fill="white"/> +<path d="M154.997 58.2904C155.228 58.2904 155.621 58.1761 155.784 58.3446C155.871 58.459 155.828 58.9587 155.871 59.2236C155.903 59.4463 156.034 59.7834 155.946 60.0062C155.89 60.1326 155.99 60.3132 155.903 60.4276C155.771 60.6263 155.571 60.831 155.309 60.6805C155.209 60.6082 154.99 60.542 154.978 60.4457C154.947 60.2651 155.053 60.1387 155.065 59.928C155.122 59.3681 154.934 58.7961 154.99 58.2483" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M154.997 58.2904C155.228 58.2904 155.621 58.1761 155.784 58.3446C155.871 58.459 155.828 58.9587 155.871 59.2236C155.903 59.4463 156.034 59.7834 155.946 60.0062C155.89 60.1326 155.99 60.3132 155.903 60.4276C155.771 60.6263 155.571 60.831 155.309 60.6805C155.209 60.6082 154.99 60.542 154.978 60.4457C154.947 60.2651 155.053 60.1387 155.065 59.928C155.122 59.3681 154.934 58.7961 154.99 58.2483" fill="white"/> +<path d="M154.997 58.2904C155.228 58.2904 155.621 58.1761 155.784 58.3446C155.871 58.459 155.828 58.9587 155.871 59.2236C155.903 59.4463 156.034 59.7834 155.946 60.0062C155.89 60.1326 155.99 60.3132 155.903 60.4276C155.771 60.6263 155.571 60.831 155.309 60.6805C155.209 60.6082 154.99 60.542 154.978 60.4457C154.947 60.2651 155.053 60.1387 155.065 59.928C155.122 59.3681 154.934 58.7961 154.99 58.2483" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M154.997 58.471C155.39 58.471 155.784 59.368 155.809 59.7894C155.821 59.9459 155.734 60.5299 155.621 60.6322C155.39 60.8429 155.053 60.4095 154.94 60.4516C156.496 62.2456 156.19 56.9358 154.984 58.1278" fill="white"/> +<path d="M154.997 58.471C155.39 58.471 155.784 59.368 155.809 59.7894C155.821 59.9459 155.734 60.5299 155.621 60.6322C155.39 60.8429 155.053 60.4095 154.94 60.4516C156.496 62.2456 156.19 56.9358 154.984 58.1278" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M154.997 58.471C155.39 58.471 155.784 59.368 155.809 59.7894C155.821 59.9459 155.734 60.5299 155.621 60.6322C155.39 60.8429 155.053 60.4095 154.94 60.4516C156.496 62.2456 156.19 56.9358 154.984 58.1278" fill="white"/> +<path d="M154.997 58.471C155.39 58.471 155.784 59.368 155.809 59.7894C155.821 59.9459 155.734 60.5299 155.621 60.6322C155.39 60.8429 155.053 60.4095 154.94 60.4516C156.496 62.2456 156.19 56.9358 154.984 58.1278" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M152.947 59.2537C152.685 59.5066 152.016 59.6571 151.654 59.8016C151.379 59.9159 151.117 59.9701 150.842 60.0965C150.404 60.2952 149.998 60.5601 149.592 60.7829C150.317 61.2163 150.898 61.9748 151.542 61.9989C152.254 62.0411 153.041 61.5775 153.678 61.1983C154.084 60.9454 155.159 60.1929 155.346 59.645C155.49 59.2236 153.691 58.2303 153.416 58.8624" fill="white"/> +<path d="M152.947 59.2537C152.685 59.5066 152.016 59.6571 151.654 59.8016C151.379 59.9159 151.117 59.9701 150.842 60.0965C150.404 60.2952 149.998 60.5601 149.592 60.7829C150.317 61.2163 150.898 61.9748 151.542 61.9989C152.254 62.0411 153.041 61.5775 153.678 61.1983C154.084 60.9454 155.159 60.1929 155.346 59.645C155.49 59.2236 153.691 58.2303 153.416 58.8624" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M152.947 59.2537C152.685 59.5066 152.016 59.6571 151.654 59.8016C151.379 59.9159 151.117 59.9701 150.842 60.0965C150.404 60.2952 149.998 60.5601 149.592 60.7829C150.317 61.2163 150.898 61.9748 151.542 61.9989C152.254 62.0411 153.041 61.5775 153.678 61.1983C154.084 60.9454 155.159 60.1929 155.346 59.645C155.49 59.2236 153.691 58.2303 153.416 58.8624" fill="white"/> +<path d="M152.947 59.2537C152.685 59.5066 152.016 59.6571 151.654 59.8016C151.379 59.9159 151.117 59.9701 150.842 60.0965C150.404 60.2952 149.998 60.5601 149.592 60.7829C150.317 61.2163 150.898 61.9748 151.542 61.9989C152.254 62.0411 153.041 61.5775 153.678 61.1983C154.084 60.9454 155.159 60.1929 155.346 59.645C155.49 59.2236 153.691 58.2303 153.416 58.8624" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M152.935 58.5854C152.772 59.2296 154.478 60.2229 155.184 59.8316C155.721 59.5366 155.053 58.766 154.634 58.5132C154.284 58.2904 152.778 58.3747 152.935 58.5854Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M150.448 59.8737C150.142 60.5299 150.636 60.9092 151.248 61.2343C151.51 61.3727 152.86 61.8363 153.135 61.6798C153.791 61.3186 152.366 60.4877 152.104 60.3071C151.873 60.1386 151.579 59.6931 151.435 59.651C151.292 59.6088 150.448 59.8195 150.33 59.8195" fill="white"/> +<path d="M150.448 59.8737C150.142 60.5299 150.636 60.9092 151.248 61.2343C151.51 61.3727 152.86 61.8363 153.135 61.6798C153.791 61.3186 152.366 60.4877 152.104 60.3071C151.873 60.1386 151.579 59.6931 151.435 59.651C151.292 59.6088 150.448 59.8195 150.33 59.8195" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M150.448 59.8737C150.142 60.5299 150.636 60.9092 151.248 61.2343C151.51 61.3727 152.86 61.8363 153.135 61.6798C153.791 61.3186 152.366 60.4877 152.104 60.3071C151.873 60.1386 151.579 59.6931 151.435 59.651C151.292 59.6088 150.448 59.8195 150.33 59.8195" fill="white"/> +<path d="M150.448 59.8737C150.142 60.5299 150.636 60.9092 151.248 61.2343C151.51 61.3727 152.86 61.8363 153.135 61.6798C153.791 61.3186 152.366 60.4877 152.104 60.3071C151.873 60.1386 151.579 59.6931 151.435 59.651C151.292 59.6088 150.448 59.8195 150.33 59.8195" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M151.073 50.103C151.466 50.5666 152.16 50.705 152.585 51.1264C152.903 51.4455 153.166 51.8127 153.484 52.1318C153.759 52.4087 154.122 52.6495 154.34 52.9867C154.603 53.378 154.59 53.8536 154.59 54.3051C154.603 54.8228 154.59 55.3406 154.59 55.8583C154.59 56.364 154.546 56.8637 154.578 57.3694C154.59 57.7908 154.84 58.0677 154.94 58.4591C154.971 58.447 154.996 58.4289 155.04 58.4169C154.965 58.2483 154.865 58.0978 154.778 57.9533C154.634 57.7005 154.603 57.4898 154.646 57.2129C154.703 56.7674 154.734 56.3038 154.734 55.8402C154.734 55.3646 154.734 54.877 154.703 54.3954C154.671 54.0342 154.69 53.5947 154.54 53.2455C154.421 52.9505 154.147 52.7158 153.947 52.475C153.609 52.0837 153.278 51.6923 152.941 51.301C152.46 50.711 151.81 50.3619 151.123 50.0127C151.073 49.9886 151.017 50.0729 151.073 50.103C151.404 50.2716 151.729 50.4221 152.029 50.6207C152.41 50.8555 152.666 51.1264 152.947 51.4635C153.253 51.8248 153.559 52.192 153.865 52.5412C154.159 52.8603 154.446 53.1432 154.521 53.5887C154.665 54.5278 154.653 55.5091 154.621 56.4423C154.609 56.8035 154.478 57.2249 154.534 57.5921C154.59 57.9112 154.84 58.152 154.971 58.447C154.984 58.5012 155.09 58.459 155.071 58.4049C155.027 58.2242 154.94 58.0858 154.853 57.9172C154.709 57.6343 154.709 57.3453 154.709 57.0383C154.709 56.5326 154.721 56.0329 154.721 55.5272C154.721 54.9673 154.721 54.4074 154.709 53.8476C154.696 53.5285 154.653 53.2034 154.465 52.9265C154.278 52.6496 154.003 52.4388 153.753 52.2101C153.403 51.891 153.116 51.5238 152.797 51.1746C152.566 50.9398 152.347 50.7712 152.041 50.6147C151.754 50.4461 151.373 50.2957 151.154 50.0247C151.104 49.9886 151.029 50.0609 151.073 50.103Z" fill="white"/> +<path d="M151.073 50.103C151.466 50.5666 152.16 50.705 152.585 51.1264C152.903 51.4455 153.166 51.8127 153.484 52.1318C153.759 52.4087 154.122 52.6495 154.34 52.9867C154.603 53.378 154.59 53.8536 154.59 54.3051C154.603 54.8228 154.59 55.3406 154.59 55.8583C154.59 56.364 154.546 56.8637 154.578 57.3694C154.59 57.7908 154.84 58.0677 154.94 58.459C154.971 58.447 154.996 58.4289 155.04 58.4169C154.965 58.2483 154.865 58.0978 154.778 57.9533C154.634 57.7005 154.603 57.4898 154.646 57.2129C154.703 56.7674 154.734 56.3038 154.734 55.8402C154.734 55.3646 154.734 54.877 154.703 54.3954C154.671 54.0342 154.69 53.5947 154.54 53.2455C154.421 52.9505 154.147 52.7158 153.947 52.475C153.609 52.0837 153.278 51.6923 152.941 51.301C152.46 50.711 151.81 50.3619 151.123 50.0127C151.073 49.9886 151.017 50.0729 151.073 50.103ZM151.073 50.103C151.404 50.2716 151.729 50.4221 152.029 50.6207C152.41 50.8555 152.666 51.1264 152.947 51.4635C153.253 51.8248 153.559 52.192 153.865 52.5412C154.159 52.8603 154.446 53.1432 154.521 53.5887C154.665 54.5278 154.653 55.5091 154.621 56.4423C154.609 56.8035 154.478 57.2249 154.534 57.5921C154.59 57.9112 154.84 58.152 154.971 58.447C154.984 58.5012 155.09 58.459 155.071 58.4049C155.027 58.2242 154.94 58.0858 154.853 57.9172C154.709 57.6343 154.709 57.3453 154.709 57.0383C154.709 56.5326 154.721 56.0329 154.721 55.5272C154.721 54.9673 154.721 54.4074 154.709 53.8476C154.696 53.5285 154.653 53.2034 154.465 52.9265C154.278 52.6496 154.003 52.4388 153.753 52.2101C153.403 51.891 153.116 51.5238 152.797 51.1746C152.566 50.9398 152.347 50.7712 152.041 50.6147C151.754 50.4461 151.373 50.2957 151.154 50.0247C151.104 49.9886 151.029 50.0609 151.073 50.103Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M151.073 50.103C151.466 50.5666 152.16 50.705 152.585 51.1264C152.903 51.4455 153.166 51.8127 153.484 52.1318C153.759 52.4087 154.122 52.6495 154.34 52.9867C154.603 53.378 154.59 53.8536 154.59 54.3051C154.603 54.8228 154.59 55.3406 154.59 55.8583C154.59 56.364 154.546 56.8637 154.578 57.3694C154.59 57.7908 154.84 58.0677 154.94 58.4591C154.971 58.447 154.996 58.4289 155.04 58.4169C154.965 58.2483 154.865 58.0978 154.778 57.9533C154.634 57.7005 154.603 57.4898 154.646 57.2129C154.703 56.7674 154.734 56.3038 154.734 55.8402C154.734 55.3646 154.734 54.877 154.703 54.3954C154.671 54.0342 154.69 53.5947 154.54 53.2455C154.421 52.9505 154.147 52.7158 153.947 52.475C153.609 52.0837 153.278 51.6923 152.941 51.301C152.46 50.711 151.81 50.3619 151.123 50.0127C151.073 49.9886 151.017 50.0729 151.073 50.103C151.404 50.2716 151.729 50.4221 152.029 50.6207C152.41 50.8555 152.666 51.1264 152.947 51.4635C153.253 51.8248 153.559 52.192 153.865 52.5412C154.159 52.8603 154.446 53.1432 154.521 53.5887C154.665 54.5278 154.653 55.5091 154.621 56.4423C154.609 56.8035 154.478 57.2249 154.534 57.5921C154.59 57.9112 154.84 58.152 154.971 58.447C154.984 58.5012 155.09 58.459 155.071 58.4049C155.027 58.2242 154.94 58.0858 154.853 57.9172C154.709 57.6343 154.709 57.3453 154.709 57.0383C154.709 56.5326 154.721 56.0329 154.721 55.5272C154.721 54.9673 154.721 54.4074 154.709 53.8476C154.696 53.5285 154.653 53.2034 154.465 52.9265C154.278 52.6496 154.003 52.4388 153.753 52.2101C153.403 51.891 153.116 51.5238 152.797 51.1746C152.566 50.9398 152.347 50.7712 152.041 50.6147C151.754 50.4461 151.373 50.2957 151.154 50.0247C151.104 49.9886 151.029 50.0609 151.073 50.103Z" fill="white"/> +<path d="M151.073 50.103C151.466 50.5666 152.16 50.705 152.585 51.1264C152.903 51.4455 153.166 51.8127 153.484 52.1318C153.759 52.4087 154.122 52.6495 154.34 52.9867C154.603 53.378 154.59 53.8536 154.59 54.3051C154.603 54.8228 154.59 55.3406 154.59 55.8583C154.59 56.364 154.546 56.8637 154.578 57.3694C154.59 57.7908 154.84 58.0677 154.94 58.459C154.971 58.447 154.996 58.4289 155.04 58.4169C154.965 58.2483 154.865 58.0978 154.778 57.9533C154.634 57.7005 154.603 57.4898 154.646 57.2129C154.703 56.7674 154.734 56.3038 154.734 55.8402C154.734 55.3646 154.734 54.877 154.703 54.3954C154.671 54.0342 154.69 53.5947 154.54 53.2455C154.421 52.9505 154.147 52.7158 153.947 52.475C153.609 52.0837 153.278 51.6923 152.941 51.301C152.46 50.711 151.81 50.3619 151.123 50.0127C151.073 49.9886 151.017 50.0729 151.073 50.103ZM151.073 50.103C151.404 50.2716 151.729 50.4221 152.029 50.6207C152.41 50.8555 152.666 51.1264 152.947 51.4635C153.253 51.8248 153.559 52.192 153.865 52.5412C154.159 52.8603 154.446 53.1432 154.521 53.5887C154.665 54.5278 154.653 55.5091 154.621 56.4423C154.609 56.8035 154.478 57.2249 154.534 57.5921C154.59 57.9112 154.84 58.152 154.971 58.447C154.984 58.5012 155.09 58.459 155.071 58.4049C155.027 58.2242 154.94 58.0858 154.853 57.9172C154.709 57.6343 154.709 57.3453 154.709 57.0383C154.709 56.5326 154.721 56.0329 154.721 55.5272C154.721 54.9673 154.721 54.4074 154.709 53.8476C154.696 53.5285 154.653 53.2034 154.465 52.9265C154.278 52.6496 154.003 52.4388 153.753 52.2101C153.403 51.891 153.116 51.5238 152.797 51.1746C152.566 50.9398 152.347 50.7712 152.041 50.6147C151.754 50.4461 151.373 50.2957 151.154 50.0247C151.104 49.9886 151.029 50.0609 151.073 50.103Z" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M150.554 43.565C151.673 43.4385 152.647 44.6968 152.329 45.7503C152.154 46.3403 151.454 46.0573 151.21 46.5089C150.992 46.9122 151.254 47.8935 151.267 48.345C151.323 49.4949 151.123 50.8374 150.248 51.6621C149.292 52.6013 147.824 52.3184 146.587 52.1378C145.631 51.9993 145.338 52.8361 145.6 50.9217C145.744 49.8561 146.387 49.1036 146.587 48.0922C146.212 47.8935 145.875 48.2066 145.544 47.9537C145.169 47.6587 145.413 47.0989 145.531 46.6774C145.806 45.7142 146.318 45.0279 147.099 44.3837C147.418 44.1189 147.812 43.8359 148.249 43.878C148.874 43.9503 148.917 44.6908 149.38 44.8292C149.992 45.0098 149.773 44.2272 149.992 43.9322C150.217 43.6372 150.173 43.5228 150.554 43.565Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M150.992 50.5243C151.573 51.325 153.928 52.216 153.709 53.3959C153.566 54.2207 152.579 54.317 151.954 54.0401C151.285 53.721 150.661 53.1732 149.892 53.1973C150.286 53.6187 151.185 54.1485 151.317 54.7505C151.417 55.2562 150.592 55.6596 150.08 55.786C149.73 55.3525 149.542 54.8227 149.049 54.4555C148.63 54.1485 148.062 53.992 147.581 53.8234C146.781 53.5284 145.388 53.2093 145.531 52.1016C145.588 51.6561 146.387 51.7825 146.925 51.8788C147.462 51.9752 147.88 52.1317 148.449 52.0896C149.086 52.0474 149.611 51.921 150.105 51.5176C150.436 51.2528 150.467 50.9036 150.948 50.6086" fill="white"/> +<path d="M150.992 50.5243C151.573 51.325 153.928 52.216 153.709 53.3959C153.566 54.2207 152.579 54.317 151.954 54.0401C151.285 53.721 150.661 53.1732 149.892 53.1973C150.286 53.6187 151.185 54.1485 151.317 54.7505C151.417 55.2562 150.592 55.6596 150.08 55.786C149.73 55.3525 149.542 54.8227 149.049 54.4555C148.63 54.1485 148.062 53.992 147.581 53.8234C146.781 53.5284 145.388 53.2093 145.531 52.1016C145.588 51.6561 146.387 51.7825 146.925 51.8788C147.462 51.9752 147.88 52.1317 148.449 52.0896C149.086 52.0474 149.611 51.921 150.105 51.5176C150.436 51.2528 150.467 50.9036 150.948 50.6086" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M150.992 50.5243C151.573 51.325 153.928 52.216 153.709 53.3959C153.566 54.2207 152.579 54.317 151.954 54.0401C151.285 53.721 150.661 53.1732 149.892 53.1973C150.286 53.6187 151.185 54.1485 151.317 54.7505C151.417 55.2562 150.592 55.6596 150.08 55.786C149.73 55.3525 149.542 54.8227 149.049 54.4555C148.63 54.1485 148.062 53.992 147.581 53.8234C146.781 53.5284 145.388 53.2093 145.531 52.1016C145.588 51.6561 146.387 51.7825 146.925 51.8788C147.462 51.9752 147.88 52.1317 148.449 52.0896C149.086 52.0474 149.611 51.921 150.105 51.5176C150.436 51.2528 150.467 50.9036 150.948 50.6086" fill="white"/> +<path d="M150.992 50.5243C151.573 51.325 153.928 52.216 153.709 53.3959C153.566 54.2207 152.579 54.317 151.954 54.0401C151.285 53.721 150.661 53.1732 149.892 53.1973C150.286 53.6187 151.185 54.1485 151.317 54.7505C151.417 55.2562 150.592 55.6596 150.08 55.786C149.73 55.3525 149.542 54.8227 149.049 54.4555C148.63 54.1485 148.062 53.992 147.581 53.8234C146.781 53.5284 145.388 53.2093 145.531 52.1016C145.588 51.6561 146.387 51.7825 146.925 51.8788C147.462 51.9752 147.88 52.1317 148.449 52.0896C149.086 52.0474 149.611 51.921 150.105 51.5176C150.436 51.2528 150.467 50.9036 150.948 50.6086" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M149.48 61.0476C150.642 60.9332 151.454 63.1908 150.148 63.4015C150.092 63.4136 150.117 63.5159 150.18 63.4979C151.604 63.2751 150.761 60.8369 149.499 60.9513C149.405 60.9633 149.405 61.0597 149.48 61.0476Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +</svg>