This commit is contained in:
2024-09-10 20:21:33 +02:00
parent 1cc67371c5
commit 9b0cb634b5
276 changed files with 16434 additions and 439 deletions

View File

170
static/css/style.css Normal file
View File

@@ -0,0 +1,170 @@
header {
position: fixed;
width: 100%;
transition: top 0.3s ease-in-out;
background-color: #5763AB;
width: 100%;
z-index: 9999;
}
.saburly-menu {
z-index: 9999;
margin-left: 10%;
margin-right: 10%;
}
.side-menu {
position: fixed;
top: 0;
right: 0;
width: 256px;
min-height: 100vh;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
background-color: #5763ab;
z-index: 0;
display: none;
transition: all 0.25s ease;
}
.slideout-open .side-menu {
transform: translateX(0);
}
.side-menu .social-icons {
position: absolute;
bottom: 0;
left: 0;
z-index: 10001;
}
.menu_icon [class*='menu_bar-'] {
background: #ffffff;
transform: rotate(0deg);
transition: 0.2s ease all;
height: 0.18rem;
display: block;
margin-bottom: 0.3rem;
}
.menu_icon [class*='menu_bar-']:last-child {
margin-bottom: 0rem;
}
.menu_icon:focus {
outline: 0;
}
.menu_bar-top {
width: 25px;
}
.menu_bar-mid {
width: 20px;
}
.menu_bar-bot {
width: 25px;
}
.menu-opened .menu_bar-top {
transform: rotate(45deg);
transform-origin: 15% 15%;
}
.menu-opened .menu_bar-mid {
opacity: 0;
}
.menu-opened .menu_bar-bot {
transform: rotate(-45deg);
transform-origin: 15% 95%;
}
.side-toggle {
cursor: pointer;
z-index: 10001;
}
.side-toggle:hover {
opacity: 0.7;
}
.side-navigation li {
list-style: none;
}
.side-navigation a {
text-decoration: none;
}
.saburly-footer,
.content{
margin-left: 10%;
margin-right: 10%;
}
footer {
background-color: #5763AB;
width: 100%;
}
.saburly-footer {
padding-bottom: 1%;
}
.connect {
background-color: #4A5699;
}
.btn {
background-color: #5dcdd4;
}
.btn:hover {
background-color: #51b5bb;
}
.rqbtn:hover {
background-color: #51b5bb;
border: 1px solid #51b5bb;
}
.main-color {
background-color: #5763AB;
color: white;
}
/* Hide side menu on large screens */
@media (min-width: 1024px) {
.side-menu {
display: none;
}
}
/* Show side menu on smaller screens */
@media (max-width: 1023px) {
.side-menu {
display: block;
}
}
.side-menu {
display: none;
}
.side-menu.active {
display: block;
transform: translateX(0);
}
.header-hidden {
transform: translateY(-100%);
transition: transform 0.3s ease;
}
.header-visible {
transform: translateY(0);
transition: transform 0.3s ease;
}

View File

@@ -1,184 +0,0 @@
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
max-width: 960px;
min-height: 100vh;
margin: 0 auto;
padding: 0 15px;
color: #231f20;
font-family: 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
line-height: 1.25;
}
a {
background-color: transparent;
color: #308282;
text-decoration: underline;
}
a:hover {
color: #ea1b10;
}
h1,
h2,
h3,
h4,
h5,
p,
ul {
padding: 0;
margin: 0;
font-weight: 400;
}
svg:not(:root) {
overflow: hidden;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 20px;
padding-bottom: 10px;
border-bottom: 1px solid #e6e6e6;
}
.logo {
width: 150px;
margin-inline-end: 20px;
}
.logo a {
display: block;
}
.figure-logo {
max-width: 150px;
max-height: 55.1px;
}
.release-notes {
font-size: 14px;
}
.main {
padding: 40px 0;
margin: 0 auto;
text-align: center;
}
.figure-space {
max-width: 265px;
}
@keyframes pos {
0%, 100% {
transform: rotate(-6deg);
}
50% {
transform: rotate(6deg);
}
}
.egg {
fill: #43b1b0;
animation: pos 3s ease infinite;
transform: translateY(50px);
transform-origin: 50% 80%;
}
.main-text {
max-width: 400px;
margin: 5px auto;
}
.main-text h1 {
font-size: 22px;
}
.main-text p {
margin: 15px auto 0;
}
.footer {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
border-top: 1px solid #e6e6e6;
padding: 10px;
}
.option {
display: block;
padding: 10px 10px 10px 34px;
position: relative;
text-decoration: none;
}
.option svg {
width: 24px;
height: 24px;
fill: gray;
border: 1px solid #d9d9d9;
padding: 5px;
border-radius: 100%;
top: 10px;
inset-inline-start: 0;
position: absolute;
}
.option h2 {
font-size: 19px;
text-decoration: underline;
}
.option p {
padding-top: 3px;
color: #231f20;
font-size: 15px;
font-weight: 300;
}
@media (max-width: 996px) {
body {
max-width: 780px;
}
}
@media (max-width: 767px) {
.option {
flex: 0 0 50%;
}
}
@media (max-width: 599px) {
.main {
padding: 20px 0;
}
.figure-space {
max-width: 200px;
}
.footer {
display: block;
width: 300px;
margin: 0 auto;
}
}
@media (max-width: 360px) {
.header-link {
max-width: 100px;
}
}

View File

@@ -1,184 +0,0 @@
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
max-width: 960px;
min-height: 100vh;
margin: 0 auto;
padding: 0 15px;
color: #231f20;
font-family: 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
line-height: 1.25;
}
a {
background-color: transparent;
color: #308282;
text-decoration: underline;
}
a:hover {
color: #ea1b10;
}
h1,
h2,
h3,
h4,
h5,
p,
ul {
padding: 0;
margin: 0;
font-weight: 400;
}
svg:not(:root) {
overflow: hidden;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 20px;
padding-bottom: 10px;
border-bottom: 1px solid #e6e6e6;
}
.logo {
width: 150px;
margin-inline-end: 20px;
}
.logo a {
display: block;
}
.figure-logo {
max-width: 150px;
max-height: 55.1px;
}
.release-notes {
font-size: 14px;
}
.main {
padding: 40px 0;
margin: 0 auto;
text-align: center;
}
.figure-space {
max-width: 265px;
}
@keyframes pos {
0%, 100% {
transform: rotate(-6deg);
}
50% {
transform: rotate(6deg);
}
}
.egg {
fill: #43b1b0;
animation: pos 3s ease infinite;
transform: translateY(50px);
transform-origin: 50% 80%;
}
.main-text {
max-width: 400px;
margin: 5px auto;
}
.main-text h1 {
font-size: 22px;
}
.main-text p {
margin: 15px auto 0;
}
.footer {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
border-top: 1px solid #e6e6e6;
padding: 10px;
}
.option {
display: block;
padding: 10px 10px 10px 34px;
position: relative;
text-decoration: none;
}
.option svg {
width: 24px;
height: 24px;
fill: gray;
border: 1px solid #d9d9d9;
padding: 5px;
border-radius: 100%;
top: 10px;
inset-inline-start: 0;
position: absolute;
}
.option h2 {
font-size: 19px;
text-decoration: underline;
}
.option p {
padding-top: 3px;
color: #231f20;
font-size: 15px;
font-weight: 300;
}
@media (max-width: 996px) {
body {
max-width: 780px;
}
}
@media (max-width: 767px) {
.option {
flex: 0 0 50%;
}
}
@media (max-width: 599px) {
.main {
padding: 20px 0;
}
.figure-space {
max-width: 200px;
}
.footer {
display: block;
width: 300px;
margin: 0 auto;
}
}
@media (max-width: 360px) {
.header-link {
max-width: 100px;
}
}

View File

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 566 72" style="enable-background:new 0 0 566 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#845AF6;}
</style>
<title>Group</title>
<desc>Created with Sketch.</desc>
<g id="Page-2">
<g id="Desktop-" transform="translate(-361.000000, -345.000000)">
<g id="Group" transform="translate(361.000000, 345.000000)">
<g id="saburly_final-_1_">
<g id="g26" transform="translate(283.000000, 36.000000) scale(1, -1) translate(-283.000000, -36.000000) ">
<path id="path34" class="st0" d="M24.1,29.4c-0.1,0-0.2,0-0.3,0l-0.2,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.3,0
C13.1,29.7,4.9,38.1,4.9,48.3c0,10.1,8.2,18.6,18.3,18.8c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0l0.2,0c0.1,0,0.1,0,0.2,0
c0.1,0,0.1,0,0.2,0h37h7.7l0,4.4H23.6c-0.1,0-0.3,0-0.4,0l-0.2,0C10.6,71.2,0.5,60.7,0.5,48.3S10.6,25.4,23,25.1l0.2,0
c0.1,0,0.3,0,0.4,0"/>
<path id="path38" class="st0" d="M23.6,24.7c-0.1,0-0.3,0-0.4,0l-0.2,0C10.5,25.1,0.2,35.6,0.2,48.3
c0,12.6,10.2,23.2,22.8,23.5l0.2,0c0.1,0,0.3,0,0.4,0h45.5l0-5H23.6c-0.1,0-0.1,0-0.2,0l-0.1,0c-0.1,0-0.2,0-0.2,0
c-9.9-0.3-18-8.6-18-18.5c0-10,8.1-18.3,18-18.5c0.1,0,0.2,0,0.2,0l0.1,0c0.1,0,0.1,0,0.2,0l0.2,0c0.1,0,0.2,0,0.3,0l0-0.6
c-0.1,0-0.2,0-0.3,0l-0.2,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.3,0C12.9,29.4,4.6,38,4.6,48.3c0,10.3,8.3,18.9,18.5,19.1
c0.1,0,0.1,0,0.2,0l0.1,0c0.1,0,0.1,0,0.2,0l0.4,0l0.2,0h44.3l0,3.8H23.6c-0.1,0-0.3,0-0.4,0l-0.2,0
C10.8,70.9,0.8,60.6,0.8,48.3c0-12.3,10-22.6,22.2-22.9l0.2,0c0.1,0,0.3,0,0.4,0V24.7z"/>
<path id="path42" class="st0" d="M45.2,42.8c0.1,0,0.2,0,0.3,0l0.2,0c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.3,0
c10.1-0.3,18.3-8.7,18.3-18.8c0-10.1-8.2-18.6-18.3-18.8c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0l-0.2,0c-0.1,0-0.1,0-0.2,0
s-0.1,0-0.2,0h-37H0.5l0-4.4h45.2c0.1,0,0.3,0,0.4,0l0.2,0c12.4,0.3,22.5,10.7,22.5,23.2S58.7,46.8,46.3,47.1l-0.2,0
c-0.1,0-0.3,0-0.4,0"/>
<polygon id="path46" class="st0" points="143.6,0.7 112.5,61.1 81.4,0.7 77,2.8 112.5,71.8 148,2.8 "/>
<path id="path50" class="st0" d="M207.1,47.8l-0.2,0c-0.1,0-0.1,0-0.2,0v0h-0.3c0,0,0,0,0,0l0,0h-0.1v-5h0.3v0
c0.1,0,0.2,0,0.2,0c9.9-0.3,18-8.6,18-18.5c0-10-8.1-18.3-18-18.5c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0h-40.6v19H161v-24
h45.5c0.1,0,0.3,0,0.4,0l0.2,0c12.6,0.3,22.8,10.9,22.8,23.5S219.7,47.5,207.1,47.8"/>
<path id="path54" class="st0" d="M207,29.7c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0h-40.6v37.1h40.9v0c0.1,0,0.2,0,0.2,0
c9.9-0.3,18-8.6,18-18.5C225,38.3,216.9,30,207,29.7 M207.1,71.8l-0.2,0c-0.1,0-0.1,0-0.2,0v0h-0.3c0,0,0,0,0,0l0,0h-40.6h-4.8
H161V24.7h4.8h40.6c0.1,0,0.3,0,0.4,0l0.2,0c12.6,0.3,22.8,10.9,22.8,23.5C229.9,60.9,219.7,71.5,207.1,71.8"/>
<path id="path58" class="st0" d="M280.6,0.7c-18.9,0-34.3,15.8-34.3,35.1c0,0.2,0,0.5,0,0.7c0,0.6-0.1,1.2,0,1.8l0,33.6h4.9
V38.2c0-0.5,0-0.9,0-1.2c0-0.4,0-0.7,0-1.1c0-16.6,13.2-30.2,29.4-30.2c15.6,0,28.6,12.5,29.5,28.5l0,1c0,0.3,0,0.5,0,0.8
c0,0.2,0,0.5,0,0.7l-0.1,2.1l4.9,0.2l0.1-2.1c0-0.3,0-0.6,0-0.9c0-0.3,0-0.6,0-0.9l-0.1-1.7C313.6,15,298.5,0.7,280.6,0.7"/>
<path id="path62" class="st0" d="M265.4,45.7c0,2.1,1.7,3.9,3.9,3.9c2.1,0,3.9-1.7,3.9-3.9c0-2.1-1.7-3.9-3.9-3.9
C267.1,41.9,265.4,43.6,265.4,45.7"/>
<path id="path66" class="st0" d="M289.3,45.7c0,2.1,1.7,3.9,3.9,3.9c2.1,0,3.9-1.7,3.9-3.9c0-2.1-1.7-3.9-3.9-3.9
C291,41.9,289.3,43.6,289.3,45.7"/>
<path id="path70" class="st0" d="M375.1,24.8c-0.1,0-0.3,0-0.4,0h-6.2l23.6-24h6.6l-23.4,24c0,0,0,0,0,0L375.1,24.8z"/>
<polygon id="path74" class="st0" points="334.1,66.8 334,66.8 334,29.7 334,29.7 334,59.9 363.6,29.7 370.4,29.7 "/>
<polygon id="path78" class="st0" points="329.2,24.7 329.2,43.4 329.1,0.7 334,0.7 334,24.7 334,24.7 "/>
<path id="path82" class="st0" d="M375.3,71.8l-0.2,0c-0.1,0-0.1,0-0.2,0v0h-0.3c0,0,0,0,0,0l0,0H334h-4.8h-0.1V43.4V24.7h4.8h0
v5h0v37.1h0h40.9v0c0.1,0,0.2,0,0.2,0c9.9-0.3,18-8.6,18-18.5c0-10-8.1-18.3-18-18.5c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0
h-4.2h-6.8l4.9-5h6.2c0.1,0,0.3,0,0.4,0l0.2,0c0,0,0,0,0,0c12.6,0.3,22.8,10.9,22.8,23.5C398.1,60.9,387.8,71.4,375.3,71.8"/>
<path id="path84" class="st0" d="M424.1,66.7h26.6v-61h-26.6V66.7z M419.2,0.7h36.4v71h-36.4V0.7z"/>
<polygon id="path88" class="st0" points="488,0.7 419.2,0.7 419.2,23.3 424.1,23.3 424.1,5.7 483.2,5.7 483.2,23.3 488,23.3
"/>
<polygon id="path92" class="st0" points="546.6,0.8 546.6,71.4 541.7,71.4 541.7,5.8 512,5.7 512,0.8 "/>
<path id="path96" class="st0" d="M566,69.5l-0.1,2.1l-4.9-0.2l0.1-2.1c0-0.2,0-0.5,0-0.7c0-0.2,0-0.5,0-0.8l0-1
c-0.9-16-13.9-28.5-29.5-28.5c-16.2,0-29.4,13.5-29.4,30.2c0,0.3,0,0.7,0,1.1c0,0.4,0,0.7,0,1.2v1h-4.9V71c0-0.6,0-1.2,0-1.8
c0-0.2,0-0.5,0-0.7c0-19.4,15.4-35.1,34.3-35.1c17.9,0,33,14.3,34.4,32.5l0.1,1.7c0,0.3,0,0.6,0,0.9
C566,68.9,566,69.2,566,69.5"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 566 72" style="enable-background:new 0 0 566 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#656BFD;}
</style>
<title>Group</title>
<desc>Created with Sketch.</desc>
<g id="Page-2">
<g id="Desktop-" transform="translate(-361.000000, -345.000000)">
<g id="Group" transform="translate(361.000000, 345.000000)">
<g id="saburly_final-_1_">
<g id="g26" transform="translate(283.000000, 36.000000) scale(1, -1) translate(-283.000000, -36.000000) ">
<path id="path34" class="st0" d="M24.1,29.4c-0.1,0-0.2,0-0.3,0h-0.2c-0.1,0-0.1,0-0.2,0s-0.2,0-0.3,0
c-10,0.3-18.2,8.7-18.2,18.9c0,10.1,8.2,18.6,18.3,18.8c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0h0.2c0.1,0,0.1,0,0.2,0
s0.1,0,0.2,0h37H69v4.4H23.6c-0.1,0-0.3,0-0.4,0H23C10.6,71.2,0.5,60.7,0.5,48.3S10.6,25.4,23,25.1h0.2c0.1,0,0.3,0,0.4,0"/>
<path id="path38" class="st0" d="M23.6,24.7c-0.1,0-0.3,0-0.4,0H23C10.5,25.1,0.2,35.6,0.2,48.3c0,12.6,10.2,23.2,22.8,23.5
h0.2c0.1,0,0.3,0,0.4,0h45.5v-5H23.6c-0.1,0-0.1,0-0.2,0h-0.1c-0.1,0-0.2,0-0.2,0c-9.9-0.3-18-8.6-18-18.5
c0-10,8.1-18.3,18-18.5c0.1,0,0.2,0,0.2,0h0.1c0.1,0,0.1,0,0.2,0h0.2c0.1,0,0.2,0,0.3,0v-0.6c-0.1,0-0.2,0-0.3,0h-0.2
c-0.1,0-0.1,0-0.2,0s-0.2,0-0.3,0C12.9,29.4,4.6,38,4.6,48.3s8.3,18.9,18.5,19.1c0.1,0,0.1,0,0.2,0h0.1c0.1,0,0.1,0,0.2,0H24
h0.2h44.3v3.8H23.6c-0.1,0-0.3,0-0.4,0H23C10.8,70.9,0.8,60.6,0.8,48.3s10-22.6,22.2-22.9h0.2c0.1,0,0.3,0,0.4,0V24.7z"/>
<path id="path42" class="st0" d="M45.2,42.8c0.1,0,0.2,0,0.3,0h0.2c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.3,0
c10.1-0.3,18.3-8.7,18.3-18.8S56.3,5.4,46.2,5.2c-0.1,0-0.2,0-0.3,0s-0.1,0-0.2,0h-0.2c-0.1,0-0.1,0-0.2,0s-0.1,0-0.2,0h-37
H0.5V0.8h45.2c0.1,0,0.3,0,0.4,0h0.2C58.7,1.1,68.8,11.5,68.8,24S58.7,46.8,46.3,47.1h-0.2c-0.1,0-0.3,0-0.4,0"/>
<polygon id="path46" class="st0" points="143.6,0.7 112.5,61.1 81.4,0.7 77,2.8 112.5,71.8 148,2.8 "/>
<path id="path50" class="st0" d="M207.1,47.8h-0.2c-0.1,0-0.1,0-0.2,0l0,0h-0.3l0,0l0,0h-0.1v-5h0.3l0,0c0.1,0,0.2,0,0.2,0
c9.9-0.3,18-8.6,18-18.5c0-10-8.1-18.3-18-18.5c-0.1,0-0.2,0-0.3,0s-0.1,0-0.2,0h-40.6v19H161v-24h45.5c0.1,0,0.3,0,0.4,0h0.2
c12.6,0.3,22.8,10.9,22.8,23.5S219.7,47.5,207.1,47.8"/>
<path id="path54" class="st0" d="M207,29.7c-0.1,0-0.2,0-0.3,0s-0.1,0-0.2,0h-40.6v37.1h40.9l0,0c0.1,0,0.2,0,0.2,0
c9.9-0.3,18-8.6,18-18.5C225,38.3,216.9,30,207,29.7 M207.1,71.8h-0.2c-0.1,0-0.1,0-0.2,0l0,0h-0.3l0,0l0,0h-40.6H161h0V24.7
h4.8h40.6c0.1,0,0.3,0,0.4,0h0.2c12.6,0.3,22.8,10.9,22.8,23.5C229.9,60.9,219.7,71.5,207.1,71.8"/>
<path id="path58" class="st0" d="M280.6,0.7c-18.9,0-34.3,15.8-34.3,35.1c0,0.2,0,0.5,0,0.7c0,0.6-0.1,1.2,0,1.8v33.6h4.9V38.2
c0-0.5,0-0.9,0-1.2c0-0.4,0-0.7,0-1.1c0-16.6,13.2-30.2,29.4-30.2c15.6,0,28.6,12.5,29.5,28.5v1c0,0.3,0,0.5,0,0.8
c0,0.2,0,0.5,0,0.7l-0.1,2.1l4.9,0.2l0.1-2.1c0-0.3,0-0.6,0-0.9c0-0.3,0-0.6,0-0.9l-0.1-1.7C313.6,15,298.5,0.7,280.6,0.7"/>
<path id="path62" class="st0" d="M265.4,45.7c0,2.1,1.7,3.9,3.9,3.9c2.1,0,3.9-1.7,3.9-3.9c0-2.1-1.7-3.9-3.9-3.9
C267.1,41.9,265.4,43.6,265.4,45.7"/>
<path id="path66" class="st0" d="M289.3,45.7c0,2.1,1.7,3.9,3.9,3.9c2.1,0,3.9-1.7,3.9-3.9c0-2.1-1.7-3.9-3.9-3.9
C291,41.9,289.3,43.6,289.3,45.7"/>
<path id="path70" class="st0" d="M375.1,24.8c-0.1,0-0.3,0-0.4,0h-6.2l23.6-24h6.6l-23.4,24l0,0H375.1z"/>
<polygon id="path74" class="st0" points="334.1,66.8 334,66.8 334,29.7 334,29.7 334,59.9 363.6,29.7 370.4,29.7 "/>
<polygon id="path78" class="st0" points="329.2,24.7 329.2,43.4 329.1,0.7 334,0.7 334,24.7 334,24.7 "/>
<path id="path82" class="st0" d="M375.3,71.8h-0.2c-0.1,0-0.1,0-0.2,0l0,0h-0.3l0,0l0,0H334h-4.8h-0.1V43.4V24.7h4.8l0,0v5l0,0
v37.1l0,0h40.9l0,0c0.1,0,0.2,0,0.2,0c9.9-0.3,18-8.6,18-18.5c0-10-8.1-18.3-18-18.5c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0
h-4.2h-6.8l4.9-5h6.2c0.1,0,0.3,0,0.4,0h0.2l0,0c12.6,0.3,22.8,10.9,22.8,23.5C398.1,60.9,387.8,71.4,375.3,71.8"/>
<path id="path84" class="st0" d="M424.1,66.7h26.6v-61h-26.6V66.7z M419.2,0.7h36.4v71h-36.4V0.7z"/>
<polygon id="path88" class="st0" points="488,0.7 419.2,0.7 419.2,23.3 424.1,23.3 424.1,5.7 483.2,5.7 483.2,23.3 488,23.3
"/>
<polygon id="path92" class="st0" points="546.6,0.8 546.6,71.4 541.7,71.4 541.7,5.8 512,5.7 512,0.8 "/>
<path id="path96" class="st0" d="M566,69.5l-0.1,2.1l-4.9-0.2l0.1-2.1c0-0.2,0-0.5,0-0.7s0-0.5,0-0.8v-1
c-0.9-16-13.9-28.5-29.5-28.5c-16.2,0-29.4,13.5-29.4,30.2c0,0.3,0,0.7,0,1.1s0,0.7,0,1.2v1h-4.9V71c0-0.6,0-1.2,0-1.8
c0-0.2,0-0.5,0-0.7c0-19.4,15.4-35.1,34.3-35.1c17.9,0,33,14.3,34.4,32.5l0.1,1.7c0,0.3,0,0.6,0,0.9
C566,68.9,566,69.2,566,69.5"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 566 72" style="enable-background:new 0 0 566 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#022363;}
</style>
<title>Group</title>
<desc>Created with Sketch.</desc>
<g id="Page-2">
<g id="Desktop-" transform="translate(-361.000000, -345.000000)">
<g id="Group" transform="translate(361.000000, 345.000000)">
<g id="saburly_final-_1_">
<g id="g26" transform="translate(283.000000, 36.000000) scale(1, -1) translate(-283.000000, -36.000000) ">
<path id="path34" class="st0" d="M24.1,29.4c-0.1,0-0.2,0-0.3,0h-0.2c-0.1,0-0.1,0-0.2,0s-0.2,0-0.3,0
c-10,0.3-18.2,8.7-18.2,18.9c0,10.1,8.2,18.6,18.3,18.8c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0h0.2c0.1,0,0.1,0,0.2,0
s0.1,0,0.2,0h37H69v4.4H23.6c-0.1,0-0.3,0-0.4,0H23C10.6,71.2,0.5,60.7,0.5,48.3S10.6,25.4,23,25.1h0.2c0.1,0,0.3,0,0.4,0"/>
<path id="path38" class="st0" d="M23.6,24.7c-0.1,0-0.3,0-0.4,0H23C10.5,25.1,0.2,35.6,0.2,48.3c0,12.6,10.2,23.2,22.8,23.5
h0.2c0.1,0,0.3,0,0.4,0h45.5v-5H23.6c-0.1,0-0.1,0-0.2,0h-0.1c-0.1,0-0.2,0-0.2,0c-9.9-0.3-18-8.6-18-18.5
c0-10,8.1-18.3,18-18.5c0.1,0,0.2,0,0.2,0h0.1c0.1,0,0.1,0,0.2,0h0.2c0.1,0,0.2,0,0.3,0v-0.6c-0.1,0-0.2,0-0.3,0h-0.2
c-0.1,0-0.1,0-0.2,0s-0.2,0-0.3,0C12.9,29.4,4.6,38,4.6,48.3s8.3,18.9,18.5,19.1c0.1,0,0.1,0,0.2,0h0.1c0.1,0,0.1,0,0.2,0H24
h0.2h44.3v3.8H23.6c-0.1,0-0.3,0-0.4,0H23C10.8,70.9,0.8,60.6,0.8,48.3s10-22.6,22.2-22.9h0.2c0.1,0,0.3,0,0.4,0V24.7z"/>
<path id="path42" class="st0" d="M45.2,42.8c0.1,0,0.2,0,0.3,0h0.2c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.3,0
c10.1-0.3,18.3-8.7,18.3-18.8S56.3,5.4,46.2,5.2c-0.1,0-0.2,0-0.3,0s-0.1,0-0.2,0h-0.2c-0.1,0-0.1,0-0.2,0s-0.1,0-0.2,0h-37
H0.5V0.8h45.2c0.1,0,0.3,0,0.4,0h0.2C58.7,1.1,68.8,11.5,68.8,24S58.7,46.8,46.3,47.1h-0.2c-0.1,0-0.3,0-0.4,0"/>
<polygon id="path46" class="st0" points="143.6,0.7 112.5,61.1 81.4,0.7 77,2.8 112.5,71.8 148,2.8 "/>
<path id="path50" class="st0" d="M207.1,47.8h-0.2c-0.1,0-0.1,0-0.2,0l0,0h-0.3l0,0l0,0h-0.1v-5h0.3l0,0c0.1,0,0.2,0,0.2,0
c9.9-0.3,18-8.6,18-18.5c0-10-8.1-18.3-18-18.5c-0.1,0-0.2,0-0.3,0s-0.1,0-0.2,0h-40.6v19H161v-24h45.5c0.1,0,0.3,0,0.4,0h0.2
c12.6,0.3,22.8,10.9,22.8,23.5S219.7,47.5,207.1,47.8"/>
<path id="path54" class="st0" d="M207,29.7c-0.1,0-0.2,0-0.3,0s-0.1,0-0.2,0h-40.6v37.1h40.9l0,0c0.1,0,0.2,0,0.2,0
c9.9-0.3,18-8.6,18-18.5C225,38.3,216.9,30,207,29.7 M207.1,71.8h-0.2c-0.1,0-0.1,0-0.2,0l0,0h-0.3l0,0l0,0h-40.6H161h0V24.7
h4.8h40.6c0.1,0,0.3,0,0.4,0h0.2c12.6,0.3,22.8,10.9,22.8,23.5C229.9,60.9,219.7,71.5,207.1,71.8"/>
<path id="path58" class="st0" d="M280.6,0.7c-18.9,0-34.3,15.8-34.3,35.1c0,0.2,0,0.5,0,0.7c0,0.6-0.1,1.2,0,1.8v33.6h4.9V38.2
c0-0.5,0-0.9,0-1.2c0-0.4,0-0.7,0-1.1c0-16.6,13.2-30.2,29.4-30.2c15.6,0,28.6,12.5,29.5,28.5v1c0,0.3,0,0.5,0,0.8
c0,0.2,0,0.5,0,0.7l-0.1,2.1l4.9,0.2l0.1-2.1c0-0.3,0-0.6,0-0.9c0-0.3,0-0.6,0-0.9l-0.1-1.7C313.6,15,298.5,0.7,280.6,0.7"/>
<path id="path62" class="st0" d="M265.4,45.7c0,2.1,1.7,3.9,3.9,3.9c2.1,0,3.9-1.7,3.9-3.9c0-2.1-1.7-3.9-3.9-3.9
C267.1,41.9,265.4,43.6,265.4,45.7"/>
<path id="path66" class="st0" d="M289.3,45.7c0,2.1,1.7,3.9,3.9,3.9c2.1,0,3.9-1.7,3.9-3.9c0-2.1-1.7-3.9-3.9-3.9
C291,41.9,289.3,43.6,289.3,45.7"/>
<path id="path70" class="st0" d="M375.1,24.8c-0.1,0-0.3,0-0.4,0h-6.2l23.6-24h6.6l-23.4,24l0,0H375.1z"/>
<polygon id="path74" class="st0" points="334.1,66.8 334,66.8 334,29.7 334,29.7 334,59.9 363.6,29.7 370.4,29.7 "/>
<polygon id="path78" class="st0" points="329.2,24.7 329.2,43.4 329.1,0.7 334,0.7 334,24.7 334,24.7 "/>
<path id="path82" class="st0" d="M375.3,71.8h-0.2c-0.1,0-0.1,0-0.2,0l0,0h-0.3l0,0l0,0H334h-4.8h-0.1V43.4V24.7h4.8l0,0v5l0,0
v37.1l0,0h40.9l0,0c0.1,0,0.2,0,0.2,0c9.9-0.3,18-8.6,18-18.5c0-10-8.1-18.3-18-18.5c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0
h-4.2h-6.8l4.9-5h6.2c0.1,0,0.3,0,0.4,0h0.2l0,0c12.6,0.3,22.8,10.9,22.8,23.5C398.1,60.9,387.8,71.4,375.3,71.8"/>
<path id="path84" class="st0" d="M424.1,66.7h26.6v-61h-26.6V66.7z M419.2,0.7h36.4v71h-36.4V0.7z"/>
<polygon id="path88" class="st0" points="488,0.7 419.2,0.7 419.2,23.3 424.1,23.3 424.1,5.7 483.2,5.7 483.2,23.3 488,23.3
"/>
<polygon id="path92" class="st0" points="546.6,0.8 546.6,71.4 541.7,71.4 541.7,5.8 512,5.7 512,0.8 "/>
<path id="path96" class="st0" d="M566,69.5l-0.1,2.1l-4.9-0.2l0.1-2.1c0-0.2,0-0.5,0-0.7s0-0.5,0-0.8v-1
c-0.9-16-13.9-28.5-29.5-28.5c-16.2,0-29.4,13.5-29.4,30.2c0,0.3,0,0.7,0,1.1s0,0.7,0,1.2v1h-4.9V71c0-0.6,0-1.2,0-1.8
c0-0.2,0-0.5,0-0.7c0-19.4,15.4-35.1,34.3-35.1c17.9,0,33,14.3,34.4,32.5l0.1,1.7c0,0.3,0,0.6,0,0.9
C566,68.9,566,69.2,566,69.5"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 566 72" style="enable-background:new 0 0 566 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#845AF6;}
</style>
<title>Group</title>
<desc>Created with Sketch.</desc>
<g id="Page-2">
<g id="Desktop-" transform="translate(-361.000000, -345.000000)">
<g id="Group" transform="translate(361.000000, 345.000000)">
<g id="saburly_final-_1_">
<g id="g26" transform="translate(283.000000, 36.000000) scale(1, -1) translate(-283.000000, -36.000000) ">
<path id="path34" class="st0" d="M24.1,29.4c-0.1,0-0.2,0-0.3,0l-0.2,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.3,0
C13.1,29.7,4.9,38.1,4.9,48.3c0,10.1,8.2,18.6,18.3,18.8c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0l0.2,0c0.1,0,0.1,0,0.2,0
c0.1,0,0.1,0,0.2,0h37h7.7l0,4.4H23.6c-0.1,0-0.3,0-0.4,0l-0.2,0C10.6,71.2,0.5,60.7,0.5,48.3S10.6,25.4,23,25.1l0.2,0
c0.1,0,0.3,0,0.4,0"/>
<path id="path38" class="st0" d="M23.6,24.7c-0.1,0-0.3,0-0.4,0l-0.2,0C10.5,25.1,0.2,35.6,0.2,48.3
c0,12.6,10.2,23.2,22.8,23.5l0.2,0c0.1,0,0.3,0,0.4,0h45.5l0-5H23.6c-0.1,0-0.1,0-0.2,0l-0.1,0c-0.1,0-0.2,0-0.2,0
c-9.9-0.3-18-8.6-18-18.5c0-10,8.1-18.3,18-18.5c0.1,0,0.2,0,0.2,0l0.1,0c0.1,0,0.1,0,0.2,0l0.2,0c0.1,0,0.2,0,0.3,0l0-0.6
c-0.1,0-0.2,0-0.3,0l-0.2,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.3,0C12.9,29.4,4.6,38,4.6,48.3c0,10.3,8.3,18.9,18.5,19.1
c0.1,0,0.1,0,0.2,0l0.1,0c0.1,0,0.1,0,0.2,0l0.4,0l0.2,0h44.3l0,3.8H23.6c-0.1,0-0.3,0-0.4,0l-0.2,0
C10.8,70.9,0.8,60.6,0.8,48.3c0-12.3,10-22.6,22.2-22.9l0.2,0c0.1,0,0.3,0,0.4,0V24.7z"/>
<path id="path42" class="st0" d="M45.2,42.8c0.1,0,0.2,0,0.3,0l0.2,0c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.3,0
c10.1-0.3,18.3-8.7,18.3-18.8c0-10.1-8.2-18.6-18.3-18.8c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0l-0.2,0c-0.1,0-0.1,0-0.2,0
s-0.1,0-0.2,0h-37H0.5l0-4.4h45.2c0.1,0,0.3,0,0.4,0l0.2,0c12.4,0.3,22.5,10.7,22.5,23.2S58.7,46.8,46.3,47.1l-0.2,0
c-0.1,0-0.3,0-0.4,0"/>
<polygon id="path46" class="st0" points="143.6,0.7 112.5,61.1 81.4,0.7 77,2.8 112.5,71.8 148,2.8 "/>
<path id="path50" class="st0" d="M207.1,47.8l-0.2,0c-0.1,0-0.1,0-0.2,0v0h-0.3c0,0,0,0,0,0l0,0h-0.1v-5h0.3v0
c0.1,0,0.2,0,0.2,0c9.9-0.3,18-8.6,18-18.5c0-10-8.1-18.3-18-18.5c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0h-40.6v19H161v-24
h45.5c0.1,0,0.3,0,0.4,0l0.2,0c12.6,0.3,22.8,10.9,22.8,23.5S219.7,47.5,207.1,47.8"/>
<path id="path54" class="st0" d="M207,29.7c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0h-40.6v37.1h40.9v0c0.1,0,0.2,0,0.2,0
c9.9-0.3,18-8.6,18-18.5C225,38.3,216.9,30,207,29.7 M207.1,71.8l-0.2,0c-0.1,0-0.1,0-0.2,0v0h-0.3c0,0,0,0,0,0l0,0h-40.6h-4.8
H161V24.7h4.8h40.6c0.1,0,0.3,0,0.4,0l0.2,0c12.6,0.3,22.8,10.9,22.8,23.5C229.9,60.9,219.7,71.5,207.1,71.8"/>
<path id="path58" class="st0" d="M280.6,0.7c-18.9,0-34.3,15.8-34.3,35.1c0,0.2,0,0.5,0,0.7c0,0.6-0.1,1.2,0,1.8l0,33.6h4.9
V38.2c0-0.5,0-0.9,0-1.2c0-0.4,0-0.7,0-1.1c0-16.6,13.2-30.2,29.4-30.2c15.6,0,28.6,12.5,29.5,28.5l0,1c0,0.3,0,0.5,0,0.8
c0,0.2,0,0.5,0,0.7l-0.1,2.1l4.9,0.2l0.1-2.1c0-0.3,0-0.6,0-0.9c0-0.3,0-0.6,0-0.9l-0.1-1.7C313.6,15,298.5,0.7,280.6,0.7"/>
<path id="path62" class="st0" d="M265.4,45.7c0,2.1,1.7,3.9,3.9,3.9c2.1,0,3.9-1.7,3.9-3.9c0-2.1-1.7-3.9-3.9-3.9
C267.1,41.9,265.4,43.6,265.4,45.7"/>
<path id="path66" class="st0" d="M289.3,45.7c0,2.1,1.7,3.9,3.9,3.9c2.1,0,3.9-1.7,3.9-3.9c0-2.1-1.7-3.9-3.9-3.9
C291,41.9,289.3,43.6,289.3,45.7"/>
<path id="path70" class="st0" d="M375.1,24.8c-0.1,0-0.3,0-0.4,0h-6.2l23.6-24h6.6l-23.4,24c0,0,0,0,0,0L375.1,24.8z"/>
<polygon id="path74" class="st0" points="334.1,66.8 334,66.8 334,29.7 334,29.7 334,59.9 363.6,29.7 370.4,29.7 "/>
<polygon id="path78" class="st0" points="329.2,24.7 329.2,43.4 329.1,0.7 334,0.7 334,24.7 334,24.7 "/>
<path id="path82" class="st0" d="M375.3,71.8l-0.2,0c-0.1,0-0.1,0-0.2,0v0h-0.3c0,0,0,0,0,0l0,0H334h-4.8h-0.1V43.4V24.7h4.8h0
v5h0v37.1h0h40.9v0c0.1,0,0.2,0,0.2,0c9.9-0.3,18-8.6,18-18.5c0-10-8.1-18.3-18-18.5c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0
h-4.2h-6.8l4.9-5h6.2c0.1,0,0.3,0,0.4,0l0.2,0c0,0,0,0,0,0c12.6,0.3,22.8,10.9,22.8,23.5C398.1,60.9,387.8,71.4,375.3,71.8"/>
<path id="path84" class="st0" d="M424.1,66.7h26.6v-61h-26.6V66.7z M419.2,0.7h36.4v71h-36.4V0.7z"/>
<polygon id="path88" class="st0" points="488,0.7 419.2,0.7 419.2,23.3 424.1,23.3 424.1,5.7 483.2,5.7 483.2,23.3 488,23.3
"/>
<polygon id="path92" class="st0" points="546.6,0.8 546.6,71.4 541.7,71.4 541.7,5.8 512,5.7 512,0.8 "/>
<path id="path96" class="st0" d="M566,69.5l-0.1,2.1l-4.9-0.2l0.1-2.1c0-0.2,0-0.5,0-0.7c0-0.2,0-0.5,0-0.8l0-1
c-0.9-16-13.9-28.5-29.5-28.5c-16.2,0-29.4,13.5-29.4,30.2c0,0.3,0,0.7,0,1.1c0,0.4,0,0.7,0,1.2v1h-4.9V71c0-0.6,0-1.2,0-1.8
c0-0.2,0-0.5,0-0.7c0-19.4,15.4-35.1,34.3-35.1c17.9,0,33,14.3,34.4,32.5l0.1,1.7c0,0.3,0,0.6,0,0.9
C566,68.9,566,69.2,566,69.5"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="566px" height="72px" viewBox="0 0 566 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 46.1 (44463) - http://www.bohemiancoding.com/sketch -->
<title>Group</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-2" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Desktop-" transform="translate(-361.000000, -345.000000)" fill-rule="nonzero">
<g id="Group" transform="translate(361.000000, 345.000000)">
<g id="saburly_final-_1_">
<g id="g26" transform="translate(283.000000, 36.000000) scale(1, -1) translate(-283.000000, -36.000000) ">
<path d="M24.1147394,29.4028784 C24.0131766,29.3992297 23.9164502,29.4004459 23.8173057,29.4028784 L23.6190165,29.4040946 C23.5537262,29.4040946 23.489645,29.4089595 23.4255637,29.4150405 C23.3252101,29.4211216 23.2260655,29.4284189 23.1196665,29.4308514 C13.056493,29.6996351 4.86860274,38.1486892 4.86860274,48.2663919 C4.86860274,58.3828784 13.056493,66.8319324 23.1245028,67.1007162 C23.2260655,67.1031486 23.3252101,67.1104459 23.4255637,67.116527 C23.489645,67.1213919 23.5537262,67.127473 23.6190165,67.127473 L23.8173057,67.1286892 C23.868087,67.1286892 23.9176593,67.1286892 23.973277,67.1286892 C24.0288947,67.1286892 24.0893487,67.1286892 24.1618935,67.127473 L61.1150078,67.127473 L68.7781573,67.127473 L68.7962935,71.4936892 L23.6190165,71.4936892 C23.4799723,71.4936892 23.3421372,71.4851757 23.2055111,71.4754459 L23.0362399,71.4657162 C10.625033,71.1507162 0.528005268,60.7447703 0.528005268,48.2663919 C0.528005268,35.7880135 10.625033,25.3796351 23.0386581,25.0658514 L23.2055111,25.0561216 C23.3421372,25.0463919 23.4799723,25.0378784 23.6190165,25.0378784" id="path34" fill="#F9A933"></path>
<path d="M23.6192583,24.7339459 C23.4717506,24.7339459 23.3290791,24.7424595 23.1839895,24.7521892 L23.0219728,24.7619189 C10.4560036,25.0805676 0.225977066,35.6239459 0.225977066,48.2665135 C0.225977066,60.9066486 10.4547945,71.4512432 23.0280182,71.7698919 L23.1876168,71.7784054 C23.3290791,71.7881351 23.4717506,71.7978649 23.6192583,71.7978649 L69.1000144,71.7978649 L69.0794601,66.8223243 L23.6204674,66.8223243 C23.5624316,66.8223243 23.5068139,66.8186757 23.4511962,66.8138108 L23.3689788,66.8077297 C23.2903886,66.8028649 23.2117984,66.798 23.13079,66.7955676 C13.2284242,66.5328649 5.17111457,58.220027 5.17111457,48.2665135 C5.17111457,38.3117838 13.226006,29.9989459 23.1283718,29.735027 C23.2105893,29.7325946 23.2915976,29.7277297 23.3713969,29.7228649 L23.4511962,29.718 C23.5068139,29.7131351 23.5624316,29.7082703 23.6192583,29.7082703 L23.8199656,29.7070541 C23.9191102,29.7034054 24.0110003,29.7046216 24.1053085,29.7070541 L24.1234447,29.0989459 C24.0170457,29.0952973 23.9142739,29.0965135 23.810293,29.0989459 L23.6180493,29.1001622 C23.5455045,29.1001622 23.4717506,29.1062432 23.4004148,29.1123243 C23.2613706,29.1196216 23.1888258,29.1244865 23.1138629,29.1269189 C12.8862545,29.3993514 4.56657453,37.9858378 4.56657453,48.2665135 C4.56657453,58.545973 12.8874636,67.1312432 23.115072,67.4036757 C23.1888258,67.4061081 23.2601616,67.4097568 23.3314973,67.4146216 L23.4076693,67.4194865 C23.4717506,67.4255676 23.5455045,67.4304324 23.6192583,67.4304324 L23.9735188,67.4328649 L24.1718079,67.4304324 L68.4773382,67.4304324 L68.4930562,71.1897568 L23.6192583,71.1897568 C23.4862595,71.1897568 23.3556789,71.180027 23.2250982,71.1715135 L23.0534089,71.1617838 C10.7957551,70.8504324 0.830517103,60.5807027 0.830517103,48.2665135 C0.830517103,35.9511081 10.7969642,25.6801622 23.0461544,25.3688108 L23.221471,25.3590811 C23.3556789,25.3505676 23.4862595,25.3420541 23.6192583,25.3420541 L23.6192583,24.7339459 Z" id="path38" fill="#F9A933"></path>
<path d="M45.2099221,42.8038784 C45.3114849,42.807527 45.4082113,42.8063108 45.5073558,42.8038784 L45.705645,42.8026622 C45.7709353,42.8026622 45.8350165,42.7977973 45.8990978,42.7917162 C45.9994514,42.7856351 46.098596,42.7783378 46.204995,42.7759054 C56.2681685,42.5071216 64.4560588,34.0580676 64.4560588,23.9403649 C64.4560588,13.8238784 56.2681685,5.37482432 46.2001587,5.10604054 C46.098596,5.10360811 45.9994514,5.09631081 45.8990978,5.09022973 C45.8350165,5.08536486 45.7709353,5.07928378 45.705645,5.07928378 L45.5073558,5.07806757 C45.4565745,5.07806757 45.4070022,5.07806757 45.3513845,5.07806757 C45.2957668,5.07806757 45.2353128,5.07806757 45.162768,5.07928378 L8.2096537,5.07928378 L0.546504194,5.07928378 L0.528367992,0.713067568 L45.705645,0.713067568 C45.8446892,0.713067568 45.9825243,0.721581081 46.1191504,0.731310811 L46.2884216,0.741040541 C58.6996285,1.05604054 68.7966562,11.4619865 68.7966562,23.9403649 C68.7966562,36.4187432 58.6996285,46.8271216 46.2860034,47.1409054 L46.1191504,47.1506351 C45.9825243,47.1603649 45.8446892,47.1688784 45.705645,47.1688784" id="path42" fill="#7CCBC7"></path>
<polygon id="path46" fill="#E94B80" points="143.554319 0.696162162 112.460407 61.146973 81.3664945 0.696162162 76.9702793 2.83305405 112.460407 71.8302162 147.950534 2.83305405"></polygon>
<path d="M207.110218,47.7878108 L206.948201,47.7963243 C206.890165,47.799973 206.832129,47.8011892 206.774093,47.8036216 L206.774093,47.8145676 L206.521396,47.8145676 C206.518978,47.8145676 206.516559,47.8145676 206.512932,47.8145676 L206.512932,47.8145676 L206.424669,47.8145676 L206.424669,42.8232162 L206.774093,42.8232162 L206.774093,42.8256486 C206.849056,42.8207838 206.925228,42.8159189 207.005028,42.8134865 C216.906184,42.5495676 224.962285,34.2367297 224.962285,24.2832162 C224.962285,14.3284865 216.904975,6.01564865 207.0014,5.75172973 C206.916765,5.75051351 206.833338,5.74564865 206.679785,5.73591892 C206.624167,5.73105405 206.569759,5.72618919 206.511723,5.72618919 L165.868496,5.72618919 L165.868496,24.7575405 L161.032176,24.7575405 L161.032176,0.751864865 L206.512932,0.751864865 C206.659231,0.751864865 206.80432,0.760378378 206.943365,0.770108108 L207.104172,0.779837838 C219.677396,1.09848649 229.906213,11.6418649 229.906213,24.2832162 C229.906213,36.9245676 219.676187,47.4679459 207.110218,47.7878108" id="path50" fill="#E4E315"></path>
<path d="M207.001521,29.7345405 C206.916886,29.7321081 206.833459,29.7272432 206.678697,29.7175135 C206.624288,29.7126486 206.56988,29.709 206.511844,29.709 L165.868617,29.709 L165.868617,66.8048108 L206.774214,66.8048108 L206.774214,66.8072432 C206.849177,66.8023784 206.925349,66.7987297 207.00394,66.7962973 C216.906305,66.5323784 224.961197,58.2195405 224.961197,48.2648108 C224.961197,38.3112973 216.903887,29.9984595 207.001521,29.7345405 M207.110339,71.7706216 L206.948322,71.7779189 C206.890286,71.7827838 206.831041,71.7827838 206.774214,71.7864324 L206.774214,71.7973784 L206.521517,71.7973784 C206.519098,71.7973784 206.51668,71.7973784 206.513053,71.7973784 L206.513053,71.7973784 L165.868617,71.7973784 L161.083078,71.7973784 L161.032297,71.7973784 L161.032297,24.7346757 L165.868617,24.7346757 L206.513053,24.7346757 C206.659352,24.7346757 206.804441,24.7431892 206.943486,24.7517027 L207.104293,24.7614324 C219.677517,25.0812973 229.906334,35.6246757 229.906334,48.2648108 C229.906334,60.9073784 219.676308,71.4507568 207.110339,71.7706216" id="path54" fill="#8A77B4"></path>
<path d="M280.630871,0.713432432 C261.707558,0.713432432 246.312342,16.4634324 246.312342,35.8231622 C246.312342,36.0566757 246.299042,36.2999189 246.286951,36.5443784 C246.253097,37.1403243 246.221661,37.7204595 246.259142,38.3115405 L246.254306,71.8876216 L251.13778,71.8876216 L251.13778,38.151 C251.111181,37.6572162 251.136571,37.2850541 251.158335,36.9177568 C251.178889,36.5322162 251.197025,36.1697838 251.197025,35.8231622 C251.197025,19.1792432 264.401389,5.64032432 280.630871,5.64032432 C296.279994,5.64032432 309.247378,18.1576216 310.152979,34.1387027 L310.19046,35.1651892 C310.200133,35.468027 310.206178,35.693027 310.206178,35.9192432 C310.206178,36.1466757 310.200133,36.3741081 310.192878,36.5991081 L310.109452,38.7420811 L315.013481,38.9062703 L315.070307,36.8399189 C315.081189,36.5346486 315.089653,36.2293784 315.089653,35.9192432 C315.089653,35.6103243 315.081189,35.3050541 315.070307,34.9985676 L314.989299,33.2557297 C313.625457,14.9857297 298.536137,0.713432432 280.630871,0.713432432" id="path58" fill="#F9A933"></path>
<path d="M265.375182,45.7493108 C265.375182,47.8910676 267.100539,49.6266081 269.229729,49.6266081 C271.35771,49.6266081 273.083067,47.8910676 273.083067,45.7493108 C273.083067,43.6075541 271.35771,41.8720135 269.229729,41.8720135 C267.100539,41.8720135 265.375182,43.6075541 265.375182,45.7493108" id="path62" fill="#F9A933"></path>
<path d="M289.277123,45.7493108 C289.277123,47.8910676 291.00248,49.6266081 293.13167,49.6266081 C295.259651,49.6266081 296.985009,47.8910676 296.985009,45.7493108 C296.985009,43.6075541 295.259651,41.8720135 293.13167,41.8720135 C291.00248,41.8720135 289.277123,43.6075541 289.277123,45.7493108" id="path66" fill="#F9A933"></path>
<path d="M375.094967,24.7517027 C374.955923,24.741973 374.810833,24.7334595 374.664534,24.7334595 L368.471626,24.7334595 L392.040224,0.713189189 L398.653892,0.713189189 L375.281165,24.7626486 C375.271493,24.7626486 375.264238,24.7614324 375.255775,24.7614324 L375.094967,24.7517027 Z" id="path70" fill="#A2ABD6"></path>
<polygon id="path74" fill="#A2ABD6" points="334.065439 66.8049324 334.019494 66.8049324 334.019494 29.7079054 334.042467 29.7079054 334.042467 59.8518243 363.594802 29.7079054 370.433359 29.7079054"></polygon>
<polygon id="path78" fill="#A2ABD6" points="329.183536 24.7338243 329.183536 43.4173378 329.131546 0.713554054 334.027111 0.713554054 334.042829 24.7338243 334.019857 24.7338243"></polygon>
<path d="M375.261457,71.7696486 L375.09944,71.7781622 C375.041405,71.7818108 374.983369,71.783027 374.925333,71.7854595 L374.925333,71.7964054 L374.672635,71.7964054 C374.670217,71.7964054 374.667799,71.7964054 374.664172,71.7964054 L374.664172,71.7964054 L334.019736,71.7964054 L329.235406,71.7964054 L329.183416,71.7964054 L329.183416,43.4172162 L329.183416,24.7337027 L334.019736,24.7337027 L334.042708,24.7337027 L334.042708,29.708027 L334.019736,29.708027 L334.019736,66.8050541 L334.065681,66.8050541 L374.925333,66.8050541 L374.925333,66.8074865 C375.000296,66.8026216 375.077677,66.7977568 375.156267,66.7953243 C385.057424,66.5314054 393.113524,58.2185676 393.113524,48.2650541 C393.113524,38.3103243 385.056215,29.9974865 375.15264,29.7335676 C375.068004,29.7323514 374.984578,29.7274865 374.831025,29.7177568 C374.775407,29.7128919 374.720998,29.708027 374.662963,29.708027 L370.432391,29.708027 L363.595044,29.708027 L368.471264,24.7337027 L374.664172,24.7337027 C374.81047,24.7337027 374.95556,24.7422162 375.094604,24.7519459 L375.255412,24.7616757 C375.263875,24.7616757 375.272339,24.7628919 375.280802,24.7628919 C387.841935,25.0961351 398.057453,35.6322162 398.057453,48.2650541 C398.057453,60.9064054 387.827426,71.4497838 375.261457,71.7696486" id="path82" fill="#40C1D5"></path>
<path d="M424.109018,66.6887838 L450.729334,66.6887838 L450.729334,5.69310811 L424.109018,5.69310811 L424.109018,66.6887838 Z M419.20378,0.713918919 L455.634572,0.713918919 L455.634572,71.6704054 L419.20378,71.6704054 L419.20378,0.713918919 Z" id="path84" fill="#E4E315"></path>
<polygon id="path88" fill="#E94B80" points="488.017605 0.713432432 419.204022 0.713432432 419.204022 23.3265405 424.109259 23.3265405 424.109259 5.69383784 483.206675 5.68410811 483.206675 23.3265405 488.017605 23.3265405"></polygon>
<polygon id="path92" fill="#F9A933" points="546.636588 0.828 546.636588 71.4171892 541.73135 71.4171892 541.73135 5.77313514 512.013371 5.69894595 512.018207 0.828"></polygon>
<path d="M565.954786,69.5254865 L565.89675,71.5918378 L560.99393,71.4276486 L561.076148,69.2846757 C561.083402,69.0596757 561.090656,68.8334595 561.090656,68.6048108 C561.090656,68.3785946 561.083402,68.1535946 561.073729,67.8507568 L561.036248,66.8242703 C560.131856,50.8444054 547.163263,38.3258919 531.515349,38.3258919 C515.284658,38.3258919 502.080294,51.866027 502.080294,68.5099459 C502.080294,68.8553514 502.062158,69.219 502.041604,69.6033243 C502.021049,69.9706216 501.995659,70.3427838 502.022259,70.8365676 L502.022259,71.8217027 L497.14362,71.8217027 L497.14362,70.9971081 C497.10493,70.406027 497.137575,69.8258919 497.17022,69.2299459 C497.18352,68.9854865 497.195611,68.7422432 497.195611,68.5099459 C497.195611,49.1502162 512.590827,33.399 531.515349,33.399 C549.419407,33.399 564.509935,47.6712973 565.872568,65.9412973 L565.954786,67.6841351 C565.964458,67.9906216 565.974131,68.2958919 565.974131,68.6048108 C565.974131,68.9149459 565.964458,69.2214324 565.954786,69.5254865" id="path96" fill="#40C1D5"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 KiB

View File

@@ -0,0 +1,45 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 110 110" style="enable-background:new 0 0 110 110;" xml:space="preserve">
<style type="text/css">
.st0{fill:#5763AB;}
.st1{fill:none;}
</style>
<title>Amazon_Webservice</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="Amazon_Webservice">
<g id="Group-69">
<g id="Group-68" transform="translate(5.789474, 16.644737)">
<g id="Group-67" transform="translate(0.192982, 23.447368)">
<polygon id="Path-61" class="st0" points="0.4,5.6 0.4,22.3 12.7,28.9 12.7,11.5 "/>
<polygon id="Path-62" class="st0" points="14.2,11.5 14.2,28.9 27.2,23 27.2,5.6 "/>
<polygon id="Path-63" class="st0" points="13.5,9.5 23.6,5.1 13.5,0 3.2,5.1 "/>
</g>
<g id="Group-67_1_" transform="translate(13.942982, 48.052632)">
<polygon id="Path-61_1_" class="st0" points="0.4,5.6 0.4,22.3 12.7,28.9 12.7,11.5 "/>
<polygon id="Path-62_1_" class="st0" points="14.2,11.5 14.2,28.9 27.2,23 27.2,5.6 "/>
<polygon id="Path-63_1_" class="st0" points="13.5,9.5 23.6,5.1 13.5,0 3.2,5.1 "/>
</g>
<g id="Group-67_2_" transform="translate(28.416667, 24.171053)">
<polygon id="Path-61_2_" class="st0" points="0.4,5.6 0.4,22.3 12.7,28.9 12.7,11.5 "/>
<polygon id="Path-62_2_" class="st0" points="14.2,11.5 14.2,28.9 27.2,23 27.2,5.6 "/>
<polygon id="Path-63_2_" class="st0" points="13.5,9.5 23.6,5.1 13.5,0 3.2,5.1 "/>
</g>
<g id="Group-67_3_" transform="translate(42.890351, 0.289474)">
<polygon id="Path-61_3_" class="st0" points="0.4,5.6 0.4,22.3 12.7,28.9 12.7,11.5 "/>
<polygon id="Path-62_3_" class="st0" points="14.2,11.5 14.2,28.9 27.2,23 27.2,5.6 "/>
<polygon id="Path-63_3_" class="st0" points="13.5,9.5 23.6,5.1 13.5,0 3.2,5.1 "/>
</g>
<g id="Group-67_4_" transform="translate(71.114035, 0.289474)">
<polygon id="Path-61_4_" class="st0" points="0.4,5.6 0.4,22.3 12.7,28.9 12.7,11.5 "/>
<polygon id="Path-62_4_" class="st0" points="14.2,11.5 14.2,28.9 27.2,23 27.2,5.6 "/>
<polygon id="Path-63_4_" class="st0" points="13.5,9.5 23.6,5.1 13.5,0 3.2,5.1 "/>
</g>
</g>
<rect id="Rectangle-11" class="st1" width="110" height="110"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 110 110" style="enable-background:new 0 0 110 110;" xml:space="preserve">
<style type="text/css">
.st0{fill:#818CCD;}
.st1{fill:#92DEE2;}
.st2{fill:#5763AB;}
.st3{fill:#29D0CA;}
.st4{fill:none;}
</style>
<title>Angular_js</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="Angular_js">
<g id="Group-2">
<g id="Group-66" transform="translate(17.023282, 17.274243)">
<polygon id="Path-57" class="st0" points="0,13.4 37.4,0 37.4,77.5 5.5,61.2 "/>
<polygon id="Path-58" class="st1" points="16.5,53.3 37.2,7.5 37.2,22.1 31.5,36.2 37.5,36.2 37.5,42.6 28.8,42.6 24.5,53.3
"/>
<polygon id="Path-57_1_" class="st2" points="74.3,13.4 36.9,0 36.9,77.5 68.8,61.2 "/>
<polygon id="Path-58_1_" class="st3" points="58,53.3 36.9,7.1 36.9,22.2 43,36.2 36.9,36.2 36.9,42.6 45.7,42.6 49.9,53.3
"/>
</g>
<rect id="Rectangle-9" class="st4" width="110" height="110"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,281 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="1358px" height="701px" viewBox="0 0 1358 701" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>best-web-development-sweden@2x</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0.962868649 0.880108503 21.1824401 0.880108503 21.1824401 263.178848 0.962868649 263.178848"></polygon>
<polygon id="path-3" points="-66.4358301 263.09523 88.5810118 263.09523 88.5810118 283.333302 -66.4358301 283.333302"></polygon>
<polygon id="path-5" points="-123.243281 -19.2743822 146.351234 -19.2743822 146.351234 0.963702438 -123.243281 0.963702438"></polygon>
<linearGradient x1="93.3958167%" y1="100%" x2="47.2239242%" y2="13.4126393%" id="linearGradient-7">
<stop stop-color="#C6C9DC" offset="0%"></stop>
<stop stop-color="#FCFDFF" offset="100%"></stop>
</linearGradient>
<polygon id="path-8" points="0.962936047 141.630301 29.2576186 0.927463662 192.567566 3.81858736 165.608079 141.630301"></polygon>
<linearGradient x1="0%" y1="71.6702355%" x2="104.617679%" y2="57.107133%" id="linearGradient-10">
<stop stop-color="#54CBD1" offset="0%"></stop>
<stop stop-color="#57EBF3" offset="100%"></stop>
</linearGradient>
<radialGradient cx="42.0546178%" cy="45.5410746%" fx="42.0546178%" fy="45.5410746%" r="40.697833%" gradientTransform="translate(0.420546,0.455411),scale(0.938979,1.000000),rotate(-69.910157),scale(1.000000,1.538504),translate(-0.420546,-0.455411)" id="radialGradient-11">
<stop stop-color="#5763AB" offset="0%"></stop>
<stop stop-color="#323C77" offset="100%"></stop>
</radialGradient>
<radialGradient cx="52.9469765%" cy="28.6240847%" fx="52.9469765%" fy="28.6240847%" r="54.1473232%" gradientTransform="translate(0.529470,0.286241),scale(0.837410,1.000000),rotate(108.260519),scale(1.000000,3.925275),translate(-0.529470,-0.286241)" id="radialGradient-12">
<stop stop-color="#EDE9F5" offset="0%"></stop>
<stop stop-color="#B4AAD7" offset="100%"></stop>
</radialGradient>
<filter x="-49.1%" y="-58.6%" width="198.2%" height="217.2%" filterUnits="objectBoundingBox" id="filter-13">
<feGaussianBlur stdDeviation="36.78125" in="SourceGraphic"></feGaussianBlur>
</filter>
<linearGradient x1="78.2262224%" y1="24.9293251%" x2="50%" y2="123.255884%" id="linearGradient-14">
<stop stop-color="#323C78" offset="0%"></stop>
<stop stop-color="#3C4681" offset="100%"></stop>
</linearGradient>
<path d="M4.00405319,43.3626991 C2.10004146,34.6822469 -0.764213708,28.2253388 2.10004146,16.50728 C4.96429662,4.78922132 37.9203107,-1.85217394 42.0782419,1.90096147 C46.2363242,5.65402659 45.5596345,7.66286276 62.0315956,16.4111359 C78.5035568,25.1593388 125.717667,35.3343122 135.823424,46.6829048 C145.929181,58.031427 147.810219,65.5350272 126.806991,65.5350272 L61.8394865,65.5350272 C50.179474,61.3086208 46.2576361,59.0324365 39.7210884,55.1201854 C38.3879628,60.0224119 39.7210884,64.1968807 39.7210884,64.1968807 L11.7422277,64.1968807 C11.7422277,64.1968807 5.90791377,52.043081 4.00405319,43.3626991 Z" id="path-15"></path>
<linearGradient x1="78.2262224%" y1="24.9293251%" x2="50%" y2="123.255884%" id="linearGradient-17">
<stop stop-color="#323C78" offset="0%"></stop>
<stop stop-color="#424C8C" offset="100%"></stop>
</linearGradient>
<path d="M17.3039278,73.2095411 C11.1044075,67.3568399 5.34318273,63.7837206 1.28920291,52.9535115 C-2.76463153,42.1231195 19.8156595,19.0956291 25.1438221,19.8285087 C30.47213,20.5614797 31.019745,22.5181116 48.8225415,20.5719977 C66.6256287,18.6258838 98.4688573,-3.0270345 112.621516,0.519012264 C126.774176,4.06524195 139.478787,4.13758785 122.802331,15.4590356 C114.964181,20.7803466 84.6179898,53.2106093 75.1987776,59.6054017 C63.6585928,62.5411271 59.3153234,62.8512724 52.0124321,63.274464 C53.6013445,67.8778036 56.9142195,70.4675308 56.9142195,70.4675308 L34.6991021,85.5490448 C34.6991021,85.5490448 23.5034481,79.0622423 17.3039278,73.2095411 Z" id="path-18"></path>
<linearGradient x1="87.5676604%" y1="16.2692604%" x2="57.9084106%" y2="80.0144172%" id="linearGradient-20">
<stop stop-color="#025AA2" offset="0%"></stop>
<stop stop-color="#025AA2" offset="100%"></stop>
</linearGradient>
<path d="M295.627195,147.906775 C338.893679,124.867538 363.548498,57.6108976 381.418624,38.6995968 C399.28887,19.7882961 407.179736,55.9697658 404.22561,66.621786 C401.271485,77.2738063 379.493171,148.86946 334.032874,206.69124 C334.032874,244.465219 290.037365,178.215797 295.627195,147.906775 Z" id="path-21"></path>
<filter x="-5.9%" y="-3.5%" width="111.9%" height="107.0%" filterUnits="objectBoundingBox" id="filter-22">
<feGaussianBlur stdDeviation="6" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0.000825005467 0 0 0 0 0.17067045 0 0 0 0 0.462517679 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<linearGradient x1="0%" y1="100%" x2="62.3886698%" y2="0%" id="linearGradient-23">
<stop stop-color="#FABFA8" offset="0%"></stop>
<stop stop-color="#D9A08A" offset="100%"></stop>
</linearGradient>
<linearGradient x1="51.1067829%" y1="56.1417042%" x2="86.1217409%" y2="30.0186078%" id="linearGradient-24">
<stop stop-color="#434D8A" offset="0%"></stop>
<stop stop-color="#5763AB" offset="100%"></stop>
</linearGradient>
<path d="M7.7535465,79.467341 C20.3549118,62.4662802 51.2064486,27.0038408 117.619689,14.0853099 C184.032536,1.16677905 245.029459,-10.8958645 356.98879,22.4099371 C366.206635,130.511947 376.71047,239.351992 387.311011,261.393861 C379.225217,271.233065 350.015706,278.750813 332.879823,278.750813 C326.663018,254.412575 307.182906,195.776709 297.286936,166.773973 C287.390572,137.770945 283.881531,101.768836 285.793544,89.0746323 C252.053857,98.6603369 182.940746,127.79697 158.709811,136.428188 C134.478481,145.059698 51.3402579,172.423588 23.8217181,150.393387 C-3.69721644,128.363477 -4.8482135,96.4684019 7.7535465,79.467341 Z" id="path-25"></path>
<linearGradient x1="50%" y1="100%" x2="100%" y2="39.0738882%" id="linearGradient-27">
<stop stop-color="#7B6ABA" offset="0%"></stop>
<stop stop-color="#B4AAD7" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="16.3760257%" x2="50%" y2="76.5597425%" id="linearGradient-28">
<stop stop-color="#DDA793" offset="0%"></stop>
<stop stop-color="#FABFA8" offset="100%"></stop>
</linearGradient>
<path d="M11.4223686,53.8418888 C8.08207902,37.0881009 1.63832081,7.72152756 0.351925921,1.44674201 C-0.934550799,-4.82804355 61.3875173,16.8463441 61.3875173,16.8463441 L69.2244608,57.9250687 L78.1947738,127.398027 C78.1947738,127.398027 14.7628219,70.5956768 11.4223686,53.8418888 Z" id="path-29"></path>
<linearGradient x1="76.2362807%" y1="86.2362536%" x2="67.0850084%" y2="62.8012707%" id="linearGradient-31">
<stop stop-color="#000000" stop-opacity="0.25" offset="0%"></stop>
<stop stop-color="#000000" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<path d="M106.791661,0.248552894 C106.791661,0.248552894 130.455304,4.0999216 132.085393,7.06050714 C147.473687,18.2378157 162.279077,51.5031174 168.600677,68.736671 C174.922277,85.9702246 187.044634,103.767565 197.972378,117.605008 C208.899861,131.442451 214.141806,134.297326 228.459872,144.53546 C242.777938,154.773593 248.037427,162.896352 239.934383,170.528851 C231.831339,178.161585 185.169967,175.197711 151.953091,216.701112 C122.935164,228.597484 122.971039,232.948039 114.349248,207.242414 C105.727718,181.536789 34.8349865,117.264856 23.3363838,108.205507 C11.8375192,99.1461575 16.2797386,90.4415239 13.3814549,62.693581 C10.4831712,34.9458731 -10.4235934,12.4472553 7.16119555,12.4472553 C21.0191709,17.6056698 34.5183959,7.06050714 40.6113906,7.06050714 C62.8107039,12.5874973 67.8656793,34.4368205 77.081373,29.8548781 C86.2970667,25.2729356 92.197855,25.2729356 92.197855,25.2729356 C94.3480002,29.635471 95.0395766,37.1075257 97.1897218,41.4700611 C99.3401289,45.8325965 108.336906,54.582568 112.335009,62.693581 L105.267103,39.090176 L107.238921,24.9769475 L106.791661,0.248552894 Z" id="path-32"></path>
<linearGradient x1="51.1067829%" y1="56.1417042%" x2="86.1217409%" y2="30.0186078%" id="linearGradient-34">
<stop stop-color="#6570B1" offset="0%"></stop>
<stop stop-color="#5763AB" offset="100%"></stop>
</linearGradient>
<linearGradient x1="0%" y1="100%" x2="62.3886698%" y2="0%" id="linearGradient-35">
<stop stop-color="#DDA48E" offset="0%"></stop>
<stop stop-color="#FABFA8" offset="100%"></stop>
</linearGradient>
<path d="M54.1259962,47.7073389 C70.9829679,54.5326244 125.574396,27.3648534 142.898063,29.7775086 C158.822482,31.9954812 138.61673,7.09131425 132.636467,2.68432188 C126.656204,-1.72255303 7.0832687,0.274720504 0.80700754,9.47231519 C-5.46908611,18.6699686 40.1464189,42.0469192 54.1259962,47.7073389 Z" id="path-36"></path>
<linearGradient x1="110.009435%" y1="19.1840632%" x2="13.8996672%" y2="50%" id="linearGradient-38">
<stop stop-color="#482D20" offset="0%"></stop>
<stop stop-color="#050504" offset="100%"></stop>
</linearGradient>
<path d="M218.351692,74.2173318 C218.351692,74.2173318 210.215457,61.8549617 216.504964,49.5938587 C222.79447,37.3327556 266,35 266,35 C266,35 278,5 251,1 C224,-3 221.612427,7.85051356 203.173211,15.3340471 C184.733994,22.8177664 169.683178,42.9540924 172.932372,74.2173318 C176.181565,105.480571 205.18408,131.078251 214.414588,135.788185 C211.730627,117.313194 211.611226,108.824796 211.611226,103.67932 C201.023135,108.571535 188.690618,84.309836 195.870789,77.9270461 C209.587105,65.7339498 216.504964,93.5058026 216.504964,93.5058026 C216.504964,93.5058026 218.351692,89.5515611 221.612427,85.8039413 C220.370113,79.1153068 218.351692,74.2173318 218.351692,74.2173318 Z" id="path-39"></path>
<filter x="-16.1%" y="-11.4%" width="132.2%" height="122.9%" filterUnits="objectBoundingBox" id="filter-40">
<feGaussianBlur stdDeviation="9" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="13" dy="12" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.13988904 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<path d="M162.493394,151.288531 C134.019625,135.63564 77.1415596,91.1348981 62.1918016,94.7669733 C47.2422063,98.3990486 51.1218056,105.14626 51.1218056,120.622338 C51.1218056,136.098581 129.252331,188.361645 141.282098,214.222113 C146.43174,225.292189 159.624818,252.637458 183.240831,248.181737 C206.856681,243.726016 199.692642,220.259438 194.602875,201.331555 C188.620043,179.082419 180.027003,160.92731 162.493394,151.288531 Z" id="path-41"></path>
<filter x="-10.1%" y="-9.7%" width="120.1%" height="119.5%" filterUnits="objectBoundingBox" id="filter-42">
<feGaussianBlur stdDeviation="6" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="18" dy="-8" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0.00392156863 0 0 0 0 0.278431373 0 0 0 0 0.501960784 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<path d="M182.408255,305.255012 C312.694417,386.669283 447.251019,395.566339 492.494172,323.160855 C546.828869,217.608904 360.519372,263.280276 230.233209,181.866005 C99.9464644,100.452132 103.166738,32.4947781 13.2985516,0.130422418 C-31.9440202,72.5363044 52.1215103,223.841138 182.408255,305.255012 Z" id="path-43"></path>
<path d="M-50.646727,202.478338 C17.355951,246.641031 95.2545331,247.376512 123.343996,204.121188 C151.433763,160.865863 119.07752,89.9995404 51.074842,45.836848 C-16.927836,1.67415564 -94.8264181,0.938425398 -122.916186,44.1939987 C-151.005648,87.4493236 -118.64971,158.315646 -50.646727,202.478338 Z" id="path-45"></path>
<filter x="-11.3%" y="-13.5%" width="122.6%" height="126.9%" filterUnits="objectBoundingBox" id="filter-46">
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="-27.5" dy="-39.3" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<path d="M187.922615,378.503665 C238.038252,355.133714 253.61836,282.473728 222.721315,216.213131 C191.824271,149.952533 126.150375,115.182903 76.0344918,138.552854 C25.9186092,161.922804 10.3387468,234.58279 41.2357917,300.843388 C72.1328365,367.103986 137.806732,401.873615 187.922615,378.503665 Z" id="path-47"></path>
<filter x="-10.8%" y="-9.0%" width="121.5%" height="118.0%" filterUnits="objectBoundingBox" id="filter-48">
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="-14.9" dy="-24.9" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<path d="M317.890666,490.182748 C368.006303,466.812797 383.586411,394.152812 352.689366,327.892214 C321.792322,261.631616 256.118426,226.861986 206.002543,250.231937 C155.88666,273.601887 140.306798,346.261873 171.203843,412.522471 C202.100888,478.783069 267.774784,513.552698 317.890666,490.182748 Z" id="path-49"></path>
<filter x="-10.8%" y="-9.0%" width="121.5%" height="118.0%" filterUnits="objectBoundingBox" id="filter-50">
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="-24.9" dy="-12.7" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<path d="M560.49745,527.730026 C610.613332,504.360075 626.193195,431.700089 595.296395,365.439492 C564.39935,299.178894 498.725209,264.409264 448.609572,287.779215 C398.493689,311.149165 382.913827,383.809151 413.810872,450.069749 C444.707916,516.330347 510.381812,551.099976 560.49745,527.730026 Z" id="path-51"></path>
<filter x="-7.9%" y="-6.6%" width="115.8%" height="113.2%" filterUnits="objectBoundingBox" id="filter-52">
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="-9.9" dy="12.6" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<path d="M388.833934,454.299677 C443.718672,461.038783 492.387509,432.488752 497.539116,390.531534 C502.690722,348.574317 462.373997,309.098051 407.489471,302.358944 C352.604945,295.619837 303.936107,324.169869 298.784713,366.126919 C293.633107,408.084136 333.94962,447.560402 388.833934,454.299677 Z" id="path-53"></path>
<filter x="-10.0%" y="-12.9%" width="119.9%" height="125.9%" filterUnits="objectBoundingBox" id="filter-54">
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="-18.8" dy="2.6" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<linearGradient x1="75.5386921%" y1="0%" x2="50%" y2="100%" id="linearGradient-55">
<stop stop-color="#BB3043" offset="0%"></stop>
<stop stop-color="#F25267" offset="100%"></stop>
</linearGradient>
</defs>
<g id="Illustration" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="StartUp" transform="translate(-47.000000, -4304.000000)">
<g id="best-web-development-sweden" transform="translate(725.500000, 4651.000000) scale(-1, 1) translate(-725.500000, -4651.000000) translate(46.000000, 4303.000000)">
<g id="laptop" transform="translate(855.000000, 258.000000)">
<g id="table" opacity="0.784688794" transform="translate(124.168919, 159.941043)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<use id="Rectangle-3" fill="#333C72" xlink:href="#path-1"></use>
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<use id="Rectangle-2-copy" fill="#5763AB" xlink:href="#path-3"></use>
<mask id="mask-6" fill="white">
<use xlink:href="#path-5"></use>
</mask>
<use id="Rectangle-2" fill="#5763AB" xlink:href="#path-5"></use>
</g>
<polygon id="front" fill="#D2D2D2" points="80.8411739 140.666641 109.135983 0.927463662 272.445988 3.81858736 244.523719 140.666641"></polygon>
<polygon id="bottom" fill="#D2D2D2" points="0.925769071 132.811437 255.092067 132.811437 255.092067 141.630366 8.6283312 141.630366"></polygon>
<g id="back" transform="translate(89.506757, 0.000000)">
<mask id="mask-9" fill="white">
<use xlink:href="#path-8"></use>
</mask>
<use id="Shape-9" fill="url(#linearGradient-7)" xlink:href="#path-8"></use>
<path d="M98.2094441,57.7868404 C106.185901,57.7868404 112.652061,63.1802118 112.652061,69.8333102 C112.652061,76.4864086 106.185901,81.879834 98.2094441,81.879834 C90.2330826,81.879834 83.7669227,76.4864086 83.7669227,69.8333102 C83.7669227,63.1802118 90.2330826,57.7868404 98.2094441,57.7868404 Z" id="Ellipse-5" fill-opacity="0.1" fill="#000000" mask="url(#mask-9)"></path>
</g>
</g>
<g id="message" transform="translate(1134.000000, 20.000000)">
<g id="rocket">
<g id="Group-7" transform="translate(70.111195, 64.264561) scale(-1, 1) rotate(-10.000000) translate(-70.111195, -64.264561) translate(9.111195, 9.764561)">
<polygon id="Shape-5" fill="url(#linearGradient-10)" points="0.971974 66.588645 20.983268 40.339047 85.84713 81.095019 36.164094 23.760365 60.315702 0.96465 121.039372 108.03535"></polygon>
<polygon id="Shape-6" fill="#4DBBC2" points="20.2932571 41.0298157 35.474159 38.9574604 88.6073512 83.1673752"></polygon>
<polygon id="Shape-7" fill="#4DBBC2" points="34.7841318 38.9574247 36.8541788 23.7603283 87.2273122 81.7857491"></polygon>
</g>
</g>
</g>
<g id="Person" transform="translate(0.000000, 75.000000)">
<path d="M164.089593,563.097922 C285.92073,621.542865 464.798296,613.823139 545.037787,455.217337 C598.047976,353.164719 484.945462,230.96384 360.710277,145.991953 C249.207285,69.7291333 150.031499,52.4350939 91.8402222,95.3691007 C85.1950607,100.271776 73.3837847,99.3081683 68.0182405,105.979078 C-79.6822664,274.574945 42.2591359,504.652407 164.089593,563.097922 Z" id="chair" fill="url(#radialGradient-11)"></path>
<path d="M239.345129,417.071637 C369.631579,498.485917 504.188158,507.382814 549.431044,434.977478 C591.409743,356.751355 489.569011,215.274312 359.282561,133.860032 C228.996111,52.4462233 115.478951,39.5415329 70.2354954,111.94734 C24.9931778,184.352676 109.058679,335.657828 239.345129,417.071637 Z" id="cushion" fill="url(#radialGradient-12)"></path>
<path d="M268.78836,359.956512 C327.205524,396.481892 387.537307,400.47336 407.823079,367.989718 C426.64527,332.89466 380.98245,269.422962 322.565285,232.897583 C264.14812,196.372415 213.249883,190.582906 192.963857,223.066759 C172.67834,255.550402 210.371195,323.431344 268.78836,359.956512 Z" id="shadow" fill="#94B0D7" filter="url(#filter-13)"></path>
<g id="shoe" transform="translate(640.156550, 554.756447)">
<mask id="mask-16" fill="white">
<use xlink:href="#path-15"></use>
</mask>
<use id="Path-17" fill="url(#linearGradient-14)" xlink:href="#path-15"></use>
<path d="M4.07438743,57.6183138 C10.1020976,42.0870263 33.5945278,13.1115189 40.4011624,3.68183696 C44.9389187,-2.60461768 29.9043591,1.09992201 -4.70251657,14.795456 C-2.86972066,53.6982196 0.0559140052,67.9725055 4.07438743,57.6183138 Z" id="Path-21" fill="#3D82F0" style="mix-blend-mode: multiply;" opacity="0.200000003" mask="url(#mask-16)"></path>
</g>
<g id="shoe" transform="translate(681.628328, 289.074499)">
<mask id="mask-19" fill="white">
<use xlink:href="#path-18"></use>
</mask>
<use id="Path-17-Copy" fill="url(#linearGradient-17)" xlink:href="#path-18"></use>
<path d="M26.4768595,83.2628267 C17.1500804,63.9393405 26.7565233,20.3425332 22.5022349,16.4818273 C19.6660426,13.9080233 11.3134865,24.3078603 -2.5554333,47.6813383 C-9.15184812,54.2247026 -7.15018576,62.3881846 3.44955379,72.1717843 C19.3491631,86.8471838 35.8036385,102.586313 26.4768595,83.2628267 Z" id="Path-19" fill="#5763AB" style="mix-blend-mode: multiply;" opacity="0.200000003" mask="url(#mask-19)"></path>
</g>
<g id="sleeve">
<use fill="url(#linearGradient-20)" fill-rule="evenodd" xlink:href="#path-21"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-22)" xlink:href="#path-21"></use>
</g>
<path d="M277.118998,71.5913936 C277.118998,71.5913936 379.673163,31.0324812 393.537208,33.7138671 C407.40112,36.3951741 365.964615,83.6575117 357.486649,87.4711348 C349.008683,91.2849158 337.4858,100.588966 324.734995,100.920379 C311.984189,101.25195 282.675028,107.565069 282.675028,107.565069 L277.118998,71.5913936 Z" id="arm" fill="url(#linearGradient-23)"></path>
<g id="leg" transform="translate(294.686901, 296.111748)">
<mask id="mask-26" fill="white">
<use xlink:href="#path-25"></use>
</mask>
<use id="Path-7" fill="url(#linearGradient-24)" xlink:href="#path-25"></use>
<path d="M236.671156,108.800007 C236.671156,93.7353609 274.816424,14.2268459 285.030845,5.7268689 C291.840458,0.0602175617 285.133884,-2.35179575 264.911121,-1.50917104 C218.8415,46.3086312 192.781804,83.0783573 186.732033,108.800007 C177.657376,147.382483 236.671156,123.864654 236.671156,108.800007 Z" id="Path" fill="url(#linearGradient-27)" style="mix-blend-mode: multiply;" opacity="0.300000012" mask="url(#mask-26)"></path>
</g>
<g id="neck" transform="translate(207.892439, 103.338109)">
<mask id="mask-30" fill="white">
<use xlink:href="#path-29"></use>
</mask>
<use id="Path-4" fill="url(#linearGradient-28)" xlink:href="#path-29"></use>
<path d="M3.75252576,3.19261919 C3.75252576,9.49979504 27.4019056,36.4712707 40.1780516,43.8650255 C48.6954824,48.7941954 60.6269618,51.0303993 75.9724899,50.5736373 L72.4658045,14.2533367 L3.75252576,-3.09723455 C3.75252576,-3.10878263 3.75252576,-1.01216472 3.75252576,3.19261919 Z" id="Path-22" fill="#7B6ABA" style="mix-blend-mode: multiply;" opacity="0.200000003" mask="url(#mask-30)"></path>
</g>
<g id="shirt" transform="translate(166.867945, 142.624642)">
<mask id="mask-33" fill="white">
<use xlink:href="#path-32"></use>
</mask>
<g id="Path-9">
<use fill="#025AA2" xlink:href="#path-32"></use>
<use fill="url(#linearGradient-31)" xlink:href="#path-32"></use>
</g>
</g>
<path d="M404.144321,302.649906 C439.019466,270.636673 538.843848,208.678365 595.770779,199.216937 C628.382083,204.641613 713.249169,296.627607 713.249169,296.627607 C709.422386,300.660062 699.335615,336.41422 683.404461,347.653234 C643.281416,314.345432 601.449495,298.792941 590.216621,281.570548 C576.20564,290.100327 540.189326,315.00943 519.473153,351.60427 C498.75739,388.19911 485.014436,429.890807 461.406286,430.934436 C437.798135,431.978066 404.505253,434.674407 373.836733,414.941429 C356.025279,403.480606 304.745412,377.934963 329.657932,361.196779 C343.935295,351.60427 389.523703,316.070489 404.144321,302.649906 Z" id="leg" fill="url(#linearGradient-34)"></path>
<path d="M268.202361,35.4722042 C270.564565,41.4337155 283.524895,67.5973433 284.773304,74.1189743 C286.021598,80.6408344 298.355375,124.143312 291.008244,130.842408 C283.660998,137.541733 261.629341,140.933613 255.47242,138.78834 C249.315384,136.643181 236.079068,135.268946 230.923325,126.220647 C226.960999,119.266524 214.372201,103.123643 211.070111,104.047972 C209.863747,106.527324 205.658889,109.176464 203.553309,107.474452 C194.455519,100.120489 186.657004,92.1559972 190.358809,74.1189743 C194.060615,56.0820658 207.039161,47.1830481 220.954386,41.3276261 C234.869611,35.4722042 265.840043,29.5108075 268.202361,35.4722042 Z" id="face" fill="#FABFA8"></path>
<g id="arm" transform="translate(55.005325, 87.822350)">
<mask id="mask-37" fill="white">
<use xlink:href="#path-36"></use>
</mask>
<use id="Path-13" fill="url(#linearGradient-35)" xlink:href="#path-36"></use>
<path d="M20.9357307,10.3300824 C24.4799379,11.6197539 96.3756542,42.9506507 114.163568,38.6108732 C126.022177,35.7176882 111.24641,41.1863916 69.8362671,55.0169834 C34.8731047,24.365935 18.5729259,9.47030132 20.9357307,10.3300824 Z" id="Path-24" fill="#DBA28C" opacity="0.5" mask="url(#mask-37)"></path>
</g>
<g id="hair">
<use fill="url(#linearGradient-38)" fill-rule="evenodd" xlink:href="#path-39"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-40)" xlink:href="#path-39"></use>
</g>
<g id="sleeve">
<use fill="url(#linearGradient-20)" fill-rule="evenodd" xlink:href="#path-41"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-42)" xlink:href="#path-41"></use>
</g>
<g id="cushion" transform="translate(56.937167, 111.816619)">
<g id="Mask-by-Oval">
<g id="Oval-3-+-Oval-3-Copy-+-Oval-3-Copy-2-+-Oval-3-Copy-4-+-Oval-3-Copy-3-Mask">
<mask id="mask-44" fill="white">
<use xlink:href="#path-43"></use>
</mask>
<use id="Mask" fill-opacity="0" fill="#000000" xlink:href="#path-43"></use>
<g id="Oval-3" mask="url(#mask-44)">
<use fill="#EDE9F5" fill-rule="evenodd" xlink:href="#path-45"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-46)" xlink:href="#path-45"></use>
</g>
<g id="Oval-3-Copy" mask="url(#mask-44)">
<use fill="#EDE9F5" fill-rule="evenodd" xlink:href="#path-47"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-48)" xlink:href="#path-47"></use>
</g>
<g id="Oval-3-Copy-2" mask="url(#mask-44)">
<use fill="#EDE9F5" fill-rule="evenodd" xlink:href="#path-49"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-50)" xlink:href="#path-49"></use>
</g>
<g id="Oval-3-Copy-4" mask="url(#mask-44)">
<use fill="#EDE9F5" fill-rule="evenodd" xlink:href="#path-51"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-52)" xlink:href="#path-51"></use>
</g>
<g id="Oval-3-Copy-3" mask="url(#mask-44)">
<use fill="#EDE9F5" fill-rule="evenodd" xlink:href="#path-53"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-54)" xlink:href="#path-53"></use>
</g>
</g>
</g>
</g>
<path d="M218,210.830938 C218,210.830938 232.708406,209.24795 234.472265,208.122078 C236.236185,206.996205 241.240268,214.02846 241.240268,214.02846 L237.240268,215.057639 L227.240268,218.10555 L218,210.830938 Z" id="pocket" fill="url(#linearGradient-55)"></path>
</g>
<g id="Group-4" transform="translate(1305.000000, 27.000000) scale(1, -1) translate(-1305.000000, -27.000000) translate(1251.000000, 0.000000)" fill="#5763AB" fill-rule="nonzero">
<path d="M105.164005,45.6352861 C107.022285,46.8298948 107.560297,49.3047502 106.365688,51.1630304 C105.17108,53.0213105 102.696224,53.5593226 100.837944,52.3647139 L30.8379441,7.3647139 C28.9796639,6.17010522 28.4416518,3.69524981 29.6362605,1.83696963 C30.8308692,-0.0213105406 33.3057246,-0.559322586 35.1640048,0.635286098 L105.164005,45.6352861 Z" id="Path-44"></path>
<path d="M44.3730582,45.7800386 C46.1515384,47.0904978 46.5309445,49.5945779 45.2204853,51.3730582 C43.9100262,53.1515384 41.4059461,53.5309445 39.6274658,52.2204853 L1.62746585,24.2204853 C-0.151014401,22.9100262 -0.530420481,20.4059461 0.780038648,18.6274658 C2.09049778,16.8489856 4.5945779,16.4695795 6.37305815,17.7800386 L44.3730582,45.7800386 Z" id="Path-44-Copy"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1400.8 96.4"><title>bg-saburly-white</title><path d="M417.7,96.4C655.2,93.3,743.6,0,983.1,0h417.7V96.4H417.7Z" transform="translate(0 0)" style={{ fill: '#fff' }}/></svg>

After

Width:  |  Height:  |  Size: 223 B

View File

@@ -0,0 +1,66 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 164 140" style="enable-background:new 0 0 164 140;" xml:space="preserve">
<style type="text/css">
.st0{fill:#92DEE2;}
.st1{fill:#FFFFFF;stroke:#5763AB;}
.st2{fill:none;stroke:#5763AB;}
.st3{fill:none;stroke:#646EF2;stroke-width:2;}
.st4{fill:none;stroke:#646EF2;}
.st5{fill:#FFFFFF;stroke:#5763AB;stroke-width:2;}
.st6{fill:none;stroke:#5763AB;stroke-width:2;}
.st7{fill:none;}
.st8{fill:#5763AB;}
</style>
<title>Code_reviews</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="Code_reviews">
<g id="Group-42" transform="translate(18.000000, 14.000000)">
<g id="Group-38">
<circle id="Oval-7" class="st0" cx="55" cy="55" r="55"/>
<g id="Group-35" transform="translate(9.000000, 2.000000)">
<g id="Group-34">
<polygon id="Path-10" class="st1" points="0,0 44,0 44,58 0,58 "/>
<path id="Path-2" class="st2" d="M9,18.5h14"/>
<path id="Path-2_1_" class="st2" d="M9,25.5h14"/>
<path id="Path-2_2_" class="st2" d="M9,32.5h14"/>
<path id="Path-2_3_" class="st2" d="M9,39.5h14"/>
<polyline id="Path-11" class="st3" points="19,46.4 23.2,53 35,38 "/>
<path id="Path-2_4_" class="st2" d="M9,10.5h14"/>
</g>
<g id="Group-34_1_" transform="translate(13.000000, 9.000000)">
<polygon id="Path-10_1_" class="st1" points="0,0 44,0 44,58 0,58 "/>
<path id="Path-2_5_" class="st2" d="M9,18.5h14"/>
<path id="Path-2_6_" class="st2" d="M9,25.5h14"/>
<path id="Path-2_7_" class="st2" d="M9,32.5h14"/>
<path id="Path-2_8_" class="st2" d="M9,39.5h14"/>
<polyline id="Path-11_1_" class="st3" points="19,46.4 23.2,53 35,38 "/>
<path id="Path-2_9_" class="st2" d="M9,10.5h14"/>
</g>
<g id="Group-34_2_" transform="translate(29.000000, 14.000000)">
<polygon id="Path-10_2_" class="st1" points="0,0 44,0 44,58 0,58 "/>
<path id="Path-2_10_" class="st2" d="M9,18.5h14"/>
<path id="Path-2_11_" class="st2" d="M9,25.5h14"/>
<path id="Path-2_12_" class="st2" d="M9,32.5h14"/>
<path id="Path-2_13_" class="st4" d="M9,39.5h14"/>
<path id="Path-2_14_" class="st2" d="M9,10.5h14"/>
</g>
</g>
</g>
<g id="Group-40" transform="translate(37.000000, 43.000000)">
<g id="Group-39" transform="translate(4.000000, 2.000000)">
<ellipse id="Oval-8" class="st5" cx="30.2" cy="30.1" rx="30.2" ry="30.1"/>
<path id="Path-19" class="st6" d="M55.2,47.7l31.5,19"/>
</g>
<g id="ic_code">
<polygon id="Bounds" class="st7" points="0,0 63,0 63,63 0,63 "/>
<path id="Icon" class="st8" d="M29.1,42.8l-10-10.3l10-10.4L26.1,19L13,32.5L26.1,46L29.1,42.8L29.1,42.8z M39.9,42.8l10-10.3
l-10-10.4l3.1-3.1L56,32.5L42.9,46L39.9,42.8L39.9,42.8z"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -0,0 +1,71 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 164 140" style="enable-background:new 0 0 164 140;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
.st1{fill:#92DEE2;}
.st2{fill:#5763AB;}
.st3{fill:none;}
</style>
<title>High_quality_code</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="High_quality_code">
<g id="Group-36" transform="translate(30.000000, 1.000000)">
<path id="Path-17" class="st0" d="M12.7,55.9C7.5,64.3,4.9,69.8,5,72.2c0.2,3.6,31,14.9,33.9,14.1c1.9-0.6,5-6.4,9.2-17.4
L12.7,55.9z"/>
<path id="Path-17_1_" class="st0" d="M50,68.7c3.3,9.6,5.8,15.3,7.5,17C60,88.3,91.3,76.3,93,73.8c1.1-1.7-1.4-7.7-7.4-17.9
L50,68.7z"/>
<path id="Path-17_2_" class="st0" d="M46.6,43.7c-1-9.9-2.4-15.7-4-17.5c-2.4-2.8-35.7,9-37.4,11.4c-1.2,1.6,1.2,7.5,7,17.6
L46.6,43.7z"/>
<path id="Path-17_3_" class="st0" d="M85.3,55.7c5.7-8.1,8.5-13.4,8.5-15.8c0-3.6-32.8-16.6-35.7-16c-2,0.5-4,6.4-6.3,17.9
L85.3,55.7z"/>
<polygon id="Path-18" class="st0" points="49,69 85.5,55.8 49.8,44 13,55.8 "/>
<g id="Group-19" transform="translate(3.000000, 0.000000)">
<g id="Page-1" transform="translate(0.000000, 24.000000)">
<g id="Group-3">
<path id="Fill-1" class="st1" d="M96.9,106.2c0-0.1,0.1-0.2,0.1-0.3c-1.9-2.5-3.8-5.1-5.7-7.6c-0.1-0.2-0.5-0.3-0.8-0.3
c-0.8,0-1.6,0.1-2.4,0.1c-1,0.1-2.4,1.7-2.2,2.6c0.5,2.9,1.1,5.7,1.7,8.6c0,0.2,0.2,0.4,0.3,0.7c0.9-1.4,1.8-2.6,2.6-3.8
c0.5-0.7,1-0.9,1.8-0.7C93.9,105.7,95.4,105.9,96.9,106.2 M73.2,111c0.6-3.2,1.1-6.1,1.7-8.9c0.3-1.4,0.2-2.6-1-3.4
c-0.4-0.2-0.8-0.5-1.3-0.6s-1.2,0-1.7-0.1c-0.7-0.2-1.1,0.1-1.5,0.7c-1.3,1.9-2.6,3.8-3.9,5.7c-0.5,0.7-0.9,1.3-1.5,2.2
c0.5,0,0.9,0,1.2-0.1c1.1-0.2,2.2-0.4,3.3-0.6c0.9-0.2,1.5-0.1,2,0.8C71.2,108.1,72.1,109.4,73.2,111 M73.7,65.8
c-5.8-1.1-9.6,2.4-9.1,8.2c0,0.4-0.3,0.9-0.6,1.2c-4,3-4.1,8.6,0,11.6c0.6,0.4,0.7,0.8,0.6,1.5c-0.8,4.9,3.2,8.9,8.1,8.1
c0.7-0.1,1.1,0,1.5,0.6c2.9,4,8.5,4,11.5,0c0.4-0.6,0.8-0.8,1.5-0.7c5,0.8,8.9-3.1,8.1-8.2c-0.1-0.7,0-1,0.6-1.4
c4.1-2.9,4.1-8.7,0-11.6c-0.6-0.4-0.6-0.7-0.5-1.4c0.8-4.9-3.1-8.9-8-8.1c-0.9,0.1-1.2-0.1-1.7-0.8c-1.2-1.7-2.9-2.7-5.1-2.9
C77.5,61.8,75.3,63.2,73.7,65.8 M45,18.8c-0.1-0.3-0.1-0.5-0.2-0.6c-2.1-4.7-4.3-9.5-6.4-14.2c-0.8-1.8-2.4-2.4-4.2-1.7
c-10,3.5-20.1,6.9-30.1,10.4c-2,0.7-2.5,2-1.7,3.9c2,4.5,4.1,9,6.1,13.6c0.4,1,0.8,1,1.7,0.7c8.3-2.9,16.6-5.8,25-8.7
C38.4,21,41.7,19.9,45,18.8 M47,45.8c2.3,5.1,4.4,10,6.6,15c0.9,2,2.4,2.7,4.5,1.9c10-3.5,20-7.1,30-10.7
c1.9-0.7,2.5-2,1.6-3.9c-1.8-4.2-3.7-8.4-5.5-12.5c-0.4-0.9-0.8-1.7-1.2-2.6C71,37.3,59,41.5,47,45.8 M9.1,33
c-0.2,0.4-0.4,0.7-0.5,1c-2.1,4.7-4.1,9.4-6.2,14c-0.9,2-0.3,3.3,1.7,4c10,3.6,20,7.1,30,10.7c2,0.7,3.5,0.1,4.4-1.9
c2.1-4.7,4.2-9.5,6.3-14.2c0.1-0.2,0.1-0.5,0.2-0.8C33,41.5,21.1,37.3,9.1,33 M82.9,31c0.2-0.3,0.4-0.6,0.5-0.9
c2.1-4.5,4.1-9,6.2-13.6c1-2.1,0.5-3.3-1.8-4C77.9,9.1,68,5.7,58.1,2.3c-2.2-0.8-3.6-0.1-4.6,2c-2,4.4-4,8.8-6,13.2
c-0.2,0.4-0.3,0.7-0.5,1.2C59,22.8,70.9,26.9,82.9,31 M81,32.1c-0.6-0.2-0.8-0.4-1-0.5c-11.1-3.8-22.2-7.7-33.3-11.5
c-0.5-0.2-1.2-0.1-1.7,0c-11,3.8-22,7.6-32.9,11.4c-0.3,0.1-0.6,0.3-1.1,0.5c0.5,0.2,0.7,0.3,0.9,0.4
c11,3.8,22.1,7.7,33.1,11.4c0.6,0.2,1.4,0.2,2,0c7.9-2.7,15.9-5.5,23.8-8.2C74.1,34.5,77.4,33.3,81,32.1 M50.5,6.3
C51,5.2,51.5,4.1,52,3c1.2-2.6,3.6-3.6,6.4-2.7C67.2,3.4,76.1,6.5,85,9.6c1.2,0.4,2.4,0.8,3.6,1.3c2.6,0.9,3.6,3.2,2.4,5.8
c-2.1,4.8-4.2,9.5-6.4,14.3c-0.4,0.8-0.4,1.4,0,2.2c2.1,4.6,4.2,9.2,6.2,13.8c1.4,3.2,0.5,5.3-2.8,6.4c-2.8,1-2.8,1-2.8,3.9
c0,0.8,0.1,1.6,0,2.3c-0.3,1.8,0.4,3.2,1.9,4.2c0.3,0.2,0.6,0.3,0.9,0.3c5.7-0.2,9.7,3.8,9.4,9.4c0,0.3,0.2,0.8,0.5,1.1
c4.1,3.9,4.1,9.4,0,13.3c-0.2,0.2-0.5,0.6-0.5,0.9c0.2,3.8-1.3,6.7-4.6,8.5c-0.1,0-0.1,0.1-0.3,0.3c2.7,3.7,5.4,7.3,8.3,11.3
c-2.6-0.4-4.9-0.7-7.2-1.2c-1.3-0.3-2.1-0.1-2.8,1.1c-1.2,2-2.6,3.9-4.1,6.1c-0.9-4.8-1.8-9.3-2.7-13.9c-2.5,1-4.8,1.1-7.3,0
c-0.9,4.6-1.8,9.1-2.7,13.8c-0.3-0.3-0.5-0.5-0.6-0.7c-1.3-1.8-2.6-3.7-3.8-5.6c-0.5-0.9-1.1-1.1-2.1-0.9
c-2.1,0.4-4.3,0.7-6.4,1.1c-0.3,0-0.6,0-1.2,0.1c2.8-3.9,5.5-7.5,8.2-11.2c-3.9-2.9-4.3-3.5-5-8.2c-0.3,0.1-0.6,0.2-1,0.3
c-4.2,1.4-8.3,2.9-12.5,4.3c-2.7,0.9-5.4,0.9-8.1,0C31.3,90.4,21,86.8,10.6,83.3c-2.9-1-4.4-3.1-4.4-6.2c0-7.2,0-14.4,0-21.6
c0-0.8-0.2-1.3-1-1.5s-1.5-0.5-2.3-0.8c-2.6-1-3.6-3.2-2.5-5.8c2.1-4.8,4.2-9.5,6.4-14.3c0.4-0.8,0.3-1.4,0-2.2
c-2.1-4.6-4.2-9.3-6.2-14c-1.3-3-0.4-5.2,2.7-6.2c9.9-3.5,19.9-6.9,29.8-10.4c2.9-1,5.2,0,6.5,2.8c1.9,4.3,3.8,8.5,5.7,12.8
c0.1,0.2,0.2,0.5,0.5,0.9C47.4,13.2,49,9.7,50.5,6.3z"/>
<path id="Fill-4" class="st2" d="M80.4,92C74.7,91.9,70,87,70,81c0-6.2,4.7-11,10.6-11C86.4,70,91,74.9,91,81
S86.2,92.1,80.4,92z"/>
</g>
</g>
<circle id="Oval-3" class="st2" cx="47" cy="29" r="28"/>
<g id="ic_code" transform="translate(17.000000, 0.000000)">
<polygon id="Bounds" class="st3" points="0,0 58,0 58,58 0,58 "/>
<path id="Icon" class="st0" d="M24,38.2L14.7,29l9.3-9.2L21.2,17L9,29l12.2,12L24,38.2L24,38.2z M34,38.2l9.3-9.2L34,19.8
l2.8-2.8L49,29L36.8,41L34,38.2L34,38.2z"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 183 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 114 KiB

View File

@@ -0,0 +1,302 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="1198px" height="668px" viewBox="0 0 1198 668" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>Artwork@2x</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0.962868649 0.880108503 21.1824401 0.880108503 21.1824401 263.178848 0.962868649 263.178848"></polygon>
<polygon id="path-3" points="-66.4358301 263.09523 88.5810118 263.09523 88.5810118 283.333302 -66.4358301 283.333302"></polygon>
<polygon id="path-5" points="-123.243281 -19.2743822 146.351234 -19.2743822 146.351234 0.963702438 -123.243281 0.963702438"></polygon>
<linearGradient x1="93.3958167%" y1="100%" x2="47.2239242%" y2="13.4126393%" id="linearGradient-7">
<stop stop-color="#5763AB" offset="0%"></stop>
<stop stop-color="#E3E7FF" offset="100%"></stop>
</linearGradient>
<polygon id="path-8" points="0.962936047 141.630301 29.2576186 0.927463662 192.567566 3.81858736 165.608079 141.630301"></polygon>
<linearGradient x1="0%" y1="71.6702355%" x2="104.617679%" y2="57.107133%" id="linearGradient-10">
<stop stop-color="#54CBD1" offset="0%"></stop>
<stop stop-color="#57EBF3" offset="100%"></stop>
</linearGradient>
<radialGradient cx="42.0546178%" cy="45.5410746%" fx="42.0546178%" fy="45.5410746%" r="40.697833%" gradientTransform="translate(0.420546,0.455411),scale(0.938979,1.000000),rotate(-69.910157),scale(1.000000,1.538504),translate(-0.420546,-0.455411)" id="radialGradient-11">
<stop stop-color="#5763AB" offset="0%"></stop>
<stop stop-color="#323C77" offset="100%"></stop>
</radialGradient>
<radialGradient cx="52.9469765%" cy="28.6240847%" fx="52.9469765%" fy="28.6240847%" r="54.1473232%" gradientTransform="translate(0.529470,0.286241),scale(0.837410,1.000000),rotate(108.260519),scale(1.000000,3.925275),translate(-0.529470,-0.286241)" id="radialGradient-12">
<stop stop-color="#EDE9F5" offset="0%"></stop>
<stop stop-color="#B4AAD7" offset="100%"></stop>
</radialGradient>
<filter x="-49.1%" y="-58.6%" width="198.2%" height="217.2%" filterUnits="objectBoundingBox" id="filter-13">
<feGaussianBlur stdDeviation="36.78125" in="SourceGraphic"></feGaussianBlur>
</filter>
<linearGradient x1="78.2262224%" y1="24.9293251%" x2="50%" y2="123.255884%" id="linearGradient-14">
<stop stop-color="#5763AB" offset="0%"></stop>
<stop stop-color="#3C4681" offset="100%"></stop>
</linearGradient>
<path d="M4.00405319,43.3626991 C2.10004146,34.6822469 -0.764213708,28.2253388 2.10004146,16.50728 C4.96429662,4.78922132 37.9203107,-1.85217394 42.0782419,1.90096147 C46.2363242,5.65402659 45.5596345,7.66286276 62.0315956,16.4111359 C78.5035568,25.1593388 125.717667,35.3343122 135.823424,46.6829048 C145.929181,58.031427 147.810219,65.5350272 126.806991,65.5350272 L61.8394865,65.5350272 C50.179474,61.3086208 46.2576361,59.0324365 39.7210884,55.1201854 C38.3879628,60.0224119 39.7210884,64.1968807 39.7210884,64.1968807 L11.7422277,64.1968807 C11.7422277,64.1968807 5.90791377,52.043081 4.00405319,43.3626991 Z" id="path-15"></path>
<linearGradient x1="78.2262224%" y1="24.9293251%" x2="50%" y2="123.255884%" id="linearGradient-17">
<stop stop-color="#5763AB" offset="0%"></stop>
<stop stop-color="#424C8C" offset="100%"></stop>
</linearGradient>
<path d="M17.3039278,73.2095411 C11.1044075,67.3568399 5.34318273,63.7837206 1.28920291,52.9535115 C-2.76463153,42.1231195 19.8156595,19.0956291 25.1438221,19.8285087 C30.47213,20.5614797 31.019745,22.5181116 48.8225415,20.5719977 C66.6256287,18.6258838 98.4688573,-3.0270345 112.621516,0.519012264 C126.774176,4.06524195 139.478787,4.13758785 122.802331,15.4590356 C114.964181,20.7803466 84.6179898,53.2106093 75.1987776,59.6054017 C63.6585928,62.5411271 59.3153234,62.8512724 52.0124321,63.274464 C53.6013445,67.8778036 56.9142195,70.4675308 56.9142195,70.4675308 L34.6991021,85.5490448 C34.6991021,85.5490448 23.5034481,79.0622423 17.3039278,73.2095411 Z" id="path-18"></path>
<linearGradient x1="87.5676604%" y1="16.2692604%" x2="57.9084106%" y2="80.0144172%" id="linearGradient-20">
<stop stop-color="#F5F8FF" offset="0%"></stop>
<stop stop-color="#FFFFFF" offset="100%"></stop>
</linearGradient>
<path d="M295.627195,188.906775 C338.893679,165.867538 363.548498,98.6108976 381.418624,79.6995968 C399.28887,60.7882961 407.179736,96.9697658 404.22561,107.621786 C401.271485,118.273806 379.493171,189.86946 334.032874,247.69124 C334.032874,285.465219 290.037365,219.215797 295.627195,188.906775 Z" id="path-21"></path>
<filter x="-5.9%" y="-3.5%" width="111.9%" height="107.0%" filterUnits="objectBoundingBox" id="filter-22">
<feGaussianBlur stdDeviation="6" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0.898039216 0 0 0 0 0.941176471 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<linearGradient x1="0%" y1="100%" x2="62.3886698%" y2="0%" id="linearGradient-23">
<stop stop-color="#FABFA8" offset="0%"></stop>
<stop stop-color="#D9A08A" offset="100%"></stop>
</linearGradient>
<linearGradient x1="51.1067829%" y1="56.1417042%" x2="86.1217409%" y2="30.0186078%" id="linearGradient-24">
<stop stop-color="#7B6ABA" offset="0%"></stop>
<stop stop-color="#B4AAD7" offset="100%"></stop>
</linearGradient>
<path d="M7.7535465,79.467341 C20.3549118,62.4662802 51.2064486,27.0038408 117.619689,14.0853099 C184.032536,1.16677905 245.029459,-10.8958645 356.98879,22.4099371 C366.206635,130.511947 376.71047,239.351992 387.311011,261.393861 C379.225217,271.233065 350.015706,278.750813 332.879823,278.750813 C326.663018,254.412575 307.182906,195.776709 297.286936,166.773973 C287.390572,137.770945 283.881531,101.768836 285.793544,89.0746323 C252.053857,98.6603369 182.940746,127.79697 158.709811,136.428188 C134.478481,145.059698 51.3402579,172.423588 23.8217181,150.393387 C-3.69721644,128.363477 -4.8482135,96.4684019 7.7535465,79.467341 Z" id="path-25"></path>
<filter x="-5.7%" y="-7.9%" width="111.4%" height="115.8%" filterUnits="objectBoundingBox" id="filter-27">
<feGaussianBlur stdDeviation="14" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="16" dy="4" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<linearGradient x1="50%" y1="100%" x2="100%" y2="39.0738882%" id="linearGradient-28">
<stop stop-color="#7B6ABA" offset="0%"></stop>
<stop stop-color="#B4AAD7" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="16.3760257%" x2="50%" y2="76.5597425%" id="linearGradient-29">
<stop stop-color="#DDA793" offset="0%"></stop>
<stop stop-color="#FABFA8" offset="100%"></stop>
</linearGradient>
<path d="M11.4223686,53.8418888 C8.08207902,37.0881009 1.63832081,7.72152756 0.351925921,1.44674201 C-0.934550799,-4.82804355 61.3875173,16.8463441 61.3875173,16.8463441 L69.2244608,57.9250687 L78.1947738,127.398027 C78.1947738,127.398027 14.7628219,70.5956768 11.4223686,53.8418888 Z" id="path-30"></path>
<linearGradient x1="76.2362807%" y1="86.2362536%" x2="67.0850084%" y2="62.8012707%" id="linearGradient-32">
<stop stop-color="#EDE9F5" offset="0%"></stop>
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<path d="M106.791661,0.248552894 C106.791661,0.248552894 130.455304,4.0999216 132.085393,7.06050714 C147.473687,18.2378157 162.279077,51.5031174 168.600677,68.736671 C174.922277,85.9702246 187.044634,103.767565 197.972378,117.605008 C208.899861,131.442451 214.141806,134.297326 228.459872,144.53546 C242.777938,154.773593 248.037427,162.896352 239.934383,170.528851 C231.831339,178.161585 185.169967,175.197711 151.953091,216.701112 C122.935164,228.597484 122.971039,232.948039 114.349248,207.242414 C105.727718,181.536789 34.8349865,117.264856 23.3363838,108.205507 C11.8375192,99.1461575 16.2797386,90.4415239 13.3814549,62.693581 C10.4831712,34.9458731 -10.4235934,12.4472553 7.16119555,12.4472553 C21.0191709,17.6056698 34.5183959,7.06050714 40.6113906,7.06050714 C62.8107039,12.5874973 67.8656793,34.4368205 77.081373,29.8548781 C86.2970667,25.2729356 92.197855,25.2729356 92.197855,25.2729356 C94.3480002,29.635471 95.0395766,37.1075257 97.1897218,41.4700611 C99.3401289,45.8325965 108.336906,54.582568 112.335009,62.693581 L105.267103,39.090176 L107.238921,24.9769475 L106.791661,0.248552894 Z" id="path-33"></path>
<linearGradient x1="51.1067829%" y1="56.1417042%" x2="86.1217409%" y2="30.0186078%" id="linearGradient-35">
<stop stop-color="#B4AAD7" offset="0%"></stop>
<stop stop-color="#EDE9F5" offset="100%"></stop>
</linearGradient>
<linearGradient x1="0%" y1="100%" x2="62.3886698%" y2="0%" id="linearGradient-36">
<stop stop-color="#DDA48E" offset="0%"></stop>
<stop stop-color="#FABFA8" offset="100%"></stop>
</linearGradient>
<path d="M54.1259962,47.7073389 C70.9829679,54.5326244 125.574396,27.3648534 142.898063,29.7775086 C158.822482,31.9954812 138.61673,7.09131425 132.636467,2.68432188 C126.656204,-1.72255303 7.0832687,0.274720504 0.80700754,9.47231519 C-5.46908611,18.6699686 40.1464189,42.0469192 54.1259962,47.7073389 Z" id="path-37"></path>
<linearGradient x1="110.009435%" y1="19.1840632%" x2="13.8996672%" y2="50%" id="linearGradient-39">
<stop stop-color="#F94A8A" offset="0%"></stop>
<stop stop-color="#E12B6E" offset="100%"></stop>
</linearGradient>
<path d="M218.351692,115.217332 C218.351692,115.217332 210.215457,102.854962 216.504964,90.5938587 C222.79447,78.3327556 255.998253,94.6865293 282.88845,64.4565843 C309.778505,34.2264534 285.885306,-6.56907035 258.240516,1.38735189 C230.595584,9.34377412 237.374521,23.5952834 242.386093,34.2264534 C247.39738,44.8576234 221.612427,48.8505136 203.173211,56.3340471 C184.733994,63.8177664 169.683178,83.9540924 172.932372,115.217332 C176.181565,146.480571 205.18408,172.078251 214.414588,176.788185 C211.730627,158.313194 211.611226,149.824796 211.611226,144.67932 C201.023135,149.571535 188.690618,125.309836 195.870789,118.927046 C209.587105,106.73395 216.504964,134.505803 216.504964,134.505803 C216.504964,134.505803 218.351692,130.551561 221.612427,126.803941 C220.370113,120.115307 218.351692,115.217332 218.351692,115.217332 Z" id="path-40"></path>
<filter x="-12.7%" y="-8.8%" width="125.4%" height="117.6%" filterUnits="objectBoundingBox" id="filter-41">
<feGaussianBlur stdDeviation="9" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="13" dy="12" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.13988904 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<linearGradient x1="23.861433%" y1="57.5324188%" x2="50%" y2="33.7873003%" id="linearGradient-42">
<stop stop-color="#EDE9F5" offset="0%"></stop>
<stop stop-color="#EDE9F5" offset="100%"></stop>
</linearGradient>
<path d="M162.493394,192.288531 C134.019625,176.63564 77.1415596,132.134898 62.1918016,135.766973 C47.2422063,139.399049 51.1218056,146.14626 51.1218056,161.622338 C51.1218056,177.098581 129.252331,229.361645 141.282098,255.222113 C146.43174,266.292189 159.624818,293.637458 183.240831,289.181737 C206.856681,284.726016 199.692642,261.259438 194.602875,242.331555 C188.620043,220.082419 180.027003,201.92731 162.493394,192.288531 Z" id="path-43"></path>
<filter x="-10.1%" y="-9.7%" width="120.1%" height="119.5%" filterUnits="objectBoundingBox" id="filter-44">
<feGaussianBlur stdDeviation="6" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="18" dy="-8" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0.929411765 0 0 0 0 0.91372549 0 0 0 0 0.960784314 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<path d="M182.408255,305.255012 C312.694417,386.669283 447.251019,395.566339 492.494172,323.160855 C546.828869,217.608904 360.519372,263.280276 230.233209,181.866005 C99.9464644,100.452132 103.166738,32.4947781 13.2985516,0.130422418 C-31.9440202,72.5363044 52.1215103,223.841138 182.408255,305.255012 Z" id="path-45"></path>
<path d="M-50.646727,202.478338 C17.355951,246.641031 95.2545331,247.376512 123.343996,204.121188 C151.433763,160.865863 119.07752,89.9995404 51.074842,45.836848 C-16.927836,1.67415564 -94.8264181,0.938425398 -122.916186,44.1939987 C-151.005648,87.4493236 -118.64971,158.315646 -50.646727,202.478338 Z" id="path-47"></path>
<filter x="-11.3%" y="-13.5%" width="122.6%" height="126.9%" filterUnits="objectBoundingBox" id="filter-48">
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="-27.5" dy="-39.3" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<path d="M187.922615,378.503665 C238.038252,355.133714 253.61836,282.473728 222.721315,216.213131 C191.824271,149.952533 126.150375,115.182903 76.0344918,138.552854 C25.9186092,161.922804 10.3387468,234.58279 41.2357917,300.843388 C72.1328365,367.103986 137.806732,401.873615 187.922615,378.503665 Z" id="path-49"></path>
<filter x="-10.8%" y="-9.0%" width="121.5%" height="118.0%" filterUnits="objectBoundingBox" id="filter-50">
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="-14.9" dy="-24.9" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<path d="M317.890666,490.182748 C368.006303,466.812797 383.586411,394.152812 352.689366,327.892214 C321.792322,261.631616 256.118426,226.861986 206.002543,250.231937 C155.88666,273.601887 140.306798,346.261873 171.203843,412.522471 C202.100888,478.783069 267.774784,513.552698 317.890666,490.182748 Z" id="path-51"></path>
<filter x="-10.8%" y="-9.0%" width="121.5%" height="118.0%" filterUnits="objectBoundingBox" id="filter-52">
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="-24.9" dy="-12.7" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<path d="M560.49745,527.730026 C610.613332,504.360075 626.193195,431.700089 595.296395,365.439492 C564.39935,299.178894 498.725209,264.409264 448.609572,287.779215 C398.493689,311.149165 382.913827,383.809151 413.810872,450.069749 C444.707916,516.330347 510.381812,551.099976 560.49745,527.730026 Z" id="path-53"></path>
<filter x="-7.9%" y="-6.6%" width="115.8%" height="113.2%" filterUnits="objectBoundingBox" id="filter-54">
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="-9.9" dy="12.6" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<path d="M388.833934,454.299677 C443.718672,461.038783 492.387509,432.488752 497.539116,390.531534 C502.690722,348.574317 462.373997,309.098051 407.489471,302.358944 C352.604945,295.619837 303.936107,324.169869 298.784713,366.126919 C293.633107,408.084136 333.94962,447.560402 388.833934,454.299677 Z" id="path-55"></path>
<filter x="-10.0%" y="-12.9%" width="119.9%" height="125.9%" filterUnits="objectBoundingBox" id="filter-56">
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="-18.8" dy="2.6" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<linearGradient x1="75.5386921%" y1="0%" x2="50%" y2="100%" id="linearGradient-57">
<stop stop-color="#FFE58B" offset="0%"></stop>
<stop stop-color="#E8CA5C" offset="100%"></stop>
</linearGradient>
</defs>
<g id="Illustration" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="StartUp" transform="translate(-215.000000, -4286.000000)">
<g id="Artwork" transform="translate(215.000000, 4286.000000)">
<g id="laptop" transform="translate(915.000000, 224.000000)">
<g id="table" opacity="0.62352808" transform="translate(124.168919, 159.941043)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<use id="Rectangle-3" fill="#5763AB" xlink:href="#path-1"></use>
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<use id="Rectangle-2-copy" fill="#5763AB" xlink:href="#path-3"></use>
<mask id="mask-6" fill="white">
<use xlink:href="#path-5"></use>
</mask>
<use id="Rectangle-2" fill="#5763AB" xlink:href="#path-5"></use>
</g>
<polygon id="front" fill="#7079B1" points="80.8411739 140.666641 109.135983 0.927463662 272.445988 3.81858736 244.523719 140.666641"></polygon>
<polygon id="bottom" fill="#7079B1" points="0.925769071 132.811437 255.092067 132.811437 255.092067 141.630366 8.6283312 141.630366"></polygon>
<g id="back" transform="translate(89.506757, 0.000000)">
<mask id="mask-9" fill="white">
<use xlink:href="#path-8"></use>
</mask>
<use id="Shape-9" fill="url(#linearGradient-7)" xlink:href="#path-8"></use>
<path d="M98.2094441,57.7868404 C106.185901,57.7868404 112.652061,63.1802118 112.652061,69.8333102 C112.652061,76.4864086 106.185901,81.879834 98.2094441,81.879834 C90.2330826,81.879834 83.7669227,76.4864086 83.7669227,69.8333102 C83.7669227,63.1802118 90.2330826,57.7868404 98.2094441,57.7868404 Z" id="Ellipse-5" fill-opacity="0.1" fill="#000000" mask="url(#mask-9)"></path>
</g>
</g>
<g id="message" transform="translate(728.000000, 63.000000)">
<g id="rocket">
<g id="Group-7" transform="translate(70.000000, 64.500000) rotate(-10.000000) translate(-70.000000, -64.500000) translate(9.000000, 10.000000)">
<polygon id="Shape-5" fill="url(#linearGradient-10)" points="0.971974 66.588645 20.983268 40.339047 85.84713 81.095019 36.164094 23.760365 60.315702 0.96465 121.039372 108.03535"></polygon>
<polygon id="Shape-6" fill="#4DBBC2" points="20.2932571 41.0298157 35.474159 38.9574604 88.6073512 83.1673752"></polygon>
<polygon id="Shape-7" fill="#4DBBC2" points="34.7841318 38.9574247 36.8541788 23.7603283 87.2273122 81.7857491"></polygon>
</g>
</g>
</g>
<g id="Person">
<path d="M164.089593,604.097922 C285.92073,662.542865 464.798296,654.823139 545.037787,496.217337 C598.047976,394.164719 484.945462,271.96384 360.710277,186.991953 C249.207285,110.729133 150.031499,93.4350939 91.8402222,136.369101 C85.1950607,141.271776 73.3837847,140.308168 68.0182405,146.979078 C-79.6822664,315.574945 42.2591359,545.652407 164.089593,604.097922 Z" id="chair" fill="url(#radialGradient-11)"></path>
<path d="M239.345129,458.071637 C369.631579,539.485917 504.188158,548.382814 549.431044,475.977478 C591.409743,397.751355 489.569011,256.274312 359.282561,174.860032 C228.996111,93.4462233 115.478951,80.5415329 70.2354954,152.94734 C24.9931778,225.352676 109.058679,376.657828 239.345129,458.071637 Z" id="cushion" fill="url(#radialGradient-12)"></path>
<path d="M268.78836,400.956512 C327.205524,437.481892 387.537307,441.47336 407.823079,408.989718 C426.64527,373.89466 380.98245,310.422962 322.565285,273.897583 C264.14812,237.372415 213.249883,231.582906 192.963857,264.066759 C172.67834,296.550402 210.371195,364.431344 268.78836,400.956512 Z" id="shadow" fill="#94B0D7" filter="url(#filter-13)"></path>
<g id="shoe" transform="translate(640.156550, 595.756447)">
<mask id="mask-16" fill="white">
<use xlink:href="#path-15"></use>
</mask>
<use id="Path-17" fill="url(#linearGradient-14)" xlink:href="#path-15"></use>
<path d="M4.07438743,57.6183138 C10.1020976,42.0870263 33.5945278,13.1115189 40.4011624,3.68183696 C44.9389187,-2.60461768 29.9043591,1.09992201 -4.70251657,14.795456 C-2.86972066,53.6982196 0.0559140052,67.9725055 4.07438743,57.6183138 Z" id="Path-21" fill="#3D82F0" style="mix-blend-mode: multiply;" opacity="0.200000003" mask="url(#mask-16)"></path>
</g>
<g id="shoe" transform="translate(681.628328, 330.074499)">
<mask id="mask-19" fill="white">
<use xlink:href="#path-18"></use>
</mask>
<use id="Path-17-Copy" fill="url(#linearGradient-17)" xlink:href="#path-18"></use>
<path d="M26.4768595,83.2628267 C17.1500804,63.9393405 26.7565233,20.3425332 22.5022349,16.4818273 C19.6660426,13.9080233 11.3134865,24.3078603 -2.5554333,47.6813383 C-9.15184812,54.2247026 -7.15018576,62.3881846 3.44955379,72.1717843 C19.3491631,86.8471838 35.8036385,102.586313 26.4768595,83.2628267 Z" id="Path-19" fill="#5763AB" style="mix-blend-mode: multiply;" opacity="0.200000003" mask="url(#mask-19)"></path>
</g>
<g id="sleeve">
<use fill="url(#linearGradient-20)" fill-rule="evenodd" xlink:href="#path-21"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-22)" xlink:href="#path-21"></use>
</g>
<path d="M277.118998,112.591394 C277.118998,112.591394 379.673163,72.0324812 393.537208,74.7138671 C407.40112,77.3951741 365.964615,124.657512 357.486649,128.471135 C349.008683,132.284916 337.4858,141.588966 324.734995,141.920379 C311.984189,142.25195 282.675028,148.565069 282.675028,148.565069 L277.118998,112.591394 Z" id="arm" fill="url(#linearGradient-23)"></path>
<g id="leg" transform="translate(294.686901, 337.111748)">
<mask id="mask-26" fill="white">
<use xlink:href="#path-25"></use>
</mask>
<g id="Path-7">
<use fill="url(#linearGradient-24)" fill-rule="evenodd" xlink:href="#path-25"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-27)" xlink:href="#path-25"></use>
</g>
<path d="M236.671156,108.800007 C236.671156,93.7353609 274.816424,14.2268459 285.030845,5.7268689 C291.840458,0.0602175617 285.133884,-2.35179575 264.911121,-1.50917104 C218.8415,46.3086312 192.781804,83.0783573 186.732033,108.800007 C177.657376,147.382483 236.671156,123.864654 236.671156,108.800007 Z" id="Path" fill="url(#linearGradient-28)" style="mix-blend-mode: multiply;" opacity="0.300000012" mask="url(#mask-26)"></path>
</g>
<g id="neck" transform="translate(207.892439, 144.338109)">
<mask id="mask-31" fill="white">
<use xlink:href="#path-30"></use>
</mask>
<use id="Path-4" fill="url(#linearGradient-29)" xlink:href="#path-30"></use>
<path d="M3.75252576,3.19261919 C3.75252576,9.49979504 27.4019056,36.4712707 40.1780516,43.8650255 C48.6954824,48.7941954 60.6269618,51.0303993 75.9724899,50.5736373 L72.4658045,14.2533367 L3.75252576,-3.09723455 C3.75252576,-3.10878263 3.75252576,-1.01216472 3.75252576,3.19261919 Z" id="Path-22" fill="#7B6ABA" style="mix-blend-mode: multiply;" opacity="0.200000003" mask="url(#mask-31)"></path>
</g>
<g id="shirt" transform="translate(166.867945, 183.624642)">
<mask id="mask-34" fill="white">
<use xlink:href="#path-33"></use>
</mask>
<g id="Path-9">
<use fill="#FFFFFF" xlink:href="#path-33"></use>
<use fill="url(#linearGradient-32)" xlink:href="#path-33"></use>
</g>
<path d="M184.553762,152.681508 L211.77104,183.787792 L211.423449,177.952649 C211.179618,173.859342 204.75684,167.850714 191.902926,158.127438 C190.688233,157.208589 189.413525,156.255784 188.054304,155.249663 C187.253016,154.656536 185.990527,153.731299 184.553762,152.681508 Z M99.6210546,49.5385253 L210.932159,176.754586 L207.430527,178.190501 C207.297716,175.960941 200.749107,169.834595 189.489789,161.317542 C188.286774,160.407528 187.023058,159.462939 185.674479,158.464696 C182.668993,156.239982 173.09082,149.282006 172.33268,148.725579 C167.710455,145.333156 165.104454,143.300899 163.735033,141.946123 C153.679883,131.998704 140.705541,118.694792 136.656417,113.894076 C132.582214,109.063321 110.344785,71.0409669 106.551066,63.434078 L99.6210546,49.5385253 Z" id="Shape-1" stroke="#DDD5F8" stroke-width="4" fill-opacity="0" fill="#000000" opacity="0.6" mask="url(#mask-34)"></path>
<path d="M79.3666414,55.0156714 C86.3714114,42.2764446 91.9133227,35.9068312 95.9923752,35.9068312 C100.071428,35.9068312 99.3574044,29.7127956 93.850305,17.3247243 L74.7714639,31.7531304 L79.3666414,55.0156714 Z" id="Path-23" fill="#CCDFFD" opacity="0.300000012" mask="url(#mask-34)"></path>
</g>
<path d="M404.144321,343.649906 C439.019466,311.636673 538.843848,249.678365 595.770779,240.216937 C628.382083,245.641613 713.249169,337.627607 713.249169,337.627607 C709.422386,341.660062 699.335615,377.41422 683.404461,388.653234 C643.281416,355.345432 601.449495,339.792941 590.216621,322.570548 C576.20564,331.100327 540.189326,356.00943 519.473153,392.60427 C498.75739,429.19911 485.014436,470.890807 461.406286,471.934436 C437.798135,472.978066 404.505253,475.674407 373.836733,455.941429 C356.025279,444.480606 304.745412,418.934963 329.657932,402.196779 C343.935295,392.60427 389.523703,357.070489 404.144321,343.649906 Z" id="leg" fill="url(#linearGradient-35)"></path>
<path d="M268.202361,76.4722042 C270.564565,82.4337155 283.524895,108.597343 284.773304,115.118974 C286.021598,121.640834 298.355375,165.143312 291.008244,171.842408 C283.660998,178.541733 261.629341,181.933613 255.47242,179.78834 C249.315384,177.643181 236.079068,176.268946 230.923325,167.220647 C226.960999,160.266524 214.372201,144.123643 211.070111,145.047972 C209.863747,147.527324 205.658889,150.176464 203.553309,148.474452 C194.455519,141.120489 186.657004,133.155997 190.358809,115.118974 C194.060615,97.0820658 207.039161,88.1830481 220.954386,82.3276261 C234.869611,76.4722042 265.840043,70.5108075 268.202361,76.4722042 Z" id="face" fill="#FABFA8"></path>
<g id="arm" transform="translate(55.005325, 128.822350)">
<mask id="mask-38" fill="white">
<use xlink:href="#path-37"></use>
</mask>
<use id="Path-13" fill="url(#linearGradient-36)" xlink:href="#path-37"></use>
<path d="M20.9357307,10.3300824 C24.4799379,11.6197539 96.3756542,42.9506507 114.163568,38.6108732 C126.022177,35.7176882 111.24641,41.1863916 69.8362671,55.0169834 C34.8731047,24.365935 18.5729259,9.47030132 20.9357307,10.3300824 Z" id="Path-24" fill="#DBA28C" opacity="0.5" mask="url(#mask-38)"></path>
</g>
<g id="hair">
<use fill="url(#linearGradient-39)" fill-rule="evenodd" xlink:href="#path-40"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-41)" xlink:href="#path-40"></use>
</g>
<path d="M274.234685,207.940985 C282.653168,210.931751 284.265888,226.481456 285.711095,230.86679 C287.156185,235.252062 279.643801,196.495261 279.643801,196.495261 C277.000482,200.141352 271.345408,175.390562 272.408605,179.02057 C275.267478,188.780922 272.87235,199.837156 274.234685,207.940985 Z" id="colar" fill="#BCB3DB"></path>
<path d="M246.76616,247.121974 C246.76616,233.347247 252.241792,215.285727 259.002167,208.841852 C249.198128,209.44692 220.358033,192.215449 217.279578,182.610151 C214.201178,173.004774 213.629157,171.632199 213.629157,171.632199 C213.629157,171.632199 207.692242,183.120002 207.692242,190.406014 C211.893009,206.213207 230.634549,233.653953 246.76616,247.121974 Z" id="colar" fill="url(#linearGradient-42)"></path>
<g id="sleeve">
<use fill="url(#linearGradient-20)" fill-rule="evenodd" xlink:href="#path-43"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-44)" xlink:href="#path-43"></use>
</g>
<g id="glasses" transform="translate(209.780618, 89.386819)">
<path d="M28.8986199,27.7861347 C28.127882,27.5810762 27.6693041,26.790021 27.8743575,26.0192636 C28.0794108,25.2485062 28.8704459,24.7899167 29.6411838,24.9949752 C34.4653926,26.2784794 39.9874598,25.1488274 42.7475031,22.1358748 C43.2862396,21.5477725 44.1997108,21.5077648 44.7877981,22.0465149 C45.3758855,22.5852651 45.4158922,23.4987595 44.8771557,24.0868617 C41.3207173,27.9691851 34.6871839,29.3262102 28.8986199,27.7861347 Z" id="Path-18" fill="#270D4F" fill-rule="nonzero"></path>
<path d="M68.8273592,17.1804123 C68.0651566,16.9456065 67.6376122,16.1373558 67.8724121,15.3751339 C68.1072119,14.612912 68.9154421,14.1853568 69.6776447,14.4201626 C73.7244764,15.6668385 78.3483291,14.571586 80.679347,11.6250962 C81.1741841,10.9996046 82.0823771,10.8936982 82.707853,11.3885478 C83.3333288,11.8833975 83.4392324,12.7916135 82.9443954,13.4171052 C79.820453,17.3658797 73.9461652,18.757323 68.8273592,17.1804123 Z" id="Path-18-Copy" fill="#270D4F" fill-rule="nonzero"></path>
<polygon id="Path-14" stroke="#270D4F" stroke-width="4" fill-opacity="0" fill="#000000" points="18.2544375 18.5818514 23.6081007 42.2255726 53.4306968 35.0676972 48.9381268 10.4412222"></polygon>
<polygon id="Path-14-Copy" stroke="#270D4F" stroke-width="4" fill-opacity="0" fill="#000000" points="61.8361716 6.50014441 66.6928871 30.6589873 89.0234084 24.2547695 84.9477143 0.0778269341"></polygon>
<polygon id="Path-15" fill="#270D4F" points="17.6532794 21.5563314 0.0696611289 26.3700503 3.00949031 32.2388304 22.0134909 36.7253373"></polygon>
<polygon id="Path-16" fill="#270D4F" points="49.926557 17.8971835 63.343336 13.7638906 64.8197586 20.8477372 50.889291 24.7318664"></polygon>
</g>
<g id="cushion" transform="translate(56.937167, 152.816619)">
<g id="Mask-by-Oval">
<g id="Oval-3-+-Oval-3-Copy-+-Oval-3-Copy-2-+-Oval-3-Copy-4-+-Oval-3-Copy-3-Mask">
<mask id="mask-46" fill="white">
<use xlink:href="#path-45"></use>
</mask>
<use id="Mask" fill-opacity="0" fill="#000000" xlink:href="#path-45"></use>
<g id="Oval-3" mask="url(#mask-46)">
<use fill="#EDE9F5" fill-rule="evenodd" xlink:href="#path-47"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-48)" xlink:href="#path-47"></use>
</g>
<g id="Oval-3-Copy" mask="url(#mask-46)">
<use fill="#EDE9F5" fill-rule="evenodd" xlink:href="#path-49"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-50)" xlink:href="#path-49"></use>
</g>
<g id="Oval-3-Copy-2" mask="url(#mask-46)">
<use fill="#EDE9F5" fill-rule="evenodd" xlink:href="#path-51"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-52)" xlink:href="#path-51"></use>
</g>
<g id="Oval-3-Copy-4" mask="url(#mask-46)">
<use fill="#EDE9F5" fill-rule="evenodd" xlink:href="#path-53"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-54)" xlink:href="#path-53"></use>
</g>
<g id="Oval-3-Copy-3" mask="url(#mask-46)">
<use fill="#EDE9F5" fill-rule="evenodd" xlink:href="#path-55"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-56)" xlink:href="#path-55"></use>
</g>
</g>
</g>
</g>
<path d="M294.759732,251.509104 C294.759732,251.509104 317.546124,247.200159 320.278711,244.135497 C323.01139,241.070834 338.443461,276.478293 338.443461,276.478293 L330.950185,284.984756 L313.089456,284.984756 L294.759732,251.509104 Z" id="pocket" fill="url(#linearGradient-57)"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 36 KiB

View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 164 140" style="enable-background:new 0 0 164 140;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#5763AB;stroke-width:2;}
.st1{fill:#92DEE2;}
</style>
<title>Continuous_delivery</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="Continuous_delivery">
<g id="Group-44" transform="translate(30.000000, 17.000000)">
<g id="Group-43" transform="translate(56.000000, 6.000000)">
<path id="Oval-9" class="st0" d="M12,85.3C5.3,91.1,2,94,2,94c26,0,47-21,47-47S28,0,2,0"/>
<path id="Path-20" class="st0" d="M14.4,99.7l-14-5"/>
</g>
<g id="Group-43_1_" transform="translate(24.500000, 50.500000) scale(-1, -1) translate(-24.500000, -50.500000) ">
<path id="Oval-9_1_" class="st0" d="M12,85.3C5.3,91.1,2,94,2,94c26,0,47-21,47-47S28,0,2,0"/>
<path id="Path-20_1_" class="st0" d="M15,100L0.1,94.7"/>
</g>
<g id="ic_swap_horiz" transform="translate(23.000000, 31.000000)">
<polygon id="Path" class="st1" points="13.1,20 0,33 13.1,46 13.1,36.2 36,36.2 36,29.8 13.1,29.8 "/>
<polygon id="Path_1_" class="st1" points="59,13 45.9,0 45.9,9.8 23,9.8 23,16.2 45.9,16.2 45.9,26 "/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
static/images/coo-edin.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

BIN
static/images/cto-senad.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

View File

@@ -0,0 +1,372 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="495px" height="610px" viewBox="0 0 495 610" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>custom-software-development</title>
<desc>Created with Sketch.</desc>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#FD99BE" offset="0%"></stop>
<stop stop-color="#F94C8C" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-2">
<stop stop-color="#9AE1E5" offset="0%"></stop>
<stop stop-color="#39BAC1" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-3">
<stop stop-color="#FFDB71" offset="0%"></stop>
<stop stop-color="#FEB856" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="81.253561%" x2="50%" y2="38.5969009%" id="linearGradient-4">
<stop stop-color="#434D8E" offset="0%"></stop>
<stop stop-color="#5763AB" offset="100%"></stop>
</linearGradient>
<linearGradient x1="76.9888796%" y1="16.7734139%" x2="-11.6510841%" y2="73.2727713%" id="linearGradient-5">
<stop stop-color="#72669D" offset="0%"></stop>
<stop stop-color="#ADA7C7" offset="100%"></stop>
</linearGradient>
<linearGradient x1="76.9888796%" y1="16.7734139%" x2="-11.6510841%" y2="73.2727713%" id="linearGradient-6">
<stop stop-color="#EAE9F1" offset="0%"></stop>
<stop stop-color="#ECE7F9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="15.4820432%" y1="76.2997855%" x2="100%" y2="25.92039%" id="linearGradient-7">
<stop stop-color="#444F90" offset="0%"></stop>
<stop stop-color="#828BC0" offset="100%"></stop>
</linearGradient>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="6" transform="translate(-161.000000, -282.000000)">
<g id="custom-software-development" transform="translate(408.500000, 587.500000) scale(-1, 1) translate(-408.500000, -587.500000) translate(161.000000, 282.000000)">
<g id="Group-3">
<g id="server" transform="translate(82.252252, 162.063063) scale(-1, 1) translate(-82.252252, -162.063063) translate(0.000000, 114.000000)">
<path d="M59.0486296,40.3303712 C57.4965773,39.4167326 55.8857024,38.7502567 52.9089567,38.7502567 C49.9332903,38.7502567 46.7288095,40.8387277 46.7288095,40.8387277 L0.475383483,67.2236173 L1.85474571,68.0654816 L47.933323,41.8074113 C47.933323,41.8074113 50.7325217,40.0017204 52.9089567,40.0017204 C55.7529469,40.0017204 57.6115241,41.253184 57.6115241,41.253184 L62.008646,43.732906 L62.008646,42.0723827 L59.0486296,40.3303712 Z" id="Fill-115" fill="#DDDDFC"></path>
<polygon id="Fill-118" fill="#DDDDFC" points="113.561877 79.1812739 164.098558 50.1639395 164.098558 66.4297285 113.561877 95.447063 62.0926705 65.9375617 62.0926705 49.6717727"></polygon>
<polygon id="Fill-120" fill="#5763AB" points="112.189531 20.269933 164.098558 50.1642093 113.561877 79.1815437 62.0926705 49.6715029"></polygon>
<polygon id="Fill-122" fill="#EAEAF9" points="113.561877 95.4471709 113.561877 79.1813818 62.0926705 49.6718806 62.0926705 65.9376697"></polygon>
<polygon id="Fill-124" fill="#D7D7F2" points="65.4180883 53.4711709 66.8551938 54.2952265 66.8551938 66.7834195 65.4180883 65.9599035"></polygon>
<polygon id="Fill-126" fill="#D7D7F2" points="68.2928929 55.1139935 69.7299984 55.9380491 69.7299984 68.426242 68.2928929 67.6021864"></polygon>
<polygon id="Fill-128" fill="#D7D7F2" points="71.1672118 56.7743549 72.6048569 57.5984105 72.6048569 70.0866034 71.1672118 69.2625478"></polygon>
<polygon id="Fill-130" fill="#D7D7F2" points="74.0420164 58.4167457 75.4791218 59.2408013 75.4791218 71.7289943 74.0420164 70.9049387"></polygon>
<polygon id="Fill-132" fill="#D7D7F2" points="76.9163352 60.0326934 78.3534407 60.856749 78.3534407 73.3444023 76.9163352 72.5208863"></polygon>
<polygon id="Fill-134" fill="#D7D7F2" points="79.7911938 61.6751382 81.2282993 62.4991938 81.2282993 74.9873868 79.7911938 74.1633312"></polygon>
<polygon id="Fill-136" fill="#D7D7F2" points="82.6654587 63.3356075 84.1025642 64.1596631 84.1025642 76.6478561 82.6654587 75.8238005"></polygon>
<polygon id="Fill-138" fill="#D7D7F2" points="85.5397776 64.9781603 86.9774227 65.8022159 86.9774227 78.2904088 85.5397776 77.4663532"></polygon>
<polygon id="Fill-140" fill="#D7D7F2" points="88.4146361 66.6885478 89.8517416 67.5126034 89.8517416 80.0007964 88.4146361 79.1767408"></polygon>
<polygon id="Fill-142" fill="#D7D7F2" points="91.2889011 68.3313704 92.7260065 69.155426 92.7260065 81.643619 91.2889011 80.8195634"></polygon>
<polygon id="Fill-144" fill="#D7D7F2" points="94.1637596 69.991462 95.6008651 70.8155176 95.6008651 83.3037105 94.1637596 82.4801946"></polygon>
<polygon id="Fill-146" fill="#D7D7F2" points="97.0380785 71.6342845 98.4757236 72.4583401 98.4757236 84.9465331 97.0380785 84.1224775"></polygon>
<polygon id="Fill-148" fill="#D7D7F2" points="99.9128831 73.2502322 101.349989 74.0742878 101.349989 86.5619411 99.9128831 85.7378855"></polygon>
<polygon id="Fill-150" fill="#D7D7F2" points="102.787202 74.8926231 104.224307 75.7166787 104.224307 88.204332 102.787202 87.380816"></polygon>
<polygon id="Fill-152" fill="#D7D7F2" points="105.662007 76.5529845 107.099112 77.3770401 107.099112 89.865233 105.662007 89.0411774"></polygon>
<polygon id="Fill-154" fill="#D7D7F2" points="108.536325 78.1953753 109.973431 79.0194309 109.973431 91.5076239 108.536325 90.6835683"></polygon>
<polygon id="Fill-156" fill="#DDDDFC" points="113.561877 59.1382666 164.098558 30.1209321 164.098558 46.3861815 113.561877 75.4035159 62.0926705 45.8940147 62.0926705 29.6287653"></polygon>
<polygon id="Fill-158" fill="#5763AB" points="112.189531 0.226601799 164.098558 30.1208782 113.561877 59.1382126 62.0926705 29.6287114"></polygon>
<polygon id="Fill-160" fill="#EAEAF9" points="113.561877 75.4036778 113.561877 59.1384285 62.0926705 29.6289272 62.0926705 45.8941766"></polygon>
<polygon id="Fill-162" fill="#D7D7F2" points="65.4180883 37.2055977 66.8551938 38.0296533 66.8551938 39.9405773 65.4180883 39.1165217"></polygon>
<polygon id="Fill-164" fill="#D7D7F2" points="68.2928929 38.8481504 69.7299984 39.6722061 69.7299984 41.58313 68.2928929 40.7596141"></polygon>
<polygon id="Fill-166" fill="#D7D7F2" points="71.1672118 40.50835 72.6048569 41.3324056 72.6048569 43.2433295 71.1672118 42.4192739"></polygon>
<polygon id="Fill-168" fill="#D7D7F2" points="74.0420164 42.1513344 75.4791218 42.97539 75.4791218 44.886314 74.0420164 44.0622584"></polygon>
<polygon id="Fill-170" fill="#D7D7F2" points="76.9163352 43.7667424 78.3534407 44.590798 78.3534407 46.501722 76.9163352 45.6782061"></polygon>
<polygon id="Fill-172" fill="#D7D7F2" points="79.7911938 45.4094031 81.2282993 46.2334587 81.2282993 48.1443827 79.7911938 47.3203271"></polygon>
<polygon id="Fill-174" fill="#D7D7F2" points="82.6654587 47.0698724 84.1025642 47.893928 84.1025642 49.804852 82.6654587 48.9807964"></polygon>
<polygon id="Fill-176" fill="#D7D7F2" points="85.5397776 48.7125871 86.9774227 49.5366427 86.9774227 51.4475666 85.5397776 50.623511"></polygon>
<polygon id="Fill-178" fill="#D7D7F2" points="88.4146361 50.4229747 89.8517416 51.2470303 89.8517416 53.1579542 88.4146361 52.3338986"></polygon>
<polygon id="Fill-180" fill="#D7D7F2" points="91.2889011 52.0656353 92.7260065 52.8896909 92.7260065 54.8006149 91.2889011 53.9765593"></polygon>
<polygon id="Fill-182" fill="#D7D7F2" points="94.1637596 53.7258888 95.6008651 54.5499444 95.6008651 56.4608684 94.1637596 55.6368128"></polygon>
<polygon id="Fill-184" fill="#D7D7F2" points="97.0380785 55.3685495 98.4757236 56.1926051 98.4757236 58.103529 97.0380785 57.2794734"></polygon>
<polygon id="Fill-186" fill="#D7D7F2" points="99.9128831 56.9842273 101.349989 57.8082829 101.349989 59.7192069 99.9128831 58.8951513"></polygon>
<polygon id="Fill-188" fill="#D7D7F2" points="102.787202 58.6266721 104.224307 59.4507277 104.224307 61.3616517 102.787202 60.5381357"></polygon>
<polygon id="Fill-190" fill="#D7D7F2" points="65.4180883 40.9830859 66.8551938 41.8071415 66.8551938 43.7180654 65.4180883 42.8940098"></polygon>
<polygon id="Fill-192" fill="#D7D7F2" points="68.2928929 42.6254767 69.7299984 43.4495323 69.7299984 45.3609959 68.2928929 44.5369403"></polygon>
<polygon id="Fill-194" fill="#D7D7F2" points="71.1672118 44.2862159 72.6048569 45.1102715 72.6048569 47.0211954 71.1672118 46.1971398"></polygon>
<polygon id="Fill-196" fill="#D7D7F2" points="74.0420164 45.9286607 75.4791218 46.7527163 75.4791218 48.6636402 74.0420164 47.8395846"></polygon>
<polygon id="Fill-198" fill="#D7D7F2" points="76.9163352 47.5441766 78.3534407 48.3682322 78.3534407 50.2796958 76.9163352 49.4556402"></polygon>
<polygon id="Fill-200" fill="#D7D7F2" points="79.7911938 49.1869992 81.2282993 50.0110548 81.2282993 51.9219787 79.7911938 51.0979231"></polygon>
<polygon id="Fill-202" fill="#D7D7F2" points="82.6654587 50.8473606 84.1025642 51.6714162 84.1025642 53.5823401 82.6654587 52.7582845"></polygon>
<polygon id="Fill-204" fill="#D7D7F2" points="85.5397776 52.4897514 86.9774227 53.313807 86.9774227 55.224731 85.5397776 54.4006754"></polygon>
<polygon id="Fill-206" fill="#D7D7F2" points="88.4146361 54.2003009 89.8517416 55.0243565 89.8517416 56.9352805 88.4146361 56.1112249"></polygon>
<polygon id="Fill-208" fill="#D7D7F2" points="91.2889011 55.8430155 92.7260065 56.6670711 92.7260065 58.5779951 91.2889011 57.7539395"></polygon>
<polygon id="Fill-210" fill="#D7D7F2" points="94.1637596 57.5030531 95.6008651 58.3271087 95.6008651 60.2380327 94.1637596 59.4145168"></polygon>
<polygon id="Fill-212" fill="#D7D7F2" points="97.0380785 59.1458757 98.4757236 59.9699313 98.4757236 61.8808553 97.0380785 61.0573393"></polygon>
<polygon id="Fill-214" fill="#D7D7F2" points="99.9128831 60.7615536 101.349989 61.5856092 101.349989 63.4965331 99.9128831 62.6724775"></polygon>
<polygon id="Fill-216" fill="#D7D7F2" points="102.787202 62.4042682 104.224307 63.2283238 104.224307 65.1392478 102.787202 64.3151922"></polygon>
<path d="M107.399539,66.1606558 C107.540389,66.025202 107.721174,65.9523483 107.919768,65.9275241 C107.60137,65.8865102 107.30402,65.9577449 107.093554,66.1606558 C106.646718,66.5929207 106.765982,67.4407212 107.360684,68.0543107 C107.768664,68.4747032 108.290512,68.6689796 108.723856,68.6144742 C108.365524,68.5680638 107.980749,68.379184 107.666669,68.0543107 C107.071967,67.4407212 106.953243,66.5929207 107.399539,66.1606558" id="Fill-218" fill="#CECEEA"></path>
<path d="M108.977441,66.4877956 C108.662281,66.1629223 108.278585,65.9735029 107.919714,65.9270924 C107.72112,65.9524563 107.540335,66.0253099 107.399485,66.1607637 C106.953189,66.5930286 107.071913,67.4408291 107.666615,68.0544186 C107.980695,68.3787522 108.36547,68.5681717 108.723802,68.6140425 C108.921856,68.5892183 109.10426,68.5169043 109.244571,68.3814505 C109.690867,67.9491856 109.572682,67.1008455 108.977441,66.4877956" id="Fill-220" fill="#D7D7F2"></path>
<path d="M107.399539,61.5730352 C107.540389,61.4375814 107.721174,61.3647277 107.919768,61.3399035 C107.60137,61.2988896 107.30402,61.3701243 107.093554,61.5730352 C106.646718,62.0058397 106.765982,62.8531006 107.360684,63.4666901 C107.768664,63.8870826 108.290512,64.0818986 108.723856,64.0268536 C108.365524,63.9809828 107.980749,63.7915634 107.666669,63.4666901 C107.071967,62.8531006 106.953243,62.0058397 107.399539,61.5730352" id="Fill-222" fill="#2DB48F"></path>
<path d="M108.977441,61.900175 C108.662281,61.5753017 108.278585,61.3858823 107.919714,61.3394718 C107.72112,61.3648357 107.540335,61.4376893 107.399485,61.5731431 C106.953189,62.0059477 107.071913,62.8532085 107.666615,63.4662584 C107.980695,63.7916713 108.36547,63.9810908 108.723802,64.0269616 C108.921856,64.0015977 109.10426,63.9292837 109.244571,63.7938299 C109.690867,63.361565 109.572682,62.5132249 108.977441,61.900175" id="Fill-224" fill="#3BE2B4"></path>
</g>
<g id="ipad" transform="translate(223.774775, 105.189189) scale(-1, 1) translate(-223.774775, -105.189189) translate(144.000000, 71.000000)">
<path d="M59.0144154,5.98392805 C57.4618234,5.07028945 55.8514881,4.40381357 52.8747424,4.40381357 C49.8985364,4.40381357 46.6951349,6.49228455 46.6951349,6.49228455 L0.441169256,32.8771742 L1.82053148,33.7190384 L47.8991087,7.46096811 C47.8991087,7.46096811 50.6977678,5.65527719 52.8747424,5.65527719 C55.7187326,5.65527719 57.5773099,6.9067408 57.5773099,6.9067408 L80.6568029,21.4990548 L80.6568029,19.8385315 L59.0144154,5.98392805 Z" id="Fill-590" fill="#DDDDFC"></path>
<path d="M158.026612,41.606767 L117.907462,64.5896615 C117.907462,64.5896615 114.739678,66.9355487 111.211403,64.9064399 C109.192008,63.7445593 47.6457939,28.3241995 47.6457939,28.3241995 C47.6457939,28.3241995 45.9129567,27.5255078 45.7785822,26.3674047 L45.7785822,27.779686 C45.7785822,29.3657367 47.6457939,30.257789 47.6457939,30.257789 C47.6457939,30.257789 108.971828,66.0089583 110.979351,67.1902666 C114.503848,69.2614685 117.569097,67.1843303 117.569097,67.1843303 L157.785385,43.7421881 C157.785385,43.7421881 159.213316,42.926767 159.213316,41.9575437 L159.213316,39.7222862 C159.213316,39.7293017 159.211158,39.7352379 159.211158,39.7411742 C159.185794,41.0816811 158.026612,41.606767 158.026612,41.606767" id="Fill-233" fill="#DDDDFC"></path>
<path d="M157.964983,37.8434178 L93.3972314,1.17591169 C89.6072232,-1.02372854 86.3034456,1.38367948 86.3034456,1.38367948 L48.2797825,23.5948651 C48.2797825,23.5948651 45.6262911,25.043843 45.7784742,26.3670809 C45.9128487,27.5257236 47.645686,28.3238757 47.645686,28.3238757 C47.645686,28.3238757 109.1919,63.7447751 111.211295,64.9061161 C114.73957,66.9352249 117.907354,64.5898774 117.907354,64.5898774 L158.026504,41.6069828 C158.026504,41.6069828 159.186226,41.081897 159.21159,39.74139 C159.21159,39.727359 159.213209,39.7138675 159.213209,39.6987572 C159.213209,38.4424366 157.964983,37.8434178 157.964983,37.8434178" id="Fill-235" fill="#5763AB"></path>
<polygon id="Fill-237" fill="#DDDDFC" points="51.8302371 26.5108994 106.459673 57.8660262 145.62417 35.4109158 91.329861 3.76383483"></polygon>
<path d="M132.593191,51.1076909 C131.000664,51.1076909 129.710345,50.3322044 129.710345,49.374314 C129.710345,48.4164235 131.000664,47.6403974 132.593191,47.6403974 C134.185717,47.6403974 135.477115,48.4164235 135.477115,49.374314 C135.477115,50.3322044 134.185717,51.1076909 132.593191,51.1076909 M132.593191,47.5038643 C130.875464,47.5038643 129.48261,48.3408716 129.48261,49.374314 C129.48261,50.4072167 130.875464,51.2447637 132.593191,51.2447637 C134.311997,51.2447637 135.70485,50.4072167 135.70485,49.374314 C135.70485,48.3408716 134.311997,47.5038643 132.593191,47.5038643" id="Fill-239" fill="#D8D8D8"></path>
</g>
<g id="harddisc" transform="translate(369.882883, 31.261261) scale(-1, 1) translate(-369.882883, -31.261261) translate(302.000000, 5.000000)">
<path d="M59.0154407,2.02452167 C57.4628487,1.11088307 55.8525135,0.443867539 52.8757678,0.443867539 C49.8995617,0.443867539 46.6961603,2.53233851 46.6961603,2.53233851 L0.442194603,28.9172281 L1.82155683,29.7596321 L47.9001341,3.50102208 C47.9001341,3.50102208 50.6987931,1.69587081 52.8757678,1.69587081 C55.719758,1.69587081 57.5783352,2.94679477 57.5783352,2.94679477 L78.2790221,15.10148 L78.2790221,13.4414963 L59.0154407,2.02452167 Z" id="Fill-605" fill="#DDDDFC"></path>
<path d="M60.1748929,21.4136811 L103.657722,46.3490531 C103.657722,46.3490531 104.651769,47.0041962 105.849267,46.3490531 C107.135269,45.6458806 133.634026,30.355251 133.634026,30.355251 C133.634026,30.355251 134.808859,29.7945478 134.808859,28.7972625 L134.808859,34.015202 C134.808859,35.013027 133.634026,35.5737302 133.634026,35.5737302 C133.634026,35.5737302 107.135269,50.8638201 105.849267,51.5675323 C104.651769,52.2221357 103.657722,51.5675323 103.657722,51.5675323 L60.1748929,26.6316206 C60.1748929,26.6316206 59.3832167,26.202054 59.3832167,25.592242 L59.3832167,20.3743025 C59.3832167,20.9841145 60.1748929,21.4136811 60.1748929,21.4136811" id="Fill-608" fill="#DDDDFC"></path>
<path d="M60.061565,19.2210564 L88.886242,2.52731971 C89.9250809,1.94017334 90.6703467,2.52731971 90.6703467,2.52731971 L133.634026,27.1923238 C133.634026,27.1923238 134.808859,27.8474669 134.808859,28.7961832 C134.808859,29.7934685 133.634026,30.3547114 133.634026,30.3547114 C133.634026,30.3547114 107.135269,45.6448013 105.849267,46.3479738 C104.651769,47.0031169 103.657722,46.3479738 103.657722,46.3479738 L60.1748929,21.4126018 C60.1748929,21.4126018 59.3832167,20.9835748 59.3832167,20.3726836 C59.3832167,19.5826263 60.061565,19.2210564 60.061565,19.2210564" id="Fill-610" fill="#5763AB"></path>
</g>
<g id="browser-(gallery)" transform="translate(116.000000, 144.000000)">
<path d="M114.397859,98.816085 C114.279675,102.274204 111.700656,103.229936 111.700656,103.229936 L8.11951104,163.78642 C8.11951104,163.78642 6.7714489,164.546796 5.18593786,164.750247 C4.25556991,164.869511 3.24479313,164.797737 2.377565,164.267794 C0.27506296,162.65584 0.29718888,159.006682 0.29718888,159.006682 L0.29718888,67.3632805 C0.487147997,63.411915 3.80927392,61.9435094 3.80927392,61.9435094 L110.627279,0.774515127 C110.627279,0.774515127 112.687688,-0.386286182 113.587835,0.635823385 C114.544646,1.72215209 114.435635,2.38431071 114.435635,4.81762224 L114.397859,98.816085 Z" id="Fill-230" fill="url(#linearGradient-1)"></path>
<polygon id="Fill-250" fill="#FFFFFF" points="85.6014603 23.3502927 85.6014603 112.740628 29.1355732 145.007235 29.1355732 55.6168994"></polygon>
<polygon id="Fill-252" fill="#DDDDFC" points="85.6014603 29.9352363 29.1355732 62.2013034 29.1355732 75.2021701 85.6014603 42.9355634"></polygon>
<polygon id="Fill-254" fill="#DDDDFC" points="79.1050204 51.8274309 79.1050204 60.5617727 67.7382339 67.0225413 67.7382339 58.4080033"></polygon>
<polygon id="Fill-256" fill="#DDDDFC" points="78.8035683 62.4755029 78.8035683 63.5958299 67.5992183 69.9643173 67.5992183 68.962175"></polygon>
<polygon id="Fill-258" fill="#DDDDFC" points="76.5959411 66.3955683 76.5959411 67.5158953 67.6840523 72.6356173 67.6840523 71.6334751"></polygon>
<polygon id="Fill-260" fill="#DDDDFC" points="63.7210842 60.6638217 63.7210842 69.3981635 52.3542976 75.8589321 52.3542976 67.2443941"></polygon>
<polygon id="Fill-262" fill="#DDDDFC" points="63.6404595 71.1855061 63.6404595 72.3058332 52.4361096 78.6743205 52.4361096 77.6716386"></polygon>
<polygon id="Fill-264" fill="#DDDDFC" points="61.3490237 74.966556 61.3490237 76.0868831 52.4360556 81.2066051 52.4360556 80.2039231"></polygon>
<polygon id="Fill-266" fill="#DDDDFC" points="48.3899264 69.4999967 48.3899264 78.2343385 37.0236795 84.6951071 37.0236795 76.0800294"></polygon>
<polygon id="Fill-268" fill="#DDDDFC" points="63.6404595 117.846427 63.6404595 121.928389 53.7582682 127.544595 53.7582682 123.580278"></polygon>
<polygon id="Fill-270" fill="#DDDDFC" points="48.5285102 79.8954015 48.5285102 81.0157285 37.3246999 87.3842159 37.3246999 86.3815339"></polygon>
<polygon id="Fill-272" fill="#DDDDFC" points="46.2370744 83.7031643 46.2370744 84.8234914 37.324646 89.9432134 37.324646 88.9410711"></polygon>
<polygon id="Fill-274" fill="#DDDDFC" points="79.1050204 70.7860523 79.1050204 79.5203941 67.7382339 85.9811627 67.7382339 77.3666247"></polygon>
<polygon id="Fill-276" fill="#DDDDFC" points="78.8035683 81.1630008 78.8035683 82.2833279 67.5992183 88.6518152 67.5992183 87.6496729"></polygon>
<polygon id="Fill-278" fill="#DDDDFC" points="76.5959411 85.0830123 76.5959411 86.2033393 67.6840523 91.3230613 67.6840523 90.3209191"></polygon>
<polygon id="Fill-280" fill="#DDDDFC" points="63.7210842 79.6223892 63.7210842 88.356731 52.3542976 94.8174996 52.3542976 86.2029616"></polygon>
<polygon id="Fill-282" fill="#DDDDFC" points="63.6404595 89.873112 63.6404595 90.9934391 52.4361096 97.3619264 52.4361096 96.3592445"></polygon>
<polygon id="Fill-284" fill="#DDDDFC" points="61.3490237 93.6538921 61.3490237 94.7742191 52.4360556 99.8939411 52.4360556 98.8917989"></polygon>
<polygon id="Fill-286" fill="#DDDDFC" points="48.3899264 88.4587261 48.3899264 97.1930679 37.0236795 103.653836 37.0236795 95.0392984"></polygon>
<polygon id="Fill-288" fill="#DDDDFC" points="48.5285102 98.5829534 48.5285102 99.7032805 37.3246999 106.071768 37.3246999 105.069086"></polygon>
<polygon id="Fill-290" fill="#DDDDFC" points="46.2370744 102.39077 46.2370744 103.511097 37.324646 108.630819 37.324646 107.628137"></polygon>
<polygon id="Fill-292" fill="#DDDDFC" points="78.8035683 89.9437531 78.8035683 98.5534342 67.5992183 104.921382 67.5992183 96.4304252"></polygon>
<polygon id="Fill-294" fill="#DDDDFC" points="78.8035683 99.8505527 78.8035683 100.97034 67.5992183 107.339367 67.5992183 106.336685"></polygon>
<polygon id="Fill-296" fill="#DDDDFC" points="76.5959411 103.770564 76.5959411 104.890891 67.6840523 110.010613 67.6840523 109.008471"></polygon>
<polygon id="Fill-298" fill="#DDDDFC" points="63.6404595 98.6537024 63.6404595 107.262844 52.4361096 113.631331 52.4361096 105.139835"></polygon>
<polygon id="Fill-300" fill="#DDDDFC" points="63.6404595 108.560556 63.6404595 109.680883 52.4361096 116.04937 52.4361096 115.046688"></polygon>
<polygon id="Fill-302" fill="#DDDDFC" points="61.3490237 112.341444 61.3490237 113.461771 52.4360556 118.581493 52.4360556 117.578811"></polygon>
<polygon id="Fill-304" fill="#DDDDFC" points="48.5285102 107.363598 48.5285102 115.972739 37.3246999 122.341226 37.3246999 113.84973"></polygon>
<polygon id="Fill-306" fill="#DDDDFC" points="48.5285102 117.270289 48.5285102 118.390617 37.3246999 124.759104 37.3246999 123.756422"></polygon>
<polygon id="Fill-308" fill="#DDDDFC" points="46.2370744 121.078214 46.2370744 122.198541 37.324646 127.318263 37.324646 126.315581"></polygon>
<polygon id="Fill-310" fill="#CECEEF" points="63.6404595 117.846427 62.9302715 117.487016 53.1678839 123.220327 53.7582682 123.580278"></polygon>
<polygon id="Fill-312" fill="#E4E4F4" points="53.7579984 123.580548 53.1676141 123.220597 53.1676141 127.184374 53.7579984 127.544325"></polygon>
<path d="M33.7611856,56.1263892 C34.1405642,56.5861766 34.0331725,57.3012216 33.5204988,57.724852 C33.007825,58.1474031 32.2852249,58.1182617 31.9058463,57.6590139 C31.5253884,57.1997661 31.6338594,56.4836419 32.1470728,56.0605511 C32.6592069,55.6374603 33.381807,55.6671415 33.7611856,56.1263892" id="Fill-314" fill="#E8F0F4"></path>
</g>
<g id="browser-(contact)" transform="translate(380.000000, 0.000000)">
<path d="M114.435635,4.70105642 L114.397859,98.6989796 C114.279675,102.157639 111.700656,103.11337 111.700656,103.11337 L8.11951104,163.669854 C8.11951104,163.669854 6.7714489,164.429691 5.18593786,164.633141 C4.25556991,164.752945 3.24479313,164.681711 2.377565,164.151228 C2.29014064,164.097802 2.20649387,164.044376 2.12824366,163.983395 C0.27506296,162.538734 0.29718888,158.890116 0.29718888,158.890116 L0.29718888,67.2467146 C0.487147997,63.2953491 3.80927392,61.8269436 3.80927392,61.8269436 L110.627279,0.657949305 C110.627279,0.657949305 112.687688,-0.502312347 113.587835,0.519257563 C114.544646,1.60558626 114.435635,2.26774489 114.435635,4.70105642" id="Fill-384" fill="url(#linearGradient-2)"></path>
<polygon id="Fill-386" fill="#FFFFFF" points="85.6014603 23.233565 85.6014603 112.6239 29.1355732 144.890507 29.1355732 55.5001717"></polygon>
<polygon id="Fill-388" fill="#DDDDFC" points="85.6014603 29.8185086 29.1355732 62.0851153 29.1355732 75.0854424 85.6014603 42.8193753"></polygon>
<polygon id="Fill-390" fill="#DDDDFC" points="77.6831333 93.3142322 37.3249158 116.424486 37.3249158 129.425352 77.6831333 106.314559"></polygon>
<path d="M52.5743696,72.9039886 L52.5743696,75.5229419 L68.1526361,66.5506116 L68.1526361,63.8167114 L52.5743696,72.9039886 Z M52.2980654,76.000538 L52.2980654,72.7453295 L68.4289403,63.3353377 L68.4289403,66.71035 L68.3598643,66.7502845 L52.2980654,76.000538 Z" id="Fill-392" fill="#DDDDFC"></path>
<path d="M52.5743696,77.1974963 L52.5743696,79.8164497 L68.1526361,70.844659 L68.1526361,68.1096795 L52.5743696,77.1974963 Z M52.2980654,80.2940458 L52.2980654,77.0393769 L68.4289403,67.6288455 L68.4289403,71.0038577 L68.3598643,71.0437923 L52.2980654,80.2940458 Z" id="Fill-394" fill="#DDDDFC"></path>
<path d="M52.5743696,81.3330466 L52.5743696,83.952 L68.1526361,74.9802093 L68.1526361,72.2457694 L52.5743696,81.3330466 Z M52.2980654,84.4295961 L52.2980654,81.1749272 L68.4289403,71.7643957 L68.4289403,75.1399477 L68.3598643,75.1793426 L52.2980654,84.4295961 Z" id="Fill-396" fill="#DDDDFC"></path>
<path d="M52.5743696,85.5956321 L52.5743696,94.1567441 L77.5448193,80.1785593 L77.5448193,71.5003418 L52.5743696,85.5956321 Z M52.2980654,94.6278643 L52.2980654,85.4342747 L77.8211235,71.0276026 L77.8211235,80.3399166 L77.7493491,80.3798512 L52.2980654,94.6278643 Z" id="Fill-398" fill="#DDDDFC"></path>
<polygon id="Fill-400" fill="#DDDDFC" points="48.5285102 74.8704971 48.5285102 75.9908242 37.3246999 82.3593115 37.3246999 81.3566296"></polygon>
<polygon id="Fill-402" fill="#DDDDFC" points="46.2370744 78.6511153 46.2370744 79.7714424 37.324646 84.891704 37.324646 83.8890221"></polygon>
<polygon id="Fill-404" fill="#DDDDFC" points="77.6831333 83.9463876 77.6831333 88.0278103 67.7998626 93.6440164 67.7998626 89.6802388"></polygon>
<polygon id="Fill-406" fill="#DDDDFC" points="48.5285102 79.7785119 48.5285102 80.8988389 37.3246999 87.2678659 37.3246999 86.265184"></polygon>
<polygon id="Fill-408" fill="#DDDDFC" points="46.2370744 83.5864366 46.2370744 84.7067637 37.324646 89.8270253 37.324646 88.8243434"></polygon>
<polygon id="Fill-410" fill="#CECEEF" points="77.6831333 83.9463876 76.9729452 83.5864366 67.210018 89.3202878 67.7998626 89.6802388"></polygon>
<polygon id="Fill-412" fill="#E4E4F4" points="67.7996468 89.6803467 67.2098021 89.3198561 67.2098021 93.2836337 67.7996468 93.6441243"></polygon>
<path d="M33.7611856,56.0096615 C34.1405642,56.4694489 34.0331725,57.1850335 33.5204988,57.6081243 C33.007825,58.0306754 32.2852249,58.0020736 31.9058463,57.5422862 C31.5253884,57.0830384 31.6338594,56.3674538 32.1470728,55.944363 C32.6592069,55.5207326 33.381807,55.5504137 33.7611856,56.0096615" id="Fill-414" fill="#E8F0F4"></path>
</g>
<g id="browser-(list)" transform="translate(249.000000, 71.000000)">
<path d="M114.397859,98.6793361 C114.279675,102.137455 111.700656,103.093727 111.700656,103.093727 L8.11951104,163.649671 C8.11951104,163.649671 6.7714489,164.409508 5.18593786,164.613498 C4.25556991,164.732762 3.24479313,164.660988 2.377565,164.131045 C0.27506296,162.519091 0.29718888,158.869933 0.29718888,158.869933 L0.29718888,67.2265315 C0.487147997,63.2757056 3.80927392,61.8067604 3.80927392,61.8067604 L110.627279,0.637766149 C110.627279,0.637766149 112.687688,-0.522495503 113.587835,0.499614064 C114.544646,1.58594276 114.435635,2.24810139 114.435635,4.68087326 L114.397859,98.6793361 Z" id="Fill-444" fill="url(#linearGradient-3)"></path>
<polygon id="Fill-446" fill="#FFFFFF" points="85.6014603 23.2136517 85.6014603 112.604527 29.1355732 144.870594 29.1355732 55.4797187"></polygon>
<polygon id="Fill-448" fill="#DDDDFC" points="85.6014603 29.7986492 29.1355732 62.0647163 29.1355732 75.0661226 85.6014603 42.7989763"></polygon>
<polygon id="Fill-450" fill="#DDDDFC" points="48.5285102 69.8523385 48.5285102 78.46148 37.3246999 84.8299673 37.3246999 76.338471"></polygon>
<polygon id="Fill-452" fill="#DDDDFC" points="64.9448095 60.6507621 64.9448095 61.7710891 50.1857416 70.1514162 50.1857416 69.1492739"></polygon>
<polygon id="Fill-454" fill="#DDDDFC" points="63.773269 63.776453 63.773269 64.89678 50.1857956 72.7110074 50.1857956 71.7077858"></polygon>
<polygon id="Fill-456" fill="#DDDDFC" points="58.8051905 69.0309812 58.8051905 70.1518479 50.1857956 75.0659608 50.1857956 74.0632788"></polygon>
<polygon id="Fill-458" fill="#DDDDFC" points="70.50052 57.4486558 70.50052 60.9245838 67.6171349 62.5818692 67.6171349 59.222507"></polygon>
<polygon id="Fill-460" fill="#DDDDFC" points="77.3305756 53.5980442 77.3305756 54.3810859 71.3080082 57.7922551 71.3080082 57.0912412"></polygon>
<polygon id="Fill-462" fill="#DDDDFC" points="75.4728618 55.9732886 75.4728618 56.7563303 71.3077923 59.110852 71.3077923 58.4103778"></polygon>
<polygon id="Fill-464" fill="#DDDDFC" points="70.50052 62.4668144 70.50052 65.9427424 67.6171349 67.5994881 67.6171349 64.2406656"></polygon>
<polygon id="Fill-466" fill="#DDDDFC" points="77.3305756 58.6165266 77.3305756 59.3990286 71.3080082 62.8101979 71.3080082 62.1097236"></polygon>
<polygon id="Fill-468" fill="#DDDDFC" points="75.4728618 60.9912314 75.4728618 61.7742731 71.3077923 64.1287948 71.3077923 63.4288602"></polygon>
<polygon id="Fill-470" fill="#DDDDFC" points="70.50052 67.3600965 70.50052 70.8360245 67.6171349 72.4933099 67.6171349 69.1344873"></polygon>
<polygon id="Fill-472" fill="#DDDDFC" points="77.3305756 63.5095388 77.3305756 64.2925805 71.3080082 67.7037498 71.3080082 67.0027359"></polygon>
<polygon id="Fill-474" fill="#DDDDFC" points="75.4728618 65.8847294 75.4728618 66.6672314 71.3077923 69.0222927 71.3077923 68.3223581"></polygon>
<polygon id="Fill-476" fill="#DDDDFC" points="70.50052 72.0694636 70.50052 75.5453917 67.6171349 77.202677 67.6171349 73.8438545"></polygon>
<polygon id="Fill-478" fill="#DDDDFC" points="77.3305756 68.218852 77.3305756 69.0018937 71.3080082 72.413063 71.3080082 71.7120491"></polygon>
<polygon id="Fill-480" fill="#DDDDFC" points="75.4728618 70.5940965 75.4728618 71.3771382 71.3077923 73.7316599 71.3077923 73.0317253"></polygon>
<polygon id="Fill-482" fill="#DDDDFC" points="48.5285102 81.1535029 48.5285102 89.763184 37.3246999 96.1316713 37.3246999 87.640175"></polygon>
<polygon id="Fill-484" fill="#DDDDFC" points="64.9448095 71.9521962 64.9448095 73.0725233 50.1857416 81.45339 50.1857416 80.4507081"></polygon>
<polygon id="Fill-486" fill="#DDDDFC" points="63.773269 75.078157 63.773269 76.1984841 50.1857956 84.0127114 50.1857956 83.0094898"></polygon>
<polygon id="Fill-488" fill="#DDDDFC" points="58.8051905 80.3326852 58.8051905 81.4535519 50.1857956 86.3671251 50.1857956 85.3644432"></polygon>
<polygon id="Fill-490" fill="#DDDDFC" points="48.5285102 92.5516435 48.5285102 101.160245 37.3246999 107.529272 37.3246999 99.037776"></polygon>
<polygon id="Fill-492" fill="#DDDDFC" points="64.9448095 83.350067 64.9448095 84.4703941 50.1857416 92.8507212 50.1857416 91.8480392"></polygon>
<polygon id="Fill-494" fill="#DDDDFC" points="63.773269 86.4754881 63.773269 87.5958152 50.1857956 95.4095029 50.1857956 94.4073606"></polygon>
<polygon id="Fill-496" fill="#DDDDFC" points="58.8051905 91.7302862 58.8051905 92.8511529 50.1857956 97.7647261 50.1857956 96.7625838"></polygon>
<polygon id="Fill-498" fill="#DDDDFC" points="48.5285102 103.65756 48.5285102 112.266702 37.3246999 118.635189 37.3246999 110.143693"></polygon>
<polygon id="Fill-500" fill="#DDDDFC" points="64.9448095 94.4562535 64.9448095 95.5765805 50.1857416 103.956908 50.1857416 102.954226"></polygon>
<polygon id="Fill-502" fill="#DDDDFC" points="63.773269 97.5819444 63.773269 98.7022715 50.1857956 106.516499 50.1857956 105.513277"></polygon>
<polygon id="Fill-504" fill="#DDDDFC" points="58.8051905 102.836742 58.8051905 103.95707 50.1857956 108.871182 50.1857956 107.8685"></polygon>
<polygon id="Fill-506" fill="#DDDDFC" points="48.5285102 114.821975 48.5285102 123.430577 37.3246999 129.799065 37.3246999 121.308108"></polygon>
<polygon id="Fill-508" fill="#DDDDFC" points="64.9448095 105.620399 64.9448095 106.740726 50.1857416 115.121053 50.1857416 114.118371"></polygon>
<polygon id="Fill-510" fill="#DDDDFC" points="63.773269 108.74582 63.773269 109.866147 50.1857956 117.679835 50.1857956 116.677693"></polygon>
<polygon id="Fill-512" fill="#DDDDFC" points="58.8051905 114.000888 58.8051905 115.121215 50.1857956 120.035328 50.1857956 119.032646"></polygon>
<path d="M33.7611856,55.9899101 C34.1405642,56.4496975 34.0331725,57.1647424 33.5204988,57.5878332 C33.007825,58.0114636 32.2852249,57.9817825 31.9058463,57.5225348 C31.5253884,57.0627473 31.6338594,56.3471627 32.1470728,55.924072 C32.6592069,55.5009812 33.381807,55.5301226 33.7611856,55.9899101" id="Fill-514" fill="#E8F0F4"></path>
</g>
</g>
<g id="Group-2" transform="translate(125.000000, 201.000000)">
<g id="Group" transform="translate(174.000000, 204.894930) scale(-1, 1) translate(-174.000000, -204.894930) translate(0.000000, 0.394930)">
<g id="surface" transform="translate(0.000000, 91.000000)">
<path d="M0.530524572,87.7085749 C0.137728901,89.0826659 0.00321963665,101.905965 0,118.704862 L0,120.032804 C0.0067970107,154.614392 0.541614432,204.821838 0.531240047,207.702385 C0.468636001,224.797136 10.2638439,242.741884 34.8353953,260.290611 C70.8402342,286.005538 98.5491427,279.893141 124.466502,273.780028 C146.003367,268.700792 166.303534,263.621199 189.099635,276.80403 C239.328471,305.851691 272.898191,337.223966 325.728493,300.951684 C339.777557,291.305859 346.405358,279.893498 347.173062,267.560665 C347.373395,264.348848 347.818063,226.839849 347.822356,193.044938 L347.822356,192.080463 C347.819136,165.351692 347.535092,141.181857 346.628944,138.49628 C336.573661,108.691277 297.521614,113.851363 252.420944,88.7499649 C203.883133,61.7357152 159.98303,46.1148657 121.029004,46.1170121 C99.5508075,46.1180854 79.5711734,50.8685551 61.1587868,61.077468 C33.5568418,76.3809995 7.31286804,64.0023751 0.530524572,87.7085749 Z" id="Fill-1" fill="url(#linearGradient-4)"></path>
<path d="M325.728314,181.573013 C272.89837,217.845295 239.328292,186.473019 189.099456,157.425001 C138.87062,128.377697 100.759781,187.995216 34.8352165,140.91194 C-31.0897058,93.8283061 9.3528656,43.8956068 61.158608,15.1717032 C112.964708,-13.5522004 177.120619,0.934961417 252.421123,42.8445577 C326.447367,84.0443919 378.558617,145.300731 325.728314,181.573013 Z" id="Fill-4" fill="#E6E9FF"></path>
</g>
<g id="laptop" transform="translate(24.724448, 0.000000)">
<path d="M0.139619115,152.710224 C0.239347054,154.348663 2.33399122,155.491668 2.33399122,155.491668 L99.241667,211.615266 C99.241667,211.615266 102.012245,213.444146 105.349378,211.615266 C108.933507,209.65143 182.800097,164.444911 182.800097,164.444911 C182.800097,164.444911 185.846625,162.98689 186.061451,160.382643 C186.067527,160.493972 186.074319,160.604943 186.074319,160.724148 L186.074319,164.840112 C186.074319,167.625494 182.800097,169.190906 182.800097,169.190906 C182.800097,169.190906 108.933507,211.873722 105.349378,213.837557 C102.012245,215.666437 99.241667,213.837557 99.241667,213.837557 L2.33399122,157.714318 C2.33399122,157.714318 0.130325472,156.515827 0.130325472,154.813311 L0.130325472,153.228568 C0.132112711,153.188475 0.133542502,152.745306 0.136044636,152.431364 C0.137474428,152.580638 0.138904219,152.696979 0.139619115,152.710224" id="Fill-7" fill="#DDDDFC"></path>
<path d="M2.01936566,149.374854 L82.3661269,100.249613 C85.262884,98.6101006 87.3407281,100.249613 87.3407281,100.249613 L182.800025,155.616457 C182.800025,155.616457 186.074247,157.444979 186.074247,160.093616 C186.074247,160.1917 186.069243,160.287637 186.061379,160.382499 C185.846553,162.986747 182.800025,164.444768 182.800025,164.444768 C182.800025,164.444768 108.933435,209.651287 105.349306,211.615481 C102.012173,213.444003 99.2415955,211.615481 99.2415955,211.615481 L2.33391973,155.491883 C2.33391973,155.491883 0.239633012,154.34852 0.139547625,152.710081 C0.138832729,152.696836 0.137402938,152.580495 0.135973147,152.431221 C0.133471012,152.133746 0.130253982,151.702389 0.130253982,151.675542 C0.130253982,150.362142 2.01936566,149.374854 2.01936566,149.374854" id="Fill-9" fill="#F6F6FF"></path>
<path d="M189.7615,155.957068 C189.844786,155.905878 189.924139,155.851824 190.00099,155.795623 C192.108145,154.254552 191.761778,150.89033 191.761778,150.89033 C191.761778,150.89033 191.764995,66.7196103 191.569471,62.6329997 C191.387888,58.8273972 188.384611,57.413049 188.384611,57.413049 L90.034991,1.34028371 C90.034991,1.34028371 87.9689426,0.146804399 86.521279,0.915370711 C86.5094832,0.921814211 86.4093978,0.981237596 86.2814315,1.05784365 C86.2117292,1.10008437 86.1334481,1.14662075 86.0555245,1.19315714 C86.0555245,1.19315714 86.0562394,1.19315714 86.0562394,1.19279917 C86.4555086,0.927541766 87.2479704,0.529118708 87.5031881,0.376264579 C87.630797,0.299658528 87.7312398,0.240235143 87.7426782,0.234149616 C89.1903418,-0.534774669 91.7989959,0.835184939 91.7989959,0.835184939 L190.148974,56.9083082 C190.148974,56.9083082 193.151535,58.3222984 193.333476,62.1282589 C193.529,66.2148695 193.525783,150.385231 193.525783,150.385231 C193.525783,150.385231 193.87215,153.749453 191.764995,155.290524 C191.688501,155.346725 191.609505,155.400779 191.525863,155.451969 C189.269295,156.833026 187.060982,156.421716 187.060982,156.421716 L187.060625,156.421716 C187.954601,156.536625 188.927217,156.467894 189.7615,155.957068" id="Fill-11" fill="#DDDDFC"></path>
<path d="M85.6342365,1.44738899 C85.651394,1.4370078 85.850135,1.31708711 86.0556675,1.19322873 C86.1332337,1.14669235 86.2115147,1.09979799 86.2815745,1.05791524 C86.4095408,0.981309191 86.5092688,0.921885805 86.5210645,0.915442306 C87.9687282,0.146875993 90.035134,1.34035531 90.035134,1.34035531 L188.384754,57.4131206 C188.384754,57.4131206 191.387673,58.8274688 191.569257,62.6330713 C191.765138,66.7196819 191.761564,150.890401 191.761564,150.890401 C191.761564,150.890401 192.108288,154.254266 190.001133,155.795336 C189.924282,155.851538 189.844928,155.90595 189.761643,155.95714 C188.92736,156.467966 187.954744,156.536697 187.060767,156.421788 C185.536253,156.225619 184.239432,155.493566 184.239432,155.493566 L87.2899348,99.03777 C87.2899348,99.03777 84.8088895,98.1167076 84.6962935,94.7864922 L84.6591189,4.26105048 C84.6591189,4.26105048 84.5154249,2.13183184 85.6342365,1.44738899" id="Fill-13" fill="#F6F6FF"></path>
<path d="M159.165862,158.0182 L159.150134,157.896132 C159.151922,157.936941 159.157283,157.977392 159.165862,158.0182" id="Fill-15" fill="#DDDDFC"></path>
<path d="M159.149098,157.889474 L159.15017,157.896275 C159.149813,157.893769 159.15017,157.891621 159.149813,157.889474 L159.149098,157.889474 Z" id="Fill-17" fill="#DDDDFC"></path>
<path d="M172.167311,158.781075 L167.2138,161.626954 C166.31875,162.14136 165.738612,162.092318 164.997266,161.688525 L159.665574,158.643256 C159.364603,158.456752 159.213045,158.239463 159.165862,158.018236 L159.222696,158.456752 C159.259871,158.681201 159.451105,158.868062 159.687021,159.013399 L165.018713,162.059026 C165.759702,162.462819 166.340197,162.512219 167.234889,161.998171 L172.188758,159.151576 C172.494019,158.97617 172.786053,158.852669 172.816079,158.500783 L172.856113,157.855717 L172.853611,157.855717 C172.838241,158.209393 172.591244,158.537296 172.167311,158.781075" id="Fill-19" fill="#DDDDFC"></path>
<path d="M149.387341,152.363099 L149.371256,152.24103 C149.373401,152.281481 149.37912,152.32229 149.387341,152.363099" id="Fill-21" fill="#DDDDFC"></path>
<polygon id="Fill-23" fill="#DDDDFC" points="149.370613 152.234336 149.371327 152.24078 149.371327 152.234336"></polygon>
<path d="M162.388469,153.125973 L157.435314,155.97221 C156.540622,156.486258 155.960127,156.436858 155.21878,156.033066 L149.887089,152.987438 C149.58576,152.802008 149.434917,152.584361 149.387377,152.363135 L149.444211,152.80165 C149.481743,153.026099 149.672263,153.212603 149.908536,153.358297 L155.240585,156.404283 C155.981217,156.807717 156.561354,156.857118 157.456404,156.342711 L162.410273,153.496475 C162.715176,153.32071 163.007926,153.197568 163.037236,152.845323 L163.077271,152.200257 L163.075126,152.200615 C163.059756,152.554292 162.812759,152.882194 162.388469,153.125973" id="Fill-25" fill="#DDDDFC"></path>
<path d="M152.716789,147.388789 L147.763277,150.235026 C146.868585,150.749074 146.28809,150.700031 145.546386,150.296239 L140.215052,147.250253 C139.913723,147.065182 139.762523,146.846819 139.71534,146.625234 L139.771816,147.064824 C139.809348,147.288914 140.000583,147.475418 140.236141,147.620755 L145.567833,150.66674 C146.309179,151.070533 146.889317,151.119575 147.784366,150.605527 L152.737878,147.75929 C153.043139,147.583883 153.335173,147.460383 153.365199,147.108496 L153.405233,146.46343 L153.403089,146.46343 C153.387718,146.816749 153.140722,147.14501 152.716789,147.388789" id="Fill-27" fill="#DDDDFC"></path>
<path d="M130.28029,140.68039 L130.264562,140.558321 C130.26635,140.59913 130.271711,140.639581 130.28029,140.68039" id="Fill-29" fill="#DDDDFC"></path>
<polygon id="Fill-31" fill="#DDDDFC" points="130.263562 140.551734 130.264634 140.558178 130.264634 140.551734"></polygon>
<path d="M143.281775,141.443085 L138.328263,144.289322 C137.433214,144.80337 136.853076,144.754328 136.112087,144.350893 L130.780038,141.305266 C130.479067,141.118762 130.327509,140.901473 130.280326,140.680246 L130.336803,141.118762 C130.374335,141.343569 130.565569,141.530072 130.801485,141.675409 L136.133176,144.721037 C136.874166,145.124829 137.454661,145.174229 138.34971,144.660181 L143.303222,141.813944 C143.608125,141.63818 143.900517,141.51468 143.930543,141.162793 L143.970577,140.517727 L143.967717,140.517727 C143.952705,140.871404 143.705708,141.199664 143.281775,141.443085" id="Fill-33" fill="#DDDDFC"></path>
<path d="M120.501805,135.025109 L120.48572,134.90304 C120.487864,134.943491 120.493226,134.9843 120.501805,135.025109" id="Fill-35" fill="#DDDDFC"></path>
<polygon id="Fill-37" fill="#DDDDFC" points="120.485041 134.896311 120.485755 134.903112 120.485755 134.896311"></polygon>
<path d="M133.503254,135.788091 L128.5501,138.634328 C127.65505,139.148376 127.074913,139.099334 126.333566,138.695541 L121.001517,135.649556 C120.700188,135.464484 120.549345,135.246479 120.501805,135.025252 L120.558639,135.464126 C120.596171,135.688217 120.786691,135.875078 121.023321,136.020415 L126.355013,139.0664 C127.096002,139.469835 127.675782,139.519235 128.570832,139.004829 L133.524343,136.158592 C133.829604,135.982828 134.122354,135.860043 134.151664,135.507441 L134.191699,134.862375 L134.189554,134.862733 C134.174541,135.216409 133.927545,135.544312 133.503254,135.788091" id="Fill-39" fill="#DDDDFC"></path>
<path d="M123.830895,130.050835 L118.877383,132.897072 C117.983049,133.411478 117.402554,133.362078 116.661207,132.958285 L111.329158,129.912299 C111.028187,129.727228 110.876629,129.508865 110.829803,129.28728 L110.88628,129.72687 C110.923812,129.951318 111.115047,130.137464 111.350605,130.282801 L116.682296,133.328428 C117.423643,133.732579 118.003781,133.781979 118.89883,133.267931 L123.852342,130.421336 C124.15796,130.246288 124.449637,130.122071 124.479663,129.770542 L124.519697,129.125477 L124.517195,129.125477 C124.502182,129.478795 124.255186,129.806698 123.830895,130.050835" id="Fill-41" fill="#DDDDFC"></path>
<path d="M101.165058,123.505957 L101.165773,123.512401 C101.165415,123.509895 101.16613,123.508105 101.165415,123.505957 L101.165058,123.505957 Z" id="Fill-43" fill="#DDDDFC"></path>
<path d="M114.18295,124.39738 L109.229795,127.243259 C108.334746,127.757665 107.754608,127.708265 107.012904,127.30483 L101.681213,124.259203 C101.380599,124.073415 101.229041,123.85541 101.181858,123.634183 L101.238692,124.073415 C101.275152,124.297506 101.466744,124.484009 101.703017,124.629704 L107.034351,127.674973 C107.77534,128.079124 108.356193,128.128524 109.250527,127.614118 L114.204039,124.767881 C114.509657,124.592117 114.801334,124.468616 114.83136,124.11673 L114.872109,123.471664 L114.869607,123.471664 C114.854237,123.825698 114.606883,124.153243 114.18295,124.39738" id="Fill-45" fill="#DDDDFC"></path>
<path d="M91.4033012,117.979404 L91.387216,117.856977 C91.3893607,117.897428 91.3950799,117.938237 91.4033012,117.979404" id="Fill-47" fill="#DDDDFC"></path>
<polygon id="Fill-49" fill="#DDDDFC" points="91.3865726 117.85039 91.3872875 117.857192 91.3872875 117.85039"></polygon>
<path d="M104.404429,118.742207 L99.4512744,121.588444 C98.5565825,122.10285 97.9757298,122.053091 97.2347405,121.649299 L91.9026915,118.603313 C91.6020779,118.418242 91.45052,118.200237 91.4033369,117.979368 L91.4601711,118.417884 C91.4973457,118.64269 91.6882228,118.828836 91.9244958,118.974531 L97.2565448,122.020158 C97.9971767,122.423593 98.5773145,122.473351 99.4723638,121.958945 L104.425876,119.11235 C104.731136,118.937301 105.023171,118.813801 105.053196,118.461914 L105.093231,117.81649 L105.091086,117.816848 C105.075716,118.170167 104.828719,118.49807 104.404429,118.742207" id="Fill-51" fill="#DDDDFC"></path>
<path d="M94.7327488,113.004843 L89.7788796,115.85108 C88.8845452,116.365486 88.30405,116.316086 87.5623457,115.912293 L82.2302968,112.866666 C81.9293257,112.681236 81.7784827,112.462873 81.7312996,112.241646 L81.7877764,112.681236 C81.8249509,112.904969 82.016543,113.091472 82.2517436,113.236809 L87.5837926,116.282794 C88.3244245,116.686945 88.9052772,116.735629 89.8003265,116.221581 L94.7531233,113.375344 C95.0587412,113.199938 95.3511335,113.076437 95.3808017,112.724551 L95.4204784,112.079485 L95.4190486,112.079485 C95.4036784,112.432803 95.1566819,112.761064 94.7327488,113.004843" id="Fill-53" fill="#DDDDFC"></path>
<path d="M149.546191,163.755349 L149.530106,163.633281 C149.532608,163.674447 149.537612,163.71454 149.546191,163.755349" id="Fill-55" fill="#DDDDFC"></path>
<path d="M149.529784,163.626801 L149.530141,163.633603 C149.530141,163.630739 149.530856,163.628949 149.530141,163.626801 L149.529784,163.626801 Z" id="Fill-57" fill="#DDDDFC"></path>
<path d="M139.76767,158.100355 L139.751585,157.978286 C139.754087,158.018737 139.759449,158.059546 139.76767,158.100355" id="Fill-59" fill="#DDDDFC"></path>
<path d="M139.750906,157.971521 L139.75162,157.978322 C139.752335,157.976174 139.75162,157.973669 139.75162,157.971521 L139.750906,157.971521 Z" id="Fill-61" fill="#DDDDFC"></path>
<path d="M152.769155,158.86323 L147.816001,161.709466 C146.921309,162.223873 146.340813,162.174114 145.599467,161.770322 L140.267418,158.724694 C139.966804,158.539265 139.815246,158.321618 139.767706,158.100391 L139.82454,158.539265 C139.862072,158.763713 140.052592,158.949859 140.289222,159.095553 L145.620914,162.141539 C146.361545,162.544974 146.942041,162.594374 147.836732,162.079968 L152.790602,159.233731 C153.095862,159.057966 153.387897,158.934824 153.417565,158.582579 L153.457599,157.937513 L153.455812,157.937871 C153.440799,158.291548 153.193445,158.61945 152.769155,158.86323" id="Fill-63" fill="#DDDDFC"></path>
<path d="M143.097118,153.125973 L138.143606,155.97221 C137.248914,156.486258 136.668419,156.437216 135.927072,156.033423 L130.595023,152.987438 C130.294052,152.802366 130.143209,152.584003 130.095668,152.362777 L130.152145,152.802008 C130.18932,153.026099 130.380554,153.212603 130.61647,153.357939 L135.948161,156.403925 C136.689151,156.808075 137.270361,156.857118 138.164695,156.342711 L143.118207,153.496475 C143.423467,153.321068 143.716217,153.197568 143.745528,152.845681 L143.785562,152.200615 L143.783417,152.200615 C143.768047,152.553934 143.521051,152.882194 143.097118,153.125973" id="Fill-65" fill="#DDDDFC"></path>
<path d="M120.660976,146.417467 L120.644891,146.295756 C120.646678,146.336565 120.65204,146.376658 120.660976,146.417467" id="Fill-67" fill="#DDDDFC"></path>
<path d="M120.644212,146.288847 L120.644927,146.295649 C120.644927,146.293143 120.645284,146.290995 120.644927,146.288847 L120.644212,146.288847 Z" id="Fill-69" fill="#DDDDFC"></path>
<path d="M133.662104,147.180341 L128.708592,150.02622 C127.8139,150.540626 127.233762,150.491584 126.492416,150.08815 L121.160367,147.042522 C120.859753,146.856019 120.707838,146.638729 120.661012,146.417503 L120.717489,146.856019 C120.754663,147.080467 120.945898,147.267329 121.181814,147.413023 L126.513505,150.458651 C127.254137,150.862443 127.835347,150.911486 128.729682,150.397438 L133.683551,147.551201 C133.988811,147.375436 134.280846,147.251936 134.310872,146.900049 L134.350906,146.255341 L134.348761,146.255341 C134.333391,146.60866 134.086394,146.936562 133.662104,147.180341" id="Fill-71" fill="#DDDDFC"></path>
<path d="M110.882134,140.762544 L110.866406,140.640476 C110.868551,140.680927 110.873912,140.721735 110.882134,140.762544" id="Fill-73" fill="#DDDDFC"></path>
<path d="M110.865369,140.63371 L110.866442,140.640512 C110.866799,140.638006 110.866442,140.635858 110.866442,140.63371 L110.865369,140.63371 Z" id="Fill-75" fill="#DDDDFC"></path>
<path d="M123.883583,141.52524 L118.930429,144.371835 C118.035737,144.885883 117.455241,144.836483 116.714252,144.43269 L111.381846,141.386705 C111.081232,141.201275 110.929674,140.983628 110.882134,140.762401 L110.938968,141.200917 C110.9765,141.425724 111.16702,141.612227 111.40365,141.757564 L116.735342,144.803549 C117.475973,145.206984 118.056826,145.256742 118.951518,144.742336 L123.90503,141.895741 C124.21029,141.720335 124.502325,141.597192 124.531993,141.244948 L124.572027,140.599882 L124.569883,140.599882 C124.555227,140.953558 124.307873,141.281461 123.883583,141.52524" id="Fill-77" fill="#DDDDFC"></path>
<path d="M114.211546,135.788091 L109.258391,138.634328 C108.363342,139.148376 107.782489,139.099334 107.0415,138.695541 L101.709451,135.649914 C101.40848,135.464484 101.257637,135.246121 101.210096,135.024894 L101.266931,135.464484 C101.303748,135.688217 101.495697,135.875078 101.730898,136.020057 L107.062947,139.066042 C107.803936,139.469835 108.384431,139.519235 109.279123,139.004829 L114.232635,136.158592 C114.537895,135.983186 114.830645,135.859685 114.859956,135.507799 L114.89999,134.862733 L114.897845,134.862733 C114.882475,135.216051 114.635479,135.544312 114.211546,135.788091" id="Fill-79" fill="#DDDDFC"></path>
<path d="M91.562151,129.371582 L91.5460658,129.249514 C91.548568,129.290323 91.5535722,129.331132 91.562151,129.371582" id="Fill-81" fill="#DDDDFC"></path>
<path d="M91.5453867,129.242927 L91.5461016,129.249729 C91.5461016,129.247223 91.546459,129.245075 91.5461016,129.242927 L91.5453867,129.242927 Z" id="Fill-83" fill="#DDDDFC"></path>
<path d="M104.563243,130.134385 L99.6100884,132.980264 C98.7153966,133.495028 98.1349013,133.44527 97.393912,133.042194 L92.0615056,129.996208 C91.760892,129.810421 91.6093341,129.592773 91.562151,129.371547 L91.6189852,129.810421 C91.6561598,130.034869 91.8473943,130.221373 92.082595,130.366709 L97.4150014,133.412695 C98.1556333,133.816487 98.736486,133.86553 99.6311779,133.351124 L104.58469,130.505245 C104.88995,130.32948 105.181985,130.20598 105.212368,129.854093 L105.252402,129.209027 L105.2499,129.209027 C105.234887,129.562346 104.987533,129.890606 104.563243,130.134385" id="Fill-85" fill="#DDDDFC"></path>
<path d="M81.78363,123.716409 L81.7675448,123.594341 C81.7696895,123.634792 81.7754087,123.675958 81.78363,123.716409" id="Fill-87" fill="#DDDDFC"></path>
<polygon id="Fill-89" fill="#DDDDFC" points="81.7669014 123.587754 81.7676163 123.594556 81.7676163 123.587754"></polygon>
<path d="M94.7844,124.479534 L89.8316032,127.325771 C88.9369113,127.839819 88.3567735,127.790419 87.6154267,127.386627 L82.2833778,124.340641 C81.9827642,124.15557 81.8312063,123.937922 81.7836657,123.716338 L81.8401425,124.15557 C81.8780319,124.37966 82.0685516,124.565806 82.3048246,124.7115 L87.6368736,127.757486 C88.3775055,128.16092 88.9580007,128.210679 89.8526926,127.696273 L94.8065618,124.850036 C95.1118222,124.674271 95.4038571,124.551129 95.4335252,124.198884 L95.4735594,123.55346 L95.4714147,123.553818 C95.4560445,123.907495 95.209048,124.235755 94.7844,124.479534" id="Fill-91" fill="#DDDDFC"></path>
<path d="M139.152967,169.492605 L139.136882,169.370537 C139.138669,169.411346 139.144388,169.451797 139.152967,169.492605" id="Fill-93" fill="#DDDDFC"></path>
<path d="M139.136203,169.364058 L139.136917,169.370859 C139.13656,169.368353 139.137275,169.366205 139.13656,169.364058 L139.136203,169.364058 Z" id="Fill-95" fill="#DDDDFC"></path>
<path d="M129.374482,163.837611 L129.358396,163.715543 C129.360541,163.755994 129.36626,163.796802 129.374482,163.837611" id="Fill-97" fill="#DDDDFC"></path>
<polygon id="Fill-99" fill="#DDDDFC" points="129.35736 163.708777 129.358432 163.715578 129.358432 163.708777"></polygon>
<path d="M142.375573,164.600486 L137.422419,167.446723 C136.527727,167.960771 135.946874,167.911371 135.205885,167.507578 L129.873836,164.461951 C129.572865,164.276521 129.421665,164.058874 129.374482,163.837647 L129.430958,164.276163 C129.46849,164.500612 129.659368,164.687115 129.895641,164.83281 L135.22769,167.878795 C135.967964,168.28223 136.548459,168.33163 137.443508,167.817224 L142.39702,164.970987 C142.702281,164.795223 142.994316,164.67208 143.024341,164.319836 L143.064375,163.67477 L143.062231,163.675128 C143.04686,164.028804 142.799864,164.356707 142.375573,164.600486" id="Fill-101" fill="#DDDDFC"></path>
<path d="M132.703893,158.86323 L127.750024,161.709466 C126.85569,162.223873 126.275195,162.174472 125.53349,161.77068 L120.201441,158.725052 C119.90047,158.539623 119.749627,158.32126 119.702087,158.100033 L119.758921,158.539265 C119.796096,158.763355 119.987688,158.949859 120.222888,159.095196 L125.554937,162.141181 C126.295569,162.545332 126.876422,162.594374 127.771471,162.079968 L132.724983,159.233731 C133.029886,159.058324 133.322278,158.934824 133.351589,158.582937 L133.391623,157.937871 L133.390193,157.937871 C133.374823,158.29119 133.127827,158.61945 132.703893,158.86323" id="Fill-103" fill="#DDDDFC"></path>
<path d="M110.267431,152.154723 L110.251345,152.032655 C110.253133,152.073821 110.258852,152.113914 110.267431,152.154723" id="Fill-105" fill="#DDDDFC"></path>
<path d="M110.250666,152.026175 L110.251381,152.032977 C110.251024,152.030113 110.251739,152.028323 110.251024,152.026175 L110.250666,152.026175 Z" id="Fill-107" fill="#DDDDFC"></path>
<path d="M123.268522,152.917598 L118.315368,155.763835 C117.420319,156.278241 116.840181,156.228841 116.098477,155.825406 L110.766785,152.779778 C110.466172,152.593275 110.314614,152.375986 110.267431,152.154759 L110.323907,152.593275 C110.360725,152.817723 110.551959,153.004585 110.78859,153.15028 L116.119566,156.195549 C116.860913,156.599342 117.441766,156.648742 118.336457,156.134694 L123.289612,153.288457 C123.59523,153.112693 123.887265,152.989192 123.91729,152.637305 L123.957324,151.992597 L123.954822,151.992597 C123.939809,152.345916 123.692455,152.674177 123.268522,152.917598" id="Fill-109" fill="#DDDDFC"></path>
<path d="M100.48891,146.499729 L100.472824,146.37766 C100.474969,146.418111 100.480331,146.45892 100.48891,146.499729" id="Fill-111" fill="#DDDDFC"></path>
<polygon id="Fill-113" fill="#DDDDFC" points="100.472145 146.370895 100.47286 146.377696 100.47286 146.370895"></polygon>
<path d="M113.490037,147.262603 L108.53724,150.10884 C107.642191,150.622888 107.061338,150.573488 106.320349,150.169696 L100.9883,147.124068 C100.687329,146.938639 100.536128,146.720991 100.488945,146.499765 L100.54578,146.938639 C100.582954,147.162729 100.773474,147.349233 101.010104,147.494927 L106.342153,150.540913 C107.082785,150.944348 107.662923,150.993748 108.557972,150.479342 L113.511484,147.633105 C113.816744,147.45734 114.108779,147.334198 114.138805,146.982311 L114.178839,146.336887 L114.176694,146.337245 C114.161324,146.690922 113.914328,147.018824 113.490037,147.262603" id="Fill-115" fill="#DDDDFC"></path>
<path d="M103.818,141.52524 L98.8644881,144.371835 C97.9701536,144.885883 97.3896584,144.836483 96.6479542,144.43269 L91.3159052,141.387063 C91.0152916,141.201633 90.8637337,140.98327 90.8169081,140.762043 L90.8733848,141.201275 C90.9105594,141.425366 91.101794,141.612227 91.3373521,141.757564 L96.669401,144.803191 C97.4100329,145.207342 97.9908856,145.256384 98.8859349,144.742336 L103.839089,141.895741 C104.14435,141.720335 104.436742,141.596834 104.46641,141.245306 L104.506087,140.599882 L104.5043,140.599882 C104.489287,140.9532 104.24229,141.281461 103.818,141.52524" id="Fill-117" fill="#DDDDFC"></path>
<path d="M81.1685695,135.108839 L81.1524844,134.98677 C81.1546291,135.027937 81.1603482,135.06803 81.1685695,135.108839" id="Fill-119" fill="#DDDDFC"></path>
<path d="M81.1518052,134.980005 L81.1525201,134.986806 C81.1525201,134.9843 81.153235,134.98251 81.1525201,134.980005 L81.1518052,134.980005 Z" id="Fill-121" fill="#DDDDFC"></path>
<path d="M94.169697,135.871642 L89.2165427,138.717879 C88.3218509,139.232285 87.7417131,139.182885 87.0000089,138.77945 L81.6679599,135.733464 C81.3677037,135.547319 81.2154309,135.33003 81.1686053,135.108803 L81.2254395,135.547319 C81.2622566,135.772125 81.4538486,135.958629 81.6894067,136.104324 L87.0214557,139.149951 C87.762445,139.553386 88.3432977,139.602786 89.2376321,139.088738 L94.1911439,136.242501 C94.4967618,136.066737 94.7884392,135.943236 94.8184648,135.591349 L94.858499,134.946284 L94.8563543,134.946284 C94.8413415,135.29996 94.5939876,135.627863 94.169697,135.871642" id="Fill-123" fill="#DDDDFC"></path>
<path d="M71.3904417,129.454095 L71.3743566,129.331669 C71.3765013,129.372119 71.381863,129.412928 71.3904417,129.454095" id="Fill-125" fill="#DDDDFC"></path>
<polygon id="Fill-127" fill="#DDDDFC" points="71.37332 129.32476 71.3743923 129.331919 71.3743923 129.32476"></polygon>
<path d="M84.391176,130.21654 L79.4383792,133.062777 C78.5436873,133.577183 77.9628346,133.527783 77.2218453,133.123632 L71.8897963,130.078005 C71.5888252,129.892933 71.4372674,129.674928 71.3904417,129.454059 L71.4469185,129.892575 C71.484093,130.117024 71.6753276,130.303527 71.9112432,130.448506 L77.2429347,133.494849 C77.983924,133.898284 78.5644193,133.947684 79.4594686,133.433278 L84.4129803,130.587041 C84.7182408,130.411277 85.0102756,130.288492 85.0395863,129.936606 L85.0796205,129.291182 L85.0781907,129.29154 C85.0628204,129.644858 84.8154666,129.972761 84.391176,130.21654" id="Fill-129" fill="#DDDDFC"></path>
<path d="M85.1123627,118.833096 L80.1599233,121.679333 C79.264874,122.193739 78.6847362,122.143981 77.9433894,121.740188 L72.6113405,118.69456 C72.3107268,118.509131 72.159169,118.291484 72.1116284,118.070257 L72.1681052,118.509131 C72.2059946,118.733579 72.3965143,118.919725 72.6327873,119.065062 L77.9648363,122.111405 C78.7054682,122.51484 79.285606,122.56424 80.1806553,122.049834 L85.1345245,119.203597 C85.4397849,119.027833 85.7321772,118.90469 85.7614879,118.552445 L85.8015221,117.90738 L85.7993774,117.907738 C85.7840071,118.261056 85.5370107,118.589317 85.1123627,118.833096" id="Fill-131" fill="#DDDDFC"></path>
<path d="M74.7191744,124.570424 L69.7663776,127.41666 C68.8716857,127.930709 68.2911905,127.881308 67.5498437,127.477516 L62.2181522,124.43153 C61.9168237,124.246459 61.7652658,124.028454 61.7180827,123.807585 L61.7749169,124.246101 C61.8120915,124.470549 62.0033261,124.657053 62.2395991,124.802747 L67.5712906,127.848375 C68.3122799,128.25181 68.8924177,128.301568 69.787467,127.787162 L74.7409788,124.940567 C75.0465966,124.76516 75.3382741,124.642018 75.3675848,124.289773 L75.4076189,123.644707 L75.4058317,123.645065 C75.3908189,123.998384 75.143465,124.326286 74.7191744,124.570424" id="Fill-133" fill="#DDDDFC"></path>
<path d="M162.423713,164.558889 L147.076691,173.108697 C146.181999,173.622745 145.601862,173.573703 144.860872,173.169911 L139.528823,170.123925 C139.227137,169.938854 139.076652,169.720491 139.029111,169.498906 L139.085945,169.938496 C139.122763,170.162586 139.314712,170.34909 139.549913,170.494426 L144.882319,173.540412 C145.622951,173.944205 146.203804,173.993247 147.098853,173.479199 L162.44516,164.929391 C162.75042,164.753984 163.042813,164.630484 163.072481,164.278597 L163.112872,163.633531 L163.110013,163.633531 C163.095,163.98685 162.848003,164.31511 162.423713,164.558889" id="Fill-135" fill="#DDDDFC"></path>
<path d="M129.533296,175.229862 L129.517211,175.107793 C129.519355,175.14896 129.524717,175.189053 129.533296,175.229862" id="Fill-137" fill="#DDDDFC"></path>
<path d="M129.516531,175.101314 L129.517246,175.107757 C129.517246,175.105252 129.517604,175.103462 129.517246,175.101314 L129.516531,175.101314 Z" id="Fill-139" fill="#DDDDFC"></path>
<path d="M142.534423,175.992736 L137.581269,178.838973 C136.68622,179.353021 136.106082,179.303979 135.365092,178.900544 L130.032686,175.854917 C129.732072,175.668413 129.580515,175.451124 129.533331,175.229897 L129.589808,175.668413 C129.62734,175.892862 129.818575,176.079723 130.053775,176.225418 L135.386182,179.270688 C136.126814,179.67448 136.707666,179.72388 137.602358,179.209832 L142.555513,176.363595 C142.86113,176.187831 143.153165,176.064331 143.183191,175.712444 L143.223225,175.067736 L143.22108,175.067736 C143.205353,175.421055 142.958714,175.748957 142.534423,175.992736" id="Fill-141" fill="#DDDDFC"></path>
<path d="M119.754775,169.574939 L119.73869,169.452871 C119.740834,169.493321 119.746553,169.533772 119.754775,169.574939" id="Fill-143" fill="#DDDDFC"></path>
<path d="M119.738046,169.446033 L119.738761,169.452835 C119.739476,169.450329 119.738761,169.448181 119.738761,169.446033 L119.738046,169.446033 Z" id="Fill-145" fill="#DDDDFC"></path>
<path d="M132.755545,170.337814 L127.802748,173.184051 C126.908056,173.698099 126.327918,173.648698 125.586214,173.244906 L120.254522,170.199278 C119.953909,170.013849 119.802351,169.796202 119.75481,169.574975 L119.811287,170.013491 C119.849177,170.237939 120.039696,170.424443 120.275969,170.570138 L125.608018,173.615765 C126.34865,174.019558 126.928788,174.068958 127.823837,173.554552 L132.777706,170.708315 C133.082967,170.53255 133.375002,170.409408 133.40467,170.057163 L133.444704,169.412097 L133.442559,169.412455 C133.427189,169.766132 133.180193,170.093677 132.755545,170.337814" id="Fill-147" fill="#DDDDFC"></path>
<path d="M123.083865,164.600486 L118.130711,167.446723 C117.236019,167.960771 116.655166,167.911729 115.914177,167.507936 L110.58177,164.462308 C110.281157,164.276879 110.129599,164.058516 110.082416,163.837289 L110.13925,164.276521 C110.176424,164.500612 110.367659,164.687115 110.603575,164.832452 L115.935266,167.878437 C116.675898,168.282588 117.256751,168.331272 118.1518,167.817224 L123.105312,164.970987 C123.410215,164.795581 123.702607,164.67208 123.732633,164.320194 L123.772667,163.675128 L123.770165,163.675128 C123.755152,164.028446 123.508155,164.356707 123.083865,164.600486" id="Fill-149" fill="#DDDDFC"></path>
<path d="M100.647402,157.891979 L100.631674,157.769911 C100.633819,157.811078 100.639181,157.851171 100.647402,157.891979" id="Fill-151" fill="#DDDDFC"></path>
<path d="M100.631317,157.763432 L100.631674,157.770233 C100.631674,157.767727 100.632032,157.765579 100.631674,157.763432 L100.631317,157.763432 Z" id="Fill-153" fill="#DDDDFC"></path>
<path d="M113.648851,158.654854 L108.695697,161.500733 C107.801005,162.015139 107.22051,161.966097 106.479163,161.562662 L101.147114,158.517035 C100.8465,158.330531 100.694943,158.113242 100.647402,157.892015 L100.704594,158.330531 C100.741768,158.55498 100.933003,158.741841 101.168918,158.887536 L106.50061,161.932805 C107.241242,162.336598 107.822094,162.385998 108.716786,161.87195 L113.670298,159.025713 C113.975558,158.849949 114.267593,158.726448 114.297619,158.374562 L114.338011,157.729854 L114.335508,157.729854 C114.320138,158.083172 114.073142,158.411075 113.648851,158.654854" id="Fill-155" fill="#DDDDFC"></path>
<path d="M90.8692384,152.236985 L90.8531533,152.114917 C90.855298,152.155367 90.8610171,152.196176 90.8692384,152.236985" id="Fill-157" fill="#DDDDFC"></path>
<polygon id="Fill-159" fill="#DDDDFC" points="90.8524741 152.108151 90.853189 152.114952 90.853189 152.108151"></polygon>
<path d="M103.870008,152.999931 L98.9172116,155.846168 C98.0225197,156.360216 97.4423819,156.310816 96.7006777,155.907023 L91.3689862,152.861396 C91.0683726,152.675966 90.9168147,152.458319 90.8692742,152.237093 L90.9257509,152.675608 C90.9632829,152.900057 91.1541601,153.086561 91.3900756,153.232255 L96.722482,156.278241 C97.4631139,156.681675 98.0432517,156.731076 98.938301,156.216669 L103.891813,153.370432 C104.197073,153.194668 104.489108,153.071526 104.519134,152.719281 L104.559168,152.074215 L104.557023,152.074573 C104.541653,152.42825 104.294299,152.756152 103.870008,152.999931" id="Fill-161" fill="#DDDDFC"></path>
<path d="M94.1983286,147.262603 L89.2451743,150.10884 C88.3504824,150.622888 87.7696297,150.573846 87.0286404,150.170054 L81.6965914,147.124426 C81.3956204,146.938997 81.24442,146.720634 81.1968794,146.499407 L81.2540711,146.938639 C81.2908882,147.162729 81.4821228,147.349233 81.7180383,147.494569 L87.0497298,150.540555 C87.7910766,150.944705 88.3715718,150.99339 89.2662637,150.479342 L94.2197755,147.633105 C94.5246784,147.457698 94.8170708,147.334198 94.8470964,146.982311 L94.8871305,146.337245 L94.8846284,146.337245 C94.8696156,146.690564 94.6226191,147.018824 94.1983286,147.262603" id="Fill-163" fill="#DDDDFC"></path>
<path d="M71.5492558,140.846023 L71.5331706,140.723955 C71.5349579,140.765122 71.5403196,140.805215 71.5492558,140.846023" id="Fill-165" fill="#DDDDFC"></path>
<path d="M71.532134,140.71744 L71.5332064,140.724241 C71.5328489,140.721735 71.5332064,140.719588 71.5328489,140.71744 L71.532134,140.71744 Z" id="Fill-167" fill="#DDDDFC"></path>
<path d="M84.5503833,141.608898 L79.597229,144.454777 C78.7021796,144.969183 78.1220419,144.920141 77.3803376,144.516706 L72.0486461,141.471079 C71.7480325,141.284575 71.5964746,141.067286 71.5492915,140.846059 L71.6054108,141.284575 C71.6429428,141.509024 71.8341774,141.695885 72.0697355,141.84158 L77.4017845,144.886849 C78.1427738,145.290642 78.7232691,145.340042 79.6183184,144.825994 L84.5714727,141.979757 C84.8770906,141.803993 85.1691254,141.680492 85.199151,141.328606 L85.2391852,140.683898 L85.2366831,140.683898 C85.2213128,141.037216 84.9743164,141.365119 84.5503833,141.608898" id="Fill-169" fill="#DDDDFC"></path>
<path d="M61.7704131,135.190993 L61.7546854,135.068925 C61.75683,135.109376 61.7621918,135.149827 61.7704131,135.190993" id="Fill-171" fill="#DDDDFC"></path>
<polygon id="Fill-173" fill="#DDDDFC" points="61.7532913 135.062338 61.7547211 135.06914 61.7547211 135.062338"></polygon>
<path d="M74.7715048,135.954118 L69.8183505,138.800355 C68.9236586,139.314403 68.3435208,139.264645 67.6021741,138.861211 L62.2704825,135.815225 C61.969154,135.629796 61.8183111,135.412149 61.7704131,135.190922 L61.8272473,135.629796 C61.8651367,135.854244 62.0556564,136.040748 62.2919294,136.186084 L67.6239784,139.23207 C68.3646103,139.635505 68.9447481,139.685263 69.8394399,139.170857 L74.7929517,136.324262 C75.0982121,136.148855 75.3909619,136.025355 75.42063,135.67311 L75.4606642,135.028044 L75.4585195,135.028044 C75.4431492,135.382079 75.1957954,135.709981 74.7715048,135.954118" id="Fill-175" fill="#DDDDFC"></path>
<path d="M65.0994675,130.21654 L60.1463132,133.062777 C59.2516213,133.577183 58.6711261,133.527783 57.9294219,133.12399 L52.5977303,130.078363 C52.2967593,129.893291 52.1455589,129.67457 52.0983758,129.453343 L52.15521,129.892933 C52.1923845,130.116666 52.3836191,130.303527 52.6195347,130.448506 L57.9508687,133.494491 C58.6918581,133.898642 59.2727107,133.947684 60.1677601,133.433278 L65.1212718,130.587041 C65.4261748,130.411635 65.7185671,130.288134 65.7478778,129.936606 L65.787912,129.29154 L65.7857673,129.29154 C65.7707545,129.6445 65.523758,129.972761 65.0994675,130.21654" id="Fill-177" fill="#DDDDFC"></path>
<path d="M119.143217,180.96676 L119.127847,180.844691 C119.129634,180.885858 119.134638,180.925951 119.143217,180.96676" id="Fill-179" fill="#DDDDFC"></path>
<polygon id="Fill-181" fill="#DDDDFC" points="119.12681 180.83832 119.127883 180.844763 119.127883 180.83832"></polygon>
<path d="M132.144702,181.729742 L127.191548,184.575979 C126.296499,185.090027 125.716361,185.040985 124.975371,184.63755 L119.642965,181.591923 C119.342351,181.405419 119.190794,181.18813 119.143253,180.966903 L119.200445,181.405419 C119.237619,181.629868 119.428854,181.816729 119.664412,181.962424 L124.996461,185.007693 C125.737093,185.411486 126.317945,185.460886 127.21228,184.946838 L132.166149,182.100601 C132.471409,181.924837 132.763444,181.801336 132.79347,181.44945 L132.833862,180.804742 L132.831359,180.804742 C132.815632,181.15806 132.568993,181.485963 132.144702,181.729742" id="Fill-183" fill="#DDDDFC"></path>
<path d="M109.365054,175.311945 L109.348968,175.189518 C109.351113,175.230327 109.356832,175.270778 109.365054,175.311945" id="Fill-185" fill="#DDDDFC"></path>
<path d="M109.348325,175.18311 L109.34904,175.189554 C109.349397,175.187406 109.34904,175.185258 109.34904,175.18311 L109.348325,175.18311 Z" id="Fill-187" fill="#DDDDFC"></path>
<path d="M122.366181,176.074819 L117.412669,178.921056 C116.518335,179.435104 115.938197,179.385704 115.196493,178.981911 L109.864801,175.936284 C109.564188,175.750854 109.41263,175.533207 109.365089,175.31198 L109.421566,175.750496 C109.459456,175.974945 109.649975,176.161449 109.886248,176.307143 L115.218297,179.352771 C115.958929,179.756205 116.539067,179.805963 117.433759,179.291557 L122.387985,176.44532 C122.692888,176.269556 122.985281,176.146414 123.014591,175.794169 L123.054983,175.149103 L123.052838,175.149461 C123.037468,175.503138 122.790472,175.83104 122.366181,176.074819" id="Fill-189" fill="#DDDDFC"></path>
<path d="M112.693786,170.337456 L107.74099,173.183693 C106.846298,173.698099 106.265445,173.648698 105.524456,173.244906 L61.6591753,147.229276 C61.3578468,147.043847 61.2066464,146.825484 61.1591058,146.604257 L61.21594,147.043489 C61.253472,147.267579 61.4447066,147.454083 61.6802647,147.599419 L105.545903,173.615407 C106.286534,174.019558 106.867387,174.068242 107.762079,173.554552 L112.715591,170.707957 C113.020494,170.53255 113.312886,170.40905 113.342912,170.057163 L113.382946,169.412097 L113.380086,169.412097 C113.365431,169.765416 113.118077,170.093677 112.693786,170.337456" id="Fill-191" fill="#DDDDFC"></path>
<path d="M90.2580027,163.628913 L90.2419175,163.507203 C90.2444196,163.548012 90.2497814,163.588463 90.2580027,163.628913" id="Fill-193" fill="#DDDDFC"></path>
<path d="M90.2412741,163.500437 L90.241989,163.507239 C90.241989,163.504733 90.2423464,163.502585 90.241989,163.500437 L90.2412741,163.500437 Z" id="Fill-195" fill="#DDDDFC"></path>
<path d="M80.4795174,157.974062 L80.4634322,157.851994 C80.4655769,157.892445 80.4712961,157.933254 80.4795174,157.974062" id="Fill-197" fill="#DDDDFC"></path>
<polygon id="Fill-199" fill="#DDDDFC" points="80.4627531 157.845157 80.463468 157.851958 80.463468 157.845157"></polygon>
<path d="M61.1591773,146.582993 L61.143807,146.460925 C61.1452368,146.502091 61.1505986,146.542184 61.1591773,146.582993" id="Fill-201" fill="#DDDDFC"></path>
<path d="M61.142413,146.454445 L61.1438428,146.461247 C61.1431279,146.458741 61.1438428,146.456593 61.1431279,146.454445 L61.142413,146.454445 Z" id="Fill-203" fill="#DDDDFC"></path>
<path d="M51.3810137,140.928178 L51.3649286,140.805751 C51.3667158,140.84656 51.372435,140.887011 51.3810137,140.928178" id="Fill-205" fill="#DDDDFC"></path>
<polygon id="Fill-207" fill="#DDDDFC" points="51.3642852 140.799272 51.3650001 140.805716 51.3650001 140.799272"></polygon>
<path d="M64.3817838,141.690874 L59.4286295,144.53711 C58.5339376,145.051517 57.9534424,145.001758 57.2124531,144.597966 L51.8807615,141.552338 C51.5797905,141.366909 51.42859,141.149262 51.3810495,140.928035 L51.4375262,141.366551 C51.4754157,141.591357 51.6659354,141.777503 51.9018509,141.923197 L57.2342574,144.969183 C57.9748892,145.372618 58.555027,145.422018 59.4497189,144.90797 L64.4032306,142.061375 C64.7088485,141.88561 65.0012408,141.762826 65.0305516,141.410223 L65.0709432,140.765515 L65.0687985,140.765515 C65.0534282,141.119192 64.8060743,141.447094 64.3817838,141.690874" id="Fill-209" fill="#DDDDFC"></path>
<path d="M54.7101039,135.953796 L49.7565922,138.800033 C48.8622577,139.314081 48.2814051,139.264681 47.5404157,138.861246 L42.2083668,135.815261 C41.9070383,135.629831 41.7558378,135.411468 41.7086547,135.190242 L41.7654889,135.629831 C41.8026635,135.853564 41.9942555,136.040426 42.2298136,136.185762 L47.5615052,139.231748 C48.3024945,139.63554 48.8829897,139.684583 49.778039,139.170534 L54.7315508,136.32394 C55.0364538,136.148891 55.3288461,136.025033 55.3585142,135.673146 L55.3985484,135.02808 L55.3964037,135.02808 C55.3810335,135.381757 55.1343945,135.709659 54.7101039,135.953796" id="Fill-211" fill="#DDDDFC"></path>
<path d="M86.2089411,92.6844436 C86.315818,95.8421164 88.6678246,96.7152106 88.6678246,96.7152106 L183.115545,152.013324 C183.115545,152.013324 184.345165,152.707432 185.790326,152.89322 C186.638193,153.002401 187.560051,152.936892 188.351083,152.452914 C190.268075,150.980574 190.248058,147.648211 190.248058,147.648211 L190.248058,63.9632601 C190.075411,60.3552583 187.046041,59.0142945 187.046041,59.0142945 L89.6465167,3.15667045 C89.6465167,3.15667045 87.767771,2.09707274 86.9467134,3.02994829 C86.0738258,4.02188926 86.1731963,4.62686227 86.1731963,6.84843774 L86.2089411,92.6844436 Z" id="Fill-213" fill="#5763AB"></path>
<path d="M174.951865,171.825653 L178.340113,169.803111 C178.865562,169.489885 179.175469,168.736353 178.883791,168.201901 C179.214788,168.244142 179.52398,168.429929 179.708066,168.739217 C180.026552,169.275459 179.713785,170.050827 179.179043,170.369781 L175.791153,172.392323 C175.478029,172.578827 175.11236,172.592072 174.798878,172.467498 C174.575473,172.37872 174.377089,172.223003 174.244476,172.000344 C174.238757,171.991037 174.234825,171.980655 174.229463,171.970632 C174.471456,172.003924 174.725601,171.960967 174.951865,171.825653" id="Fill-215" fill="#B6B6DD"></path>
<path d="M174.773821,170.369888 L178.162069,168.347703 C178.345439,168.238163 178.547755,168.190553 178.746853,168.192343 C178.792964,168.192343 178.83836,168.195923 178.883756,168.202008 C179.175433,168.736461 178.865526,169.489992 178.340435,169.803218 L174.95183,171.825761 C174.725565,171.960716 174.47142,172.003673 174.229428,171.97074 C173.938823,171.436287 174.24873,170.683472 174.773821,170.369888" id="Fill-217" fill="#C7C7EA"></path>
</g>
<g id="browser-(homepage)" transform="translate(113.973017, 8.744890)">
<polygon id="Fill-223" fill="#DDDDFC" points="7 34.8944613 7 51.4739195 28.5651504 63.7369664 28.5651504 47.3854823"></polygon>
<polygon id="Fill-225" fill="#DDDDFC" points="19.670846 18 19.670846 22.8818174 75.251605 54.9604986 75.251605 50.3043907"></polygon>
<polygon id="Fill-227" fill="#DDDDFC" points="28.1180767 32.7826537 28.1180767 36.8416505 65.1163325 57.9428477 65.1163325 54.1103153"></polygon>
<polygon id="Fill-229" fill="#DDDDFC" points="7 53.9007303 7 56.0574262 28.5651504 68.3219828 28.5651504 66.3917513"></polygon>
<polygon id="Fill-231" fill="#DDDDFC" points="7 60.2361533 7 62.3936041 24.1534281 72.252354 24.1534281 70.3221225"></polygon>
<polygon id="Fill-233" fill="#DDDDFC" points="36.5653073 51.7889227 36.5653073 68.3668711 58.1297032 80.6314277 58.1297032 64.2791888"></polygon>
<polygon id="Fill-235" fill="#DDDDFC" points="36.5653073 70.7951916 36.5653073 72.9526424 58.1297032 85.2164442 58.1297032 83.2862127"></polygon>
<polygon id="Fill-237" fill="#DDDDFC" points="36.5653073 77.1306146 36.5653073 79.2865557 53.7202445 89.1468153 53.7202445 87.2158289"></polygon>
<polygon id="Fill-239" fill="#DDDDFC" points="64.018807 68.683384 64.018807 85.2620873 85.5824483 97.525889 85.5824483 81.1736501"></polygon>
<polygon id="Fill-241" fill="#DDDDFC" points="64.018807 110.919537 64.018807 118.780116 83.0404452 129.595301 83.0404452 121.961941"></polygon>
<polygon id="Fill-243" fill="#DDDDFC" points="64.018807 87.689653 64.018807 89.8463489 85.5824483 102.110905 85.5824483 100.180674"></polygon>
<polygon id="Fill-245" fill="#DDDDFC" points="64.018807 94.025076 64.018807 96.1817719 81.1722351 106.041277 81.1722351 104.111045"></polygon>
<polygon id="Fill-247" fill="#E4E4F4" points="64.018807 111.611763 65.3860108 110.919537 84.1752545 121.959676 83.0404452 122.654167"></polygon>
<polygon id="Fill-249" fill="#CECEEF" points="83.025076 122.173066 84.1598853 121.478576 84.1598853 129.111935 83.025076 129.806426"></polygon>
<path d="M1.27141755,0.365341438 C1.69016129,0.0193226608 2.34221531,0.117980907 2.72773109,0.585177748 C3.11360415,1.05237459 3.0871647,1.71188352 2.66842097,2.0579023 C2.24931994,2.40392107 1.59726592,2.30562028 1.21139286,1.83842344 C0.82551979,1.37086915 0.852316531,0.711717673 1.27141755,0.365341438" id="Fill-251" fill="#E8F0F4"></path>
<path d="M4.33275513,2.20666137 C4.75149886,1.8606426 5.40355289,1.95930084 5.78906866,2.42649768 C6.17494173,2.89369452 6.14850228,3.55320345 5.72975854,3.89922223 C5.31065752,4.24524101 4.6586035,4.14694022 4.27273043,3.67974338 C3.88685737,3.21218908 3.91365411,2.55303761 4.33275513,2.20666137" id="Fill-251" fill="#E8F0F4"></path>
<path d="M7.33275513,4.20666137 C7.75149886,3.8606426 8.40355289,3.95930084 8.78906866,4.42649768 C9.17494173,4.89369452 9.14850228,5.55320345 8.72975854,5.89922223 C8.31065752,6.24524101 7.6586035,6.14694022 7.27273043,5.67974338 C6.88685737,5.21218908 6.91365411,4.55303761 7.33275513,4.20666137" id="Fill-251" fill="#E8F0F4"></path>
</g>
</g>
<g id="letters" transform="translate(21.000000, 208.000000)">
<path d="M111.654289,39.2861548 L47.6826319,2.51619384 C45.6200209,1.3547577 44.140145,2.51619384 44.140145,2.51619384 L2.34268513,26.786654 C2.34268513,26.786654 0.312147209,26.4136085 0.0108415818,28.0623888 C-0.0135519772,28.1973872 0.0108415818,29.8155679 0.0108415818,29.9577662 C0.0108415818,31.9305426 2.34268513,33.0397794 2.34268513,33.0397794 C2.34268513,33.0397794 61.6994419,67.0337235 64.251731,68.4242069 C66.6278443,69.7197414 68.6010122,68.4242069 68.6010122,68.4242069 L111.430681,43.6191531 C111.430681,43.6191531 113,42.7700132 113,41.5640276 C113,41.4623288 112.994579,39.7626991 112.983286,39.6686502 C112.831052,38.3087665 111.654289,39.2861548 111.654289,39.2861548" id="Fill-649" fill="#DDDDFC"></path>
<path d="M111.65416,37.2857048 L47.6763645,0.516193836 C45.6135557,-0.645242296 44.1335378,0.516193836 44.1335378,0.516193836 L2.33206729,24.7857541 C2.33206729,24.7857541 0,26.0817386 0,27.9577662 C0,29.9309926 2.33206729,31.0397794 2.33206729,31.0397794 C2.33206729,31.0397794 61.6945195,65.0332735 64.2470535,66.4242069 C66.6233948,67.7197414 68.596752,66.4242069 68.596752,66.4242069 L111.43053,41.6182531 C111.43053,41.6182531 113,40.7700132 113,39.5635776 C113,37.9998463 111.65416,37.2857048 111.65416,37.2857048" id="Fill-651" fill="#5763AB"></path>
<polygon id="Fill-653" fill="#DDDDFC" points="7 28.309241 7 27.3657141 47.20433 5 108 38.9266098 108 39.8701367 68.0017097 63"></polygon>
<polygon id="Fill-655" fill="#FFFFFF" points="7 27.3083505 47.2448206 4 92 29.8127202 52.1419492 53"></polygon>
<path d="M91.7737631,30 L56.0526655,51.1115684 C52.5329938,52.6035665 48.9232723,52.3109282 43,48.905807 L67.6518006,63 L108,39.4165524 L91.7737631,30 Z" id="Fill-657" fill="#F6F6FF"></path>
<path d="M56,50 C63.002918,46.4216349 62.9031075,38.2337593 62.9031075,38.2337593 L107,13 C107,13 107,20.7203932 102.079614,23.8276971 L56,50 Z" id="Fill-659" fill="#EAEAF9"></path>
<polygon id="Fill-661" fill="#DDDDFC" points="20 16.8482627 27.5736826 21 40 14.0697721 40 13.397394 32.2765475 10 20 16.1754463"></polygon>
<polygon id="Fill-663" fill="#F6F6FF" points="20 16.8482627 27.5736826 21 40 14.0702104 32.2765475 10"></polygon>
</g>
<g id="cup" transform="translate(110.000000, 165.000000)">
<path d="M0.209271566,16.7060587 L0.235954644,17.2537495 C0.447513331,20.8855616 2.19373017,41.3694277 14.8403654,44.9497739 C24.9791726,47.5872161 27.8495093,43.7725843 28.1746617,43.2740551 L29.681112,12.4121014 L0,12.4121014 L0.209271566,16.6999135 L0.209271566,16.7060587 Z" id="Fill-623" fill="#5763AB"></path>
<polygon id="Fill-625" fill="#FFFFFF" points="0.539656582 16.729354 0.539656582 16.729354 0.539656582 16.7379886"></polygon>
<path d="M15.2085907,44.2483358 C2.5060817,40.6908765 0.752149951,20.3379504 0.539656582,16.729354 L1.91837482,44.6631564 C1.91837482,48.9063864 7.86857201,52.3466885 15.2085907,52.3466885 C22.5489923,52.3466885 28.4995723,48.9063864 28.4995723,44.6631564 L28.6017989,42.5833288 C28.2752099,43.0786712 25.3925747,46.8689186 15.2085907,44.2483358" id="Fill-627" fill="#5763AB"></path>
<path d="M15.1100014,50.2915031 C8.09739139,50.2915031 2.33581602,47.1667851 1.68215331,43.1725266 C1.64156266,43.4219027 1.61896975,43.6747478 1.61896975,43.9302909 C1.61896975,48.2803055 7.65931867,51.8070319 15.1100014,51.8070319 C22.5614499,51.8070319 28.6017989,48.2803055 28.6017989,43.9302909 C28.6017989,43.6747478 28.5792059,43.4219027 28.5382324,43.1725266 C27.8849526,47.1667851 22.1233772,50.2915031 15.1100014,50.2915031" id="Fill-629" fill="#F0F0FC"></path>
<path d="M29.681112,11.6026165 C29.681112,16.2224128 23.1576531,19.9672935 15.1105755,19.9672935 C7.06388014,19.9672935 0.539656582,16.2224128 0.539656582,11.6026165 C0.539656582,6.98282023 7.06388014,3.23793949 15.1105755,3.23793949 C23.1576531,3.23793949 29.681112,6.98282023 29.681112,11.6026165" id="Fill-631" fill="#FFFFFF"></path>
<path d="M14.8401735,23.1190569 C7.12648136,23.1190569 0.789195934,19.6040148 0.0703887793,15.1103843 C0.0248656014,15.3911624 0,15.6754846 0,15.9629573 C0,20.8566866 6.64447124,24.8242028 14.8401735,24.8242028 C23.0362582,24.8242028 29.681112,20.8566866 29.681112,15.9629573 C29.681112,15.6754846 29.6558639,15.3911624 29.6107232,15.1103843 C28.8919161,19.6040148 22.5546307,23.1190569 14.8401735,23.1190569" id="Fill-633" fill="#F0F0FC"></path>
<path d="M15.1100018,15.1188951 C7.53602344,15.1188951 1.31388548,11.7991226 0.608510931,7.55519215 C0.563755604,7.8206982 0.539656582,8.08885552 0.539656582,8.36080037 C0.539656582,12.9823479 7.06284106,16.729354 15.1100018,16.729354 C23.1571625,16.729354 29.681112,12.9823479 29.681112,8.36080037 C29.681112,8.08885552 29.6562479,7.8206982 29.6130227,7.55519215 C28.9065006,11.7991226 22.6839801,15.1188951 15.1100018,15.1188951" id="Fill-635" fill="#FCFCFC"></path>
<path d="M15.2915269,19.8058415 C20.8993826,20.3267898 24.323813,19.5135653 26.4074571,18.4171509 C27.7770775,17.5198781 28.8348342,16.4605662 29.4851193,15.2944901 C29.5522724,15.1165499 29.5742774,15.0120574 29.5742774,15.0120574 C29.5742774,15.0120574 29.5909709,15.0207651 29.6209432,15.035909 C30.0083067,14.2586511 30.2207686,13.4378547 30.2207686,12.5879064 C30.2207686,7.72181048 23.4056741,3.77759608 14.9990124,3.77759608 C8.25486497,3.77759608 2.53888134,6.31721887 0.540221994,9.83361965 C0.533392862,10.0789499 0.394154445,18.6117494 15.2915269,19.8058415" id="Fill-637" fill="#FFFFFF"></path>
<path d="M15.4229882,21.5862633 C20.0273186,21.5862633 24.1572611,20.401934 26.9828291,18.5261304 C24.8715339,19.6513793 21.4020439,20.4866677 15.7193846,19.9518344 C0.624700413,18.7259156 0.765402168,9.96568766 0.772706357,9.71381848 C0.273330458,10.6035231 0,11.5534741 0,12.5411278 C0,17.536922 6.90553448,21.5862633 15.4229882,21.5862633" id="Fill-639" fill="#F6F6FF"></path>
<path d="M29.681112,8.90433361 C29.681112,13.5241552 23.1573588,17.2690106 15.1103843,17.2690106 C7.06302546,17.2690106 0.539656582,13.5241552 0.539656582,8.90433361 C0.539656582,4.28451199 7.06302546,0.539656582 15.1103843,0.539656582 C23.1573588,0.539656582 29.681112,4.28451199 29.681112,8.90433361" id="Fill-641" fill="#5763AB"></path>
<path d="M15.1101934,0.198744233 C7.18411153,0.198744233 0.735126643,3.98303628 0.735126643,8.63450531 C0.735126643,13.2863625 7.18411153,17.0702664 15.1101934,17.0702664 C23.0370389,17.0702664 29.4852602,13.2863625 29.4852602,8.63450531 C29.4852602,3.98303628 23.0370389,0.198744233 15.1101934,0.198744233 M15.1101934,17.2690106 C7.07568673,17.2690106 0.539656582,13.3958271 0.539656582,8.63450531 C0.539656582,3.87357168 7.07568673,0 15.1101934,0 C23.1447001,0 29.681112,3.87357168 29.681112,8.63450531 C29.681112,13.3958271 23.1447001,17.2690106 15.1101934,17.2690106" id="Fill-643" fill="#F7F7F7"></path>
<path d="M13.8488249,13.4868733 L17.0416278,13.4868733 C17.1220805,13.4868733 17.1983784,13.5042815 17.2674998,13.5345568 C17.2674998,13.5281233 17.2690106,13.5220683 17.2690106,13.5152563 C17.2690106,13.204178 17.0174542,12.951758 16.7069746,12.951758 L13.5134163,12.951758 C13.2033144,12.951758 12.951758,13.204178 12.951758,13.5152563 C12.951758,13.7461052 13.0903784,13.9440298 13.2886774,14.0310711 C13.2984979,13.7294538 13.5447664,13.4868733 13.8488249,13.4868733" id="Fill-645" fill="#DADEE0"></path>
<path d="M16.7371922,14.5707277 C17.0255145,14.5707277 17.2593282,14.3498964 17.2690106,14.0748924 C17.2037436,14.0469434 17.1313045,14.0310711 17.0549206,14.0310711 L14.0235916,14.0310711 C13.7349106,14.0310711 13.501097,14.2522475 13.4914146,14.5272515 C13.5570402,14.5548555 13.6291207,14.5707277 13.705146,14.5707277 L16.7371922,14.5707277 Z" id="Fill-647" fill="#E8E8E8"></path>
</g>
<g id="Group-12" transform="translate(75.000000, 129.000000) scale(-1, 1) translate(-75.000000, -129.000000) translate(40.000000, 61.000000)">
<path d="M6.39721837,87.1914435 C16.6327678,81.207717 26.4418359,78.2158538 35.8244229,78.2158538 C45.2070098,78.2158538 56.2955217,81.207717 69.0899584,87.1914435 C63.1192213,102.578169 57.5749653,111.553759 52.4571906,114.118213 C44.7805286,117.964894 36.5464962,121.25642 23.0299861,112.835986 C14.0189794,107.222363 8.47472352,98.6741825 6.39721837,87.1914435 Z" id="Path-33" fill="url(#linearGradient-5)"></path>
<path d="M15.9670888,67.7288579 L23.9751307,58.4180167 L23.6242325,58.155285 L16.1075921,66.8947804 C18.8837766,50.495891 21.61761,39.1822525 24.3032968,32.9654562 L32.9486939,24.8795323 L32.6303488,24.5810998 L24.7722703,31.9306593 C25.0044775,31.4434853 25.2363208,30.994578 25.4677963,30.5839452 L34.145169,15.1904619 L33.7424291,14.9884755 L25.0650563,30.3819588 C21.3800501,36.9190851 17.6316572,52.9417093 13.8050923,78.4794017 L14.2567348,78.5396117 C14.8285889,74.7231775 15.3987234,71.1195598 15.9670888,67.7288579 Z M9.17855425,81.6421579 C-0.858607632,71.8772112 -3.22585382,54.5609562 4.88885684,44.8559091 C11.7513366,36.6485074 17.6801575,21.4274155 23.1250673,10.9039748 C23.8396289,9.5229333 24.4263651,16.0439695 25.1252748,14.8512093 C28.5468821,9.01188952 31.9125959,-2.07510478 35.1027075,0.338422891 C37.1775671,1.90818968 38.8540561,4.5483404 40.1321745,8.25887506 C40.5328677,9.42213672 38.1103098,13.937916 38.4377917,15.873544 C38.7548086,17.7473172 41.8241674,17.0166517 42.0725773,19.6142166 C42.4015484,23.0541919 42.7596422,29.6422067 43.1468589,39.3782609 L35.0075868,51.5762554 L43.5870956,41.3771293 C43.8756538,42.9175587 43.6833669,44.9737921 43.0102349,47.5458296 C42.3371028,50.1178671 41.133054,52.9188147 39.3980884,55.9486725 L30.2737242,69.7882391 L39.4617613,57.8586224 C37.5292027,65.096037 34.9959618,70.4855856 31.8620385,74.0272684 C28.7281153,77.5689512 17.8052405,81.5738078 12.9670336,83.8382026 L1.84351473,121.614074 L9.17855425,81.6421579 Z" id="Combined-Shape-Copy" fill="#3BC2CA" transform="translate(21.858485, 60.807037) scale(-1, 1) translate(-21.858485, -60.807037) "></path>
<path d="M44.4515554,77.9238635 L49.4200426,72.147071 L49.2023323,71.9840625 L44.5387289,77.4063708 C46.261177,67.2318894 47.9573491,60.212487 49.6236491,56.3553551 L54.9875753,51.338547 L54.7900621,51.1533884 L49.9146177,55.7133286 C50.0586877,55.4110677 50.2025319,55.132549 50.3461479,54.8777771 L55.729913,45.3270871 L55.4800381,45.2017672 L50.0962731,54.7524572 C47.8099581,58.8083337 45.4843156,68.7493661 43.1101723,84.593901 L43.3903881,84.6312575 C43.7451877,82.2633997 44.0989204,80.0275811 44.4515554,77.9238635 Z M40.2396959,86.5561926 C34.0122671,80.4976563 32.5435394,69.7540072 37.578208,63.7326347 C41.8359458,58.6404572 45.514407,49.1967253 48.8926317,42.6675909 C49.3359723,41.8107414 49.7000053,45.856635 50.1336349,45.1166021 C52.2565274,41.4936708 54.3447415,34.6148869 56.3240055,36.1123293 C57.6113256,37.086271 58.6514818,38.7243188 59.444474,41.0264726 C59.693079,41.7482034 58.1900339,44.549961 58.3932159,45.7508966 C58.5899049,46.9134552 60.4942494,46.4601232 60.6483721,48.0717491 C60.852478,50.2060379 61.0746528,54.2934874 61.3148965,60.3340979 L56.2649891,67.9021877 L61.5880357,61.5742702 C61.7670679,62.5300099 61.647766,63.8057737 61.2301298,65.4015615 C60.8124936,66.9973493 60.0654569,68.7351614 58.9890197,70.614998 L53.3279245,79.2015802 L59.0285247,71.800002 C57.8294934,76.2903634 56.2577765,79.63424 54.3133738,81.8316318 C52.3689712,84.0290236 45.5920131,86.5137857 42.5902095,87.9187005 L35.6887644,111.356257 L40.2396959,86.5561926 Z" id="Combined-Shape-Copy" fill="#6CD5DB"></path>
<path d="M8.95610572,94.7423047 C17.4857302,91.4180334 26.4418359,89.7558978 35.8244229,89.7558978 C45.2070098,89.7558978 55.016078,91.4180334 65.2516274,94.7423047 C61.8397776,106.529984 57.5749653,113.33054 52.4571906,115.143974 C44.7805286,117.864125 36.5464962,120.191702 23.0299861,114.237257 C14.0189794,110.267627 9.32768597,103.76931 8.95610572,94.7423047 Z" id="Path-33" fill="url(#linearGradient-6)" opacity="0.650701993"></path>
<path d="M6.39721837,87.1914435 C20.0446176,99.1588966 33.6920168,102.578169 47.3394159,97.4492604 C60.9868151,92.320352 68.236996,88.9010797 69.0899584,87.1914435 C63.9721837,109.416713 60.1338527,122.238985 57.5749653,125.658257 C53.7366343,130.787165 49.8983033,137.198301 34.5449792,134.633847 C19.1916551,132.069392 15.3564047,124.520972 12.7944367,119.247121 C11.0864581,115.731221 8.95405197,105.045995 6.39721837,87.1914435 Z" id="Path-32" fill="url(#linearGradient-7)"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 96 KiB

View File

@@ -0,0 +1,150 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="778px" height="343px" viewBox="0 0 778 343" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>flexible-workflow</title>
<desc>Created with Sketch.</desc>
<defs>
<linearGradient x1="66.4117894%" y1="32.3453762%" x2="99.7846132%" y2="22.0365065%" id="linearGradient-1">
<stop stop-color="#000000" stop-opacity="0.6" offset="0%"></stop>
<stop stop-color="#929292" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<linearGradient x1="85.2316308%" y1="80.1681869%" x2="61.4714242%" y2="23.2384205%" id="linearGradient-2">
<stop stop-color="#FEB755" offset="0%"></stop>
<stop stop-color="#FDDC7D" offset="100%"></stop>
</linearGradient>
<linearGradient x1="85.2316308%" y1="80.1681869%" x2="61.4714242%" y2="23.2384205%" id="linearGradient-3">
<stop stop-color="#FFE579" offset="0%"></stop>
<stop stop-color="#FCD97E" offset="100%"></stop>
</linearGradient>
<linearGradient x1="85.2316308%" y1="80.1681869%" x2="61.4714242%" y2="23.2384205%" id="linearGradient-4">
<stop stop-color="#FFCA49" offset="0%"></stop>
<stop stop-color="#FBDB87" offset="100%"></stop>
</linearGradient>
<linearGradient x1="100%" y1="81.2942926%" x2="9.34754907%" y2="43.0125155%" id="linearGradient-5">
<stop stop-color="#F4AF94" offset="0%"></stop>
<stop stop-color="#F5B299" offset="100%"></stop>
</linearGradient>
<linearGradient x1="100%" y1="81.2942926%" x2="9.34754907%" y2="43.0125155%" id="linearGradient-6">
<stop stop-color="#F5B197" offset="0%"></stop>
<stop stop-color="#F5B197" offset="100%"></stop>
</linearGradient>
<linearGradient x1="78.8015673%" y1="100%" x2="38.0138926%" y2="8.83330623%" id="linearGradient-7">
<stop stop-color="#2F2525" offset="0%"></stop>
<stop stop-color="#403F3F" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="-56.9962227%" x2="46.5741597%" y2="100%" id="linearGradient-8">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#FFFFFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="66.4117894%" y1="32.3453762%" x2="100%" y2="21.9699735%" id="linearGradient-9">
<stop stop-color="#000000" stop-opacity="0.6" offset="0%"></stop>
<stop stop-color="#929292" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<linearGradient x1="-42.574281%" y1="-64.6560232%" x2="216.896587%" y2="-33.9874405%" id="linearGradient-10">
<stop stop-color="#CDBFE7" offset="0%"></stop>
<stop stop-color="#ECE7F9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="100%" y1="83.3402024%" x2="62.8387316%" y2="56.782133%" id="linearGradient-11">
<stop stop-color="#F7BAA2" offset="0%"></stop>
<stop stop-color="#F5B197" offset="100%"></stop>
</linearGradient>
<linearGradient x1="86.6491254%" y1="68.2749936%" x2="35.1057959%" y2="89.9710366%" id="linearGradient-12">
<stop stop-color="#C3C9D6" offset="0%"></stop>
<stop stop-color="#E5EEFF" offset="100%"></stop>
</linearGradient>
<radialGradient cx="86.64913%" cy="68.2750136%" fx="86.64913%" fy="68.2750136%" r="103.518963%" gradientTransform="translate(0.866491,0.682750),scale(1.000000,0.721558),rotate(-146.828405),translate(-0.866491,-0.682750)" id="radialGradient-13">
<stop stop-color="#E5EEFF" offset="0%"></stop>
<stop stop-color="#FFFFFF" offset="100%"></stop>
</radialGradient>
<linearGradient x1="88.6574787%" y1="54.5032706%" x2="0%" y2="21.586119%" id="linearGradient-14">
<stop stop-color="#F8BEA7" offset="0%"></stop>
<stop stop-color="#F2A384" offset="100%"></stop>
</linearGradient>
<radialGradient cx="86.6491296%" cy="68.2749872%" fx="86.6491296%" fy="68.2749872%" r="105.352006%" gradientTransform="translate(0.866491,0.682750),scale(1.000000,0.750000),rotate(161.100124),translate(-0.866491,-0.682750)" id="radialGradient-15">
<stop stop-color="#E5EEFF" offset="0%"></stop>
<stop stop-color="#E3ECFD" offset="0%"></stop>
<stop stop-color="#E3ECFD" offset="21.7971654%"></stop>
<stop stop-color="#C2C9D6" offset="100%"></stop>
</radialGradient>
<linearGradient x1="61.6573647%" y1="3.44584041%" x2="33.6179939%" y2="86.3530464%" id="linearGradient-16">
<stop stop-color="#0D337C" offset="0%"></stop>
<stop stop-color="#04245D" offset="100%"></stop>
</linearGradient>
<linearGradient x1="60.3462783%" y1="11.8964806%" x2="50%" y2="63.0288234%" id="linearGradient-17">
<stop stop-color="#F59BA9" offset="0%"></stop>
<stop stop-color="#F25267" offset="100%"></stop>
</linearGradient>
<linearGradient x1="-42.574281%" y1="-64.6560232%" x2="216.896587%" y2="-33.9874405%" id="linearGradient-18">
<stop stop-color="#F5B398" offset="0%"></stop>
<stop stop-color="#EB9D7E" offset="100%"></stop>
</linearGradient>
<linearGradient x1="20.2206053%" y1="69.6112686%" x2="27.9082977%" y2="9.6948922%" id="linearGradient-19">
<stop stop-color="#D5D5E2" offset="0%"></stop>
<stop stop-color="#F6F6FF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="6.91688929%" y1="50%" x2="92.7657572%" y2="50%" id="linearGradient-20">
<stop stop-color="#8C95CA" offset="0%"></stop>
<stop stop-color="#5763AB" offset="100%"></stop>
</linearGradient>
<linearGradient x1="59.7528456%" y1="27.3752585%" x2="59.7528458%" y2="129.42446%" id="linearGradient-21">
<stop stop-color="#5640A6" offset="0%"></stop>
<stop stop-color="#B4AAD7" offset="100%"></stop>
</linearGradient>
<linearGradient x1="59.7528456%" y1="27.3752585%" x2="59.7528458%" y2="130.821243%" id="linearGradient-22">
<stop stop-color="#1B0D4F" offset="0%"></stop>
<stop stop-color="#5640A6" offset="100%"></stop>
</linearGradient>
</defs>
<g id="Illustration" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="StartUp" transform="translate(-377.000000, -1658.000000)" fill-rule="nonzero">
<g id="flexible-workflow" transform="translate(377.000000, 1658.000000)">
<g id="Group-8" transform="translate(406.000000, 164.500000) scale(-1, 1) translate(-406.000000, -164.500000) translate(314.000000, 0.000000)">
<path d="M141.442928,97.8575371 C142.065874,95.1631083 142.687203,92.7886854 143.306887,90.7343738 L157.202332,44.669588 L156.557407,44.0651466 L142.661962,90.1299324 C136.761005,109.692192 130.758544,157.639673 124.630903,234.060865 L125.354138,234.241042 C130.713832,167.397337 135.9792,122.369808 141.134298,99.2180399 L141.411832,99.7263844 L154.875801,75.1220412 L154.380587,74.2149837 L141.442928,97.8575371 Z M121.904368,241.305063 C106.079665,211.879592 98.3141945,164.412758 111.107939,135.167787 C121.927402,110.435788 131.274848,64.568892 139.859355,32.8577923 C140.98594,28.696193 141.910995,48.3465369 143.012904,44.7523 C148.407449,27.1562251 153.713872,-6.25307407 158.743437,1.01979593 C162.014685,5.75009585 164.657856,13.7058666 166.672952,24.8871083 C167.30469,28.3924548 163.485257,42.0002026 164.001569,47.8329803 C164.501381,53.4793663 169.340567,51.2775955 169.732213,59.105039 C170.250873,69.4709833 170.815447,89.3231588 171.425938,118.661566 L158.593469,155.418728 L172.12002,124.684911 C172.574964,129.326806 172.271802,135.523013 171.210535,143.273533 C170.149267,151.024053 168.25095,159.464366 165.515584,168.594471 L151.130008,210.29831 L165.615971,174.349871 C162.569077,196.158933 158.575141,212.399678 153.634162,223.072105 C148.693183,233.744533 134.805056,234.481587 127.177084,241.305063 L118.159826,326.074767 L121.904368,241.305063 Z M128.705542,205.250814 L142.079883,177.054598 L141.49504,176.260586 L128.120699,204.456803 L128.705542,205.250814 Z" id="Combined-Shape-Copy-2" fill-opacity="0.05" fill="#5763AB"></path>
<path d="M77.3433518,133.224017 L78.0535591,133.426432 L86.36115,108.199621 L85.3626185,107.915031 L77.2625698,132.51162 C77.035281,130.417475 76.9216344,128.525519 76.9216344,126.835835 L76.9216344,88.2016763 L75.8917623,88.2016763 L75.8917623,126.835835 C75.8917623,136.428099 79.4922405,152.385635 86.6939473,174.722906 L60.3910312,146.182132 L59.606048,146.787444 L87.4243773,176.972563 C92.4632426,192.385702 99.1534236,210.72442 107.495154,231.993207 L108.463191,231.667818 C100.1846,210.560014 93.5354515,192.342159 88.5159764,177.018671 L88.6876806,176.886267 L88.3543724,176.524601 C82.1965688,157.670649 78.5260846,143.234345 77.3433518,133.224017 Z M97.5621658,241.904216 C80.1979221,196.95491 40.1913715,177.393109 44.2244372,155.750435 C51.7381897,115.429321 50.9572198,65.3975228 75.6810829,69.9357969 C92.1636583,72.961313 107.613161,92.1076344 122.029592,127.374761 L105.441092,153.527126 L125.133825,130.867353 C127.426777,133.608005 129.35642,137.825289 130.922753,143.519206 C132.489086,149.213122 133.272252,155.869692 133.272252,163.488916 L123.757741,179.896774 L135.539174,167.171669 C139.871354,183.230899 140.954399,196.24887 138.788309,206.225582 C137.813136,210.717098 119.603851,220.407053 112.78922,235.554665 C107.241044,247.887193 107.241044,275.968846 112.78922,319.799625 C105.439571,275.121922 100.363887,249.156786 97.5621658,241.904216 Z M101.409459,209.960634 L107.299926,183.466078 L106.210801,183.289624 L100.320334,209.78418 L101.409459,209.960634 Z" id="Combined-Shape" fill="#78D0D6" transform="translate(91.906013, 194.723778) rotate(-22.000000) translate(-91.906013, -194.723778) "></path>
</g>
<g id="Group-11" transform="translate(479.000000, 58.000000)">
<path d="M157.702703,241.907713 L208.837838,102.568871 C209.612613,97.1501377 208.45045,93.2796143 205.351351,90.9573003 C202.252252,88.6349862 198.765766,87.0867769 194.891892,86.3126722 L85.648649,66.5730028 C81.774775,65.7988981 79.063063,66.1859504 77.513514,67.7341598 C75.963964,69.2823691 68.603604,81.6680441 55.432432,104.891185 L8.945946,194.300275 L157.702703,241.907713 Z" id="Path-18" fill="#CECECE"></path>
<path d="M128.648649,257.002755 C144.22248,249.771017 153.907165,243.06211 157.702703,236.876033 C172.894647,212.115765 171.179997,182.670574 169.324324,168.367769 C162.662874,117.023885 141.950407,104.610226 134.459459,94.053719 C132.802268,91.7183465 134.459459,75.4752066 134.459459,75.4752066 C134.459459,75.4752066 130.972973,74.7011019 124,73.1528926 L75.189189,88.2479339 L4.297297,190.429752 L128.648649,257.002755 Z" id="Path-18" fill-opacity="0.5" fill="url(#linearGradient-1)" opacity="0.679574275"></path>
<path d="M82.162162,217.296708 C110.054054,225.811859 125.54955,228.134173 128.648649,224.26365 C131.580176,220.60241 141.906526,180.017677 130.972973,112.632231 C130.556317,110.064307 125.132894,107.795441 114.702703,105.825633 L107.72973,103.503319 C99.981982,112.018471 93.009009,115.888994 86.810811,115.11489 C77.513514,113.953733 76.351351,108.147947 77.513514,105.825633 C78.675676,103.503319 63.567568,101.181005 55.432432,106.98679 C50.009009,110.857314 36.837838,139.832791 15.918919,193.913223 L82.162162,217.296708 Z" id="Path-19" fill="url(#linearGradient-2)"></path>
<path d="M79.837838,217.136364 C105.405405,211.717631 118.576577,207.460055 119.351351,204.363636 C119.97253,201.881072 122.216396,201.037522 119.351351,160.239669 C118.879065,153.514382 120.428615,136.871131 124,110.309917 C125.54955,107.987603 128.648649,109.14876 133.297297,113.793388 C140.27027,120.760331 149.567568,146.305785 150.72973,169.528926 C151.891892,192.752066 151.891892,214.81405 148.405405,222.942149 C146.081081,228.360882 135.621622,230.296143 117.027027,228.747934 L79.837838,217.136364 Z" id="Path-20" fill="url(#linearGradient-3)"></path>
<path d="M0.810811,188.107438 C7.783784,183.46281 12.432432,179.205234 14.756757,175.334711 C18.243243,169.528926 33.351351,134.694215 38,126.566116 C42.648649,118.438017 55.432432,104.504132 60.081081,104.504132 C64.72973,104.504132 54.27027,105.665289 54.27027,112.632231 C54.27027,119.599174 49.621622,132.371901 46.135135,145.144628 C42.648649,157.917355 39.162162,174.173554 32.189189,183.46281 C27.540541,189.655647 23.279279,193.526171 19.405405,195.07438 L0.810811,188.107438 Z" id="Path-21" fill="url(#linearGradient-4)"></path>
<g id="Group-17" transform="translate(54.270270, 0.000000)">
<path d="M3.48648649,89.76637 C5.03603604,74.2842763 5.81081081,65.7691248 5.81081081,64.2209154 C5.81081081,61.8986014 1.16216216,60.7374444 1.16216216,58.4151303 C1.16216216,56.0928163 11.6216216,52.6093452 13.9459459,47.9647171 C15.4954955,44.8682984 15.8828829,37.9013562 15.1081081,27.0638907 C14.3333333,18.5487391 18.981982,15.0652681 29.0540541,16.6134774 C44.1621622,18.9357915 67.4054054,36.3531469 67.4054054,45.6424031 C67.4054054,54.9316592 66.2432432,78.1547997 58.1081081,87.4440559 C52.6846847,93.6368934 34.4774775,94.4109981 3.48648649,89.76637 Z" id="Path-25" fill="url(#linearGradient-5)"></path>
<path d="M27.8918919,95.214876 C24.018018,102.955923 22.0810811,107.987603 22.0810811,110.309917 C22.0810811,113.793388 33.7027027,121.921488 39.5135135,118.438017 C45.3243243,114.954545 54.6216216,106.826446 54.6216216,102.181818 C54.6216216,99.0853994 56.9459459,87.0867769 61.5945946,66.1859504 L41.8378378,71.9917355 L27.8918919,95.214876 Z" id="Path-23" fill="url(#linearGradient-6)"></path>
<path d="M20.0692775,36.3829201 C12.3215297,34.8347107 8.44765585,30.1900826 8.44765585,22.4490358 C8.44765585,10.8374656 15.4206288,3.87052342 18.9071153,1.54820937 C21.2314396,-2.22044605e-16 22.3936018,-0.387052342 22.3936018,0.387052342 C20.8440522,1.16115702 21.2314396,2.70936639 23.555764,5.03168044 C27.0422504,8.51515152 28.2044126,11.9986226 36.3395477,13.1597796 C44.4746829,14.3209366 54.9341423,14.3209366 63.0692775,20.1267218 C71.2044126,25.9325069 81.6638721,41.0275482 78.1773856,56.1225895 C74.6908991,71.2176309 64.2314396,86.3126722 59.582791,92.1184573 C56.4836919,95.9889807 54.9341423,98.6983471 54.9341423,100.246556 L58.4206288,77.023416 L45.636845,71.2176309 C44.8620703,79.7327824 43.3125207,85.9256198 40.9881964,89.7961433 C37.5017099,95.6019284 31.6908991,99.0853994 7.28549369,95.6019284 C4.20733953,95.2602071 1.27695088,94.7229242 0.312520713,92.1184573 C-0.501014624,89.9214855 0.273760151,84.5027528 2.63684504,75.862259 C4.18639459,78.9586777 5.73594414,80.5068871 7.28549369,80.5068871 C9.60981801,80.5068871 13.0963045,81.6680441 11.9341423,79.34573 C11.1593676,77.7975207 8.06026846,75.4752066 2.63684504,72.3787879 L4.96116936,65.4118457 C10.3845928,66.9600551 13.4836919,68.8953168 14.2584667,71.2176309 C15.4206288,74.7011019 21.2314396,81.6680441 24.7179261,81.6680441 C28.2044126,81.6680441 34.0152234,80.5068871 36.3395477,77.023416 C38.6638721,73.5399449 47.9611694,61.9283747 46.7990072,52.6391185 C45.636845,43.3498623 42.1503586,41.0275482 37.5017099,39.8663912 C34.4026108,39.0922865 28.5918,37.9311295 20.0692775,36.3829201 Z" id="Path-26" fill="url(#linearGradient-7)"></path>
<path d="M43,84.0387397 L45.3243243,81.7164256 C47.6486486,83.264635 49.972973,83.6516873 52.2972973,82.8775826 C55.7837838,81.7164256 60.4324324,73.5883264 59.2702703,70.1048554 C58.1081081,66.6213843 55.7837838,65.4602273 52.2972973,66.6213843 C48.8108108,67.7825413 45.3243243,70.1048554 45.3243243,73.5883264 C45.3243243,75.9106405 44.5495495,79.3941116 43,84.0387397 Z" id="Path-24" fill="#FECBB7"></path>
</g>
<path d="M71.287645,103.559591 C68.741956,106.65601 68.741956,110.526533 71.287645,115.171161 C75.106178,122.138104 87.557915,123.299261 95.69305,119.81579 C101.116474,117.493476 106.927284,112.848847 113.125483,105.881905 L107.314672,103.559591 C99.34556,111.300638 92.261905,115.171161 86.063707,115.171161 C76.766409,115.171161 76.766409,109.365376 76.766409,105.881905 C76.766409,105.072965 78.371754,103.992823 77.928571,103.559591 C77.633116,103.27077 75.419474,103.27077 71.287645,103.559591 Z" id="Path-22" fill-opacity="0.1" fill="#000000"></path>
</g>
<path d="M150.410256,287 L105.160256,156.108979 C103.613248,151.475668 103.613248,147.614576 105.160256,144.525703 C106.707265,141.436829 114.82906,138.734064 129.525641,136.417409 L222.346154,119.042495 C226.987179,116.72584 230.467949,118.270276 232.788462,123.675805 C235.108974,129.081334 252.512821,175.02833 285,261.516792 L150.410256,287 Z" id="Path-6" fill="#7C86C1"></path>
<path d="M0.808063242,343 C9.67455924,338.878895 312.221473,203.065638 342.738538,203.065638 C376.415683,203.065638 370.190377,198.417953 384.125747,203.065638 C393.415995,206.164095 556.582445,263.989348 778,343 L0.808063242,343 Z" id="Path-4" fill="url(#linearGradient-8)"></path>
<g id="Group-2" transform="translate(131.000000, 33.000000)">
<path d="M16.1188991,119.097175 C12.8951191,125.523372 7.52215302,128.736471 7.52215302,135.162668 C7.52215302,141.588866 10.745933,149.086098 8.59674605,153.370229 C6.44756,157.654361 0,174.790888 0,184.430185 C0,194.069482 20.1794739,198.715868 32,203 C39.8803501,205.856088 49.2727575,211.447512 60.1772224,219.774272 C65.5501884,212.277042 74.1469345,196.211547 67.6993754,183.359152 C61.2518154,170.506756 49.4312903,164.080559 49.4312903,151.228163 C49.4312903,138.375768 56.9534424,140.517833 56.9534424,130.878537 C56.9534424,121.23924 54.8042563,114.813042 56.9534424,108.386845 C58.5867956,103.503021 50.0272463,103.936422 37.6107642,109.457878 C33.6894793,111.201624 19.3426791,113.74201 18.9435234,113.821768 C16.9346238,114.223185 16.5688204,118.200314 16.1188991,119.097175 Z" id="Path-12" fill-opacity="0.25" fill="url(#linearGradient-9)" opacity="0.306668931"></path>
<polygon id="Path-7" fill="url(#linearGradient-10)" points="90 91.789474 90 108 64 108 64 86"></polygon>
<polygon id="Path-7" fill="url(#linearGradient-11)" points="90 91.789474 90 108 64 108 64 86"></polygon>
<path d="M89,101 C102.924528,104.101449 111.820755,107.978261 115.688679,112.630435 C119.556604,117.282609 133.867925,138.217391 158.622642,175.434783 L212,187.065217 L203.877358,208 L136.575472,196.369565 L130.773585,187.065217 L89,101 Z" id="Path-9" fill="url(#linearGradient-12)"></path>
<path d="M69.148531,101 C73.039128,105.631579 77.318785,107.947368 81.987501,107.947368 C86.656217,107.947368 88.990575,105.631579 88.990575,101 C92.103052,102.54386 97.160828,105.631579 104.163902,110.263158 C114.668513,117.210526 131.701421,148.177839 134.510556,164.684211 C136.383313,175.688458 132.881776,187.653371 124.005945,200.578947 L69.148531,225 C52.029906,163.245614 41.525295,115.666667 46.97213,110.263158 C52.418965,104.859649 59.811099,101.77193 69.148531,101 Z" id="Path-8" fill="url(#radialGradient-13)"></path>
<path d="M97.799901,35.5007964 C100.921462,44.0582986 103.262632,49.8929592 104.823413,53.0047781 C107.164583,57.6725066 113.01751,61.173303 111.846925,63.5071672 C110.676339,65.8410314 107.164583,64.6740993 107.164583,68.1748957 C107.164583,71.675692 111.846925,84.511945 109.505754,86.84581 C107.164583,89.179674 91.946974,95.014334 83.752877,93.847402 C78.290145,93.069448 70.096048,89.179674 59.170585,82.178081 L58,32 L97.799901,35.5007964 Z" id="Path-11" fill="url(#linearGradient-14)"></path>
<path d="M88.26957,54.3674048 C88.21284,49.0927228 90.782673,44.9090909 94.16833,44.9090909 C96.691535,44.9090909 98.972385,47.2327503 100.145245,50.599952 L103.292098,48.4545455 L103.434431,48.7456581 C103.374106,48.36073 103.332184,47.9676483 103.310069,47.5681818 C103.048085,42.8361057 105.681416,39 109.191779,39 C112.702142,39 115.74342,42.8361057 115.984663,47.5681818 C116.225906,52.300258 113.592575,56.1363636 110.102952,56.1363636 C107.521192,56.1363636 105.184838,54.0366227 104.037834,51.0277797 L100.708156,52.7303168 C100.841593,53.4457781 100.927977,54.1901924 100.961214,54.9545455 C101.202457,60.5024968 98.569125,65 95.079503,65 C92.521679,65 90.204732,62.5836707 89.046593,59.1084663 L64,60.2727273 L64,59.0909091 L88.268649,54.3636364 L88.26957,54.3674048 Z M94.955004,62.2627722 C97.493759,62.2627722 99.40955,58.9907676 99.234042,54.9545455 C99.058534,50.9183233 96.845956,47.6463187 94.292111,47.6463187 C91.738267,47.6463187 89.822477,50.9183233 90.013074,54.9545455 C90.203671,58.9907676 92.416249,62.2627722 94.955004,62.2627722 Z M109.992665,54.0681818 C112.639965,54.0681818 114.637665,51.1580327 114.454653,47.5681818 C114.271641,43.9783309 111.964465,41.0681818 109.301431,41.0681818 C106.638397,41.0681818 104.640697,43.9783309 104.839443,47.5681818 C105.03819,51.1580327 107.345366,54.0681818 109.992665,54.0681818 Z" id="Combined-Shape" fill="#220F65"></path>
<path d="M108.304407,71.5217391 C108.304407,70.826087 107.916723,70.826087 107.141356,71.5217391 C105.978305,72.5652174 102.489153,73.6086957 101.326102,73.6086957 C100.550734,73.6086957 99.775367,73.6086957 99,73.6086957 C101.326102,75 103.652203,75.3478261 105.978305,74.6521739 C109.467458,73.6086957 109.467458,72.3043478 108.304407,72.9488491 C107.52904,73.3785166 107.52904,72.9028133 108.304407,71.5217391 Z" id="Path-15" fill="#220F65"></path>
<path d="M48.525555,109 C35.244142,123.1118 26.691561,138.222911 22.867812,154.333333 C19.044063,170.443756 19.044063,191.366833 22.867812,217.102564 C32.1979,225.626781 42.694249,231.438746 54.35686,234.538462 C66.01947,237.638177 86.623415,241.125356 116.168695,245 C115.391187,238.025641 115.779941,232.988604 117.334956,229.888889 C118.889971,226.789174 120.444985,224.076923 122,221.752137 C115.002434,220.977208 107.22736,219.42735 98.674779,217.102564 C90.122198,214.777778 76.127066,210.128205 56.689382,203.153846 C55.911875,160.532764 54.745613,135.347578 53.190599,127.598291 C51.635584,119.849003 50.080569,113.649573 48.525555,109 Z" id="Path-10" fill="url(#radialGradient-15)"></path>
<path d="M62.297866,33.693354 C71.56706,39.502553 80.450038,41.4389527 88.946799,39.502553 C101.691941,36.5979535 110.961135,25.5604755 108.643836,15.1039173 C106.326538,4.6473592 100.533292,0 92.422747,0 C87.015717,0 84.312202,2.7109595 84.312202,8.1328786 C65.773814,5.0346391 53.028672,7.3583187 46.076776,15.1039173 C35.648933,26.7223153 32.172985,30.2078347 32.172985,46.4735918 C32.172985,62.7393489 35.648933,59.2538295 32.172985,63.9011887 C28.697037,68.5485479 24.06244,72.0340673 24.06244,81.328786 C24.06244,90.623504 29.855687,96.432703 26.379739,103.403742 C22.903791,110.37478 17.110545,113.8603 17.110545,120.831339 C17.110545,127.802377 20.586493,135.935256 18.269194,140.582615 C15.951896,145.229974 9,163.819411 9,174.275969 C9,184.732527 26.379739,209.131163 39.124881,213.778522 C51.870023,218.425881 68.091112,220.749561 73.884359,212.616682 C79.677605,204.483804 88.946799,187.056207 81.994903,173.114129 C75.043008,159.172052 62.297866,152.201013 62.297866,138.258936 C62.297866,124.316858 70.408411,126.640538 70.408411,116.183979 C70.408411,105.727421 68.091112,98.756383 70.408411,91.785344 C72.725709,84.814305 71.56706,72.0340673 68.091112,67.3867081 C64.615164,62.7393489 62.297866,58.0919897 62.297866,52.2827907 C62.297866,46.4735918 65.773814,42.9880724 64.615164,39.502553 C63.842732,37.1788734 63.070299,35.2424738 62.297866,33.693354 Z" id="Path-12" fill="url(#linearGradient-16)"></path>
<path d="M134,248 L140.956532,186.615958 C177.642047,185.471144 205.081702,184.699017 223.275499,184.299579 C241.469296,183.90014 249.198776,183.90014 246.463941,184.299579 L234.86972,243.367242 L134,248 Z" id="Path-16" fill="url(#linearGradient-17)"></path>
<path d="M120.96732,222.275862 L141.751634,217.586207 C144.061002,216.804598 145.985476,216.804598 147.525054,217.586207 C149.064633,218.367816 145.215686,221.103448 135.978214,225.793103 C142.136529,228.137931 146.755265,229.701149 149.834423,230.482759 C152.91358,231.264368 156.762527,231.655172 161.381264,231.655172 C164.460421,233.218391 165.230211,234.390805 163.690632,235.172414 C162.151053,235.954023 155.992738,235.954023 145.215686,235.172414 C148.294844,236.735632 150.604212,237.517241 152.143791,237.517241 C153.68337,237.517241 157.532317,237.517241 163.690632,237.517241 C165.230211,237.517241 166,237.908046 166,238.689655 C166,239.471264 165.230211,239.862069 163.690632,239.862069 L144.061002,241.034483 C146.37037,241.816092 147.909949,242.206897 148.679739,242.206897 C149.449528,242.206897 153.298475,242.206897 160.22658,242.206897 C161.766158,242.206897 162.535948,242.597701 162.535948,243.37931 C162.535948,244.16092 161.381264,244.942529 159.071895,245.724138 L139.442266,246.896552 C143.291213,247.678161 145.985476,248.068966 147.525054,248.068966 C149.064633,248.068966 151.374001,248.068966 154.453159,248.068966 C155.222948,248.068966 155.607843,248.45977 155.607843,249.241379 C155.607843,250.022989 154.838054,250.413793 153.298475,250.413793 C142.521423,251.195402 135.978214,251.195402 133.668845,250.413793 C130.204793,249.241379 117.503268,244.551724 114.039216,243.37931 C111.729847,242.597701 113.269426,235.954023 118.657952,223.448276 L120.96732,222.275862 Z" id="Path-17" fill="url(#linearGradient-18)"></path>
</g>
<path d="M551.27463,272.917184 L482.638158,300 L379,259.473684 L461.008837,234.206061 C461.441829,234.072653 461.907289,234.090216 462.328996,234.255875 L551.271805,269.195256 C552.299894,269.59912 552.805929,270.759948 552.402065,271.788037 C552.199172,272.304528 551.790813,272.713507 551.27463,272.917184 Z" id="Path-27" fill="#E4E4E9"></path>
<path d="M533.238702,273.606102 L489.304544,292 L421,263.660013 L474.784486,246.076998 C475.239746,245.928166 475.733301,245.947658 476.175406,246.131931 L533.235778,269.915202 C534.255329,270.34016 534.737342,271.511166 534.312384,272.530717 C534.109914,273.016479 533.724142,273.402863 533.238702,273.606102 Z" id="Path-27" fill="#5763AB" opacity="0.400305707"></path>
<path d="M378.566038,259.324324 L360.70349,174.346715 C360.476271,173.265768 361.168355,172.205291 362.249302,171.978073 C362.585456,171.907412 362.934145,171.924522 363.261767,172.027752 L462.151008,203.186827 C462.843857,203.405137 463.363857,203.98196 463.509403,204.693659 L483,300 L378.566038,259.324324 Z" id="Path-28" fill="url(#linearGradient-19)"></path>
<path d="M420.5,244.560055 C427.955844,246.29403 434,242.74794 434,236.63964 C434,230.531341 427.955844,224.173921 420.5,222.439945 C413.044156,220.70597 407,224.25206 407,230.36036 C407,236.468659 413.044156,242.826079 420.5,244.560055 Z" id="Oval-2" fill-opacity="0.1" fill="#000000"></path>
<g id="Group-15" transform="translate(548.000000, 283.000000)">
<g id="Group-14" transform="translate(0.195122, 0.000000)">
<path d="M0.292682927,5.75546976 C-0.682926829,18.2256542 1.26829268,25.4199914 6.14634146,27.3384813 C13.4634146,30.2162162 22.2439024,30.2162162 29.5609756,27.3384813 C34.4390244,25.4199914 35.902439,18.2256542 33.9512195,5.75546976 L0.292682927,5.75546976 Z" id="Path-36" fill="url(#linearGradient-20)"></path>
<ellipse id="Oval-4" fill="url(#linearGradient-21)" cx="17.1219512" cy="5.75546976" rx="16.8292683" ry="5.75546976"></ellipse>
<path d="M17.1219512,11.5109395 C26.4164994,11.5109395 31.6097561,10.2225337 31.6097561,8.63320463 C31.6097561,7.04387555 26.4164994,4.64864865 17.1219512,4.64864865 C7.82740299,4.64864865 2.34146341,6.54580605 2.34146341,8.13513514 C2.34146341,9.72446422 7.82740299,11.5109395 17.1219512,11.5109395 Z" id="Oval-4" fill="url(#linearGradient-22)"></path>
<path d="M34.6056784,10.2423529 L33.2967606,9.5988718 C34.8725622,6.50013332 36.7881507,5.55840504 38.6277932,7.36718952 C40.3895443,9.09938915 37.4825134,16.2353273 33.1152387,23.3920246 L33.3237857,19.7739985 C37.2748678,13.2993202 38.6040373,9.37869796 37.5930027,8.38462244 C36.6598596,7.46713177 35.8026624,7.88854107 34.6056784,10.2423529 Z" id="Path-37" fill="#5640A6"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 700 906"><title>developer-mickey</title><rect width="700" height="906" style="fill:#5763ab"/><path d="M330.3,138c-87.1,8.9-121.4,16.8-150,99s29.8,251.6,74.3,288.9S418.1,539,445.2,507.7s43.2-108.4,43.2-153.2-6.9-56.6-17.1-108.3S417.3,129.1,330.3,138Z" style="fill:#5b67ae;stroke:#fff"/><path d="M484,410.8c4,7.4,10.4,8.9,19.3,4.4,13.3-6.7,26.4-50.1,26.4-62s8.2-52.2-5-57-24.8,6-27.9,13C494.7,313.9,490.5,347.8,484,410.8Z" style="fill:#5b67ae"/><path d="M212.2,443.2c-9.2,3.1-18.7-2.4-28.5-16.4-14.8-21.1-15.4-41.6-17.6-50.8s-16.6-27.3-8.3-31.9,20.9,8.7,20.9,20.3Q178.7,376,212.2,443.2Z" style="fill:#5b67ae"/><path d="M313,404.6c3.1-3.4,6-4.6,9-3.4,4.5,1.7,15.7,12.1,21.3,12.1s4.2-14.3,11.2-14.3,5,12.1,12.9,7.1,13.8-19,5.6-23.6-13.5-4-13.5-9.1,2.5-15.1,0-18.4S345,339.6,345,328.2s-6-12.3,4.3-21.1,11.1-12.6,28.8-15.7q17.7-3.1,53.3,5.7" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-width:2px"/><path d="M304.3,313.6q-11.6-22.7-35.9-17.7t-51.8,21" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-width:2px"/><path d="M238.5,347.6C250,335.9,259.2,330,266,330s18.1,1.9,33.9,5.6" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-width:2px"/><ellipse cx="271.4" cy="338.8" rx="11" ry="8.8" style="fill:#fff;stroke:#fff"/><path d="M361.3,330c9.2-11.6,18.7-17.5,28.5-17.5s22.2,5,37.2,15.1" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-width:2px"/><ellipse cx="394.1" cy="321.3" rx="11" ry="8.8" style="fill:#fff;stroke:#fff"/><path d="M400.7,439.6c-1.5,8.3-7.9,13.5-19.1,15.4-16.8,3-34.3,3-43.5,3s-28.8,3.5-33.8,3.5" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-width:2px"/><path d="M475.7,350.7q10.8-42.1,0-54.7c-10.7-12.5-30.3-27.3-30.3-52s.5-56.2-14.5-62.4-13.7-12.6-51-6.3-47.2,17.2-66.6,17.2-38.2-13-46.2-6.5-21.7-8.9-36.3-4.4-44.9,40.5-44.9,69c0,19,6.2,26.5,18.7,22.6q-33,42.4-23.3,77.5c6.6,23.3,9.8,36.9,9.8,40.7l-27.3-48.9V315.3c0-19.3-10.7-45.2-10.7-60.5q0-15.3-6.6-10.8,4.2-48.1,21.8-68.7c17.6-20.5,18.4-50.3,46.8-63.1s74.5-32,125.2-32,119.8,39.2,124.3,56.3c3,11.3,8.6,20.3,16.9,26.9q24.3,89.1,24.3,101.7c0,12.7,1.5,28.9-7,39.6-5.6,7-11.4,25.6-17.3,55.6Z" style="fill:none;stroke:#4ebcbe;stroke-width:3px"/><path d="M510.3,597.4q93.7-6.4,109.6-3.4" style="fill:none;stroke:#5b67ae"/><path d="M484,641.3q113.1-8.8,131.5-8.8" style="fill:none;stroke:#5b67ae"/><path d="M199.1,604H98.3" style="fill:none;stroke:#5b67ae"/><path d="M225.4,647.8H102.7" style="fill:none;stroke:#5b67ae"/><path d="M269.2,702.6l13.2-96.4" style="fill:none;stroke:#5b67ae"/><path d="M229.8,654.4l8.7-65.7" style="fill:none;stroke:#5b67ae"/><path d="M199.1,597.4l8.8-43.8" style="fill:none;stroke:#5b67ae"/><path d="M431.4,702.6l-13.2-96.4" style="fill:none;stroke:#5b67ae"/><path d="M479.6,641.3l-13.1-57" style="fill:none;stroke:#5b67ae"/><path d="M510.3,597.4l-8.8-48.2" style="fill:none;stroke:#5b67ae"/><path d="M523.4,544.8Q406.7,689.6,400.7,689.5" style="fill:none;stroke:#4ebcbe"/><path d="M172.8,540.4q123,144.8,131.5,144.7" style="fill:none;stroke:#4ebcbe"/><path d="M142.1,571.1q51.5,114.1,48,149" style="fill:none;stroke:#4ebcbe"/><path d="M562.9,566.7q-42.4,143.5-33.5,166.6" style="fill:none;stroke:#4ebcbe"/><path d="M511.8,525.9q30.7-65.8,15.1,42.2l-114,174L370,614.1Q481,591.8,511.8,525.9Z" style="fill:none;stroke:#4ebcbe;stroke-width:4px"/><polyline points="321.8 645.6 349.6 807.8 387.6 667.4" style="fill:none;stroke:#4ebcbe;stroke-width:4px"/><path d="M188.8,525.9q-30.7-65.8-15.1,42.2l114,174,42.9-128Q219.6,591.8,188.8,525.9Z" style="fill:none;stroke:#4ebcbe;stroke-width:4px"/><path d="M532.2,566.7h83.3" style="fill:none;stroke:#4ebcbe;stroke-width:4px"/><path d="M89.5,566.7h83.3" style="fill:none;stroke:#4ebcbe;stroke-width:4px"/></svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 700 906"><title>developer-nedim</title><rect width="700" height="906" style="fill:#5763ab"/><path d="M351.5,529.3c49,0,99.2-9,132.1-51.1,25.9-33.2,27.9-76.7,34.1-111.8,2.2-12.6,16.4-1.5,16.4-20,0-12.3-2.9-52.5-4.2-64.9-.6-5.2-11.4,17.4-12.2,12.2-18-119.5-94.8-233.1-195-233.1-58.6,0-109.5,45.8-133.7,108.6-17.6,45.6,0,99,0,156.5,0,6.1-22-12.5-22.1-6.9,0,17,3.3,50.8,12.9,70.2,4.6,9.1,17.9,8.2,19.1,13.7,10.6,47.5,6.2,59,36.1,86.1S313.7,529.3,351.5,529.3Z" style="fill:#5b67ae"/><ellipse cx="398.3" cy="257.9" rx="11.3" ry="6.8" style="fill:#fff"/><path d="M288.9,408.4q55.5-10.3,59.5-6.9c3.9,3.4,4.8,3.7,8.9,0s53.2-2.6,59,0" style="fill:none;stroke:#fff;stroke-width:2px"/><path d="M354.7,269.4c17.9,41.5,29.2,64.3,34.1,68.4,7.3,6.1-5.8,11.8-10.9,11.8s-14.8-9-14.8,0-21.8,10.7-21.8,5.4-.1-10.3-8.3-10.3-9.5,15.6-18.6,10.3-13-5.4-13-17.2c17-26,20.7-63.4,24.1-72.1" style="fill:none;stroke:#fff;stroke-width:2px"/><path d="M368.9,266.1c9.9-9.7,19.8-14.6,29.6-14.6,14.7,0,48.4,14.6,53.9,14.6" style="fill:none;stroke:#fff;stroke-width:2px"/><ellipse cx="275.9" cy="267" rx="11.3" ry="6.8" style="fill:#fff"/><path d="M307.3,275.2q-15-14.7-29.7-14.7c-14.6,0-48.4,14.7-53.9,14.7" style="fill:none;stroke:#fff;stroke-width:2px"/><path d="M369.8,235.1c23.8-6.7,40.3-10.1,49.5-10.1s22.2,6.4,38.8,19.2" style="fill:none;stroke:#fff;stroke-width:2px"/><path d="M298.6,244.4c-30.7-10-52.7-10-65.8,0s-16.9,13.7-11.4,10.9" style="fill:none;stroke:#fff;stroke-width:2px"/><path d="M519.2,285c9.2-114.8-22.6-171.6-54.1-206S317.6,33.5,302.3,33.5s-59.7,11.8-120.6,79.9q-61,68.1,0,213.1c5.1,7.6,5.1-19.5,0-81.5S192.2,139.2,229,113.4l101,19.8,90.4-41.4q63.6,58.7,63.6,115C510.1,270.5,519.2,285,519.2,285Z" style="fill:none;stroke:#4ebcbe;stroke-width:3px"/><polyline points="202.7 436.5 62.5 436.5 261.1 603.3 327.2 817 416.9 586.2 620.4 451.2 500.8 451.2" style="fill:none;stroke:#4ebcbe;stroke-linejoin:round;stroke-width:4px"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

36
static/images/docker.svg Normal file
View File

@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 110 110" style="enable-background:new 0 0 110 110;" xml:space="preserve">
<style type="text/css">
.st0{fill:#5763AB;}
.st1{fill:#92DEE2;}
.st2{fill:#FFFFFF;}
.st3{fill:none;}
</style>
<title>Docker</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="Docker">
<g id="Group">
<g id="Group-79" transform="translate(5.289062, 24.070880)">
<path id="Path-121" class="st0" d="M0.1,27.3h77.1c-3.2-7-2.9-13.4,1-19.4c3.6,2.3,6.4,6.2,8.5,11.7c6.7-0.4,10.9,0.2,12.7,2
c-1.4,4.6-9.2,7.6-14.9,8.2c-2.8,3.7-16.5,35.1-51.6,32.9C9.5,61.1-1.4,49.4,0.1,27.3z"/>
<polygon id="Path-122" class="st1" points="7.8,28.8 7.8,18.3 20.9,18.3 20.9,28.8 "/>
<polygon id="Path-122_1_" class="st1" points="18.3,28.8 18.3,18.3 31.4,18.3 31.4,28.8 "/>
<polygon id="Path-122_2_" class="st1" points="31.4,28.8 31.4,18.3 44.5,18.3 44.5,28.8 "/>
<polygon id="Path-122_3_" class="st1" points="44.5,28.8 44.5,18.3 57.6,18.3 57.6,28.8 "/>
<polygon id="Path-122_4_" class="st1" points="54.9,28.8 54.9,18.3 68,18.3 68,28.8 "/>
<polygon id="Path-122_5_" class="st1" points="44.5,18.3 44.5,7.8 57.6,7.8 57.6,18.3 "/>
<polygon id="Path-122_6_" class="st1" points="44.5,10.5 44.5,0 57.6,0 57.6,10.5 "/>
<polygon id="Path-122_7_" class="st1" points="31.4,18.3 31.4,7.8 44.5,7.8 44.5,18.3 "/>
<polygon id="Path-122_8_" class="st1" points="18.3,18.3 18.3,7.8 31.4,7.8 31.4,18.3 "/>
<path id="Path-123" class="st2" d="M9.7,52.8c9.7-0.9,14.6-2.7,14.7-5.1c0.2-3.7,6.5,10.6,12.3,12.9c0.1,0.6,1.4,1.7-7.7,0.6
C23,60.4,16.6,57.6,9.7,52.8z"/>
<ellipse id="Oval-18" class="st1" cx="34" cy="39.2" rx="2.6" ry="2.6"/>
</g>
<rect id="Rectangle-9" class="st3" width="110" height="110"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

37
static/images/elastic.svg Normal file
View File

@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 110 110" style="enable-background:new 0 0 110 110;" xml:space="preserve">
<style type="text/css">
.st0{fill:#92DEE2;}
.st1{fill:#5763AB;}
.st2{fill:none;}
</style>
<title>Elastic</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="Elastic">
<g id="Group">
<g id="Group-71" transform="translate(15.000000, 15.000000)">
<path id="Path-90" class="st0" d="M52.1,70.8c5.5,2.9,10.5,2.9,14.8,0c6.5-4.3,1.5-14.8,2.9-14.8c1.4,0,7.3-7.3,8.3-10.7
c1-3.4,3.5-9.2-6.7-17.3c-0.9-0.7-2.7-0.9-2.5-1.9c0.5-3.8,0.2-10.4-1.4-14C66,8.6,58.6,0.9,48.4,0.1
c-6.8-0.5-13.1,2.6-18.9,9.4c-6-2.5-10.8-2.7-14.3-0.5s-4.9,6.8-4.2,13.7C3.8,26.7,0.2,30.5,0,34.2c-0.2,5.5,2.1,12.3,4.8,13.3
c1.8,0.7,3.9,2.5,6.1,5.5c-0.3,6.9,1.1,12.9,4.2,17.9c4.6,7.5,18.1,12.4,25.6,7.5C45.7,75.2,49.5,72.7,52.1,70.8z"/>
<g id="Group-70" transform="translate(2.171053, 2.171053)">
<path id="Path-84" class="st1" d="M47.1,41.7l17.7-16.4c0.2-6.4-0.2-10.9-1.3-13.3C60.1,4.5,52.8,0.3,47.1,0.3
c-8.5,0-14.9,3-19.2,9.1l-3.4,16.8l2.5,7L47.1,41.7z"/>
<path id="Path-85" class="st1" d="M48.8,42.1l16.7-15.8c5.7,4.1,8.5,8.1,8.5,12.1c-0.1,6-4.3,11.7-7.8,12.9
c-3.6,1.3-13.1-2.6-13.9-3.1C51.7,47.9,50.6,45.9,48.8,42.1z"/>
<path id="Path-86" class="st1" d="M53.7,52.9l-2.9,13.5c1.8,2.5,3.6,3.7,5.3,3.6c1.3-0.1,5.6,0.1,7.8-1.3
c2.1-1.2,3.2-3.8,3.6-4.9c0.7-2.3,0.8-6.9,0-8C67,55.1,62.4,54.1,53.7,52.9z"/>
<path id="Path-87" class="st1" d="M10.1,48.9C10,49.1,15.6,44.6,27,35.4l19.2,7.9l4.3,8.3l-2.1,15.4c-6.6,6-13.3,8.8-20.3,8.5
C17.7,75.2,9.5,61.7,10.1,48.9z"/>
<path id="Path-88" class="st1" d="M9.2,46.7l16.3-13.1l-2.6-8.4l-12.4-2.8C4.1,25.9,0.6,30,0.1,34.5S2.5,43.2,9.2,46.7z"/>
<path id="Path-89" class="st1" d="M22.6,22.8l2.9-14.3c-4.9-2.2-8.8-2.4-11.9-0.7S9,13.6,9,19.9L22.6,22.8z"/>
</g>
</g>
<rect id="Rectangle-11" class="st2" width="110" height="110"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

29
static/images/es6.svg Normal file
View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 110 110" style="enable-background:new 0 0 110 110;" xml:space="preserve">
<style type="text/css">
.st0{fill:#818CCD;}
.st1{fill:#5763AB;}
.st2{fill:#92DEE2;}
.st3{fill:#29D0CA;}
.st4{fill:none;}
</style>
<title>ES6</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="ES6">
<g id="Group-2">
<g id="Group-66" transform="translate(17.769231, 16.923077)">
<polygon id="Path-57" class="st0" points="0,7.4 36.3,0.5 36.3,76.7 5.5,61.1 "/>
<polygon id="Path-57_1_" class="st1" points="73.9,7.4 36.3,0.5 36.3,76.6 68.4,61.1 "/>
<polygon id="Path-124" class="st2" points="36.9,21.1 36.9,12.6 21.7,16.9 20,35.5 21.6,55 36.9,59.2 36.9,52.4 27.6,50.7
27.6,39.7 36.9,38 36.9,31.3 27.6,33.8 27.6,23.7 "/>
<polygon id="Path-127" class="st3" points="36.9,21.1 50.4,23.7 50.4,16.1 36.9,12.6 "/>
<polygon id="Path-126" class="st3" points="36.9,38 44.5,39.7 44.5,50.7 36.9,52.4 36.9,59.2 51.3,55 53,35.5 36.9,31.3 "/>
</g>
<rect id="Rectangle-9" class="st4" width="110" height="110"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<title id="simpleicons-facebook-icon">Facebook icon</title>
<path class="st0" d="M22.7,0H1.3C0.6,0,0,0.6,0,1.3v21.4C0,23.4,0.6,24,1.3,24h11.5v-9.3H9.7v-3.6h3.1V8.4c0-3.1,1.9-4.8,4.7-4.8
c1.3,0,2.5,0.1,2.8,0.1V7h-1.9c-1.5,0-1.8,0.7-1.8,1.8v2.3h3.6l-0.5,3.6h-3.1V24h6.1c0.7,0,1.3-0.6,1.3-1.3V1.3
C24,0.6,23.4,0,22.7,0"/>
</svg>

After

Width:  |  Height:  |  Size: 728 B

BIN
static/images/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

BIN
static/images/favicon32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -0,0 +1,299 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="474px" height="499px" viewBox="0 0 474 499" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>Group 7</title>
<desc>Created with Sketch.</desc>
<defs>
<linearGradient x1="50%" y1="-104.289511%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#B3CDEF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="32.1187137%" x2="67.2859088%" y2="115.977968%" id="linearGradient-2">
<stop stop-color="#9AE1E5" offset="0%"></stop>
<stop stop-color="#3BC2CA" offset="100%"></stop>
</linearGradient>
<linearGradient x1="60.7312459%" y1="0%" x2="50%" y2="100%" id="linearGradient-3">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#E5EEFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="157.419759%" y1="-39.6921362%" x2="118.835577%" y2="115.937591%" id="linearGradient-4">
<stop stop-color="#E5EDFF" offset="0%"></stop>
<stop stop-color="#6B9AD9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="149.379226%" y1="-86.5655478%" x2="157.419759%" y2="219.657969%" id="linearGradient-5">
<stop stop-color="#E5EDFF" offset="0%"></stop>
<stop stop-color="#6B9AD9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="77.8148852%" y1="0%" x2="50%" y2="100%" id="linearGradient-6">
<stop stop-color="#7B6ABA" offset="0%"></stop>
<stop stop-color="#B4AAD7" offset="100%"></stop>
</linearGradient>
<path d="M1.24473305,2.55543905 C1.24473305,8.37959651 1.24473305,10.9220267 0.186426193,14.5057558 C-0.871880663,18.0895209 24.7469802,32.1861285 54.2255448,18.5118635 C54.2255448,10.2558397 55.2442616,6.72857867 56.0303646,3.69651872 C56.8164676,0.664494715 3.44444432,-1.72689857 1.24473305,2.55543905 Z" id="path-7"></path>
<linearGradient x1="74.9549675%" y1="-42.633432%" x2="23.990508%" y2="122.412292%" id="linearGradient-9">
<stop stop-color="#577FBE" offset="0%"></stop>
<stop stop-color="#A1B8E3" stop-opacity="0.262228261" offset="100%"></stop>
</linearGradient>
<linearGradient x1="100%" y1="46.4557229%" x2="-6.94620525%" y2="38.6508698%" id="linearGradient-10">
<stop stop-color="#B72E40" offset="0%"></stop>
<stop stop-color="#F25267" offset="47.3017522%"></stop>
<stop stop-color="#FF909F" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="43.3461754%" x2="50%" y2="70.676267%" id="linearGradient-11">
<stop stop-color="#C08771" offset="0%"></stop>
<stop stop-color="#FABFA8" offset="100%"></stop>
</linearGradient>
<linearGradient x1="85.5704049%" y1="72.4964935%" x2="22.5261743%" y2="65.1992738%" id="linearGradient-12">
<stop stop-color="#385192" offset="0%"></stop>
<stop stop-color="#0A2A66" offset="100%"></stop>
</linearGradient>
<linearGradient x1="85.5704049%" y1="72.4964935%" x2="22.5261743%" y2="65.1992738%" id="linearGradient-13">
<stop stop-color="#052661" offset="0%"></stop>
<stop stop-color="#385192" offset="100%"></stop>
</linearGradient>
<linearGradient x1="18.8472971%" y1="7.11666837%" x2="18.8472966%" y2="40.0057858%" id="linearGradient-14">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#EEEBF6" offset="100%"></stop>
</linearGradient>
<path d="M110.720612,61.6183624 C110.720612,61.6183624 134.715746,70.9144168 149.4899,75.1161114 C164.264172,79.317693 160.59957,89.0368089 173.668799,89.5731762 C186.738028,90.1095435 200.420873,91.1060254 205.037061,79.317693 C209.653131,67.5293607 227.278956,82.638245 225.146197,92.5918803 C224.370066,96.2136024 220.586278,112.531911 219.444161,122.849978 C217.447802,140.888888 209.647789,156.187557 208.352179,162.458242 C206.315458,172.315855 147.127555,170.451335 148.348496,156.884676 C149.965574,138.915693 143.748096,109.357087 142.641236,108.053561 C140.698771,105.765866 123.441187,101.227982 110.720612,97.9351065 L110.720612,61.6183624 Z" id="path-15"></path>
<filter x="-8.7%" y="-9.3%" width="117.5%" height="118.7%" filterUnits="objectBoundingBox" id="filter-16">
<feGaussianBlur stdDeviation="5.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="-9" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0.900282918 0 0 0 0 0.872612941 0 0 0 0 0.955622874 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<linearGradient x1="50%" y1="50%" x2="50%" y2="99.0516618%" id="linearGradient-17">
<stop stop-color="#FAF9FD" offset="0%"></stop>
<stop stop-color="#EDE8F7" offset="100%"></stop>
</linearGradient>
<linearGradient x1="57.5068941%" y1="91.4850221%" x2="57.5068941%" y2="36.0942087%" id="linearGradient-18">
<stop stop-color="#D1AC9D" offset="0%"></stop>
<stop stop-color="#FABFA8" offset="100%"></stop>
</linearGradient>
<path d="M83.2484757,47.0048669 C75.2822745,45.2807337 54.0187546,36.57524 51.9570201,36.3335419 C49.8953729,36.0916898 36.2884142,29.4930306 26.8491089,25.7104847 C17.4097162,21.9279388 8.10863992,11.2247777 3.26669429,9.97264116 C-1.57516401,8.72050467 -1.39170274,-2.6048992 7.40623035,0.623389561 C16.2041634,3.85152428 25.7030216,6.52016425 33.4511825,9.01755653 C41.1994307,11.5149488 47.2789759,15.7004275 55.050888,16.2726053 C62.8227128,16.8447319 69.7512794,19.2092339 77.4521123,21.2058229 C83.2484757,25.7104847 84.1271863,40.4143721 83.2484757,47.0048669 Z" id="path-19"></path>
<path d="M27.0761347,1.50306017 C27.0761347,5.7667086 25.2354951,20.9830212 27.0761347,25.5455186 C27.7006049,27.0932521 26.4942606,30.1591936 27.0761347,31.3832595 C29.2276597,35.9093851 16.8497836,46.3573777 16.8497836,46.3573777 L13.0763123,79.8756279 L-5.13652533e-05,79.8756279 C-5.13652533e-05,79.8756279 2.94161958,49.3280674 1.52637558,46.3573777 C0.11116297,43.3866879 -5.13652533e-05,38.0003871 -5.13652533e-05,32.9345874 C-5.13652533e-05,27.8687021 -5.13652533e-05,17.6163478 3.1139814,13.0209016 C6.22801417,8.4254554 27.0761347,-4.34109929 27.0761347,1.50306017 Z" id="path-21"></path>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-23">
<stop stop-color="#A9C4E5" offset="0%"></stop>
<stop stop-color="#7192C7" offset="100%"></stop>
</linearGradient>
<linearGradient x1="78.2262224%" y1="24.9293251%" x2="50%" y2="123.255884%" id="linearGradient-24">
<stop stop-color="#2F3660" offset="0%"></stop>
<stop stop-color="#2A315B" offset="100%"></stop>
</linearGradient>
<path d="M42.1209246,14.2802843 C42.6903048,11.4662143 43.5468386,9.37336244 42.6903048,5.80168374 C41.833771,2.10147838 31.9785252,-0.977097096 30.7351274,0.357249957 C29.4916845,1.75132506 29.6940434,2.55480781 24.7682285,6.0993563 C19.8424135,10.1956876 5.72339227,16.8241304 2.70134226,23.6881672 C-0.320707743,30.9913367 -0.883217649,35.5835561 5.39763824,33.4932452 L24.8256772,27.0274637 C28.3125155,24.160722 29.4853113,22.9002875 31.4400163,20.8300048 C31.8386774,22.5923773 31.4400163,24.3127222 31.4400163,24.3127222 L39.8068822,21.5998584 C39.8068822,21.5998584 41.5515895,17.1576111 42.1209246,14.2802843 Z" id="path-25"></path>
<linearGradient x1="78.2262224%" y1="24.9293251%" x2="50%" y2="123.255884%" id="linearGradient-27">
<stop stop-color="#2F3660" offset="0%"></stop>
<stop stop-color="#2A315B" offset="100%"></stop>
</linearGradient>
<path d="M-16.8790754,14.2802843 C-16.3096952,11.4662143 -15.4531614,9.37336244 -16.3096952,5.80168374 C-17.166229,2.10147838 -27.0214748,-0.977097096 -28.2648726,0.357249957 C-29.5083155,1.75132506 -29.3059566,2.55480781 -34.2317715,6.0993563 C-39.1575865,10.1956876 -53.2766077,16.8241304 -56.2986577,23.6881672 C-59.3207077,30.9913367 -59.8832176,35.5835561 -53.6023618,33.4932452 L-34.1743228,27.0274637 C-30.6874845,24.160722 -29.5146887,22.9002875 -27.5599837,20.8300048 C-27.1613226,22.5923773 -27.5599837,24.3127222 -27.5599837,24.3127222 L-19.1931178,21.5998584 C-19.1931178,21.5998584 -17.4484105,17.1576111 -16.8790754,14.2802843 Z" id="path-28"></path>
<linearGradient x1="100%" y1="12.9544387%" x2="36.3043169%" y2="38.7782704%" id="linearGradient-30">
<stop stop-color="#5763AB" offset="0%"></stop>
<stop stop-color="#5763AB" offset="100%"></stop>
</linearGradient>
<path d="M44.3254783,-241.70506 C47.0674206,-233.105691 53.1465463,-211.274494 52.8633252,-195.054354 C52.580104,-178.834474 50.0327025,-76.9425775 46.3857832,5.76908695 C40.4702147,9.2039741 27.9485028,9.10101895 20.9822752,5.42546759 C14.7022531,-59.5355781 4.35385644,-187.230284 4.35385644,-187.230284 C2.24926105,-165.492897 -14.1808433,-5.31766785 -14.1808433,1.04412466 C-14.1808433,7.40565586 -30.5505695,8.88935987 -36.1391228,4.52813762 C-37.8369602,-68.5786469 -44.8679354,-204.279292 -44.8679354,-204.279292 L-37.8369602,-243.138593 C-37.8369602,-243.138593 41.5834367,-250.303906 44.3254783,-241.70506 Z" id="path-31"></path>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-33">
<stop stop-color="#5640A6" offset="0%"></stop>
<stop stop-color="#92A8CA" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<linearGradient x1="82.7968069%" y1="-49.5564905%" x2="26.0819505%" y2="183.160079%" id="linearGradient-34">
<stop stop-color="#75A8D6" offset="0%"></stop>
<stop stop-color="#92A8CA" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<linearGradient x1="77.8148852%" y1="0%" x2="50%" y2="100%" id="linearGradient-35">
<stop stop-color="#FABFA8" offset="0%"></stop>
<stop stop-color="#CA866B" offset="100%"></stop>
</linearGradient>
<path d="M14.7252117,55.396544 C16.7959768,49.262275 15.4403147,40.7883944 20.3237452,40.188971 C17.1676512,32.56642 22.9719254,6.34769331 22.9719254,6.34769331 C22.9719254,6.34769331 -2.40728404,-4.64279769 0.334565802,3.59914454 C3.07644247,11.8410868 6.26489784,40.7195804 9.32155505,46.3841839 C12.3781854,52.0488525 12.6544734,61.530813 14.7252117,55.396544 Z" id="path-36"></path>
<linearGradient x1="66.4059369%" y1="96.8038727%" x2="60.7470739%" y2="22.5656568%" id="linearGradient-38">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#EDE9F5" offset="100%"></stop>
</linearGradient>
<linearGradient x1="43.6361052%" y1="85.265527%" x2="6.77392332%" y2="100%" id="linearGradient-39">
<stop stop-color="#FFFFFF" stop-opacity="0.5" offset="0%"></stop>
<stop stop-color="#EDE9F5" offset="100%"></stop>
</linearGradient>
<linearGradient x1="17.2373684%" y1="41.5235058%" x2="-5.57070234%" y2="14.0163926%" id="linearGradient-40">
<stop stop-color="#FFFFFF" stop-opacity="0" offset="0%"></stop>
<stop stop-color="#EDE9F5" offset="100%"></stop>
</linearGradient>
<path d="M40.1469989,3.3139788 C40.1469989,3.3139788 29.5324617,11.7366945 26.8993658,12.4447157 C24.2662699,13.1527369 7.15063799,20.2519113 6.14162922,22.4279142 C5.13262046,24.6037521 -0.172670578,32.8254716 0.00429299375,35.0451693 C0.181256565,37.2650319 7.08712999,86.1623573 6.14162922,109.241805 C5.19612845,132.321253 6.14162922,129.18281 6.14162922,134.625867 C6.14162922,140.06909 2.13474907,147.515349 4.13818915,151.610627 C6.14162922,155.705905 9.58450862,156.6695 14.8290037,157.839862 C20.0734989,159.010224 23.856632,160.377625 31.3178049,157.839862 C38.7790908,155.302099 42.9550243,161.079711 55.2903796,159.459869 C67.625735,157.839862 78.2167675,162.950344 87.5015918,150.544638 C90.9158813,152.741087 92.684613,151.291737 98.1346616,148.233264 C103.584597,145.174625 103.167162,134.285542 101.533357,130.508165 C99.8995511,126.730787 92.5771466,122.766099 95.3559041,114.357234 C98.1346616,105.948204 101.533357,77.9035385 101.533357,65.246216 C101.533357,52.5887287 108.981873,29.761062 111.291327,22.4279142 C104.68367,17.4597288 76.0207693,1.64730932 70.5619065,-6.84648485e-05 C68.4276083,5.69674893 58.0501525,8.55999739 56.3409737,7.0413957 C54.6319079,5.5229589 55.6455498,17.7571834 55.6455498,17.7571834 C55.6455498,17.7571834 53.5920492,22.4279142 51.6688416,27.3306397 C49.7456341,32.2335302 45.3085494,39.9142581 45.3085494,45.2010035 C41.2556768,41.122544 46.184892,29.3635214 45.3085494,24.8070568 C44.3004446,19.5659848 46.3165411,14.6146178 48.537174,7.73507185 C45.3085494,6.97692521 45.0244584,8.26963283 44.0236989,6.8982745 C41.4082316,3.3139788 40.1469989,3.3139788 40.1469989,3.3139788 Z" id="path-41"></path>
<linearGradient x1="-30.2321633%" y1="83.8070478%" x2="83.6802978%" y2="73.1776026%" id="linearGradient-43">
<stop stop-color="#000000" stop-opacity="0.115545743" offset="0%"></stop>
<stop stop-color="#B4AAD7" offset="100%"></stop>
</linearGradient>
<linearGradient x1="-30.2321633%" y1="83.8070478%" x2="83.6802978%" y2="73.1776026%" id="linearGradient-44">
<stop stop-color="#EAF0F7" stop-opacity="0.115545743" offset="0%"></stop>
<stop stop-color="#B4AAD7" offset="100%"></stop>
</linearGradient>
<path d="M168.566039,175.778686 C160.214273,147.870168 156.7196,127.965825 157.023504,121.069827 C157.327408,114.17383 165.441265,100.760045 174.621322,101.59328 C183.80143,102.426516 185.746296,119.335617 187.649528,128.417972 C189.552759,137.500327 203.608292,184.163838 204.320013,190.735307 C205.031785,197.306666 198.801673,207.820951 190.843159,208.731223 C182.884645,209.641384 176.917806,203.687093 168.566039,175.778686 Z" id="path-45"></path>
<filter x="-15.8%" y="-7.0%" width="131.7%" height="114.0%" filterUnits="objectBoundingBox" id="filter-46">
<feGaussianBlur stdDeviation="3.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="-8" dy="3" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<linearGradient x1="100%" y1="74.574806%" x2="80.7589288%" y2="59.3137338%" id="linearGradient-47">
<stop stop-color="#B3B30E" offset="0%"></stop>
<stop stop-color="#DADA06" offset="100%"></stop>
</linearGradient>
<path d="M3.05383649,4.00998561 C17.199308,13.0560273 31.3211238,19.5805503 50.0458627,14.3683341 C68.7707432,9.15621352 75.7594804,12.6581847 86.9536701,15.5154788 C98.1478599,18.3727729 106.607634,23.8459777 140.971263,0.876210069 C139.958322,23.3697142 136.623168,62.8008887 140.088074,71.0533492 C131.56144,76.4740502 118.701444,93.0290841 106.006896,92.8813277 C93.3123472,92.7335712 86.6817018,80.8498407 66.0337782,83.722532 C45.3857131,86.5952233 45.9931091,94.7688804 32.6427201,91.7302619 C19.2924728,88.6915478 2.92748452,75.1006326 0.771568596,73.4365794 C0.512773695,68.4881252 3.88348166,19.8798886 3.05383649,4.00998561 Z" id="path-48"></path>
<linearGradient x1="28.3054069%" y1="76.0729117%" x2="128.013588%" y2="47.2824787%" id="linearGradient-50">
<stop stop-color="#BBBB0D" offset="0%"></stop>
<stop stop-color="#DADA06" offset="100%"></stop>
</linearGradient>
<linearGradient x1="34.0098822%" y1="100%" x2="57.5068941%" y2="36.0942087%" id="linearGradient-51">
<stop stop-color="#C0856F" offset="0%"></stop>
<stop stop-color="#FABFA8" offset="100%"></stop>
</linearGradient>
<path d="M151.085296,170.788318 C154.227841,171.69707 167.469035,175.382313 170.668128,173.91896 C174.30513,172.255226 192.360017,173.01946 196.349171,186.583169 C200.338379,200.146966 196.855955,203.083004 192.360017,207.776218 C187.904469,212.427425 155.403137,200.369261 148.066528,193.899825 C143.68077,196.368706 138.254056,189.784607 134.550789,190.513301 C132.923003,190.833637 128.728534,190.993862 124.552505,189.99979 C123.151237,189.666236 118.48006,188.336878 117.619164,187.66062 C116.539098,186.812125 115.986643,185.746884 117.219871,184.688496 C117.71015,184.267657 123.757301,185.90967 125.198019,186.196982 C129.317509,187.018328 132.720516,185.98355 132.600629,185.717249 C132.406123,185.284887 129.335995,185.633842 125.198019,184.688496 C123.746074,184.356825 120.742855,183.773426 119.29127,183.343398 C116.075781,182.390936 113.336774,180.973426 113.08442,180.727723 C112.402746,180.063853 111.912963,179.052309 113.198446,178.074542 C113.7431,177.660292 115.097883,178.074542 118.965244,178.696086 C120.642807,178.965701 124.032062,179.823648 125.541539,180.063853 C128.771412,180.577853 131.225151,179.196455 131.209281,178.914226 C131.193455,178.632787 128.987335,179.29259 125.812784,178.696086 C124.116601,178.377331 120.858414,177.999005 118.972368,177.660292 C113.979538,176.76356 111.29928,174.989714 110.915497,174.700971 C110.211324,174.171043 110.058207,172.338492 110.915497,171.808752 C111.411908,171.501971 113.873538,172.107249 118.911365,172.936728 C120.736363,173.23722 124.223413,173.796444 125.812784,173.796444 C128.987335,173.796444 131.000346,173.085166 131.000346,172.936728 C131.000346,172.696296 124.913744,172.025046 120.017897,171.044455 C115.108253,170.061077 114.674153,169.038086 114.339876,168.642325 C113.883142,168.101627 113.736473,166.116458 115.3212,166.116458 C117.637469,166.116458 118.586286,166.414954 120.779151,166.707878 C122.334887,166.915699 126.060945,167.074644 127.550448,167.074644 C130.505017,167.074644 133.779075,165.720396 135.304829,165.585438 C139.990434,165.170886 139.883261,161.289943 140.038768,162.399505 C140.194183,163.509067 151.085196,170.787304 151.085196,170.787304 C151.085196,170.787304 151.085229,170.787642 151.085296,170.788315 Z" id="path-52"></path>
<linearGradient x1="29.6124033%" y1="61.4972035%" x2="50%" y2="28.0461348%" id="linearGradient-53">
<stop stop-color="#365091" offset="0%"></stop>
<stop stop-color="#062763" offset="100%"></stop>
</linearGradient>
</defs>
<g id="Illustration" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="StartUp" transform="translate(-590.000000, -3611.000000)">
<g id="Group-7" transform="translate(562.000000, 3611.000000)">
<g id="leaves" transform="translate(0.000000, 149.000000)" fill-rule="nonzero">
<g id="Leaves" transform="translate(120.000000, 117.000000) scale(-1, 1) rotate(-16.000000) translate(-120.000000, -117.000000) translate(73.000000, 9.000000)">
<path d="M64.3613248,0.248646016 C76.6189202,1.51215007 72.3945176,30.0988279 75.7581871,35.3841914 C79.1218566,40.6313288 88.5800051,42.2225896 87.2588053,53.6594861 C85.9376054,65.0963826 76.8145864,64.7132972 75.7268512,74.2140127 C74.6391159,83.7147283 95.157756,82.4740204 93.4059218,97.4711004 C91.6540876,112.46818 75.8354906,117.015313 74.7960824,126.049388 C73.7566741,135.083462 81.5907578,138.628375 79.2714566,158.622793 C76.9521553,178.617211 60.9870657,182.714634 37.1435239,184.461902 C13.2999822,186.20917 -1.4930132,179.462879 0.826288027,157.903807 C3.14558925,136.344734 28.4603647,136.964979 31.5859367,125.135084 C34.7115086,113.345745 18.6791733,106.930665 20.184428,93.0976474 C21.6896827,79.26463 45.8070746,79.900852 47.0369899,68.8516109 C48.2669052,57.8023698 29.3897096,51.7749202 30.6443042,40.2956171 C31.8988987,28.816314 36.6915248,27.1082155 45.7342583,23.1573259 C54.7769919,19.2805942 52.1037294,-1.01485804 64.3613248,0.248646016 Z" id="Leaf" fill="url(#linearGradient-1)"></path>
<path d="M39.3755279,174.166686 C38.8725348,174.324878 38.4312203,173.985653 38.3898244,173.408793 C38.3484285,172.831814 38.722627,172.236427 39.2256201,172.079174 C51.3056313,168.338185 57.8734853,160.760697 59.1972439,149.108061 C59.2639226,148.521109 59.723525,148.029383 60.2237946,148.00976 C60.7240642,147.990137 61.075559,148.449211 61.0088803,149.035131 C59.5637558,161.733742 52.2632843,170.153945 39.3755279,174.166686 Z" id="leaves-base" fill="#98BBE9"></path>
<path d="M46.336188,126.317423 C45.8354122,126.276241 45.5480744,125.767569 45.694401,125.181398 C45.8407276,124.595317 46.3653077,124.154511 46.8660835,124.196704 C54.9797427,124.873543 61.8969287,119.947073 67.7929844,109.280493 C68.0874117,108.750384 68.6752415,108.502575 69.1059392,108.726597 C69.5366368,108.950419 69.6471058,109.560735 69.3526785,110.090177 C63.0224208,121.531747 55.2918096,127.045692 46.336188,126.317423 Z" id="leaves-base" fill="#98BBE9"></path>
<path d="M62.8163673,62.4725332 C62.4751677,62.4222208 62.2778027,62.0657794 62.3755402,61.676457 C62.4732777,61.287175 62.8291066,61.0128103 63.1703062,61.0635883 C67.2864038,61.6743037 70.7740352,59.4147201 73.7518941,54.1649573 C73.9506356,53.8154697 74.3501306,53.6698823 74.6441912,53.8395947 C74.9382518,54.009214 75.0155233,54.4296347 74.8167819,54.7788147 C71.5458322,60.5415479 67.5061294,63.1616939 62.8163673,62.4725332 Z" id="leaves-base" fill="#98BBE9"></path>
<path d="M62.3729557,54.8433952 C62.7221183,54.8256661 62.9976115,54.4915278 62.9882871,54.0970186 C62.9789626,53.702469 62.6883515,53.3965713 62.339189,53.4138349 C58.1270297,53.6239465 55.1860402,51.0162013 53.4305939,45.4167202 C53.3134359,45.0421325 52.951711,44.8502564 52.6226587,44.9883369 C52.2936063,45.1265105 52.121832,45.5425843 52.23899,45.9174797 C54.1672131,52.0718091 57.5737438,55.089461 62.3729557,54.8433952 Z" id="leaves-base" fill="#98BBE9"></path>
<path d="M49.7587605,112.015482 C50.2676142,111.964617 50.6668186,111.451929 50.6504085,110.870236 C50.6339984,110.288451 50.2081879,109.85714 49.6993342,109.907002 C42.1583304,110.651439 36.8603953,106.141822 33.6796261,96.0889331 C33.5062033,95.5384937 32.9775769,95.2750703 32.4989059,95.5009572 C32.0202349,95.7270413 31.7727822,96.3573968 31.9462049,96.9084988 C35.3827266,107.779305 41.3622127,112.861585 49.7587605,112.015482 Z" id="leaves-base" fill="#98BBE9"></path>
<path d="M35.4837343,162.616784 C35.992588,162.541331 36.3917924,162.007979 36.3753823,161.425383 C36.3589722,160.842696 35.9331617,160.430587 35.424308,160.505036 C27.8833042,161.613863 22.5853691,157.345804 19.4045999,147.417055 C19.2311772,146.873384 18.7025507,146.634624 18.2238797,146.884167 C17.7452087,147.133906 17.4977561,147.777952 17.6711788,148.322285 C21.1077004,159.05897 27.0871865,163.868617 35.4837343,162.616784 Z" id="leaves-base" fill="#98BBE9"></path>
<path d="M35.6638122,214.081748 C35.5754974,214.871487 34.9563891,215.568135 34.2809951,215.637754 C33.6056012,215.707373 32.2124978,215.216085 32.3008126,214.423808 C33.8144556,209.509913 35.0519262,202.78838 36.0132243,194.252591 C37.4551715,181.44917 33.3231706,160.459411 36.1906002,146.183712 C39.0580298,131.942783 54.6878348,104.990356 60.2983826,83.8489531 C64.863492,66.7439593 61.744092,51.0629245 61.2437989,40.6901581 C60.7435058,30.2846391 62.9533728,18.0385356 63.1736345,18.0574895 C63.4371607,18.0801663 61.2269924,30.641854 61.9206669,40.7337131 C62.6143414,50.790815 65.25832,64.0781499 62.9805453,78.7200704 C58.7403984,106.023151 41.1508788,130.099067 39.1319749,148.220271 C37.1130711,166.341474 41.0490734,177.336242 40.0451646,193.212529 C39.3758921,203.783489 37.9154413,210.734383 35.6638122,214.081748 Z" id="leaves-base" fill="#8FAFDA"></path>
</g>
<g id="Leaves" transform="translate(74.000000, 127.000000) rotate(-17.000000) translate(-74.000000, -127.000000) translate(31.000000, 16.000000)">
<path d="M46.072165,0 C58.3319705,0 57.3651954,29.9331291 61.2983814,35.1594097 C65.2315674,40.3856903 74.8028324,41.4091657 74.8028324,53.548531 C74.8028324,65.6878962 65.6781684,65.6878962 65.6781684,75.6821564 C65.6781684,85.6764167 86,83.8344524 86,99.9305451 C86,116.026638 70.6933185,120.755541 70.6933185,130.305767 C70.6933185,139.855993 78.9659832,143.872032 78.9659832,165.18209 C78.9659832,186.492147 63.3405696,189.639019 39.4927286,189.639019 C15.6448876,189.639019 0,181.837631 0,160.527573 C0,139.217516 25.4616936,140.525245 27.2877711,128.582287 C29.1138486,116.639329 12.370608,110.135167 12.370608,96.3046812 C12.370608,82.4741951 36.4923486,82.4741951 36.4923486,71.1735649 C36.4923486,59.8729347 17.053578,54.7453059 17.053578,43.2179192 C17.053578,31.6905326 21.622639,29.6288172 30.1584453,24.9569615 C38.6942516,20.2851058 33.8123594,0 46.072165,0 Z" id="Leaf" fill="url(#linearGradient-2)"></path>
<path d="M40.5834001,179.150493 C40.0945197,179.280973 39.6118167,178.901489 39.5052526,178.302891 C39.3986886,177.704294 39.7086172,177.11326 40.1974975,176.98278 C51.9385733,173.849147 57.6848923,166.291253 57.6848923,154.128377 C57.6848923,153.515724 58.0905141,153.019071 58.5908738,153.019071 C59.0912336,153.019071 59.4968553,153.515724 59.4968553,154.128377 C59.4968553,167.406379 53.1095577,175.807325 40.5834001,179.150493 Z" id="Leaves-base" fill="#31B1B9"></path>
<path d="M46.6288389,134.000166 C46.1500847,134.190181 45.635362,133.872058 45.4791735,133.289618 C45.3229849,132.707178 45.5844761,132.08098 46.0632303,131.890965 C53.8200916,128.812309 57.6732035,121.276024 57.6732035,109.007366 C57.6732035,108.394715 58.0814419,107.898063 58.5850294,107.898063 C59.088617,107.898063 59.4968553,108.394715 59.4968553,109.007366 C59.4968553,122.179522 55.1906374,130.602036 46.6288389,134.000166 Z" id="Leaves-base" fill="#31B1B9" transform="translate(52.465409, 120.976616) rotate(25.000000) translate(-52.465409, -120.976616) "></path>
<path d="M53.8220964,66.0095654 C53.495225,66.1378274 53.1437958,65.9230909 53.0371574,65.529938 C52.9305191,65.1367852 53.1090533,64.7140949 53.4359247,64.5858329 C57.3791728,63.0385308 59.3335103,59.2594055 59.3335103,53.0630035 C59.3335103,52.6494575 59.6122368,52.3142122 59.9560634,52.3142122 C60.2998899,52.3142122 60.5786164,52.6494575 60.5786164,53.0630035 C60.5786164,59.8692759 58.3149187,64.2466144 53.8220964,66.0095654 Z" id="Leaves-base" fill="#31B1B9" transform="translate(56.792453, 59.180453) rotate(25.000000) translate(-56.792453, -59.180453) "></path>
<path d="M41.9227253,58.1624336 C41.5958539,58.2906956 41.2444247,58.0759591 41.1377864,57.6828062 C41.031148,57.2896533 41.2096822,56.8669631 41.5365536,56.7387011 C45.4798017,55.191399 47.4341393,51.4122736 47.4341393,45.2158717 C47.4341393,44.8023257 47.7128658,44.4670803 48.0566923,44.4670803 C48.4005188,44.4670803 48.6792453,44.8023257 48.6792453,45.2158717 C48.6792453,52.0221441 46.4155477,56.3994825 41.9227253,58.1624336 Z" id="Leaves-base" fill="#31B1B9" transform="translate(44.893082, 51.333321) scale(-1, 1) rotate(25.000000) translate(-44.893082, -51.333321) "></path>
<path d="M29.3125372,118.959875 C28.8370387,119.149734 28.3258163,118.831871 28.1706899,118.249908 C28.0155635,117.667945 28.2752764,117.042259 28.7507749,116.852399 C35.7974679,114.038761 39.2956679,107.155435 39.2956679,95.9279056 C39.2956679,95.3157554 39.7011301,94.8195096 40.2012931,94.8195096 C40.701456,94.8195096 41.1069182,95.3157554 41.1069182,95.9279056 C41.1069182,108.058194 37.1586935,115.827022 29.3125372,118.959875 Z" id="Leaves-base" fill="#31B1B9" transform="translate(34.616352, 106.917171) scale(-1, 1) rotate(25.000000) translate(-34.616352, -106.917171) "></path>
<path d="M20.6584492,170.620159 C20.1829507,170.810019 19.6717282,170.492156 19.5166019,169.910193 C19.3614755,169.328229 19.6211884,168.702543 20.0966869,168.512684 C27.1433799,165.699045 30.6415799,158.815719 30.6415799,147.58819 C30.6415799,146.97604 31.0470421,146.479794 31.547205,146.479794 C32.047368,146.479794 32.4528302,146.97604 32.4528302,147.58819 C32.4528302,159.718478 28.5046055,167.487307 20.6584492,170.620159 Z" id="Leaves-base" fill="#31B1B9" transform="translate(25.962264, 158.577456) scale(-1, 1) rotate(25.000000) translate(-25.962264, -158.577456) "></path>
<path d="M41.0017488,220.212216 C41.0017488,221.023665 40.4389236,221.681474 39.7446436,221.681474 C39.0503635,221.681474 37.5447094,221.023665 37.5447094,220.212216 C38.5484788,215.276546 39.0547647,208.431781 39.0635672,199.677921 C39.076771,186.54713 32.3832476,164.684487 33.7082188,150.181005 C35.03319,135.677523 48.015161,108.104152 51.3277849,86.1625558 C54.0231527,68.309435 49.0226566,52.2754894 47.3193656,41.6478993 C45.6160746,31.0203093 46.4657119,18.3099743 46.6921328,18.3099743 C46.963028,18.3099743 46.1498895,31.3493108 48.015161,41.6478993 C49.8804325,51.9464879 54.1183647,65.5327254 53.4828428,80.7808106 C52.2997994,109.165586 36.978413,133.834926 36.978413,152.384892 C36.978413,170.934857 42.3233798,182.544697 43.1260633,198.943292 C43.6611856,209.875688 42.9530808,216.96533 41.0017488,220.212216 Z" id="Leaves-base" fill="#31B1B9"></path>
</g>
<g id="Leaves" transform="translate(143.000000, 146.500000) scale(-1, 1) rotate(-28.000000) translate(-143.000000, -146.500000) translate(100.000000, 52.000000)">
<path d="M46.072165,0 C58.3319705,0 57.3651954,25.5202264 61.2983814,29.9760206 C65.2315674,34.4318148 74.8028324,35.304404 74.8028324,45.6541188 C74.8028324,56.0038336 65.6781684,56.0038336 65.6781684,64.5246863 C65.6781684,73.0455389 86,71.4751269 86,85.1982472 C86,98.9213675 70.6933185,102.95311 70.6933185,111.095391 C70.6933185,119.237671 78.9659832,122.661644 78.9659832,140.830059 C78.9659832,158.998473 63.3405696,161.681416 39.4927286,161.681416 C15.6448876,161.681416 0,155.03015 0,136.861736 C0,118.693322 25.4616936,119.808258 27.2877711,109.625996 C29.1138486,99.4437327 12.370608,93.8984492 12.370608,82.1069277 C12.370608,70.3154061 36.4923486,70.3154061 36.4923486,60.6807755 C36.4923486,51.0461449 17.053578,46.6744587 17.053578,36.8465014 C17.053578,27.018544 21.622639,25.2607778 30.1584453,21.2776721 C38.6942516,17.2945665 33.8123594,0 46.072165,0 Z" id="Leaf" fill="url(#linearGradient-3)"></path>
<path d="M40.5834001,152.739165 C40.0945197,152.850409 39.6118167,152.52687 39.5052526,152.016521 C39.3986886,151.506172 39.7086172,151.002272 40.1974975,150.891028 C51.9385733,148.219371 57.6848923,141.775703 57.6848923,131.405944 C57.6848923,130.883611 58.0905141,130.460177 58.5908738,130.460177 C59.0912336,130.460177 59.4968553,130.883611 59.4968553,131.405944 C59.4968553,142.726431 53.1095577,149.888865 40.5834001,152.739165 Z" id="Leaves-base" fill="#D2DEF8"></path>
<path d="M46.6288389,114.245141 C46.1500847,114.407143 45.635362,114.135919 45.4791735,113.639346 C45.3229849,113.142773 45.5844761,112.608892 46.0632303,112.44689 C53.8200916,109.822107 57.6732035,103.396861 57.6732035,92.9369146 C57.6732035,92.4145835 58.0814419,91.9911504 58.5850294,91.9911504 C59.088617,91.9911504 59.4968553,92.4145835 59.4968553,92.9369146 C59.4968553,104.16716 55.1906374,111.347982 46.6288389,114.245141 Z" id="Leaves-base" fill="#D2DEF8" transform="translate(52.465409, 103.141593) rotate(25.000000) translate(-52.465409, -103.141593) "></path>
<path d="M53.8220964,56.2780806 C53.495225,56.3874335 53.1437958,56.2043546 53.0371574,55.8691625 C52.9305191,55.5339703 53.1090533,55.1735953 53.4359247,55.0642424 C57.3791728,53.7450519 59.3335103,50.5230655 59.3335103,45.2401704 C59.3335103,44.8875916 59.6122368,44.6017699 59.9560634,44.6017699 C60.2998899,44.6017699 60.5786164,44.8875916 60.5786164,45.2401704 C60.5786164,51.0430256 58.3149187,54.7750333 53.8220964,56.2780806 Z" id="Leaves-base" fill="#D2DEF8" transform="translate(56.792453, 50.455752) rotate(25.000000) translate(-56.792453, -50.455752) "></path>
<path d="M41.9227253,49.5878151 C41.5958539,49.697168 41.2444247,49.5140892 41.1377864,49.178897 C41.031148,48.8437048 41.2096822,48.4833298 41.5365536,48.3739769 C45.4798017,47.0547864 47.4341393,43.8328 47.4341393,38.5499049 C47.4341393,38.1973261 47.7128658,37.9115044 48.0566923,37.9115044 C48.4005188,37.9115044 48.6792453,38.1973261 48.6792453,38.5499049 C48.6792453,44.3527601 46.4155477,48.0847678 41.9227253,49.5878151 Z" id="Leaves-base" fill="#D2DEF8" transform="translate(44.893082, 43.765487) scale(-1, 1) rotate(25.000000) translate(-44.893082, -43.765487) "></path>
<path d="M29.3125372,101.422171 C28.8370387,101.58404 28.3258163,101.313038 28.1706899,100.816871 C28.0155635,100.320704 28.2752764,99.7872601 28.7507749,99.6253908 C35.7974679,97.2265538 39.2956679,91.3580049 39.2956679,81.7856983 C39.2956679,81.2637945 39.7011301,80.840708 40.2012931,80.840708 C40.701456,80.840708 41.1069182,81.2637945 41.1069182,81.7856983 C41.1069182,92.1276742 37.1586935,98.7511804 29.3125372,101.422171 Z" id="Leaves-base" fill="#D2DEF8" transform="translate(34.616352, 91.154867) scale(-1, 1) rotate(25.000000) translate(-34.616352, -91.154867) "></path>
<path d="M20.6584492,145.466419 C20.1829507,145.628288 19.6717282,145.357286 19.5166019,144.861119 C19.3614755,144.364952 19.6211884,143.831508 20.0966869,143.669639 C27.1433799,141.270802 30.6415799,135.402253 30.6415799,125.829946 C30.6415799,125.308042 31.0470421,124.884956 31.547205,124.884956 C32.047368,124.884956 32.4528302,125.308042 32.4528302,125.829946 C32.4528302,136.171922 28.5046055,142.795428 20.6584492,145.466419 Z" id="Leaves-base" fill="#D2DEF8" transform="translate(25.962264, 135.199115) scale(-1, 1) rotate(25.000000) translate(-25.962264, -135.199115) "></path>
<path d="M41.3408142,187.747348 C41.3408142,188.439169 40.7932005,189 40.1176848,189 C39.4421691,189 37.9772083,188.439169 37.9772083,187.747348 C38.9538488,183.539321 39.4464514,177.703648 39.455016,170.240329 C39.4678629,159.04535 32.9552455,140.405815 34.2444066,128.040514 C35.5335678,115.675214 48.1646748,92.1668575 51.3877682,73.4600089 C54.0102883,58.238891 49.1449408,44.5687558 47.4876846,35.5079422 C45.8304285,26.4471286 46.6571026,15.6106195 46.8774041,15.6106195 C47.1409778,15.6106195 46.349816,26.7276269 48.1646748,35.5079422 C49.9795335,44.2882575 54.102927,55.8715389 53.4845814,68.8716694 C52.3335121,93.0718088 37.4262172,114.104262 37.4262172,129.919492 C37.4262172,145.734722 42.6267255,155.632977 43.4077148,169.614003 C43.9283744,178.934687 43.2394075,184.979135 41.3408142,187.747348 Z" id="Leaves-base" fill="#D2DEF8"></path>
</g>
<g id="vase" transform="translate(65.000000, 216.000000)">
<polygon id="Vase-base" fill="url(#linearGradient-4)" points="1.44670894 1.49895178 73.7821558 1.49895178 57.7076121 49.4654088 17.5212527 49.4654088"></polygon>
<rect id="Vase-base" fill="url(#linearGradient-5)" x="0" y="0" width="73.7821558" height="14.9895178"></rect>
</g>
</g>
<g id="Artwork" transform="translate(139.000000, 0.000000)">
<g id="people">
<g id="woman" transform="translate(0.000000, 41.649449)">
<g id="waist" transform="translate(147.817785, 157.469151)">
<mask id="mask-8" fill="white">
<use xlink:href="#path-7"></use>
</mask>
<use id="skin" fill="url(#linearGradient-6)" xlink:href="#path-7"></use>
<path d="M4.07857119,4.98444373 C6.31265053,7.36461259 37.8281569,19.7074021 54.2271643,14.7997493 C65.1598359,11.5279808 65.1598359,8.25621225 54.2271643,4.98444373 C19.3053827,3.3976645 2.58918497,3.3976645 4.07857119,4.98444373 Z" id="shadow" fill="url(#linearGradient-9)" style="mix-blend-mode: multiply;" opacity="0.5" mask="url(#mask-8)"></path>
</g>
<path d="M148.218609,171.064765 C153.684278,178.900938 182.007823,182.8077 201.466779,175.252706 C216.761766,199.202326 209.522932,224.349188 201.132496,302.474584 C202.273872,331.671886 199.991018,358.314097 198.849539,394.428307 C198.601127,394.787466 199.416327,396.051708 198.849539,398.350551 C198.217708,400.913201 196.115041,404.641288 194,407.350551 C192.791412,408.898692 191.147482,410.766884 189.269205,412.525047 C185.576178,415.981909 180.977195,419.013416 177,418.350551 C172.549732,417.608839 176,408.350551 179,405.350551 C182,402.350551 187.55426,396.477156 186.638817,396.140089 C183.633061,368.491216 178.61727,363.083842 174.509599,306.145238 C172.381181,286.712325 170.300694,227.2017 170.300694,227.2017 C170.300694,227.2017 155.115206,255.603739 140.090042,296.709846 C150.501463,318.545935 144.487576,346.298677 154.553041,382.033558 C153.360919,383.966148 157.225813,389.461365 156,390.350551 C155.509191,390.706575 153.704277,392.185158 151,394.428307 C148.385604,396.596901 144.947286,401.505497 140.090042,403.350551 C136.124574,404.856858 130,406.350551 127,405.350551 C124,404.350551 129.93465,397.831593 132,396.140089 C137.448644,391.677695 143.469745,387.344269 142.372999,387.011271 C136.215626,369.596256 123.566493,338.577584 115.112114,300.872391 C115.112114,285.463607 117.285572,244.805464 148.218609,171.064765 Z" id="trouser" fill="url(#linearGradient-10)"></path>
<path d="M164.5263,88.6193981 C167.750568,79.8108796 175.611794,68.8688686 174.624699,60.8291692 C173.637555,52.7894699 198.608055,39.6567663 197.721088,45.2668855 C196.834121,50.8770048 195.182696,82.4616651 201.945851,85.5369417 C208.709154,88.6122777 161.30208,97.4279759 164.5263,88.6193981 Z" id="neck" fill="url(#linearGradient-11)"></path>
<path d="M175.747669,6.75763116 C168.096735,10.7841191 158.997592,14.458951 161.3107,33.6826788 C163.623851,52.9064067 163.229658,57.818977 171.704589,65.1686408 C177.409803,65.1686408 184.879083,67.4732292 190.509431,59.9790446 C191.431976,58.7510523 193.692296,48.0523123 194.797711,47.7344334 C196.178601,47.3373185 197.577968,46.5317405 198.458049,44.2806882 C200.851834,38.1578819 199.660667,31.9315414 198.458049,29.3564022 C196.490901,25.1443403 183.398647,2.73127675 175.747669,6.75763116 Z" id="face" fill="#FABFA8"></path>
<path d="M174.504075,8.85259162 C168.561037,11.0037343 159.280453,15.3060198 161.998814,34.3575277 C164.717231,53.4091293 168.39769,60.3115932 174.504075,64.1644686 C180.610432,68.0172503 166.800579,82.2783253 165.877157,88.2598869 C164.95368,94.2414484 157.33257,78.7255246 157.445439,72.2931494 C157.558252,65.8607742 157.497399,59.5861557 157.445439,47.9106625 C157.393451,36.2351693 154.352312,19.2594814 164.321771,10.8393343 C174.291173,2.41900002 180.447113,6.7014489 174.504075,8.85259162 Z" id="hair" fill="url(#linearGradient-12)"></path>
<path d="M159.803011,10.8402677 C161.818277,12.4413353 168.572884,15.2973972 172.769022,22.4273379 C177.272971,30.0804043 182.609005,34.1948632 193.47576,32.4798011 C199.171591,31.5807966 192.97182,50.2534885 187.518874,58.7272054 C182.066019,67.2008304 177.890757,81.4553841 185.876074,94.1117178 C201.311569,94.1117178 208.548122,86.1137284 208.548122,86.1137284 C208.548122,86.1137284 212.309715,59.822599 212.309715,37.6556666 C212.309715,15.488826 195.81322,5.09497373 187.518874,1.14108081 C179.224574,-2.81281211 155.99237,7.81256892 159.803011,10.8402677 Z" id="hair" fill="url(#linearGradient-13)"></path>
<g id="shirt">
<use fill="url(#linearGradient-14)" fill-rule="evenodd" xlink:href="#path-15"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-16)" xlink:href="#path-15"></use>
</g>
<path d="M110.149878,98.1329254 C113.932298,98.1329254 116.998557,94.2773919 116.998557,82.6576953 C116.998557,71.0379605 113.932298,61.618335 110.149878,61.618335 C106.367444,61.618335 103.301185,71.0379605 103.301185,82.6576953 C103.301185,94.2773919 106.367444,98.1329254 110.149878,98.1329254 Z" id="inside-sleeve" fill="url(#linearGradient-17)"></path>
<g id="hand" transform="translate(0.000000, 26.244859)">
<g id="arm" transform="translate(33.672777, 14.263510)">
<mask id="mask-20" fill="white">
<use xlink:href="#path-19"></use>
</mask>
<use id="Path-38" fill="url(#linearGradient-18)" xlink:href="#path-19"></use>
</g>
<path d="M21.3396056,7.23827379 C21.3396056,7.23827379 14.8149331,8.08916805 13.336479,8.99064243 C11.8579952,9.89214989 7.89771364,14.542344 7.35630333,15.2818363 C6.81492268,16.0213285 3.30093437,19.8755269 3.8592313,20.8516554 C4.41758759,21.8277673 6.71686756,21.8659878 7.56588726,20.1686004 C8.4148476,18.4712296 9.06790544,18.492739 10.0163158,17.1588269 C11.3393477,16.8771368 14.9762908,14.1876545 16.0188091,14.078089 C17.0613274,13.9685401 25.8742397,17.2389079 25.8742397,17.2389079 C25.8742397,17.2389079 30.8196726,15.8210101 28.9453774,11.7763213 C27.0710524,7.73158299 21.3396056,7.23827379 21.3396056,7.23827379 Z" id="fingers" fill="#FABFA8"></path>
<path d="M22.0701056,18.1918063 C19.9026974,18.4195272 14.4326883,18.6508425 13.0021916,18.3082855 C11.5716231,17.9656874 8.33924366,18.1389788 8.57399827,20.3718229 C8.80871694,22.604667 11.864554,22.8065082 13.4968699,23.0134638 C15.1291857,23.2204604 17.6684835,23.6145304 19.885187,24.4773928 C22.1018545,25.3402964 28.0943715,25.9604852 30.9564075,25.3549821 C33.8185154,24.7494995 37.3887344,24.9872643 38.4999806,25.349991 C39.6111908,25.7127383 42.4742695,17.6851595 40.8689923,14.8048708 C36.6023118,13.7715719 27.0504704,7.16914369 25.8887065,7.03610965 C25.1898719,6.95606739 20.9634978,11.3716188 23.3627842,14.1574466 C25.326863,16.4379012 23.3608426,18.0561843 22.0701056,18.1918063 Z" fill="#FABFA8"></path>
<path d="M5.13796701,6.01515726 C1.687239,5.08043864 -0.70306362,3.19712585 0.430433976,1.10084173 C1.56393157,-0.995387609 3.01736279,0.863862071 4.65900656,1.45943322 C6.30071198,2.05498612 13.5804731,3.53190983 15.583718,3.73666537 C16.5385569,3.83421408 18.8376349,4.54161115 21.0749512,5.38321758 C23.5316075,6.30736524 25.4566642,5.96140779 25.9029255,6.57967276 C26.7555682,7.76097438 28.1588566,15.8070729 24.0766134,14.0352574 C19.9944318,12.2633871 19.5450577,10.8258444 16.8469026,9.01114251 C14.1488399,7.19651366 8.58878747,6.94989415 5.13796701,6.01515726 Z" id="finger" fill="#FABFA8"></path>
</g>
</g>
<g id="man" transform="translate(158.605560, 0.000000)">
<g id="neck" transform="translate(107.923034, 48.495934)">
<mask id="mask-22" fill="white">
<use xlink:href="#path-21"></use>
</mask>
<use id="Path-23" fill="#F2A384" xlink:href="#path-21"></use>
<path d="M5.71319972,23.5053862 C6.82445466,23.9466449 7.89527782,24.357985 8.92693059,24.7405796 C28.4789265,31.9915559 33.9616085,28.9176977 33.9616085,23.5053862 C33.9616085,19.7067931 31.6708423,8.89007885 27.0893099,-8.94475644 C-1.9426833,6.81931148 -9.06805337,17.6360257 5.71319972,23.5053862 Z" id="Path-9" fill="url(#linearGradient-23)" style="mix-blend-mode: multiply;" opacity="0.153292411" mask="url(#mask-22)"></path>
</g>
<path d="M102.51058,7.62147098 C99.7938802,14.5436711 96.8957955,18.0457662 98.2542181,26.7434122 C99.6125437,35.4409845 98.3040396,34.7104338 97.4786627,39.4292057 C96.6531888,44.1478305 95.6044645,48.0410344 97.9056136,57.0983622 C100.206763,66.1558371 101.63349,72.487694 109.044611,72.4584749 C116.455781,72.4293294 126.003355,70.8213965 129.148315,65.2411399 C130.41801,62.9882527 130.930778,61.7482448 131.826157,58.217593 C132.455838,55.7347067 132.941973,54.029107 132.941973,50.4746825 C134.550473,54.3965903 137.933868,52.3034881 138.185013,52.0988073 C140.175057,50.4768905 141.961934,46.7590746 142.133811,43.2509444 C142.47834,36.2203319 140.160406,19.9378676 132.110532,17.2469885 C124.060658,14.556183 105.227377,0.699197264 102.51058,7.62147098 Z" id="face" fill="#FABFA8"></path>
<g id="trouser" transform="translate(114.113731, 464.516974)">
<mask id="mask-26" fill="white">
<use xlink:href="#path-25"></use>
</mask>
<use id="Path-17" fill="url(#linearGradient-24)" xlink:href="#path-25"></use>
<mask id="mask-29" fill="white">
<use xlink:href="#path-28"></use>
</mask>
<use id="Path-17" fill="url(#linearGradient-27)" xlink:href="#path-28"></use>
<mask id="mask-32" fill="white">
<use xlink:href="#path-31"></use>
</mask>
<use id="Path-42" fill="url(#linearGradient-30)" xlink:href="#path-31"></use>
<path d="M-10.9068573,-30.3242033 C-19.0866922,-65.0765521 -10.9068573,-171.593272 3.49572574,-185.72134 C9.81970258,-177.859534 -2.72702247,4.42814541 -10.9068573,-30.3242033 Z" id="Path-12" fill="url(#linearGradient-33)" style="mix-blend-mode: multiply;" mask="url(#mask-32)"></path>
<path d="M-25.7537216,-229.005614 C-24.4603497,-228.567455 -19.2838005,-221.941095 -17.8834721,-221.483112 C-0.813188114,-215.900208 19.9947002,-215.504467 42.8764708,-219.771491 C59.3823596,-222.849532 61.2916439,-229.788008 48.6043235,-240.586919 C-12.3409294,-236.718988 -37.1269445,-232.858553 -25.7537216,-229.005614 Z" id="Path-13" fill="url(#linearGradient-34)" style="mix-blend-mode: multiply;" mask="url(#mask-32)"></path>
</g>
<g id="arm" transform="translate(57.128505, 204.253464)">
<mask id="mask-37" fill="white">
<use xlink:href="#path-36"></use>
</mask>
<use id="Path-43" fill="url(#linearGradient-35)" xlink:href="#path-36"></use>
<path d="M24.0133413,46.3332698 C17.9480598,38.5917856 9.5601439,33.0850437 9.5601439,21.9563088 C9.5601439,14.5371523 11.9690101,8.77273561 16.7867426,4.66305884 C25.647996,37.6041889 28.0568623,51.4942592 24.0133413,46.3332698 Z" id="Path-11" fill="url(#linearGradient-23)" style="mix-blend-mode: multiply;" opacity="0.300000012" mask="url(#mask-37)"></path>
</g>
<g id="shirt" transform="translate(65.118656, 79.875656)">
<mask id="mask-42" fill="white">
<use xlink:href="#path-41"></use>
</mask>
<g id="Path-26">
<use fill="url(#linearGradient-38)" xlink:href="#path-41"></use>
<use fill="url(#linearGradient-39)" xlink:href="#path-41"></use>
<use fill="url(#linearGradient-40)" xlink:href="#path-41"></use>
</g>
<path d="M40.7057745,89.1743241 L41.9468445,50.7135754 L45.9256897,50.4951428 C46.4957568,54.48427 44.0476956,71.790125 40.7733176,88.8116231 C40.7505054,88.9302075 40.7279914,89.0511224 40.7057742,89.1743241 Z M38.6241515,157.531192 C35.4593506,148.039833 34.0832718,102.414 36.8453366,88.0560006 C39.9970548,71.6721363 42.4417046,54.3903975 41.9659184,51.0610147 L45.9447636,50.8425822 L42.1599127,168.135075 L38.6241515,157.531192 Z" id="Shape-1" stroke="#B4AAD7" stroke-width="4" opacity="0.2" mask="url(#mask-42)"></path>
<path d="M96.675807,158.817752 C80.1087914,124.458943 87.4934082,74.7211719 95.8110265,66.9178458 C104.128645,59.1145198 122.65067,141.634131 116.585389,148.937099 C110.520107,156.240068 113.242823,193.176561 96.675807,158.817752 Z" id="Path-10" fill-opacity="0.2" fill="url(#linearGradient-43)" style="mix-blend-mode: multiply;" mask="url(#mask-42)"></path>
<path d="M38.645567,21.3052291 C42.4652238,17.6062919 48.8495507,12.8319998 48.8495507,12.8319998 C48.8495507,12.8319998 48.8495507,10.0261539 48.8495507,4.41446209 L41.3277338,10.4939636 C36.9931847,20.1674321 36.0991291,23.7711873 38.645567,21.3052291 Z" id="Path-14" fill="url(#linearGradient-44)" style="mix-blend-mode: multiply;" mask="url(#mask-42)"></path>
<path d="M54.4154521,17.7855177 C55.7970517,18.6624078 58.5464077,19.1707206 62.6635204,19.3104559 C59.1852118,8.03846876 56.4358558,2.85104598 54.4154521,3.74818761 C51.3848467,5.09390006 52.3430528,16.4701825 54.4154521,17.7855177 Z" id="Path-15" fill="url(#linearGradient-44)" style="mix-blend-mode: multiply;" mask="url(#mask-42)"></path>
</g>
<path d="M123.835504,134.647515 C128.290607,134.647515 144.770857,137.349135 151.2981,134.647515 C151.2981,148.717581 149.949025,160.775348 149.258323,166.477503 C143.963572,171.539624 135.720496,172.303192 135.720496,172.303192 L122.677218,165.07961 C122.677218,165.07961 121.297036,154.348992 123.835504,134.647515 Z" id="pocket" fill="#FFFFFF"></path>
<path d="M129.594177,105.549956 C125.505624,103.410474 124.705086,89.7538937 121.050279,87.8195974 C117.395472,85.8853011 132.397883,83.1598593 134.269694,69.6058904 C136.149311,69.6058904 139.484965,78.4008232 142.737197,83.3853038 C142.356161,90.9942714 131.411562,96.7101756 129.594177,105.549956 Z" id="colar" fill="#FFFFFF"></path>
<path d="M107.873338,72.4586061 C107.873338,75.9042422 106.03479,85.5632414 113.059502,87.7464096 C110.379277,88.1820572 108.196525,89.7324197 107.066889,92.0811109 C105.557221,95.2199572 103.776003,101.521608 101.625226,103.838333 C101.625226,98.4713802 100.385568,87.866796 101.625226,83.8012928 C102.864926,79.7358227 106.858746,74.6466719 107.873338,72.4586061 Z" id="colar" fill="#FFFFFF"></path>
<g id="sleeve">
<use fill="url(#linearGradient-38)" fill-rule="evenodd" xlink:href="#path-45"></use>
<use fill="url(#linearGradient-39)" fill-rule="evenodd" xlink:href="#path-45"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-46)" xlink:href="#path-45"></use>
</g>
<path d="M55.4711339,206.716542 C55.4711339,193.78453 60.4756978,137.748599 65.1530545,114.726263 C65.8260682,111.413633 66.9718807,110.677569 67.5872708,108.791811 C72.3840178,126.95549 73.8594467,206.196216 72.4873181,210.948548 C71.1151096,215.700881 63.0899822,210.948548 55.4711339,206.716542 Z" id="sleeve" fill="url(#linearGradient-38)"></path>
<g id="map" transform="translate(0.295221, 132.987626)">
<mask id="mask-49" fill="white">
<use xlink:href="#path-48"></use>
</mask>
<use id="base" fill="url(#linearGradient-47)" xlink:href="#path-48"></use>
<path d="M39.98968,8.21110647 L69.8614892,4.63241988 C69.8614892,13.969461 69.8614892,29.9147755 69.8614892,52.4683634 C69.8614892,75.0219513 69.8614892,95.8509937 69.8614892,114.955491 L36.3450681,114.955491 C35.8018956,93.1602628 35.8018956,74.3083574 36.3450681,58.3997742 C36.8882406,42.4911911 38.1031112,25.7616352 39.98968,8.21110647 Z" id="bend" fill="url(#linearGradient-50)" opacity="0.269084821" style="mix-blend-mode: multiply;" mask="url(#mask-49)"></path>
<path d="M69.8615271,8.21110647 L98.7697295,4.63241988 C98.7697295,13.969461 98.7697295,29.9147755 98.7697295,52.4683634 C98.7697295,75.0219513 98.7697295,95.8509937 98.7697295,114.955491 L70.5033525,114.955491 C70.0754689,97.8728753 69.8615271,81.0622163 69.8615271,64.5235136 C69.8615271,47.9848108 69.8615271,29.2140085 69.8615271,8.21110647 Z" id="bend" fill="url(#linearGradient-50)" opacity="0.269084821" style="mix-blend-mode: multiply;" mask="url(#mask-49)"></path>
</g>
<g id="Combined-Shape">
<use fill="#A1B8E3" xlink:href="#path-52"></use>
<use fill="url(#linearGradient-51)" xlink:href="#path-52"></use>
</g>
<path d="M102.337366,17.9969405 C99.5863132,18.9504333 98.0956148,27.3312302 98.5627749,33.6618496 C97.0244472,30.085376 95.4539152,15.5660732 100.66786,7.74545112 C105.881865,-0.0752063538 105.088443,17.0434477 102.337366,17.9969405 Z" id="hair" fill="#311793"></path>
<path d="M95.3670828,2.28216161 C85.1042384,8.93387993 99.4987896,19.7127962 110.017993,21.1881567 C120.537147,22.6634737 121.672663,23.0549808 128.136153,21.1881567 C129.580958,25.9022855 125.088894,30.3961402 128.136153,33.8493291 C130.577893,36.6050119 131.32393,37.6328861 131.469414,40.7526284 C131.614848,43.8723273 132.788448,44.5021469 132.788448,44.5021469 C132.788448,44.5021469 132.927576,35.8226481 135.738387,35.5571049 C138.549248,35.2915617 140.718938,37.0763467 142.277648,40.7526284 C142.726412,41.8108987 142.131817,39.6401134 142.277648,37.6118993 C142.419705,35.6359353 143.307949,33.8521476 143.307949,31.0730065 C143.307949,26.0489761 144.449473,19.9689141 139.883636,8.55810605 C135.317798,-2.85270202 102.628399,0.473181107 95.3670828,2.28216161 Z" id="hair" fill="url(#linearGradient-53)"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 54 KiB

View File

@@ -0,0 +1,263 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="1025px" height="812px" viewBox="0 0 1025 812" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>fullstack-web-development-agency</title>
<desc>Created with Sketch.</desc>
<defs>
<linearGradient x1="50%" y1="19.6859798%" x2="-33.8124944%" y2="294.476483%" id="linearGradient-1">
<stop stop-color="#F7FAFF" offset="0%"></stop>
<stop stop-color="#6B9AD9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="157.419759%" y1="-39.6921362%" x2="118.835577%" y2="115.937591%" id="linearGradient-2">
<stop stop-color="#E5EDFF" offset="0%"></stop>
<stop stop-color="#6B9AD9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="83.2804773%" y1="11.2557844%" x2="111.028592%" y2="953.538449%" id="linearGradient-3">
<stop stop-color="#5763AB" offset="0%"></stop>
<stop stop-color="#283F6F" offset="100%"></stop>
</linearGradient>
<linearGradient x1="83.2804773%" y1="11.2557844%" x2="59.8890922%" y2="97.3099621%" id="linearGradient-4">
<stop stop-color="#3A4482" offset="0%"></stop>
<stop stop-color="#5763AB" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="-142.327103%" x2="50%" y2="170.164832%" id="linearGradient-5">
<stop stop-color="#95B7E5" offset="0%"></stop>
<stop stop-color="#476DB1" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="32.1187137%" x2="67.2859088%" y2="115.977968%" id="linearGradient-6">
<stop stop-color="#95EEF3" offset="0%"></stop>
<stop stop-color="#3BC2CA" offset="100%"></stop>
</linearGradient>
<path d="M36,45.2830189 L41.4,45.2830189 L41.4,25.3584906 C41.4,19.3563016 46.2353247,14.490566 52.2,14.490566 C58.1646753,14.490566 63,19.3563016 63,25.3584906 L63,56.1509434 C63,62.1531324 58.1646753,67.0188679 52.2,67.0188679 C51.586718,67.0188679 50.9853753,66.9674286 50.4,66.8686036 C49.8146247,66.9674286 49.213282,67.0188679 48.6,67.0188679 L36,67.0188679 L36,96 L0,96 L0,18.1132075 C0,8.10955925 8.0588745,1.83764038e-15 18,0 C27.9411255,-1.83764038e-15 36,8.10955925 36,18.1132075 L36,45.2830189 Z" id="path-7"></path>
<linearGradient x1="157.419759%" y1="-39.6921362%" x2="118.835577%" y2="115.937591%" id="linearGradient-9">
<stop stop-color="#E5EDFF" offset="0%"></stop>
<stop stop-color="#5763AB" offset="100%"></stop>
</linearGradient>
<linearGradient x1="149.379226%" y1="-86.5655478%" x2="157.419759%" y2="219.657969%" id="linearGradient-10">
<stop stop-color="#E5EDFF" offset="0%"></stop>
<stop stop-color="#6B9AD9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="83.2804773%" y1="11.2557844%" x2="59.8890922%" y2="97.3099621%" id="linearGradient-11">
<stop stop-color="#476DB1" offset="0%"></stop>
<stop stop-color="#283F6F" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="19.6859798%" x2="-33.8592349%" y2="202.698743%" id="linearGradient-12">
<stop stop-color="#EEF3FF" offset="0%"></stop>
<stop stop-color="#6B9AD9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="27.7727484%" x2="55.2277926%" y2="103.623291%" id="linearGradient-13">
<stop stop-color="#1542AB" offset="0%"></stop>
<stop stop-color="#2B68EE" offset="100%"></stop>
</linearGradient>
<linearGradient x1="100%" y1="50%" x2="0%" y2="50%" id="linearGradient-14">
<stop stop-color="#2865C6" offset="0%"></stop>
<stop stop-color="#10378A" offset="100%"></stop>
</linearGradient>
<linearGradient x1="60.7312459%" y1="0%" x2="52.0812714%" y2="50%" id="linearGradient-15">
<stop stop-color="#3485F7" offset="0%"></stop>
<stop stop-color="#1A57CF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="60.7312459%" y1="0%" x2="50%" y2="100%" id="linearGradient-16">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#E5EEFF" offset="100%"></stop>
</linearGradient>
<path d="M28.1609243,3.464177 C47.7208461,-7.89549322 70.1073059,20.0748959 75.3589464,31.4234374 C80.610587,42.771979 95.5097948,42.8991429 89.3044799,94.3111968 C85.1676033,128.585899 86.7200632,147.115758 93.9618597,149.900774 C106.978231,148.049645 110.365744,155.88539 104.124399,173.408009 C94.7623812,199.691938 82.4468387,199.379409 58.8854218,202.29867 C35.324005,205.217931 18.200768,197.309514 8.54718709,185.984958 C-1.10639379,174.660402 20.6669201,151.777397 8.54718709,130.153652 C3.86571954,121.801086 0.407758925,70.551811 0.407758925,53.8110469 C0.407758925,37.0702828 8.60100256,14.8238472 28.1609243,3.464177 Z" id="path-17"></path>
<linearGradient x1="85.0973284%" y1="109.304399%" x2="4.85382204%" y2="-47.1761978%" id="linearGradient-19">
<stop stop-color="#032258" offset="0%"></stop>
<stop stop-color="#133E94" offset="100%"></stop>
</linearGradient>
<linearGradient x1="9.3282058%" y1="7.50085029%" x2="83.043842%" y2="46.1713492%" id="linearGradient-20">
<stop stop-color="#F59BA9" offset="0%"></stop>
<stop stop-color="#F25267" offset="100%"></stop>
</linearGradient>
<linearGradient x1="226.49317%" y1="50%" x2="39.965679%" y2="24.9341154%" id="linearGradient-21">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#E5EEFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="13.1828286%" y1="63.0352757%" x2="68.8791203%" y2="57.7365372%" id="linearGradient-22">
<stop stop-color="#925948" offset="0%"></stop>
<stop stop-color="#B06C57" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="-10.8772052%" x2="50%" y2="100%" id="linearGradient-23">
<stop stop-color="#FFE579" offset="0%"></stop>
<stop stop-color="#FEB755" offset="100%"></stop>
</linearGradient>
</defs>
<g id="Illustration" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="CRM-1" transform="translate(-114.000000, -113.000000)">
<g id="fullstack-web-development-agency" transform="translate(114.000000, 113.000000)">
<g id="Window" transform="translate(34.000000, 0.000000)" fill-rule="nonzero">
<path d="M20,0 L733,0 C744.045695,-2.02906125e-15 753,8.954305 753,20 L753,535 C753,537.209139 751.209139,539 749,539 L4,539 C1.790861,539 2.705415e-16,537.209139 0,535 L0,20 C-1.3527075e-15,8.954305 8.954305,2.02906125e-15 20,0 Z" id="Window-base" fill="url(#linearGradient-1)"></path>
<g id="Chart-bar" transform="translate(395.000000, 137.000000)">
<path d="M4,50 L36,50 C38.209139,50 40,51.790861 40,54 L40,106 C40,108.209139 38.209139,110 36,110 L4,110 C1.790861,110 0,108.209139 0,106 L0,54 C0,51.790861 1.790861,50 4,50 Z" id="Chart-bar-base" stroke="#8AAFE1" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M104,30 L136,30 C138.209139,30 140,31.790861 140,34 L140,106 C140,108.209139 138.209139,110 136,110 L104,110 C101.790861,110 100,108.209139 100,106 L100,34 C100,31.790861 101.790861,30 104,30 Z" id="Chart-bar-base" stroke="#8AAFE1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="10,10"></path>
<path d="M154,80 L186,80 C188.209139,80 190,81.790861 190,84 L190,106 C190,108.209139 188.209139,110 186,110 L154,110 C151.790861,110 150,108.209139 150,106 L150,84 C150,81.790861 151.790861,80 154,80 Z" id="Chart-bar-base" fill="url(#linearGradient-2)"></path>
<path d="M205,50 L237,50 C239.209139,50 241,51.790861 241,54 L241,106 C241,108.209139 239.209139,110 237,110 L205,110 C202.790861,110 201,108.209139 201,106 L201,54 C201,51.790861 202.790861,50 205,50 Z" id="Chart-bar-base" fill="url(#linearGradient-2)"></path>
<path d="M255,20 L287,20 C289.209139,20 291,21.790861 291,24 L291,106 C291,108.209139 289.209139,110 287,110 L255,110 C252.790861,110 251,108.209139 251,106 L251,24 C251,21.790861 252.790861,20 255,20 Z" id="Chart-bar-base" fill="url(#linearGradient-2)"></path>
<path d="M54,0 L86,0 C88.209139,0 90,1.790861 90,4 L90,106 C90,108.209139 88.209139,110 86,110 L54,110 C51.790861,110 50,108.209139 50,106 L50,4 C50,1.790861 51.790861,0 54,0 Z" id="Chart-bar-base" stroke="#8AAFE1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="10,10"></path>
</g>
<g id="UI" transform="translate(50.000000, 147.000000)">
<path d="M215,0 L265,0 C267.209139,-4.05812251e-16 269,1.790861 269,4 L269,54 C269,56.209139 267.209139,58 265,58 L215,58 C212.790861,58 211,56.209139 211,54 L211,4 C211,1.790861 212.790861,4.05812251e-16 215,0 Z" id="UI-base" fill="url(#linearGradient-2)"></path>
<path d="M5,0 L145,0 C147.209139,-1.61026889e-14 149,1.790861 149,4 L149,54 C149,56.209139 147.209139,58 145,58 L5,58 C2.790861,58 1,56.209139 1,54 L1,4 C1,1.790861 2.790861,4.05812251e-16 5,0 Z" id="UI-base" stroke="#8AAFE1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="10,10"></path>
<path d="M5,80 L175,80 C177.209139,80 179,81.790861 179,84 L179,134 C179,136.209139 177.209139,138 175,138 L5,138 C2.790861,138 1,136.209139 1,134 L1,84 C1,81.790861 2.790861,80 5,80 Z" id="UI-base" fill="url(#linearGradient-2)"></path>
<path d="M215,88 L265,88 C267.209139,88 269,89.790861 269,92 L269,142 C269,144.209139 267.209139,146 265,146 L215,146 C212.790861,146 211,144.209139 211,142 L211,92 C211,89.790861 212.790861,88 215,88 Z" id="UI-base" stroke="#8AAFE1" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M215,176 L265,176 C267.209139,176 269,177.790861 269,180 L269,230 C269,232.209139 267.209139,234 265,234 L215,234 C212.790861,234 211,232.209139 211,230 L211,180 C211,177.790861 212.790861,176 215,176 Z" id="UI-base" fill="#E0E5FF"></path>
<path d="M215,264 L265,264 C267.209139,264 269,265.790861 269,268 L269,318 C269,320.209139 267.209139,322 265,322 L215,322 C212.790861,322 211,320.209139 211,318 L211,268 C211,265.790861 212.790861,264 215,264 Z" id="UI-base" stroke="#8AAFE1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="10,10"></path>
<path d="M4,161 L177,161 C179.209139,161 181,162.790861 181,165 L181,340 C181,342.209139 179.209139,344 177,344 L4,344 C1.790861,344 0,342.209139 0,340 L0,165 C0,162.790861 1.790861,161 4,161 Z" id="UI-base" fill="url(#linearGradient-2)"></path>
</g>
<g id="Titlebar">
<path d="M20,7.10542736e-15 L733,0 C744.045695,5.68342263e-14 753,8.954305 753,20 L753,75 C753,77.209139 751.209139,79 749,79 L4,79 C1.790861,79 2.705415e-16,77.209139 0,75 L0,20 C-1.3527075e-15,8.954305 8.954305,2.02906125e-15 20,7.10542736e-15 Z" id="Titlebar-base" fill="url(#linearGradient-3)"></path>
<g id="Titlebar-button" transform="translate(25.000000, 27.000000)" fill="#FFFFFF">
<circle cx="12.5" cy="12.5" r="12.5"></circle>
<circle cx="51.5" cy="12.5" r="12.5"></circle>
<circle cx="90.5" cy="12.5" r="12.5"></circle>
</g>
</g>
<g id="Chart" transform="translate(413.000000, 304.000000)" stroke="#8AAFE1" stroke-linecap="round" stroke-linejoin="round" stroke-width="4">
<path d="M0,1 L269.572187,1" id="Path-52"></path>
<path d="M0,33 L269.572187,33" id="Path-52-Copy"></path>
<path d="M0,65 L269.572187,65" id="Path-52-Copy-2"></path>
<path d="M0,97 L269.572187,97" id="Path-52-Copy-3"></path>
<path d="M0,129 L269.572187,129" id="Path-52-Copy-4"></path>
<path d="M0,161 L269.572187,161" id="Path-52-Copy-5"></path>
</g>
</g>
<ellipse id="Shadow" fill-opacity="0.35" fill="#E2EBFC" opacity="0.806164985" cx="174" cy="778.764516" rx="174" ry="23.4612065"></ellipse>
<ellipse id="Shadow" fill-opacity="0.35" fill="#E2EBFC" opacity="0.806164985" cx="579" cy="768.764516" rx="115" ry="15.5059698"></ellipse>
<ellipse id="Shadow" fill-opacity="0.35" fill="#E2EBFC" opacity="0.806164985" cx="895" cy="778.764516" rx="122" ry="32.449403"></ellipse>
<g id="Table" transform="translate(322.000000, 488.000000)" fill-rule="nonzero">
<polygon id="Table-base" fill="url(#linearGradient-4)" points="0 0 491 0 491 20 0 20"></polygon>
<path d="M23,243.942195 L46.5530493,22 L23,22 L23,243.942195 Z M51,18 L25.3165896,260.016752 C25.1365831,261.712967 23.7057401,263 22,263 C20.3431458,263 19,261.656854 19,260 L19,18 L51,18 Z" id="Table-base" fill="url(#linearGradient-5)"></path>
<path d="M457,243.942195 L457,22 L433.446951,22 L457,243.942195 Z M429,18 L461,18 L461,260 C461,261.656854 459.656854,263 458,263 C456.29426,263 454.863417,261.712967 454.68341,260.016752 L429,18 Z" id="Table-base" fill="url(#linearGradient-5)"></path>
</g>
<g id="Cactus" transform="translate(716.000000, 347.000000)">
<g transform="translate(27.000000, 0.000000)">
<mask id="mask-8" fill="white">
<use xlink:href="#path-7"></use>
</mask>
<use id="Mask" fill="url(#linearGradient-6)" fill-rule="nonzero" xlink:href="#path-7"></use>
<path d="M0,-5.43396226 L1.8,-5.43396226 L1.8,108.288788 L0,108.288788 L0,-5.43396226 Z M5.4,-5.43396226 L7.2,-5.43396226 L7.2,108.288788 L5.4,108.288788 L5.4,-5.43396226 Z M10.8,-5.43396226 L12.6,-5.43396226 L12.6,108.288788 L10.8,108.288788 L10.8,-5.43396226 Z M16.2,-5.43396226 L18,-5.43396226 L18,108.288788 L16.2,108.288788 L16.2,-5.43396226 Z M21.6,-5.43396226 L23.4,-5.43396226 L23.4,108.288788 L21.6,108.288788 L21.6,-5.43396226 Z M27,-5.43396226 L28.8,-5.43396226 L28.8,108.288788 L27,108.288788 L27,-5.43396226 Z M32.4,-5.43396226 L34.2,-5.43396226 L34.2,108.288788 L32.4,108.288788 L32.4,-5.43396226 Z M37.8,-5.43396226 L39.6,-5.43396226 L39.6,108.288788 L37.8,108.288788 L37.8,-5.43396226 Z M43.2,-5.43396226 L45,-5.43396226 L45,108.288788 L43.2,108.288788 L43.2,-5.43396226 Z M48.6,-5.43396226 L50.4,-5.43396226 L50.4,108.288788 L48.6,108.288788 L48.6,-5.43396226 Z M54,-5.43396226 L55.8,-5.43396226 L55.8,108.288788 L54,108.288788 L54,-5.43396226 Z M59.4,-5.43396226 L61.2,-5.43396226 L61.2,108.288788 L59.4,108.288788 L59.4,-5.43396226 Z" id="Combined-Shape" fill="#42B16D" fill-rule="nonzero" mask="url(#mask-8)"></path>
</g>
<g id="vase" transform="translate(0.000000, 81.000000)" fill-rule="nonzero">
<polygon fill="url(#linearGradient-9)" points="1.80392157 1.81818182 92 1.81818182 71.956427 60 21.8474946 60"></polygon>
<rect fill="url(#linearGradient-10)" x="0" y="0" width="92" height="18.1818182"></rect>
</g>
</g>
<g id="Imac" transform="translate(448.000000, 317.000000)" fill-rule="nonzero">
<path d="M4,0 L245,0 C247.209139,-4.05812251e-16 249,1.790861 249,4 L249,141 C249,143.209139 247.209139,145 245,145 L4,145 C1.790861,145 1.15871992e-15,143.209139 8.8817842e-16,141 L0,4 C-2.705415e-16,1.790861 1.790861,4.05812251e-16 4,0 Z" id="Imac-base" fill="url(#linearGradient-11)"></path>
<polygon id="Imac-base" fill="#B7C8FF" points="98 144 153 144 153 177 98 177"></polygon>
<polygon id="Imac-base" fill="#FFFFFF" points="10 10 239 10 239 135 10 135"></polygon>
</g>
<g id="Girl" transform="translate(29.000000, 353.000000)">
<g id="Note" transform="translate(126.000000, 140.000000)" fill-rule="nonzero">
<path d="M66.9688012,0.868585616 L118.112521,22.2190299 C120.151151,23.0700762 121.113879,25.4126223 120.262833,27.451253 C120.152031,27.7166727 120.012925,27.9693675 119.847928,28.2049536 L58.5213023,115.768515 C57.4430807,117.308025 55.4384506,117.889197 53.703984,117.165127 L2.56026447,95.8146824 C0.521633717,94.9636361 -0.441093715,92.62109 0.409952565,90.5824593 C0.520754602,90.3170396 0.659860632,90.0643447 0.824857327,89.8287587 L62.1514828,2.26519691 C63.2297045,0.725687273 65.2343345,0.144515607 66.9688012,0.868585616 Z" id="Note-base" fill="url(#linearGradient-12)"></path>
<path d="M88.0680087,3.58554622 C90.0345656,1.91166945 93.0350444,1.27501991 95.3647764,2.17860844 C97.7841237,3.11695434 98.6774629,5.40499563 97.6461698,7.58438115 L99.9896716,8.56278155 C102.028277,9.41388913 102.990934,11.7564642 102.139826,13.7950693 C101.939489,14.274924 101.647512,14.711113 101.280236,15.0792219 L96.1120956,20.2590924 C94.9544652,21.4193503 93.2061561,21.7560006 91.7004451,21.1085895 L78.1825585,15.2962989 C76.1530688,14.4236784 75.2152409,12.0710533 76.0878614,10.0415635 C76.2537328,9.65578951 76.4793155,9.29854051 76.7563217,8.98294189 L81.3611745,3.73654122 C82.4938971,2.44600782 84.3239201,2.0224077 85.9084971,2.68396078 L88.0680087,3.58554622 Z M91.2467385,7.59566584 C92.4018624,8.04270675 93.951179,7.58653189 94.7072338,6.57677078 C95.4632886,5.56700966 95.1397792,4.38603829 93.9846552,3.93899738 C92.8295312,3.49195647 91.2802147,3.94813133 90.5241599,4.95789244 C89.768105,5.96765355 90.0916145,7.14862493 91.2467385,7.59566584 Z" id="Combined-Shape" fill="url(#linearGradient-2)"></path>
</g>
<g id="Pen" transform="translate(207.454483, 177.928203) scale(-1, 1) rotate(83.000000) translate(-207.454483, -177.928203) translate(203.454483, 158.928203)" fill-rule="nonzero">
<path d="M2.83401313,3.80292127 C4.39919537,3.80292127 5.66802627,5.07175217 5.66802627,6.63693441 L5.66802627,32.800196 L0,32.800196 L0,6.63693441 C-1.91679541e-16,5.07175217 1.2688309,3.80292127 2.83401313,3.80292127 Z" id="Pen-base" fill="url(#linearGradient-5)"></path>
<path d="M6.92758766,5.22901675 C7.27540593,5.22901675 7.55736835,5.51097917 7.55736835,5.85879745 L7.55736835,14.5819044 C7.55736835,14.9297227 7.27540593,15.2116851 6.92758766,15.2116851 C6.57976938,15.2116851 6.29780696,14.9297227 6.29780696,14.5819044 L6.29780696,5.85879745 C6.29780696,5.51097917 6.57976938,5.22901675 6.92758766,5.22901675 Z" id="Pen-base" fill="url(#linearGradient-5)"></path>
<path d="M2.83401313,0 C3.70355882,-1.59732951e-16 4.40846487,0.704906055 4.40846487,1.57445174 L4.40846487,3.65456501 C4.40846487,4.5241107 3.70355882,5.22901675 2.83401313,5.22901675 C1.96446745,5.22901675 1.25956139,4.5241107 1.25956139,3.65456501 L1.25956139,1.57445174 C1.25956139,0.704906055 1.96446745,1.59732951e-16 2.83401313,0 Z" id="Pen-base" fill="#F2F5FF"></path>
<polygon id="Pen-base" fill="#F2F5FF" points="0 32.3248308 5.66802627 32.3248308 3.14890348 37.5538476"></polygon>
</g>
<g id="Foot" transform="translate(0.000000, 269.000000)">
<path d="M212.430545,120.245935 C212.565691,118.819409 220.926755,110.68368 229.922177,120.156891 C238.917598,129.630103 241.309449,133.027255 245.468942,136.576022 C248.241937,138.941867 251.151159,140.533218 254.196609,141.350075 L237.042274,142.435155 L212.333016,139.592682 C212.307939,127.645869 212.340448,121.196953 212.430545,120.245935 Z" id="Leg" fill="#F2A384" fill-rule="nonzero"></path>
<path d="M120.494799,107.478287 L99.97104,48.9894057 C151.573814,6.37810836 188.555395,-8.20941276 210.915782,5.22684229 C244.456362,25.3812249 237.554341,120.499457 237.908772,123.24733 C238.263203,125.995202 218.28905,133.563922 214.509215,125.984643 C210.72938,118.405364 189.447707,72.7220482 187.288286,55.9802365 C178.226457,67.9856295 155.961961,85.1516464 120.494799,107.478287 Z" id="Pants" fill="url(#linearGradient-13)" fill-rule="nonzero"></path>
<polygon id="Leg" fill="#F2A384" fill-rule="nonzero" points="65.24335 148.511521 38.0225123 142.33547 30.7001798 144.740674 41.777005 130.165072 61.1486325 126.172012"></polygon>
<path d="M212.331538,128.834838 C215.883151,127.067097 220.342903,136.697645 226.853035,136.697645 C233.363168,136.697645 237.412734,127.953022 239.076454,128.834838 C243.940298,131.412802 250.998746,132.6665 258.767184,135.699298 C277.879315,143.160671 279.730328,144.231735 276.949969,155.318923 C276.949969,157.783123 255.241797,159.015222 211.825452,159.015222 C210.068775,153.8627 209.122018,149.050434 208.98518,144.578426 C208.779924,137.870414 208.779924,130.602579 212.331538,128.834838 Z" id="Shoes" fill="url(#linearGradient-14)" fill-rule="nonzero"></path>
<path d="M231.908648,118.874809 C216.166332,167.298831 65.8642156,158.164065 55.8115946,153.416352 C50.0754174,150.707235 56.0446132,127.360772 59.2080058,126.221683 C66.557537,123.575232 169.054479,114.470315 149.373466,118.874809 C129.692452,123.279304 41.6579851,110.987205 44.4581152,65.38668 C46.3064197,35.2867714 49.711453,27.1806638 69.5764746,32.0769166 C79.8064085,34.5983508 104.538555,45.4713327 114.448856,48.2991905 C179.019481,66.724115 246.22753,74.829332 231.908648,118.874809 Z" id="Pants" fill="url(#linearGradient-15)" fill-rule="nonzero"></path>
<path d="M54.088757,127.613376 C53.3598389,131.012354 45.2868638,128.25693 41.6669654,132.570956 C38.047067,136.884983 41.9586507,144.740111 40.4120415,145.321086 C35.8905685,147.019553 31.0821641,150.955482 24.6250471,154.309726 C8.73906713,162.561931 6.95493074,163.155096 0.686550644,154.755615 C-1.05024413,153.298272 10.151985,138.184387 34.2932381,109.413962 C38.9015769,111.297112 42.8197503,113.515737 46.0477582,116.069835 C50.88977,119.900983 54.8176752,124.214397 54.088757,127.613376 Z" id="Shoes" fill="url(#linearGradient-14)" fill-rule="nonzero"></path>
<path d="M87.4571387,140.58126 C160.585173,134.930899 190.462151,126.480868 177.088073,115.231165 C163.713995,103.981463 146.005559,93.7002119 123.962765,84.3874117" id="Texture" stroke="#5F90CC" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5,10"></path>
</g>
<g id="Body" transform="translate(40.000000, 129.000000)">
<mask id="mask-18" fill="white">
<use xlink:href="#path-17"></use>
</mask>
<use fill="url(#linearGradient-16)" fill-rule="nonzero" xlink:href="#path-17"></use>
<path d="M34.6708909,10.3364111 C42.7322062,8.4959543 70.1934494,9.95652179 72.7597105,34.6791682 C74.4705512,51.1609325 78.3553867,67.6188214 84.414217,84.0528349 C90.3629883,98.795442 109.535844,107.66403 141.932784,110.6586 C148.247675,110.281451 152.045276,113.302765 153.325588,119.722541 C154.6059,126.142318 153.786063,132.290762 150.866078,138.167871 C96.8687234,148.918187 61.7904103,148.918187 45.631139,138.167871 C21.3922321,122.042398 6.92504234,74.5992341 10.660284,47.2678328 C14.3955257,19.9364315 26.6095756,12.1768679 34.6708909,10.3364111 Z" id="Shadow" fill="#ABC0FF" fill-rule="nonzero" opacity="0.5" mask="url(#mask-18)"></path>
</g>
<g id="Head" transform="translate(22.000000, 0.000000)" fill-rule="nonzero">
<path d="M100.111721,95.8064715 C113.335116,107.325705 118.893284,120.858128 116.786226,136.403741 C114.679168,151.949354 103.030931,158.998 81.8415158,157.549678 L40.5162359,101.979874 L100.111721,95.8064715 Z" id="hair" fill="url(#linearGradient-19)"></path>
<path d="M136.546843,68.346926 C136.117547,81.4126538 134.859573,90.5853226 132.772922,95.8649327 C131.358672,99.4432437 134.951547,100.532132 132.772922,103.598716 C131.793242,104.977691 125.390313,108.565874 124.355088,109.887637 C114.294529,122.732851 102.193206,132.474558 99.3663783,131.302119 C97.2879078,130.440064 92.7066252,127.09325 85.6225307,121.261675 C79.3073321,128.854801 76.5488901,134.283429 77.3472047,137.54756 C78.5446765,142.443755 63.6644747,149.286304 58.0440415,143.416932 C54.2970859,139.504017 51.6480517,132.841884 50.0969387,123.430533 L53.6831393,102.430224 L65.0400828,81.7114497 L81.2459647,68.346926 L129.1338,66.242432 L136.546843,68.346926 Z" id="Face" fill="#F2A384"></path>
<path d="M134.431709,68.5364211 C130.878515,84.5345777 130.176465,95.5622556 132.32556,101.619455 C128.825739,105.272743 125.863881,108.127442 123.439987,110.183551 C119.950616,113.143467 169.61102,97.2188641 169.61102,71.9510072 C169.61102,46.6831503 158.281285,45.5655231 151.838912,43.5378072 C145.396538,41.5100913 130.468442,-3.0307126 91.3857392,0.936988262 C52.3030367,4.90468912 62.3965342,34.9791406 36.3221733,51.4280191 C10.2478124,67.8768975 -9.92344569,97.5966797 6.58061724,122.011824 C23.0846802,146.426969 41.8461799,149.180194 68.0195192,141.995927 C82.6245031,137.987035 81.4901663,112.448034 82.8806012,88.8972642 C82.9852629,87.1245367 78.1840912,87.5869021 77.7849953,83.0134889 C77.3858994,78.4400756 79.4059972,73.345968 82.8806012,71.9510072 C91.3857392,68.5364211 103.328483,81.9621992 111.576799,80.2948942 C130.786423,76.4118832 138.404726,72.4923921 134.431709,68.5364211 Z" id="Hair" fill="url(#linearGradient-19)"></path>
</g>
<g id="Hand" transform="translate(55.000000, 133.000000)" fill-rule="nonzero">
<path d="M139.380424,83.8630124 L127.932505,75.1000244 L144.170644,61.4356051 L147.24268,48.2123331 L149.164321,45.8593788 C151.921904,46.4449867 153.913879,46.2812215 155.140246,45.3680832 C157.204529,43.8310432 160.093522,39.5244619 162.374,40.1969196 C162.722828,40.2997804 165.530709,41.1884556 165.752178,41.972208 C166.081727,43.1384396 163.795146,44.353399 164.274655,44.6705571 C168.214907,47.2767293 170.969942,52.7424164 168.739675,56.6053519 C166.155325,61.0815763 161.008999,65.488079 153.300695,69.82486 L139.380424,83.8630124 Z" fill="#F2A384"></path>
<path d="M24.6708909,0.336411117 C32.7322062,-1.5040457 55.6391459,3.70916652 58.205407,28.4318129 C60.7716681,53.1544593 59.9737891,77.2628935 68.9116177,86.4761001 C77.8494463,95.6893067 84.8070319,87.7120797 134.691639,68.3329341 C141.00653,67.9557845 144.804131,70.9770982 146.084443,77.3968751 C147.364755,83.816652 147.364755,86.8430603 146.084443,86.4761001 C104.369837,125.652401 74.3535497,142.082736 56.0355798,135.767103 C28.5586249,126.293654 -3.07495766,64.5992341 0.660284,37.2678328 C4.39552566,9.9364315 16.6095756,2.17686793 24.6708909,0.336411117 Z" id="Sleeve" fill="url(#linearGradient-16)"></path>
</g>
</g>
<g id="Head" transform="translate(467.000000, 286.000000)" fill-rule="nonzero">
<path d="M27.5744812,108.307649 C24.4833436,118.301805 21.9965558,124.916079 20.1141178,128.15047 C17.2904609,133.002056 22.3149586,145.208245 34.6134785,145.208245 C42.8124917,145.208245 56.2197675,141.477807 74.835306,134.016932 C70.7653623,129.60052 67.8483757,124.659124 66.0843461,119.192745 C64.3203165,113.726366 64.3203165,107.131325 66.0843461,99.407622 C75.5126386,77.337191 79.2419184,63.9175913 77.2721855,59.1488232 C75.3024526,54.3800551 64.7140191,46.2543472 45.5068849,34.7716997 C25.4637333,43.0289096 15.4421576,50.2671185 15.4421576,56.4863263 C15.4421576,62.7055341 15.4421576,68.2348597 15.4421576,73.0743031 C9.59564138,70.5470532 6.67238327,72.5278243 6.67238327,79.0166166 C6.67238327,85.5054089 10.4512246,89.9430335 18.0089074,92.3294904 L27.5744812,108.307649 Z" id="Neck" fill="#B06C57"></path>
<path d="M51.9436575,7.85779678 C57.7146063,10.9011235 75.2172406,15.9765584 78.3087359,20.7658794 C82.3781712,27.0702174 83.2829868,33.5177138 81.0231827,40.1083687 C87.7153401,49.305113 87.7153401,62.2726489 81.0231827,79.0109763 C70.9849465,104.118467 64.4625885,106.652604 51.9436575,108.221084 C39.4247264,109.789565 30.4125024,96.0847748 26.1981688,85.8799289 C23.3886131,79.0766983 19.7286536,74.2311321 15.2182902,71.3432301 C13.7753309,59.7311271 13.0538513,53.9250755 13.0538513,53.9250755 C13.0538513,53.9250755 0.199942517,52.6868839 0.199942517,30.7618146 C0.199942517,8.83674523 15.2182902,-11.5094328 51.9436575,7.85779678 Z" id="Hair" fill="url(#linearGradient-19)"></path>
</g>
<g id="Man" transform="translate(307.000000, 276.000000)">
<g id="Foot" transform="translate(192.000000, 276.000000)" fill-rule="nonzero">
<path d="M133.361238,144.11099 C134.581955,143.289303 151.878114,144.188127 149.831085,153.456277 C147.784057,162.724426 147.095709,166.385734 146.812572,170.161943 C146.623814,172.679415 145.358664,174.66095 143.017123,176.106547 L131.644433,170.161943 L129.393017,161.496482 C131.224687,150.453945 132.547427,144.658781 133.361238,144.11099 Z" id="Leg" fill="#B06C57"></path>
<path d="M126.757873,157.531545 C130.126803,157.004416 131.162047,166.176047 136.463665,167.898647 C141.765283,169.621247 147.420856,163.43636 148.537972,164.608328 C151.803833,168.034547 157.213953,170.94257 162.722579,175.514781 C176.275053,186.76346 177.493668,188.142028 172.240082,196.606645 C171.575677,198.651472 153.56512,193.92984 118.208409,182.441749 C118.167073,177.70129 118.693565,173.457489 119.787886,169.710345 C121.429368,164.089629 123.388943,158.058675 126.757873,157.531545 Z" id="Shoes" fill="url(#linearGradient-14)"></path>
<path d="M58.104099,138.90311 C58.6391771,139.725336 58.2590404,144.781391 56.963689,154.071276 L51.5053849,161.168176 L38.7140265,162.196549 C40.4852465,161.130168 41.7758075,159.401427 42.5857096,157.010328 C43.8005627,153.423679 44.2435894,151.234818 45.980644,141.903604 C47.7176986,132.572389 57.3014819,137.669772 58.104099,138.90311 Z" id="Leg" fill="#B06C57"></path>
<path d="M56.1840338,152.326856 C59.9881533,152.67222 61.5082345,154.517106 63.0788646,160.007675 C64.1259513,163.668054 64.500979,167.851187 64.2039478,172.557075 C47.9217202,176.947044 38.198812,178.533346 35.0352231,177.315981 C22.2917001,172.412211 33.4769533,155.695246 35.3692372,153.960104 C36.7016886,152.738305 39.9502176,150.413517 46.0712852,148.424662 C52.1923527,146.435807 52.3799143,151.981492 56.1840338,152.326856 Z" id="Shoes" fill="url(#linearGradient-14)"></path>
<path d="M112.181254,21.0528853 C150.683503,3.75988594 178.301715,3.75988594 195.035889,21.0528853 C220.137151,46.9923844 161.51557,139.844968 157.528576,151.572095 C153.541582,163.299221 142.45029,155.773506 138.252809,154.65244 C135.454488,153.905063 132.915958,151.571736 130.637219,147.652461 L148.794966,73.6845112 L103.153061,67.497094 L90.0766739,38.9556774 L112.181254,21.0528853 Z" id="Pants" fill="#111AA7"></path>
<path d="M22.1812539,21.0528853 C65.4937818,0.801000754 91.0460246,-4.26197038 98.8379822,5.86397189 C110.525919,21.0528853 120.537828,70.9804265 62.0543458,144.838401 C57.8384211,147.821469 54.0935356,149.078425 50.8196893,148.609267 C47.5458429,148.140109 44.8183529,145.154507 42.6372192,139.652461 L58.7949664,73.6845112 L13.1530606,67.497094 L0.0766739148,38.9556774 L22.1812539,21.0528853 Z" id="Pants" fill="#111AA7"></path>
</g>
<g id="Body" fill-rule="nonzero">
<path d="M180.194458,140.937888 C198.724487,149.412351 209.998863,151.530967 214.017585,147.293735 C218.036307,143.056504 219.807575,139.923673 219.331389,137.895244 C255.134856,140.9176 276.946385,150.647755 284.765975,167.085711 C296.495359,191.742643 327.501213,273.959791 341.018233,257.508708 C346.805729,250.464953 351.468649,244.203419 355.006993,238.724106 C356.320987,236.689318 357.943032,233.879852 359.873128,230.295708 C353.947932,224.80027 350.985334,221.455199 350.985334,220.260493 C350.985334,218.468435 356.906693,218.373515 359.873128,219.317004 C362.839564,220.260493 362.286387,198.66439 364.155875,197.244498 C365.4022,196.297903 366.984594,201.369301 368.903056,212.458694 C371.745963,200.528013 373.67335,194.80208 374.685217,195.280896 C375.697084,195.759712 375.697084,202.397684 374.685217,215.194813 C379.699329,209.263175 382.589647,206.757115 383.356171,207.676632 C384.122694,208.596148 382.639986,212.790769 378.908047,220.260493 C383.519899,218.57181 385.825826,218.257313 385.825826,219.317004 C385.825826,220.376695 383.519899,222.513555 378.908047,225.727586 L374.685217,233.579987 C364.426699,273.429482 349.523363,294.581005 329.975211,297.034558 C310.427058,299.488111 302.639842,299.488111 306.613563,297.034558 C311.39008,303.591304 313.12531,309.072971 311.819252,313.479559 C309.860166,320.089441 296.712851,353.045722 283.010142,358.601924 C273.875002,362.306058 247.810795,352.907344 204.81752,330.405781 L132.169231,263.379507 L125.00725,189.908511 C57.1548627,151.441062 20.3298322,100.993122 14.5321585,38.5646912 L11.6202984,29.2412376 C4.86829489,21.9113527 1.29128286,17.7425919 0.889262336,16.7349551 C0.487241809,15.7273183 2.64979227,16.3508285 7.37691371,18.6054857 C4.98260463,11.8151033 4.09729415,8.06109085 4.72098228,7.34344839 C5.34467041,6.62580593 7.64444245,8.75227791 11.6202984,13.7228643 C11.9132208,5.06202683 12.5449428,0.552876787 13.5154646,0.195414172 C14.4859863,-0.162048443 15.9431159,3.57773566 17.8868534,11.4147665 C18.7932724,4.50494937 19.7183617,1.44382882 20.6621214,2.23140483 C21.6058811,3.01898084 22.4613969,8.4770078 23.228669,18.6054857 C26.9654206,15.3504048 29.0476764,14.3032037 29.4754364,15.4638824 C29.9031964,16.6245611 28.8011103,20.6696684 26.1691781,27.5992041 C54.1530336,74.1475009 77.7395125,101.480224 96.9286146,109.597374 C116.117717,117.714523 144.603857,126.074474 182.387036,134.677227 L180.194458,140.937888 Z" fill="#B06C57"></path>
<path d="M198.839596,155 C210.326914,158.2484 221.555438,153.007673 232.525167,139.277819 C259.532782,141.378458 276.946385,150.647755 284.765975,167.085711 C291.638731,181.533279 305.129673,215.742983 317.842657,238.286058 C323.831738,248.90609 312.806177,260.832862 284.765975,274.066373 C293.104881,286.690053 301.512616,294.882139 309.989179,298.642633 C312.86487,301.346098 312.86487,309.951685 311.819252,313.479559 C309.860166,320.089441 296.712851,353.045722 283.010142,358.601924 C273.875002,362.306058 247.810795,352.907344 204.81752,330.405781 L132.169231,263.379507 L123.080248,190.713856 C99.8817182,181.946811 87.6275341,174.89077 86.3176957,169.545732 C76.4849881,129.421546 97.3152626,107.049546 114.17032,114.179376 C133.359422,122.296525 156.325907,128.305846 183.069774,132.207337 C182.09567,144.154046 187.352278,151.7516 198.839596,155 Z" fill="url(#linearGradient-20)"></path>
<path d="M160.735046,251.46674 C159.234157,245.865346 162.558273,240.107808 168.159667,238.606919 C173.761061,237.10603 179.5186,240.430146 181.019489,246.031541 C182.304222,250.826232 180.053651,255.735332 175.865663,257.991213 C172.995833,258.400768 170.196223,258.640962 167.506523,258.694557 C164.299173,257.604225 161.67765,254.984588 160.735046,251.46674 Z M113.126531,163.571162 C107.525137,165.072051 101.767599,161.747935 100.26671,156.146541 C98.7658206,150.545147 102.089937,144.787609 107.691331,143.28672 C113.292725,141.785831 119.050263,145.109947 120.551152,150.711341 C122.052041,156.312735 118.727925,162.070273 113.126531,163.571162 Z M161.247613,206.068835 C155.646219,207.569725 149.888681,204.245608 148.387792,198.644214 C146.886903,193.04282 150.211019,187.285282 155.812413,185.784393 C161.413807,184.283504 167.171345,187.60762 168.672234,193.209014 C170.173123,198.810408 166.849007,204.567946 161.247613,206.068835 Z M158.675392,155.900291 C153.073998,157.40118 147.31646,154.077064 145.815571,148.47567 C144.314682,142.874276 147.638798,137.116737 153.240192,135.615848 C158.841586,134.114959 164.599124,137.439076 166.100013,143.04047 C167.600902,148.641864 164.276786,154.399402 158.675392,155.900291 Z M267.091947,338.574866 C265.591058,332.973472 268.915174,327.215934 274.516568,325.715045 C280.117962,324.214156 285.8755,327.538272 287.376389,333.139666 C288.661123,337.934358 286.410552,342.843457 282.222564,345.099339 C279.352734,345.508894 276.553124,345.749088 273.863424,345.802682 C270.656074,344.712351 268.034551,342.092713 267.091947,338.574866 Z M219.483432,250.679288 C213.882038,252.180177 208.1245,248.856061 206.623611,243.254667 C205.122722,237.653273 208.446838,231.895734 214.048232,230.394845 C219.649626,228.893956 225.407164,232.218073 226.908053,237.819467 C228.408942,243.420861 225.084826,249.178399 219.483432,250.679288 Z M267.604514,293.176961 C262.00312,294.67785 256.245582,291.353734 254.744693,285.75234 C253.243804,280.150946 256.56792,274.393408 262.169314,272.892519 C267.770708,271.39163 273.528246,274.715746 275.029135,280.31714 C276.530024,285.918534 273.205908,291.676072 267.604514,293.176961 Z M265.032293,243.008416 C259.430899,244.509305 253.673361,241.185189 252.172472,235.583795 C250.671583,229.982401 253.995699,224.224863 259.597093,222.723974 C265.198487,221.223085 270.956025,224.547201 272.456914,230.148595 C273.957803,235.749989 270.633687,241.507527 265.032293,243.008416 Z M219.483432,200.449898 C213.882038,201.938628 208.1245,198.641441 206.623611,193.085425 C205.122722,187.529408 208.446838,181.818513 214.048232,180.329783 C219.649626,178.841053 225.407164,182.13824 226.908053,187.694256 C228.408942,193.250272 225.084826,198.961168 219.483432,200.449898 Z M265.032293,192.841169 C259.430899,194.329899 253.673361,191.032712 252.172472,185.476696 C250.671583,179.92068 253.995699,174.209785 259.597093,172.721054 C265.198487,171.232324 270.956025,174.529511 272.456914,180.085528 C273.957803,185.641544 270.633687,191.352439 265.032293,192.841169 Z" id="Texture" fill-opacity="0.1" fill="#000000"></path>
</g>
<g id="Path-51-Copy" transform="translate(160.000000, 10.000000)"></g>
</g>
<g id="Chair" transform="translate(419.000000, 469.000000)" fill-rule="nonzero">
<polygon id="Chair-base" fill="#D2D9FF" points="154 184 166 184 166 233 154 233"></polygon>
<circle id="Wheel" fill="url(#linearGradient-11)" cx="95" cy="296" r="9"></circle>
<circle id="Wheel" fill="url(#linearGradient-11)" cx="221" cy="296" r="9"></circle>
<circle id="Wheel" fill="url(#linearGradient-11)" cx="160" cy="306" r="9"></circle>
<path d="M147.881887,243.913896 L147.188938,236.462114 C147.174936,236.311537 147.169484,236.160287 147.172609,236.009093 C147.218258,233.800425 149.045743,232.046953 151.25441,232.092602 L168.443757,232.447876 C168.518609,232.449423 168.593402,232.453071 168.668048,232.458816 C170.870673,232.628338 172.518829,234.551342 172.349308,236.753968 L171.856692,243.154617 L226.584615,280.718959 C226.733073,280.820858 226.876958,280.929265 227.015849,281.043861 C229.620938,283.193279 229.990334,287.047569 227.840916,289.652659 C225.375307,292.640971 221.131549,293.45059 217.738946,291.579898 L170.149318,265.338837 L167.543567,299.195842 C167.252323,302.980029 164.146574,305.931063 160.352453,306.028726 C156.593853,306.125475 153.403546,303.292351 153.055417,299.548658 L149.787192,264.403038 L100.500439,291.579898 C97.1078366,293.45059 92.8640785,292.640971 90.3984697,289.652659 C88.2490519,287.047569 88.618447,283.193279 91.2235368,281.043861 C91.3624277,280.929265 91.5063124,280.820858 91.6547702,280.718959 L147.467253,242.410193 L147.881887,243.913896 Z" id="Chair-base" fill="url(#linearGradient-5)"></path>
<path d="M19.2285694,1.78935248 C13.1744391,-1.59097817 3.92141075,1.57430272 0.998715376,5.81654128 C1.93934968,11.8148661 2.53442849,14.40731 2.56009356,14.5456962 C12.0663579,65.8035028 48.9019763,115.156123 77.5715417,146.044815 C93.9142888,163.652549 107.767073,177.698822 119.129895,188.183635 C130.159473,189.900845 140.310816,188.724534 149.583926,184.654702 C155.629347,182.001455 165.109893,182.782432 164.839891,174.468564 C164.283362,157.331959 149.059315,148.676608 143.051306,123.85559 C137.414878,100.569693 143.754704,53.1343056 126.719506,43.3698986 C109.684307,33.6054916 88.3495801,50.5544167 55.8361354,36.4350781 C32.8367974,26.4473501 25.2826997,5.16968313 19.2285694,1.78935248 Z" id="Chair-base" fill="url(#linearGradient-11)"></path>
<path d="M189.174205,144.859317 C205.485582,140.38042 227.54703,135.446901 238.719895,144.859317 C249.89276,154.271733 244.75614,169.397339 237.280615,177.906295 C232.296931,183.578933 210.188084,189.030726 170.954073,194.261673 L167.468115,165.56524 C176.936643,161.523715 184.172006,154.621741 189.174205,144.859317 Z" id="Chair-base" fill="#111AA7"></path>
<path d="M0.871245414,5.25474165 C8.27287372,64.1120733 14.6990765,102.838749 20.1498539,121.434768 C28.4164379,149.637269 38.9482046,161.511866 50.3162519,172.821585 C61.6842991,184.131303 104.196903,203.837694 138.160029,205.582314 C168.220272,207.12645 210.199035,198.341062 225.727172,188.683347 C241.25531,179.025633 249.288441,158.320483 231.731805,153.172133 C214.17517,148.023783 157.580193,169.223977 152.24863,166.910956 C122.584191,154.041474 131.627036,64.7544221 117.326223,55.2857134 C103.73372,46.2859832 74.7469799,57.8426674 39.8361354,42.4350781 C29.6033913,37.9189479 16.6150947,25.5255024 0.871245414,5.25474165 Z" id="Chair-base" fill="url(#linearGradient-5)"></path>
</g>
<g id="Man" transform="translate(730.000000, 206.000000)" fill-rule="nonzero">
<g id="Hand" transform="translate(149.794401, 90.759275) rotate(9.000000) translate(-149.794401, -90.759275) translate(111.294401, 7.259275)">
<path d="M65.5507433,21.9145917 C45.0605493,80.123443 29.1963909,81.086083 17.7315084,88.3981601 C10.0882534,93.2728782 5.69714555,90.0791456 4.55818481,78.8169622 C27.5585627,48.123884 38.2185083,27.9478822 36.5380215,18.2889569 C34.0172914,3.8005689 76.7219205,-9.82065655 65.5507433,21.9145917 Z" fill="#F2A384" transform="translate(35.988163, 46.589416) rotate(-185.000000) translate(-35.988163, -46.589416) "></path>
<path d="M17.9901992,88.9830757 C6.31340478,84.1503866 3.54005645,72.3248801 9.67015421,53.5065563 C11.8429073,46.8365857 20.9987322,45.0154488 34.0713542,53.5065563 C49.7421678,63.6852767 80.3416649,108.495712 69.1704877,140.23096 C69.0678542,140.047464 67.5978209,143.166257 67.8619972,145.158575 C68.1595919,147.402923 70.1687761,148.728312 69.488173,152.025731 C68.263256,157.960267 63.960803,163.925401 63.669572,163.899922 C57.5127266,163.361267 49.1661588,157.77079 41.212651,155.631859 C35.6356067,154.132029 30.7038258,153.700554 27.7616726,151.674044 C26.6046745,150.877121 27.541742,141.676384 30.1293629,136.815304 C31.3302589,134.559313 35.6013821,135.519109 35.273841,135.9209 C37.8976884,117.518572 32.1364744,101.87263 17.9901992,88.9830757 Z" id="Sleeve" fill="url(#linearGradient-21)" transform="translate(39.037102, 105.850396) rotate(-185.000000) translate(-39.037102, -105.850396) "></path>
</g>
<g id="Vest" transform="translate(193.944749, 317.142965) scale(-1, 1) rotate(-15.000000) translate(-193.944749, -317.142965) translate(72.444749, 21.642965)">
<path d="" id="Path-2" stroke="#979797" stroke-width="0.8" fill="#AB0000"></path>
<path d="" id="Path-7" stroke="#979797" stroke-width="0.8" fill="#FF7272"></path>
<g id="Group-10" transform="translate(181.609600, 77.667226) scale(-1, 1) rotate(-18.000000) translate(-181.609600, -77.667226) translate(139.109600, 10.667226)">
<g id="Head">
<path d="M31.373542,89.1277016 C28.7220052,100.764352 26.5683804,108.005094 24.9126677,110.849928 C22.4290987,115.117178 -3.54627085,120.612858 16.1370275,130.661574 C29.2592264,137.360717 45.669458,130.042212 65.3677223,108.706057 C60.146028,105.885376 57.5351808,101.917147 57.5351808,96.8013689 C57.5351808,91.6855907 58.5781223,87.3036614 60.6640053,83.655581 C72.0108545,62.6727201 76.8180323,50.0840864 75.0855386,45.8896798 C73.3530449,41.6952733 64.0399071,34.5482447 47.146125,24.448594 C25.6143653,30.7902827 14.741506,36.0024152 14.5275473,40.0849914 C14.2066091,46.2088559 16.546848,45.8770602 16.3311442,49.9929337 C16.1154404,54.1088072 13.3830845,56.2372964 13.5588178,58.5694515 C14.5990012,72.3737211 20.1135457,80.9755907 21.2142089,84.1720142 C22.500823,87.9084558 25.8872673,89.5603516 31.373542,89.1277016 Z" id="Face" fill="#F2A384"></path>
<g id="Path-51-Copy" transform="translate(0.000000, 0.000000)" fill="url(#linearGradient-19)">
<path d="M52.5194799,0.575461227 C59.4412547,-1.44392677 72.9899382,7.71638025 75.7090867,11.9288642 C79.2883897,17.473893 80.0842271,23.1448379 78.0965991,28.9416989 C81.3177343,35.8977166 82.7545943,41.6663566 82.4071791,46.2476189 C82.0247546,51.2905377 85.690282,56.7745028 83.1989865,63.0056951 C82.0534739,65.8708347 76.7401792,68.8390174 75.8853353,71.1351267 C70.4438918,85.7508341 66.5432464,85.5464099 62.3564881,87.0987988 C57.5455529,88.8826233 55.0380575,82.0587151 51.3313081,73.0829647 C59.3885911,69.7833371 60.3072281,58.6970557 55.4878784,55.7508002 C52.9392027,54.192696 51.5068765,56.3571775 48.5239486,64.5368443 C45.8663891,71.8242988 48.6022802,75.3200844 43.6368642,82.9458594 C39.4200219,89.4219918 28.3006517,90.223312 26.2647214,89.4206627 C15.458064,85.160224 14.9488722,73.1970474 15.1315472,69.6060347 C15.1501713,69.2399221 15.3168021,66.5247406 20.0927168,66.7604918 C24.8686316,66.996243 37.871849,75.1146743 43.2592766,66.4176412 C45.1484857,63.3678527 45.8315265,58.245665 45.3083989,51.051078 C41.2871839,48.5235479 38.719763,46.4922181 37.6061361,44.9570885 C34.1253457,40.1588346 33.4809196,35.3355339 30.9411282,35.6430482 C13.8042441,37.7179575 4.75653922,45.1684659 1.16769561,34.0826887 C-2.42114799,22.9969115 3.21364389,23.3870487 7.06103848,18.268224 C10.6711503,13.4650958 10.4629826,6.30706869 15.1760909,6.55407223 C29.6011397,7.310057 39.1914967,4.4638237 52.5194799,0.575461227 Z M17.8814966,73.6692513 C18.6001681,78.7373328 19.9368563,81.3225944 21.8915613,81.4250362 C23.5718104,81.5130943 21.5183819,79.6449881 22.7421628,79.7091238 C23.9659437,79.7732594 24.7949337,82.223504 25.4348057,82.2570383 C28.086241,82.3959941 28.8333622,80.1874385 27.6761693,75.6313715 C25.1639077,73.7117191 23.0597021,72.6321704 21.3635524,72.3927253 C19.6674026,72.1532801 18.5067174,72.5787888 17.8814966,73.6692513 Z" id="Combined-Shape"></path>
</g>
</g>
</g>
<g id="Foot" transform="translate(121.516107, 387.583870) rotate(-345.000000) translate(-121.516107, -387.583870) translate(47.016107, 197.583870)">
<path d="M45.4487493,318.179505 L45.4467127,339.788038 C41.7403439,344.531734 37.1639741,346.903582 31.7176032,346.903582 C26.2712323,346.903582 22.1002693,345.525743 19.2047144,342.770065 L17.1695158,320.333811 L45.4487493,318.179505 Z" id="leg" fill="url(#linearGradient-22)" transform="translate(31.309133, 332.541543) scale(-1, 1) translate(-31.309133, -332.541543) "></path>
<path d="M71.8260952,338.608924 C73.7017823,338.164249 74.4164892,344.414488 74.4980964,350.842588 C74.5278052,353.182716 74.2097703,356.833894 73.5439915,361.796121 C73.2711666,363.829572 72.0695446,365.55767 70.6458064,365.964115 C56.880405,369.893822 38.0902461,378.005249 32.4676046,378.503937 C29.3163057,378.783434 24.6195855,378.123039 18.3774441,376.522751 L18.3774497,376.522729 C16.1913472,375.962281 14.6625732,373.992138 14.6625732,371.735338 L14.6625732,371.735338 C14.6625732,369.354484 15.7695645,367.108971 17.6580355,365.659094 L33.4047115,353.569554 C38.9134606,345.970727 42.8180728,340.98385 45.118548,338.608924 C46.2988944,337.390378 48.2039575,348.023726 56.363831,346.089239 C64.5237046,344.154751 69.9504081,339.053599 71.8260952,338.608924 Z" id="Shoes" fill="url(#linearGradient-14)" transform="translate(44.581287, 358.538810) scale(-1, 1) translate(-44.581287, -358.538810) "></path>
<path d="M111.651382,305.187658 L111.649345,326.796191 C107.942976,331.539887 103.366606,333.911735 97.9202355,333.911735 C92.4738646,333.911735 88.3029016,332.533896 85.4073467,329.778218 L83.3721481,307.341964 L111.651382,305.187658 Z" id="leg" fill="url(#linearGradient-22)" transform="translate(97.511765, 319.549696) scale(-1, 1) translate(-97.511765, -319.549696) "></path>
<path d="M144.873735,322.898864 C147.185013,322.898864 147.185013,331.370265 147.285572,337.817712 C147.32218,340.164883 146.930288,343.740663 146.109895,348.545053 C145.773712,350.513824 144.293038,351.95705 142.538665,352.025964 C105.44525,353.483051 81.2198063,353.443696 81.1518903,351.907899 C79.1761638,344.91938 87.4124237,338.491638 105.86067,332.624672 C111.049403,328.963356 115.061126,326.217926 117.89584,324.388381 C119.350298,323.449663 120.366563,331.039327 130.421401,331.039327 C140.47624,331.039327 142.562458,322.898864 144.873735,322.898864 Z" id="Shoes" fill="url(#linearGradient-14)" transform="translate(114.076561, 337.994451) scale(-1, 1) translate(-114.076561, -337.994451) "></path>
<path d="M59.8575113,211.367608 C50.9442209,296.936752 50.9442209,324.865925 49.0427623,330.310387 C46.1905745,338.477081 15.183334,338.476667 13.1603294,327.176145 C11.8116596,319.642463 11.8104114,277.695096 13.1565848,201.334044 C7.02830189,120.183727 0.344108538,108.040863 0.725901415,89.0139451 C1.10769429,69.9870274 8.37619334,40.5229551 22.5313986,0.621728088 L59.8575113,52.354607 C63.4997124,45.4966831 67.9737375,37.1547511 73.2795864,27.3288111 C92.5340308,15.1143512 97.9641966,41.5171485 103.59444,66.664704 C109.224683,91.8122596 128.759019,155.230229 125.058569,204.147218 C118.324456,293.166801 117.0178,313.344312 115.116341,318.788775 C112.264154,326.955469 81.2569131,326.955054 79.2339084,315.654532 C77.8852387,308.120851 77.8877351,287.72866 79.2339084,211.367608 C73.2505053,181.679922 67.1388872,143.811812 61.9295878,124.915625 C65.4838248,135.167453 64.7931326,163.984781 59.8575113,211.367608 Z" id="Pants" fill="url(#linearGradient-15)"></path>
</g>
<g id="Body" transform="translate(71.000000, 105.000000)">
<path d="M113.283243,12.5211122 C113.206616,16.4107015 113.367912,18.8808268 113.767134,19.9314881 C114.261831,21.2334196 116.723284,22.9503163 116.532405,23.1550504 C115.64822,24.1034174 114.416513,37.0845778 112.699157,37.4609288 C110.306581,37.9852511 112.795182,23.7242858 108.792689,23.8473327 C102.470657,24.0416881 93.994065,17.3751338 82.7615437,2.85912309 C82.5896179,2.63693997 84.9510669,1.01905834 84.6704403,0.65198999 C84.5544061,0.500213507 83.396644,0.521009203 81.1971542,0.714377079 C79.010349,3.76234917 77.3520857,5.46552626 76.2223641,5.82390834 C62.4463818,10.1940695 52.2626288,10.9442235 46.2410236,15.0562777 C39.4787012,19.6741553 34.6513208,43.4080266 31.7588822,86.2578917 C16.5847073,128.242161 6.08410777,155.423046 0.257083455,167.800545 C36.4344441,191.376932 73.8081487,198.286802 112.378197,188.530156 C122.348996,128.433113 129.237988,89.0588063 133.045173,70.4072371 C136.852358,51.7556679 134.414686,37.7486721 125.732157,28.3862497 L113.283243,12.5211122 Z" id="Path-5" fill="url(#linearGradient-16)"></path>
<path d="M112.282564,39.128965 C112.319497,38.5779165 112.79615,38.1611433 113.347198,38.198076 C113.898247,38.2350086 114.31502,38.7116615 114.278087,39.26271 C109.362975,112.597908 98.6285006,170.988158 88.220311,191.387347 C87.9693056,191.879297 87.3670212,192.074621 86.8750713,191.823616 C86.3831214,191.57261 86.1877974,190.970326 86.4388028,190.478376 C96.6789562,170.408524 107.386099,112.185945 112.282564,39.128965 Z" id="Path-6" fill="#5E9FBC"></path>
</g>
<path d="M168.702491,142.203032 C159.464559,138.538264 138.217326,125.036352 145.001698,111.508291 C145.90235,111.563226 147.446304,111.135097 148.362632,110.355629 C150.054034,108.916847 151.365928,106.552152 152.538157,105.940362 C153.755958,105.682335 155.079708,105.804629 155.811467,105.567331 C156.419087,105.37029 156.506738,104.885209 156.807192,104.09468 C145.3866,101.733045 123.614496,112.206306 115.285488,117.894047 C108.523166,122.511925 99.3124566,148.963596 87.6533601,197.249061 C81.4648314,220.344965 75.580378,238.147036 70,250.655275 C80.4965201,257.495741 110.179745,278.768278 119.895398,274.321753 C160.408775,255.780155 170.868491,147.720236 168.702491,142.203032 Z" id="Vest-base" fill="url(#linearGradient-23)"></path>
<path d="M88.1946944,233.9639 L110.425977,243.678661 C111.995856,244.364677 113.828306,243.974761 114.982884,242.709026 L127.128748,229.393817 L88.1946944,233.9639 Z" id="saku" fill="#F0AA44"></path>
<ellipse id="Vest-base" fill="url(#linearGradient-16)" transform="translate(115.766227, 151.313594) rotate(18.000000) translate(-115.766227, -151.313594) " cx="115.766227" cy="151.313594" rx="16.5" ry="32.1403493"></ellipse>
<path d="M198.203312,147.424577 C191.117794,141.916648 190.49991,134.149441 198.009837,126.256775 C198.566634,125.671602 200.65422,122.796157 204.272597,117.630439 C204.5667,116.015614 204.549577,114.595497 204.221229,113.370086 C199.378429,115.214797 187.906159,124.096531 182.899337,137.073821 C178.565582,148.306573 182.32795,195.925397 184.085858,235.710614 C184.858532,253.197885 176.403866,266.429773 179.608817,268.518404 C190.105337,275.35887 197.577904,278.039329 206.581585,275.6268 C215.585266,273.214271 203.311555,241.869331 197.927753,209.22772 C193.737882,183.824833 199.411294,152.791563 198.203312,147.424577 Z" id="Vest-base" fill="url(#linearGradient-23)" transform="translate(194.333060, 194.933404) scale(-1, 1) translate(-194.333060, -194.933404) "></path>
</g>
<g id="Hand" transform="translate(144.000000, 141.000000)">
<path d="M61.8536402,156.428122 C61.4866217,156.538326 61.1125182,156.649189 60.7313296,156.760711 L51.0933586,158.346659 C39.9061258,164.231606 33.8977841,166.967017 33.0683336,166.552892 C32.2388831,166.138767 33.6212102,164.316262 37.2153149,161.085378 C30.0988043,161.067336 26.2286201,160.699568 25.6047623,159.982073 C24.9809045,159.264578 27.8834868,157.939201 34.3125094,156.00594 C26.7190587,154.631166 22.8128766,153.438365 22.5939633,152.42754 C22.37505,151.416714 26.2812321,150.494242 34.3125094,149.660125 C27.5960873,147.800866 24.6935049,146.458754 25.6047623,145.633789 C26.5160196,144.808823 32.0399942,144.721243 42.1766861,145.37105 C39.4733387,141.217645 38.7261229,139.009911 39.9350386,138.747849 C41.1439544,138.485787 44.9963142,140.140118 51.492118,143.710842 C54.0601062,143.877246 56.4272097,144.062326 58.5934286,144.266081 C95.4196007,127.178614 115.675486,114.103486 119.361091,105.040692 C124.901067,91.4180588 127.943022,85.9804742 132.22067,59.40327 C136.498318,32.8260658 159.791979,29.8509183 170.359569,40.1462077 C182.258528,51.7385609 170.968506,110.823386 142.658996,129.660039 C114.349486,148.496691 69.7050926,158.083119 62.6665142,156.636514 C62.3837249,156.578393 62.1127669,156.508929 61.8536402,156.428122 Z" fill="#F2A384" transform="translate(98.817013, 100.623370) rotate(-53.000000) translate(-98.817013, -100.623370) "></path>
<path d="M107.756229,32.4793423 C112.033877,5.90213811 135.327539,2.92699057 145.895128,13.2222799 C157.794087,24.8146331 146.504066,83.8994582 118.194556,102.736111 C114.929918,104.908344 111.448049,106.957562 107.831672,108.881031 C107.343475,109.140692 108.591769,110.72202 108.236905,111.160791 C106.495072,113.314482 104.163308,116.589598 101.863655,117.101962 C83.8250755,121.120971 69.8072235,95.4069928 80.0518049,88.1566598 C82.3568933,86.5252942 84.660421,86.0171024 86.3937052,84.5241937 C86.831404,84.1471958 88.4876005,86.1602415 88.8888358,85.7920729 C91.95869,82.9752126 93.9612951,80.4167764 94.896651,78.1167644 C100.436627,64.4941311 103.478581,59.0565465 107.756229,32.4793423 Z" id="Sleeve" fill="url(#linearGradient-16)" transform="translate(113.585315, 62.627368) rotate(-53.000000) translate(-113.585315, -62.627368) "></path>
</g>
</g>
<g id="Helmet" transform="translate(925.956150, 242.561995) scale(-1, 1) rotate(-26.000000) translate(-925.956150, -242.561995) translate(876.456150, 221.061995)" fill-rule="nonzero">
<path d="M0,39.1276357 C0,17.5180392 17.5180392,0 39.1276357,0 C60.7372322,0 78.2552714,17.5180392 78.2552714,39.1276357 L0,39.1276357 Z" id="Helmet-base" fill="url(#linearGradient-23)"></path>
<path d="M10.746584,24.0362818 C10.2486169,24.6277756 9.36543436,24.7035939 8.77394058,24.2056268 C8.18244679,23.7076597 8.10662845,22.8244771 8.60459557,22.2329834 C16.2578447,13.1423244 27.5053433,7.79185573 39.6216059,7.79185573 C49.108803,7.79185573 58.0975977,11.0637934 65.2859892,16.9519334 C65.8841374,17.4418873 65.9718463,18.3239684 65.4818923,18.9221166 C64.9919384,19.5202649 64.1098573,19.6079737 63.5117091,19.1180198 C56.8192831,13.636134 48.4559233,10.5918557 39.6216059,10.5918557 C28.3402804,10.5918557 17.8733258,15.5710172 10.746584,24.0362818 Z" id="Helmet-base" fill="#EE9F3E"></path>
<path d="M-3.41060513e-13,36.2646379 L91.6159275,36.2646379 C95.3053708,36.2646379 98.2962555,39.2555227 98.2962555,42.944966 L-3.41060513e-13,42.944966 L-3.41060513e-13,36.2646379 Z" id="Helmet-base" fill="#EE9F3E"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 58 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 79 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 184 KiB

View File

@@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="557px" height="276px" viewBox="0 0 557 276" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>how-we-work</title>
<desc>Created with Sketch.</desc>
<defs>
<linearGradient x1="76.9888796%" y1="16.7734139%" x2="-11.6510841%" y2="73.2727713%" id="linearGradient-1">
<stop stop-color="#72669D" offset="0%"></stop>
<stop stop-color="#ADA7C7" offset="100%"></stop>
</linearGradient>
<linearGradient x1="76.9888796%" y1="16.7734139%" x2="-11.6510841%" y2="73.2727713%" id="linearGradient-2">
<stop stop-color="#EAE9F1" offset="0%"></stop>
<stop stop-color="#ECE7F9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="15.4820432%" y1="76.2997855%" x2="100%" y2="25.92039%" id="linearGradient-3">
<stop stop-color="#5763AB" offset="0%"></stop>
<stop stop-color="#BDC4EC" offset="100%"></stop>
</linearGradient>
<linearGradient x1="43.4030925%" y1="6.063533%" x2="96.6732198%" y2="100%" id="linearGradient-4">
<stop stop-color="#5763AB" offset="0%"></stop>
<stop stop-color="#939CD4" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-5">
<stop stop-color="#DBD5ED" offset="0%"></stop>
<stop stop-color="#C1B8DF" offset="84.680827%"></stop>
<stop stop-color="#B4AAD7" offset="100%"></stop>
</linearGradient>
</defs>
<g id="Reasources" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Artboard-6" transform="translate(-433.000000, -1960.000000)" fill-rule="nonzero">
<g id="how-we-work" transform="translate(433.000000, 1960.000000)">
<g id="Group-26" transform="translate(473.000000, 97.000000)">
<g id="Group-13">
<g id="Group-12" transform="translate(0.787255, 0.000000)">
<path d="M7.69665335,105.062982 C20.0112987,97.852777 31.8128339,94.2476747 43.1012588,94.2476747 C54.3896837,94.2476747 67.7305495,97.852777 83.1238562,105.062982 C75.9403131,123.603508 69.2698802,134.418815 63.1125575,137.508902 C53.8765735,142.144034 43.9700032,146.11022 27.7079521,135.963859 C16.8665846,129.199618 10.1961517,118.899325 7.69665335,105.062982 Z" id="Path-33" fill="url(#linearGradient-1)"></path>
<path d="M19.2104044,81.6111704 L28.8450798,70.3918959 L28.4229054,70.0753124 L19.3794474,80.6061329 C22.7195444,60.8459804 26.0086877,47.2133974 29.2399047,39.7223509 L39.6413981,29.9790637 L39.2583891,29.6194619 L29.8041384,38.4754528 C30.0835127,37.8884232 30.3624491,37.347504 30.6409431,36.8527041 L41.0809072,18.3040348 L40.5963607,18.0606475 L30.1563966,36.6093168 C25.7228735,44.486351 21.2130883,63.7931155 16.6092523,94.5652418 L17.1526348,94.637793 C17.8406467,90.0391083 18.5265898,85.6968609 19.2104044,81.6111704 Z M11.0429488,98.3762648 C-1.03301162,86.6098073 -3.88110469,65.7442578 5.88190657,54.0499774 C14.1383275,44.1603133 21.2714402,25.8193703 27.8223473,13.138951 C28.6820542,11.4748389 29.3879712,19.332485 30.228847,17.895246 C34.3454682,10.859047 38.3948427,-2.50043682 42.2329456,0.407789073 C44.7292611,2.2993093 46.7462869,5.48060893 48.2840231,9.95168796 C48.7661072,11.3533821 45.8514672,16.7947559 46.2454688,19.1271275 C46.6268798,21.384966 50.3197021,20.5045368 50.6185702,23.6345218 C51.0143636,27.7795853 51.4451953,35.7179385 51.9110654,47.4495815 L42.1185035,62.147786 L52.4407251,49.8581558 C52.7878967,51.7143254 52.5565515,54.1920228 51.7466895,57.2912481 C50.9368276,60.3904734 49.4882063,63.7655283 47.4008258,67.4164128 L36.4230752,84.0926608 L47.4774323,69.7178431 C45.1523227,78.4387029 42.1045172,84.9329417 38.3340158,89.2005595 C34.5635144,93.4681773 21.4219307,98.2939051 15.600963,101.02243 L2.21797935,146.541183 L11.0429488,98.3762648 Z" id="Combined-Shape-Copy" fill="#3BC2CA" transform="translate(26.298490, 73.270591) scale(-1, 1) translate(-26.298490, -73.270591) "></path>
<path d="M53.4807776,93.8958355 L59.4584888,86.93498 L59.1965561,86.7385598 L53.5856582,93.2722728 C55.6579786,81.0123387 57.6986856,72.5541768 59.7034529,67.9064528 L66.1569265,61.8613547 L65.9192935,61.6382444 L60.0535245,67.1328308 C60.2268587,66.7686158 60.3999212,66.4330093 60.5727092,66.1260171 L67.0500516,54.6177322 L66.7494209,54.4667257 L60.2720786,65.9750105 C57.5213558,70.8622157 54.7233172,82.840851 51.866926,101.933024 L52.2040607,101.978037 C52.6309289,99.1248419 53.0565136,96.4307499 53.4807776,93.8958355 Z M48.4133841,104.297524 C40.9210088,96.9971759 39.1539459,84.0514124 45.2112814,76.7958455 C50.3338723,70.6599298 54.7595209,59.2805261 58.8239475,51.413122 C59.3573417,50.3806449 59.7953189,55.255821 60.3170295,54.3641044 C62.8711345,49.9985847 65.3835172,41.7098637 67.7648191,43.5142353 C69.3136261,44.6878048 70.565064,46.6616015 71.5191328,49.4356254 C71.8182357,50.3052886 70.0098846,53.6813194 70.2543378,55.1284096 C70.4909794,56.5292566 72.7821438,55.9830056 72.9675727,57.9249648 C73.2131376,60.4967164 73.4804417,65.4219662 73.7694848,72.7007142 L67.693815,81.8200274 L74.0981054,74.1950834 C74.3135036,75.3467201 74.1699684,76.8839757 73.6674999,78.8068505 C73.1650314,80.7297252 72.2662529,82.8237349 70.9711643,85.0888795 L64.1601592,95.4354445 L71.0186938,86.5167726 C69.5761093,91.9275186 67.6851373,95.9567861 65.3457779,98.604575 C63.0064185,101.252364 54.8528908,104.246425 51.2413458,105.939304 L42.9380446,134.180832 L48.4133841,104.297524 Z" id="Combined-Shape-Copy" fill="#6CD5DB"></path>
<path d="M10.7753147,114.161535 C21.0375192,110.155891 31.8128339,108.153069 43.1012588,108.153069 C54.3896837,108.153069 66.1912188,110.155891 78.5058642,114.161535 C74.4009824,128.365322 69.2698802,136.559781 63.1125575,138.744913 C53.8765735,142.022611 43.9700032,144.827268 27.7079521,137.652347 C16.8665846,132.869067 11.2223722,125.038796 10.7753147,114.161535 Z" id="Path-33" fill="url(#linearGradient-2)" opacity="0.650701993"></path>
<path d="M7.69665335,105.062982 C24.1161805,119.483391 40.5357077,123.603508 56.9552348,117.423332 C73.374762,111.243157 82.0976358,107.12304 83.1238562,105.062982 C76.9665335,131.843742 72.3485415,147.29418 69.2698802,151.414297 C64.6518882,157.594472 60.0338962,165.319692 41.5619281,162.229604 C23.0899601,159.139516 18.4756744,150.043904 15.3933067,143.689078 C13.3383949,139.452527 10.7728438,126.577162 7.69665335,105.062982 Z" id="Path-32" fill="url(#linearGradient-3)"></path>
</g>
<path d="M39.482843,103.915493 C40.756772,109.023474 41.393736,111.577465 41.393736,111.577465 C41.393736,111.577465 41.393736,113.492958 43.30463,113.492958 C44.578558,113.492958 45.215523,112.85446 45.215523,111.577465 L43.30463,102 L39.482843,103.915493 Z" id="Path-34" fill="#7CCBC7"></path>
<path d="M48.0818631,106.645324 C48.0818631,107.750162 48.0818631,108.855 48.0818631,109.959839 C48.0818631,111.617096 50.5230481,112.777818 50.5230481,111.534875 C50.5230481,110.706246 50.6647661,108.964574 50.9482031,106.309859 L48.0818631,106.645324 Z" id="Path-35" fill="#8FD7D4" transform="translate(49.515033, 109.183099) rotate(11.000000) translate(-49.515033, -109.183099) "></path>
</g>
</g>
<g id="Group-40">
<g id="Group-39" transform="translate(0.000000, 71.000000)">
<rect id="Rectangle-6" stroke="#5763AB" stroke-width="12" fill="#DDDDFC" x="37.1969112" y="0" width="332.725869" height="186.496296" rx="7"></rect>
<rect id="Rectangle-7" fill="#EDE9F5" x="0" y="186.244444" width="404" height="9.37777778"></rect>
<path d="M166.903475,186.244444 L241.776062,186.244444 C241.776062,189.697247 238.977012,192.496296 235.52421,192.496296 L173.155327,192.496296 C169.702524,192.496296 166.903475,189.697247 166.903475,186.244444 Z" id="Rectangle-7" fill="#FAF8FF"></path>
<path d="M0,195.622222 L404,195.622222 C404,200.801426 399.801426,205 394.622222,205 L9.37777778,205 C4.19857412,205 6.34269518e-16,200.801426 0,195.622222 Z" id="Rectangle-7" fill="#AAAAD3"></path>
</g>
<path d="M116,34 L297,34 C301.418278,34 305,37.581722 305,42 L305,245 L108,245 L108,42 C108,37.581722 111.581722,34 116,34 Z" id="Rectangle-8" fill="url(#linearGradient-4)"></path>
<rect id="Rectangle-8" fill="#FFFFFF" x="128" y="51" width="156" height="193"></rect>
<rect id="Rectangle-12-Copy" fill="#EDE9F5" opacity="0.678781703" x="173" y="101" width="100" height="16" rx="8"></rect>
<rect id="Rectangle-12-Copy" fill="#EDE9F5" opacity="0.678781703" x="209" y="120" width="64" height="16" rx="8"></rect>
<rect id="Rectangle-12-Copy-2" fill="#EDE9F5" opacity="0.678781703" x="209" y="201" width="64" height="16" rx="8"></rect>
<path d="M162,29.7837838 L251,29.7837838 L251,58 L162,58 L162,29.7837838 Z M206.5,39.1891892 C195.720758,39.1891892 186.982456,30.4163904 186.982456,19.5945946 C186.982456,8.77279882 195.720758,0 206.5,0 C217.279242,0 226.017544,8.77279882 226.017544,19.5945946 C226.017544,30.4163904 217.279242,39.1891892 206.5,39.1891892 Z M206.5,29.7837838 C212.105206,29.7837838 216.649123,25.2219284 216.649123,19.5945946 C216.649123,13.9672608 212.105206,9.40540541 206.5,9.40540541 C200.894794,9.40540541 196.350877,13.9672608 196.350877,19.5945946 C196.350877,25.2219284 200.894794,29.7837838 206.5,29.7837838 Z" id="Oval-6" fill="url(#linearGradient-5)"></path>
<circle id="Oval-7" fill="#EDE9F5" cx="172" cy="108" r="32"></circle>
<circle id="Oval-7-Copy" fill="#EDE9F5" cx="172" cy="188" r="21"></circle>
<path d="M199.077113,76.4755965 C200.409209,74.7892907 202.850672,74.5064587 204.530272,75.8438737 C206.209871,77.1812887 206.491579,79.6324987 205.159482,81.3188045 L169.449231,126.524542 C167.845034,128.555301 164.750029,128.477178 163.2495,126.368051 L147.723304,104.544591 C146.477292,102.793209 146.881329,100.359309 148.625746,99.1083216 C150.370163,97.8573347 152.794385,98.2629848 154.040397,100.014367 L166.570233,117.626175 L199.077113,76.4755965 Z" id="Path-55" fill="#F94A8A"></path>
<path d="M190.423854,166.974451 C191.304393,165.860852 192.918241,165.674077 194.028485,166.557275 C195.138729,167.440474 195.324942,169.059197 194.444403,170.172795 L170.839322,200.025641 C169.778921,201.366708 167.73307,201.315117 166.741195,199.922298 L156.478116,185.510579 C155.654481,184.354006 155.921556,182.746713 157.074646,181.92059 C158.227735,181.094466 159.830187,181.362348 160.653822,182.518921 L168.936256,194.149361 L190.423854,166.974451 Z" id="Path-55-Copy" fill="#B4AAD7"></path>
<rect id="Rectangle-12" fill="#EDE9F5" x="203" y="182" width="72" height="16" rx="8"></rect>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

29
static/images/html-5.svg Normal file
View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 110 110" style="enable-background:new 0 0 110 110;" xml:space="preserve">
<style type="text/css">
.st0{fill:#818CCD;}
.st1{fill:#5763AB;}
.st2{fill:#92DEE2;}
.st3{fill:#29D0CA;}
.st4{fill:none;}
</style>
<title>HTML_5</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="HTML_5">
<g id="Group-2">
<g id="Group-66" transform="translate(17.000000, 16.000000)">
<polygon id="Path-57" class="st0" points="0,7.2 38,0 38,79 5.7,62.9 "/>
<polygon id="Path-57_1_" class="st1" points="77,7.2 38,0 38,79 71.3,62.9 "/>
<polygon id="Path-98" class="st2" points="39,23 39,16 20,16 22.3,39 39,39 39,31 28.1,31 28.1,23 "/>
<polygon id="Path-99" class="st2" points="22,45 29.7,45 30.4,50.7 39,52.9 39,60 23.5,56.4 "/>
<polygon id="Path-100" class="st3" points="58,16 39,16 39,23 58,23 "/>
<polygon id="Path-101" class="st3" points="39,31 57,31 54.7,56.2 39,60 39,52.5 48.7,50.3 49,39.1 39,39.1 "/>
</g>
<rect id="Rectangle-9" class="st4" width="110" height="110"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<title id="simpleicons-instagram-icon">Instagram icon</title>
<path class="st0" d="M12,0C8.7,0,8.3,0,7.1,0.1C5.8,0.1,4.9,0.3,4.1,0.6C3.4,0.9,2.7,1.3,2,2S0.9,3.3,0.6,4.1
C0.3,4.9,0.1,5.8,0.1,7.1C0,8.3,0,8.7,0,12s0,3.7,0.1,4.9c0.1,1.3,0.3,2.1,0.6,2.9C0.9,20.6,1.3,21.3,2,22c0.7,0.7,1.3,1.1,2.1,1.4
c0.8,0.3,1.6,0.5,2.9,0.6C8.3,24,8.7,24,12,24s3.7,0,4.9-0.1c1.3-0.1,2.1-0.3,2.9-0.6c0.8-0.3,1.5-0.7,2.1-1.4
c0.7-0.7,1.1-1.3,1.4-2.1c0.3-0.8,0.5-1.6,0.6-2.9C24,15.7,24,15.3,24,12s0-3.7-0.1-4.9c-0.1-1.3-0.3-2.1-0.6-2.9
C23.1,3.4,22.7,2.7,22,2c-0.7-0.7-1.3-1.1-2.1-1.4c-0.8-0.3-1.6-0.5-2.9-0.6C15.7,0,15.3,0,12,0z M12,2.2c3.2,0,3.6,0,4.9,0.1
c1.2,0.1,1.8,0.2,2.2,0.4c0.6,0.2,1,0.5,1.4,0.9c0.4,0.4,0.7,0.8,0.9,1.4c0.2,0.4,0.4,1.1,0.4,2.2c0.1,1.3,0.1,1.6,0.1,4.8
s0,3.6-0.1,4.9c-0.1,1.2-0.3,1.8-0.4,2.2c-0.2,0.6-0.5,1-0.9,1.4c-0.4,0.4-0.8,0.7-1.4,0.9c-0.4,0.2-1.1,0.4-2.2,0.4
c-1.3,0.1-1.6,0.1-4.9,0.1c-3.2,0-3.6,0-4.9-0.1c-1.2-0.1-1.8-0.3-2.2-0.4c-0.6-0.2-1-0.5-1.4-0.9c-0.4-0.4-0.7-0.8-0.9-1.4
c-0.2-0.4-0.4-1.1-0.4-2.2c0-1.3-0.1-1.6-0.1-4.8c0-3.2,0-3.6,0.1-4.9C2.2,6,2.4,5.3,2.6,4.9c0.2-0.6,0.5-1,0.9-1.4
c0.4-0.4,0.8-0.7,1.4-0.9c0.4-0.2,1.1-0.4,2.2-0.4C8.4,2.1,8.7,2.1,12,2.2C12,2.1,12,2.2,12,2.2z M12,5.8c-3.4,0-6.2,2.8-6.2,6.2
c0,3.4,2.8,6.2,6.2,6.2c3.4,0,6.2-2.8,6.2-6.2C18.2,8.6,15.4,5.8,12,5.8z M12,16c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4
S14.2,16,12,16z M19.8,5.6c0,0.8-0.6,1.4-1.4,1.4C17.6,7,17,6.4,17,5.6s0.6-1.4,1.4-1.4C19.2,4.2,19.8,4.8,19.8,5.6z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

55
static/images/jenkins.svg Normal file
View File

@@ -0,0 +1,55 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 110 110" style="enable-background:new 0 0 110 110;" xml:space="preserve">
<style type="text/css">
.st0{fill:#92DEE2;}
.st1{fill:#5763AB;stroke:#818CCD;}
.st2{fill:#818CCD;}
.st3{fill:none;}
</style>
<title>Jenkins</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="Jenkins">
<g id="Group">
<g id="Group-83" transform="translate(19.674797, 8.048780)">
<ellipse id="Oval-20" class="st0" cx="37.1" cy="48.3" rx="37.1" ry="40"/>
<path id="Path-134" class="st1" d="M55.5,82.6l1.1,7.1c-2.8,1.6-4.4,2.2-4.8,1.8c-0.4-0.4-0.4,0.7,0,3.4
c-9.4,2.2-15.3,2.2-17.6,0c-2.3-2.2-3.2-5.6-2.8-10c-9.7-1.6-14.9-3.4-15.5-5.2c-0.9-2.7,0-15-4.8-26.2
c-1.4-2.1,7.9-5.3,15.1-8.1c-0.9-3.3-1.8-6.7-2.9-10.3c-4.2,1.6-6.6,0.1-7.4-4.6s-0.4-7.2,1.1-7.8c-1.2-6.8-0.5-10.4,2-10.8
c1.3-2.1,5-11.3,22.3-12s21.1,13.4,21.1,15.8s1.2,21.9-7,28.1c4.2,2.5,7.7,4.6,10.4,6.2l-5.9,16.6c4.7-2.7,7.6-3.4,8.9-2
c1.8,2,6.5,7.6,5.1,10.8c-1.4,3.2-2.1,5-5.1,5c-2,0-3.7-0.6-5.2-1.7h-7.1L55.5,82.6z"/>
<path id="Path-135" class="st2" d="M23.9,27.6h2.6C24.7,19,24.3,13.8,25.2,12c1.3-2.7-7.8,0.7-8.8,2.7c-0.6,1.3-0.9,4.2-0.9,8.7
c3.1-1.6,5-1.9,5.5-1.2C21.5,22.9,22.5,24.8,23.9,27.6z"/>
<path id="Path-136" class="st2" d="M25.8,10.2C31.2,3.6,34.6,0.2,36,0c2.1-0.3-16,6.1-16.3,9.2C19.5,11.2,21.5,11.6,25.8,10.2z"
/>
<path id="Path-137" class="st2" d="M40.4,8.3c-3.1,2.7-4.7,4.5-4.7,5.5c1.6-1.6,3.4-2.7,5.5-3.4L40.4,8.3z"/>
<path id="Path-138" class="st2" d="M52.4,11.7c-0.6-0.8,0.8-1.9,4.1-3.4c2.7,2.5,4,4.2,4,5.3C60.5,15.1,58.3,8.8,52.4,11.7z"/>
<path id="Path-139" class="st2" d="M38.5,23.5c2.4,1.2,4.8,1.3,6,1.3c2,0,2.6-0.8,2-2.1c-1.1-2.3-2.3-3.7-4-6.2l-0.6,0.7
c1.5,2.2,2.1,3.6,3.5,5.5c0.6,0.7-0.9,0.4-1.7,0.4c-1.1,0-2.4,0.8-4.7-0.4L38.5,23.5z"/>
<path id="Path-139_1_" class="st2" d="M52.2,24c3.5,1.7,6.2,0.7,5.3-2c-0.8-2.3-1.6-3.5-2.4-5.4l-0.2,0.6
c0.8,1.6,1.2,2.8,1.8,4.9c0.6,1.9-1.2,2.5-4.3,1L52.2,24z"/>
<path id="Path-140" class="st2" d="M48.3,20c2.8,5.3,5.3,8.7,7.4,10.1c0.3,0.2,0.3,0.2-0.1,0.6c-0.4,0.5-1.3,1.1-2.5,1.7
c-2.3,1.1-5.1,1.9-5.8,1.7c-1.3-0.3-1.8-1.7-1.2-2l-1-1.4c-2.2,1.2-1,4.3,1.6,5c1.3,0.3,4.5-0.6,7.2-1.9
c1.4-0.7,2.5-1.4,3.1-2.1c0.9-1,0.9-2.2-0.3-3c-1.8-1.3-4.2-4.4-6.9-9.5L48.3,20z"/>
<path id="Path-141" class="st2" d="M49.5,38.6v-1.9c-3.7,0-6.4-0.3-8.2-0.9C41.5,37.2,44.3,38.1,49.5,38.6z"/>
<path id="Path-142" class="st2" d="M52.2,37.3v1.3c2.6-0.6,4.5-1.5,5.5-2.8C56.4,36.4,54.6,36.9,52.2,37.3z"/>
<path id="Path-143" class="st2" d="M49.3,42c-3.4,0.6-5.6,0.8-6.6,0.3c-0.6-0.3-1.8-0.7-2.7-1.7c-0.2-0.2-0.7-0.9-1.4-2
c0,1.1,2,4.1,3.6,5c1.3,0.7,3.7,0.7,7.4,0.1L49.3,42z"/>
<path id="Path-144" class="st2" d="M33.2,93.8c-1.6-4.2-4.5-24.5-3.7-25.1c0.5-0.4,7-0.6,19.6-0.6L50,81h4.3l2.5,8.6
c-1.9,1.1-3.5,1.5-4.9,1.3c-2-0.3,2,1.6,0,3C50,95.1,42.1,97.4,33.2,93.8z"/>
<polygon id="Path-145" class="st2" points="50.7,56.2 57.7,56.9 56.7,49.7 49.9,52.6 45.9,53.3 40.1,51.8 35.7,50.9 37.4,60.7
45.9,56.2 "/>
<path id="Path-146" class="st2" d="M33,41.9c4.7,6.6,7.6,9.8,8.7,10.4c0.8,0.4,7.9-0.1,10.6-0.7c3.5-0.7,6.4-3.4,8.2-5.9l-1,0.7
c-1.7,2.3-4.2,3.7-7.5,4.4c-2.5,0.5-6.7,1-9.5,0.6c-1.3-0.2-4.2-3.6-8.7-9.9L33,41.9z"/>
<polygon id="Path-147" class="st2" points="39.3,61.7 46.2,56.9 50.3,67.9 "/>
<polygon id="Path-148" class="st2" points="51.6,56.9 55.2,57.9 56.7,59.7 51.2,70.7 "/>
<path id="Path-149" class="st2" d="M54.4,79.5l-1.3-9.7l3.7-0.7c6.9-3.7,10.9-5.3,11.8-4.6c1.5,0.9,8.1,7.7,6.1,11.4
S71.2,81,68.6,81c-1.7,0-3.7-0.5-6.1-1.4l-4.1-0.7L54.4,79.5z"/>
</g>
<rect id="Rectangle-9" class="st3" width="110" height="110"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.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 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<title id="simpleicons-linkedin-icon">LinkedIn icon</title>
<path class="st0" d="M20.4,20.5h-3.6v-5.6c0-1.3,0-3-1.9-3c-1.9,0-2.1,1.4-2.1,2.9v5.7H9.4V9h3.4v1.6h0c0.5-0.9,1.6-1.9,3.4-1.9
c3.6,0,4.3,2.4,4.3,5.5L20.4,20.5L20.4,20.5z M5.3,7.4c-1.1,0-2.1-0.9-2.1-2.1c0-1.1,0.9-2.1,2.1-2.1c1.1,0,2.1,0.9,2.1,2.1
C7.4,6.5,6.5,7.4,5.3,7.4z M7.1,20.5H3.6V9h3.6V20.5z M22.2,0H1.8C0.8,0,0,0.8,0,1.7v20.5c0,1,0.8,1.7,1.8,1.7h20.5
c1,0,1.8-0.8,1.8-1.7V1.7C24,0.8,23.2,0,22.2,0L22.2,0z"/>
</svg>

After

Width:  |  Height:  |  Size: 884 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 370.5 91.8"><title>Asset 2</title><path d="M99.4,39.6h17c1.6,0,.9-2.3-.4-2.3H99c-1.6,0-1,2.3.4,2.3Z" style="fill:#1d1d1b"/><path d="M368.5,36.2a9.7,9.7,0,0,1-.7,3.9,9.4,9.4,0,0,1-5,4.9,8.4,8.4,0,0,1-3.5.7,9.2,9.2,0,0,1-3.8-.7,10,10,0,0,1-2.9-2,9.8,9.8,0,0,1-2-3,11.7,11.7,0,0,1-.7-3.8,9.9,9.9,0,0,1,2.8-6.8,9.5,9.5,0,0,1,3-1.9,8.6,8.6,0,0,1,3.6-.7,8.4,8.4,0,0,1,3.5.7,9.4,9.4,0,0,1,5,4.9A9.2,9.2,0,0,1,368.5,36.2Zm-2,0a7.8,7.8,0,0,0-.6-3.1,7,7,0,0,0-1.5-2.5,7.3,7.3,0,0,0-2.3-1.6,6.7,6.7,0,0,0-2.8-.6,6.8,6.8,0,0,0-2.9.6,6.3,6.3,0,0,0-2.3,1.6,7.2,7.2,0,0,0-1.6,2.5,10.1,10.1,0,0,0-.5,3.1,8.1,8.1,0,0,0,.5,3.1,7.2,7.2,0,0,0,1.4,2.4,6.3,6.3,0,0,0,2.3,1.7,7.5,7.5,0,0,0,3.1.6,6.6,6.6,0,0,0,2.8-.5,7.3,7.3,0,0,0,2.3-1.6,7,7,0,0,0,1.5-2.5A7.9,7.9,0,0,0,366.5,36.2Zm-9.1,5.4h-1.7V31.2h3.9a4.8,4.8,0,0,1,2.9.7,2.7,2.7,0,0,1,.9,2.3,2.8,2.8,0,0,1-.7,2.1,3.5,3.5,0,0,1-2,.7l3,4.6h-2L359,37.2h-1.6Zm1.9-5.9h.9l.8-.2.5-.5a1.5,1.5,0,0,0,.2-.9c0-.4,0-.6-.2-.8a1,1,0,0,0-.5-.4l-.8-.2h-2.8v3.1Z" style="fill:#1d1d1b"/><path d="M20.2,63.1C1.9,63.1.6,52.9.2,49.6-1.5,36.9,10.6,18.1,36.3,8.4A39.2,39.2,0,0,1,61.8,7.2,28.7,28.7,0,0,1,71.6,12a1,1,0,1,1-1.3,1.5c-.1-.1-13.6-10.7-33.3-3.2C12.3,19.6.6,37.4,2.1,49.3c1.1,8.2,6.7,11.8,18.1,11.8,9.6,0,31.7-10.7,49.2-23.9a.9.9,0,0,1,1.3.1,1,1,0,0,1,.1,1.3A13.7,13.7,0,0,0,69.4,41c3.1-.7,7.8-1,11.4,1a9.2,9.2,0,0,1,5,8.8A10.3,10.3,0,0,1,80,59.6a8.5,8.5,0,0,1-7.3-.3c-3.7-1.9-6.3-6.2-7-9.5a12,12,0,0,1,.4-6,1,1,0,0,1-.8-.6.6.6,0,0,1,0-.6C48.5,54.2,29.2,63.1,20.2,63.1ZM68.4,43.2a10.9,10.9,0,0,0-.7,6.2c.6,2.7,2.8,6.5,5.9,8.1a6.2,6.2,0,0,0,5.6.2,8.2,8.2,0,0,0,4.6-7,7.2,7.2,0,0,0-3.9-6.9C76.2,41.7,71,42.6,68.4,43.2Zm-1.5-1.7h0Z" style="fill:#1d1d1b"/><path d="M297.3,91.8a5,5,0,0,1-3.8-2.2c-4.4-5.7,3.7-20,19-33.5.7-2.8,1.2-5.5,1.8-8.2a11.1,11.1,0,0,1-2.9,1.4,7.1,7.1,0,0,1-7.8-2.5c-1.7-2.1-1.2-4.6-.2-6.5l-1.5,1c-2.8,1.7-4.8,4.2-6.9,6.7s-2,2.5-3.1,3.6a4,4,0,0,1-2.5,1.4c-2.4.3-4.5-1.7-5-3.8a13.8,13.8,0,0,1,.2-5,2.8,2.8,0,0,1,.1-.9,4.2,4.2,0,0,0-1.4-3.8,8.7,8.7,0,0,0-7.1-2c-5.5,1-7.7,5.7-10,10.7L265,50.9a1,1,0,0,1-1.9-.7c.5-2.6,1-4.8,1.6-7.3a26.1,26.1,0,0,1,.6-2.7c0-.2.1-.5.1-.7l-1.6,2.9a33.1,33.1,0,0,1-4.5,7.1c-2.8,3.2-5.1,2.6-6.3,2a7.7,7.7,0,0,1-3.1-5.1c-.9,2.4-2.3,4.8-4.4,5.7a4.6,4.6,0,0,1-4.2-.5,7.6,7.6,0,0,1-3.8-6.7,15.3,15.3,0,0,1,1.1-4.8c.8-2.2,1.5-4.2.2-6.3s-5.2-4.7-9.5-5.3h-1.5c-.5.6-.9,1.3-1.4,2l2.5,2.7c3.2,3.4,6.9,7.4,6,12.8-1.4,8.3-6.2,8.7-8.2,8.6-4.7-.5-9.3-5.5-9.3-10.3a5.7,5.7,0,0,0,.1-1.3c-4.1,4.7-9.1,8.4-15.3,8.1s-11.2-3.3-16.3-6.2a56.6,56.6,0,0,0-7.7-4H178c-6.7,8.1-14.5,14.1-22.3,17.1s-21.4,4.1-28.2-2.6a6.1,6.1,0,0,1-2.1-4.2c-.1-5.1,6-8.6,11.3-11.1a54.1,54.1,0,0,1,40.7-1.6C192.1,19.8,196.5,1,196.5.8a1,1,0,0,1,1.2-.8,1.1,1.1,0,0,1,.8,1.2A105.9,105.9,0,0,1,179.3,39c2.6,1.2,5.2,2.6,7.6,4,4.9,2.8,10,5.7,15.4,6,7,.3,12.5-5.2,17-11.5a38.1,38.1,0,0,1,2.3-4l.4-.6a18.1,18.1,0,0,1,1.8-2.7l-.9-1.3a1.4,1.4,0,0,1,0-.9c.5-1.4,2.2-1.7,4.1-1.7.2-.1.4,0,.7,0l1.8.3c2.4.3,8.1,1.6,11,6.1s.8,5.7,0,8.1a12.3,12.3,0,0,0-1,4.1,5.9,5.9,0,0,0,2.8,5,2.8,2.8,0,0,0,2.5.3c1.6-.6,3-3.2,4.1-7.1,2.2-8.4,5.3-9.1,6-9.2a.9.9,0,0,1,.9.6.9.9,0,0,1-.1,1.1,22.4,22.4,0,0,0-3.8,7.6c-.5,2,.4,5.5,2.1,6.5s2.3.1,3.8-1.5a38.1,38.1,0,0,0,4.3-6.8c.9-1.7,1.9-3.6,3.2-5.7.3-.4.9-1.4,1.9-1s1.1,1.2,0,6a11.7,11.7,0,0,1-.5,2c2-3.5,4.6-6.4,9.1-7.2a11.2,11.2,0,0,1,8.9,2.5,6.5,6.5,0,0,1,2,5.6c-.1.3-.1.6-.2.9a12.4,12.4,0,0,0-.1,4.3,3,3,0,0,0,2.7,2.3,3.1,3.1,0,0,0,1.3-.8l3-3.5c2.1-2.6,4.3-5.3,7.4-7.2,10.5-6.6,14.3-2.2,14.5-2a1.1,1.1,0,0,1,.1,1.2,1,1,0,0,1-1.1.4c-1.6-.4-6.2-1-7.9.5s-3,3.6-1.2,5.9a5.3,5.3,0,0,0,5.6,1.8,6.3,6.3,0,0,0,4.5-4.3c0-.2.1-.4.1-.7a1.1,1.1,0,0,1,1.2-.7.9.9,0,0,1,.8,1.1,2.4,2.4,0,0,1-.2.8l-.6,2.9-1.5,7.4c3.5-2.8,8-6,12.1-8.7a7.2,7.2,0,0,1,.6-7.7,8.1,8.1,0,0,1,3-2.6,6.2,6.2,0,0,1,5-.3c.1,0,4.3,2.3,4.5,3.8a1.1,1.1,0,0,1-.7,1.1c0,.1-4.3,2.7-9.6,6.2,3.2,3.3,10.7,5.3,39.6,7.9a1,1,0,0,1,.9,1.1,1.1,1.1,0,0,1-1.1.9c-31.4-2.8-37.8-5-41.1-8.8-4.8,3.3-10.2,7.1-13.8,10.2l-.2.2C311.9,67.5,308.8,77.8,303,87c-1.6,2.4-3.3,4.7-5.6,4.8Zm14.4-32.3c-13.6,12.8-19.7,25-16.6,28.8.8,1,1.5,1.6,2.2,1.5s2.9-2.1,4-3.9C306.4,77.8,309.4,68.8,311.7,59.5ZM159.2,37.1a51.9,51.9,0,0,0-21.7,4.6c-2.8,1.3-10.2,4.8-10.1,9.3a4.6,4.6,0,0,0,1.5,2.8c5.9,5.8,17.6,5.5,26,2.2s14.7-8.5,21.1-16.1A49.8,49.8,0,0,0,159.2,37.1Zm61.9,1.3a15.9,15.9,0,0,0-1.7,5.9c0,3.7,3.7,7.8,7.5,8.2s5.2-2.2,6-7-2.3-7.6-5.5-11.1l-2.1-2.3Q223.4,35.3,221.1,38.4Zm112.5-2.2a3.8,3.8,0,0,0-1.9.5,4.6,4.6,0,0,0-2.2,2,5.2,5.2,0,0,0-.7,5.4l9-5.8a17.8,17.8,0,0,0-2.7-1.8A4,4,0,0,0,333.6,36.2Zm5.1,1.6h0ZM225.1,28.5Z" style="fill:#1d1d1b"/></svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 586.5 141.6" style="enable-background:new 0 0 586.5 141.6;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E28F26;}
.st1{fill:#232122;}
</style>
<title>coor-logo</title>
<polygon class="st0" points="80.8,21.6 90.1,48 115.4,36 103.4,61.3 129.8,70.7 103.4,80.1 115.4,105.3 90.1,93.3 80.8,119.7
71.4,93.3 46.1,105.3 58.1,80.1 31.7,70.7 58.1,61.3 46.1,36 71.4,48 "/>
<path class="st1" d="M132.5,12.8l5.9-7.9h3.7v44.6h-5.6c-3.8-25.8-26.4-45.3-55.2-45.3C50.6,4.2,22.8,29.6,22.8,70
c0,42.7,25.7,67.4,58.1,67.4s49-18.7,55.6-43.2h5.6v44.6h-3.5l-6.8-9.8c-1.4-2-3.6-0.9-4.5-0.4c-14.3,8.1-29,13-46.4,13
C33.3,141.6,0,113.3,0,70.2C0,28.7,33.9,0,81.3,0c17.2,0,31.1,5.2,45.2,12.9C127.5,13.4,130.4,15.2,132.5,12.8z"/>
<path class="st1" d="M242.5,102.6c-6.6,0-16.5,3.1-25.2,3.1c-26.3,0-39.2-17.3-39.2-35.3s15.4-36.1,40.1-36.1
c8.8,0,16.1,1.7,22.7,1.7c0.6,5.8,1.6,11.9,2.5,17.6c0.1,0.4-0.9,0.7-1.6,0.7s-1.3-0.1-1.5-0.7c-2.2-8.4-10.8-15.2-22.6-15.2
c-16.2,0-25.5,13.8-25.5,32s9.3,31.1,25.1,31.1c13.2,0,21.2-5.8,26-16.4c0.2-0.6,0.7-0.7,1.5-0.7s1.5,0.2,1.5,0.7
C245.1,90,243.5,97,242.5,102.6z"/>
<path class="st1" d="M313.5,105.7c-23.9,0-37.8-15.8-37.8-35.3s13.9-36.1,37.8-36.1s37.9,16.5,37.9,36.1S337.5,105.7,313.5,105.7z
M313.5,38.4c-15.5,0-23.7,14.5-23.7,31.9s8.2,31.2,23.7,31.2s23.8-13.7,23.8-31.2S328.9,38.4,313.5,38.4z"/>
<path class="st1" d="M415.8,105.7c-23.9,0-37.9-15.8-37.9-35.3s14-36.1,37.9-36.1s37.9,16.5,37.9,36.1
C453.7,90,439.7,105.7,415.8,105.7z M415.8,38.4c-15.5,0-23.8,14.5-23.8,31.9s8.3,31.2,23.8,31.2s23.8-13.7,23.8-31.2
S431.2,38.4,415.8,38.4z"/>
<path class="st1" d="M555.6,103.2c-3.5,0-8.6-0.7-10.9-0.7s-7,0.7-10,0.7l-13.9-22.9c-4.2-6.5-5.6-8.3-12.7-8.3v17
c0,6.7,0.8,9.4,10.8,10.9c0.4,0,0.7,0.7,0.7,1.7s-0.3,1.9-0.7,1.9c-6.8,0-9.3-0.9-17.1-0.9s-10.5,0.9-17.2,0.9
c-0.4,0-0.8-0.9-0.8-1.9s0.4-1.7,0.8-1.7c9.9-1.5,10.6-4.2,10.6-10.9V50.8c0-6.5-0.7-9.2-10.6-10.7c-0.4-0.1-0.8-0.9-0.8-1.7
s0.4-1.9,0.8-1.9c6.7,0,10.2,0.7,18.2,0.7c6.1,0,9.8-0.6,16.4-0.6c15.5,0,24.2,6.8,24.2,17.3c0,7-6.1,12.8-14.7,16.1l13.8,20.7
c3.4,5.3,5.2,7.9,13.2,8.9c0.5,0.1,0.8,0.9,0.8,1.9S556,103.2,555.6,103.2z M516.4,41c-5.1,0-8.3,0.7-8.3,7.5v19.3
c1.9,0.2,3.8,0.3,5.7,0.3c11.5,0,15.5-4.2,15.5-14.2C529.3,45.9,526.1,41,516.4,41L516.4,41z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 586.5 141.6" style="enable-background:new 0 0 586.5 141.6;" xml:space="preserve">
<style type="text/css">
.st0{fill:#4C5F86;}
</style>
<title>coor-logo</title>
<polygon class="st0" points="80.8,21.6 90.1,48 115.4,36 103.4,61.3 129.8,70.7 103.4,80.1 115.4,105.3 90.1,93.3 80.8,119.7
71.4,93.3 46.1,105.3 58.1,80.1 31.7,70.7 58.1,61.3 46.1,36 71.4,48 "/>
<path class="st0" d="M132.5,12.8l5.9-7.9h3.7v44.6h-5.6c-3.8-25.8-26.4-45.3-55.2-45.3C50.6,4.2,22.8,29.6,22.8,70
c0,42.7,25.7,67.4,58.1,67.4s49-18.7,55.6-43.2h5.6v44.6h-3.5l-6.8-9.8c-1.4-2-3.6-0.9-4.5-0.4c-14.3,8.1-29,13-46.4,13
C33.3,141.6,0,113.3,0,70.2C0,28.7,33.9,0,81.3,0c17.2,0,31.1,5.2,45.2,12.9C127.5,13.4,130.4,15.2,132.5,12.8z"/>
<path class="st0" d="M242.5,102.6c-6.6,0-16.5,3.1-25.2,3.1c-26.3,0-39.2-17.3-39.2-35.3s15.4-36.1,40.1-36.1
c8.8,0,16.1,1.7,22.7,1.7c0.6,5.8,1.6,11.9,2.5,17.6c0.1,0.4-0.9,0.7-1.6,0.7s-1.3-0.1-1.5-0.7c-2.2-8.4-10.8-15.2-22.6-15.2
c-16.2,0-25.5,13.8-25.5,32s9.3,31.1,25.1,31.1c13.2,0,21.2-5.8,26-16.4c0.2-0.6,0.7-0.7,1.5-0.7s1.5,0.2,1.5,0.7
C245.1,90,243.5,97,242.5,102.6z"/>
<path class="st0" d="M313.5,105.7c-23.9,0-37.8-15.8-37.8-35.3s13.9-36.1,37.8-36.1s37.9,16.5,37.9,36.1
C351.4,90,337.5,105.7,313.5,105.7z M313.5,38.4c-15.5,0-23.7,14.5-23.7,31.9s8.2,31.2,23.7,31.2s23.8-13.7,23.8-31.2
S328.9,38.4,313.5,38.4z"/>
<path class="st0" d="M415.8,105.7c-23.9,0-37.9-15.8-37.9-35.3s14-36.1,37.9-36.1s37.9,16.5,37.9,36.1
C453.7,90,439.7,105.7,415.8,105.7z M415.8,38.4c-15.5,0-23.8,14.5-23.8,31.9s8.3,31.2,23.8,31.2s23.8-13.7,23.8-31.2
S431.2,38.4,415.8,38.4z"/>
<path class="st0" d="M555.6,103.2c-3.5,0-8.6-0.7-10.9-0.7s-7,0.7-10,0.7l-13.9-22.9c-4.2-6.5-5.6-8.3-12.7-8.3v17
c0,6.7,0.8,9.4,10.8,10.9c0.4,0,0.7,0.7,0.7,1.7s-0.3,1.9-0.7,1.9c-6.8,0-9.3-0.9-17.1-0.9s-10.5,0.9-17.2,0.9
c-0.4,0-0.8-0.9-0.8-1.9s0.4-1.7,0.8-1.7c9.9-1.5,10.6-4.2,10.6-10.9V50.8c0-6.5-0.7-9.2-10.6-10.7c-0.4-0.1-0.8-0.9-0.8-1.7
s0.4-1.9,0.8-1.9c6.7,0,10.2,0.7,18.2,0.7c6.1,0,9.8-0.6,16.4-0.6c15.5,0,24.2,6.8,24.2,17.3c0,7-6.1,12.8-14.7,16.1l13.8,20.7
c3.4,5.3,5.2,7.9,13.2,8.9c0.5,0.1,0.8,0.9,0.8,1.9S556,103.2,555.6,103.2z M516.4,41c-5.1,0-8.3,0.7-8.3,7.5v19.3
c1.9,0.2,3.8,0.3,5.7,0.3c11.5,0,15.5-4.2,15.5-14.2C529.3,45.9,526.1,41,516.4,41L516.4,41z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -0,0 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 243.5 98.3" style="enable-background:new 0 0 243.5 98.3;" xml:space="preserve">
<style type="text/css">
.st0{fill:#1F70C1;}
</style>
<title>ibm-logo-white</title>
<polygon class="st0" points="243.5,7 203,7 205.5,0 243.5,0 "/>
<path class="st0" d="M135.5,0h37.6l2.5,7c0,0-40.1,0.1-40.1,0S135.4,0,135.5,0z"/>
<path class="st0" d="M105.6,0c6,0.5,11.7,2.9,16.2,7H53.5V0H105.6z"/>
<rect class="st0" width="47.4" height="7"/>
<path class="st0" d="M23.7,3.5"/>
<path class="st0" d="M243.5,20.1h-45.2l2.5-6.9h42.7V20.1z"/>
<polygon class="st0" points="180.2,20.1 135.5,20.1 135.5,13.2 177.8,13.2 "/>
<path class="st0" d="M127.1,13.2c0.9,2.3,1.9,4.2,1.9,6.9H53.5v-6.9C53.5,13.2,127.1,13.2,127.1,13.2z"/>
<rect y="13.2" class="st0" width="47.4" height="7"/>
<path class="st0" d="M23.7,16.7"/>
<polygon class="st0" points="193.7,33.3 196.2,26.3 230.1,26.3 230.1,33.2 "/>
<polygon class="st0" points="182.4,26.3 184.9,33.3 148.8,33.3 148.8,26.3 "/>
<path class="st0" d="M129.6,26.3c0,2.4-0.3,4.7-1,7H108v-7H129.6z"/>
<rect x="13.2" y="26.3" class="st0" width="20.4" height="7"/>
<path class="st0" d="M23.4,29.8"/>
<rect x="67.3" y="26.3" class="st0" width="20.3" height="7"/>
<path class="st0" d="M77.4,29.8"/>
<path class="st0" d="M168.8,40.8v5.3h-20v-6.9H187l2.3,6.5c0.1,0,2.3-6.5,2.3-6.5h38.5v6.9h-19.9v-5.3l-1.9,5.3h-37.6L168.8,40.8z"
/>
<path class="st0" d="M67.3,39.2h58.3c-1.5,2.6-3.5,5-5.8,6.9H67.2L67.3,39.2z"/>
<rect x="13.2" y="39.1" class="st0" width="20.4" height="7"/>
<path class="st0" d="M23.4,42.7"/>
<rect x="210.2" y="52.3" class="st0" width="19.9" height="7"/>
<path class="st0" d="M220.1,55.8"/>
<path class="st0" d="M168.8,52.3h-20v7h20C168.8,59.3,168.9,52.3,168.8,52.3z"/>
<path class="st0" d="M206.2,52.3c-0.1,0-2.4,7-2.5,7h-28.4l-2.5-7H206.2z"/>
<path class="st0" d="M67.2,52.3h52.5c2.4,2,4.5,4.4,6.3,7H67.2V52.3z"/>
<path class="st0" d="M33.6,59.3v-7H13.2v7H33.6z"/>
<rect x="210.2" y="65.4" class="st0" width="19.9" height="7"/>
<path class="st0" d="M220.1,68.9"/>
<rect x="148.8" y="65.4" class="st0" width="20" height="6.9"/>
<path class="st0" d="M158.8,68.9"/>
<path class="st0" d="M199.1,72.4c0,0,2.4-7,2.5-7h-24.2l2.5,7H199.1z"/>
<path class="st0" d="M67.2,72.4v-7h20.7v7H67.2z"/>
<path class="st0" d="M128.9,65.4c1,2.1,1.1,4.6,1.3,7h-21.9v-7H128.9z"/>
<rect x="13.2" y="65.4" class="st0" width="20.3" height="6.9"/>
<path class="st0" d="M23.4,68.9"/>
<rect x="210.2" y="78.2" class="st0" width="33.3" height="7"/>
<path class="st0" d="M226.9,81.7"/>
<rect x="135.5" y="78.2" class="st0" width="33.4" height="7"/>
<path class="st0" d="M152.1,81.7"/>
<polygon class="st0" points="194.6,85.2 184.4,85.2 182,78.2 196.9,78.2 "/>
<path class="st0" d="M0,78.3v6.9h47.3c0.1,0,0-6.9,0-6.9H0z"/>
<path class="st0" d="M129.3,78.3c-0.5,2.3-0.9,5.1-2.6,6.9H53.5v-6.9H129.3z"/>
<polygon class="st0" points="190,98.3 189,98.3 186.7,91.3 192.4,91.3 "/>
<rect x="210.2" y="91.3" class="st0" width="33.3" height="7"/>
<path class="st0" d="M226.9,94.9"/>
<path class="st0" d="M53.5,98.4v-7h68.7c-4.8,4.5-11.1,7-17.7,7H53.5"/>
<rect x="135.5" y="91.3" class="st0" width="33.4" height="7"/>
<path class="st0" d="M152.1,94.9"/>
<path class="st0" d="M47.3,91.4v7H0v-7H47.3z"/>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -0,0 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 243.5 98.3" style="enable-background:new 0 0 243.5 98.3;" xml:space="preserve">
<style type="text/css">
.st0{fill:#4C5F86;}
</style>
<title>ibm-logo-white</title>
<polygon class="st0" points="243.5,7 203,7 205.5,0 243.5,0 "/>
<path class="st0" d="M135.5,0h37.6l2.5,7c0,0-40.1,0.1-40.1,0S135.4,0,135.5,0z"/>
<path class="st0" d="M105.6,0c6,0.5,11.7,2.9,16.2,7H53.5V0H105.6z"/>
<rect class="st0" width="47.4" height="7"/>
<path class="st0" d="M23.7,3.5"/>
<path class="st0" d="M243.5,20.1h-45.2l2.5-6.9h42.7V20.1z"/>
<polygon class="st0" points="180.2,20.1 135.5,20.1 135.5,13.2 177.8,13.2 "/>
<path class="st0" d="M127.1,13.2c0.9,2.3,1.9,4.2,1.9,6.9H53.5v-6.9H127.1z"/>
<rect y="13.2" class="st0" width="47.4" height="7"/>
<path class="st0" d="M23.7,16.7"/>
<polygon class="st0" points="193.7,33.3 196.2,26.3 230.1,26.3 230.1,33.2 "/>
<polygon class="st0" points="182.4,26.3 184.9,33.3 148.8,33.3 148.8,26.3 "/>
<path class="st0" d="M129.6,26.3c0,2.4-0.3,4.7-1,7H108v-7H129.6z"/>
<rect x="13.2" y="26.3" class="st0" width="20.4" height="7"/>
<path class="st0" d="M23.4,29.8"/>
<rect x="67.3" y="26.3" class="st0" width="20.3" height="7"/>
<path class="st0" d="M77.4,29.8"/>
<path class="st0" d="M168.8,40.8v5.3h-20v-6.9H187l2.3,6.5c0.1,0,2.3-6.5,2.3-6.5h38.5v6.9h-19.9v-5.3l-1.9,5.3h-37.6L168.8,40.8z"
/>
<path class="st0" d="M67.3,39.2h58.3c-1.5,2.6-3.5,5-5.8,6.9H67.2L67.3,39.2z"/>
<rect x="13.2" y="39.1" class="st0" width="20.4" height="7"/>
<path class="st0" d="M23.4,42.7"/>
<rect x="210.2" y="52.3" class="st0" width="19.9" height="7"/>
<path class="st0" d="M220.1,55.8"/>
<path class="st0" d="M168.8,52.3h-20v7h20C168.8,59.3,168.9,52.3,168.8,52.3z"/>
<path class="st0" d="M206.2,52.3c-0.1,0-2.4,7-2.5,7h-28.4l-2.5-7H206.2z"/>
<path class="st0" d="M67.2,52.3h52.5c2.4,2,4.5,4.4,6.3,7H67.2V52.3z"/>
<path class="st0" d="M33.6,59.3v-7H13.2v7H33.6z"/>
<rect x="210.2" y="65.4" class="st0" width="19.9" height="7"/>
<path class="st0" d="M220.1,68.9"/>
<rect x="148.8" y="65.4" class="st0" width="20" height="6.9"/>
<path class="st0" d="M158.8,68.9"/>
<path class="st0" d="M199.1,72.4c0,0,2.4-7,2.5-7h-24.2l2.5,7H199.1z"/>
<path class="st0" d="M67.2,72.4v-7h20.7v7H67.2z"/>
<path class="st0" d="M128.9,65.4c1,2.1,1.1,4.6,1.3,7h-21.9v-7H128.9z"/>
<rect x="13.2" y="65.4" class="st0" width="20.3" height="6.9"/>
<path class="st0" d="M23.4,68.9"/>
<rect x="210.2" y="78.2" class="st0" width="33.3" height="7"/>
<path class="st0" d="M226.9,81.7"/>
<rect x="135.5" y="78.2" class="st0" width="33.4" height="7"/>
<path class="st0" d="M152.1,81.7"/>
<polygon class="st0" points="194.6,85.2 184.4,85.2 182,78.2 196.9,78.2 "/>
<path class="st0" d="M0,78.3v6.9h47.3c0.1,0,0-6.9,0-6.9H0z"/>
<path class="st0" d="M129.3,78.3c-0.5,2.3-0.9,5.1-2.6,6.9H53.5v-6.9H129.3z"/>
<polygon class="st0" points="190,98.3 189,98.3 186.7,91.3 192.4,91.3 "/>
<rect x="210.2" y="91.3" class="st0" width="33.3" height="7"/>
<path class="st0" d="M226.9,94.9"/>
<path class="st0" d="M53.5,98.4v-7h68.7c-4.8,4.5-11.1,7-17.7,7H53.5"/>
<rect x="135.5" y="91.3" class="st0" width="33.4" height="7"/>
<path class="st0" d="M152.1,94.9"/>
<path class="st0" d="M47.3,91.4v7H0v-7H47.3z"/>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
static/images/logo-imcg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" 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 560.6 185.2" style="enable-background:new 0 0 560.6 185.2;" xml:space="preserve">
<style type="text/css">
.st0{fill:#004684;}
</style>
<title>kinnarps-logo</title>
<path class="st0" d="M560.6,134.2l-3.9-6.9H484c0,0-33.4-39.9-33.4-40.3l-11.8,12.8c0-5.6-3.9-14.7-12.8-14.7s-14.1,8.4-19.5,15.7
V88l-21.7,2.9c0,7-3.3,13.8-5.9,13.8c-6.2,0,0.2-17.7-5.9-17.7s-13.6,11-19.7,16.7V86l-20.6,4.9v37.4l-6.9,6.8
c-2.1,0-4.6,0.5-5.9-1.9V90l-20.6-4l-1,4c-2.7-3.4-4-5.6-10.1-5.6c-16.8,0-17.9,13.6-17.9,24.8v20.4c-1.5,2.7-5.4,7.5-8.2,7.5
c-1,0-2.4-2.1-2.6-3.2v-40c0,0-3.5-7.7-9.5-7.7s-13.9,8.9-20.5,14.6V87l-21.6,3.9v36.4l-6.8,7.8c-1.3,1.2-3.4,1-4.5-0.3
c-0.1-0.2-0.3-0.4-0.4-0.6V93.9c0,0-2-7.3-8.9-7.3s-14,9.3-20.4,14.2V87l-20.8,3.9v36.4l-7.9,7.8c-1.7,0.7-3.2-0.1-3.9-1.9V88
l-20.7,2.9v37.4l-7.8,7.8C93,121.9,94,98.5,73.4,90.9c24.5-25.5,49.1-50.8,70.7-77.6h-29.5C99.9,35.9,82,57.2,63.5,78.2
c1.5-22.4,8.9-44.7,8.9-68.8c-2.5-6.8-7.9-12.2-18.7-7.8C38.3,12.1,21.1,26.3,11.5,42.8C6.8,51.5-8.7,75.2,6.6,75.2
c10.5,0,25.5-12.2,25.5-22.6c0-4.6-7.8-3.9-7.8-3.9c6.3-13.3,18.4-26,30.4-35.4l1,1c-7.6,27.7-12,57-22.6,83.5
c-11.8,6.4-26,15-28.5,29.5c1,4.9,5.2,8.3,10.8,6.9c3.4,0,5.9-5,8.9-3c-3.5,10.3-7.1,20.7-9.9,31.4l20.7,12.8
c7.1-21.1,12.7-43.2,18.6-64.8c-0.2-3.7,4-5.2,6.9-5.9c13.1,13.9,13.5,35.1,29.5,46.2c10.6,5.6,17.5-5.4,23.5-10.8
c0,0,4.9,11.8,8.9,11.8c14.2,0,18.4-5.8,23.6-12.8v12.8h20.8v-38.4c2.6-3,3.2-7.8,7.6-7.8c0.9,0,0.8,2.4,1,3.7v29.3
c0,5.4,5.7,13.2,11.5,13.2c11.2,0,11.5-4.6,21-12.8v12.8h21.7v-38.4c2.6-3.3,2.9-7.8,7.3-7.8c0.6,1.3,1.1,2.6,1.3,4v27.8
c0.8,6,3.1,11.2,10,14.4c10.3,2.9,16-7.4,22.9-12.8c0,3.9,6.3,13.3,11.7,13.3s10.9-5,15.5-11.4c3.7,5.5,10.1,11.4,18.7,10.9
c6.2-2.5,10.6-7.4,15.7-11.8v11.8h20.6v-37.4l3-2.9c3.7-5.3,8.3,0.2,11.8,1.9c5.8,2.5,13.7,0.5,16.2-5.9v77.6h22.7v-35.6
c0,0,4.3,1.7,6.4,1.7c10,0,27.3-30.4,27.3-43.7c-0.3,0,15.8,18.7,15.8,18.7c-4.1,2.6-18.9-4.2-17.7,6.9c0.7,2.8,33.6,18.5,37.3,18.7
c5.4,0,10.4-3.1,12.8-7.9c1.4-2.5,1.2-7.5-0.3-10c22.1,0,49.9,0.3,72,0.2L560.6,134.2z M19.3,123.4h-3.9c2.5-5.2,7.9-11.6,13.8-12.8
C29.5,117.2,23.8,119.4,19.3,123.4L19.3,123.4z M298.4,129.2c0,2.1-2.1,5-3.9,5h-2.9c-1.6-1.6-2.4-24.5-1-35.4
c2.9-5.7,5.9,1,7.8,2.9V129.2L298.4,129.2z M407,112.9c1.1-2,4.1-6.2,7.2-6.2c0.9,0,1.5,2,1.8,3.9c0,3.6,0.2,9.4,0.2,13.7l-9.2,9.9
V112.9z M412.3,142h-1l4.9-6.9C417.7,138.6,414,140.7,412.3,142z M454.5,135.1h7.9l6.8,8.9L454.5,135.1L454.5,135.1z"/>
<path class="st0" d="M476.8,83.8c1.4,1.4,2.1,3.3,2.1,5.2c0,2-0.7,3.9-2.1,5.3s-3.3,2.1-5.2,2.1c-2,0.1-3.8-0.7-5.2-2.1
c-1.4-1.4-2.2-3.3-2.2-5.3c0-4.1,3.4-7.4,7.5-7.3C473.6,81.7,475.4,82.4,476.8,83.8L476.8,83.8z M477.6,83c-3.3-3.3-8.7-3.3-12,0
c-1.6,1.6-2.6,3.7-2.5,6c0,2.3,0.8,4.5,2.4,6.1s3.8,2.6,6.1,2.5c2.3,0.1,4.5-0.8,6-2.5c1.7-1.6,2.6-3.8,2.6-6.1
C480.2,86.7,479.3,84.5,477.6,83z M472.9,88.6c-0.5,0.2-1.1,0.3-1.6,0.2h-1.5v-3.4h1.4c0.7-0.1,1.4,0.1,2,0.4
c0.7,0.6,0.8,1.7,0.2,2.4C473.3,88.4,473.1,88.5,472.9,88.6L472.9,88.6z M468.1,93.7h1.7V90h1.3c0.6-0.1,1.2,0,1.8,0.3
c0.6,0.3,0.9,1,0.9,2.1v1.1h1.5c0-0.2-0.1-0.3-0.1-0.5v-1.4c0-0.5-0.2-1.1-0.5-1.5c-0.4-0.5-1-0.8-1.6-0.9c0.5-0.1,0.9-0.2,1.3-0.4
c0.6-0.4,0.9-1.2,0.9-1.9c0.1-1-0.4-2-1.4-2.4c-0.8-0.2-1.7-0.3-2.6-0.3H468L468.1,93.7L468.1,93.7z"/>
<polygon class="st0" points="140.9,64.5 133.2,64.5 138.6,59.1 133.3,53.7 127.9,59.1 127.9,51.5 120.2,51.5 120.2,59.1 114.9,53.7
109.5,59.1 114.9,64.5 107.2,64.5 107.2,72.1 114.9,72.1 109.5,77.5 114.9,82.9 120.2,77.5 120.2,85.1 127.9,85.1 127.9,77.5
133.3,82.9 138.6,77.5 133.2,72.1 140.9,72.1 "/>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" 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 560.6 185.2" style="enable-background:new 0 0 560.6 185.2;" xml:space="preserve">
<style type="text/css">
.st0{fill:#4C5F86;}
</style>
<title>kinnarps-logo</title>
<path class="st0" d="M560.6,134.2l-3.9-6.9H484c0,0-33.4-39.9-33.4-40.3l-11.8,12.8c0-5.6-3.9-14.7-12.8-14.7s-14.1,8.4-19.5,15.7
V88l-21.7,2.9c0,7-3.3,13.8-5.9,13.8c-6.2,0,0.2-17.7-5.9-17.7s-13.6,11-19.7,16.7V86l-20.6,4.9v37.4l-6.9,6.8
c-2.1,0-4.6,0.5-5.9-1.9V90l-20.6-4l-1,4c-2.7-3.4-4-5.6-10.1-5.6c-16.8,0-17.9,13.6-17.9,24.8v20.4c-1.5,2.7-5.4,7.5-8.2,7.5
c-1,0-2.4-2.1-2.6-3.2v-40c0,0-3.5-7.7-9.5-7.7s-13.9,8.9-20.5,14.6V87l-21.6,3.9v36.4l-6.8,7.8c-1.3,1.2-3.4,1-4.5-0.3
c-0.1-0.2-0.3-0.4-0.4-0.6V93.9c0,0-2-7.3-8.9-7.3s-14,9.3-20.4,14.2V87l-20.8,3.9v36.4l-7.9,7.8c-1.7,0.7-3.2-0.1-3.9-1.9V88
l-20.7,2.9v37.4l-7.8,7.8C93,121.9,94,98.5,73.4,90.9c24.5-25.5,49.1-50.8,70.7-77.6h-29.5C99.9,35.9,82,57.2,63.5,78.2
c1.5-22.4,8.9-44.7,8.9-68.8c-2.5-6.8-7.9-12.2-18.7-7.8C38.3,12.1,21.1,26.3,11.5,42.8C6.8,51.5-8.7,75.2,6.6,75.2
c10.5,0,25.5-12.2,25.5-22.6c0-4.6-7.8-3.9-7.8-3.9c6.3-13.3,18.4-26,30.4-35.4l1,1c-7.6,27.7-12,57-22.6,83.5
c-11.8,6.4-26,15-28.5,29.5c1,4.9,5.2,8.3,10.8,6.9c3.4,0,5.9-5,8.9-3c-3.5,10.3-7.1,20.7-9.9,31.4l20.7,12.8
c7.1-21.1,12.7-43.2,18.6-64.8c-0.2-3.7,4-5.2,6.9-5.9c13.1,13.9,13.5,35.1,29.5,46.2c10.6,5.6,17.5-5.4,23.5-10.8
c0,0,4.9,11.8,8.9,11.8c14.2,0,18.4-5.8,23.6-12.8v12.8h20.8v-38.4c2.6-3,3.2-7.8,7.6-7.8c0.9,0,0.8,2.4,1,3.7v29.3
c0,5.4,5.7,13.2,11.5,13.2c11.2,0,11.5-4.6,21-12.8v12.8h21.7v-38.4c2.6-3.3,2.9-7.8,7.3-7.8c0.6,1.3,1.1,2.6,1.3,4v27.8
c0.8,6,3.1,11.2,10,14.4c10.3,2.9,16-7.4,22.9-12.8c0,3.9,6.3,13.3,11.7,13.3s10.9-5,15.5-11.4c3.7,5.5,10.1,11.4,18.7,10.9
c6.2-2.5,10.6-7.4,15.7-11.8v11.8h20.6v-37.4l3-2.9c3.7-5.3,8.3,0.2,11.8,1.9c5.8,2.5,13.7,0.5,16.2-5.9v77.6h22.7v-35.6
c0,0,4.3,1.7,6.4,1.7c10,0,27.3-30.4,27.3-43.7c-0.3,0,15.8,18.7,15.8,18.7c-4.1,2.6-18.9-4.2-17.7,6.9c0.7,2.8,33.6,18.5,37.3,18.7
c5.4,0,10.4-3.1,12.8-7.9c1.4-2.5,1.2-7.5-0.3-10c22.1,0,49.9,0.3,72,0.2L560.6,134.2z M19.3,123.4h-3.9c2.5-5.2,7.9-11.6,13.8-12.8
C29.5,117.2,23.8,119.4,19.3,123.4L19.3,123.4z M298.4,129.2c0,2.1-2.1,5-3.9,5h-2.9c-1.6-1.6-2.4-24.5-1-35.4
c2.9-5.7,5.9,1,7.8,2.9V129.2L298.4,129.2z M407,112.9c1.1-2,4.1-6.2,7.2-6.2c0.9,0,1.5,2,1.8,3.9c0,3.6,0.2,9.4,0.2,13.7l-9.2,9.9
V112.9z M412.3,142h-1l4.9-6.9C417.7,138.6,414,140.7,412.3,142z M454.5,135.1h7.9l6.8,8.9L454.5,135.1L454.5,135.1z"/>
<path class="st0" d="M476.8,83.8c1.4,1.4,2.1,3.3,2.1,5.2c0,2-0.7,3.9-2.1,5.3s-3.3,2.1-5.2,2.1c-2,0.1-3.8-0.7-5.2-2.1
c-1.4-1.4-2.2-3.3-2.2-5.3c0-4.1,3.4-7.4,7.5-7.3C473.6,81.7,475.4,82.4,476.8,83.8L476.8,83.8z M477.6,83c-3.3-3.3-8.7-3.3-12,0
c-1.6,1.6-2.6,3.7-2.5,6c0,2.3,0.8,4.5,2.4,6.1s3.8,2.6,6.1,2.5c2.3,0.1,4.5-0.8,6-2.5c1.7-1.6,2.6-3.8,2.6-6.1
C480.2,86.7,479.3,84.5,477.6,83z M472.9,88.6c-0.5,0.2-1.1,0.3-1.6,0.2h-1.5v-3.4h1.4c0.7-0.1,1.4,0.1,2,0.4
c0.7,0.6,0.8,1.7,0.2,2.4C473.3,88.4,473.1,88.5,472.9,88.6L472.9,88.6z M468.1,93.7h1.7V90h1.3c0.6-0.1,1.2,0,1.8,0.3
c0.6,0.3,0.9,1,0.9,2.1v1.1h1.5c0-0.2-0.1-0.3-0.1-0.5v-1.4c0-0.5-0.2-1.1-0.5-1.5c-0.4-0.5-1-0.8-1.6-0.9c0.5-0.1,0.9-0.2,1.3-0.4
c0.6-0.4,0.9-1.2,0.9-1.9c0.1-1-0.4-2-1.4-2.4c-0.8-0.2-1.7-0.3-2.6-0.3H468L468.1,93.7L468.1,93.7z"/>
<polygon class="st0" points="140.9,64.5 133.2,64.5 138.6,59.1 133.3,53.7 127.9,59.1 127.9,51.5 120.2,51.5 120.2,59.1 114.9,53.7
109.5,59.1 114.9,64.5 107.2,64.5 107.2,72.1 114.9,72.1 109.5,77.5 114.9,82.9 120.2,77.5 120.2,85.1 127.9,85.1 127.9,77.5
133.3,82.9 138.6,77.5 133.2,72.1 140.9,72.1 "/>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 579.2 104.5" style="enable-background:new 0 0 579.2 104.5;" xml:space="preserve">
<style type="text/css">
.st0{fill:#DB1E48;}
</style>
<title>ricoh-logo-white</title>
<path class="st0" d="M225.3,52.2c0,20.4,15.1,35.5,40.3,35.5c10.7,0,20.7-1.7,31.1-6.6l9.4,12.9c-13,6.9-25.6,10.5-44.9,10.5
c-40.2,0-69.8-19.4-69.8-52.2l0,0c0-32.8,29.6-52.2,69.8-52.2c19.3,0,30.4,2.8,44,8.6l-9.7,14.8c-10.3-5.4-19.2-6.5-29.9-6.5
C240.4,17,225.3,32,225.3,52.2"/>
<path class="st0" d="M378.8,0c-39,0-67,19.4-67,52.2s28,52.3,67,52.3s67-19.4,67-52.3S417.7,0,378.8,0z M378.8,88.2
c-21.4,0-33.3-16-33.3-36s11.9-36,33.3-36s33.2,16.1,33.2,36S400.2,88.2,378.8,88.2z"/>
<polygon class="st0" points="547.1,59.8 547.1,101.9 579.2,101.9 579.2,2.6 547.1,2.6 547.1,40.5 497.9,40.5 497.9,2.6 465.8,2.6
465.8,101.9 497.9,101.9 497.9,59.8 "/>
<rect x="138.2" y="2.6" class="st0" width="33.9" height="99.3"/>
<path class="st0" d="M41,48v9.5c16.4,12.9,31.2,27.8,44,44.4h38c-13.2-15.5-33.5-34-48.4-43.2c17.5-0.8,37-7.8,37-27.9
C111.6,5,84.1,0.3,56.2,0.3c-22.7,0-43.7,1-56.2,2.1v99.5h31.6V17.3c8.2-0.9,16.5-1.4,24.8-1.3c16.3,0,24.5,5.4,24.5,14.8
S77.5,48.4,41,48z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 579.2 104.5" style="enable-background:new 0 0 579.2 104.5;" xml:space="preserve">
<style type="text/css">
.st0{fill:#4C5F86;}
</style>
<title>ricoh-logo-white</title>
<path class="st0" d="M225.3,52.2c0,20.4,15.1,35.5,40.3,35.5c10.7,0,20.7-1.7,31.1-6.6l9.4,12.9c-13,6.9-25.6,10.5-44.9,10.5
c-40.2,0-69.8-19.4-69.8-52.2l0,0c0-32.8,29.6-52.2,69.8-52.2c19.3,0,30.4,2.8,44,8.6l-9.7,14.8c-10.3-5.4-19.2-6.5-29.9-6.5
C240.4,17,225.3,32,225.3,52.2"/>
<path class="st0" d="M378.8,0c-39,0-67,19.4-67,52.2s28,52.3,67,52.3s67-19.4,67-52.3S417.7,0,378.8,0z M378.8,88.2
c-21.4,0-33.3-16-33.3-36s11.9-36,33.3-36s33.2,16.1,33.2,36S400.2,88.2,378.8,88.2z"/>
<polygon class="st0" points="547.1,59.8 547.1,101.9 579.2,101.9 579.2,2.6 547.1,2.6 547.1,40.5 497.9,40.5 497.9,2.6 465.8,2.6
465.8,101.9 497.9,101.9 497.9,59.8 "/>
<rect x="138.2" y="2.6" class="st0" width="33.9" height="99.3"/>
<path class="st0" d="M41,48v9.5c16.4,12.9,31.2,27.8,44,44.4h38c-13.2-15.5-33.5-34-48.4-43.2c17.5-0.8,37-7.8,37-27.9
C111.6,5,84.1,0.3,56.2,0.3c-22.7,0-43.7,1-56.2,2.1v99.5h31.6V17.3c8.2-0.9,16.5-1.4,24.8-1.3c16.3,0,24.5,5.4,24.5,14.8
S77.5,48.4,41,48z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="275px" height="35px" viewBox="0 0 275 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>Saburly-Logo-Colors@2x</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Moris-version" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Landing-Page" transform="translate(-316.000000, -51.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="Header" transform="translate(2.000000, 0.000000)">
<g id="top_navigation" transform="translate(314.000000, 51.000000)">
<g id="Saburly-Logo-Colors">
<g id="g26" transform="translate(137.500000, 17.500000) scale(-1, 1) rotate(-180.000000) translate(-137.500000, -17.500000) ">
<path d="M11.7165253,14.2930659 C11.6671794,14.2912922 11.6201834,14.2918834 11.5720125,14.2930659 L11.4756706,14.2936571 C11.4439482,14.2936571 11.4128134,14.296022 11.3816785,14.298978 C11.3329201,14.3019341 11.2847491,14.3054814 11.2330535,14.3066639 C6.34370243,14.4373226 2.3654872,18.5445017 2.3654872,23.4628294 C2.3654872,28.3805659 6.34370243,32.4877449 11.2354033,32.6184037 C11.2847491,32.6195861 11.3329201,32.6231334 11.3816785,32.6260895 C11.4128134,32.6284544 11.4439482,32.6314105 11.4756706,32.6314105 L11.5720125,32.6320017 C11.5966854,32.6320017 11.6207709,32.6320017 11.6477936,32.6320017 C11.6748163,32.6320017 11.7041889,32.6320017 11.7394359,32.6314105 L29.6936875,32.6314105 L33.4169492,32.6314105 L33.425761,34.7538767 L11.4756706,34.7538767 C11.4081137,34.7538767 11.3411444,34.7497382 11.2747625,34.7450084 L11.1925194,34.7402787 C5.16233936,34.5871537 0.256539662,29.5287078 0.256539662,23.4628294 C0.256539662,17.396951 5.16233936,12.3373226 11.1936943,12.1847889 L11.2747625,12.1800591 C11.3411444,12.1753294 11.4081137,12.1711909 11.4756706,12.1711909" id="path34"></path>
<path d="M11.475788,12.0234459 C11.4041191,12.0234459 11.3347999,12.0275845 11.2643059,12.0323142 L11.1855875,12.0370439 C5.08021376,12.1919426 0.109794511,17.3171959 0.109794511,23.4628885 C0.109794511,29.6073986 5.0796263,34.7332432 11.1885247,34.8881419 L11.2660682,34.8922804 C11.3347999,34.8970101 11.4041191,34.9017399 11.475788,34.9017399 L33.5733286,34.9017399 L33.5633419,32.4830743 L11.4763755,32.4830743 C11.4481779,32.4830743 11.4211552,32.4813007 11.3941324,32.4789358 L11.3541858,32.4759797 C11.3160015,32.4736149 11.2778172,32.47125 11.238458,32.4700676 C6.42723791,32.3423649 2.51246733,28.301402 2.51246733,23.4628885 C2.51246733,18.6237838 6.42606299,14.5828209 11.2372831,14.454527 C11.2772298,14.4533446 11.3165889,14.4509797 11.3553607,14.4486149 L11.3941324,14.44625 C11.4211552,14.4438851 11.4481779,14.4415203 11.475788,14.4415203 L11.5733048,14.4409291 C11.6214758,14.4391554 11.6661221,14.4397466 11.7119432,14.4409291 L11.7207549,14.1453209 C11.6690593,14.1435473 11.619126,14.1441385 11.5686053,14.1453209 L11.4752006,14.1459122 C11.4399536,14.1459122 11.4041191,14.1488682 11.3694595,14.1518243 C11.3019027,14.1553716 11.2666556,14.1577365 11.2302337,14.1589189 C6.26098938,14.2913514 2.21874204,18.4653378 2.21874204,23.4628885 C2.21874204,28.459848 6.26157684,32.6332432 11.2308212,32.7656757 C11.2666556,32.7668581 11.3013153,32.7686318 11.3359748,32.7709966 L11.3729842,32.7733615 C11.4041191,32.7763176 11.4399536,32.7786824 11.475788,32.7786824 L11.6479111,32.7798649 L11.744253,32.7786824 L33.2707915,32.7786824 L33.2784284,34.6061318 L11.475788,34.6061318 C11.4111685,34.6061318 11.3477238,34.601402 11.2842792,34.5972635 L11.2008612,34.5925338 C5.24528737,34.4411824 0.403519794,29.4489527 0.403519794,23.4628885 C0.403519794,17.4762331 5.24587483,12.4834122 11.1973365,12.3320608 L11.2825168,12.3273311 C11.3477238,12.3231926 11.4111685,12.3190541 11.475788,12.3190541 L11.475788,12.0234459 Z" id="path38"></path>
<path d="M21.9659516,20.8074409 C22.0152974,20.8092145 22.0622935,20.8086233 22.1104644,20.8074409 L22.2068063,20.8068497 C22.2385286,20.8068497 22.2696635,20.8044848 22.3007984,20.8015287 C22.3495568,20.7985726 22.3977277,20.7950253 22.4494234,20.7938429 C27.3387744,20.6631841 31.3169897,16.5560051 31.3169897,11.6376774 C31.3169897,6.71994089 27.3387744,2.61276182 22.4470736,2.48210304 C22.3977277,2.48092061 22.3495568,2.47737331 22.3007984,2.47441723 C22.2696635,2.47205236 22.2385286,2.46909628 22.2068063,2.46909628 L22.1104644,2.46850507 C22.0857915,2.46850507 22.061706,2.46850507 22.0346833,2.46850507 C22.0076605,2.46850507 21.978288,2.46850507 21.943041,2.46909628 L3.98878934,2.46909628 L0.265527656,2.46909628 L0.256715897,0.346630068 L22.2068063,0.346630068 C22.2743631,0.346630068 22.3413325,0.350768581 22.4077144,0.355498311 L22.4899575,0.360228041 C28.5201375,0.51335304 33.4259372,5.57179899 33.4259372,11.6376774 C33.4259372,17.7035557 28.5201375,22.7631841 22.4887826,22.9157179 L22.4077144,22.9204476 C22.3413325,22.9251774 22.2743631,22.9293159 22.2068063,22.9293159" id="path42"></path>
<polygon id="path46" points="69.7481232 0.338412162 54.6406571 29.724223 39.5331908 0.338412162 37.3972205 1.37717905 54.6406571 34.9174662 71.8840934 1.37717905"></polygon>
<path d="M100.627756,23.2301858 L100.549038,23.2343243 C100.52084,23.236098 100.492642,23.2366892 100.464444,23.2378716 L100.464444,23.2431926 L100.341668,23.2431926 C100.340493,23.2431926 100.339318,23.2431926 100.337555,23.2431926 L100.294671,23.2431926 L100.294671,20.8168412 L100.464444,20.8168412 L100.464444,20.8180236 C100.500866,20.8156588 100.537876,20.8132939 100.576648,20.8121115 C105.38728,20.6838176 109.301464,16.6428547 109.301464,11.8043412 C109.301464,6.96523649 105.386693,2.92427365 100.574885,2.79597973 C100.533764,2.79538851 100.49323,2.79302365 100.418623,2.78829392 C100.391601,2.78592905 100.365166,2.78356419 100.336968,2.78356419 L80.589817,2.78356419 L80.589817,12.0349155 L78.2400148,12.0349155 L78.2400148,0.365489865 L100.337555,0.365489865 C100.408637,0.365489865 100.479131,0.369628378 100.546688,0.374358108 L100.624819,0.379087838 C106.733717,0.533986488 111.703549,5.65923988 111.703549,11.8043412 C111.703549,17.9494426 106.73313,23.0746959 100.627756,23.2301858" id="path50"></path>
<path d="M100.574944,14.4542905 C100.533823,14.4531081 100.493288,14.4507432 100.418095,14.4460135 C100.391659,14.4436486 100.365224,14.441875 100.337027,14.441875 L80.5898758,14.441875 L80.5898758,32.4745608 L100.464503,32.4745608 L100.464503,32.4757432 C100.500925,32.4733784 100.537935,32.4716047 100.576119,32.4704223 C105.387339,32.3421284 109.300935,28.3011655 109.300935,23.4620608 C109.300935,18.6235473 105.386164,14.5825845 100.574944,14.4542905 M100.627815,34.8884966 L100.549096,34.8920439 C100.520899,34.8944088 100.492114,34.8944088 100.464503,34.8961824 L100.464503,34.9015034 L100.341726,34.9015034 C100.340551,34.9015034 100.339376,34.9015034 100.337614,34.9015034 L80.5898758,34.9015034 L78.2647464,34.9015034 L78.2400736,34.9015034 L78.2400736,12.0238007 L80.5898758,12.0238007 L100.337614,12.0238007 C100.408696,12.0238007 100.47919,12.0279392 100.546747,12.0320777 L100.624877,12.0368074 C106.733776,12.1922973 111.703608,17.3175507 111.703608,23.4620608 C111.703608,29.6077534 106.733189,34.7330068 100.627815,34.8884966" id="path54"></path>
<path d="M136.348921,0.346807432 C127.154732,0.346807432 119.674724,8.00305742 119.674724,17.4140372 C119.674724,17.5275507 119.668262,17.6457939 119.662388,17.7646284 C119.645939,18.0543243 119.630666,18.3363345 119.648876,18.6236655 L119.646527,34.9453716 L122.019239,34.9453716 L122.019239,18.545625 C122.006316,18.3055912 122.018652,18.1246791 122.029226,17.9461318 C122.039213,17.7587162 122.048025,17.5825338 122.048025,17.4140372 C122.048025,9.32324322 128.463572,2.74182432 136.348921,2.74182432 C143.952294,2.74182432 150.252701,8.82662161 150.692702,16.5952027 L150.710913,17.0941892 C150.715612,17.241402 150.718549,17.350777 150.718549,17.4607432 C150.718549,17.5713007 150.715612,17.6818581 150.712087,17.7912331 L150.671554,18.8329561 L153.054253,18.9127703 L153.081863,17.9082939 C153.08715,17.7598986 153.091263,17.6115034 153.091263,17.4607432 C153.091263,17.3105743 153.08715,17.1621791 153.081863,17.0131926 L153.042504,16.1659797 C152.37986,7.28472972 145.048476,0.346807432 136.348921,0.346807432" id="path58"></path>
<path d="M128.936705,22.2392483 C128.936705,23.2803801 129.774997,24.1240456 130.809497,24.1240456 C131.84341,24.1240456 132.681702,23.2803801 132.681702,22.2392483 C132.681702,21.1981166 131.84341,20.354451 130.809497,20.354451 C129.774997,20.354451 128.936705,21.1981166 128.936705,22.2392483" id="path62"></path>
<path d="M140.549839,22.2392483 C140.549839,23.2803801 141.388131,24.1240456 142.422631,24.1240456 C143.456544,24.1240456 144.294837,23.2803801 144.294837,22.2392483 C144.294837,21.1981166 143.456544,20.354451 142.422631,20.354451 C141.388131,20.354451 140.549839,21.1981166 140.549839,22.2392483" id="path66"></path>
<path d="M182.245788,12.0320777 C182.178231,12.027348 182.107737,12.0232095 182.036655,12.0232095 L179.027733,12.0232095 L190.478907,0.346689189 L193.692262,0.346689189 L182.336255,12.0373986 C182.331556,12.0373986 182.328031,12.0368074 182.323919,12.0368074 L182.245788,12.0320777 Z" id="path70"></path>
<polygon id="path74" points="162.310947 32.4746199 162.288623 32.4746199 162.288623 14.4413429 162.299785 14.4413429 162.299785 29.0946368 176.658252 14.4413429 179.980872 14.4413429"></polygon>
<polygon id="path78" points="159.938997 12.0233868 159.938997 21.1056503 159.913737 0.346866554 162.292324 0.346866554 162.299961 12.0233868 162.2888 12.0233868"></polygon>
<path d="M182.32668,34.8880236 L182.247961,34.8921622 C182.219764,34.8939358 182.191566,34.894527 182.163369,34.8957095 L182.163369,34.9010304 L182.040591,34.9010304 C182.039416,34.9010304 182.038242,34.9010304 182.036479,34.9010304 L162.288741,34.9010304 L159.964199,34.9010304 L159.938939,34.9010304 L159.938939,21.1055912 L159.938939,12.0233277 L162.288741,12.0233277 L162.299902,12.0233277 L162.299902,14.441402 L162.288741,14.441402 L162.288741,32.4746791 L162.311064,32.4746791 L182.163369,32.4746791 L182.163369,32.4758615 C182.19979,32.4734966 182.237387,32.4711318 182.275571,32.4699493 C187.086204,32.3416554 191.000387,28.3006926 191.000387,23.4621791 C191.000387,18.6230743 187.085617,14.5821115 182.273809,14.4538176 C182.232687,14.4532264 182.192154,14.4508615 182.117547,14.4461318 C182.090525,14.4437669 182.064089,14.441402 182.035892,14.441402 L179.980402,14.441402 L176.658369,14.441402 L179.027558,12.0233277 L182.036479,12.0233277 C182.107561,12.0233277 182.178055,12.0274662 182.245611,12.0321959 L182.323743,12.0369257 C182.327854,12.0369257 182.331967,12.0375169 182.336079,12.0375169 C188.439103,12.1995101 193.402473,17.3212162 193.402473,23.4621791 C193.402473,29.6072804 188.432053,34.7325338 182.32668,34.8880236" id="path82"></path>
<path d="M206.060035,32.4181588 L218.993934,32.4181588 L218.993934,2.76748311 L206.060035,2.76748311 L206.060035,32.4181588 Z M203.676748,0.347043919 L221.377221,0.347043919 L221.377221,34.8397804 L203.676748,34.8397804 L203.676748,0.347043919 Z" id="path84"></path>
<polygon id="path88" points="237.111027 0.346807432 203.676866 0.346807432 203.676866 11.3392905 206.060152 11.3392905 206.060152 2.76783784 234.773561 2.76310811 234.773561 11.3392905 237.111027 11.3392905"></polygon>
<polygon id="path92" points="265.591982 0.4025 265.591982 34.7166892 263.208695 34.7166892 263.208695 2.80638514 248.769747 2.77032095 248.772097 0.4025"></polygon>
<path d="M274.978032,33.7971115 L274.949834,34.8015878 L272.567722,34.7217736 L272.607669,33.6800507 C272.611194,33.5706757 272.614718,33.4607095 272.614718,33.3495608 C272.614718,33.2395946 272.611194,33.1302196 272.606494,32.9830068 L272.588283,32.4840203 C272.14887,24.7160304 265.847875,18.6306419 258.24509,18.6306419 C250.359154,18.6306419 243.943606,25.212652 243.943606,33.3034459 C243.943606,33.4713514 243.934794,33.648125 243.924808,33.8349493 C243.914821,34.0134966 243.902484,34.1944088 243.915409,34.4344426 L243.915409,34.9133277 L241.545045,34.9133277 L241.545045,34.5124831 C241.526247,34.225152 241.542108,33.9431419 241.557969,33.6534459 C241.564431,33.5346115 241.570306,33.4163682 241.570306,33.3034459 C241.570306,23.8924662 249.050313,16.235625 258.24509,16.235625 C266.944058,16.235625 274.276028,23.1735473 274.938085,32.0547973 L274.978032,32.9020101 C274.982731,33.0509966 274.987431,33.1993919 274.987431,33.3495608 C274.987431,33.5003209 274.982731,33.6493074 274.978032,33.7971115" id="path96"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 700 906"><title>manager-emil</title><rect width="700" height="906" style="fill:#5763ab"/><ellipse cx="340.6" cy="459.9" rx="249.2" ry="304.6" style="fill:#5b67ae"/><path d="M580.9,395.1Q547.6,213.3,469.7,213.3c-78,0-179-33.2-204.4,11.2s-34.4,63.9-34.4,94.3-35.7,40.5-51.8,48.5q-16,8.1-16,100.6H130.4c.2-26.2-9.6-39.3-29.6-39.3-29.9,0,0-47.1,0-96.4S73.4,230.9,118.9,182.4,183.6,77,249.2,66.6,414.3,33.5,426.6,33.5,489,47.2,517.3,66.6s92.6,97.1,92.6,146.7Q609.9,263,580.9,395.1Z" style="fill:none;stroke:#4ebcbe;stroke-width:4px"/><path d="M375.2,559.1q-18.3,28.4,0,28.4c18.3,0,34.1,3.1,39.4,13.5s14.1,10.4,20.7,10.4,16.5-23.6,31.9-10.4q15.4,13.2,15.5-33.1" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px"/><path d="M327.4,633q53.3,12.8,64.9,21.5c11.8,8.9,24.1,8.9,32.8,8.9q8.7,0,55.8-8.9" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px"/><path d="M401.7,465q-22.9,66.5-51.9,76.1c-29,9.6-107,17.2-124-9.6q-17-26.8-16.9-103.7L89.1,437.1l112.1-39.3c16.5-11.2,43.9-13.9,82.1-8.4,57.4,8.4,92.3,15.9,109.5,15.9h55c22.8,0,49-8.2,78.1,0q29.1,8.3,63.9,16.7v33.9H578.9q-2.2,80.6-21.9,90.4c-19.6,9.9-82.9,19.7-96.1,9.9s-41.3-82-41.3-91.2-1.2-9.1-9.6-9.1C404.5,455.9,401.7,459,401.7,465Z" style="fill:#fcfbfb;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px"/><path d="M486.4,179.9q64.1-53.9,42.7-67.4c-14.2-9-20.5-23.4-18.7-43" style="fill:none;stroke:#4ebcbe;stroke-linecap:round;stroke-linejoin:round;stroke-width:3px"/><path d="M411.3,169c31-17.2,41.4-32.9,31-46.9-15.5-21.2-39.1-45.6-15.5-57.3" style="fill:none;stroke:#4ebcbe;stroke-linecap:round;stroke-linejoin:round;stroke-width:3px"/><path d="M338.8,169.5c14.6-45.2,14.6-67.9,0-67.9s-14.5-14.3,0-43" style="fill:none;stroke:#4ebcbe;stroke-linecap:round;stroke-linejoin:round;stroke-width:3px"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 72 KiB

View File

@@ -0,0 +1,297 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="541px" height="599px" viewBox="0 0 541 599" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.1 (57501) - http://www.bohemiancoding.com/sketch -->
<title>Group 25</title>
<desc>Created with Sketch.</desc>
<defs>
<linearGradient x1="79.0834523%" y1="11.2786499%" x2="17.1352039%" y2="100%" id="linearGradient-1">
<stop stop-color="#B5AFCC" offset="0%"></stop>
<stop stop-color="#FFFFFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="62.5723088%" y1="6.85063844%" x2="60.1290094%" y2="78.9477907%" id="linearGradient-2">
<stop stop-color="#B4AAD7" offset="0%"></stop>
<stop stop-color="#FFFFFF" offset="100%"></stop>
</linearGradient>
<filter x="-41.1%" y="-529.0%" width="182.2%" height="1158.0%" filterUnits="objectBoundingBox" id="filter-3">
<feGaussianBlur stdDeviation="31.1272321 0" in="SourceGraphic"></feGaussianBlur>
</filter>
<linearGradient x1="154.2902%" y1="35.5906696%" x2="57.6239868%" y2="78.8475359%" id="linearGradient-4">
<stop stop-color="#B4AAD7" offset="0%"></stop>
<stop stop-color="#5640A6" offset="100%"></stop>
</linearGradient>
<linearGradient x1="104.045238%" y1="16.8405933%" x2="6.07416571%" y2="100%" id="linearGradient-5">
<stop stop-color="#B4AAD7" offset="0%"></stop>
<stop stop-color="#7B6ABA" offset="100%"></stop>
</linearGradient>
<linearGradient x1="15.7963008%" y1="121.63627%" x2="148.737665%" y2="121.636271%" id="linearGradient-6">
<stop stop-color="#B4AAD7" offset="0%"></stop>
<stop stop-color="#5640A6" offset="100%"></stop>
</linearGradient>
<linearGradient x1="17.57667%" y1="119.118825%" x2="88.7370862%" y2="18.4978525%" id="linearGradient-7">
<stop stop-color="#7B6ABA" offset="0%"></stop>
<stop stop-color="#5640A6" offset="100%"></stop>
</linearGradient>
<rect id="path-8" x="0" y="0" width="189.704162" height="286.38008" rx="12"></rect>
<filter x="-95.4%" y="-63.2%" width="290.8%" height="226.4%" filterUnits="objectBoundingBox" id="filter-10">
<feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feGaussianBlur stdDeviation="81" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
</filter>
<linearGradient x1="55.1148219%" y1="227.006388%" x2="23.1723395%" y2="81.0265899%" id="linearGradient-11">
<stop stop-color="#F2EEFA" offset="0%"></stop>
<stop stop-color="#EDE9F5" offset="100%"></stop>
</linearGradient>
<filter x="-4.9%" y="-15.5%" width="119.8%" height="161.8%" filterUnits="objectBoundingBox" id="filter-12">
<feOffset dx="17" dy="17" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.976470588 0 0 0 0 0.290196078 0 0 0 0 0.541176471 0 0 0 0.0985337409 0" type="matrix" in="shadowOffsetOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<linearGradient x1="90.6083424%" y1="172.734811%" x2="32.9575052%" y2="50%" id="linearGradient-13">
<stop stop-color="#FED3E3" offset="0%"></stop>
<stop stop-color="#EF8DB1" offset="100%"></stop>
</linearGradient>
<linearGradient x1="92.2077062%" y1="15.0228536%" x2="67.1061515%" y2="49.0822922%" id="linearGradient-14">
<stop stop-color="#DFD6FB" offset="0%"></stop>
<stop stop-color="#A696E0" offset="100%"></stop>
</linearGradient>
<path d="M2.77425722,5.99773801 C2.77425722,14.5590775 -3.91659758,31.3357007 4.80830809,35.6852556 C10.6249119,38.5849589 16.1050551,32.5044768 21.2487378,17.4438093 C20.8053751,6.38461381 17.9544628,0.85501605 12.6960009,0.85501605 C4.80830809,0.85501605 2.77425722,-2.56360152 2.77425722,5.99773801 Z" id="path-15"></path>
<linearGradient x1="-25.8029357%" y1="100%" x2="42.445841%" y2="30.4265738%" id="linearGradient-17">
<stop stop-color="#7B6ABA" offset="0%"></stop>
<stop stop-color="#5640A6" offset="100%"></stop>
</linearGradient>
<linearGradient x1="0%" y1="106.763463%" x2="28.5542338%" y2="0%" id="linearGradient-18">
<stop stop-color="#EDE9F5" offset="0%"></stop>
<stop stop-color="#B4AAD7" offset="100%"></stop>
</linearGradient>
<path d="M64.9915672,0.273956098 C76.4159814,44.3889334 82.8718698,71.4654157 84.3592325,81.5034029 C86.5902765,96.5603837 92.0499247,147.455661 91.279237,155.663717 C87.5499606,159.671496 80.8318568,157.271834 79.6616117,156.536742 C78.4913666,155.801651 71.2813755,113.927011 64.9915672,97.6826899 C58.7017589,81.4383689 44.5473332,66.4879351 35.2206148,50.1441935 C35.2206148,57.2359508 32.8199451,70.2710015 28.0186058,89.2493459 C21.0174162,122.764275 16.3255698,142.234208 13.9430667,147.659145 C12.2473159,150.546073 3.68682845,148.42913 0.366446109,147.659145 C0.366446109,140.034364 7.52555497,101.512857 7.52555497,88.1400337 C7.52555497,74.7672107 5.54564867,50.531893 4.80593934,40.5967026 C4.06623002,30.6615122 2.2589199,11.3862936 4.80593934,0.273956098 C9.11032837,0.273956098 29.1722043,0.273956098 64.9915672,0.273956098 Z" id="path-19"></path>
<linearGradient x1="89.2651436%" y1="83.2202103%" x2="79.8543348%" y2="25.681003%" id="linearGradient-21">
<stop stop-color="#CFDDF3" stop-opacity="0.477723053" offset="0%"></stop>
<stop stop-color="#9383C6" offset="100%"></stop>
</linearGradient>
<path d="M21.0459954,0.463364147 C22.5895987,3.61494832 24.6687513,5.85973514 27.2834533,7.19772461 C29.8981553,8.53571407 31.85885,9.53203712 33.1655374,10.1866938 L31.4981671,17.0028863 C33.5700198,23.6850967 34.1258099,28.1526386 33.1655374,30.4055121 C31.7251286,33.7848222 27.2834533,36.0299125 24.6982829,39.0429929 C22.9748359,41.0517132 21.3164246,45.4633016 19.7230491,52.277758 L2.68407364,52.277758 L1.9125486,39.0429929 C-1.11692211,26.3114601 -0.0617504952,16.6926938 5.07806345,10.1866938 C10.2178774,3.68069375 15.5405214,0.439583885 21.0459954,0.463364147 Z" id="path-22"></path>
<linearGradient x1="50%" y1="0%" x2="81.4402452%" y2="56.408967%" id="linearGradient-24">
<stop stop-color="#311793" offset="0%"></stop>
<stop stop-color="#270D4F" offset="100%"></stop>
</linearGradient>
<linearGradient x1="-1.11022302e-14%" y1="50%" x2="75.5130009%" y2="33.4689142%" id="linearGradient-25">
<stop stop-color="#F0EDF8" offset="0%"></stop>
<stop stop-color="#A18FE0" offset="100%"></stop>
</linearGradient>
<path d="M37.9785539,0.783007925 C46.0536031,3.02884387 52.4702411,7.11904899 57.2284678,13.0536233 C64.3658079,21.9554847 62.775258,48.7369724 64.7968355,64.6764196 C66.8184131,80.6158668 75.6145989,92.2020298 62.0277712,101.197264 C48.4409435,110.192498 10.0254651,108.149843 6.88384089,101.197264 C4.78942478,96.5622109 2.54859883,80.0009109 0.161363058,51.5133639 C0.161363058,25.8735368 1.59173192,11.9729499 4.45246965,9.81160327 C7.31320739,7.65025659 12.0827352,4.48102995 18.7610531,0.303923336 C18.6113113,0.939495534 20.1471971,1.57219396 23.3687106,2.20201862 C26.590224,2.83184328 31.4601718,2.35883971 37.9785539,0.783007925 Z" id="path-26"></path>
<linearGradient x1="44.7356789%" y1="57.7816012%" x2="66.3488345%" y2="25.3321471%" id="linearGradient-28">
<stop stop-color="#DDD5F7" offset="0%"></stop>
<stop stop-color="#9582DB" offset="100%"></stop>
</linearGradient>
<linearGradient x1="86.2225509%" y1="231.608002%" x2="56.9641755%" y2="-57.1406441%" id="linearGradient-29">
<stop stop-color="#8778C0" offset="0%"></stop>
<stop stop-color="#5F4BAB" offset="100%"></stop>
</linearGradient>
<path d="M21.7815824,65.4543141 L32.8283743,74.0298503 C44.9492155,55.4736512 51.5446602,44.9253622 52.6147084,42.3849832 C54.2197807,38.5744146 52.6147084,32.1796594 52.6147084,30.0501827 C52.6147084,27.920706 53.8076765,23.2232069 55.5414481,21.8450208 C57.2752196,20.4668347 57.4791091,21.1753676 58.5307082,21.1753676 C59.5823073,21.1753676 68.5985642,9.43974269 69.6595569,7.94635966 C70.7205497,6.45297662 72.1560913,5.71838477 73.2327655,6.59173667 C74.3094397,7.46508857 73.8457911,8.9196058 73.0579783,10.1067383 C72.2701655,11.2938707 67.8478917,17.9557389 67.8478917,19.3177607 C67.8478917,20.6797824 72.1756521,23.5788225 73.2912674,24.7763896 C74.4068827,25.9739566 75.9876058,29.3631159 73.9082912,33.1189137 C71.8289765,36.8747114 64.9178178,42.8572632 64.9178178,44.5158655 C64.9178178,46.1744678 53.4331912,71.263639 49.2668049,81.4099278 C45.1004186,91.5562166 41.1711495,98.4070875 32.8283743,95.5642713 C27.2665242,93.6690604 19.40676,87.8651237 9.24908167,78.152461 C11.2343384,73.2028971 13.1892769,69.9489443 15.1138972,68.3906024 C17.0385175,66.8322606 19.2610793,65.8534978 21.7815824,65.4543141 Z" id="path-30"></path>
<linearGradient x1="-1.11022302e-14%" y1="50%" x2="75.5130009%" y2="33.4689142%" id="linearGradient-32">
<stop stop-color="#EDE8FF" offset="0%"></stop>
<stop stop-color="#CDC1FD" offset="100%"></stop>
</linearGradient>
<path d="M22.8120509,0 L174.634578,0 C179.625606,-3.84744122e-15 184.948201,3.56368214 186.522927,7.95970684 L197.072713,37.4106222 C198.647439,41.8066469 195.10389,45.370329 189.157975,45.370329 L8.28865339,45.370329 C2.34273861,45.370329 -1.20081006,41.8066469 0.373915903,37.4106222 L10.9237022,7.95970684 C12.4984281,3.56368214 17.8210232,1.92372061e-15 22.8120509,0 Z" id="path-33"></path>
<filter x="-17.6%" y="-40.7%" width="129.1%" height="207.4%" filterUnits="objectBoundingBox" id="filter-35">
<feOffset dx="-6" dy="7" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feGaussianBlur stdDeviation="8.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0.384313725 0 0 0 0 0.301960784 0 0 0 0 0.674509804 0 0 0 0.132557745 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<path d="M22.8120509,0 L174.634578,0 C179.625606,-3.84744122e-15 184.948201,3.56368214 186.522927,7.95970684 L197.072713,37.4106222 C198.647439,41.8066469 195.10389,45.370329 189.157975,45.370329 L8.28865339,45.370329 C2.34273861,45.370329 -1.20081006,41.8066469 0.373915903,37.4106222 L10.9237022,7.95970684 C12.4984281,3.56368214 17.8210232,1.92372061e-15 22.8120509,0 Z" id="path-36"></path>
<filter x="-17.6%" y="-40.7%" width="129.1%" height="207.4%" filterUnits="objectBoundingBox" id="filter-38">
<feOffset dx="-6" dy="7" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feGaussianBlur stdDeviation="8.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0.37254902 0 0 0 0 0.290196078 0 0 0 0 0.670588235 0 0 0 0.174479167 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<path d="M22.8120509,0 L174.634578,0 C179.625606,-3.84744122e-15 184.948201,3.56368214 186.522927,7.95970684 L197.072713,37.4106222 C198.647439,41.8066469 195.10389,45.370329 189.157975,45.370329 L8.28865339,45.370329 C2.34273861,45.370329 -1.20081006,41.8066469 0.373915903,37.4106222 L10.9237022,7.95970684 C12.4984281,3.56368214 17.8210232,1.92372061e-15 22.8120509,0 Z" id="path-39"></path>
<path d="M22.8031538,0 L174.566467,0 C179.555549,-3.87285087e-15 184.876068,3.58721776 186.450179,8.01227511 L196.995851,37.657693 C198.569963,42.0827504 195.027796,45.6699681 189.084201,45.6699681 L8.28542067,45.6699681 C2.3418249,45.6699681 -1.20034172,42.0827504 0.373770069,37.657693 L10.9194417,8.01227511 C12.4935535,3.58721776 17.8140727,1.93642543e-15 22.8031538,0 Z" id="path-41"></path>
</defs>
<g id="desktop-prototype" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Desktop/Landing" transform="translate(-157.000000, -2250.000000)">
<g id="Group-25" transform="translate(157.000000, 2291.000000)">
<path d="M104.607034,533.1077 C110.369646,531.192458 116.07873,529.220729 121.00782,527.6917 C129.824087,524.956848 139.848603,522.790653 142.360841,521.017848 C178.293576,511.154975 199.96624,505.097519 207.378835,502.845479 C218.441096,499.484625 252.224273,494.709106 257.439127,492.69624 C260.087725,492.350751 252.514557,490.038505 252.174524,490.214381 C248.502055,491.108996 217.986242,495.695647 203.792929,499.199224 C188.962237,502.860136 169.321587,506.22945 152.252734,509.912768 C156.760777,508.31453 163.327512,505.376877 171.952941,501.09981 C188.243413,493.546696 197.259748,489.158842 199.001947,487.936247 C201.064894,487.521781 202.771801,487.29705 204.222594,487.140101 C204.162138,487.183411 204.585586,487.132246 205.127117,487.047815 C206.366039,486.92958 207.401186,486.866775 208.292073,486.850051 C211.684837,486.807751 211.985223,483.914472 208.958156,484.30249 C205.931089,484.690508 207.420206,483.985542 206.10958,484.000227 C204.798954,484.014912 200.119771,484.319607 197.974589,484.823448 C195.829407,485.327289 193.25013,486.563429 190.544531,487.55988 C190.22464,487.677693 189.951249,487.795163 189.729022,487.908896 C184.43183,489.654611 165.071907,498.336036 156.571157,501.349811 C148.070407,504.363586 131.246697,509.825394 124.401397,512.064445 C118.941033,513.850492 109.216351,516.97589 102.845415,519.438541 C99.4500805,520.235767 91.9263313,522.488378 80.1760308,526.218987 C81.8005942,524.692894 80.5096211,524.158583 76.3031114,524.616053 C68.5412587,525.460177 63.1085294,528.381145 58.2740778,530.408194 C55.5642532,530.766491 53.7941013,531.166724 52.9636223,531.608892 C51.117347,532.591896 47.7331897,535.317016 42.8111502,539.784252 C42.8810905,539.887763 42.8279378,539.993838 42.9145432,540.056345 C43.5703899,540.529702 44.9121915,541.217568 46.939948,542.119945 C44.7247732,542.843505 43.2851275,543.323009 42.6210112,543.558459 C42.5058668,543.599281 42.1565131,543.798977 41.5729501,544.157546 C20.9272805,547.640072 4.48940798,550.479888 0.664332879,554.431087 C-3.17521797,558.397239 10.1600971,559.730515 26.9545059,554.909314 C29.3706056,554.052733 30.8449494,553.320061 31.3775374,552.711297 C34.2527171,552.074571 36.9601312,551.615598 39.4997796,551.334376 C42.22289,551.032839 44.2604279,550.808302 45.6123935,550.660765 L48.7511368,549.124629 C54.4826515,547.618689 57.7205931,546.611858 58.4649613,546.104138 C59.5815136,545.342557 57.8276385,544.836591 57.8915379,544.157546 C57.9107512,543.953371 58.2501493,543.63904 58.9097323,543.214552 C62.2728913,542.317795 62.315224,542.25874 62.7879054,542.09116 C66.1148839,541.708379 69.3605041,541.366737 72.6030171,540.940667 C78.9606825,540.295268 85.7570132,539.545404 106.002701,537.481802 C106.452499,537.424156 106.955565,537.328907 107.492005,537.198713 L113.052254,536.592799 C106.038169,541.246689 101.881487,543.878857 100.582206,544.489301 C98.6332843,545.404966 92.8896316,546.746974 91.2844736,547.218067 C89.6793156,547.689161 86.8247565,548.782379 86.7833592,549.165769 C86.741962,549.549158 87.3933395,549.401644 87.9983328,549.449257 C88.6033262,549.49687 84.9443653,552.501313 84.4290799,552.879725 C83.9137944,553.258137 84.1859519,553.485644 85.4636868,553.341186 C86.7414216,553.196727 87.5710676,552.853959 88.01267,552.555665 C88.4542723,552.257372 90.9316893,550.583373 91.9583548,550.28206 C92.9850202,549.980746 97.6600551,549.535354 99.2045801,549.320934 C100.749105,549.106513 104.21319,548.428317 105.847991,547.503295 C107.482792,546.578274 108.016278,544.941867 109.2665,544.574943 C110.516722,544.208018 122.821253,538.137677 128.072372,535.704422 C133.323492,533.271168 136.227005,531.577678 129.284481,531.828845 C126.600217,531.925957 122.48028,532.278922 116.924668,532.887741 C117.67828,532.032631 116.163492,531.964299 114.83967,532.040298 C112.835757,532.246548 109.600812,532.533505 104.607034,533.1077 Z" id="Path" fill="url(#linearGradient-1)" opacity="0.332642681"></path>
<g id="Group-24" transform="translate(78.000000, 0.000000)">
<polyline id="shadow" fill="url(#linearGradient-2)" opacity="0.5" points="0 455.202332 140.13622 397.830966 334.469532 397.830966 230.496803 471.360036"></polyline>
<ellipse id="shadow" fill="#5841A8" filter="url(#filter-3)" cx="259.857098" cy="396.454545" rx="113.572621" ry="8.82644628"></ellipse>
<g id="phone" transform="translate(132.317617, 0.000000)">
<rect id="side" fill="url(#linearGradient-4)" x="26.4491379" y="0" width="206.576888" height="401.700917" rx="2"></rect>
<rect id="front" fill="url(#linearGradient-5)" x="9.57641201" y="0" width="206.576888" height="401.700917" rx="2"></rect>
<rect id="speaker" fill="url(#linearGradient-6)" x="58.8265309" y="25.9471884" width="108.53267" height="7.20755234" rx="3.60377617"></rect>
<ellipse id="button" fill="url(#linearGradient-7)" cx="112.636846" cy="372.870708" rx="19.152824" ry="20.1811466"></ellipse>
<g id="screen" transform="translate(18.240785, 57.660419)">
<mask id="mask-9" fill="white">
<use xlink:href="#path-8"></use>
</mask>
<g>
<use fill="black" fill-opacity="1" filter="url(#filter-10)" xlink:href="#path-8"></use>
<use fill="#FFFFFF" fill-rule="evenodd" xlink:href="#path-8"></use>
</g>
<g id="4" opacity="0.600000024" mask="url(#mask-9)">
<g transform="translate(9.120392, 219.590095)">
<rect id="Rectangle-16" fill="url(#linearGradient-11)" x="0" y="0" width="171.463377" height="54.7773978" rx="3"></rect>
<ellipse id="Oval-Copy-2" fill="#A1B8E3" cx="25.9931183" cy="27.3886989" rx="19.152824" ry="20.1811466"></ellipse>
<rect id="Rectangle" fill="#A1B8E3" x="51.9862367" y="9.61006979" width="106.252571" height="8.16855932" rx="4.08427966"></rect>
<rect id="Rectangle-Copy" fill="#A1B8E3" x="51.9862367" y="23.0641675" width="81.1714923" height="8.16855932" rx="4.08427966"></rect>
<rect id="Rectangle-Copy-2" fill="#A1B8E3" opacity="0.5" x="51.9862367" y="39.4012861" width="30.0972949" height="5.76604187" rx="2.88302094"></rect>
</g>
</g>
<g id="3" opacity="0.600000024" mask="url(#mask-9)">
<g transform="translate(9.120392, 153.280613)">
<rect id="Rectangle-16" fill="url(#linearGradient-11)" x="0" y="0" width="171.463377" height="54.7773978" rx="3"></rect>
<ellipse id="Oval-Copy-2" fill="#A1B8E3" cx="25.9931183" cy="27.3886989" rx="19.152824" ry="20.1811466"></ellipse>
<rect id="Rectangle" fill="#A1B8E3" x="51.9862367" y="9.61006979" width="106.252571" height="8.16855932" rx="4.08427966"></rect>
<rect id="Rectangle-Copy" fill="#A1B8E3" x="51.9862367" y="23.0641675" width="81.1714923" height="8.16855932" rx="4.08427966"></rect>
<rect id="Rectangle-Copy-2" fill="#A1B8E3" opacity="0.5" x="51.9862367" y="39.4012861" width="30.0972949" height="5.76604187" rx="2.88302094"></rect>
</g>
</g>
<g id="1" opacity="0.600000024" mask="url(#mask-9)">
<g transform="translate(9.120392, 14.895608)">
<rect id="Rectangle-16" fill="url(#linearGradient-11)" x="0" y="0" width="171.463377" height="54.7773978" rx="3"></rect>
<ellipse id="Oval-Copy-2" fill="#A1B8E3" cx="25.9931183" cy="27.3886989" rx="19.152824" ry="20.1811466"></ellipse>
<rect id="Rectangle" fill="#A1B8E3" x="51.9862367" y="9.61006979" width="106.252571" height="8.16855932" rx="4.08427966"></rect>
<rect id="Rectangle-Copy" fill="#A1B8E3" x="51.9862367" y="23.0641675" width="81.1714923" height="8.16855932" rx="4.08427966"></rect>
<rect id="Rectangle-Copy-2" fill="#A1B8E3" opacity="0.5" x="51.9862367" y="39.4012861" width="30.0972949" height="5.76604187" rx="2.88302094"></rect>
</g>
</g>
</g>
<g id="yellow-comment" filter="url(#filter-12)" transform="translate(0.000000, 137.423998)">
<rect id="Rectangle-16" fill="url(#linearGradient-13)" x="0" y="0" width="171.463377" height="54.7773978" rx="3"></rect>
<ellipse id="Oval-Copy-2" fill="#F94A8A" cx="25.9931183" cy="27.3886989" rx="19.152824" ry="20.1811466"></ellipse>
<rect id="Rectangle" fill="#F94A8A" x="51.9862367" y="9.61006979" width="106.252571" height="8.16855932" rx="4.08427966"></rect>
<rect id="Rectangle-Copy" fill="#F94A8A" x="51.9862367" y="23.0641675" width="81.1714923" height="8.16855932" rx="4.08427966"></rect>
<rect id="Rectangle-Copy-2" fill="#F94A8A" opacity="0.5" x="51.9862367" y="39.4012861" width="30.0972949" height="5.76604187" rx="2.88302094"></rect>
</g>
</g>
<g id="person" transform="translate(72.039592, 159.441983)">
<g id="elbow" transform="translate(0.454570, 112.584879)">
<mask id="mask-16" fill="white">
<use xlink:href="#path-15"></use>
</mask>
<use id="Mask" fill="url(#linearGradient-14)" xlink:href="#path-15"></use>
<path d="M2.27203271,9.83138683 C2.97563286,11.3382915 12.5636755,19.3097377 14.1491295,21.1946915 C15.7345835,23.0796454 16.0970537,28.0065224 17.0074659,27.4974955 C17.6144073,27.1581443 17.6144073,22.1710705 17.0074659,12.5362741 C6.714777,9.72841281 1.80296595,8.82678373 2.27203271,9.83138683 Z" id="Path-7" fill="#5640A6" style="mix-blend-mode: multiply;" opacity="0.5" mask="url(#mask-16)"></path>
</g>
<g id="shoe" transform="translate(35.183697, 318.099709) rotate(2.000000) translate(-35.183697, -318.099709) translate(18.183697, 307.099709)">
<path d="M0.481980651,6.20118306 C0.481980651,10.6253636 -0.602475814,16.1536233 0.481980651,18.3507724 C1.56643712,20.5479214 6.94153986,21.7031153 8.71481827,21.7031153 C10.4880967,21.7031153 11.0812115,18.5512996 13.8351512,20.1728176 C16.589091,21.7943356 32.285065,21.7031153 33.3048181,15.1238572 C34.3245711,8.54459899 26.3673971,8.54459899 22.8282542,8.54459899 C19.2891113,8.54459899 15.5410302,6.72805845 10.2858985,2.01134411 C5.03076666,-2.70537023 0.481980651,1.77700252 0.481980651,6.20118306 Z" id="Path-90" fill="url(#linearGradient-17)"></path>
<g id="Group-9" transform="translate(17.728217, 6.707184)" stroke="#FFFFFF" stroke-linecap="round" stroke-width="2">
<path d="M0.457082695,5.16589448 C-0.40295986,2.92869777 2.22357789,0.474586122 2.87152207,0.414841183" id="Path-14" transform="translate(1.578689, 2.790368) scale(-1, 1) translate(-1.578689, -2.790368) "></path>
<path d="M4.69864656,4.95149792 C4.47931496,2.30932541 6.26919243,1.45195677 6.97583175,1.38679973" id="Path-14-Copy" transform="translate(5.827992, 3.169149) scale(-1, 1) translate(-5.827992, -3.169149) "></path>
</g>
</g>
<g id="shoe" transform="translate(114.276401, 325.263392) rotate(-5.000000) translate(-114.276401, -325.263392) translate(97.276401, 314.263392)">
<path d="M0.481980651,6.20118306 C0.481980651,10.6253636 -0.602475814,16.1536233 0.481980651,18.3507724 C1.56643712,20.5479214 6.94153986,21.7031153 8.71481827,21.7031153 C10.4880967,21.7031153 11.0812115,18.5512996 13.8351512,20.1728176 C16.589091,21.7943356 32.285065,21.7031153 33.3048181,15.1238572 C34.3245711,8.54459899 26.3673971,8.54459899 22.8282542,8.54459899 C19.2891113,8.54459899 15.5410302,6.72805845 10.2858985,2.01134411 C5.03076666,-2.70537023 0.481980651,1.77700252 0.481980651,6.20118306 Z" id="Path-90" fill="url(#linearGradient-17)"></path>
<g id="Group-9" transform="translate(17.728217, 6.707184)" stroke="#FFFFFF" stroke-linecap="round" stroke-width="2">
<path d="M0.457082695,5.16589448 C-0.40295986,2.92869777 2.22357789,0.474586122 2.87152207,0.414841183" id="Path-14" transform="translate(1.578689, 2.790368) scale(-1, 1) translate(-1.578689, -2.790368) "></path>
<path d="M4.69864656,4.95149792 C4.47931496,2.30932541 6.26919243,1.45195677 6.97583175,1.38679973" id="Path-14-Copy" transform="translate(5.827992, 3.169149) scale(-1, 1) translate(-5.827992, -3.169149) "></path>
</g>
</g>
<g id="jeans" transform="translate(18.182787, 163.367845)">
<mask id="mask-20" fill="white">
<use xlink:href="#path-19"></use>
</mask>
<use id="Mask" fill="url(#linearGradient-18)" xlink:href="#path-19"></use>
<path d="M26.1827837,96.9769748 C26.1827837,90.4998586 29.3491761,37.5743353 30.0766008,39.7462686 C30.5615505,41.1942241 32.6923042,45.8276758 36.4688619,53.6466236 C29.6114764,86.8516019 26.1827837,101.295052 26.1827837,96.9769748 Z" id="Path-10" fill="#9C8FCA" style="mix-blend-mode: multiply;" opacity="0.5" mask="url(#mask-20)"></path>
<path d="M8.77142444,11.3292245 C12.7771847,13.5997743 28.4640823,23.2642891 48.6772869,19.3912693 C58.6643644,17.4776614 65.088807,14.9732761 67.9706073,11.3292245 C67.9706073,9.53426882 65.5482355,1.98434359 64.8717811,-0.904173197 C64.1953268,-3.79268999 3.86578733,8.54860536 8.77142444,11.3292245 Z" id="Path-6" fill="url(#linearGradient-21)" style="mix-blend-mode: multiply;" opacity="0.5" mask="url(#mask-20)"></path>
</g>
<g id="face" transform="translate(31.819877, 22.516976)">
<mask id="mask-23" fill="white">
<use xlink:href="#path-22"></use>
</mask>
<use id="Mask" fill="url(#linearGradient-14)" xlink:href="#path-22"></use>
<path d="M26.8214826,37.2436017 C22.5204269,37.2436017 15.8109821,33.2298279 14.5196232,31.8585079 C13.2282643,30.4871879 25.2720435,45.322392 24.2667154,47.6851438 C23.4736007,49.5491457 20.6421484,50.1193646 22.4278937,50.1193646 C28.868266,50.1193646 31.1225384,37.2436017 26.8214826,37.2436017 Z" id="Path-3" fill="#6A54B3" style="mix-blend-mode: multiply;" opacity="0.5" mask="url(#mask-23)"></path>
</g>
<path d="M33.7332038,61.0016372 C18.7099491,46.2024927 6.81410627,33.5726123 17.0734655,15.9738713 C27.3328246,-1.62486967 51.2040587,-7.54092739 55.6660588,13.8518665 C55.6660588,19.9711481 53.5225341,24.665302 49.2354846,27.934328 C48.4334802,29.6543775 49.0896715,31.4267064 51.2040587,33.2513149 C53.3184459,35.0759234 53.3184459,36.7421803 51.2040587,38.2500856 C47.0287764,35.419755 44.3959632,35.8891755 43.3056192,39.6583471 C41.6701032,45.3121044 47.707143,47.3358747 47.707143,48.7510222 C49.094352,52.2181298 48.356464,55.5374278 45.4934788,58.7089164 C44.027768,60.2373969 40.1076763,61.0016372 33.7332038,61.0016372 Z" id="hair" fill="url(#linearGradient-24)"></path>
<path d="M18.2372701,80.9652957 C7.51589476,100.787463 1.50842628,112.879456 0.214864695,117.241274 C-1.07869689,121.603093 4.92877159,125.045246 18.2372701,127.567735 L26.567741,90.1661098 L18.2372701,80.9652957 Z" id="sleeve" fill="url(#linearGradient-25)"></path>
<g id="shirt" transform="translate(15.000799, 69.946350)">
<mask id="mask-27" fill="white">
<use xlink:href="#path-26"></use>
</mask>
<use id="Mask" fill="#EDE8FF" xlink:href="#path-26"></use>
<path d="M48.0388157,31.2067659 C52.3944435,52.663976 55.8827428,65.4035034 58.5037135,69.4253481 C59.3507485,70.725112 60.1339488,72.5922419 60.8729735,74.7436954 C63.5640828,82.5780695 65.6694238,94.1825841 68.1382543,95.8903815 C71.2850679,98.0671694 75.8055681,73.1644315 73.545318,64.6381524 C72.0384846,58.9539663 67.8890656,49.1505224 61.097061,35.2278207 L48.0388157,31.2067659 Z" id="Path-4" fill="url(#linearGradient-28)" opacity="0.5" mask="url(#mask-27)"></path>
<path d="M21.6380399,2.50875956 C24.545793,4.54142309 32.1223485,5.64172152 38.4907867,5.64172152 C44.8592249,5.64172152 46.8510396,5.7127997 49.8982274,4.73535537 C52.9454152,3.75791104 51.7638866,2.50875956 49.8982274,2.50875956 C48.0325682,2.50875956 42.2458362,1.07524 39.1312196,1.07524 C36.0166031,1.07524 18.7302868,0.476096027 21.6380399,2.50875956 Z" id="Path-11" fill="url(#linearGradient-29)" opacity="0.5" mask="url(#mask-27)"></path>
</g>
<path d="M33.2110787,70.7290062 C32.9612634,67.4470448 32.8363558,65.2767955 32.8363558,64.2182583 C32.8363558,62.6304524 45.3821317,64.8726757 54.4104278,65.7625789 C55.3900733,69.7233749 55.2165976,69.9854148 55.2165976,70.7290062 C55.2165976,71.1007033 52.9619187,74.286991 40.8313456,73.253924 C37.8792569,73.0025174 35.3391679,72.1608782 33.2110787,70.7290062 Z" id="colar" fill="#B4AAD7"></path>
<g id="hand" transform="translate(103.243855, 74.064322) rotate(-26.000000) translate(-103.243855, -74.064322) translate(54.243855, 22.564322)">
<path d="M23.9977216,78.1805535 C30.6505968,78.1805535 39.8491581,75.6303795 39.8491581,72.3229906 C39.8491581,69.0156017 32.2804767,67.8774383 25.6276014,67.8774383 C18.9747262,67.8774383 16.0618303,71.1834427 15.2392915,73.4834403 C15.645039,75.4397521 17.3448464,78.1805535 23.9977216,78.1805535 Z" id="Oval" fill="#846DC2" transform="translate(27.544225, 73.028996) rotate(-40.000000) translate(-27.544225, -73.028996) "></path>
<g id="Path-2" transform="translate(13.648434, 0.000000)">
<mask id="mask-31" fill="white">
<use xlink:href="#path-30"></use>
</mask>
<use id="Mask" fill="url(#linearGradient-14)" transform="translate(42.086314, 51.214077) rotate(12.000000) translate(-42.086314, -51.214077) " xlink:href="#path-30"></use>
<path d="M22.5495834,63.9341096 C16.3412374,73.0394965 13.0662806,79.3134062 12.724713,82.7558386 C12.3831453,86.198271 10.3942383,84.4321238 6.75799187,77.4573968 C8.83576592,73.2562633 10.7483631,70.4074861 12.4957835,68.9110652 C14.2432039,67.4146443 17.5944705,65.7556591 22.5495834,63.9341096 Z" fill="#5640A6" style="mix-blend-mode: multiply;" opacity="0.5" mask="url(#mask-31)"></path>
<path d="M28.4538392,71.0257961 C28.9521776,71.6665284 29.9453379,72.7755733 30.2994331,74.9289153" id="Path-9" stroke="#223762" stroke-width="2" stroke-linecap="round" mask="url(#mask-31)"></path>
</g>
<path d="M18.3140806,81.6168241 C22.7323936,75.5043519 28.8965693,67.1352588 36.6201225,64.2000373 C22.1302585,46.4294137 17.7164808,40.5007912 13.1496807,34.9383512 C8.58288057,29.3759111 -4.58288086,43.7846239 2.49693445,57.9576216 C9.57674976,72.1306193 15.911809,78.6176275 18.3140806,81.6168241 Z" id="Path-85" fill="url(#linearGradient-32)"></path>
</g>
</g>
<g id="comment-stack" transform="translate(227.145243, 422.598653)">
<g id="other-comments" transform="translate(111.494819, 61.488387) rotate(-2.000000) translate(-111.494819, -61.488387) translate(4.994819, 15.488387)">
<g id="3" transform="translate(108.056190, 60.696238) rotate(2.000000) translate(-108.056190, -60.696238) translate(8.556190, 33.696238)">
<path d="M0,40.0694619 L197.459656,40.0694619 L197.459656,40.0694619 C197.459656,47.246679 191.641372,53.064963 184.464154,53.064963 L12.9955011,53.064963 C5.81828405,53.064963 8.78955595e-16,47.246679 0,40.0694619 Z" id="side" fill="#B4AAD7"></path>
<g id="top" transform="translate(0.451853, 0.000000)">
<mask id="mask-34" fill="white">
<use xlink:href="#path-33"></use>
</mask>
<use id="Mask" fill="#EDE9F5" xlink:href="#path-33"></use>
<path d="M29.5019529,39.3870401 C41.7245236,39.3870401 52.9019732,31.9033076 54.4674853,22.6716557 C56.0329975,13.4400039 48.5915452,5.95627136 37.8465366,5.95627136 C27.1015279,5.95627136 15.9240783,13.4400039 12.8810042,22.6716557 C9.83793001,31.9033076 17.2793822,39.3870401 29.5019529,39.3870401 Z" id="Oval-Copy-2" fill="#B4AAD7" mask="url(#mask-34)"></path>
<path d="M68.1860711,8.12218821 L169.062221,8.12218821 C171.254606,8.12218821 173.490736,9.63675312 174.056758,11.5050636 C174.62278,13.3733741 173.255293,14.887939 171.00239,14.887939 L67.3416787,14.887939 C65.0887761,14.887939 63.4759912,13.3733741 63.7394227,11.5050636 C64.0028543,9.63675312 65.9936865,8.12218821 68.1860711,8.12218821 Z" id="Rectangle" fill="#CAD7F1" mask="url(#mask-34)"></path>
<path d="M66.5579618,19.4932517 L145.166574,19.4932517 C147.458636,19.4932517 149.616848,21.0078166 149.987076,22.8761271 C150.357304,24.7444376 148.750291,26.2590025 146.397711,26.2590025 L65.7135694,26.2590025 C63.3609901,26.2590025 61.6674011,24.7444376 61.9308327,22.8761271 C62.1942642,21.0078166 64.2659005,19.4932517 66.5579618,19.4932517 Z" id="Rectangle-Copy" fill="#CAD7F1" mask="url(#mask-34)"></path>
<path d="M63.9874467,33.0302321 L91.7453489,33.0302321 C93.4487118,33.0302321 94.8132637,34.0993367 94.7931608,35.4181441 C94.7730579,36.7369515 93.3514679,37.8060562 91.6179507,37.8060562 L63.3686554,37.8060562 C61.6351382,37.8060562 60.3805884,36.7369515 60.5665401,35.4181441 C60.7524918,34.0993367 62.2840839,33.0302321 63.9874467,33.0302321 Z" id="Rectangle-Copy-2" fill="#CAD7F1" opacity="0.5" mask="url(#mask-34)"></path>
</g>
</g>
<g id="2" filter="url(#filter-35)" transform="translate(101.587799, 44.040986) rotate(3.000000) translate(-101.587799, -44.040986) translate(2.087799, 17.040986)">
<path d="M0,40.0694619 L197.459656,40.0694619 L197.459656,40.0694619 C197.459656,47.246679 191.641372,53.064963 184.464154,53.064963 L12.9955011,53.064963 C5.81828405,53.064963 8.78955595e-16,47.246679 0,40.0694619 Z" id="side" fill="#B4AAD7"></path>
<g id="top" transform="translate(0.451853, 0.000000)">
<mask id="mask-37" fill="white">
<use xlink:href="#path-36"></use>
</mask>
<use id="Mask" fill="#EDE9F5" xlink:href="#path-36"></use>
<path d="M29.5019529,39.3870401 C41.7245236,39.3870401 52.9019732,31.9033076 54.4674853,22.6716557 C56.0329975,13.4400039 48.5915452,5.95627136 37.8465366,5.95627136 C27.1015279,5.95627136 15.9240783,13.4400039 12.8810042,22.6716557 C9.83793001,31.9033076 17.2793822,39.3870401 29.5019529,39.3870401 Z" id="Oval-Copy-2" fill="#CAD7F1" mask="url(#mask-37)"></path>
<path d="M68.1860711,8.12218821 L169.062221,8.12218821 C171.254606,8.12218821 173.490736,9.63675312 174.056758,11.5050636 C174.62278,13.3733741 173.255293,14.887939 171.00239,14.887939 L67.3416787,14.887939 C65.0887761,14.887939 63.4759912,13.3733741 63.7394227,11.5050636 C64.0028543,9.63675312 65.9936865,8.12218821 68.1860711,8.12218821 Z" id="Rectangle" fill="#CAD7F1" mask="url(#mask-37)"></path>
<path d="M66.5579618,19.4932517 L145.166574,19.4932517 C147.458636,19.4932517 149.616848,21.0078166 149.987076,22.8761271 C150.357304,24.7444376 148.750291,26.2590025 146.397711,26.2590025 L65.7135694,26.2590025 C63.3609901,26.2590025 61.6674011,24.7444376 61.9308327,22.8761271 C62.1942642,21.0078166 64.2659005,19.4932517 66.5579618,19.4932517 Z" id="Rectangle-Copy" fill="#CAD7F1" mask="url(#mask-37)"></path>
<path d="M63.9874467,33.0302321 L91.7453489,33.0302321 C93.4487118,33.0302321 94.8132637,34.0993367 94.7931608,35.4181441 C94.7730579,36.7369515 93.3514679,37.8060562 91.6179507,37.8060562 L63.3686554,37.8060562 C61.6351382,37.8060562 60.3805884,36.7369515 60.5665401,35.4181441 C60.7524918,34.0993367 62.2840839,33.0302321 63.9874467,33.0302321 Z" id="Rectangle-Copy-2" fill="#CAD7F1" opacity="0.5" mask="url(#mask-37)"></path>
</g>
</g>
<g id="1" filter="url(#filter-38)" transform="translate(13.509103, 0.183272)">
<path d="M0,40.0694619 L197.459656,40.0694619 L197.459656,40.0694619 C197.459656,47.246679 191.641372,53.064963 184.464154,53.064963 L12.9955011,53.064963 C5.81828405,53.064963 8.78955595e-16,47.246679 0,40.0694619 Z" id="side" fill="#B4AAD7"></path>
<g id="top" transform="translate(0.451853, 0.000000)">
<mask id="mask-40" fill="white">
<use xlink:href="#path-39"></use>
</mask>
<use id="Mask" fill="#EDE9F5" xlink:href="#path-39"></use>
<path d="M29.5019529,39.3870401 C41.7245236,39.3870401 52.9019732,31.9033076 54.4674853,22.6716557 C56.0329975,13.4400039 48.5915452,5.95627136 37.8465366,5.95627136 C27.1015279,5.95627136 15.9240783,13.4400039 12.8810042,22.6716557 C9.83793001,31.9033076 17.2793822,39.3870401 29.5019529,39.3870401 Z" id="Oval-Copy-2" fill="#B4AAD7" mask="url(#mask-40)"></path>
<path d="M68.1860711,8.12218821 L169.062221,8.12218821 C171.254606,8.12218821 173.490736,9.63675312 174.056758,11.5050636 C174.62278,13.3733741 173.255293,14.887939 171.00239,14.887939 L67.3416787,14.887939 C65.0887761,14.887939 63.4759912,13.3733741 63.7394227,11.5050636 C64.0028543,9.63675312 65.9936865,8.12218821 68.1860711,8.12218821 Z" id="Rectangle" fill="#CAD7F1" mask="url(#mask-40)"></path>
<path d="M66.5579618,19.4932517 L145.166574,19.4932517 C147.458636,19.4932517 149.616848,21.0078166 149.987076,22.8761271 C150.357304,24.7444376 148.750291,26.2590025 146.397711,26.2590025 L65.7135694,26.2590025 C63.3609901,26.2590025 61.6674011,24.7444376 61.9308327,22.8761271 C62.1942642,21.0078166 64.2659005,19.4932517 66.5579618,19.4932517 Z" id="Rectangle-Copy" fill="#CAD7F1" mask="url(#mask-40)"></path>
<path d="M63.9874467,33.0302321 L91.7453489,33.0302321 C93.4487118,33.0302321 94.8132637,34.0993367 94.7931608,35.4181441 C94.7730579,36.7369515 93.3514679,37.8060562 91.6179507,37.8060562 L63.3686554,37.8060562 C61.6351382,37.8060562 60.3805884,36.7369515 60.5665401,35.4181441 C60.7524918,34.0993367 62.2840839,33.0302321 63.9874467,33.0302321 Z" id="Rectangle-Copy-2" fill="#CAD7F1" opacity="0.5" mask="url(#mask-40)"></path>
</g>
</g>
</g>
<g id="top-comment">
<path d="M0,40.3340925 L197.382643,40.3340925 L197.382643,40.3340925 C197.382643,47.5587101 191.525933,53.4154198 184.301316,53.4154198 L13.0813273,53.4154198 C5.85670972,53.4154198 8.84760479e-16,47.5587101 0,40.3340925 Z" id="side" fill="#B4AAD7"></path>
<g id="top" transform="translate(0.451677, 0.000000)">
<mask id="mask-42" fill="white">
<use xlink:href="#path-41"></use>
</mask>
<use id="Mask" fill="#EDE9F5" xlink:href="#path-41"></use>
<path d="M29.4904466,39.6471638 C41.7082503,39.6471638 52.8813405,32.1140065 54.446242,22.8213861 C56.0111436,13.5287656 48.5725937,5.99560834 37.8317758,5.99560834 C27.0909579,5.99560834 15.9178677,13.5287656 12.8759804,22.8213861 C9.83409305,32.1140065 17.272643,39.6471638 29.4904466,39.6471638 Z" id="Oval-Copy-2" fill="#B4AAD7" opacity="0.5" mask="url(#mask-42)"></path>
<path d="M68.1594773,8.17582956 L168.996284,8.17582956 C171.187814,8.17582956 173.423072,9.70039711 173.988873,11.5810465 C174.554674,13.4616959 173.18772,14.9862634 170.935696,14.9862634 L67.3154142,14.9862634 C65.0633903,14.9862634 63.4512344,13.4616959 63.7145632,11.5810465 C63.977892,9.70039711 65.9679479,8.17582956 68.1594773,8.17582956 Z" id="Rectangle" fill="#B4AAD7" opacity="0.5" mask="url(#mask-42)"></path>
<path d="M66.5320031,19.6219909 L145.109957,19.6219909 C147.401124,19.6219909 149.558494,21.1465585 149.928578,23.0272079 C150.298662,24.9078572 148.692275,26.4324248 146.340614,26.4324248 L65.68794,26.4324248 C63.3362782,26.4324248 61.6433498,24.9078572 61.9066786,23.0272079 C62.1700074,21.1465585 64.2408357,19.6219909 66.5320031,19.6219909 Z" id="Rectangle-Copy" fill="#B4AAD7" opacity="0.5" mask="url(#mask-42)"></path>
<path d="M63.9624905,33.2483735 L91.7095666,33.2483735 C93.4122652,33.2483735 94.7762848,34.3245389 94.7561898,35.6520561 C94.7360947,36.9795733 93.3150592,38.0557386 91.5822181,38.0557386 L63.3439405,38.0557386 C61.6110994,38.0557386 60.3570389,36.9795733 60.5429181,35.6520561 C60.7287972,34.3245389 62.259792,33.2483735 63.9624905,33.2483735 Z" id="Rectangle-Copy-2" fill="#B4AAD7" opacity="0.300000012" mask="url(#mask-42)"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 43 KiB

View File

@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 164 140" style="enable-background:new 0 0 164 140;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;}
.st1{fill:#FFFFFF;stroke:#5763AB;stroke-miterlimit:10;}
.st2{fill:none;stroke:#5763AB;stroke-width:2;}
.st3{fill:#FFFFFF;stroke:#5763AB;stroke-width:2;}
.st4{fill:none;stroke:#92DEE2;stroke-width:2;}
.st5{fill:#92DEE2;}
</style>
<title>Modern_DevOps</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="Modern_DevOps">
<g id="Group-45" transform="translate(5.000000, 29.000000)">
<g id="ic_settings" transform="translate(64.000000, 0.000000)">
<polygon id="Bounds" class="st0" points="0,0 24,0 24,24 0,24 "/>
<path id="Icon" class="st1" d="M19.4,13c0-0.3,0.1-0.6,0.1-1s0-0.7-0.1-1l2.1-1.7c0.2-0.1,0.2-0.4,0.1-0.6l-2-3.5
C19.5,5.1,19.3,5,19,5.1l-2.5,1c-0.5-0.4-1.1-0.7-1.7-1l-0.4-2.7C14.5,2.2,14.2,2,14,2h-4C9.8,2,9.5,2.2,9.5,2.4L9.1,5.1
C8.5,5.3,8,5.7,7.4,6.1l-2.5-1C4.7,5,4.5,5.1,4.3,5.3l-2,3.5C2.2,8.9,2.3,9.2,2.5,9.4L4.6,11c0,0.3-0.1,0.6-0.1,1s0,0.7,0.1,1
l-2.1,1.7c-0.2,0.1-0.2,0.4-0.1,0.6l2,3.5C4.5,19,4.7,19,4.9,19l2.5-1c0.5,0.4,1.1,0.7,1.7,1l0.4,2.6c0,0.2,0.2,0.4,0.5,0.4h4
c0.2,0,0.5-0.2,0.5-0.4l0.4-2.6c0.6-0.2,1.2-0.6,1.7-1l2.5,1c0.2,0.1,0.5,0,0.6-0.2l2-3.5c0.1-0.2,0.1-0.5-0.1-0.6L19.4,13
L19.4,13z M12,15.5c-1.9,0-3.5-1.6-3.5-3.5s1.6-3.5,3.5-3.5s3.5,1.6,3.5,3.5S13.9,15.5,12,15.5L12,15.5z"/>
</g>
<g id="ic_settings_1_" transform="translate(64.000000, 58.000000)">
<polygon id="Bounds_1_" class="st0" points="0,0 24,0 24,24 0,24 "/>
<path id="Icon_1_" class="st2" d="M19.4,13c0-0.3,0.1-0.6,0.1-1s0-0.7-0.1-1l2.1-1.7c0.2-0.1,0.2-0.4,0.1-0.6l-2-3.5
C19.5,5.1,19.3,5,19,5.1l-2.5,1c-0.5-0.4-1.1-0.7-1.7-1l-0.4-2.7C14.5,2.2,14.2,2,14,2h-4C9.8,2,9.5,2.2,9.5,2.4L9.1,5.1
C8.5,5.3,8,5.7,7.4,6.1l-2.5-1C4.7,5,4.5,5.1,4.3,5.3l-2,3.5C2.2,8.9,2.3,9.2,2.5,9.4L4.6,11c0,0.3-0.1,0.6-0.1,1s0,0.7,0.1,1
l-2.1,1.7c-0.2,0.1-0.2,0.4-0.1,0.6l2,3.5C4.5,19,4.7,19,4.9,19l2.5-1c0.5,0.4,1.1,0.7,1.7,1l0.4,2.6c0,0.2,0.2,0.4,0.5,0.4h4
c0.2,0,0.5-0.2,0.5-0.4l0.4-2.6c0.6-0.2,1.2-0.6,1.7-1l2.5,1c0.2,0.1,0.5,0,0.6-0.2l2-3.5c0.1-0.2,0.1-0.5-0.1-0.6L19.4,13
L19.4,13z M12,15.5c-1.9,0-3.5-1.6-3.5-3.5s1.6-3.5,3.5-3.5s3.5,1.6,3.5,3.5S13.9,15.5,12,15.5L12,15.5z"/>
</g>
<path id="Path-13" class="st3" d="M77,40.3C95.1,23.2,108.9,5,124.8,5c15.9,0,28.9,16.7,28.8,35.3S140.6,69.8,124.8,70
S77,40.3,77,40.3z"/>
<path id="Path-13_1_" class="st3" d="M76.6,40.3C58.5,23.2,44.8,5,28.8,5C12.9,5-0.1,21.7,0,40.3S13.1,69.8,28.8,70
S76.6,40.3,76.6,40.3z"/>
<polyline id="Path-14" class="st4" points="42,33.8 42,28 19,28 19,54 42,54 42,48.8 "/>
<polygon id="Path" class="st4" points="27.4,27.2 27.4,23 33.6,23 33.6,27.2 37,27.2 37,32 24,32 24,27.2 "/>
<polyline id="Path-15" class="st2" points="28,41 35,48 49,33 "/>
<g id="Group-37" transform="translate(107.000000, 17.000000)">
<rect id="Rectangle-15" x="9" y="27" class="st5" width="8" height="8"/>
<rect id="Rectangle-15_1_" x="18" y="27" class="st5" width="8" height="8"/>
<rect id="Rectangle-15_2_" x="27" y="27" class="st5" width="8" height="8"/>
<rect id="Rectangle-15_3_" x="4" y="18" class="st5" width="8" height="8"/>
<rect id="Rectangle-15_4_" x="13" y="18" class="st5" width="8" height="8"/>
<rect id="Rectangle-15_5_" x="8" y="9" class="st5" width="8" height="8"/>
<rect id="Rectangle-15_6_" x="12" class="st5" width="8" height="8"/>
<rect id="Rectangle-15_7_" x="17" y="9" class="st5" width="8" height="8"/>
<rect id="Rectangle-15_8_" x="22" y="18" class="st5" width="8" height="8"/>
<rect id="Rectangle-15_9_" y="27" class="st5" width="8" height="8"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

25
static/images/mongodb.svg Normal file
View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 110 110" style="enable-background:new 0 0 110 110;" xml:space="preserve">
<style type="text/css">
.st0{fill:#92DEE2;}
.st1{fill:#29D0CA;}
.st2{fill:#5763AB;}
.st3{fill:none;}
</style>
<title>Mongo_DB</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="Mongo_DB">
<g id="Group-2">
<g id="Group" transform="translate(35.506329, 11.139241)">
<path id="Path-106" class="st0" d="M20.5,0l-0.8,76.9C5.3,64-1.2,51,0.2,38.1S8.3,12.5,20.5,0z"/>
<path id="Path-106_1_" class="st1" d="M20.5,0l-0.8,76.9C34.1,64,40.6,51,39.3,38.1S32.7,12.5,20.5,0z"/>
<polygon id="Path-107" class="st2" points="18.5,77 21.5,77 21.5,89.6 18.5,89.6 "/>
</g>
<rect id="Rectangle-9" class="st3" width="110" height="110"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

32
static/images/mysql.svg Normal file
View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 110 110" style="enable-background:new 0 0 110 110;" xml:space="preserve">
<style type="text/css">
.st0{fill:#5763AB;}
.st1{fill:none;stroke:#818CCD;}
.st2{fill:none;}
</style>
<title>My_SQL</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="My_SQL">
<g id="Group">
<g id="Group-77" transform="translate(10.717949, 14.102564)">
<path id="Path-108" class="st0" d="M64,61.8l1-0.1C64.7,61.7,64.3,61.7,64,61.8z M65,61.7h-2.7C73.6,69.7,75.6,73.2,77,75.9
c-6.7-6.8-12.8-11.3-18.1-13.7l-3.3-2l3.8-0.7c4.2-0.8,10.9-0.5,15.4-0.5c-2.7-3.3-10-7.8-21.8-12.3l-0.9-0.4v-0.9
c0-2.9-3.2-9.9-9.5-20.6c-6.2-10.5-15.8-16-28.9-16.4l-0.4,0L6.6,3.2c-2.3-1.8-3.4-1.1-4,0C2.3,3.8,2.3,4.3,2.5,4.9
c0.2,0.5,0.5,1,1.1,1.8C3.8,7,4.5,7.9,4.5,8c0.4,0.5,0.7,1,1,1.4c0.6,0.9,1.1,1.8,1.6,2.7c0.8,1.7,1.5,3.3,2.2,5.1
c0.3,0.8,1.3,3.4,1.5,3.9c1,2.7,1.9,4.2,3.4,5.7c0.2,0.2,0.4,0.4,0.7,0.6l0.8,0.7l-0.4,0.9c-0.8,2.2-3.5,8.1-3.2,13
c0.3,4.9,3.8,10.2,5.7,12.5c0.7-4.8,1.2-10.7,2.1-14.4L22,32L22.4,42C23,48,26.4,52.9,32.7,59l5.3,6.7
c-4.5-4.4-14.7-14.1-16.5-18.6c-0.5,2.7-1,5.7-1.4,8.9l-0.3,2.2l-2-1.1c-4.3-2.3-6.6-7.8-7-15.1c-0.3-4.7,1.3-10.5,2.1-13.4
c-2-2-3-3.2-4.1-6.3c-0.2-0.5-1.1-3.4-1.4-4.2c-0.7-1.7-0.7-3.2-1.5-4.8C5.5,12.6,5,11.8,4.5,11c-0.3-0.4-0.6-0.8-0.9-1.3
c0,0-0.7-1-0.9-1.2c-0.7-1-1.5-2.4-1.8-3.1C0.3,4,0.2,3.3,0.8,1.9c1-2.2,3.1-2.7,6.5,0l6.9,3.4c14,0.6,24.4,6.6,31.1,17.9
c6.1,10.3,8.6,18.2,9.1,22.1c12.9,6.3,18.7,9.4,21.1,11.8l3.7,4.3h-3.7C71.9,61.2,68.4,61.3,65,61.7z"/>
<path id="Path-109" class="st1" d="M15.7,13c1.2,0.6,1.9,1.4,2,2.2c0.2,1.3,1.2-0.5,0.6-1.2C17.8,13.6,17,13.3,15.7,13z"/>
</g>
<rect id="Rectangle-9" class="st2" width="110" height="110"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

BIN
static/images/nina2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 MiB

33
static/images/nodejs.svg Normal file
View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 110 110" style="enable-background:new 0 0 110 110;" xml:space="preserve">
<style type="text/css">
.st0{fill:#92DEE2;}
.st1{fill:#5763AB;}
.st2{fill:#FAFAFA;}
.st3{fill:none;}
</style>
<title>Node_js</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="Node_js">
<g id="Group-2">
<g id="Group-72" transform="translate(15.197368, 10.855263)">
<polygon id="Path-91" class="st0" points="0,22.5 38.7,0 76.3,22.5 76.3,66 38.7,88.9 0,66 "/>
<g id="Group" transform="translate(3.783508, 31.595678)">
<polygon id="Path-92" class="st1" points="4.2,19.1 0.6,21.2 0.6,11.8 6.3,9.7 7.1,9.7 12.9,11.8 12.9,21.2 9.2,19.1 9.2,13.3
4.2,13.3 "/>
<path id="Combined-Shape" class="st1" d="M46.9,11V0.2L49.8,1v18.1H49l-5.8,2.2l-5.8-2.2v-7.2l5.8-2.2L46.9,11z M43.3,17.6
l2.9-1.4v-1.4l-2.9-1.4l-2.9,1.4v1.4L43.3,17.6z"/>
<path id="Combined-Shape_1_" class="st2" d="M20.1,19.1v-7.2l5.8-2.2l5.8,2.2v7.2l-5.8,2.2L20.1,19.1z M25.9,17.6l2.9-1.5v-1.4
l-2.9-1.4L23,14.7v1.4L25.9,17.6z"/>
<path id="Combined-Shape_2_" class="st1" d="M63.6,14l-0.8-0.7h-1.4l-2.2,1.5v1.4l2.2,1.4h6.5v-2.2l-2.9,0h-3.6V14L63.6,14z
M55.6,19.1l0-7.2l5.8-2.2h1.4l5.1,3.6v4.3l-5.1,3.6h-1.4L55.6,19.1z"/>
</g>
</g>
<rect id="Rectangle-11" class="st3" width="110" height="110"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 110 110" style="enable-background:new 0 0 110 110;" xml:space="preserve">
<style type="text/css">
.st0{fill:#92DEE2;}
.st1{fill:#5763AB;}
.st2{fill:#92DEE2;stroke:#92DEE2;stroke-width:2;}
.st3{fill:none;}
</style>
<title>Postrgresql</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="Postrgresql">
<g id="Group">
<g id="Group-75" transform="translate(8.333333, 8.333333)">
<path id="Path-102" class="st0" d="M41.1,68.4c0.5,14.3,3,22.2,7.6,23.8c6.8,2.4,18.9-1.6,20.1-6.3c0.8-3.1,1.7-9.7,2.7-19.8
c13.4-2.5,19.7-5.5,19-9.1c-0.7-3.6-5.6-4.3-14.4-2c11.2-19.8,15.5-32.9,13.1-39.4C85.4,6,78.4,0.4,65.1,0
C53.8,5.8,55.9,1.9,47,1.1c-7.5,1.2-9.4,2.2-10.8,3.4c-1.4,1.2-18.9-9-28.6,0S-4.8,35.1,14,65.2c3.5,3.2,7.6,3.5,12.4,0.9
l6.6-8.4h4.9c-6.7,2.8-10,5.2-9.8,7.4C28.5,68.7,32.8,69.8,41.1,68.4z"/>
<g id="Group-74" transform="translate(2.743620, 0.808357)">
<path id="Path-102_1_" class="st1" d="M42.6,62.7C41.8,78,43.6,86.5,48,88c6.6,2.2,15.4-1.6,16.5-5.9c0.8-2.9,1.8-9.3,3-19.3
c13.7-1.7,20.1-4.3,19.4-7.6c-1.1-5-17.4,6.1-15.2-2.7c5.1-5.5,16.5-26.7,12.9-35.7c-3.6-9-9.4-14.5-22.3-14.9
c-4.8,3.3-7.2,0.4-15.9-0.3C39.1,2.6,35.6,5,34.2,6.1s-19.1-8.7-27.8,0s-10.9,28.5,7.4,56.6c3.3,3,6.8,2.5,10.2-1.5l6.6-7.7
c3.8,2.1,5.5,3.2,5.1,3.5c-0.2,5.7-10.6,4.7-9.6,6.6C27.6,66.1,33.1,65.9,42.6,62.7z"/>
<ellipse id="Oval-15" class="st2" cx="37.4" cy="29.9" rx="1.6" ry="1.1"/>
<path id="Path-103" class="st0" d="M69.8,19.9c-1.4-3.8-3.3-6.7-5.8-9c-1.8-1.7-7.1-5.2-7.5-5.5c-3-2.7-13.9-3.1-20.6,1.1
c-5.2,3.2-8.2,10.2-8.8,20.9c-0.6,9.9-0.8,16-0.5,18.1c0.3,1.8,2.4,6,5.5,8.7l-2.7,1.3c-3.7-3.2-5.6-6.9-5.9-9.6
c-0.3-2.4-0.2-8.6,0.5-18.7c0.6-11.6,4-19.5,10.2-23.3C42.1-1,54.5-0.6,58.6,3.1c0.1,0.1,5.5,3.6,7.5,5.5
c2.9,2.7,5.1,6,6.6,10.2c0.2,0.6,0.7,3.6,0.8,4.5c0.2,2.2,0.3,4.9,0.2,8.1c0,2.2-0.1,4.6-0.2,7.3c0,0.6,0,1.1-0.1,1.8
c0,0.8-0.1,1.2-0.1,1.6c0,1.1-0.1,1.6-0.1,2c0,1.7-0.5,4.4-1.6,8.1L71,54.9l-1.9-2.1c-8.4-9.6-12.3-16.6-11.6-21.3
c1-6.4,3.7-9.9,7.6-10c1.5,0,3.2,0,5.1,0C70,20.8,69.9,20.1,69.8,19.9z M65.2,24.6c-2.1,0-3.8,2.3-4.6,7.4
c-0.5,3.2,2.5,8.8,9,16.6c0.5-2,0.7-3.5,0.7-4.5c0-0.4,0-1,0.1-2.1c0-0.3,0-0.7,0.1-1.6c0-0.7,0.1-1.3,0.1-1.8
c0.1-2.7,0.2-5,0.2-7.2c0-2.6,0-4.9-0.1-6.8C68.5,24.6,66.7,24.6,65.2,24.6z"/>
<path id="Combined-Shape" class="st0" d="M35.4,58.4l3.5-1.7c0.7-0.3,1.3-0.5,1.7-0.6c0.2,0,0.2,0,0.1-0.1
c0.3,0.2,0.9,0.9,1.2,1.7c0.5,1.1-0.8,4.4-1.3,5.7l1.9,2.6c1.4-3.7,2.2-11,0-12.5c-0.5-0.3-1.1-0.5-1.7-0.5l3.1-8.3l0.1-0.3
c0.7-4.3,1.2-8,1.4-11.2c0.3-4.4-1.9-7.4-6.2-10.6c-2.3-1.7-6.3-0.4-12.8,3.3v3.5c5.3-3.1,10.2-4.9,11-4.4
c3.5,2.6,5.2,4.8,5,7.9c-0.2,3-0.7,6.6-1.3,10.8L35.4,58.4z"/>
<path id="Path-105" class="st0" d="M71.5,50.5c-4.2,3.3-6,10-4.4,13.6l2.7-1.1c-1-2.2-0.6-6.5,2.6-9L71.5,50.5z"/>
<ellipse id="Oval-15_1_" class="st2" cx="66.7" cy="28.8" rx="1.6" ry="1.1"/>
</g>
</g>
<rect id="Rectangle-9" class="st3" width="110" height="110"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

27
static/images/python.svg Normal file
View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 110 110" style="enable-background:new 0 0 110 110;" xml:space="preserve">
<style type="text/css">
.st0{fill:#5763AB;}
.st1{fill:#92DEE2;}
.st2{fill:none;}
</style>
<title>Python</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="Python">
<g id="Group">
<g id="Group-73" transform="translate(13.508772, 13.508772)">
<path id="Combined-Shape" class="st0" d="M19.5,63.5H9.2C3.1,59.2,0,52.1,0,42.3c0-9.8,3.1-16.5,9.2-20.2H43v-3H22.5V6
C26.6,2,33.5,0,43,0c9.6,0,16.4,2.7,20.5,8.1v27.2l-7.2,6H29.7l-10.2,9.1V63.5z M31.7,14.1c1.5,0,3.1-1.6,3.1-3
c0-2.5-1.6-4-3.1-4c-2.5,0-4.1,1.6-4.1,4C27.6,12.5,29.2,14.1,31.7,14.1z"/>
<path id="Combined-Shape_1_" class="st1" d="M66.1,22.1h10.2c6.2,4.3,9.3,11.3,9.3,21.1s-3,16.5-9.1,20.2h-34v3H63v13.1
c-4.1,4-10.9,6-20.5,6s-16.4-2.7-20.4-8.1V50.3l7.1-6h26.7l10.2-9.1V22.1z M54.3,71.5c-2,0-3.6,1.6-3.6,3.5
c0,1.9,1.6,3.5,3.6,3.5c2,0,3.6-1.6,3.6-3.5C57.9,73,56.3,71.5,54.3,71.5z"/>
</g>
<rect id="Rectangle-11" class="st2" width="110" height="110"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

35
static/images/rails.svg Normal file
View File

@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 110 110" style="enable-background:new 0 0 110 110;" xml:space="preserve">
<style type="text/css">
.st0{fill:#92DEE2;}
.st1{fill:#5763AB;}
.st2{fill:#818CCD;}
.st3{fill:none;}
</style>
<title>Rails</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="Rails">
<g id="Group-2">
<g id="Group" transform="translate(2.894737, 7.960526)">
<g id="Group-65" transform="translate(0.000000, 48.683885)">
<polygon id="Path-59" class="st0" points="19.3,28.4 86,28.4 86,23.7 19.3,23.7 "/>
<polygon id="Path-60" class="st0" points="28.5,14.4 73.8,14.4 73.8,9.8 28.5,9.8 "/>
<polygon id="Path-60_1_" class="st0" points="40.1,4.3 10,38.9 2.8,38.8 31.9,4.1 "/>
<polygon id="Path-60_2_" class="st0" points="63.8,4.3 93.9,38.9 101.1,38.8 71.9,4.1 "/>
</g>
<g id="Group-25" transform="translate(20.826539, 0.000000)">
<polygon id="Path-52" class="st1" points="2.8,52.4 56.6,52.4 18.7,34.2 "/>
<polygon id="Path-53" class="st2" points="33,13.7 56.1,52.2 18.5,34.8 "/>
<polygon id="Path-54" class="st1" points="41.4,0 56,52 31.9,15.3 "/>
<polygon id="Path-55" class="st1" points="2.9,52 0.1,24.9 16.7,0 40.3,0 31.2,15.8 17.9,34.3 "/>
<polygon id="Path-56" class="st2" points="16.4,35 30.6,14.7 9,11.9 "/>
</g>
</g>
<rect id="Rectangle-9" class="st3" width="110" height="110"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

27
static/images/react.svg Normal file
View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 110 110" style="enable-background:new 0 0 110 110;" xml:space="preserve">
<style type="text/css">
.st0{fill:#5763AB;}
.st1{fill:none;}
</style>
<title>React</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="React">
<g id="Group">
<g id="Group-76" transform="translate(13.750000, 10.421053)">
<path id="Oval-16" class="st0" d="M21.3,82.9c-8.9-5.1-5.9-25.5,5.8-45.9S55.1,3.9,63.9,9s5.9,25.5-5.8,45.9S30.2,88,21.3,82.9z
M22.8,80.3c6.8,3.9,21.7-7.9,32.7-26.9s13.7-37.8,6.9-41.8s-21.7,7.9-32.7,26.9S16,76.3,22.8,80.3z"/>
<path id="Oval-16_1_" class="st0" d="M0,46c0-10.2,19.2-17.9,42.6-17.9S85.2,35.7,85.2,46S66.1,63.8,42.6,63.8S0,56.2,0,46z
M3,46c0,7.9,17.7,14.9,39.6,14.9s39.6-7,39.6-14.9S64.6,31.1,42.6,31.1S3,38.1,3,46z"/>
<path id="Oval-16_2_" class="st0" d="M63.9,82.9c-8.9,5.1-25.1-7.6-36.8-28S12.4,14.2,21.3,9s25.1,7.6,36.8,28
S72.8,77.7,63.9,82.9z M62.4,80.3c6.8-3.9,4.1-22.7-6.9-41.8S29.6,7.7,22.8,11.6s-4.1,22.7,6.9,41.8S55.6,84.2,62.4,80.3z"/>
<circle id="Oval-17" class="st0" cx="42.6" cy="46" r="6.9"/>
</g>
<rect id="Rectangle-11" class="st1" width="110" height="110"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

39
static/images/redis.svg Normal file
View File

@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.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 110 110" style="enable-background:new 0 0 110 110;" xml:space="preserve">
<style type="text/css">
.st0{fill:#5763AB;}
.st1{fill:#727DBF;}
.st2{fill:#FFFFFF;}
.st3{fill:#818CCD;}
.st4{fill:none;}
</style>
<title>Redis</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="Redis">
<g id="Group">
<g id="Group-82" transform="translate(17.769231, 16.076923)">
<g id="Group-81" transform="translate(0.000000, 19.250000)">
<polygon id="Path-128" class="st0" points="0,31.4 37.3,47.7 74.6,31.4 38.5,16.3 "/>
<polygon id="Path-129" class="st1" points="0,41.4 0,31.4 37.3,47.7 74.6,31.4 74.6,40.2 36.1,57.8 "/>
<polygon id="Path-128_1_" class="st0" points="0,15.1 37.3,31.4 74.6,15.1 38.5,0 "/>
<polygon id="Path-129_1_" class="st1" points="0,25.1 0,15.1 37.3,31.4 74.6,15.1 74.6,23.9 36.1,41.4 "/>
</g>
<g id="Group-80">
<polygon id="Path-128_2_" class="st0" points="0,14.9 37.3,31 74.6,14.9 38.5,0 "/>
<polygon id="Path-129_2_" class="st1" points="0,24.8 0,14.9 37.3,31 74.6,14.9 74.6,23.6 36.1,40.9 "/>
<path id="Oval-19" class="st2" d="M23.6,18.8c3.4,0,8.7,0.4,8.7-3s-4.5-3.3-7.9-3.3s-9.5-0.9-9.5,2.5S20.2,18.8,23.6,18.8z"/>
<polygon id="Path-130" class="st2" points="31.1,22.2 40.6,26.7 45.2,19.8 "/>
<polygon id="Path-131" class="st2" points="40,12.4 37.8,8.8 31.1,7.9 36.1,6.2 34.8,2.5 39.1,5 44.1,3.7 42.9,6.9 46.4,7.9
41.7,8.8 "/>
<polygon id="Path-132" class="st1" points="44,15.7 56.4,9.9 57,17 52.2,19.1 "/>
<polygon id="Path-133" class="st3" points="56.8,17 64.1,13.8 55.6,10.5 "/>
</g>
</g>
<rect id="Rectangle-9" class="st4" width="110" height="110"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

28
static/images/ruby.svg Normal file
View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 110 110" style="enable-background:new 0 0 110 110;" xml:space="preserve">
<style type="text/css">
.st0{fill:#5763AB;}
.st1{fill:#818CCD;}
.st2{fill:none;}
</style>
<title>Ruby</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="Ruby">
<g id="Group-2">
<g id="Group" transform="translate(23.000000, 25.000000)">
<g id="Group-25">
<polygon id="Path-52" class="st0" points="3.3,60.3 65.5,60.3 21.7,39.3 "/>
<polygon id="Path-53" class="st1" points="38.2,15.7 65,60 21.4,40.1 "/>
<polygon id="Path-54" class="st0" points="48,0 64.9,59.8 36.9,17.7 "/>
<polygon id="Path-55" class="st0" points="3.4,59.8 0.1,28.7 19.3,0 46.6,0 36.2,18.2 20.7,39.5 "/>
<polygon id="Path-56" class="st1" points="19,40.2 35.4,16.9 10.4,13.7 "/>
</g>
</g>
<rect id="Rectangle-9" class="st2" width="110" height="110"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="275px" height="35px" viewBox="0 0 275 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.1 (57501) - http://www.bohemiancoding.com/sketch -->
<title>Saburly-Logo-Colors@2x</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="verson-2/desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Desktop/Blog" transform="translate(-316.000000, -51.000000)" fill="#8448F7" fill-rule="nonzero">
<g id="top_navigation" transform="translate(316.000000, 51.000000)">
<g id="Saburly-Logo-Colors">
<g id="g26" transform="translate(137.500000, 17.500000) scale(-1, 1) rotate(-180.000000) translate(-137.500000, -17.500000) ">
<path d="M11.7165253,14.2930659 C11.6671794,14.2912922 11.6201834,14.2918834 11.5720125,14.2930659 L11.4756706,14.2936571 C11.4439482,14.2936571 11.4128134,14.296022 11.3816785,14.298978 C11.3329201,14.3019341 11.2847491,14.3054814 11.2330535,14.3066639 C6.34370243,14.4373226 2.3654872,18.5445017 2.3654872,23.4628294 C2.3654872,28.3805659 6.34370243,32.4877449 11.2354033,32.6184037 C11.2847491,32.6195861 11.3329201,32.6231334 11.3816785,32.6260895 C11.4128134,32.6284544 11.4439482,32.6314105 11.4756706,32.6314105 L11.5720125,32.6320017 C11.5966854,32.6320017 11.6207709,32.6320017 11.6477936,32.6320017 C11.6748163,32.6320017 11.7041889,32.6320017 11.7394359,32.6314105 L29.6936875,32.6314105 L33.4169492,32.6314105 L33.425761,34.7538767 L11.4756706,34.7538767 C11.4081137,34.7538767 11.3411444,34.7497382 11.2747625,34.7450084 L11.1925194,34.7402787 C5.16233936,34.5871537 0.256539662,29.5287078 0.256539662,23.4628294 C0.256539662,17.396951 5.16233936,12.3373226 11.1936943,12.1847889 L11.2747625,12.1800591 C11.3411444,12.1753294 11.4081137,12.1711909 11.4756706,12.1711909" id="path34"></path>
<path d="M11.475788,12.0234459 C11.4041191,12.0234459 11.3347999,12.0275845 11.2643059,12.0323142 L11.1855875,12.0370439 C5.08021376,12.1919426 0.109794511,17.3171959 0.109794511,23.4628885 C0.109794511,29.6073986 5.0796263,34.7332432 11.1885247,34.8881419 L11.2660682,34.8922804 C11.3347999,34.8970101 11.4041191,34.9017399 11.475788,34.9017399 L33.5733286,34.9017399 L33.5633419,32.4830743 L11.4763755,32.4830743 C11.4481779,32.4830743 11.4211552,32.4813007 11.3941324,32.4789358 L11.3541858,32.4759797 C11.3160015,32.4736149 11.2778172,32.47125 11.238458,32.4700676 C6.42723791,32.3423649 2.51246733,28.301402 2.51246733,23.4628885 C2.51246733,18.6237838 6.42606299,14.5828209 11.2372831,14.454527 C11.2772298,14.4533446 11.3165889,14.4509797 11.3553607,14.4486149 L11.3941324,14.44625 C11.4211552,14.4438851 11.4481779,14.4415203 11.475788,14.4415203 L11.5733048,14.4409291 C11.6214758,14.4391554 11.6661221,14.4397466 11.7119432,14.4409291 L11.7207549,14.1453209 C11.6690593,14.1435473 11.619126,14.1441385 11.5686053,14.1453209 L11.4752006,14.1459122 C11.4399536,14.1459122 11.4041191,14.1488682 11.3694595,14.1518243 C11.3019027,14.1553716 11.2666556,14.1577365 11.2302337,14.1589189 C6.26098938,14.2913514 2.21874204,18.4653378 2.21874204,23.4628885 C2.21874204,28.459848 6.26157684,32.6332432 11.2308212,32.7656757 C11.2666556,32.7668581 11.3013153,32.7686318 11.3359748,32.7709966 L11.3729842,32.7733615 C11.4041191,32.7763176 11.4399536,32.7786824 11.475788,32.7786824 L11.6479111,32.7798649 L11.744253,32.7786824 L33.2707915,32.7786824 L33.2784284,34.6061318 L11.475788,34.6061318 C11.4111685,34.6061318 11.3477238,34.601402 11.2842792,34.5972635 L11.2008612,34.5925338 C5.24528737,34.4411824 0.403519794,29.4489527 0.403519794,23.4628885 C0.403519794,17.4762331 5.24587483,12.4834122 11.1973365,12.3320608 L11.2825168,12.3273311 C11.3477238,12.3231926 11.4111685,12.3190541 11.475788,12.3190541 L11.475788,12.0234459 Z" id="path38"></path>
<path d="M21.9659516,20.8074409 C22.0152974,20.8092145 22.0622935,20.8086233 22.1104644,20.8074409 L22.2068063,20.8068497 C22.2385286,20.8068497 22.2696635,20.8044848 22.3007984,20.8015287 C22.3495568,20.7985726 22.3977277,20.7950253 22.4494234,20.7938429 C27.3387744,20.6631841 31.3169897,16.5560051 31.3169897,11.6376774 C31.3169897,6.71994089 27.3387744,2.61276182 22.4470736,2.48210304 C22.3977277,2.48092061 22.3495568,2.47737331 22.3007984,2.47441723 C22.2696635,2.47205236 22.2385286,2.46909628 22.2068063,2.46909628 L22.1104644,2.46850507 C22.0857915,2.46850507 22.061706,2.46850507 22.0346833,2.46850507 C22.0076605,2.46850507 21.978288,2.46850507 21.943041,2.46909628 L3.98878934,2.46909628 L0.265527656,2.46909628 L0.256715897,0.346630068 L22.2068063,0.346630068 C22.2743631,0.346630068 22.3413325,0.350768581 22.4077144,0.355498311 L22.4899575,0.360228041 C28.5201375,0.51335304 33.4259372,5.57179899 33.4259372,11.6376774 C33.4259372,17.7035557 28.5201375,22.7631841 22.4887826,22.9157179 L22.4077144,22.9204476 C22.3413325,22.9251774 22.2743631,22.9293159 22.2068063,22.9293159" id="path42"></path>
<polygon id="path46" points="69.7481232 0.338412162 54.6406571 29.724223 39.5331908 0.338412162 37.3972205 1.37717905 54.6406571 34.9174662 71.8840934 1.37717905"></polygon>
<path d="M100.627756,23.2301858 L100.549038,23.2343243 C100.52084,23.236098 100.492642,23.2366892 100.464444,23.2378716 L100.464444,23.2431926 L100.341668,23.2431926 C100.340493,23.2431926 100.339318,23.2431926 100.337555,23.2431926 L100.294671,23.2431926 L100.294671,20.8168412 L100.464444,20.8168412 L100.464444,20.8180236 C100.500866,20.8156588 100.537876,20.8132939 100.576648,20.8121115 C105.38728,20.6838176 109.301464,16.6428547 109.301464,11.8043412 C109.301464,6.96523649 105.386693,2.92427365 100.574885,2.79597973 C100.533764,2.79538851 100.49323,2.79302365 100.418623,2.78829392 C100.391601,2.78592905 100.365166,2.78356419 100.336968,2.78356419 L80.589817,2.78356419 L80.589817,12.0349155 L78.2400148,12.0349155 L78.2400148,0.365489865 L100.337555,0.365489865 C100.408637,0.365489865 100.479131,0.369628378 100.546688,0.374358108 L100.624819,0.379087838 C106.733717,0.533986488 111.703549,5.65923988 111.703549,11.8043412 C111.703549,17.9494426 106.73313,23.0746959 100.627756,23.2301858" id="path50"></path>
<path d="M100.574944,14.4542905 C100.533823,14.4531081 100.493288,14.4507432 100.418095,14.4460135 C100.391659,14.4436486 100.365224,14.441875 100.337027,14.441875 L80.5898758,14.441875 L80.5898758,32.4745608 L100.464503,32.4745608 L100.464503,32.4757432 C100.500925,32.4733784 100.537935,32.4716047 100.576119,32.4704223 C105.387339,32.3421284 109.300935,28.3011655 109.300935,23.4620608 C109.300935,18.6235473 105.386164,14.5825845 100.574944,14.4542905 M100.627815,34.8884966 L100.549096,34.8920439 C100.520899,34.8944088 100.492114,34.8944088 100.464503,34.8961824 L100.464503,34.9015034 L100.341726,34.9015034 C100.340551,34.9015034 100.339376,34.9015034 100.337614,34.9015034 L80.5898758,34.9015034 L78.2647464,34.9015034 L78.2400736,34.9015034 L78.2400736,12.0238007 L80.5898758,12.0238007 L100.337614,12.0238007 C100.408696,12.0238007 100.47919,12.0279392 100.546747,12.0320777 L100.624877,12.0368074 C106.733776,12.1922973 111.703608,17.3175507 111.703608,23.4620608 C111.703608,29.6077534 106.733189,34.7330068 100.627815,34.8884966" id="path54"></path>
<path d="M136.348921,0.346807432 C127.154732,0.346807432 119.674724,8.00305742 119.674724,17.4140372 C119.674724,17.5275507 119.668262,17.6457939 119.662388,17.7646284 C119.645939,18.0543243 119.630666,18.3363345 119.648876,18.6236655 L119.646527,34.9453716 L122.019239,34.9453716 L122.019239,18.545625 C122.006316,18.3055912 122.018652,18.1246791 122.029226,17.9461318 C122.039213,17.7587162 122.048025,17.5825338 122.048025,17.4140372 C122.048025,9.32324322 128.463572,2.74182432 136.348921,2.74182432 C143.952294,2.74182432 150.252701,8.82662161 150.692702,16.5952027 L150.710913,17.0941892 C150.715612,17.241402 150.718549,17.350777 150.718549,17.4607432 C150.718549,17.5713007 150.715612,17.6818581 150.712087,17.7912331 L150.671554,18.8329561 L153.054253,18.9127703 L153.081863,17.9082939 C153.08715,17.7598986 153.091263,17.6115034 153.091263,17.4607432 C153.091263,17.3105743 153.08715,17.1621791 153.081863,17.0131926 L153.042504,16.1659797 C152.37986,7.28472972 145.048476,0.346807432 136.348921,0.346807432" id="path58"></path>
<path d="M128.936705,22.2392483 C128.936705,23.2803801 129.774997,24.1240456 130.809497,24.1240456 C131.84341,24.1240456 132.681702,23.2803801 132.681702,22.2392483 C132.681702,21.1981166 131.84341,20.354451 130.809497,20.354451 C129.774997,20.354451 128.936705,21.1981166 128.936705,22.2392483" id="path62"></path>
<path d="M140.549839,22.2392483 C140.549839,23.2803801 141.388131,24.1240456 142.422631,24.1240456 C143.456544,24.1240456 144.294837,23.2803801 144.294837,22.2392483 C144.294837,21.1981166 143.456544,20.354451 142.422631,20.354451 C141.388131,20.354451 140.549839,21.1981166 140.549839,22.2392483" id="path66"></path>
<path d="M182.245788,12.0320777 C182.178231,12.027348 182.107737,12.0232095 182.036655,12.0232095 L179.027733,12.0232095 L190.478907,0.346689189 L193.692262,0.346689189 L182.336255,12.0373986 C182.331556,12.0373986 182.328031,12.0368074 182.323919,12.0368074 L182.245788,12.0320777 Z" id="path70"></path>
<polygon id="path74" points="162.310947 32.4746199 162.288623 32.4746199 162.288623 14.4413429 162.299785 14.4413429 162.299785 29.0946368 176.658252 14.4413429 179.980872 14.4413429"></polygon>
<polygon id="path78" points="159.938997 12.0233868 159.938997 21.1056503 159.913737 0.346866554 162.292324 0.346866554 162.299961 12.0233868 162.2888 12.0233868"></polygon>
<path d="M182.32668,34.8880236 L182.247961,34.8921622 C182.219764,34.8939358 182.191566,34.894527 182.163369,34.8957095 L182.163369,34.9010304 L182.040591,34.9010304 C182.039416,34.9010304 182.038242,34.9010304 182.036479,34.9010304 L162.288741,34.9010304 L159.964199,34.9010304 L159.938939,34.9010304 L159.938939,21.1055912 L159.938939,12.0233277 L162.288741,12.0233277 L162.299902,12.0233277 L162.299902,14.441402 L162.288741,14.441402 L162.288741,32.4746791 L162.311064,32.4746791 L182.163369,32.4746791 L182.163369,32.4758615 C182.19979,32.4734966 182.237387,32.4711318 182.275571,32.4699493 C187.086204,32.3416554 191.000387,28.3006926 191.000387,23.4621791 C191.000387,18.6230743 187.085617,14.5821115 182.273809,14.4538176 C182.232687,14.4532264 182.192154,14.4508615 182.117547,14.4461318 C182.090525,14.4437669 182.064089,14.441402 182.035892,14.441402 L179.980402,14.441402 L176.658369,14.441402 L179.027558,12.0233277 L182.036479,12.0233277 C182.107561,12.0233277 182.178055,12.0274662 182.245611,12.0321959 L182.323743,12.0369257 C182.327854,12.0369257 182.331967,12.0375169 182.336079,12.0375169 C188.439103,12.1995101 193.402473,17.3212162 193.402473,23.4621791 C193.402473,29.6072804 188.432053,34.7325338 182.32668,34.8880236" id="path82"></path>
<path d="M206.060035,32.4181588 L218.993934,32.4181588 L218.993934,2.76748311 L206.060035,2.76748311 L206.060035,32.4181588 Z M203.676748,0.347043919 L221.377221,0.347043919 L221.377221,34.8397804 L203.676748,34.8397804 L203.676748,0.347043919 Z" id="path84"></path>
<polygon id="path88" points="237.111027 0.346807432 203.676866 0.346807432 203.676866 11.3392905 206.060152 11.3392905 206.060152 2.76783784 234.773561 2.76310811 234.773561 11.3392905 237.111027 11.3392905"></polygon>
<polygon id="path92" points="265.591982 0.4025 265.591982 34.7166892 263.208695 34.7166892 263.208695 2.80638514 248.769747 2.77032095 248.772097 0.4025"></polygon>
<path d="M274.978032,33.7971115 L274.949834,34.8015878 L272.567722,34.7217736 L272.607669,33.6800507 C272.611194,33.5706757 272.614718,33.4607095 272.614718,33.3495608 C272.614718,33.2395946 272.611194,33.1302196 272.606494,32.9830068 L272.588283,32.4840203 C272.14887,24.7160304 265.847875,18.6306419 258.24509,18.6306419 C250.359154,18.6306419 243.943606,25.212652 243.943606,33.3034459 C243.943606,33.4713514 243.934794,33.648125 243.924808,33.8349493 C243.914821,34.0134966 243.902484,34.1944088 243.915409,34.4344426 L243.915409,34.9133277 L241.545045,34.9133277 L241.545045,34.5124831 C241.526247,34.225152 241.542108,33.9431419 241.557969,33.6534459 C241.564431,33.5346115 241.570306,33.4163682 241.570306,33.3034459 C241.570306,23.8924662 249.050313,16.235625 258.24509,16.235625 C266.944058,16.235625 274.276028,23.1735473 274.938085,32.0547973 L274.978032,32.9020101 C274.982731,33.0509966 274.987431,33.1993919 274.987431,33.3495608 C274.987431,33.5003209 274.982731,33.6493074 274.978032,33.7971115" id="path96"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 566 72" style="enable-background:new 0 0 566 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#845AF6;}
</style>
<title>Group</title>
<desc>Created with Sketch.</desc>
<g id="Page-2">
<g id="Desktop-" transform="translate(-361.000000, -345.000000)">
<g id="Group" transform="translate(361.000000, 345.000000)">
<g id="saburly_final-_1_">
<g id="g26" transform="translate(283.000000, 36.000000) scale(1, -1) translate(-283.000000, -36.000000) ">
<path id="path34" class="st0" d="M24.1,29.4c-0.1,0-0.2,0-0.3,0l-0.2,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.3,0
C13.1,29.7,4.9,38.1,4.9,48.3c0,10.1,8.2,18.6,18.3,18.8c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0l0.2,0c0.1,0,0.1,0,0.2,0
c0.1,0,0.1,0,0.2,0h37h7.7l0,4.4H23.6c-0.1,0-0.3,0-0.4,0l-0.2,0C10.6,71.2,0.5,60.7,0.5,48.3S10.6,25.4,23,25.1l0.2,0
c0.1,0,0.3,0,0.4,0"/>
<path id="path38" class="st0" d="M23.6,24.7c-0.1,0-0.3,0-0.4,0l-0.2,0C10.5,25.1,0.2,35.6,0.2,48.3
c0,12.6,10.2,23.2,22.8,23.5l0.2,0c0.1,0,0.3,0,0.4,0h45.5l0-5H23.6c-0.1,0-0.1,0-0.2,0l-0.1,0c-0.1,0-0.2,0-0.2,0
c-9.9-0.3-18-8.6-18-18.5c0-10,8.1-18.3,18-18.5c0.1,0,0.2,0,0.2,0l0.1,0c0.1,0,0.1,0,0.2,0l0.2,0c0.1,0,0.2,0,0.3,0l0-0.6
c-0.1,0-0.2,0-0.3,0l-0.2,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.3,0C12.9,29.4,4.6,38,4.6,48.3c0,10.3,8.3,18.9,18.5,19.1
c0.1,0,0.1,0,0.2,0l0.1,0c0.1,0,0.1,0,0.2,0l0.4,0l0.2,0h44.3l0,3.8H23.6c-0.1,0-0.3,0-0.4,0l-0.2,0
C10.8,70.9,0.8,60.6,0.8,48.3c0-12.3,10-22.6,22.2-22.9l0.2,0c0.1,0,0.3,0,0.4,0V24.7z"/>
<path id="path42" class="st0" d="M45.2,42.8c0.1,0,0.2,0,0.3,0l0.2,0c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.3,0
c10.1-0.3,18.3-8.7,18.3-18.8c0-10.1-8.2-18.6-18.3-18.8c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0l-0.2,0c-0.1,0-0.1,0-0.2,0
s-0.1,0-0.2,0h-37H0.5l0-4.4h45.2c0.1,0,0.3,0,0.4,0l0.2,0c12.4,0.3,22.5,10.7,22.5,23.2S58.7,46.8,46.3,47.1l-0.2,0
c-0.1,0-0.3,0-0.4,0"/>
<polygon id="path46" class="st0" points="143.6,0.7 112.5,61.1 81.4,0.7 77,2.8 112.5,71.8 148,2.8 "/>
<path id="path50" class="st0" d="M207.1,47.8l-0.2,0c-0.1,0-0.1,0-0.2,0v0h-0.3c0,0,0,0,0,0l0,0h-0.1v-5h0.3v0
c0.1,0,0.2,0,0.2,0c9.9-0.3,18-8.6,18-18.5c0-10-8.1-18.3-18-18.5c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0h-40.6v19H161v-24
h45.5c0.1,0,0.3,0,0.4,0l0.2,0c12.6,0.3,22.8,10.9,22.8,23.5S219.7,47.5,207.1,47.8"/>
<path id="path54" class="st0" d="M207,29.7c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0h-40.6v37.1h40.9v0c0.1,0,0.2,0,0.2,0
c9.9-0.3,18-8.6,18-18.5C225,38.3,216.9,30,207,29.7 M207.1,71.8l-0.2,0c-0.1,0-0.1,0-0.2,0v0h-0.3c0,0,0,0,0,0l0,0h-40.6h-4.8
H161V24.7h4.8h40.6c0.1,0,0.3,0,0.4,0l0.2,0c12.6,0.3,22.8,10.9,22.8,23.5C229.9,60.9,219.7,71.5,207.1,71.8"/>
<path id="path58" class="st0" d="M280.6,0.7c-18.9,0-34.3,15.8-34.3,35.1c0,0.2,0,0.5,0,0.7c0,0.6-0.1,1.2,0,1.8l0,33.6h4.9
V38.2c0-0.5,0-0.9,0-1.2c0-0.4,0-0.7,0-1.1c0-16.6,13.2-30.2,29.4-30.2c15.6,0,28.6,12.5,29.5,28.5l0,1c0,0.3,0,0.5,0,0.8
c0,0.2,0,0.5,0,0.7l-0.1,2.1l4.9,0.2l0.1-2.1c0-0.3,0-0.6,0-0.9c0-0.3,0-0.6,0-0.9l-0.1-1.7C313.6,15,298.5,0.7,280.6,0.7"/>
<path id="path62" class="st0" d="M265.4,45.7c0,2.1,1.7,3.9,3.9,3.9c2.1,0,3.9-1.7,3.9-3.9c0-2.1-1.7-3.9-3.9-3.9
C267.1,41.9,265.4,43.6,265.4,45.7"/>
<path id="path66" class="st0" d="M289.3,45.7c0,2.1,1.7,3.9,3.9,3.9c2.1,0,3.9-1.7,3.9-3.9c0-2.1-1.7-3.9-3.9-3.9
C291,41.9,289.3,43.6,289.3,45.7"/>
<path id="path70" class="st0" d="M375.1,24.8c-0.1,0-0.3,0-0.4,0h-6.2l23.6-24h6.6l-23.4,24c0,0,0,0,0,0L375.1,24.8z"/>
<polygon id="path74" class="st0" points="334.1,66.8 334,66.8 334,29.7 334,29.7 334,59.9 363.6,29.7 370.4,29.7 "/>
<polygon id="path78" class="st0" points="329.2,24.7 329.2,43.4 329.1,0.7 334,0.7 334,24.7 334,24.7 "/>
<path id="path82" class="st0" d="M375.3,71.8l-0.2,0c-0.1,0-0.1,0-0.2,0v0h-0.3c0,0,0,0,0,0l0,0H334h-4.8h-0.1V43.4V24.7h4.8h0
v5h0v37.1h0h40.9v0c0.1,0,0.2,0,0.2,0c9.9-0.3,18-8.6,18-18.5c0-10-8.1-18.3-18-18.5c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0
h-4.2h-6.8l4.9-5h6.2c0.1,0,0.3,0,0.4,0l0.2,0c0,0,0,0,0,0c12.6,0.3,22.8,10.9,22.8,23.5C398.1,60.9,387.8,71.4,375.3,71.8"/>
<path id="path84" class="st0" d="M424.1,66.7h26.6v-61h-26.6V66.7z M419.2,0.7h36.4v71h-36.4V0.7z"/>
<polygon id="path88" class="st0" points="488,0.7 419.2,0.7 419.2,23.3 424.1,23.3 424.1,5.7 483.2,5.7 483.2,23.3 488,23.3
"/>
<polygon id="path92" class="st0" points="546.6,0.8 546.6,71.4 541.7,71.4 541.7,5.8 512,5.7 512,0.8 "/>
<path id="path96" class="st0" d="M566,69.5l-0.1,2.1l-4.9-0.2l0.1-2.1c0-0.2,0-0.5,0-0.7c0-0.2,0-0.5,0-0.8l0-1
c-0.9-16-13.9-28.5-29.5-28.5c-16.2,0-29.4,13.5-29.4,30.2c0,0.3,0,0.7,0,1.1c0,0.4,0,0.7,0,1.2v1h-4.9V71c0-0.6,0-1.2,0-1.8
c0-0.2,0-0.5,0-0.7c0-19.4,15.4-35.1,34.3-35.1c17.9,0,33,14.3,34.4,32.5l0.1,1.7c0,0.3,0,0.6,0,0.9
C566,68.9,566,69.2,566,69.5"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 566 72" style="enable-background:new 0 0 566 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#656BFD;}
</style>
<title>Group</title>
<desc>Created with Sketch.</desc>
<g id="Page-2">
<g id="Desktop-" transform="translate(-361.000000, -345.000000)">
<g id="Group" transform="translate(361.000000, 345.000000)">
<g id="saburly_final-_1_">
<g id="g26" transform="translate(283.000000, 36.000000) scale(1, -1) translate(-283.000000, -36.000000) ">
<path id="path34" class="st0" d="M24.1,29.4c-0.1,0-0.2,0-0.3,0h-0.2c-0.1,0-0.1,0-0.2,0s-0.2,0-0.3,0
c-10,0.3-18.2,8.7-18.2,18.9c0,10.1,8.2,18.6,18.3,18.8c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0h0.2c0.1,0,0.1,0,0.2,0
s0.1,0,0.2,0h37H69v4.4H23.6c-0.1,0-0.3,0-0.4,0H23C10.6,71.2,0.5,60.7,0.5,48.3S10.6,25.4,23,25.1h0.2c0.1,0,0.3,0,0.4,0"/>
<path id="path38" class="st0" d="M23.6,24.7c-0.1,0-0.3,0-0.4,0H23C10.5,25.1,0.2,35.6,0.2,48.3c0,12.6,10.2,23.2,22.8,23.5
h0.2c0.1,0,0.3,0,0.4,0h45.5v-5H23.6c-0.1,0-0.1,0-0.2,0h-0.1c-0.1,0-0.2,0-0.2,0c-9.9-0.3-18-8.6-18-18.5
c0-10,8.1-18.3,18-18.5c0.1,0,0.2,0,0.2,0h0.1c0.1,0,0.1,0,0.2,0h0.2c0.1,0,0.2,0,0.3,0v-0.6c-0.1,0-0.2,0-0.3,0h-0.2
c-0.1,0-0.1,0-0.2,0s-0.2,0-0.3,0C12.9,29.4,4.6,38,4.6,48.3s8.3,18.9,18.5,19.1c0.1,0,0.1,0,0.2,0h0.1c0.1,0,0.1,0,0.2,0H24
h0.2h44.3v3.8H23.6c-0.1,0-0.3,0-0.4,0H23C10.8,70.9,0.8,60.6,0.8,48.3s10-22.6,22.2-22.9h0.2c0.1,0,0.3,0,0.4,0V24.7z"/>
<path id="path42" class="st0" d="M45.2,42.8c0.1,0,0.2,0,0.3,0h0.2c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.3,0
c10.1-0.3,18.3-8.7,18.3-18.8S56.3,5.4,46.2,5.2c-0.1,0-0.2,0-0.3,0s-0.1,0-0.2,0h-0.2c-0.1,0-0.1,0-0.2,0s-0.1,0-0.2,0h-37
H0.5V0.8h45.2c0.1,0,0.3,0,0.4,0h0.2C58.7,1.1,68.8,11.5,68.8,24S58.7,46.8,46.3,47.1h-0.2c-0.1,0-0.3,0-0.4,0"/>
<polygon id="path46" class="st0" points="143.6,0.7 112.5,61.1 81.4,0.7 77,2.8 112.5,71.8 148,2.8 "/>
<path id="path50" class="st0" d="M207.1,47.8h-0.2c-0.1,0-0.1,0-0.2,0l0,0h-0.3l0,0l0,0h-0.1v-5h0.3l0,0c0.1,0,0.2,0,0.2,0
c9.9-0.3,18-8.6,18-18.5c0-10-8.1-18.3-18-18.5c-0.1,0-0.2,0-0.3,0s-0.1,0-0.2,0h-40.6v19H161v-24h45.5c0.1,0,0.3,0,0.4,0h0.2
c12.6,0.3,22.8,10.9,22.8,23.5S219.7,47.5,207.1,47.8"/>
<path id="path54" class="st0" d="M207,29.7c-0.1,0-0.2,0-0.3,0s-0.1,0-0.2,0h-40.6v37.1h40.9l0,0c0.1,0,0.2,0,0.2,0
c9.9-0.3,18-8.6,18-18.5C225,38.3,216.9,30,207,29.7 M207.1,71.8h-0.2c-0.1,0-0.1,0-0.2,0l0,0h-0.3l0,0l0,0h-40.6H161h0V24.7
h4.8h40.6c0.1,0,0.3,0,0.4,0h0.2c12.6,0.3,22.8,10.9,22.8,23.5C229.9,60.9,219.7,71.5,207.1,71.8"/>
<path id="path58" class="st0" d="M280.6,0.7c-18.9,0-34.3,15.8-34.3,35.1c0,0.2,0,0.5,0,0.7c0,0.6-0.1,1.2,0,1.8v33.6h4.9V38.2
c0-0.5,0-0.9,0-1.2c0-0.4,0-0.7,0-1.1c0-16.6,13.2-30.2,29.4-30.2c15.6,0,28.6,12.5,29.5,28.5v1c0,0.3,0,0.5,0,0.8
c0,0.2,0,0.5,0,0.7l-0.1,2.1l4.9,0.2l0.1-2.1c0-0.3,0-0.6,0-0.9c0-0.3,0-0.6,0-0.9l-0.1-1.7C313.6,15,298.5,0.7,280.6,0.7"/>
<path id="path62" class="st0" d="M265.4,45.7c0,2.1,1.7,3.9,3.9,3.9c2.1,0,3.9-1.7,3.9-3.9c0-2.1-1.7-3.9-3.9-3.9
C267.1,41.9,265.4,43.6,265.4,45.7"/>
<path id="path66" class="st0" d="M289.3,45.7c0,2.1,1.7,3.9,3.9,3.9c2.1,0,3.9-1.7,3.9-3.9c0-2.1-1.7-3.9-3.9-3.9
C291,41.9,289.3,43.6,289.3,45.7"/>
<path id="path70" class="st0" d="M375.1,24.8c-0.1,0-0.3,0-0.4,0h-6.2l23.6-24h6.6l-23.4,24l0,0H375.1z"/>
<polygon id="path74" class="st0" points="334.1,66.8 334,66.8 334,29.7 334,29.7 334,59.9 363.6,29.7 370.4,29.7 "/>
<polygon id="path78" class="st0" points="329.2,24.7 329.2,43.4 329.1,0.7 334,0.7 334,24.7 334,24.7 "/>
<path id="path82" class="st0" d="M375.3,71.8h-0.2c-0.1,0-0.1,0-0.2,0l0,0h-0.3l0,0l0,0H334h-4.8h-0.1V43.4V24.7h4.8l0,0v5l0,0
v37.1l0,0h40.9l0,0c0.1,0,0.2,0,0.2,0c9.9-0.3,18-8.6,18-18.5c0-10-8.1-18.3-18-18.5c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0
h-4.2h-6.8l4.9-5h6.2c0.1,0,0.3,0,0.4,0h0.2l0,0c12.6,0.3,22.8,10.9,22.8,23.5C398.1,60.9,387.8,71.4,375.3,71.8"/>
<path id="path84" class="st0" d="M424.1,66.7h26.6v-61h-26.6V66.7z M419.2,0.7h36.4v71h-36.4V0.7z"/>
<polygon id="path88" class="st0" points="488,0.7 419.2,0.7 419.2,23.3 424.1,23.3 424.1,5.7 483.2,5.7 483.2,23.3 488,23.3
"/>
<polygon id="path92" class="st0" points="546.6,0.8 546.6,71.4 541.7,71.4 541.7,5.8 512,5.7 512,0.8 "/>
<path id="path96" class="st0" d="M566,69.5l-0.1,2.1l-4.9-0.2l0.1-2.1c0-0.2,0-0.5,0-0.7s0-0.5,0-0.8v-1
c-0.9-16-13.9-28.5-29.5-28.5c-16.2,0-29.4,13.5-29.4,30.2c0,0.3,0,0.7,0,1.1s0,0.7,0,1.2v1h-4.9V71c0-0.6,0-1.2,0-1.8
c0-0.2,0-0.5,0-0.7c0-19.4,15.4-35.1,34.3-35.1c17.9,0,33,14.3,34.4,32.5l0.1,1.7c0,0.3,0,0.6,0,0.9
C566,68.9,566,69.2,566,69.5"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 274.9 34.6" style="enable-background:new 0 0 274.9 34.6;" xml:space="preserve">
<style type="text/css">
.st0{fill:#5F4A8D;}
</style>
<title>saburly-logo-darkblue</title>
<path class="st0" d="M11.6,20.6h-0.5c-4.9-0.2-8.9-4.3-8.8-9.2c0-4.9,3.9-8.9,8.8-9.1h22.2V0.1H11.1C4.9,0.7,0.3,6.2,0.9,12.4
c0.5,5.4,4.8,9.7,10.2,10.2h0.3"/>
<path class="st0" d="M11.4,22.9h-0.3C4.9,22.6,0,17.6,0,11.4C0,5.2,4.9,0.2,11.1,0h22.4v2.4H11.1c-4.8,0.2-8.7,4.2-8.7,9
c0,4.9,3.8,8.8,8.7,9h0.5v0.3h-0.5c-5-0.2-9-4.3-9-9.3c0-5,4-9.1,9-9.3h22.1V0.3H11.1C5.1,0.5,0.3,5.4,0.3,11.4
c0,6,4.8,11,10.8,11.2h0.3V22.9z"/>
<path class="st0" d="M21.9,14.1h0.4c5.1,0.5,8.7,5.1,8.2,10.1c-0.5,4.3-3.9,7.7-8.2,8.2H0.2v2.2h22.2c6.2-0.6,10.8-6.1,10.2-12.3
c-0.5-5.4-4.8-9.7-10.2-10.2h-0.3"/>
<polygon class="st0" points="69.6,34.6 54.5,5.2 39.4,34.6 37.3,33.6 54.5,0 71.8,33.6 "/>
<path class="st0" d="M100.5,11.7h-0.3v2.4h0.3c5,0,9,4,9,9s-4,9-9,9h-20v-9.2h-2.4v11.6h22.4c6.3,0,11.4-5.1,11.4-11.4
C111.9,16.8,106.8,11.7,100.5,11.7"/>
<path class="st0" d="M100.5,20.4h-20v-18h20c4.8,0.2,8.7,4.2,8.7,9C109.2,16.3,105.4,20.2,100.5,20.4 M100.5,0H78.1v22.9h22.4
c6.2-0.3,11.1-5.3,11.1-11.5C111.6,5.2,106.7,0.2,100.5,0"/>
<path class="st0" d="M136.2,34.6c-9.1,0-16.6-7.7-16.6-17.1v-0.4c-0.1-0.3-0.1-0.5-0.1-0.8V0h2.4v17.5c0.4,7.9,7.2,14.1,15.1,13.7
c7.1-0.4,12.8-5.8,13.6-12.9v-2.2h2.4v2.7c-0.6,8.8-7.8,15.8-16.7,15.9"/>
<path class="st0" d="M128.8,12.7c-0.1-1,0.7-1.9,1.8-2c1-0.1,1.9,0.7,2,1.8c0.1,1-0.7,1.9-1.8,2c0,0-0.1,0-0.1,0
C129.7,14.5,128.9,13.7,128.8,12.7"/>
<path class="st0" d="M140.4,12.7c0-1,0.9-1.9,1.9-1.9c1-0.1,1.8,0.7,1.9,1.7c0,0.1,0,0.1,0,0.2c0,1-0.8,1.8-1.8,1.8c0,0-0.1,0-0.1,0
C141.3,14.5,140.5,13.7,140.4,12.7"/>
<path class="st0" d="M182.1,22.9h-3.2l11.5,11.7h3.2l-11.4-11.7H182.1z"/>
<polygon class="st0" points="162.2,2.5 162.2,2.5 162.2,20.5 162.2,20.5 162.2,5.9 176.5,20.5 179.9,20.5 "/>
<polygon class="st0" points="159.8,22.9 159.8,13.8 159.8,34.6 162.2,34.6 162.2,22.9 162.2,22.9 "/>
<path class="st0" d="M182.2,0h-22.4v22.9h2.4v-2.4l0,0V2.4h20c4.8,0.2,8.7,4.2,8.7,9c0,4.9-3.8,8.8-8.7,9h-5.6l2.3,2.5h3.3
c6.2-0.3,11.1-5.3,11.1-11.5C193.3,5.2,188.4,0.2,182.2,0"/>
<path class="st0" d="M206,2.5h12.9v29.6H206V2.5z M203.6,34.6h17.7V0.1h-17.7L203.6,34.6z"/>
<polygon class="st0" points="237,34.6 203.6,34.6 203.6,23.6 205.9,23.6 205.9,32.2 234.7,32.2 234.7,23.6 237,23.6 "/>
<polygon class="st0" points="265.5,34.5 265.5,0.2 263.1,0.2 263.1,32.1 248.7,32.2 248.7,34.5 "/>
<path class="st0" d="M274.9,1.1v-1h-2.3v2.3c-0.4,7.7-6.7,13.8-14.4,13.9c-8-0.1-14.5-6.7-14.4-14.7V0h-2.4v0.4c0,0.3,0,0.5,0.1,0.8
v0.4c0,9.4,7.5,17.1,16.6,17.1c8.9-0.1,16.1-7.1,16.7-15.9V1.1"/>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 566 72" style="enable-background:new 0 0 566 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#022363;}
</style>
<title>Group</title>
<desc>Created with Sketch.</desc>
<g id="Page-2">
<g id="Desktop-" transform="translate(-361.000000, -345.000000)">
<g id="Group" transform="translate(361.000000, 345.000000)">
<g id="saburly_final-_1_">
<g id="g26" transform="translate(283.000000, 36.000000) scale(1, -1) translate(-283.000000, -36.000000) ">
<path id="path34" class="st0" d="M24.1,29.4c-0.1,0-0.2,0-0.3,0h-0.2c-0.1,0-0.1,0-0.2,0s-0.2,0-0.3,0
c-10,0.3-18.2,8.7-18.2,18.9c0,10.1,8.2,18.6,18.3,18.8c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0h0.2c0.1,0,0.1,0,0.2,0
s0.1,0,0.2,0h37H69v4.4H23.6c-0.1,0-0.3,0-0.4,0H23C10.6,71.2,0.5,60.7,0.5,48.3S10.6,25.4,23,25.1h0.2c0.1,0,0.3,0,0.4,0"/>
<path id="path38" class="st0" d="M23.6,24.7c-0.1,0-0.3,0-0.4,0H23C10.5,25.1,0.2,35.6,0.2,48.3c0,12.6,10.2,23.2,22.8,23.5
h0.2c0.1,0,0.3,0,0.4,0h45.5v-5H23.6c-0.1,0-0.1,0-0.2,0h-0.1c-0.1,0-0.2,0-0.2,0c-9.9-0.3-18-8.6-18-18.5
c0-10,8.1-18.3,18-18.5c0.1,0,0.2,0,0.2,0h0.1c0.1,0,0.1,0,0.2,0h0.2c0.1,0,0.2,0,0.3,0v-0.6c-0.1,0-0.2,0-0.3,0h-0.2
c-0.1,0-0.1,0-0.2,0s-0.2,0-0.3,0C12.9,29.4,4.6,38,4.6,48.3s8.3,18.9,18.5,19.1c0.1,0,0.1,0,0.2,0h0.1c0.1,0,0.1,0,0.2,0H24
h0.2h44.3v3.8H23.6c-0.1,0-0.3,0-0.4,0H23C10.8,70.9,0.8,60.6,0.8,48.3s10-22.6,22.2-22.9h0.2c0.1,0,0.3,0,0.4,0V24.7z"/>
<path id="path42" class="st0" d="M45.2,42.8c0.1,0,0.2,0,0.3,0h0.2c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.3,0
c10.1-0.3,18.3-8.7,18.3-18.8S56.3,5.4,46.2,5.2c-0.1,0-0.2,0-0.3,0s-0.1,0-0.2,0h-0.2c-0.1,0-0.1,0-0.2,0s-0.1,0-0.2,0h-37
H0.5V0.8h45.2c0.1,0,0.3,0,0.4,0h0.2C58.7,1.1,68.8,11.5,68.8,24S58.7,46.8,46.3,47.1h-0.2c-0.1,0-0.3,0-0.4,0"/>
<polygon id="path46" class="st0" points="143.6,0.7 112.5,61.1 81.4,0.7 77,2.8 112.5,71.8 148,2.8 "/>
<path id="path50" class="st0" d="M207.1,47.8h-0.2c-0.1,0-0.1,0-0.2,0l0,0h-0.3l0,0l0,0h-0.1v-5h0.3l0,0c0.1,0,0.2,0,0.2,0
c9.9-0.3,18-8.6,18-18.5c0-10-8.1-18.3-18-18.5c-0.1,0-0.2,0-0.3,0s-0.1,0-0.2,0h-40.6v19H161v-24h45.5c0.1,0,0.3,0,0.4,0h0.2
c12.6,0.3,22.8,10.9,22.8,23.5S219.7,47.5,207.1,47.8"/>
<path id="path54" class="st0" d="M207,29.7c-0.1,0-0.2,0-0.3,0s-0.1,0-0.2,0h-40.6v37.1h40.9l0,0c0.1,0,0.2,0,0.2,0
c9.9-0.3,18-8.6,18-18.5C225,38.3,216.9,30,207,29.7 M207.1,71.8h-0.2c-0.1,0-0.1,0-0.2,0l0,0h-0.3l0,0l0,0h-40.6H161h0V24.7
h4.8h40.6c0.1,0,0.3,0,0.4,0h0.2c12.6,0.3,22.8,10.9,22.8,23.5C229.9,60.9,219.7,71.5,207.1,71.8"/>
<path id="path58" class="st0" d="M280.6,0.7c-18.9,0-34.3,15.8-34.3,35.1c0,0.2,0,0.5,0,0.7c0,0.6-0.1,1.2,0,1.8v33.6h4.9V38.2
c0-0.5,0-0.9,0-1.2c0-0.4,0-0.7,0-1.1c0-16.6,13.2-30.2,29.4-30.2c15.6,0,28.6,12.5,29.5,28.5v1c0,0.3,0,0.5,0,0.8
c0,0.2,0,0.5,0,0.7l-0.1,2.1l4.9,0.2l0.1-2.1c0-0.3,0-0.6,0-0.9c0-0.3,0-0.6,0-0.9l-0.1-1.7C313.6,15,298.5,0.7,280.6,0.7"/>
<path id="path62" class="st0" d="M265.4,45.7c0,2.1,1.7,3.9,3.9,3.9c2.1,0,3.9-1.7,3.9-3.9c0-2.1-1.7-3.9-3.9-3.9
C267.1,41.9,265.4,43.6,265.4,45.7"/>
<path id="path66" class="st0" d="M289.3,45.7c0,2.1,1.7,3.9,3.9,3.9c2.1,0,3.9-1.7,3.9-3.9c0-2.1-1.7-3.9-3.9-3.9
C291,41.9,289.3,43.6,289.3,45.7"/>
<path id="path70" class="st0" d="M375.1,24.8c-0.1,0-0.3,0-0.4,0h-6.2l23.6-24h6.6l-23.4,24l0,0H375.1z"/>
<polygon id="path74" class="st0" points="334.1,66.8 334,66.8 334,29.7 334,29.7 334,59.9 363.6,29.7 370.4,29.7 "/>
<polygon id="path78" class="st0" points="329.2,24.7 329.2,43.4 329.1,0.7 334,0.7 334,24.7 334,24.7 "/>
<path id="path82" class="st0" d="M375.3,71.8h-0.2c-0.1,0-0.1,0-0.2,0l0,0h-0.3l0,0l0,0H334h-4.8h-0.1V43.4V24.7h4.8l0,0v5l0,0
v37.1l0,0h40.9l0,0c0.1,0,0.2,0,0.2,0c9.9-0.3,18-8.6,18-18.5c0-10-8.1-18.3-18-18.5c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0
h-4.2h-6.8l4.9-5h6.2c0.1,0,0.3,0,0.4,0h0.2l0,0c12.6,0.3,22.8,10.9,22.8,23.5C398.1,60.9,387.8,71.4,375.3,71.8"/>
<path id="path84" class="st0" d="M424.1,66.7h26.6v-61h-26.6V66.7z M419.2,0.7h36.4v71h-36.4V0.7z"/>
<polygon id="path88" class="st0" points="488,0.7 419.2,0.7 419.2,23.3 424.1,23.3 424.1,5.7 483.2,5.7 483.2,23.3 488,23.3
"/>
<polygon id="path92" class="st0" points="546.6,0.8 546.6,71.4 541.7,71.4 541.7,5.8 512,5.7 512,0.8 "/>
<path id="path96" class="st0" d="M566,69.5l-0.1,2.1l-4.9-0.2l0.1-2.1c0-0.2,0-0.5,0-0.7s0-0.5,0-0.8v-1
c-0.9-16-13.9-28.5-29.5-28.5c-16.2,0-29.4,13.5-29.4,30.2c0,0.3,0,0.7,0,1.1s0,0.7,0,1.2v1h-4.9V71c0-0.6,0-1.2,0-1.8
c0-0.2,0-0.5,0-0.7c0-19.4,15.4-35.1,34.3-35.1c17.9,0,33,14.3,34.4,32.5l0.1,1.7c0,0.3,0,0.6,0,0.9
C566,68.9,566,69.2,566,69.5"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 889.1 113.6"><title>saburly-logo-bold</title><path d="M178.9,188.1h-1.5c-15.9-.4-24.7-9.9-24.7-26s8.8-25.6,24.7-26h71.7v-11H177.5c-23.8.5-35.7,13.1-35.7,37s11.9,36.5,35.4,37h.9" transform="translate(-141.8 -124.3)" style="fill:#fff"/><path d="M212.1,174.7h1.6c15.8.4,24.7,9.9,24.7,26s-8.9,25.6-24.8,26.1H141.9v11h71.7c23.8-.5,35.7-13.1,35.7-37s-11.9-36.5-35.4-37h-.9" transform="translate(-141.8 -124.3)" style="fill:#fff"/><polygon points="220.9 113.6 176 22.1 131.1 113.6 120.2 110.2 176 0.1 231.8 110.2 220.9 113.6" style="fill:#fff"/><path d="M466.1,162.7h-.4s0,4-.1,12h.9c15.6.4,24.2,9.7,24.2,25.6s-8.6,25.1-24.2,25.5H405.8V199.5H394.2v38.3h72.2c20-.6,36.1-17.4,36.1-37.5s-16.1-37-35.8-37.5Z" transform="translate(-141.8 -124.3)" style="fill:#fff"/><path d="M466,187.6l-60.2-1V136.4h60.7c15.6.5,24.2,9.7,24.2,25.6s-8.6,25.1-24.2,25.6Zm.1-63.1H394.3v75h72.2c20-.5,36.1-17.3,36.1-37.5s-16.1-37-35.8-37.5Z" transform="translate(-141.8 -124.3)" style="fill:#fff"/><path d="M528.3,181.9v-1.2a27.2,27.2,0,0,1-.1-2.8V124.3h11.7v55.8a10.9,10.9,0,0,1,.1,1.8c0,26.5,16.8,44.1,42.3,44.1s41-16,42.4-41.5v-3.9l-.2-3.4,11.7-.3v3.3c0,.5.1,1,.1,1.5s-.1,1-.1,1.5v2.7c-2.1,29.2-25.9,52-54,52C552.5,237.9,528.3,212.7,528.3,181.9Z" transform="translate(-141.8 -124.3)" style="fill:#fff"/><path d="M558.3,164a8,8,0,1,1,8,8.2,8.1,8.1,0,0,1-8-8.2" transform="translate(-141.8 -124.3)" style="fill:#fff"/><path d="M595.9,164a8,8,0,1,1,8,8.2,8.1,8.1,0,0,1-8-8.2" transform="translate(-141.8 -124.3)" style="fill:#fff"/><path d="M734.8,198.5h-.7l-13.7,1,37.1,38.4h14.4l-36.8-39.4Z" transform="translate(-141.8 -124.3)" style="fill:#fff"/><polygon points="528.5 8.1 524.4 8.1 524.4 67.3 524.4 19.2 570.9 67.3 585.7 67.3 528.5 8.1" style="fill:#fff"/><polygon points="516.8 75.2 516.8 45.4 516.7 113.5 528.4 113.5 528.4 75.2 524.4 75.2 516.8 75.2" style="fill:#fff"/><path d="M730.5,124.5H658.7v75h11.6V136.4h60.7c15.6.5,24.2,9.7,24.2,25.6s-8.6,25.1-24.2,25.6H708.7l11.7,11.9h10.4c20.1-.5,36.1-17.3,36.1-37.5s-16.1-37-35.8-37.5Z" transform="translate(-141.8 -124.3)" style="fill:#fff"/><path d="M811.9,136.6h33.8v89.3H812.9ZM800.2,237.9h57.3V124.7H800.2Z" transform="translate(-141.8 -124.3)" style="fill:#fff"/><polygon points="766.5 113.5 658.3 113.5 658.3 77.5 666.1 77.5 666.1 101.6 755 101.6 755 77.5 766.5 77.5 766.5 113.5" style="fill:#fff"/><polygon points="858.7 113.4 858.7 0.8 847 0.8 847 101.5 804.3 101.6 804.3 113.4 858.7 113.4" style="fill:#fff"/><path d="M1030.8,124.8l-11.7.3.2,3.4v3.9c-1.4,25.5-17.8,41.5-42.4,41.5s-42.3-17.6-42.3-44.2a10.3,10.3,0,0,0-.1-1.7v-3.6H922.7v1.3a28.1,28.1,0,0,0,.1,2.9v1.1c0,30.9,24.2,56,54,56,28.1,0,51.9-22.8,54-51.9V131c0-.5.1-1,.1-1.4s-.1-1-.1-1.5Z" transform="translate(-141.8 -124.3)" style="fill:#fff"/></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 566 72" style="enable-background:new 0 0 566 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#845AF6;}
</style>
<title>Group</title>
<desc>Created with Sketch.</desc>
<g id="Page-2">
<g id="Desktop-" transform="translate(-361.000000, -345.000000)">
<g id="Group" transform="translate(361.000000, 345.000000)">
<g id="saburly_final-_1_">
<g id="g26" transform="translate(283.000000, 36.000000) scale(1, -1) translate(-283.000000, -36.000000) ">
<path id="path34" class="st0" d="M24.1,29.4c-0.1,0-0.2,0-0.3,0l-0.2,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.3,0
C13.1,29.7,4.9,38.1,4.9,48.3c0,10.1,8.2,18.6,18.3,18.8c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0l0.2,0c0.1,0,0.1,0,0.2,0
c0.1,0,0.1,0,0.2,0h37h7.7l0,4.4H23.6c-0.1,0-0.3,0-0.4,0l-0.2,0C10.6,71.2,0.5,60.7,0.5,48.3S10.6,25.4,23,25.1l0.2,0
c0.1,0,0.3,0,0.4,0"/>
<path id="path38" class="st0" d="M23.6,24.7c-0.1,0-0.3,0-0.4,0l-0.2,0C10.5,25.1,0.2,35.6,0.2,48.3
c0,12.6,10.2,23.2,22.8,23.5l0.2,0c0.1,0,0.3,0,0.4,0h45.5l0-5H23.6c-0.1,0-0.1,0-0.2,0l-0.1,0c-0.1,0-0.2,0-0.2,0
c-9.9-0.3-18-8.6-18-18.5c0-10,8.1-18.3,18-18.5c0.1,0,0.2,0,0.2,0l0.1,0c0.1,0,0.1,0,0.2,0l0.2,0c0.1,0,0.2,0,0.3,0l0-0.6
c-0.1,0-0.2,0-0.3,0l-0.2,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.3,0C12.9,29.4,4.6,38,4.6,48.3c0,10.3,8.3,18.9,18.5,19.1
c0.1,0,0.1,0,0.2,0l0.1,0c0.1,0,0.1,0,0.2,0l0.4,0l0.2,0h44.3l0,3.8H23.6c-0.1,0-0.3,0-0.4,0l-0.2,0
C10.8,70.9,0.8,60.6,0.8,48.3c0-12.3,10-22.6,22.2-22.9l0.2,0c0.1,0,0.3,0,0.4,0V24.7z"/>
<path id="path42" class="st0" d="M45.2,42.8c0.1,0,0.2,0,0.3,0l0.2,0c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.3,0
c10.1-0.3,18.3-8.7,18.3-18.8c0-10.1-8.2-18.6-18.3-18.8c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0l-0.2,0c-0.1,0-0.1,0-0.2,0
s-0.1,0-0.2,0h-37H0.5l0-4.4h45.2c0.1,0,0.3,0,0.4,0l0.2,0c12.4,0.3,22.5,10.7,22.5,23.2S58.7,46.8,46.3,47.1l-0.2,0
c-0.1,0-0.3,0-0.4,0"/>
<polygon id="path46" class="st0" points="143.6,0.7 112.5,61.1 81.4,0.7 77,2.8 112.5,71.8 148,2.8 "/>
<path id="path50" class="st0" d="M207.1,47.8l-0.2,0c-0.1,0-0.1,0-0.2,0v0h-0.3c0,0,0,0,0,0l0,0h-0.1v-5h0.3v0
c0.1,0,0.2,0,0.2,0c9.9-0.3,18-8.6,18-18.5c0-10-8.1-18.3-18-18.5c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0h-40.6v19H161v-24
h45.5c0.1,0,0.3,0,0.4,0l0.2,0c12.6,0.3,22.8,10.9,22.8,23.5S219.7,47.5,207.1,47.8"/>
<path id="path54" class="st0" d="M207,29.7c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0h-40.6v37.1h40.9v0c0.1,0,0.2,0,0.2,0
c9.9-0.3,18-8.6,18-18.5C225,38.3,216.9,30,207,29.7 M207.1,71.8l-0.2,0c-0.1,0-0.1,0-0.2,0v0h-0.3c0,0,0,0,0,0l0,0h-40.6h-4.8
H161V24.7h4.8h40.6c0.1,0,0.3,0,0.4,0l0.2,0c12.6,0.3,22.8,10.9,22.8,23.5C229.9,60.9,219.7,71.5,207.1,71.8"/>
<path id="path58" class="st0" d="M280.6,0.7c-18.9,0-34.3,15.8-34.3,35.1c0,0.2,0,0.5,0,0.7c0,0.6-0.1,1.2,0,1.8l0,33.6h4.9
V38.2c0-0.5,0-0.9,0-1.2c0-0.4,0-0.7,0-1.1c0-16.6,13.2-30.2,29.4-30.2c15.6,0,28.6,12.5,29.5,28.5l0,1c0,0.3,0,0.5,0,0.8
c0,0.2,0,0.5,0,0.7l-0.1,2.1l4.9,0.2l0.1-2.1c0-0.3,0-0.6,0-0.9c0-0.3,0-0.6,0-0.9l-0.1-1.7C313.6,15,298.5,0.7,280.6,0.7"/>
<path id="path62" class="st0" d="M265.4,45.7c0,2.1,1.7,3.9,3.9,3.9c2.1,0,3.9-1.7,3.9-3.9c0-2.1-1.7-3.9-3.9-3.9
C267.1,41.9,265.4,43.6,265.4,45.7"/>
<path id="path66" class="st0" d="M289.3,45.7c0,2.1,1.7,3.9,3.9,3.9c2.1,0,3.9-1.7,3.9-3.9c0-2.1-1.7-3.9-3.9-3.9
C291,41.9,289.3,43.6,289.3,45.7"/>
<path id="path70" class="st0" d="M375.1,24.8c-0.1,0-0.3,0-0.4,0h-6.2l23.6-24h6.6l-23.4,24c0,0,0,0,0,0L375.1,24.8z"/>
<polygon id="path74" class="st0" points="334.1,66.8 334,66.8 334,29.7 334,29.7 334,59.9 363.6,29.7 370.4,29.7 "/>
<polygon id="path78" class="st0" points="329.2,24.7 329.2,43.4 329.1,0.7 334,0.7 334,24.7 334,24.7 "/>
<path id="path82" class="st0" d="M375.3,71.8l-0.2,0c-0.1,0-0.1,0-0.2,0v0h-0.3c0,0,0,0,0,0l0,0H334h-4.8h-0.1V43.4V24.7h4.8h0
v5h0v37.1h0h40.9v0c0.1,0,0.2,0,0.2,0c9.9-0.3,18-8.6,18-18.5c0-10-8.1-18.3-18-18.5c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0
h-4.2h-6.8l4.9-5h6.2c0.1,0,0.3,0,0.4,0l0.2,0c0,0,0,0,0,0c12.6,0.3,22.8,10.9,22.8,23.5C398.1,60.9,387.8,71.4,375.3,71.8"/>
<path id="path84" class="st0" d="M424.1,66.7h26.6v-61h-26.6V66.7z M419.2,0.7h36.4v71h-36.4V0.7z"/>
<polygon id="path88" class="st0" points="488,0.7 419.2,0.7 419.2,23.3 424.1,23.3 424.1,5.7 483.2,5.7 483.2,23.3 488,23.3
"/>
<polygon id="path92" class="st0" points="546.6,0.8 546.6,71.4 541.7,71.4 541.7,5.8 512,5.7 512,0.8 "/>
<path id="path96" class="st0" d="M566,69.5l-0.1,2.1l-4.9-0.2l0.1-2.1c0-0.2,0-0.5,0-0.7c0-0.2,0-0.5,0-0.8l0-1
c-0.9-16-13.9-28.5-29.5-28.5c-16.2,0-29.4,13.5-29.4,30.2c0,0.3,0,0.7,0,1.1c0,0.4,0,0.7,0,1.2v1h-4.9V71c0-0.6,0-1.2,0-1.8
c0-0.2,0-0.5,0-0.7c0-19.4,15.4-35.1,34.3-35.1c17.9,0,33,14.3,34.4,32.5l0.1,1.7c0,0.3,0,0.6,0,0.9
C566,68.9,566,69.2,566,69.5"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="890px" height="114px" viewBox="0 0 890 114" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49.2 (51160) - http://www.bohemiancoding.com/sketch -->
<title>saburly logo fit</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Artboard" transform="translate(-69.000000, -55.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="saburly-logo-fit" transform="translate(69.000000, 54.000000)">
<path d="M37.9189364,10.9084055 C37.7592353,10.9025848 37.607139,10.904525 37.4512403,10.9084055 C37.036778,10.9103458 36.9360142,10.9181068 36.8352504,10.9278081 C36.6774505,10.9375093 36.5215518,10.9491508 36.3542458,10.9530313 C20.5305279,11.3818269 9.6555767,22.8607533 9.6555767,39.0017046 C9.6555767,55.1407157 20.5305279,66.6196421 36.3618507,67.0484377 C36.5215518,67.0523182 36.6774505,67.0639597 36.8352504,67.0736609 C36.9024262,67.0788349 37.1077562,67.0853024 37.4512403,67.0930634 C37.783951,67.0930634 37.8790112,67.0930634 37.9930834,67.0911232 L96.0995706,67.0911232 L108.149399,67.0911232 L108.177917,76.0566257 L37.1394429,76.0566257 C36.9208045,76.0566257 36.7040673,76.0430439 36.4892313,76.0275219 C12.7072073,75.5094748 0.830255634,62.9086839 0.830255634,39.0017046 C0.830255634,15.0947253 12.7072073,2.49005394 36.2268652,1.98946908 C36.7040673,1.95842506 36.9208045,1.9448433 37.1394429,1.9448433" id="path34" transform="translate(54.504086, 39.000735) scale(-1, 1) rotate(-180.000000) translate(-54.504086, -39.000735) "></path>
<path d="M71.0898069,105.898867 C71.249508,105.904688 71.4016043,105.902748 71.557503,105.898867 C71.9719654,105.896927 72.0727292,105.889166 72.173493,105.879465 C72.3312929,105.869764 72.4871916,105.858122 72.6544975,105.854242 C88.4782155,105.425446 99.3531666,93.9465194 99.3531666,77.8055681 C99.3531666,61.666557 88.4782155,50.1876306 72.6468927,49.758835 C72.4871916,49.7549545 72.3312929,49.743313 72.173493,49.7336118 C72.1063171,49.7284378 71.9009871,49.7219703 71.557503,49.7142093 C71.2247924,49.7142093 71.1297322,49.7142093 71.01566,49.7161495 L12.9091728,49.7161495 L0.85934405,49.7161495 L0.830825995,40.750647 L71.8693004,40.750647 C72.0879388,40.750647 72.304676,40.7642288 72.519512,40.7797508 C96.301536,41.2977979 108.178488,53.8985888 108.178488,77.8055681 C108.178488,101.712548 96.301536,114.317219 72.7818781,114.817804 C72.304676,114.848848 72.0879388,114.86243 71.8693004,114.86243 L71.0898069,105.898867 Z" id="path42" transform="translate(54.504657, 77.806538) scale(-1, 1) rotate(-180.000000) translate(-54.504657, -77.806538) "></path>
<polygon id="path46" transform="translate(176.837036, 58.148688) scale(-1, 1) rotate(-180.000000) translate(-176.837036, -58.148688) " points="223.73029 1.407976 176.837035 94.8462312 129.943781 1.407976 121.031005 4.81699769 176.837035 114.889399 232.643066 4.81699769"></polygon>
<path d="M325.139476,114.783074 L324.742124,114.800537 C324.739589,114.800537 324.68889,112.812939 324.590028,104.837745 L325.139476,104.837745 C325.25735,104.833864 325.377126,104.826103 325.502605,104.822223 C341.071562,104.401188 351.739282,93.1395703 351.739282,77.2605529 C351.739282,61.3795952 341.069661,50.117977 325.496902,49.6969424 C325.363818,49.6950022 325.232634,49.6872412 324.991182,49.6717192 C324.932878,49.6665452 302.875135,49.6613712 262.817954,49.6561971 L262.817954,78.0172509 L253.213139,78.0172509 L253.213139,39.720569 L324.728816,39.720569 C324.958861,39.720569 325.187006,39.7341507 325.405644,39.7496727 C345.429121,40.2735406 361.513304,57.0935799 361.513304,77.2605529 C361.513304,97.4275258 345.42722,114.247565 325.66801,114.757851 C325.321991,114.777254 325.230733,114.779194 325.139476,114.783074 Z" id="path50" transform="translate(307.363222, 77.260553) scale(-1, 1) rotate(-180.000000) translate(-307.363222, -77.260553) "></path>
<path d="M324.989471,11.4095726 C324.932434,11.4043986 302.875326,11.7332047 262.818144,12.3959908 L262.818144,66.5755985 L325.139666,66.5755985 C325.25754,66.571718 325.377316,66.5658972 325.500894,66.5620167 C341.071752,66.1409822 351.737571,54.8793639 351.737571,38.9984063 C351.737571,23.1193889 341.06795,11.8577706 325.497092,11.4367361 C325.364008,11.4328556 325.232825,11.4250946 324.989471,11.4095726 Z M325.139666,76.5228682 L324.742314,76.5403305 C324.739779,76.5403305 303.431722,76.5403305 260.818144,76.5403305 L253.29318,76.5403305 L253.213329,1.4603626 L260.818144,1.4603626 L324.729006,1.4603626 C324.959051,1.4603626 325.187196,1.47394436 325.405834,1.48752612 C345.429311,2.01333424 361.513494,18.8333736 361.513494,38.9984063 C361.513494,59.1673195 345.42741,75.9873588 325.6682,76.4976449 C325.322181,76.5170474 325.229022,76.5170474 325.139666,76.5228682 Z" id="path54" transform="translate(307.363411, 39.000347) scale(-1, 1) rotate(-180.000000) translate(-307.363411, -39.000347) "></path>
<g id="Group-7" transform="translate(441.118076, 57.873893) scale(-1, 1) rotate(-180.000000) translate(-441.118076, -57.873893) translate(386.618076, 0.873893)">
<path d="M0.692850403,56.0232219 C0.692850403,56.3957502 0.671937163,56.7838005 0.652925127,57.173791 C0.599691424,58.1245142 0.550260129,59.0500141 0.609197443,59.9929763 L0.601592628,113.557496 L10.2805542,113.557496 L10.2805542,59.7368631 C10.2387277,58.949121 10.278653,58.3554041 10.3128746,57.7694482 C10.3451951,57.1543885 10.3737132,56.5761936 10.3737132,56.0232219 C10.3737132,29.4708816 29.1367582,9.8720032 54.6566148,9.8720032 C79.2638937,9.8720032 97.6543028,27.8410705 99.0783043,53.3359738 L99.1372417,54.9735459 C99.1524513,55.4566685 99.1619573,55.815615 99.1619573,56.1765018 C99.1619573,56.5393288 99.1524513,56.9021558 99.1410441,57.2611023 L99.009861,60.6798253 L108.721143,60.9417592 L108.8105,57.6452721 C108.82761,57.158269 108.840919,56.6712659 108.840919,56.1765018 C108.840919,55.6836779 108.82761,55.1966748 108.8105,54.7077315 L108.683119,51.9273512 C106.538561,22.7808949 82.8115397,0.0120447763 54.6566148,0.0120447763 C24.9008765,0.0120447763 0.692850403,25.1383003 0.692850403,56.0232219 Z" id="path58"></path>
<path d="M30.6679876,72.8580621 C30.6679876,76.8269407 33.8193842,80.0430621 37.7083888,80.0430621 C41.5951848,80.0430621 44.7465815,76.8269407 44.7465815,72.8580621 C44.7465815,68.8891836 41.5951848,65.6730622 37.7083888,65.6730622 C33.8193842,65.6730622 30.6679876,68.8891836 30.6679876,72.8580621" id="path62"></path>
<path d="M68.2523122,72.8580621 C68.2523122,76.8269407 71.4037088,80.0430621 75.2927134,80.0430621 C79.1795094,80.0430621 82.3309061,76.8269407 82.3309061,72.8580621 C82.3309061,68.8891836 79.1795094,65.6730622 75.2927134,65.6730622 C71.4037088,65.6730622 68.2523122,68.8891836 68.2523122,72.8580621" id="path66"></path>
</g>
<path d="M591.81364,114.844773 C591.595002,114.829251 591.366858,114.81567 591.136812,114.81567 L579.398847,113.81567 L616.45901,75.495705 L628.858594,75.495705 L592.106426,114.862236 C592.096286,114.862236 591.998691,114.856415 591.81364,114.844773 Z" id="path70" transform="translate(604.128721, 95.178971) scale(-1, 1) rotate(-180.000000) translate(-604.128721, -95.178971) "></path>
<polygon id="path74" transform="translate(554.854274, 39.015675) scale(-1, 1) rotate(-180.000000) translate(-554.854274, -39.015675) " points="527.297245 68.6064485 525.224999 68.6064485 525.224999 9.4249006 525.261122 57.5140313 571.730342 9.4249006 584.48355 9.4249006"></polygon>
<polygon id="path78" transform="translate(522.400348, 80.798601) scale(-1, 1) rotate(-180.000000) translate(-522.400348, -80.798601) " points="517.620755 85.0555119 517.620755 114.861654 517.539003 46.735547 527.236977 46.735547 527.261693 85.0555119 525.22557 85.0555119"></polygon>
<path d="M589.546902,76.524422 L589.14955,76.5418843 C589.147015,76.5418843 567.838958,76.5418843 525.22538,76.5418843 L517.702317,76.5418843 L517.620565,31.2680583 L517.620565,1.4619164 L527.22538,1.4619164 L527.261503,9.39754459 L527.22538,66.5790926 L589.546902,66.5790926 C589.664776,66.575212 589.786453,66.567451 589.910032,66.5635705 C605.478988,66.142536 616.146708,54.8809177 616.146708,39.0019003 C616.146708,23.1209427 605.477087,11.8593244 589.904328,11.4382899 C589.771244,11.4363496 589.640061,11.4285886 589.398608,11.4130666 C589.340304,11.4078926 587.034778,11.4027186 582.482029,11.3975446 L567.730722,13.3975446 L579.398277,1.4619164 L589.136242,1.4619164 C589.366287,1.4619164 589.594432,1.47549816 589.81307,1.49102017 C609.85746,2.04011131 625.92073,18.8485091 625.92073,39.0019003 C625.92073,59.1688733 609.834646,75.9889126 590.075436,76.4991987 C589.729417,76.5186012 589.638159,76.5205415 589.546902,76.524422 Z" id="path82" transform="translate(571.770647, 39.001900) scale(-1, 1) rotate(-180.000000) translate(-571.770647, -39.001900) "></path>
<path d="M668.885204,104.913803 L706.744005,104.913803 L706.744005,11.6063152 L669.885204,11.6063152 L668.885204,104.913803 Z M659.172021,1.662926 L716.457188,1.662926 L716.457188,114.861072 L659.172021,114.861072 L659.172021,1.662926 Z" id="path84" transform="translate(687.814604, 58.261999) scale(-1, 1) rotate(-180.000000) translate(-687.814604, -58.261999) "></path>
<polygon id="path88" transform="translate(713.274954, 96.824300) scale(-1, 1) rotate(-180.000000) translate(-713.274954, -96.824300) " points="767.377506 78.786753 659.172401 78.786753 659.172401 114.861848 666.885585 114.861848 666.885585 88.7320825 757.812617 88.7165605 757.812617 114.861848 767.377506 114.861848"></polygon>
<polygon id="path92" transform="translate(832.330798, 58.372980) scale(-1, 1) rotate(-180.000000) translate(-832.330798, -58.372980) " points="859.552232 2.066885 859.552232 114.679076 849.839049 114.679076 849.839049 11.9559472 805.109364 11.8375918 805.116969 2.066885"></polygon>
<path d="M889.837645,62.351272 L880.128265,62.0893381 L880.257546,58.6706151 C880.268954,58.3116686 880.280361,57.9507819 880.280361,57.5860146 C880.280361,57.2251279 880.268954,56.8661814 880.253744,56.3830588 L880.194807,54.7454866 C878.772706,29.2525236 860.380396,11.281516 835.775018,11.281516 C810.253261,11.281516 791.490216,30.8823347 791.490216,57.434675 C791.490216,57.9857064 791.461698,58.5658416 791.429377,59.178961 C791.397057,59.7649169 791.357131,60.3586339 791.398958,61.1463759 L791.398958,62.7179795 L781.727601,62.7179795 L781.727601,61.4024891 C781.666763,60.4595269 781.718095,59.534027 781.769428,58.5833038 C781.790341,58.1933133 781.809353,57.805263 781.809353,57.434675 C781.809353,26.5497534 806.017379,1.4215576 835.775018,1.4215576 C863.928042,1.4215576 887.656965,24.1904077 889.799621,53.3368641 L889.928903,56.1172443 C889.944113,56.6061877 889.959322,57.0931908 889.959322,57.5860146 C889.959322,58.0807787 889.944113,58.5697221 889.928903,59.0547849 L889.837645,62.351272 Z" id="path96" transform="translate(835.829649, 32.069769) scale(-1, 1) rotate(-180.000000) translate(-835.829649, -32.069769) "></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="204px" height="34px" viewBox="0 0 204 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 46.2 (44496) - http://www.bohemiancoding.com/sketch -->
<title>logo</title>
<desc>Created with Sketch.</desc>
<defs>
<filter x="-3.6%" y="-18.5%" width="107.7%" height="151.9%" filterUnits="objectBoundingBox" id="filter-1">
<feOffset dx="0" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feGaussianBlur stdDeviation="2" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
</defs>
<g id="assets" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="logo" fill-rule="nonzero" fill="#FFFFFF">
<g transform="translate(4.000000, 1.000000)" id="saburly_final-_1_">
<g filter="url(#filter-1)">
<g id="g26" transform="translate(98.000000, 13.500000) scale(1, -1) translate(-98.000000, -13.500000) ">
<path d="M8.35068713,10.3587376 C8.315517,10.3574522 8.28202163,10.3578807 8.24768889,10.3587376 L8.17902339,10.3591661 C8.15641402,10.3591661 8.13422334,10.36088 8.11203266,10.3630224 C8.07728123,10.3651648 8.04294848,10.3677357 8.00610358,10.3685926 C4.52132973,10.4632861 1.68594724,13.4399176 1.68594724,17.0044199 C1.68594724,20.5684937 4.52132973,23.5451252 8.00777835,23.6398187 C8.04294848,23.6406757 8.07728123,23.6432465 8.11203266,23.6453889 C8.13422334,23.6471028 8.15641402,23.6492452 8.17902339,23.6492452 L8.24768889,23.6496737 C8.26527395,23.6496737 8.28244032,23.6496737 8.30170016,23.6496737 C8.32095999,23.6496737 8.34189459,23.6496737 8.36701612,23.6492452 L21.1635009,23.6492452 L23.8171711,23.6492452 L23.8234515,25.1874786 L8.17902339,25.1874786 C8.13087381,25.1874786 8.08314291,25.1844792 8.03583071,25.1810514 L7.97721383,25.1776236 C3.67934004,25.066648 0.182842814,21.4005966 0.182842814,17.0044199 C0.182842814,12.6082432 3.67934004,8.94133487 7.97805121,8.83078774 L8.03583071,8.82735992 C8.08314291,8.8239321 8.13087381,8.82093276 8.17902339,8.82093276" id="path34"></path>
<path d="M8.17910713,8.7138563 C8.1280267,8.7138563 8.07862104,8.71685564 8.02837799,8.72028345 L7.97227326,8.72371127 C3.62080689,8.83597231 0.0782535422,12.5504417 0.0782535422,17.0044628 C0.0782535422,21.4576269 3.6203882,25.1725247 7.97436672,25.2847858 L8.02963407,25.2877851 C8.07862104,25.2912129 8.1280267,25.2946407 8.17910713,25.2946407 L23.9286269,25.2946407 L23.9215091,23.5417403 L8.17952582,23.5417403 C8.1594286,23.5417403 8.14016877,23.5404548 8.12090894,23.5387409 L8.09243788,23.5365985 C8.06522289,23.5348846 8.03800791,23.5331707 8.00995555,23.5323138 C4.58086774,23.4397627 1.79070399,20.5111206 1.79070399,17.0044628 C1.79070399,13.4973764 4.58003035,10.5687343 8.00911816,10.4757548 C8.03758922,10.4748978 8.06564159,10.4731839 8.09327526,10.47147 L8.12090894,10.4697561 C8.14016877,10.4680422 8.1594286,10.4663283 8.17910713,10.4663283 L8.24861001,10.4658998 C8.28294276,10.4646144 8.31476335,10.4650428 8.34742133,10.4658998 L8.35370171,10.2516612 C8.31685681,10.2503757 8.28126799,10.2508042 8.24526047,10.2516612 L8.17868844,10.2520897 C8.15356691,10.2520897 8.1280267,10.254232 8.10332387,10.2563744 C8.05517429,10.2589453 8.03005276,10.2606592 8.00409386,10.2615162 C4.46237789,10.3574951 1.58135797,13.3825445 1.58135797,17.0044628 C1.58135797,20.6259525 4.46279658,23.6505735 8.00451255,23.7465524 C8.03005276,23.7474094 8.05475559,23.7486948 8.07945842,23.7504087 L8.10583602,23.7521226 C8.1280267,23.754265 8.15356691,23.7559789 8.17910713,23.7559789 L8.3017839,23.7568359 L8.37044939,23.7559789 L23.7130005,23.7559789 L23.7184435,25.0804021 L8.17910713,25.0804021 C8.133051,25.0804021 8.08783226,25.0769743 8.04261352,25.073975 L7.98315925,25.0705471 C3.73845935,24.960857 0.287599562,21.342795 0.287599562,17.0044628 C0.287599562,12.665702 3.73887805,9.0472116 7.9806471,8.93752142 L8.04135745,8.93409361 C8.08783226,8.93109426 8.133051,8.92809492 8.17910713,8.92809492 L8.17910713,8.7138563 Z" id="path38"></path>
<path d="M15.6557328,15.0799572 C15.6909029,15.0812426 15.7243982,15.0808141 15.758731,15.0799572 L15.8273965,15.0795287 C15.8500059,15.0795287 15.8721965,15.0778148 15.8943872,15.0756724 C15.9291387,15.07353 15.9634714,15.0709591 16.0003163,15.0701022 C19.4850902,14.9754087 22.3204726,11.9987772 22.3204726,8.43427488 C22.3204726,4.87020105 19.4850902,1.89356955 15.9986415,1.79887607 C15.9634714,1.79801912 15.9291387,1.79544825 15.8943872,1.79330587 C15.8721965,1.79159196 15.8500059,1.78944957 15.8273965,1.78944957 L15.758731,1.78902109 C15.7411459,1.78902109 15.7239796,1.78902109 15.7047197,1.78902109 C15.6854599,1.78902109 15.6645253,1.78902109 15.6394038,1.78944957 L2.84291895,1.78944957 L0.189248802,1.78944957 L0.182968421,0.251216216 L15.8273965,0.251216216 C15.8755461,0.251216216 15.923277,0.254215557 15.9705892,0.257643375 L16.0292061,0.261071193 C20.3270798,0.372046803 23.8235771,4.03809822 23.8235771,8.43427488 C23.8235771,12.8304515 20.3270798,16.4973599 16.0283687,16.6079071 L15.9705892,16.6113349 C15.923277,16.6147627 15.8755461,16.617762 15.8273965,16.617762" id="path42"></path>
<polygon id="path46" points="49.7113896 0.245260382 38.9438864 21.542294 28.1763833 0.245260382 26.654019 0.998094924 38.9438864 25.3060382 51.2337539 0.998094924"></polygon>
<path d="M71.7201461,16.8358141 L71.6640413,16.8388134 C71.6439441,16.8400989 71.6238469,16.8405274 71.6037497,16.8413843 L71.6037497,16.8452406 L71.516243,16.8452406 C71.5154056,16.8452406 71.5145683,16.8452406 71.5133122,16.8452406 L71.5133122,16.8452406 L71.4827477,16.8452406 L71.4827477,15.0867699 L71.6037497,15.0867699 L71.6037497,15.0876269 C71.6297086,15.085913 71.6560862,15.0841991 71.6837198,15.0833421 C75.112389,14.9903626 77.902134,12.0617205 77.902134,8.55506262 C77.902134,5.04797627 75.1119703,2.11933421 71.6824638,2.02635465 C71.6531553,2.02592617 71.6242656,2.02421226 71.5710917,2.02078444 C71.5518319,2.01907053 71.5329907,2.01735662 71.5128935,2.01735662 L57.4385606,2.01735662 L57.4385606,8.72216875 L55.7637924,8.72216875 L55.7637924,0.264884641 L71.5133122,0.264884641 C71.5639739,0.264884641 71.614217,0.267883982 71.6623665,0.2713118 L71.7180526,0.274739618 C76.0720311,0.387000659 79.6141658,4.10147001 79.6141658,8.55506262 C79.6141658,13.0086552 76.0716124,16.7231246 71.7201461,16.8358141" id="path50"></path>
<path d="M71.6825056,10.4755834 C71.6531972,10.4747264 71.6243074,10.4730125 71.5707149,10.4695847 C71.5518737,10.4678708 71.5330326,10.4665854 71.5129354,10.4665854 L57.4386024,10.4665854 L57.4386024,23.5355702 L71.6037915,23.5355702 L71.6037915,23.5364272 C71.6297504,23.5347132 71.656128,23.5334278 71.683343,23.5325709 C75.1124308,23.4395913 77.9017572,20.5109492 77.9017572,17.0038629 C77.9017572,13.497205 75.1115934,10.568563 71.6825056,10.4755834 M71.7201879,25.2850428 L71.6640832,25.2876137 C71.643986,25.2893276 71.6234701,25.2893276 71.6037915,25.2906131 L71.6037915,25.2944693 L71.5162849,25.2944693 C71.5154475,25.2944693 71.5146101,25.2944693 71.5133541,25.2944693 L71.5133541,25.2944693 L57.4386024,25.2944693 L55.7814193,25.2944693 L55.7638343,25.2944693 L55.7638343,8.71411338 L57.4386024,8.71411338 L71.5133541,8.71411338 C71.5640158,8.71411338 71.6142588,8.71711272 71.6624084,8.72011206 L71.7180945,8.72353988 C76.072073,8.8362294 79.6142076,12.5506987 79.6142076,17.0038629 C79.6142076,21.457884 76.0716543,25.1723533 71.7201879,25.2850428" id="path54"></path>
<g id="Group-7" transform="translate(85.142857, 0.248685)">
<path d="M12.0367376,0.0026599196 C5.48378853,0.0026599196 0.152582785,5.55144041 0.152582785,12.3719414 C0.152582785,12.454209 0.147977173,12.5399045 0.143790253,12.6260284 C0.132066875,12.8359823 0.121180882,13.0403659 0.134160336,13.2486059 L0.132485568,25.0775775 L1.82358272,25.0775775 L1.82358272,13.1920469 C1.81437149,13.0180851 1.82316402,12.8869711 1.83070048,12.7575709 C1.83781825,12.6217436 1.84409863,12.4940574 1.84409863,12.3719414 C1.84409863,6.50823012 6.41663439,1.73842129 12.0367376,1.73842129 C17.4558687,1.73842129 21.9463408,6.14830923 22.2599412,11.7785004 L22.2729206,12.1401352 C22.2762702,12.246826 22.2783636,12.3260943 22.2783636,12.4057911 C22.2783636,12.4859163 22.2762702,12.5660416 22.273758,12.6453099 L22.2448683,13.4002868 L23.9430832,13.4581312 L23.9627617,12.7301484 C23.9665299,12.6226006 23.9694608,12.5150528 23.9694608,12.4057911 C23.9694608,12.2969579 23.9665299,12.1894101 23.9627617,12.0814338 L23.9347093,11.4674259 C23.4624247,5.03084054 18.2371481,0.0026599196 12.0367376,0.0026599196" id="path58"></path>
<path d="M6.75384896,15.8689585 C6.75384896,16.623507 7.3513225,17.234944 8.08863919,17.234944 C8.82553718,17.234944 9.42301072,16.623507 9.42301072,15.8689585 C9.42301072,15.1144101 8.82553718,14.502973 8.08863919,14.502973 C7.3513225,14.502973 6.75384896,15.1144101 6.75384896,15.8689585" id="path62"></path>
<path d="M15.0308463,15.8689585 C15.0308463,16.623507 15.6283198,17.234944 16.3656365,17.234944 C17.1025345,17.234944 17.700008,16.623507 17.700008,15.8689585 C17.700008,15.1144101 17.1025345,14.502973 16.3656365,14.502973 C15.6283198,14.502973 15.0308463,15.1144101 15.0308463,15.8689585" id="path66"></path>
</g>
<path d="M129.891543,8.72011206 C129.843394,8.71668425 129.793151,8.7136849 129.742489,8.7136849 L127.597948,8.7136849 L135.759512,0.251259064 L138.049758,0.251259064 L129.956022,8.72396836 C129.952672,8.72396836 129.95016,8.72353988 129.947229,8.72353988 L129.891543,8.72011206 Z" id="path70"></path>
<polygon id="path74" points="115.683438 23.5356131 115.667528 23.5356131 115.667528 10.4661997 115.675483 10.4661997 115.675483 21.0860086 125.909154 10.4661997 128.277276 10.4661997"></polygon>
<polygon id="path78" points="113.992885 8.71381345 113.992885 15.2960811 113.974882 0.251387607 115.670166 0.251387607 115.675609 8.71381345 115.667654 8.71381345"></polygon>
<path d="M129.949197,25.2847001 L129.893092,25.2876994 C129.872995,25.2889848 129.852898,25.2894133 129.832801,25.2902703 L129.832801,25.2941266 L129.745294,25.2941266 C129.744457,25.2941266 129.743619,25.2941266 129.742363,25.2941266 L129.742363,25.2941266 L115.667612,25.2941266 L114.010847,25.2941266 L113.992844,25.2941266 L113.992844,15.2960382 L113.992844,8.7137706 L115.667612,8.7137706 L115.675567,8.7137706 L115.675567,10.4662426 L115.667612,10.4662426 L115.667612,23.5356559 L115.683522,23.5356559 L129.832801,23.5356559 L129.832801,23.5365129 C129.85876,23.5347989 129.885556,23.533085 129.912771,23.5322281 C133.34144,23.4392485 136.131185,20.5106065 136.131185,17.0039486 C136.131185,13.4968622 133.341021,10.5682202 129.911515,10.4752406 C129.882206,10.4748121 129.853317,10.4730982 129.800143,10.4696704 C129.780883,10.4679565 129.762042,10.4662426 129.741945,10.4662426 L128.276941,10.4662426 L125.909238,10.4662426 L127.597823,8.7137706 L129.742363,8.7137706 C129.793025,8.7137706 129.843268,8.71676994 129.891418,8.72019776 L129.947104,8.72362558 C129.950035,8.72362558 129.952965,8.72405405 129.955896,8.72405405 C134.305688,8.84145682 137.843217,12.5533553 137.843217,17.0039486 C137.843217,21.4575412 134.300664,25.1720105 129.949197,25.2847001" id="path82"></path>
<path d="M146.864607,23.4946935 L156.082949,23.4946935 L156.082949,2.00570204 L146.864607,2.00570204 L146.864607,23.4946935 Z M145.165973,0.25151615 L157.781583,0.25151615 L157.781583,25.2497363 L145.165973,25.2497363 L145.165973,0.25151615 Z" id="path84"></path>
<polygon id="path88" points="168.995496 0.251344759 145.166057 0.251344759 145.166057 8.21802241 146.864691 8.21802241 146.864691 2.00595913 167.32952 2.00253131 167.32952 8.21802241 168.995496 8.21802241"></polygon>
<polygon id="path92" points="189.294649 0.291707317 189.294649 25.1605274 187.596015 25.1605274 187.596015 2.03389585 177.304984 2.00775873 177.306658 0.291707317"></polygon>
<path d="M195.984343,24.4940738 L195.964246,25.2220567 L194.266449,25.1642123 L194.29492,24.4092353 C194.297432,24.329967 194.299945,24.2502703 194.299945,24.1697165 C194.299945,24.0900198 194.297432,24.0107515 194.294083,23.9040606 L194.281104,23.5424258 C193.967922,17.9126632 189.477031,13.5023467 184.058319,13.5023467 C178.437797,13.5023467 173.865261,18.272584 173.865261,24.1362953 C173.865261,24.2579829 173.858981,24.3860976 173.851863,24.5214964 C173.844745,24.6508965 173.835953,24.7820105 173.845164,24.9559723 L173.845164,25.3030389 L172.155741,25.3030389 L172.155741,25.0125313 C172.142343,24.8042914 172.153648,24.5999077 172.164953,24.3899539 C172.169558,24.3038299 172.173745,24.2181345 172.173745,24.1362953 C172.173745,17.3157943 177.504951,11.7665854 184.058319,11.7665854 C190.25831,11.7665854 195.484006,16.794766 195.955872,23.2313514 L195.984343,23.8453593 C195.987692,23.9533355 195.991042,24.0608833 195.991042,24.1697165 C195.991042,24.2789782 195.987692,24.3869545 195.984343,24.4940738" id="path96"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 284 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 430 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 KiB

BIN
static/images/saburly.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 234 KiB

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="1366px" height="1381px" viewBox="0 0 1366 1381" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.1 (57501) - http://www.bohemiancoding.com/sketch -->
<title>showcase_background</title>
<desc>Created with Sketch.</desc>
<defs>
<linearGradient x1="124.893553%" y1="124.815104%" x2="57.1858724%" y2="60.5979548%" id="linearGradient-1">
<stop stop-color="#EDE9F5" offset="0%"></stop>
<stop stop-color="#FFFFFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="desktop-prototype" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="1" transform="translate(0.000000, -1836.000000)" fill="url(#linearGradient-1)">
<path d="M0,1836 L1366,1836 L1366,2862.64505 C1281.16971,3098.88168 1053.50304,3217 683,3217 C312.496956,3217 84.8302897,3217 0,3217 L0,1836 Z" id="showcase_background"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

14
static/images/twitter.svg Normal file
View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<title id="simpleicons-twitter-icon">Twitter icon</title>
<path class="st0" d="M24,4.6c-0.9,0.4-1.8,0.7-2.8,0.8c1-0.6,1.8-1.6,2.2-2.7c-1,0.6-2,1-3.1,1.2c-0.9-1-2.2-1.6-3.6-1.6
c-2.7,0-4.9,2.2-4.9,4.9c0,0.4,0,0.8,0.1,1.1C7.7,8.1,4.1,6.1,1.6,3.2C1.2,3.9,1,4.7,1,5.6c0,1.7,0.9,3.2,2.2,4.1
c-0.8,0-1.6-0.2-2.2-0.6v0.1c0,2.4,1.7,4.4,3.9,4.8c-0.4,0.1-0.8,0.2-1.3,0.2c-0.3,0-0.6,0-0.9-0.1c0.6,2,2.4,3.4,4.6,3.4
c-1.7,1.3-3.8,2.1-6.1,2.1c-0.4,0-0.8,0-1.2-0.1c2.2,1.4,4.8,2.2,7.6,2.2c9.1,0,14-7.5,14-14c0-0.2,0-0.4,0-0.6
C22.5,6.4,23.3,5.6,24,4.6C24,4.6,24,4.6,24,4.6z"/>
</svg>

After

Width:  |  Height:  |  Size: 974 B

View File

@@ -0,0 +1,103 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 164 140" style="enable-background:new 0 0 164 140;" xml:space="preserve">
<style type="text/css">
.st0{fill:#92DEE2;}
.st1{filter:url(#Adobe_OpacityMaskFilter);}
.st2{fill:#FFFFFF;}
.st3{mask:url(#mask-2_1_);fill:#5763AB;}
.st4{fill:none;stroke:#5763AB;stroke-width:7;}
</style>
<title>Unit_&amp;_ntegration testing</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="Unit_x5F__x26__x5F_ntegration-testing">
<g id="Group-41" transform="translate(22.000000, 13.000000)">
<g id="Page-1">
<g id="Group-7" transform="translate(29.000000, 0.000000)">
<path id="Fill-1" class="st0" d="M28.9,114c-0.5,0-1.1,0.1-1.5-0.1c-0.6-0.2-1.2-0.5-1.7-0.8c-0.8-0.5-1.5-1.1-2.1-1.7
c-0.5-0.6-1.1-1-1.6-1.6c-0.8-0.9-1.7-1.7-2.6-2.5c-1-0.9-1.8-1.8-2.8-2.7c-0.7-0.7-1.4-1.4-2.1-2.1c-0.7-0.7-1.5-1.4-2.2-2.1
c-0.7-0.7-1.5-1.5-2.2-2.2c-1.8-1.8-3.7-3.6-5.5-5.4c-1.4-1.4-2.9-2.7-4.3-4.1c-0.4-0.4-0.6-0.7-0.1-1.2
C1,86.5,1.8,85.8,2.6,85c1.2-1.2,2.4-2.5,3.7-3.6c1.1-1,2.2-2.1,3.3-3.2C11,76.7,11.4,75,11,73c-0.1-0.5-0.5-0.8-0.8-1.2
c-0.2-0.3-0.4-0.5-0.6-0.8c-0.4-0.4-0.9-0.5-1.4-0.7c-1.1-0.5-2.2-0.4-3.4-0.5c-0.4,0-0.9-0.1-1.3-0.4
c-0.1-0.1-0.3-0.1-0.4-0.2C1.9,69.1,1.3,68.1,1,67c-0.1-0.4-0.1-1,0.2-1.6c0.6-1.6,1.9-2.6,3.1-3.7C4.6,61.4,5,61.2,5.5,61
c1.4-0.7,3.3,0,4,1.5c0.4,0.7,0.5,1.4,0.5,2.2c0,0.4,0.1,0.8,0.3,1.2c0.2,0.3,0.2,0.6,0.2,0.9c0.1,0.8,0.6,1.3,1,1.9
c0.4,0.5,0.9,1,1.5,1.4c1,0.6,2.1,1,3.2,0.7c0.4-0.1,0.9-0.4,1.2-0.7c0.6-0.4,1.1-0.9,1.6-1.4c2.4-2.4,4.9-4.9,7.4-7.3
c0.7-0.7,1.5-1.4,2.2-2.2c0.5-0.5,0.9-0.5,1.4,0c1.7,1.7,3.5,3.5,5.2,5.2c0.9,0.9,1.9,1.7,2.8,2.6c0.7,0.6,1.3,1.3,1.9,2
c0.5,0.5,0.6,1.4,0.3,2c-0.7,1.4-1.8,1.9-3.2,2.2c-0.7,0.1-1.5,0.1-2.2,0.3c-0.6,0.2-1.2,0.4-1.8,0.7c-0.9,0.5-1.6,1.2-2.1,2.1
c-0.6,1-0.9,2.1-0.6,3.3c0.7,2.5,2.3,4.2,4.3,5.7c0.7,0.6,1.6,0.9,2.5,1.2c0.3,0.1,0.6,0.2,0.9,0.1c0.7-0.1,1.5,0,2.2-0.4
c0.4-0.3,0.9-0.4,1.3-0.7c0.6-0.5,1-1,1.3-1.6c0.6-0.8,0.7-1.7,0.9-2.7c0.1-0.7,0.2-1.4,0.2-2.1c0-0.9,0.3-1.8,1.1-2.3
c1.1-0.8,2.1-0.6,3.3,0.3c1.2,1,2.4,2.2,3.5,3.3c0.8,0.7,1.4,1.5,2.2,2.2c0.9,0.8,1.7,1.6,2.5,2.4c0.5,0.5,0.9,1,1.4,1.4
c0.3,0.3,0.3,0.6,0,0.8c-1.2,1.2-2.4,2.5-3.7,3.7c-0.1,0.1-0.2,0.2-0.3,0.3c-1.4,1.4-2.8,2.9-4.3,4.3c-1.9,1.8-3.7,3.7-5.5,5.4
c-1.7,1.6-3.3,3.3-4.9,4.9c-1.9,1.8-3.7,3.7-5.7,5.6c-0.7,0.7-1.5,1.2-2.4,1.7C30.6,113.9,29.8,114,28.9,114"/>
<path id="Fill-3" class="st0" d="M28.9,0c1,0,1.9,0.2,2.7,0.5c0.7,0.3,1.3,0.8,1.8,1.3c0.8,0.7,1.5,1.5,2.3,2.2
c2.2,2,4.3,4.2,6.5,6.3c1.1,1.1,2.2,2.2,3.4,3.2c1.6,1.4,2.9,2.9,4.5,4.3c0.7,0.7,1.4,1.4,2.2,2c0.5,0.5,1,1,1.5,1.4
c0.4,0.4,0.8,0.8,1.2,1.1c0.8,0.7,1.5,1.5,2.3,2.1c0.4,0.3,0.7,0.8,1.1,1.2c0.2,0.3,0.2,0.5-0.1,0.8c-0.7,0.8-1.5,1.5-2.3,2.2
c-0.9,0.9-1.9,1.7-2.8,2.7c-1.3,1.4-2.8,2.6-4.1,4c-0.8,0.8-1.6,1.7-1.9,2.8c-0.2,0.8-0.2,1.6,0.2,2.4c0.4,0.9,1,1.7,1.8,2.3
c0.8,0.6,1.6,0.8,2.6,0.9c0.9,0.1,1.9,0.2,2.8,0.3c0.9,0.1,1.7,0.6,2.3,1.3c1,1.1,0.8,2.2,0.2,3.4c-0.6,1.2-1.6,2-2.6,2.8
c-0.8,0.6-1.7,1-2.7,1c-0.6,0-1.2-0.2-1.7-0.5c-0.4-0.3-0.7-0.7-1-1.1c-0.3-0.4-0.3-0.8-0.3-1.2c-0.1-0.7-0.5-1.4-0.5-2.1
c0-0.3,0-0.6-0.1-0.8c-0.3-0.7-0.7-1.5-1.2-2c-0.7-0.7-1.4-1.4-2.3-1.8c-0.9-0.4-1.9-0.4-2.9-0.1c-1,0.3-1.7,0.9-2.4,1.6
c-1,1-2,1.9-2.9,3c-0.8,1-1.9,1.7-2.7,2.6c-0.7,0.7-1.4,1.2-2.1,1.9c-0.4,0.5-0.9,1-1.4,1.4c-0.3,0.3-0.8,0.4-1.1,0.1
c-0.8-0.9-1.8-1.4-2.6-2.3c-1.3-1.3-2.6-2.6-3.9-3.9c-0.5-0.5-1.1-0.9-1.5-1.4c-0.8-1-1.8-1.7-2.6-2.7
c-0.4-0.5-0.4-1.3-0.1-1.9c0.4-0.7,0.9-1.3,1.6-1.6c0.8-0.3,1.7-0.7,2.6-0.7c2.1,0,3.6-0.9,4.8-2.5c0.7-1,1.1-2.1,0.9-3.3
c-0.1-0.6-0.1-1.3-0.6-1.8c-0.1-0.1-0.1-0.4-0.2-0.6c-0.7-1.1-1.6-2.1-2.6-2.9c-0.2-0.2-0.4-0.5-0.6-0.6
c-0.8-0.6-1.8-1-2.8-1.3c-1.1-0.4-2.1,0-3.2,0.2c-0.6,0.1-1,0.5-1.4,0.8c-0.4,0.3-0.7,0.6-1.1,1c-0.1,0.1-0.2,0.1-0.2,0.2
c-0.1,0.7-0.7,1.1-0.7,1.8c0,0.2-0.1,0.4-0.1,0.6c-0.3,0.9-0.4,1.8-0.4,2.7c0,0.7-0.2,1.3-0.6,1.8c-0.6,0.7-1.7,1.1-2.4,0.7
c-0.7-0.4-1.5-0.8-2-1.4c-1-1-2-2-3-3c-0.6-0.6-1.3-1.1-1.9-1.7c-1.1-1.1-2.2-2.2-3.3-3.3c-0.3-0.3-0.6-0.5-0.8-0.8
c-0.2-0.3-0.2-0.4,0-0.7c1-1,2-2,3-2.9c0.8-0.8,1.6-1.7,2.5-2.4c1-0.9,2-2,3-2.9c1-0.9,1.9-1.8,2.9-2.8
c0.9-0.8,1.7-1.8,2.6-2.6c1.2-1.1,2.5-2.2,3.6-3.4c0.9-1,2-1.8,3-2.8c1-1.1,2.1-2.1,3.1-3.1c0.7-0.7,1.4-1.3,2.3-1.7
C27,0.2,27.9-0.1,28.9,0"/>
<path id="Fill-5" class="st0" d="M59.2,47.6c0.1-1.4-0.4-2.4-1.2-3.3c-0.8-1-1.9-1.6-3.1-1.9c-1-0.3-2-0.6-3-0.5
c-1.7,0.1-2.2-0.8-2.8-2c-0.4-0.9,0.2-1.5,0.6-2.1c0.2-0.4,0.5-0.5,0.8-0.8c1.1-1.2,2.2-2.5,3.4-3.6c0.9-0.8,1.8-1.7,2.6-2.6
c0.8-0.9,1.7-1.8,2.6-2.7c0.4-0.4,0.7-0.4,1.1-0.1c1.6,1.6,3.1,3.2,4.7,4.9c1,1.1,2,2.1,3.1,3.1c1.6,1.7,3.3,3.3,4.9,5
c1.5,1.5,3,3.1,4.5,4.5c1.3,1.3,2.6,2.6,3.9,3.9c1,1,1.9,2,2.9,3c0.6,0.6,1,1.4,1.4,2.2c0.5,1.1,0.5,2.2,0.3,3.2
c-0.2,1-0.6,1.9-1.3,2.6c-0.9,1-1.9,2-2.9,2.9c-1.5,1.5-3,3-4.4,4.5c-1.2,1.3-2.4,2.4-3.6,3.7c-0.5,0.6-1.2,1.1-1.7,1.7
c-0.9,1.1-1.9,2.1-2.9,3.1c-1.7,1.7-3.3,3.4-5,5.1c-1.1,1.1-2.3,2.3-3.4,3.4c-0.4,0.4-0.7,0.5-1.1,0.1
c-0.7-0.7-1.4-1.4-2.1-2.1c-0.5-0.5-1-0.9-1.4-1.4c-1.8-2-3.9-3.8-5.8-5.8c-0.9-1-2.1-1.6-3.5-1.7c-1.4,0-2.6,0.5-3.5,1.6
c-0.8,0.8-1.3,1.9-1.3,3.1c0,1.3-0.2,2.6-0.7,3.8c-0.1,0.3-0.4,0.6-0.6,0.8c-1.1,0.9-2.4,1.2-3.7,0.4c-1-0.6-2-1.4-2.7-2.3
c-0.4-0.5-0.9-1.1-1-1.8c0-0.3-0.3-0.6-0.3-1c0.1-1.1,0.6-1.9,1.5-2.6c0.8-0.6,1.8-0.7,2.7-0.8c0,0,0.1,0,0.1,0
c0.8-0.3,1.7-0.4,2.4-0.7c0.9-0.4,1.7-1.1,2.4-2c0.8-1,1.2-2.2,1-3.5c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.2-0.2-0.2-0.3
c-0.3-1-1-1.6-1.7-2.3c-0.7-0.8-1.5-1.5-2.2-2.2c-1.3-1.3-2.6-2.6-3.8-3.9c-0.9-0.9-1.8-1.7-2.6-2.6c-1-1-0.7-1,0-1.7
c0.6-0.6,1.2-1.1,1.7-1.7c0.9-1,1.9-1.9,2.8-2.9c1.4-1.5,2.9-3,4.3-4.5c0.2-0.3,0.6-0.4,0.8-0.7c0-0.1,0.2-0.1,0.3-0.1
c0.7-0.1,1.3-0.1,2,0.4c1.3,0.9,1.6,2.1,1.7,3.5c0.2,1.1,0.3,2.2,0.9,3.2c0.3,0.5,0.7,1,1.1,1.4c0.5,0.4,0.9,0.8,1.4,1
c1.7,0.8,3.3,0.6,4.8-0.2c1.2-0.6,2.2-1.5,3.2-2.6c0.3-0.3,0.5-0.8,0.8-1.1c0.6-0.8,0.9-1.7,1.2-2.6
C59.3,48.1,59.1,47.8,59.2,47.6"/>
</g>
<g id="Group-10" transform="translate(0.000000, 28.000000)">
<g id="Clip-9">
</g>
<defs>
<filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="0" y="0.1" width="55.9" height="57.8">
<feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
</filter>
</defs>
<mask maskUnits="userSpaceOnUse" x="0" y="0.1" width="55.9" height="57.8" id="mask-2_1_">
<g class="st1">
<polygon id="path-1_1_" class="st2" points="0,57.9 0,0.1 55.9,0.1 55.9,57.9 "/>
</g>
</mask>
<path id="Fill-8" class="st3" d="M27.1,38.1c0.2,2.3,0.9,4,2.7,5.1c1.1,0.7,2.2,1,3.5,1c0.8,0,1.6,0.1,2.4,0.3
c0.6,0.2,1,0.5,1.4,0.9c0.3,0.4,0.3,1.4,0,1.8c-0.9,1.4-2.2,2.4-3.2,3.7c-0.9,1-1.9,2-2.8,3c-0.9,0.8-1.7,1.7-2.5,2.5
c-0.4,0.3-0.7,0.7-1,1.1c-0.3,0.4-0.8,0.4-1.2,0.1c-2.8-2.8-5.6-5.7-8.5-8.5c-1.8-1.7-3.4-3.6-5.3-5.2c-1.8-1.6-3.2-3.5-5-5.1
c-0.5-0.5-1-1-1.5-1.4C5.5,37,4.9,36.5,4.5,36c-0.9-1.3-2.1-2.2-3.1-3.4c-0.2-0.2-0.5-0.3-0.6-0.6c-0.5-1.3-1.1-2.7-0.6-4.2
c0.3-0.9,0.7-1.7,1.3-2.4c0.3-0.3,0.6-0.6,0.8-1c0.1-0.3,0.5-0.4,0.8-0.6c0.8-0.8,1.6-1.6,2.4-2.4c1.1-1.1,2.2-2.3,3.4-3.3
c0.5-0.5,1-1,1.4-1.5c1-1,1.9-2,2.9-2.9c0.7-0.7,1.4-1.4,2.1-2c0.8-0.7,1.4-1.5,2.2-2.3c0.9-1,2-1.8,2.9-2.8
c1.2-1.2,2.4-2.6,3.7-3.8C25,2,25.8,1.1,26.8,0.3C27.1,0,27.3,0,27.6,0.3c0.4,0.6,0.9,0.9,1.4,1.4c0.7,0.8,1.5,1.5,2.3,2.2
c1.2,1.1,2.3,2.4,3.5,3.5c0.7,0.6,1.4,1.4,2,2.1c0.4,0.4,0.8,0.6,1.2,0.9c0.6,0.4,1.3,0.8,2.1,0.9c0.9,0.1,1.7,0,2.6-0.5
c0.8-0.4,1.4-1,1.9-1.6c0.4-0.6,0.9-1.2,0.9-2c0.1-0.9,0.3-1.8,0.4-2.8C46,4.2,46,4.1,46,3.9c0-1.9,2.1-3.4,3.8-2.7
c1.5,0.6,2.6,1.7,3.6,2.9c0.4,0.5,0.6,1.1,0.9,1.6c0.4,0.7,0.1,1.8-0.6,2.5c-0.9,0.8-1.9,1.2-3.1,1.3c-1,0.1-2,0.3-2.9,0.7
c-1,0.4-1.8,1.1-2.4,2c-0.3,0.5-0.6,1-0.9,1.6c-0.4,0.9-0.3,1.8,0,2.7c0.4,1.1,1.1,1.9,1.9,2.7c1.2,1.1,2.3,2.3,3.4,3.4
c1.1,1.1,2.2,2.1,3.3,3.2c0.8,0.8,1.7,1.5,2.4,2.4c0.6,0.7,0.6,0.8,0,1.4c-1.6,1.7-3.5,3.1-5,4.9c-1.6,1.8-3.5,3.3-5.1,5.1
c-0.8,0.8-1.8,0.8-2.6,0c-0.9-0.8-1.2-1.8-1.3-2.9c-0.1-0.7-0.3-1.4-0.4-2.1c-0.3-1.1-0.9-2.1-1.8-2.8c-0.4-0.3-0.8-0.8-1.3-1
c-1-0.4-2-0.8-3.1-0.6c-0.5,0.1-1.1,0.2-1.6,0.4c-0.9,0.4-1.7,0.8-2.5,1.5c-0.9,0.8-1.8,1.6-2.4,2.6c-0.4,0.6-0.8,1.3-0.9,2.1
C27.4,37.3,27,37.7,27.1,38.1"/>
</g>
</g>
<g id="Group-38" transform="translate(61.000000, 71.000000)">
<polyline id="Path-15" class="st4" points="0,22.9 20,43 60,0 "/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

@@ -0,0 +1,231 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="1182px" height="762px" viewBox="0 0 1182 762" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>user-experience-design-agency</title>
<desc>Created with Sketch.</desc>
<defs>
<linearGradient x1="50%" y1="19.6859798%" x2="-33.8124944%" y2="294.476483%" id="linearGradient-1">
<stop stop-color="#F7FAFF" offset="0%"></stop>
<stop stop-color="#6B9AD9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="157.419759%" y1="-39.6921362%" x2="118.835577%" y2="115.937591%" id="linearGradient-2">
<stop stop-color="#E5EDFF" offset="0%"></stop>
<stop stop-color="#6B9AD9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="32.1187137%" x2="67.2859088%" y2="115.977968%" id="linearGradient-3">
<stop stop-color="#8AEBF1" offset="0%"></stop>
<stop stop-color="#31B1B9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="-10.8772052%" x2="50%" y2="100%" id="linearGradient-4">
<stop stop-color="#E5EDFF" offset="0%"></stop>
<stop stop-color="#6B9AD9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="32.1187137%" x2="67.2859088%" y2="115.977968%" id="linearGradient-5">
<stop stop-color="#A2C1EA" offset="0%"></stop>
<stop stop-color="#6B9AD9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="45.8146591%" y1="15.1595137%" x2="75.9412525%" y2="70.6858623%" id="linearGradient-6">
<stop stop-color="#A2C1EA" offset="0%"></stop>
<stop stop-color="#6B9AD9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="32.1187137%" x2="67.2859088%" y2="115.977968%" id="linearGradient-7">
<stop stop-color="#F59BA9" offset="0%"></stop>
<stop stop-color="#F25267" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="32.1187137%" x2="67.2859088%" y2="115.977968%" id="linearGradient-8">
<stop stop-color="#A2C1EA" offset="0%"></stop>
<stop stop-color="#6B9AD9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="32.1187137%" x2="67.2859088%" y2="115.977968%" id="linearGradient-9">
<stop stop-color="#90DDE2" offset="0%"></stop>
<stop stop-color="#31B1B9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="62.2459026%" y1="-19.1290149%" x2="-33.8124944%" y2="294.476483%" id="linearGradient-10">
<stop stop-color="#F7FAFF" offset="0%"></stop>
<stop stop-color="#6B9AD9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="-10.8772052%" x2="50%" y2="100%" id="linearGradient-11">
<stop stop-color="#FFE579" offset="0%"></stop>
<stop stop-color="#FEB755" offset="100%"></stop>
</linearGradient>
<linearGradient x1="82.9091884%" y1="96.8702304%" x2="103.044557%" y2="-32.2935141%" id="linearGradient-12">
<stop stop-color="#9099D2" offset="0%"></stop>
<stop stop-color="#A8B4FE" offset="100%"></stop>
</linearGradient>
<linearGradient x1="83.2804773%" y1="11.2557844%" x2="111.028592%" y2="953.538449%" id="linearGradient-13">
<stop stop-color="#5763AB" offset="0%"></stop>
<stop stop-color="#283F6F" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="-142.327103%" x2="50%" y2="170.164832%" id="linearGradient-14">
<stop stop-color="#95B7E5" offset="0%"></stop>
<stop stop-color="#476DB1" offset="100%"></stop>
</linearGradient>
<linearGradient x1="83.2804773%" y1="11.2557844%" x2="59.8890922%" y2="97.3099621%" id="linearGradient-15">
<stop stop-color="#3A4482" offset="0%"></stop>
<stop stop-color="#5763AB" offset="100%"></stop>
</linearGradient>
<linearGradient x1="83.2804773%" y1="11.2557844%" x2="50%" y2="152.078318%" id="linearGradient-16">
<stop stop-color="#476DB1" offset="0%"></stop>
<stop stop-color="#283F6F" offset="100%"></stop>
</linearGradient>
<linearGradient x1="83.2804773%" y1="11.2557844%" x2="59.8890922%" y2="97.3099621%" id="linearGradient-17">
<stop stop-color="#476DB1" offset="0%"></stop>
<stop stop-color="#283F6F" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-18">
<stop stop-color="#36558E" offset="0%"></stop>
<stop stop-color="#233A67" offset="100%"></stop>
</linearGradient>
<linearGradient x1="69.4657764%" y1="75.602262%" x2="69.4657764%" y2="14.0380158%" id="linearGradient-19">
<stop stop-color="#F4AF92" offset="0%"></stop>
<stop stop-color="#EC906C" offset="100%"></stop>
</linearGradient>
<linearGradient x1="85.0973284%" y1="109.304399%" x2="4.85382204%" y2="-47.1761978%" id="linearGradient-20">
<stop stop-color="#032258" offset="0%"></stop>
<stop stop-color="#133E94" offset="100%"></stop>
</linearGradient>
<linearGradient x1="-8.77133659%" y1="109.673401%" x2="17.3111424%" y2="15.4296073%" id="linearGradient-21">
<stop stop-color="#FAD0BA" offset="0%"></stop>
<stop stop-color="#F2A384" offset="100%"></stop>
</linearGradient>
<linearGradient x1="153.403638%" y1="130.01615%" x2="0%" y2="50%" id="linearGradient-22">
<stop stop-color="#F59BA9" offset="0%"></stop>
<stop stop-color="#F35F72" offset="100%"></stop>
</linearGradient>
<linearGradient x1="60.7312459%" y1="0%" x2="52.0812714%" y2="50%" id="linearGradient-23">
<stop stop-color="#3485F7" offset="0%"></stop>
<stop stop-color="#1A57CF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="157.335369%" y1="150.77472%" x2="0%" y2="50%" id="linearGradient-24">
<stop stop-color="#F59BA9" offset="0%"></stop>
<stop stop-color="#F36578" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="27.7727484%" x2="55.2277926%" y2="103.623291%" id="linearGradient-25">
<stop stop-color="#1542AB" offset="0%"></stop>
<stop stop-color="#2B68EE" offset="100%"></stop>
</linearGradient>
<linearGradient x1="60.7312459%" y1="0%" x2="50%" y2="100%" id="linearGradient-26">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#E5EEFF" offset="100%"></stop>
</linearGradient>
<path d="M161.477616,35.5599257 C154.438402,54.0618188 149.662282,67.1899742 147.149257,74.9443919 C143.377179,86.5838586 141.913161,96.1832587 142.757203,103.742592 C145.288475,126.412955 152.330923,133.837937 146.229848,188.066913 C143.844589,209.268116 130.452119,239.114348 127.867819,262.754131 C123.84193,299.580787 133.741561,312.32075 131.261754,318.411621 C127.867819,326.747768 91.645048,319.087117 73.5179769,338 C67.6801593,326.747768 89.8589052,287.07286 89.8589052,281.012684 C89.8589052,274.952509 90.6141307,229.44052 109.240975,196.05539 C121.658871,173.798637 126.403668,141.24171 123.475365,98.3846068 C92.2667319,92.3926435 69.4404238,84.5792385 54.9964408,74.9443919 C40.5524578,65.3095452 22.2203109,44.5228416 0,12.584281 C3.31519883,4.19476034 7.11696179,-2.74138439e-14 11.4052889,-2.84217094e-14 C17.8377795,-2.84217094e-14 61.4199951,39.4961717 95.11561,44.2873995 C109.240975,46.2959053 120.583895,37.9605352 131.261754,35.5599257 C148.249116,31.7408061 160.620007,31.8856958 162.679051,31.1823468 C164.914592,30.4187084 166.021469,30.9897592 165.999685,32.8954993 L161.477616,35.5599257 Z" id="path-27"></path>
<linearGradient x1="32.1013472%" y1="12.3094919%" x2="100%" y2="70.6149422%" id="linearGradient-29">
<stop stop-color="#78D0D6" offset="0%"></stop>
<stop stop-color="#31B1B9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="124.314432%" y1="-25.949264%" x2="22.2387548%" y2="84.7037831%" id="linearGradient-30">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#E5EEFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="157.419759%" y1="-39.6921362%" x2="118.835577%" y2="115.937591%" id="linearGradient-31">
<stop stop-color="#E5EDFF" offset="0%"></stop>
<stop stop-color="#5763AB" offset="100%"></stop>
</linearGradient>
<linearGradient x1="149.379226%" y1="-86.5655478%" x2="157.419759%" y2="219.657969%" id="linearGradient-32">
<stop stop-color="#E5EDFF" offset="0%"></stop>
<stop stop-color="#6B9AD9" offset="100%"></stop>
</linearGradient>
</defs>
<g id="Illustration" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="CRM-2" transform="translate(-71.000000, -141.000000)">
<g id="user-experience-design-agency" transform="translate(57.000000, 141.000000)">
<ellipse id="Shadow" fill-opacity="0.35" fill="#E2EBFC" opacity="0.806164985" cx="977" cy="716.958065" rx="219" ry="10.9580645"></ellipse>
<g id="Window" transform="translate(284.000000, 0.000000)" fill-rule="nonzero">
<path d="M20,0 L733,0 C744.045695,-2.02906125e-15 753,8.954305 753,20 L753,535 C753,537.209139 751.209139,539 749,539 L4,539 C1.790861,539 2.705415e-16,537.209139 0,535 L0,20 C-1.3527075e-15,8.954305 8.954305,2.02906125e-15 20,0 Z" id="Rectangle" fill="url(#linearGradient-1)"></path>
<rect id="Rectangle-2" fill="url(#linearGradient-2)" x="50" y="129" width="181" height="183"></rect>
<circle id="Chart-base" fill="url(#linearGradient-3)" cx="131" cy="409" r="81"></circle>
<path d="M131,328 C166.886813,328 197.322782,351.337834 207.958827,383.66442 L131,413 L131,328 Z" id="Chart-base" fill="url(#linearGradient-4)"></path>
<g id="Chart-bar-" transform="translate(395.000000, 137.000000)">
<rect id="Chart-bar-base" fill="url(#linearGradient-5)" x="0" y="50" width="40" height="60"></rect>
<rect id="Chart-bar-base" fill="url(#linearGradient-6)" x="100" y="30" width="40" height="80"></rect>
<rect id="Chart-bar-base" fill="url(#linearGradient-7)" x="150" y="80" width="40" height="30"></rect>
<rect id="Chart-bar-base" fill="url(#linearGradient-8)" x="201" y="50" width="40" height="60"></rect>
<rect id="Chart-bar-base" fill="url(#linearGradient-6)" x="251" y="20" width="40" height="90"></rect>
<rect id="Chart-bar-base" fill="url(#linearGradient-9)" x="50" y="2.84217094e-14" width="40" height="110"></rect>
</g>
<rect id="Chart-base" fill="url(#linearGradient-10)" x="383" y="267" width="325" height="227"></rect>
<g id="UI" transform="translate(131.000000, 147.000000)">
<rect id="UI-base" fill="url(#linearGradient-11)" x="130" y="0" width="58" height="58"></rect>
<rect id="UI-base" fill="url(#linearGradient-2)" x="130" y="88" width="58" height="58"></rect>
<rect id="UI-base" fill="url(#linearGradient-12)" x="0" y="15" width="58" height="5"></rect>
<rect id="UI-base" fill="url(#linearGradient-11)" x="130" y="176" width="58" height="58"></rect>
<rect id="UI-base" fill="url(#linearGradient-2)" x="130" y="264" width="58" height="58"></rect>
</g>
<path d="M20,-2.20268248e-13 L733,-2.27373675e-13 C744.045695,-1.70539449e-13 753,8.954305 753,20 L753,75 C753,77.209139 751.209139,79 749,79 L4,79 C1.790861,79 2.705415e-16,77.209139 0,75 L0,20 C-1.3527075e-15,8.954305 8.954305,-2.25344614e-13 20,-2.27373675e-13 Z" id="Titlebar-base" fill="url(#linearGradient-13)"></path>
<g id="Titlebar-button" transform="translate(25.000000, 27.000000)" fill="#FFFFFF">
<circle cx="12.5" cy="12.5" r="12.5"></circle>
<circle cx="51.5" cy="12.5" r="12.5"></circle>
<circle cx="90.5" cy="12.5" r="12.5"></circle>
</g>
<g id="Chart" transform="translate(413.000000, 304.000000)" stroke="#D1D6FC" stroke-width="2">
<path d="M0,1 L269.572187,1" id="Path-52"></path>
<path d="M0,33 L269.572187,33" id="Path-52-Copy"></path>
<path d="M0,65 L269.572187,65" id="Path-52-Copy-2"></path>
<path d="M0,97 L269.572187,97" id="Path-52-Copy-3"></path>
<path d="M0,129 L269.572187,129" id="Path-52-Copy-4"></path>
<path d="M0,161 L269.572187,161" id="Path-52-Copy-5"></path>
</g>
<path d="M406.828648,448.205462 C406.274253,449.160826 405.050351,449.485875 404.094988,448.93148 C403.139624,448.377084 402.814575,447.153183 403.368971,446.197819 L443.82609,376.479959 C446.598067,371.703142 452.717574,370.077897 457.494392,372.849874 C458.320605,373.329323 459.073859,373.924682 459.731191,374.617802 L494.171934,410.933626 C496.452185,413.338022 500.249841,413.438662 502.654237,411.158411 C502.876032,410.948068 503.081428,410.721083 503.268632,410.47944 L569.176407,325.405417 C572.558758,321.039464 578.84,320.242098 583.205953,323.624449 C584.087101,324.307084 584.847921,325.132233 585.456951,326.065773 L616.910913,374.279386 C618.721501,377.054712 622.439119,377.836786 625.214445,376.026198 C625.846175,375.614065 626.394531,375.086512 626.830776,374.471185 L682.723736,295.633666 C683.362574,294.732578 684.610931,294.519984 685.512019,295.158822 C686.413106,295.797661 686.625701,297.046018 685.986863,297.947105 L630.093903,376.784624 C629.366829,377.810169 628.452902,378.689425 627.400019,379.376313 C622.774475,382.39396 616.578445,381.090502 613.560798,376.464959 L582.106836,328.251346 C581.741418,327.691222 581.284926,327.196133 580.756237,326.786552 C578.136666,324.757141 574.367921,325.235561 572.33851,327.855132 L506.430735,412.929155 C506.118728,413.331895 505.776401,413.710202 505.406744,414.060773 C501.399417,417.861191 495.069989,417.693459 491.269571,413.686132 L456.828828,377.370308 C456.434429,376.954436 455.982477,376.597221 455.486749,376.309551 C452.620658,374.646365 448.948954,375.621512 447.285767,378.487603 L406.828648,448.205462 Z" id="Chart-base" fill="#859FC2"></path>
<path d="M406.35234,448.760057 C405.49165,449.452363 404.232699,449.315861 403.540393,448.455171 C402.848087,447.594481 402.98459,446.33553 403.845279,445.643224 L487.983706,377.965508 C491.403806,375.214511 496.21802,375.015276 499.853733,377.47427 L536.290698,402.118201 C538.696138,403.745106 541.921423,403.415843 543.948492,401.336432 L578.906861,365.475393 C582.663229,361.622031 588.795414,361.432288 592.78283,365.04604 L632.623091,401.152839 C634.916132,403.230997 638.41356,403.22427 640.698589,401.137306 L685.881448,359.870876 C686.697044,359.125975 687.962077,359.183285 688.706977,359.998881 C689.451878,360.814477 689.394568,362.07951 688.578972,362.82441 L643.396113,404.090841 C639.587731,407.569113 633.758684,407.580325 629.93695,404.116729 L590.096688,368.00993 C587.704239,365.841679 584.024928,365.955525 581.771107,368.267542 L546.812738,404.128581 C543.434289,407.594267 538.058815,408.143038 534.049748,405.431529 L497.612783,380.787598 C495.431355,379.312202 492.542827,379.431743 490.490767,381.082341 L406.35234,448.760057 Z" id="Chart-base" fill="#F25267"></path>
</g>
<g id="Table" transform="translate(780.010183, 501.112903)" fill-rule="nonzero">
<path d="M43.4114053,196.649636 L43.4114053,19.1981567 L24.5593719,19.1981567 L43.4114053,196.649636 Z M21,16 L46.6130346,16 L46.6130346,209.488479 C46.6130346,210.813199 45.5379709,211.887097 44.2118126,211.887097 C42.8465257,211.887097 41.7012685,210.858064 41.55719,209.501873 L21,16 Z" id="Table-base" fill="url(#linearGradient-14)" transform="translate(33.806517, 113.943548) scale(-1, 1) translate(-33.806517, -113.943548) "></path>
<path d="M371.578411,196.649636 L371.578411,19.1981567 L352.726378,19.1981567 L371.578411,196.649636 Z M349.167006,16 L374.780041,16 L374.780041,209.488479 C374.780041,210.813199 373.704977,211.887097 372.378819,211.887097 C371.013532,211.887097 369.868275,210.858064 369.724196,209.501873 L349.167006,16 Z" id="Table-base" fill="url(#linearGradient-14)"></path>
<rect id="Table-base" fill="url(#linearGradient-15)" x="0.989816701" y="0.887096774" width="393" height="15.9907834"></rect>
</g>
<g id="Group" transform="translate(812.000000, 356.000000)" fill-rule="nonzero">
<rect id="Imac" fill="url(#linearGradient-16)" x="78.4399185" y="115" width="44.0224033" height="31"></rect>
<rect id="Imac" fill="url(#linearGradient-17)" x="0" y="0" width="199.301426" height="115.93318"></rect>
<rect id="Imac" stroke="url(#linearGradient-18)" stroke-width="2" fill="url(#linearGradient-1)" x="8.00407332" y="7.99539171" width="183.293279" height="99.9423963"></rect>
</g>
<ellipse id="Shadow" fill-opacity="0.35" fill="#E2EBFC" opacity="0.806164985" cx="261" cy="740.764516" rx="154" ry="20.7645161"></ellipse>
<g id="Girl" transform="translate(229.000000, 410.500000) scale(-1, 1) translate(-229.000000, -410.500000) translate(0.000000, 73.000000)">
<path d="M105.227811,488.132584 C116.5062,504.954796 171.292955,514.577268 269.588076,517 L317,517 L286.848626,452.626321 L199.861663,413 C125.494039,446.266178 93.9494214,471.310373 105.227811,488.132584 Z" id="Jacket" fill="#BF8D30" fill-rule="nonzero"></path>
<g id="Head" transform="translate(143.000000, 65.000000)">
<path d="M53.6422696,88.7947646 C45.3140954,92.5997019 41.2824822,94.16121 41.54743,93.479289 C42.4363403,91.1914171 67.5499481,82.6777579 68.5513622,76.8097776 C69.1571383,73.2601147 69.1571383,69.3156925 68.5513622,64.9765112 L90.0275045,78.5824165 C88.0862794,86.6951681 88.6578445,93.4035598 91.7421998,98.7075915 C94.826555,104.011623 100.889749,108.712739 109.931782,112.810938 C84.941806,134.468841 66.7437588,145.963089 55.3376402,147.29368 C38.2284625,149.289566 40.0451746,135.664305 53.601126,115.623984 C62.6384269,102.26377 62.6521414,93.3206965 53.6422696,88.7947646 Z" id="neck" fill="url(#linearGradient-19)"></path>
<path d="M91.5198327,15.1137142 C122.427882,62.6143647 127.72121,67.3544858 124.531729,82.5186079 C117.973967,113.696947 26.9637124,145.869769 15.9865662,118.807365 C5.0094199,91.7449607 30.169447,105.79345 28.9552824,82.5186079 C28.5100092,73.9829738 18.9657969,55.4206776 0.322645382,26.8317192 C46.605631,-3.28769478 77.0046935,-7.19369646 91.5198327,15.1137142 Z" id="Hair" fill="url(#linearGradient-20)" fill-rule="nonzero"></path>
<path d="M18.52397,22.8221759 L26.3777088,22.6866755 C40.9167324,19.5781837 55.0051028,21.7556253 68.64282,29.2190002 C82.2805371,36.6823752 87.8409453,45.2579212 85.3240447,54.9456382 L90.9852797,78.5144424 C89.035468,86.6600878 89.6025115,93.3939923 92.6864103,98.7161558 C95.7703091,104.038319 101.837043,108.752925 110.886612,112.859974 C85.8502474,134.621041 67.6217344,146.173864 56.2010724,147.518442 C39.0700795,149.53531 40.8995027,135.855923 54.4870433,115.727558 C63.5454037,102.308647 63.5660649,93.3309614 54.5490269,88.7945001 C46.02722,92.7178836 40.6291127,94.8336235 38.3547052,95.1417199 C35.2613935,95.5607469 25.9469154,82.6964232 19.4661632,67.2881981 C18.7992983,65.7027025 13.4541594,60.4514196 12.8571685,58.8237539 C11.5295724,55.2041294 14.590365,54.9607616 14.1510085,51.0344863 C13.8164505,48.0447345 11.0385239,44.0563416 11.6901363,39.1235209 C12.0974477,36.0401023 14.3753923,30.6063206 18.52397,22.8221759 Z" id="Face" fill="#F2A384" fill-rule="nonzero"></path>
</g>
<g id="Foot" transform="translate(112.000000, 327.000000)">
<path d="M58.9758456,303.381211 L61.9531146,321.905245 C58.3301915,326.836535 53.8568546,329.30218 48.533104,329.30218 C43.2093533,329.30218 38.4702382,328.0588 34.3157586,325.572042 L31.3332942,305.325284 L58.9758456,303.381211 Z" id="leg" fill="url(#linearGradient-21)" fill-rule="nonzero" transform="translate(46.643204, 316.341696) rotate(-360.000000) translate(-46.643204, -316.341696) "></path>
<path d="M151.317718,303.381211 L154.294987,321.905245 C150.672064,326.836535 146.198727,329.30218 140.874976,329.30218 C135.551226,329.30218 130.812111,328.0588 126.657631,325.572042 L123.675167,305.325284 L151.317718,303.381211 Z" id="leg" fill="url(#linearGradient-21)" fill-rule="nonzero" transform="translate(138.985077, 316.341696) rotate(-360.000000) translate(-138.985077, -316.341696) "></path>
<path d="M154.38765,319.364026 C156.646891,319.364026 156.646891,327.008725 156.745186,332.826983 C156.78097,334.945099 156.397901,338.171928 155.595979,342.50747 C155.267365,344.284113 153.820027,345.586499 152.105152,345.648688 C115.846863,346.963581 93.9988508,346.928067 93.9324638,345.542144 C91.0355967,336.082353 92.6136262,335.061974 109.05634,327.641209 C115.739751,324.624918 121.874626,323.184692 126.030965,320.708185 C127.452677,319.861074 130.432235,326.710083 140.260697,326.710083 C150.08916,326.710083 152.128409,319.364026 154.38765,319.364026 Z" id="Shoes" fill="url(#linearGradient-22)" fill-rule="nonzero" transform="translate(124.754333, 332.986474) rotate(-360.000000) translate(-124.754333, -332.986474) "></path>
<path d="M163.63397,0.759451044 C162.731363,21.0987003 162.731363,32.4468754 163.63397,34.8039763 C164.987881,38.3396276 157.048927,82.4523992 139.817109,167.142291 C141.292548,249.776139 153.579182,295.169289 152.105855,303.32174 C149.895864,315.550417 124.207567,315.55007 121.090361,306.712335 C119.012223,300.820511 110.412084,252.946869 95.2899435,163.091408 L92.6361059,92.6168146 C82.0617471,111.083051 67.271588,136.237044 48.2656286,168.078795 C51.3746216,255.720779 63.1648671,302.108378 59.0652083,307.241591 C55.4114137,311.816535 31.3332942,315.045647 29.8883842,307.242495 C15.2336722,246.784774 7.90710779,200.088953 7.90869092,167.155031 C7.91027405,134.22111 23.0024844,78.7559161 53.185322,0.759451044 L163.63397,0.759451044 Z" id="Pants" fill="url(#linearGradient-23)" fill-rule="nonzero" transform="translate(85.845301, 156.863883) rotate(-360.000000) translate(-85.845301, -156.863883) "></path>
<path d="M62.0457778,319.364026 C64.3050188,319.364026 64.3050188,327.008725 64.4033136,332.826983 C64.4390975,334.945099 64.0560285,338.171928 63.2541066,342.50747 C62.9254925,344.284113 61.4781543,345.586499 59.7632799,345.648688 C23.5049902,346.963581 1.65697835,346.928067 1.59059135,345.542144 C-1.30627567,336.082353 0.271753744,335.061974 16.7144677,327.641209 C23.3978784,324.624918 29.5327532,323.184692 33.6890925,320.708185 C35.1108045,319.861074 38.0903623,326.710083 47.918825,326.710083 C57.7472878,326.710083 59.7865369,319.364026 62.0457778,319.364026 Z" id="Shoes" fill="url(#linearGradient-24)" fill-rule="nonzero" transform="translate(32.412460, 332.986474) rotate(-360.000000) translate(-32.412460, -332.986474) "></path>
<path d="M48.2829436,168.049786 L47.918825,167.944152 L78.6327711,81.1089089 C80.6803675,82.8369734 85.3481458,86.672942 92.6361059,92.6168146 C82.0649585,111.077442 67.2805711,136.221766 48.2829436,168.049786 Z" id="Shadow" fill="url(#linearGradient-25)" fill-rule="nonzero" transform="translate(70.277465, 124.579347) rotate(-360.000000) translate(-70.277465, -124.579347) "></path>
<path d="M141.289221,44.1715291 L123.661272,155.749552 C122.723291,161.686602 122.667953,167.729685 123.497052,173.682916 L141.289221,301.437139" id="Texture" stroke="#1542AB" transform="translate(132.101585, 172.804334) rotate(-360.000000) translate(-132.101585, -172.804334) "></path>
</g>
<path d="M198.514674,178.207787 C192.329577,188.084316 188.042179,194.718087 195.577191,198.381542 C203.112203,202.044997 220.190253,193.25115 246.81134,172 C278.988141,184.251674 282.291012,193.981808 288.882461,201.1904 C295.473911,208.398992 271.166845,343.025602 261.441181,351.932756 C247.325655,364.860323 226,369.347675 200.142846,365.861841 C200.142846,365.861841 200.142846,365.861841 200.142846,365.861841 L200.142846,365.861841 C181.762791,363.384004 168.871496,346.475342 171.349333,328.095287 C171.407882,327.660983 171.474927,327.227867 171.550429,326.796188 C174.684202,308.87902 176.251204,297.791241 176.251434,293.53285 C176.251919,284.557687 171.501441,262.650673 162,227.811808 L182.929378,184.292609 L198.514674,178.207787 Z" id="Body" fill="url(#linearGradient-26)" fill-rule="nonzero" transform="translate(226.000000, 269.500000) rotate(-360.000000) translate(-226.000000, -269.500000) "></path>
<g id="Jacket" transform="translate(241.000000, 172.000000)" fill-rule="nonzero">
<path d="M7.46619169,171.912784 C21.9222558,221.082936 -1.64656217,278.224193 3.88325281,305.360718 C31.4342203,308.244869 55.4915612,322.256529 76.0552756,347.395699 C84.7475466,336.206346 88.6426905,311.634317 87.7407073,273.679613 C86.3877325,216.747557 72.8192071,213.581352 70.726222,187.66495 C69.3308986,170.387349 69.3308986,148.883548 70.726222,123.153546 L58.1893857,24.9342098 L7.46619169,0.871117729 C-2.1711844,82.1187936 -2.1711844,139.132682 7.46619169,171.912784 Z" fill="url(#linearGradient-11)"></path>
<path d="M69.7383608,150.766419 C58.3148218,139.124184 47.0567415,122.013291 38.2812569,96.9641484 C29.790609,72.7280566 38.6498745,42.7599417 50.9191432,21.4852055 L58.1893857,24.9342098 L70.726222,123.153546 C70.1936962,132.973413 69.8644091,142.177704 69.7383608,150.766419 Z" id="Shadow" fill="#EFB84F" opacity="0.5"></path>
</g>
<g id="Hand" transform="translate(338.500000, 253.500000) scale(-1, 1) rotate(39.000000) translate(-338.500000, -253.500000) translate(281.000000, 136.000000)" fill-rule="nonzero">
<path d="M32.3540108,222.619016 L29.1648307,212.385957 C21.0768949,201.125714 17.1942873,195.013206 17.5170079,194.048435 C17.8397285,193.083665 20.0270844,194.307698 24.0790756,197.720537 C23.0138895,189.982991 22.8228399,185.72039 23.5059269,184.932733 C24.1890139,184.145077 26.0689251,187.097382 29.1456605,193.789648 C29.4792604,185.326483 30.1775365,180.898732 31.2404889,180.506395 C32.3034412,180.114058 33.8993451,184.218699 36.0282005,192.820318 C37.020945,185.236373 38.0341381,181.876606 39.0677797,182.741019 C40.1014212,183.605432 41.0384148,189.595949 41.8787604,200.712571 C45.971393,197.139921 48.2519589,195.990554 48.720458,197.26447 C49.188957,198.538386 47.9819103,202.978137 45.0993179,210.583725 C47.5134113,242.815104 43.2649756,246.826868 32.3540108,222.619016 Z" fill="#F2A384" transform="translate(33.158570, 209.337273) scale(-1, -1) rotate(68.000000) translate(-33.158570, -209.337273) "></path>
<path d="M54.9063775,67.7024074 C39.9448102,45.3300206 39.9448102,29.5171719 54.9063775,20.2638613 C66.6909875,12.9754099 72.6947959,-0.691423531 75.1154773,0.137475026 C77.3046881,0.887112577 76.0224279,15.549747 83.2279553,20.2638613 C101.416494,32.1634552 123.984489,89.0702256 111.018513,126.170819 C87.2362967,194.220796 65.6914112,195.633563 52.3845427,204.181862 C43.513297,209.880728 38.4166992,206.147045 37.0947492,192.980811 C62.0993416,156.373573 73.6263982,132.423994 71.6759188,121.132075 C69.7254395,109.840156 64.1355924,92.0302667 54.9063775,67.7024074 Z" id="Sleeve" fill="url(#linearGradient-11)"></path>
</g>
<g id="marker" transform="translate(16.831915, 117.156447) rotate(-80.000000) translate(-16.831915, -117.156447) translate(1.331915, 106.656447)" fill-rule="nonzero">
<path d="M24.0883906,2.62465069 C25.142049,1.72177259 30.1873062,-0.751302272 30.7249052,1.14491739 C31.0833076,2.40906651 29.4257776,4.04567219 25.7523516,6.05466157 C23.9405901,4.36989019 23.3859183,3.22654784 24.0883906,2.62465069 Z" id="Shape" fill="#BA96FF"></path>
<path d="M3.22061673,11.7921676 L24.0593523,1.59099472 C25.3997932,0.934804557 27.0155252,1.37547713 27.8437953,2.62310884 C28.6484553,3.8350995 28.3485055,5.47174381 27.1673427,6.3147998 L8.00255532,19.9938391 C5.8748623,21.512512 2.92725857,21.007004 1.41894047,18.8646563 C1.34106917,18.7540866 1.26793188,18.6401959 1.19973832,18.5232881 C-0.130545464,16.2433252 0.626714661,13.3092559 2.8911843,11.9698518 C2.99862811,11.9062753 3.1085288,11.8469966 3.22061673,11.7921676 Z" id="Shape" fill="#3E4886"></path>
</g>
<path d="M18.4413014,153.323826 L15.2847329,143.039897 C14.7455707,134.548478 14.6356999,129.817985 14.9551205,128.848418 C15.274541,127.878851 15.0257204,126.922357 14.2086588,125.978934 C14.2372901,125.685312 14.5896568,125.142715 15.2657587,124.351143 C16.2799116,123.163785 24.0573358,118.490294 25.6354602,117.898863 C26.6875432,117.504575 25.5016964,119.330619 22.0779198,123.376995 C23.0605128,115.755348 24.0633453,112.37888 25.0864171,113.24759 C26.109489,114.116299 27.0369011,120.136597 27.8686535,131.308481 C31.9194361,127.718071 34.1766816,126.56299 34.6403899,127.843239 C35.1040982,129.123487 33.9093944,133.58531 31.0562786,141.228706 C33.4456861,173.620312 29.2406937,177.652018 18.4413014,153.323826 Z" id="Hand" fill="#F2A384" fill-rule="nonzero" transform="translate(24.473146, 141.045161) rotate(-33.000000) translate(-24.473146, -141.045161) "></path>
<g id="Jacket" transform="translate(29.000000, 148.000000)">
<mask id="mask-28" fill="white">
<use xlink:href="#path-27"></use>
</mask>
<use fill="url(#linearGradient-11)" fill-rule="nonzero" xlink:href="#path-27"></use>
<path d="M122.244724,102.796172 C122.382272,94.9197856 123.637941,88.5214871 126.011731,83.6012765 C128.385522,78.6810659 129.051182,75.7816561 128.008712,74.9030471 C102.114202,87.6887971 80.437712,90.5882069 62.9792422,83.6012765 C45.5207723,76.6143461 49.917967,86.1987775 76.1708261,112.354571 L122.244724,102.796172 Z" id="Shadow" fill="#EFB84F" fill-rule="nonzero" opacity="0.5" mask="url(#mask-28)"></path>
</g>
<path d="M272.049938,131.88511 C268.506348,134.98253 321.365508,120.113456 320.998093,92.415797 C320.630679,64.7181382 297.871751,65.3695356 291.592839,63.333104 C285.313927,61.2966724 258.829865,19.6336219 221.14656,32.4409128 C202.414907,38.8071733 200.918554,54.7075907 183.627248,73.690069 C176.766986,81.2212977 164.829293,77.1356532 157.799455,84.9888504 C150.769617,92.8420476 147.039793,105.089731 142.836381,111.9615 C137.172255,121.221252 113.137578,127.003121 115.115345,145.643789 C117.093112,164.284458 137.799201,170.787478 167.146864,174.847232 C180.709898,176.723449 179.713925,160.784893 186.163158,156.241279 C193.66876,150.953431 204.253961,152.624782 207.840882,147.934878 C214.509886,139.215148 210.444627,137.197393 213.419625,131.730921 C215.402957,128.086606 218.318935,124.712975 222.167559,121.610028 C215.775516,118.661101 214.605833,113.440104 218.65851,105.947037 C224.737527,94.707437 235.111519,100.374387 235.111519,110.276441 L240.556509,103.912669 C247.142348,107.822589 253.733947,109.950607 260.331305,110.296725 C266.928664,110.642843 272.469371,110.404238 276.953427,109.580911 C277.493512,121.234265 275.859016,128.668998 272.049938,131.88511 Z" id="Face" fill="url(#linearGradient-20)" fill-rule="nonzero" transform="translate(218.000000, 102.500000) scale(-1, 1) rotate(-19.000000) translate(-218.000000, -102.500000) "></path>
</g>
<g id="vase" transform="translate(1063.000000, 313.000000)" fill-rule="nonzero">
<path d="M47.4027578,116.138641 L57.469841,173 L42.2032035,119.262586 C35.562935,116.041411 20.5716745,110.344371 16.2704753,105.306211 C11.9692761,100.268052 8.49249224,92.6012424 5.84012364,82.3057833 L18.4503806,99.2760535 L5.9275125,79.5888171 C3.54633336,75.2787453 1.89381873,71.2943057 0.969968831,67.6354982 C0.0461188183,63.9766907 -0.2177882,61.0516314 0.178247775,58.8603202 L11.9533212,73.3689108 L0.782457036,56.0168646 C1.31389832,42.1670089 1.80536954,32.7953423 2.25687083,27.9018648 C2.59780459,24.2067438 6.81039134,25.2461393 7.24548591,22.5806356 C7.6949432,19.8271415 4.37006785,13.4032977 4.92000525,11.74852 C6.6741777,6.47016303 8.97509972,2.71446225 11.8227714,0.481417635 C16.201087,-2.95190445 20.8204107,12.8197077 25.516446,21.1263311 C26.475675,22.8230716 27.2809497,13.5466842 28.2616603,15.5112609 C35.7346071,30.4811997 43.8717048,52.1337009 53.2902163,63.8089983 C64.4273707,77.6147453 61.1784087,102.247685 47.4027578,116.138641 Z" id="Combined-Shape-Copy" fill="url(#linearGradient-29)"></path>
<path d="M38.0238115,95.6900008 L26.9999999,82.5041515 L27.4830438,82.1320755 L37.8303957,94.5087949 C34.0087205,71.2849765 30.2453456,55.2628009 26.5482488,46.4586834 L14.6470588,35.0075404 L15.0852904,34.5849056 L25.9026634,44.9932223 C25.5830087,44.303295 25.263855,43.6675606 24.9452075,43.0860295 L13,21.2860495 L13.5544088,21 L25.4996163,42.79998 C30.5723687,52.0577431 35.7323788,74.7487013 41,110.914732 L40.3782721,111 C39.5910621,105.595233 38.8062191,100.491853 38.0238115,95.6900008 Z" id="Combined-Shape-Copy-path" fill="#319CA3"></path>
<path d="M60.5137977,112.590042 L67.29143,104.398062 L66.9944462,104.166903 L60.6327131,111.856193 C62.9823458,97.4279196 65.2961347,87.4738142 67.5691746,82.0040756 L74.8862346,74.8898179 L74.6168021,74.6272475 L67.9660918,81.0936278 C68.1626211,80.6649963 68.3588424,80.2700332 68.5547524,79.9087451 L75.8988752,66.3650601 L75.558015,66.187346 L68.2138922,79.7310309 C65.0950751,85.4826063 61.9226106,99.5798297 58.6839848,122.048719 L59.066234,122.101693 C59.5502245,118.743871 60.0327598,115.573291 60.5137977,112.590042 Z M54.7682993,124.831414 C46.2733146,116.239897 44.2697881,101.004496 51.1376999,92.465681 C56.945782,85.2445433 61.963659,71.8525339 66.5719761,62.59367 C67.1767477,61.378585 67.6733338,67.1160038 68.2648583,66.0665747 C71.1607468,60.9289521 74.0093297,51.1742556 76.709291,53.2977554 C78.4653552,54.678887 79.8842571,57.0017771 80.9659968,60.2664257 C81.3051248,61.2899009 79.2547851,65.2630297 79.5319503,66.9660579 C79.8002587,68.6146641 82.3980205,67.9718011 82.608263,70.2572227 C82.8866887,73.2838244 83.1897627,79.080173 83.5174848,87.6462688 L76.6287853,98.3784593 L83.8900805,89.404938 C84.1343027,90.7602576 83.97156,92.5693982 83.4018526,94.8323602 C82.8321451,97.095322 81.8130945,99.5596864 80.3447006,102.225453 L72.6222653,114.401952 L80.3985904,103.905889 C78.7629631,110.273601 76.6189464,115.0155 73.9665402,118.131587 C71.3141341,121.247675 62.0695234,124.771277 57.9746912,126.763565 L48.5602647,160 L54.7682993,124.831414 Z" id="Combined-Shape-Copy" fill="url(#linearGradient-30)"></path>
<polygon fill="url(#linearGradient-31)" points="11 143 81 143 65.4444444 189 26.5555556 189"></polygon>
<rect fill="url(#linearGradient-32)" x="9" y="142" width="72" height="14"></rect>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 36 KiB

View File

@@ -0,0 +1,150 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="351px" height="435px" viewBox="0 0 351 435" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>user-experience-design-services</title>
<desc>Created with Sketch.</desc>
<defs>
<linearGradient x1="79.0720975%" y1="19.4258634%" x2="29.5739014%" y2="50%" id="linearGradient-1">
<stop stop-color="#F1F5FB" offset="0%"></stop>
<stop stop-color="#FFFFFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="31.669258%" y1="-9.21335019%" x2="100%" y2="50%" id="linearGradient-2">
<stop stop-color="#9AE1E5" offset="0%"></stop>
<stop stop-color="#3BC2CA" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-3">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#3EBCC3" offset="100%"></stop>
</linearGradient>
<linearGradient x1="125.896791%" y1="5.17322266%" x2="105.071564%" y2="32.5985354%" id="linearGradient-4">
<stop stop-color="#5763AB" offset="0%"></stop>
<stop stop-color="#38427E" offset="100%"></stop>
</linearGradient>
<linearGradient x1="104.045238%" y1="16.8405933%" x2="6.07416571%" y2="100%" id="linearGradient-5">
<stop stop-color="#5763AB" offset="0%"></stop>
<stop stop-color="#3A4483" offset="100%"></stop>
</linearGradient>
<linearGradient x1="15.7963008%" y1="121.63627%" x2="148.737665%" y2="121.636271%" id="linearGradient-6">
<stop stop-color="#311793" offset="0%"></stop>
<stop stop-color="#270D4F" offset="100%"></stop>
</linearGradient>
<linearGradient x1="45.1973837%" y1="39.5178631%" x2="22.2166594%" y2="78.045161%" id="linearGradient-7">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#EDE9F5" offset="100%"></stop>
</linearGradient>
<rect id="path-8" x="8.07209585" y="53.7241469" width="176.736414" height="266.82993" rx="12"></rect>
<linearGradient x1="83.2457%" y1="277.403938%" x2="0%" y2="-5.55111512e-15%" id="linearGradient-10">
<stop stop-color="#B4AAD7" offset="0%"></stop>
<stop stop-color="#7B6ABA" offset="100%"></stop>
</linearGradient>
<linearGradient x1="100%" y1="0%" x2="39.627475%" y2="100%" id="linearGradient-11">
<stop stop-color="#FFDB71" offset="0%"></stop>
<stop stop-color="#FEB856" offset="100%"></stop>
</linearGradient>
<path d="M20,0 L37.1749734,0 L37.1749734,47.5925545 L0,47.5925545 L0,20 C-1.3527075e-15,8.954305 8.954305,-1.52365243e-15 20,-3.55271368e-15 Z" id="path-12"></path>
<linearGradient x1="100%" y1="0%" x2="39.627475%" y2="100%" id="linearGradient-14">
<stop stop-color="#9AE1E5" offset="0%"></stop>
<stop stop-color="#39BAC1" offset="100%"></stop>
</linearGradient>
<path d="M0,0 L37.1749734,0 L37.1749734,47.5925545 L24,47.5925545 C10.745166,47.5925545 1.623249e-15,36.8473885 0,23.5925545 L0,0 Z" id="path-15"></path>
<linearGradient x1="100%" y1="0%" x2="39.627475%" y2="100%" id="linearGradient-17">
<stop stop-color="#EDE9F5" offset="0%"></stop>
<stop stop-color="#B4AAD7" offset="100%"></stop>
</linearGradient>
<path d="M0,0 L37.1749734,0 L37.1749734,23.5925545 C37.1749734,36.8473885 26.4298074,47.5925545 13.1749734,47.5925545 L0,47.5925545 L0,0 Z" id="path-18"></path>
<linearGradient x1="29.8557853%" y1="95.4716805%" x2="82.9833415%" y2="10.6939236%" id="linearGradient-20">
<stop stop-color="#F94A8A" offset="0%"></stop>
<stop stop-color="#FE9DC1" offset="100%"></stop>
</linearGradient>
<ellipse id="path-21" cx="33.3235256" cy="33.3199918" rx="33.3235256" ry="33.3199918"></ellipse>
</defs>
<g id="verson-2/desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Desktop/Services" transform="translate(-1270.000000, -1932.000000)">
<g id="user-experience-design-services" transform="translate(1437.000000, 2149.500000) scale(-1, 1) translate(-1437.000000, -2149.500000) translate(1253.000000, 1932.000000)">
<g id="Artwork">
<path d="M220.834898,53.3249558 C220.352175,39.3539959 184.287389,42.5032326 170.375407,43.851025 C156.463227,45.1988174 155.200098,26.0597228 167.203478,23.2148162 C179.206661,20.3699096 200.973601,21.838065 212.251614,19.2119812 C223.529627,16.5858973 209.263345,2.5019457 224.630205,0.804331704 C239.997065,-0.893176988 271.771787,0.678492816 281.244371,0.333620547 C296.123378,-0.208065849 303.757194,17.8715601 277.689933,18.6919875 C270.501358,18.9181816 269.059303,34.9798572 293.323898,30.5679142 C308.550893,27.799248 338.426876,27.7353282 344.641915,34.8039987 C348.207795,38.8596965 346.972086,49.7557648 340.841677,55.7725485 C336.287663,60.2421984 321.804974,61.1136985 316.131643,62.1468411 C302.821536,64.5709509 305.452743,77.578901 309.991172,80.2573212 C320.731028,86.5952837 350.20655,74.6337445 350.996623,92.0377367 C351.345793,99.7283356 324.52673,100.969981 313.530026,100.876049 C286.559458,100.645749 268.838754,103.071122 267.595154,93.7849491 C266.34682,84.4625515 284.354751,90.7548119 283.466832,79.2941009 C283.002849,73.3052228 284.246449,60.5793835 272.693045,61.24733 C288.510867,60.3327603 221.486881,72.1941549 220.834898,53.3249558 Z" id="cloud" fill="url(#linearGradient-1)" opacity="0.313462409"></path>
<g id="plant" transform="translate(246.500000, 182.500000) scale(-1, 1) translate(-246.500000, -182.500000) translate(214.000000, 130.000000)">
<path d="M16.1096936,104.977237 C16.1096936,91.305362 27.4267848,48.9952989 42.7026843,25.8442352" id="stem" stroke="#EDE9F5" stroke-width="2" stroke-linecap="round"></path>
<path d="M29.4693412,33.948402 C32.0868104,30.2349305 33.395545,26.087795 33.395545,21.5069957 C33.395545,14.6357968 31.6377237,9.0655895 29.4693412,9.0655895 C27.3009587,9.0655895 25.5431374,14.6357968 25.5431374,21.5069957 C25.5431374,26.087795 26.851872,30.2349305 29.4693412,33.948402 Z" id="leaf" fill="#EDE9F5" transform="translate(29.469341, 21.506996) rotate(-30.000000) translate(-29.469341, -21.506996) "></path>
<path d="M51.8543775,46.642721 C54.4718467,42.9292495 55.7805813,38.7821141 55.7805813,34.2013148 C55.7805813,27.3301159 54.0227599,21.7599085 51.8543775,21.7599085 C49.685995,21.7599085 47.9281736,27.3301159 47.9281736,34.2013148 C47.9281736,38.7821141 49.2369082,42.9292495 51.8543775,46.642721 Z" id="leaf" fill="#EDE9F5" transform="translate(51.854377, 34.201315) rotate(88.000000) translate(-51.854377, -34.201315) "></path>
<path d="M44.5435152,64.689596 C47.1609844,60.9761245 48.469719,56.8289891 48.469719,52.2481898 C48.469719,45.3769909 46.7118977,39.8067835 44.5435152,39.8067835 C42.3751327,39.8067835 40.6173114,45.3769909 40.6173114,52.2481898 C40.6173114,56.8289891 41.926046,60.9761245 44.5435152,64.689596 Z" id="leaf" fill="#EDE9F5" transform="translate(44.543515, 52.248190) rotate(91.000000) translate(-44.543515, -52.248190) "></path>
<path d="M38.5859166,82.1903507 C41.2033858,78.4768792 42.5121204,74.3297438 42.5121204,69.7489445 C42.5121204,62.8777455 40.7542991,57.3075382 38.5859166,57.3075382 C36.4175341,57.3075382 34.6597128,62.8777455 34.6597128,69.7489445 C34.6597128,74.3297438 35.9684474,78.4768792 38.5859166,82.1903507 Z" id="leaf" fill="#EDE9F5" transform="translate(38.585917, 69.748944) rotate(91.000000) translate(-38.585917, -69.748944) "></path>
<path d="M50.7069777,25.2450997 C53.3244469,21.5316282 54.6331815,17.3844928 54.6331815,12.8036935 C54.6331815,5.93249455 52.8753602,0.362287234 50.7069777,0.362287234 C48.5385952,0.362287234 46.7807739,5.93249455 46.7807739,12.8036935 C46.7807739,17.3844928 48.0895085,21.5316282 50.7069777,25.2450997 Z" id="leaf" fill="#EDE9F5" transform="translate(50.706978, 12.803693) rotate(33.000000) translate(-50.706978, -12.803693) "></path>
<path d="M19.7285083,53.0400323 C22.3459775,49.3265608 23.6547121,45.1794254 23.6547121,40.5986261 C23.6547121,33.7274271 21.8968908,28.1572198 19.7285083,28.1572198 C17.5601258,28.1572198 15.8023045,33.7274271 15.8023045,40.5986261 C15.8023045,45.1794254 17.1110391,49.3265608 19.7285083,53.0400323 Z" id="leaf" fill="#EDE9F5" transform="translate(19.728508, 40.598626) rotate(-41.000000) translate(-19.728508, -40.598626) "></path>
<path d="M12.4176461,72.1806573 C15.0351153,68.4671858 16.3438499,64.3200504 16.3438499,59.7392511 C16.3438499,52.8680521 14.5860286,47.2978448 12.4176461,47.2978448 C10.2492636,47.2978448 8.49144227,52.8680521 8.49144227,59.7392511 C8.49144227,64.3200504 9.80017687,68.4671858 12.4176461,72.1806573 Z" id="leaf" fill="#EDE9F5" transform="translate(12.417646, 59.739251) rotate(-47.000000) translate(-12.417646, -59.739251) "></path>
</g>
<g id="plant" transform="translate(255.000000, 247.189476) rotate(42.000000) translate(-255.000000, -247.189476) translate(208.500000, 130.189476)">
<path d="M71.7140469,200.804186 C66.4643951,205.411397 46.5,196.196976 38.5845648,181.894507 C30.6691297,167.592038 45.3522753,162.501102 25.3805899,139.626176 C5.40890455,116.751251 -7.40608077,107.990637 4.71396616,70.2853607 C16.8340131,32.5800846 0.0902799109,11.6252494 22.2139334,1.78814172 C44.3375869,-8.04896593 57.078524,24.5992883 54.5408257,53.3167277 C52.0031275,82.034167 57.1935663,87.9857766 78.8333654,85.0099718 C100.473164,82.034167 82.2288056,124.193919 82.2288056,133.396591 C82.2288056,142.599263 95.3503975,159.692098 92.6282932,172.552006 C89.9061888,185.411913 76.9636987,196.196976 71.7140469,200.804186 Z" id="leaves" fill="url(#linearGradient-2)"></path>
<path d="M59.6960962,158.940161 C59.6960962,151.955586 61.5594807,130.193438 71.6960962,116.940161" id="branch" stroke="url(#linearGradient-3)" stroke-width="3" fill="#39BAC1" stroke-linecap="round"></path>
<path d="M15.5441443,117.410242 C15.5441443,110.464949 35.6848782,105.588981 45.5441443,92.4102422" id="branch" stroke="url(#linearGradient-3)" stroke-width="3" fill="#39BAC1" stroke-linecap="round" transform="translate(30.544144, 104.910242) scale(-1, 1) translate(-30.544144, -104.910242) "></path>
<path d="M84,234 C84,230.992542 78.780649,217.43541 73.7932274,201.72801 C58.1752433,152.540684 33,91.9717747 33,50" id="branch" stroke="url(#linearGradient-3)" stroke-width="3" fill="#39BAC1" stroke-linecap="round"></path>
</g>
<g id="phone" transform="translate(0.000000, 60.000000)">
<rect id="back" fill="url(#linearGradient-4)" x="17.465269" y="0.368007851" width="192.455759" height="374.278224" rx="42"></rect>
<path d="M42,0 L150.455759,0 C173.651719,-4.26102863e-15 192.455759,18.8040405 192.455759,42 L192.455759,332.278224 C192.455759,355.474183 173.651719,374.278224 150.455759,374.278224 L42,374.278224 C18.8040405,374.278224 2.84068575e-15,355.474183 0,332.278224 L0,42 C-2.84068575e-15,18.8040405 18.8040405,4.26102863e-15 42,0 Z" id="front" fill="url(#linearGradient-5)"></path>
<rect id="front-speaker" fill="url(#linearGradient-6)" x="45.8834922" y="24.1758661" width="101.113622" height="6.71551837" rx="3.35775918"></rect>
<mask id="mask-9" fill="white">
<use xlink:href="#path-8"></use>
</mask>
<use id="screen" fill="url(#linearGradient-7)" xlink:href="#path-8"></use>
<g id="screen-content" mask="url(#mask-9)">
<g transform="translate(22.802102, 68.081452)">
<rect id="Rectangle-3" fill="url(#linearGradient-10)" opacity="0.400000006" x="0" y="128.43474" width="140.490368" height="8.46418057" rx="4.23209028"></rect>
<rect id="Rectangle-3-Copy" fill="url(#linearGradient-10)" opacity="0.400000006" x="0" y="142.05103" width="101.50613" height="8.46418057" rx="4.23209028"></rect>
<rect id="Rectangle-3-Copy-2" fill="url(#linearGradient-10)" opacity="0.400000006" x="0" y="169.651619" width="136.077058" height="8.46418057" rx="4.23209028"></rect>
<g id="my-group" stroke-width="1" fill="none" transform="translate(0.000000, 0.259820)">
<g id="user" transform="translate(0.000000, 13.805474)">
<mask id="mask-13" fill="white">
<use xlink:href="#path-12"></use>
</mask>
<use id="Mask" fill="url(#linearGradient-11)" opacity="0.600000024" xlink:href="#path-12"></use>
<g id="avatar" mask="url(#mask-13)" fill="#FFFFFF">
<g transform="translate(6.505620, 12.361702)">
<path d="M12.5465535,14.602261 L12.5465535,14.602261 C19.4758237,14.602261 25.0931071,20.2195444 25.0931071,27.1488146 L25.0931071,42.5030098 L0,42.5030098 L0,27.1488146 C-8.48590854e-16,20.2195444 5.61728335,14.602261 12.5465535,14.602261 Z" id="Rectangle-2" opacity="0.699999988"></path>
<ellipse id="Oval" cx="12.4158603" cy="9.51754514" rx="9.54060841" ry="9.51754514"></ellipse>
</g>
</g>
</g>
<g id="user" transform="translate(0.000000, 64.603744)">
<mask id="mask-16" fill="white">
<use xlink:href="#path-15"></use>
</mask>
<use id="Mask" fill="url(#linearGradient-14)" opacity="0.600000024" xlink:href="#path-15"></use>
<g id="avatar" mask="url(#mask-16)" fill="#FFFFFF">
<g transform="translate(6.505620, 12.361702)">
<path d="M12.5465535,14.602261 L12.5465535,14.602261 C19.4758237,14.602261 25.0931071,20.2195444 25.0931071,27.1488146 L25.0931071,42.5030098 L0,42.5030098 L-3.55271368e-15,27.1488146 C-4.40130453e-15,20.2195444 5.61728335,14.602261 12.5465535,14.602261 Z" id="Rectangle-2" opacity="0.699999988"></path>
<ellipse id="Oval" cx="12.4158603" cy="9.51754514" rx="9.54060841" ry="9.51754514"></ellipse>
</g>
</g>
</g>
<g id="user" transform="translate(40.129276, 64.603744)">
<mask id="mask-19" fill="white">
<use xlink:href="#path-18"></use>
</mask>
<use id="Mask" fill="url(#linearGradient-17)" opacity="0.600000024" xlink:href="#path-18"></use>
<g id="avatar" mask="url(#mask-19)" fill="#FFFFFF">
<g transform="translate(6.505620, 12.361702)">
<path d="M12.5465535,14.602261 L12.5465535,14.602261 C19.4758237,14.602261 25.0931071,20.2195444 25.0931071,27.1488146 L25.0931071,42.5030098 L0,42.5030098 L0,27.1488146 C-8.48590854e-16,20.2195444 5.61728335,14.602261 12.5465535,14.602261 Z" id="Rectangle-2" opacity="0.699999988"></path>
<ellipse id="Oval" cx="12.4158603" cy="9.51754514" rx="9.54060841" ry="9.51754514"></ellipse>
</g>
</g>
</g>
<path d="M61.1908932,0 L68.4597335,0 C79.5054285,-2.02906125e-15 88.4597335,8.954305 88.4597335,20 L88.4597335,40.6620125 C88.4597335,51.7077075 79.5054285,60.6620125 68.4597335,60.6620125 L41.1908932,60.6620125 L41.1908932,20 C41.1908932,8.954305 50.1451982,2.02906125e-15 61.1908932,0 Z" id="empty-slot" stroke="#B4AAD7" stroke-width="3" opacity="0.325279021" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="8,20"></path>
<path d="M66.7305074,28.6910593 L74.1732965,28.6910593 C75.1364006,28.6910593 75.9171507,29.4718094 75.9171507,30.4349135 C75.9171507,31.3980175 75.1364006,32.1787676 74.1732965,32.1787676 L66.7305074,32.1787676 L66.7305074,39.6215567 C66.7305074,40.5846607 65.9497573,41.3654108 64.9866533,41.3654108 C64.0235492,41.3654108 63.2427991,40.5846607 63.2427991,39.6215567 L63.2427991,32.1787676 L55.8000101,32.1787676 C54.836906,32.1787676 54.0561559,31.3980175 54.0561559,30.4349135 C54.0561559,29.4718094 54.836906,28.6910593 55.8000101,28.6910593 L63.2427991,28.6910593 L63.2427991,21.2482703 C63.2427991,20.2851662 64.0235492,19.5044161 64.9866533,19.5044161 C65.9497573,19.5044161 66.7305074,20.2851662 66.7305074,21.2482703 L66.7305074,28.6910593 Z" id="plus" fill="#7B6ABA" opacity="0.300000012" style="mix-blend-mode: multiply;"></path>
</g>
</g>
</g>
</g>
</g>
<g id="Group-17" transform="translate(105.000000, 84.000000)">
<mask id="mask-22" fill="white">
<use xlink:href="#path-21"></use>
</mask>
<use id="base" fill="url(#linearGradient-20)" xlink:href="#path-21"></use>
<path d="M33.5118528,37 L33.5118528,37 C43.183382,37 51.0237055,44.8403235 51.0237055,54.5118528 L51.0237055,76.0999903 L16,76.0999903 L16,54.5118528 C16,44.8403235 23.8403235,37 33.5118528,37 Z" id="Rectangle-2" fill="#FFFFFF" opacity="0.699999988" mask="url(#mask-22)"></path>
<ellipse id="Oval" fill="#FFFFFF" mask="url(#mask-22)" cx="32.9213671" cy="28.9199968" rx="12.9213671" ry="12.9199968"></ellipse>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

View File

@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 164 140" style="enable-background:new 0 0 164 140;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#5763AB;stroke-width:2;}
.st1{fill:#FFFFFF;stroke:#5763AB;stroke-width:2;}
.st2{fill:#92DEE2;}
.st3{fill:#FFFFFF;stroke:#5763AB;}
.st4{fill:#5763AB;}
</style>
<title>research</title>
<desc>Created with Sketch.</desc>
<g id="assets">
<g id="research">
<g id="Group-33" transform="translate(22.000000, 6.000000)">
<path id="Oval-5" class="st0" d="M55.3,114.7c22.9,6.1,46.6-7.9,52.9-31.4c6.3-23.5-7.2-47.5-30.1-53.6c-2-0.5-4-0.9-6-1.1"/>
<polygon id="Path-6" class="st1" points="0,118 65.4,118 76,107 16.8,107 "/>
<polygon id="Path-6_1_" class="st2" points="1,111 65.6,111 76,100 17.5,100 "/>
<polyline id="Path-7" class="st0" points="111,81 111,120.5 39,120.5 39,129 111,129 111,121.9 "/>
<ellipse id="Oval-6" class="st3" cx="110" cy="81.5" rx="6" ry="6.5"/>
<g id="Group-30" transform="translate(63.529704, 43.741922) rotate(-14.000000) translate(-63.529704, -43.741922) translate(36.029704, 11.241922)">
<polygon id="Path-4" class="st4" points="10.5,43.3 26.6,55.2 53.2,14.3 36.1,3.4 "/>
<polygon id="Path-5" class="st0" points="6.4,41.1 30.1,57.4 26,63.7 1.9,47 "/>
<path id="Path-8" class="st1" d="M4.7,49C2,53.4,3.1,57.5,7.9,61.3c4.8,3.7,9.6,3.7,14.4,0L4.7,49z"/>
</g>
<path id="Path-9" class="st0" d="M70,15.1C72.3,1.4,74.3-3,76,2s3.7,7.3,6,6.8L78.6,18L70,15.1z"/>
<polygon id="Path-3" class="st4" points="23.4,97 12,106 23.4,106 33,97 "/>
<polygon id="Path-3_1_" class="st4" points="36.3,97 27,106 38.4,106 48,97 "/>
<polygon id="Path-3_2_" class="st4" points="52.6,97 43.1,106 61.7,106 70,97 "/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 88 KiB

View File

@@ -0,0 +1,195 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="582px" height="457px" viewBox="0 0 582 457" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>Group 20</title>
<desc>Created with Sketch.</desc>
<defs>
<linearGradient x1="79.0720975%" y1="19.4258634%" x2="29.5739014%" y2="50%" id="linearGradient-1">
<stop stop-color="#F1F5FB" offset="0%"></stop>
<stop stop-color="#FFFFFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="31.669258%" y1="-9.21335019%" x2="100%" y2="50%" id="linearGradient-2">
<stop stop-color="#BBFBFF" offset="0%"></stop>
<stop stop-color="#4FD5DD" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-3">
<stop stop-color="#A095CD" offset="0%"></stop>
<stop stop-color="#9689C8" offset="100%"></stop>
</linearGradient>
<linearGradient x1="86.9506705%" y1="14.3731808%" x2="7.37114993%" y2="92.3098718%" id="linearGradient-4">
<stop stop-color="#7E6DBB" stop-opacity="0" offset="0%"></stop>
<stop stop-color="#8775C9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="67.5182045%" y1="21.1626489%" x2="15.1910957%" y2="100%" id="linearGradient-5">
<stop stop-color="#6D56BC" offset="0%"></stop>
<stop stop-color="#7765B7" offset="24.1351716%"></stop>
<stop stop-color="#8D7EC3" stop-opacity="0.114102129" offset="100%"></stop>
</linearGradient>
<linearGradient x1="125.896791%" y1="5.17322266%" x2="105.071564%" y2="32.5985354%" id="linearGradient-6">
<stop stop-color="#5640A6" offset="0%"></stop>
<stop stop-color="#311793" offset="100%"></stop>
</linearGradient>
<linearGradient x1="104.045238%" y1="16.8405933%" x2="6.07416571%" y2="100%" id="linearGradient-7">
<stop stop-color="#5640A6" offset="0%"></stop>
<stop stop-color="#311793" offset="100%"></stop>
</linearGradient>
<linearGradient x1="15.7963008%" y1="121.63627%" x2="148.737665%" y2="121.636271%" id="linearGradient-8">
<stop stop-color="#311793" offset="0%"></stop>
<stop stop-color="#270D4F" offset="100%"></stop>
</linearGradient>
<linearGradient x1="45.1973837%" y1="39.5178631%" x2="22.2166594%" y2="78.045161%" id="linearGradient-9">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#EDE9F5" offset="100%"></stop>
</linearGradient>
<rect id="path-10" x="8.07209585" y="53.7241469" width="176.736414" height="266.82993" rx="12"></rect>
<linearGradient x1="83.2457%" y1="277.403938%" x2="0%" y2="-5.55111512e-15%" id="linearGradient-12">
<stop stop-color="#B4AAD7" offset="0%"></stop>
<stop stop-color="#7B6ABA" offset="100%"></stop>
</linearGradient>
<linearGradient x1="100%" y1="0%" x2="39.627475%" y2="100%" id="linearGradient-13">
<stop stop-color="#EDE9F5" offset="0%"></stop>
<stop stop-color="#B4AAD7" offset="100%"></stop>
</linearGradient>
<path d="M20,0 L37.1749734,0 L37.1749734,47.5925545 L0,47.5925545 L0,20 C-1.3527075e-15,8.954305 8.954305,-1.52365243e-15 20,-3.55271368e-15 Z" id="path-14"></path>
<path d="M0,0 L37.1749734,0 L37.1749734,47.5925545 L24,47.5925545 C10.745166,47.5925545 1.623249e-15,36.8473885 0,23.5925545 L0,0 Z" id="path-16"></path>
<path d="M0,0 L37.1749734,0 L37.1749734,23.5925545 C37.1749734,36.8473885 26.4298074,47.5925545 13.1749734,47.5925545 L0,47.5925545 L0,0 Z" id="path-18"></path>
<linearGradient x1="29.8557853%" y1="95.4716805%" x2="82.9833415%" y2="10.6939236%" id="linearGradient-20">
<stop stop-color="#F94A8A" offset="0%"></stop>
<stop stop-color="#FE9DC1" offset="100%"></stop>
</linearGradient>
<ellipse id="path-21" cx="33.3235256" cy="33.3199918" rx="33.3235256" ry="33.3199918"></ellipse>
<linearGradient x1="-16.4281717%" y1="2.47967776%" x2="50%" y2="20.2647845%" id="linearGradient-23">
<stop stop-color="#B4AAD7" offset="0%"></stop>
<stop stop-color="#7B6ABA" offset="100%"></stop>
</linearGradient>
<linearGradient x1="36.7557523%" y1="39.1074392%" x2="64.6360699%" y2="75.3829022%" id="linearGradient-24">
<stop stop-color="#B4AAD7" offset="0%"></stop>
<stop stop-color="#5640A6" offset="100%"></stop>
</linearGradient>
<path d="M58.3330234,161.644 C50.5810407,140.685792 34.8515408,91.4541887 11.1445237,13.9491899 L11.1445538,13.9491807 C9.42055012,8.31292105 12.5920602,2.34624873 18.2283198,0.622245044 C18.2773339,0.607252743 18.3264554,0.592613742 18.3756805,0.578329181 L18.3756805,0.578329181 C24.4521258,-1.18498827 30.9389669,1.50049314 33.9909332,7.04287339 L71.0357971,74.3164614 L71.0357971,74.3164614 C71.6048641,63.4043487 80.9121993,55.0196535 91.824312,55.5887205 C97.4320451,55.8811639 102.651358,58.5427182 106.181196,62.9099187 L115.400659,74.3164614 L115.400659,74.3164614 C121.65128,65.6735599 133.724866,63.7342338 142.367767,69.9848552 C143.458983,70.7740322 144.464665,71.6751783 145.368398,72.6735866 C148.600075,76.2438753 150.598103,79.4454426 151.362454,82.2783161 C151.362454,82.2783161 151.362454,82.2783161 151.362454,82.2783161 L151.362454,82.2783161 C151.362454,75.6110842 156.767313,70.2062249 163.434545,70.2062249 C166.316861,70.2062249 169.10406,71.2374952 171.29222,73.1135829 C177.946239,78.8185785 182.433851,84.6344717 184.755074,90.5612401 C192.551773,110.468513 198.159576,134.162766 201.578483,161.644 L201.578483,253.483292 L201.578483,318.780152 L116.373235,319.187465 L100.746968,272.021988 L79.1925952,245.449756 C55.4649793,224.187033 38.6575061,205.72912 28.7701756,190.076018 C22.4200351,178.061024 13.1654533,155.22003 1.00643031,121.553035 L1.00641542,121.553041 C-0.9584591,116.11252 0.910963116,110.028286 5.59171937,106.62968 L5.59171937,106.62968 C9.943039,103.470272 16.031687,104.436507 19.1910952,108.787827 C19.1913766,108.788214 19.1916579,108.788602 19.1919392,108.788989 C40.0435598,137.515946 53.0905856,155.134285 58.3330234,161.644 Z" id="path-25"></path>
<linearGradient x1="50%" y1="4.03946893%" x2="50%" y2="100%" id="linearGradient-27">
<stop stop-color="#7B6ABA" stop-opacity="0" offset="0%"></stop>
<stop stop-color="#5640A6" offset="100%"></stop>
</linearGradient>
<linearGradient x1="-1.11022302e-14%" y1="50%" x2="100%" y2="50%" id="linearGradient-28">
<stop stop-color="#3BC2CA" offset="0%"></stop>
<stop stop-color="#5FE6ED" offset="100%"></stop>
</linearGradient>
<linearGradient x1="36.2758826%" y1="42.5176683%" x2="61.6954792%" y2="95.2165252%" id="linearGradient-29">
<stop stop-color="#70B8F9" stop-opacity="0" offset="0%"></stop>
<stop stop-color="#7B6ABA" offset="100%"></stop>
</linearGradient>
</defs>
<g id="verson-2/desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Desktop/Services" transform="translate(-1022.000000, -1932.000000)">
<g id="Group-20" transform="translate(963.000000, 1932.000000)">
<g id="Artwork">
<path d="M510.834898,53.3249558 C510.352175,39.3539959 474.287389,42.5032326 460.375407,43.851025 C446.463227,45.1988174 445.200098,26.0597228 457.203478,23.2148162 C469.206661,20.3699096 490.973601,21.838065 502.251614,19.2119812 C513.529627,16.5858973 499.263345,2.5019457 514.630205,0.804331704 C529.997065,-0.893176988 561.771787,0.678492816 571.244371,0.333620547 C586.123378,-0.208065849 593.757194,17.8715601 567.689933,18.6919875 C560.501358,18.9181816 559.059303,34.9798572 583.323898,30.5679142 C598.550893,27.799248 628.426876,27.7353282 634.641915,34.8039987 C638.207795,38.8596965 636.972086,49.7557648 630.841677,55.7725485 C626.287663,60.2421984 611.804974,61.1136985 606.131643,62.1468411 C592.821536,64.5709509 595.452743,77.578901 599.991172,80.2573212 C610.731028,86.5952837 640.20655,74.6337445 640.996623,92.0377367 C641.345793,99.7283356 614.52673,100.969981 603.530026,100.876049 C576.559458,100.645749 558.838754,103.071122 557.595154,93.7849491 C556.34682,84.4625515 574.354751,90.7548119 573.466832,79.2941009 C573.002849,73.3052228 574.246449,60.5793835 562.693045,61.24733 C578.510867,60.3327603 511.486881,72.1941549 510.834898,53.3249558 Z" id="cloud" fill="url(#linearGradient-1)" opacity="0.313462409"></path>
<g id="plant" transform="translate(235.434790, 287.862873) scale(-1, 1) rotate(32.000000) translate(-235.434790, -287.862873) translate(188.934790, 170.862873)">
<path d="M71.7140469,200.804186 C66.4643951,205.411397 46.5,196.196976 38.5845648,181.894507 C30.6691297,167.592038 45.3522753,162.501102 25.3805899,139.626176 C5.40890455,116.751251 -7.40608077,107.990637 4.71396616,70.2853607 C16.8340131,32.5800846 0.0902799109,11.6252494 22.2139334,1.78814172 C44.3375869,-8.04896593 57.078524,24.5992883 54.5408257,53.3167277 C52.0031275,82.034167 57.1935663,87.9857766 78.8333654,85.0099718 C100.473164,82.034167 82.2288056,124.193919 82.2288056,133.396591 C82.2288056,142.599263 95.3503975,159.692098 92.6282932,172.552006 C89.9061888,185.411913 76.9636987,196.196976 71.7140469,200.804186 Z" id="leaves" fill="url(#linearGradient-2)"></path>
<path d="M59.6960962,158.940161 C59.6960962,151.955586 61.5594807,130.193438 71.6960962,116.940161" id="branch" stroke="url(#linearGradient-3)" stroke-width="3" stroke-linecap="round"></path>
<path d="M15.5441443,117.410242 C15.5441443,110.464949 35.6848782,105.588981 45.5441443,92.4102422" id="branch" stroke="url(#linearGradient-3)" stroke-width="3" stroke-linecap="round" transform="translate(30.544144, 104.910242) scale(-1, 1) translate(-30.544144, -104.910242) "></path>
<path d="M84,234 C84,230.992542 78.780649,217.43541 73.7932274,201.72801 C58.1752433,152.540684 33,91.9717747 33,50" id="branch" stroke="url(#linearGradient-3)" stroke-width="3" stroke-linecap="round"></path>
</g>
<g id="plant" opacity="0.47" transform="translate(148.402277, 433.343325) scale(-1, 1) rotate(32.000000) translate(-148.402277, -433.343325) translate(32.902277, 339.843325)" fill="url(#linearGradient-4)">
<path d="M15.4647943,162.835196 C18.450326,161.034318 27.1551184,154.141564 39.7615119,144.73591 C40.3329523,144.309557 40.9055609,143.881776 41.4793107,143.452622 C40.7339936,143.718723 40.0495731,143.962507 39.4335782,144.18272 C31.7164452,146.941537 28.9089261,141.423904 38.3673247,132.859529 C47.8257233,124.295153 61.6718693,121.24668 72.4208943,107.549082 C83.1699193,93.8514847 84.1929968,88.605594 128.880906,66.0275231 C173.568815,43.4494523 184.344659,30.9016127 207.35778,25.0111131 C230.3709,19.1206135 205.59,38.6705194 175.562349,55.8666375 C145.534697,73.0627556 142.734535,76.6266033 158.646643,74.8446794 C174.55875,73.0627556 121.781579,98.3081846 112.646001,103.818782 C103.510423,109.329379 94.3994702,119.564637 80.0033139,127.265201 C67.536477,133.933765 53.4004355,139.39229 44.4549861,142.601823 C37.008633,148.332978 31.5770241,152.43312 28.1601595,154.902251 C26.0613137,156.418942 21.2054919,160.065615 17.3055559,162.391057 C16.536488,162.849635 15.9229008,162.997681 15.4647943,162.835196 Z" id="Combined-Shape" transform="translate(115.925023, 93.419664) rotate(15.000000) translate(-115.925023, -93.419664) "></path>
</g>
<path d="M324.063324,447.293337 C347.259284,447.293337 373.33422,446.304411 382.303324,445.084509 L494.544238,429.81844 C503.513342,428.598538 491.980197,427.609612 468.784238,427.609612 L360.328479,427.609612 C358.435129,427.609612 356.522599,427.6162 354.601755,427.628966 L342.720913,427.628966 C319.524954,427.628966 293.450017,428.617892 284.480913,429.837794 L172.24,445.103863 C163.270896,446.323765 174.804041,447.312691 198,447.312691 L306.455759,447.312691 C308.349108,447.312691 310.261639,447.306102 312.182483,447.293337 L324.063324,447.293337 Z" id="Combined-Shape" fill-opacity="0.47" fill="url(#linearGradient-5)"></path>
<g id="plant" opacity="0.400000006" transform="translate(510.000000, 104.000000)">
<path d="M16.1096936,104.977237 C16.1096936,91.305362 27.4267848,48.9952989 42.7026843,25.8442352" id="stem" stroke="#EDE9F5" stroke-width="2" stroke-linecap="round"></path>
<path d="M29.4693412,33.948402 C32.0868104,30.2349305 33.395545,26.087795 33.395545,21.5069957 C33.395545,14.6357968 31.6377237,9.0655895 29.4693412,9.0655895 C27.3009587,9.0655895 25.5431374,14.6357968 25.5431374,21.5069957 C25.5431374,26.087795 26.851872,30.2349305 29.4693412,33.948402 Z" id="leaf" fill="#EDE9F5" transform="translate(29.469341, 21.506996) rotate(-30.000000) translate(-29.469341, -21.506996) "></path>
<path d="M51.8543775,46.642721 C54.4718467,42.9292495 55.7805813,38.7821141 55.7805813,34.2013148 C55.7805813,27.3301159 54.0227599,21.7599085 51.8543775,21.7599085 C49.685995,21.7599085 47.9281736,27.3301159 47.9281736,34.2013148 C47.9281736,38.7821141 49.2369082,42.9292495 51.8543775,46.642721 Z" id="leaf" fill="#EDE9F5" transform="translate(51.854377, 34.201315) rotate(88.000000) translate(-51.854377, -34.201315) "></path>
<path d="M44.5435152,64.689596 C47.1609844,60.9761245 48.469719,56.8289891 48.469719,52.2481898 C48.469719,45.3769909 46.7118977,39.8067835 44.5435152,39.8067835 C42.3751327,39.8067835 40.6173114,45.3769909 40.6173114,52.2481898 C40.6173114,56.8289891 41.926046,60.9761245 44.5435152,64.689596 Z" id="leaf" fill="#EDE9F5" transform="translate(44.543515, 52.248190) rotate(91.000000) translate(-44.543515, -52.248190) "></path>
<path d="M38.5859166,82.1903507 C41.2033858,78.4768792 42.5121204,74.3297438 42.5121204,69.7489445 C42.5121204,62.8777455 40.7542991,57.3075382 38.5859166,57.3075382 C36.4175341,57.3075382 34.6597128,62.8777455 34.6597128,69.7489445 C34.6597128,74.3297438 35.9684474,78.4768792 38.5859166,82.1903507 Z" id="leaf" fill="#EDE9F5" transform="translate(38.585917, 69.748944) rotate(91.000000) translate(-38.585917, -69.748944) "></path>
<path d="M50.7069777,25.2450997 C53.3244469,21.5316282 54.6331815,17.3844928 54.6331815,12.8036935 C54.6331815,5.93249455 52.8753602,0.362287234 50.7069777,0.362287234 C48.5385952,0.362287234 46.7807739,5.93249455 46.7807739,12.8036935 C46.7807739,17.3844928 48.0895085,21.5316282 50.7069777,25.2450997 Z" id="leaf" fill="#EDE9F5" transform="translate(50.706978, 12.803693) rotate(33.000000) translate(-50.706978, -12.803693) "></path>
<path d="M19.7285083,53.0400323 C22.3459775,49.3265608 23.6547121,45.1794254 23.6547121,40.5986261 C23.6547121,33.7274271 21.8968908,28.1572198 19.7285083,28.1572198 C17.5601258,28.1572198 15.8023045,33.7274271 15.8023045,40.5986261 C15.8023045,45.1794254 17.1110391,49.3265608 19.7285083,53.0400323 Z" id="leaf" fill="#EDE9F5" transform="translate(19.728508, 40.598626) rotate(-41.000000) translate(-19.728508, -40.598626) "></path>
<path d="M12.4176461,72.1806573 C15.0351153,68.4671858 16.3438499,64.3200504 16.3438499,59.7392511 C16.3438499,52.8680521 14.5860286,47.2978448 12.4176461,47.2978448 C10.2492636,47.2978448 8.49144227,52.8680521 8.49144227,59.7392511 C8.49144227,64.3200504 9.80017687,68.4671858 12.4176461,72.1806573 Z" id="leaf" fill="#EDE9F5" transform="translate(12.417646, 59.739251) rotate(-47.000000) translate(-12.417646, -59.739251) "></path>
</g>
<g id="phone" transform="translate(290.000000, 60.000000)">
<rect id="back" fill="url(#linearGradient-6)" x="17.465269" y="0.368007851" width="192.455759" height="374.278224" rx="42"></rect>
<path d="M42,0 L150.455759,0 C173.651719,-4.26102863e-15 192.455759,18.8040405 192.455759,42 L192.455759,332.278224 C192.455759,355.474183 173.651719,374.278224 150.455759,374.278224 L42,374.278224 C18.8040405,374.278224 2.84068575e-15,355.474183 0,332.278224 L0,42 C-2.84068575e-15,18.8040405 18.8040405,4.26102863e-15 42,0 Z" id="front" fill="url(#linearGradient-7)"></path>
<rect id="front-speaker" fill="url(#linearGradient-8)" x="45.8834922" y="24.1758661" width="101.113622" height="6.71551837" rx="3.35775918"></rect>
<mask id="mask-11" fill="white">
<use xlink:href="#path-10"></use>
</mask>
<use id="screen" fill="url(#linearGradient-9)" xlink:href="#path-10"></use>
<g id="screen-content" mask="url(#mask-11)">
<g transform="translate(22.802102, 68.081452)">
<rect id="Rectangle-3" fill="url(#linearGradient-12)" opacity="0.400000006" x="0" y="128.43474" width="140.490368" height="8.46418057" rx="4.23209028"></rect>
<rect id="Rectangle-3-Copy" fill="url(#linearGradient-12)" opacity="0.400000006" x="0" y="142.05103" width="101.50613" height="8.46418057" rx="4.23209028"></rect>
<rect id="Rectangle-3-Copy-2" fill="url(#linearGradient-12)" opacity="0.400000006" x="0" y="169.651619" width="136.077058" height="8.46418057" rx="4.23209028"></rect>
<g id="my-group" stroke-width="1" fill="none" transform="translate(0.000000, 0.259820)">
<g id="user" transform="translate(0.000000, 13.805474)">
<mask id="mask-15" fill="white">
<use xlink:href="#path-14"></use>
</mask>
<use id="Mask" fill="url(#linearGradient-13)" opacity="0.600000024" xlink:href="#path-14"></use>
<g id="avatar" mask="url(#mask-15)" fill="#FFFFFF">
<g transform="translate(6.505620, 12.361702)">
<path d="M12.5465535,14.602261 L12.5465535,14.602261 C19.4758237,14.602261 25.0931071,20.2195444 25.0931071,27.1488146 L25.0931071,42.5030098 L0,42.5030098 L0,27.1488146 C-8.48590854e-16,20.2195444 5.61728335,14.602261 12.5465535,14.602261 Z" id="Rectangle-2" opacity="0.699999988"></path>
<ellipse id="Oval" cx="12.4158603" cy="9.51754514" rx="9.54060841" ry="9.51754514"></ellipse>
</g>
</g>
</g>
<g id="user" transform="translate(0.000000, 64.603744)">
<mask id="mask-17" fill="white">
<use xlink:href="#path-16"></use>
</mask>
<use id="Mask" fill="url(#linearGradient-13)" opacity="0.600000024" xlink:href="#path-16"></use>
<g id="avatar" mask="url(#mask-17)" fill="#FFFFFF">
<g transform="translate(6.505620, 12.361702)">
<path d="M12.5465535,14.602261 L12.5465535,14.602261 C19.4758237,14.602261 25.0931071,20.2195444 25.0931071,27.1488146 L25.0931071,42.5030098 L0,42.5030098 L-3.55271368e-15,27.1488146 C-4.40130453e-15,20.2195444 5.61728335,14.602261 12.5465535,14.602261 Z" id="Rectangle-2" opacity="0.699999988"></path>
<ellipse id="Oval" cx="12.4158603" cy="9.51754514" rx="9.54060841" ry="9.51754514"></ellipse>
</g>
</g>
</g>
<g id="user" transform="translate(40.129276, 64.603744)">
<mask id="mask-19" fill="white">
<use xlink:href="#path-18"></use>
</mask>
<use id="Mask" fill="url(#linearGradient-13)" opacity="0.600000024" xlink:href="#path-18"></use>
<g id="avatar" mask="url(#mask-19)" fill="#FFFFFF">
<g transform="translate(6.505620, 12.361702)">
<path d="M12.5465535,14.602261 L12.5465535,14.602261 C19.4758237,14.602261 25.0931071,20.2195444 25.0931071,27.1488146 L25.0931071,42.5030098 L0,42.5030098 L0,27.1488146 C-8.48590854e-16,20.2195444 5.61728335,14.602261 12.5465535,14.602261 Z" id="Rectangle-2" opacity="0.699999988"></path>
<ellipse id="Oval" cx="12.4158603" cy="9.51754514" rx="9.54060841" ry="9.51754514"></ellipse>
</g>
</g>
</g>
<path d="M61.1908932,0 L68.4597335,0 C79.5054285,-2.02906125e-15 88.4597335,8.954305 88.4597335,20 L88.4597335,40.6620125 C88.4597335,51.7077075 79.5054285,60.6620125 68.4597335,60.6620125 L41.1908932,60.6620125 L41.1908932,20 C41.1908932,8.954305 50.1451982,2.02906125e-15 61.1908932,0 Z" id="empty-slot" stroke="#B4AAD7" stroke-width="3" opacity="0.325279021" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="8,20"></path>
<path d="M66.7305074,28.6910593 L74.1732965,28.6910593 C75.1364006,28.6910593 75.9171507,29.4718094 75.9171507,30.4349135 C75.9171507,31.3980175 75.1364006,32.1787676 74.1732965,32.1787676 L66.7305074,32.1787676 L66.7305074,39.6215567 C66.7305074,40.5846607 65.9497573,41.3654108 64.9866533,41.3654108 C64.0235492,41.3654108 63.2427991,40.5846607 63.2427991,39.6215567 L63.2427991,32.1787676 L55.8000101,32.1787676 C54.836906,32.1787676 54.0561559,31.3980175 54.0561559,30.4349135 C54.0561559,29.4718094 54.836906,28.6910593 55.8000101,28.6910593 L63.2427991,28.6910593 L63.2427991,21.2482703 C63.2427991,20.2851662 64.0235492,19.5044161 64.9866533,19.5044161 C65.9497573,19.5044161 66.7305074,20.2851662 66.7305074,21.2482703 L66.7305074,28.6910593 Z" id="plus" fill="#7B6ABA" opacity="0.300000012" style="mix-blend-mode: multiply;"></path>
</g>
</g>
</g>
</g>
</g>
<g id="Group-17" transform="translate(395.000000, 84.000000)">
<mask id="mask-22" fill="white">
<use xlink:href="#path-21"></use>
</mask>
<use id="base" fill="url(#linearGradient-20)" xlink:href="#path-21"></use>
<path d="M33.5118528,37 L33.5118528,37 C43.183382,37 51.0237055,44.8403235 51.0237055,54.5118528 L51.0237055,76.0999903 L16,76.0999903 L16,54.5118528 C16,44.8403235 23.8403235,37 33.5118528,37 Z" id="Rectangle-2" fill="#FFFFFF" opacity="0.699999988" mask="url(#mask-22)"></path>
<ellipse id="Oval" fill="#FFFFFF" mask="url(#mask-22)" cx="32.9213671" cy="28.9199968" rx="12.9213671" ry="12.9199968"></ellipse>
</g>
<g id="hand" transform="translate(406.000000, 136.000000)">
<g transform="translate(3.478185, 0.219848)">
<mask id="mask-26" fill="white">
<use xlink:href="#path-25"></use>
</mask>
<g id="Mask">
<use fill="url(#linearGradient-23)" xlink:href="#path-25"></use>
<use fill-opacity="0.689999998" fill="url(#linearGradient-24)" xlink:href="#path-25"></use>
</g>
<path d="M66.8246432,176.487695 C62.3996835,176.487695 54.8672414,175.842361 47.4482234,163.907684 C40.0292053,151.973006 24.6941062,118.205222 24.6941062,115.030492 C24.6941062,112.914005 33.0498932,124.083053 49.7614674,148.537634 C59.2220094,161.738302 64.9097347,171.054989 66.8246432,176.487695 Z" id="Path-10" fill="url(#linearGradient-27)" style="mix-blend-mode: multiply;" opacity="0.616908482" mask="url(#mask-26)"></path>
<path d="M87.6117814,107.563216 C87.6117814,100.438215 80.4018569,62.5471363 76.1769156,58.8609247 C73.3602881,56.4034503 71.1831897,59.8789616 69.6456204,69.2874584 C80.454903,92.9235015 86.4436234,105.682087 87.6117814,107.563216 Z" id="Path-5" fill="url(#linearGradient-27)" style="mix-blend-mode: multiply;" mask="url(#mask-26)"></path>
<path d="M125.144189,94.6375615 C125.144189,91.9121513 124.116553,69.0567222 119.818724,65.0577792 C116.953505,62.3918172 115.011768,64.2541532 113.993511,70.6447872 C118.395623,78.9136535 121.184543,84.4584124 122.360274,87.2790639 C124.668616,92.8169221 125.144189,95.6675673 125.144189,94.6375615 Z" id="Path-6" fill="url(#linearGradient-27)" style="mix-blend-mode: multiply;" mask="url(#mask-26)"></path>
<path d="M155.009955,89.440844 C155.009955,87.8095061 155.822222,80.1478428 153.642192,75.3985446 C152.188839,72.2323458 151.237163,73.4802121 150.787164,79.1421434 C153.602358,87.0955024 155.009955,90.5284026 155.009955,89.440844 Z" id="Path-7" fill="url(#linearGradient-27)" style="mix-blend-mode: multiply;" mask="url(#mask-26)"></path>
<path d="M67.6494216,176.325963 C64.5902188,165.329123 52.5905824,118.27663 36.7466089,94.6584641 C26.1839598,78.9130202 32.0818569,99.2793788 54.4403,155.75754 C61.254232,165.941829 65.6572725,172.79797 67.6494216,176.325963 Z" id="Path-8" fill="url(#linearGradient-27)" style="mix-blend-mode: multiply;" opacity="0.843470982" mask="url(#mask-26)"></path>
<path d="M15.9537996,21.261013 C13.376375,13.4966111 11.5638269,10.9435671 11.5638269,7.93435139 C11.5638269,4.92513572 11.8358632,0.794166819 16.5119507,-1.45492614 C21.1880382,-3.7040191 26.5364993,-0.849761947 28.3549778,2.27503589 C30.1734563,5.39983373 33.8795992,11.1731081 33.8795992,14.3167479 C33.8795992,20.2168775 19.909945,26.6510835 15.9537996,21.261013 Z" id="Path-2" fill="url(#linearGradient-28)" mask="url(#mask-26)"></path>
<path d="M17.3403655,28.0333575 C19.2646329,35.2060046 24.8184913,54.0657099 26.9429641,56.936956 C29.067437,59.8082021 34.6388655,62.6042931 42.8880941,59.3072714 C51.1373227,56.0102497 54.0366171,50.0605862 52.6326287,47.2317861 C51.6966365,45.3459193 47.2147554,35.9272532 39.1869854,18.9757877" id="Path-9" fill="url(#linearGradient-29)" style="mix-blend-mode: multiply;" opacity="0.385993304" mask="url(#mask-26)"></path>
</g>
<path d="M10.0999345,132.468833 C14.4538714,132.468833 20.0092852,127.845953 20.0092852,125.304193 C20.0092852,122.762433 13.1665438,111.565839 11.2381616,109.269581 C9.3097794,106.973324 0.0204262442,110.845388 1.96601903,116.334279 C3.91161181,121.823169 6.44991321,126.057346 10.0999345,132.468833 Z" id="thumb-nail" fill="url(#linearGradient-28)" transform="translate(10.854509, 120.532215) rotate(8.000000) translate(-10.854509, -120.532215) "></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 27 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 152 KiB

View File

@@ -0,0 +1,279 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="904px" height="766px" viewBox="0 0 904 766" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>web-development-company</title>
<desc>Created with Sketch.</desc>
<defs>
<linearGradient x1="50%" y1="-104.289511%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#B3CDEF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="32.1187137%" x2="67.2859088%" y2="115.977968%" id="linearGradient-2">
<stop stop-color="#9AE1E5" offset="0%"></stop>
<stop stop-color="#3BC2CA" offset="100%"></stop>
</linearGradient>
<linearGradient x1="60.7312459%" y1="0%" x2="50%" y2="100%" id="linearGradient-3">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#E5EEFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="157.419759%" y1="-39.6921362%" x2="118.835577%" y2="115.937591%" id="linearGradient-4">
<stop stop-color="#E5EDFF" offset="0%"></stop>
<stop stop-color="#5763AB" offset="100%"></stop>
</linearGradient>
<linearGradient x1="149.379226%" y1="-86.5655478%" x2="157.419759%" y2="219.657969%" id="linearGradient-5">
<stop stop-color="#E5EDFF" offset="0%"></stop>
<stop stop-color="#6B9AD9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="47.6375401%" y1="86.4527757%" x2="47.6375401%" y2="6.77016697%" id="linearGradient-6">
<stop stop-color="#FFFFFF" stop-opacity="0.3" offset="0%"></stop>
<stop stop-color="#5763AB" stop-opacity="0.3" offset="100%"></stop>
</linearGradient>
<linearGradient x1="157.419759%" y1="-39.6921362%" x2="128.337769%" y2="255.279145%" id="linearGradient-7">
<stop stop-color="#E5EDFF" offset="0%"></stop>
<stop stop-color="#5763AB" offset="100%"></stop>
</linearGradient>
<linearGradient x1="157.419759%" y1="-39.6921362%" x2="128.337769%" y2="255.279145%" id="linearGradient-8">
<stop stop-color="#E5EDFF" offset="0%"></stop>
<stop stop-color="#6B9AD9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="45.8146591%" y1="-60.1542842%" x2="45.8146591%" y2="82.7652545%" id="linearGradient-9">
<stop stop-color="#F59BA9" offset="0%"></stop>
<stop stop-color="#DD4156" offset="100%"></stop>
</linearGradient>
<linearGradient x1="-8.77133659%" y1="109.673401%" x2="17.3111424%" y2="15.4296073%" id="linearGradient-10">
<stop stop-color="#FAD0BA" offset="0%"></stop>
<stop stop-color="#F2A384" offset="100%"></stop>
</linearGradient>
<linearGradient x1="100%" y1="50%" x2="0%" y2="50%" id="linearGradient-11">
<stop stop-color="#2865C6" offset="0%"></stop>
<stop stop-color="#10378A" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="27.7727484%" x2="55.2277926%" y2="103.623291%" id="linearGradient-12">
<stop stop-color="#1542AB" offset="0%"></stop>
<stop stop-color="#2B68EE" offset="100%"></stop>
</linearGradient>
<linearGradient x1="60.7312459%" y1="0%" x2="52.0812714%" y2="50%" id="linearGradient-13">
<stop stop-color="#3485F7" offset="0%"></stop>
<stop stop-color="#1A57CF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="85.0973284%" y1="109.304399%" x2="4.85382204%" y2="-47.1761978%" id="linearGradient-14">
<stop stop-color="#032258" offset="0%"></stop>
<stop stop-color="#133E94" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="32.1187137%" x2="67.2859088%" y2="115.977968%" id="linearGradient-15">
<stop stop-color="#84F0A8" offset="0%"></stop>
<stop stop-color="#48B676" offset="100%"></stop>
</linearGradient>
<linearGradient x1="45.8146591%" y1="15.1595137%" x2="75.9412525%" y2="70.6858623%" id="linearGradient-16">
<stop stop-color="#F59BA9" offset="0%"></stop>
<stop stop-color="#F25267" offset="100%"></stop>
</linearGradient>
<path d="M12.0026016,28.3896514 C-0.551824181,79.4462717 -2.71044826,119.884895 5.52672939,149.705522 C17.8824959,194.436462 -2.26204753,246.418854 2.46434977,271.105421 C41.4862033,281.041051 58.7149596,293.787701 54.1506186,309.345372 C61.5800039,299.166223 64.9092288,276.812623 64.1382933,242.284571 C62.98189,190.492492 61.3847132,187.612141 59.5958145,164.035541 C58.4032153,148.317808 58.4032153,128.755427 59.5958145,105.348398 L42.863147,15.754862 C36.4129873,11.7935061 31.5248755,8.94245583 28.1988117,7.20171119 C24.8727479,5.46096656 19.9133081,3.15815531 13.3204925,0.293277461 L12.0026016,28.3896514 Z" id="path-17"></path>
<path d="M135.707246,32.5459262 C131.014051,49.9351251 127.598251,62.1733645 125.459847,69.2606444 C122.25008,79.89873 122.362993,88.7228641 123.081212,95.6318436 C125.235143,116.351801 135.364657,125.77286 130.173081,175.336341 C128.143397,194.713535 114.139778,219.82625 111.940724,241.432226 C108.514982,275.090565 114.050861,286.214743 111.940724,291.781597 C109.052728,299.400557 78.229753,292.398977 62.8049178,309.684724 C57.8373545,299.400557 76.7098737,263.139011 76.7098737,257.600212 C76.7098737,252.061413 77.3525164,210.464968 93.2026223,179.95207 C103.76936,159.610138 107.806841,129.854188 105.315066,90.6842215 C78.7587613,85.2077662 59.3352131,78.0665739 47.0444213,69.2606444 C34.7536295,60.4547149 19.1542896,41.456359 0.246401507,12.2655766 C3.06739752,4.5978336 6.30242466,0.76396212 9.95148291,0.76396212 C15.4250703,0.76396212 52.5104045,36.8621498 81.1829518,41.2411727 C93.2026223,43.0768802 102.854633,35.4586291 111.940724,33.2645518 C126.395748,29.7740035 143.662293,27.8451755 145.414392,27.202338 C145.118275,28.13264 144.787438,29.2961231 144.36701,30.0579979 C142.445687,29.5500814 139.559099,30.3793908 135.707246,32.5459262 Z" id="path-19"></path>
<linearGradient x1="50%" y1="-142.327103%" x2="50%" y2="170.164832%" id="linearGradient-21">
<stop stop-color="#95B7E5" offset="0%"></stop>
<stop stop-color="#476DB1" offset="100%"></stop>
</linearGradient>
<linearGradient x1="83.2804773%" y1="11.2557844%" x2="59.8890922%" y2="97.3099621%" id="linearGradient-22">
<stop stop-color="#3A4482" offset="0%"></stop>
<stop stop-color="#5763AB" offset="100%"></stop>
</linearGradient>
<linearGradient x1="83.2804773%" y1="11.2557844%" x2="-16.1251386%" y2="448.775666%" id="linearGradient-23">
<stop stop-color="#476DB1" offset="0%"></stop>
<stop stop-color="#283F6F" offset="100%"></stop>
</linearGradient>
<linearGradient x1="83.2804773%" y1="11.2557844%" x2="59.8890922%" y2="97.3099621%" id="linearGradient-24">
<stop stop-color="#476DB1" offset="0%"></stop>
<stop stop-color="#283F6F" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="19.6859798%" x2="-33.8124944%" y2="294.476483%" id="linearGradient-25">
<stop stop-color="#F7FAFF" offset="0%"></stop>
<stop stop-color="#6B9AD9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="157.419759%" y1="-39.6921362%" x2="118.835577%" y2="115.937591%" id="linearGradient-26">
<stop stop-color="#E5EDFF" offset="0%"></stop>
<stop stop-color="#6B9AD9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="-10.8772052%" x2="50%" y2="100%" id="linearGradient-27">
<stop stop-color="#FFE579" offset="0%"></stop>
<stop stop-color="#FEB755" offset="100%"></stop>
</linearGradient>
<path d="M76.0249734,21.3351752 C87.014712,21.3351752 94.8605927,18.0606318 99.5626155,11.511545 C132.159043,14.7897003 152.325896,24.6477555 160.063175,41.0857106 C166.863587,55.5332793 168.338834,59.7429826 180.917997,82.2860581 C186.844035,92.9060901 175.934533,104.832862 148.189491,118.066373 C164.356408,150.690053 176.633535,168.882139 185.020872,172.642633 C187.866293,175.346098 187.866293,183.951685 186.831681,187.479559 C184.893217,194.089441 156.724189,233.937493 142.524899,228.755134 C133.058706,225.300229 112.535834,217.183777 80.9562833,204.405781 L9.0727124,137.379507 L0.0794033896,64.713856 C3.93448976,51.6053145 9.81713813,37.1457543 17.7273485,21.3351752 C28.0874955,0.627770846 41.9908663,-4.41484175 59.4374607,6.20733741 C59.5060638,16.2925626 65.0352347,21.3351752 76.0249734,21.3351752 Z" id="path-28"></path>
</defs>
<g id="Illustration" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="StartUp" transform="translate(-212.000000, -130.000000)">
<g id="web-development-company" transform="translate(181.000000, 130.000000)">
<g id="Man">
<g id="Background" transform="translate(90.000000, 84.000000)"></g>
<g id="Shadow" transform="translate(48.000000, 667.000000)" fill="#E2EBFC" fill-opacity="0.35" opacity="0.806164985">
<ellipse cx="355" cy="10.9580645" rx="219" ry="10.9580645"></ellipse>
<ellipse cx="730" cy="77.4870968" rx="154" ry="20.7645161"></ellipse>
<ellipse cx="64" cy="16.1677419" rx="64" ry="13.1677419"></ellipse>
<ellipse cx="302" cy="74.2322581" rx="94" ry="18.2322581"></ellipse>
</g>
<g id="leaves" transform="translate(0.000000, 390.000000)" fill-rule="nonzero">
<g id="Leaves" transform="translate(148.174837, 125.768855) scale(-1, 1) rotate(-16.000000) translate(-148.174837, -125.768855) translate(98.174837, 9.268855)">
<path d="M81.631905,-4.64204237 C95.8874928,-3.21670746 90.9745111,29.0313802 94.8864599,34.9936983 C98.7984088,40.9128942 109.798239,42.7079653 108.261683,55.6097108 C106.725127,68.5114563 96.1150527,68.0793049 94.8500162,78.7968815 C93.5849798,89.514458 117.448166,88.114839 115.410782,105.03276 C113.373398,121.950681 94.976364,127.080214 93.7675318,137.271382 C92.5586996,147.46255 101.669742,151.461498 98.9723936,174.016822 C96.2750454,196.572145 77.7076404,201.19437 49.9775928,203.165429 C22.2475451,205.136489 5.04328613,197.526126 7.74063429,173.205747 C10.4379825,148.885367 39.8790755,149.585053 43.5141168,136.239973 C47.1491581,122.940644 28.5035463,115.703915 30.2541581,100.099151 C32.0047698,84.4943867 60.0533053,85.2120967 61.4836973,72.7476579 C62.9140892,60.2832191 40.9599039,53.4837678 42.4189978,40.5341842 C43.8780917,27.5846007 49.4519176,25.6577272 59.96862,21.2008038 C70.4853223,16.8275365 67.3763171,-6.06737727 81.631905,-4.64204237 Z" id="Leaf" fill="url(#linearGradient-1)"></path>
<path d="M52.5734142,191.551592 C51.988433,191.730045 51.4751841,191.347372 51.4270406,190.696627 C51.3788972,190.045747 51.8140901,189.374103 52.3990713,189.196709 C66.4481288,184.976571 74.0865452,176.428551 75.626077,163.283434 C75.7036244,162.621304 76.2381421,162.066597 76.8199558,162.044461 C77.4017695,162.022325 77.8105582,162.540198 77.7330108,163.201163 C76.0523305,177.526224 67.5618795,187.024894 52.5734142,191.551592 Z" id="leaves-base" fill="#98BBE9"></path>
<path d="M60.6686643,137.573748 C60.0862619,137.527291 59.7520879,136.953468 59.9222658,136.29222 C60.0924437,135.631073 60.7025306,135.133808 61.284933,135.181405 C70.7211216,135.944934 78.7658114,130.387477 85.6229263,118.354712 C85.9653453,117.756705 86.6489917,117.477157 87.1498932,117.729872 C87.6507947,117.982361 87.7792701,118.670847 87.4368511,119.2681 C80.0747591,132.175118 71.0840556,138.395295 60.6686643,137.573748 Z" id="leaves-base" fill="#98BBE9"></path>
<path d="M79.8351189,65.5515417 C79.4383036,65.4947852 79.208768,65.0926904 79.3224367,64.6535032 C79.4361055,64.2143616 79.8499346,63.904856 80.2467499,63.9621377 C85.0337729,64.6510741 89.0898895,62.1020809 92.5531405,56.1799233 C92.7842769,55.7856729 93.2488897,55.6214385 93.5908823,55.8128879 C93.9328749,56.0042322 94.0227417,56.4785008 93.7916053,56.872404 C89.9874897,63.3732338 85.2893139,66.3289707 79.8351189,65.5515417 Z" id="leaves-base" fill="#98BBE9"></path>
<path d="M79.319431,56.9452561 C79.7255072,56.9252562 80.0459059,56.5483212 80.0350616,56.1032829 C80.0242173,55.658199 79.6862364,55.3131216 79.2801602,55.3325963 C74.3814176,55.5696192 70.9610457,52.6278715 68.919461,46.3112033 C68.7832062,45.8886381 68.36252,45.6721862 67.979832,45.8279522 C67.597144,45.9838232 67.3973704,46.4531882 67.5336252,46.8761006 C69.7761494,53.8186826 73.7379459,57.2228382 79.319431,56.9452561 Z" id="leaves-base" fill="#98BBE9"></path>
<path d="M64.6491174,121.44 C65.2409144,121.382621 65.7051893,120.804267 65.6861043,120.14807 C65.6670194,119.491769 65.1718016,119.005216 64.5800046,119.061464 C55.8098145,119.901249 49.648314,114.814036 45.9490783,103.473563 C45.7473876,102.852623 45.1325949,102.55546 44.5759003,102.810279 C44.0192057,103.06532 43.7314182,103.776412 43.9331089,104.3981 C47.9297848,116.661249 54.8839293,122.394472 64.6491174,121.44 Z" id="leaves-base" fill="#98BBE9"></path>
<path d="M48.0472568,178.522367 C48.6390538,178.43725 49.1033287,177.835585 49.0842437,177.17837 C49.0651588,176.521052 48.569941,176.056159 47.978144,176.140144 C39.2079539,177.390991 33.0464534,172.576275 29.3472177,161.375841 C29.145527,160.762537 28.5307343,160.493196 27.9740397,160.7747 C27.4173451,161.056427 27.1295576,161.782962 27.3312483,162.397015 C31.3279242,174.508865 38.2820687,179.934536 48.0472568,178.522367 Z" id="leaves-base" fill="#98BBE9"></path>
<path d="M48.2566874,236.579014 C48.1539773,237.469904 47.4339541,238.255779 46.6484707,238.334315 C45.8629873,238.412851 44.2428076,237.858639 44.3455177,236.964886 C46.1058851,231.421613 47.5450638,223.83918 48.6630538,214.21012 C50.3400389,199.766824 45.5345205,176.088675 48.8693421,159.98453 C52.2041637,143.919609 70.3816326,113.515089 76.9067017,89.6658745 C82.2159256,70.3700562 78.5880622,52.6805789 78.0062212,40.9792585 C77.4243802,29.2409903 79.9944563,15.4263939 80.2506208,15.4477753 C80.5571018,15.4733566 77.9866753,29.6439577 78.793419,41.028392 C79.6001627,52.3736174 82.6751107,67.3628073 80.0260579,83.8800795 C75.0947655,114.680166 54.6381479,141.839749 52.290162,162.281934 C49.942176,182.724119 54.5197482,195.127108 53.3522019,213.036845 C52.5738377,224.961744 50.8753329,232.802915 48.2566874,236.579014 Z" id="leaves-base" fill="#8FAFDA"></path>
</g>
<g id="Leaves" transform="translate(84.361701, 134.156680) rotate(-17.000000) translate(-84.361701, -134.156680) translate(34.361701, 9.156680)">
<path d="M53.5722849,0 C67.8278727,0 66.7037156,33.7084787 71.2771877,39.5939298 C75.8506598,45.4793809 86.9800377,46.6319433 86.9800377,60.3023997 C86.9800377,73.9728561 76.3699632,73.9728561 76.3699632,85.2276536 C76.3699632,96.4824512 100,94.4081671 100,112.534398 C100,130.660628 82.2015331,135.98597 82.2015331,146.740729 C82.2015331,157.495487 91.8209107,162.018055 91.8209107,186.015867 C91.8209107,210.013679 73.6518251,213.557454 45.9217775,213.557454 C18.1917298,213.557454 0,204.772107 0,180.774294 C0,156.776482 29.6066205,158.24915 31.7299664,144.799873 C33.8533124,131.350596 14.3844279,124.026089 14.3844279,108.451218 C14.3844279,92.8763458 42.4329634,92.8763458 42.4329634,80.1504109 C42.4329634,67.424476 19.8297419,61.6501193 19.8297419,48.668828 C19.8297419,35.6875367 25.1426035,33.3657852 35.0679596,28.1046864 C44.9933158,22.8435876 39.316697,0 53.5722849,0 Z" id="Leaf" fill="url(#linearGradient-2)"></path>
<path d="M47.1900001,201.746051 C46.6215346,201.892988 46.0602519,201.46564 45.9363403,200.791544 C45.8124286,200.117448 46.1728107,199.45187 46.7412762,199.304933 C60.3936899,195.776066 67.0754562,187.264925 67.0754562,173.567992 C67.0754562,172.878068 67.5471094,172.318773 68.1289231,172.318773 C68.7107367,172.318773 69.1823899,172.878068 69.1823899,173.567992 C69.1823899,188.520697 61.7552996,197.981222 47.1900001,201.746051 Z" id="Leaves-base" fill="#33B1B9"></path>
<path d="M54.2195801,150.901088 C53.6628892,151.115068 53.0643744,150.756822 52.8827598,150.100921 C52.7011453,149.44502 53.0052047,148.739842 53.5618957,148.525861 C62.5815018,145.058907 67.0618645,136.572099 67.0618645,122.756043 C67.0618645,122.06612 67.5365603,121.506827 68.1221272,121.506827 C68.7076942,121.506827 69.1823899,122.06612 69.1823899,122.756043 C69.1823899,137.589552 64.1751598,147.074364 54.2195801,150.901088 Z" id="Leaves-base" fill="#33B1B9" transform="translate(61.006289, 136.234928) rotate(25.000000) translate(-61.006289, -136.234928) "></path>
<path d="M62.583833,74.3350962 C62.2037499,74.4795354 61.7951114,74.237715 61.6711133,73.7949753 C61.5471152,73.3522355 61.7547131,72.876233 62.1347962,72.7317938 C66.7199683,70.9893365 68.9924539,66.7335647 68.9924539,59.7556346 C68.9924539,59.2899296 69.3165544,58.9124011 69.7163527,58.9124011 C70.116151,58.9124011 70.4402516,59.2899296 70.4402516,59.7556346 C70.4402516,67.4203558 67.808045,72.349791 62.583833,74.3350962 Z" id="Leaves-base" fill="#33B1B9" transform="translate(66.037736, 66.644654) rotate(25.000000) translate(-66.037736, -66.644654) "></path>
<path d="M48.747355,65.498236 C48.367272,65.6426752 47.9586334,65.4008549 47.8346353,64.9581151 C47.7106372,64.5153754 47.9182351,64.0393728 48.2983182,63.8949336 C52.8834903,62.1524763 55.1559759,57.8967046 55.1559759,50.9187744 C55.1559759,50.4530694 55.4800765,50.0755409 55.8798747,50.0755409 C56.279673,50.0755409 56.6037736,50.4530694 56.6037736,50.9187744 C56.6037736,58.5834956 53.9715671,63.5129308 48.747355,65.498236 Z" id="Leaves-base" fill="#33B1B9" transform="translate(52.201258, 57.807794) scale(-1, 1) rotate(25.000000) translate(-52.201258, -57.807794) "></path>
<path d="M34.0843456,133.963823 C33.5314404,134.177629 32.9369957,133.819675 32.7566162,133.164311 C32.5762367,132.508947 32.8782284,131.804345 33.4311336,131.59054 C41.6249627,128.422028 45.6926371,120.670535 45.6926371,108.026921 C45.6926371,107.337562 46.1641048,106.778727 46.7456896,106.778727 C47.3272745,106.778727 47.7987421,107.337562 47.7987421,108.026921 C47.7987421,121.687155 43.2077832,130.435836 34.0843456,133.963823 Z" id="Leaves-base" fill="#33B1B9" transform="translate(40.251572, 120.402220) scale(-1, 1) rotate(25.000000) translate(-40.251572, -120.402220) "></path>
<path d="M24.0214525,192.139819 C23.4685473,192.353625 22.8741026,191.995671 22.6937231,191.340307 C22.5133436,190.684943 22.8153353,189.980342 23.3682405,189.766536 C31.5620696,186.598024 35.629744,178.846531 35.629744,166.202917 C35.629744,165.513558 36.1012117,164.954723 36.6827965,164.954723 C37.2643814,164.954723 37.7358491,165.513558 37.7358491,166.202917 C37.7358491,179.863151 33.1448901,188.611832 24.0214525,192.139819 Z" id="Leaves-base" fill="#33B1B9" transform="translate(30.188679, 178.578216) scale(-1, 1) rotate(25.000000) translate(-30.188679, -178.578216) "></path>
<path d="M48.0707142,247.98673 C48.0707142,248.900524 47.4339541,249.6413 46.6484707,249.6413 C45.8629873,249.6413 44.1595445,248.900524 44.1595445,247.98673 C45.295173,242.428543 45.8679667,234.720474 45.8779255,224.862523 C45.8928638,210.075597 38.3200529,185.455503 39.8190775,169.122753 C41.3181021,152.790004 56.0054358,121.73891 59.7532189,97.0299052 C62.8026608,76.9250394 57.14528,58.8687943 55.2182379,46.9007875 C53.2911959,34.9327808 54.2524449,20.6193404 54.5086094,20.6193404 C54.8150904,20.6193404 53.8951349,35.3032779 56.0054358,46.9007875 C58.1157367,58.4982972 62.9103803,73.7981142 62.1913737,90.9693813 C60.8529211,122.934219 43.5188572,150.715007 43.5188572,171.604608 C43.5188572,192.494209 49.5659599,205.568352 50.474087,224.035239 C51.0795051,236.346496 50.2783808,244.330326 48.0707142,247.98673 Z" id="Leaves-base" fill="#33B1B9"></path>
</g>
<g id="Leaves" transform="translate(164.000000, 155.500000) scale(-1, 1) rotate(-28.000000) translate(-164.000000, -155.500000) translate(114.000000, 49.000000)">
<path d="M53.5722849,0 C67.8278727,0 66.7037156,28.7608901 71.2771877,33.7824994 C75.8506598,38.8041088 86.9800377,39.7875029 86.9800377,51.4514672 C86.9800377,63.1154315 76.3699632,63.1154315 76.3699632,72.7182972 C76.3699632,82.3211629 100,80.5513335 100,96.0170723 C100,111.482811 82.2015331,116.026521 82.2015331,125.202742 C82.2015331,134.378962 91.8209107,138.237726 91.8209107,158.713241 C91.8209107,179.188755 73.6518251,182.212389 45.9217775,182.212389 C18.1917298,182.212389 0,174.716519 0,154.241004 C0,133.76549 29.6066205,135.022006 31.7299664,123.546757 C33.8533124,112.071508 14.3844279,105.822062 14.3844279,92.5332042 C14.3844279,79.2443466 42.4329634,79.2443466 42.4329634,68.3862708 C42.4329634,57.5281951 19.8297419,52.6013741 19.8297419,41.5254222 C19.8297419,30.4494702 25.1426035,28.4684956 35.0679596,23.9795988 C44.9933158,19.4907019 39.316697,0 53.5722849,0 Z" id="Leaf" fill="url(#linearGradient-3)"></path>
<path d="M47.1900001,172.134614 C46.6215346,172.259984 46.0602519,171.895361 45.9363403,171.320206 C45.8124286,170.745051 46.1728107,170.177163 46.7412762,170.051793 C60.3936899,167.040879 67.0754562,159.778967 67.0754562,148.092413 C67.0754562,147.503752 67.5471094,147.026549 68.1289231,147.026549 C68.7107367,147.026549 69.1823899,147.503752 69.1823899,148.092413 C69.1823899,160.850422 61.7552996,168.922371 47.1900001,172.134614 Z" id="Leaves-base" fill="#D2DEF8"></path>
<path d="M54.2195801,128.752461 C53.6628892,128.935035 53.0643744,128.62937 52.8827598,128.069739 C52.7011453,127.510109 53.0052047,126.908434 53.5618957,126.72586 C62.5815018,123.767771 67.0618645,116.526621 67.0618645,104.738428 C67.0618645,104.149769 67.5365603,103.672566 68.1221272,103.672566 C68.7076942,103.672566 69.1823899,104.149769 69.1823899,104.738428 C69.1823899,117.394736 64.1751598,125.487408 54.2195801,128.752461 Z" id="Leaves-base" fill="#D2DEF8" transform="translate(61.006289, 116.238938) rotate(25.000000) translate(-61.006289, -116.238938) "></path>
<path d="M62.583833,63.4245035 C62.2037499,63.5477426 61.7951114,63.3414155 61.6711133,62.9636593 C61.5471152,62.585903 61.7547131,62.1797661 62.1347962,62.0565271 C66.7199683,60.5698204 68.9924539,56.9386929 68.9924539,50.984954 C68.9924539,50.5876032 69.3165544,50.2654867 69.7163527,50.2654867 C70.116151,50.2654867 70.4402516,50.5876032 70.4402516,50.984954 C70.4402516,57.5246796 67.808045,61.730593 62.583833,63.4245035 Z" id="Leaves-base" fill="#D2DEF8" transform="translate(66.037736, 56.862832) rotate(25.000000) translate(-66.037736, -56.862832) "></path>
<path d="M48.747355,55.8846805 C48.367272,56.0079195 47.9586334,55.8015925 47.8346353,55.4238363 C47.7106372,55.04608 47.9182351,54.6399431 48.2983182,54.5167041 C52.8834903,53.0299973 55.1559759,49.3988699 55.1559759,43.445131 C55.1559759,43.0477802 55.4800765,42.7256637 55.8798747,42.7256637 C56.279673,42.7256637 56.6037736,43.0477802 56.6037736,43.445131 C56.6037736,49.9848566 53.9715671,54.19077 48.747355,55.8846805 Z" id="Leaves-base" fill="#D2DEF8" transform="translate(52.201258, 49.323009) scale(-1, 1) rotate(25.000000) translate(-52.201258, -49.323009) "></path>
<path d="M34.0843456,114.301177 C33.5314404,114.483601 32.9369957,114.178186 32.7566162,113.619014 C32.5762367,113.059841 32.8782284,112.458658 33.4311336,112.276234 C41.6249627,109.572783 45.6926371,102.959021 45.6926371,92.1711838 C45.6926371,91.5830065 46.1641048,91.1061947 46.7456896,91.1061947 C47.3272745,91.1061947 47.7987421,91.5830065 47.7987421,92.1711838 C47.7987421,103.826426 43.2077832,111.291013 34.0843456,114.301177 Z" id="Leaves-base" fill="#D2DEF8" transform="translate(40.251572, 102.730088) scale(-1, 1) rotate(25.000000) translate(-40.251572, -102.730088) "></path>
<path d="M24.0214525,163.938345 C23.4685473,164.120769 22.8741026,163.815354 22.6937231,163.256182 C22.5133436,162.697009 22.8153353,162.095826 23.3682405,161.913402 C31.5620696,159.209951 35.629744,152.59619 35.629744,141.808352 C35.629744,141.220175 36.1012117,140.743363 36.6827965,140.743363 C37.2643814,140.743363 37.7358491,141.220175 37.7358491,141.808352 C37.7358491,153.463595 33.1448901,160.928181 24.0214525,163.938345 Z" id="Leaves-base" fill="#D2DEF8" transform="translate(30.188679, 152.367257) scale(-1, 1) rotate(25.000000) translate(-30.188679, -152.367257) "></path>
<path d="M48.0707142,211.588281 C48.0707142,212.367952 47.4339541,213 46.6484707,213 C45.8629873,213 44.1595445,212.367952 44.1595445,211.588281 C45.295173,206.845902 45.8679667,200.269191 45.8779255,191.858148 C45.8928638,179.241585 38.3200529,158.235125 39.8190775,144.299627 C41.3181021,130.36413 56.0054358,103.870585 59.7532189,82.788264 C62.8026608,65.6343057 57.14528,50.2282804 55.2182379,40.0168873 C53.2911959,29.8054942 54.2524449,17.5929204 54.5086094,17.5929204 C54.8150904,17.5929204 53.8951349,30.1216113 56.0054358,40.0168873 C58.1157367,49.9121632 62.9103803,62.9663375 62.1913737,77.6172783 C60.8529211,104.890451 43.5188572,128.593692 43.5188572,146.417206 C43.5188572,164.240719 49.5659599,175.395895 50.474087,191.152289 C51.0795051,201.656552 50.2783808,208.468549 48.0707142,211.588281 Z" id="Leaves-base" fill="#D2DEF8"></path>
</g>
<g id="vase" transform="translate(73.000000, 234.000000)">
<polygon id="Vase-base" fill="url(#linearGradient-4)" points="1.70086051 1.678826 86.7438859 1.678826 67.8454358 55.4012579 20.5993106 55.4012579"></polygon>
<rect id="Vase-base" fill="url(#linearGradient-5)" x="0" y="0" width="86.7438859" height="16.78826"></rect>
</g>
</g>
<g id="Rocket" transform="translate(328.000000, 0.000000)">
<path d="M279.241194,423.509994 C286.615693,424.835062 293.079206,428.785421 297.630398,434.35942 C301.082357,431.645679 305.43543,430.027127 310.166417,430.027127 C321.380198,430.027127 330.470765,439.120549 330.470765,450.337855 C330.470765,451.532514 330.367654,452.703084 330.16985,453.841144 C330.270041,453.840185 330.370347,453.839704 330.470765,453.839704 C339.89388,453.839704 348.328843,458.07182 353.979738,464.739573 C362.262647,453.458286 375.618273,446.135635 390.683658,446.135635 C415.817996,446.135635 436.193403,466.517444 436.193403,491.659679 C436.193403,492.128282 436.186325,492.595232 436.17227,493.060426 C436.179314,493.060422 436.186358,493.060419 436.193403,493.060419 C453.207417,493.060419 467,506.857336 467,523.876695 C467,540.896055 453.207417,554.692972 436.193403,554.692972 C429.810682,554.692972 423.881324,552.75128 418.96344,549.426181 C414.228912,560.354776 403.348823,568 390.683658,568 C376.086349,568 363.86031,557.844201 360.681601,544.210764 C356.303011,547.987259 350.647489,550.323018 344.450773,550.482071 C336.649737,557.456617 326.353605,561.696671 315.067466,561.696671 C299.111989,561.696671 285.135153,553.222442 277.389568,540.527931 C268.108551,554.94809 251.919193,564.49815 233.5,564.49815 C215.080807,564.49815 198.891449,554.94809 189.610426,540.527939 C181.864847,553.222442 167.888011,561.696671 151.932534,561.696671 C140.646395,561.696671 130.350263,557.456617 122.549227,550.482071 C116.352511,550.323018 110.696989,547.987259 106.318399,544.210764 C103.13969,557.844201 90.9136505,568 76.3163418,568 C63.6511767,568 52.7710884,560.354776 48.0365599,549.426181 C43.1186761,552.75128 37.1893184,554.692972 30.8065967,554.692972 C13.7925832,554.692972 0,540.896055 0,523.876695 C0,506.857336 13.7925832,493.060419 30.8065967,493.060419 C30.8136415,493.060419 30.8206858,493.060422 30.8277295,493.060426 C30.8136747,492.595232 30.8065967,492.128282 30.8065967,491.659679 C30.8065967,466.517444 51.1820036,446.135635 76.3163418,446.135635 C91.3817274,446.135635 104.737353,453.458286 113.020262,464.739573 C118.671157,458.07182 127.10612,453.839704 136.529235,453.839704 C136.629653,453.839704 136.729959,453.840185 136.83015,453.841144 C136.632346,452.703084 136.529235,451.532514 136.529235,450.337855 C136.529235,439.120549 145.619802,430.027127 156.833583,430.027127 C161.56457,430.027127 165.917643,431.645679 169.369602,434.35942 C173.920794,428.785421 180.384307,424.835062 187.758806,423.509994 C191.498888,417.251902 196.698243,411.967091 202.88677,408.125812 C205.596311,393.875629 218.115395,383.102343 233.149925,383.102343 C248.014166,383.102343 260.419621,393.632963 263.317246,407.642945 C269.856268,411.518736 275.341836,416.985394 279.241194,423.509994 Z" id="Smoke" fill-opacity="0.75" fill="url(#linearGradient-6)"></path>
<g transform="translate(71.415292, 0.000000)" fill-rule="nonzero" id="Rocket-base">
<path d="M21.0044978,230.848335 C35.0074963,213.222359 56.5342329,201.606247 85.5847076,196 L84.017991,301.585697 L0,301.585697 C1.55464513e-15,272.053432 7.00149925,248.474312 21.0044978,230.848335 Z" fill="url(#linearGradient-4)"></path>
<path d="M259.055472,230.848335 C273.058471,213.222359 294.062969,201.549527 322.068966,195.82984 L322.068966,301.585697 L238.050975,301.585697 C238.050975,272.053432 245.052474,248.474312 259.055472,230.848335 Z" fill="url(#linearGradient-4)" transform="translate(280.059970, 248.707768) scale(-1, 1) translate(-280.059970, -248.707768) "></path>
<path d="M227.90969,108.46187 C236.543246,147.556379 241.768711,228.263906 243.586085,350.584453 L243.586084,350.584453 C243.758381,362.181152 234.497074,371.721809 222.900374,371.894107 C222.796391,371.895652 222.692397,371.896424 222.588402,371.896424 L100.880865,371.896425 C89.2828841,371.896425 79.8808634,362.494405 79.8808634,350.896424 C79.8808634,350.792429 79.8816359,350.688435 79.8831808,350.584452 C81.7005549,228.263906 86.9260198,147.556379 95.5595755,108.46187 C109.247723,46.4791324 131.306076,10.3251758 161.734633,0 C192.16319,10.3251758 214.221542,46.4791324 227.90969,108.46187 Z" fill="url(#linearGradient-1)"></path>
<path d="M89.8307912,303.495818 L131.830791,303.495818 L131.830791,310.495818 L89.8307912,310.495818 L89.8307912,303.495818 Z M89.8307912,314.883794 L114.802671,314.883794 L114.802671,321.883794 L89.8307912,321.883794 L89.8307912,314.883794 Z" fill="#9BBBE8"></path>
<path d="M161.734633,0 C184.786265,7.82199952 203.034188,30.4672876 216.478402,67.9358816 L106.990857,67.9358816 C120.435077,30.4672876 138.683,7.82199952 161.734633,0 Z" fill="url(#linearGradient-7)"></path>
<path d="M161.734633,185.598027 C138.147023,185.598027 119.025487,166.470483 119.025487,142.875462 C119.025487,119.280441 138.147023,100.152898 161.734633,100.152898 C185.322242,100.152898 204.443778,119.280441 204.443778,142.875462 C204.443778,166.470483 185.322242,185.598027 161.734633,185.598027 Z" fill="url(#linearGradient-8)"></path>
<path d="M161.734633,177.898027 C181.069108,177.898027 196.743778,162.218432 196.743778,142.875462 C196.743778,123.532493 181.069108,107.852898 161.734633,107.852898 C142.400157,107.852898 126.725487,123.532493 126.725487,142.875462 C126.725487,162.218432 142.400157,177.898027 161.734633,177.898027 Z" fill="#FFFFFF"></path>
<path d="M100.821589,371.896424 L226.148426,371.896424 L219.937419,387.567657 C217.822215,392.904612 212.663181,396.409371 206.922347,396.409371 L120.047668,396.409371 C114.306834,396.409371 109.1478,392.904612 107.032596,387.567657 L100.821589,371.896424 Z" fill="url(#linearGradient-4)"></path>
<path d="M161.034483,245.12947 L161.034483,245.12947 C166.149571,245.12947 170.38199,249.108761 170.697038,254.214138 L177.137931,358.589396 L144.931034,358.589396 L151.371928,254.214138 C151.686976,249.108761 155.919395,245.12947 161.034483,245.12947 Z" fill="url(#linearGradient-4)"></path>
</g>
</g>
<g id="Girl" transform="translate(604.000000, 182.000000)">
<path d="M87.9041449,397.823494 C97.5439626,413.233098 144.371069,422.047544 228.385464,424.266832 L260.135192,425 C261.937905,421.661644 262.889533,416.916952 262.990074,410.765925 C263.090616,404.614898 262.427345,391.718277 261.00026,372.076064 L168.789196,329 C105.226011,359.472725 78.2643273,382.413889 87.9041449,397.823494 Z" id="Jacket" fill="url(#linearGradient-9)" fill-rule="nonzero"></path>
<g id="Foots" transform="translate(104.000000, 267.000000)">
<g id="Foot" fill-rule="nonzero">
<path d="M52.9963243,257.280188 L55.6795383,271.595482 C52.4144393,275.406362 48.3829192,277.311802 43.5849779,277.311802 C38.7870366,277.311802 34.5159883,276.350923 30.7718331,274.429167 L28.0839368,258.782559 L52.9963243,257.280188 Z" id="Leg" fill="url(#linearGradient-10)" transform="translate(41.881738, 267.295995) rotate(-360.000000) translate(-41.881738, -267.295995) "></path>
<path d="M55.8104184,269.898447 C57.8465216,269.898447 57.8465216,275.806237 57.9351081,280.302562 C57.9673578,281.939434 57.6221232,284.433113 56.8994045,287.783601 C56.6032465,289.156584 55.2988571,290.163062 53.7533553,290.211121 C21.0761777,291.227265 1.38602217,291.19982 1.326192,290.128784 C-1.28456099,282.818298 0.137611647,282.029754 14.9563328,276.295018 C20.979645,273.964041 26.5085984,272.851041 30.2544297,270.937207 C31.5357239,270.282563 34.2210005,275.575448 43.0787383,275.575448 C51.9364761,275.575448 53.7743153,269.898447 55.8104184,269.898447 Z" id="Shoes" fill="url(#linearGradient-11)" transform="translate(29.103886, 280.425817) rotate(-360.000000) translate(-29.103886, -280.425817) "></path>
<path d="M67.928788,0.487813505 C94.2099304,54.7284888 103.060834,141.05222 103.062212,163.955286 C103.063591,186.858351 93.6253536,223.967832 80.8650366,266.011629 C74.2413522,269.19274 58.2089849,266.569445 55.0275114,263.387916 C51.45781,259.818152 63.6520038,181.509218 61.6957224,165.474325 C59.7394409,149.439433 6.11322708,56.1745152 6.11306747,53.5226904 C6.11290787,50.8708655 8.15824381,37.1421108 12.2490753,12.3364263 L67.928788,0.487813505 Z" id="Pants" fill="url(#linearGradient-12)" transform="translate(54.587640, 133.971052) scale(-1, 1) rotate(-360.000000) translate(-54.587640, -133.971052) "></path>
</g>
<g id="Foot" transform="translate(94.395244, 150.237185) scale(-1, 1) rotate(-360.000000) translate(-94.395244, -150.237185) translate(40.895244, 0.237185)">
<path d="M40.9866161,266.056045 L43.6698301,280.371338 C40.4047312,284.182218 36.373211,286.087658 31.5752697,286.087658 C26.7773285,286.087658 22.5062802,285.12678 18.7621249,283.205024 L16.0742286,267.558416 L40.9866161,266.056045 Z" id="Leg" fill="url(#linearGradient-10)" fill-rule="nonzero" transform="translate(29.872029, 276.071851) scale(-1, 1) rotate(-360.000000) translate(-29.872029, -276.071851) "></path>
<path d="M69.4273884,278.674303 C71.4634915,278.674303 71.4634915,284.582094 71.5520781,289.078419 C71.5843277,290.71529 71.2390932,293.20897 70.5163744,296.559457 C70.2202165,297.93244 68.9158271,298.938918 67.3703252,298.986978 C34.6931476,300.003122 15.0029921,299.975676 14.9431619,298.904641 C12.3324089,291.594155 13.7545816,290.80561 28.5733028,285.070875 C34.596615,282.739898 40.1255683,281.626897 43.8713996,279.713063 C45.1526938,279.05842 47.8379705,284.351304 56.6957083,284.351304 C65.553446,284.351304 67.3912852,278.674303 69.4273884,278.674303 Z" id="Shoes" fill="url(#linearGradient-11)" fill-rule="nonzero" transform="translate(42.720856, 289.201673) scale(-1, 1) rotate(-360.000000) translate(-42.720856, -289.201673) "></path>
<path d="M106.92263,0.493733015 C98.9630916,20.6461446 88.815087,35.1232173 76.4786161,43.9249512 C65.9848286,51.411981 78.5905929,106.84548 65.4232711,169.333194 C52.2559493,231.820909 45.767031,266.060576 43.0527821,272.206557 C40.3385332,278.352537 17.7543409,278.882626 15.8300324,270.378501 C13.9057239,261.874376 23.0505019,223.07186 24.3352129,165.606233 C9.33092912,106.710783 -0.844904874,41.9108649 0.333987427,39.4520854 C1.51287973,36.9933058 -1.66233957,22.2020075 13.1595851,0.493733015 L106.92263,0.493733015 Z" id="Pants" fill="url(#linearGradient-13)" fill-rule="nonzero"></path>
<path d="M24.9719363,259.117714 C39.4542476,205.982951 44.2816847,171.490118 39.4542476,155.639217 C32.2130919,131.862864 14.5796088,58.2719707 14.5796088,46.4753137" id="Texture" stroke="#5F90CC" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5,10"></path>
</g>
</g>
<g id="Hair" transform="translate(184.000000, 26.000000)" fill-rule="nonzero">
<path d="M9.90376552,18.8912881 C15.683704,0.798975458 26.0185127,0.871077574 40.9081916,19.1075945 C63.2427099,46.4623699 92.1923067,14.9873465 91.765997,62.7802721 C91.3396874,110.573198 162.997132,53.5506412 142.759276,133.73969 C131.184636,179.602223 68.7783751,169.576399 34.8605591,127.257895 C9.47425054,95.5839626 9.65564554,33.3549547 6.64735635,30.9147576 C1.96231239,27.1144479 3.04778212,23.1066247 9.90376552,18.8912881 Z" fill="url(#linearGradient-14)"></path>
<ellipse id="hairbands" fill="url(#linearGradient-15)" transform="translate(12.250963, 14.287631) scale(-1, 1) translate(-12.250963, -14.287631) " cx="12.2509628" cy="14.2876306" rx="11.5" ry="13.3116883"></ellipse>
</g>
<g id="Head" transform="translate(102.000000, 0.000000)" fill-rule="nonzero">
<path d="M20.7810204,43.0707272 L27.1930019,42.1300847 L66.779274,49.9539335 L78.6971349,63.8040795 L85.7222567,83.5621828 C84.9540967,90.8004787 86.1018156,96.5557799 89.1654134,100.828086 C92.2290111,105.100393 97.6713999,108.535254 105.49258,111.13267 C87.2181007,132.549099 73.4770713,144.436693 64.2694916,146.795452 C50.4581222,150.333591 56.4806959,137.040206 65.553811,118.234286 C71.6025544,105.697005 64.7930196,99.2318461 56.9548519,96.2602184 C50.3809042,100.541783 46.1791399,102.934848 44.3495591,103.439413 C41.8612347,104.125647 32.9340768,93.9940513 26.0670912,81.3686029 C25.3604832,80.069453 20.4539905,76.0954931 19.8002696,74.7526013 C18.3465166,71.7662608 20.8260715,71.2351198 20.0679167,67.890833 C19.4906025,65.3442495 16.8127783,62.1915743 16.845021,57.8637172 C16.8651754,55.1584506 18.1771752,50.2274539 20.7810204,43.0707272 Z" id="Face" fill="#F2A384"></path>
<path d="M19.8518112,71.6912529 C18.3776995,74.6286362 24.8757305,77.84724 26.6416073,81.3680706 C29.1809555,84.4026491 -1.27635602,79.1791326 0.402645203,45.7774421 C2.08164643,12.3757516 21.4494608,14.2372639 26.7836897,13.2901933 C32.1179185,12.3431227 46.9003226,-4.53793182 69.1385696,1.86237314 C91.3768165,8.2626781 96.8467452,23.529025 96.5763738,45.6994069 C96.2502248,72.4435358 87.2964664,87.8807672 81.9499421,88.5793644 C75.9721157,89.3604501 66.224884,85.8207479 52.708247,77.9602579 C58.2357417,76.2600697 59.7665363,72.0145752 57.3006308,65.2237746 C53.6017725,55.0375736 44.5331745,58.5373031 43.434716,66.8593095 L39.7107936,60.8481012 L17.9632089,61.2635793 C20.4232753,65.8221971 21.0528094,69.2980882 19.8518112,71.6912529 Z" id="Hair" fill="url(#linearGradient-14)"></path>
</g>
<path d="M168.913493,115.099368 C162.153094,125.189261 161.828245,131.91721 167.938948,135.283214 C174.04965,138.649217 187.098441,130.554813 207.085319,111 C233.179883,122.25691 248.899914,131.197013 254.245412,137.820309 C259.590909,144.443605 257.156385,173.803902 246.941837,225.901199 C236.167709,251.331964 226.837012,258.139319 218.949747,266.323265 C207.502415,278.201189 179.421753,277.239081 157.706097,278.803559 C145.648559,279.672229 137.740809,278.318499 133,260.957504 C144.569246,241.603948 149.862643,230.911522 149.863036,222.66509 C149.863429,214.418659 146.010912,194.290367 138.305487,162.280214 L155.278678,122.29452 L168.913493,115.099368 Z" id="Body" fill="url(#linearGradient-3)" fill-rule="nonzero"></path>
<path d="M-2,84.9466324 L13.3016158,80.7003464 C19.3925686,76.9001155 24.5065506,75 28.6435618,75 C32.2137597,75 34.8998175,79.3158804 35.1294396,83.2916952 C35.1761629,84.1006886 47.1681442,81.5261309 46.9982109,82.2677393 C46.5516903,84.2164058 33.2669997,89.1699905 30.9903625,89.6674639 C27.5980394,90.4087287 30.4487328,91.7968189 28.0517023,93.4290485 C26.453682,94.5172015 22.2574192,93.6754122 15.4629139,90.9036807 L-0.507250914,97 L-2,84.9466324 Z" id="Path-11" fill="#F2A384" fill-rule="nonzero" transform="translate(22.500000, 86.000000) rotate(-120.000000) translate(-22.500000, -86.000000) "></path>
<g id="Jacket" transform="translate(205.000000, 116.000000)">
<mask id="mask-18" fill="white">
<use xlink:href="#path-17"></use>
</mask>
<use fill="url(#linearGradient-16)" fill-rule="nonzero" xlink:href="#path-17"></use>
<path d="M26.518018,80.6304868 C20.3967179,71.8373965 20.3967179,57.3925454 26.518018,37.2959335 C28.6876528,30.1728862 37.8303375,28.2280433 50.884198,37.2959335 C66.5325214,48.1660724 90.4159517,94.3779692 79.2608071,128.268924 C62.0805614,180.465015 33.7675539,194.772509 18.1223507,198.19041 C15.1349234,198.843052 14.5015703,197.253263 8.25342813,204.178785 C1.16568424,212.034931 2.01150457,202.343081 10.7908891,175.103232 C30.878154,144.621051 40.0827489,124.222442 38.404674,113.907407 C36.726599,103.592372 32.7643804,92.5000651 26.518018,80.6304868 Z" id="Shadow" fill="#A83C5F" fill-rule="nonzero" opacity="0.5" mask="url(#mask-18)"></path>
</g>
<g id="Hand" transform="translate(178.000000, 130.000000)" fill-rule="nonzero">
<path d="M3.74298422,182.296562 C10.8802912,178.303196 18.4709592,175.373577 26.514988,173.507704 C38.5810313,170.708895 46.0122144,167.287187 46.7953486,168.48001 C47.5784827,169.672833 40.1426319,172.928551 41.1959049,173.056549 C43.5843435,173.346803 52.1998548,169.245273 53.1646586,170.592304 C53.4660779,171.013137 50.060693,173.255573 42.9485039,177.319612 C51.6443489,175.165121 56.1284729,174.672508 56.4008758,175.841774 C56.8094802,177.595672 43.8831352,180.122069 43.9166135,180.709335 C43.9750375,181.73419 55.3230201,182.38386 55.1105308,183.32335 C54.5521893,185.791972 40.9752219,184.904648 38.1148199,185.573482 C30.891837,187.262397 40.651338,191.959718 39.3310621,194.214186 C38.4508781,195.717165 33.5454859,193.057945 24.6148855,186.236529 L4.64535631,193.959507 L3.74298422,182.296562 Z" fill="#F2A384" transform="translate(30.076674, 181.428609) rotate(-207.000000) translate(-30.076674, -181.428609) "></path>
<path d="M53.6085352,49.3643477 C47.4872352,40.5873406 47.4872352,26.16891 53.6085352,6.10905614 C55.7781701,-1.00096264 64.9208548,-2.94224823 77.9747153,6.10905614 C93.6230386,16.9593129 113.039183,68.8478961 101.884038,102.676862 C81.4232509,164.726016 62.8873288,166.014201 51.4389004,173.808689 C43.8066148,179.005014 39.4218089,175.600576 38.2844828,163.595376 C59.7969284,130.216259 69.7141137,108.378617 68.0360387,98.0824483 C66.3579638,87.7862798 61.5487959,71.546913 53.6085352,49.3643477 Z" id="Jacket-sleeve" fill="url(#linearGradient-16)"></path>
</g>
<g id="Jacket" transform="translate(24.000000, 87.000000)">
<mask id="mask-20" fill="white">
<use xlink:href="#path-19"></use>
</mask>
<use fill="url(#linearGradient-16)" fill-rule="nonzero" xlink:href="#path-19"></use>
<path d="M104.854096,94.4873363 C104.972078,87.2559438 106.04913,81.3815992 108.085253,76.8643026 C110.121375,72.3470059 110.692346,69.6850276 109.798166,68.8783675 C87.5871053,80.6170979 68.9940583,83.2790762 54.0190255,76.8643026 C39.0439927,70.4495289 42.815694,79.2490953 65.3341295,103.263002 L104.854096,94.4873363 Z" id="Path-47" fill="#A83C5F" fill-rule="nonzero" opacity="0.5" mask="url(#mask-20)"></path>
</g>
</g>
<g id="Group-5" transform="translate(205.000000, 331.000000)" fill-rule="nonzero">
<g id="Group-3" transform="translate(0.010183, 0.000000)">
<g id="Table" transform="translate(0.000000, 136.112903)">
<path d="M43.4114053,195.649636 L43.4114053,18.1981567 L24.5593719,18.1981567 L43.4114053,195.649636 Z M21,15 L46.6130346,15 L46.6130346,208.488479 C46.6130346,209.813199 45.5379709,210.887097 44.2118126,210.887097 C42.8465257,210.887097 41.7012685,209.858064 41.55719,208.501873 L21,15 Z" id="Table-base" fill="url(#linearGradient-21)" transform="translate(33.806517, 112.943548) scale(-1, 1) translate(-33.806517, -112.943548) "></path>
<path d="M371.578411,195.649636 L371.578411,18.1981567 L352.726378,18.1981567 L371.578411,195.649636 Z M349.167006,15 L374.780041,15 L374.780041,208.488479 C374.780041,209.813199 373.704977,210.887097 372.378819,210.887097 C371.013532,210.887097 369.868275,209.858064 369.724196,208.501873 L349.167006,15 Z" id="Table-base" fill="url(#linearGradient-21)"></path>
<rect id="Table-base" fill="url(#linearGradient-22)" x="0.989816701" y="0.608294931" width="393" height="15.9907834"></rect>
</g>
<g id="Imac" transform="translate(101.841141, 0.000000)">
<rect id="Imac-base" fill="url(#linearGradient-23)" x="78.4399185" y="115.133641" width="44.0224033" height="26.3847926"></rect>
<rect id="Imac-base" fill="url(#linearGradient-24)" x="0" y="0" width="199.301426" height="115.93318"></rect>
<g id="Display" transform="translate(8.000000, 7.000000)">
<rect id="Display-base" fill="url(#linearGradient-25)" x="0.00407331976" y="0.995391705" width="183.293279" height="99.9423963"></rect>
<rect id="Display-base" fill="url(#linearGradient-26)" x="114" y="75" width="13.9405712" height="21.6277053"></rect>
<rect id="Display-base" fill="url(#linearGradient-1)" x="148" y="68" width="13.9405712" height="28.8369404"></rect>
<rect id="Display-base" fill="url(#linearGradient-26)" x="165" y="78" width="13.9405712" height="18.8369404"></rect>
<rect id="Display-base" fill="url(#linearGradient-1)" x="131" y="57" width="13.9405712" height="39.6507931"></rect>
<g id="Display-base" transform="translate(114.000000, 6.000000)">
<rect fill="url(#linearGradient-1)" x="0.0296440218" y="0" width="64.8006135" height="45"></rect>
<path d="M4.43584836,35.7227922 L12.5005595,21.9053134 C12.945994,21.1421389 13.9257652,20.8845597 14.6889397,21.3299942 C14.8184424,21.4055798 14.936677,21.4989945 15.040173,21.6074966 L21.9060244,28.8054443 C22.5159386,29.4448596 23.5287202,29.4687749 24.1681355,28.8588608 C24.2249219,28.8046943 24.2776463,28.7464234 24.3258815,28.6845197 L37.4646887,11.8225945 C38.0078181,11.1255596 39.01317,11.0007945 39.7102049,11.5439239 C39.8485755,11.6517422 39.968274,11.7815812 40.0645093,11.928244 L46.3326153,21.4808431 C46.8173961,22.2196494 47.8093094,22.4255778 48.5481158,21.940797 C48.7138677,21.832036 48.8579635,21.693418 48.9730636,21.5320035 L60.1158233,5.90558306" stroke="#FFFFFF" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M4.43584836,35.7227922 L21.212304,22.3061937 C21.7582219,21.869608 22.5243661,21.8379557 23.1044361,22.2280226 L30.3711941,27.1145392 C31.0110178,27.5447873 31.8666896,27.4575242 32.4064896,26.9069758 L39.376095,19.7985931 C39.9763914,19.1863437 40.9526157,19.1561441 41.5896081,19.7301177 L49.5334453,26.8880575 C50.1438952,27.4381145 51.0717669,27.4363308 51.6800974,26.8839308 L60.6890417,18.7032773" stroke="#FFFFFF" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<g id="Display-base" transform="translate(22.000000, 6.000000)">
<path d="M44.8460161,67.851073 C46.0303575,68.0633638 47.0683949,68.6962558 47.7993144,69.5892733 C48.3536976,69.1545014 49.0527992,68.8951911 49.8125937,68.8951911 C51.6135222,68.8951911 53.0734633,70.3520599 53.0734633,72.1491985 C53.0734633,72.3405965 53.0569038,72.5281349 53.0251365,72.7104649 C53.0412272,72.7103113 53.0573362,72.7102343 53.0734633,72.7102343 C54.5868116,72.7102343 55.9414629,73.3882669 56.8489943,74.456516 C58.1792259,72.6491268 60.3241337,71.4759556 62.7436282,71.4759556 C66.7801921,71.4759556 70.0524738,74.7413511 70.0524738,78.7694205 C70.0524738,78.844496 70.051337,78.9193065 70.0490798,78.9938359 C70.0502111,78.9938352 70.0513424,78.9938348 70.0524738,78.9938348 C72.7849171,78.9938348 75,81.2042563 75,83.9309494 C75,86.6576426 72.7849171,88.8680641 70.0524738,88.8680641 C69.0274114,88.8680641 68.0751591,88.5569832 67.285349,88.024265 C66.5249858,89.775149 64.7776483,91 62.7436282,91 C60.3993067,91 58.4358099,89.3729266 57.9253107,87.1886964 C57.222111,87.7937333 56.3138366,88.1679482 55.3186466,88.1934304 C54.0658037,89.3108312 52.4122492,89.9901356 50.5997001,89.9901356 C48.037258,89.9901356 45.7925845,88.6324693 44.5486467,86.5986663 C43.0581185,88.9089369 40.4581146,90.4389642 37.5,90.4389642 C34.5418854,90.4389642 31.9418815,88.9089369 30.4513533,86.5986663 C29.2074155,88.6324693 26.962742,89.9901356 24.4002999,89.9901356 C22.5877508,89.9901356 20.9341963,89.3108312 19.6813534,88.1934304 C18.6861634,88.1679482 17.777889,87.7937333 17.0746893,87.1886964 C16.5641901,89.3729266 14.6006933,91 12.2563718,91 C10.2223517,91 8.4750142,89.775149 7.71465095,88.024265 C6.92484092,88.5569832 5.97258861,88.8680641 4.94752624,88.8680641 C2.21508295,88.8680641 0,86.6576426 0,83.9309494 C0,81.2042563 2.21508295,78.9938348 4.94752624,78.9938348 C4.94865763,78.9938348 4.94978894,78.9938352 4.95092016,78.9938359 C4.94866296,78.9193065 4.94752624,78.844496 4.94752624,78.7694205 C4.94752624,74.7413511 8.21980786,71.4759556 12.2563718,71.4759556 C14.6758663,71.4759556 16.8207741,72.6491268 18.1510057,74.456516 C19.0585371,73.3882669 20.4131884,72.7102343 21.9265367,72.7102343 C21.9426638,72.7102343 21.9587728,72.7103113 21.9748635,72.7104649 C21.9430962,72.5281349 21.9265367,72.3405965 21.9265367,72.1491985 C21.9265367,70.3520599 23.3864778,68.8951911 25.1874063,68.8951911 C25.9472008,68.8951911 26.6463024,69.1545014 27.2006856,69.5892733 C27.9316051,68.6962558 28.9696425,68.0633638 30.1539839,67.851073 C30.7546394,66.8484562 31.5896537,66.0017699 32.5835283,65.3863537 C33.0186795,63.1033138 35.0292391,61.377312 37.4437781,61.377312 C39.8309688,61.377312 41.8232796,63.064436 42.288637,65.308993 C43.3388011,65.9299383 44.219781,66.8057585 44.8460161,67.851073 Z" fill="url(#linearGradient-1)"></path>
<g id="Group-3" transform="translate(11.469265, 0.000000)">
<path d="M3.37331334,44.9950678 C5.62218891,42.1711878 8.99550225,40.3010686 13.4932534,39.3847102 L13.4932534,56.3279901 L0,56.3279901 C2.49675343e-16,51.5965886 1.12443778,47.8189478 3.37331334,44.9950678 Z" id="Display-base" fill="url(#linearGradient-26)"></path>
<path d="M41.6041979,44.9950678 C43.8530735,42.1711878 47.2263868,40.3010686 51.7241379,39.3847102 L51.7241379,56.3279901 L38.2308846,56.3279901 C38.2308846,51.5965886 39.3553223,47.8189478 41.6041979,44.9950678 Z" id="Display-base" fill="url(#linearGradient-26)" transform="translate(44.977511, 47.856350) scale(-1, 1) translate(-44.977511, -47.856350) "></path>
<path d="M36.6021986,17.3768136 C37.9888479,23.6406642 38.8280772,36.5723893 39.1198865,56.1719888 L39.1198753,56.171989 C39.1475005,58.0274539 37.6657436,59.554 35.8102786,59.5816252 C35.7936065,59.5818734 35.7769328,59.5819975 35.7602589,59.5819975 L16.1887744,59.5820051 C14.3330934,59.5820051 12.8287668,58.0776785 12.8287668,56.2219975 C12.8287668,56.2053235 12.8288909,56.1886497 12.8291391,56.1719775 C13.1209486,36.5723843 13.9601778,23.640663 15.3468269,17.3768136 C17.5451376,7.44648073 21.0876995,1.65420951 25.9745127,0 C30.861326,1.65420951 34.4038879,7.44648073 36.6021986,17.3768136 Z" id="Display-base" fill="url(#linearGradient-1)"></path>
<path d="M17.1826859,10.8840937 C19.3418218,4.88120276 22.2724304,1.25317246 25.9745127,0 C29.676595,1.25317246 32.6072037,4.88120276 34.7663386,10.8840937 L17.1826859,10.8840937 Z" id="Display-base" fill="url(#linearGradient-8)"></path>
<path d="M25.9745127,29.7348952 C22.1863527,29.7348952 19.1154423,26.6704472 19.1154423,22.8902589 C19.1154423,19.1100707 22.1863527,16.0456227 25.9745127,16.0456227 C29.7626728,16.0456227 32.8335832,19.1100707 32.8335832,22.8902589 C32.8335832,26.6704472 29.7626728,29.7348952 25.9745127,29.7348952 Z" id="Display-base" fill="url(#linearGradient-8)"></path>
<path d="M25.9745127,28.5028952 C29.0828383,28.5028952 31.6015832,25.9894507 31.6015832,22.8902589 C31.6015832,19.7910672 29.0828383,17.2776227 25.9745127,17.2776227 C22.8661872,17.2776227 20.3474423,19.7910672 20.3474423,22.8902589 C20.3474423,25.9894507 22.8661872,28.5028952 25.9745127,28.5028952 Z" id="Display-base" fill="#FFFFFF"></path>
<path d="M16.191904,59.5819975 L36.3193403,59.5819975 L35.3204267,62.0963015 C34.9815358,62.9493028 34.1565561,63.5092478 33.2387009,63.5092478 L19.2725435,63.5092478 C18.3546883,63.5092478 17.5297085,62.9493028 17.1908177,62.0963015 L16.191904,59.5819975 Z" id="Display-base" fill="url(#linearGradient-26)"></path>
<path d="M25.862069,39.2725031 L25.862069,39.2725031 C26.6835832,39.2725031 27.3633678,39.9115365 27.4140885,40.7314835 L28.4482759,57.4500617 L23.2758621,57.4500617 L24.3100494,40.7314835 C24.3607702,39.9115365 25.0405547,39.2725031 25.862069,39.2725031 Z" id="Display-base" fill="url(#linearGradient-26)"></path>
</g>
</g>
</g>
</g>
</g>
</g>
<g id="Foot" transform="translate(275.000000, 518.000000)" fill-rule="nonzero">
<path d="M125.007184,161.926216 C124.72779,160.481482 129.518888,141.686301 137.250426,147.191956 C144.981965,152.69761 145.737254,161.455112 151.527204,160.778724 C155.387171,160.327799 157.049665,161.482561 156.514684,164.243011 L146.598983,172.388885 L137.170135,173.772139 C129.247764,166.838013 125.193447,162.889372 125.007184,161.926216 Z" id="leg" fill="#B06C57" transform="translate(140.803980, 159.978483) rotate(67.000000) translate(-140.803980, -159.978483) "></path>
<path d="M122.24578,166.701208 C124.7727,165.565907 127.945746,171.750961 132.577607,171.750961 C137.209469,171.750961 140.090674,166.134877 141.274386,166.701208 C144.734938,168.356861 149.756917,169.162028 155.284044,171.10979 C168.882037,175.901728 170.199006,176.589601 168.220822,183.710157 C168.220822,185.292747 152.775784,186.084042 121.885708,186.084042 C120.635858,182.774923 119.962255,179.684328 119.864897,176.812257 C119.718861,172.504152 119.718861,167.836509 122.24578,166.701208 Z" id="Shoes" fill="url(#linearGradient-11)" transform="translate(144.383648, 176.323053) rotate(18.000000) translate(-144.383648, -176.323053) "></path>
<path d="M32.8815203,149.901746 C32.6021259,148.457012 38.8325424,135.354173 46.564081,140.859827 C54.2956196,146.365482 56.1348169,147.632264 59.5002048,149.368376 C61.7437967,150.525783 63.3934728,151.335942 64.449233,151.798851 L54.5335317,159.944725 L44.2385557,160.020616 C36.8534617,154.237859 33.0677832,150.864902 32.8815203,149.901746 Z" id="leg" fill="#B06C57" transform="translate(48.660855, 149.768528) scale(-1, 1) rotate(44.000000) translate(-48.660855, -149.768528) "></path>
<path d="M43.5466777,149.409922 C48.0451557,147.948278 52.7913077,149.878735 53.9750197,150.445065 C55.656071,151.249341 67.0295066,160.641514 59.3977704,167.134576 C57.5031863,168.746483 50.4955734,169.875658 38.3749317,170.522098 C37.1250822,167.212979 36.4514786,164.122385 36.3541208,161.250314 C36.2080842,156.942209 39.0481997,150.871566 43.5466777,149.409922 Z" id="Shoes" fill="url(#linearGradient-11)" transform="translate(49.177812, 159.698065) scale(-1, 1) rotate(18.000000) translate(-49.177812, -159.698065) "></path>
<path d="M22.1812539,21.0528853 C65.4937818,0.801000754 91.0460246,-4.26197038 98.8379822,5.86397189 C110.525919,21.0528853 120.537828,70.9804265 62.0543458,144.838401 C57.8384211,147.821469 54.0935356,149.078425 50.8196893,148.609267 C47.5458429,148.140109 44.8183529,145.154507 42.6372192,139.652461 L58.7949664,73.6845112 L13.1530606,67.497094 L0.0766739148,38.9556774 L22.1812539,21.0528853 Z" id="Pants" fill="#111AA7"></path>
<path d="M112.181254,21.0528853 C157.981952,15.9036835 184.778279,18.3920538 192.570237,28.5179961 C204.258173,43.7069095 198.473024,79.1359265 155.908077,153.995821 C147.789665,156.207276 142.093536,157.078425 138.819689,156.609267 C135.545843,156.140109 132.818353,153.154507 130.637219,147.652461 L148.794966,73.6845112 L79.6396837,83.5638359 L90.0766739,38.9556774 L112.181254,21.0528853 Z" id="Pants" fill="url(#linearGradient-13)"></path>
</g>
<g id="Body" transform="translate(206.000000, 368.000000)">
<path d="M57.1944579,14.9378879 C75.7244874,23.4123513 86.9988632,25.5309671 91.0175852,21.2937355 C95.0363073,17.0565038 96.8075752,13.9236734 96.3313891,11.8952443 C129.426508,16.5037569 149.883862,27.0269908 157.703452,43.4649459 C167.10575,63.2299913 183.691715,114.49032 194.880712,121.949027 C195.739081,120.82124 198.17953,119.100119 202.20206,116.785664 C205.793156,114.719444 214.016845,110.556125 226.873128,104.295708 C223.885676,102.820845 222.39195,100.86195 222.39195,98.4190215 C222.39195,94.7546296 224.259498,95.9381748 225.58034,94.5853225 C226.894157,93.2396649 227.517919,91.159809 229.396306,91.204017 C231.078542,91.2436085 232.925835,91.6038085 234.794464,92.1408133 C235.7349,92.4110747 237.871107,90.8625222 238.80403,91.204017 C243.967608,93.0941358 248.810928,96.7447815 248.810928,98.0607618 C248.810928,99.3767421 249.48567,101.725192 247.077581,104.295708 C246.21937,105.211806 244.421915,106.306566 241.685217,107.579987 C214.471895,140.336234 196.757955,156.714358 188.543397,156.714358 C176.221559,156.714358 158.038819,131.658379 153.17005,126.414591 C149.699591,137.698739 125.915414,163.695802 81.8175204,204.405781 L9.16923062,137.379507 L2.00725028,63.9085106 L60.0697741,6.20733741 L57.1944579,14.9378879 Z" fill="#FABFA8" fill-rule="nonzero"></path>
<mask id="mask-29" fill="white">
<use xlink:href="#path-28"></use>
</mask>
<use fill="url(#linearGradient-27)" fill-rule="nonzero" xlink:href="#path-28"></use>
<path d="M149.226078,118.588075 C141.944075,109.595003 136.683828,102.800549 133.445337,98.2047128 C131.313087,104.251894 151.107284,168.78345 174.743048,173.195376 C190.500224,176.13666 194.967384,174.940649 188.144529,169.607344 L149.226078,118.588075 Z" id="Shadow" fill="#EFAB45" fill-rule="nonzero" opacity="0.5" mask="url(#mask-29)"></path>
</g>
<g id="Head" transform="translate(236.000000, 248.000000)" fill-rule="nonzero">
<path d="M34.5744812,112.307649 C31.4833436,122.301805 28.9965558,128.916079 27.1141178,132.15047 C24.2904609,137.002056 29.3149586,149.208245 41.6134785,149.208245 C49.8124917,149.208245 59.4602659,146.00631 70.556801,139.602439 C66.3979785,133.038528 64.3185673,126.848419 64.3185673,121.032111 C64.3185673,115.215803 65.5043241,110.233833 67.8758378,106.086203 C72.3704983,108.973111 76.0584177,108.973111 78.939596,106.086203 C83.2613636,101.755841 101.571995,51.1575145 52.5068849,38.7716997 C40.6298797,30.1797099 22.4421576,51.1575145 22.4421576,60.4863263 C22.4421576,66.7055341 22.4421576,72.2348597 22.4421576,77.0743031 C16.5956414,74.5470532 13.6723833,76.5278243 13.6723833,83.0166166 C13.6723833,89.5054089 17.4512246,93.9430335 25.0089074,96.3294904 L34.5744812,112.307649 Z" id="Face" fill="#FABFA8"></path>
<path d="M31.7036241,6.86634968 C45.9712222,21.2127653 58.7664166,5.85780234 73.2575961,17.5470323 C82.9183824,25.3398523 86.2688793,33.5269645 83.3090865,42.1083687 C90.001244,51.305113 90.001244,64.2726489 83.3090865,81.0109763 C76.6169291,97.7493037 66.923754,107.486006 54.2295613,110.221084 C36.4588102,102.392913 26.1686568,95.0772127 23.3591011,88.2739821 C22.8942629,87.1483944 25.8300881,87.4821766 28.1349861,82.0500662 C30.4398841,76.6179559 31.07623,70.395776 26.653801,68.9316641 C22.5043968,67.5579411 18.7330481,69.697349 15.3397552,75.3498878 C15.3397552,62.4000129 15.3397552,55.9250755 15.3397552,55.9250755 C15.3397552,55.9250755 -1.38027481,39.1272499 1.23546113,22.7658794 C3.79858734,6.73358163 17.4360261,-7.48006598 31.7036241,6.86634968 Z" id="Hair" fill="url(#linearGradient-14)" transform="translate(44.642952, 55.579763) scale(-1, 1) translate(-44.642952, -55.579763) "></path>
</g>
<g id="Chair" transform="translate(195.000000, 435.000000)" fill-rule="nonzero">
<polygon id="Chair-base" fill="#D2D9FF" points="154 184 166 184 166 233 154 233"></polygon>
<circle id="Wheel" fill="url(#linearGradient-24)" cx="95" cy="296" r="9"></circle>
<circle id="Wheel" fill="url(#linearGradient-24)" cx="221" cy="296" r="9"></circle>
<circle id="Wheel" fill="url(#linearGradient-24)" cx="160" cy="306" r="9"></circle>
<path d="M147.881887,243.913896 L147.188938,236.462114 C147.174936,236.311537 147.169484,236.160287 147.172609,236.009093 C147.218258,233.800425 149.045743,232.046953 151.25441,232.092602 L168.443757,232.447876 C168.518609,232.449423 168.593402,232.453071 168.668048,232.458816 C170.870673,232.628338 172.518829,234.551342 172.349308,236.753968 L171.856692,243.154617 L226.584615,280.718959 C226.733073,280.820858 226.876958,280.929265 227.015849,281.043861 C229.620938,283.193279 229.990334,287.047569 227.840916,289.652659 C225.375307,292.640971 221.131549,293.45059 217.738946,291.579898 L170.149318,265.338837 L167.543567,299.195842 C167.252323,302.980029 164.146574,305.931063 160.352453,306.028726 C156.593853,306.125475 153.403546,303.292351 153.055417,299.548658 L149.787192,264.403038 L100.500439,291.579898 C97.1078366,293.45059 92.8640785,292.640971 90.3984697,289.652659 C88.2490519,287.047569 88.618447,283.193279 91.2235368,281.043861 C91.3624277,280.929265 91.5063124,280.820858 91.6547702,280.718959 L147.467253,242.410193 L147.881887,243.913896 Z" id="Chair-base" fill="url(#linearGradient-21)"></path>
<path d="M19.2285694,1.78935248 C13.1744391,-1.59097817 3.92141075,1.57430272 0.998715376,5.81654128 C1.93934968,11.8148661 2.53442849,14.40731 2.56009356,14.5456962 C12.0663579,65.8035028 48.9019763,115.156123 77.5715417,146.044815 C93.9142888,163.652549 107.767073,177.698822 119.129895,188.183635 C130.159473,189.900845 140.310816,188.724534 149.583926,184.654702 C155.629347,182.001455 165.109893,182.782432 164.839891,174.468564 C164.283362,157.331959 149.059315,148.676608 143.051306,123.85559 C137.414878,100.569693 143.754704,53.1343056 126.719506,43.3698986 C109.684307,33.6054916 88.3495801,50.5544167 55.8361354,36.4350781 C32.8367974,26.4473501 25.2826997,5.16968313 19.2285694,1.78935248 Z" id="Chair-base" fill="url(#linearGradient-24)"></path>
<path d="M0.871245414,5.25474165 C8.27287372,64.1120733 14.6990765,102.838749 20.1498539,121.434768 C28.4164379,149.637269 38.9482046,161.511866 50.3162519,172.821585 C61.6842991,184.131303 104.196903,203.837694 138.160029,205.582314 C168.220272,207.12645 210.199035,198.341062 225.727172,188.683347 C241.25531,179.025633 249.288441,158.320483 231.731805,153.172133 C214.17517,148.023783 157.580193,169.223977 152.24863,166.910956 C122.584191,154.041474 131.627036,64.7544221 117.326223,55.2857134 C103.73372,46.2859832 74.7469799,57.8426674 39.8361354,42.4350781 C29.6033913,37.9189479 16.6150947,25.5255024 0.871245414,5.25474165 Z" id="Chair-base" fill="url(#linearGradient-21)"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 65 KiB

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