Merge branch 'release/v1.8.1' of hardi/opt-cc into master

pull/45/head v1.8.1
hardi 2018-08-20 08:56:04 +02:00 committed by Gogs
commit 3be0c2d1ca
36 changed files with 629 additions and 953 deletions

View File

@ -1,6 +1,6 @@
{
"name": "opt-cc",
"version": "1.8.0",
"version": "1.8.1",
"author": "Florian Hartwich <hardi@noarch.de>",
"private": true,
"scripts": {

View File

@ -31,23 +31,28 @@ export class AppComponent implements OnInit {
svgIcons = {
'add': 'outline-add_box-24px',
'add-user': 'twotone-person_add-24px',
'edit': 'baseline-edit-24px',
'delete': 'baseline-delete-24px',
'stats-detail': 'round-assessment-24px',
'arrow-up': 'baseline-arrow_upward-24px',
'chevron-left': 'baseline-chevron_left-24px',
'chevron-right': 'baseline-chevron_right-24px',
'arrow-up': 'baseline-arrow_upward-24px',
'delete': 'baseline-delete-24px',
'edit': 'baseline-edit-24px',
'more-vert': 'baseline-more_vert-24px',
// --------STATISTICS---------
'award': 'stats/award',
'battle': 'stats/battle',
'flagTouch': 'stats/flagTouch',
'friendlyFire': 'stats/friendlyFire',
'highscore': 'stats/highscore',
'kill': 'stats/kill',
'respawn': 'stats/respawn',
'revive': 'stats/respawn',
'stats-chart': 'stats/statsChart',
// --SCOREBOARD--
'death': 'stats/scoreboard/death',
'flagTouch': 'stats/scoreboard/flagTouch',
'friendlyFire': 'stats/scoreboard/friendlyFire',
'kill': 'stats/scoreboard/kill',
'respawn': 'stats/scoreboard/respawn',
'revive': 'stats/scoreboard/revive',
'stats-detail': 'stats/scoreboard/round-assessment-24px',
'vehicleAir': 'stats/scoreboard/vehicleAir',
'vehicleHeavy': 'stats/scoreboard/vehicleHeavy',
'vehicleLight': 'stats/scoreboard/vehicleLight',
};
version = 'v'.concat(require('./../../../package.json').version);
@ -87,7 +92,7 @@ export class AppComponent implements OnInit {
initMaterialSvgIcons() {
Object.keys(this.svgIcons).forEach(key => {
const fileUri = '../assets/icon/'.concat(this.svgIcons[key])
.concat('.svg');
.concat('.svg');
this.iconRegistry.addSvgIcon(key, this.sanitizer.bypassSecurityTrustResourceUrl(fileUri));
});
}

View File

@ -26,11 +26,6 @@ h2 {
width: 100%;
}
table.mat-table img {
filter: invert(60%);
margin-left: -15px;
}
:host /deep/ table.mat-table > thead {
position: absolute;
width: 320px;
@ -46,6 +41,26 @@ table.mat-table img {
text-indent: 14px;
}
.mat-column-vehicleLight mat-icon.mat-icon {
width: 28px;
margin-bottom: 5px;
}
.mat-column-vehicleHeavy mat-icon.mat-icon {
width: 33px;
margin-top: 5px;
}
.mat-column-vehicleAir mat-icon.mat-icon {
width: 35px;
margin-bottom: 5px;
}
:host /deep/ .mat-table .mat-icon {
color: #666666;
margin-left: -32px;
}
/* Table Scrollbar BEGIN */
.highscore-table-container::-webkit-scrollbar {

View File

@ -35,9 +35,9 @@
<ng-container matColumnDef="{{attributeMap.prop}}">
<th mat-header-cell *matHeaderCellDef>
<img src="../../../../assets/scoreboard/{{attributeMap.prop}}.png"
matTooltip="{{attributeMap.head}}"
alt="{{attributeMap.head}}">
<mat-icon svgIcon="{{attributeMap.prop}}"
matTooltip="{{attributeMap.head}}">
</mat-icon>
</th>
<td mat-cell *matCellDef="let element"> {{element[attributeMap.prop]}}</td>
</ng-container>

View File

@ -6,9 +6,9 @@
(campaignDelete)="deleteCampaign($event)">
</campaign-navigation>
<div *ngIf="selectedCampaign._id !== 'all'"
class="side-bar"
[ngClass]="{collapsed: collapsed}">
<div class="side-bar"
[ngClass]="{collapsed: collapsed}"
[style.display]="selectedCampaign._id === 'all' ? 'none' : 'block'">
<war-list
[collapsed]="collapsed"
[campaign]="selectedCampaign">

View File

@ -21,7 +21,7 @@ export class FractionStatsComponent implements OnInit, OnChanges {
@Input() logData: any;
startDateObj: Date;
load
initialized: any;
public activeChartSelect: string;
@ -274,40 +274,46 @@ export class FractionStatsComponent implements OnInit, OnChanges {
const vehicleEntryDate = new Date(vehicleEntry.time);
if (vehicleEntry.fraction === 'BLUFOR') {
vehicleKillCountBlufor++;
switch (vehicleEntry.vehicleClass) {
case 'LIGHT':
vehicleLightCountBlufor++;
break;
case 'HEAVY':
vehicleHeavyCountBlufor++;
break;
case 'AIR':
vehicleAirCountBlufor++;
break;
if (vehicleEntry.vehicleClass) {
switch (vehicleEntry.vehicleClass) {
case 'LIGHT':
vehicleLightCountBlufor++;
break;
case 'HEAVY':
vehicleHeavyCountBlufor++;
break;
case 'AIR':
vehicleAirCountBlufor++;
break;
}
}
} else {
vehicleKillCountOpfor++;
switch (vehicleEntry.vehicleClass) {
case 'LIGHT':
vehicleLightCountOpfor++;
break;
case 'HEAVY':
vehicleHeavyCountOpfor++;
break;
case 'AIR':
vehicleAirCountOpfor++;
break;
if (vehicleEntry.vehicleClass) {
switch (vehicleEntry.vehicleClass) {
case 'LIGHT':
vehicleLightCountOpfor++;
break;
case 'HEAVY':
vehicleHeavyCountOpfor++;
break;
case 'AIR':
vehicleAirCountOpfor++;
break;
}
}
}
if (this.isTwoMinutesAhead(vehicleEntryDate, this.tmpVehicleData) || index === this.logData.vehicle.length - 1) {
this.tmpVehicleData[0].series.push(ChartUtils.getSeriesEntry(vehicleEntryDate, vehicleKillCountBlufor));
this.tmpVehicleData[1].series.push(ChartUtils.getSeriesEntry(vehicleEntryDate, vehicleKillCountOpfor));
this.tmpVehicleData[2].series.push(ChartUtils.getSeriesEntry(vehicleEntryDate, vehicleLightCountBlufor));
this.tmpVehicleData[3].series.push(ChartUtils.getSeriesEntry(vehicleEntryDate, vehicleLightCountOpfor));
this.tmpVehicleData[4].series.push(ChartUtils.getSeriesEntry(vehicleEntryDate, vehicleHeavyCountBlufor));
this.tmpVehicleData[5].series.push(ChartUtils.getSeriesEntry(vehicleEntryDate, vehicleHeavyCountOpfor));
this.tmpVehicleData[6].series.push(ChartUtils.getSeriesEntry(vehicleEntryDate, vehicleAirCountBlufor));
this.tmpVehicleData[7].series.push(ChartUtils.getSeriesEntry(vehicleEntryDate, vehicleAirCountOpfor));
if (vehicleEntry.vehicleClass) {
this.tmpVehicleData[2].series.push(ChartUtils.getSeriesEntry(vehicleEntryDate, vehicleLightCountBlufor));
this.tmpVehicleData[3].series.push(ChartUtils.getSeriesEntry(vehicleEntryDate, vehicleLightCountOpfor));
this.tmpVehicleData[4].series.push(ChartUtils.getSeriesEntry(vehicleEntryDate, vehicleHeavyCountBlufor));
this.tmpVehicleData[5].series.push(ChartUtils.getSeriesEntry(vehicleEntryDate, vehicleHeavyCountOpfor));
this.tmpVehicleData[6].series.push(ChartUtils.getSeriesEntry(vehicleEntryDate, vehicleAirCountBlufor));
this.tmpVehicleData[7].series.push(ChartUtils.getSeriesEntry(vehicleEntryDate, vehicleAirCountOpfor));
}
}
}
this.addFinalTimeData(this.tmpVehicleData);
@ -396,7 +402,9 @@ export class FractionStatsComponent implements OnInit, OnChanges {
this.tmpBudgetData[1].series.push(ChartUtils.getSeriesEntry(endDate, this.war.endBudgetOpfor));
} else {
for (let j = 0; j < tmpCollection.length; j++) {
if (tmpCollection[j].series[tmpCollection[j].series.length - 1].name < endDate) {
// mayBe check is needed for logs that are simply not existent in older wars, i.e. vehicleKills
const maybeLast = tmpCollection[j].series[tmpCollection[j].series.length - 1];
if (maybeLast && maybeLast.name < endDate) {
tmpCollection[j].series.push(
ChartUtils.getSeriesEntry(endDate, tmpCollection[j].series[tmpCollection[j].series.length - 1].value)
);

View File

@ -24,10 +24,6 @@
margin-top: -5px;
}
table.mat-table img {
filter: invert(60%);
}
:host /deep/ table.mat-table > tbody {
margin-top: 60px;
display: block;
@ -47,12 +43,25 @@ table.mat-table img {
text-indent: 9px;
}
.mat-column-vehicleLight mat-icon.mat-icon {
width: 28px;
margin-bottom: 5px;
}
.mat-column-vehicleHeavy mat-icon.mat-icon {
width: 33px;
margin-top: 5px;
}
.mat-column-vehicleAir mat-icon.mat-icon {
width: 35px;
margin-bottom: 5px;
}
td.mat-cell:last-child, td.mat-footer-cell:last-child, th.mat-header-cell:last-child {
padding-right: 0;
}
/* MAT ICON BUTTON */
:host /deep/ .mat-table .mat-icon {
color: #666666;
}

View File

@ -21,9 +21,9 @@
<ng-container *ngFor="let column of tableHead.slice(2, tableHead.length)" matColumnDef="{{column.prop}}">
<th mat-header-cell *matHeaderCellDef mat-sort-header="{{column.prop}}">
<img src="../../../../assets/scoreboard/{{column.prop}}.png"
matTooltip="{{column.head}}"
alt="{{column.head}}">
<mat-icon svgIcon="{{column.prop}}"
matTooltip="{{column.head}}">
</mat-icon>
</th>
<td mat-cell *matCellDef="let element">{{element[column.prop]}}</td>
</ng-container>

View File

@ -1,4 +1,4 @@
import {AfterViewInit, Component, Input, OnChanges, SimpleChanges} from '@angular/core';
import {Component, Input, OnChanges, SimpleChanges} from '@angular/core';
import {ActivatedRoute, Router} from '@angular/router';
import {Campaign, War} from '../../../models/model-interfaces';
import {WarService} from '../../../services/logs/war.service';
@ -11,7 +11,7 @@ import {RouteConfig} from '../../../app.config';
templateUrl: './war-list.component.html',
styleUrls: ['./war-list.component.css']
})
export class WarListComponent implements OnChanges, AfterViewInit {
export class WarListComponent implements OnChanges {
@Input() campaign: Campaign;
@ -19,7 +19,7 @@ export class WarListComponent implements OnChanges, AfterViewInit {
selectedWarId: string | number;
initialized = false;
changeCount = 0;
public readonly highscore = 'HIGHSCORE';
@ -30,12 +30,9 @@ export class WarListComponent implements OnChanges, AfterViewInit {
private route: ActivatedRoute) {
}
ngAfterViewInit() {
this.initialized = true;
}
ngOnChanges(changes: SimpleChanges) {
if (this.initialized && changes.campaign) {
if (this.changeCount <= 1) {
this.changeCount++;
const url = this.router.url;
const subPathWar = 'war/';
const subPathHighscore = 'highscore/';
@ -54,6 +51,8 @@ export class WarListComponent implements OnChanges, AfterViewInit {
}
}
}
} else if (changes.campaign) {
this.selectOverview(this.campaign._id);
}
}
@ -72,9 +71,6 @@ export class WarListComponent implements OnChanges, AfterViewInit {
selectOverview(campaignId) {
if (this.selectedWarId !== campaignId) {
this.selectedWarId = campaignId;
setTimeout(_ => {
window.dispatchEvent(new Event('resize'));
});
this.router.navigate([{outlets: {'right': ['overview', campaignId]}}], {relativeTo: this.route});
}
}
@ -99,12 +95,12 @@ export class WarListComponent implements OnChanges, AfterViewInit {
deleteWar(war: War) {
if (confirm('Soll die Schlacht ' + war.title + ' wirklich gelöscht werden?')) {
this.warService.deleteWar(war._id)
.subscribe((res) => {
if (this.selectedWarId === war._id) {
this.selectOverview('all');
}
this.campaign.wars.splice(this.campaign.wars.indexOf(war), 1);
});
.subscribe((res) => {
if (this.selectedWarId === war._id) {
this.selectOverview('all');
}
this.campaign.wars.splice(this.campaign.wars.indexOf(war), 1);
});
}
}
}

View File

@ -12,7 +12,7 @@ div.list-entry:hover, a.list-entry:hover {
}
:host/deep/.list-entry mat-icon > svg {
color: #222222;
color: #666666;
}
.decoration-list-preview, .squad-list-preview {

View File

@ -1,5 +1,4 @@
.icon-award {
background: url(../../../assets/award.png);
width: 27px;
height: 42px;
display: block;

View File

@ -13,9 +13,8 @@
</div>
<div class="col-sm-4">
<span (click)="delete(); $event.stopPropagation()" matTooltip="Löschen"
class="glyphicon glyphicon-trash trash pull-right"></span>
<span (click)="award(); $event.stopPropagation()" matTooltip="Auszeichnungen" class="icon-award pull-right"></span>
<mat-icon (click)="delete(); $event.stopPropagation()" matTooltip="Löschen" class="pull-right" style="margin-top: 8px;" svgIcon="delete"></mat-icon>
<mat-icon (click)="award(); $event.stopPropagation()" matTooltip="Auszeichnungen" class="icon-award pull-right" svgIcon="award"></mat-icon>
</div>
</div>
</div>

View File

Before

Width:  |  Height:  |  Size: 889 B

After

Width:  |  Height:  |  Size: 889 B

View File

@ -1,196 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 83.8 100" style="enable-background:new 0 0 83.8 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{display:inline;fill:#010002;}
.st3{stroke:#FFFFFF;stroke-width:9;stroke-miterlimit:10;}
.st4{display:inline;fill:#222222;}
.st5{fill:#FFFFFF;}
.st6{display:inline;fill:#FCFCFC;}
</style>
<g id="Capa_1" class="st0">
<polygon class="st1" points="187.9,27.1 145.9,27.1 -161.1,27.1 -161.1,65.1 145.9,65.1 187.9,65.1 255.9,65.1 255.9,27.1 "/>
<polygon class="st1" points="27.6,-89.4 27.6,-47.4 27.6,259.6 65.6,259.6 65.6,-47.4 65.6,-89.4 65.6,-157.4 27.6,-157.4 "/>
<path class="st2" d="M46.6-162.4c-115.2,0-208.5,93.3-208.5,208.5s93.3,208.5,208.5,208.5s208.5-93.3,208.5-208.5
S161.7-162.4,46.6-162.4z M46.6,216.1c-93.9,0-170-76.1-170-170s76.1-170,170-170s170,76.1,170,170S140.4,216.1,46.6,216.1z"/>
<rect x="9.7" y="-193.9" class="st2" width="73.7" height="60.3"/>
<rect x="9.7" y="234.6" class="st2" width="73.7" height="60.3"/>
<rect x="-204" y="15.9" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -213.2508 -121.1083)" class="st2" width="73.7" height="60.3"/>
<rect x="224.4" y="15.9" transform="matrix(6.123234e-17 -1 1 6.123234e-17 215.2142 307.3567)" class="st2" width="73.7" height="60.3"/>
</g>
<g id="Capa_3" class="st0">
<rect x="310.9" y="-192.9" style="display:inline;fill:none;" width="82.5" height="96.1"/>
<text transform="matrix(1 0 0 1.7 310.882 -169.3731)" class="st1" style="font-family:'CharlieBrownM54'; font-size:36px;">F</text>
<rect x="427.9" y="-157.4" style="display:inline;fill:none;" width="82.5" height="96.1"/>
<text transform="matrix(1 0 0 1 427.882 -121.3575)" class="st1" style="font-family:'Copy0865'; font-size:36px;">F</text>
<g class="st1">
<g>
<path d="M81.7,122.4H57.9V8.4c0-9.3,2.2-16.7,6.5-22.3c4.2-5.5,9.6-8.2,16-8.2h68.6v32.7H81.7v16.8h59.7v31H81.7V122.4z"/>
</g>
<g>
<path d="M-18.4,122.4h-23.9V8.4c0-9.3,2.2-16.7,6.5-22.3c4.2-5.5,9.6-8.2,16-8.2h68.6v32.7h-67.2v16.8h59.7v31h-59.7V122.4z"/>
</g>
</g>
<polygon class="st1" points="-85.4,27.1 -95.5,27.1 -169.1,27.1 -169.1,65.1 -95.5,65.1 -85.4,65.1 -69.1,65.1 -69.1,27.1 "/>
<polygon class="st1" points="247.6,27.1 237.5,27.1 163.9,27.1 163.9,65.1 237.5,65.1 247.6,65.1 263.9,65.1 263.9,27.1 "/>
<polygon class="st1" points="26.9,166.4 26.9,176.5 26.9,250.1 64.9,250.1 64.9,176.5 64.9,166.4 64.9,150.1 26.9,150.1 "/>
<polygon class="st1" points="26.9,-141.6 26.9,-131.6 26.9,-57.9 64.9,-57.9 64.9,-131.6 64.9,-141.6 64.9,-157.9 26.9,-157.9 "/>
<path class="st2" d="M46.6-162.4c-115.2,0-208.5,93.3-208.5,208.5s93.3,208.5,208.5,208.5s208.5-93.3,208.5-208.5
S161.7-162.4,46.6-162.4z M46.6,216.1c-93.9,0-170-76.1-170-170s76.1-170,170-170s170,76.1,170,170S140.4,216.1,46.6,216.1z"/>
<rect x="9.7" y="-193.9" class="st2" width="73.7" height="60.3"/>
<rect x="9.7" y="234.6" class="st2" width="73.7" height="60.3"/>
<rect x="-204" y="15.9" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -213.2508 -121.1083)" class="st2" width="73.7" height="60.3"/>
<rect x="224.4" y="15.9" transform="matrix(6.123234e-17 -1 1 6.123234e-17 215.2142 307.3567)" class="st2" width="73.7" height="60.3"/>
</g>
<g id="Capa_2" class="st0">
<g class="st1">
<g>
<path class="st3" d="M252.9,55.9c-1.2,8.4-1.2,16.8-2.5,25.2c-5.2,32.8-17.4,62.6-37.7,88.9c-29.5,38.3-67.8,63-114.9,73.8
c-19.9,4.5-40,5.4-60.4,3.7c-24.8-2.1-48.3-8.5-70.6-19.3c-14.8-7.2-28.4-16.4-41-27.1c-17-14.5-31.1-31.3-42.3-50.6
c-11.7-20-19.7-41.4-23.8-64.1c-1.9-10.3,0.9-13.9,11.2-15.9c8.3-1.6,16.5-3.6,25-3.8c6.8-0.2,9.8,2.1,11.2,8.9
c2.9,13.9,6.6,27.5,13.1,40.1c23,44.9,59.2,72.9,108.9,81.8c44.5,8,84.7-3.1,119.9-31.5c29.3-23.6,47.1-54.4,53.3-91.3
c7.1-42.4-3.2-81.1-29.1-115.3c-23.9-31.5-55.9-50.3-94.7-56.7c-40.3-6.6-77.3,2.4-110.8,26.2c-9,6.4-16.7,14.1-25.5,22.8
c7.5-1.2,13.7-2.2,19.9-3.3c8.3-1.5,16.6-3.1,24.9-4.5c8.3-1.4,12.7,1.4,14.5,9.6c1.8,8.1,3.4,16.2,4.6,24.4
C7.2-14.5,3.2-9.7-3.5-8.6C-31.8-3.9-60,1.2-88.2,6.3c-9.9,1.8-19.9,3.5-29.8,5.5c-7.9,1.6-14.7-0.2-16.6-11.3
c-6.3-36.9-13-73.7-19.6-110.6c0-4,0-8,0-12c2.3-3.3,5.3-5.3,9.3-6c7.8-1.4,15.6-3,23.5-4.2c8.6-1.3,13,2,14.7,10.7
c1,5.4,1.9,10.7,2.9,16.1c1.7,9.6,3.5,19.2,4.9,27.3c2.2-1.7,4.9-3.4,7.3-5.5c2.4-2.1,4.5-4.4,6.7-6.7c21.9-22.7,48.3-38,78-48
c13.2-4.4,26.9-6.9,40.7-8.7c13.7,0,27.3,0,41,0c16.8,2.1,33.2,5.6,49.2,11.5c23.8,8.8,45.1,21.8,63.9,38.7
c14.2,12.9,26.3,27.6,36.3,44.1c13.3,22,21.9,45.6,26.1,71c1.4,8.5,1.4,17.2,2.6,25.7C252.9,47.9,252.9,51.9,252.9,55.9z"/>
</g>
</g>
</g>
<g id="Capa_5">
<g>
<g>
<path d="M13.1,51.8c-3-11.5-6.3-22.9-9.4-34.4c-0.5-2.1-1.9-3.4-3.2-4.8c-1.2-1.2-0.4-5.9,0.8-9.9c1.7-0.1,6.5,7.4,6.1,8.7
c-0.6,2.1-0.4,3.9,0.2,6c0.7-2.8,0.7-3.9,2-5.6C15.5,4,23.2,0.3,32.9,0C41-0.2,37,1.5,45,2.7c8.3,1.2,16.6,0.2,24.8-2.4
c1.3-0.4,1.8,0.2,2.2,1.4c2.3,8.2,4.5,18.4,6.8,26.6c1.5,5.5,3,7.6,4.5,13.1c0.9,3.1,0.8,3.4-2.4,4.2c-4.9,1.2-9.9,1.3-15,0.9
c-10.2-0.8-8.3-3.7-18.6-3.7c-6.3,0-32.8,2.8-25.7,24.3c2.7,9.7,6.3,22.7,8.9,32.4c0.3,1-3.6,0.7-4.2-1.2
c-3.1-11.1-7.1-25.6-10.1-36.7c-0.1-0.3-0.2-0.5-0.4-1"/>
</g>
</g>
</g>
<g id="Capa_6" class="st0">
<path class="st2" d="M94.4,83.1l11.3-21.2h20.1v-6.5h-22.1c-1.2,0-2.3,0.7-2.9,1.7l-8.6,16.3l-9.8-28.5c-0.5-1.3-1.6-2.2-3-2.2
c-1.4,0-2.6,0.7-3.1,2l-8,18.9L58.1,2.7c-0.3-1.5-1.8-2.7-3.2-2.7c-1.8,0-3,1.1-3.2,2.6l-9.4,74.2l-8.5-44.2
c-0.3-1.4-1.4-2.4-2.8-2.6c-1.4-0.2-2.8,0.6-3.4,1.8L16.3,55.4H0v6.5h18.4c1.2,0,2.4-0.7,3-1.9l7.9-16.4l10.3,53.7
c0.3,1.5,1.7,2.7,3.2,2.7h0.1c1.6,0,2.9-1.2,3.1-2.8l9.4-74l8.5,52.3c0.3,1.4,1.4,2.5,2.8,2.6c1.5,0.2,2.8-0.6,3.4-2l8.9-21
l9.4,27.5c0.4,1.2,1.6,2.1,2.8,2.2C92.6,84.9,93.8,84.2,94.4,83.1z"/>
</g>
<g id="Capa_4" class="st0">
<image style="display:inline;overflow:visible;" width="1022" height="139" xlink:href="F2382C46.jpg" transform="matrix(1 0 0 1 -794.1179 -358.8575)">
</image>
<rect x="-463.8" y="-295.8" class="st4" width="104.7" height="37"/>
<rect x="-470.1" y="-107.8" class="st4" width="44" height="37"/>
<g class="st1">
<polygon class="st5" points="-443.7,-89.3 -446.4,-89.3 -466.5,-89.3 -466.5,-86.9 -446.4,-86.9 -443.7,-86.9 -439.2,-86.9
-439.2,-89.3 "/>
<polygon class="st5" points="-454.1,-97.3 -454.1,-94.5 -454.1,-74.4 -451.6,-74.4 -451.6,-94.5 -451.6,-97.3 -451.6,-101.7
-454.1,-101.7 "/>
<path class="st5" d="M-452.9-102.4c-7.5,0-13.6,6.1-13.6,13.6s6.1,13.6,13.6,13.6c7.5,0,13.6-6.1,13.6-13.6
S-445.4-102.4-452.9-102.4z M-452.9-77.6c-6.1,0-11.1-5-11.1-11.1s5-11.1,11.1-11.1c6.1,0,11.1,5,11.1,11.1
S-446.8-77.6-452.9-77.6z"/>
<rect x="-454.7" y="-104.1" class="st5" width="3.6" height="3.9"/>
<rect x="-454.7" y="-76" class="st5" width="3.6" height="3.9"/>
<rect x="-468.7" y="-90.1" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -378.8331 -555.0355)" class="st5" width="3.6" height="3.9"/>
<rect x="-440.7" y="-90.1" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -350.777 -526.9794)" class="st5" width="3.6" height="3.9"/>
</g>
<g class="st1">
<polygon class="st5" points="-445,-278.8 -447.2,-278.8 -463.6,-278.8 -463.6,-276.7 -447.2,-276.7 -445,-276.7 -441.4,-276.7
-441.4,-278.8 "/>
<polygon class="st5" points="-453.5,-284.7 -453.5,-282.5 -453.5,-266.1 -451.5,-266.1 -451.5,-282.5 -451.5,-284.7
-451.5,-288.3 -453.5,-288.3 "/>
<path class="st5" d="M-452.5-288.9c-6.1,0-11.1,5-11.1,11.1s5,11.1,11.1,11.1c6.1,0,11.1-5,11.1-11.1S-446.4-288.9-452.5-288.9z
M-452.5-268.7c-5,0-9.1-4.1-9.1-9.1c0-5,4.1-9.1,9.1-9.1c5,0,9.1,4.1,9.1,9.1C-443.5-272.8-447.5-268.7-452.5-268.7z"/>
<rect x="-454.5" y="-290.3" class="st5" width="3.9" height="3.2"/>
<rect x="-454.5" y="-267.5" class="st5" width="3.9" height="3.2"/>
<rect x="-465.9" y="-279.4" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -186.1642 -741.693)" class="st5" width="3.9" height="3.2"/>
<rect x="-443.1" y="-279.4" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -163.3761 -718.9049)" class="st5" width="3.9" height="3.2"/>
</g>
<rect x="-163.3" y="-295.8" class="st4" width="262.2" height="37"/>
<path class="st6" d="M-140.3-269.9l2.5-4.7h4.5v-1.5h-4.9c-0.3,0-0.5,0.1-0.6,0.4l-1.9,3.6l-2.2-6.3c-0.1-0.3-0.4-0.5-0.7-0.5
c-0.3,0-0.6,0.2-0.7,0.4l-1.8,4.2l-2.3-13.6c-0.1-0.3-0.4-0.6-0.7-0.6c-0.4,0-0.7,0.2-0.7,0.6l-2.1,16.5l-1.9-9.8
c-0.1-0.3-0.3-0.5-0.6-0.6c-0.3,0-0.6,0.1-0.8,0.4l-2.5,5.2h-3.6v1.5h4.1c0.3,0,0.5-0.2,0.7-0.4l1.8-3.7l2.3,12
c0.1,0.3,0.4,0.6,0.7,0.6h0c0.4,0,0.6-0.3,0.7-0.6l2.1-16.5l1.9,11.7c0.1,0.3,0.3,0.6,0.6,0.6c0.3,0,0.6-0.1,0.8-0.4l2-4.7l2.1,6.1
c0.1,0.3,0.3,0.5,0.6,0.5C-140.7-269.5-140.4-269.7-140.3-269.9z"/>
<g class="st1">
<g>
<path class="st5" d="M-91.4-368.9c-0.6-1.9-2-6.9-2.6-8.8c-1.8-5.9-3.7-11.7-5.5-17.6c-0.1-0.3,0-0.5,0.1-0.7
c0.4-0.5,0.7,0,1.1-0.5c0.2-0.3,0.4-0.4,0.7-0.6c1.4-1,3-1.5,4.7-1.5c0.6,0,1,0.2,1.2,0.7c0.1,0.2,0.6,0.6,1,0.7
c1.5,0.1,2.9-0.1,4.2-0.8c1.2-0.6,2.5-0.6,3.7-1.4c0.8-0.5,1.7-1.3,2.6-1.3c0.6,0,1.1,0,1.7,0.1c0.2,0,0.4,0.1,0.5,0.4
c1.7,4.6,3.2,8.3,4.9,12.9c0.2,0.5,0.2,0.2-0.4,0.1c-2.5-0.4-4.8,0.3-6.9,1.7c-1,0.7-1.6,1.3-2.7,1.8c-0.4,0.2-0.7,0.3-1.1,0.4
c-1.2,0.2-2.2-0.4-2.5-1.6c-0.1-0.3-0.6-0.5-0.9-0.6c-0.9-0.2-1.7,0-2.6,0.2c-1,0.3-2,0.7-2.9,1.1c-0.3,0.1-1.4,0.9-1.3,1.2
c1.1,3.3,3.1,9.8,4.2,13.1c0,0.1-0.1,0.1-0.1,0.2C-90.3-369.3-91.4-368.7-91.4-368.9z"/>
</g>
</g>
<g class="st1">
<g>
<path class="st5" d="M-46.1-374.3c-0.6-2-1.8-5.4-2.5-7.4c-2-6.2-3.9-12.4-5.9-18.7c-0.1-0.3-0.1-0.5,0.1-0.7
c0.4-0.5,0.8,0,1.1-0.6c0.2-0.3,0.5-0.5,0.7-0.7c1.5-1.1,3.1-1.6,4.9-1.6c0.6,0,2.6,0.2,2.8,0.8c0.1,0.2,0.7,0.7,1.1,0.7
c1.6,0.1,2.6,0,4-0.7c1.5-0.7,1.3-0.6,2.2-1.7c0.8-0.6,1.8-1.4,2.7-1.4c0.6,0,1.2,0,1.8,0.1c0.3,0,0.4,0.1,0.5,0.4
c1.8,4.9,2.9,7.2,4.7,12.1c0.2,0.6,0.2,0.2-0.4,0.1c-2.7-0.5-4.8-0.3-7,1.2c-1.1,0.7-2.6,1.4-3.8,1.9c-0.4,0.2-0.8,0.3-1.2,0.4
c-1.2,0.2-3.6-0.5-3.9-1.7c-0.1-0.3-1.2,0-2.1,0.3c-1.1,0.3-2.5,0.8-3.5,1.2c-0.1,0.3,0.8,2.5,0.9,2.8c1.2,3.5,2.8,8.5,3.9,12
c0,0.1-0.1,0.1-0.1,0.2C-44.8-374.8-46-374.2-46.1-374.3z"/>
</g>
</g>
<g class="st1">
<g>
<path class="st5" d="M-59.5-194.1c0.3-2.2,0.3-3.2,0.6-5.5c1-6.9,2-13.8,2.9-20.7c0-0.3,0.2-0.5,0.5-0.7c0.6-0.3,0.6,1.8,1.2,1.5
c0.3-0.2,0.7-0.2,1-0.3c1.9-0.4,3.7-0.1,5.5,0.7c0.6,0.3,2.4,1.4,2.3,2c0,0.2,0.7,1.1,1,1.4c1.5,1.2,2.2,1.1,3.9,1
c1.8,0,1.5,0,2.9-0.6c1.1-0.2,2.3-0.5,3.3-0.1c0.6,0.2,1.1,0.5,1.7,0.9c0.2,0.2,0.3,0.3,0.3,0.6c-0.6,5.6-0.3,6.8-0.9,12.3
c-0.1,0.6,0.1,0.3-0.4-0.1c-2.4-1.7-3.9-1.4-6.7-1.1c-1.4,0.2-3.2,0.1-4.5,0.1c-0.4,0-0.9-0.1-1.3-0.2c-1.3-0.3-3.4-1.7-4.3-3.1
c0.1-0.4-1.3-0.1-2.2-0.3c-1.2-0.2-2.2-0.7-3.4-0.7c-0.2,0.2-0.2,1.3-0.3,1.6c-0.5,4-0.7,7.1-1.2,11.1
C-57.7-194-59.5-193.9-59.5-194.1z"/>
</g>
</g>
<g class="st1">
<g>
<path class="st5" d="M-94.9-276.9c-0.7-2.8-1.5-5.5-2.3-8.2c-0.1-0.5-0.4-0.8-0.8-1.2c-0.3-0.3-0.1-1.4,0.2-2.4
c0.4,0,1.6,1.8,1.5,2.1c-0.1,0.5-0.1,0.9,0,1.4c0.2-0.7,0.2-0.9,0.5-1.3c1.4-1.9,3.3-2.8,5.6-2.8c1.9,0,1,0.4,2.9,0.6
c2,0.3,4,0.6,5.9-0.1c0.3-0.1,0.4,0,0.5,0.3c0.5,2,1.1,3.9,1.6,5.9c0.4,1.3,0.7,2.6,1.1,3.9c0.2,0.8,0.2,0.8-0.6,1
c-1.2,0.3-2.4,0.3-3.6,0.2c-2.4-0.2-2-0.9-4.5-0.9c-1.5,0-7.9-0.1-6.2,5c0.6,2.3,1.5,5.5,2.1,7.8c0.1,0.2-0.9,0.2-1-0.3
c-0.8-2.7-1.7-6.1-2.4-8.8c0-0.1-0.1-0.1-0.1-0.2"/>
</g>
</g>
<g class="st1">
<g>
<g>
<path class="st5" d="M-396.5-272.6h-1.4v-6.5c0-0.5,0.1-1,0.4-1.3c0.2-0.3,0.5-0.5,0.9-0.5h3.9v1.9h-3.8v1h3.4v1.8h-3.4V-272.6z
"/>
</g>
<g>
<path class="st5" d="M-402.2-272.6h-1.4v-6.5c0-0.5,0.1-1,0.4-1.3c0.2-0.3,0.5-0.5,0.9-0.5h3.9v1.9h-3.8v1h3.4v1.8h-3.4V-272.6z
"/>
</g>
</g>
<polygon class="st5" points="-406,-278.1 -406.6,-278.1 -410.8,-278.1 -410.8,-275.9 -406.6,-275.9 -406,-275.9 -405.1,-275.9
-405.1,-278.1 "/>
<polygon class="st5" points="-387,-278.1 -387.5,-278.1 -391.8,-278.1 -391.8,-275.9 -387.5,-275.9 -387,-275.9 -386,-275.9
-386,-278.1 "/>
<polygon class="st5" points="-399.6,-270.1 -399.6,-269.5 -399.6,-265.3 -397.4,-265.3 -397.4,-269.5 -397.4,-270.1 -397.4,-271
-399.6,-271 "/>
<polygon class="st5" points="-399.6,-287.8 -399.6,-287.2 -399.6,-283 -397.4,-283 -397.4,-287.2 -397.4,-287.8 -397.4,-288.7
-399.6,-288.7 "/>
<path class="st5" d="M-398.5-288.9c-6.6,0-11.9,5.3-11.9,11.9s5.3,11.9,11.9,11.9s11.9-5.3,11.9-11.9S-391.9-288.9-398.5-288.9z
M-398.5-267.3c-5.4,0-9.7-4.4-9.7-9.7c0-5.4,4.4-9.7,9.7-9.7c5.4,0,9.7,4.4,9.7,9.7C-388.7-271.6-393.1-267.3-398.5-267.3z"/>
<rect x="-400.6" y="-290.7" class="st5" width="4.2" height="3.5"/>
<rect x="-400.6" y="-266.2" class="st5" width="4.2" height="3.5"/>
<rect x="-412.8" y="-278.7" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -133.7235 -687.7208)" class="st5" width="4.2" height="3.5"/>
<rect x="-388.3" y="-278.7" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -109.1754 -663.1727)" class="st5" width="4.2" height="3.5"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

View File

@ -1,198 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{display:inline;fill:#010002;}
.st3{fill:#010002;}
.st4{stroke:#FFFFFF;stroke-width:9;stroke-miterlimit:10;}
.st5{display:inline;fill:#222222;}
.st6{fill:#FFFFFF;}
.st7{display:inline;fill:#FCFCFC;}
</style>
<g id="Capa_1" class="st0">
<polygon class="st1" points="187.6,27.1 145.6,27.1 -161.4,27.1 -161.4,65.1 145.6,65.1 187.6,65.1 255.6,65.1 255.6,27.1 "/>
<polygon class="st1" points="27.3,-89.4 27.3,-47.4 27.3,259.6 65.3,259.6 65.3,-47.4 65.3,-89.4 65.3,-157.4 27.3,-157.4 "/>
<path class="st2" d="M46.3-162.4c-115.2,0-208.5,93.3-208.5,208.5s93.3,208.5,208.5,208.5s208.5-93.3,208.5-208.5
S161.4-162.4,46.3-162.4z M46.3,216.1c-93.9,0-170-76.1-170-170s76.1-170,170-170s170,76.1,170,170S140.2,216.1,46.3,216.1z"/>
<rect x="9.4" y="-193.9" class="st2" width="73.7" height="60.3"/>
<rect x="9.4" y="234.6" class="st2" width="73.7" height="60.3"/>
<rect x="-204.3" y="15.9" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -213.5344 -121.3919)" class="st2" width="73.7" height="60.3"/>
<rect x="224.1" y="15.9" transform="matrix(6.123234e-17 -1 1 6.123234e-17 214.9306 307.0731)" class="st2" width="73.7" height="60.3"/>
</g>
<g id="Capa_3">
<rect x="468.8" y="-211.8" style="fill:none;" width="82.5" height="96.1"/>
<text transform="matrix(1 0 0 1.7 468.8484 -188.2972)" style="font-family:'CharlieBrownM54'; font-size:36px;">F</text>
<rect x="427.6" y="-157.4" style="fill:none;" width="82.5" height="96.1"/>
<text transform="matrix(1 0 0 1 427.5984 -121.3575)" style="font-family:'Copy0865'; font-size:36px;">F</text>
<g>
<g>
<g>
<path d="M56.9,65.2H52V41.9c0-1.9,0.4-3.4,1.3-4.6c0.9-1.1,2-1.7,3.3-1.7h14v6.7H56.9v3.4h12.2v6.4H56.9V65.2z"/>
</g>
<g>
<path d="M36.4,65.2h-4.9V41.9c0-1.9,0.4-3.4,1.3-4.6c0.9-1.1,2-1.7,3.3-1.7h14v6.7H36.4v3.4h12.2v6.4H36.4V65.2z"/>
</g>
</g>
<polygon points="22.7,45.7 20.6,45.7 5.5,45.7 5.5,53.5 20.6,53.5 22.7,53.5 26,53.5 26,45.7 "/>
<polygon points="90.8,45.7 88.7,45.7 73.7,45.7 73.7,53.5 88.7,53.5 90.8,53.5 94.1,53.5 94.1,45.7 "/>
<polygon points="45.6,74.2 45.6,76.3 45.6,91.4 53.4,91.4 53.4,76.3 53.4,74.2 53.4,70.9 45.6,70.9 "/>
<polygon points="45.6,11.2 45.6,13.3 45.6,28.3 53.4,28.3 53.4,13.3 53.4,11.2 53.4,7.9 45.6,7.9 "/>
<path class="st3" d="M49.7,6.9C26.1,6.9,7,26,7,49.6s19.1,42.7,42.7,42.7s42.7-19.1,42.7-42.7S73.2,6.9,49.7,6.9z M49.7,84.4
c-19.2,0-34.8-15.6-34.8-34.8s15.6-34.8,34.8-34.8s34.8,15.6,34.8,34.8S68.9,84.4,49.7,84.4z"/>
<rect x="42.1" y="0.5" class="st3" width="15.1" height="12.3"/>
<rect x="42.1" y="88.2" class="st3" width="15.1" height="12.3"/>
<rect x="-1.6" y="43.4" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -43.6743 55.5412)" class="st3" width="15.1" height="12.3"/>
<rect x="86.1" y="43.4" transform="matrix(6.123234e-17 -1 1 6.123234e-17 43.9975 143.2129)" class="st3" width="15.1" height="12.3"/>
</g>
</g>
<g id="Capa_2" class="st0">
<g class="st1">
<g>
<path class="st4" d="M252.6,55.9c-1.2,8.4-1.2,16.8-2.5,25.2c-5.2,32.8-17.4,62.6-37.7,88.9c-29.5,38.3-67.8,63-114.9,73.8
c-19.9,4.5-40,5.4-60.4,3.7c-24.8-2.1-48.3-8.5-70.6-19.3c-14.8-7.2-28.4-16.4-41-27.1c-17-14.5-31.1-31.3-42.3-50.6
c-11.7-20-19.7-41.4-23.8-64.1c-1.9-10.3,0.9-13.9,11.2-15.9c8.3-1.6,16.5-3.6,25-3.8c6.8-0.2,9.8,2.1,11.2,8.9
c2.9,13.9,6.6,27.5,13.1,40.1c23,44.9,59.2,72.9,108.9,81.8c44.5,8,84.7-3.1,119.9-31.5c29.3-23.6,47.1-54.4,53.3-91.3
c7.1-42.4-3.2-81.1-29.1-115.3C149-72.3,116.9-91.1,78.2-97.5c-40.3-6.6-77.3,2.4-110.8,26.2c-9,6.4-16.7,14.1-25.5,22.8
c7.5-1.2,13.7-2.2,19.9-3.3c8.3-1.5,16.6-3.1,24.9-4.5c8.3-1.4,12.7,1.4,14.5,9.6C3-38.6,4.6-30.4,5.8-22.2
C6.9-14.5,2.9-9.7-3.8-8.6C-32-3.9-60.2,1.2-88.4,6.3c-9.9,1.8-19.9,3.5-29.8,5.5c-7.9,1.6-14.7-0.2-16.6-11.3
c-6.3-36.9-13-73.7-19.6-110.6c0-4,0-8,0-12c2.3-3.3,5.3-5.3,9.3-6c7.8-1.4,15.6-3,23.5-4.2c8.6-1.3,13,2,14.7,10.7
c1,5.4,1.9,10.7,2.9,16.1c1.7,9.6,3.5,19.2,4.9,27.3c2.2-1.7,4.9-3.4,7.3-5.5c2.4-2.1,4.5-4.4,6.7-6.7c21.9-22.7,48.3-38,78-48
c13.2-4.4,26.9-6.9,40.7-8.7c13.7,0,27.3,0,41,0c16.8,2.1,33.2,5.6,49.2,11.5c23.8,8.8,45.1,21.8,63.9,38.7
c14.2,12.9,26.3,27.6,36.3,44.1c13.3,22,21.9,45.6,26.1,71c1.4,8.5,1.4,17.2,2.6,25.7C252.6,47.9,252.6,51.9,252.6,55.9z"/>
</g>
</g>
</g>
<g id="Capa_5" class="st0">
<g class="st1">
<g>
<path d="M12.8,51.8c-3-11.5-6.3-22.9-9.4-34.4c-0.5-2.1-1.9-3.4-3.2-4.8c-1.2-1.2-0.4-5.9,0.8-9.9c1.7-0.1,6.5,7.4,6.1,8.7
c-0.6,2.1-0.4,3.9,0.2,6c0.7-2.8,0.7-3.9,2-5.6C15.2,4,22.9,0.3,32.6,0c8.1-0.2,4.1,1.5,12.1,2.7C53,3.9,61.2,2.9,69.5,0.2
c1.3-0.4,1.8,0.2,2.2,1.4c2.3,8.2,4.5,18.4,6.8,26.6c1.5,5.5,3,7.6,4.5,13.1c0.9,3.1,0.8,3.4-2.4,4.2c-4.9,1.2-9.9,1.3-15,0.9
c-10.2-0.8-8.3-3.7-18.6-3.7c-6.3,0-32.8,2.8-25.7,24.3c2.7,9.7,6.3,22.7,8.9,32.4c0.3,1-3.6,0.7-4.2-1.2
c-3.1-11.1-7.1-25.6-10.1-36.7c-0.1-0.3-0.2-0.5-0.4-1"/>
</g>
</g>
</g>
<g id="Capa_6" class="st0">
<path class="st2" d="M94.1,83.1l11.3-21.2h20.1v-6.5h-22.1c-1.2,0-2.3,0.7-2.9,1.7l-8.6,16.3l-9.8-28.5c-0.5-1.3-1.6-2.2-3-2.2
c-1.4,0-2.6,0.7-3.1,2l-8,18.9L57.9,2.7c-0.3-1.5-1.8-2.7-3.2-2.7c-1.8,0-3,1.1-3.2,2.6L42,76.8l-8.5-44.2
c-0.3-1.4-1.4-2.4-2.8-2.6c-1.4-0.2-2.8,0.6-3.4,1.8L16,55.4H-0.3v6.5h18.4c1.2,0,2.4-0.7,3-1.9l7.9-16.4l10.3,53.7
c0.3,1.5,1.7,2.7,3.2,2.7h0.1c1.6,0,2.9-1.2,3.1-2.8l9.4-74l8.5,52.3c0.3,1.4,1.4,2.5,2.8,2.6c1.5,0.2,2.8-0.6,3.4-2l8.9-21
l9.4,27.5c0.4,1.2,1.6,2.1,2.8,2.2C92.3,84.9,93.5,84.2,94.1,83.1z"/>
</g>
<g id="Capa_4" class="st0">
<image style="display:inline;overflow:visible;" width="1022" height="139" xlink:href="A0EB67C7.jpg" transform="matrix(1 0 0 1 -794.4016 -358.8575)">
</image>
<rect x="-464.1" y="-295.8" class="st5" width="104.7" height="37"/>
<rect x="-470.4" y="-107.8" class="st5" width="44" height="37"/>
<g class="st1">
<polygon class="st6" points="-444,-89.3 -446.7,-89.3 -466.8,-89.3 -466.8,-86.9 -446.7,-86.9 -444,-86.9 -439.5,-86.9
-439.5,-89.3 "/>
<polygon class="st6" points="-454.4,-97.3 -454.4,-94.5 -454.4,-74.4 -451.9,-74.4 -451.9,-94.5 -451.9,-97.3 -451.9,-101.7
-454.4,-101.7 "/>
<path class="st6" d="M-453.2-102.4c-7.5,0-13.6,6.1-13.6,13.6s6.1,13.6,13.6,13.6s13.6-6.1,13.6-13.6S-445.7-102.4-453.2-102.4z
M-453.2-77.6c-6.1,0-11.1-5-11.1-11.1s5-11.1,11.1-11.1s11.1,5,11.1,11.1S-447-77.6-453.2-77.6z"/>
<rect x="-455" y="-104.1" class="st6" width="3.6" height="3.9"/>
<rect x="-455" y="-76" class="st6" width="3.6" height="3.9"/>
<rect x="-469" y="-90.1" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -379.1167 -555.3192)" class="st6" width="3.6" height="3.9"/>
<rect x="-441" y="-90.1" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -351.0606 -527.2631)" class="st6" width="3.6" height="3.9"/>
</g>
<g class="st1">
<polygon class="st6" points="-445.3,-278.8 -447.5,-278.8 -463.9,-278.8 -463.9,-276.7 -447.5,-276.7 -445.3,-276.7
-441.7,-276.7 -441.7,-278.8 "/>
<polygon class="st6" points="-453.8,-284.7 -453.8,-282.5 -453.8,-266.1 -451.8,-266.1 -451.8,-282.5 -451.8,-284.7
-451.8,-288.3 -453.8,-288.3 "/>
<path class="st6" d="M-452.8-288.9c-6.1,0-11.1,5-11.1,11.1s5,11.1,11.1,11.1s11.1-5,11.1-11.1S-446.7-288.9-452.8-288.9z
M-452.8-268.7c-5,0-9.1-4.1-9.1-9.1c0-5,4.1-9.1,9.1-9.1c5,0,9.1,4.1,9.1,9.1C-443.8-272.8-447.8-268.7-452.8-268.7z"/>
<rect x="-454.8" y="-290.3" class="st6" width="3.9" height="3.2"/>
<rect x="-454.8" y="-267.5" class="st6" width="3.9" height="3.2"/>
<rect x="-466.2" y="-279.4" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -186.4478 -741.9766)" class="st6" width="3.9" height="3.2"/>
<rect x="-443.4" y="-279.4" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -163.6597 -719.1885)" class="st6" width="3.9" height="3.2"/>
</g>
<rect x="-163.6" y="-295.8" class="st5" width="262.2" height="37"/>
<path class="st7" d="M-140.5-269.9l2.5-4.7h4.5v-1.5h-4.9c-0.3,0-0.5,0.1-0.6,0.4l-1.9,3.6l-2.2-6.3c-0.1-0.3-0.4-0.5-0.7-0.5
c-0.3,0-0.6,0.2-0.7,0.4l-1.8,4.2l-2.3-13.6c-0.1-0.3-0.4-0.6-0.7-0.6c-0.4,0-0.7,0.2-0.7,0.6l-2.1,16.5l-1.9-9.8
c-0.1-0.3-0.3-0.5-0.6-0.6c-0.3,0-0.6,0.1-0.8,0.4l-2.5,5.2h-3.6v1.5h4.1c0.3,0,0.5-0.2,0.7-0.4l1.8-3.7l2.3,12
c0.1,0.3,0.4,0.6,0.7,0.6h0c0.4,0,0.6-0.3,0.7-0.6l2.1-16.5l1.9,11.7c0.1,0.3,0.3,0.6,0.6,0.6c0.3,0,0.6-0.1,0.8-0.4l2-4.7l2.1,6.1
c0.1,0.3,0.3,0.5,0.6,0.5C-141-269.5-140.7-269.7-140.5-269.9z"/>
<g class="st1">
<g>
<path class="st6" d="M-91.7-368.9c-0.6-1.9-2-6.9-2.6-8.8c-1.8-5.9-3.7-11.7-5.5-17.6c-0.1-0.3,0-0.5,0.1-0.7
c0.4-0.5,0.7,0,1.1-0.5c0.2-0.3,0.4-0.4,0.7-0.6c1.4-1,3-1.5,4.7-1.5c0.6,0,1,0.2,1.2,0.7c0.1,0.2,0.6,0.6,1,0.7
c1.5,0.1,2.9-0.1,4.2-0.8c1.2-0.6,2.5-0.6,3.7-1.4c0.8-0.5,1.7-1.3,2.6-1.3c0.6,0,1.1,0,1.7,0.1c0.2,0,0.4,0.1,0.5,0.4
c1.7,4.6,3.2,8.3,4.9,12.9c0.2,0.5,0.2,0.2-0.4,0.1c-2.5-0.4-4.8,0.3-6.9,1.7c-1,0.7-1.6,1.3-2.7,1.8c-0.4,0.2-0.7,0.3-1.1,0.4
c-1.2,0.2-2.2-0.4-2.5-1.6c-0.1-0.3-0.6-0.5-0.9-0.6c-0.9-0.2-1.7,0-2.6,0.2c-1,0.3-2,0.7-2.9,1.1c-0.3,0.1-1.4,0.9-1.3,1.2
c1.1,3.3,3.1,9.8,4.2,13.1c0,0.1-0.1,0.1-0.1,0.2C-90.5-369.3-91.7-368.7-91.7-368.9z"/>
</g>
</g>
<g class="st1">
<g>
<path class="st6" d="M-46.4-374.3c-0.6-2-1.8-5.4-2.5-7.4c-2-6.2-3.9-12.4-5.9-18.7c-0.1-0.3-0.1-0.5,0.1-0.7
c0.4-0.5,0.8,0,1.1-0.6c0.2-0.3,0.5-0.5,0.7-0.7c1.5-1.1,3.1-1.6,4.9-1.6c0.6,0,2.6,0.2,2.8,0.8c0.1,0.2,0.7,0.7,1.1,0.7
c1.6,0.1,2.6,0,4-0.7c1.5-0.7,1.3-0.6,2.2-1.7c0.8-0.6,1.8-1.4,2.7-1.4c0.6,0,1.2,0,1.8,0.1c0.3,0,0.4,0.1,0.5,0.4
c1.8,4.9,2.9,7.2,4.7,12.1c0.2,0.6,0.2,0.2-0.4,0.1c-2.7-0.5-4.8-0.3-7,1.2c-1.1,0.7-2.6,1.4-3.8,1.9c-0.4,0.2-0.8,0.3-1.2,0.4
c-1.2,0.2-3.6-0.5-3.9-1.7c-0.1-0.3-1.2,0-2.1,0.3c-1.1,0.3-2.5,0.8-3.5,1.2c-0.1,0.3,0.8,2.5,0.9,2.8c1.2,3.5,2.8,8.5,3.9,12
c0,0.1-0.1,0.1-0.1,0.2C-45.1-374.8-46.3-374.2-46.4-374.3z"/>
</g>
</g>
<g class="st1">
<g>
<path class="st6" d="M-59.8-194.1c0.3-2.2,0.3-3.2,0.6-5.5c1-6.9,2-13.8,2.9-20.7c0-0.3,0.2-0.5,0.5-0.7c0.6-0.3,0.6,1.8,1.2,1.5
c0.3-0.2,0.7-0.2,1-0.3c1.9-0.4,3.7-0.1,5.5,0.7c0.6,0.3,2.4,1.4,2.3,2c0,0.2,0.7,1.1,1,1.4c1.5,1.2,2.2,1.1,3.9,1
c1.8,0,1.5,0,2.9-0.6c1.1-0.2,2.3-0.5,3.3-0.1c0.6,0.2,1.1,0.5,1.7,0.9c0.2,0.2,0.3,0.3,0.3,0.6c-0.6,5.6-0.3,6.8-0.9,12.3
c-0.1,0.6,0.1,0.3-0.4-0.1c-2.4-1.7-3.9-1.4-6.7-1.1c-1.4,0.2-3.2,0.1-4.5,0.1c-0.4,0-0.9-0.1-1.3-0.2c-1.3-0.3-3.4-1.7-4.3-3.1
c0.1-0.4-1.3-0.1-2.2-0.3c-1.2-0.2-2.2-0.7-3.4-0.7c-0.2,0.2-0.2,1.3-0.3,1.6c-0.5,4-0.7,7.1-1.2,11.1
C-57.9-194-59.8-193.9-59.8-194.1z"/>
</g>
</g>
<g class="st1">
<g>
<path class="st6" d="M-95.2-276.9c-0.7-2.8-1.5-5.5-2.3-8.2c-0.1-0.5-0.4-0.8-0.8-1.2c-0.3-0.3-0.1-1.4,0.2-2.4
c0.4,0,1.6,1.8,1.5,2.1c-0.1,0.5-0.1,0.9,0,1.4c0.2-0.7,0.2-0.9,0.5-1.3c1.4-1.9,3.3-2.8,5.6-2.8c1.9,0,1,0.4,2.9,0.6
c2,0.3,4,0.6,5.9-0.1c0.3-0.1,0.4,0,0.5,0.3c0.5,2,1.1,3.9,1.6,5.9c0.4,1.3,0.7,2.6,1.1,3.9c0.2,0.8,0.2,0.8-0.6,1
c-1.2,0.3-2.4,0.3-3.6,0.2c-2.4-0.2-2-0.9-4.5-0.9c-1.5,0-7.9-0.1-6.2,5c0.6,2.3,1.5,5.5,2.1,7.8c0.1,0.2-0.9,0.2-1-0.3
c-0.8-2.7-1.7-6.1-2.4-8.8c0-0.1-0.1-0.1-0.1-0.2"/>
</g>
</g>
<g class="st1">
<g>
<g>
<path class="st6" d="M-396.7-272.6h-1.4v-6.5c0-0.5,0.1-1,0.4-1.3c0.2-0.3,0.5-0.5,0.9-0.5h3.9v1.9h-3.8v1h3.4v1.8h-3.4V-272.6z
"/>
</g>
<g>
<path class="st6" d="M-402.5-272.6h-1.4v-6.5c0-0.5,0.1-1,0.4-1.3c0.2-0.3,0.5-0.5,0.9-0.5h3.9v1.9h-3.8v1h3.4v1.8h-3.4V-272.6z
"/>
</g>
</g>
<polygon class="st6" points="-406.3,-278.1 -406.9,-278.1 -411.1,-278.1 -411.1,-275.9 -406.9,-275.9 -406.3,-275.9
-405.4,-275.9 -405.4,-278.1 "/>
<polygon class="st6" points="-387.2,-278.1 -387.8,-278.1 -392,-278.1 -392,-275.9 -387.8,-275.9 -387.2,-275.9 -386.3,-275.9
-386.3,-278.1 "/>
<polygon class="st6" points="-399.9,-270.1 -399.9,-269.5 -399.9,-265.3 -397.7,-265.3 -397.7,-269.5 -397.7,-270.1 -397.7,-271
-399.9,-271 "/>
<polygon class="st6" points="-399.9,-287.8 -399.9,-287.2 -399.9,-283 -397.7,-283 -397.7,-287.2 -397.7,-287.8 -397.7,-288.7
-399.9,-288.7 "/>
<path class="st6" d="M-398.8-288.9c-6.6,0-11.9,5.3-11.9,11.9s5.3,11.9,11.9,11.9s11.9-5.3,11.9-11.9S-392.2-288.9-398.8-288.9z
M-398.8-267.3c-5.4,0-9.7-4.4-9.7-9.7c0-5.4,4.4-9.7,9.7-9.7s9.7,4.4,9.7,9.7C-389-271.6-393.4-267.3-398.8-267.3z"/>
<rect x="-400.9" y="-290.7" class="st6" width="4.2" height="3.5"/>
<rect x="-400.9" y="-266.2" class="st6" width="4.2" height="3.5"/>
<rect x="-413.1" y="-278.7" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -134.0071 -688.0044)" class="st6" width="4.2" height="3.5"/>
<rect x="-388.6" y="-278.7" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -109.459 -663.4564)" class="st6" width="4.2" height="3.5"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

View File

@ -1,200 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{fill:#010002;}
.st1{display:none;}
.st2{display:inline;}
.st3{stroke:#FFFFFF;stroke-width:9;stroke-miterlimit:10;}
.st4{display:inline;fill:#010002;}
.st5{display:inline;fill:#222222;}
.st6{fill:#FFFFFF;}
.st7{display:inline;fill:#FCFCFC;}
</style>
<g id="Capa_1">
<g>
<polygon points="79.4,45.2 70.8,45.2 8,45.2 8,53 70.8,53 79.4,53 93.3,53 93.3,45.2 "/>
<polygon points="46.6,21.4 46.6,30 46.6,92.8 54.3,92.8 54.3,30 54.3,21.4 54.3,7.5 46.6,7.5 "/>
<path class="st0" d="M50.5,6.4C26.9,6.4,7.8,25.5,7.8,49.1s19.1,42.7,42.7,42.7s42.7-19.1,42.7-42.7S74,6.4,50.5,6.4z M50.5,83.9
c-19.2,0-34.8-15.6-34.8-34.8s15.6-34.8,34.8-34.8s34.8,15.6,34.8,34.8S69.7,83.9,50.5,83.9z"/>
<rect x="42.9" class="st0" width="15.1" height="12.3"/>
<rect x="42.9" y="87.7" class="st0" width="15.1" height="12.3"/>
<rect x="-0.8" y="42.9" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -42.3714 55.8092)" class="st0" width="15.1" height="12.3"/>
<rect x="86.8" y="42.9" transform="matrix(6.123234e-17 -1 1 6.123234e-17 45.3004 143.4809)" class="st0" width="15.1" height="12.3"/>
</g>
</g>
<g id="Capa_3" class="st1">
<rect x="468.8" y="-211.8" style="display:inline;fill:none;" width="82.5" height="96.1"/>
<text transform="matrix(1 0 0 1.7 468.8484 -188.2972)" class="st2" style="font-family:'CharlieBrownM54'; font-size:36px;">F</text>
<rect x="427.6" y="-157.4" style="display:inline;fill:none;" width="82.5" height="96.1"/>
<text transform="matrix(1 0 0 1 427.5984 -121.3575)" class="st2" style="font-family:'Copy0865'; font-size:36px;">F</text>
<g class="st2">
<g>
<g>
<path d="M56.9,65.2H52V41.9c0-1.9,0.4-3.4,1.3-4.6c0.9-1.1,2-1.7,3.3-1.7h14v6.7H56.9v3.4h12.2v6.4H56.9V65.2z"/>
</g>
<g>
<path d="M36.4,65.2h-4.9V41.9c0-1.9,0.4-3.4,1.3-4.6c0.9-1.1,2-1.7,3.3-1.7h14v6.7H36.4v3.4h12.2v6.4H36.4V65.2z"/>
</g>
</g>
<polygon points="22.7,45.7 20.6,45.7 5.5,45.7 5.5,53.5 20.6,53.5 22.7,53.5 26,53.5 26,45.7 "/>
<polygon points="90.8,45.7 88.7,45.7 73.7,45.7 73.7,53.5 88.7,53.5 90.8,53.5 94.1,53.5 94.1,45.7 "/>
<polygon points="45.6,74.2 45.6,76.3 45.6,91.4 53.4,91.4 53.4,76.3 53.4,74.2 53.4,70.9 45.6,70.9 "/>
<polygon points="45.6,11.2 45.6,13.3 45.6,28.3 53.4,28.3 53.4,13.3 53.4,11.2 53.4,7.9 45.6,7.9 "/>
<path class="st0" d="M49.7,6.9C26.1,6.9,7,26,7,49.6s19.1,42.7,42.7,42.7s42.7-19.1,42.7-42.7S73.2,6.9,49.7,6.9z M49.7,84.4
c-19.2,0-34.8-15.6-34.8-34.8s15.6-34.8,34.8-34.8s34.8,15.6,34.8,34.8S68.9,84.4,49.7,84.4z"/>
<rect x="42.1" y="0.5" class="st0" width="15.1" height="12.3"/>
<rect x="42.1" y="88.2" class="st0" width="15.1" height="12.3"/>
<rect x="-1.6" y="43.4" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -43.6743 55.5412)" class="st0" width="15.1" height="12.3"/>
<rect x="86.1" y="43.4" transform="matrix(6.123234e-17 -1 1 6.123234e-17 43.9975 143.2129)" class="st0" width="15.1" height="12.3"/>
</g>
</g>
<g id="Capa_2" class="st1">
<g class="st2">
<g>
<path class="st3" d="M252.6,55.9c-1.2,8.4-1.2,16.8-2.5,25.2c-5.2,32.8-17.4,62.6-37.7,88.9c-29.5,38.3-67.8,63-114.9,73.8
c-19.9,4.5-40,5.4-60.4,3.7c-24.8-2.1-48.3-8.5-70.6-19.3c-14.8-7.2-28.4-16.4-41-27.1c-17-14.5-31.1-31.3-42.3-50.6
c-11.7-20-19.7-41.4-23.8-64.1c-1.9-10.3,0.9-13.9,11.2-15.9c8.3-1.6,16.5-3.6,25-3.8c6.8-0.2,9.8,2.1,11.2,8.9
c2.9,13.9,6.6,27.5,13.1,40.1c23,44.9,59.2,72.9,108.9,81.8c44.5,8,84.7-3.1,119.9-31.5c29.3-23.6,47.1-54.4,53.3-91.3
c7.1-42.4-3.2-81.1-29.1-115.3C149-72.3,116.9-91.1,78.2-97.5c-40.3-6.6-77.3,2.4-110.8,26.2c-9,6.4-16.7,14.1-25.5,22.8
c7.5-1.2,13.7-2.2,19.9-3.3c8.3-1.5,16.6-3.1,24.9-4.5c8.3-1.4,12.7,1.4,14.5,9.6C3-38.6,4.6-30.4,5.8-22.2
C6.9-14.5,2.9-9.7-3.8-8.6C-32-3.9-60.2,1.2-88.4,6.3c-9.9,1.8-19.9,3.5-29.8,5.5c-7.9,1.6-14.7-0.2-16.6-11.3
c-6.3-36.9-13-73.7-19.6-110.6c0-4,0-8,0-12c2.3-3.3,5.3-5.3,9.3-6c7.8-1.4,15.6-3,23.5-4.2c8.6-1.3,13,2,14.7,10.7
c1,5.4,1.9,10.7,2.9,16.1c1.7,9.6,3.5,19.2,4.9,27.3c2.2-1.7,4.9-3.4,7.3-5.5c2.4-2.1,4.5-4.4,6.7-6.7c21.9-22.7,48.3-38,78-48
c13.2-4.4,26.9-6.9,40.7-8.7c13.7,0,27.3,0,41,0c16.8,2.1,33.2,5.6,49.2,11.5c23.8,8.8,45.1,21.8,63.9,38.7
c14.2,12.9,26.3,27.6,36.3,44.1c13.3,22,21.9,45.6,26.1,71c1.4,8.5,1.4,17.2,2.6,25.7C252.6,47.9,252.6,51.9,252.6,55.9z"/>
</g>
</g>
</g>
<g id="Capa_5" class="st1">
<g class="st2">
<g>
<path d="M12.8,51.8c-3-11.5-6.3-22.9-9.4-34.4c-0.5-2.1-1.9-3.4-3.2-4.8c-1.2-1.2-0.4-5.9,0.8-9.9c1.7-0.1,6.5,7.4,6.1,8.7
c-0.6,2.1-0.4,3.9,0.2,6c0.7-2.8,0.7-3.9,2-5.6C15.2,4,22.9,0.3,32.6,0c8.1-0.2,4.1,1.5,12.1,2.7C53,3.9,61.2,2.9,69.5,0.2
c1.3-0.4,1.8,0.2,2.2,1.4c2.3,8.2,4.5,18.4,6.8,26.6c1.5,5.5,3,7.6,4.5,13.1c0.9,3.1,0.8,3.4-2.4,4.2c-4.9,1.2-9.9,1.3-15,0.9
c-10.2-0.8-8.3-3.7-18.6-3.7c-6.3,0-32.8,2.8-25.7,24.3c2.7,9.7,6.3,22.7,8.9,32.4c0.3,1-3.6,0.7-4.2-1.2
c-3.1-11.1-7.1-25.6-10.1-36.7c-0.1-0.3-0.2-0.5-0.4-1"/>
</g>
</g>
</g>
<g id="Capa_6" class="st1">
<path class="st4" d="M94.1,83.1l11.3-21.2h20.1v-6.5h-22.1c-1.2,0-2.3,0.7-2.9,1.7l-8.6,16.3l-9.8-28.5c-0.5-1.3-1.6-2.2-3-2.2
c-1.4,0-2.6,0.7-3.1,2l-8,18.9L57.9,2.7c-0.3-1.5-1.8-2.7-3.2-2.7c-1.8,0-3,1.1-3.2,2.6L42,76.8l-8.5-44.2
c-0.3-1.4-1.4-2.4-2.8-2.6c-1.4-0.2-2.8,0.6-3.4,1.8L16,55.4H-0.3v6.5h18.4c1.2,0,2.4-0.7,3-1.9l7.9-16.4l10.3,53.7
c0.3,1.5,1.7,2.7,3.2,2.7h0.1c1.6,0,2.9-1.2,3.1-2.8l9.4-74l8.5,52.3c0.3,1.4,1.4,2.5,2.8,2.6c1.5,0.2,2.8-0.6,3.4-2l8.9-21
l9.4,27.5c0.4,1.2,1.6,2.1,2.8,2.2C92.3,84.9,93.5,84.2,94.1,83.1z"/>
</g>
<g id="Capa_4" class="st1">
<image style="display:inline;overflow:visible;" width="1022" height="139" xlink:href="3CE116CE.jpg" transform="matrix(1 0 0 1 -794.4016 -358.8575)">
</image>
<rect x="-464.1" y="-295.8" class="st5" width="104.7" height="37"/>
<rect x="-470.4" y="-107.8" class="st5" width="44" height="37"/>
<g class="st2">
<polygon class="st6" points="-444,-89.3 -446.7,-89.3 -466.8,-89.3 -466.8,-86.9 -446.7,-86.9 -444,-86.9 -439.5,-86.9
-439.5,-89.3 "/>
<polygon class="st6" points="-454.4,-97.3 -454.4,-94.5 -454.4,-74.4 -451.9,-74.4 -451.9,-94.5 -451.9,-97.3 -451.9,-101.7
-454.4,-101.7 "/>
<path class="st6" d="M-453.2-102.4c-7.5,0-13.6,6.1-13.6,13.6s6.1,13.6,13.6,13.6s13.6-6.1,13.6-13.6S-445.7-102.4-453.2-102.4z
M-453.2-77.6c-6.1,0-11.1-5-11.1-11.1s5-11.1,11.1-11.1s11.1,5,11.1,11.1S-447-77.6-453.2-77.6z"/>
<rect x="-455" y="-104.1" class="st6" width="3.6" height="3.9"/>
<rect x="-455" y="-76" class="st6" width="3.6" height="3.9"/>
<rect x="-469" y="-90.1" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -379.1167 -555.3192)" class="st6" width="3.6" height="3.9"/>
<rect x="-441" y="-90.1" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -351.0606 -527.2631)" class="st6" width="3.6" height="3.9"/>
</g>
<g class="st2">
<polygon class="st6" points="-445.3,-278.8 -447.5,-278.8 -463.9,-278.8 -463.9,-276.7 -447.5,-276.7 -445.3,-276.7
-441.7,-276.7 -441.7,-278.8 "/>
<polygon class="st6" points="-453.8,-284.7 -453.8,-282.5 -453.8,-266.1 -451.8,-266.1 -451.8,-282.5 -451.8,-284.7
-451.8,-288.3 -453.8,-288.3 "/>
<path class="st6" d="M-452.8-288.9c-6.1,0-11.1,5-11.1,11.1s5,11.1,11.1,11.1s11.1-5,11.1-11.1S-446.7-288.9-452.8-288.9z
M-452.8-268.7c-5,0-9.1-4.1-9.1-9.1c0-5,4.1-9.1,9.1-9.1c5,0,9.1,4.1,9.1,9.1C-443.8-272.8-447.8-268.7-452.8-268.7z"/>
<rect x="-454.8" y="-290.3" class="st6" width="3.9" height="3.2"/>
<rect x="-454.8" y="-267.5" class="st6" width="3.9" height="3.2"/>
<rect x="-466.2" y="-279.4" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -186.4478 -741.9766)" class="st6" width="3.9" height="3.2"/>
<rect x="-443.4" y="-279.4" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -163.6597 -719.1885)" class="st6" width="3.9" height="3.2"/>
</g>
<rect x="-163.6" y="-295.8" class="st5" width="262.2" height="37"/>
<path class="st7" d="M-140.5-269.9l2.5-4.7h4.5v-1.5h-4.9c-0.3,0-0.5,0.1-0.6,0.4l-1.9,3.6l-2.2-6.3c-0.1-0.3-0.4-0.5-0.7-0.5
c-0.3,0-0.6,0.2-0.7,0.4l-1.8,4.2l-2.3-13.6c-0.1-0.3-0.4-0.6-0.7-0.6c-0.4,0-0.7,0.2-0.7,0.6l-2.1,16.5l-1.9-9.8
c-0.1-0.3-0.3-0.5-0.6-0.6c-0.3,0-0.6,0.1-0.8,0.4l-2.5,5.2h-3.6v1.5h4.1c0.3,0,0.5-0.2,0.7-0.4l1.8-3.7l2.3,12
c0.1,0.3,0.4,0.6,0.7,0.6h0c0.4,0,0.6-0.3,0.7-0.6l2.1-16.5l1.9,11.7c0.1,0.3,0.3,0.6,0.6,0.6c0.3,0,0.6-0.1,0.8-0.4l2-4.7l2.1,6.1
c0.1,0.3,0.3,0.5,0.6,0.5C-141-269.5-140.7-269.7-140.5-269.9z"/>
<g class="st2">
<g>
<path class="st6" d="M-91.7-368.9c-0.6-1.9-2-6.9-2.6-8.8c-1.8-5.9-3.7-11.7-5.5-17.6c-0.1-0.3,0-0.5,0.1-0.7
c0.4-0.5,0.7,0,1.1-0.5c0.2-0.3,0.4-0.4,0.7-0.6c1.4-1,3-1.5,4.7-1.5c0.6,0,1,0.2,1.2,0.7c0.1,0.2,0.6,0.6,1,0.7
c1.5,0.1,2.9-0.1,4.2-0.8c1.2-0.6,2.5-0.6,3.7-1.4c0.8-0.5,1.7-1.3,2.6-1.3c0.6,0,1.1,0,1.7,0.1c0.2,0,0.4,0.1,0.5,0.4
c1.7,4.6,3.2,8.3,4.9,12.9c0.2,0.5,0.2,0.2-0.4,0.1c-2.5-0.4-4.8,0.3-6.9,1.7c-1,0.7-1.6,1.3-2.7,1.8c-0.4,0.2-0.7,0.3-1.1,0.4
c-1.2,0.2-2.2-0.4-2.5-1.6c-0.1-0.3-0.6-0.5-0.9-0.6c-0.9-0.2-1.7,0-2.6,0.2c-1,0.3-2,0.7-2.9,1.1c-0.3,0.1-1.4,0.9-1.3,1.2
c1.1,3.3,3.1,9.8,4.2,13.1c0,0.1-0.1,0.1-0.1,0.2C-90.5-369.3-91.7-368.7-91.7-368.9z"/>
</g>
</g>
<g class="st2">
<g>
<path class="st6" d="M-46.4-374.3c-0.6-2-1.8-5.4-2.5-7.4c-2-6.2-3.9-12.4-5.9-18.7c-0.1-0.3-0.1-0.5,0.1-0.7
c0.4-0.5,0.8,0,1.1-0.6c0.2-0.3,0.5-0.5,0.7-0.7c1.5-1.1,3.1-1.6,4.9-1.6c0.6,0,2.6,0.2,2.8,0.8c0.1,0.2,0.7,0.7,1.1,0.7
c1.6,0.1,2.6,0,4-0.7c1.5-0.7,1.3-0.6,2.2-1.7c0.8-0.6,1.8-1.4,2.7-1.4c0.6,0,1.2,0,1.8,0.1c0.3,0,0.4,0.1,0.5,0.4
c1.8,4.9,2.9,7.2,4.7,12.1c0.2,0.6,0.2,0.2-0.4,0.1c-2.7-0.5-4.8-0.3-7,1.2c-1.1,0.7-2.6,1.4-3.8,1.9c-0.4,0.2-0.8,0.3-1.2,0.4
c-1.2,0.2-3.6-0.5-3.9-1.7c-0.1-0.3-1.2,0-2.1,0.3c-1.1,0.3-2.5,0.8-3.5,1.2c-0.1,0.3,0.8,2.5,0.9,2.8c1.2,3.5,2.8,8.5,3.9,12
c0,0.1-0.1,0.1-0.1,0.2C-45.1-374.8-46.3-374.2-46.4-374.3z"/>
</g>
</g>
<g class="st2">
<g>
<path class="st6" d="M-59.8-194.1c0.3-2.2,0.3-3.2,0.6-5.5c1-6.9,2-13.8,2.9-20.7c0-0.3,0.2-0.5,0.5-0.7c0.6-0.3,0.6,1.8,1.2,1.5
c0.3-0.2,0.7-0.2,1-0.3c1.9-0.4,3.7-0.1,5.5,0.7c0.6,0.3,2.4,1.4,2.3,2c0,0.2,0.7,1.1,1,1.4c1.5,1.2,2.2,1.1,3.9,1
c1.8,0,1.5,0,2.9-0.6c1.1-0.2,2.3-0.5,3.3-0.1c0.6,0.2,1.1,0.5,1.7,0.9c0.2,0.2,0.3,0.3,0.3,0.6c-0.6,5.6-0.3,6.8-0.9,12.3
c-0.1,0.6,0.1,0.3-0.4-0.1c-2.4-1.7-3.9-1.4-6.7-1.1c-1.4,0.2-3.2,0.1-4.5,0.1c-0.4,0-0.9-0.1-1.3-0.2c-1.3-0.3-3.4-1.7-4.3-3.1
c0.1-0.4-1.3-0.1-2.2-0.3c-1.2-0.2-2.2-0.7-3.4-0.7c-0.2,0.2-0.2,1.3-0.3,1.6c-0.5,4-0.7,7.1-1.2,11.1
C-57.9-194-59.8-193.9-59.8-194.1z"/>
</g>
</g>
<g class="st2">
<g>
<path class="st6" d="M-95.2-276.9c-0.7-2.8-1.5-5.5-2.3-8.2c-0.1-0.5-0.4-0.8-0.8-1.2c-0.3-0.3-0.1-1.4,0.2-2.4
c0.4,0,1.6,1.8,1.5,2.1c-0.1,0.5-0.1,0.9,0,1.4c0.2-0.7,0.2-0.9,0.5-1.3c1.4-1.9,3.3-2.8,5.6-2.8c1.9,0,1,0.4,2.9,0.6
c2,0.3,4,0.6,5.9-0.1c0.3-0.1,0.4,0,0.5,0.3c0.5,2,1.1,3.9,1.6,5.9c0.4,1.3,0.7,2.6,1.1,3.9c0.2,0.8,0.2,0.8-0.6,1
c-1.2,0.3-2.4,0.3-3.6,0.2c-2.4-0.2-2-0.9-4.5-0.9c-1.5,0-7.9-0.1-6.2,5c0.6,2.3,1.5,5.5,2.1,7.8c0.1,0.2-0.9,0.2-1-0.3
c-0.8-2.7-1.7-6.1-2.4-8.8c0-0.1-0.1-0.1-0.1-0.2"/>
</g>
</g>
<g class="st2">
<g>
<g>
<path class="st6" d="M-396.7-272.6h-1.4v-6.5c0-0.5,0.1-1,0.4-1.3c0.2-0.3,0.5-0.5,0.9-0.5h3.9v1.9h-3.8v1h3.4v1.8h-3.4V-272.6z
"/>
</g>
<g>
<path class="st6" d="M-402.5-272.6h-1.4v-6.5c0-0.5,0.1-1,0.4-1.3c0.2-0.3,0.5-0.5,0.9-0.5h3.9v1.9h-3.8v1h3.4v1.8h-3.4V-272.6z
"/>
</g>
</g>
<polygon class="st6" points="-406.3,-278.1 -406.9,-278.1 -411.1,-278.1 -411.1,-275.9 -406.9,-275.9 -406.3,-275.9
-405.4,-275.9 -405.4,-278.1 "/>
<polygon class="st6" points="-387.2,-278.1 -387.8,-278.1 -392,-278.1 -392,-275.9 -387.8,-275.9 -387.2,-275.9 -386.3,-275.9
-386.3,-278.1 "/>
<polygon class="st6" points="-399.9,-270.1 -399.9,-269.5 -399.9,-265.3 -397.7,-265.3 -397.7,-269.5 -397.7,-270.1 -397.7,-271
-399.9,-271 "/>
<polygon class="st6" points="-399.9,-287.8 -399.9,-287.2 -399.9,-283 -397.7,-283 -397.7,-287.2 -397.7,-287.8 -397.7,-288.7
-399.9,-288.7 "/>
<path class="st6" d="M-398.8-288.9c-6.6,0-11.9,5.3-11.9,11.9s5.3,11.9,11.9,11.9s11.9-5.3,11.9-11.9S-392.2-288.9-398.8-288.9z
M-398.8-267.3c-5.4,0-9.7-4.4-9.7-9.7c0-5.4,4.4-9.7,9.7-9.7s9.7,4.4,9.7,9.7C-389-271.6-393.4-267.3-398.8-267.3z"/>
<rect x="-400.9" y="-290.7" class="st6" width="4.2" height="3.5"/>
<rect x="-400.9" y="-266.2" class="st6" width="4.2" height="3.5"/>
<rect x="-413.1" y="-278.7" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -134.0071 -688.0044)" class="st6" width="4.2" height="3.5"/>
<rect x="-388.6" y="-278.7" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -109.459 -663.4564)" class="st6" width="4.2" height="3.5"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

View File

@ -1,198 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 125.8 100" style="enable-background:new 0 0 125.8 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{display:inline;fill:#010002;}
.st3{stroke:#FFFFFF;stroke-width:9;stroke-miterlimit:10;}
.st4{fill:#010002;}
.st5{display:inline;fill:#222222;}
.st6{fill:#FFFFFF;}
.st7{display:inline;fill:#FCFCFC;}
</style>
<g id="Capa_1" class="st0">
<polygon class="st1" points="187.9,27.1 145.9,27.1 -161.1,27.1 -161.1,65.1 145.9,65.1 187.9,65.1 255.9,65.1 255.9,27.1 "/>
<polygon class="st1" points="27.6,-89.4 27.6,-47.4 27.6,259.6 65.6,259.6 65.6,-47.4 65.6,-89.4 65.6,-157.4 27.6,-157.4 "/>
<path class="st2" d="M46.6-162.4c-115.2,0-208.5,93.3-208.5,208.5s93.3,208.5,208.5,208.5s208.5-93.3,208.5-208.5
S161.7-162.4,46.6-162.4z M46.6,216.1c-93.9,0-170-76.1-170-170s76.1-170,170-170s170,76.1,170,170S140.4,216.1,46.6,216.1z"/>
<rect x="9.7" y="-193.9" class="st2" width="73.7" height="60.3"/>
<rect x="9.7" y="234.6" class="st2" width="73.7" height="60.3"/>
<rect x="-204" y="15.9" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -213.2508 -121.1083)" class="st2" width="73.7" height="60.3"/>
<rect x="224.4" y="15.9" transform="matrix(6.123234e-17 -1 1 6.123234e-17 215.2142 307.3567)" class="st2" width="73.7" height="60.3"/>
</g>
<g id="Capa_3" class="st0">
<rect x="310.9" y="-192.9" style="display:inline;fill:none;" width="82.5" height="96.1"/>
<text transform="matrix(1 0 0 1.7 310.882 -169.3731)" class="st1" style="font-family:'CharlieBrownM54'; font-size:36px;">F</text>
<rect x="427.9" y="-157.4" style="display:inline;fill:none;" width="82.5" height="96.1"/>
<text transform="matrix(1 0 0 1 427.882 -121.3575)" class="st1" style="font-family:'Copy0865'; font-size:36px;">F</text>
<g class="st1">
<g>
<path d="M81.7,122.4H57.9V8.4c0-9.3,2.2-16.7,6.5-22.3c4.2-5.5,9.6-8.2,16-8.2h68.6v32.7H81.7v16.8h59.7v31H81.7V122.4z"/>
</g>
<g>
<path d="M-18.4,122.4h-23.9V8.4c0-9.3,2.2-16.7,6.5-22.3c4.2-5.5,9.6-8.2,16-8.2h68.6v32.7h-67.2v16.8h59.7v31h-59.7V122.4z"/>
</g>
</g>
<polygon class="st1" points="-85.4,27.1 -95.5,27.1 -169.1,27.1 -169.1,65.1 -95.5,65.1 -85.4,65.1 -69.1,65.1 -69.1,27.1 "/>
<polygon class="st1" points="247.6,27.1 237.5,27.1 163.9,27.1 163.9,65.1 237.5,65.1 247.6,65.1 263.9,65.1 263.9,27.1 "/>
<polygon class="st1" points="26.9,166.4 26.9,176.5 26.9,250.1 64.9,250.1 64.9,176.5 64.9,166.4 64.9,150.1 26.9,150.1 "/>
<polygon class="st1" points="26.9,-141.6 26.9,-131.6 26.9,-57.9 64.9,-57.9 64.9,-131.6 64.9,-141.6 64.9,-157.9 26.9,-157.9 "/>
<path class="st2" d="M46.6-162.4c-115.2,0-208.5,93.3-208.5,208.5s93.3,208.5,208.5,208.5s208.5-93.3,208.5-208.5
S161.7-162.4,46.6-162.4z M46.6,216.1c-93.9,0-170-76.1-170-170s76.1-170,170-170s170,76.1,170,170S140.4,216.1,46.6,216.1z"/>
<rect x="9.7" y="-193.9" class="st2" width="73.7" height="60.3"/>
<rect x="9.7" y="234.6" class="st2" width="73.7" height="60.3"/>
<rect x="-204" y="15.9" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -213.2508 -121.1083)" class="st2" width="73.7" height="60.3"/>
<rect x="224.4" y="15.9" transform="matrix(6.123234e-17 -1 1 6.123234e-17 215.2142 307.3567)" class="st2" width="73.7" height="60.3"/>
</g>
<g id="Capa_2" class="st0">
<g class="st1">
<g>
<path class="st3" d="M252.9,55.9c-1.2,8.4-1.2,16.8-2.5,25.2c-5.2,32.8-17.4,62.6-37.7,88.9c-29.5,38.3-67.8,63-114.9,73.8
c-19.9,4.5-40,5.4-60.4,3.7c-24.8-2.1-48.3-8.5-70.6-19.3c-14.8-7.2-28.4-16.4-41-27.1c-17-14.5-31.1-31.3-42.3-50.6
c-11.7-20-19.7-41.4-23.8-64.1c-1.9-10.3,0.9-13.9,11.2-15.9c8.3-1.6,16.5-3.6,25-3.8c6.8-0.2,9.8,2.1,11.2,8.9
c2.9,13.9,6.6,27.5,13.1,40.1c23,44.9,59.2,72.9,108.9,81.8c44.5,8,84.7-3.1,119.9-31.5c29.3-23.6,47.1-54.4,53.3-91.3
c7.1-42.4-3.2-81.1-29.1-115.3c-23.9-31.5-55.9-50.3-94.7-56.7c-40.3-6.6-77.3,2.4-110.8,26.2c-9,6.4-16.7,14.1-25.5,22.8
c7.5-1.2,13.7-2.2,19.9-3.3c8.3-1.5,16.6-3.1,24.9-4.5c8.3-1.4,12.7,1.4,14.5,9.6c1.8,8.1,3.4,16.2,4.6,24.4
C7.2-14.5,3.2-9.7-3.5-8.6C-31.8-3.9-60,1.2-88.2,6.3c-9.9,1.8-19.9,3.5-29.8,5.5c-7.9,1.6-14.7-0.2-16.6-11.3
c-6.3-36.9-13-73.7-19.6-110.6c0-4,0-8,0-12c2.3-3.3,5.3-5.3,9.3-6c7.8-1.4,15.6-3,23.5-4.2c8.6-1.3,13,2,14.7,10.7
c1,5.4,1.9,10.7,2.9,16.1c1.7,9.6,3.5,19.2,4.9,27.3c2.2-1.7,4.9-3.4,7.3-5.5c2.4-2.1,4.5-4.4,6.7-6.7c21.9-22.7,48.3-38,78-48
c13.2-4.4,26.9-6.9,40.7-8.7c13.7,0,27.3,0,41,0c16.8,2.1,33.2,5.6,49.2,11.5c23.8,8.8,45.1,21.8,63.9,38.7
c14.2,12.9,26.3,27.6,36.3,44.1c13.3,22,21.9,45.6,26.1,71c1.4,8.5,1.4,17.2,2.6,25.7C252.9,47.9,252.9,51.9,252.9,55.9z"/>
</g>
</g>
</g>
<g id="Capa_5" class="st0">
<g class="st1">
<g>
<path d="M-13.1-25.2c-8.3-31.5-17.4-62.8-25.7-94.3c-1.5-5.7-5.1-9.4-8.7-13.3c-3.2-3.4-1-16.2,2.1-27.1
c4.7-0.2,17.9,20.2,16.7,24c-1.7,5.6-1.1,10.8,0.5,16.4c2-7.8,1.9-10.6,5.5-15.4c16-21.4,37.4-31.7,64-32.4
c22.2-0.5,11.4,4.1,33.1,7.3c22.7,3.3,45.4,0.7,68-6.7c3.7-1.2,5,0.5,5.9,3.7c6.2,22.5,12.5,50.6,18.7,73
c4.2,15,8.2,20.9,12.5,35.9c2.4,8.6,2.3,9.5-6.6,11.6c-13.5,3.3-27.3,3.5-41.2,2.5c-28-2.1-22.8-10.1-51.1-10.2
C63.4-50.2-9.5-42.4,10,16.6c7.3,26.6,17.2,62.4,24.5,89c0.7,2.7-9.9,2-11.5-3.4C14.4,71.7,3.6,32-4.8,1.4C-5,0.6-5.5-0.1-6-1.4"
/>
</g>
</g>
</g>
<g id="Capa_6">
<path class="st4" d="M94.4,83.1l11.3-21.2h20.1v-6.5h-22.1c-1.2,0-2.3,0.7-2.9,1.7l-8.6,16.3l-9.8-28.5c-0.5-1.3-1.6-2.2-3-2.2
c-1.4,0-2.6,0.7-3.1,2l-8,18.9L58.1,2.7c-0.3-1.5-1.8-2.7-3.2-2.7c-1.8,0-3,1.1-3.2,2.6l-9.4,74.2l-8.5-44.2
c-0.3-1.4-1.4-2.4-2.8-2.6c-1.4-0.2-2.8,0.6-3.4,1.8L16.3,55.4H0v6.5h18.4c1.2,0,2.4-0.7,3-1.9l7.9-16.4l10.3,53.7
c0.3,1.5,1.7,2.7,3.2,2.7h0.1c1.6,0,2.9-1.2,3.1-2.8l9.4-74l8.5,52.3c0.3,1.4,1.4,2.5,2.8,2.6c1.5,0.2,2.8-0.6,3.4-2l8.9-21
l9.4,27.5c0.4,1.2,1.6,2.1,2.8,2.2C92.6,84.9,93.8,84.2,94.4,83.1z"/>
</g>
<g id="Capa_4" class="st0">
<image style="display:inline;overflow:visible;" width="1022" height="139" xlink:href="D019D3CC.jpg" transform="matrix(1 0 0 1 -794.1179 -358.8575)">
</image>
<rect x="-463.8" y="-295.8" class="st5" width="104.7" height="37"/>
<rect x="-470.1" y="-107.8" class="st5" width="44" height="37"/>
<g class="st1">
<polygon class="st6" points="-443.7,-89.3 -446.4,-89.3 -466.5,-89.3 -466.5,-86.9 -446.4,-86.9 -443.7,-86.9 -439.2,-86.9
-439.2,-89.3 "/>
<polygon class="st6" points="-454.1,-97.3 -454.1,-94.5 -454.1,-74.4 -451.6,-74.4 -451.6,-94.5 -451.6,-97.3 -451.6,-101.7
-454.1,-101.7 "/>
<path class="st6" d="M-452.9-102.4c-7.5,0-13.6,6.1-13.6,13.6s6.1,13.6,13.6,13.6c7.5,0,13.6-6.1,13.6-13.6
S-445.4-102.4-452.9-102.4z M-452.9-77.6c-6.1,0-11.1-5-11.1-11.1s5-11.1,11.1-11.1c6.1,0,11.1,5,11.1,11.1
S-446.8-77.6-452.9-77.6z"/>
<rect x="-454.7" y="-104.1" class="st6" width="3.6" height="3.9"/>
<rect x="-454.7" y="-76" class="st6" width="3.6" height="3.9"/>
<rect x="-468.7" y="-90.1" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -378.8331 -555.0355)" class="st6" width="3.6" height="3.9"/>
<rect x="-440.7" y="-90.1" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -350.777 -526.9794)" class="st6" width="3.6" height="3.9"/>
</g>
<g class="st1">
<polygon class="st6" points="-445,-278.8 -447.2,-278.8 -463.6,-278.8 -463.6,-276.7 -447.2,-276.7 -445,-276.7 -441.4,-276.7
-441.4,-278.8 "/>
<polygon class="st6" points="-453.5,-284.7 -453.5,-282.5 -453.5,-266.1 -451.5,-266.1 -451.5,-282.5 -451.5,-284.7
-451.5,-288.3 -453.5,-288.3 "/>
<path class="st6" d="M-452.5-288.9c-6.1,0-11.1,5-11.1,11.1s5,11.1,11.1,11.1c6.1,0,11.1-5,11.1-11.1S-446.4-288.9-452.5-288.9z
M-452.5-268.7c-5,0-9.1-4.1-9.1-9.1c0-5,4.1-9.1,9.1-9.1c5,0,9.1,4.1,9.1,9.1C-443.5-272.8-447.5-268.7-452.5-268.7z"/>
<rect x="-454.5" y="-290.3" class="st6" width="3.9" height="3.2"/>
<rect x="-454.5" y="-267.5" class="st6" width="3.9" height="3.2"/>
<rect x="-465.9" y="-279.4" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -186.1642 -741.693)" class="st6" width="3.9" height="3.2"/>
<rect x="-443.1" y="-279.4" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -163.3761 -718.9049)" class="st6" width="3.9" height="3.2"/>
</g>
<rect x="-163.3" y="-295.8" class="st5" width="262.2" height="37"/>
<path class="st7" d="M-140.3-269.9l2.5-4.7h4.5v-1.5h-4.9c-0.3,0-0.5,0.1-0.6,0.4l-1.9,3.6l-2.2-6.3c-0.1-0.3-0.4-0.5-0.7-0.5
c-0.3,0-0.6,0.2-0.7,0.4l-1.8,4.2l-2.3-13.6c-0.1-0.3-0.4-0.6-0.7-0.6c-0.4,0-0.7,0.2-0.7,0.6l-2.1,16.5l-1.9-9.8
c-0.1-0.3-0.3-0.5-0.6-0.6c-0.3,0-0.6,0.1-0.8,0.4l-2.5,5.2h-3.6v1.5h4.1c0.3,0,0.5-0.2,0.7-0.4l1.8-3.7l2.3,12
c0.1,0.3,0.4,0.6,0.7,0.6h0c0.4,0,0.6-0.3,0.7-0.6l2.1-16.5l1.9,11.7c0.1,0.3,0.3,0.6,0.6,0.6c0.3,0,0.6-0.1,0.8-0.4l2-4.7l2.1,6.1
c0.1,0.3,0.3,0.5,0.6,0.5C-140.7-269.5-140.4-269.7-140.3-269.9z"/>
<g class="st1">
<g>
<path class="st6" d="M-91.4-368.9c-0.6-1.9-2-6.9-2.6-8.8c-1.8-5.9-3.7-11.7-5.5-17.6c-0.1-0.3,0-0.5,0.1-0.7
c0.4-0.5,0.7,0,1.1-0.5c0.2-0.3,0.4-0.4,0.7-0.6c1.4-1,3-1.5,4.7-1.5c0.6,0,1,0.2,1.2,0.7c0.1,0.2,0.6,0.6,1,0.7
c1.5,0.1,2.9-0.1,4.2-0.8c1.2-0.6,2.5-0.6,3.7-1.4c0.8-0.5,1.7-1.3,2.6-1.3c0.6,0,1.1,0,1.7,0.1c0.2,0,0.4,0.1,0.5,0.4
c1.7,4.6,3.2,8.3,4.9,12.9c0.2,0.5,0.2,0.2-0.4,0.1c-2.5-0.4-4.8,0.3-6.9,1.7c-1,0.7-1.6,1.3-2.7,1.8c-0.4,0.2-0.7,0.3-1.1,0.4
c-1.2,0.2-2.2-0.4-2.5-1.6c-0.1-0.3-0.6-0.5-0.9-0.6c-0.9-0.2-1.7,0-2.6,0.2c-1,0.3-2,0.7-2.9,1.1c-0.3,0.1-1.4,0.9-1.3,1.2
c1.1,3.3,3.1,9.8,4.2,13.1c0,0.1-0.1,0.1-0.1,0.2C-90.3-369.3-91.4-368.7-91.4-368.9z"/>
</g>
</g>
<g class="st1">
<g>
<path class="st6" d="M-46.1-374.3c-0.6-2-1.8-5.4-2.5-7.4c-2-6.2-3.9-12.4-5.9-18.7c-0.1-0.3-0.1-0.5,0.1-0.7
c0.4-0.5,0.8,0,1.1-0.6c0.2-0.3,0.5-0.5,0.7-0.7c1.5-1.1,3.1-1.6,4.9-1.6c0.6,0,2.6,0.2,2.8,0.8c0.1,0.2,0.7,0.7,1.1,0.7
c1.6,0.1,2.6,0,4-0.7c1.5-0.7,1.3-0.6,2.2-1.7c0.8-0.6,1.8-1.4,2.7-1.4c0.6,0,1.2,0,1.8,0.1c0.3,0,0.4,0.1,0.5,0.4
c1.8,4.9,2.9,7.2,4.7,12.1c0.2,0.6,0.2,0.2-0.4,0.1c-2.7-0.5-4.8-0.3-7,1.2c-1.1,0.7-2.6,1.4-3.8,1.9c-0.4,0.2-0.8,0.3-1.2,0.4
c-1.2,0.2-3.6-0.5-3.9-1.7c-0.1-0.3-1.2,0-2.1,0.3c-1.1,0.3-2.5,0.8-3.5,1.2c-0.1,0.3,0.8,2.5,0.9,2.8c1.2,3.5,2.8,8.5,3.9,12
c0,0.1-0.1,0.1-0.1,0.2C-44.8-374.8-46-374.2-46.1-374.3z"/>
</g>
</g>
<g class="st1">
<g>
<path class="st6" d="M-59.5-194.1c0.3-2.2,0.3-3.2,0.6-5.5c1-6.9,2-13.8,2.9-20.7c0-0.3,0.2-0.5,0.5-0.7c0.6-0.3,0.6,1.8,1.2,1.5
c0.3-0.2,0.7-0.2,1-0.3c1.9-0.4,3.7-0.1,5.5,0.7c0.6,0.3,2.4,1.4,2.3,2c0,0.2,0.7,1.1,1,1.4c1.5,1.2,2.2,1.1,3.9,1
c1.8,0,1.5,0,2.9-0.6c1.1-0.2,2.3-0.5,3.3-0.1c0.6,0.2,1.1,0.5,1.7,0.9c0.2,0.2,0.3,0.3,0.3,0.6c-0.6,5.6-0.3,6.8-0.9,12.3
c-0.1,0.6,0.1,0.3-0.4-0.1c-2.4-1.7-3.9-1.4-6.7-1.1c-1.4,0.2-3.2,0.1-4.5,0.1c-0.4,0-0.9-0.1-1.3-0.2c-1.3-0.3-3.4-1.7-4.3-3.1
c0.1-0.4-1.3-0.1-2.2-0.3c-1.2-0.2-2.2-0.7-3.4-0.7c-0.2,0.2-0.2,1.3-0.3,1.6c-0.5,4-0.7,7.1-1.2,11.1
C-57.7-194-59.5-193.9-59.5-194.1z"/>
</g>
</g>
<g class="st1">
<g>
<path class="st6" d="M-94.9-276.9c-0.7-2.8-1.5-5.5-2.3-8.2c-0.1-0.5-0.4-0.8-0.8-1.2c-0.3-0.3-0.1-1.4,0.2-2.4
c0.4,0,1.6,1.8,1.5,2.1c-0.1,0.5-0.1,0.9,0,1.4c0.2-0.7,0.2-0.9,0.5-1.3c1.4-1.9,3.3-2.8,5.6-2.8c1.9,0,1,0.4,2.9,0.6
c2,0.3,4,0.6,5.9-0.1c0.3-0.1,0.4,0,0.5,0.3c0.5,2,1.1,3.9,1.6,5.9c0.4,1.3,0.7,2.6,1.1,3.9c0.2,0.8,0.2,0.8-0.6,1
c-1.2,0.3-2.4,0.3-3.6,0.2c-2.4-0.2-2-0.9-4.5-0.9c-1.5,0-7.9-0.1-6.2,5c0.6,2.3,1.5,5.5,2.1,7.8c0.1,0.2-0.9,0.2-1-0.3
c-0.8-2.7-1.7-6.1-2.4-8.8c0-0.1-0.1-0.1-0.1-0.2"/>
</g>
</g>
<g class="st1">
<g>
<g>
<path class="st6" d="M-396.5-272.6h-1.4v-6.5c0-0.5,0.1-1,0.4-1.3c0.2-0.3,0.5-0.5,0.9-0.5h3.9v1.9h-3.8v1h3.4v1.8h-3.4V-272.6z
"/>
</g>
<g>
<path class="st6" d="M-402.2-272.6h-1.4v-6.5c0-0.5,0.1-1,0.4-1.3c0.2-0.3,0.5-0.5,0.9-0.5h3.9v1.9h-3.8v1h3.4v1.8h-3.4V-272.6z
"/>
</g>
</g>
<polygon class="st6" points="-406,-278.1 -406.6,-278.1 -410.8,-278.1 -410.8,-275.9 -406.6,-275.9 -406,-275.9 -405.1,-275.9
-405.1,-278.1 "/>
<polygon class="st6" points="-387,-278.1 -387.5,-278.1 -391.8,-278.1 -391.8,-275.9 -387.5,-275.9 -387,-275.9 -386,-275.9
-386,-278.1 "/>
<polygon class="st6" points="-399.6,-270.1 -399.6,-269.5 -399.6,-265.3 -397.4,-265.3 -397.4,-269.5 -397.4,-270.1 -397.4,-271
-399.6,-271 "/>
<polygon class="st6" points="-399.6,-287.8 -399.6,-287.2 -399.6,-283 -397.4,-283 -397.4,-287.2 -397.4,-287.8 -397.4,-288.7
-399.6,-288.7 "/>
<path class="st6" d="M-398.5-288.9c-6.6,0-11.9,5.3-11.9,11.9s5.3,11.9,11.9,11.9s11.9-5.3,11.9-11.9S-391.9-288.9-398.5-288.9z
M-398.5-267.3c-5.4,0-9.7-4.4-9.7-9.7c0-5.4,4.4-9.7,9.7-9.7c5.4,0,9.7,4.4,9.7,9.7C-388.7-271.6-393.1-267.3-398.5-267.3z"/>
<rect x="-400.6" y="-290.7" class="st6" width="4.2" height="3.5"/>
<rect x="-400.6" y="-266.2" class="st6" width="4.2" height="3.5"/>
<rect x="-412.8" y="-278.7" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -133.7235 -687.7208)" class="st6" width="4.2" height="3.5"/>
<rect x="-388.3" y="-278.7" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -109.1754 -663.1727)" class="st6" width="4.2" height="3.5"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 73.3 100" style="enable-background:new 0 0 73.3 100;" xml:space="preserve">
<g>
<path d="M63.2,9.2C56,3.1,47.9,0,36.7,0S17.3,3.1,10.2,9.2C4.1,14.3,0,22.4,0,31.6c0,8.1,9.1,35.3,9.1,35.3c0,0.2,0.1,0.4,0.3,0.4
l12.3,6.2c1.1,0.5,2,1.4,2.5,2.5c0.7,1.4,1.6,3.1,2.1,4.1c0.1,0.2,21.6,0.2,21.7,0c0.4-1.2,1.1-3.4,1.6-4.8
c0.2-0.6,0.6-1.1,1.2-1.4l13.1-6.6c0.2-0.1,0.3-0.2,0.3-0.4c0,0,9.1-27.2,9.1-35.3C73.3,22.4,70.3,14.3,63.2,9.2z M21.9,60.1
c-4.7,0-8.6-4.7-8.6-10.6s3.9-10.6,8.6-10.6c4.7,0,8.6,4.7,8.6,10.6C30.5,55.3,26.6,60.1,21.9,60.1z M39.7,70.4
c0.1,0-1.2-1-3.1-1.1c-0.8,0-2.6,1.1-3,1.2c-3.2,0.3-3.1-2-3.1-3.1c0-1,1-3,2-4.1c1.7-1.7,2.6-3.3,3.5-5c0.2-0.5,0.9-0.5,1.2-0.1
c1.1,1.6,2.5,3.3,3.4,4.9c0,0.1,2.1,3.2,2.1,4.2C42.7,69.3,42.1,70.7,39.7,70.4z M52.9,60.1c-4.7,0-8.6-4.7-8.6-10.6
s3.9-10.6,8.6-10.6c4.7,0,8.6,4.7,8.6,10.6C61.5,55.3,57.6,60.1,52.9,60.1z"/>
<path d="M56.1,77.5l-3.2-0.8c-0.2-0.1-0.4,0-0.6,0.2c-0.4,0.9-0.4,1.7-0.4,1.7c-2,4.1-3.2,5.8-5.1,7.1c-2.3,1.7-6.1,3-10.2,3
c-5.1,0-7.8-1.4-10.2-3c-1.8-1.3-3-3-5.1-7.1l-0.1-0.1c-0.2-0.2-0.7-0.8-0.9-1.4c-0.1-0.3-0.4-0.5-0.7-0.4l-2.7,0.7
c-0.6,0.1-0.8,0.5-0.7,0.8l2.8,9.4c0,0.1,0.1,0.2,0.2,0.3l5.9,4.9c0.1,0.1,0.1,0.1,0.2,0.2c2,5,6.1,7,11.1,7c2,0,5.1-1,6.1-2
c2-1,4-3,5-5c0-0.1,0.1-0.1,0.1-0.2c0.7-0.5,5.1-4.3,5.9-4.9c0.1-0.1,0.1-0.2,0.2-0.3l2.8-9.4C56.6,77.9,56.4,77.6,56.1,77.5z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.0" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 84 100" style="enable-background:new 0 0 84 100;" xml:space="preserve">
<path d="M82.9,41.5c-1.5-5.4-3-7.6-4.5-13.1c-2.3-8.2-4.6-18.4-6.8-26.6c-0.3-1.2-0.8-1.8-2.2-1.4c-8.2,2.7-16.5,3.6-24.8,2.4
c-7.9-1.1-4-2.8-12.1-2.7c-9.7,0.2-17.5,4-23.3,11.8c-1.3,1.8-1.3,2.8-2,5.6c-0.6-2-0.8-3.9-0.2-6C7.5,10.3,2.7,2.9,1,3
c-1.1,4-1.9,8.6-0.8,9.9c1.3,1.4,2.6,2.8,3.2,4.8C6.5,29.2,9.8,40.6,12.8,52l2.6,8.7c0.2,0.4,0.4,0.7,0.4,1
c3.1,11.1,7,25.6,10.1,36.7c0.6,2,4.4,2.2,4.2,1.2C27.5,90,23.8,77,21.2,67.2C14.1,45.8,40.6,42.9,46.9,43c10.3,0,8.4,3,18.6,3.7
c5.1,0.4,10.1,0.3,15-0.9C83.7,45,83.8,44.7,82.9,41.5z"/>
</svg>

After

Width:  |  Height:  |  Size: 892 B

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.0" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<g>
<path d="M53.7,37.2c-0.9,1.1-1.3,2.7-1.3,4.6v23.3h4.9V52h12.2v-6.4H57.3v-3.4H71v-6.7H57C55.7,35.5,54.6,36.1,53.7,37.2z"/>
<path d="M33.2,37.2c-0.9,1.1-1.3,2.7-1.3,4.6v23.3h4.9V52H49v-6.4H36.8v-3.4h13.7v-6.7h-14C35.2,35.5,34.1,36.1,33.2,37.2z"/>
<path d="M100.2,41.9h-8.1C88.9,24.4,75.1,10.6,57.6,7.5V0.4H42.5v7.1C25,10.6,11.2,24.4,8.1,41.9H0.2V57h7.9
C11.2,74.5,25,88.3,42.5,91.5v8.9h15.1v-8.9C75.1,88.3,88.9,74.5,92.1,57h8.1V41.9z M53.8,84v-7.9v-2.1v-3.3H46v3.3v2.1V84
c-16-1.8-28.8-14.6-30.5-30.7H21h2.1h3.3v-7.8h-3.3H21h-5.5C17.3,29.5,30,16.8,46,14.9v13.3h7.8V14.9c16.2,1.7,29,14.5,30.8,30.7
H74.1v7.8h10.6C82.8,69.5,70,82.3,53.8,84z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,180 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;fill:none;}
.st2{display:inline;}
.st3{fill:#010002;}
.st4{stroke:#FFFFFF;stroke-width:9;stroke-miterlimit:10;}
.st5{display:inline;fill:#010002;}
.st6{display:inline;fill:#222222;}
.st7{fill:#FFFFFF;}
.st8{display:inline;fill:#FCFCFC;}
</style>
<path d="M92.5,41.6C89.4,24,75.5,10.2,58,7.1V0H42.9v7.1C25.4,10.2,11.6,24,8.5,41.5h-8v15.1h7.9C11.6,74.2,25.4,88,42.9,91.1v8.9
H58v-8.9C75.6,88,89.4,74.2,92.5,56.7h8V41.6H92.5z M46.6,83.7C30.5,81.9,17.7,69.1,15.9,53h30.7V83.7z M46.6,21.4V30v15.2H15.9
c1.8-16.1,14.6-28.9,30.7-30.7V21.4z M54.3,83.7V53h16.5h8.6h5.7C83.3,69.1,70.4,81.9,54.3,83.7z M79.4,45.2h-8.6H54.3V30v-8.6v-6.9
c16.1,1.8,29,14.6,30.8,30.7H79.4z"/>
<g id="Capa_3" class="st0">
<rect x="468.8" y="-211.8" class="st1" width="82.5" height="96.1"/>
<text transform="matrix(0.5882 0 0 1 468.8486 -188.2974)" class="st2" style="font-family:'ArialMT'; font-size:61.2px;">F</text>
<rect x="427.6" y="-157.4" class="st1" width="82.5" height="96.1"/>
<text transform="matrix(1 0 0 1 427.5984 -121.3575)" class="st2" style="font-family:'ArialMT'; font-size:36px;">F</text>
<g class="st2">
<g>
<g>
<path d="M56.9,65.2H52V41.9c0-1.9,0.4-3.4,1.3-4.6c0.9-1.1,2-1.7,3.3-1.7h14v6.7H56.9v3.4h12.2v6.4H56.9V65.2z"/>
</g>
<g>
<path d="M36.4,65.2h-4.9V41.9c0-1.9,0.4-3.4,1.3-4.6c0.9-1.1,2-1.7,3.3-1.7h14v6.7H36.4v3.4h12.2v6.4H36.4V65.2z"/>
</g>
</g>
<polygon points="22.7,45.7 20.6,45.7 5.5,45.7 5.5,53.5 20.6,53.5 22.7,53.5 26,53.5 26,45.7 "/>
<polygon points="90.8,45.7 88.7,45.7 73.7,45.7 73.7,53.5 88.7,53.5 90.8,53.5 94.1,53.5 94.1,45.7 "/>
<polygon points="45.6,74.2 45.6,76.3 45.6,91.4 53.4,91.4 53.4,76.3 53.4,74.2 53.4,70.9 45.6,70.9 "/>
<polygon points="45.6,11.2 45.6,13.3 45.6,28.3 53.4,28.3 53.4,13.3 53.4,11.2 53.4,7.9 45.6,7.9 "/>
<path class="st3" d="M49.7,6.9C26.1,6.9,7,26,7,49.6s19.1,42.7,42.7,42.7s42.7-19.1,42.7-42.7S73.2,6.9,49.7,6.9z M49.7,84.4
c-19.2,0-34.8-15.6-34.8-34.8s15.6-34.8,34.8-34.8s34.8,15.6,34.8,34.8S68.9,84.4,49.7,84.4z"/>
<rect x="42.1" y="0.5" class="st3" width="15.1" height="12.3"/>
<rect x="42.1" y="88.2" class="st3" width="15.1" height="12.3"/>
<rect x="-0.3" y="42" class="st3" width="12.3" height="15.1"/>
<rect x="87.4" y="42" class="st3" width="12.3" height="15.1"/>
</g>
</g>
<g id="Capa_2_1_" class="st0">
<g class="st2">
<g>
<path class="st4" d="M252.6,55.9c-1.2,8.4-1.2,16.8-2.5,25.2c-5.2,32.8-17.4,62.6-37.7,88.9c-29.5,38.3-67.8,63-114.9,73.8
c-19.9,4.5-40,5.4-60.4,3.7c-24.8-2.1-48.3-8.5-70.6-19.3c-14.8-7.2-28.4-16.4-41-27.1c-17-14.5-31.1-31.3-42.3-50.6
c-11.7-20-19.7-41.4-23.8-64.1c-1.9-10.3,0.9-13.9,11.2-15.9c8.3-1.6,16.5-3.6,25-3.8c6.8-0.2,9.8,2.1,11.2,8.9
c2.9,13.9,6.6,27.5,13.1,40.1c23,44.9,59.2,72.9,108.9,81.8c44.5,8,84.7-3.1,119.9-31.5c29.3-23.6,47.1-54.4,53.3-91.3
c7.1-42.4-3.2-81.1-29.1-115.3c-23.9-31.7-56-50.5-94.7-56.9c-40.3-6.6-77.3,2.4-110.8,26.2c-9,6.4-16.7,14.1-25.5,22.8
c7.5-1.2,13.7-2.2,19.9-3.3c8.3-1.5,16.6-3.1,24.9-4.5s12.7,1.4,14.5,9.6C3-38.6,4.6-30.4,5.8-22.2C6.9-14.5,2.9-9.7-3.8-8.6
C-32-3.9-60.2,1.2-88.4,6.3c-9.9,1.8-19.9,3.5-29.8,5.5c-7.9,1.6-14.7-0.2-16.6-11.3c-6.3-36.9-13-73.7-19.6-110.6c0-4,0-8,0-12
c2.3-3.3,5.3-5.3,9.3-6c7.8-1.4,15.6-3,23.5-4.2c8.6-1.3,13,2,14.7,10.7c1,5.4,1.9,10.7,2.9,16.1c1.7,9.6,3.5,19.2,4.9,27.3
c2.2-1.7,4.9-3.4,7.3-5.5s4.5-4.4,6.7-6.7c21.9-22.7,48.3-38,78-48c13.2-4.4,26.9-6.9,40.7-8.7c13.7,0,27.3,0,41,0
c16.8,2.1,33.2,5.6,49.2,11.5c23.8,8.8,45.1,21.8,63.9,38.7C201.9-84,214-69.3,224-52.8c13.3,22,21.9,45.6,26.1,71
c1.4,8.5,1.4,17.2,2.6,25.7C252.6,47.9,252.6,51.9,252.6,55.9z"/>
</g>
</g>
</g>
<g id="Capa_5" class="st0">
<g class="st2">
<g>
<path d="M12.8,51.8c-3-11.5-6.3-22.9-9.4-34.4c-0.5-2.1-1.9-3.4-3.2-4.8C-1,11.4-0.2,6.7,1,2.7c1.7-0.1,6.5,7.4,6.1,8.7
c-0.6,2.1-0.4,3.9,0.2,6c0.7-2.8,0.7-3.9,2-5.6C15.2,4,22.9,0.3,32.6,0c8.1-0.2,4.1,1.5,12.1,2.7C53,3.9,61.2,2.9,69.5,0.2
c1.3-0.4,1.8,0.2,2.2,1.4C74,9.8,76.2,20,78.5,28.2c1.5,5.5,3,7.6,4.5,13.1c0.9,3.1,0.8,3.4-2.4,4.2c-4.9,1.2-9.9,1.3-15,0.9
c-10.2-0.8-8.3-3.7-18.6-3.7c-6.3,0-32.8,2.8-25.7,24.3c2.7,9.7,6.3,22.7,8.9,32.4c0.3,1-3.6,0.7-4.2-1.2
c-3.1-11.1-7.1-25.6-10.1-36.7c-0.1-0.3-0.2-0.5-0.4-1"/>
</g>
</g>
</g>
<g id="Capa_6" class="st0">
<path class="st5" d="M94.1,83.1l11.3-21.2h20.1v-6.5h-22.1c-1.2,0-2.3,0.7-2.9,1.7l-8.6,16.3l-9.8-28.5c-0.5-1.3-1.6-2.2-3-2.2
s-2.6,0.7-3.1,2l-8,18.9L57.9,2.7C57.6,1.2,56.1,0,54.7,0c-1.8,0-3,1.1-3.2,2.6L42,76.8l-8.5-44.2c-0.3-1.4-1.4-2.4-2.8-2.6
c-1.4-0.2-2.8,0.6-3.4,1.8L16,55.4H-0.3v6.5h18.4c1.2,0,2.4-0.7,3-1.9L29,43.6l10.3,53.7c0.3,1.5,1.7,2.7,3.2,2.7h0.1
c1.6,0,2.9-1.2,3.1-2.8l9.4-74l8.5,52.3c0.3,1.4,1.4,2.5,2.8,2.6c1.5,0.2,2.8-0.6,3.4-2l8.9-21l9.4,27.5c0.4,1.2,1.6,2.1,2.8,2.2
C92.3,84.9,93.5,84.2,94.1,83.1z"/>
</g>
<g id="Capa_4" class="st0">
<rect x="-464.1" y="-295.8" class="st6" width="104.7" height="37"/>
<rect x="-470.4" y="-107.8" class="st6" width="44" height="37"/>
<g class="st2">
<polygon class="st7" points="-444,-89.3 -446.7,-89.3 -466.8,-89.3 -466.8,-86.9 -446.7,-86.9 -444,-86.9 -439.5,-86.9
-439.5,-89.3 "/>
<polygon class="st7" points="-454.4,-97.3 -454.4,-94.5 -454.4,-74.4 -451.9,-74.4 -451.9,-94.5 -451.9,-97.3 -451.9,-101.7
-454.4,-101.7 "/>
<path class="st7" d="M-453.2-102.4c-7.5,0-13.6,6.1-13.6,13.6s6.1,13.6,13.6,13.6s13.6-6.1,13.6-13.6S-445.7-102.4-453.2-102.4z
M-453.2-77.6c-6.1,0-11.1-5-11.1-11.1s5-11.1,11.1-11.1s11.1,5,11.1,11.1S-447-77.6-453.2-77.6z"/>
<rect x="-455" y="-104.1" class="st7" width="3.6" height="3.9"/>
<rect x="-455" y="-76" class="st7" width="3.6" height="3.9"/>
<rect x="-469.2" y="-89.9" class="st7" width="3.9" height="3.6"/>
<rect x="-441.2" y="-89.9" class="st7" width="3.9" height="3.6"/>
</g>
<g class="st2">
<polygon class="st7" points="-445.3,-278.8 -447.5,-278.8 -463.9,-278.8 -463.9,-276.7 -447.5,-276.7 -445.3,-276.7
-441.7,-276.7 -441.7,-278.8 "/>
<polygon class="st7" points="-453.8,-284.7 -453.8,-282.5 -453.8,-266.1 -451.8,-266.1 -451.8,-282.5 -451.8,-284.7
-451.8,-288.3 -453.8,-288.3 "/>
<path class="st7" d="M-452.8-288.9c-6.1,0-11.1,5-11.1,11.1s5,11.1,11.1,11.1s11.1-5,11.1-11.1S-446.7-288.9-452.8-288.9z
M-452.8-268.7c-5,0-9.1-4.1-9.1-9.1s4.1-9.1,9.1-9.1s9.1,4.1,9.1,9.1C-443.8-272.8-447.8-268.7-452.8-268.7z"/>
<rect x="-454.8" y="-290.3" class="st7" width="3.9" height="3.2"/>
<rect x="-454.8" y="-267.5" class="st7" width="3.9" height="3.2"/>
<rect x="-465.8" y="-279.7" class="st7" width="3.2" height="3.9"/>
<rect x="-443.1" y="-279.7" class="st7" width="3.2" height="3.9"/>
</g>
<rect x="-163.6" y="-295.8" class="st6" width="262.2" height="37"/>
<path class="st8" d="M-140.5-269.9l2.5-4.7h4.5v-1.5h-4.9c-0.3,0-0.5,0.1-0.6,0.4l-1.9,3.6l-2.2-6.3c-0.1-0.3-0.4-0.5-0.7-0.5
s-0.6,0.2-0.7,0.4l-1.8,4.2l-2.3-13.6c-0.1-0.3-0.4-0.6-0.7-0.6c-0.4,0-0.7,0.2-0.7,0.6l-2.1,16.5l-1.9-9.8
c-0.1-0.3-0.3-0.5-0.6-0.6c-0.3,0-0.6,0.1-0.8,0.4l-2.5,5.2h-3.6v1.5h4.1c0.3,0,0.5-0.2,0.7-0.4l1.8-3.7l2.3,12
c0.1,0.3,0.4,0.6,0.7,0.6l0,0c0.4,0,0.6-0.3,0.7-0.6l2.1-16.5l1.9,11.7c0.1,0.3,0.3,0.6,0.6,0.6s0.6-0.1,0.8-0.4l2-4.7l2.1,6.1
c0.1,0.3,0.3,0.5,0.6,0.5C-141-269.5-140.7-269.7-140.5-269.9z"/>
<g class="st2">
<g>
<path class="st7" d="M-91.7-368.9c-0.6-1.9-2-6.9-2.6-8.8c-1.8-5.9-3.7-11.7-5.5-17.6c-0.1-0.3,0-0.5,0.1-0.7
c0.4-0.5,0.7,0,1.1-0.5c0.2-0.3,0.4-0.4,0.7-0.6c1.4-1,3-1.5,4.7-1.5c0.6,0,1,0.2,1.2,0.7c0.1,0.2,0.6,0.6,1,0.7
c1.5,0.1,2.9-0.1,4.2-0.8c1.2-0.6,2.5-0.6,3.7-1.4c0.8-0.5,1.7-1.3,2.6-1.3c0.6,0,1.1,0,1.7,0.1c0.2,0,0.4,0.1,0.5,0.4
c1.7,4.6,3.2,8.3,4.9,12.9c0.2,0.5,0.2,0.2-0.4,0.1c-2.5-0.4-4.8,0.3-6.9,1.7c-1,0.7-1.6,1.3-2.7,1.8c-0.4,0.2-0.7,0.3-1.1,0.4
c-1.2,0.2-2.2-0.4-2.5-1.6c-0.1-0.3-0.6-0.5-0.9-0.6c-0.9-0.2-1.7,0-2.6,0.2c-1,0.3-2,0.7-2.9,1.1c-0.3,0.1-1.4,0.9-1.3,1.2
c1.1,3.3,3.1,9.8,4.2,13.1c0,0.1-0.1,0.1-0.1,0.2C-90.5-369.3-91.7-368.7-91.7-368.9z"/>
</g>
</g>
<g class="st2">
<g>
<path class="st7" d="M-46.4-374.3c-0.6-2-1.8-5.4-2.5-7.4c-2-6.2-3.9-12.4-5.9-18.7c-0.1-0.3-0.1-0.5,0.1-0.7
c0.4-0.5,0.8,0,1.1-0.6c0.2-0.3,0.5-0.5,0.7-0.7c1.5-1.1,3.1-1.6,4.9-1.6c0.6,0,2.6,0.2,2.8,0.8c0.1,0.2,0.7,0.7,1.1,0.7
c1.6,0.1,2.6,0,4-0.7c1.5-0.7,1.3-0.6,2.2-1.7c0.8-0.6,1.8-1.4,2.7-1.4c0.6,0,1.2,0,1.8,0.1c0.3,0,0.4,0.1,0.5,0.4
c1.8,4.9,2.9,7.2,4.7,12.1c0.2,0.6,0.2,0.2-0.4,0.1c-2.7-0.5-4.8-0.3-7,1.2c-1.1,0.7-2.6,1.4-3.8,1.9c-0.4,0.2-0.8,0.3-1.2,0.4
c-1.2,0.2-3.6-0.5-3.9-1.7c-0.1-0.3-1.2,0-2.1,0.3c-1.1,0.3-2.5,0.8-3.5,1.2c-0.1,0.3,0.8,2.5,0.9,2.8c1.2,3.5,2.8,8.5,3.9,12
c0,0.1-0.1,0.1-0.1,0.2C-45.1-374.8-46.3-374.2-46.4-374.3z"/>
</g>
</g>
<g class="st2">
<g>
<path class="st7" d="M-59.8-194.1c0.3-2.2,0.3-3.2,0.6-5.5c1-6.9,2-13.8,2.9-20.7c0-0.3,0.2-0.5,0.5-0.7c0.6-0.3,0.6,1.8,1.2,1.5
c0.3-0.2,0.7-0.2,1-0.3c1.9-0.4,3.7-0.1,5.5,0.7c0.6,0.3,2.4,1.4,2.3,2c0,0.2,0.7,1.1,1,1.4c1.5,1.2,2.2,1.1,3.9,1
c1.8,0,1.5,0,2.9-0.6c1.1-0.2,2.3-0.5,3.3-0.1c0.6,0.2,1.1,0.5,1.7,0.9c0.2,0.2,0.3,0.3,0.3,0.6c-0.6,5.6-0.3,6.8-0.9,12.3
c-0.1,0.6,0.1,0.3-0.4-0.1c-2.4-1.7-3.9-1.4-6.7-1.1c-1.4,0.2-3.2,0.1-4.5,0.1c-0.4,0-0.9-0.1-1.3-0.2c-1.3-0.3-3.4-1.7-4.3-3.1
c0.1-0.4-1.3-0.1-2.2-0.3c-1.2-0.2-2.2-0.7-3.4-0.7c-0.2,0.2-0.2,1.3-0.3,1.6c-0.5,4-0.7,7.1-1.2,11.1
C-57.9-194-59.8-193.9-59.8-194.1z"/>
</g>
</g>
<g class="st2">
<g>
<path class="st7" d="M-95.2-276.9c-0.7-2.8-1.5-5.5-2.3-8.2c-0.1-0.5-0.4-0.8-0.8-1.2c-0.3-0.3-0.1-1.4,0.2-2.4
c0.4,0,1.6,1.8,1.5,2.1c-0.1,0.5-0.1,0.9,0,1.4c0.2-0.7,0.2-0.9,0.5-1.3c1.4-1.9,3.3-2.8,5.6-2.8c1.9,0,1,0.4,2.9,0.6
c2,0.3,4,0.6,5.9-0.1c0.3-0.1,0.4,0,0.5,0.3c0.5,2,1.1,3.9,1.6,5.9c0.4,1.3,0.7,2.6,1.1,3.9c0.2,0.8,0.2,0.8-0.6,1
c-1.2,0.3-2.4,0.3-3.6,0.2c-2.4-0.2-2-0.9-4.5-0.9c-1.5,0-7.9-0.1-6.2,5c0.6,2.3,1.5,5.5,2.1,7.8c0.1,0.2-0.9,0.2-1-0.3
c-0.8-2.7-1.7-6.1-2.4-8.8c0-0.1-0.1-0.1-0.1-0.2"/>
</g>
</g>
<g class="st2">
<g>
<g>
<path class="st7" d="M-396.7-272.6h-1.4v-6.5c0-0.5,0.1-1,0.4-1.3c0.2-0.3,0.5-0.5,0.9-0.5h3.9v1.9h-3.8v1h3.4v1.8h-3.4V-272.6z
"/>
</g>
<g>
<path class="st7" d="M-402.5-272.6h-1.4v-6.5c0-0.5,0.1-1,0.4-1.3c0.2-0.3,0.5-0.5,0.9-0.5h3.9v1.9h-3.8v1h3.4v1.8h-3.4V-272.6z
"/>
</g>
</g>
<polygon class="st7" points="-406.3,-278.1 -406.9,-278.1 -411.1,-278.1 -411.1,-275.9 -406.9,-275.9 -406.3,-275.9
-405.4,-275.9 -405.4,-278.1 "/>
<polygon class="st7" points="-387.2,-278.1 -387.8,-278.1 -392,-278.1 -392,-275.9 -387.8,-275.9 -387.2,-275.9 -386.3,-275.9
-386.3,-278.1 "/>
<polygon class="st7" points="-399.9,-270.1 -399.9,-269.5 -399.9,-265.3 -397.7,-265.3 -397.7,-269.5 -397.7,-270.1 -397.7,-271
-399.9,-271 "/>
<polygon class="st7" points="-399.9,-287.8 -399.9,-287.2 -399.9,-283 -397.7,-283 -397.7,-287.2 -397.7,-287.8 -397.7,-288.7
-399.9,-288.7 "/>
<path class="st7" d="M-398.8-288.9c-6.6,0-11.9,5.3-11.9,11.9s5.3,11.9,11.9,11.9s11.9-5.3,11.9-11.9S-392.2-288.9-398.8-288.9z
M-398.8-267.3c-5.4,0-9.7-4.4-9.7-9.7c0-5.4,4.4-9.7,9.7-9.7s9.7,4.4,9.7,9.7C-389-271.6-393.4-267.3-398.8-267.3z"/>
<rect x="-400.9" y="-290.7" class="st7" width="4.2" height="3.5"/>
<rect x="-400.9" y="-266.2" class="st7" width="4.2" height="3.5"/>
<rect x="-412.7" y="-279.1" class="st7" width="3.5" height="4.2"/>
<rect x="-388.2" y="-279.1" class="st7" width="3.5" height="4.2"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,38 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{display:inline;fill:#010002;}
.st3{display:inline;fill:#222222;}
.st4{fill:#FFFFFF;}
.st5{display:inline;fill:#FCFCFC;}
.st3{display:inline;fill:none;}
.st4{display:inline;fill:#222222;}
.st5{fill:#FFFFFF;}
.st6{display:inline;fill:#FCFCFC;}
</style>
<g id="Capa_1" class="st0">
<g id="Capa_1_1_" class="st0">
<polygon class="st1" points="190.1,27.1 148.1,27.1 -158.9,27.1 -158.9,65.1 148.1,65.1 190.1,65.1 258.1,65.1 258.1,27.1 "/>
<polygon class="st1" points="29.8,-89.4 29.8,-47.4 29.8,259.6 67.8,259.6 67.8,-47.4 67.8,-89.4 67.8,-157.4 29.8,-157.4 "/>
<path class="st2" d="M48.8-162.4c-115.2,0-208.5,93.3-208.5,208.5s93.3,208.5,208.5,208.5s208.5-93.3,208.5-208.5
S164-162.4,48.8-162.4z M48.8,216.1c-93.9,0-170-76.1-170-170s76.1-170,170-170s170,76.1,170,170S142.7,216.1,48.8,216.1z"/>
<rect x="12" y="-193.9" class="st2" width="73.7" height="60.3"/>
<rect x="12" y="234.6" class="st2" width="73.7" height="60.3"/>
<rect x="-201.8" y="15.9" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -210.9903 -118.8479)" class="st2" width="73.7" height="60.3"/>
<rect x="226.7" y="15.9" transform="matrix(6.123234e-17 -1 1 6.123234e-17 217.4746 309.6171)" class="st2" width="73.7" height="60.3"/>
<rect x="-195.1" y="9.3" class="st2" width="60.3" height="73.7"/>
<rect x="233.4" y="9.2" class="st2" width="60.3" height="73.7"/>
</g>
<g id="Capa_3" class="st0">
<rect x="313.1" y="-192.9" style="display:inline;fill:none;" width="82.5" height="96.1"/>
<text transform="matrix(1 0 0 1.7 313.1425 -169.3731)" class="st1" style="font-family:'CharlieBrownM54'; font-size:36px;">F</text>
<rect x="430.1" y="-157.4" style="display:inline;fill:none;" width="82.5" height="96.1"/>
<text transform="matrix(1 0 0 1 430.1425 -121.3575)" class="st1" style="font-family:'Copy0865'; font-size:36px;">F</text>
<rect x="313.1" y="-192.9" class="st3" width="82.5" height="96.1"/>
<text transform="matrix(0.5882 0 0 1 313.1426 -169.373)" class="st1" style="font-family:'ArialMT'; font-size:61.2px;">F</text>
<rect x="430.1" y="-157.4" class="st3" width="82.5" height="96.1"/>
<text transform="matrix(1 0 0 1 430.1425 -121.3575)" class="st1" style="font-family:'ArialMT'; font-size:36px;">F</text>
<g class="st1">
<g>
<path d="M84,122.4H60.1V8.4c0-9.3,2.2-16.7,6.5-22.3c4.2-5.5,9.6-8.2,16-8.2h68.6v32.7H84v16.8h59.7v31H84V122.4z"/>
</g>
<g>
<path d="M-16.1,122.4H-40V8.4c0-9.3,2.2-16.7,6.5-22.3c4.2-5.5,9.6-8.2,16-8.2h68.6v32.7h-67.2v16.8h59.7v31h-59.7V122.4z"/>
<path d="M-16.1,122.4H-40V8.4c0-9.3,2.2-16.7,6.5-22.3c4.2-5.5,9.6-8.2,16-8.2h68.6v32.7h-67.2v16.8h59.7v31h-59.7
C-16.1,58.4-16.1,122.4-16.1,122.4z"/>
</g>
</g>
<polygon class="st1" points="-83.2,27.1 -93.2,27.1 -166.9,27.1 -166.9,65.1 -93.2,65.1 -83.2,65.1 -66.9,65.1 -66.9,27.1 "/>
@ -43,32 +43,28 @@
S164-162.4,48.8-162.4z M48.8,216.1c-93.9,0-170-76.1-170-170s76.1-170,170-170s170,76.1,170,170S142.7,216.1,48.8,216.1z"/>
<rect x="12" y="-193.9" class="st2" width="73.7" height="60.3"/>
<rect x="12" y="234.6" class="st2" width="73.7" height="60.3"/>
<rect x="-201.8" y="15.9" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -210.9903 -118.8479)" class="st2" width="73.7" height="60.3"/>
<rect x="226.7" y="15.9" transform="matrix(6.123234e-17 -1 1 6.123234e-17 217.4746 309.6171)" class="st2" width="73.7" height="60.3"/>
</g>
<g id="Capa_2">
<path d="M9.9,75.8c2.8,4.9,6.3,9.2,10.4,12.8c3.3,2.9,6.6,5.1,10.1,6.9c5.5,2.7,11.3,4.4,17.3,4.9c5.4,0.5,10.2,0.2,14.8-0.9
c11.5-2.7,21-9,28.2-18.7c4.8-6.5,8-14,9.2-22.5c0.2-1.1,0.2-2.2,0.3-3.3c0.1-1,0.1-2.1,0.3-3.1v-2.9c-0.1-1-0.2-2-0.3-3
c-0.1-1.2-0.2-2.4-0.4-3.5c-1-6.4-3.2-12.5-6.4-18c-2.4-4.2-5.4-7.9-8.9-11.2C80.1,8.9,74.8,5.6,69,3.4C65.4,2,61.4,1.1,57,0.5
H46.8c-3,0.4-6.5,1-9.9,2.2c-7.7,2.7-14,6.6-19.1,12.1l-0.3,0.3c-0.5,0.5-0.9,1-1.5,1.5c-0.5,0.4-1,0.8-1.4,1.1
c-0.2,0.1-0.3,0.3-0.5,0.4l-1.5,1.1L11,10.3C11,9.9,10.9,9.5,10.8,9c-0.2-0.9-0.3-1.9-0.5-2.9C10,4.5,9.4,4.1,7.9,4.4
C6.7,4.5,5.5,4.8,4.3,5C3.5,5.2,2.8,5.3,2,5.4C1.5,5.5,1,5.8,0.6,6.2v2.6C1.1,11.4,1.5,14,2,16.7c1.2,6.8,2.4,13.8,3.5,20.7
c0.1,0.9,0.4,1.5,0.9,1.8c0.4,0.3,1.1,0.4,2,0.2c2.2-0.5,4.5-0.9,6.7-1.3l0.8-0.1c1.7-0.3,3.4-0.6,5-0.9c5.3-1,10.8-2,16.3-2.9
c1.2-0.2,1.6-0.9,1.5-2.2C38.4,30,38,28,37.5,25.6c-0.3-1.5-0.8-1.9-2.3-1.6c-1.2,0.2-2.3,0.4-3.5,0.6c-0.9,0.2-1.9,0.4-2.8,0.5
c-1.1,0.2-2.1,0.4-3.3,0.6c-0.5,0.1-1.1,0.2-1.7,0.3l-3.5,0.6l2.5-2.6c2.1-2.2,4.1-4.3,6.5-6c8.7-6.4,18.4-8.7,28.7-7
c10.1,1.7,18.4,6.8,24.5,15.1c6.8,9.2,9.3,19.6,7.5,30.7c-1.6,9.9-6.2,18.1-13.8,24.3c-9.2,7.7-19.7,10.5-31,8.4
C32.7,87.3,23.2,80,17.2,67.9c-1.5-2.9-2.5-6.2-3.4-10.7c-0.2-1.1-0.5-1.4-1.5-1.4c-0.1,0-0.1,0-0.2,0c-1.7,0-3.4,0.4-5.1,0.8
c-0.3,0.1-0.6,0.1-1,0.2c-2,0.4-2.3,0.8-1.9,2.8C5.1,65.3,7.1,70.7,9.9,75.8z"/>
<rect x="-195.1" y="9.3" class="st2" width="60.3" height="73.7"/>
<rect x="233.4" y="9.2" class="st2" width="60.3" height="73.7"/>
</g>
<path d="M100.7,46.2c-0.1-1.2-0.2-2.4-0.4-3.5c-1-6.4-3.2-12.5-6.4-18c-2.4-4.2-5.4-7.9-8.9-11.2c-4.4-4.4-9.7-7.7-15.5-9.9
c-3.6-1.4-7.6-2.3-12-2.9H47.2c-3,0.4-6.5,1-9.9,2.2c-7.7,2.7-14,6.6-19.1,12.1l-0.3,0.3c-0.5,0.5-0.9,1-1.5,1.5
c-0.5,0.4-1,0.8-1.4,1.1c-0.2,0.1-0.3,0.3-0.5,0.4L13,19.5l-1.6-8.9c0-0.4-0.1-0.8-0.2-1.3c-0.2-0.9-0.3-1.9-0.5-2.9
c-0.3-1.6-0.9-2-2.4-1.7C7.1,4.8,5.9,5.1,4.7,5.3C3.9,5.5,3.2,5.6,2.4,5.7C1.9,5.8,1.4,6.1,1,6.5v2.6c0.5,2.6,0.9,5.2,1.4,7.9
c1.2,6.8,2.4,13.8,3.5,20.7c0.1,0.9,0.4,1.5,0.9,1.8c0.4,0.3,1.1,0.4,2,0.2c2.2-0.5,4.5-0.9,6.7-1.3l0.8-0.1c1.7-0.3,3.4-0.6,5-0.9
c5.3-1,10.8-2,16.3-2.9c1.2-0.2,1.6-0.9,1.5-2.2c-0.3-2-0.7-4-1.2-6.4c-0.3-1.5-0.8-1.9-2.3-1.6c-1.2,0.2-2.3,0.4-3.5,0.6
c-0.9,0.2-1.9,0.4-2.8,0.5c-1.1,0.2-2.1,0.4-3.3,0.6c-0.5,0.1-1.1,0.2-1.7,0.3l-3.5,0.6l2.5-2.6c2.1-2.2,4.1-4.3,6.5-6
c8.7-6.4,18.4-8.7,28.7-7C68.7,13,77,18.1,83.1,26.4c6.8,9.2,9.3,19.6,7.5,30.7c-1.6,9.9-6.2,18.1-13.8,24.3
c-9.2,7.7-19.7,10.5-31,8.4c-12.6-2.2-22.1-9.5-28.1-21.6c-1.5-2.9-2.5-6.2-3.4-10.7C14,56.3,13.7,56,12.7,56c-0.1,0-0.1,0-0.2,0
c-1.7,0-3.4,0.4-5.1,0.8c-0.3,0.1-0.6,0.1-1,0.2c-2,0.4-2.3,0.8-1.9,2.8c1,5.7,3,11.1,5.8,16.2c2.8,4.9,6.3,9.2,10.4,12.8
c3.3,2.9,6.6,5.1,10.1,6.9c5.5,2.7,11.3,4.4,17.3,4.9c5.4,0.5,10.2,0.2,14.8-0.9c11.5-2.7,21-9,28.2-18.7c4.8-6.5,8-14,9.2-22.5
c0.2-1.1,0.2-2.2,0.3-3.3c0.1-1,0.1-2.1,0.3-3.1v-2.9C100.9,48.2,100.8,47.2,100.7,46.2z"/>
<g id="Capa_5" class="st0">
<g class="st1">
<g>
<path d="M-10.8-25.2c-8.3-31.5-17.4-62.8-25.7-94.3c-1.5-5.7-5.1-9.4-8.7-13.3c-3.2-3.4-1-16.2,2.1-27.1
c4.7-0.2,17.9,20.2,16.7,24c-1.7,5.6-1.1,10.8,0.5,16.4c2-7.8,1.9-10.6,5.5-15.4c16-21.4,37.4-31.7,64-32.4
c22.2-0.5,11.4,4.1,33.1,7.3c22.7,3.3,45.4,0.7,68-6.7c3.7-1.2,5,0.5,5.9,3.7c6.2,22.5,12.5,50.6,18.7,73
c4.2,15,8.2,20.9,12.5,35.9c2.4,8.6,2.3,9.5-6.6,11.6c-13.5,3.3-27.3,3.5-41.2,2.5C106-42,111.1-50,82.9-50.1
c4.2,15,8.2,20.9,12.5,35.9c2.4,8.6,2.3,9.5-6.6,11.6C161.7-39.2,147.9-39,134-40c-28-2-22.9-10-51.1-10.1
c-17.2-0.1-90.1,7.7-70.7,66.7c7.3,26.6,17.2,62.4,24.5,89c0.7,2.7-9.9,2-11.5-3.4C16.7,71.7,5.8,32-2.6,1.4
c-0.2-0.8-0.6-1.5-1.2-2.7"/>
</g>
@ -82,49 +78,41 @@
L140,153c1.6,4.3,5.5,7.4,10.1,7.9C154.8,161.1,159.1,158.7,161.2,154.7z"/>
</g>
<g id="Capa_4" class="st0">
<image style="display:inline;overflow:visible;" width="1022" height="139" xlink:href="517432F1.jpg" transform="matrix(1 0 0 1 -791.8575 -358.8575)">
</image>
<rect x="-461.5" y="-295.8" class="st3" width="104.7" height="37"/>
<rect x="-467.9" y="-107.8" class="st3" width="44" height="37"/>
<rect x="-461.5" y="-295.8" class="st4" width="104.7" height="37"/>
<rect x="-467.9" y="-107.8" class="st4" width="44" height="37"/>
<g class="st1">
<polygon class="st4" points="-441.4,-89.3 -444.2,-89.3 -464.3,-89.3 -464.3,-86.9 -444.2,-86.9 -441.4,-86.9 -437,-86.9
<polygon class="st5" points="-441.4,-89.3 -444.2,-89.3 -464.3,-89.3 -464.3,-86.9 -444.2,-86.9 -441.4,-86.9 -437,-86.9
-437,-89.3 "/>
<polygon class="st4" points="-451.9,-97.3 -451.9,-94.5 -451.9,-74.4 -449.4,-74.4 -449.4,-94.5 -449.4,-97.3 -449.4,-101.7
<polygon class="st5" points="-451.9,-97.3 -451.9,-94.5 -451.9,-74.4 -449.4,-74.4 -449.4,-94.5 -449.4,-97.3 -449.4,-101.7
-451.9,-101.7 "/>
<path class="st4" d="M-450.6-102.4c-7.5,0-13.6,6.1-13.6,13.6s6.1,13.6,13.6,13.6c7.5,0,13.6-6.1,13.6-13.6
S-443.1-102.4-450.6-102.4z M-450.6-77.6c-6.1,0-11.1-5-11.1-11.1s5-11.1,11.1-11.1c6.1,0,11.1,5,11.1,11.1
S-444.5-77.6-450.6-77.6z"/>
<rect x="-452.4" y="-104.1" class="st4" width="3.6" height="3.9"/>
<rect x="-452.4" y="-76" class="st4" width="3.6" height="3.9"/>
<rect x="-466.5" y="-90.1" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -376.5727 -552.7751)" class="st4" width="3.6" height="3.9"/>
<rect x="-438.4" y="-90.1" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -348.5165 -524.719)" class="st4" width="3.6" height="3.9"/>
<path class="st5" d="M-450.6-102.4c-7.5,0-13.6,6.1-13.6,13.6s6.1,13.6,13.6,13.6s13.6-6.1,13.6-13.6S-443.1-102.4-450.6-102.4z
M-450.6-77.6c-6.1,0-11.1-5-11.1-11.1s5-11.1,11.1-11.1s11.1,5,11.1,11.1S-444.5-77.6-450.6-77.6z"/>
<rect x="-452.4" y="-104.1" class="st5" width="3.6" height="3.9"/>
<rect x="-452.4" y="-76" class="st5" width="3.6" height="3.9"/>
<rect x="-466.7" y="-89.9" class="st5" width="3.9" height="3.6"/>
<rect x="-438.6" y="-89.9" class="st5" width="3.9" height="3.6"/>
</g>
<g class="st1">
<polygon class="st4" points="-442.7,-278.8 -445,-278.8 -461.3,-278.8 -461.3,-276.7 -445,-276.7 -442.7,-276.7 -439.1,-276.7
<polygon class="st5" points="-442.7,-278.8 -445,-278.8 -461.3,-278.8 -461.3,-276.7 -445,-276.7 -442.7,-276.7 -439.1,-276.7
-439.1,-278.8 "/>
<polygon class="st4" points="-451.3,-284.7 -451.3,-282.5 -451.3,-266.1 -449.3,-266.1 -449.3,-282.5 -449.3,-284.7
<polygon class="st5" points="-451.3,-284.7 -451.3,-282.5 -451.3,-266.1 -449.3,-266.1 -449.3,-282.5 -449.3,-284.7
-449.3,-288.3 -451.3,-288.3 "/>
<path class="st4" d="M-450.3-288.9c-6.1,0-11.1,5-11.1,11.1s5,11.1,11.1,11.1s11.1-5,11.1-11.1S-444.1-288.9-450.3-288.9z
M-450.3-268.7c-5,0-9.1-4.1-9.1-9.1c0-5,4.1-9.1,9.1-9.1c5,0,9.1,4.1,9.1,9.1C-441.2-272.8-445.3-268.7-450.3-268.7z"/>
<rect x="-452.2" y="-290.3" class="st4" width="3.9" height="3.2"/>
<rect x="-452.2" y="-267.5" class="st4" width="3.9" height="3.2"/>
<rect x="-463.6" y="-279.4" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -183.9038 -739.4326)" class="st4" width="3.9" height="3.2"/>
<rect x="-440.8" y="-279.4" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -161.1157 -716.6445)" class="st4" width="3.9" height="3.2"/>
<path class="st5" d="M-450.3-288.9c-6.1,0-11.1,5-11.1,11.1s5,11.1,11.1,11.1s11.1-5,11.1-11.1S-444.1-288.9-450.3-288.9z
M-450.3-268.7c-5,0-9.1-4.1-9.1-9.1s4.1-9.1,9.1-9.1s9.1,4.1,9.1,9.1C-441.2-272.8-445.3-268.7-450.3-268.7z"/>
<rect x="-452.2" y="-290.3" class="st5" width="3.9" height="3.2"/>
<rect x="-452.2" y="-267.5" class="st5" width="3.9" height="3.2"/>
<rect x="-463.3" y="-279.7" class="st5" width="3.2" height="3.9"/>
<rect x="-440.5" y="-279.7" class="st5" width="3.2" height="3.9"/>
</g>
<rect x="-161" y="-295.8" class="st3" width="262.2" height="37"/>
<path class="st5" d="M-138-269.9l2.5-4.7h4.5v-1.5h-4.9c-0.3,0-0.5,0.1-0.6,0.4l-1.9,3.6l-2.2-6.3c-0.1-0.3-0.4-0.5-0.7-0.5
c-0.3,0-0.6,0.2-0.7,0.4l-1.8,4.2l-2.3-13.6c-0.1-0.3-0.4-0.6-0.7-0.6c-0.4,0-0.7,0.2-0.7,0.6l-2.1,16.5l-1.9-9.8
<rect x="-161" y="-295.8" class="st4" width="262.2" height="37"/>
<path class="st6" d="M-138-269.9l2.5-4.7h4.5v-1.5h-4.9c-0.3,0-0.5,0.1-0.6,0.4l-1.9,3.6l-2.2-6.3c-0.1-0.3-0.4-0.5-0.7-0.5
s-0.6,0.2-0.7,0.4l-1.8,4.2l-2.3-13.6c-0.1-0.3-0.4-0.6-0.7-0.6c-0.4,0-0.7,0.2-0.7,0.6l-2.1,16.5l-1.9-9.8
c-0.1-0.3-0.3-0.5-0.6-0.6c-0.3,0-0.6,0.1-0.8,0.4l-2.5,5.2h-3.6v1.5h4.1c0.3,0,0.5-0.2,0.7-0.4l1.8-3.7l2.3,12
c0.1,0.3,0.4,0.6,0.7,0.6h0c0.4,0,0.6-0.3,0.7-0.6l2.1-16.5l1.9,11.7c0.1,0.3,0.3,0.6,0.6,0.6c0.3,0,0.6-0.1,0.8-0.4l2-4.7l2.1,6.1
c0.1,0.3,0.4,0.6,0.7,0.6l0,0c0.4,0,0.6-0.3,0.7-0.6l2.1-16.5l1.9,11.7c0.1,0.3,0.3,0.6,0.6,0.6s0.6-0.1,0.8-0.4l2-4.7l2.1,6.1
c0.1,0.3,0.3,0.5,0.6,0.5C-138.4-269.5-138.1-269.7-138-269.9z"/>
<g class="st1">
<g>
<path class="st4" d="M-89.2-368.9c-0.6-1.9-2-6.9-2.6-8.8c-1.8-5.9-3.7-11.7-5.5-17.6c-0.1-0.3,0-0.5,0.1-0.7
<path class="st5" d="M-89.2-368.9c-0.6-1.9-2-6.9-2.6-8.8c-1.8-5.9-3.7-11.7-5.5-17.6c-0.1-0.3,0-0.5,0.1-0.7
c0.4-0.5,0.7,0,1.1-0.5c0.2-0.3,0.4-0.4,0.7-0.6c1.4-1,3-1.5,4.7-1.5c0.6,0,1,0.2,1.2,0.7c0.1,0.2,0.6,0.6,1,0.7
c1.5,0.1,2.9-0.1,4.2-0.8c1.2-0.6,2.5-0.6,3.7-1.4c0.8-0.5,1.7-1.3,2.6-1.3c0.6,0,1.1,0,1.7,0.1c0.2,0,0.4,0.1,0.5,0.4
c1.7,4.6,3.2,8.3,4.9,12.9c0.2,0.5,0.2,0.2-0.4,0.1c-2.5-0.4-4.8,0.3-6.9,1.7c-1,0.7-1.6,1.3-2.7,1.8c-0.4,0.2-0.7,0.3-1.1,0.4
@ -134,7 +122,7 @@
</g>
<g class="st1">
<g>
<path class="st4" d="M-43.8-374.3c-0.6-2-1.8-5.4-2.5-7.4c-2-6.2-3.9-12.4-5.9-18.7c-0.1-0.3-0.1-0.5,0.1-0.7
<path class="st5" d="M-43.8-374.3c-0.6-2-1.8-5.4-2.5-7.4c-2-6.2-3.9-12.4-5.9-18.7c-0.1-0.3-0.1-0.5,0.1-0.7
c0.4-0.5,0.8,0,1.1-0.6c0.2-0.3,0.5-0.5,0.7-0.7c1.5-1.1,3.1-1.6,4.9-1.6c0.6,0,2.6,0.2,2.8,0.8c0.1,0.2,0.7,0.7,1.1,0.7
c1.6,0.1,2.6,0,4-0.7c1.5-0.7,1.3-0.6,2.2-1.7c0.8-0.6,1.8-1.4,2.7-1.4c0.6,0,1.2,0,1.8,0.1c0.3,0,0.4,0.1,0.5,0.4
c1.8,4.9,2.9,7.2,4.7,12.1c0.2,0.6,0.2,0.2-0.4,0.1c-2.7-0.5-4.8-0.3-7,1.2c-1.1,0.7-2.6,1.4-3.8,1.9c-0.4,0.2-0.8,0.3-1.2,0.4
@ -144,7 +132,7 @@
</g>
<g class="st1">
<g>
<path class="st4" d="M-57.2-194.1c0.3-2.2,0.3-3.2,0.6-5.5c1-6.9,2-13.8,2.9-20.7c0-0.3,0.2-0.5,0.5-0.7c0.6-0.3,0.6,1.8,1.2,1.5
<path class="st5" d="M-57.2-194.1c0.3-2.2,0.3-3.2,0.6-5.5c1-6.9,2-13.8,2.9-20.7c0-0.3,0.2-0.5,0.5-0.7c0.6-0.3,0.6,1.8,1.2,1.5
c0.3-0.2,0.7-0.2,1-0.3c1.9-0.4,3.7-0.1,5.5,0.7c0.6,0.3,2.4,1.4,2.3,2c0,0.2,0.7,1.1,1,1.4c1.5,1.2,2.2,1.1,3.9,1
c1.8,0,1.5,0,2.9-0.6c1.1-0.2,2.3-0.5,3.3-0.1c0.6,0.2,1.1,0.5,1.7,0.9c0.2,0.2,0.3,0.3,0.3,0.6c-0.6,5.6-0.3,6.8-0.9,12.3
c-0.1,0.6,0.1,0.3-0.4-0.1c-2.4-1.7-3.9-1.4-6.7-1.1c-1.4,0.2-3.2,0.1-4.5,0.1c-0.4,0-0.9-0.1-1.3-0.2c-1.3-0.3-3.4-1.7-4.3-3.1
@ -154,7 +142,7 @@
</g>
<g class="st1">
<g>
<path class="st4" d="M-92.6-276.9c-0.7-2.8-1.5-5.5-2.3-8.2c-0.1-0.5-0.4-0.8-0.8-1.2c-0.3-0.3-0.1-1.4,0.2-2.4
<path class="st5" d="M-92.6-276.9c-0.7-2.8-1.5-5.5-2.3-8.2c-0.1-0.5-0.4-0.8-0.8-1.2c-0.3-0.3-0.1-1.4,0.2-2.4
c0.4,0,1.6,1.8,1.5,2.1c-0.1,0.5-0.1,0.9,0,1.4c0.2-0.7,0.2-0.9,0.5-1.3c1.4-1.9,3.3-2.8,5.6-2.8c1.9,0,1,0.4,2.9,0.6
c2,0.3,4,0.6,5.9-0.1c0.3-0.1,0.4,0,0.5,0.3c0.5,2,1.1,3.9,1.6,5.9c0.4,1.3,0.7,2.6,1.1,3.9c0.2,0.8,0.2,0.8-0.6,1
c-1.2,0.3-2.4,0.3-3.6,0.2c-2.4-0.2-2-0.9-4.5-0.9c-1.5,0-7.9-0.1-6.2,5c0.6,2.3,1.5,5.5,2.1,7.8c0.1,0.2-0.9,0.2-1-0.3
@ -164,30 +152,28 @@
<g class="st1">
<g>
<g>
<path class="st4" d="M-394.2-272.6h-1.4v-6.5c0-0.5,0.1-1,0.4-1.3c0.2-0.3,0.5-0.5,0.9-0.5h3.9v1.9h-3.8v1h3.4v1.8h-3.4V-272.6z
<path class="st5" d="M-394.2-272.6h-1.4v-6.5c0-0.5,0.1-1,0.4-1.3c0.2-0.3,0.5-0.5,0.9-0.5h3.9v1.9h-3.8v1h3.4v1.8h-3.4V-272.6z
"/>
</g>
<g>
<path class="st4" d="M-399.9-272.6h-1.4v-6.5c0-0.5,0.1-1,0.4-1.3c0.2-0.3,0.5-0.5,0.9-0.5h3.9v1.9h-3.8v1h3.4v1.8h-3.4V-272.6z
<path class="st5" d="M-399.9-272.6h-1.4v-6.5c0-0.5,0.1-1,0.4-1.3c0.2-0.3,0.5-0.5,0.9-0.5h3.9v1.9h-3.8v1h3.4v1.8h-3.4V-272.6z
"/>
</g>
</g>
<polygon class="st4" points="-403.8,-278.1 -404.4,-278.1 -408.6,-278.1 -408.6,-275.9 -404.4,-275.9 -403.8,-275.9
<polygon class="st5" points="-403.8,-278.1 -404.4,-278.1 -408.6,-278.1 -408.6,-275.9 -404.4,-275.9 -403.8,-275.9
-402.8,-275.9 -402.8,-278.1 "/>
<polygon class="st4" points="-384.7,-278.1 -385.3,-278.1 -389.5,-278.1 -389.5,-275.9 -385.3,-275.9 -384.7,-275.9
<polygon class="st5" points="-384.7,-278.1 -385.3,-278.1 -389.5,-278.1 -389.5,-275.9 -385.3,-275.9 -384.7,-275.9
-383.8,-275.9 -383.8,-278.1 "/>
<polygon class="st4" points="-397.3,-270.1 -397.3,-269.5 -397.3,-265.3 -395.2,-265.3 -395.2,-269.5 -395.2,-270.1 -395.2,-271
<polygon class="st5" points="-397.3,-270.1 -397.3,-269.5 -397.3,-265.3 -395.2,-265.3 -395.2,-269.5 -395.2,-270.1 -395.2,-271
-397.3,-271 "/>
<polygon class="st4" points="-397.3,-287.8 -397.3,-287.2 -397.3,-283 -395.2,-283 -395.2,-287.2 -395.2,-287.8 -395.2,-288.7
<polygon class="st5" points="-397.3,-287.8 -397.3,-287.2 -397.3,-283 -395.2,-283 -395.2,-287.2 -395.2,-287.8 -395.2,-288.7
-397.3,-288.7 "/>
<path class="st4" d="M-396.2-288.9c-6.6,0-11.9,5.3-11.9,11.9s5.3,11.9,11.9,11.9s11.9-5.3,11.9-11.9S-389.6-288.9-396.2-288.9z
<path class="st5" d="M-396.2-288.9c-6.6,0-11.9,5.3-11.9,11.9s5.3,11.9,11.9,11.9s11.9-5.3,11.9-11.9S-389.6-288.9-396.2-288.9z
M-396.2-267.3c-5.4,0-9.7-4.4-9.7-9.7c0-5.4,4.4-9.7,9.7-9.7s9.7,4.4,9.7,9.7C-386.5-271.6-390.8-267.3-396.2-267.3z"/>
<rect x="-398.3" y="-290.7" class="st4" width="4.2" height="3.5"/>
<rect x="-398.3" y="-266.2" class="st4" width="4.2" height="3.5"/>
<rect x="-410.6" y="-278.7" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -131.4631 -685.4603)" class="st4" width="4.2" height="3.5"/>
<rect x="-386" y="-278.7" transform="matrix(6.123234e-17 -1 1 6.123234e-17 -106.915 -660.9123)" class="st4" width="4.2" height="3.5"/>
<rect x="-398.3" y="-290.7" class="st5" width="4.2" height="3.5"/>
<rect x="-398.3" y="-266.2" class="st5" width="4.2" height="3.5"/>
<rect x="-410.2" y="-279.1" class="st5" width="3.5" height="4.2"/>
<rect x="-385.6" y="-279.1" class="st5" width="3.5" height="4.2"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.0" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 100 79" style="enable-background:new 0 0 100 79;" xml:space="preserve">
<path d="M82.3,43.9c-1,0-1.8,0.5-2.3,1.4l-6.9,13l-7.8-22.7c-0.4-1-1.3-1.7-2.4-1.8c-1.1,0-2.1,0.6-2.5,1.6l-6.3,15L46.1,2
c-0.2-1.2-1.4-2.2-2.6-2.1c-1.4,0-2.4,0.9-2.6,2.1l-7.5,59l-6.7-35.2c-0.2-1.1-1.1-1.9-2.2-2.1c-1.1-0.2-2.2,0.5-2.7,1.5l-9,18.7
h-13v5.2h14.6c1,0,1.9-0.6,2.4-1.5l6.3-13.1l8.2,42.7c0.2,1.2,1.3,2.1,2.6,2.1h0.1c1.3,0,2.3-1,2.5-2.3l7.5-58.9l6.7,41.6
c0.2,1.1,1.1,2,2.3,2.1c1.2,0.1,2.2-0.5,2.7-1.6l7-16.7l7.5,21.9c0.4,1,1.2,1.7,2.3,1.8c1.1,0,2.1-0.5,2.5-1.4l9-16.9h16v-5.2H82.3z
"/>
</svg>

After

Width:  |  Height:  |  Size: 862 B

View File

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@ -0,0 +1,130 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.0" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 100 67.1" style="enable-background:new 0 0 100 67.1;" xml:space="preserve">
<g>
<path d="M68.5,21.6c-0.1,0-0.2,0.1-0.3,0.2C68.3,21.6,68.4,21.6,68.5,21.6z"/>
<path d="M99.9,5.6c-0.4-0.1-0.6,0-0.9,0.2c-0.9,0.4-1.8,0.8-2.8,1.2c-0.9,0.4-1.8,0.8-2.7,1.3c-0.8,0.4-1.7,0.8-2.5,1.1
c-0.9,0.5-1.7,0.8-2.6,1.3c-0.9,0.5-1.8,0.8-2.7,1.3c-0.7,0.3-1.3,0.6-2,1c-0.8,0.4-1.7,0.8-2.5,1.2c-0.8,0.4-1.7,0.8-2.5,1.2
c-0.8,0.3-1.6,0.8-2.4,1.2c-0.8,0.4-1.7,0.8-2.5,1.2c-0.7,0.3-1.4,0.6-2.1,1c-0.3,0.2-0.6,0.4-0.9,0c-0.1-0.1-0.2,0-0.3,0
c-0.5,0.1-1,0.2-1.5,0.2c-0.8,0.1-1.5,0.2-2.2,0.3c-1,0.2-1.9,0.3-2.8,0.4c-0.8,0.1-1.4,0.3-2.2,0.4c-0.7,0.1-1.4,0.2-2.1,0.3
c-1.4,0.3-2.7,0.5-4.1,0.9c-0.7,0.2-1.5,0.3-2.3,0.5C52,22.2,51,22.6,50,22.7c-0.1,0-0.1,0-0.2,0.1l0,0c-0.1,0-0.3,0.1-0.4,0.2
c-0.5,0.2-1,0.3-1.5,0.3c0.2-0.2,0.1-0.4,0.3-0.4c0.4-0.2,0.7-0.4,0.9-0.8c0.5-0.7,1-1.2,1.6-1.8c0.2-0.4,0.7-0.5,1.1-0.7
c0.4-0.1,0.9-0.2,1.2-0.6c0.8-0.8,1.6-1.6,2.4-2.2c0.9-0.9,1.9-1.9,2.8-2.7c1.1-1,2.3-2,3.4-3s2.2-2,3.3-2.9c0.7-0.7,1.6-1.3,2.3-2
c0.7-0.5,1.2-1,1.9-1.5s1.3-1.1,1.9-1.7c0.4-0.3,0.7-0.7,1.1-1c0.7-0.5,1.2-1,1.8-1.4c0.2-0.2,0.4-0.2,0.3-0.4
c-0.1-0.2-0.3,0-0.6-0.1c-0.8,0.1-1.6,0.1-2.5,0.1c-0.1,0-0.3,0.1-0.4,0.1c-0.4,0.2-0.7,0.5-1.1,0.7c-0.5,0.2-1,0.6-1.6,1
c-0.2,0.2-0.5,0.2-0.7,0.4c-0.8,0.7-1.7,1.5-2.5,2.2c-0.5,0.8-1.2,1.5-2,2c-0.8,0.7-1.7,1.5-2.6,2.3c-0.7,0.5-1.2,1.1-1.7,1.6
c-1,1-2,1.9-3,2.7c-0.6,0.6-1.3,1.1-1.9,1.8c-1,1-1.9,2-2.9,2.8c-1.2,1.1-2.2,2.3-3.4,3.5c-0.2,0.2-0.4,0.6-0.8,0.5
c-0.2,0-0.6,0.2-0.7-0.1c-0.1-0.2-0.2-0.3-0.2-0.5c-0.1-0.2-0.1-0.3,0-0.5c0.2-0.2,0.1-0.4,0-0.6c-0.2-0.2-0.3-0.3-0.5-0.2
c-1,0.3-1.8,0.7-2.5,1.2c-0.2,0.2-0.3,0.4-0.3,0.6c0.1,0.3,0.4,0.3,0.6,0.3c0.2-0.1,0.2,0,0.4,0.2c0.1,0.2,0.2,0.3,0.2,0.5
c0,0.1,0.1,0.2,0,0.2c-0.3,0.2-0.4,0.5-0.7,0.7c-0.2,0.2-0.2,0.3,0.1,0.3s0.3,0.3,0.5,0.4c0.1,0.1,0.2,0.2,0,0.2c0,0-0.1,0-0.2,0.1
c-0.5,0.4-1.1,0.7-1.6,1.1c-0.3,0.2-0.7,0.3-0.8,0.8l-0.2,0.2c-0.3,0-0.7,0.3-1,0.4c-0.2,0.1-0.4,0.1-0.2,0.4c0,0,0,0.2-0.2,0.2
l0,0c-0.1,0-0.2,0.1-0.3,0.2c-2,1.1-3.9,2.3-5.8,3.4l0,0c-0.1,0-0.2,0.1-0.3,0.2c-0.8,0.4-1.6,1-2.4,1.4c-0.6,0.4-1.2,0.8-1.7,1
c-0.4,0.2-0.9,0.6-1.3,0.8c-0.8,0.4-1.5,1-2.2,1.4c-0.8,0.4-1.6,1-2.3,1.5c-1,0.6-1.9,1.3-2.9,1.9c-0.5,0.4-1.1,0.7-1.7,1
c-1,0.6-1.8,1.3-2.9,1.8c-0.1,0-0.2,0.1-0.3,0.2l0,0c-0.4,0.2-0.8,0.5-1.2,0.8c-0.1,0-0.2,0.1-0.3,0.2c-0.3,0.2-0.6,0.4-0.9,0.6
c-0.3,0.2-0.6,0.4-0.9,0.6c-0.9,0.6-1.7,1.2-2.6,1.7c-0.5,0.2-0.9,0.6-1.3,0.9c-0.9,0.6-1.6,1.1-2.5,1.7c-0.3,0.2-0.6,0.4-1,0.6
c-0.8,0.5-1.5,1.1-2.4,1.7l0,0c-0.1,0.1-0.3,0.1-0.4,0.3l0,0c-0.5,0.4-1,0.6-1.5,1C0.1,52.8,0,53,0,53.1c0.5,0.2,0.6,0.2,0.7,0.1
c0.4-0.1,0.7-0.3,1.1-0.5l0,0c0.1,0,0.3-0.1,0.4-0.3l0,0c0.6-0.4,1.2-0.7,1.8-1c0.9-0.6,1.8-1.2,2.7-1.9c0.3-0.2,0.7-0.4,1-0.6
c0.8-0.5,1.5-1.1,2.3-1.5c0.6-0.4,1.3-0.8,1.8-1.2c1.1-0.7,2.1-1.4,3.2-2.1c0.9-0.6,1.6-1.1,2.5-1.6c0.8-0.4,1.5-1.1,2.4-1.4l0,0
l0,0c0.1,0,0.2-0.1,0.3-0.2c0.4-0.2,0.8-0.5,1.1-0.7c0.3-0.2,0.7-0.4,1-0.6c0.9-0.6,1.7-1.2,2.6-1.7c0.8-0.4,1.5-1,2.2-1.4
c0.8-0.4,1.6-1,2.4-1.4c0.8-0.4,1.6-1,2.4-1.4c0.7-0.4,1.3-0.9,2.1-1.2l0,0l0,0c0.1,0,0.3-0.1,0.3-0.2c0.7-0.4,1.3-0.7,2-1.1l0,0
l0,0c0.2-0.2,0.4-0.1,0.5-0.4l0,0l0,0c0.8-0.4,1.7-0.9,2.5-1.5c0.3-0.2,0.6-0.4,1-0.5s0.8-0.4,1.1-0.7c0.1-0.1,0.2-0.2,0.3-0.2
c0.3,0,0.6-0.2,0.9-0.2c0.5-0.2,0.9-0.5,1.4-0.7l0,0l0,0c0.1,0.1,0.2-0.1,0.3-0.1c0.4-0.2,0.8-0.3,1.1-0.5c0.1,0,0.2-0.1,0.2,0
c0.2,0.3,0.4,0.5,0.5,0.8c0,0.1,0.2,0.2,0.1,0.4c-0.1,0.1-0.3,0.3-0.4,0.2l0,0l0,0c-0.2-0.2-0.2,0.1-0.3,0.2l0,0l0,0
c0,0.3,0.2,0.4,0.4,0.6c0.5,1.1,1.1,2.2,1.4,3.3c-0.1,0-0.2,0.1-0.3,0.2l0,0c-0.3,0.1-0.6,0-0.9,0.1c-0.1,0-0.3,0-0.4,0.1
c-0.4,0.5-1,0.5-1.5,0.6c-0.5-0.1-0.9-0.1-1.3,0.1c-0.6,0.3-1.2,0.4-1.9,0.7c-0.7,0.3-1.4,0.6-2.1,0.9c-0.5,0.2-1,0.5-1.5,0.6
c-0.7,0.3-1.3,0.6-2,0.9c-0.5,0.2-0.9,0.4-1.4,0.6c-0.9,0.4-1.7,0.8-2.7,1.2c-0.4,0.2-0.8,0.4-1.2,0.6c-0.9,0.4-1.8,0.8-2.8,1.2
c-0.6,0.3-1.1,0.5-1.7,0.8c-0.9,0.4-1.8,0.8-2.7,1.2c-0.7,0.3-1.4,0.7-2.2,1.1c-0.9,0.5-1.7,0.9-2.6,1.3c-0.7,0.3-1.4,0.7-2.2,1.1
c-1.2,0.6-2.4,1.1-3.6,1.8c-1,0.5-2,1.1-3,1.7c-0.1,0-0.3,0.1-0.4,0.2c-0.1,0-0.3,0.2-0.4,0.2c-0.5,0.2-1,0.5-1.3,1
c-0.2,0.3-0.3,0.6-0.4,0.9C6.3,51,6.4,51.7,6.3,52c0.9-0.2,32.6-15.8,33.9-16.5c-0.2,0.1-0.3,0.2-0.5,0.2c0.2-0.1,0.4-0.1,0.5-0.2
c0.1,0,1.3-0.9,2-1.1s1.1-0.4,1.8-0.6c0.5-0.1,0.9-0.5,1.5-0.5c0.3,0,0.5-0.1,0.7-0.3c0.3-0.2,0.6-0.5,0.9-0.5l0,0
c-0.2,0.1-0.2,0.3-0.3,0.4c-0.3,0.3-0.5,0.6-0.9,0.8c-0.6,0.6-1,1.2-1.5,1.8c-0.7,0.9-1.5,1.7-2.2,2.5c-0.1,0.1-0.2,0.3-0.3,0.4
c-0.5,0.4-0.8,0.7-1.3,0.9c-0.6,0.4-1.1,0.7-1.7,1c-0.1,0-0.1,0.1-0.1,0.1c-0.2,0.6-0.1,1.2-0.1,1.7c0,0.1,0,0.3-0.1,0.4
c-0.3,0.3-0.4,0.7-0.7,1c-0.1,0.1-0.4,0.3-0.2,0.5c0.1,0.2,0.1,0.4,0.2,0.5c-0.2,0.2-0.4,0.2-0.6,0.4c-0.8,0.7-1.8,1.3-2.7,2
c-0.2,0.2-0.5,0.2-0.6,0.5c0,0.3-0.1,0.7-0.1,1.2c0,0.8-0.5,1.5-1.3,1.6c0.1-0.1,0.3-0.2,0.1-0.4c-0.2-0.2-0.3,0-0.5,0
s-0.1,0-0.2,0.1c-0.4,0.1-0.9,0.4-1.4,0.5c-0.1,0-0.3,0.1-0.3,0.3c0.1,0.2,0.2,0,0.3,0c0.3-0.1,0.5-0.1,0.8-0.3
c0.1,0,0.2-0.1,0.2,0c0,0.1-0.1,0.1-0.1,0.1c-0.4,0.2-0.8,0.4-1.2,0.6c-1.1,0.5-2.2,1.1-3.2,1.6c-0.5,0.2-1,0.5-1.5,0.6
c-0.6,0.3-1.1,0.4-1.6,1c-0.4,0.6-0.6,1.1-0.7,1.8c0,0.7,0.3,1.4,0.9,1.9c0.2,0.2,0.4,0.2,0.7,0.4c0.6,0.4,1.3,0.5,1.9,0.2
c0.5-0.1,0.9-0.4,1.4-0.6c0.1,0,0.2-0.1,0.3,0c0.2,0.4,0.5,0.2,0.8,0.3c0.1,0,0.1,0,0.1,0.1c0.2,0.3,0.4,0.6,0.5,0.8
c0.6,1,1.9,1.4,3,0.8c0.2-0.1,0.3-0.1,0.4,0.1c0.1,0.5,0.4,1,0.7,1.6c0.3,0.6,0.7,0.9,1.3,0.8c0.6-0.2,1.4-0.5,2-0.6
c0.5-0.1,1-0.4,1.5-0.6c0.3-0.1,0.6,0.1,0.8,0c0.4-0.1,1-0.3,1.4-0.4c0.2-0.1,0.3-0.1,0.4,0.2c0.1,0.2,0.1,0.4,0.3,0.6
c0.1,0.1,0.1,0.2,0,0.2c-0.5,0.2-0.9,0.5-1.4,0.7c-0.1,0-0.2,0.2-0.3,0.3c0,0.2,0,0.5-0.3,0.5c-1,0.2-1.9,0.3-2.8,0.5
c-1,0.3-1.9,0.3-2.8,0.5c-0.7,0.2-1.5,0.2-2.3,0.4c-0.2,0.1-0.4,0.1-0.4,0.2c-0.1,0.5-0.1,0.8-0.1,1.3c0,0.3,0.1,0.5,0.6,0.4
c0.6-0.2,1.3-0.3,1.9-0.5c0.2-0.1,0.3,0,0.6,0c0.6-0.3,1.3-0.3,1.9-0.5c1.1-0.2,2.3-0.5,3.4-0.7c0.2-0.1,0.2,0,0.4,0.1
c0.4,0.6,0.8,0.9,1.6,0.9l0.1,0c0.3,0.3,0.6,0.1,0.9,0c0.3-0.1,0.7-0.2,1,0c0.4,0.2,0.7,0,1.1-0.2c0.2-0.2,0.5-0.4,0.8-0.3
c1,0,2.1-0.1,3.1-0.2c0.1,0.1,0.2-0.1,0.3-0.1l0,0l0,0c0.2-0.2,0.5-0.2,0.7-0.4c0.1,0,0.2-0.1,0.2,0c0.1,0.3,0.3,0.6,0.5,0.9
c0.2,0.4,0.5,0.7,0.9,0.9c0.5,0.3,1,0.4,1.6,0.3c0.5-0.1,1-0.4,1.3-0.9c0.5-0.8,0.5-1.7,0.1-2.5c-0.2-0.5-0.5-1-1-1.5
c0-0.1-0.2-0.2-0.1-0.2c0.3,0,0.6-0.3,0.9-0.4c0.2-0.1,0.3-0.2,0.4-0.3c0.1-0.4,0-0.7-0.2-1.1s-0.7-0.6-1-1.1c0-0.1,0-0.1-0.1-0.1
c-0.6,0-1.1,0-1.7,0c0-0.8,0-0.8,0.6-1.1c0.7-0.3,1.3-0.6,2-1c0.3-0.2,0.6-0.3,0.9-0.5c0.2-0.1,0.3-0.1,0.5,0
c0.2,0,0.5,0.3,0.8,0.4c0.6,0.2,1.1,0.4,1.7,0.6c1.3,0.5,2.5,0.8,3.9,1.2c0.5,0.2,0.9,0.3,1.1,0.8c0.1,0.3,0.3,0.7,0.6,1
c0.6,0.5,1.2,0.9,2,0.7c0.7-0.2,1.4-0.6,1.7-1.4c0.1-0.4,0.1-0.8,0-1.3c0-0.6-0.2-1.1-0.5-1.6c-0.2-0.4-0.6-0.9-1-1.1
c-0.4-0.2-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.1-1.3,0.3l0,0c-0.1,0-0.2,0.1-0.3,0.2l0,0c-0.7,0.4-0.7,1.1-0.8,1.8
c-0.5-0.1-0.9-0.3-1.3-0.5s-0.6-0.4-0.5-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.3-0.3-0.2-0.5-0.3-0.8c0.4,0.5,0.8,0.8,1.1,1.3
c0.2,0.2,0.3,0.3,0.5,0.1c0.1-0.1,0.5-0.2,0.3-0.5c-0.2-0.2-0.2-0.4-0.4-0.6c-0.4-0.5-0.7-1.1-1.1-1.5c0-0.1-0.2-0.2-0.1-0.2
c0.2-0.2,0.4-0.3,0.6-0.2c0.1,0.1,0.2,0,0.3,0c0.6-0.3,1.3-0.3,1.5-1.1c0.1-0.1,0.1-0.1,0.2-0.2c0.6-0.3,1.2-0.6,1.8-0.9
c0.1,0.1,0.3-0.1,0.4-0.1c0.4-0.2,0.7-0.4,1.3-0.3c0.7,0,1.3-0.3,1.6-1l0.1-0.1c0.6-0.2,1.1-0.6,1.7-0.9c0.3-0.2,0.7-0.5,0.9-0.5
c0.3,0.2,0.4,0.6,0.6,0.9c0.1,0.2-0.2,0.5,0.1,0.7c0,0,0,0-0.1,0c-0.2,0.1-0.2,0.2-0.2,0.3c0.1,0.2,0.2,0.2,0.3,0.2
s0.2-0.2,0.4-0.1c-0.1,0.1-0.2,0.2-0.3,0.3c-0.4,0.5-0.3,0.9-0.1,1.4l0,0l0,0c0.1,0.2,0.1,0.3,0.2,0.4l0,0.1
c0.2,0.4,0.6,0.5,1.1,0.5c0.5,0,0.7-0.3,0.8-0.8c0-0.2,0.2-0.2,0.3-0.1c0.5,0.3,1.3-0.1,1.4-0.7c0-0.5-0.1-0.9-0.3-1.3
c-0.5-0.6-1.1-1-1.8-0.2c-0.1,0.1-0.1,0-0.2,0.1c-0.2,0-0.3-0.4-0.6-0.4c-0.2-0.2-0.2-0.3-0.1-0.4s0-0.3-0.1-0.3
c-0.3,0-0.4-0.2-0.5-0.4c-0.2-0.2-0.1-0.4,0.1-0.5c0.6-0.3,1.2-0.7,1.8-1c0.2-0.1,0.4-0.2,0.5-0.2c0.1,0,0.3-0.2,0.1-0.4
c-0.1-0.1-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0.2c-0.1,0-0.2,0.2-0.3,0.1c-0.1-0.1,0.1-0.1,0-0.2l0-0.1c0.1-0.6,0.2-1.1,0.8-1.1
c0.1,0,0.3-0.3,0.4-0.2c0.3,0.2,0.5,0,0.7-0.1c0.2-0.1,0.1-0.4,0.2-0.4c0.5-0.2,0.5-0.8,1-1.1c0.1,0,0.1-0.1,0-0.2
c-0.1-0.2-0.2-0.4,0.1-0.5c0.2-0.2,0.3-0.3,0.5-0.4c0.1,0,0.5,0.1,0.4-0.3c0-0.1,0.2-0.1,0.2,0c0.2,0.2,0.2,0,0.3,0
c0.7-0.3,1.4-0.7,2.1-1c0.5-0.2,1-0.6,1.6-0.8c0.1,0,0.2-0.3,0.2-0.3c-0.3-0.2-0.2-0.3-0.2-0.5c-0.2-0.2-0.3-0.4-0.4-0.7
c0-0.1,0-0.1,0-0.2c0.1,0,0.3-0.2,0.3,0c0,0.1,0.2,0.2,0.2,0c0.1,0,0.1-0.1,0-0.2c0-0.6,0-0.6,0.5-0.7c0.7-0.2,1.5-0.4,2.2-0.6
c0.4-0.1,0.9-0.2,1.4-0.4c0.1,0,0.2-0.1,0.2,0c0.1,0.3,0.3,0.6,0.3,0.8c0.1,0.2,0.2,0.3,0.3,0.2c0.3-0.2,0.7-0.3,1-0.5
c0.1,0,0.1-0.1,0-0.2c0-0.7,0-1.3-0.1-1.9c-0.1-1.2-0.3-2.4-0.5-3.6c0-0.5-0.1-0.5-0.5-0.3c-0.3,0.1-0.7,0.2-0.7,0.7
c0,0.5-0.1,0.9-0.1,1.5c0,0.8,0,1.7,0,2.5c0,0.1,0.1,0.2,0,0.2c-0.2,0.1-0.3,0.1-0.5,0.1c-0.7,0.1-1.3,0.2-1.9,0.4
c-0.1-0.2,0.2-0.3,0.1-0.4c0.1-0.1,0.2-0.3,0.2-0.3c-0.1-0.3,0.1-0.6,0-0.9c-0.1-0.2,0-0.2,0.3-0.3c0.3-0.1,0.5-0.4,0.3-0.6
c-0.2-0.2-0.1-0.2,0-0.3c0.4-0.8,0.6-1.4,1-2.2c0.7-1.3,1.2-2.7,1.9-4c0.3-0.6,0.7-1.3,0.9-2.1c0.4-0.9,0.8-1.8,1.2-2.6
c0.1-0.1,0.2-0.4,0.1-0.5c-0.1-0.1-0.3,0-0.5,0.1c-0.1,0-0.1,0.1-0.2,0.2c-0.2,0.3-0.2,0.5-0.4,0.8c-0.5,0.8-0.9,1.6-1.4,2.5
c-0.6,1.2-1.3,2.4-2,3.6c-0.3,0.6-0.7,1.2-1,1.9c-0.1,0.4-0.5,0.8-0.6,1.2c0-0.3-0.2-0.4-0.4-0.7c-0.1-0.2-0.1-0.5-0.4-0.6
c-0.1-0.1-0.3-0.2-0.3-0.3c-0.2-0.2-0.3-0.4-0.4-0.7c-0.2-0.2-0.3-0.3-0.5-0.1c-0.7,0.5-1.4,0.8-1.9,1.3c-0.6,0.5-1.3,0.7-2,1.2
c-0.1,0-0.1,0-0.2,0.1c-0.2,0-0.6-0.1-0.8-0.4c-0.4-0.6-1-1-1.5-1.4c-0.7-0.6-1.5-1-2.4-1.3c-0.3-0.2-0.6-0.2-1-0.2
c-0.9-0.2-1.8-0.3-2.6-0.2c-0.9,0.1-1.6,0.9-2.4,1.3c-0.3,0.2-0.6,0.3-0.7,0.7c-0.1,0.1-0.2,0.2-0.3,0.2c-0.3,0-0.7,0-1-0.1
c-0.7,0.1-1.3,0.1-1.9,0.3c-1,0.2-2,0.3-3,0.5c-0.7,0.2-1.6,0.5-2.3,0.6c-1.2,0.1-2.3,0.3-3.5,0.6c-0.1,0-0.2,0.1-0.3,0.2
c0,0.1-0.1,0.1-0.2,0.2s-0.2,0.1-0.4,0.1c-0.3,0.2-0.6,0.2-0.8,0.3c-0.1,0-0.1,0-0.2,0c-0.1-0.2-0.3-0.4-0.3-0.6
c0-0.2,0.3-0.1,0.5-0.1c0.1,0,0.2-0.1,0.2,0c0.2,0,0.3-0.1,0.3-0.2c-0.1-0.2,0.2-0.2,0.3-0.2c0.3-0.1,0.3-0.2,0.2-0.5
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.5-0.4-0.9-0.9-1.5-1.3c0.7-0.5,1.4-0.8,2-1.3c0.2-0.2,0.5-0.2,0.6-0.6l0.1,0c0.5,0,0.9-0.2,1.2-0.4
c0.2-0.1,0.3-0.3,0.4-0.5c2.8-1.5,5.6-3.1,8.4-4.5c0,0,0,0,0.1,0c0.1,0.1,0.3-0.1,0.4-0.1l0,0l0,0c1.9-1,3.8-2,5.8-3l0,0l0,0
c0.1,0.1,0.2-0.1,0.3-0.1c0.4-0.2,0.8-0.4,1.3-0.7c0.1,0.1,0.3-0.1,0.4-0.2c0.9-0.5,1.8-0.9,2.7-1.4c0.8-0.4,1.6-0.8,2.4-1.2
c0.1,0.1,0.3-0.1,0.4-0.1l0,0l0,0c1.7-0.9,3.5-1.7,5.2-2.7l0,0l0,0c0.1,0.1,0.2-0.1,0.4-0.1l0,0l0,0c0.3-0.2,0.6-0.4,0.9-0.5
c1-0.4,2-1,3-1.4c0.6-0.3,1.2-0.6,1.8-0.8c0.9-0.5,1.9-1,2.8-1.3c0.8-0.3,1.6-0.8,2.5-1.2l0,0l0,0c0.1,0.1,0.2-0.1,0.3-0.1l0,0l0,0
c0.2-0.1,0.4-0.2,0.6-0.3l0,0l0,0c0.1,0.1,0.2-0.1,0.3-0.1c1-0.6,2.1-1.1,3.1-1.6C100,6.1,100,6,100,6C100,5.7,100,5.7,99.9,5.6z
M48.7,35.2c0,0.1-0.1,0.1-0.2,0.2c-0.7,0.4-1.4,0.7-2.1,1c-0.1,0-0.1,0.1-0.2,0.2c-0.1,0-0.2,0.2-0.2,0.1c0.7-0.8,1.4-1.5,2.1-2.3
c0.1,0,0.1-0.1,0-0.2s-0.1-0.1-0.2,0c-0.2,0.1-0.3,0-0.5,0c0.2-0.1,0.2-0.4,0.6-0.5c0.1,0,0.2-0.2,0.2,0
C48.4,34.2,48.7,34.6,48.7,35.2z M48.9,34c-0.3-0.4-0.5-0.8-0.2-1.3C48.6,33.3,49.1,33.5,48.9,34z M49.4,32.4
c0.1,0.2,0.1,0.5,0.1,0.8c0,0.1-0.1,0.1-0.2,0.2c-0.1,0-0.1-0.1-0.2-0.2c0-0.1-0.1-0.3-0.2-0.4C48.9,32.6,49.2,32.5,49.4,32.4
C49.3,32.3,49.4,32.3,49.4,32.4z M47,28.7c0.2,0.4,0.4,0.9,0.8,1.3l0,0.1c0,0.2,0.2,0.4,0.4,0.3c0.2-0.1,0.2,0,0.3,0.2
c0.1,0.2-0.1,0.1-0.2,0.2c-0.1,0-0.3,0.2-0.4,0.2c-0.5,0.2-0.5,0.2-0.6-0.3c-0.1-0.5-0.5-1-0.6-1.5c-0.1-0.3-0.3-0.7-0.4-1
c0.2,0,0.4-0.2,0.6-0.2c0.1,0,0.2-0.2,0.2,0c0,0.1,0.2,0.2,0.1,0.3C46.8,28.4,47,28.6,47,28.7z M46.3,26.4
c-0.2,0.1-0.3-0.2-0.3-0.3c-0.2-0.2-0.2-0.4-0.4-0.6c0,0-0.2-0.2-0.1-0.2c0.1-0.1,0.2-0.1,0.2,0C45.9,25.8,46.1,26.1,46.3,26.4z
M47.5,24.9c0.1,0.2,0.1,0.4,0.3,0.6c0,0.1,0,0.1-0.1,0.1c-0.1,0-0.1,0-0.1-0.1s-0.2-0.3-0.2-0.4l0,0c0-0.1-0.1-0.2-0.2-0.3
c0-0.1-0.1-0.2,0-0.2C47.4,24.7,47.4,24.7,47.5,24.9z M50.5,29.7c-0.1,0-0.3,0.1-0.2,0.3c0,0.1,0,0.2-0.2,0.2
c-0.2,0-0.4-0.5-0.2-0.6c0.1-0.1,0.2-0.3,0-0.3c-0.2-0.2-0.2-0.3-0.2-0.5c-0.2-0.4-0.4-0.7-0.6-1.1c-0.1-0.2-0.3-0.3-0.4-0.2
c-0.1,0-0.2,0-0.3-0.2c0-0.1,0-0.2,0.2-0.3c0.2-0.2,0.4-0.2,0.5,0.1c0.1,0.2,0.3,0.4,0.4,0.7c0.4,0.5,0.7,1.1,1.1,1.6
C50.7,29.6,50.7,29.7,50.5,29.7z M52.1,31.8c-0.3-0.2-0.2-0.4-0.3-0.6C52,31.4,52,31.6,52.1,31.8z M53,31.9c-0.5,0-0.5-0.3-0.7-0.6
C52.6,31.4,52.6,31.8,53,31.9z M65.9,21.8c-0.1,0-0.2,0.1-0.3,0.2c-3.1,1.6-6.3,3.3-9.4,5c-0.1,0-0.2,0.2-0.2,0.1
c-0.4-0.1-0.5,0.1-0.8,0.3c-0.2,0.2-0.5,0.2-0.6,0.5l-0.1,0c-0.6-0.1-1,0.4-1.5,0.6c-0.6,0.3-1.1,0.5-1.7,0.8c-0.1,0-0.2,0.1-0.2,0
c-0.3-0.4-0.6-0.9-0.9-1.3c-0.4-0.5-0.6-1.1-1-1.6c-0.1-0.2-0.2-0.3-0.1-0.5s-0.2-0.3-0.3-0.3c-0.3,0.1-0.5-0.1-0.5-0.3
c0-0.1-0.1-0.3-0.2-0.4c-0.2-0.3-0.1-0.3,0.2-0.4s0.5-0.1,0.8-0.3c0.2-0.1,0.5,0.1,0.7,0c0.1,0,0.2,0,0.3-0.1
c0.7-0.4,1.5-0.5,2.2-0.7c0,0.2-0.2,0.3-0.2,0.4c0,0.1-0.2,0.2,0,0.2c0,0.1,0.2,0,0.2,0c0.3-0.1,0.6-0.2,0.9-0.2
c1.3-0.2,2.5-0.5,3.8-0.8c1.3-0.3,2.5-0.4,3.8-0.7c1-0.2,2.1-0.3,3-0.6c1-0.2,2.1-0.3,3.1-0.5c0.1,0,0.3-0.2,0.5,0
C66.7,21.4,66.4,21.7,65.9,21.8z"/>
</g>
<image style="overflow:visible;" width="32" height="32" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAQAAADZc7J/AAAAAmJLR0QA/4ePzL8AAAKFSURBVEjH
nZVdaM1hHMc/z3HYdrY5hNm8v9vWhLzlJYriBldWw4VSpBTJrShJ3LghpLzEBSkhipILJW8lUlpL
S9hwgUVi2M7HxTlnc7a/M87v4v+/eb6/7/f5/l4e+I8w/U3Yj0IiAz/hqQITgHW+94YxM8n+k929
fnJFgdIt97QvjNGLO9Y3POA0WmlkakhJ6OFJH2AB19phXU+AMSuc5fZ4PuYAeJbxVIRPWW4JGGMp
SRp5FR7/nb3MXVZ6wy0AFjvYSsc41Qk2uNmh2UuEvyao5B4prvGLGZST4iMljOUhB3gZvmW1QDxK
OjiQ5bTznYu08Y0PFDMHeBA+d3sRAEujSjbAZe52srPsdAE41x3OdXCEypj1oQdzkulM4H5oAgMX
GEILV8PlrlMl/Ogupgt5ldvnS13nMABne9LbttrhTeP2s9TJVrvbZp84H8C4w90JIcNcxkRqeEor
s1lBLfe5wlHeso7nFDOUZI72tcxjI0do5nSaeZL1Jqz2ug9tcLyY8LW/bDdfrPKO8bgjmclo2jnP
T/aHewCu4gqBQDxPm75BEgTc5jv3WWfZH+42qinzx3AHWAF4vEdpyt3UB/Srx5wSMUyZSmy1KS+8
xUURs2i6++d4Li+40/duyQXHuybsBIsZTSKPbU1sYD3BRHoWchXU5uFtt80nFgN4yMdWRU9fg6t9
FgE/Y7NXrfWwSTBhf6J2UsbAIg+qX2yxI8O90rSxd9X6iI3Vex043xr3+KNLwUQAB/nIJb1sz10o
QjWXeE0by0nynU6KKGFEeJc9mP4LEAupKB+KrLIUrLLGcY5yjbdM5N7WkF62/utT1i02C7OAZwUw
SKEvYoxCmPlH0b8BF043R6DlbZIAAAAASUVORK5CYII=" transform="matrix(1 0 0 1 -36.7427 22.4514)">
</image>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.0" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 100 43" style="enable-background:new 0 0 100 43;" xml:space="preserve">
<g>
<path d="M45.1,14.9c-0.2-0.2-0.5-0.3-0.7-0.4c-0.5-0.4-0.5-0.7-0.1-1.2c0.6-0.6,1.3-0.9,2-1.3c0.2-0.1,0.4-0.2,0.6-0.3
c-0.4-0.3-0.9-0.2-1.3-0.3c-2.2-0.4-4.4-0.7-6.7-1c-2.1-0.3-4.1-0.6-6.2-0.9c-0.1,0-0.3-0.1-0.4,0c-0.7,0.3-1.4,0-2-0.1
c-1.7-0.2-3.4-0.5-5-0.7c-1.1-0.2-2.2-0.4-3.3-0.5c-0.6-0.1-1.1-0.3-1.7-0.5c-0.5-0.2-1.1-0.2-1.7-0.3c-1.1-0.2-2.2-0.3-3.2-0.5
c-1.4-0.2-2.7-0.4-4.1-0.6C10.5,6,9.7,5.9,8.9,5.8C8.1,5.6,7.2,5.5,6.3,5.3C5.5,5.2,4.8,5.1,4,5C3.8,5,3.6,4.9,3.5,4.8
C3,4.4,2.3,4.5,1.7,4.4C0.8,4.2,0.4,3.9,0.3,3.1c-0.2-0.8,0-1.5,0.5-2.2c0.5-0.6,1.1-0.6,1.7-0.5C3,0.6,3.7,0.8,4.2,0.6
c0.7-0.3,1.4-0.1,2.1,0c1.7,0.3,3.3,0.6,5,0.9c0.4,0.1,0.8,0.2,1.2,0.2c0.3,0,0.6,0,0.7,0.3c0.1,0.2,0.4,0.2,0.5,0.1
c0.3-0.3,0.7-0.1,1.1-0.1c1.9,0.3,3.9,0.7,5.8,1.1c1.2,0.2,2.5,0.4,3.7,0.6C25.2,3.9,26,4,26.8,4.2c1.8,0.3,3.5,0.6,5.3,1
c2.5,0.5,4.9,0.9,7.4,1.3c0.2,0,0.4,0.1,0.6,0.3C40.2,7,40.5,7,40.7,6.9c0.6-0.3,1.1,0,1.7,0.1C44,7.3,45.7,7.6,47.4,8
c0.4,0.1,0.7,0.4,1.1,0.4c1.3,0.1,2.5,0.6,3.9,0.5c0.3,0,0.5-0.1,0.7-0.3c0.2-0.2,0.6-0.3,0.9-0.4c0.1,0,0.2,0,0.2-0.1
c0.9-0.4,0.9-0.4,0.9-1.4c0-0.3,0-0.6,0-1c0-0.3,0.1-0.5,0.5-0.5c0.4,0,0.8,0.1,1.1-0.3c0.1-0.1,0.3-0.1,0.5-0.1
c0.1,0,0.1,0,0.2-0.1c0-0.1,0-0.1-0.1-0.2c-0.3-0.2-0.5-0.2-0.7,0.1c-0.1,0.1-0.2,0.1-0.4,0.2c-0.3,0-0.6-0.1-1,0
c-0.1,0-0.2-0.1-0.2-0.2c0-0.5-0.4-0.5-0.7-0.5c-0.7,0-1.5,0.1-2.2,0.2c-0.3,0.1-0.6,0.1-0.9,0.1c-0.2,0-0.5-0.1-0.4-0.3
c0-0.3,0.3-0.4,0.5-0.4c1.2,0,2.3-0.1,3.4-0.2c0.1,0,0.3,0,0.3-0.2C54.8,3,55,3,55.2,3c0.4,0,0.9,0,1.3,0.1c0.2,0,0.4,0,0.5-0.2
c0.3-0.5,0.8-0.4,1.3-0.4c0.5-0.1,1.1-0.1,1.6-0.1c0.3,0,0.6-0.1,0.8-0.3c0.2-0.1,0.4-0.2,0.6-0.1c0.7,0.1,1.4,0,2.1,0.2
C63.8,2.2,64,2.3,64,2.7c0,0.3,0.2,0.4,0.2,0.7c0.1,0.7-0.4,1.1-0.8,1.5c-0.1,0.1-0.1,0.1-0.1,0.2c0,0.2-0.1,0.3-0.3,0.3
c-0.1,0-0.2,0-0.2,0.2c0,0.1,0.1,0.1,0.2,0.1c0.3,0,0.7-0.1,1-0.1c1-0.1,2-0.2,3-0.3c0.2,0,0.3-0.1,0.3-0.3c0-0.2,0.1-0.3,0.3-0.3
C67.8,4.7,68,4.8,68,5c0,0.3,0.2,0.3,0.4,0.3c1.1-0.1,2.2,0,3.3,0.1c0.8,0,1.5,0,2.3,0.1c1.1,0,2.1,0.2,3.2,0.1
c0.2,0,0.4,0,0.4-0.3c0-0.2,0.2-0.2,0.4-0.3c0.7-0.4,1.6-0.2,2,0.5c0.1,0.2,0.3,0.2,0.5,0.2c0.9,0,1.7,0.1,2.6,0.1
c2.6,0.1,5.2,0.2,7.8,0.3C91.2,6,91.7,6,92.1,6c0.3,0,0.4,0.1,0.5,0.3c0.5,1.7,1,3.4,0.1,5.1c0,0,0,0.1,0,0.1c-0.1,0.6-0.3,1-1,1
c0,0-0.1,0-0.2,0.1c0.5,0,1,0.1,1.4,0.1c1.8,0.2,3.5,0.3,5.3,0.4c0.3,0,0.6,0,0.9,0c0.4,0,0.6,0.2,0.8,0.6c0.5,0.9,0.4,1.8,0.2,2.8
c0,0.1,0,0.3,0,0.4c0,0.2-0.1,0.4-0.2,0.4c-0.3,0-0.3,0.2-0.3,0.5c0.1,0.5,0.1,0.9,0.2,1.4c0,0.5-0.1,1-0.5,1.3
c-0.5,0.4-0.7,1-0.8,1.6c0,1.4-0.7,2.6-1.3,3.7c-0.7,1.3-1.4,2.7-2,4.1c-0.3,0.5-0.7,0.9-1.2,1.1c-0.9,0.4-1.8,0.8-2.8,1.1
c-1.1,0.4-2.1,1-3.2,1.4c-1.2,0.5-2.4,1-3.6,1.5c-1.4,0.6-2.8,1.2-4.2,1.8c-0.8,0.3-1.5,0.7-2.3,1c-1.8,0.8-3.6,1.5-5.5,2.3
c-1.7,0.7-3.3,1.5-5,2.2c-0.9,0.4-1.7,0.5-2.7,0.2c-0.8-0.2-1.6-0.2-2.3-0.4c-0.9-0.2-1.8-0.3-2.6-0.4c-0.8-0.1-1.4-0.5-2-0.9
c-1.4-0.9-2.8-1.8-4.2-2.7c-0.2-0.2-0.5-0.2-0.8-0.2c-0.5,0-1-0.1-1.5-0.2c-0.2,0-0.3,0-0.4,0.2c-0.1,0.4-0.2,0.8-0.3,1.2
c-0.1,0.4-0.3,0.5-0.7,0.4c-0.7-0.2-1.5-0.2-2.2-0.4c-0.7-0.2-1.5-0.4-2.2-0.6c-0.6-0.1-1.2-0.1-1.8-0.2c-0.8-0.1-1.6-0.3-2.4-0.4
c-0.7-0.1-1.5-0.2-2.2-0.3c-0.6,0-1.1-0.2-1.6-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.9,0.2-1.7,0.2-2.6,0c-0.8-0.1-1.6-0.2-2.4-0.4
c-1.3-0.2-2.5-0.5-3.6-1.2C28,36.1,28,36,27.9,36c-1.3-0.2-2-1.3-3.2-1.8c-1-0.4-1.9-1.1-2.9-1.5c-0.6-0.3-1-0.8-1.2-1.4
c-0.1-0.4-0.4-0.6-0.9-0.6c-0.7-0.1-1.4-0.3-2.1-0.4c-0.2-0.1-0.3-0.2-0.3-0.4c0.1-0.7,0.2-1.5,0.4-2.2c0.1-0.4,0.2-0.8,0.2-1.2
c0-0.6,0.4-1.1,0.7-1.6c0.1-0.1,0.2-0.2,0.2-0.4c0.3-0.7,0.9-1.2,1.5-1.6c0.9-0.6,1.8-1.2,2.8-1.7c0.7-0.3,1.4-0.5,2.1-0.8
c1.4-0.5,2.8-0.9,4.2-1.4c1.2-0.5,2.4-0.9,3.6-1.3c1.1-0.4,2.2-0.7,3.3-0.9c1.6-0.3,3.2-0.6,4.9-0.8c0.2,0,0.4-0.2,0.6-0.3
c0.4-0.4,0.8-0.6,1.4-0.6C43.9,15,44.5,14.9,45.1,14.9z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.0" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 100 79" style="enable-background:new 0 0 100 79;" xml:space="preserve">
<path d="M99.9,64.5c0-0.1,0.1-0.2,0.1-0.2c0-1.2-0.1-2.3-0.1-3.5c0-2.4,0-4.9,0-7.3c0-0.1,0-0.2,0-0.3c0.2-0.3-0.1-0.5-0.2-0.7
c-0.3-0.4-1.1-0.5-0.9-1.3c0-0.1-0.1-0.2-0.1-0.4c-0.1-0.6-0.3-1.3-0.4-1.9c0-0.7,0-1.4,0.1-2c0-0.3,0.1-0.7-0.1-0.8
c-0.2-0.2-0.5-0.1-0.8-0.1c-0.3,0-0.5,0.1-0.7,0.1c-0.5-0.5-1.1-1-1.6-1.5c-0.1-0.1-0.2-0.3-0.2-0.4c0-1.1-0.1-2.1-0.1-3.2
c0-2.2,0-4.4,0-6.5c0-0.7,0-1.4,0-2.1c0-0.3-0.1-0.6-0.3-0.8c-0.7-0.5-1.4-0.8-2.1-1.2c-0.9-0.6-1.9-0.9-3-0.9
c-0.5,0-1.1-0.1-1.7-0.1c-1-0.1-2-0.3-3-0.4c-0.5-0.1-1-0.2-1.5-0.3c0.2-0.1,0.4-0.1,0.5-0.1c0.4,0,0.5-0.2,0.5-0.5c0-0.3,0-0.7,0-1
c0-0.4-0.2-0.5-0.5-0.5c-0.5,0-1,0-1.5,0.1C81.4,26.6,81,27,81,27.8c0,0.1,0,0.1,0,0.2c-0.2,0-0.4-0.1-0.6-0.1
c-0.3-0.1-0.6-0.3-1-0.3c-1.3-0.2-2.6-0.3-3.8-0.5c-0.5-0.1-1-0.1-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.4c-0.2-0.1-0.5-0.1-0.5-0.4
c0,0-0.2-0.2-0.4-0.1c-0.4,0-0.9,0.1-1.3,0.1c-0.8-0.1-1.7-0.2-2.5-0.3c0-0.4-0.1-0.7-0.1-1c-0.6-0.1-1-0.2-1.5-0.2c0,0,0-0.1,0-0.1
c0.5,0.1,0.7-0.2,0.8-0.5c0-0.1,0.1-0.2,0.2-0.2c0.2-0.4,0.5-0.5,0.9-0.3c0.2,0.1,0.5,0.1,0.7,0.1c0.9,0,1.7-0.1,2.6-0.2
c0.1,0,0.4-0.1,0.5-0.2c0.2-0.2,0.3-0.4,0.5-0.6c-0.1-0.8-0.1-1.5,0.6-2.1c0.4-0.4,0.6-0.9,0.2-1.5c-0.3-0.4-0.4-0.9-0.6-1.3
c-0.1-0.2-0.1-0.4-0.2-0.7c0-0.4,0.1-0.9-0.4-1.2c0,0-0.1-0.1-0.1-0.1c0-0.4-0.3-0.4-0.6-0.5c-0.1,0-0.3-0.1-0.4-0.1
c-0.7-0.1-1.4-0.5-2.1-0.2c-0.1,0-0.3,0-0.4-0.1c-0.7-0.2-1.3-0.3-2-0.5c-0.3-0.1-0.6-0.3-0.9-0.3c-1-0.2-2-0.5-3-0.4
c-1.3,0.1-2.6,0-4,0c-0.1,0-0.2,0-0.4,0V0c0-0.4-0.2-0.5-0.2,0c0,2.5,0,10.6,0,13.1c0,0.1,0,0.2,0,0.3c0,0.1-0.1,0.1-0.2,0.2
c-0.6,0.2-1.3,0-1.8,0.5c0,0-0.1,0-0.2,0c-0.5-0.1-1-0.2-1.5-0.3c-0.5-0.1-1.1-0.3-1.6-0.4c-0.5-0.1-0.9,0.2-1,0.7
c0,0.3,0.2,0.7,0.6,0.7c0.7,0.1,1.4,0.2,2.1,0.3c0.4,0.1,0.8,0.2,1.4,0.3c-0.2,0.1-0.2,0.1-0.3,0.1c-0.5,0-0.7,0.3-0.8,0.8
c-0.1,0.6-0.2,1.1,0.2,1.6c0.4,0.5,0.8,1.1,1.2,1.7c0.3,0.4,0.6,0.7,0.6,1.2c0,0.3,0.2,0.4,0.5,0.5c0.2,0,0.4,0.1,0.5,0.1v3.9
c-0.2-0.1-0.5-0.1-0.7-0.2c-0.1,0-0.2,0-0.3-0.1c-0.6-0.1-1,0.3-1.5,0.6c-0.4,0.2-0.7,0.7-1.2,0.8c-1.5,0.1-3,0.2-4.5,0.3
c-0.6,0-1.2-0.2-1.7,0.4c0,0-0.1,0-0.2,0c-1.3,0.2-2.6,0.4-3.9,0.6c-1,0.2-2,0.2-2.9-0.1c0.2-0.3,0.3-1.2,0-1.4
c-0.6-0.4-1.1-1-1.9-0.8c-0.3,0.1-0.6,0-0.9,0.1c-0.1,0-0.3,0.1-0.3,0.2c-0.1,0.4-0.1,0.8-0.1,1.2c0,0.2,0.2,0.4,0.3,0.7
c-0.2,0-0.5,0-0.7,0c-0.1,0-0.3,0.1-0.4,0.2c0,0.1,0,0.3,0.1,0.4c0.2,0.3,0.4,0.5,0.6,0.8c0.1,0.1,0.2,0.2,0.1,0.3
c-0.1,0.3-0.2,0.7-0.4,1c-1,1.2-2,2.4-3,3.5c-0.2,0.2-0.4,0.5-0.6,0.7c-0.1-0.3-0.1-0.7-0.6-0.5c0-0.1-0.1-0.1,0-0.2
c0.1-0.5-0.4-0.8-0.5-1.2c0,0-0.1-0.1-0.2-0.1c-0.4,0-0.7,0.3-0.7,0.7c0,0.6,0,1.2,0,1.8c0,0.3-0.1,0.6-0.1,1c-0.4,0-0.7,0-1-0.1
c-0.4-0.2-0.8-0.5-1.1-0.7c-0.4-0.3-0.7-0.3-1.1-0.1c-0.4,0.2-0.6,0.8-0.5,1.2c0.1,0.5,0.2,1,0.4,1.6c-0.5,0-0.9,0-1.4,0
c-1.7,0.1-3.5,0.2-5.2,0.3c-0.9,0.1-1.9,0.1-2.8,0.3c-1.5,0.3-3,0.7-4.5,1.2c-1.1,0.3-2.1,0.6-3.2,1c-1.5,0.5-2.9,1-4.4,1.5
c-0.9,0.3-1.9,0.7-2.8,1.1c-0.8,0.3-1.5,0.6-2.3,0.9c-0.9,0.3-1.2,0.7-1.2,1.7c0,1,0.2,2,0.3,3c0.1,0.6,0.2,1.3,0.2,1.9
c0,0.4,0.2,0.8-0.2,1.1c-0.3,0.2-0.5,0.5-0.1,0.8c0,0,0,0.1,0,0.2c0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.1,0.3,0.2,0.3,0.4
c0,0.4,0.3,0.4,0.6,0.4c0.8,0.1,1.7,0.1,2.5,0.2c0.4,0,0.7,0.1,1.1,0.2c-0.1,0.3-0.2,0.5-0.2,0.7c0,0.3-0.3,0.3-0.5,0.3
c-0.5,0-1-0.1-1.4-0.1c-1.1,0-2.2,0-3.3,0c-0.3,0-0.4,0.1-0.5,0.4c0,0.1,0,0.2,0,0.4c0,1.1-0.1,2.1,0,3.2c0,0.2,0.2,0.4,0.3,0.5
c0.2,0.1,0.4,0.1,0.6,0.1c1.3,0.2,2.5,0.4,3.7,0.6c0.2,0.3,0.4,0.6,0.6,0.9c0,0.1,0.1,0.1,0.1,0.2c0,0.3-0.1,0.7-0.2,1
c-0.2,0.6-0.5,1.3-0.8,1.9c-0.2,0.5,0.1,1,0.6,1c0.3,0,0.4,0.2,0.4,0.5c0.1,0.6,0.1,1.1,0.3,1.7c0.1,0.3,0.2,0.5,0.3,0.8
c0.4,1.1,0.6,2.2,1.5,3c0.7,0.7,1.2,1.6,2.1,2.1c1.1,0.7,2.3,1.3,3.6,1.5c1.3,0.2,2.7,0.2,4,0.4c0.4,0,0.9,0.1,1.3,0.1
c0.8-0.2,1.7-0.4,2.5-0.7c0.5-0.2,0.9-0.5,1.3-0.8c0.7-0.5,1.5-0.9,2-1.7c0.7-1.1,1.7-2.1,2.1-3.4c0-0.1,0.2-0.2,0.3-0.2
c0.6,0,1.1,0.1,1.7,0.1c0.8,0,1.6,0,2.5,0c0.8,0,1.5-0.1,2.3,0c0.9,0.1,1.8,0.3,2.7,0.6c0.2,0,0.4,0.2,0.4,0.4
c0,0.8,0.3,1.4,0.5,2.1c0.4,1.2,0.7,2.4,1.5,3.4c0.5,0.5,0.7,1.3,1.3,1.7c1.1,0.8,2.2,1.7,3.7,2c1.1,0.2,2.1,0.5,3.2,0.4
c0.2,0,0.5,0,0.8,0c1,0.2,2,0.1,3-0.1c0.4-0.1,0.9-0.1,1.3-0.3c0.5-0.1,1.2-0.1,1.6-0.5c0.5-0.5,1-1,1.6-1.5
c0.5-0.4,0.8-0.8,1.1-1.3c0.1-0.2,0.3-0.4,0.4-0.7c0.3-0.6,0.7-1.2,1-1.8c0.3-0.6,0.5-1.3,0.7-2c0.3-0.8,0.5-1.6,0.7-2.4
c0.4,0.1,0.8,0.2,1.3,0.3c0.6,0.1,1.2,0.2,1.8,0.3c1,0,1.9,0,2.9,0c0.1,0,0.2,0,0.3,0c1.3-0.4,2.2-1.3,3-2.3c0.4-0.6,0.8-1.3,1.1-2
c0.3-0.8,0.6-1.2,1.5-1.1c0.9,0,1.7-0.1,2.6-0.1c1.2,0,2.4,0.1,3.5,0.2c0.7,0,1.4-0.1,2.1-0.1c1.4,0.2,2.8,0.5,4.2,0.7
c0.3,0,0.3,0.2,0.3,0.4c0,0.3,0.1,0.7,0.2,1c0.1,0.3,0.2,0.6,0.3,1c0.5,1.6,1.1,3,2.5,3.9c0.3,0.2,0.5,0.5,0.8,0.5
c1.1,0.2,2.3,0.3,3.4,0.3c1,0,2-0.1,2.9-0.2c0.7-0.1,1.3-0.3,1.7-0.9c1.2-1.5,2-3.2,2.4-5.1c0.1-0.3,0.2-0.4,0.5-0.4
c0.4,0,0.9,0.1,1.3,0.1c0.3,0,0.6,0,0.8-0.1C100,65.1,99.9,64.8,99.9,64.5z M38.7,34.7c1.2-0.5,2.4-1,3.7-1.6c0,0.3,0.1,0.5,0.1,0.8
C40.8,34.9,40.7,34.7,38.7,34.7z M42.5,32.7c-0.8,0.3-1.6,0.6-2.4,0.9c-0.4,0.1-0.8,0.3-1.3,0.4c-0.1,0-0.2,0-0.4,0
c0.7-0.7,1.2-1.3,1.8-1.8c0.2-0.2,0.4-0.3,0.7-0.3c0.6,0.1,1.2,0.1,1.8,0.2C42.9,32.4,42.8,32.6,42.5,32.7z M52.6,34.2
c-0.2,0-0.5,0-0.7,0c-0.1-0.3-0.1-0.6-0.2-0.9c0.3,0.3,0.6,0.5,0.9,0.7C52.6,34.2,52.6,34.2,52.6,34.2z M53.8,33.5
c-0.1,0.3-0.1,0.5-0.1,0.7h-0.7c0,0,0,0,0,0c0,0,0,0,0,0c0.1-0.1,0.1-0.1,0.2-0.2l-0.9-0.4c0,0,0,0,0,0c0,0,0,0-0.1,0
c0,0,0.1-0.1,0.1-0.1C52.8,33.4,53.3,33.4,53.8,33.5C53.8,33.5,53.8,33.5,53.8,33.5L53.8,33.5z"/>
</svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 659 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 678 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 716 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 567 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 498 B