Parcourir la source

Live Match UI

master
kj1352 il y a 4 ans
Parent
révision
2b43ca3acb
9 fichiers modifiés avec 593 ajouts et 47 suppressions
  1. +2
    -2
      src/app/home/home.page.html
  2. +46
    -6
      src/app/live/live.page.html
  3. +181
    -0
      src/app/live/live.page.scss
  4. +6
    -6
      src/app/live/live.page.ts
  5. +2
    -2
      src/app/tabs/tabs.page.html
  6. +9
    -26
      src/app/tabs/tabs.page.scss
  7. +12
    -5
      src/app/tabs/tabs.page.ts
  8. +1
    -0
      src/assets/icons/helmet.svg
  9. +334
    -0
      src/assets/logos/mi.svg

+ 2
- 2
src/app/home/home.page.html Voir le fichier

@@ -1,7 +1,7 @@
<ion-content>
<figure class="theme-bg-image">
<!-- <figure class="theme-bg-image">
<img src="assets/home-team/KXIP-lion-white.svg">
</figure>
</figure> -->

<div class="heading-holder">
<h2 class="main-header"> # Discover </h2>


+ 46
- 6
src/app/live/live.page.html Voir le fichier

@@ -1,9 +1,49 @@
<ion-header>
<ion-toolbar>
<ion-title>live</ion-title>
</ion-toolbar>
</ion-header>

<ion-content>
<div class="heading-holder">
<h2 class="main-header">
Matches
</h2>

<p>
Live / Next Match
</p>
</div>


<section class="match-card">
<span class="format"> T20 Qualifiers </span>
<header> <h4> Kings XI Punjab v/s Mumbai Indians </h4> </header>
<p> <ion-icon src="assets/icons/helmet.svg"></ion-icon> Sehwag, KL Rahul </p>
<p> <ion-icon name="baseball-outline"></ion-icon> <span> Pollard </span> </p>

<section class="score-card">
<div class="team">
<header> <img src="assets/home-team/KXIP.svg"> <h5> Kings XI Punjab </h5> </header>
<div class="score"> 179/9 <span> (19.3) </span> </div>
</div>

<div class="team">
<header> <img src="assets/logos/mi.svg"> <h5> Mumbai Indians </h5> </header>
<div class="score"> 10/2 <span> (5.5) </span> </div>
</div>
</section>
</section>

<ul class="statistical-pages">
<li>
<label> Fixtures </label>
<button> + </button>
</li>

<li>
<label> Results </label>
<button> + </button>
</li>

<li>
<label> Tours </label>
<button> + </button>
</li>
</ul>

</ion-content>

+ 181
- 0
src/app/live/live.page.scss Voir le fichier

@@ -0,0 +1,181 @@
$dark-blue-shade1: #24367c;
$dark-blue-shade2: #263982;
$green: #01b868;
$pink: #d73e53;

ion-content {
--background: transparent;
background-color: white;

&::before {
content: '';
position: absolute;
left: 0;
top: 0;
opacity: 0;
width: 100%;
height: 100%;
animation: fadeIn 0.5s forwards;
background: linear-gradient(90deg, $dark-blue-shade1 50%, $dark-blue-shade2);
}

@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
}

.heading-holder {
margin-bottom: 2.7rem;
padding: 0px 7%;

.main-header {
font-size: 2.3rem;
font-weight: 700;
letter-spacing: 1px;
margin: 5% 0%;
color: white;
}

p {
color: white;
font-size: 1.2rem;
font-weight: 500;
}
}

.match-card {
width: 86%;
margin: 0 auto;
border-radius: 10px;
padding: 15px 5%;
overflow: visible;
position: relative;
background: linear-gradient(45deg, $pink 50%, $dark-blue-shade1);

.format {
background-color: $green;
border-radius: 5px;
padding: 7px;
color: white;
font-size: 0.9rem;
font-weight: 500;
letter-spacing: 0.5px;
position: absolute;
left: 10%;
top: -12px;
}

header h4 {
color: white;
font-size: 1.3rem;
font-weight: 700;
margin: 15px 0 10px;
line-height: 1.5;
}

p {
color: white;
line-height: 1.5;
margin: 10px 0;
font-size: 1rem;
font-weight: 500;
display: flex;
align-items: center;
justify-content: flex-start;

ion-icon {
margin-right: 10px;
font-size: 1.2rem;
}
}

.score-card {
display: flex;
width: 100%;
align-items: flex-start;

.team {
width: 50%;
color: white;
padding: 7px;
}

header {
display: flex;
width: 100%;
justify-content: flex-start;
align-items: center;

img {
width: 40px;
height: 40px;
margin-right: 5px;
}

h5 {
color: white;
font-size: 0.8rem;
line-height: 1.5;
font-weight: 500;
margin: 0;
}
}

.score {
display: flex;
justify-content: center;
width: 100%;
font-size: 1.8rem;
align-items: center;
font-weight: 700;
margin-top: 5px;

span {
font-size: 0.8rem;
margin-left: 10px;
margin-top: 5px;
}
}
}
}

.statistical-pages {
list-style: none;
padding: 0;
width: 86%;
margin: 0 auto;

li {
display: flex;
width: 100%;
background: linear-gradient(90deg, darken($dark-blue-shade2, 10%) 50%, $dark-blue-shade2);
margin: 30px auto;
border-radius: 10px;
padding: 0px 15px;
justify-content: space-between;
height: 50px;
align-items: center;

label {
font-size: 1rem;
color: white;
font-weight: 500;
letter-spacing: 0.5px;
opacity: 0.9;
}

button {
border-radius: 50%;
background-color: $green;
height: 30px;
width: 30px;
font-size: 24px;
color: white;
}
}
}

+ 6
- 6
src/app/live/live.page.ts Voir le fichier

@@ -1,15 +1,15 @@
import { Component, OnInit } from '@angular/core';

@Component({
selector: 'app-live',
templateUrl: './live.page.html',
styleUrls: ['./live.page.scss'],
selector: 'app-live',
templateUrl: './live.page.html',
styleUrls: ['./live.page.scss'],
})
export class LivePage implements OnInit {

constructor() { }
constructor() { }

ngOnInit() {
}
ngOnInit() {
}

}

+ 2
- 2
src/app/tabs/tabs.page.html Voir le fichier

@@ -1,5 +1,5 @@
<ion-tabs>
<ion-tab-bar slot="bottom">
<ion-tabs #tabs (ionTabsDidChange)="setCurrentTab()">
<ion-tab-bar slot="bottom" [ngClass]="{'live' : selectedTab === 'live'}">
<ion-tab-button tab="home">
<ion-icon name="home-outline"></ion-icon>
<ion-icon name="home"></ion-icon>


+ 9
- 26
src/app/tabs/tabs.page.scss Voir le fichier

@@ -3,10 +3,18 @@ ion-tab-bar {
--border: none;
margin-top: -1px;
box-shadow: 0px 0px 15px rgba(var(--light-grey-rgb), 0.5);
transition: var(--background) 0.3s;
--color: var(--light-grey);
--color-selected: var(--brand-black);

&.live {
--background: #24367c;
--color: white;
--color-selected: #01b868;
}

ion-tab-button {
ion-icon {
color: var(--light-grey);
font-size: 20px;

&:nth-child(1) {
@@ -20,8 +28,6 @@ ion-tab-bar {

&.tab-selected {
ion-icon {
color: var(--brand-black);
&:nth-child(2) {
display: block;
}
@@ -37,30 +43,7 @@ ion-tab-bar {
font-size: 30px;
border-radius: 50%;
overflow: hidden;
// animation: rippleButton 3s infinite;
}
}
}

@keyframes rippleButton {
0% {
box-shadow: none
}

25% {
box-shadow: 0px 0px 10px 5px #00ee85;
}

50% {
box-shadow: none
}

75% {
box-shadow: 0px 0px 10px 5px #00ee85;
}
100% {
box-shadow: none
}
}
}

+ 12
- 5
src/app/tabs/tabs.page.ts Voir le fichier

@@ -1,12 +1,19 @@
import { Component } from '@angular/core';
import { Component, ViewChild } from '@angular/core';
import { IonTabs } from '@ionic/angular';

@Component({
selector: 'app-tabs',
templateUrl: 'tabs.page.html',
styleUrls: ['tabs.page.scss']
selector: 'app-tabs',
templateUrl: 'tabs.page.html',
styleUrls: ['tabs.page.scss']
})
export class TabsPage {
@ViewChild('tabs', { static: false }) tabs: IonTabs;
selectedTab: string;
constructor() {}

constructor() {}
setCurrentTab() {
this.selectedTab = this.tabs.getSelected();
}

}

+ 1
- 0
src/assets/icons/helmet.svg Voir le fichier

@@ -0,0 +1 @@
<svg id="Icons" height="512" viewBox="0 0 74 74" width="512" xmlns="http://www.w3.org/2000/svg"><path d="m23.873 70.571a13.556 13.556 0 0 1 -13.541-13.541v-4.649a3.232 3.232 0 0 0 -.95-2.266l-4-4c-3.51-3.283-3.037-9.327-2.969-10.029a34.129 34.129 0 0 1 68.107-3.15 1 1 0 0 1 -.993 1.093l-27.975.082a4.2 4.2 0 0 0 -4.137 4.189v18.73a13.55 13.55 0 0 1 -13.542 13.541zm12.677-66.571a32.173 32.173 0 0 0 -32.137 32.137 1.008 1.008 0 0 1 -.006.108c-.006.056-.574 5.683 2.365 8.432l4.028 4.023a5.243 5.243 0 0 1 1.536 3.68v4.65a11.542 11.542 0 0 0 23.083 0v-18.73a6.206 6.206 0 0 1 6.121-6.19l26.869-.078a31.957 31.957 0 0 0 -31.859-28.032z"/><path d="m24.1 62.962a5.561 5.561 0 1 1 5.564-5.562 5.568 5.568 0 0 1 -5.564 5.562zm0-9.122a3.561 3.561 0 1 0 3.564 3.56 3.565 3.565 0 0 0 -3.564-3.56z"/><path d="m63.97 72h-24.1a1 1 0 0 1 -.73-.317l-5.992-6.415a1 1 0 1 1 1.46-1.368l5.692 6.1h23.67a5.679 5.679 0 0 0 5.673-5.673v-14.034h-33.228a1 1 0 0 1 0-2h33.319a1.91 1.91 0 0 1 1.909 1.907v14.127a7.682 7.682 0 0 1 -7.673 7.673z"/><path d="m70.643 61.146h-34.491a1 1 0 0 1 0-2h34.49a1 1 0 0 1 0 2z"/><path d="m55.692 72a1 1 0 0 1 -.672-1.741c5.28-4.787 2.918-20.659 2.894-20.814a1 1 0 0 1 1.977-.3c.107.7 2.546 17.093-3.526 22.6a1 1 0 0 1 -.673.255z"/><path d="m44.095 72a1 1 0 0 1 -.672-1.741c5.277-4.787 2.917-20.659 2.892-20.814a1 1 0 0 1 1.977-.3c.107.7 2.546 17.093-3.525 22.6a1 1 0 0 1 -.672.255z"/></svg>

+ 334
- 0
src/assets/logos/mi.svg Voir le fichier

@@ -0,0 +1,334 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 687.755 431.482" enable-background="new 0 0 687.755 431.482" xml:space="preserve">
<g id="layer1" transform="translate(-92.179865,-344.07435)">
<g id="g2988" transform="matrix(0.60914819,0,0,0.60914819,-119.52167,186.42247)">
<g id="g2990">
<path id="path2992" fill="#FFFFFF" d="M1123.385,641.477c100.379-67.209,157.515-152.688,140.458-229.086
c-28.868-129.076-255.101-188.461-505.319-132.542c-250.252,55.894-429.658,205.923-400.802,335.042
c19.579,87.641,130.069,143.101,277.362,152.19l-19.503-0.3H582.84l-20.42,75.894l-73.139-72.388l3.965-16.681l-85.937,0.04
l-59.772,214.678H487.16l17.911-74.834l75.482,76.492h101.323c0,0,70.065,3.205,109.861-30.77l-8.24,27.932h131.115
l22.677-30.758h51.569l7.504,29.684h123.423l20.081-76.57l77.781,77.085l126.103,0.192l20.828-0.883
c38.109-2.961,69.51-33.503,69.51-71.87c0,0,3.753-42.647-32.908-61.994l25.769,0.08c0,0,26.156-0.678,37.567-16.586
c5.715-7.987,11.249-19.427,11.4-31.816l0.665-13.629l-0.462-14.43h-41.245l30.474-114.811h-332.449L1123.385,641.477
L1123.385,641.477z"/>
<linearGradient id="path3005_1_" gradientUnits="userSpaceOnUse" x1="1987.2123" y1="646.3932" x2="1380.9604" y2="100.5216" gradientTransform="matrix(0.6091 0 0 -0.6091 -211.6832 755.5115)">
<stop offset="0" style="stop-color:#1C437F"/>
<stop offset="0.1156" style="stop-color:#134A89"/>
<stop offset="0.4913" style="stop-color:#0262A6"/>
<stop offset="0.7996" style="stop-color:#0671B8"/>
<stop offset="1" style="stop-color:#0E78BE"/>
</linearGradient>
<path id="path3005" fill="url(#path3005_1_)" d="M507.518,730.927c47.212-5.542,108.504-25.011,170.225-64.968
c0,0-40.379,6.222-87.283,4.591c-46.832-1.589-100.041-10.99-124.963-41.955c24.101,14.142,68.166,19.267,133.617-0.067
c-5.733-1.262-32.051-6.849-52.898-24.236c-20.696-17.227-35.881-46.015-20.1-93.063c-0.897,23.217,13.293,45.008,56.531,50.539
c-2.256-7.674-9.048-23.451-3.763-48.623c5.291-24.982,22.632-58.945,67.976-103.074c-19.809,24.783-31.457,53.255-16.664,75.222
c7.025-14.425,17.228-34.033,41.459-58.649c23.91-24.305,61.7-53.487,123.635-87.248c-33.12,21.59-64.654,49.804-76.825,80.063
c20.377-18.149,43.503-36.94,78.839-55.718c35.05-18.597,82.112-37.347,150.614-55.687
c-41.546,14.606-87.455,37.304-123.292,68.742c26.723-13.216,58.499-27.373,99.515-37.253
c40.887-9.875,91.052-15.665,154.819-12.459c-43.728,2.434-97.36,13.507-152.103,38.869c20.732-3.598,55.945-8.842,95.807-5.502
c39.922,3.371,85.036,15.437,125.835,46.735c-34.016-15.689-83.457-23.953-147.193-13.951
c6.355,1.929,35.557,10.041,61.153,32.103c25.812,22.309,48.308,59.017,40.209,118.973c-5.432-36.302-29.91-69.493-83.44-85.021
c5.053,7.554,12.057,29.983,9.579,59.613c-2.446,29.986-14.986,67.644-49.339,105.086
c-23.801,26.739-44.016,33.844-44.016,33.844s13.802-15.406,24.612-39.643c10.809-24.022,18.693-56.544,7.61-90.999
c-10.52,60.362-62.99,109.979-113.943,143.809c-51.662,34.357-101.289,52.207-103.808,48.938c0,0,21.333-14.903,45.939-37.485
c24.36-22.431,49.385-44.901,62.517-75.104c-73.119,74.152-186.39,119.977-290.553,125.492
C535.735,734.555,513.462,731.24,507.518,730.927L507.518,730.927z"/>
<path id="path3007" fill="#FFFFFF" d="M851.58,482.754c-9.468-15.27-40.378-14.55-69.272,1.713
c-29.182,16.303-45.365,42.239-36.207,57.782c9.301,15.745,40.758,14.916,70.082-1.766
C845.316,523.987,860.925,498.065,851.58,482.754z"/>
<radialGradient id="path3018_1_" cx="1668.4507" cy="303.6404" r="324.8975" gradientTransform="matrix(0.5596 0 0 -0.5596 -128.7704 696.0283)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#FFCD33"/>
<stop offset="0.35" style="stop-color:#FFCD33"/>
<stop offset="0.74" style="stop-color:#EC1F31"/>
<stop offset="1" style="stop-color:#EC1F31"/>
</radialGradient>
<path id="path3018" fill="url(#path3018_1_)" d="M1066.302,457.743c-18.816-32.482-52.244-48.91-90.918-53.909
c-38.678-4.988-82.823,1.276-123.141,14.445c27.791-10.95,53.324-18.561,69.916-21.086
c46.692-17.377,88.721-21.74,120.829-19.171c-44.967-9.96-92.381-7.173-136.617,3.492
c-44.401,10.721-85.825,29.329-118.445,50.962c21.114-16.047,42.279-29.252,57.889-36.385
C879.997,371,919.6,354.898,954.113,345.877c-54.998,9.536-102.952,27.311-141.658,48.637
c-39.039,21.534-68.8,46.802-86.527,71.066c9.718-17.156,22.097-32.527,33.544-42.317c15.914-26.032,45.477-48.558,74.899-64.998
c-52.851,24.305-91.596,51.597-116.615,77.902c-25.235,26.601-36.64,52.333-34.685,73.145c-4.81-13.72-4.693-27.323-0.224-37.43
c-5.945-20.706,8.116-44.654,27.53-64.761c-40.96,34.195-62.133,65.06-67.134,90.1c-5.042,25.363,6.228,44.561,29.758,55.184
c-19.951-5.326-33.543-13-38.038-20.622c-28.816-8.913-34.863-28.652-29.946-48.338c-38.365,76.083,16.732,108.06,98.457,97.451
c-30.507,6.559-55.796,8.802-69.53,6.753c-34.151,12.171-76.292,0.664-90.456-12.959c13.896,31.246,47.55,44.492,89.198,44.21
c41.651-0.313,90.987-14.158,136.219-36.619c-30.626,17.826-59.807,31.303-79.234,36.916
c-12.76,20.555-100.327,35.187-134.556,34.985c35.119,7.392,82.152,5.773,122.381-3.452
c63.005-14.51,122.593-53.188,168.833-97.181c0,0,0.124-0.136,0.281-0.338c-0.035,0.122-0.156,0.202-0.281,0.338
c-14.045,20.757-81.676,73.254-81.676,73.254c-5.326,20.689-66.938,49.154-131.511,79.544
c72.784-18.122,151.202-50.84,207.523-101.691c27.445-24.779,43.245-46.204,52.237-62.603c12.429-22.577,12.2-36.029,12.2-36.029
s0-0.067,0.064-0.083c3.573,26.632-10.574,52.823-10.574,52.823c-5.901,66.296-66.087,107.343-66.087,107.343
c13.649-7.895,30.554-19.467,30.554-19.467c52.334-42.839,79.407-82.239,87.925-114.707c8.399-32.117-1.069-57.697-22.226-73.391
c18.768,9.361,31.828,20.843,35.763,31.031c32.485,18.707,39.499,49.017,32.605,79.356c23.55-49.452,19.854-84.803,0.98-107.793
c-18.718-22.798-52.71-33.761-90.713-34.264c27.594-1.914,50.953-0.786,63.769,3.003
C1015.317,427.732,1047.5,440.352,1066.302,457.743L1066.302,457.743L1066.302,457.743z M846.826,552.897L846.826,552.897
L846.826,552.897L846.826,552.897z M810.468,533.685L810.468,533.685c-29.305,16.209-60.784,17.01-70.02,1.725
c-9.171-15.176,7.064-40.403,36.315-56.298c28.931-15.785,59.748-16.521,69.173-1.673
C855.396,492.397,839.632,517.628,810.468,533.685z"/>
<path id="path3020" fill="#F79534" d="M1075.676,413.302c108.563,28.91,117.35,148.603-28.498,212.129
c121.003-70.716,91.029-174.688,28.211-211.559L1075.676,413.302L1075.676,413.302z"/>
<path id="path3022" fill="#00A65C" d="M1061.1,642.551c171.317-60.417,224.197-303.985,2.52-295.713
c127.812-41.189,190.452,34.838,170.527,124.478c-10.336,46.569-39.993,87.395-76.021,117.65
C1129.084,613.34,1095.148,631.653,1061.1,642.551z"/>
<path id="path3024" fill="#00A65C" d="M548.417,623.582C423.673,603.355,439.14,464.521,599.63,414.622
c-141.253,67.372-127.926,190.339-50.892,208.392L548.417,623.582L548.417,623.582z"/>
<path id="path3026" fill="#F79534" d="M583.352,391.551c-176.845,41.424-262.85,282.002-41.639,297.846
C351.252,728.565,324.89,540.059,477.4,438.07c22.693-15.187,48.203-28.013,73.999-37.212
C561.71,397.191,572.295,394.161,583.352,391.551L583.352,391.551z"/>
<polygon id="polygon3028" fill="#FFFFFF" points="1009.403,647.646 945.107,691.257 944.831,690.728 904.878,649.222
877.793,748.993 906.426,748.993 919.711,700.113 938.481,720.357 966.733,701.212 953.775,748.993 982.33,748.993 "/>
<linearGradient id="path3041_1_" gradientUnits="userSpaceOnUse" x1="2070.7971" y1="15.2988" x2="2070.345" y2="101.6874" gradientTransform="matrix(0.6091 0 0 -0.6091 -211.6832 755.5115)">
<stop offset="0" style="stop-color:#1F3F78"/>
<stop offset="0.1838" style="stop-color:#1C437E"/>
<stop offset="0.4834" style="stop-color:#064F8F"/>
<stop offset="0.8594" style="stop-color:#0563AB"/>
<stop offset="1" style="stop-color:#0C6DB6"/>
</linearGradient>
<path id="path3041" fill="url(#path3041_1_)" d="M1033.07,746.279c-13.484,0-24.679-3.711-31.516-10.595
c-6.546-6.525-8.742-15.326-6.139-24.934l13.744-50.729h19.275l-12.564,46.41c-2.284,8.489-0.822,15.897,4.146,20.811
c3.961,3.984,9.924,6.074,17.173,6.074c16.514,0,30.919-10.691,35.055-25.992l12.885-47.303h19.207l-13.473,49.807
C1085.209,730.642,1060.38,746.279,1033.07,746.279L1033.07,746.279L1033.07,746.279z"/>
<linearGradient id="path3054_1_" gradientUnits="userSpaceOnUse" x1="2547.0415" y1="18.0586" x2="2546.5981" y2="102.7458" gradientTransform="matrix(0.6091 0 0 -0.6091 -211.6832 755.5115)">
<stop offset="0" style="stop-color:#1F3F78"/>
<stop offset="0.1838" style="stop-color:#1C437E"/>
<stop offset="0.4834" style="stop-color:#064F8F"/>
<stop offset="0.8594" style="stop-color:#0563AB"/>
<stop offset="1" style="stop-color:#0C6DB6"/>
</linearGradient>
<path id="path3054" fill="url(#path3054_1_)" d="M1370.321,744.243l-3.865-16.279h-45.641l-12.683,16.279h-19.85l55.025-67.376
l14.005-17.13h24.219l-6.021,7.31l-0.117,0.202c-1.587,2.394-2.299,5.028-1.943,7.703l0.014,0.327l17.689,68.963H1370.321
L1370.321,744.243z M1330.261,715.792h33.573l-7.729-33.177L1330.261,715.792z"/>
<polygon id="polygon3056" fill="#FFFFFF" points="1446.672,655.091 1418.051,655.091 1418.051,655.091 1392.732,748.631
1421.316,748.631 "/>
<path id="path3058" fill="#FFFFFF" d="M1302.762,682.888c2.596-9.678-0.922-15.775-4.373-19.182
c-5.225-5.3-13.98-8.223-24.584-8.223h-60.952l-25.397,93.509h66.754c21.548,0,39.704-11.381,44.167-27.765
c2.517-9.417-0.699-17.202-8.792-21.942C1296.193,695.346,1300.949,689.557,1302.762,682.888z M1270.356,718.971
c-1.214,4.58-7.36,8.07-14.218,8.07h-34.075l4.014-14.861h35.922c3.299,0,5.901,0.805,7.32,2.241
C1270.784,715.873,1270.696,717.682,1270.356,718.971L1270.356,718.971z M1274.059,683.079
c-0.922,3.572-4.975,7.115-11.892,7.115h-30.133l3.413-12.636h32.023c1.895,0,4.484,0.287,5.831,1.632
C1274.588,680.455,1274.345,682.168,1274.059,683.079z"/>
<linearGradient id="path3071_1_" gradientUnits="userSpaceOnUse" x1="2393.8987" y1="17.9929" x2="2393.4548" y2="102.712" gradientTransform="matrix(0.6091 0 0 -0.6091 -211.6832 755.5115)">
<stop offset="0" style="stop-color:#1F3F78"/>
<stop offset="0.1838" style="stop-color:#1C437E"/>
<stop offset="0.4834" style="stop-color:#064F8F"/>
<stop offset="0.8594" style="stop-color:#0563AB"/>
<stop offset="1" style="stop-color:#0C6DB6"/>
</linearGradient>
<path id="path3071" fill="url(#path3071_1_)" d="M1193.358,744.511l22.941-84.515h57.505c9.399,0,17.014,2.432,21.447,6.89
c3.756,3.734,4.819,8.721,3.146,14.86c-1.483,5.435-5.432,10.312-11.092,13.653l-6.644,3.955l6.644,3.835
c6.389,3.706,8.683,9.548,6.688,16.883c-3.916,14.428-20.264,24.44-39.784,24.44H1193.358L1193.358,744.511z M1216.163,731.538
h39.975c8.982,0,16.807-4.782,18.576-11.397c0.927-3.426,0.144-6.591-2.18-8.939c-2.288-2.272-5.957-3.548-10.534-3.548h-39.358
L1216.163,731.538z M1226.126,694.721h36.041c9.297,0,14.834-5.218,16.251-10.438c0.867-3.109,0.177-6.191-1.956-8.258
c-1.937-1.959-4.963-2.937-8.997-2.937h-35.451L1226.126,694.721z"/>
<polygon id="polygon3073" fill="#FFFFFF" points="1160.103,748.993 1188.672,748.993 1214.066,655.484 1205.096,655.484
1151.49,691.257 1117.214,655.484 1109.525,655.484 1084.158,748.993 1112.755,748.993 1126.041,700.113 1144.859,720.357
1173.115,701.212 "/>
<linearGradient id="path3086_1_" gradientUnits="userSpaceOnUse" x1="2678.084" y1="8.8944" x2="2678.084" y2="93.2135" gradientTransform="matrix(0.6091 -0.0032 -0.0032 -0.6091 -211.1203 758.0108)">
<stop offset="0" style="stop-color:#1F3F78"/>
<stop offset="0.1838" style="stop-color:#1C437E"/>
<stop offset="0.4834" style="stop-color:#064F8F"/>
<stop offset="0.8594" style="stop-color:#0563AB"/>
<stop offset="1" style="stop-color:#0C6DB6"/>
</linearGradient>
<path id="path3086" fill="url(#path3086_1_)" d="M1419.482,741.266c0-0.096,0.067-0.571,0.14-1.1l21.473-80.536l-18.784,0.067
l-23.703,84.435h0.761l19.095-0.111l0.108-0.04h0.014h2.676C1419.549,743.169,1419.482,742.409,1419.482,741.266
L1419.482,741.266z"/>
<linearGradient id="path3099_1_" gradientUnits="userSpaceOnUse" x1="2234.4487" y1="17.5965" x2="2234.0039" y2="102.5893" gradientTransform="matrix(0.6091 0 0 -0.6091 -211.6832 755.5115)">
<stop offset="0" style="stop-color:#1F3F78"/>
<stop offset="0.1838" style="stop-color:#1C437E"/>
<stop offset="0.4834" style="stop-color:#064F8F"/>
<stop offset="0.8594" style="stop-color:#0563AB"/>
<stop offset="1" style="stop-color:#0C6DB6"/>
</linearGradient>
<path id="path3099" fill="url(#path3099_1_)" d="M1186.147,742.011c0-0.026,0.032-0.503,0.08-0.992l2.96-11.028l18.961-69.996
h-1.683l-55.644,37.078l-35.51-37.078h-2.293l-22.97,84.515h19.265l14.502-53.376l21.681,23.328l35.111-23.857l-14.595,54.1
l19.305-0.136l2.434-0.03C1186.179,743.78,1186.147,743.098,1186.147,742.011L1186.147,742.011z"/>
<linearGradient id="path3112_1_" gradientUnits="userSpaceOnUse" x1="1896.6583" y1="17.7319" x2="1896.2029" y2="104.7368" gradientTransform="matrix(0.6091 0 0 -0.6091 -211.6832 755.5115)">
<stop offset="0" style="stop-color:#1F3F78"/>
<stop offset="0.1838" style="stop-color:#1C437E"/>
<stop offset="0.4834" style="stop-color:#064F8F"/>
<stop offset="0.8594" style="stop-color:#0563AB"/>
<stop offset="1" style="stop-color:#0C6DB6"/>
</linearGradient>
<path id="path3112" fill="url(#path3112_1_)" d="M979.626,742.011c0-0.04,0-0.136,0.037-0.258l23.326-84.354l-58.508,39.673
l-37.362-38.968l-23.424,86.406h19.3l14.475-53.376l21.683,23.328l35.088-23.857l-14.603,53.908h0.899l0,0h0.249h11.115h6.775
h0.133l0,0h2.434C979.663,743.735,979.626,743.045,979.626,742.011L979.626,742.011z"/>
<path id="path3114" fill="none" stroke="#56C8F3" stroke-width="0.0131" d="M359.403,960.349"/>
<path id="path3116" fill="none" stroke="#56C8F3" stroke-width="0.0131" d="M1357.166,820.254"/>
<path id="path3118" fill="#EC2227" d="M804.19,916.983l-11.126,42.593h116.471l22.782-30.282h62.974l7.296,29.208H1114.7
l21.444-82.33l84.58,83.23h115.588l20.854-0.858c38.104-3.003,69.499-30.431,69.499-68.812c0-10.69-2.417-20.841-6.764-29.905
c0,0-11.921-30.337-58.376-28.203c0,0-19.281-0.122-23.969,0.038c-4.644,0.221-7.965-0.229-7.965-0.229
c1.321,0.069-1.044-0.078-1.377-1.382c-0.229-1.005,0.512-2.081,1.408-2.474c0,0,4.235-3.125,23.53-3.125
c19.281,0,65.88,0,65.88,0s27.757,1.642,39.263-14.198c6.754-9.321,10.187-21.072,10.348-33.434v-12.703l-106.171,0.147
c0,0-47.103-1.507-73.866,19.403l3.028-11.564h-68.798l-21.789,82.128l-81.607-81.049h-10.012l91.26,90.561
c0,0,2.026,1.805,4.316,1.234c1.977-0.516,2.85-1.778,3.307-3.641c0.449-1.885,21.397-81.756,21.397-81.756h52.763l-8.96,33.474
c0,0,14.776-42.769,89.458-41.477c20.897,0.365,98.027,0,98.027,0l0.093,5.16c-0.12,11.182-3.679,21.532-9.604,30.095
c0,0-9.606,11.572-33.243,9.754h-65.002c-23.663,0-29.853,7.078-29.853,7.078c-1.977,1.523-3.261,3.912-3.261,6.604
c0,4.575,4.348,7.16,8.797,7.447c0,0,19.824,1.836,32.823,0.935c13.09-0.935,38.705,2.283,50.035,22.388
c4.708,8.444,7.071,18.329,7.071,28.697c0,34.115-27.938,59.695-65.444,62.169l-127.65,0.221l-86.587-84.301
c0,0-2.267-3.698-5.27-2.992c-2.972,0.664-3.213,4.837-3.213,4.837l-20.666,81.518h-101.547l-7.573-29.4H928.81l-22.999,30.338
H802.476l19.726-74.669c0,0-24.415,70.985-126.527,75.333l-107.231,0.46l-86.156-83.579c0,0-1.141-2.802-3.892-2.078
c-2.771,0.678-3.449,5.965-3.449,5.965l-20.188,78.568H369.374l51.108-181.892l59.67-0.014l2.186-8.03H414.98l-55.58,198.162
h120.541l21.351-81.744l83.594,82.294h93.723C678.611,960.896,760.379,966.274,804.19,916.983"/>
<path id="path3120" fill="#EC2227" d="M474.519,777.225l90.353,88.838c0,0,1.541,2.122,4.068,1.483
c2.743-0.409,3.187-4.021,3.187-4.021l21.867-81.163h132.572c0,0,29.691-1.998,56.284,7.525
c26.588,9.512,50.417,36.127,44.759,68.216l20.323-76.831h52.625l-42.359,158.224l128.534-159.173h65.085l-18.704,23.166
c0,0-7.689,6.762-3.501,17.391l30.312,116.279l44.297-164.181h-8.081l-36.07,135.706l-23.175-88.467
c0,0-3.099-7.027,3.734-14.294l26.191-32.228h-84.023L874.137,908.097l35.636-134.242h-67.62l-12.788,48.38
c0,0-10.36-26.436-44.433-38.527c-31.128-11.049-58.951-8.111-58.951-8.111H587.855l-21.75,81.405l-81.073-79.778H474.519
L474.519,777.225z"/>
<path id="path3122" fill="#FFFFFF" d="M698.765,905.37c33.149-0.192,61.803-17.447,68.099-41.071
c1.733-6.493,2.206-15.881-5.427-23.302c-7.146-7.076-19.331-10.73-35.256-10.65l-34.674-0.067l-19.895,75.09H698.765
L698.765,905.37z"/>
<path id="path3124" fill="#FFFFFF" d="M810.128,807.412c-11.757-11.613-34.568-25.306-76.704-25.089l-89.096,0.447
l-44.916,170.257l92.096-0.298c65.446,0.148,121.257-36.684,133.957-84.49C831.676,844.872,826.237,823.298,810.128,807.412z
M774.086,865.846c-7.175,26.944-38.801,46.572-75.3,46.795l-36.99,0.01l23.958-90.248h40.392
c17.906-0.122,31.954,4.322,40.534,12.811C774.616,843.047,777.265,853.946,774.086,865.846L774.086,865.846z"/>
<linearGradient id="path3137_1_" gradientUnits="userSpaceOnUse" x1="1036.8118" y1="-312.0053" x2="1036.8118" y2="-143.9687" gradientTransform="matrix(0.6091 -0.0032 -0.0032 -0.6091 -211.0843 758.5959)">
<stop offset="0" style="stop-color:#1F3F78"/>
<stop offset="0.1838" style="stop-color:#1C437E"/>
<stop offset="0.4834" style="stop-color:#064F8F"/>
<stop offset="0.8594" style="stop-color:#0563AB"/>
<stop offset="1" style="stop-color:#0C6DB6"/>
</linearGradient>
<path id="path3137" fill="url(#path3137_1_)" d="M423.501,945.31c-3.512-1.18-3.585-3.311-3.585-5.557
c0-0.106,0.109-1.044,0.27-2.089l42.538-160.396h-36.62L379.265,945.31H423.501z"/>
<path id="path3139" fill="#EC1F31" d="M774.086,865.846c-7.175,26.944-38.801,46.572-75.3,46.795l-36.99,0.01l23.958-90.248
h40.392c17.906-0.122,31.954,4.322,40.534,12.811C774.616,843.047,777.265,853.946,774.086,865.846L774.086,865.846z"/>
<path id="path3141" fill="#FFFFFF" d="M698.765,905.37c33.149-0.192,61.803-17.447,68.099-41.071
c1.733-6.493,2.206-15.881-5.427-23.302c-7.146-7.076-19.331-10.73-35.256-10.65l-34.674-0.067l-19.895,75.09H698.765
L698.765,905.37z"/>
<polygon id="polygon3143" fill="#EC2227" points="991.13,883.152 958.615,883.152 983.507,852.398 "/>
<path id="path3145" fill="#EC1F31" d="M1370.389,887.923c-4.507-4.102-8.175-3.854-19.626-3.774l-15.31,0.069
c-13.397-0.492-24.811-2.432-36.228-6.876c-7.214-2.785-14.417-7.376-14.639-7.512c-15.559-11.277-17.053-25.077-16.506-32.576
c0-0.858,0.042-2.257,0.18-4.021l-21.154,78.93c6.034-4.305,13.332-6.793,21.136-6.83l74.186,1.804
c7.1-0.609,26.282,0.096,29.144-10.268C1372.255,894.368,1371.894,889.258,1370.389,887.923L1370.389,887.923z M1342.479,899.649
l-74.247-1.791c-3.902,0.011-7.689,0.569-11.274,1.533l10.029-37.819c3.033,4.55,7.453,9.125,13.775,13.367
c18.467,12.4,40.223,15.297,54.403,15.801l15.773,0.297c8.906-0.068,13.396-0.717,13.939,1.823
C1366.162,898.342,1359.15,899.459,1342.479,899.649z"/>
<linearGradient id="path3158_1_" gradientUnits="userSpaceOnUse" x1="1918.9148" y1="-313.1176" x2="1918.9148" y2="-157.8687" gradientTransform="matrix(0.6091 -0.0032 -0.0032 -0.6091 -211.0843 758.5959)">
<stop offset="0" style="stop-color:#1F3F78"/>
<stop offset="0.1838" style="stop-color:#1C437E"/>
<stop offset="0.4834" style="stop-color:#064F8F"/>
<stop offset="0.8594" style="stop-color:#0563AB"/>
<stop offset="1" style="stop-color:#0C6DB6"/>
</linearGradient>
<path id="path3158" fill="url(#path3158_1_)" d="M1014.059,942.865l-7.124-29.573l-82.128,0.391l-22.872,29.756l-37.982,0.202
l100.345-124.335l25.55-31.533l45.887-0.244l-11.791,14.563l-0.168,0.298c-2.812,4.199-3.944,8.874-3.383,13.545l0.09,0.489
l33.025,126.252L1014.059,942.865L1014.059,942.865z M943.019,890.004l58.684-0.327l-13.808-57.874L943.019,890.004z"/>
<linearGradient id="path3171_1_" gradientUnits="userSpaceOnUse" x1="1518.3015" y1="-313.1202" x2="1518.3015" y2="-157.8339" gradientTransform="matrix(0.6091 -0.0032 -0.0032 -0.6091 -211.0843 758.5959)">
<stop offset="0" style="stop-color:#1F3F78"/>
<stop offset="0.1838" style="stop-color:#1C437E"/>
<stop offset="0.4834" style="stop-color:#064F8F"/>
<stop offset="0.8594" style="stop-color:#0563AB"/>
<stop offset="1" style="stop-color:#0C6DB6"/>
</linearGradient>
<path id="path3171" fill="url(#path3171_1_)" d="M608.609,944.986l41.309-155.465l83.419-0.433
c39.576-0.202,60.656,12.38,71.371,22.962c14.133,13.938,18.892,32.972,13.375,53.568
c-11.867,44.711-66.344,78.637-126.776,78.964L608.609,944.986z M651.908,919.661l46.776-0.244
c39.754-0.202,74.437-22.213,82.482-52.318c3.905-14.701,0.523-28.136-9.39-37.902c-9.998-9.88-25.875-15.071-45.811-14.949
l-46.109,0.244L651.908,919.661L651.908,919.661z"/>
<linearGradient id="path3184_1_" gradientUnits="userSpaceOnUse" x1="1743.0604" y1="-313.1214" x2="1743.0604" y2="-157.8366" gradientTransform="matrix(0.6091 -0.0032 -0.0032 -0.6091 -211.0843 758.5959)">
<stop offset="0" style="stop-color:#1F3F78"/>
<stop offset="0.1838" style="stop-color:#1C437E"/>
<stop offset="0.4834" style="stop-color:#064F8F"/>
<stop offset="0.8594" style="stop-color:#0563AB"/>
<stop offset="1" style="stop-color:#0C6DB6"/>
</linearGradient>
<path id="path3184" fill="url(#path3184_1_)" d="M851.524,938.302c0-0.244,0.608-4.66,0.655-5.084
c0.332-2.579,1.556-7.583,2.01-9.537l36.002-135.421l-36.668,0.202L816.18,929.089l-3.955,14.839l0,0l36.649-0.176h0.629
l0.015-0.045l5.454-0.024C851.65,942.038,851.524,940.544,851.524,938.302z"/>
<linearGradient id="path3197_1_" gradientUnits="userSpaceOnUse" x1="2264.9788" y1="-316.0085" x2="2264.9788" y2="-154.9454" gradientTransform="matrix(0.6091 -0.0032 -0.0032 -0.6091 -211.0843 758.5959)">
<stop offset="0" style="stop-color:#1F3F78"/>
<stop offset="0.1838" style="stop-color:#1C437E"/>
<stop offset="0.4834" style="stop-color:#064F8F"/>
<stop offset="0.8594" style="stop-color:#0563AB"/>
<stop offset="1" style="stop-color:#0C6DB6"/>
</linearGradient>
<path id="path3197" fill="url(#path3197_1_)" d="M1234.206,786.586l-17.128,64.412l0,0l-0.031,0.3l-3.586,13.436l-0.205,0.353
l-2.948,10.977c-1.478,3.544-4.197,2.907-5.685,2.217l-9.316-9.145c-0.083-0.11-0.244-0.207-0.354-0.271l-0.301-0.223
l-16.561-16.514l-0.872-0.888l0,0l-68.578-68.146l-42.461,159.648l37.293-0.218l0,0l5.428-0.026
c-3.315-1.646-3.41-3.129-3.432-5.34c0-0.285,0.606-4.686,0.654-5.135c0.467-3.248,2.235-10.353,2.235-10.353l11.613-43.622
h-0.043l2.124-7.923l1.823-6.807l0.067-0.095l2.798-10.268c1.412-3.533,4.199-2.883,5.68-2.219l8.566,8.495l0.196,0.122
l7.633,7.593l11.014,10.815h-0.112l66.134,65.755h3.264l39.693-148.82c0.713-2.972,1.807-5.731,3.235-8.288L1234.206,786.586
L1234.206,786.586z"/>
<path id="path3199" fill="none" stroke="#010101" stroke-width="0.0131" d="M1297.194,733.359"/>
<linearGradient id="path3206_1_" gradientUnits="userSpaceOnUse" x1="2555.2305" y1="-317.61" x2="2555.2244" y2="-152.6884" gradientTransform="matrix(0.6091 -0.0032 -0.0032 -0.6091 -211.0843 758.5959)">
<stop offset="0" style="stop-color:#1C437F"/>
<stop offset="1" style="stop-color:#0E78BE"/>
</linearGradient>
<path id="path3206" fill="url(#path3206_1_)" d="M1402.907,862.179c4.865,7.214,8.234,16.409,8.234,26.532
c0,29.889-26.823,52.032-51.757,53.66l-18.597,1.228c-6.512,0.324-11.267,0.324-12.219,0.324c0,0-8.532,0.287-18.409-0.282
c-65.531-3.452-71.53,0.529-71.53,0.529c-0.314-2.134,0.162-5.002,0.552-6.902c0.242-1.416,0.677-3.123,1.339-5.002
c4.314-11.806,14.765-19.876,27.712-19.956l74.099,1.792c7.585-0.055,30.641-0.287,36.517-16.684
c2.313-6.385,0.141-10.924-1.352-13.002c-4.072-5.773-12.303-8.029-26.728-7.99l-15.068-0.147
c-11.225-0.367-26.887-3.328-36.509-7.229c-6.599-2.701-10.254-5.758-10.254-5.758c-12.057-8.939-14-19.714-13.423-26.26
c0.184-6.102,2.155-55.011,78.268-57.616c0,0,8.08-0.491,11.931-0.491l24.323,0.232c7.743,0.378,20.06,0.378,28.144,0.715
c5.529,0.046,9.903,0,15.459,0.046c5.682-0.178,12.474-0.178,19.597-1.523c0,0-0.154,8.027-1.751,12.633
c-4.306,11.929-12.415,17.609-25.439,17.728l-76.561,0.274c-7.626,0.123-31.993,0.826-36.727,16.479l-0.111,0.338
c-1.446,4.43-0.863,8.787,1.656,12.213c4.094,5.653,12.392,8.072,26.935,8.03l25.333-0.162
C1366.573,845.93,1391.154,844.655,1402.907,862.179L1402.907,862.179z"/>
<g id="g3208">
<path id="path3210" fill="#EC2227" d="M1013.143,645.05l1.74-6.429l-69.109,46.777L902.6,640.359l-30.655,113.156h37.922
l12.048-44.396l15.924,17.144l21.367-14.55l-11.32,41.802h37.888l4.694-17.2c0,0,7.556,12.867,25.793,17.013
c25.006,6.288,46.809-3.804,50.553-5.547c4.423-2.009,11.509-6.086,15.645-9.93l-4.196,15.664h37.95l12.028-44.396
l15.926,17.144l21.377-14.55l-11.339,41.802h97.799c0,0,14.771,0.816,27.219-5.255l9.223-11.373c0,0-4.96,4.702-11.873,7.593
c-6.932,2.919-14.156,4.893-24.889,4.561h-91.581l13.011-47.834l-28.256,19.145l-18.818-20.242l-13.284,48.88h-28.599
l8.327-30.678c0,0-4.681,10.708-16.766,19.185c-9.136,6.409-19.868,10.938-32.599,12.673c-5.114,0.707-21.061,2.039-34.122-4.05
c-3.926-1.836-17.951-8.934-19.127-25.485l-7.541,28.355h-28.555l12.958-47.785l-28.248,19.145l-18.775-20.24l-13.285,48.88
h-28.63l27.083-99.773l40.382,41.826L1013.143,645.05L1013.143,645.05z"/>
<path id="path3212" fill="#EC2227" d="M1011.595,650.945l-1.196,4.524h23.906l-13.241,49.058c0,0-3.723,9.96-0.122,16.535
c3.574,6.518,13.463,10.283,26.838,6.073c2.86-0.938,15.358-5.802,19.78-19.796c0.492-1.619,7.197-26.532,7.197-26.532
l6.916-25.298h35.541l34.276,35.747l53.611-35.774h68.274c0,0,18.51-0.883,26.925,10.337
c8.923,13.236-2.506,26.576-2.506,26.576s-3.343,4.146-8.21,6.89c0,0,17.274,8.718,5.678,29.28l59.939-73.324h35.805
l-11.268,13.816c0,0-2.778,2.458-1.507,6.48c1.331,4.195,16.689,65.208,16.689,65.208l23.131-85.655h28.626l-25.36,93.54
h-54.575l-3.844-16.168h-39.89l-12.673,16.314h-25.785l-3.649,4.526h31.632l12.699-16.274h34.096l3.844,16.274h61.555
l27.828-102.724h-37.94l-19.615,72.347l-12.335-48.135c0,0-0.771-1.493,0.638-3.097c1.443-1.552,17.231-20.965,17.231-20.965
h-47.484l-49.587,60.701c0,0-0.521-6.251-6.32-12.049c0,0,12.325-9.282,10.857-25.801c-0.369-3.992-3.7-19.876-29.094-22.486
c-1.691-0.147-6.095-0.147-6.095-0.147h-69.069l-51.604,34.454l-32.988-34.454h-40.94l-14.539,53.624
c0,0-2.886,13.531-17.539,18.315c-3.836,1.25-13.609,2.987-19.06-1.428c-5.46-4.388-2.297-13.507-2.297-13.507l15.384-57.004
H1011.595L1011.595,650.945z"/>
<g id="g3214">
<path id="path3216" fill="#EC2227" d="M1267.958,677.563h-32.511l-3.418,12.634h30.848c5.868-0.175,11.006-3.612,11.37-8.166
C1274.67,677.441,1267.958,677.563,1267.958,677.563L1267.958,677.563z M1263.401,685.659l-25.484,0.053l1.007-3.639h28.541
c0,0,1.736-0.111,2.161,0.202C1270.069,682.614,1267.466,685.521,1263.401,685.659z"/>
<path id="path3218" fill="#EC2227" d="M1262.996,712.22l-36.919-0.04l-4.014,14.86l35.436-0.067
c6.461-0.407,12.848-4.242,13.038-9.375C1270.774,712.356,1262.996,712.22,1262.996,712.22L1262.996,712.22z M1257.388,722.502
l-29.453,0.03l1.611-5.834h33.54c0,0,3.056-0.24,2.929,1.092C1265.893,719.149,1262.743,722.07,1257.388,722.502z"/>
</g>
<polygon id="polygon3220" fill="#EC2227" points="1342.559,709.49 1352.643,697.628 1355.452,709.49 "/>
</g>
<linearGradient id="path3233_1_" gradientUnits="userSpaceOnUse" x1="1225.2786" y1="-312.2636" x2="1224.4427" y2="-152.6485" gradientTransform="matrix(0.6091 0 0 -0.6091 -211.6832 755.5115)">
<stop offset="0" style="stop-color:#1F3F78"/>
<stop offset="0.1838" style="stop-color:#1C437E"/>
<stop offset="0.4834" style="stop-color:#064F8F"/>
<stop offset="0.8594" style="stop-color:#0563AB"/>
<stop offset="1" style="stop-color:#0C6DB6"/>
</linearGradient>
<path id="path3233" fill="url(#path3233_1_)" d="M599.196,789.93l-17.063,64.383l0,0l-0.083,0.3l-3.581,13.476l-0.168,0.3
l-2.991,11.02c-1.454,3.516-4.219,2.892-5.678,2.217l-9.308-9.175c-0.108-0.096-0.257-0.176-0.339-0.298l-0.333-0.205
l-16.568-16.505l-0.869-0.872l0,0l-68.559-68.147l-42.273,158.971h41.77c-2.553-1.472-2.643-2.897-2.67-4.959
c0-0.242,0.612-4.66,0.65-5.098c0.43-3.247,2.221-10.339,2.221-10.339l11.645-43.625h-0.076l2.148-7.904l1.821-6.847l0.063-0.108
l2.783-10.219c1.449-3.561,4.205-2.91,5.666-2.252l8.606,8.485l0.17,0.127l7.669,7.636l10.986,10.804h-0.116l64.676,64.301h5.094
l39.33-147.409c0.702-2.961,1.793-5.746,3.249-8.261L599.196,789.93L599.196,789.93z"/>
</g>
</g>
</g>
</svg>

Chargement…
Annuler
Enregistrer