diff --git a/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.html b/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.html new file mode 100644 index 0000000000000000000000000000000000000000..343b60a2c867ec5ba5d92b722cce117a0ba3b2a3 --- /dev/null +++ b/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.html @@ -0,0 +1,28 @@ +<div *ngIf="openned" class="modalBackground"> + <div class="modal" (clickOutside)="handleClose()"> + <div class="contentModal" fxLayout="column" fxLayoutAlign="space-around center"> + <div class="headerModal" fxLayout="row" fxLayoutAlign="space-between center"> + <h3>Se connecter</h3> + <app-svg-icon [type]="'ico'" [iconColor]="inherit" [icon]="'closeModal'" (click)="handleClose()"></app-svg-icon> + </div> + <div class="content"> + <img src="../../../../../assets/img/resin-login.svg" alt="resin-login-image" class="loginimg" /> + <h3>Pour pré-remplir ce formulaire, gagnez du temps en vous connectant !</h3> + <div class="footerModal" fxLayout="column" fxLayoutAlign="space-around center" fxLayoutGap="8px"> + <app-button + (action)="goLogin()" + [text]="'Se connecter'" + [style]="buttonTypeEnum.modalPrimary" + [ngClass]="'fullWidth'" + ></app-button> + <app-button + (action)="goToAccountCreation()" + [text]="'Je n’ai pas encore de compte'" + [style]="buttonTypeEnum.Tertiary" + [ngClass]="'fullWidth'" + ></app-button> + </div> + </div> + </div> + </div> +</div> diff --git a/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.scss b/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.scss new file mode 100644 index 0000000000000000000000000000000000000000..0903809a1930387927e969572e343329cb048436 --- /dev/null +++ b/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.scss @@ -0,0 +1,46 @@ +@import '../../../../../assets/scss/color'; +@import '../../../../../assets/scss/typography'; + +.modal { + max-width: 390px; +} +.contentModal { + padding-top: 0 !important; +} +h3 { + color: $grey-1; + text-align: center; +} +.headerModal { + height: 58px; + width: 100%; + padding: 0 0.875rem 0 1rem; + border-bottom: solid 1px $grey-6; + h3 { + padding-left: 1.875rem; + flex: auto; + } +} +::ng-deep .headerModal svg { + cursor: pointer; + width: 40px !important; + height: 40px !important; +} +.loginimg { + margin: auto; + display: block; +} +.content { + padding: 0 1.5rem; +} +.footerModal { + padding-bottom: 1rem; + gap: 0.5rem; +} +.fullWidth { + width: 100% !important; +} +::ng-deep .tertiary { + border-radius: 4px !important; + width: 100% !important; +} diff --git a/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.spec.ts b/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.spec.ts new file mode 100644 index 0000000000000000000000000000000000000000..7ef1440aa1acebd1b68852339721227d4473c825 --- /dev/null +++ b/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.spec.ts @@ -0,0 +1,23 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { LoginModalComponent } from './login-modal.component'; + +describe('LoginModalComponent', () => { + let component: LoginModalComponent; + let fixture: ComponentFixture<LoginModalComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ LoginModalComponent ] + }) + .compileComponents(); + + fixture = TestBed.createComponent(LoginModalComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.ts b/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.ts new file mode 100644 index 0000000000000000000000000000000000000000..2f986de592818ed48fdf5a99d0973ccd2bab4789 --- /dev/null +++ b/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.ts @@ -0,0 +1,28 @@ +import { Component, Input, OnInit } from '@angular/core'; +import { Router } from '@angular/router'; +import { ButtonType } from '../../../../shared/components/button/buttonType.enum'; + +@Component({ + selector: 'app-login-modal', + templateUrl: './login-modal.component.html', + styleUrls: ['./login-modal.component.scss'], +}) +export class LoginModalComponent implements OnInit { + @Input() openned: boolean; + public buttonTypeEnum = ButtonType; + constructor(private router: Router) {} + + ngOnInit(): void {} + + public handleClose(): void { + this.openned = false; + } + public goToAccountCreation(): void { + this.router.navigateByUrl('form/account'); + this.handleClose(); + } + public goLogin(): void { + this.router.navigate(['/login'], { queryParams: { returnUrl: '/orientation' } }); + this.handleClose(); + } +} diff --git a/src/app/form/orientation-form-view/orientation-form-view.component.html b/src/app/form/orientation-form-view/orientation-form-view.component.html index aac0e4defaf130d42abded54c19d0a6cf7936dd3..56f059add0bc089a321bb5c3b0cff6dbaad472d9 100644 --- a/src/app/form/orientation-form-view/orientation-form-view.component.html +++ b/src/app/form/orientation-form-view/orientation-form-view.component.html @@ -29,4 +29,5 @@ [content]="'Il vous faudra de nouveau remplir le formulaire si vous quittez'" (closed)="hasRedirectionAccepted($event)" ></app-modal-confirmation> + <app-login-modal [openned]="showLoginModal"></app-login-modal> </div> diff --git a/src/app/form/orientation-form-view/orientation-form-view.component.ts b/src/app/form/orientation-form-view/orientation-form-view.component.ts index f2a9e29fa8625db49f965a009812fbebe5a1ce7e..10e1646d7a16049f54bad9512baeef75bb2d8539 100644 --- a/src/app/form/orientation-form-view/orientation-form-view.component.ts +++ b/src/app/form/orientation-form-view/orientation-form-view.component.ts @@ -1,4 +1,4 @@ -import { ChangeDetectorRef, Component } from '@angular/core'; +import { AfterContentChecked, ChangeDetectorRef, Component, OnInit } from '@angular/core'; import { UntypedFormGroup } from '@angular/forms'; import { Router } from '@angular/router'; import { OnlineMediationService } from '../../services/online-mediation.service'; @@ -8,13 +8,14 @@ import { mediationSteps } from './enums/mediationSteps.enum'; import { needsType } from './enums/needs.enum'; import { IOnlineMediation } from './interfaces/onlineMediation.interface'; import { NotificationService } from '../../services/notification.service'; +import { AuthService } from '../../services/auth.service'; @Component({ selector: 'app-orientation-form-view', templateUrl: './orientation-form-view.component.html', styleUrls: ['./orientation-form-view.component.scss'], }) -export class OrientationFormViewComponent { +export class OrientationFormViewComponent implements OnInit, AfterContentChecked { public orientationUtils = new OrientationUtils(); public onlineDemarchForm: UntypedFormGroup; public equipmentBuyForm: UntypedFormGroup; @@ -27,6 +28,7 @@ export class OrientationFormViewComponent { public needType: needsType; public needEnum = needsType; public canDeactivate: boolean = false; + public showLoginModal: boolean = false; // Modal canExit var public showConfirmationModal = false; @@ -36,9 +38,16 @@ export class OrientationFormViewComponent { private onlineMediationService: OnlineMediationService, private router: Router, private notificationService: NotificationService, + private authService: AuthService, private cdref: ChangeDetectorRef ) {} + ngOnInit() { + if (!this.authService.isLoggedIn()) { + this.showLoginModal = true; + } + } + ngAfterContentChecked() { this.cdref.detectChanges(); } diff --git a/src/app/form/orientation-form-view/orientation.module.ts b/src/app/form/orientation-form-view/orientation.module.ts index cf0792dc4ce07ab9b54a0e93c65580afb85ee03d..7f8a61a19e13a2c233d6e1c98f475390ea52266b 100644 --- a/src/app/form/orientation-form-view/orientation.module.ts +++ b/src/app/form/orientation-form-view/orientation.module.ts @@ -14,6 +14,7 @@ import { OnlineDemarchComponent } from './online-demarch/online-demarch/online-d import { OnlineDemarchFormComponent } from './online-demarch/onlineDemarch-form.component'; import { MultiRadioFormComponent } from './global-components/multi-radio-form/multi-radio-form.component'; import { PrintHeaderComponent } from './global-components/print-header/print-header.component'; +import { LoginModalComponent } from './global-components/login-modal/login-modal.component'; @NgModule({ declarations: [ @@ -29,6 +30,7 @@ import { PrintHeaderComponent } from './global-components/print-header/print-hea MediationRecapComponent, OnlineDemarchFormComponent, PrintHeaderComponent, + LoginModalComponent, ], imports: [CommonModule, OrientationRoutingModule, SharedModule], }) diff --git a/src/assets/img/resin-login.svg b/src/assets/img/resin-login.svg new file mode 100644 index 0000000000000000000000000000000000000000..7140aa76662f5c7cfd3c6dc9892c2deb37f39e4d --- /dev/null +++ b/src/assets/img/resin-login.svg @@ -0,0 +1,153 @@ +<svg width="200" height="201" viewBox="0 0 200 201" fill="none" xmlns="http://www.w3.org/2000/svg"> +<path d="M128.574 126.441L148.044 137.46C154.368 141.039 154.419 146.909 148.157 150.524L96.0664 180.599C89.8486 184.189 79.7675 184.189 73.5497 180.599L30.3011 155.629" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M66.5005 95.0004L33.0414 75.3043C26.9264 71.7047 26.9748 65.9329 33.15 62.3677L77.9345 36.5114C84.1523 32.9215 94.2334 32.9215 100.451 36.5114L168.296 75.6817" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M180.108 74.6315C183.506 76.5821 183.52 79.7457 180.15 81.7031C176.779 83.6536 171.291 83.6536 167.892 81.7031C164.494 79.7526 164.48 76.5889 167.858 74.6315C171.235 72.6741 176.717 72.681 180.108 74.6315Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M130.221 81.5819C130.26 81.5607 130.296 81.5395 130.335 81.5182C131.24 81.0053 132.284 80.5738 133.472 80.2484C134.668 79.9229 135.892 79.7319 137.193 79.6541C138.477 79.594 139.8 79.6895 141.123 79.9477C142.443 80.2094 143.652 80.6693 144.788 81.3025L162.679 91.6985C163.886 92.3989 163.875 93.5309 162.669 94.2277C161.413 94.9528 159.464 94.9458 158.261 94.2489L140.37 83.8528C139.362 83.2833 138.329 83.0287 137.257 83.1029C136.192 83.1489 135.237 83.4319 134.42 83.8882C133.603 84.3587 133.164 84.8963 133.023 85.4977C132.878 86.1061 133.316 86.7039 134.31 87.2734L152.294 97.6872C153.493 98.384 153.493 99.5159 152.28 100.216C151.067 100.917 149.117 100.917 147.915 100.216C145.895 99.0419 143.207 97.4714 143.178 97.4537L129.906 89.7778C128.746 89.1128 127.915 88.3947 127.48 87.6413C127.034 86.8878 126.85 86.145 126.999 85.4057C127.116 84.6806 127.469 83.9837 128.078 83.294C128.661 82.636 129.365 82.0771 130.221 81.5819Z" fill="#EDEDED" stroke="#EDEDED" stroke-width="9" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M115.123 90.3129C116.482 89.5311 118.668 89.5311 120.015 90.3129L142.201 103.206C143.549 103.988 143.545 105.258 142.187 106.04C140.829 106.821 138.639 106.821 137.291 106.04L115.106 93.1462C113.758 92.3645 113.765 91.0946 115.123 90.3129Z" fill="#EDEDED" stroke="#EDEDED" stroke-width="9" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M105.032 96.1377C106.956 95.027 110.073 95.027 111.986 96.1377C113.882 97.2414 113.886 99.0171 112.011 100.131L108.477 102.176L105.011 100.163C103.097 99.0524 103.108 97.2484 105.032 96.1377Z" fill="#EDEDED" stroke="#EDEDED" stroke-width="9" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M91.4378 103.98C94.7522 102.067 98.7883 102.007 102.386 103.061C103.928 103.51 104.275 104.695 103.051 105.402C102.269 105.855 101.116 105.951 100.139 105.689C98.293 105.194 96.6376 105.169 95.2404 105.976C93.6344 106.902 93.8573 108.204 95.3147 109.053C96.2308 109.584 97.4618 109.877 99.2976 109.824L108.293 109.612C111.922 109.527 115.82 109.608 119.177 111.582C123.705 114.214 122.951 117.242 118.583 119.764C115.481 121.554 111.678 121.996 108.021 121.257C105.944 120.836 105.318 119.311 106.885 118.409L106.998 118.345C107.854 117.85 109.117 117.723 110.246 117.974C112.272 118.423 113.935 118.264 115.389 117.426C117.136 116.418 117.005 115.225 115.314 114.242C113.808 113.365 112.021 113.075 109.23 113.206L100.797 113.577C97.4052 113.736 94.1933 113.521 91.0876 111.717C86.9136 109.29 87.3027 106.368 91.4378 103.98Z" fill="#EDEDED" stroke="#EDEDED" stroke-width="9" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M87.7414 114.136C88.9582 114.843 89.793 115.547 90.2316 116.333C90.6773 117.114 90.8047 117.854 90.6667 118.6C90.5323 119.339 90.0795 120.043 89.5631 120.712C89.0219 121.416 88.2578 122.059 87.3098 122.608L84.335 124.327L90.4828 127.899C90.9143 128.151 91.2857 128.292 91.6819 128.409C91.8871 128.469 92.0922 128.522 92.3045 128.561C93.7901 128.84 95.488 128.646 96.6765 127.96C97.9783 127.21 98.5973 126.286 97.7519 125.282C97.2001 124.635 97.4901 123.853 98.378 123.34C99.8459 122.494 102.379 122.714 103.203 123.821C103.281 123.916 103.351 124.023 103.404 124.125C103.836 124.882 103.893 125.512 103.776 126.233C103.638 126.976 103.256 127.648 102.672 128.356C102.152 129.028 101.381 129.622 100.479 130.142C99.6196 130.637 98.7423 131.026 97.713 131.341L97.5927 131.366C93.9458 132.562 89.1881 132.236 86.093 130.436L72.9095 122.7C71.8201 122.066 70.9888 121.363 70.5431 120.581C70.1009 119.796 69.9771 119.053 70.108 118.31C70.2495 117.567 70.628 116.895 71.2116 116.188C71.2788 116.103 71.3637 116.018 71.438 115.933C72.3223 114.709 72.2551 112.894 72.0429 112.488C71.7316 111.879 72.0429 111.246 72.7716 110.829C73.0935 110.641 73.4967 110.5 73.9601 110.418C75.4741 110.153 77.0623 110.638 77.5257 111.515C77.6955 111.844 77.8228 112.286 77.8794 112.792C78.6222 112.643 79.3792 112.548 80.1645 112.505C81.4556 112.431 82.7326 112.505 84.0803 112.763C85.4315 113.022 86.6483 113.503 87.7414 114.136ZM83.4117 116.775L83.3445 116.736C82.3859 116.18 81.2964 115.919 80.2671 115.993C79.1705 116.103 78.2685 116.325 77.4302 116.81C76.5883 117.295 76.1462 117.854 76.0117 118.451C75.8773 119.046 76.3265 119.679 77.2852 120.238L80.2317 121.95L83.2596 120.202C84.098 119.718 84.5507 119.166 84.6851 118.568C84.8196 117.967 84.3703 117.334 83.4117 116.775Z" fill="#EDEDED" stroke="#EDEDED" stroke-width="9" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M55.7644 124.574C55.8033 124.553 55.8387 124.532 55.8776 124.51C56.7831 123.998 57.8301 123.57 59.0151 123.241C60.2107 122.915 61.4346 122.724 62.7364 122.646C64.0169 122.586 65.3433 122.682 66.6663 122.94C66.7087 122.95 66.7583 122.961 66.8042 122.968C68.8099 123.393 69.3122 124.903 67.8053 125.773L67.5188 125.932C66.6804 126.403 65.4459 126.488 64.3741 126.226C63.8577 126.102 63.3235 126.06 62.793 126.095C61.7247 126.141 60.7732 126.421 59.9561 126.877C59.1389 127.347 58.7039 127.885 58.5588 128.486C58.4138 129.095 58.856 129.696 59.8464 130.262L77.8299 140.676C79.0326 141.376 79.0326 142.508 77.8193 143.209C76.6025 143.909 74.657 143.909 73.4543 143.209C71.431 142.034 68.7462 140.464 68.7179 140.446L55.8139 132.986C55.2019 132.731 54.5263 132.572 53.7835 132.526C53.2529 132.483 52.7188 132.515 52.1953 132.632C51.1022 132.869 49.8783 132.763 49.0718 132.278L48.8242 132.13C47.664 131.429 47.7772 130.347 48.8596 129.721C49.1603 129.548 49.5388 129.41 49.9809 129.321C50.0304 129.314 50.08 129.307 50.1153 129.3C50.9183 129.162 51.7142 129.088 52.4995 129.063C52.4853 128.84 52.4889 128.617 52.5384 128.398C52.6551 127.676 53.0088 126.976 53.6102 126.286C54.2009 125.628 54.9084 125.069 55.7644 124.574Z" fill="#EDEDED" stroke="#EDEDED" stroke-width="9" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M158.968 86.1078L141.076 75.7117C140.068 75.1422 139.035 74.8875 137.964 74.9618C136.899 75.0078 135.944 75.2908 135.127 75.7471C134.31 76.2176 133.871 76.7552 133.729 77.3566C133.712 77.4344 133.701 77.5122 133.701 77.5865L133.722 85.3614C133.722 85.2836 133.733 85.2093 133.751 85.1315C133.892 84.5302 134.331 83.996 135.148 83.522C135.965 83.0657 136.917 82.7828 137.985 82.7368C139.057 82.6625 140.09 82.9172 141.098 83.4867L158.989 93.8827L158.968 86.1078Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M164.288 84.8145L164.309 92.5894C164.309 93.0493 164.005 93.5126 163.396 93.8628C162.141 94.588 160.192 94.5809 158.989 93.884L158.968 86.1091C160.167 86.8059 162.119 86.813 163.375 86.0879C163.984 85.7377 164.288 85.2778 164.288 84.8145Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M153.902 90.8C153.902 91.2599 153.601 91.7197 152.989 92.0735C151.776 92.7738 149.827 92.7738 148.624 92.0735C146.604 90.8991 143.916 89.3285 143.888 89.3108L130.616 81.6385C129.456 80.9735 128.624 80.2554 128.189 79.502C127.846 78.9218 127.659 78.3488 127.655 77.7793L127.676 85.5542C127.676 86.1237 127.868 86.6968 128.211 87.2769C128.646 88.0303 129.481 88.7484 130.637 89.4134L143.909 97.0893C143.937 97.107 146.626 98.6776 148.646 99.8519C149.848 100.552 151.797 100.552 153.011 99.8519C153.619 99.5018 153.923 99.0384 153.923 98.5785L153.902 90.8Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M130.927 73.4452C130.966 73.424 131.002 73.4027 131.041 73.3815C131.946 72.8686 132.99 72.4371 134.178 72.1116C135.374 71.7862 136.598 71.5952 137.899 71.5174C139.183 71.4572 140.506 71.5527 141.829 71.811C143.149 72.0727 144.358 72.5326 145.494 73.1657L163.385 83.5618C164.592 84.2622 164.581 85.3941 163.375 86.091C162.119 86.8161 160.17 86.809 158.967 86.1122L141.076 75.7161C140.068 75.1466 139.035 74.8919 137.963 74.9662C136.898 75.0122 135.943 75.2952 135.126 75.7515C134.309 76.222 133.87 76.7596 133.729 77.361C133.584 77.9694 134.022 78.5672 135.016 79.1367L153 89.5504C154.199 90.2473 154.199 91.3792 152.986 92.0796C151.773 92.78 149.824 92.78 148.621 92.0796C146.601 90.9052 143.913 89.3347 143.884 89.317L130.613 81.6411C129.452 80.9761 128.621 80.258 128.186 79.5046C127.74 78.7511 127.556 78.0083 127.705 77.269C127.822 76.5439 128.175 75.847 128.784 75.1572C129.367 74.4993 130.071 73.9404 130.927 73.4452Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M137.999 97.9028L115.813 85.0094C115.145 84.6203 114.809 84.1109 114.809 83.6016L114.83 91.3765C114.83 91.8859 115.166 92.3952 115.834 92.7843L138.02 105.678L137.999 97.9028Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M143.913 96.4766L143.934 104.252C143.934 104.768 143.595 105.284 142.912 105.677C141.554 106.459 139.364 106.459 138.016 105.677L137.995 97.9021C139.343 98.6838 141.532 98.6838 142.891 97.9021C143.577 97.5094 143.917 96.993 143.913 96.4766Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M115.83 82.1761C117.189 81.3944 119.375 81.3944 120.722 82.1761L142.908 95.0696C144.256 95.8513 144.252 97.1212 142.894 97.9029C141.536 98.6847 139.346 98.6847 137.998 97.9029L115.813 85.0095C114.465 84.2278 114.472 82.9579 115.83 82.1761Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M109.18 94.0425L105.714 92.0298C104.766 91.478 104.288 90.7529 104.288 90.0312L104.309 97.8062C104.313 98.5313 104.787 99.253 105.735 99.8048L109.201 101.817L109.18 94.0425Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M114.119 89.9961C114.122 90.7177 113.652 91.4393 112.714 91.9947L109.181 94.0392L109.202 101.814L112.736 99.7696C113.673 99.2107 114.14 98.4891 114.14 97.771L114.119 89.9961Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M105.738 88.001C107.662 86.8903 110.779 86.8903 112.692 88.001C114.588 89.1046 114.592 90.8803 112.717 91.9946L109.183 94.0391L105.717 92.0264C103.803 90.9157 103.814 89.1117 105.738 88.001Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M104.498 96.2324L104.519 104.007C104.519 104.375 104.282 104.747 103.78 105.037C102.998 105.489 101.845 105.585 100.869 105.323C99.0221 104.828 97.3667 104.803 95.9694 105.61C95.2019 106.052 94.8517 106.579 94.8552 107.102L94.834 99.3275C94.834 98.804 95.1842 98.277 95.9482 97.8348C97.3455 97.0283 99.0009 97.0531 100.847 97.5483C101.824 97.8101 102.977 97.7145 103.759 97.2618C104.261 96.9717 104.498 96.6003 104.498 96.2324Z" fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M117.342 107.729C117.342 107.166 116.882 106.608 116.015 106.102C114.508 105.224 112.722 104.934 109.931 105.065L101.498 105.437C98.1061 105.596 94.8942 105.38 91.7885 103.576C89.8041 102.423 88.8561 101.157 88.8525 99.8867L88.8738 107.662C88.8773 108.932 89.8288 110.198 91.8097 111.351C94.9154 113.155 98.1273 113.371 101.52 113.212L109.952 112.84C112.747 112.709 114.53 112.999 116.037 113.877C116.907 114.383 117.363 114.941 117.363 115.504L117.342 107.729Z" fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M122.937 107.252L122.959 115.027C122.962 116.537 121.657 118.044 119.308 119.403C116.206 121.192 112.403 121.635 108.746 120.895C107.465 120.633 106.737 119.954 106.733 119.261L106.712 111.486C106.715 112.179 107.444 112.862 108.725 113.12C112.382 113.86 116.185 113.421 119.287 111.628C121.639 110.266 122.941 108.762 122.937 107.252Z" fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M92.1458 95.8438C95.4602 93.9301 99.4963 93.87 103.094 94.9241C104.636 95.3733 104.983 96.5583 103.759 97.2657C102.977 97.7185 101.824 97.814 100.848 97.5523C99.001 97.057 97.3456 97.0323 95.9484 97.8388C94.3424 98.7656 94.5653 100.067 96.0227 100.916C96.9388 101.447 98.1698 101.74 100.006 101.687L109.001 101.475C112.63 101.39 116.528 101.472 119.885 103.445C124.413 106.077 123.659 109.105 119.291 111.627C116.189 113.417 112.386 113.859 108.729 113.12C106.652 112.699 106.026 111.174 107.593 110.272L107.706 110.209C108.562 109.713 109.825 109.586 110.954 109.837C112.98 110.286 114.643 110.127 116.097 109.289C117.844 108.281 117.713 107.089 116.022 106.105C114.516 105.228 112.729 104.938 109.938 105.069L101.505 105.44C98.1132 105.6 94.9013 105.384 91.7956 103.58C87.6216 101.153 88.0107 98.2314 92.1458 95.8438Z" fill="black" stroke="black" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M72.891 105.249L72.9123 113.024C72.9123 112.603 72.8521 112.274 72.7743 112.126C72.6929 111.967 72.654 111.808 72.654 111.652L72.6328 103.877C72.6328 104.033 72.6717 104.192 72.7531 104.351C72.8344 104.5 72.891 104.828 72.891 105.249Z" fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M85.4173 110.215C85.4173 109.685 84.968 109.133 84.1191 108.638L84.0519 108.599C83.0933 108.044 82.0038 107.782 80.9744 107.856C79.8779 107.966 78.9759 108.189 78.1375 108.673C77.2957 109.158 76.8535 109.717 76.7191 110.315C76.705 110.385 76.6943 110.456 76.6943 110.523L76.7156 118.298C76.7156 118.227 76.7226 118.157 76.7403 118.089C76.8712 117.492 77.3169 116.936 78.1588 116.448C78.9971 115.964 79.8991 115.744 80.9957 115.631C82.025 115.557 83.1145 115.819 84.0731 116.374L84.1403 116.413C84.9893 116.908 85.4385 117.456 85.4385 117.99L85.4173 110.215Z" fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M91.4268 109.895C91.4268 110.086 91.4091 110.277 91.3737 110.468C91.2393 111.207 90.7865 111.911 90.2701 112.579C89.7289 113.283 88.9648 113.927 88.0168 114.475L85.042 116.194L85.0632 123.969L88.0381 122.25C88.9861 121.702 89.7466 121.058 90.2913 120.354C90.8078 119.686 91.257 118.982 91.395 118.243C91.4303 118.051 91.448 117.86 91.448 117.669L91.4268 109.895Z" fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M98.8476 118.062L98.8689 125.837C98.8689 125.54 98.7486 125.235 98.4833 124.921C98.2923 124.698 98.2038 124.461 98.2038 124.22L98.1826 116.445C98.1826 116.682 98.2746 116.923 98.4621 117.146C98.7274 117.457 98.8476 117.765 98.8476 118.062Z" fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M104.539 117.478C104.539 117.68 104.521 117.882 104.486 118.094C104.348 118.837 103.966 119.509 103.382 120.216C102.862 120.888 102.091 121.483 101.189 122.003C100.33 122.498 99.4524 122.887 98.423 123.202L98.3028 123.226C94.6558 124.422 89.8982 124.097 86.8031 122.296L73.6196 114.56C72.5301 113.927 71.6989 113.223 71.2532 112.441C70.9242 111.854 70.7721 111.295 70.7686 110.736L70.7898 118.511C70.7898 119.067 70.9419 119.629 71.2744 120.216C71.7201 120.998 72.5513 121.702 73.6408 122.335L86.8243 130.071C89.9194 131.868 94.677 132.197 98.324 131.001L98.4443 130.977C99.4736 130.662 100.351 130.273 101.21 129.778C102.112 129.258 102.884 128.66 103.404 127.991C103.987 127.284 104.369 126.615 104.507 125.869C104.543 125.657 104.56 125.455 104.56 125.253L104.539 117.478Z" fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M88.4484 105.999C89.6652 106.707 90.5 107.411 90.9386 108.196C91.3843 108.978 91.5117 109.717 91.3737 110.463C91.2393 111.203 90.7865 111.906 90.2701 112.575C89.7289 113.279 88.9648 113.923 88.0168 114.471L85.042 116.19L91.1898 119.763C91.6213 120.014 91.9928 120.155 92.3889 120.272C92.5941 120.332 92.7993 120.385 93.0115 120.424C94.4972 120.704 96.195 120.509 97.3836 119.823C98.6853 119.073 99.3043 118.15 98.4589 117.145C97.9071 116.498 98.1971 115.716 99.085 115.203C100.553 114.358 103.086 114.577 103.91 115.684C103.988 115.78 104.058 115.886 104.111 115.988C104.543 116.745 104.6 117.375 104.483 118.097C104.345 118.84 103.963 119.512 103.379 120.219C102.859 120.891 102.088 121.485 101.186 122.005C100.327 122.501 99.4494 122.89 98.42 123.205L98.2997 123.229C94.6528 124.425 89.8951 124.099 86.8 122.299L73.6166 114.563C72.5271 113.93 71.6958 113.226 71.2501 112.444C70.808 111.659 70.6842 110.916 70.815 110.173C70.9565 109.43 71.335 108.758 71.9187 108.051C71.9859 107.966 72.0708 107.881 72.1451 107.796C73.0294 106.572 72.9622 104.758 72.7499 104.351C72.4387 103.742 72.7499 103.109 73.4786 102.692C73.8005 102.504 74.2038 102.363 74.6671 102.281C76.1811 102.016 77.7693 102.501 78.2327 103.378C78.4025 103.707 78.5299 104.149 78.5864 104.655C79.3293 104.506 80.0863 104.411 80.8715 104.368C82.1626 104.294 83.4396 104.368 84.7873 104.627C86.1385 104.885 87.3554 105.366 88.4484 105.999ZM84.1188 108.638L84.0515 108.599C83.0929 108.044 82.0035 107.782 80.9741 107.856C79.8776 107.966 78.9755 108.189 78.1372 108.673C77.2953 109.158 76.8532 109.717 76.7188 110.315C76.5843 110.909 77.0336 111.542 77.9922 112.101L80.9387 113.813L83.9667 112.066C84.805 111.581 85.2578 111.029 85.3922 110.431C85.5266 109.83 85.0774 109.197 84.1188 108.638Z" fill="black" stroke="black" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M69.3903 116.406C69.3903 116.845 69.1108 117.287 68.513 117.634L68.2265 117.793C67.3882 118.263 66.1537 118.348 65.0819 118.086C64.5654 117.963 64.0313 117.92 63.5007 117.956C62.4324 118.002 61.4809 118.281 60.6638 118.737C59.8467 119.208 59.4116 119.745 59.2666 120.347C59.2489 120.425 59.2383 120.499 59.2383 120.577L59.2595 128.352C59.2595 128.274 59.2701 128.2 59.2878 128.122C59.4328 127.52 59.8679 126.986 60.685 126.512C61.5021 126.056 62.4501 125.777 63.5219 125.731C64.0525 125.695 64.5866 125.738 65.1031 125.861C66.1784 126.123 67.4094 126.038 68.2477 125.568L68.5343 125.409C69.1321 125.066 69.4115 124.62 69.4115 124.181L69.3903 116.406Z" fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M53.2273 128.496L53.2061 120.721C53.2061 120.788 53.2096 120.855 53.2131 120.922L53.2343 128.697C53.2308 128.63 53.2273 128.563 53.2273 128.496Z" fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M56.5287 124.846C55.9168 124.591 55.2411 124.432 54.4983 124.386C53.9677 124.343 53.4336 124.375 52.9101 124.492C51.817 124.729 50.5931 124.623 49.7866 124.138L49.539 123.99C48.9801 123.65 48.7184 123.226 48.7148 122.805L48.7361 130.58C48.7361 131.001 49.0014 131.429 49.5603 131.765L49.8079 131.913C50.6144 132.398 51.8383 132.504 52.9313 132.267C53.4548 132.15 53.9889 132.115 54.5195 132.161C55.2624 132.21 55.9415 132.369 56.5499 132.621L56.5287 124.846Z" fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M79.4467 133.795C79.4467 134.255 79.1461 134.714 78.5377 135.065C77.3208 135.765 75.3753 135.765 74.1727 135.065C72.1493 133.89 69.4645 132.32 69.4362 132.302L56.5322 124.842L56.5534 132.617L69.4575 140.077C69.4858 140.095 72.1741 141.662 74.1939 142.839C75.3966 143.54 77.3421 143.54 78.5589 142.839C79.1673 142.489 79.4715 142.026 79.468 141.57L79.4467 133.795Z" fill="white" stroke="black" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M56.4714 116.437C56.5103 116.416 56.5457 116.395 56.5846 116.374C57.4901 115.861 58.5372 115.433 59.7222 115.104C60.9178 114.778 62.1417 114.587 63.4434 114.51C64.7239 114.449 66.0504 114.545 67.3733 114.803C67.4158 114.814 67.4653 114.824 67.5113 114.831C69.5169 115.256 70.0192 116.766 68.5123 117.637L68.2258 117.796C67.3875 118.266 66.1529 118.351 65.0811 118.089C64.5647 117.965 64.0306 117.923 63.5 117.958C62.4317 118.004 61.4802 118.284 60.6631 118.74C59.846 119.211 59.4109 119.748 59.2659 120.35C59.1208 120.958 59.563 121.559 60.5534 122.125L78.537 132.539C79.7396 133.239 79.7396 134.371 78.5264 135.072C77.3095 135.772 75.364 135.772 74.1613 135.072C72.138 133.897 69.4532 132.327 69.4249 132.309L56.5209 124.849C55.909 124.594 55.2334 124.435 54.4905 124.389C53.9599 124.347 53.4258 124.379 52.9023 124.495C51.8093 124.732 50.5854 124.626 49.7789 124.142L49.5313 123.993C48.371 123.293 48.4842 122.21 49.5666 121.584C49.8673 121.411 50.2458 121.273 50.6879 121.184C50.7375 121.177 50.787 121.17 50.8224 121.163C51.6253 121.025 52.4212 120.951 53.2065 120.926C53.1923 120.703 53.1959 120.48 53.2454 120.261C53.3621 119.54 53.7159 118.839 54.3172 118.149C54.9079 117.491 55.6154 116.933 56.4714 116.437Z" fill="black" stroke="black" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M127.875 121.382C129.915 122.558 129.928 124.468 127.9 125.644C125.873 126.82 122.576 126.82 120.536 125.644C118.496 124.468 118.487 122.558 120.515 121.382C122.543 120.206 125.835 120.206 127.875 121.382Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M35.3696 147.95C40.2775 150.785 40.3093 155.381 35.4278 158.216C30.5516 161.05 22.6133 161.05 17.7053 158.216C12.7974 155.381 12.771 150.785 17.6525 147.95C22.5339 145.116 30.4617 145.116 35.3696 147.95Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/> +<path d="M33.9627 148.648C38.0826 151.028 38.109 154.884 34.0156 157.264C29.9221 159.643 23.2583 159.643 19.1332 157.264C15.0133 154.884 14.9921 151.028 19.0856 148.648C23.179 146.268 29.8375 146.268 33.9627 148.648Z" fill="#EDEDED"/> +<path d="M36.2161 148.409C36.2108 148.457 36.2108 148.505 36.2055 148.557C36.2002 148.6 36.1949 148.642 36.1896 148.684C36.1843 148.732 36.1737 148.78 36.1685 148.827C36.1632 148.869 36.1526 148.912 36.142 148.954C36.1314 149.002 36.1209 149.049 36.105 149.097C36.0944 149.139 36.0785 149.181 36.068 149.224C36.0521 149.271 36.0362 149.319 36.0204 149.361C36.0045 149.404 35.9886 149.446 35.9728 149.488C35.9516 149.536 35.9305 149.583 35.9093 149.636C35.8934 149.679 35.8723 149.716 35.8511 149.758C35.83 149.806 35.8035 149.853 35.7771 149.901C35.7559 149.938 35.7348 149.98 35.7136 150.017C35.6819 150.075 35.6449 150.133 35.6079 150.186C35.5867 150.223 35.5655 150.255 35.5391 150.292C35.4968 150.356 35.4492 150.419 35.4016 150.477C35.3804 150.504 35.3593 150.53 35.3381 150.562C35.2588 150.662 35.1742 150.757 35.0896 150.853C35.0684 150.879 35.042 150.9 35.0208 150.927C34.9521 151.001 34.878 151.075 34.804 151.144C34.7669 151.175 34.7352 151.207 34.6982 151.239C34.6506 151.281 34.603 151.318 34.5554 151.36C34.5131 151.397 34.4708 151.434 34.4232 151.471C34.3756 151.514 34.3227 151.551 34.2698 151.593C34.2222 151.63 34.1746 151.667 34.127 151.699C34.0741 151.736 34.0212 151.778 33.9631 151.815C33.9102 151.852 33.8626 151.884 33.8097 151.921C33.7515 151.958 33.6933 151.995 33.6352 152.032C33.5611 152.08 33.4871 152.122 33.413 152.17C33.2015 152.291 32.9847 152.402 32.7625 152.513C32.7044 152.54 32.6462 152.572 32.5827 152.598C32.3817 152.693 32.1755 152.778 31.9639 152.862C31.9375 152.873 31.911 152.884 31.8793 152.894C31.6519 152.979 31.4192 153.058 31.1865 153.132C31.0225 153.185 30.8533 153.227 30.6894 153.275C30.5624 153.312 30.4355 153.344 30.3086 153.375C30.134 153.418 29.9542 153.455 29.7744 153.492C29.6422 153.518 29.5153 153.55 29.383 153.571C29.3302 153.582 29.272 153.587 29.2191 153.598C28.997 153.635 28.7748 153.666 28.5474 153.693C28.484 153.698 28.4152 153.709 28.3518 153.714C28.2248 153.73 28.0926 153.735 27.9604 153.746C27.7435 153.761 27.5267 153.777 27.3046 153.788C27.1671 153.793 27.0243 153.798 26.8868 153.798C26.7122 153.804 26.5324 153.804 26.3579 153.798C26.2098 153.798 26.0617 153.793 25.9137 153.788C25.7497 153.783 25.5858 153.772 25.4218 153.761C25.2737 153.751 25.1256 153.74 24.9723 153.724C24.8083 153.709 24.6497 153.693 24.491 153.672C24.3482 153.656 24.2001 153.635 24.0573 153.608C23.8828 153.582 23.7136 153.55 23.5443 153.518C23.4121 153.492 23.2746 153.465 23.1424 153.439C22.9414 153.397 22.7404 153.344 22.5395 153.291C22.4125 153.259 22.2803 153.227 22.1534 153.185C22.0846 153.164 22.0159 153.143 21.9524 153.122C21.7514 153.058 21.5558 152.989 21.3654 152.921C21.3072 152.899 21.2543 152.878 21.1961 152.857C21.0216 152.788 20.8524 152.714 20.6831 152.64C20.5985 152.603 20.5139 152.572 20.4346 152.529C20.1913 152.413 19.9533 152.291 19.7259 152.159C17.8167 151.059 16.8647 149.61 16.87 148.166L16.8594 152.328C16.8541 153.772 17.8061 155.216 19.7153 156.321C19.9427 156.453 20.1807 156.575 20.424 156.691C20.5033 156.728 20.5932 156.765 20.6725 156.802C20.8153 156.866 20.9581 156.935 21.1062 156.993C21.1327 157.003 21.1591 157.014 21.1856 157.019C21.2384 157.04 21.2966 157.062 21.3548 157.083C21.5452 157.152 21.7462 157.22 21.9418 157.284C22.0106 157.305 22.0793 157.326 22.1481 157.347C22.1957 157.363 22.238 157.379 22.2856 157.39C22.3649 157.411 22.4496 157.427 22.5342 157.448C22.7351 157.501 22.9308 157.548 23.1371 157.596C23.19 157.606 23.2429 157.622 23.2957 157.633C23.3751 157.649 23.4544 157.659 23.5337 157.675C23.703 157.707 23.8775 157.739 24.0467 157.765C24.1155 157.776 24.1843 157.791 24.253 157.802C24.327 157.813 24.4064 157.818 24.4804 157.828C24.6391 157.85 24.803 157.865 24.967 157.881C25.0463 157.887 25.1203 157.903 25.1997 157.908C25.2737 157.913 25.3425 157.913 25.4165 157.918C25.5805 157.929 25.7444 157.94 25.9084 157.945C25.993 157.95 26.0723 157.955 26.1569 157.955C26.2204 157.955 26.2892 157.955 26.3526 157.955C26.5271 157.955 26.707 157.955 26.8815 157.955C26.9714 157.955 27.056 157.955 27.1459 157.955C27.1988 157.955 27.2517 157.945 27.2993 157.945C27.5161 157.934 27.7383 157.918 27.9551 157.903C28.045 157.897 28.1296 157.892 28.2195 157.887C28.2618 157.881 28.3042 157.876 28.3465 157.871C28.4099 157.865 28.4787 157.855 28.5421 157.85C28.7696 157.823 28.9917 157.791 29.2138 157.754C29.2667 157.744 29.3249 157.739 29.3778 157.728C29.4042 157.723 29.4306 157.723 29.4571 157.717C29.5629 157.696 29.6633 157.67 29.7691 157.649C29.9489 157.612 30.1288 157.575 30.3033 157.532C30.4302 157.501 30.5571 157.464 30.6841 157.432C30.8533 157.384 31.0173 157.342 31.1812 157.289C31.2182 157.278 31.2553 157.268 31.287 157.257C31.488 157.194 31.6836 157.125 31.874 157.051C31.9005 157.04 31.9269 157.03 31.9586 157.019C32.1702 156.935 32.3765 156.85 32.5774 156.755C32.6356 156.728 32.6991 156.702 32.7572 156.67C32.9794 156.564 33.2015 156.448 33.4078 156.326C33.4501 156.305 33.4871 156.279 33.5241 156.258C33.5611 156.237 33.5929 156.215 33.6299 156.189C33.6881 156.152 33.7462 156.115 33.8044 156.078C33.8573 156.041 33.9102 156.009 33.9578 155.972C34.0107 155.935 34.0688 155.898 34.1217 155.856C34.1693 155.819 34.2169 155.782 34.2645 155.745C34.3174 155.708 34.365 155.665 34.4179 155.628C34.4655 155.591 34.5078 155.554 34.5501 155.517C34.5977 155.475 34.6453 155.438 34.6876 155.396C34.7088 155.38 34.7246 155.364 34.7458 155.348C34.7617 155.332 34.7775 155.316 34.7934 155.3C34.8674 155.226 34.9415 155.158 35.0102 155.084C35.0314 155.057 35.0578 155.036 35.079 155.01C35.1689 154.914 35.2535 154.814 35.3276 154.719C35.3328 154.713 35.3328 154.708 35.3381 154.708C35.354 154.687 35.3699 154.661 35.391 154.639C35.4386 154.576 35.4862 154.518 35.5285 154.454C35.5497 154.417 35.5761 154.386 35.5973 154.349C35.6343 154.29 35.6713 154.232 35.703 154.179C35.7136 154.163 35.7242 154.148 35.7295 154.132C35.7401 154.111 35.7507 154.084 35.7665 154.063C35.793 154.015 35.8194 153.968 35.8406 153.92C35.8617 153.878 35.8776 153.841 35.8987 153.798C35.9199 153.751 35.941 153.703 35.9622 153.65C35.9728 153.629 35.9834 153.608 35.9886 153.587C35.9939 153.566 35.9992 153.545 36.0098 153.529C36.0257 153.481 36.0415 153.434 36.0574 153.391C36.068 153.349 36.0838 153.307 36.0944 153.264C36.105 153.217 36.1209 153.169 36.1314 153.122C36.1367 153.095 36.1473 153.069 36.1526 153.047C36.1579 153.032 36.1579 153.01 36.1632 152.995C36.1737 152.947 36.179 152.899 36.1843 152.852C36.1896 152.809 36.1949 152.767 36.2002 152.725C36.2055 152.677 36.2055 152.63 36.2108 152.577C36.2108 152.55 36.2161 152.519 36.2161 152.492C36.2161 152.466 36.2161 152.434 36.2161 152.408L36.2266 148.245C36.2266 148.298 36.2213 148.351 36.2161 148.409Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M33.365 144.248C37.157 146.437 37.1781 149.986 33.4126 152.175C29.647 154.365 23.5174 154.365 19.7254 152.175C15.9334 149.986 15.9175 146.437 19.6831 144.248C23.4486 142.058 29.573 142.058 33.365 144.248Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M31.1017 145.966C31.234 146.046 31.2393 146.173 31.0965 146.252L27.992 148.055C27.8598 148.135 27.8598 148.262 27.9973 148.341L30.959 150.049C31.0912 150.129 31.0965 150.256 30.9537 150.335L30.3137 150.705C30.1762 150.784 29.9488 150.784 29.8166 150.71L26.8549 149.002C26.7174 148.923 26.49 148.923 26.3525 149.002L23.2216 150.821C23.0841 150.901 22.8567 150.901 22.7244 150.827L21.984 150.398C21.8465 150.319 21.8412 150.187 21.984 150.107L25.1149 148.288C25.2524 148.209 25.2524 148.077 25.1202 148.003L22.1797 146.305C22.0422 146.226 22.0369 146.093 22.1797 146.014L22.8196 145.644C22.9571 145.564 23.1846 145.564 23.3221 145.644L26.2626 147.341C26.3948 147.421 26.6222 147.421 26.7544 147.341L29.8589 145.538C29.9964 145.459 30.2238 145.459 30.3613 145.538L31.1017 145.966Z" fill="#DA3635"/> +<path d="M24.7319 142.599L24.7003 132.277L19.1328 129.039L19.1644 139.361C19.1644 140.372 19.5277 141.114 20.1121 141.453L25.6796 144.691C25.0873 144.352 24.7319 143.609 24.7319 142.599Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M20.8466 136.368L15.2791 133.13C14.8448 132.877 14.5763 132.317 14.5684 131.566L20.1359 134.804C20.1438 135.562 20.4123 136.115 20.8466 136.368Z" fill="white"/> +<path d="M20.8466 136.368L15.2791 133.13C14.8448 132.877 14.5763 132.317 14.5684 131.566L20.1359 134.804C20.1438 135.562 20.4123 136.115 20.8466 136.368Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M20.8466 136.368L15.2791 133.13C14.8448 132.877 14.5763 132.317 14.5684 131.566L20.1359 134.804C20.1438 135.562 20.4123 136.115 20.8466 136.368Z" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M20.1438 134.804L14.5763 131.574L14.5684 129.994L20.1359 133.232L20.1438 134.804Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M20.1359 133.231L14.5684 129.994V129.678L20.1359 132.916V133.231Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M16.2582 137.007L10.6906 133.769C10.3274 133.556 10.0904 133.145 10.0352 132.553L15.6027 135.791C15.658 136.383 15.9028 136.794 16.2582 137.007Z" fill="white"/> +<path d="M16.2582 137.007L10.6906 133.769C10.3274 133.556 10.0904 133.145 10.0352 132.553L15.6027 135.791C15.658 136.383 15.9028 136.794 16.2582 137.007Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M16.2582 137.007L10.6906 133.769C10.3274 133.556 10.0904 133.145 10.0352 132.553L15.6027 135.791C15.658 136.383 15.9028 136.794 16.2582 137.007Z" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M30.5529 106.089L24.9854 102.852L31.3663 106.492L36.9259 109.73L30.5529 106.089Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M30.505 106.058L24.9375 102.82C24.9533 102.828 24.9691 102.836 24.9849 102.844L30.5524 106.082C30.5366 106.082 30.5208 106.066 30.505 106.058Z" fill="white"/> +<path d="M30.505 106.058L24.9375 102.82C24.9533 102.828 24.9691 102.836 24.9849 102.844L30.5524 106.082C30.5366 106.082 30.5208 106.066 30.505 106.058Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M30.505 106.058L24.9375 102.82C24.9533 102.828 24.9691 102.836 24.9849 102.844L30.5524 106.082C30.5366 106.082 30.5208 106.066 30.505 106.058Z" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M11.6148 136.265L11.6069 133.066V131.763L11.5753 121.015L6.00781 117.777L6.0394 128.525V129.828L6.0473 133.027C6.0473 133.777 6.31581 134.338 6.75015 134.59L12.3177 137.828C11.8833 137.576 11.6148 137.023 11.6148 136.265Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M21.9128 104.929C24.7084 103.318 27.196 103.389 28.8149 104.795C29.3598 105.276 29.9205 105.735 30.5523 106.09L36.9333 109.73C38.1968 110.449 38.1257 112.889 36.7279 115.037C36.183 115.867 35.5197 116.498 34.8484 116.885C34.0113 117.367 33.1742 117.47 32.5424 117.114L30.7576 116.088L30.7813 123.432L30.7892 125.951L30.8287 139.234C30.8366 141.169 29.4704 143.523 27.7883 144.494C27.6935 144.549 27.5909 144.605 27.4882 144.652C25.9009 145.394 24.7321 144.431 24.7321 142.607L24.7005 132.285C24.7084 133.738 23.6896 135.491 22.434 136.218C22.3629 136.257 22.2839 136.297 22.205 136.336C21.0204 136.889 20.1438 136.17 20.1438 134.804L20.1359 133.225V132.909C20.1438 134.354 19.1251 136.115 17.8615 136.842C16.6848 137.521 15.7214 137.039 15.6029 135.783C15.1844 136.573 14.5763 137.276 13.8892 137.671C13.7865 137.726 13.6839 137.781 13.5812 137.821C12.4361 138.303 11.6148 137.584 11.6069 136.257L11.599 133.059V131.756L11.5674 121.008C11.5516 115.424 15.4687 108.633 20.3333 105.829L21.9128 104.929Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M22.9316 104.415C23.0816 104.352 23.2317 104.297 23.3738 104.233C23.5713 104.154 23.7766 104.091 23.974 104.028C24.1083 103.989 24.2346 103.949 24.3689 103.918C24.4873 103.886 24.6058 103.862 24.7322 103.839C24.8901 103.807 25.0481 103.783 25.1981 103.767C25.285 103.76 25.3718 103.744 25.4587 103.744C25.6482 103.728 25.8378 103.728 26.0273 103.736C26.0668 103.736 26.1063 103.736 26.1537 103.736C26.3748 103.752 26.588 103.775 26.8012 103.815C26.8565 103.823 26.9039 103.839 26.9592 103.854C27.125 103.894 27.283 103.941 27.4409 103.996C27.4883 104.012 27.5436 104.028 27.591 104.052C27.7884 104.131 27.9858 104.218 28.1674 104.328L22.5999 101.09C22.5841 101.082 22.5683 101.075 22.5525 101.067C22.4104 100.988 22.2603 100.917 22.1103 100.853C22.0866 100.846 22.055 100.838 22.0234 100.822C21.976 100.806 21.9208 100.79 21.8734 100.767C21.7944 100.743 21.7233 100.711 21.6444 100.688C21.5654 100.664 21.4785 100.648 21.3995 100.632C21.3443 100.616 21.2969 100.609 21.2416 100.593C21.21 100.585 21.1863 100.577 21.1547 100.569C20.981 100.538 20.8072 100.522 20.6256 100.506C20.6177 100.506 20.6019 100.506 20.594 100.506C20.5545 100.506 20.5151 100.506 20.4677 100.506C20.3255 100.498 20.1834 100.498 20.0412 100.506C19.9938 100.506 19.9465 100.514 19.8991 100.522C19.8122 100.53 19.7253 100.538 19.6385 100.545C19.5516 100.553 19.4726 100.553 19.3936 100.569C19.3226 100.577 19.2515 100.601 19.1804 100.616C19.062 100.64 18.9435 100.664 18.8172 100.695C18.754 100.711 18.6908 100.719 18.6197 100.735C18.5565 100.751 18.4855 100.782 18.4223 100.806C18.2249 100.861 18.0274 100.932 17.8221 101.011C17.751 101.043 17.68 101.059 17.601 101.082C17.5299 101.114 17.4509 101.153 17.372 101.185C17.3009 101.217 17.2298 101.248 17.1587 101.28C16.8902 101.406 16.6217 101.54 16.3532 101.698L14.7738 102.607C14.4895 102.772 14.2131 102.954 13.9367 103.144C13.8498 103.207 13.7629 103.27 13.6761 103.333C13.4865 103.467 13.3049 103.602 13.1233 103.752C13.0206 103.831 12.9258 103.918 12.8232 103.996C12.6573 104.139 12.4915 104.281 12.3257 104.431C12.223 104.518 12.1282 104.612 12.0256 104.707C11.9624 104.763 11.8992 104.818 11.836 104.881C11.7729 104.944 11.7097 105.015 11.6465 105.078C11.4491 105.284 11.2516 105.489 11.0621 105.702C10.9989 105.773 10.9358 105.829 10.8726 105.9C10.8252 105.955 10.7778 106.018 10.7225 106.081C10.6041 106.216 10.4935 106.358 10.3829 106.5C10.3119 106.595 10.2329 106.682 10.1618 106.776C10.0986 106.855 10.0434 106.934 9.98808 107.013C9.90911 107.124 9.82224 107.234 9.74327 107.345C9.68799 107.424 9.63271 107.495 9.57743 107.574C9.48267 107.708 9.39579 107.842 9.30892 107.977C9.25364 108.064 9.19046 108.143 9.13518 108.229C9.11149 108.261 9.0878 108.3 9.06411 108.332C8.90616 108.577 8.75612 108.822 8.61397 109.074C8.60608 109.09 8.59817 109.106 8.58238 109.13C8.55079 109.177 8.5271 109.232 8.49551 109.28C8.39284 109.453 8.29019 109.635 8.19542 109.817C8.14804 109.904 8.10855 109.99 8.06906 110.069C8.02168 110.156 7.9822 110.243 7.93481 110.33C7.89533 110.409 7.85583 110.48 7.81635 110.559C7.71368 110.764 7.61892 110.978 7.53205 111.183C7.51625 111.222 7.50046 111.254 7.48467 111.286C7.47677 111.293 7.47677 111.301 7.46887 111.317C7.35831 111.578 7.24776 111.838 7.14509 112.107C7.1293 112.154 7.1135 112.202 7.08981 112.257C7.05032 112.352 7.01874 112.454 6.98715 112.549C6.93977 112.676 6.89238 112.81 6.84499 112.936C6.81341 113.039 6.78182 113.141 6.75023 113.244C6.71075 113.363 6.67126 113.489 6.63967 113.607C6.61598 113.678 6.59228 113.757 6.56859 113.828C6.5291 113.963 6.50542 114.097 6.46593 114.231C6.42645 114.381 6.38696 114.531 6.35537 114.681C6.34747 114.737 6.33168 114.784 6.31588 114.839C6.29219 114.95 6.28429 115.053 6.2606 115.163C6.21321 115.4 6.17373 115.637 6.14214 115.866C6.13425 115.929 6.11846 115.992 6.11056 116.056C6.09477 116.206 6.07897 116.348 6.07107 116.49C6.06317 116.593 6.04737 116.695 6.03948 116.806C6.01578 117.13 6 117.461 6 117.777L11.5675 121.015C11.5675 120.691 11.5833 120.367 11.607 120.044C11.6149 119.941 11.6307 119.838 11.6386 119.728C11.6623 119.514 11.686 119.309 11.7176 119.096C11.7492 118.859 11.7965 118.63 11.836 118.393C11.8676 118.235 11.8913 118.077 11.9308 117.911C11.9624 117.761 12.0019 117.611 12.0414 117.461C12.0966 117.256 12.144 117.043 12.2072 116.837C12.2388 116.719 12.2783 116.593 12.3178 116.474C12.3888 116.237 12.4678 116.008 12.5547 115.771C12.5863 115.676 12.6257 115.574 12.6573 115.479C12.7758 115.155 12.9101 114.831 13.0443 114.516C13.0601 114.476 13.0759 114.444 13.0917 114.413C13.218 114.129 13.3523 113.836 13.4944 113.56C13.5418 113.473 13.5813 113.386 13.6287 113.299C13.7629 113.031 13.9051 112.77 14.0551 112.51C14.0867 112.462 14.1104 112.407 14.142 112.36C14.3158 112.052 14.5053 111.752 14.6948 111.459C14.7501 111.372 14.8054 111.293 14.8607 111.207C15.0028 110.993 15.145 110.788 15.295 110.575C15.374 110.464 15.4529 110.354 15.5398 110.243C15.6662 110.069 15.8004 109.904 15.9347 109.738C16.0452 109.596 16.1637 109.461 16.2743 109.319C16.3848 109.193 16.4954 109.066 16.6138 108.94C16.8034 108.727 17.0008 108.522 17.1982 108.316C17.3246 108.19 17.443 108.064 17.5694 107.945C17.6642 107.85 17.7668 107.763 17.8695 107.669C18.0353 107.519 18.2012 107.376 18.367 107.234C18.4697 107.147 18.5644 107.068 18.6671 106.99C18.8487 106.847 19.0383 106.705 19.2199 106.571C19.3068 106.508 19.3937 106.437 19.4805 106.381C19.7569 106.192 20.0333 106.01 20.3176 105.844L21.8971 104.936C22.1656 104.778 22.4341 104.644 22.7026 104.518C22.7894 104.478 22.8605 104.447 22.9316 104.415Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M101.024 161.672C100.67 161.905 100.374 162.225 100.083 162.54C99.4716 163.176 98.7972 163.875 98.3556 164.646C97.7685 165.709 97.6715 167.499 97.754 168.697C97.8025 169.445 98.2537 170.095 98.7195 170.667C99.6026 171.754 100.995 171.463 102.048 170.619C103.004 169.862 103.984 168.882 104.445 167.79C104.896 166.737 105.459 165.626 105.561 164.452C105.673 163.239 105.231 161.599 104.033 161.036C103.285 160.692 101.927 160.73 101.364 161.366" fill="white"/> +<path d="M101.024 161.672C100.67 161.905 100.374 162.225 100.083 162.54C99.4716 163.176 98.7972 163.875 98.3556 164.646C97.7685 165.709 97.6715 167.499 97.754 168.697C97.8025 169.445 98.2537 170.095 98.7195 170.667C99.6026 171.754 100.995 171.463 102.048 170.619C103.004 169.862 103.984 168.882 104.445 167.79C104.896 166.737 105.459 165.626 105.561 164.452C105.673 163.239 105.231 161.599 104.033 161.036C103.285 160.692 101.927 160.73 101.364 161.366" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M101.024 161.672C100.67 161.905 100.374 162.225 100.083 162.54C99.4716 163.176 98.7972 163.875 98.3556 164.646C97.7685 165.709 97.6715 167.499 97.754 168.697C97.8025 169.445 98.2537 170.095 98.7195 170.667C99.6026 171.754 100.995 171.463 102.048 170.619C103.004 169.862 103.984 168.882 104.445 167.79C104.896 166.737 105.459 165.626 105.561 164.452C105.673 163.239 105.231 161.599 104.033 161.036C103.285 160.692 101.927 160.73 101.364 161.366" fill="white"/> +<path d="M101.024 161.672C100.67 161.905 100.374 162.225 100.083 162.54C99.4716 163.176 98.7972 163.875 98.3556 164.646C97.7685 165.709 97.6715 167.499 97.754 168.697C97.8025 169.445 98.2537 170.095 98.7195 170.667C99.6026 171.754 100.995 171.463 102.048 170.619C103.004 169.862 103.984 168.882 104.445 167.79C104.896 166.737 105.459 165.626 105.561 164.452C105.673 163.239 105.231 161.599 104.033 161.036C103.285 160.692 101.927 160.73 101.364 161.366" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M89.0637 168.771C88.3165 168.932 87.5208 169.334 86.9725 169.849C86.3369 170.436 85.9196 171.168 85.4441 171.843C84.9541 172.517 84.5126 173.201 84.3039 174.021C83.9837 175.293 83.7411 176.675 84.5222 177.85C85.2792 179.014 86.5165 179.465 87.8411 178.951C89.0541 178.476 90.1555 177.447 90.7426 176.297C91.1938 175.404 91.6499 174.73 91.9313 173.556C92.4553 171.367 92.63 169.446 90.0439 168.796" fill="white"/> +<path d="M89.0637 168.771C88.3165 168.932 87.5208 169.334 86.9725 169.849C86.3369 170.436 85.9196 171.168 85.4441 171.843C84.9541 172.517 84.5126 173.201 84.3039 174.021C83.9837 175.293 83.7411 176.675 84.5222 177.85C85.2792 179.014 86.5165 179.465 87.8411 178.951C89.0541 178.476 90.1555 177.447 90.7426 176.297C91.1938 175.404 91.6499 174.73 91.9313 173.556C92.4553 171.367 92.63 169.446 90.0439 168.796" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M89.0637 168.771C88.3165 168.932 87.5208 169.334 86.9725 169.849C86.3369 170.436 85.9196 171.168 85.4441 171.843C84.9541 172.517 84.5126 173.201 84.3039 174.021C83.9837 175.293 83.7411 176.675 84.5222 177.85C85.2792 179.014 86.5165 179.465 87.8411 178.951C89.0541 178.476 90.1555 177.447 90.7426 176.297C91.1938 175.404 91.6499 174.73 91.9313 173.556C92.4553 171.367 92.63 169.446 90.0439 168.796" fill="white"/> +<path d="M89.0637 168.771C88.3165 168.932 87.5208 169.334 86.9725 169.849C86.3369 170.436 85.9196 171.168 85.4441 171.843C84.9541 172.517 84.5126 173.201 84.3039 174.021C83.9837 175.293 83.7411 176.675 84.5222 177.85C85.2792 179.014 86.5165 179.465 87.8411 178.951C89.0541 178.476 90.1555 177.447 90.7426 176.297C91.1938 175.404 91.6499 174.73 91.9313 173.556C92.4553 171.367 92.63 169.446 90.0439 168.796" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M94.4887 172.871C94.2219 174.011 96.8517 173.497 97.0458 172.711C97.1186 172.405 96.9972 172.27 96.7158 172.27C96.2888 172.27 96.4732 172.599 96.216 172.832C95.6629 173.264 94.9157 172.629 94.4887 172.871Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M97.3271 162.468C97.9385 162.565 98.1956 163.298 98.5013 163.764C98.807 164.215 99.1515 164.647 99.5154 165.05C99.8453 165.404 100.2 165.782 100.631 166.03C100.976 166.214 101.354 166.238 101.733 166.238C101.951 166.238 101.951 165.894 101.733 165.894C101.218 165.894 100.85 165.821 100.447 165.477C100.005 165.122 99.627 164.681 99.2728 164.23C98.8943 163.754 98.5983 163.264 98.2829 162.75C98.0743 162.42 97.8075 162.187 97.4145 162.124C97.1913 162.104 97.1088 162.444 97.3271 162.468Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M90.1163 166.223C89.8737 167.533 89.4419 168.828 89.0634 170.114C88.879 170.726 88.6219 171.337 88.4521 171.963C88.2822 172.613 88.2338 173.273 88.0106 173.894C88.0591 173.855 88.1221 173.807 88.1707 173.758H88.1222C88.1707 173.855 88.1949 173.952 88.2435 174.054C88.258 174.04 88.292 174.015 88.3065 173.991C88.4667 173.831 88.2192 173.588 88.0639 173.748C88.0494 173.763 88.0251 173.797 88.0009 173.811C87.8893 173.923 87.9863 174.093 88.1222 174.107H88.1707C88.2434 174.122 88.3065 174.044 88.3308 173.972C88.5491 173.36 88.6025 172.725 88.7481 172.099C88.9179 171.449 89.1896 170.827 89.374 170.177C89.7524 168.906 90.194 167.606 90.4269 166.286C90.4948 166.102 90.1552 166.005 90.1163 166.223Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M88.2435 164.943C88.0736 165.724 89.3934 166.034 90.0776 165.971C90.9218 165.898 90.9461 165.321 90.3493 164.797C89.9562 164.453 88.9033 164.234 88.4763 164.428" fill="white"/> +<path d="M88.2435 164.943C88.0736 165.724 89.3934 166.034 90.0776 165.971C90.9218 165.898 90.9461 165.321 90.3493 164.797C89.9562 164.453 88.9033 164.234 88.4763 164.428" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M88.2435 164.943C88.0736 165.724 89.3934 166.034 90.0776 165.971C90.9218 165.898 90.9461 165.321 90.3493 164.797C89.9562 164.453 88.9033 164.234 88.4763 164.428" fill="white"/> +<path d="M88.2435 164.943C88.0736 165.724 89.3934 166.034 90.0776 165.971C90.9218 165.898 90.9461 165.321 90.3493 164.797C89.9562 164.453 88.9033 164.234 88.4763 164.428" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M90.0291 166.044C90.5046 166.655 90.8976 167.363 91.509 167.853C92.2659 168.441 93.1005 168.931 93.8719 169.493C94.0563 169.629 94.2261 169.333 94.0417 169.188C93.3188 168.664 92.5619 168.198 91.8486 167.669C91.1984 167.194 90.7958 166.495 90.3203 165.859C90.2038 165.685 89.8981 165.859 90.0291 166.044Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M97.1426 160.818C97.1571 161.318 97.1911 161.808 97.1911 162.298C97.1911 162.516 97.5356 162.516 97.5356 162.298C97.5211 161.798 97.4968 161.308 97.4871 160.818C97.4871 160.61 97.1426 160.595 97.1426 160.818Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M97.1183 162.589C97.2056 162.943 96.8854 163.4 96.7738 163.729C96.5797 164.307 96.4536 164.904 96.3323 165.505C96.1236 166.607 95.8567 167.694 95.488 168.737C95.4152 168.945 95.7451 169.042 95.8179 168.834C96.2352 167.684 96.4924 166.495 96.7252 165.297C96.8368 164.719 96.9678 164.132 97.191 163.594C97.3269 163.249 97.5452 162.885 97.4482 162.492C97.4142 162.274 97.0698 162.371 97.1183 162.589Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M97.0696 162.249C96.827 162.827 96.1041 163.157 95.5898 163.438C94.8911 163.831 94.2166 164.258 93.5082 164.651C93.3238 164.763 93.4936 165.054 93.678 164.957C94.4592 164.515 95.2453 164.05 96.0168 163.598C96.5408 163.293 97.1424 162.948 97.3753 162.351C97.4966 162.128 97.157 162.041 97.0696 162.249Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M95.7594 158.946C96.1621 159.557 97.0694 159.596 97.608 160.047C97.7778 160.183 98.0253 159.95 97.8506 159.805C97.5934 159.586 97.2878 159.475 96.9918 159.329C96.6959 159.193 96.2592 159.048 96.0602 158.766C95.9438 158.592 95.6381 158.762 95.7594 158.946Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M99.4424 160.925C99.4812 161.367 99.3696 161.808 99.3696 162.235C99.355 162.454 99.6996 162.454 99.7141 162.235C99.7287 161.794 99.8112 161.367 99.7869 160.925C99.7724 160.707 99.4327 160.697 99.4424 160.925Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M95.4778 168.707C95.5021 168.304 95.8709 167.751 96.2105 168.29C96.3706 168.533 96.0892 169.6 95.9388 169.833C95.5215 170.507 95.3759 169.993 95.3517 169.43C95.3323 168.833 95.3565 169.445 95.4778 168.707Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M94.0227 168.319C93.9353 169.493 94.2313 170.9 94.3769 172.065C94.4496 172.652 94.3914 173.288 95.0367 173.229C95.4637 173.181 96.5409 172.924 96.5069 172.409C95.9295 172.395 95.6481 172.424 95.551 171.847C95.4782 171.405 95.5268 170.915 95.5025 170.478C95.4394 169.377 95.3909 168.115 94.6437 167.223" fill="white"/> +<path d="M94.0227 168.319C93.9353 169.493 94.2313 170.9 94.3769 172.065C94.4496 172.652 94.3914 173.288 95.0367 173.229C95.4637 173.181 96.5409 172.924 96.5069 172.409C95.9295 172.395 95.6481 172.424 95.551 171.847C95.4782 171.405 95.5268 170.915 95.5025 170.478C95.4394 169.377 95.3909 168.115 94.6437 167.223" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M94.0227 168.319C93.9353 169.493 94.2313 170.9 94.3769 172.065C94.4496 172.652 94.3914 173.288 95.0367 173.229C95.4637 173.181 96.5409 172.924 96.5069 172.409C95.9295 172.395 95.6481 172.424 95.551 171.847C95.4782 171.405 95.5268 170.915 95.5025 170.478C95.4394 169.377 95.3909 168.115 94.6437 167.223" fill="white"/> +<path d="M94.0227 168.319C93.9353 169.493 94.2313 170.9 94.3769 172.065C94.4496 172.652 94.3914 173.288 95.0367 173.229C95.4637 173.181 96.5409 172.924 96.5069 172.409C95.9295 172.395 95.6481 172.424 95.551 171.847C95.4782 171.405 95.5268 170.915 95.5025 170.478C95.4394 169.377 95.3909 168.115 94.6437 167.223" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M93.2505 161.624C92.2122 162.468 93.1875 164.035 93.6436 164.938C93.9493 165.563 94.318 166.16 94.5363 166.81C94.7304 167.388 95.0992 167.999 94.3665 168.203C93.2263 168.533 91.3777 168.276 91.2709 166.893C91.2078 166.087 91.2224 165.646 90.5383 165.132C89.9512 164.68 88.9225 164.578 88.4325 164.04C87.7483 163.283 88.3597 162.366 88.9953 161.9C89.4126 161.594 89.4465 161.347 89.7279 160.944C90.0482 160.493 90.3539 160.726 90.8196 160.993" fill="white"/> +<path d="M93.2505 161.624C92.2122 162.468 93.1875 164.035 93.6436 164.938C93.9493 165.563 94.318 166.16 94.5363 166.81C94.7304 167.388 95.0992 167.999 94.3665 168.203C93.2263 168.533 91.3777 168.276 91.2709 166.893C91.2078 166.087 91.2224 165.646 90.5383 165.132C89.9512 164.68 88.9225 164.578 88.4325 164.04C87.7483 163.283 88.3597 162.366 88.9953 161.9C89.4126 161.594 89.4465 161.347 89.7279 160.944C90.0482 160.493 90.3539 160.726 90.8196 160.993" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M93.2505 161.624C92.2122 162.468 93.1875 164.035 93.6436 164.938C93.9493 165.563 94.318 166.16 94.5363 166.81C94.7304 167.388 95.0992 167.999 94.3665 168.203C93.2263 168.533 91.3777 168.276 91.2709 166.893C91.2078 166.087 91.2224 165.646 90.5383 165.132C89.9512 164.68 88.9225 164.578 88.4325 164.04C87.7483 163.283 88.3597 162.366 88.9953 161.9C89.4126 161.594 89.4465 161.347 89.7279 160.944C90.0482 160.493 90.3539 160.726 90.8196 160.993" fill="white"/> +<path d="M93.2505 161.624C92.2122 162.468 93.1875 164.035 93.6436 164.938C93.9493 165.563 94.318 166.16 94.5363 166.81C94.7304 167.388 95.0992 167.999 94.3665 168.203C93.2263 168.533 91.3777 168.276 91.2709 166.893C91.2078 166.087 91.2224 165.646 90.5383 165.132C89.9512 164.68 88.9225 164.578 88.4325 164.04C87.7483 163.283 88.3597 162.366 88.9953 161.9C89.4126 161.594 89.4465 161.347 89.7279 160.944C90.0482 160.493 90.3539 160.726 90.8196 160.993" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M96.4191 159.839C96.9189 160.12 97.7049 159.999 98.2435 159.912C98.8306 159.824 99.8446 160.106 99.6894 160.95C99.2381 161.037 98.9907 160.644 98.5637 160.644C98.2192 160.644 97.768 160.804 97.3992 160.853C97.1032 160.892 96.3851 161.11 96.1134 160.95C95.7447 160.756 96.2347 159.776 96.4191 159.839Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M92.945 156.399C94.1095 155.982 94.5996 157.365 95.0848 158.102C95.439 158.602 95.9194 159.019 96.259 159.534C96.7248 160.218 96.2444 160.441 95.8563 161.052C95.2206 160.611 94.716 159.485 94.4589 158.762C93.9834 159.286 93.9058 160.451 93.5661 161.135C93.2604 161.736 93.0033 161.61 92.3774 161.465C91.8534 161.353 91.1401 161.047 90.5918 161.013C88.8402 160.878 89.8106 158.675 90.5918 157.918C91.1061 157.418 91.6544 157.035 92.2706 156.671C92.6393 156.472 92.5035 156.574 92.945 156.399Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M91.3536 155.336C90.6792 153.832 92.9063 152.07 94.3279 152.594C95.3663 152.987 94.915 153.953 94.8276 154.734C94.7306 155.53 94.6335 156.326 93.6049 156.471C93.1876 156.534 92.8335 156.398 92.4405 156.617C92.0232 156.859 91.8776 157.364 91.766 157.805C91.6059 158.456 91.5234 158.931 90.9606 159.334C90.4705 159.688 90.2376 159.897 90.092 160.508C89.8106 161.585 89.0149 162.696 87.6564 162.357C86.6277 162.09 86.2735 160.557 86.2008 159.64C86.1522 159.062 86.3366 158.169 86.9237 157.839C87.5108 157.509 88.258 157.961 88.8208 157.485C89.4079 156.985 89.5535 155.967 90.3735 155.709C90.7665 155.574 92.028 155.879 91.5865 155.001C91.5137 155.04 91.4894 155.088 91.4264 155.137" fill="white"/> +<path d="M91.3536 155.336C90.6792 153.832 92.9063 152.07 94.3279 152.594C95.3663 152.987 94.915 153.953 94.8276 154.734C94.7306 155.53 94.6335 156.326 93.6049 156.471C93.1876 156.534 92.8335 156.398 92.4405 156.617C92.0232 156.859 91.8776 157.364 91.766 157.805C91.6059 158.456 91.5234 158.931 90.9606 159.334C90.4705 159.688 90.2376 159.897 90.092 160.508C89.8106 161.585 89.0149 162.696 87.6564 162.357C86.6277 162.09 86.2735 160.557 86.2008 159.64C86.1522 159.062 86.3366 158.169 86.9237 157.839C87.5108 157.509 88.258 157.961 88.8208 157.485C89.4079 156.985 89.5535 155.967 90.3735 155.709C90.7665 155.574 92.028 155.879 91.5865 155.001C91.5137 155.04 91.4894 155.088 91.4264 155.137" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M91.3536 155.336C90.6792 153.832 92.9063 152.07 94.3279 152.594C95.3663 152.987 94.915 153.953 94.8276 154.734C94.7306 155.53 94.6335 156.326 93.6049 156.471C93.1876 156.534 92.8335 156.398 92.4405 156.617C92.0232 156.859 91.8776 157.364 91.766 157.805C91.6059 158.456 91.5234 158.931 90.9606 159.334C90.4705 159.688 90.2376 159.897 90.092 160.508C89.8106 161.585 89.0149 162.696 87.6564 162.357C86.6277 162.09 86.2735 160.557 86.2008 159.64C86.1522 159.062 86.3366 158.169 86.9237 157.839C87.5108 157.509 88.258 157.961 88.8208 157.485C89.4079 156.985 89.5535 155.967 90.3735 155.709C90.7665 155.574 92.028 155.879 91.5865 155.001C91.5137 155.04 91.4894 155.088 91.4264 155.137" fill="#DA3635"/> +<path d="M91.3536 155.336C90.6792 153.832 92.9063 152.07 94.3279 152.594C95.3663 152.987 94.915 153.953 94.8276 154.734C94.7306 155.53 94.6335 156.326 93.6049 156.471C93.1876 156.534 92.8335 156.398 92.4405 156.617C92.0232 156.859 91.8776 157.364 91.766 157.805C91.6059 158.456 91.5234 158.931 90.9606 159.334C90.4705 159.688 90.2376 159.897 90.092 160.508C89.8106 161.585 89.0149 162.696 87.6564 162.357C86.6277 162.09 86.2735 160.557 86.2008 159.64C86.1522 159.062 86.3366 158.169 86.9237 157.839C87.5108 157.509 88.258 157.961 88.8208 157.485C89.4079 156.985 89.5535 155.967 90.3735 155.709C90.7665 155.574 92.028 155.879 91.5865 155.001C91.5137 155.04 91.4894 155.088 91.4264 155.137" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M87.3501 45.3174C88.2118 45.8154 88.2182 46.6252 87.3597 47.1233L59.807 63.1257C58.9485 63.6238 57.5499 63.6238 56.6881 63.1257L27.6499 46.3713C26.7882 45.8733 26.7818 45.0635 27.6403 44.5654L55.193 28.563C56.0483 28.0649 57.4501 28.0649 58.3119 28.563L87.3501 45.3174Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M46.8904 38.6019C46.8615 38.618 46.8358 38.634 46.8068 38.6501C45.9355 39.2028 45.9355 40.0575 46.8068 40.607C47.4081 40.9862 48.2698 41.134 49.0769 41.0505C49.1926 41.0376 49.2794 41.1083 49.2248 41.1694C48.2698 42.204 48.4628 43.499 49.8068 44.4213C49.884 44.4727 50.0222 44.4759 50.1058 44.4277L56.9449 40.4817C57.0285 40.4335 57.0254 40.3532 56.9353 40.3082C55.3437 39.5273 53.109 39.4117 51.318 39.9611C51.2119 39.9933 51.0929 39.9419 51.1122 39.8744C51.2505 39.4245 51.0222 38.9457 50.4242 38.6019C49.4563 38.0363 47.8711 38.0363 46.8904 38.6019Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M65.8646 39.2253C66.0543 39.3345 66.0543 39.5113 65.8678 39.6205L49.823 48.9392C49.6365 49.0485 49.3279 49.0485 49.1381 48.9392C48.9484 48.8299 48.9517 48.6532 49.1381 48.544L65.1829 39.2253C65.3694 39.1192 65.6749 39.116 65.8646 39.2253Z" fill="#706F6F"/> +<path d="M56.5013 47.371C56.691 47.4803 56.691 47.657 56.5045 47.7662L52.347 50.1827C52.1606 50.2919 51.8551 50.2919 51.6654 50.1827C51.4757 50.0734 51.4725 49.8967 51.6622 49.7874L55.8196 47.371C56.0061 47.2617 56.3148 47.2617 56.5013 47.371Z" fill="#706F6F"/> +<path d="M67.9771 40.7492C68.1668 40.8584 68.1636 41.0351 67.9771 41.1444L59.7296 45.9355C59.5431 46.0447 59.2377 46.0447 59.048 45.9355C58.8583 45.8262 58.8582 45.6495 59.0447 45.5403L67.2922 40.7492C67.4787 40.6399 67.7842 40.6367 67.9771 40.7492Z" fill="#706F6F"/> +<path d="M62.5431 51.7804C62.7779 51.9154 62.7811 52.1371 62.5464 52.2753L59.1284 54.2611C58.8937 54.3961 58.511 54.3961 58.2763 54.2611L54.8359 52.2753C54.6011 52.1403 54.5979 51.9186 54.8326 51.7804L58.2506 49.7946C58.4853 49.6596 58.868 49.6596 59.1027 49.7946L62.5431 51.7804Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M67.9807 48.3781C68.2154 48.513 68.2186 48.7348 67.9839 48.8729L64.5659 50.8588C64.3312 50.9937 63.9486 50.9937 63.7138 50.8588L60.2733 48.8729C60.0386 48.738 60.0354 48.5163 60.2702 48.3781L63.6881 46.3922C63.9228 46.2573 64.3054 46.2573 64.5402 46.3922L67.9807 48.3781Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M73.7196 44.8262C74.0572 45.0222 74.0604 45.3403 73.7228 45.5331L70.3048 47.519C69.9704 47.715 69.4206 47.715 69.083 47.519L65.6425 45.5331C65.3049 45.3371 65.3017 45.0222 65.6393 44.8262L69.0573 42.8404C69.3917 42.6444 69.9415 42.6444 70.2791 42.8404L73.7196 44.8262Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M60.0852 26.9489C60.4635 27.168 60.4678 27.5203 60.0895 27.7394L57.8798 29.024C57.5015 29.2431 56.891 29.2431 56.5127 29.024L54.2859 27.7394C53.9076 27.5203 53.9033 27.168 54.2816 26.9489L56.4913 25.6643C56.8696 25.4452 57.48 25.4452 57.8583 25.6643L60.0852 26.9489Z" fill="#DA3635"/> +<path d="M58.5459 27.1288C58.5759 27.146 58.5931 27.1675 58.5974 27.1932C58.5931 27.2448 58.5201 27.2878 58.4341 27.2878H57.4152L57.3508 27.3221L57.355 27.9107C57.3507 27.9623 57.2777 28.0052 57.1917 28.0052C57.1444 28.0052 57.1057 27.9966 57.0756 27.9794C57.0455 27.9623 57.0284 27.9365 57.0284 27.9107L57.0241 27.3221L56.9596 27.2835H55.9407C55.8934 27.2835 55.8547 27.2749 55.8246 27.2577C55.7945 27.2405 55.7773 27.2147 55.7773 27.1889C55.7773 27.1374 55.8504 27.0944 55.9407 27.0944H56.9596L57.0241 27.0601V26.4715C57.0241 26.4199 57.0971 26.377 57.1874 26.377C57.2347 26.377 57.2734 26.3898 57.3034 26.407C57.3335 26.4242 57.3507 26.4457 57.355 26.4715V27.0601L57.4195 27.0987H58.4384C58.4771 27.0987 58.5158 27.1116 58.5459 27.1288Z" fill="white"/> +<path d="M45.7227 54.2692C47.499 55.2931 47.5063 56.9537 45.7444 57.9811C43.9825 59.005 41.1136 59.005 39.3372 57.9811C37.5609 56.9573 37.5537 55.2967 39.3192 54.2692C41.0847 53.2418 43.95 53.2454 45.7227 54.2692Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M78.7227 35.2692C80.499 36.2931 80.5063 37.9537 78.7444 38.9811C76.9825 40.005 74.1136 40.005 72.3372 38.9811C70.5609 37.9573 70.5537 36.2967 72.3192 35.2692C74.0847 34.2418 76.95 34.2454 78.7227 35.2692Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M176.966 50.8709C176.508 49.4527 173.345 48.824 173.453 50.8563C173.516 51.8651 173.804 52.2452 174.842 52.3524C175.68 52.4158 177.103 51.6506 176.966 50.6857" fill="white"/> +<path d="M176.966 50.8709C176.508 49.4527 173.345 48.824 173.453 50.8563C173.516 51.8651 173.804 52.2452 174.842 52.3524C175.68 52.4158 177.103 51.6506 176.966 50.6857" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M176.966 50.8709C176.508 49.4527 173.345 48.824 173.453 50.8563C173.516 51.8651 173.804 52.2452 174.842 52.3524C175.68 52.4158 177.103 51.6506 176.966 50.6857" fill="white"/> +<path d="M176.966 50.8709C176.508 49.4527 173.345 48.824 173.453 50.8563C173.516 51.8651 173.804 52.2452 174.842 52.3524C175.68 52.4158 177.103 51.6506 176.966 50.6857" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M176.386 52.2606C176.615 52.9916 177.288 54.4732 175.865 54.0492C175.421 53.9127 174.412 53.6983 174.734 53.1476C174.948 52.7674 175.879 52.6115 176.123 52.1875" fill="white"/> +<path d="M176.386 52.2606C176.615 52.9916 177.288 54.4732 175.865 54.0492C175.421 53.9127 174.412 53.6983 174.734 53.1476C174.948 52.7674 175.879 52.6115 176.123 52.1875" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M176.386 52.2606C176.615 52.9916 177.288 54.4732 175.865 54.0492C175.421 53.9127 174.412 53.6983 174.734 53.1476C174.948 52.7674 175.879 52.6115 176.123 52.1875" fill="white"/> +<path d="M176.386 52.2606C176.615 52.9916 177.288 54.4732 175.865 54.0492C175.421 53.9127 174.412 53.6983 174.734 53.1476C174.948 52.7674 175.879 52.6115 176.123 52.1875" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M174.797 66.6019C174.812 69.2921 176.113 71.9627 175.85 74.6334C175.787 75.1987 175.592 75.8079 175.743 76.3879C175.909 76.9532 176.601 77.3967 177.088 76.7826C177.395 76.4025 177.317 75.2864 177.332 74.8137C177.361 74.034 177.239 73.3614 177.375 72.6012C177.697 70.9393 177.083 69.1946 177.575 67.562C177.834 66.6896 178.048 66.3728 177.848 65.4712C177.556 64.1749 178.077 63.3172 176.474 63.1515C175.528 63.0589 174.593 62.8786 173.676 62.6641C173.404 62.6008 172.346 62.0549 172.088 62.206C171.722 62.4204 172.029 64.5599 172.029 65.0765C172.029 66.8504 172.214 68.5269 172.029 70.2521C171.893 71.4413 172.273 72.6645 172.38 73.839C172.439 74.57 172.058 76.3586 173.326 76.0516C174.427 75.7933 174.105 72.5524 174.149 71.5923C174.193 70.218 173.598 67.7423 174.671 66.675" fill="white"/> +<path d="M174.797 66.6019C174.812 69.2921 176.113 71.9627 175.85 74.6334C175.787 75.1987 175.592 75.8079 175.743 76.3879C175.909 76.9532 176.601 77.3967 177.088 76.7826C177.395 76.4025 177.317 75.2864 177.332 74.8137C177.361 74.034 177.239 73.3614 177.375 72.6012C177.697 70.9393 177.083 69.1946 177.575 67.562C177.834 66.6896 178.048 66.3728 177.848 65.4712C177.556 64.1749 178.077 63.3172 176.474 63.1515C175.528 63.0589 174.593 62.8786 173.676 62.6641C173.404 62.6008 172.346 62.0549 172.088 62.206C171.722 62.4204 172.029 64.5599 172.029 65.0765C172.029 66.8504 172.214 68.5269 172.029 70.2521C171.893 71.4413 172.273 72.6645 172.38 73.839C172.439 74.57 172.058 76.3586 173.326 76.0516C174.427 75.7933 174.105 72.5524 174.149 71.5923C174.193 70.218 173.598 67.7423 174.671 66.675" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M174.797 66.6019C174.812 69.2921 176.113 71.9627 175.85 74.6334C175.787 75.1987 175.592 75.8079 175.743 76.3879C175.909 76.9532 176.601 77.3967 177.088 76.7826C177.395 76.4025 177.317 75.2864 177.332 74.8137C177.361 74.034 177.239 73.3614 177.375 72.6012C177.697 70.9393 177.083 69.1946 177.575 67.562C177.834 66.6896 178.048 66.3728 177.848 65.4712C177.556 64.1749 178.077 63.3172 176.474 63.1515C175.528 63.0589 174.593 62.8786 173.676 62.6641C173.404 62.6008 172.346 62.0549 172.088 62.206C171.722 62.4204 172.029 64.5599 172.029 65.0765C172.029 66.8504 172.214 68.5269 172.029 70.2521C171.893 71.4413 172.273 72.6645 172.38 73.839C172.439 74.57 172.058 76.3586 173.326 76.0516C174.427 75.7933 174.105 72.5524 174.149 71.5923C174.193 70.218 173.598 67.7423 174.671 66.675" fill="white"/> +<path d="M174.797 66.6019C174.812 69.2921 176.113 71.9627 175.85 74.6334C175.787 75.1987 175.592 75.8079 175.743 76.3879C175.909 76.9532 176.601 77.3967 177.088 76.7826C177.395 76.4025 177.317 75.2864 177.332 74.8137C177.361 74.034 177.239 73.3614 177.375 72.6012C177.697 70.9393 177.083 69.1946 177.575 67.562C177.834 66.6896 178.048 66.3728 177.848 65.4712C177.556 64.1749 178.077 63.3172 176.474 63.1515C175.528 63.0589 174.593 62.8786 173.676 62.6641C173.404 62.6008 172.346 62.0549 172.088 62.206C171.722 62.4204 172.029 64.5599 172.029 65.0765C172.029 66.8504 172.214 68.5269 172.029 70.2521C171.893 71.4413 172.273 72.6645 172.38 73.839C172.439 74.57 172.058 76.3586 173.326 76.0516C174.427 75.7933 174.105 72.5524 174.149 71.5923C174.193 70.218 173.598 67.7423 174.671 66.675" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M173.667 75.8438C173.624 76.1167 173.76 76.2385 173.896 76.4675C173.146 77.2619 172.966 76.5455 172.707 75.9656C173.18 76.0728 173.243 76.102 173.58 75.9363" fill="white"/> +<path d="M173.667 75.8438C173.624 76.1167 173.76 76.2385 173.896 76.4675C173.146 77.2619 172.966 76.5455 172.707 75.9656C173.18 76.0728 173.243 76.102 173.58 75.9363" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M173.667 75.8438C173.624 76.1167 173.76 76.2385 173.896 76.4675C173.146 77.2619 172.966 76.5455 172.707 75.9656C173.18 76.0728 173.243 76.102 173.58 75.9363" fill="white"/> +<path d="M173.667 75.8438C173.624 76.1167 173.76 76.2385 173.896 76.4675C173.146 77.2619 172.966 76.5455 172.707 75.9656C173.18 76.0728 173.243 76.102 173.58 75.9363" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M173.896 76.5747C174.627 77.7638 172.429 77.6615 171.664 77.6615C170.275 77.6468 171.42 76.9889 172.03 76.6965C172.317 76.56 172.566 76.3895 172.853 76.4382C173.297 76.4967 173.404 77.0474 173.877 76.4528" fill="white"/> +<path d="M173.896 76.5747C174.627 77.7638 172.429 77.6615 171.664 77.6615C170.275 77.6468 171.42 76.9889 172.03 76.6965C172.317 76.56 172.566 76.3895 172.853 76.4382C173.297 76.4967 173.404 77.0474 173.877 76.4528" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M173.896 76.5747C174.627 77.7638 172.429 77.6615 171.664 77.6615C170.275 77.6468 171.42 76.9889 172.03 76.6965C172.317 76.56 172.566 76.3895 172.853 76.4382C173.297 76.4967 173.404 77.0474 173.877 76.4528" fill="white"/> +<path d="M173.896 76.5747C174.627 77.7638 172.429 77.6615 171.664 77.6615C170.275 77.6468 171.42 76.9889 172.03 76.6965C172.317 76.56 172.566 76.3895 172.853 76.4382C173.297 76.4967 173.404 77.0474 173.877 76.4528" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M176.966 76.9237C176.966 77.1674 177.044 77.338 177.029 77.5816C176.006 78.3322 176.084 77.5963 176.084 76.8652C176.342 76.9725 176.649 77.0504 176.908 76.9286" fill="white"/> +<path d="M176.966 76.9237C176.966 77.1674 177.044 77.338 177.029 77.5816C176.006 78.3322 176.084 77.5963 176.084 76.8652C176.342 76.9725 176.649 77.0504 176.908 76.9286" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M176.966 76.9237C176.966 77.1674 177.044 77.338 177.029 77.5816C176.006 78.3322 176.084 77.5963 176.084 76.8652C176.342 76.9725 176.649 77.0504 176.908 76.9286" fill="white"/> +<path d="M176.966 76.9237C176.966 77.1674 177.044 77.338 177.029 77.5816C176.006 78.3322 176.084 77.5963 176.084 76.8652C176.342 76.9725 176.649 77.0504 176.908 76.9286" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M177.152 77.5195C177.23 78.1628 177.259 78.3285 176.738 78.8646C176.309 79.2935 175.914 79.7028 175.3 79.7662C175.012 79.1083 175.729 78.1775 176.123 77.6901C176.431 77.8412 176.859 77.8753 177.025 77.539" fill="white"/> +<path d="M177.152 77.5195C177.23 78.1628 177.259 78.3285 176.738 78.8646C176.309 79.2935 175.914 79.7028 175.3 79.7662C175.012 79.1083 175.729 78.1774 176.123 77.6901C176.431 77.8412 176.859 77.8753 177.025 77.539" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M177.152 77.5195C177.23 78.1628 177.259 78.3285 176.738 78.8646C176.309 79.2935 175.914 79.7028 175.3 79.7662C175.012 79.1083 175.729 78.1775 176.123 77.6901C176.431 77.8412 176.859 77.8753 177.025 77.539" fill="white"/> +<path d="M177.152 77.5195C177.23 78.1628 177.259 78.3285 176.738 78.8646C176.309 79.2935 175.914 79.7028 175.3 79.7662C175.012 79.1083 175.729 78.1774 176.123 77.6901C176.431 77.8412 176.859 77.8753 177.025 77.539" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M176.966 53.1907C177.42 53.3466 177.746 53.6341 178.082 53.9558C178.477 54.3359 179.091 54.6868 179.335 55.2083C179.7 56.0027 179.886 57.4696 179.959 58.3371C180.066 59.3897 179.988 60.4424 179.9 61.5C179.9 61.5 179.925 62.1725 178.321 61.3684C178.321 61.3684 178.579 63.2252 177.658 63.5322C176.713 64.0537 175.733 63.8538 174.666 63.8538C173.506 63.8392 172.39 63.6102 171.917 62.4795C171.64 61.997 171.922 60.5642 171.922 60.5642C171.143 61.0223 170.1 60.2036 170.1 60.2036C169.9 58.7074 170.879 57.1187 171.43 55.7736C171.723 55.0718 172.059 54.5211 172.561 53.9412C172.761 53.6975 173.019 53.2102 173.263 53.0396C173.657 52.7326 173.37 52.8398 173.828 52.947C174.773 53.176 176.304 54.9305 176.84 53.2053C176.83 53.2053 176.84 53.1468 176.966 53.1907Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M176.83 53.2053C176.294 54.9305 174.768 53.176 173.818 52.947C173.36 52.8398 173.652 52.7326 173.253 53.0396C173.009 53.2053 172.751 53.6975 172.551 53.9412C172.049 54.5211 171.713 55.0718 171.42 55.7736C170.869 57.1187 169.895 58.7074 170.09 60.2036C170.09 60.2036 171.128 61.0223 171.912 60.5642C171.912 60.5642 171.63 61.997 171.908 62.4795C172.38 63.6102 173.496 63.8392 174.656 63.8538C175.723 63.8538 176.703 64.0537 177.648 63.5322C178.57 63.2252 178.311 61.3684 178.311 61.3684C179.92 62.1725 179.89 61.5 179.89 61.5C179.983 60.4473 180.056 59.3946 179.949 58.3371C179.871 57.4647 179.69 56.0027 179.325 55.2083C179.081 54.6868 178.467 54.3359 178.072 53.9558C177.736 53.6341 177.415 53.332 176.956 53.1907C176.966 53.1907 176.883 53.1419 176.83 53.2053Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M176.128 50.8271C176.006 50.7978 176.099 50.52 175.943 50.4469C175.592 50.2471 175.67 50.5542 175.3 50.5542C174.842 50.5542 174.34 50.0668 173.896 49.8963C173.818 50.0619 173.711 50.4762 173.453 50.4469C173.18 50.4031 173.102 49.867 173.131 49.6526C173.209 49.0873 173.696 48.9947 174.169 48.8582C174.613 48.7364 175.129 48.6145 175.587 48.5853C176.426 48.5219 176.733 49.0434 177.054 49.8085C177.298 50.3738 177.391 50.9538 177.01 51.4899C176.689 51.948 176.045 52.6644 175.587 53.0007C175.066 53.3808 174.028 53.6098 173.726 52.9568C173.375 52.2063 173.726 51.8261 174.384 52.0113C175.3 52.2843 175.422 52.3184 176.109 51.6897C176.294 51.5386 176.811 51.4606 176.811 51.0951C176.796 50.6809 176.367 50.715 176.231 51.0513" fill="white"/> +<path d="M176.128 50.8271C176.006 50.7978 176.099 50.52 175.943 50.4469C175.592 50.2471 175.67 50.5542 175.3 50.5542C174.842 50.5542 174.34 50.0668 173.896 49.8963C173.818 50.0619 173.711 50.4762 173.453 50.4469C173.18 50.4031 173.102 49.867 173.131 49.6526C173.209 49.0873 173.696 48.9947 174.169 48.8582C174.613 48.7364 175.129 48.6145 175.587 48.5853C176.426 48.5219 176.733 49.0434 177.054 49.8085C177.298 50.3738 177.391 50.9538 177.01 51.4899C176.689 51.948 176.045 52.6644 175.587 53.0007C175.066 53.3808 174.028 53.6098 173.726 52.9568C173.375 52.2063 173.726 51.8261 174.384 52.0113C175.3 52.2843 175.422 52.3184 176.109 51.6897C176.294 51.5386 176.811 51.4606 176.811 51.0951C176.796 50.6809 176.367 50.715 176.231 51.0513" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M176.128 50.8271C176.006 50.7978 176.099 50.52 175.943 50.4469C175.592 50.2471 175.67 50.5542 175.3 50.5542C174.842 50.5542 174.34 50.0668 173.896 49.8963C173.818 50.0619 173.711 50.4762 173.453 50.4469C173.18 50.4031 173.102 49.867 173.131 49.6526C173.209 49.0873 173.696 48.9947 174.169 48.8582C174.613 48.7364 175.129 48.6145 175.587 48.5853C176.426 48.5219 176.733 49.0434 177.054 49.8085C177.298 50.3738 177.391 50.9538 177.01 51.4899C176.689 51.948 176.045 52.6644 175.587 53.0007C175.066 53.3808 174.028 53.6098 173.726 52.9568C173.375 52.2063 173.726 51.8261 174.384 52.0113C175.3 52.2843 175.422 52.3184 176.109 51.6897C176.294 51.5386 176.811 51.4606 176.811 51.0951C176.796 50.6809 176.367 50.715 176.231 51.0513" fill="#DA3635"/> +<path d="M176.128 50.8271C176.006 50.7978 176.099 50.52 175.943 50.4469C175.592 50.2471 175.67 50.5542 175.3 50.5542C174.842 50.5542 174.34 50.0668 173.896 49.8963C173.818 50.0619 173.711 50.4762 173.453 50.4469C173.18 50.4031 173.102 49.867 173.131 49.6526C173.209 49.0873 173.696 48.9947 174.169 48.8582C174.613 48.7364 175.129 48.6145 175.587 48.5853C176.426 48.5219 176.733 49.0434 177.054 49.8085C177.298 50.3738 177.391 50.9538 177.01 51.4899C176.689 51.948 176.045 52.6644 175.587 53.0007C175.066 53.3808 174.028 53.6098 173.726 52.9568C173.375 52.2063 173.726 51.8261 174.384 52.0113C175.3 52.2843 175.422 52.3184 176.109 51.6897C176.294 51.5386 176.811 51.4606 176.811 51.0951C176.796 50.6809 176.367 50.715 176.231 51.0513" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M184.525 48.1122L184.204 46.5624L182.376 45.5L180.87 45.9873L168.721 66.8995L172.376 69.0243L184.525 48.1122Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M172.376 69.0252L172.074 67.4365L170.246 66.3789L168.721 66.9004L168.004 72.3441L172.376 69.0252Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M169.891 70.9106L169.676 70.4866C169.51 70.1552 169.16 69.9505 168.784 69.97L168.312 69.9944L168 72.3483L169.891 70.9106Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M182.376 45.5L170.246 66.378L168.72 66.8995L180.87 45.9873L182.376 45.5Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M172.074 67.4357L184.204 46.5625L184.525 48.1123L172.376 69.0244L172.074 67.4357Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M179.325 61.2952C179.325 61.2952 177.736 61.0857 176.976 60.3888L177.517 59.4141C177.517 59.4141 178.926 59.9599 179.067 60.1597C179.208 60.3644 179.325 61.2952 179.325 61.2952Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M177.513 59.4136C177.513 59.4136 177.513 58.5315 177.172 58.2537C176.826 57.9808 177.172 58.9018 177.172 58.9018C177.172 58.9018 176.358 58.2001 176.124 58.2732C175.89 58.3463 175.636 59.1065 175.71 59.4721C175.783 59.8376 176.845 60.2323 176.977 60.3883L177.513 59.4136Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M179.174 61.7095C179.174 61.7095 177.171 60.6129 176.976 60.3888L177.517 59.4141C177.517 59.4141 178.677 59.8234 179.013 60.1061" fill="white"/> +<path d="M179.174 61.7095C179.174 61.7095 177.171 60.6129 176.976 60.3888L177.517 59.4141C177.517 59.4141 178.677 59.8234 179.013 60.1061" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M171.469 58.844C171.469 58.844 173.433 58.4297 173.818 57.9473L172.761 59.9454C172.761 59.9454 172.059 60.6862 170.875 60.5643" fill="white"/> +<path d="M171.469 58.844C171.469 58.844 173.433 58.4297 173.818 57.9473L172.761 59.9454C172.761 59.9454 172.059 60.6862 170.875 60.5643" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M173.447 55.9395C173.447 55.9395 172.78 58.3031 172.073 58.6978L173.447 55.9395Z" fill="white"/> +<path d="M173.447 55.9395C173.447 55.9395 172.78 58.3031 172.073 58.6978" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +</svg>