Merge branch 'new-ui' into 'master'

New ui

See merge request root/sprint!1
This commit is contained in:
Administrator 2022-04-18 06:52:24 +00:00
commit 652745a484
474 changed files with 48732 additions and 1609 deletions

1
.gitignore vendored
View File

@ -34,7 +34,6 @@ data
# Distribution / packaging # Distribution / packaging
.Python build/ .Python build/
develop-eggs/ develop-eggs/
dist/
downloads/ downloads/
eggs/ eggs/
.eggs/ .eggs/

View File

@ -5,6 +5,7 @@ from django.db import models
from django.db.models import Q from django.db.models import Q
from django.utils import timezone from django.utils import timezone
from Main.models.group import Group
from Main.models.friendship import Friendship from Main.models.friendship import Friendship
from Main.models.set import Set from Main.models.set import Set
from Main.models.task import Task from Main.models.task import Task
@ -32,6 +33,10 @@ class UserInfo(models.Model):
def __str__(self): def __str__(self):
return self.surname + ' ' + self.name return self.surname + ' ' + self.name
@property
def groups(self):
return Group.objects.filter(Q(creator=self.user) | Q(editors__in=self.user.username))
@property @property
def tasks_solved(self): def tasks_solved(self):
fltr = Task.objects.filter(solution__result=CONSTS["ok_status"], solution__user=self.user).distinct() fltr = Task.objects.filter(solution__result=CONSTS["ok_status"], solution__user=self.user).distinct()
@ -57,7 +62,7 @@ class UserInfo(models.Model):
@cached_property @cached_property
def available_tasks(self): def available_tasks(self):
return Task.objects.filter(Q(public=True) | Q(creator=self.user) | Q(editors__contains=[self.user.username])).order_by('name') return Task.objects.filter(Q(public=True) | Q(creator=self.user) | Q(editors__contains=[self.user.username]))
@property @property
def available_sets(self): def available_sets(self):
@ -88,4 +93,4 @@ class UserInfo(models.Model):
def profile_pic_url(self): def profile_pic_url(self):
if self.has_profile_pic: if self.has_profile_pic:
return "/image?id=" + str(self.profile_picture_fs_id) return "/image?id=" + str(self.profile_picture_fs_id)
return "https://i2.wp.com/electrolabservice.com/wp-content/uploads/2021/01/blank-profile-picture-mystery-man-avatar-973460.jpg" return "/static/img/user.png"

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

1
Main/static/assets/css/volt.min.css vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,59 @@
/*
=========================================================
* AppSeed - Simple SCSS compiler via Gulp
=========================================================
*/
var autoprefixer = require('gulp-autoprefixer');
var browserSync = require('browser-sync').create();
var cleanCss = require('gulp-clean-css');
var gulp = require('gulp');
const npmDist = require('gulp-npm-dist');
var sass = require('gulp-sass')(require('node-sass'));
var wait = require('gulp-wait');
var sourcemaps = require('gulp-sourcemaps');
var rename = require("gulp-rename");
// Define COMMON paths
const paths = {
src: {
base: './',
css: './css',
scss: './scss',
node_modules: './node_modules/',
vendor: './vendor'
}
};
// Compile SCSS
gulp.task('scss', function() {
return gulp.src([paths.src.scss + '/custom/**/*.scss', paths.src.scss + '/volt/**/*.scss', paths.src.scss + '/volt.scss'])
.pipe(wait(500))
.pipe(sourcemaps.init())
.pipe(sass().on('error', sass.logError))
.pipe(autoprefixer({
overrideBrowserslist: ['> 1%']
}))
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest(paths.src.css))
.pipe(browserSync.stream());
});
// Minify CSS
gulp.task('minify:css', function() {
return gulp.src([
paths.src.css + '/volt.css'
])
.pipe(cleanCss())
.pipe(rename(function(path) {
// Updates the object in-place
path.extname = ".min.css";
}))
.pipe(gulp.dest(paths.src.css))
});
// Default Task: Compile SCSS and minify the result
gulp.task('default', gulp.series('scss', 'minify:css'));

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512">
<path d="M384 319.1C384 425.9 297.9 512 192 512s-192-86.13-192-192c0-58.67 27.82-106.8 54.57-134.1C69.54 169.3 96 179.8 96 201.5v85.5c0 35.17 27.97 64.5 63.16 64.94C194.9 352.5 224 323.6 224 288c0-88-175.1-96.12-52.15-277.2c13.5-19.72 44.15-10.77 44.15 13.03C215.1 127 384 149.7 384 319.1z"/>
</svg>

After

Width:  |  Height:  |  Size: 364 B

View File

@ -0,0 +1,3 @@
<svg style="fill: white;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512">
<path d="M384 319.1C384 425.9 297.9 512 192 512s-192-86.13-192-192c0-58.67 27.82-106.8 54.57-134.1C69.54 169.3 96 179.8 96 201.5v85.5c0 35.17 27.97 64.5 63.16 64.94C194.9 352.5 224 323.6 224 288c0-88-175.1-96.12-52.15-277.2c13.5-19.72 44.15-10.77 44.15 13.03C215.1 127 384 149.7 384 319.1z"/>
</svg>

After

Width:  |  Height:  |  Size: 385 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#ffffff</TileColor>
</tile>
</msapplication>
</browserconfig>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 KiB

View File

@ -0,0 +1,20 @@
{
"name": "Bootstrap",
"short_name": "Bootstrap",
"icons": [
{
"src": "/docs/4.3/assets/img/favicons/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/docs/4.3/assets/img/favicons/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"start_url": "/?utm_source=a2hs",
"theme_color": "#563d7c",
"background_color": "#563d7c",
"display": "standalone"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -0,0 +1,39 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="1024.000000pt" height="1024.000000pt" viewBox="0 0 1024.000000 1024.000000"
preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.11, written by Peter Selinger 2001-2013
</metadata>
<g transform="translate(0.000000,1024.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M3760 10230 c-23 -7 -126 -37 -358 -105 -45 -14 -119 -36 -165 -49
-91 -27 -1065 -314 -1194 -352 -46 -13 -122 -36 -170 -50 -49 -15 -108 -32
-133 -39 -191 -54 -813 -239 -847 -251 -23 -9 -54 -29 -68 -45 l-25 -31 0
-884 c0 -839 1 -885 18 -880 9 3 226 66 482 141 256 75 503 148 550 162 47 14
144 42 215 63 72 21 362 107 645 190 283 84 531 156 550 162 19 5 62 18 95 28
33 10 110 33 170 50 61 18 145 43 188 56 87 27 171 31 220 11 18 -8 417 -265
887 -573 693 -452 866 -561 912 -573 l57 -15 388 97 c213 53 534 132 713 176
179 44 411 100 515 126 105 26 318 78 475 116 803 197 1550 379 1555 379 10 0
5 1761 -5 1779 -5 10 -16 21 -25 25 -18 6 -116 -17 -1995 -478 -168 -41 -408
-100 -535 -131 -126 -31 -403 -99 -615 -152 -399 -98 -491 -114 -553 -94 -20
7 -152 88 -294 181 -142 93 -330 216 -418 273 -270 176 -702 458 -860 562 -82
54 -168 106 -190 116 -42 19 -138 24 -185 9z"/>
<path d="M3922 6579 c-12 -5 -27 -20 -32 -35 -7 -17 -9 -319 -8 -865 3 -820 3
-838 23 -864 18 -23 1681 -1122 1765 -1166 81 -42 71 -44 885 150 418 100 796
193 840 206 161 49 339 159 456 282 203 213 309 475 309 764 0 139 -20 229
-75 344 -91 188 -241 317 -450 387 -61 20 -89 23 -210 22 -134 0 -148 -2 -350
-52 -115 -29 -304 -75 -420 -103 -115 -27 -347 -84 -515 -125 -319 -77 -383
-86 -447 -59 -21 9 -214 131 -430 273 -216 141 -593 388 -839 548 -245 161
-453 294 -462 296 -10 3 -28 1 -40 -3z"/>
<path d="M3923 2950 c-12 -5 -27 -18 -33 -29 -7 -14 -10 -271 -8 -864 3 -732
5 -846 18 -866 14 -21 1691 -1130 1772 -1172 70 -36 151 -27 473 51 160 39
495 120 745 180 464 112 602 149 617 164 4 4 23 14 41 22 60 25 197 120 267
185 121 113 219 263 282 429 63 165 81 409 43 567 -79 330 -375 563 -713 563
-126 0 -230 -23 -1463 -325 -156 -39 -221 -43 -276 -17 -20 9 -180 111 -355
225 -175 115 -551 361 -835 547 -285 186 -526 341 -535 344 -10 2 -28 1 -40
-4z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,19 @@
{
"name": "Themesberg",
"short_name": "Themesberg",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}

View File

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#FFDA44;" d="M503.181,322.783C508.92,301.489,512,279.107,512,256s-3.08-45.489-8.819-66.783L233.739,0.974
c-50.021,4.31-95.924,23-133.565,51.921L8.819,189.217C3.08,210.511,0,232.893,0,256c0,22.972,3.043,45.231,8.718,66.413
l91.455,136.692c37.641,28.921,83.544,47.612,133.565,51.921L503.181,322.783z"/>
<g>
<path style="fill:#0052B4;" d="M8.819,322.783c14.812,54.959,47.457,102.593,91.355,136.322V322.783H8.819z"/>
<path style="fill:#0052B4;" d="M233.739,511.026C241.077,511.658,248.498,512,256,512c118.279,0,217.805-80.221,247.181-189.217
H233.739V511.026z"/>
<path style="fill:#0052B4;" d="M503.181,189.217C473.805,80.221,374.279,0,256,0c-7.502,0-14.923,0.342-22.261,0.974v188.243
H503.181z"/>
<path style="fill:#0052B4;" d="M100.174,52.895c-43.898,33.73-76.543,81.363-91.355,136.322h91.355V52.895z"/>
</g>
<path style="fill:#D80027;" d="M509.833,222.609H200.349h-0.001V6.085c-23.658,5.246-46.087,13.749-66.783,25.042v191.481l0,0H2.167
C0.742,233.539,0,244.683,0,256s0.742,22.461,2.167,33.391h131.397h0.001v191.481c20.696,11.292,43.125,19.797,66.783,25.042
V289.394v-0.002h309.485C511.256,278.461,512,267.317,512,256S511.256,233.539,509.833,222.609z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#D80027;" cx="256" cy="256" r="256"/>
<path d="M400.696,190.009H307.97c5.724-5.994,9.247-14.109,9.247-23.052c0-18.441-14.95-33.391-33.391-33.391
c-11.618,0-21.845,5.936-27.826,14.937c-5.981-9.001-16.209-14.937-27.826-14.937c-18.441,0-33.391,14.95-33.391,33.391
c0,8.943,3.523,17.059,9.247,23.052h-92.725c0,24.589,21.417,44.521,46.004,44.521h-1.484c0,24.59,19.933,44.523,44.523,44.523
c0,7.964,2.099,15.43,5.763,21.894l-36.93,36.931l28.334,28.332l40.192-40.191c1.574,0.577,3.203,1.04,4.885,1.355l-24.287,54.835
L256,422.957l37.695-40.75l-24.287-54.835c1.683-0.315,3.311-0.777,4.885-1.355l40.192,40.191l28.334-28.333l-36.931-36.931
c3.665-6.463,5.764-13.93,5.764-21.894c24.589,0,44.522-19.932,44.522-44.523h-1.483
C379.278,234.529,400.696,214.598,400.696,190.009z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#F0F0F0;" d="M256,0c141.384,0,256,114.616,256,256S397.384,512,256,512c0-11.13-33.391-256-33.391-256L256,0z"/>
<path style="fill:#496E2D;" d="M256,512C114.616,512,0,397.384,0,256S114.616,0,256,0"/>
<g>
<polygon style="fill:#D80027;" points="311.003,206.896 289.999,235.841 255.982,224.809 277.02,253.729 256.018,282.674
290.022,271.603 311.06,300.522 311.038,264.761 345.043,253.689 311.027,242.659 "/>
<path style="fill:#D80027;" d="M277.237,328.348c-39.956,0-72.348-32.392-72.348-72.348s32.392-72.348,72.348-72.348
c12.458,0,24.181,3.15,34.415,8.696c-16.056-15.701-38.012-25.392-62.241-25.392c-49.178,0-89.043,39.866-89.043,89.043
s39.866,89.043,89.043,89.043c24.23,0,46.186-9.691,62.241-25.392C301.418,325.198,289.695,328.348,277.237,328.348z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<g>
<path style="fill:#0052B4;" d="M380.196,32.112C343.412,11.664,301.07,0,256,0C114.626,0,0.018,114.598,0,255.97l178.087-89.013
L380.196,32.112z"/>
<path style="fill:#0052B4;" d="M0,256.03C0.018,397.402,114.626,512,256,512c45.07,0,87.412-11.662,124.196-32.112L178.087,345.043
L0,256.03z"/>
</g>
<path style="fill:#D80027;" d="M401.53,45.382c-6.876-4.759-14.001-9.185-21.343-13.266L0,255.97c0,0.01,0,0.02,0,0.03
s0,0.021,0,0.03l380.188,223.853c7.342-4.082,14.466-8.507,21.343-13.266L43.822,256L401.53,45.382z"/>
<path style="fill:#A2001D;" d="M445.217,246.453h-30.494c7.929-9.52,7.44-23.683-1.493-32.614c9.462-9.461,9.462-24.802,0-34.265
l-0.57,0.572c9.461-9.461,10.032-25.374,0.57-34.835L276.174,282.367c9.462,9.463,24.534,9.35,33.995-0.112l2.638-2.411
l65.628-5.966v28.226h22.261v-30.25l33.391-3.035L445.217,246.453z"/>
<polygon style="fill:#FFDA44;" points="278.269,311.652 256,300.522 278.269,289.391 422.964,289.391 422.964,311.652 "/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#0052B4;" d="M512,256c0,141.384-114.616,256-256,256S0,397.384,0,256C0,256.061,256,0.028,256,0
C397.384,0,512,114.616,512,256z"/>
<g>
<path style="fill:#F0F0F0;" d="M256,0c-0.016,0-0.028,0-0.043,0H256L256,0z"/>
<path style="fill:#F0F0F0;" d="M255.315,256H256c0-0.23,0-0.454,0-0.685C255.772,255.544,255.544,255.772,255.315,256z"/>
<path style="fill:#F0F0F0;" d="M256,133.565C256,88.52,256,59.005,256,0h-0.043C114.591,0.024,0,114.629,0,256h133.565v-75.211
L208.776,256h46.54c0.228-0.228,0.456-0.456,0.685-0.685c0-17.247,0-32.636,0-46.537l-75.213-75.213H256z"/>
</g>
<g>
<path style="fill:#D80027;" d="M129.515,33.391C89.476,56.19,56.189,89.476,33.391,129.515V256h66.783V100.176v-0.002H256
c0-21.063,0-41.129,0-66.783H129.515z"/>
<path style="fill:#D80027;" d="M256,224.519l-90.955-90.953h-31.48v0.002L255.998,256H256C256,256,256,234.293,256,224.519z"/>
</g>
<g>
<path style="fill:#496E2D;" d="M445.217,256L445.217,256L445.217,256z"/>
<path style="fill:#496E2D;" d="M289.391,256L289.391,256L289.391,256z"/>
</g>
<path style="fill:#F3F3F3;" d="M432.939,293.474c7.361-10.128,12.278-22.496,12.278-37.474V144.696
c-9.302,6.988-20.862,11.13-33.391,11.13c-18.206,0-34.369-8.743-44.522-22.259c-10.154,13.516-26.317,22.259-44.522,22.259
c-12.53,0-24.09-4.143-33.391-11.128V256c0,14.978,4.917,27.346,12.278,37.474H432.939z"/>
<g>
<path style="fill:#FF9811;" d="M409.785,235.351c3.544-8.646,6.3-21.283,6.3-27.572c0-10.105-13.174-18.296-13.174-18.296
s-13.174,8.191-13.174,18.296c0,6.29,2.757,18.927,6.299,27.572l-7.605,17.171c4.47,1.818,9.356,2.828,14.481,2.828
s10.01-1.011,14.481-2.828L409.785,235.351z"/>
<path style="fill:#FF9811;" d="M358.294,179.752c-9.256,1.254-21.579,5.189-27.025,8.333c-8.751,5.053-9.259,20.556-9.259,20.556
s13.682,7.313,22.432,2.261c5.448-3.145,15.012-11.849,20.725-19.241l18.676-2c-0.661-4.778-2.233-9.515-4.792-13.952
c-2.564-4.437-5.879-8.165-9.689-11.128L358.294,179.752z"/>
<path style="fill:#FF9811;" d="M335.892,252.146c5.713,7.388,15.28,16.091,20.728,19.237c8.751,5.052,22.432-2.259,22.432-2.259
s-0.51-15.505-9.259-20.558c-5.449-3.145-17.77-7.076-27.028-8.328l-11.067-15.173c-3.809,2.962-7.125,6.692-9.688,11.125
c-2.561,4.439-4.129,9.174-4.793,13.955L335.892,252.146z"/>
</g>
<path style="fill:#338AF3;" d="M298.916,289.394c20.788,33.355,68.389,44.52,68.389,44.52s47.6-11.165,68.389-44.52H298.916z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<g>
<path style="fill:#338AF3;" d="M256,0C154.506,0,66.81,59.065,25.402,144.696h461.195C445.19,59.065,357.493,0,256,0z"/>
<path style="fill:#338AF3;" d="M256,512c101.493,0,189.19-59.065,230.598-144.696H25.402C66.81,452.935,154.506,512,256,512z"/>
</g>
<polygon style="fill:#FFDA44;" points="332.515,256 301.25,270.707 317.899,300.986 283.949,294.491 279.647,328.787 256,303.563
232.352,328.787 228.051,294.491 194.101,300.985 210.749,270.706 179.485,256 210.75,241.293 194.101,211.015 228.05,217.509
232.353,183.213 256,208.437 279.648,183.213 283.949,217.509 317.9,211.015 301.251,241.294 "/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#0052B4;" d="M512,256c0-31.314-5.632-61.311-15.923-89.043L256,155.826l-240.077,11.13
C5.633,194.689,0,224.686,0,256s5.633,61.311,15.923,89.043L256,356.174l240.077-11.13C506.368,317.311,512,287.314,512,256z"/>
<path style="fill:#FF9811;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
<path style="fill:#D80027;" d="M15.923,166.957h480.155C459.906,69.472,366.071,0,256,0S52.094,69.472,15.923,166.957z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 970 B

View File

@ -0,0 +1,68 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#0052B4;" d="M512,256c0,141.384-114.616,256-256,256S0,397.384,0,256C0,256.06,256,0.029,256,0
C397.384,0,512,114.616,512,256z"/>
<g>
<path style="fill:#F0F0F0;" d="M256,0c-0.014,0-0.029,0.001-0.043,0.001L256,0L256,0z"/>
<path style="fill:#F0F0F0;" d="M255.315,256H256c0-0.232,0-0.454,0-0.685C255.772,255.544,255.544,255.772,255.315,256z"/>
<path style="fill:#F0F0F0;" d="M256,133.566c0-45.045,0-74.562,0-133.565h-0.043C114.592,0.024,0,114.629,0,256h133.565v-75.212
L208.777,256h46.539c0.229-0.228,0.457-0.456,0.685-0.685c0-17.247,0-32.636,0-46.536l-75.213-75.213H256z"/>
</g>
<g>
<path style="fill:#D80027;" d="M129.515,33.391C89.476,56.19,56.19,89.476,33.391,129.515V256h66.783V100.175v-0.001H256
c0-21.063,0-41.129,0-66.783H129.515z"/>
<path style="fill:#D80027;" d="M256,224.519l-90.953-90.952h-31.481c0-0.001,0,0,0,0L255.999,256H256
C256,256,256,234.295,256,224.519z"/>
</g>
<g>
<polygon style="fill:#F0F0F0;" points="154.395,300.522 168.445,329.9 200.172,322.567 185.964,351.869 211.478,372.102
179.711,379.262 179.8,411.826 154.395,391.453 128.991,411.826 129.08,379.262 97.312,372.102 122.827,351.869 108.617,322.567
140.346,329.9 "/>
<polygon style="fill:#F0F0F0;" points="383.284,356.174 390.309,370.863 406.173,367.196 399.068,381.847 411.826,391.964
395.942,395.544 395.986,411.826 383.284,401.639 370.582,411.826 370.626,395.544 354.743,391.964 367.5,381.847 360.396,367.196
376.259,370.863 "/>
<polygon style="fill:#F0F0F0;" points="317.933,200.348 324.957,215.038 340.821,211.37 333.717,226.021 346.474,236.138
330.591,239.718 330.634,256 317.933,245.813 305.231,256 305.274,239.718 289.391,236.138 302.148,226.021 295.044,211.37
310.908,215.038 "/>
<polygon style="fill:#F0F0F0;" points="383.284,111.304 390.309,125.994 406.173,122.327 399.069,136.978 411.825,147.094
395.942,150.675 395.986,166.957 383.284,156.77 370.582,166.957 370.626,150.675 354.743,147.094 367.499,136.978
360.396,122.327 376.259,125.994 "/>
<polygon style="fill:#F0F0F0;" points="440.368,178.087 447.392,192.777 463.256,189.109 456.152,203.76 468.909,213.877
453.025,217.458 453.069,233.739 440.368,223.553 427.666,233.739 427.709,217.458 411.826,213.877 424.583,203.76
417.479,189.109 433.342,192.777 "/>
<polygon style="fill:#F0F0F0;" points="399.55,256 405.075,273.006 422.957,273.006 408.49,283.517 414.017,300.522
399.55,290.012 385.084,300.522 390.609,283.517 376.143,273.006 394.024,273.006 "/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,41 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#F0F0F0;" d="M496.077,345.043C506.368,317.311,512,287.314,512,256s-5.632-61.309-15.923-89.043L256,144.696
L15.923,166.957C5.633,194.691,0,224.686,0,256s5.633,61.311,15.923,89.043L256,367.304L496.077,345.043z"/>
<g>
<path style="fill:#D80027;" d="M256,512c110.07,0,203.906-69.472,240.076-166.957H15.922C52.094,442.528,145.928,512,256,512z"/>
<path style="fill:#D80027;" d="M256,0C145.928,0,52.094,69.472,15.922,166.957h480.155C459.906,69.472,366.07,0,256,0z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 982 B

View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#D80027;" d="M512,256c0-31.314-5.632-61.311-15.923-89.043L256,155.826l-240.077,11.13
C5.633,194.689,0,224.686,0,256s5.633,61.311,15.923,89.043L256,356.174l240.077-11.13C506.368,317.311,512,287.314,512,256z"/>
<path style="fill:#6DA544;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
<path style="fill:#338AF3;" d="M15.923,166.957h480.155C459.906,69.472,366.071,0,256,0S52.094,69.472,15.923,166.957z"/>
<g>
<path style="fill:#F0F0F0;" d="M261.565,328.348c-39.956,0-72.348-32.392-72.348-72.348s32.392-72.348,72.348-72.348
c12.458,0,24.181,3.15,34.415,8.696c-16.056-15.701-38.012-25.392-62.241-25.392c-49.178,0-89.043,39.866-89.043,89.043
s39.866,89.043,89.043,89.043c24.23,0,46.186-9.691,62.241-25.392C285.746,325.198,274.023,328.348,261.565,328.348z"/>
<polygon style="fill:#F0F0F0;" points="317.217,205.913 326.8,232.864 352.634,220.582 340.353,246.416 367.304,256
340.353,265.584 352.634,291.418 326.8,279.136 317.217,306.087 307.635,279.136 281.8,291.418 294.082,265.584 267.13,256
294.082,246.416 281.8,220.582 307.635,232.864 "/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#D80027;" d="M256,0c-51.376,0-99.208,15.145-139.3,41.198l65.839,44.129l-82.365,42.666l82.365,42.666
l-82.365,42.666l82.365,42.661l-82.365,42.665l82.365,42.665l-82.365,42.67l82.365,42.666l-65.847,44.143
C156.786,496.853,204.621,512,256,512c141.384,0,256-114.616,256-256S397.384,0,256,0z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 863 B

View File

@ -0,0 +1,50 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#FCFCFC;" cx="256" cy="256" r="256"/>
<g>
<polygon style="fill:#A2001D;" points="105.739,237.449 77.913,186.966 105.739,137.275 133.565,186.966 "/>
<polygon style="fill:#A2001D;" points="50.087,237.449 22.261,186.966 50.087,137.275 77.913,186.966 "/>
<polygon style="fill:#A2001D;" points="105.739,374.725 77.913,324.242 105.739,274.551 133.565,324.242 "/>
<polygon style="fill:#A2001D;" points="50.087,374.725 22.261,324.242 50.087,274.551 77.913,324.242 "/>
<path style="fill:#A2001D;" d="M133.565,49.692l-7.878-14.068c-14.13,8.372-27.383,18.065-39.594,28.909l19.646,35.641
L133.565,49.692z"/>
<path style="fill:#A2001D;" d="M105.739,411.826l-19.854,35.456c12.2,10.858,25.444,20.566,39.568,28.955l8.113-14.719
L105.739,411.826z"/>
</g>
<path style="fill:#6DA544;" d="M155.826,322.783v168.863C186.595,504.743,220.448,512,256,512
c110.071,0,203.906-69.472,240.077-166.957L155.826,322.783z"/>
<path style="fill:#A2001D;" d="M496.077,345.043C506.368,317.31,512,287.314,512,256C512,114.616,397.384,0,256,0
c-35.549,0-69.405,7.253-100.174,20.348v324.696H496.077z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#FFDA44;" d="M345.043,15.923C317.31,5.633,287.314,0,256,0s-61.31,5.633-89.043,15.923L144.696,256
l22.261,240.077C194.69,506.368,224.686,512,256,512s61.31-5.632,89.043-15.923L367.304,256L345.043,15.923z"/>
<path style="fill:#D80027;" d="M512,256c0-110.07-69.472-203.906-166.957-240.076v480.155C442.528,459.906,512,366.072,512,256z"/>
<path d="M0,256c0,110.072,69.472,203.906,166.957,240.078V15.924C69.472,52.094,0,145.93,0,256z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 945 B

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#FFDA44;" d="M512,256c0-31.314-5.632-61.311-15.923-89.043L256,155.826l-240.077,11.13
C5.632,194.689,0,224.686,0,256s5.632,61.311,15.923,89.043L256,356.174l240.077-11.13C506.368,317.311,512,287.314,512,256z"/>
<path style="fill:#6DA544;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
<path style="fill:#D80027;" d="M15.923,166.957h480.155C459.906,69.472,366.071,0,256,0S52.094,69.472,15.923,166.957z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 970 B

View File

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#FFDA44;" d="M256,0C165.23,0,85.5,47.243,40.044,118.479l347.159,357.37C461.946,431.147,512,349.423,512,256
C512,114.616,397.384,0,256,0z"/>
<g>
<path style="fill:#0052B4;" d="M512,256c0-66.422-25.298-126.93-66.783-172.428v344.857C486.702,382.93,512,322.422,512,256z"/>
<path style="fill:#0052B4;" d="M319.789,481.873l26.815-0.017l8.272-25.509l8.302,25.499l13.45-0.008
c8.247-4.415,16.224-9.267,23.9-14.529L44.689,111.471c-5.864,8.556-11.212,17.49-16.021,26.75l3.162,9.712l26.815-0.017
l-21.684,15.775l8.302,25.499l-21.704-15.748l-12.945,9.416C3.713,206.034,0,230.583,0,256c0,141.384,114.616,256,256,256
c29.892,0,58.583-5.132,85.25-14.552L319.789,481.873z M57.099,244.87l8.27-25.508l-21.702-15.75l26.815-0.017l8.271-25.509
l8.302,25.499l26.815-0.017l-21.685,15.775l8.302,25.499l-21.704-15.748L57.099,244.87z M112.324,300.522l8.27-25.508
l-21.702-15.75l26.815-0.017l8.271-25.509l8.302,25.499l26.815-0.017l-21.684,15.775l8.302,25.499l-21.704-15.748L112.324,300.522z
M167.548,356.174l8.27-25.508l-21.702-15.75l26.815-0.017l8.271-25.509l8.302,25.499l26.815-0.017l-21.684,15.775l8.302,25.499
l-21.704-15.75L167.548,356.174z M244.457,396.051l-21.685,15.775l8.27-25.508l-21.702-15.75l26.815-0.017l8.272-25.509
l8.302,25.499l26.815-0.017l-21.684,15.775l8.302,25.499L244.457,396.051z M277.997,467.478l8.27-25.508l-21.702-15.75
l26.815-0.017l8.271-25.509l8.302,25.499l26.815-0.017l-21.684,15.775l8.302,25.499l-21.704-15.75L277.997,467.478z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#F0F0F0;" d="M12.089,178.086C4.247,202.655,0,228.828,0.001,255.999C0,283.168,4.247,309.342,12.09,333.912
l243.911,11.132l243.91-11.132C507.752,309.342,512,283.167,512,256c0-27.17-4.247-53.345-12.089-77.914l-243.911-11.13
L12.089,178.086z"/>
<path d="M512,256c0-15.187-1.33-30.063-3.867-44.523H3.868C1.33,225.937,0,240.811,0,255.999s1.331,30.062,3.868,44.522h504.265
C510.669,286.06,512,271.186,512,256z"/>
<g>
<path style="fill:#338AF3;" d="M256.001,511.999c114.216,0,210.946-74.803,243.91-178.088H12.09
C45.055,437.195,141.786,511.997,256.001,511.999z"/>
<path style="fill:#338AF3;" d="M256.001,0.001c-114.215,0-210.945,74.803-243.912,178.085l487.82,0.001
C466.946,74.804,370.215-0.001,256.001,0.001z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#6DA544;" cx="256" cy="256" r="256"/>
<polygon style="fill:#FFDA44;" points="256,100.174 467.478,256 256,411.826 44.522,256 "/>
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="89.043"/>
<g>
<path style="fill:#0052B4;" d="M211.478,250.435c-15.484,0-30.427,2.355-44.493,6.725c0.623,48.64,40.227,87.884,89.015,87.884
c30.168,0,56.812-15.017,72.919-37.968C301.362,272.579,258.961,250.435,211.478,250.435z"/>
<path style="fill:#0052B4;" d="M343.393,273.06c1.072-5.524,1.651-11.223,1.651-17.06c0-49.178-39.866-89.043-89.043-89.043
c-36.694,0-68.194,22.201-81.826,53.899c12.05-2.497,24.526-3.812,37.305-3.812C263.197,217.043,309.983,238.541,343.393,273.06z"
/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#496E2D;" d="M512,256c0-31.314-5.632-61.311-15.923-89.043L256,155.826l-240.077,11.13
C5.633,194.689,0,224.686,0,256s5.633,61.311,15.923,89.043L256,356.174l240.077-11.13C506.368,317.311,512,287.314,512,256z"/>
<path style="fill:#D80027;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
<path style="fill:#F0F0F0;" d="M15.923,166.957h480.155C459.906,69.472,366.071,0,256,0S52.094,69.472,15.923,166.957z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 970 B

View File

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#D80027;" d="M0,256c0,44.35,11.283,86.064,31.127,122.435L256,400.696l224.873-22.261
C500.717,342.064,512,300.35,512,256s-11.283-86.064-31.127-122.435L256,111.304L31.127,133.565C11.283,169.936,0,211.65,0,256z"/>
<g>
<path style="fill:#0052B4;" d="M31.127,133.565h449.745C437.454,53.989,353.035,0,256,0S74.546,53.989,31.127,133.565z"/>
<path style="fill:#0052B4;" d="M256,512c97.035,0,181.454-53.989,224.873-133.565H31.127C74.546,458.011,158.965,512,256,512z"/>
</g>
<polygon style="fill:#F0F0F0;" points="345.043,306.087 345.043,272.696 322.783,272.696 322.783,228.174 300.522,205.913
278.261,228.174 278.261,183.652 256,161.391 233.739,183.652 233.739,228.174 211.478,205.913 189.217,228.174 189.217,272.696
166.957,272.696 166.957,306.087 144.696,306.087 144.696,339.478 367.304,339.478 367.304,306.087 "/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,41 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#D80027;" d="M367.304,25.402C333.648,9.128,295.89,0,256,0s-77.648,9.128-111.304,25.402L122.435,256
l22.261,230.598C178.352,502.872,216.11,512,256,512s77.648-9.128,111.304-25.402L389.565,256L367.304,25.402z"/>
<polygon style="fill:#FFDA44;" points="255.998,166.957 278.098,234.976 349.626,234.976 291.762,277.02 313.863,345.043
255.998,303.002 198.133,345.043 220.238,277.02 162.374,234.976 233.897,234.976 "/>
<path style="fill:#496E2D;" d="M144.696,25.411C59.066,66.817,0,154.506,0,256s59.066,189.183,144.696,230.589V25.411z"/>
<path style="fill:#FFDA44;" d="M367.304,25.411v461.178C452.934,445.183,512,357.493,512,256S452.934,66.817,367.304,25.411z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<g>
<path style="fill:#D80027;" d="M512,256c0-101.494-59.065-189.19-144.696-230.598v461.195C452.935,445.19,512,357.494,512,256z"/>
<path style="fill:#D80027;" d="M0,256c0,101.494,59.065,189.19,144.696,230.598V25.402C59.065,66.81,0,154.506,0,256z"/>
<polygon style="fill:#D80027;" points="300.522,289.391 345.043,267.13 322.783,256 322.783,233.739 278.261,256 300.522,211.478
278.261,211.478 256,178.087 233.739,211.478 211.478,211.478 233.739,256 189.217,233.739 189.217,256 166.957,267.13
211.478,289.391 200.348,311.652 244.87,311.652 244.87,345.043 267.13,345.043 267.13,311.652 311.652,311.652 "/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#D80027;" d="M512,256c0,141.384-114.616,256-256,256S0,397.384,0,256s256,0,256,0S449.761,256,512,256z"/>
<path style="fill:#0052B4;" d="M0,256C0,114.616,114.616,0,256,0c0,97.355,0,256,0,256S89.043,256,0,256z"/>
<polygon style="fill:#F0F0F0;" points="152.389,89.043 168.966,140.061 222.609,140.061 179.211,171.591 195.787,222.609
152.389,191.078 108.991,222.609 125.567,171.591 82.169,140.061 135.812,140.061 "/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 985 B

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-49 141 512 512" style="enable-background:new -49 141 512 512;" xml:space="preserve">
<style type="text/css">
.st0{fill:#D80027;}
.st1{fill:#FFDA44;}
</style>
<circle class="st0" cx="207" cy="397" r="256"/>
<g>
<polygon class="st1" points="91.1,296.8 113.2,364.8 184.7,364.8 126.9,406.9 149,474.9 91.1,432.9 33.2,474.9 55.4,406.9
-2.5,364.8 69,364.8 "/>
<polygon class="st1" points="254.5,537.5 237.6,516.7 212.6,526.4 227.1,503.9 210.2,483 236.1,489.9 250.7,467.4 252.1,494.2
278.1,501.1 253,510.7 "/>
<polygon class="st1" points="288.1,476.5 296.1,450.9 274.2,435.4 301,435 308.9,409.4 317.6,434.8 344.4,434.5 322.9,450.5
331.5,475.9 309.6,460.4 "/>
<polygon class="st1" points="333.4,328.9 321.6,353 340.8,371.7 314.3,367.9 302.5,391.9 297.9,365.5 271.3,361.7 295.1,349.2
290.5,322.7 309.7,341.4 "/>
<polygon class="st1" points="255.2,255.9 253.2,282.6 278.1,292.7 252,299.1 250.1,325.9 236,303.1 209.9,309.5 227.2,289
213,266.3 237.9,276.4 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#FFDA44;" d="M0,256C0,114.616,114.616,0,256,0s256,114.616,256,256l-256,22.261L0,256z"/>
<path style="fill:#D80027;" d="M34.256,384C78.521,460.516,161.245,512,256,512s177.479-51.484,221.744-128L256,367.304L34.256,384z
"/>
<path style="fill:#0052B4;" d="M477.744,384C499.526,346.346,512,302.631,512,256H0c0,46.631,12.474,90.346,34.256,128H477.744z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 864 B

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#D80027;" d="M496.077,166.957H15.923C5.633,194.69,0,224.686,0,256s5.633,61.31,15.923,89.043h480.155
C506.368,317.31,512,287.314,512,256S506.368,194.69,496.077,166.957z"/>
<g>
<path style="fill:#0052B4;" d="M256,0C178.409,0,108.886,34.524,61.939,89.043H450.06C403.114,34.524,333.591,0,256,0z"/>
<path style="fill:#0052B4;" d="M450.061,422.957H61.939C108.886,477.476,178.409,512,256,512S403.114,477.476,450.061,422.957z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1001 B

View File

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#F0F0F0;" d="M512,256c0-31.314-5.633-61.311-15.923-89.043L256,155.826l-240.077,11.13
C5.633,194.689,0,224.686,0,256s5.633,61.311,15.923,89.043L256,356.174l240.077-11.13C506.367,317.311,512,287.314,512,256z"/>
<path style="fill:#0052B4;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
<path style="fill:#D80027;" d="M15.923,166.957h480.155C459.906,69.472,366.071,0,256,0S52.094,69.472,15.923,166.957z"/>
<g>
<polygon style="fill:#338AF3;" points="322.783,178.088 278.261,178.088 285.682,122.435 315.362,100.174 345.043,122.435
345.043,166.957 "/>
<polygon style="fill:#338AF3;" points="189.217,178.088 233.739,178.088 226.318,122.435 196.637,100.174 166.957,122.435
166.957,166.957 "/>
</g>
<polygon style="fill:#0052B4;" points="285.682,178.088 226.318,178.088 226.318,122.435 256,100.174 285.682,122.435 "/>
<path style="fill:#F0F0F0;" d="M166.957,166.958v122.434c0,29.153,14.082,55.079,35.802,71.332l15.583-3.899l19.664,19.782
c5.815,1.198,11.832,1.829,17.995,1.829c6.13,0,12.117-0.623,17.901-1.809l22.447-18.69l12.892,2.751
c21.711-16.252,35.803-42.151,35.803-71.296V166.958H166.957z"/>
<g>
<rect x="166.957" y="166.957" style="fill:#D80027;" width="35.617" height="35.617"/>
<rect x="238.191" y="166.957" style="fill:#D80027;" width="35.617" height="35.617"/>
<rect x="309.426" y="166.957" style="fill:#D80027;" width="35.617" height="35.617"/>
<rect x="202.574" y="202.574" style="fill:#D80027;" width="35.617" height="35.617"/>
<rect x="273.809" y="202.574" style="fill:#D80027;" width="35.617" height="35.617"/>
<rect x="166.957" y="238.18" style="fill:#D80027;" width="35.617" height="35.617"/>
<rect x="202.574" y="273.798" style="fill:#D80027;" width="35.617" height="35.617"/>
<rect x="238.191" y="238.18" style="fill:#D80027;" width="35.617" height="35.617"/>
<rect x="309.426" y="238.18" style="fill:#D80027;" width="35.617" height="35.617"/>
<rect x="273.809" y="273.798" style="fill:#D80027;" width="35.617" height="35.617"/>
<rect x="238.191" y="309.415" style="fill:#D80027;" width="35.617" height="35.617"/>
<path style="fill:#D80027;" d="M202.574,309.418h-33.319c3.056,13.24,9.064,25.355,17.302,35.617h16.017V309.418z"/>
<path style="fill:#D80027;" d="M309.426,345.036h16.016c8.24-10.262,14.246-22.378,17.302-35.617h-33.318V345.036z"/>
<path style="fill:#D80027;" d="M202.574,345.036v15.541c10.359,7.795,22.465,13.384,35.617,16.066v-31.607H202.574z"/>
<path style="fill:#D80027;" d="M273.809,345.036v31.607c13.153-2.68,25.258-8.271,35.617-16.066v-15.541H273.809z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<polygon style="fill:#FF9811;" points="0.001,44.522 0,44.522 0,467.478 0.001,467.478 0.001,256.001 "/>
<circle style="fill:#F0F0F0;" cx="255.999" cy="256" r="255.999"/>
<g>
<path style="fill:#0052B4;" d="M256.001,0.002c-83.752,0-158.106,40.223-204.811,102.4h409.621
C414.107,40.224,339.752,0.002,256.001,0.002z"/>
<path style="fill:#0052B4;" d="M256.001,511.999c83.752,0,158.106-40.223,204.811-102.4H51.19
C97.894,471.777,172.249,511.999,256.001,511.999z"/>
<path style="fill:#0052B4;" d="M0.001,256.001c0,17.535,1.768,34.657,5.127,51.2h501.747c3.359-16.543,5.126-33.665,5.126-51.2
s-1.768-34.657-5.126-51.2H5.128C1.769,221.344,0.001,238.466,0.001,256.001z"/>
</g>
<path style="fill:#D80027;" d="M74.981,74.982c-99.973,99.973-99.973,262.064,0,362.039
c41.313-41.313,81.045-81.046,181.019-181.019L74.981,74.982z"/>
<polygon style="fill:#F0F0F0;" points="103.611,189.219 120.185,240.234 173.831,240.234 130.434,271.766 147.008,322.782
103.611,291.252 60.212,322.782 76.79,271.766 33.392,240.234 87.034,240.234 "/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#FCFCFC;" cx="256" cy="256" r="256"/>
<path style="fill:#6DA544;" d="M400.696,222.609c-7.791,0-17.438,0-33.391,0c0,61.472-49.834,111.304-111.304,111.304
c-61.473,0-111.304-49.832-111.304-111.304c-10.76,0-22.633,0-33.391,0c0,66.215,44.476,122.042,105.186,139.235
c-6.656,12.644-5.642,28.563,3.866,40.428c12.488-10.009,25.417-20.37,36.385-29.158c10.968,8.789,23.898,19.15,36.385,29.158
c9.602-11.983,10.547-28.104,3.67-40.809C356.843,343.848,400.696,288.353,400.696,222.609z"/>
<path style="fill:#FFDA44;" d="M166.957,211.478c0,0,0,55.652,55.652,55.652l11.13,11.13H256c0,0,11.13-33.391,33.391-33.391
c0,0,0-22.261,22.261-22.261s33.391,0,33.391,0s-11.13-44.522,44.522-77.913l-22.261-11.13c0,0-77.913,55.652-133.565,44.522v22.261
h-22.261l-11.13-11.13L166.957,211.478z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#D80027;" d="M233.739,256c0,0-158.609,181.055-158.759,181.019C121.306,483.346,185.307,512,256,512
c141.384,0,256-114.616,256-256H233.739z"/>
<path style="fill:#0052B4;" d="M74.98,74.98c-99.974,99.974-99.974,262.065,0,362.04C116.293,395.707,156.026,355.974,256,256
L74.98,74.98z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 855 B

View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<g>
<path style="fill:#D80027;" d="M200.349,222.609h309.484C493.47,97.002,386.067,0,256,0c-19.115,0-37.732,2.113-55.652,6.085
v216.524H200.349z"/>
<path style="fill:#D80027;" d="M133.565,222.608V31.127C63.272,69.481,12.95,139.832,2.167,222.609h131.398V222.608z"/>
<path style="fill:#D80027;" d="M133.564,289.391H2.167c10.783,82.777,61.105,153.128,131.398,191.481L133.564,289.391
L133.564,289.391z"/>
<path style="fill:#D80027;" d="M200.348,289.392v216.523C218.268,509.887,236.885,512,256,512
c130.067,0,237.47-97.002,253.833-222.609H200.348V289.392z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#FFDA44;" d="M0,256C0,114.616,114.616,0,256,0s256,114.616,256,256l-256,22.261L0,256z"/>
<path style="fill:#D80027;" d="M34.256,384C78.521,460.516,161.245,512,256,512s177.479-51.484,221.744-128L256,367.304L34.256,384z
"/>
<path style="fill:#0052B4;" d="M477.744,384C499.526,346.346,512,302.631,512,256H0c0,46.631,12.474,90.346,34.256,128H477.744z"/>
<circle style="fill:#FFDA44;" cx="256" cy="256" r="89.043"/>
<path style="fill:#338AF3;" d="M256,311.652c-30.687,0-55.652-24.966-55.652-55.652v-33.391c0-30.687,24.966-55.652,55.652-55.652
s55.652,24.966,55.652,55.652V256C311.652,286.687,286.687,311.652,256,311.652z"/>
<path d="M345.043,122.435h-66.783c0-12.294-9.967-22.261-22.261-22.261s-22.261,9.967-22.261,22.261h-66.783
c0,12.295,10.709,22.261,23.002,22.261h-0.741c0,12.295,9.966,22.261,22.261,22.261c0,12.295,9.966,22.261,22.261,22.261h44.522
c12.295,0,22.261-9.966,22.261-22.261c12.295,0,22.261-9.966,22.261-22.261h-0.741C334.335,144.696,345.043,134.729,345.043,122.435
z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#D80027;" d="M256,0C145.929,0,52.094,69.472,15.923,166.957h480.155C459.906,69.472,366.071,0,256,0z"/>
<path d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
<path style="fill:#FF9811;" d="M345.043,228.174h-66.783c0-12.294-9.967-22.261-22.261-22.261s-22.261,9.967-22.261,22.261h-66.783
c0,12.295,10.709,22.261,23.003,22.261h-0.742c0,12.295,9.966,22.261,22.261,22.261c0,12.295,9.966,22.261,22.261,22.261h44.522
c12.295,0,22.261-9.966,22.261-22.261c12.295,0,22.261-9.966,22.261-22.261h-0.741C334.335,250.435,345.043,240.469,345.043,228.174
z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path d="M0,256c0,31.314,5.633,61.31,15.923,89.043L256,356.174l240.077-11.13C506.368,317.31,512,287.314,512,256
s-5.632-61.31-15.923-89.043L256,155.826l-240.077,11.13C5.633,194.69,0,224.686,0,256z"/>
<path style="fill:#0052B4;" d="M256,0C145.929,0,52.094,69.472,15.923,166.957h480.155C459.906,69.472,366.071,0,256,0z"/>
<path style="fill:#F0F0F0;" d="M496.077,345.043H15.923C52.094,442.527,145.929,512,256,512S459.906,442.527,496.077,345.043z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 943 B

View File

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#FFDA44;" d="M0,256c0,31.316,5.633,61.312,15.924,89.046L256,367.304l240.076-22.259
C506.368,317.312,512,287.315,512,256c0-30.885-5.471-60.492-15.494-87.905L256,144.696l-240.506,23.4
C5.471,195.508,0,225.115,0,256z"/>
<path style="fill:#D80027;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
<path style="fill:#6DA544;" d="M256,0C145.929,0,52.094,69.472,15.923,166.957h480.155C459.906,69.472,366.071,0,256,0z"/>
<circle style="fill:#0052B4;" cx="256" cy="256" r="122.435"/>
<g>
<polygon style="fill:#FFDA44;" points="255.974,161.191 278.076,229.213 349.713,229.213 291.735,271.254 314.011,339.478
255.974,297.237 198.026,339.4 220.212,271.254 162.287,229.213 233.872,229.213 "/>
<polygon style="fill:#FFDA44;" points="344.124,272.93 274.008,250.146 317.341,190.506 299.333,177.42 255.998,237.064
212.667,177.421 194.657,190.505 237.989,250.15 167.876,272.929 174.754,294.102 244.87,271.321 244.87,345.043 267.13,345.043
267.13,271.32 337.243,294.102 "/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#0052B4;" d="M509.833,222.609H200.349h-0.001V6.085c-23.658,5.246-46.087,13.749-66.783,25.042v191.48v0.001
H2.167C0.742,233.539,0,244.683,0,256s0.742,22.461,2.167,33.391h131.397h0.001v191.481c20.696,11.292,43.125,19.797,66.783,25.042
V289.394v-0.002h309.485C511.256,278.461,512,267.317,512,256S511.256,233.539,509.833,222.609z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 903 B

View File

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#D80027;" d="M512,256c0-110.071-69.472-203.906-166.957-240.077v480.155C442.528,459.906,512,366.071,512,256z"/>
<path style="fill:#0052B4;" d="M0,256c0,110.071,69.473,203.906,166.957,240.077V15.923C69.473,52.094,0,145.929,0,256z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 803 B

View File

@ -0,0 +1,50 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<g>
<path style="fill:#D80027;" d="M509.833,222.609h-220.44h-0.001V2.167C278.461,0.744,267.317,0,256,0s-22.461,0.744-33.391,2.167
v220.44v0.001H2.167C0.744,233.539,0,244.683,0,256c0,11.319,0.744,22.461,2.167,33.391h220.44h0.001v220.442
C233.539,511.256,244.683,512,256,512s22.461-0.743,33.391-2.167v-220.44v-0.001h220.442C511.256,278.461,512,267.319,512,256
C512,244.683,511.256,233.539,509.833,222.609z"/>
<polygon style="fill:#D80027;" points="155.826,122.435 155.826,89.043 122.435,89.043 122.435,122.435 89.043,122.435
89.043,155.826 122.435,155.826 122.435,189.217 155.826,189.217 155.826,155.826 189.217,155.826 189.217,122.435 "/>
<polygon style="fill:#D80027;" points="389.565,122.435 389.565,89.043 356.174,89.043 356.174,122.435 322.783,122.435
322.783,155.826 356.174,155.826 356.174,189.217 389.565,189.217 389.565,155.826 422.957,155.826 422.957,122.435 "/>
<polygon style="fill:#D80027;" points="155.826,356.174 155.826,322.783 122.435,322.783 122.435,356.174 89.043,356.174
89.043,389.565 122.435,389.565 122.435,422.957 155.826,422.957 155.826,389.565 189.217,389.565 189.217,356.174 "/>
<polygon style="fill:#D80027;" points="389.565,356.174 389.565,322.783 356.174,322.783 356.174,356.174 322.783,356.174
322.783,389.565 356.174,389.565 356.174,422.957 389.565,422.957 389.565,389.565 422.957,389.565 422.957,356.174 "/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#FFDA44;" d="M15.923,345.043C52.094,442.527,145.929,512,256,512s203.906-69.473,240.077-166.957L256,322.783
L15.923,345.043z"/>
<path d="M256,0C145.929,0,52.094,69.472,15.923,166.957L256,189.217l240.077-22.261C459.906,69.472,366.071,0,256,0z"/>
<path style="fill:#D80027;" d="M15.923,166.957C5.633,194.69,0,224.686,0,256s5.633,61.31,15.923,89.043h480.155
C506.368,317.31,512,287.314,512,256s-5.632-61.31-15.923-89.043H15.923z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 944 B

View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<g>
<path style="fill:#338AF3;" d="M256,189.217h247.181c-6.419-23.814-16.175-46.255-28.755-66.783H256V189.217z"/>
<path style="fill:#338AF3;" d="M96.643,456.348h318.713c23.363-18.608,43.399-41.21,59.069-66.783H37.574
C53.245,415.137,73.281,437.74,96.643,456.348z"/>
<path style="fill:#338AF3;" d="M89.043,61.939c-20.126,17.331-37.525,37.74-51.469,60.496h51.469V61.939z"/>
<path style="fill:#338AF3;" d="M256,256c0-26.076,0-47.899,0-66.783H155.826V256H89.043v-66.783H8.819
C3.08,210.511,0,232.893,0,256s3.08,45.489,8.819,66.783h494.363C508.92,301.489,512,279.107,512,256H256z"/>
<path style="fill:#338AF3;" d="M256,0c-35.549,0-69.404,7.253-100.174,20.348v102.087H256c0-23.312,0-43.139,0-66.783h159.357
C371.626,20.824,316.249,0,256,0z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#A2001D;" d="M512,256c0,141.384-114.616,256-256,256S0,397.384,0,256S256,0,256,0S512,114.616,512,256z"/>
<path style="fill:#0052B4;" d="M0,256C0,114.616,114.616,0,256,0s256,114.616,256,256"/>
<polygon style="fill:#F0F0F0;" points="345.043,322.783 256,311.652 166.957,322.783 166.957,189.217 345.043,189.217 "/>
<circle style="fill:#0052B4;" cx="256" cy="267.13" r="44.522"/>
<circle style="fill:#A2001D;" cx="256" cy="267.13" r="22.261"/>
<polygon style="fill:#6DA544;" points="222.609,211.478 289.391,211.478 256,244.87 "/>
<rect x="244.87" y="233.739" style="fill:#FFDA44;" width="22.261" height="66.783"/>
<polygon style="fill:#6DA544;" points="291.617,293.843 220.381,293.843 166.957,322.783 345.043,322.783 "/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,50 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#D80027;" cx="256" cy="256" r="256"/>
<g>
<path style="fill:#F0F0F0;" d="M282.43,193.668c-5.818,24.199-16.155,19.584-21.228,40.688
c-29.883-7.185-48.287-37.235-41.102-67.12c7.182-29.883,37.235-48.287,67.119-41.102
C277.072,168.341,287.635,172.025,282.43,193.668z"/>
<path style="fill:#F0F0F0;" d="M204.887,211.6c21.217,13.01,13.633,21.417,32.135,32.764
c-16.068,26.201-50.333,34.416-76.535,18.349c-26.201-16.067-34.418-50.334-18.35-76.535
C179.143,208.87,185.908,199.963,204.887,211.6z"/>
<path style="fill:#F0F0F0;" d="M197.978,290.892c18.931-16.158,24.58-6.348,41.089-20.438c19.955,23.377,17.179,58.505-6.197,78.46
c-23.378,19.955-58.506,17.176-78.458-6.199C187.426,314.532,181.045,305.343,197.978,290.892z"/>
<path style="fill:#F0F0F0;" d="M271.254,321.965c-9.52-22.997,1.556-25.341-6.743-45.394c28.399-11.753,60.951,1.741,72.705,30.14
c11.753,28.399-1.743,60.95-30.142,72.704C290.477,339.306,279.768,342.535,271.254,321.965z"/>
<path style="fill:#F0F0F0;" d="M323.45,261.876c-24.813,1.947-23.622-9.313-45.257-7.615c-2.403-30.639,20.491-57.43,51.132-59.835
c30.64-2.399,57.43,20.493,59.832,51.135C345.88,248.954,345.641,260.137,323.45,261.876z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#F0F0F0;" d="M15.923,166.957C5.633,194.691,0,224.686,0,256s5.633,61.311,15.923,89.043L256,367.304
l240.077-22.261C506.367,317.311,512,287.314,512,256s-5.633-61.309-15.923-89.043L256,144.696L15.923,166.957z"/>
<path style="fill:#D80027;" d="M256,0C145.93,0,52.094,69.472,15.924,166.957h480.155C459.906,69.472,366.072,0,256,0z"/>
<path style="fill:#6DA544;" d="M256,512c110.072,0,203.906-69.472,240.078-166.957H15.924C52.094,442.528,145.93,512,256,512z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 969 B

View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<g>
<path style="fill:#0052B4;" d="M8.819,322.783c14.812,54.959,47.457,102.593,91.355,136.322V322.783H8.819z"/>
<path style="fill:#0052B4;" d="M233.739,511.026C241.077,511.658,248.498,512,256,512c118.279,0,217.805-80.221,247.181-189.217
H233.739V511.026z"/>
<path style="fill:#0052B4;" d="M503.181,189.217C473.805,80.221,374.279,0,256,0c-7.502,0-14.923,0.342-22.261,0.974v188.243
H503.181z"/>
<path style="fill:#0052B4;" d="M100.174,52.895c-43.898,33.73-76.543,81.363-91.355,136.322h91.355V52.895z"/>
</g>
<path style="fill:#D80027;" d="M509.833,222.609H200.349h-0.001V6.085c-23.658,5.246-46.087,13.749-66.783,25.042v191.481l0,0H2.167
C0.742,233.539,0,244.683,0,256s0.742,22.461,2.167,33.391h131.397h0.001v191.481c20.696,11.292,43.125,19.797,66.783,25.042
V289.394v-0.002h309.485C511.256,278.461,512,267.317,512,256S511.256,233.539,509.833,222.609z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#FF9811;" d="M256,0C154.506,0,66.81,59.065,25.402,144.696h461.195C445.19,59.065,357.493,0,256,0z"/>
<path style="fill:#6DA544;" d="M256,512c101.493,0,189.19-59.065,230.598-144.696H25.402C66.81,452.935,154.506,512,256,512z"/>
<circle style="fill:#0052B4;" cx="256" cy="256" r="89.043"/>
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="55.652"/>
<polygon style="fill:#0052B4;" points="256,187.326 273.169,226.264 315.473,221.663 290.337,256 315.473,290.337 273.169,285.736
256,324.674 238.831,285.736 196.527,290.336 221.663,256 196.527,221.663 238.831,226.264 "/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#A2001D;" d="M0,256C0,114.616,114.616,0,256,0s256,114.616,256,256"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 641 B

View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#D80027;" d="M339.147,189.217h-33.494c0.277,3.681,0.434,7.395,0.434,11.13c0,24.764-6.19,48.767-16.981,65.853
c-3.329,5.27-8.923,12.712-16.411,17.732v-94.716h-33.391v94.716c-7.487-5.02-13.082-12.461-16.411-17.732
c-10.792-17.086-16.981-41.089-16.981-65.853c0-3.735,0.158-7.45,0.434-11.13h-33.494c-0.215,3.663-0.332,7.373-0.332,11.13
c0,68.656,36.668,122.435,83.478,122.435s83.478-53.779,83.478-122.435C339.478,196.59,339.361,192.88,339.147,189.217z"/>
<path style="fill:#6DA544;" d="M105.739,122.435h33.391v22.261h33.391v-22.261h33.391v22.261h33.391v-22.261h33.391v22.261h33.391
v-22.261h33.391v22.261h33.391v-22.261h33.391v22.261h80.337C445.19,59.065,357.493,0,256,0S66.81,59.065,25.402,144.696h80.337
V122.435z"/>
<path style="fill:#D80027;" d="M406.261,367.304v22.261H372.87v-22.261h-33.391v22.261h-33.391v-22.261h-33.391v22.261h-33.391
v-22.261h-33.391v22.261h-33.391v-22.261H139.13v22.261h-33.391v-22.261H25.402C66.81,452.935,154.506,512,256,512
s189.19-59.065,230.598-144.696H406.261z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#A2001D;" d="M256,0C145.929,0,52.094,69.472,15.923,166.957h480.155C459.906,69.472,366.071,0,256,0z"/>
<path d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
<g>
<path style="fill:#496E2D;" d="M194.783,239.304c-0.14,0-0.277,0.009-0.417,0.011v-0.011h-48.937
c2.481-9.586,11.179-16.696,21.528-16.696v-33.391c-30.687,0-55.652,24.966-55.652,55.652v27.27v0.557h83.061
c0.188,0,0.336,0,0.417,0c3.069,0,5.565,2.497,5.565,5.565v11.13H89.043v33.391h144.696v-44.522
C233.739,256.78,216.263,239.304,194.783,239.304z"/>
<polygon style="fill:#496E2D;" points="278.261,289.391 278.261,189.217 244.87,189.217 244.87,322.783 300.522,322.783
300.522,289.391 "/>
<polygon style="fill:#496E2D;" points="389.565,289.392 389.565,189.217 356.174,189.217 356.174,289.392 345.043,289.392
345.043,256.001 311.652,256.001 311.652,322.784 411.826,322.784 411.826,289.392 "/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#FF9811;" d="M512,256c0-110.07-69.472-203.906-166.957-240.076v480.155C442.528,459.906,512,366.072,512,256z"/>
<path style="fill:#6DA544;" d="M0,256c0,110.072,69.472,203.906,166.957,240.078V15.924C69.472,52.094,0,145.93,0,256z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 801 B

View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<g>
<path style="fill:#0052B4;" d="M352.393,200.348H288.13L256,144.696l-32.129,55.652h-64.264L191.741,256l-32.134,55.652h64.264
L256,367.304l32.13-55.652h64.263L320.259,256L352.393,200.348z M295.475,256l-19.736,34.188h-39.475L216.525,256l19.738-34.188
h39.475L295.475,256z M256,187.623l7.346,12.724h-14.69L256,187.623z M196.786,221.812h14.692l-7.346,12.724L196.786,221.812z
M196.786,290.188l7.347-12.724l7.346,12.724H196.786z M256,324.376l-7.345-12.724h14.691L256,324.376z M315.214,290.188h-14.692
l7.347-12.724L315.214,290.188z M300.522,221.812h14.692l-7.346,12.724L300.522,221.812z"/>
<path style="fill:#0052B4;" d="M415.357,55.652H96.643c-23.363,18.608-43.399,41.21-59.069,66.783h436.852
C458.755,96.863,438.719,74.26,415.357,55.652z"/>
<path style="fill:#0052B4;" d="M96.643,456.348h318.713c23.363-18.608,43.399-41.21,59.069-66.783H37.574
C53.245,415.137,73.281,437.74,96.643,456.348z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#D80027;" d="M512,256c0-110.071-69.472-203.906-166.957-240.077v480.155C442.528,459.906,512,366.071,512,256z"/>
<path style="fill:#6DA544;" d="M0,256c0,110.071,69.472,203.906,166.957,240.077V15.923C69.472,52.094,0,145.929,0,256z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 803 B

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#F0F0F0;" d="M256,512c31.314,0,61.311-5.632,89.043-15.923L356.174,256l-11.13-240.077
C317.311,5.633,287.314,0,256,0s-61.311,5.633-89.043,15.923L155.826,256l11.13,240.077C194.689,506.368,224.686,512,256,512z"/>
<path style="fill:#FF9811;" d="M0,256c0,110.071,69.472,203.906,166.957,240.077V15.923C69.472,52.094,0,145.929,0,256z"/>
<path style="fill:#6DA544;" d="M345.043,15.923v480.155C442.528,459.906,512,366.071,512,256S442.528,52.094,345.043,15.923z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 970 B

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<circle style="fill:#D80027;" cx="256" cy="256" r="111.304"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 616 B

View File

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#338AF3;" cx="256" cy="256" r="256"/>
<path style="fill:#FFDA44;" d="M400.696,258.783H111.304c0,19.979,17.401,36.174,37.378,36.174h-1.204
c0,19.979,16.195,36.174,36.174,36.174c0,19.979,16.195,36.174,36.174,36.174h72.348c19.979,0,36.174-16.195,36.174-36.174
c19.979,0,36.174-16.195,36.174-36.174h-1.204C383.293,294.957,400.696,278.762,400.696,258.783z"/>
<path style="fill:#338AF3;" d="M356.174,211.478c0,55.324-44.85,100.174-100.174,100.174c-55.325,0-100.174-44.85-100.174-100.174"
/>
<polygon style="fill:#FFDA44;" points="332.515,211.478 301.25,226.185 317.899,256.465 283.949,249.97 279.647,284.266
256,259.041 232.352,284.266 228.051,249.97 194.101,256.463 210.749,226.184 179.485,211.478 210.75,196.772 194.101,166.493
228.05,172.987 232.353,138.691 256,163.916 279.648,138.691 283.949,172.987 317.9,166.493 301.251,196.773 "/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#F0F0F0;" d="M496.077,345.043C506.367,317.31,512,287.314,512,256s-5.633-61.31-15.923-89.043L256,144.696
L15.923,166.957C5.633,194.69,0,224.686,0,256s5.633,61.31,15.923,89.043L256,367.304L496.077,345.043z"/>
<path style="fill:#D80027;" d="M256,512c110.07,0,203.906-69.472,240.076-166.957H15.922C52.094,442.528,145.928,512,256,512z"/>
<path style="fill:#6DA544;" d="M256,0C145.928,0,52.094,69.472,15.922,166.957h480.155C459.906,69.472,366.07,0,256,0z"/>
<path d="M74.98,74.98c-99.974,99.974-99.974,262.065,0,362.04c26.095-26.095,51.565-51.565,91.976-91.976V166.957L74.98,74.98z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<g>
<path style="fill:#A2001D;" d="M256,0C137.721,0,38.195,80.221,8.819,189.217h494.363C473.805,80.221,374.279,0,256,0z"/>
<path style="fill:#A2001D;" d="M256,512c118.279,0,217.805-80.221,247.181-189.217H8.819C38.195,431.778,137.721,512,256,512z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 810 B

View File

@ -0,0 +1,41 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#D80027;" d="M512,256c0,141.384-114.616,256-256,256S0,397.384,0,256c11.13,0,256-33.391,256-33.391L512,256z"/>
<path style="fill:#0052B4;" d="M0,256C0,114.616,114.616,0,256,0s256,114.616,256,256"/>
<path style="fill:#FFDA44;" d="M189.217,178.087c0-18.441-14.95-33.391-33.391-33.391c-8.555,0-16.352,3.22-22.261,8.509v-19.64
h11.13v-22.261h-11.13v-11.13h-22.261v11.13h-11.13v22.261h11.13v19.64c-5.909-5.289-13.706-8.509-22.261-8.509
c-18.441,0-33.391,14.95-33.391,33.391c0,9.887,4.301,18.767,11.13,24.882v19.64h111.304v-19.64
C184.917,196.854,189.217,187.974,189.217,178.087z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#6DA544;" d="M496.077,345.043C506.368,317.311,512,287.314,512,256s-5.632-61.311-15.923-89.043L256,144.696
L15.923,166.957C5.632,194.689,0,224.686,0,256s5.632,61.311,15.923,89.043L256,367.304L496.077,345.043z"/>
<path style="fill:#FFDA44;" d="M496.077,166.957C459.906,69.472,366.071,0,256,0S52.094,69.472,15.923,166.957H496.077z"/>
<path style="fill:#D80027;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 973 B

View File

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#D80027;" d="M256,0C145.929,0,52.094,69.472,15.923,166.957h480.155C459.906,69.472,366.071,0,256,0z"/>
<path style="fill:#338AF3;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 801 B

View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<g>
<path style="fill:#D80027;" d="M244.87,256H512c0-23.107-3.08-45.489-8.819-66.783H244.87V256z"/>
<path style="fill:#D80027;" d="M244.87,122.435h229.556c-15.671-25.572-35.706-48.175-59.069-66.783H244.87V122.435z"/>
<path style="fill:#D80027;" d="M256,512c60.249,0,115.626-20.824,159.357-55.652H96.643C140.374,491.176,195.751,512,256,512z"/>
<path style="fill:#D80027;" d="M37.574,389.565h436.852c12.581-20.528,22.337-42.969,28.755-66.783H8.819
C15.236,346.596,24.993,369.037,37.574,389.565z"/>
</g>
<path style="fill:#0052B4;" d="M256,256c0-141.384,0-158.052,0-256C114.616,0,0,114.616,0,256H256z"/>
<g>
<path style="fill:#FFDA44;" d="M170.234,219.13c-34.962,0-63.304-28.343-63.304-63.304s28.343-63.304,63.304-63.304
c10.901,0,21.158,2.757,30.113,7.609c-14.048-13.737-33.26-22.217-54.461-22.217c-43.029,0-77.913,34.883-77.913,77.913
s34.884,77.913,77.913,77.913c21.201,0,40.413-8.48,54.461-22.217C191.392,216.373,181.136,219.13,170.234,219.13z"/>
<polygon style="fill:#FFDA44;" points="188.073,111.304 199.312,134.806 224.693,128.942 213.327,152.381 233.739,168.568
208.325,174.297 208.396,200.348 188.073,184.05 167.749,200.348 167.819,174.297 142.405,168.568 162.817,152.381 151.45,128.942
176.833,134.806 "/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#D80027;" d="M512,256c0-101.494-59.065-189.19-144.696-230.598v461.195C452.935,445.19,512,357.494,512,256z"/>
<g>
<path style="fill:#6DA544;" d="M0,256c0,101.494,59.065,189.19,144.696,230.598V25.402C59.065,66.81,0,154.506,0,256z"/>
<path style="fill:#6DA544;" d="M189.217,256c0,36.883,29.9,66.783,66.783,66.783s66.783-29.9,66.783-66.783v-22.261H189.217V256z"
/>
</g>
<path style="fill:#FF9811;" d="M345.043,211.478h-66.783c0-12.294-9.967-22.261-22.261-22.261s-22.261,9.967-22.261,22.261h-66.783
c0,12.295,10.709,22.261,23.002,22.261h-0.741c0,12.295,9.966,22.261,22.261,22.261c0,12.295,9.966,22.261,22.261,22.261h44.522
c12.295,0,22.261-9.966,22.261-22.261c12.295,0,22.261-9.966,22.261-22.261h-0.742C334.335,233.739,345.043,223.773,345.043,211.478
z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#0052B4;" d="M256,512c31.314,0,61.311-5.632,89.043-15.923L356.174,256l-11.13-240.077
C317.311,5.633,287.314,0,256,0s-61.311,5.633-89.043,15.923L155.826,256l11.13,240.077C194.689,506.368,224.686,512,256,512z"/>
<g>
<path style="fill:#A2001D;" d="M0,256c0,110.071,69.472,203.906,166.957,240.077V15.923C69.472,52.094,0,145.929,0,256z"/>
<path style="fill:#A2001D;" d="M345.043,15.923v480.155C442.528,459.906,512,366.071,512,256S442.528,52.094,345.043,15.923z"/>
</g>
<g>
<rect x="122.435" y="256" style="fill:#FFDA44;" width="22.261" height="89.043"/>
<rect x="33.391" y="256" style="fill:#FFDA44;" width="22.261" height="89.043"/>
<circle style="fill:#FFDA44;" cx="89.043" cy="289.391" r="22.261"/>
<circle style="fill:#FFDA44;" cx="89.043" cy="211.478" r="11.13"/>
<rect x="66.783" y="322.783" style="fill:#FFDA44;" width="44.522" height="22.261"/>
<rect x="66.783" y="233.739" style="fill:#FFDA44;" width="44.522" height="22.261"/>
<polygon style="fill:#FFDA44;" points="89.043,133.565 96.927,157.825 122.435,157.825 101.8,172.819 109.678,197.079
89.043,182.085 68.409,197.079 76.287,172.819 55.652,157.825 81.16,157.825 "/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#FFDA44;" cx="256" cy="256" r="256"/>
<path style="fill:#A2001D;" d="M512,256c0-87.861-44.269-165.375-111.713-211.478H111.713C44.27,90.625,0,168.139,0,256
c0,87.863,44.27,165.375,111.713,211.478h288.574C467.731,421.375,512,343.863,512,256z"/>
<g>
<polygon style="fill:#FFDA44;" points="200.348,189.217 311.652,189.217 311.652,144.696 289.391,155.826 256,122.435
222.609,155.826 200.348,144.696 "/>
<path style="fill:#FFDA44;" d="M356.174,256h-55.631c2.182-3.774,3.45-8.141,3.45-12.813c0-14.187-11.501-25.686-25.686-25.686
c-9.801,0-18.313,5.492-22.644,13.562c-4.331-8.071-12.843-13.562-22.644-13.562c-14.185,0-25.686,11.499-25.686,25.686
c0,4.673,1.27,9.04,3.45,12.813h-54.959c0,17.023,14.827,30.822,31.849,30.822h-1.026c0,13.963,9.287,25.753,22.02,29.54
l-25.017,25.019l23.611,23.611l33.493-33.493c1.312,0.481,2.669,0.865,4.072,1.129l-20.238,45.695
c9.698,3.944,20.297,6.133,31.412,6.133c11.114,0,21.713-2.189,31.412-6.133l-20.238-45.695c1.402-0.263,2.759-0.648,4.07-1.129
l33.493,33.493l23.61-23.611l-25.018-25.018c12.732-3.789,22.02-15.577,22.02-29.54h-1.027
C341.346,286.822,356.174,273.023,356.174,256z"/>
</g>
<polygon style="fill:#6DA544;" points="256,272.696 219.826,289.391 219.826,322.783 256,345.043 292.174,322.783 292.174,289.391
"/>
<rect x="219.826" y="256" style="fill:#0052B4;" width="72.348" height="44.522"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#0052B4;" cx="256" cy="256" r="256"/>
<circle style="fill:#FFDA44;" cx="256" cy="256" r="256"/>
<g>
<path style="fill:#0052B4;" d="M256,0C122.116,0,12.258,102.781,0.975,233.739h510.051C499.742,102.781,389.884,0,256,0z"/>
<path style="fill:#0052B4;" d="M256,512c133.884,0,243.742-102.781,255.026-233.739H0.975C12.258,409.219,122.116,512,256,512z"/>
</g>
<polygon style="fill:#F0F0F0;" points="211.479,345.043 182.793,358.537 198.068,386.318 166.919,380.359 162.972,411.826
141.275,388.683 119.579,411.826 115.632,380.359 84.482,386.317 99.758,358.536 71.072,345.043 99.759,331.55 84.482,303.77
115.631,309.728 119.58,278.261 141.275,301.404 162.973,278.261 166.919,309.728 198.069,303.77 182.794,331.551 "/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#A2001D;" d="M256,0C145.929,0,52.094,69.472,15.923,166.957h480.155C459.906,69.472,366.071,0,256,0z"/>
<path style="fill:#0052B4;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 801 B

View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<g>
<path style="fill:#338AF3;" d="M256,0C154.506,0,66.81,59.065,25.402,144.696h461.195C445.19,59.065,357.493,0,256,0z"/>
<path style="fill:#338AF3;" d="M256,512c101.493,0,189.19-59.065,230.598-144.696H25.402C66.81,452.935,154.506,512,256,512z"/>
</g>
<path style="fill:#FFDA44;" d="M256,178.087c-43.03,0-77.913,34.883-77.913,77.913S212.97,333.913,256,333.913
S333.913,299.03,333.913,256S299.03,178.087,256,178.087z M256,300.522c-24.588,0-44.522-19.932-44.522-44.522
s19.933-44.522,44.522-44.522s44.522,19.932,44.522,44.522S280.588,300.522,256,300.522z"/>
<polygon style="fill:#0052B4;" points="294.558,267.13 256,256 217.442,267.13 204.59,289.391 307.409,289.391 "/>
<polygon style="fill:#338AF3;" points="256,200.348 230.295,244.87 256,256 281.705,244.87 "/>
<polygon style="fill:#6DA544;" points="217.442,267.13 294.558,267.13 281.705,244.87 230.295,244.87 "/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<g>
<path style="fill:#6DA544;" d="M0,256c0,110.072,69.472,203.906,166.957,240.078V15.924C69.472,52.094,0,145.93,0,256z"/>
<path style="fill:#6DA544;" d="M512,256c0-110.07-69.472-203.906-166.957-240.076v480.155C442.528,459.906,512,366.072,512,256z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 812 B

View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<g>
<path style="fill:#D80027;" d="M8.819,322.783c14.812,54.959,47.457,102.593,91.355,136.322V322.783H8.819z"/>
<path style="fill:#D80027;" d="M233.739,511.026C241.077,511.658,248.498,512,256,512c118.279,0,217.805-80.221,247.181-189.217
H233.739V511.026z"/>
<path style="fill:#D80027;" d="M503.181,189.217C473.805,80.221,374.279,0,256,0c-7.502,0-14.923,0.342-22.261,0.974v188.243
H503.181z"/>
<path style="fill:#D80027;" d="M100.174,52.895c-43.898,33.73-76.543,81.363-91.355,136.322h91.355V52.895z"/>
</g>
<path style="fill:#0052B4;" d="M509.833,222.609H200.349h-0.001V6.085c-23.658,5.246-46.087,13.749-66.783,25.042v191.48v0.001
H2.167C0.742,233.539,0,244.683,0,256s0.742,22.461,2.167,33.391h131.397h0.001v191.481c20.696,11.292,43.125,19.797,66.783,25.042
V289.394v-0.002h309.485C511.256,278.461,512,267.317,512,256S511.256,233.539,509.833,222.609z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#F0F0F0;" d="M0,256c0,97.035,53.989,181.454,133.565,224.873V31.127C53.989,74.546,0,158.965,0,256z"/>
</g>
<path style="fill:#496E2D;" d="M256,0c-44.35,0-86.064,11.283-122.435,31.127v449.745C169.936,500.717,211.65,512,256,512
c141.384,0,256-114.616,256-256S397.384,0,256,0z"/>
<g>
<path style="fill:#F0F0F0;" d="M365.453,298.337c-32.387,23.401-77.613,16.117-101.013-16.269
c-23.402-32.388-16.117-77.613,16.27-101.013c10.098-7.296,21.444-11.609,32.987-13.108c-22.207-3.321-45.682,1.683-65.319,15.872
c-39.86,28.802-48.827,84.463-20.026,124.325c28.801,39.859,84.463,48.827,124.325,20.023
c19.639-14.189,31.76-34.902,35.578-57.031C383.209,281.622,375.552,291.04,365.453,298.337z"/>
<polygon style="fill:#F0F0F0;" points="364.066,166.959 382.31,186.62 406.646,175.348 393.583,198.772 411.826,218.435
385.51,213.25 372.448,236.676 369.247,210.046 342.931,204.861 367.268,193.589 "/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#0052B4;" d="M0,256c0,141.384,114.616,256,256,256c0-97.355,0-256,0-256S89.043,256,0,256z"/>
<path style="fill:#D80027;" d="M256,0c141.384,0,256,114.616,256,256c-97.355,0-256,0-256,0S256,89.043,256,0z"/>
<polygon style="fill:#0052B4;" points="152.389,89.043 168.966,140.061 222.609,140.061 179.211,171.591 195.787,222.609
152.389,191.078 108.991,222.609 125.567,171.591 82.169,140.061 135.812,140.061 "/>
<polygon style="fill:#D80027;" points="359.611,289.391 376.188,340.409 429.831,340.409 386.432,371.939 403.009,422.957
359.611,391.426 316.213,422.957 332.789,371.939 289.391,340.409 343.034,340.409 "/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#D80027;" d="M256,0C154.506,0,66.81,59.065,25.402,144.696h461.195C445.19,59.065,357.493,0,256,0z"/>
<path style="fill:#0052B4;" d="M256,512c101.493,0,189.19-59.065,230.598-144.696H25.402C66.81,452.935,154.506,512,256,512z"/>
<path style="fill:#6DA544;" d="M318.963,181.907l-23.611,23.611c10.071,10.071,16.301,23.984,16.301,39.352
c0,30.736-24.917,55.652-55.652,55.652s-55.652-24.917-55.652-55.652c0-15.368,6.23-29.281,16.301-39.352l-23.611-23.611
c-16.115,16.112-26.081,38.373-26.081,62.963c0,49.178,39.866,89.043,89.043,89.043s89.043-39.866,89.043-89.043
C345.043,220.28,335.077,198.019,318.963,181.907z"/>
<polygon style="fill:#FFDA44;" points="256,211.478 264.289,236.988 291.11,236.988 269.411,252.752 277.7,278.261 256,262.496
234.3,278.261 242.589,252.752 220.89,236.988 247.711,236.988 "/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<g>
<path style="fill:#D80027;" d="M512,256c0-110.07-69.472-203.906-166.957-240.076v480.155C442.528,459.906,512,366.072,512,256z"/>
<path style="fill:#D80027;" d="M0,256c0,110.072,69.472,203.906,166.957,240.078V15.924C69.472,52.094,0,145.93,0,256z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 812 B

View File

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#D80027;" d="M256,0v256L74.98,437.02C121.307,483.346,185.307,512,256,512c141.384,0,256-114.616,256-256
S256,0,256,0z"/>
<path style="fill:#0052B4;" d="M256,0C185.307,0,121.307,28.654,74.98,74.98C137.79,137.79,160.087,160.088,256,256h256
C512,114.616,397.384,0,256,0z"/>
<g>
<polygon style="fill:#FFDA44;" points="175.291,256 144.027,241.294 160.676,211.015 126.726,217.51 122.424,183.213
98.776,208.437 75.129,183.213 70.826,217.51 36.877,211.014 53.526,241.294 22.261,256 53.526,270.706 36.877,300.985
70.829,294.491 75.128,328.787 98.776,303.563 122.424,328.787 126.726,294.491 160.674,300.986 144.026,270.707 "/>
<polygon style="fill:#FFDA44;" points="68.273,100.174 78.677,114.717 95.722,109.318 85.104,123.706 95.508,138.249
78.542,132.598 67.925,146.985 68.058,129.105 51.093,123.453 68.141,118.054 "/>
<polygon style="fill:#FFDA44;" points="68.273,365.015 78.677,379.558 95.722,374.158 85.104,388.547 95.508,403.09
78.542,397.439 67.925,411.826 68.058,393.946 51.093,388.294 68.141,382.895 "/>
<polygon style="fill:#FFDA44;" points="216.666,232.595 206.263,247.138 189.217,241.737 199.835,256.126 189.431,270.67
206.397,265.018 217.015,279.405 216.881,261.526 233.846,255.874 216.799,250.475 "/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#6DA544;" d="M0,256c0,110.07,69.472,203.905,166.955,240.076l22.262-240.077L166.955,15.923
C69.472,52.095,0,145.929,0,256z"/>
<path style="fill:#D80027;" d="M512,256C512,114.616,397.384,0,256,0c-31.314,0-61.311,5.633-89.045,15.923v480.154
C194.689,506.368,224.686,512,256,512C397.384,512,512,397.384,512,256z"/>
<circle style="fill:#FFDA44;" cx="166.957" cy="256" r="89.043"/>
<path style="fill:#D80027;" d="M116.87,211.478v55.652c0,27.662,22.424,50.087,50.087,50.087s50.087-22.424,50.087-50.087v-55.652
H116.87z"/>
<path style="fill:#F0F0F0;" d="M166.957,283.826c-9.206,0-16.696-7.49-16.696-16.696V244.87h33.391v22.261
C183.652,276.336,176.162,283.826,166.957,283.826z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<g>
<path style="fill:#D80027;" d="M256,0C172.248,0,97.893,40.223,51.189,102.4h409.622C414.107,40.223,339.752,0,256,0z"/>
<path style="fill:#D80027;" d="M256,512c83.752,0,158.107-40.223,204.811-102.4H51.189C97.893,471.777,172.248,512,256,512z"/>
<path style="fill:#D80027;" d="M0,256c0,17.535,1.768,34.657,5.127,51.2h501.748C510.234,290.657,512,273.535,512,256
s-1.768-34.657-5.126-51.2H5.127C1.768,221.343,0,238.465,0,256z"/>
</g>
<path style="fill:#0052B4;" d="M74.98,74.98c-99.974,99.974-99.974,262.065,0,362.04C116.293,395.707,156.026,355.974,256,256
L74.98,74.98z"/>
<polygon style="fill:#F0F0F0;" points="103.61,189.217 120.185,240.233 173.831,240.233 130.433,271.765 147.007,322.783
103.61,291.252 60.211,322.783 76.789,271.765 33.391,240.233 87.033,240.233 "/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#FFDA44;" cx="256" cy="256" r="256"/>
<g>
<path style="fill:#D80027;" d="M294.932,509.057c41.636-6.352,79.962-22.748,112.456-46.618L256,256L294.932,509.057z"/>
<path style="fill:#D80027;" d="M217.067,2.943C175.432,9.295,137.106,25.691,104.61,49.56L256,256L217.067,2.943z"/>
<path style="fill:#D80027;" d="M104.61,462.439c32.494,23.869,70.82,40.265,112.455,46.619L256,256L104.61,462.439z"/>
<path style="fill:#D80027;" d="M49.56,104.61C25.69,137.106,9.296,175.431,2.943,217.067L256,256L49.56,104.61z"/>
<path style="fill:#D80027;" d="M2.943,294.932c6.352,41.636,22.748,79.962,46.618,112.456L256,256L2.943,294.932z"/>
<path style="fill:#D80027;" d="M509.057,217.067c-6.353-41.635-22.748-79.961-46.618-112.456L256,256L509.057,217.067z"/>
<path style="fill:#D80027;" d="M407.388,49.559C374.893,25.69,336.568,9.295,294.932,2.943L256,256L407.388,49.559z"/>
<path style="fill:#D80027;" d="M462.441,407.389c23.869-32.495,40.264-70.822,46.618-112.456L256,256L462.441,407.389z"/>
<circle style="fill:#D80027;" cx="256" cy="256" r="89.043"/>
</g>
<circle style="fill:#FFDA44;" cx="256" cy="256" r="66.783"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#D80027;" d="M512,256c0,141.384-114.616,256-256,256S0,397.384,0,256"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 643 B

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#FFDA44;" d="M345.043,15.922C317.309,5.633,287.314,0,256,0c-31.314-0.001-61.31,5.633-89.043,15.922
l-22.261,240.077l22.261,240.077C194.689,506.368,224.685,512,256,512c31.313,0,61.31-5.632,89.043-15.924L367.303,256
L345.043,15.922z"/>
<path style="fill:#D80027;" d="M512,256c0-110.07-69.472-203.907-166.957-240.077v480.156C442.528,459.905,511.999,366.072,512,256z
"/>
<path style="fill:#0052B4;" d="M0,255.999c0,110.073,69.472,203.906,166.955,240.079l0.001-480.154
C69.472,52.094,0,145.928,0,255.999z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1021 B

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#0052B4;" d="M496.077,345.043C506.368,317.31,512,287.314,512,256s-5.632-61.31-15.923-89.043H15.923
C5.633,194.69,0,224.686,0,256s5.633,61.31,15.923,89.043L256,367.304L496.077,345.043z"/>
<path style="fill:#D80027;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 887 B

View File

@ -0,0 +1,55 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#0052B4;" d="M256,0C114.616,0,0,114.616,0,256c0,31.314,5.633,61.311,15.923,89.043h480.155
C506.368,317.311,512,287.314,512,256C512,114.616,397.384,0,256,0z"/>
<g>
<path style="fill:#D80027;" d="M256,0C145.929,0,52.094,69.472,15.923,166.957h480.155C459.906,69.472,366.071,0,256,0z"/>
<path style="fill:#D80027;" d="M66.198,144.696v127.706c0,72.644,94.901,94.903,94.901,94.903s94.9-22.259,94.9-94.903V144.696
H66.198z"/>
</g>
<g>
<polygon style="fill:#FFDA44;" points="105.446,166.957 216.751,166.957 216.751,122.435 194.49,133.565 161.099,100.174
127.707,133.565 105.446,122.435 "/>
<polygon style="fill:#FFDA44;" points="233.739,290.183 161.391,217.835 89.043,290.183 112.654,313.794 161.391,265.057
210.128,313.794 "/>
</g>
<path style="fill:#F0F0F0;" d="M233.739,222.609h-33.756c1.898-3.276,3.002-7.07,3.002-11.128c0-12.296-9.967-22.261-22.261-22.261
c-8.495,0-15.872,4.758-19.625,11.753c-3.753-6.994-11.13-11.753-19.625-11.753c-12.294,0-22.261,9.965-22.261,22.261
c0,4.058,1.104,7.853,3.002,11.128H89.043c0,12.295,10.709,22.261,23.002,22.261h-0.741c0,12.295,9.966,22.261,22.261,22.261
c0,10.886,7.818,19.93,18.143,21.866l-17.54,39.602c8.406,3.417,17.592,5.315,27.224,5.315c9.632,0,18.818-1.898,27.224-5.315
l-17.54-39.602c10.325-1.934,18.143-10.979,18.143-21.866c12.295,0,22.261-9.966,22.261-22.261h-0.741
C223.031,244.87,233.739,234.903,233.739,222.609z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#D80027;" d="M0,256.001C0,114.616,114.616,0,256,0s256,114.616,256,256.001"/>
<g>
<path style="fill:#F0F0F0;" d="M155.826,133.564c0-37.298,26.213-68.456,61.217-76.101c-5.38-1.174-10.961-1.811-16.696-1.811
c-43.031,0-77.913,34.882-77.913,77.913s34.882,77.913,77.913,77.913c5.733,0,11.315-0.637,16.696-1.812
C182.039,202.021,155.826,170.863,155.826,133.564z"/>
<polygon style="fill:#F0F0F0;" points="256,61.217 261.526,78.222 279.407,78.222 264.94,88.733 270.466,105.738 256,95.229
241.534,105.738 247.06,88.733 232.594,78.222 250.474,78.222 "/>
<polygon style="fill:#F0F0F0;" points="212.625,94.608 218.15,111.614 236.031,111.614 221.565,122.124 227.091,139.129
212.625,128.62 198.157,139.129 203.684,122.124 189.217,111.614 207.098,111.614 "/>
<polygon style="fill:#F0F0F0;" points="299.376,94.608 304.903,111.614 322.783,111.614 308.316,122.124 313.843,139.129
299.376,128.62 284.91,139.129 290.436,122.124 275.97,111.614 293.85,111.614 "/>
<polygon style="fill:#F0F0F0;" points="282.681,144.695 288.207,161.701 306.087,161.701 291.621,172.211 297.147,189.216
282.681,178.707 268.215,189.216 273.741,172.211 259.275,161.701 277.154,161.701 "/>
<polygon style="fill:#F0F0F0;" points="229.32,144.695 234.845,161.701 252.727,161.701 238.26,172.211 243.787,189.216
229.32,178.707 214.853,189.216 220.379,172.211 205.913,161.701 223.794,161.701 "/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,50 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
<path style="fill:#0052B4;" d="M256,512c141.384,0,256-114.616,256-256c0-31.314-5.632-61.311-15.923-89.043H15.923
C5.633,194.689,0,224.686,0,256C0,397.384,114.616,512,256,512z"/>
<path style="fill:#D80027;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
<path style="fill:#F0F0F0;" d="M66.198,144.696v127.706c0,72.644,94.901,94.903,94.901,94.903s94.9-22.259,94.9-94.903V144.696
H66.198z"/>
<path style="fill:#D80027;" d="M88.459,144.696v127.706c0,8.528,1.894,16.582,5.646,24.133c37.234,0,92.886,0,133.987,0
c3.752-7.55,5.646-15.605,5.646-24.133V144.696H88.459z"/>
<polygon style="fill:#F0F0F0;" points="205.62,233.739 172.23,233.739 172.23,211.478 194.491,211.478 194.491,189.217
172.23,189.217 172.23,166.957 149.969,166.957 149.969,189.217 127.709,189.217 127.709,211.478 149.969,211.478 149.969,233.739
116.577,233.739 116.577,256 149.969,256 149.969,278.261 172.23,278.261 172.23,256 205.62,256 "/>
<path style="fill:#0052B4;" d="M124.471,327.61c14.345,9.015,29.083,14.249,36.628,16.577c7.545-2.327,22.283-7.562,36.628-16.577
c14.466-9.092,24.607-19.49,30.365-31.075c-6.351-4.493-14.1-7.143-22.471-7.143c-3.048,0-6.009,0.361-8.856,1.024
c-6.033-13.708-19.728-23.285-35.665-23.285s-29.633,9.577-35.665,23.285c-2.847-0.663-5.809-1.024-8.856-1.024
c-8.371,0-16.12,2.65-22.471,7.143C99.863,308.119,110.004,318.517,124.471,327.61z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

Some files were not shown because too many files have changed in this diff Show More