This commit is contained in:
Dawid Wysokiński 2022-09-11 09:05:39 +02:00
parent 1e8f1551f6
commit 5f761b934c
Signed by: Kichiyaki
GPG Key ID: B5445E357FB8B892
13 changed files with 67 additions and 239 deletions

View File

@ -1,8 +1,8 @@
import React from 'react';
import { graphql, useStaticQuery } from 'gatsby';
import classnames from 'classnames';
import { ROUTE } from '@config/routing';
import smoothScroll from '@utils/smoothScroll';
import logo from '@images/logo.svg';
import { HEADER_ID } from '@features/IndexPage/components/Header/Header';
import { SECTION_ID as PORTFOLIO_SECTION_ID } from '@features/IndexPage/components/Portfolio/Portfolio';
import { SECTION_ID as CONTACT_SECTION_ID } from '@features/IndexPage/components/Contact';
@ -13,6 +13,13 @@ import { Link as GatsbyLink } from 'gatsby-theme-material-ui';
function Navbar({ className, ...rest }) {
const classes = useStyles();
const data = useStaticQuery(graphql`
{
logo: file(base: { eq: "logo.svg" }) {
publicURL
}
}
`);
return (
<AppBar
@ -29,7 +36,11 @@ function Navbar({ className, ...rest }) {
color="inherit"
to={ROUTE.INDEX_PAGE}
>
<img className={classes.logo} src={logo} alt="logo" />
<img
className={classes.logo}
src={data.logo.publicURL}
alt="logo"
/>
</GatsbyLink>
</div>
<div className={classes.divider} />

View File

@ -1,15 +1,22 @@
import React from 'react';
import { graphql, useStaticQuery } from 'gatsby';
import smoothScroll from '@utils/smoothScroll';
import { SECTION_ID } from '../Contact';
import { makeStyles } from '@material-ui/core/styles';
import { Container, Typography, Button, Link } from '@material-ui/core';
import bg from './header-bg.jpg';
export const HEADER_ID = 'start';
function Header() {
const classes = useStyles();
const data = useStaticQuery(graphql`
{
bg: file(base: { eq: "header-bg.jpg" }) {
publicURL
}
}
`);
const classes = useStyles({ bg: data.bg.publicURL });
return (
<header id={HEADER_ID} className={classes.header}>
@ -44,7 +51,7 @@ function Header() {
const useStyles = makeStyles(theme => ({
header: {
minHeight: '100vh',
backgroundImage: `url(${bg})`,
backgroundImage: ({ bg }) => `url(${bg})`,
backgroundSize: 'cover',
backgroundPosition: 'center',
clipPath: 'polygon(0 0,100% 0,100% 80vh,0 100%)',

View File

@ -1,15 +1,29 @@
import React from 'react';
import { graphql, useStaticQuery } from 'gatsby';
import { makeStyles } from '@material-ui/core/styles';
import { Container, Typography, Grid } from '@material-ui/core';
import Section from '@components/Section';
import speedIcon from './speed.svg';
import responsiveIcon from './responsive.svg';
import securityIcon from './security.svg';
import intuitiveIcon from './intuitive.svg';
function MyPriorities() {
const classes = useStyles();
const data = useStaticQuery(graphql`
{
responsivenessIcon: file(base: { eq: "responsiveness.svg" }) {
publicURL
}
securityIcon: file(base: { eq: "security.svg" }) {
publicURL
}
speedIcon: file(base: { eq: "speed.svg" }) {
publicURL
}
intuitivenessIcon: file(base: { eq: "intuitiveness.svg" }) {
publicURL
}
}
`);
return (
<Section>
<Container className={classes.container}>
@ -20,7 +34,7 @@ function MyPriorities() {
<Grid item xs={12} sm={6} md={3}>
<img
className={classes.icon}
src={responsiveIcon}
src={data.responsivenessIcon.publicURL}
alt="Responsiveness"
/>
<Typography variant="h4">Responsiveness</Typography>
@ -31,19 +45,27 @@ function MyPriorities() {
<Grid item xs={12} sm={6} md={3}>
<img
className={classes.icon}
src={intuitiveIcon}
src={data.intuitivenessIcon.publicURL}
alt="Intuitiveness"
/>
<Typography variant="h4">Intuitiveness</Typography>
<Typography>An easy-to-use & user-friendly interface.</Typography>
</Grid>
<Grid item xs={12} sm={6} md={3}>
<img className={classes.icon} src={speedIcon} alt="Szybkość" />
<img
className={classes.icon}
src={data.speedIcon.publicURL}
alt="Szybkość"
/>
<Typography variant="h4">Performance</Typography>
<Typography>Fast load times & lag free interaction.</Typography>
</Grid>
<Grid item xs={12} sm={6} md={3}>
<img className={classes.icon} src={securityIcon} alt="Security" />
<img
className={classes.icon}
src={data.securityIcon.publicURL}
alt="Security"
/>
<Typography variant="h4">Security</Typography>
<Typography>
I use tried-and-tested tools and techniques that help me keep the

View File

@ -14,7 +14,10 @@ function Portfolio() {
const data = useStaticQuery(graphql`
{
allCoverImages: allFile(
filter: { absolutePath: { regex: "/projects/" } }
filter: {
absolutePath: { regex: "/projects/" }
extension: { in: ["png", "jpeg", "jpg"] }
}
) {
edges {
node {

View File

@ -1,32 +1,28 @@
import React from 'react';
import PropTypes from 'prop-types';
import notFound from './not-found.jpg';
import { makeStyles } from '@material-ui/core/styles';
import {
Button,
Card,
CardContent,
CardMedia,
Chip,
Link,
Typography,
} from '@material-ui/core';
import BackgroundImage from 'gatsby-background-image';
function Project({ title, description, technologies, git, live, img, fluid }) {
function Project({ title, description, technologies, git, live, fluid }) {
const classes = useStyles();
return (
<Card className={classes.card}>
{fluid ? (
{
<BackgroundImage
fluid={fluid}
title={title}
className={classes.cover}
/>
) : (
<CardMedia image={img} title={title} className={classes.cover} />
)}
}
<CardContent className={classes.cardContent}>
<div className={classes.contentContainer}>
<Typography variant="h3" gutterBottom className={classes.title}>
@ -123,7 +119,6 @@ Project.defaultProps = {
technologies: [],
github: '',
live: '',
img: notFound,
};
Project.propTypes = {
@ -132,7 +127,6 @@ Project.propTypes = {
technologies: PropTypes.arrayOf(PropTypes.string).isRequired,
github: PropTypes.string.isRequired,
live: PropTypes.string.isRequired,
img: PropTypes.string.isRequired,
};
export default Project;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

View File

@ -10,7 +10,12 @@ function Technologies() {
const classes = useStyles();
const data = useStaticQuery(graphql`
{
allIcons: allFile(filter: { absolutePath: { regex: "/technologies/" } }) {
allIcons: allFile(
filter: {
absolutePath: { regex: "/technologies/" }
extension: { in: ["png", "jpeg", "jpg"] }
}
) {
edges {
node {
relativePath
@ -30,10 +35,7 @@ function Technologies() {
const edge = data.allIcons.edges.find(
img => img.node.relativePath === path
);
if (edge) {
return edge.node.childImageSharp.fixed;
}
return {};
return edge?.node?.childImageSharp?.fixed ?? {};
};
return (

View File

Before

Width:  |  Height:  |  Size: 120 KiB

After

Width:  |  Height:  |  Size: 120 KiB

View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -1,211 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.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 504 504" style="enable-background:new 0 0 504 504;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;}
.st1{fill:#67CFE3;}
.st2{fill:#FFFFFF;}
.st3{fill:#DFCAA3;}
.st4{fill:#231F20;}
.st5{fill:#648C1A;}
</style>
<g>
<g>
<path class="st0" d="M298.3,202.9c-6.3-3.8-13.7-6-21.6-6c-22.9,0-41.5,18.6-41.5,41.5c0,15,8,28.2,20,35.5c6.3,3.8,13.6,6,21.5,6
c22.9,0,41.5-18.6,41.5-41.5C318.2,223.4,310.2,210.2,298.3,202.9z"/>
<path class="st0" d="M189.6,268.3c0-15-8-28.2-19.9-35.4c-6.3-3.8-13.7-6-21.6-6c-22.9,0-41.5,18.6-41.5,41.5c0,15,8,28.2,20,35.5
c6.3,3.8,13.6,6,21.5,6C171,309.8,189.6,291.2,189.6,268.3z"/>
<path class="st1" d="M203.6,349.6c2.4,4.6,5.6,8.5,9.5,8.5c0.8,0,1.6-0.2,2.5-0.5c4-1.6,4.2-8.6,3.2-15.3
C213,344.2,208,347,203.6,349.6z"/>
<path class="st1" d="M402,372.3c0-0.1,0-0.2,0-0.2c-1.7-12.2-6.9-17.7-11.5-22.5c-4.3-4.5-8.3-8.8-7-16.6
c1.2-7.2,6.9-11.7,16.3-12.8c-5.7-38.5-14-87.1-24.8-128.5c-5.4-20.7-13.8-35.1-25.2-44.6c-13,6.7-28.6,14-46.1,21.5
c-12.6,5.5-25.6,10.8-38,15.7c-10,10.7-20.9,21.2-27.5,24.3c-4.8,2.1-9,3-12.7,3c-8,0-13.3-4-15.9-7.5c-3,0.8-5.4,1.3-7.1,1.5
c-2,0.2-4.8,0.5-8.4,0.7c1.4,3.6,0.8,7.9-1.8,11.1c-2.9,3.5-7.6,5.3-14.3,5.3c-9.6,0-23.3-3.7-41.6-11.1c-2.7-1.1-5.2-2.1-7.4-2.9
c-1.4,0-2.8,0-4.2,0c0,0,0,0,0,0c-17.5,0-31.1-0.5-41.8-1.4c-11.7,24.3-6.6,51.2-2.3,73.4c4.1,21.3,18.4,59.2,31.6,91.8
c4.9,12.1,9.7,23.4,13.7,32.9c35.8,3.2,81.8,5.1,131.9,5.1c59.6,0,113.3-2.7,151.1-7C406,392.1,402.6,376.3,402,372.3z
M126.6,303.8c-12-7.3-20-20.4-20-35.5c0-22.9,18.6-41.5,41.5-41.5c7.9,0,15.3,2.2,21.6,6c11.9,7.3,19.9,20.4,19.9,35.4
c0,22.9-18.6,41.5-41.5,41.5C140.3,309.8,132.9,307.6,126.6,303.8z M271.2,338c-4.3,1.9-10.5,2.7-20.4,2.8c0,0.9,0.1,1.7,0.1,2.3
c0.4,5.7-0.9,10.2-4,13.5c-2.8,3-6.8,4.6-11.3,4.6c-2,0-4.1-0.3-5.7-0.9c-1.8-0.7-3.3-1.8-4.7-3.6c-1.3,3.7-3.6,6.3-6.9,7.7
c-1.7,0.7-3.4,1.1-5.2,1.1c-6.1,0-11.4-4.2-15.7-12.1c-0.6,0.3-1.2,0.7-1.7,1c-3,1.6-6.6,2.4-10.4,2.4c-7.3,0-14.1-2.8-18.2-7.6
c-3.4-3.9-4.8-8.9-4.1-14.1c2.2-15.9,23.2-22.3,25.6-23l4.9-1.4l3.3,3.9c0.4,0.5,2.8,2.8,11.8,2.8c3.4,0,7.3-0.3,11.7-1
c14.4-2.3,19.9-13.8,20.3-14.5l2-4.7l5.2,0c31.2,0.3,36,14,36.8,18.2C286,325.2,281.1,333.7,271.2,338z M276.7,279.9
c-7.9,0-15.2-2.2-21.5-6c-12-7.3-20-20.4-20-35.5c0-22.9,18.6-41.5,41.5-41.5c7.9,0,15.3,2.2,21.6,6c11.9,7.3,19.9,20.4,19.9,35.4
C318.2,261.3,299.6,279.9,276.7,279.9z"/>
<path class="st1" d="M247.5,305c0,0-7,16-26.2,19c-5,0.8-9.3,1.1-12.9,1.1c-10.3,0-15.3-2.7-17.8-5.6c0,0-18.4,5.3-20,16.6
c-1.2,8.5,7.2,12.8,14.6,12.8c2.5,0,4.9-0.5,6.7-1.5c7.4-4,18.4-12.6,33.2-14.5c1.3-0.2,3.2-0.2,5.4-0.2c5,0,11.9,0.3,18.6,0.3
c7.6,0,14.9-0.4,18.9-2.2c9.1-4,9.1-10.7,8.5-14.1C275.9,312.9,270.4,305.2,247.5,305z"/>
<path class="st1" d="M243.5,340.7c-1.7,0-3.5,0-5.2-0.1c-2.9-0.1-5.5-0.1-7.8-0.1c-1.8,0-3.2,0-4.3,0.2c1.7,6.1,3.9,12,6.2,12.9
c0.7,0.2,1.8,0.5,3.2,0.5c3.7,0,8.8-1.8,8.1-10.4C243.6,342.8,243.6,341.8,243.5,340.7z"/>
</g>
<path class="st0" d="M82.8,169.3c0,0-0.2-0.9-0.5-2.4c-0.3-1.5-0.7-3.7-1.2-6.2c-0.2-1.2-0.4-2.6-0.5-3.9c-0.1-1.3-0.1-2.8,0.2-3.8
c0.1-0.5,0.3-0.9,0.5-1.1c0.2-0.2,0.3-0.2,0.6-0.3l0.2,0l0.3-0.1c0.1,0,0,0.1,0,0.1c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0l0,0
c0.1,0,0.1,0,0.2,0c0.3,0.1,0.8,0.4,1.3,0.7c1,0.7,2.1,1.9,3.1,3.1c1,1.2,2,2.5,2.9,3.7c1.9,2.5,3.6,5,5.1,7.1
c1.5,2.1,2.8,3.9,3.8,5.1c0.9,1.2,1.5,1.9,1.5,1.9s0-0.2-0.1-0.6c-0.1-0.4-0.1-1-0.3-1.8c-0.3-1.5-0.8-3.7-1.6-6.3
c-0.8-2.5-2-5.5-3.6-8.5c-0.8-1.5-1.7-3-2.8-4.5c-1.1-1.5-2.4-3-4.1-4.3c-0.9-0.7-2-1.3-3.3-1.7c-0.4-0.1-0.7-0.2-1.1-0.2l-0.3,0
l-0.4,0c-0.3,0-0.5,0-0.8,0c-0.2,0-0.6,0.1-0.7,0.1l-0.3,0.1l-0.3,0.1l-0.4,0.1l-0.1,0.1l-0.2,0.1c-1.3,0.5-2.5,1.6-3.2,2.8
c-0.7,1.2-1,2.4-1.1,3.5c-0.2,2.2,0.2,3.9,0.7,5.5c0.5,1.6,1.1,3,1.7,4.2c1.2,2.5,2.5,4.3,3.5,5.5c0.5,0.6,0.9,1.1,1.2,1.4
C82.6,169.1,82.8,169.3,82.8,169.3z"/>
<path class="st0" d="M329.9,98.7l-0.3-0.5l-0.4-0.5c-0.4-0.6-1.9-1.6-2-1.6l-0.2-0.1l-0.1,0l-0.3-0.1l0,0l-0.1,0l-0.4-0.1l-0.8-0.3
c-0.6-0.2-1.2-0.3-1.8-0.4c-0.6-0.1-1.3-0.1-1.9-0.1c-0.6,0-1.3,0.1-1.9,0.2c-2.5,0.4-4.8,1.7-6.5,3.2c-1.7,1.5-3,3.1-4.1,4.8
c-2.1,3.3-3.3,6.7-4.1,9.6c-0.8,2.9-1.1,5.3-1.2,7.1c-0.1,0.9-0.1,1.5-0.1,2c0,0.5,0,0.7,0,0.7s0.5-0.9,1.3-2.4
c0.8-1.5,2-3.6,3.4-6c1.4-2.4,3.2-5.2,5.2-7.7c1-1.2,2.2-2.4,3.4-3.3c1.2-0.9,2.5-1.5,3.7-1.7c0.3,0,0.6-0.1,0.9-0.1
c0.3,0,0.6,0,1,0.1c0.3,0.1,0.7,0.1,1,0.2l0.8,0.2l0.3,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0.1,0l0,0c0,0,0,0,0,0
c0,0,0.1,0.1,0.1,0.2c0.2,0.3,0.3,0.9,0.4,1.6c0.1,1.4-0.1,3-0.3,4.5c-0.3,1.5-0.6,3-0.9,4.4c-0.6,2.7-1.3,5.1-1.7,6.7
c-0.4,1.6-0.6,2.6-0.6,2.6s0.7-0.7,1.8-2.1c1.1-1.3,2.5-3.3,4-6c0.7-1.3,1.4-2.8,2.1-4.4c0.6-1.7,1.2-3.5,1.4-5.7
c0.1-1.1,0-2.4-0.4-3.8C330.3,99.4,330.1,99,329.9,98.7z"/>
<path class="st0" d="M106.7,268.3c0-22.9,18.6-41.5,41.5-41.5c7.9,0,15.2,2.2,21.5,6c-6.3-3.8-13.7-6-21.6-6
C125.2,226.8,106.6,245.4,106.7,268.3c-0.1,15,7.9,28.2,19.9,35.4C114.7,296.5,106.7,283.3,106.7,268.3z"/>
<path class="st0" d="M255.2,273.9c-11.9-7.3-19.9-20.4-19.9-35.4c0-22.9,18.6-41.5,41.5-41.5c7.9,0,15.2,2.2,21.5,6
c-6.3-3.8-13.7-6-21.6-6c-22.9,0-41.5,18.6-41.5,41.5C235.2,253.4,243.2,266.6,255.2,273.9z"/>
<path class="st2" d="M146.2,449.2c-7.1,1.6-28,13-46.1,16.4c-18.1,3.4-33.7,5.3-39.2,7.3s-9.7,6.1,1,10.1c10.8,4.1,62.9,5.5,67.6,0
c4.7-5.5-3.2-7.9-14.6-7.7c-8.1,0.1-7.1-2.7-7.1-3c0,0,0.5-3.6,13-5.3c12.5-1.7,67.6-6.9,66.5-12.8
C186.3,448.4,153.3,447.6,146.2,449.2z"/>
<ellipse transform="matrix(0.9771 -0.2126 0.2126 0.9771 -102.228 34.7457)" class="st2" cx="110.4" cy="492.6" rx="10.8" ry="3.1"/>
<ellipse transform="matrix(0.9968 -7.936001e-02 7.936001e-02 0.9968 -38.7134 8.3279)" class="st2" cx="85.4" cy="491.2" rx="11.4" ry="3"/>
<ellipse transform="matrix(0.9909 -0.135 0.135 0.9909 -65.3559 13.3009)" class="st2" cx="65.4" cy="488.7" rx="7.6" ry="2.4"/>
<ellipse transform="matrix(0.9896 -0.1437 0.1437 0.9896 -69.3657 12.3277)" class="st2" cx="50.7" cy="486.4" rx="7.4" ry="1.9"/>
<ellipse transform="matrix(0.9896 -0.1437 0.1437 0.9896 -68.8029 11.8036)" class="st2" cx="47.3" cy="482.3" rx="7.4" ry="1.9"/>
<ellipse transform="matrix(0.9896 -0.1437 0.1437 0.9896 -68.1464 11.6316)" class="st2" cx="46.5" cy="477.6" rx="6.4" ry="1.7"/>
<path class="st2" d="M254.5,454.9c-12.4,0.6-40.4-0.8-44.2,5.7c-3.9,6.5,11.4,8.9,35.3,6.9s57.8-4.7,59.2-12
c1.4-7.3-6.3-5.9-7.1-10.5c-0.8-4.7,8.5-4.7,10.3-11.6c1.8-6.9-12.6-6.1-25.4-6.1c-12.8,0-34.1,1.2-36.1,7.9
c-2,6.7,9.7,6.7,18.1,8.3c8.3,1.6,5.9,4.7,5.9,4.7C270.1,452.5,266.9,454.3,254.5,454.9z"/>
<ellipse class="st2" cx="221.4" cy="472.7" rx="10.7" ry="3.5"/>
<ellipse class="st2" cx="249" cy="471.9" rx="7.2" ry="3.2"/>
<ellipse class="st2" cx="271.3" cy="469.7" rx="7.8" ry="2.6"/>
<ellipse class="st2" cx="288.5" cy="466.8" rx="5.7" ry="2.7"/>
<ellipse class="st2" cx="303.4" cy="463.6" rx="5.8" ry="2.7"/>
<path class="st2" d="M51.1,388.8c0,3.5,7.5,6.7,20.9,9.6c-1-6.9-0.4-13.9,0.5-19.4C58.8,382,51.1,385.3,51.1,388.8z"/>
<path class="st2" d="M446.5,379.9c-0.2,0.6-0.4,1.1-0.7,1.7c-1.6,3.9-4,7.3-7,10.1c-6.1,5.7-11.4,9.2-16.1,10.4
c26.2-3.7,41.7-8.3,41.7-13.2C464.5,385.6,458.1,382.6,446.5,379.9z"/>
<path class="st3" d="M96.8,416.7c9.7,0,16.6-5.3,21.4-12.2c-5.5-12.8-14.5-34.2-23.1-56.9c-2.3,2-5,5-7.9,9.5
c-7.2,11.2-13.2,37.3-5.7,51C84.6,413.9,89.6,416.7,96.8,416.7z"/>
<path class="st3" d="M440.2,352.1c-5.7-14.8-17.8-25.2-29.5-25.5l-0.4,0c0,0-2.3-0.3-5.3-0.3c-6.3,0-14.1,1.4-15.2,7.8
c-0.7,4.5,1.2,6.8,5.4,11.1c4.7,5,11.2,11.8,13.2,26c2.2,16.3,6.2,24.6,11.8,24.6h0c2.6,0,7.4-1.6,15.3-9.1
C445.2,377.5,444.3,362.8,440.2,352.1z"/>
<path class="st2" d="M235.3,238.4c0,15,8,28.2,19.9,35.4c6.3,3.8,13.6,6,21.5,6c22.9,0,41.5-18.6,41.5-41.5c0-15-8-28.2-19.9-35.4
c-6.3-3.8-13.6-6-21.5-6C253.9,196.9,235.3,215.5,235.3,238.4z M284.2,252.3c0,7.2-5.9,13.1-13.1,13.1c-7.2,0-13.1-5.9-13.1-13.1
c0-7.2,5.9-13.1,13.1-13.1C278.4,239.2,284.2,245,284.2,252.3z"/>
<path class="st2" d="M106.7,268.3c0,15,8,28.2,19.9,35.4c6.3,3.8,13.6,6,21.5,6c22.9,0,41.5-18.6,41.5-41.5c0-15-8-28.2-19.9-35.4
c-6.3-3.8-13.6-6-21.5-6C125.3,226.8,106.7,245.4,106.7,268.3z M157.5,282.9c0,7.2-5.9,13.1-13.1,13.1c-7.2,0-13.1-5.9-13.1-13.1
c0-7.2,5.9-13.1,13.1-13.1C151.7,269.8,157.5,275.7,157.5,282.9z"/>
<circle class="st4" cx="144.5" cy="282.9" r="13.1"/>
<circle class="st4" cx="271.2" cy="252.3" r="13.1"/>
<path class="st5" d="M108.5,202.1c-1.4-0.3-2.3-0.4-2.6-0.4c-5.5,0.3-10.6-3.5-11.6-9.1c-0.1-0.6-0.1-1.1-0.2-1.7
c-3,1.7-6,3.5-8.8,5.5l-5,3.5l-3.7-4.8c-1.1-1.5-6.2-8.4-10.9-17.5c-8.9,4.2-15.8,8.8-17.5,13.1c-0.3,0.8-0.2,1.3,0.1,1.7
C49.8,194.5,58.4,201,108.5,202.1z"/>
<path class="st5" d="M345.5,120.1c-1.7,9.9-4.9,20.8-7,23.8l-2,2.8c9-4.4,17.1-8.6,23.9-12.4c23.7-13.3,26.7-19.1,27-20.6
c0.2-1,0-1.3-0.1-1.4c-0.3-0.3-1.9-1.9-9.4-1.9c-8.2,0-19.7,1.9-31.6,4.5C346.1,116.5,345.8,118.2,345.5,120.1z"/>
<path class="st5" d="M336.3,146.8l-3.4-0.3c-0.1,0-6.3-0.5-14.9-0.5c-8.9,0-20.5,0.5-30.1,2.8c1.8,3.8,1.4,8.5-1.5,11.9
c-2.3,2.8-6.3,7.5-11.1,12.9c8.4-3.4,17.1-7.1,25.8-10.8C314,157.3,325.8,151.8,336.3,146.8z"/>
<path class="st5" d="M109,136.8c10.2,2.8,21.7,4.2,34.3,4.2c48.8,0,102.4-21.1,123.3-30.2l1.3-0.6c-0.2-3.1,0.1-6.5,0.8-9.9
c1.3-6.1,4-11.2,7.2-14.6c-0.6-2.3-1.1-4-1.5-4.9c-6.9-3.7-64.2-25-94.1-25c-3,0-5.6,0.2-7.7,0.7c-26.5,5.4-66.7,51.4-68.1,57.9
c-0.4,2.8-0.3,11.7,0,21.2L109,136.8z"/>
<path class="st5" d="M212.5,187.9c4.4-2.8,10-2.1,13.6,1.3c0.6-0.1,1.5-0.3,2.9-1c5.5-2.6,25.3-23.7,40.3-41.8
c0.5-0.7,1.1-1.2,1.8-1.7c-34.3,14.8-82.3,31.1-128,31.1c-7.3,0-14.3-0.4-20.8-1.3l1,3l-5.7,2.2c0,0-1,0.4-2.7,1.1
c7.4,1.7,17.3,5.1,29.8,10.1c22.9,9.2,31.6,9.6,33.8,9.5c3.1-1.6,6.9-1.7,10.1-0.1c5.9-0.4,10.5-0.7,13.3-1
c1.3-0.1,3.1-0.5,5.5-1.1C207.1,194.1,208.9,190.2,212.5,187.9z"/>
<path class="st3" d="M269.1,116.6c-0.7,0.3-1.4,0.6-2.1,0.9c-0.2,0.1-0.3,0.1-0.5,0.2c-0.7,0.3-1.4,0.6-2.2,0.9
c-0.1,0.1-0.3,0.1-0.4,0.2c-0.7,0.3-1.4,0.6-2.1,0.9c-0.1,0.1-0.3,0.1-0.4,0.2c-0.8,0.3-1.6,0.7-2.4,1c-0.2,0.1-0.4,0.1-0.5,0.2
c-0.9,0.3-1.7,0.7-2.6,1c0,0,0,0,0,0c-0.9,0.4-1.8,0.7-2.7,1.1c-0.2,0.1-0.4,0.2-0.6,0.2c-0.9,0.4-1.9,0.7-2.8,1.1
c-0.1,0.1-0.3,0.1-0.4,0.2c-0.9,0.3-1.8,0.7-2.7,1c-0.2,0.1-0.3,0.1-0.5,0.2c-1,0.4-2,0.7-3,1.1c-0.2,0.1-0.4,0.2-0.6,0.2
c-1,0.4-2.1,0.7-3.1,1.1c0,0-0.1,0-0.1,0c-1.1,0.4-2.2,0.8-3.3,1.1c-0.2,0.1-0.5,0.2-0.7,0.2c-1.1,0.4-2.2,0.8-3.3,1.1
c-0.1,0-0.3,0.1-0.5,0.1c-1,0.3-2.1,0.7-3.1,1c-0.2,0.1-0.4,0.1-0.6,0.2c-1.1,0.4-2.3,0.7-3.5,1.1c-0.2,0.1-0.5,0.1-0.7,0.2
c-1.1,0.4-2.3,0.7-3.5,1.1c-0.1,0-0.1,0-0.2,0.1c-1.2,0.4-2.4,0.7-3.7,1.1c-0.3,0.1-0.5,0.2-0.8,0.2c-1.2,0.4-2.5,0.7-3.7,1
c-0.2,0-0.3,0.1-0.5,0.1c-1.2,0.3-2.3,0.6-3.5,0.9c-0.2,0.1-0.5,0.1-0.7,0.2c-1.3,0.3-2.5,0.6-3.8,1c-0.3,0.1-0.5,0.1-0.8,0.2
c-1.2,0.3-2.5,0.6-3.7,0.9c-0.1,0-0.2,0.1-0.3,0.1c-1.3,0.3-2.6,0.6-3.9,0.9c-0.3,0.1-0.6,0.1-0.9,0.2c-1.3,0.3-2.6,0.6-4,0.8
c-0.2,0-0.3,0.1-0.5,0.1c-1.2,0.2-2.5,0.5-3.7,0.7c-0.3,0-0.5,0.1-0.8,0.1c-1.3,0.2-2.6,0.5-4,0.7c-0.3,0-0.5,0.1-0.8,0.1
c-1.3,0.2-2.5,0.4-3.8,0.6c-0.1,0-0.3,0-0.4,0.1c-1.3,0.2-2.7,0.4-4.1,0.6c-0.3,0-0.6,0.1-0.9,0.1c-1.4,0.2-2.7,0.3-4.1,0.5
c-0.1,0-0.3,0-0.4,0c-1.3,0.1-2.5,0.3-3.8,0.4c-0.3,0-0.5,0.1-0.8,0.1c-1.3,0.1-2.7,0.2-4,0.3c-0.3,0-0.5,0-0.8,0.1
c-1.3,0.1-2.5,0.2-3.8,0.2c-0.2,0-0.3,0-0.5,0c-1.4,0.1-2.7,0.1-4,0.2c-0.3,0-0.6,0-0.9,0c-1.4,0-2.7,0.1-4.1,0.1c0,0-0.1,0-0.1,0
c-0.1,0-0.2,0-0.3,0c-1.3,0-2.6,0-3.9-0.1c-0.3,0-0.5,0-0.8,0c-1.3,0-2.7-0.1-4-0.2c-0.3,0-0.5,0-0.8,0c-1.3-0.1-2.6-0.2-3.8-0.3
c-0.1,0-0.2,0-0.3,0c-1.3-0.1-2.7-0.3-4-0.4c-0.3,0-0.6-0.1-0.9-0.1c-1.3-0.2-2.6-0.3-3.9-0.5c-0.2,0-0.4-0.1-0.5-0.1
c-1.2-0.2-2.4-0.4-3.6-0.6c-0.2,0-0.5-0.1-0.7-0.1c-1.3-0.2-2.5-0.5-3.8-0.8c-0.3-0.1-0.5-0.1-0.8-0.2c-1.3-0.3-2.6-0.6-3.9-1l0,0
c1.2,1.8,2.4,3.7,3.5,5.8c4.2,7.4,7.3,14.8,9,19.1c0.7,0.1,1.5,0.2,2.3,0.3c0.3,0,0.5,0.1,0.8,0.1c0.5,0.1,1.1,0.1,1.7,0.2
c0.3,0,0.6,0.1,1,0.1c0.5,0.1,1.1,0.1,1.7,0.2c0.4,0,0.7,0.1,1.1,0.1c0.6,0,1.1,0.1,1.7,0.1c0.4,0,0.8,0.1,1.3,0.1
c0.6,0,1.1,0.1,1.7,0.1c0.4,0,0.9,0,1.4,0.1c0.6,0,1.1,0.1,1.7,0.1c0.5,0,1,0,1.5,0c0.6,0,1.2,0,1.8,0.1c0.5,0,1.1,0,1.6,0
c0.6,0,1.2,0,1.9,0c0.1,0,0.1,0,0.2,0c1,0,2,0,3,0c0.3,0,0.5,0,0.8,0c0.9,0,1.7,0,2.6-0.1c0.4,0,0.7,0,1.1,0c0.9,0,1.9-0.1,2.8-0.1
c0.2,0,0.5,0,0.7,0c1.2-0.1,2.4-0.1,3.7-0.2c0.3,0,0.6,0,0.9-0.1c1-0.1,2-0.2,2.9-0.2c0.4,0,0.8-0.1,1.2-0.1
c1.1-0.1,2.2-0.2,3.3-0.3c0.3,0,0.5-0.1,0.8-0.1c1.3-0.2,2.7-0.3,4.1-0.5c0.4,0,0.7-0.1,1.1-0.1c1.1-0.1,2.2-0.3,3.3-0.5
c0.4-0.1,0.9-0.1,1.3-0.2c1.2-0.2,2.5-0.4,3.7-0.6c0.3,0,0.5-0.1,0.8-0.1c1.5-0.3,3-0.5,4.6-0.8c0.4-0.1,0.8-0.2,1.2-0.2
c1.2-0.2,2.4-0.5,3.6-0.7c0.5-0.1,1-0.2,1.5-0.3c1.4-0.3,2.8-0.6,4.2-0.9c0.2-0.1,0.5-0.1,0.7-0.2c1.6-0.4,3.3-0.8,5-1.2
c0.5-0.1,0.9-0.2,1.4-0.4c1.3-0.3,2.6-0.6,3.9-1c0.5-0.1,1.1-0.3,1.6-0.4c1.6-0.4,3.1-0.8,4.8-1.3c0.2-0.1,0.4-0.1,0.6-0.2
c1.8-0.5,3.6-1,5.5-1.6c0.5-0.2,1-0.3,1.6-0.5c1.4-0.4,2.8-0.9,4.2-1.3c0.6-0.2,1.2-0.4,1.7-0.6c1.8-0.6,3.5-1.2,5.3-1.8
c0.2-0.1,0.3-0.1,0.5-0.2c2-0.7,3.9-1.4,5.9-2.1c0.6-0.2,1.2-0.4,1.7-0.6c1.5-0.5,3-1.1,4.6-1.7c0.6-0.2,1.2-0.5,1.9-0.7
c2-0.7,4-1.5,6-2.3c0.1,0,0.2-0.1,0.3-0.1c2.1-0.8,4.3-1.7,6.4-2.6c0.6-0.3,1.3-0.5,1.9-0.8c1.6-0.7,3.3-1.4,4.9-2.1
c0.7-0.3,1.3-0.6,2-0.8c2.2-1,4.5-2,6.7-3c0.9-3,2.2-6.7,3.8-10.8c-0.1,0-0.2,0-0.4,0c-0.6,0-1.3-0.1-1.9-0.2
C273.4,124.1,270.6,121.1,269.1,116.6z"/>
<path class="st5" d="M143.4,147.3c-0.1,0-0.2,0-0.4,0C143.1,147.3,143.2,147.3,143.4,147.3C143.3,147.3,143.3,147.3,143.4,147.3z"
/>
<polygon class="st1" points="80.3,126.7 80.3,126.7 80.3,129.9 "/>
<path class="st3" d="M286.6,81.4c3.9,0.9,6.8,4.1,8.3,9.2c0.2,0.8,0.4,1.7,0.6,2.6c8.9-12.5,18.6-18.9,29-18.9c4.4,0,8.2,1,11.4,3
c5.5-6.7,8.9-11.2,8.9-11.2c-4.1,0.7-12.7,1.9-12.7,1.9C364.6,56,362,23.5,362,23.5c0,5.6-16.8,19.1-16.8,19.1
c0.7-4.9-1.9-11.2-1.9-11.2c0.7,6.4-19.4,22.8-19.4,22.8c1.5-3,0.4-8.2,0.4-8.2c-1.1,6-10.1,8.2-10.1,8.2
c5.6-6.7,16.1-42.2,8.2-44.5c-7.8-2.2-18.7,23.2-18.7,23.2c-0.4-6-3.7-6-3.7-6c1.5,18.7-13.5,33.6-13.5,33.6
c-1.1-3.7-7.1-5.6-7.1-5.6c1.4,3,0.6,13.8-0.2,21.5c-0.3,3-0.6,5.5-0.8,6.9c2-1.4,4.1-2.2,6.2-2.2C285.3,81.2,286,81.3,286.6,81.4z
"/>
<path class="st2" d="M278.4,118.7c1.2,0.3,2.7-0.4,4.2-1.8c1-2.3,2-4.6,3.2-7c1-2.2,2.1-4.2,3.2-6.2c0.8-4.1,0.7-8.2-0.2-11.3
c-0.8-2.7-2.1-4.5-3.5-4.8c-0.2,0-0.4-0.1-0.5-0.1c-3.2,0-8,5.6-9.8,14c-1,4.4-1,8.9,0,12.3C275.6,116.5,277,118.3,278.4,118.7z"/>
<path class="st1" d="M324.8,101.7L324.8,101.7l-0.1,0C324.7,101.7,324.7,101.7,324.8,101.7C324.7,101.7,324.7,101.7,324.8,101.7
C324.7,101.7,324.7,101.7,324.8,101.7L324.8,101.7z"/>
<path class="st1" d="M324.4,80.7c-25.1,0-41.2,51.3-44.3,62c0.9,0.2,1.8,0.5,2.6,0.9c10.8-3.2,24.7-4,35.3-4
c8.9,0,15.4,0.5,15.4,0.5C336.2,136.2,352.4,80.7,324.4,80.7z M330.8,103.5c-0.2,2.2-0.8,4-1.4,5.7c-0.6,1.6-1.4,3.1-2.1,4.4
c-1.4,2.6-2.9,4.6-4,6c-1.1,1.4-1.8,2.1-1.8,2.1s0.2-1,0.6-2.6c0.4-1.7,1-4,1.7-6.7c0.3-1.4,0.6-2.8,0.9-4.4
c0.3-1.5,0.4-3.1,0.3-4.5c-0.1-0.7-0.2-1.3-0.4-1.6c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0,0c0,0,0,0,0,0l-0.3-0.1l-0.8-0.2
c-0.3-0.1-0.7-0.1-1-0.2c-0.3-0.1-0.6,0-1-0.1c-0.3,0-0.6,0.1-0.9,0.1c-1.2,0.2-2.5,0.8-3.7,1.7c-1.2,0.9-2.4,2.1-3.4,3.3
c-2.1,2.5-3.8,5.3-5.2,7.7c-1.4,2.4-2.6,4.5-3.4,6c-0.8,1.5-1.3,2.4-1.3,2.4s0-0.2,0-0.7c0-0.5,0-1.1,0.1-2
c0.1-1.7,0.5-4.2,1.2-7.1c0.8-2.9,2-6.2,4.1-9.6c1.1-1.7,2.4-3.3,4.1-4.8c1.7-1.5,4-2.7,6.5-3.2c0.6-0.1,1.3-0.1,1.9-0.2
c0.6,0,1.3,0,1.9,0.1c0.6,0.1,1.2,0.2,1.8,0.4l0.8,0.3l0.4,0.1l0.1,0l0,0l0.3,0.1l0.1,0l0.2,0.1c0.1,0,1.6,1,2,1.6l0.4,0.5l0.3,0.5
c0.2,0.4,0.4,0.7,0.5,1.1C330.9,101.2,330.9,102.4,330.8,103.5z"/>
<path class="st1" d="M324.7,101.6C324.6,101.6,324.6,101.6,324.7,101.6C324.6,101.6,324.6,101.6,324.7,101.6L324.7,101.6
C324.7,101.7,324.7,101.6,324.7,101.6z"/>
<path class="st2" d="M324.7,101.7L324.7,101.7C324.7,101.7,324.7,101.7,324.7,101.7C324.7,101.7,324.7,101.7,324.7,101.7
C324.7,101.7,324.7,101.7,324.7,101.7C324.7,101.7,324.7,101.7,324.7,101.7z"/>
<path class="st2" d="M225.5,204.8c3,0,6.4-0.8,9.9-2.4c7.4-3.3,25.4-21.4,45.9-46c0.7-0.9,1.1-2,1-3.2c-0.1-1.2-0.7-2.2-1.6-3
c-1-0.8-2.1-1-2.8-1c-1.3,0-2.5,0.6-3.4,1.6c-8.9,10.7-34,39.5-42.6,43.6l-0.1,0.1c-1.7,0.8-3.2,1.2-4.6,1.5l-3.3,0.5l-2.4-2.3
c-0.8-0.8-1.9-1.2-3-1.2c-0.8,0-1.6,0.2-2.3,0.7c-1,0.6-1.7,1.6-1.9,2.8c-0.3,1.1,0,2.3,0.6,3.3
C215.1,200.2,218.3,204.8,225.5,204.8z"/>
<path class="st2" d="M183.7,205.8c-0.7,0-1.4,0.2-2.1,0.5l-1.3,0.7l-1.5,0.1c-0.3,0-0.6,0-1.1,0c-4.1,0-14.2-1.3-35.7-10
c-23.7-9.6-33-11-36.5-11c-0.7,0-1.1,0.1-1.2,0.1c-1.2,0.2-2.2,0.9-2.8,1.8c-0.7,1-0.9,2.1-0.7,3.3c0.4,2.1,2.2,3.6,4.3,3.6
c0.1,0,0.2,0,0.3,0l0.5,0l0.5,0c2.6,0.2,11,1.7,32.5,10.3c17.4,7,30.5,10.6,39.1,10.6c4.5,0,7.6-1,9.1-2.9c0.7-0.9,1.1-2,1-3.2
s-0.7-2.2-1.6-3C185.5,206,184.4,205.8,183.7,205.8z"/>
<path class="st1" d="M115.3,173.8c0,0-14.9-43.9-35.1-43.9c-2.6,0-5.3,0.7-8.1,2.4c-24.1,14.6,9.5,58.9,9.5,58.9
C96.3,181.1,115.3,173.8,115.3,173.8z M77.7,161.9c-0.6-1.2-1.2-2.6-1.7-4.2c-0.4-1.6-0.9-3.4-0.7-5.5c0.1-1.1,0.4-2.3,1.1-3.5
c0.7-1.2,2-2.3,3.2-2.8l0.2-0.1l0.1-0.1l0.4-0.1l0.3-0.1l0.3-0.1c0.1,0,0.5-0.1,0.7-0.1c0.2,0,0.5,0,0.8,0l0.4,0l0.3,0
c0.4,0.1,0.7,0.1,1.1,0.2c1.4,0.4,2.4,1,3.3,1.7c1.8,1.4,3,2.8,4.1,4.3c1.1,1.5,2,3,2.8,4.5c1.6,3,2.8,5.9,3.6,8.5
c0.8,2.5,1.3,4.7,1.6,6.3c0.2,0.8,0.2,1.4,0.3,1.8c0,0.4,0.1,0.6,0.1,0.6s-0.6-0.7-1.5-1.9c-0.9-1.2-2.3-3-3.8-5.1
c-1.5-2.1-3.2-4.6-5.1-7.1c-0.9-1.3-1.9-2.5-2.9-3.7c-1-1.2-2.1-2.3-3.1-3.1c-0.5-0.4-1-0.6-1.3-0.7c-0.1,0-0.1,0-0.2,0l0,0
c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1-0.1,0-0.1l-0.3,0.1l-0.2,0c-0.3,0.1-0.4,0.2-0.6,0.3c-0.2,0.2-0.4,0.6-0.5,1.1
c-0.3,1-0.3,2.5-0.2,3.8c0.1,1.4,0.3,2.7,0.5,3.9c0.4,2.5,0.9,4.6,1.2,6.2c0.3,1.5,0.5,2.4,0.5,2.4s-0.2-0.2-0.4-0.5
c-0.3-0.3-0.7-0.8-1.2-1.4C80.2,166.2,78.9,164.3,77.7,161.9z"/>
<path class="st4" d="M219,309.7c0.2,0,0.5-0.1,0.7-0.1c0.3,0,0.5-0.1,0.8-0.2c10.6-2.2,18.5-8.3,18.6-14.5c0-0.4,0-0.9-0.1-1.3
c-0.1-0.8-0.4-1.6-0.8-2.3c-0.1-0.3-0.3-0.5-0.5-0.8c-0.1-0.1-0.2-0.2-0.2-0.3c-0.1-0.1-0.2-0.2-0.3-0.3c-0.3-0.3-0.5-0.6-0.8-0.9
c0,0,0,0,0,0c0,0,0,0,0,0c-0.2-0.2-0.5-0.4-0.8-0.6c0,0,0,0,0,0c-1.3-1-2.9-1.9-4.8-2.5c-0.1,0-0.2-0.1-0.3-0.1
c-0.3-0.1-0.6-0.2-0.9-0.3c-0.1,0-0.3-0.1-0.4-0.1c-0.3-0.1-0.6-0.2-0.9-0.2c-0.2,0-0.3-0.1-0.5-0.1c-0.3-0.1-0.6-0.1-0.9-0.2
c-0.2,0-0.5-0.1-0.7-0.1c-0.4-0.1-0.8-0.1-1.3-0.2c-0.3,0-0.6-0.1-0.9-0.1c-0.2,0-0.5,0-0.7,0c-0.3,0-0.6,0-1,0c-0.2,0-0.5,0-0.7,0
c-0.3,0-0.7,0-1,0c-0.2,0-0.4,0-0.7,0c-0.4,0-0.8,0-1.1,0.1c-0.2,0-0.4,0-0.6,0c-0.6,0-1.2,0.1-1.7,0.2c-0.5,0.1-1.1,0.1-1.6,0.2
c-0.5,0.1-1,0.2-1.5,0.3c-0.1,0-0.2,0.1-0.4,0.1c-0.5,0.1-1,0.2-1.4,0.3c0,0,0,0,0,0c-0.5,0.1-1,0.3-1.4,0.4
c-0.1,0-0.2,0.1-0.3,0.1c-0.5,0.1-0.9,0.3-1.4,0.4c0,0,0,0,0,0c-0.5,0.2-0.9,0.3-1.3,0.5c-0.1,0-0.2,0.1-0.3,0.1
c-0.9,0.4-1.7,0.7-2.5,1.1c-0.1,0-0.2,0.1-0.2,0.1c-0.4,0.2-0.8,0.4-1.1,0.6c0,0,0,0,0,0l0,0c-0.3,0.2-0.6,0.4-1,0.6
c-0.1,0-0.1,0.1-0.2,0.1c-0.2,0.2-0.5,0.3-0.7,0.5c-0.1,0.1-0.2,0.1-0.2,0.2c-0.2,0.2-0.4,0.3-0.6,0.5c-0.1,0.1-0.1,0.1-0.2,0.2
c-0.5,0.4-1,0.9-1.5,1.3c-0.1,0-0.1,0.1-0.1,0.1c-0.2,0.2-0.3,0.3-0.5,0.5c-0.1,0.1-0.1,0.1-0.2,0.2c-0.2,0.2-0.3,0.3-0.4,0.5
c-0.1,0.1-0.1,0.1-0.2,0.2c-0.2,0.2-0.4,0.5-0.5,0.7c0,0,0,0,0,0c-0.2,0.2-0.3,0.5-0.5,0.7c0,0.1-0.1,0.1-0.1,0.2
c-0.1,0.2-0.2,0.4-0.3,0.5c0,0.1-0.1,0.2-0.1,0.2c-0.1,0.2-0.2,0.3-0.2,0.5c0,0.1-0.1,0.1-0.1,0.2c-0.1,0.2-0.2,0.5-0.2,0.7
c0,0,0,0,0,0c-0.1,0.2-0.1,0.5-0.2,0.7c0,0.1,0,0.1,0,0.2c0,0.2,0,0.3-0.1,0.5c0,0.1,0,0.2,0,0.3c0,0.2,0,0.3,0,0.5
c0,0.1,0,0.2,0,0.2c0,0.2,0,0.5,0.1,0.7c0.1,0.4,0.2,0.8,0.3,1.1C197.3,308.2,207.5,311.6,219,309.7z"/>
<path class="st4" d="M192.4,301.9c0.4,2.2,1.6,4,3.6,5.5c0.2,0.2,0.4,0.3,0.6,0.5c3.3,2.3,8.2,3.6,13.9,3.7c2.2,0,4.5-0.2,6.9-0.6
c7.1-1.2,13.2-4.1,16.9-7.6c0.8-0.8,1.5-1.6,2.1-2.5c0.6-0.8,1-1.7,1.3-2.6c0.3-0.9,0.5-1.8,0.5-2.7c0-0.4,0-0.9-0.1-1.3
c-0.3-1.8-1.2-3.4-2.6-4.7c-0.4-0.3-0.7-0.7-1.2-1c-0.8-0.6-1.8-1.2-2.8-1.6c-1.4-0.7-3.1-1.2-4.8-1.6c-0.8-0.2-1.6-0.3-2.4-0.4
c-1.3-0.2-2.7-0.3-4.2-0.3c0,0,0,0-0.1,0c-1.5,0-3,0.1-4.5,0.2c-0.8,0.1-1.6,0.2-2.4,0.3c-2.4,0.4-4.6,1-6.7,1.7
C197.4,290.1,191.4,296.1,192.4,301.9z"/>
<path class="st2" d="M213.1,358.1c0.8,0,1.6-0.2,2.5-0.5c4-1.6,4.2-8.6,3.2-15.3c-5.7,1.8-10.8,4.7-15.2,7.3
C206,354.2,209.2,358.1,213.1,358.1z"/>
<path class="st2" d="M232.4,353.5c0.7,0.2,1.8,0.5,3.2,0.5c3.7,0,8.8-1.8,8.1-10.4c-0.1-0.8-0.1-1.8-0.1-2.9c-1.7,0-3.5,0-5.2-0.1
c-2.9-0.1-5.5-0.1-7.8-0.1c-1.8,0-3.2,0-4.3,0.2C227.9,346.7,230.1,352.6,232.4,353.5z"/>
<path class="st3" d="M247.5,305c0,0-7,16-26.2,19c-5,0.8-9.3,1.1-12.9,1.1c-10.3,0-15.3-2.7-17.8-5.6c0,0-18.4,5.3-20,16.6
c-1.2,8.5,7.2,12.8,14.6,12.8c2.5,0,4.9-0.5,6.7-1.5c7.4-4,18.4-12.6,33.2-14.5c1.3-0.2,3.2-0.2,5.4-0.2c5,0,11.9,0.3,18.6,0.3
c7.6,0,14.9-0.4,18.9-2.2c9.1-4,9.1-10.7,8.5-14.1C275.9,312.9,270.4,305.2,247.5,305z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 20 KiB