Merge pull request #269 from harshcut/host-image
[feat]: host skill icons
@@ -1,3 +1,177 @@
|
||||
// Programming Languages
|
||||
import c from '../images/icons/ProgrammingLanguages/c.svg';
|
||||
import clojure from "../images/icons/ProgrammingLanguages/clojure.svg";
|
||||
import coffeescript from "../images/icons/ProgrammingLanguages/coffeescript.svg";
|
||||
import cpp from "../images/icons/ProgrammingLanguages/cpp.svg";
|
||||
import csharp from "../images/icons/ProgrammingLanguages/csharp.svg";
|
||||
import elixir from "../images/icons/ProgrammingLanguages/elixir.svg";
|
||||
import erlang from "../images/icons/ProgrammingLanguages/erlang.svg";
|
||||
import go from "../images/icons/ProgrammingLanguages/go.svg";
|
||||
import haskell from "../images/icons/ProgrammingLanguages/haskell.svg";
|
||||
import java from "../images/icons/ProgrammingLanguages/java.svg";
|
||||
import javascript from "../images/icons/ProgrammingLanguages/javascript.svg";
|
||||
import objetivec from "../images/icons/ProgrammingLanguages/objectivec.svg";
|
||||
import perl from "../images/icons/ProgrammingLanguages/perl.svg";
|
||||
import php from "../images/icons/ProgrammingLanguages/php.svg";
|
||||
import python from "../images/icons/ProgrammingLanguages/python.svg";
|
||||
import ruby from "../images/icons/ProgrammingLanguages/ruby.svg";
|
||||
import rust from "../images/icons/ProgrammingLanguages/rust.svg";
|
||||
import scala from "../images/icons/ProgrammingLanguages/scala.svg";
|
||||
import swift from "../images/icons/ProgrammingLanguages/swift.svg";
|
||||
import typescript from "../images/icons/ProgrammingLanguages/typescript.svg";
|
||||
|
||||
// Frontend Development
|
||||
import angularjs from "../images/icons/FrontendDevelopment/angularjs.svg";
|
||||
import babel from "../images/icons/FrontendDevelopment/babel.svg";
|
||||
import backbonejs from "../images/icons/FrontendDevelopment/backbonejs.svg";
|
||||
import bootstrap from "../images/icons/FrontendDevelopment/bootstrap.svg";
|
||||
import bulma from "../images/icons/FrontendDevelopment/bulma.svg";
|
||||
import css from "../images/icons/FrontendDevelopment/css.svg";
|
||||
import ember from "../images/icons/FrontendDevelopment/ember.svg";
|
||||
import gtk from "../images/icons/FrontendDevelopment/gtk.svg";
|
||||
import gulp from "../images/icons/FrontendDevelopment/gulp.svg";
|
||||
import html from "../images/icons/FrontendDevelopment/html.svg";
|
||||
import materialize from "../images/icons/FrontendDevelopment/materialize.svg";
|
||||
import meteor from "../images/icons/FrontendDevelopment/meteor.svg"
|
||||
import pug from "../images/icons/FrontendDevelopment/pug.svg";
|
||||
import qt from "../images/icons/FrontendDevelopment/qt.svg";
|
||||
import reactjs from "../images/icons/FrontendDevelopment/reactjs.svg";
|
||||
import redux from "../images/icons/FrontendDevelopment/redux.svg";
|
||||
import sass from "../images/icons/FrontendDevelopment/sass.svg";
|
||||
import svelte from "../images/icons/FrontendDevelopment/svelte.svg";
|
||||
import tailwind from "../images/icons/FrontendDevelopment/tailwind.svg";
|
||||
import vuejs from "../images/icons/FrontendDevelopment/vuejs.svg";
|
||||
import vuetify from "../images/icons/FrontendDevelopment/vuetify.svg";
|
||||
import webpack from "../images/icons/FrontendDevelopment/webpack.svg";
|
||||
import wxwidgets from "../images/icons/FrontendDevelopment/wxwidgets.svg";
|
||||
|
||||
// Backend Development
|
||||
import express from "../images/icons/BackendDevelopment/express.svg";
|
||||
import graphql from "../images/icons/BackendDevelopment/graphql.svg";
|
||||
import hadoop from "../images/icons/BackendDevelopment/hadoop.svg";
|
||||
import kafka from "../images/icons/BackendDevelopment/kafka.svg";
|
||||
import nginx from "../images/icons/BackendDevelopment/nginx.svg";
|
||||
import nodejs from "../images/icons/BackendDevelopment/nodejs.svg";
|
||||
import openresty from "../images/icons/BackendDevelopment/openresty.svg";
|
||||
import rabbitmq from "../images/icons/BackendDevelopment/rabbitmq.svg";
|
||||
import solr from "../images/icons/BackendDevelopment/solr.svg";
|
||||
import spring from "../images/icons/BackendDevelopment/spring.svg";
|
||||
|
||||
// Mobile App Development
|
||||
import android from "../images/icons/MobileAppDevelopment/android.svg";
|
||||
import apachecordova from "../images/icons/MobileAppDevelopment/apachecordova.svg";
|
||||
import dart from "../images/icons/MobileAppDevelopment/dart.svg";
|
||||
import flutter from "../images/icons/MobileAppDevelopment/flutter.svg";
|
||||
import ionic from "../images/icons/MobileAppDevelopment/ionic.svg";
|
||||
import kotlin from "../images/icons/MobileAppDevelopment/kotlin.svg";
|
||||
import nativescript from "../images/icons/MobileAppDevelopment/nativescript.svg";
|
||||
import reactnative from "../images/icons/MobileAppDevelopment/reactnative.svg";
|
||||
import xamarin from "../images/icons/MobileAppDevelopment/xamarin.svg";
|
||||
|
||||
// AI/ML
|
||||
import opencv from "../images/icons/AIML/opencv.svg";
|
||||
import pytorch from "../images/icons/AIML/pytorch.svg";
|
||||
import scikit from "../images/icons/AIML/scikit.svg";
|
||||
import tensorflow from "../images/icons/AIML/tensorflow.svg";
|
||||
|
||||
// Database
|
||||
import cassandra from "../images/icons/Database/cassandra.svg";
|
||||
import cockroachdb from "../images/icons/Database/cockroachdb.svg";
|
||||
import couchdb from "../images/icons/Database/couchdb.svg";
|
||||
import elasticsearch from "../images/icons/Database/elasticsearch.svg";
|
||||
import hive from "../images/icons/Database/hive.svg";
|
||||
import mariadb from "../images/icons/Database/mariadb.svg";
|
||||
import mongodb from "../images/icons/Database/mongodb.svg";
|
||||
import mysql from "../images/icons/Database/mysql.svg";
|
||||
import oracle from "../images/icons/Database/oracle.svg";
|
||||
import postgresql from "../images/icons/Database/postgresql.svg";
|
||||
import realm from "../images/icons/Database/realm.svg";
|
||||
import redis from "../images/icons/Database/redis.svg";
|
||||
import sqlite from "../images/icons/Database/sqlite.svg";
|
||||
|
||||
// Data Visualization
|
||||
import canvasjs from "../images/icons/DataVisualization/canvasjs.svg";
|
||||
import chartjs from "../images/icons/DataVisualization/chartjs.svg";
|
||||
import d3js from "../images/icons/DataVisualization/d3js.svg";
|
||||
import grafana from "../images/icons/DataVisualization/grafana.svg";
|
||||
import kibana from "../images/icons/DataVisualization/kibana.svg";
|
||||
|
||||
// Devops
|
||||
import aws from "../images/icons/Devops/aws.svg";
|
||||
import azure from "../images/icons/Devops/azure.svg";
|
||||
import bash from "../images/icons/Devops/bash.svg";
|
||||
import circleci from "../images/icons/Devops/circleci.svg";
|
||||
import docker from "../images/icons/Devops/docker.svg";
|
||||
import gcp from "../images/icons/Devops/gcp.svg";
|
||||
import jenkins from "../images/icons/Devops/jenkins.svg";
|
||||
import kubernetes from "../images/icons/Devops/kubernetes.svg";
|
||||
import travisci from "../images/icons/Devops/travisci.svg";
|
||||
import vagrant from "../images/icons/Devops/vagrant.svg";
|
||||
|
||||
// Backend as a Service(BaaS)
|
||||
import amplify from "../images/icons/BaaS/amplify.svg";
|
||||
import firebase from "../images/icons/BaaS/firebase.svg";
|
||||
import heroku from "../images/icons/BaaS/heroku.svg";
|
||||
|
||||
// Framework
|
||||
import codeigniter from "../images/icons/Framework/codeigniter.svg";
|
||||
import django from "../images/icons/Framework/django.svg";
|
||||
import dotnet from "../images/icons/Framework/dotnet.svg";
|
||||
import electron from "../images/icons/Framework/electron.svg";
|
||||
import flask from "../images/icons/Framework/flask.svg";
|
||||
import laravel from "../images/icons/Framework/laravel.svg";
|
||||
import quasar from "../images/icons/Framework/quasar.svg";
|
||||
import rails from "../images/icons/Framework/rails.svg";
|
||||
import symfony from "../images/icons/Framework/symfony.svg";
|
||||
|
||||
// Testing
|
||||
import cypress from "../images/icons/Testing/cypress.svg";
|
||||
import jasmine from "../images/icons/Testing/jasmine.svg";
|
||||
import jest from "../images/icons/Testing/jest.svg";
|
||||
import karma from "../images/icons/Testing/karma.svg";
|
||||
import mocha from "../images/icons/Testing/mocha.svg";
|
||||
import puppeteer from "../images/icons/Testing/puppeteer.svg";
|
||||
import selenium from "../images/icons/Testing/selenium.svg";
|
||||
|
||||
// Software
|
||||
import blender from "../images/icons/Software/blender.svg";
|
||||
import figma from "../images/icons/Software/figma.svg";
|
||||
import framer from "../images/icons/Software/framer.svg";
|
||||
import illustrator from "../images/icons/Software/illustrator.svg";
|
||||
import invision from "../images/icons/Software/invision.svg";
|
||||
import photoshop from "../images/icons/Software/photoshop.svg";
|
||||
import postman from "../images/icons/Software/postman.svg";
|
||||
import sketch from "../images/icons/Software/sketch.svg";
|
||||
import solidworks from "../images/icons/Software/solidworks.svg";
|
||||
import xd from "../images/icons/Software/xd.svg";
|
||||
|
||||
// Static Site Generators
|
||||
import eleventy from "../images/icons/StaticSiteGenerators/11ty.svg";
|
||||
import gatsby from "../images/icons/StaticSiteGenerators/gatsby.svg";
|
||||
import grindsome from "../images/icons/StaticSiteGenerators/gridsome.svg";
|
||||
import hexo from "../images/icons/StaticSiteGenerators/hexo.svg";
|
||||
import hugo from "../images/icons/StaticSiteGenerators/hugo.svg";
|
||||
import jekyll from "../images/icons/StaticSiteGenerators/jekyll.svg";
|
||||
import middleman from "../images/icons/StaticSiteGenerators/middleman.svg";
|
||||
import nextjs from "../images/icons/StaticSiteGenerators/nextjs.svg";
|
||||
import nuxtjs from "../images/icons/StaticSiteGenerators/nuxtjs.svg";
|
||||
import sapper from "../images/icons/StaticSiteGenerators/sapper.svg";
|
||||
import scully from "../images/icons/StaticSiteGenerators/scully.svg";
|
||||
import sculpin from "../images/icons/StaticSiteGenerators/sculpin.svg";
|
||||
import vuepress from "../images/icons/StaticSiteGenerators/vuepress.svg";
|
||||
|
||||
// Game Engines
|
||||
import unity from "../images/icons/GameEngines/unity.svg";
|
||||
import unreal from "../images/icons/GameEngines/unreal.svg";
|
||||
|
||||
// Automation
|
||||
import zapier from "../images/icons/Automation/zapier.svg";
|
||||
|
||||
// Other
|
||||
import arduino from "../images/icons/Other/arduino.svg";
|
||||
import git from "../images/icons/Other/git.svg";
|
||||
import linux from "../images/icons/Other/linux.svg";
|
||||
|
||||
//const baseURL = 'https://devicons.github.io/devicon/devicon.git/icons/';
|
||||
const categorizedSkills = {
|
||||
language: {
|
||||
@@ -220,178 +394,149 @@ const categorizedSkills = {
|
||||
}
|
||||
|
||||
const icons = {
|
||||
vuejs:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/vuejs/vuejs-original-wordmark.svg",
|
||||
react:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/react/react-original-wordmark.svg",
|
||||
angularjs:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/angularjs/angularjs-original.svg",
|
||||
aws:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/amazonwebservices/amazonwebservices-original-wordmark.svg",
|
||||
android:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/android/android-original-wordmark.svg",
|
||||
arduino:
|
||||
"https://cdn.worldvectorlogo.com/logos/arduino-1.svg",
|
||||
backbonejs:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/backbonejs/backbonejs-original-wordmark.svg",
|
||||
bootstrap:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/bootstrap/bootstrap-plain.svg",
|
||||
c: "https://devicons.github.io/devicon/devicon.git/icons/c/c-original.svg",
|
||||
canvasjs: "https://raw.githubusercontent.com/Hardik0307/Hardik0307/master/assets/canvasjs-charts.svg",
|
||||
coffeescript: "https://devicons.github.io/devicon/devicon.git/icons/coffeescript/coffeescript-original-wordmark.svg",
|
||||
codeigniter: "https://cdn.worldvectorlogo.com/logos/codeigniter.svg",
|
||||
cplusplus: "https://devicons.github.io/devicon/devicon.git/icons/cplusplus/cplusplus-original.svg",
|
||||
css3: "https://devicons.github.io/devicon/devicon.git/icons/css3/css3-original-wordmark.svg",
|
||||
csharp: "https://devicons.github.io/devicon/devicon.git/icons/csharp/csharp-original.svg",
|
||||
d3js: "https://devicons.github.io/devicon/devicon.git/icons/d3js/d3js-original.svg",
|
||||
django: "https://devicons.github.io/devicon/devicon.git/icons/django/django-original.svg",
|
||||
docker: "https://devicons.github.io/devicon/devicon.git/icons/docker/docker-original-wordmark.svg",
|
||||
dotnet: "https://devicons.github.io/devicon/devicon.git/icons/dot-net/dot-net-original-wordmark.svg",
|
||||
electron: "https://devicons.github.io/devicon/devicon.git/icons/electron/electron-original.svg",
|
||||
express: "https://devicons.github.io/devicon/devicon.git/icons/express/express-original-wordmark.svg",
|
||||
go: "https://devicons.github.io/devicon/devicon.git/icons/go/go-original.svg",
|
||||
graphql: "https://www.vectorlogo.zone/logos/graphql/graphql-icon.svg",
|
||||
gulp: "https://devicons.github.io/devicon/devicon.git/icons/gulp/gulp-plain.svg",
|
||||
html5: "https://devicons.github.io/devicon/devicon.git/icons/html5/html5-original-wordmark.svg",
|
||||
hugo: "https://api.iconify.design/logos-hugo.svg",
|
||||
java: "https://devicons.github.io/devicon/devicon.git/icons/java/java-original-wordmark.svg",
|
||||
javascript: "https://devicons.github.io/devicon/devicon.git/icons/javascript/javascript-original.svg",
|
||||
ionic: "https://upload.wikimedia.org/wikipedia/commons/d/d1/Ionic_Logo.svg",
|
||||
laravel:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/laravel/laravel-plain-wordmark.svg",
|
||||
meteor:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/meteor/meteor-original-wordmark.svg",
|
||||
mongodb:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/mongodb/mongodb-original-wordmark.svg",
|
||||
mysql:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/mysql/mysql-original-wordmark.svg",
|
||||
nginx:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/nginx/nginx-original.svg",
|
||||
nodejs:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/nodejs/nodejs-original-wordmark.svg",
|
||||
openresty:
|
||||
"https://symbols-electrical.getvecta.com/stencil_25/66_openresty.403a21ca72.svg",
|
||||
oracle:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/oracle/oracle-original.svg",
|
||||
photoshop:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/photoshop/photoshop-plain.svg",
|
||||
xd:
|
||||
"https://cdn.worldvectorlogo.com/logos/adobe-xd.svg",
|
||||
php:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/php/php-original.svg",
|
||||
perl:
|
||||
"https://api.iconify.design/logos-perl.svg",
|
||||
postgresql:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/postgresql/postgresql-original-wordmark.svg",
|
||||
python:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/python/python-original.svg",
|
||||
rails:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/rails/rails-original-wordmark.svg",
|
||||
redis:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/redis/redis-original-wordmark.svg",
|
||||
ruby:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/ruby/ruby-original-wordmark.svg",
|
||||
rust:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/rust/rust-plain.svg",
|
||||
sass:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/sass/sass-original.svg",
|
||||
scala:
|
||||
"https://devicons.github.io/devicon/devicon.git/icons/scala/scala-original-wordmark.svg",
|
||||
solidworks:
|
||||
"https://cdn.worldvectorlogo.com/logos/solidworks.svg",
|
||||
symfony: "https://symfony.com/logos/symfony_black_03.svg",
|
||||
spring: "https://www.vectorlogo.zone/logos/springio/springio-icon.svg",
|
||||
swift: "https://devicons.github.io/devicon/devicon.git/icons/swift/swift-original-wordmark.svg",
|
||||
typescript: "https://devicons.github.io/devicon/devicon.git/icons/typescript/typescript-original.svg",
|
||||
linux: "https://devicons.github.io/devicon/devicon.git/icons/linux/linux-original.svg",
|
||||
redux: "https://devicons.github.io/devicon/devicon.git/icons/redux/redux-original.svg",
|
||||
webpack: "https://devicons.github.io/devicon/devicon.git/icons/webpack/webpack-original.svg",
|
||||
flutter: "https://www.vectorlogo.zone/logos/flutterio/flutterio-icon.svg",
|
||||
dart: "https://www.vectorlogo.zone/logos/dartlang/dartlang-icon.svg",
|
||||
kotlin: "https://www.vectorlogo.zone/logos/kotlinlang/kotlinlang-icon.svg",
|
||||
tensorflow: "https://www.vectorlogo.zone/logos/tensorflow/tensorflow-icon.svg",
|
||||
chartjs: "https://www.chartjs.org/media/logo-title.svg",
|
||||
jenkins: "https://www.vectorlogo.zone/logos/jenkins/jenkins-icon.svg",
|
||||
gcp: "https://www.vectorlogo.zone/logos/google_cloud/google_cloud-icon.svg",
|
||||
kubernetes: "https://www.vectorlogo.zone/logos/kubernetes/kubernetes-icon.svg",
|
||||
azure: "https://www.vectorlogo.zone/logos/microsoft_azure/microsoft_azure-icon.svg",
|
||||
git: "https://www.vectorlogo.zone/logos/git-scm/git-scm-icon.svg",
|
||||
kafka: "https://www.vectorlogo.zone/logos/apache_kafka/apache_kafka-icon.svg",
|
||||
solr: "https://www.vectorlogo.zone/logos/apache_solr/apache_solr-icon.svg",
|
||||
cassandra: "https://www.vectorlogo.zone/logos/apache_cassandra/apache_cassandra-icon.svg",
|
||||
rabbitMQ: "https://www.vectorlogo.zone/logos/rabbitmq/rabbitmq-icon.svg",
|
||||
hadoop: "https://www.vectorlogo.zone/logos/apache_hadoop/apache_hadoop-icon.svg",
|
||||
bash: "https://www.vectorlogo.zone/logos/gnu_bash/gnu_bash-icon.svg",
|
||||
pytorch: "https://www.vectorlogo.zone/logos/pytorch/pytorch-icon.svg",
|
||||
opencv: "https://www.vectorlogo.zone/logos/opencv/opencv-icon.svg",
|
||||
illustrator: "https://www.vectorlogo.zone/logos/adobe_illustrator/adobe_illustrator-icon.svg",
|
||||
figma: "https://www.vectorlogo.zone/logos/figma/figma-icon.svg",
|
||||
blender: "https://download.blender.org/branding/community/blender_community_badge_white.svg",
|
||||
babel: "https://www.vectorlogo.zone/logos/babeljs/babeljs-icon.svg",
|
||||
sketch: "https://www.vectorlogo.zone/logos/sketchapp/sketchapp-icon.svg",
|
||||
flask: "https://www.vectorlogo.zone/logos/pocoo_flask/pocoo_flask-icon.svg",
|
||||
nativescript: "https://raw.githubusercontent.com/detain/svg-logos/780f25886640cef088af994181646db2f6b1a3f8/svg/nativescript.svg",
|
||||
xamarin: "https://raw.githubusercontent.com/detain/svg-logos/780f25886640cef088af994181646db2f6b1a3f8/svg/xamarin.svg",
|
||||
vagrant: "https://www.vectorlogo.zone/logos/vagrantup/vagrantup-icon.svg",
|
||||
tailwind: "https://www.vectorlogo.zone/logos/tailwindcss/tailwindcss-icon.svg",
|
||||
materialize: "https://raw.githubusercontent.com/prplx/svg-logos/5585531d45d294869c4eaab4d7cf2e9c167710a9/svg/materialize.svg",
|
||||
invision: "https://www.vectorlogo.zone/logos/invisionapp/invisionapp-icon.svg",
|
||||
framer: "https://www.vectorlogo.zone/logos/framer/framer-icon.svg",
|
||||
bulma: "https://raw.githubusercontent.com/gilbarbara/logos/804dc257b59e144eaca5bc6ffd16949752c6f789/logos/bulma.svg",
|
||||
couchdb: "https://raw.githubusercontent.com/devicons/devicon/0d6c64dbbf311879f7d563bfc3ccf559f9ed111c/icons/couchdb/couchdb-original.svg",
|
||||
firebase: "https://www.vectorlogo.zone/logos/firebase/firebase-icon.svg",
|
||||
amplify: "https://docs.amplify.aws/assets/logo-dark.svg",
|
||||
hive: "https://www.vectorlogo.zone/logos/apache_hive/apache_hive-icon.svg",
|
||||
realm: "https://raw.githubusercontent.com/bestofjs/bestofjs-webui/8665e8c267a0215f3159df28b33c365198101df5/public/logos/realm.svg",
|
||||
gatsby: "https://www.vectorlogo.zone/logos/gatsbyjs/gatsbyjs-icon.svg",
|
||||
gridsome: "https://www.vectorlogo.zone/logos/gridsome/gridsome-icon.svg",
|
||||
nuxtjs: "https://www.vectorlogo.zone/logos/nuxtjs/nuxtjs-icon.svg",
|
||||
jekyll: "https://www.vectorlogo.zone/logos/jekyllrb/jekyllrb-icon.svg",
|
||||
nextjs: "https://cdn.worldvectorlogo.com/logos/nextjs-3.svg",
|
||||
reactnative: "https://reactnative.dev/img/header_logo.svg",
|
||||
mariadb: "https://www.vectorlogo.zone/logos/mariadb/mariadb-icon.svg",
|
||||
cockroachdb: "https://cdn.worldvectorlogo.com/logos/cockroachdb.svg",
|
||||
objectivec: "https://www.vectorlogo.zone/logos/apple_objectivec/apple_objectivec-icon.svg",
|
||||
clojure: "https://upload.wikimedia.org/wikipedia/commons/5/5d/Clojure_logo.svg",
|
||||
haskell: "https://upload.wikimedia.org/wikipedia/commons/1/1c/Haskell-Logo.svg",
|
||||
svelte: "https://upload.wikimedia.org/wikipedia/commons/1/1b/Svelte_Logo.svg",
|
||||
vuetify: "https://bestofjs.org/logos/vuetify.svg",
|
||||
pug: "https://cdn.worldvectorlogo.com/logos/pug.svg",
|
||||
mocha: "https://www.vectorlogo.zone/logos/mochajs/mochajs-icon.svg",
|
||||
jest: "https://www.vectorlogo.zone/logos/jestjsio/jestjsio-icon.svg",
|
||||
cypress: "https://raw.githubusercontent.com/simple-icons/simple-icons/6e46ec1fc23b60c8fd0d2f2ff46db82e16dbd75f/icons/cypress.svg",
|
||||
selenium: "https://raw.githubusercontent.com/detain/svg-logos/780f25886640cef088af994181646db2f6b1a3f8/svg/selenium-logo.svg",
|
||||
puppeteer: "https://www.vectorlogo.zone/logos/pptrdev/pptrdev-official.svg",
|
||||
karma: "https://raw.githubusercontent.com/detain/svg-logos/780f25886640cef088af994181646db2f6b1a3f8/svg/karma.svg",
|
||||
jasmine: "https://www.vectorlogo.zone/logos/jasmine/jasmine-icon.svg",
|
||||
gtk: "https://upload.wikimedia.org/wikipedia/commons/7/71/GTK_logo.svg",
|
||||
qt: "https://upload.wikimedia.org/wikipedia/commons/0/0b/Qt_logo_2016.svg",
|
||||
wx_widgets: "https://upload.wikimedia.org/wikipedia/commons/b/bb/WxWidgets.svg",
|
||||
ember: "https://devicons.github.io/devicon/devicon.git/icons/ember/ember-original-wordmark.svg",
|
||||
scikit_learn: "https://upload.wikimedia.org/wikipedia/commons/0/05/Scikit_learn_logo_small.svg",
|
||||
quasar: "https://cdn.quasar.dev/logo/svg/quasar-logo.svg",
|
||||
kibana: "https://www.vectorlogo.zone/logos/elasticco_kibana/elasticco_kibana-icon.svg",
|
||||
grafana: "https://www.vectorlogo.zone/logos/grafana/grafana-icon.svg",
|
||||
elasticsearch: "https://www.vectorlogo.zone/logos/elastic/elastic-icon.svg",
|
||||
circleci: "https://www.vectorlogo.zone/logos/circleci/circleci-icon.svg",
|
||||
scully: "https://raw.githubusercontent.com/scullyio/scully/main/assets/logos/SVG/scullyio-icon.svg",
|
||||
"11ty": "https://gist.githubusercontent.com/vivek32ta/c7f7bf583c1fb1c58d89301ea40f37fd/raw/f4c85cce5790758286b8f155ef9a177710b995df/11ty.svg",
|
||||
sculpin: "https://gist.githubusercontent.com/vivek32ta/c7f7bf583c1fb1c58d89301ea40f37fd/raw/1782aef8672484698c0dd407f900c4a329ed5bc4/sculpin.svg",
|
||||
sapper: "https://raw.githubusercontent.com/bestofjs/bestofjs-webui/master/public/logos/sapper.svg",
|
||||
vuepress: "https://raw.githubusercontent.com/AliasIO/wappalyzer/master/src/drivers/webextension/images/icons/VuePress.svg",
|
||||
unity: "https://www.vectorlogo.zone/logos/unity3d/unity3d-icon.svg",
|
||||
unreal: "https://raw.githubusercontent.com/kenangundogan/fontisto/036b7eca71aab1bef8e6a0518f7329f13ed62f6b/icons/svg/brand/unreal-engine.svg",
|
||||
elixir: "https://www.vectorlogo.zone/logos/elixir-lang/elixir-lang-icon.svg",
|
||||
heroku: "https://www.vectorlogo.zone/logos/heroku/heroku-icon.svg",
|
||||
coffeescript: "https://www.vectorlogo.zone/logos/coffeescript/coffeescript-icon.svg",
|
||||
hexo: "https://www.vectorlogo.zone/logos/hexoio/hexoio-icon.svg",
|
||||
travisci: "https://www.vectorlogo.zone/logos/travis-ci/travis-ci-icon.svg",
|
||||
apachecordova: "https://www.vectorlogo.zone/logos/apache_cordova/apache_cordova-icon.svg",
|
||||
zapier: "https://www.vectorlogo.zone/logos/zapier/zapier-icon.svg",
|
||||
postman: "https://www.vectorlogo.zone/logos/getpostman/getpostman-icon.svg",
|
||||
erlang: "https://www.vectorlogo.zone/logos/erlang/erlang-official.svg",
|
||||
sqlite: "https://www.vectorlogo.zone/logos/sqlite/sqlite-icon.svg",
|
||||
middleman: "https://raw.githubusercontent.com/leungwensen/svg-icon/b84b3f3a3da329b7c1d02346865f8e98beb05413/dist/svg/logos/middleman.svg"
|
||||
vuejs: vuejs,
|
||||
react: reactjs,
|
||||
angularjs: angularjs,
|
||||
aws: aws,
|
||||
android: android,
|
||||
arduino: arduino,
|
||||
backbonejs: backbonejs,
|
||||
bootstrap: bootstrap,
|
||||
c: c,
|
||||
canvasjs: canvasjs,
|
||||
coffeescript: coffeescript,
|
||||
codeigniter: codeigniter,
|
||||
cplusplus: cpp,
|
||||
css3: css,
|
||||
csharp: csharp,
|
||||
d3js: d3js,
|
||||
django: django,
|
||||
docker: docker,
|
||||
dotnet: dotnet,
|
||||
electron: electron,
|
||||
express: express,
|
||||
go: go,
|
||||
graphql: graphql,
|
||||
gulp: gulp,
|
||||
html5: html,
|
||||
hugo: hugo,
|
||||
java: java,
|
||||
javascript: javascript,
|
||||
ionic: ionic,
|
||||
laravel: laravel,
|
||||
meteor: meteor,
|
||||
mongodb: mongodb,
|
||||
mysql: mysql,
|
||||
nginx: nginx,
|
||||
nodejs: nodejs,
|
||||
openresty: openresty,
|
||||
oracle: oracle,
|
||||
photoshop: photoshop,
|
||||
xd: xd,
|
||||
php: php,
|
||||
perl: perl,
|
||||
postgresql: postgresql,
|
||||
python: python,
|
||||
rails: rails,
|
||||
redis: redis,
|
||||
ruby: ruby,
|
||||
rust: rust,
|
||||
sass: sass,
|
||||
scala: scala,
|
||||
solidworks: solidworks,
|
||||
symfony: symfony,
|
||||
spring: spring,
|
||||
swift: swift,
|
||||
typescript: typescript,
|
||||
linux: linux,
|
||||
redux: redux,
|
||||
webpack: webpack,
|
||||
flutter: flutter,
|
||||
dart: dart,
|
||||
kotlin: kotlin,
|
||||
tensorflow: tensorflow,
|
||||
chartjs: chartjs,
|
||||
jenkins: jenkins,
|
||||
gcp: gcp,
|
||||
kubernetes: kubernetes,
|
||||
azure: azure,
|
||||
git: git,
|
||||
kafka: kafka,
|
||||
solr: solr,
|
||||
cassandra: cassandra,
|
||||
rabbitMQ: rabbitmq,
|
||||
hadoop: hadoop,
|
||||
bash: bash,
|
||||
pytorch: pytorch,
|
||||
opencv: opencv,
|
||||
illustrator: illustrator,
|
||||
figma: figma,
|
||||
blender: blender,
|
||||
babel: babel,
|
||||
sketch: sketch,
|
||||
flask: flask,
|
||||
nativescript: nativescript,
|
||||
xamarin: xamarin,
|
||||
vagrant: vagrant,
|
||||
tailwind: tailwind,
|
||||
materialize: materialize,
|
||||
invision: invision,
|
||||
framer: framer,
|
||||
bulma: bulma,
|
||||
couchdb: couchdb,
|
||||
firebase: firebase,
|
||||
amplify: amplify,
|
||||
hive: hive,
|
||||
realm: realm,
|
||||
gatsby: gatsby,
|
||||
gridsome: grindsome,
|
||||
nuxtjs: nuxtjs,
|
||||
jekyll: jekyll,
|
||||
nextjs: nextjs,
|
||||
reactnative: reactnative,
|
||||
mariadb: mariadb,
|
||||
cockroachdb: cockroachdb,
|
||||
objectivec: objetivec,
|
||||
clojure: clojure,
|
||||
haskell: haskell,
|
||||
svelte: svelte,
|
||||
vuetify: vuetify,
|
||||
pug: pug,
|
||||
mocha: mocha,
|
||||
jest: jest,
|
||||
cypress: cypress,
|
||||
selenium: selenium,
|
||||
puppeteer: puppeteer,
|
||||
karma: karma,
|
||||
jasmine: jasmine,
|
||||
gtk: gtk,
|
||||
qt: qt,
|
||||
wx_widgets: wxwidgets,
|
||||
ember: ember,
|
||||
scikit_learn: scikit,
|
||||
quasar: quasar,
|
||||
kibana: kibana,
|
||||
grafana: grafana,
|
||||
elasticsearch: elasticsearch,
|
||||
circleci: circleci,
|
||||
scully: scully,
|
||||
"11ty": eleventy,
|
||||
sculpin: sculpin,
|
||||
sapper: sapper,
|
||||
vuepress: vuepress,
|
||||
unity: unity,
|
||||
unreal: unreal,
|
||||
elixir: elixir,
|
||||
heroku: heroku,
|
||||
coffeescript: coffeescript,
|
||||
hexo: hexo,
|
||||
travisci: travisci,
|
||||
apachecordova: apachecordova,
|
||||
zapier: zapier,
|
||||
postman: postman,
|
||||
erlang: erlang,
|
||||
sqlite: sqlite,
|
||||
middleman: middleman
|
||||
}
|
||||
|
||||
const skillWebsites = {
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 48" height="64" width="64"><defs><path d="M-69.65 120.638a139.301 139.301 120 1 1 139.301 0L27.71 47.993a55.418 55.418 120 1 0-55.418 0z" id="A"/></defs><g transform="matrix(1.275322 0 0 1.275322 -38.047246 -14.965624)"><use transform="matrix(.063405 0 0 .063405 29.66229 12.95855)" y="140" x="298" xlink:href="#A" fill="#ff0101"/><use transform="matrix(-.063405 0 0 -.063405 87.614835 65.58504)" y="415" x="457" xlink:href="#A" fill="#0101ff"/><use transform="matrix(-.031703 -.054911 .054911 -.031703 20.379704 60.225737)" y="415" x="142" xlink:href="#A" fill="#01ff01"/></g></svg>
|
||||
|
After Width: | Height: | Size: 682 B |
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#EE4C2C;}
|
||||
</style>
|
||||
<g transform="matrix(2.21262 0 0 2.21262 -39.453867 -1.770085)">
|
||||
<path class="st0" d="M35,7.2l-1.6,1.6c2.6,2.6,2.6,6.9,0,9.5c-2.6,2.6-6.9,2.6-9.5,0s-2.6-6.9,0-9.5l4.2-4.2L28.7,4V0.8l-6.4,6.4
|
||||
c-3.5,3.5-3.5,9.1-0.1,12.6c0,0,0,0,0.1,0.1c3.5,3.5,9.1,3.5,12.6,0.1c0,0,0,0,0.1-0.1C38.6,16.3,38.6,10.6,35,7.2z"/>
|
||||
<circle class="st0" cx="31.9" cy="5.5" r="1.2"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 770 B |
@@ -0,0 +1 @@
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 48 48" xml:space="preserve"><style>.st2{fill:#010101}</style><g id="g3" transform="translate(-120.60861 -220.26017)"><path id="path5" d="M157.4 253.3c5.9-5.9 6.8-14.4 2.2-19.1-4.7-4.7-13.2-3.7-19.1 2.2-5.9 5.9-4.2 17.1-2.2 19.1 1.7 1.6 13.3 3.7 19.1-2.2z" fill="#f89939"/><path id="path7" d="M133.4 244.8c-3.4-3.4-8.4-4-11.1-1.3-2.7 2.7-2.1 7.7 1.3 11.1 3.4 3.4 9.9 2.4 11.1 1.3.9-.9 2.1-7.7-1.3-11.1z" fill="#3499cd"/></g><g id="g9" transform="translate(-120.60861 -220.26017)"><g id="g11"><path id="path13" class="st2" d="M145.1 251.9c-.6.6-1.1 1-1.6 1.2-.5.3-.9.4-1.3.4-.5 0-.9-.2-1.1-.6-.3-.4-.4-.9-.4-1.5 0-.9.2-2 .6-3.3.4-1.3.9-2.5 1.5-3.6l1.7-.6h.1c.1 0 .2.1.3.3.1.2.1.4.1.8 0 .9-.2 1.8-.6 2.6-.4.8-1.1 1.7-1.9 2.7 0 .5-.1.8-.1.9 0 .4.1.7.2.9.1.2.3.3.6.3.2 0 .5-.1.8-.3.3-.2.7-.5 1.2-1.1l-.1.9zm-2.5-2.6c.6-.6 1-1.3 1.4-2.1.3-.8.5-1.4.5-2 0-.2 0-.3-.1-.4 0-.1-.1-.1-.2-.1-.2 0-.4.4-.7 1.2-.3.8-.6 1.9-.9 3.4z"/><path id="path15" class="st2" d="M150.1 251.9c-.6.6-1.1 1-1.5 1.2-.4.3-.9.4-1.5.4s-1.1-.2-1.5-.6c-.4-.4-.6-.9-.6-1.5 0-.9.3-1.8 1-2.5.6-.8 1.4-1.1 2.2-1.1.4 0 .7.1 1 .3.2.2.4.5.4.8 0 .9-1 1.7-2.9 2.2.2.9.6 1.3 1.4 1.3.3 0 .6-.1.8-.2.3-.2.7-.5 1.2-1v.7zm-3.5-1.2c1.1-.3 1.7-.9 1.7-1.8 0-.4-.2-.6-.5-.6s-.6.2-.8.7c-.3.4-.4.9-.4 1.7z"/><path id="path17" class="st2" d="M157.1 251.9c-.7.7-1.2 1.1-1.5 1.3-.3.2-.6.3-.9.3-.7 0-1-.6-1-1.8-.4.6-.8 1.1-1.2 1.4-.4.3-.8.5-1.2.5-.4 0-.7-.2-1-.5s-.4-.8-.4-1.3c0-.7.2-1.3.5-1.9.4-.6.8-1.1 1.4-1.5.6-.4 1.1-.6 1.5-.6.6 0 .9.3 1.2.8l1.4-.7h.4l-.6 1.9c-.3 1-.5 1.6-.5 2 0 .4.1.6.4.6.2 0 .4-.1.6-.3.2-.2.5-.5.9-.8v.6zm-4.8.3c.4 0 .9-.4 1.3-1.1.4-.8.6-1.4.6-2.1 0-.2-.1-.4-.2-.6-.1-.1-.3-.2-.4-.2-.4 0-.9.4-1.3 1.1-.4.8-.6 1.4-.6 2.1 0 .2.1.4.2.6.1.2.2.2.4.2z"/><path id="path19" class="st2" d="M162.1 251.9c-1.1 1.1-2 1.6-2.6 1.6-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.8 0-.6.3-1.5 1-2.5-.3.2-.7.3-1.1.4-.3.5-.7 1.1-1.4 1.7v-.6c.3-.4.7-.7.9-1.2-.4-.2-.6-.4-.6-.7 0-.3.1-.7.3-1.1.2-.4.6-.6 1-.6.3 0 .5.2.5.5s-.1.7-.3 1.2c.7-.1 1.4-.6 1.9-1.7h.6l-.6 1.7c-.3.7-.4 1.2-.5 1.5-.1.3-.1.5-.1.7 0 .2 0 .3.1.4.1.1.2.2.3.2.2 0 .3-.1.5-.2.1-.1.5-.4 1-.9l.1.7z"/><path id="path21" class="st2" d="M168.6 251.9c-1 1.1-1.9 1.6-2.6 1.6-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.8 0-.5.2-1.2.6-2.2.2-.5.3-.9.3-1 0-.1-.1-.2-.2-.2s-.1 0-.2.1-.2.1-.3.3l-.4.4c-.1.1-.2.3-.4.4l-.4.4c-.2.2-.3.4-.3.6-.1.4-.1.7-.1 1v.9l-1.5.3c0-.6-.1-1-.1-1.3 0-.7.1-1.4.2-2 .2-.6.4-1.4.8-2.1l1.6-.3c-.3.9-.6 1.6-.7 2.2.7-.8 1.3-1.4 1.7-1.7.4-.3.8-.5 1.1-.5.2 0 .4.1.6.3.2.2.2.4.2.6 0 .4-.2 1.1-.6 2.1-.3.7-.4 1.1-.4 1.3 0 .3.1.4.3.4.3 0 .8-.4 1.6-1.3v.8z"/></g></g><text id="text25" transform="translate(26.54 25.2403)" font-size="3.9947" font-family="HelveticaNeue-BlackExt" fill="#fff">scikit</text></svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#F6BD3A;}
|
||||
.st1{fill:#EB8C23;}
|
||||
.st2{fill:#E35A2B;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M20.8,25.9l6.5-3.8l6.4,3.8l-6.4,3.7L20.8,25.9L20.8,25.9z M1.3,14.7L27.3,0l19.3,10.9L40.2,22l-12.9-7.3
|
||||
l-19.4,11L1.3,14.7z"/>
|
||||
<path class="st1" d="M20.8,40.6v-7.4l6.4-3.7l6.5-3.7v7.4l-6.4,3.7v7.4L20.8,48V40.6z M20.8,25.9l-6.5-3.7l-6.5,3.6v-7.3L27.3,7.3
|
||||
V22L20.8,25.9z M40.1,18.4v-3.7l6.4-3.8l0.1,7.4L40.1,22L40.1,18.4z"/>
|
||||
<path class="st2" d="M14.3,44.1v-22l6.4-3.6l0.1,7.3l6.5,3.6v7.4l-6.5-3.5V48L14.3,44.1z M4.6,23.8l-3.2-2v-7.2l6.4,3.7v7.4
|
||||
L4.6,23.8z M27.3,14.7V7.3l12.8,7.3l0.1,7.4L27.3,14.7L27.3,14.7z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 996 B |
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FF4A00;}
|
||||
</style>
|
||||
<path class="st0" d="M47.6,19.8H33.4l10-10c-0.8-1.2-1.5-1.9-2.3-3.1C40,5.9,38.9,5,38,4.1L28,14V0.2c-1.3-0.3-2.5-0.4-3.8-0.4
|
||||
c-1.3-0.1-2.6,0-3.8,0.4v14.2L10,4.1C8.8,4.7,7.8,5.6,6.9,6.7C6.2,7.9,5,8.7,4.2,9.8l10,10H0.4L0,23.6c-0.1,1.3,0,2.6,0.4,3.8h14.2
|
||||
L4.2,37.8c1.5,2.3,3.5,4.2,5.8,5.8l10-10v14.2c1.3,0.3,2.5,0.4,3.8,0.4c1.3,0.1,2.6,0,3.8-0.4V33.6l10,10c1.2-0.7,2.2-1.6,3.1-2.7
|
||||
c1-0.9,1.9-2,2.7-3.1l-10-10h14.2c0.3-1.3,0.4-2.5,0.4-3.8C48.1,22.6,47.9,21.2,47.6,19.8L47.6,19.8z M29.9,23.6
|
||||
c0,1.7-0.3,3.4-0.8,5c-1.6,0.6-3.3,0.9-5,0.8c-1.7,0-3.4-0.3-5-0.8c-0.6-1.6-0.9-3.3-0.8-5c0-1.7,0.3-3.4,0.8-5
|
||||
c1.6-0.6,3.3-0.9,5-0.8c1.7,0,3.4,0.3,5,0.8C29.6,20.3,29.9,21.9,29.9,23.6z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:url(#Fill-1_1_);}
|
||||
</style>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="Page-1">
|
||||
|
||||
<linearGradient id="Fill-1_1_" gradientUnits="userSpaceOnUse" x1="-266.2616" y1="433.4901" x2="-267.2616" y2="432.9336" gradientTransform="matrix(48 0 0 -35.8095 12831 15540.3857)">
|
||||
<stop offset="0" style="stop-color:#FF9900"/>
|
||||
<stop offset="1" style="stop-color:#FFC300"/>
|
||||
</linearGradient>
|
||||
<path id="Fill-1" class="st0" d="M10.4,35.8H24l3.5,6.1h-0.1H0l9.6-16.7l4-7l3.5,6L10.4,35.8z M15.5,15.1l3.3-5.8l18.8,32.6H31
|
||||
L15.5,15.1z M20.7,6.1h6.7L48,41.9h-6.7L20.7,6.1z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 951 B |
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFA000;}
|
||||
.st1{fill:#F57F17;}
|
||||
.st2{fill:#FFCA28;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M29.4,17.3l-4.8,4.5l-4.5-9l2.3-5.2c0.6-1,1.5-1,2.1,0L29.4,17.3z"/>
|
||||
<path class="st1" d="M20.2,12.8l4.5,9l-18,16.7L20.2,12.8z"/>
|
||||
<path class="st2" d="M34.7,10.5c0.9-0.8,1.7-0.5,2,0.6l4.7,27.2l-15.5,9.3c-0.5,0.3-2,0.4-2,0.4s-1.3-0.2-1.8-0.4L6.7,38.5
|
||||
L34.7,10.5z"/>
|
||||
<path class="st0" d="M20.2,12.8L6.7,38.5l6-37.6c0.2-1.2,0.9-1.3,1.5-0.3L20.2,12.8z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 833 B |
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 5.1 5.1" style="enable-background:new 0 0 5.1 5.1;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#6762A6;}
|
||||
.st1{fill:#FFFFFF;}
|
||||
</style>
|
||||
<path class="st0" d="M4.1,5.1H1c-0.3,0-0.5-0.2-0.5-0.5V0.5C0.5,0.2,0.7,0,1,0h3.2c0.3,0,0.5,0.2,0.5,0.5v4.1
|
||||
C4.6,4.9,4.4,5.1,4.1,5.1z"/>
|
||||
<path class="st1" d="M3,4.4v-2c0,0,0.1-0.5-1.6,0.2c0,0,0-1.9,0-1.9l0.6,0v1.2c0,0,1.6-0.6,1.6,0.5v2L3,4.4L3,4.4z M3.3,1.4H2.7
|
||||
c0.2-0.3,0.4-0.7,0.4-0.7h0.6C3.8,0.7,3.7,1,3.3,1.4L3.3,1.4z M1.4,4.4V3.3l0.6,0.6L1.4,4.4L1.4,4.4z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 795 B |
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<path d="M48,37.2c-1.7,0.4-2.8,0-3.8-1.4l-6.9-9.5l-1-1.3l-8,10.9c-0.9,1.3-1.9,1.9-3.6,1.4L35,23.4l-9.6-12.5
|
||||
c1.6-0.3,2.8-0.2,3.8,1.3l7.1,9.7l7.2-9.6c0.9-1.3,1.9-1.8,3.6-1.3l-3.7,4.9l-5,6.6c-0.6,0.8-0.5,1.3,0,2L48,37.2z M0,23.1L0.9,19
|
||||
C3.1,10.8,12.6,7.4,19,12.5c3.8,3,4.7,7.2,4.5,11.9H2.2C1.9,32.9,8,38,15.8,35.4c2.7-0.9,4.4-3.1,5.2-5.7c0.4-1.3,1.1-1.6,2.4-1.2
|
||||
c-0.6,3.4-2.1,6.2-5.2,7.9C13.6,39,7,38.2,3.6,34.5c-2.1-2.1-2.9-4.8-3.3-7.7c-0.1-0.5-0.2-0.9-0.3-1.4C0,24.7,0,23.9,0,23.1L0,23.1
|
||||
z M2.3,22.6h19.3c-0.1-6.1-4-10.5-9.2-10.6C6.6,12,2.5,16.2,2.3,22.6z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 915 B |
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#E10098;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M6.5,36.6l-1.8-1l19.6-34l1.8,1L6.5,36.6z"/>
|
||||
<path class="st0" d="M4.4,32.8h39.3v2H4.4V32.8z"/>
|
||||
<path class="st0" d="M24.8,45.3L5.1,34l1-1.8l19.6,11.3L24.8,45.3z M41.8,15.8L22.2,4.4l1-1.8L42.9,14L41.8,15.8z"/>
|
||||
<path class="st0" d="M6.2,15.8l-1-1.8L24.8,2.7l1,1.8L6.2,15.8z"/>
|
||||
<path class="st0" d="M41.5,36.6l-19.6-34l1.8-1l19.6,34L41.5,36.6z M5.9,12.7h2v22.7h-2V12.7z M40,12.7h2v22.7h-2V12.7z"/>
|
||||
<path class="st0" d="M24.4,44.5l-0.9-1.5l17.1-9.9l0.9,1.5L24.4,44.5z"/>
|
||||
<path class="st0" d="M44.8,36c-1.2,2-3.8,2.7-5.8,1.6c-2-1.2-2.7-3.8-1.6-5.8c1.2-2,3.8-2.7,5.8-1.6C45.3,31.3,46,34,44.8,36
|
||||
M10.6,16.3c-1.2,2-3.8,2.7-5.8,1.6C2.7,16.7,2,14,3.2,12c1.2-2,3.8-2.7,5.8-1.6C11.1,11.6,11.8,14.2,10.6,16.3 M3.2,36
|
||||
c-1.2-2-0.5-4.7,1.6-5.8c2-1.2,4.7-0.5,5.8,1.6c1.2,2,0.5,4.7-1.6,5.8C7,38.7,4.4,38,3.2,36 M37.4,16.3c-1.2-2-0.5-4.7,1.6-5.8
|
||||
c2-1.2,4.7-0.5,5.8,1.6c1.2,2,0.5,4.7-1.6,5.8C41.2,19,38.6,18.3,37.4,16.3 M24,48c-2.4,0-4.3-1.9-4.3-4.3c0-2.4,1.9-4.3,4.3-4.3
|
||||
s4.3,1.9,4.3,4.3c0,0,0,0,0,0C28.3,46.1,26.4,48,24,48 M24,8.6c-2.4,0-4.3-1.9-4.3-4.3c0,0,0,0,0,0C19.7,1.9,21.6,0,24,0
|
||||
s4.3,1.9,4.3,4.3C28.3,6.6,26.4,8.6,24,8.6C24,8.6,24,8.6,24,8.6"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,115 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFF00;}
|
||||
.st1{fill:#FFFFCC;}
|
||||
.st2{fill:#CCCC00;}
|
||||
</style>
|
||||
<path class="st0" d="M17.7,13.9l-3.2,0.5l-2.9,1.3l-2.5,1.6l-2.4,2.9l-1.3,1.4L4.1,22l-0.3-0.8l0.6-0.9l0.1-1.2l0.4,0l0.4,0.4
|
||||
l-0.1-1.2l-0.5-0.3l0-0.5l-1.1,0.6l-1,1.2l-0.2,1.1l0.4,0.9l0.4,1.5l0.8,0.4l0.9,0l0.8-0.5l-0.6,2.8l0.6,3.2l-0.6,1.5l-2,2.2
|
||||
l0.4,1.3l1,1.5l1.8,1.3l1,0.1l1.1,0l-0.7,2.7l2.4,1l3,0.4l1-0.7l0.1-1.8l1.2-1.9l0.1-1.5l2.8,0.2l2.6-0.2l-2.6,1.6l0.4,1.9l1.6,2.6
|
||||
l1.6,0.7l1.3-0.5l0.5-1l2.7-2l0.5,0.4l4.2,0.2l0.8-0.7l0.1-1.2l-0.3-0.5l-0.2-3.2l-1.4-2.8l0.2-1.2l0.8,0.4l2.4,2.2l1.2,0.1l1.3-0.5
|
||||
l1.3-1l0.6-2.1l3.7,0.2l2.3-0.9l1.8-1.7l1.3-2.5l0.3-2.9l-0.3-3.4l-0.7-3l-0.7-1l-1-0.3l-1.8,1.9l-1.6,0.6l-1.4-2.3l-1.4-1.3
|
||||
l-0.8-0.5l-3-2.5l-2.4-1.3l-2.4-0.2l-2.8,0.5l-2.5,0.9l-1.7,1.4l-1.4,1.6l-1.4,0.4L17.7,13.9"/>
|
||||
<path class="st1" d="M8.4,21.1c-2.7,3.2-2.1,7.1-1.4,10.8c-0.4-1-0.8-2-1.2-3.1L5.4,26c0-1,0.1-1.9,0.1-2.9l1.1-2.7l1.7-2.6l2.7-2.2
|
||||
l2.9-1.2l3.4-0.4l-3.2,3.6C11.7,18.4,10.2,19,8.4,21.1"/>
|
||||
<path class="st1" d="M21.3,11.4c-1.9,1.9-2.9,3.3-4.1,5.4c-0.9,1.6-1.8,3-2.7,4.6c-0.5,0.8-0.5,1.4-0.6,2.3l-1.3-1.6
|
||||
c0.2-0.6,0.4-1.3,0.6-1.9l2.2-3.9l4.6-4.5C20.3,11.6,20.8,11.5,21.3,11.4 M30.7,6.8c-1.5,0.6-4,0.8-4.2,2.5
|
||||
c-0.1,1.2,0.1,1.9,0.8,3.2c-1.8-1.9-2.3-1.6-5.9-1L23,9.3l2.7-1.7l3.4-0.8L30.7,6.8"/>
|
||||
<path class="st2" d="M34.9,30.4c0.5,0.3,0.5,0.5,0.4,0.8c0.4-0.2,0.8-0.3,1.2-0.5l0.8-1l0.6-1.5l-0.7-0.6L33.9,28
|
||||
c-0.1,0.2-0.2,0.4-0.2,0.7c0,0.3,0,0.6,0.1,0.9c0.1,0.2,0.2,0.4,0.3,0.5c0.2,0.1,0.3,0.2,0.5,0.2C34.6,30.4,34.8,30.4,34.9,30.4
|
||||
M34.6,24.9c-1.6,0.5-1.6,0.6-2.1,2.2C33.1,26.1,33.6,25.6,34.6,24.9 M45.3,12.9c-0.3,0.1-0.6,0.2-0.7,0.5c-0.4,0.6-0.7,1-1.4,1.4
|
||||
c-0.3,0.2-0.7,0.3-1,0.4c-0.3,0.1-0.5,0-0.7,0.2c0.1,0,0.3,0,0.4,0.1h0.9l1.2-0.7l0.7-0.7L45.3,12.9 M19.6,16.5
|
||||
c-0.6,1.7-1.2,3.2-2.2,4.8c1.2-1.3,2-2.5,2.7-4c0.3-0.6,0.3-1.3,1.1-1c0,0.6,0.2,1.2,0.2,1.7c0.4-3,1.6-4.2,4.3-5.3L23.4,13
|
||||
l-2.2,0.5L20.2,15L19.6,16.5 M24.8,16.4c0.6,2.7,1.4,5.4,1.8,8.2c0.2,1.8,0.3,2.7-0.6,4.2c-1-0.1-1.6,0-2.6,0.4
|
||||
c-3.8,1.3-6,3.1-8.6-0.6l2.5,1.2c0.6-0.1,1.2-0.2,1.8-0.3c1-0.6,2.1-1.2,3.1-1.8l2.4-0.5l0.8-3.3l-0.6-4.4c0-0.7,0-1.4-0.1-2.1
|
||||
C24.8,17.1,24.8,16.7,24.8,16.4 M31.5,33.4c-0.3,2.2,0.7,3.4,0.3,4c-0.1,0.2-0.3,0.5-0.5,0.6c-0.7,0.3-1.6-0.1-1.7,0.1h-2.2
|
||||
l-0.9-0.4l1.4-1.6c0.4-1,0.9-1.9,1.3-2.9l0.9-2.9h0.4L31.5,33.4"/>
|
||||
<path class="st2" d="M27.7,26.9c0.2,1,0.5,1.3,1,2.2c-0.3,1.6-0.8,3.5-1.4,4.9c-0.3,0.6-0.5,0.9-0.9,1.4c-0.8,0.8-1.5,1.5-2.4,2.1
|
||||
c-0.6,0.5-1.1,0.2-1.8,0.1c-0.3,0.6-0.4,0.9-1,1.2c-0.9,0.5-1.8-0.5-2.5-1.1c0.5,0.8,1.1,1.7,1.6,2.5c0.4,0.3,0.7,0.7,1.1,1l0.9,0.1
|
||||
l1.2-0.8c0.2-0.4,0.4-0.8,0.7-1.2c0.5-0.3,0.9-0.7,1.4-1c0.6-0.5,1.1-1,1.7-1.4l1.1-1.5l1-1.8c0.4-1.2,0.8-2.5,1.2-3.7
|
||||
c0-0.5,0.1-0.9,0.1-1.4c-0.5-0.2-1-0.5-1.5-0.7C28.5,27.6,28.1,27.3,27.7,26.9 M15.4,34.1c1.7,0,3.6-0.1,5.1-0.8
|
||||
c0.4-0.7,0.9-1.2,1.4-1.8c-0.5,0.9-0.7,1.5-0.8,2.5l-0.5,0.8c-1.3,0-2.6,0.1-3.9,0.1c-0.4,0-0.8-0.1-1.3-0.1c0,0-0.1-0.1-0.1-0.1
|
||||
C15.4,34.4,15.4,34.2,15.4,34.1 M15.2,32.9L15,31.6c-0.3,1.8-0.2,3-1,4.6c-0.6,0.7-1.4,1.4-2.2,1.7c0.1,0.4,0.1,0.7,0.1,1
|
||||
c-0.2,1.2-2.5,0.6-3.4,0.6l4.6,1.2l1-0.4c0.1-0.7,0.2-1.3,0.3-2l1-1.8l0.2-1.1L15.2,32.9 M12.6,22.8c0,0.9-0.1,1.2,0.3,2
|
||||
c0.5,1,1.1,1.9,1.6,2.8l0.2-1.9C14,24.8,13.3,23.8,12.6,22.8 M5.6,29.3c-0.1,0.3-0.3,0.6-0.4,0.9c0.4,1.4,0.8,2.2,1.5,3.4
|
||||
c-0.1,0.5-0.2,0.7-0.5,1.1c-0.7-0.1-1.3-0.1-2-0.1c0.8,0.6,1.5,1.2,2.3,1.8c0.4-0.1,0.8-0.1,1.1-0.2l1.1-1.1l-1.6-2.5
|
||||
C6.6,31.5,6.1,30.4,5.6,29.3 M45.3,12.4c0.5,2.1,1.1,4,1,6.2c-0.1,2.6-0.6,6-3,7.5c-2.7,1.8-5.9,0.9-8.9,0.2l3.7,1.5
|
||||
c1.1,0.1,2.3,0.1,3.4,0.2c0.8-0.2,1.6-0.5,2.3-0.7c0.6-0.5,1.2-1,1.8-1.5L47,23l0.5-3.3c-0.1-1.1-0.3-2.2-0.4-3.3l-0.8-3.2
|
||||
C46,12.9,45.7,12.7,45.3,12.4 M4.5,18.7c-1.2,0.8-1.7,1.2-1.6,2.7l0.4,1.3l0.5,0.4l0.6,0.2L5.7,23c0.2-0.6,0.4-1.2,0.6-1.9l-1.7,0.8
|
||||
H4.2c-0.1-0.2-0.3-0.4-0.4-0.7l0.5-0.8L4.6,19c0.1,0,0.2,0.1,0.4,0.1c0.1,0.1,0.3,0.2,0.4,0.3l-0.1-0.8L5,18.2
|
||||
C4.9,18.1,4.8,18,4.7,18L4.5,18.7 M32.4,6.9c1.1,1,2.5,1.9,3.3,3.2c0.3,0.5,0.7,0.7,0,1.4c0.8-0.2,1.1-0.2,1.7-0.1
|
||||
c1.1,0.1,2.2,1.7,2.2,2.9c0,0.1-0.3,0.3-1.2,0.6c0,0-0.5-0.1-0.5,0c0.1,0.2,0.2,0.3,0.4,0.4c0,0.3,0.1,0.7,0.3,1
|
||||
c0.5,0,1.1,0,1.6,0.2c0.2,0.3,0.2,0.6,0.1,0.9l0.6-0.1c-0.1-0.5-0.1-0.9-0.2-1.4c0.2-0.3,0.4-0.6,0.5-0.9L40.5,13
|
||||
c-0.5-0.5-1-1-1.5-1.4l-0.1,0c-0.6-0.3-1.1-0.7-1.7-1l-2.8-2.3L32.4,6.9 M34.2,15.3c-0.1,0.1-0.1,0.3-0.3,0.4
|
||||
c0.5,0.4,0.7,0.7,0.8,1.3c-0.5,0.3-1,0.5-1.6,0.8l-1.3,1.3c-0.6-0.3-0.7-0.5-1-1.1C30.6,18,30.3,18.1,30,18c0.2,0,0.3,0,0.4-0.1
|
||||
l0.8-0.9c0.5-0.4,1-0.7,1.5-1.1l1-0.3C33.9,15.5,34.1,15.4,34.2,15.3"/>
|
||||
<path class="st2" d="M35.7,16.9c-1.6,0.9-3.2,1.8-4.1,3.5C31.6,18.2,33.7,17.3,35.7,16.9 M31.3,12.7c-1.2,0.8-2.1,2.5-2,4.2
|
||||
c-0.4-1.4-0.3-2.8,1-3.7c0.2-0.1,0.4-0.2,0.6-0.3C31,12.7,31.1,12.7,31.3,12.7"/>
|
||||
<path d="M47.7,16.6c-0.2-1.4-0.6-2.8-1.1-3.7c-0.1-0.1-0.2-0.2-0.3-0.4c-0.3-0.3-0.6-0.5-1-0.6c-0.4-0.1-0.8-0.2-1.2,0
|
||||
c-0.1,0-0.2,0.1-0.2,0.2c-0.2,0.2-0.4,0.5-0.6,0.8c-0.2,0.3-0.4,0.6-0.7,0.8c-0.3,0.2-0.7,0.4-1,0.5c-0.1-0.4-0.3-0.7-0.5-1
|
||||
c-0.2-0.4-0.5-0.7-0.8-1.1c-0.2-0.3-0.5-0.5-0.7-0.7c-0.3-0.2-0.5-0.4-0.8-0.5c-0.8-0.5-1.5-1.1-2.2-1.7c-0.3-0.3-0.6-0.6-1-0.8
|
||||
c-1.7-1.4-3.3-2.1-4.9-2.2C29,6,27.2,6.5,25.1,7.3c-1,0.4-1.7,0.9-2.4,1.5c-0.6,0.6-1.1,1.2-1.7,2c-0.3,0-0.6,0.1-0.9,0.2
|
||||
c-0.3,0.1-0.7,0.4-1.1,0.7c-0.3,0.2-0.6,0.5-0.8,0.8c-0.2,0.2-0.5,0.5-0.7,0.7c-1.9,0.3-3.4,0.6-4.8,1.2c-1.4,0.5-2.7,1.3-3.9,2.4
|
||||
c-0.5,0.4-1,0.9-1.4,1.5c-0.4,0.5-0.7,1-1,1.6c-0.3,0.3-0.5,0.6-0.8,0.8c-0.3,0.2-0.6,0.4-0.9,0.6l0,0c-0.2,0.1-0.3,0.1-0.3,0.1
|
||||
c0,0,0,0,0-0.1c0.5-0.4,0.5-1.1,0.6-1.7C5,19.7,5,19.8,5.1,19.9c0.1,0.1,0.1,0.2,0.2,0.3l0.3,0.4l0.1-0.5c0.1-0.4,0.2-1,0.1-1.4
|
||||
c-0.1-0.3-0.2-0.6-0.5-0.8c0-0.1,0-0.1,0.1-0.2c0.1-0.2,0.2-0.4,0.2-0.6l0.1-0.4l-0.4,0.1c-0.5,0.1-1.7,0.7-2.5,1.6
|
||||
c-0.3,0.3-0.6,0.7-0.7,1c-0.2,0.4-0.3,0.8-0.2,1.2c0.1,0.3,0.2,0.7,0.6,1c0.1,0.2,0.1,0.4,0.2,0.6c0.1,0.2,0.1,0.4,0.2,0.6
|
||||
c0.2,0.5,0.6,0.8,1.1,0.9c0.4,0.1,0.7,0.1,1.1,0c-0.1,0.5-0.1,0.9-0.1,1.4c0,0.6,0,1.4,0.1,2.2c0,0.2,0,0.4,0.1,0.6
|
||||
C5,28,5,28.2,5.1,28.4C5,28.6,4.9,28.8,4.9,29l-0.3,0.9l-0.7,0.7c-0.2,0.2-0.5,0.5-0.7,0.7c0,0-0.1,0.1-0.2,0.2
|
||||
c-0.5,0.4-0.6,0.5-0.4,1.3c0.1,0.5,0.2,1,0.5,1.4c0.2,0.4,0.5,0.9,0.9,1.2c0.5,0.5,1.3,1.1,2.1,1.4c0.5,0.2,1,0.3,1.4,0.2
|
||||
c0,0.1,0,0.1-0.1,0.2c-0.1,0.2-0.2,0.4-0.2,0.6c-0.6,1.2,0,1.9,0.9,2.3c0.5,0.2,1,0.3,1.5,0.5c0.1,0,0.2,0.1,0.3,0.1
|
||||
c0.6,0.2,1.6,0.5,2.6,0.5c1,0.1,1.9-0.1,2.2-1.1c0.1-0.4,0.2-0.6,0.2-0.9c0-0.3,0-0.5,0-0.8c0.3-0.6,0.4-0.8,0.6-1.1
|
||||
c0-0.1,0.1-0.1,0.1-0.2c0.2-0.3,0.3-0.6,0.4-0.9c0-0.3,0-0.5,0-0.9c0,0,0-0.1,0-0.2c0.6,0.1,1.2,0.1,1.8,0.1c0.3,0,0.6,0,0.9,0
|
||||
c-0.1,0-0.2,0.1-0.2,0.1l-0.1,0.1c-0.8,0.4-0.8,1.2-0.6,2c0.2,0.7,0.7,1.4,1,1.9c0.6,0.9,1.2,1.7,1.9,2.2c0.7,0.5,1.6,0.5,2.7-0.1
|
||||
c0.6-0.3,0.7-0.6,1-1c0.1-0.1,0.2-0.3,0.2-0.4c0.2-0.2,0.8-0.6,1.4-1.1c0.2-0.2,0.4-0.3,0.6-0.5c0.1,0.1,0.3,0.2,0.5,0.2
|
||||
c0.3,0.1,0.6,0.1,1,0.1c0.3,0,1.3,0,1.9,0c0.2,0,0.4,0,0.5,0c0.6,0,1.2,0,1.6-0.3c0.4-0.2,0.7-0.7,0.7-1.4c0-0.3,0-0.5,0-0.8
|
||||
c0-0.2-0.1-0.4-0.3-0.6c0-0.3,0-0.7,0-1c0-0.3,0-0.7,0-1c0-0.4-0.1-0.7-0.1-1.1c-0.1-0.3-0.2-0.6-0.4-1c-0.1-0.2-0.2-0.5-0.3-0.7
|
||||
l-0.2,0.1l0,0l0.2-0.1v0c-0.1-0.4-0.3-0.7-0.5-1.1c0-0.1,0-0.2,0-0.2l0.4,0.3l0.5,0.5c0.4,0.4,0.8,0.7,1.2,1c0.5,0.3,1,0.4,1.6,0.4
|
||||
c0.7,0,1.4-0.3,2-0.8c0.6-0.4,1.1-1,1.3-1.7l0.2-0.6l0.1-0.4c1,0.2,2,0.2,3,0.1c1-0.1,1.9-0.3,2.7-0.8c1.2-0.6,2.1-1.6,2.7-2.7h0
|
||||
c0.7-1.2,1.1-2.7,1.3-4.2C48.1,19.8,48,18.1,47.7,16.6z M35.2,26.6c-0.6-0.2-0.9-0.5-1.4-0.8c0.1,0.6,0.2,1.2,0,1.8
|
||||
c-0.3,0.9-0.7,2.5,0.6,2.8c0.5,0.1,0.7,0.1,1.4-0.3c-0.6,0.1-0.8,0.1-1.2,0c-0.3-0.1-0.5-0.3-0.6-0.5c0.1,0.1,0.3,0.1,0.7,0.2
|
||||
c1,0.2,1.9-0.2,2-0.9c0.1-0.4,0.1-0.6,0.3-1.1c0.2,0.1,0.4,0.1,0.6,0.2l-0.4,1.2c-0.3,1-1.5,1.8-2.6,1.8c-1,0-1.6-0.6-2.3-1.2
|
||||
c-0.5-0.4-0.9-0.8-1.4-1.2c-1.2-0.4-2.2-0.8-3.3-1.7c0.8,0.9,1.3,1.5,2.5,1.9c-0.2,1.7-0.7,2.9-1.2,4.5c-0.2,0.7-2,3.6-2.5,3.9
|
||||
c-0.3,0.2-2.5,2-2.9,2.3c-0.3,0.4-0.6,1-1,1.2c-1.4,0.7-2.3-0.7-3-1.9c-0.3-0.5-1.3-2.1-0.5-2.5c0.8-0.4,1.2-0.7,2-1.2
|
||||
c0.1,0.2,0.3,0.4,0.4,0.6l-0.1-0.7c-0.1-0.4-0.1-0.8,0-1.2c0-0.4,0.1-0.8,0.1-1.2c-0.1,0.4-0.4,0.8-0.5,1.3c0,0.2-0.1,0.3-0.1,0.4
|
||||
c-1.8,0.4-3.6,0.4-5.4,0.1c-0.1-0.7-0.3-1.4-0.4-1.9c0,0.6,0,2.1,0,3c0,0.7,0,0.9-0.4,1.5c-0.3,0.5-0.5,0.7-0.9,1.5
|
||||
c0,0.6,0,0.9-0.1,1.5c-0.2,0.9-2.8,0.2-3.4,0c-0.8-0.2-2.5-0.6-2.1-1.6c0.4-1,0.6-2,0.8-3.3c-1.5-2.2-2.9-5.1-3.2-7.7
|
||||
c-0.2-2-0.1-3.3,0.4-4.5c0.7-2,1.7-3.7,3.2-5.1c2.1-1.9,4.1-2.6,7.2-3.1c-0.7,0.8-1.5,1.7-2.3,2.7c-0.8,1-1.3,1.9-1.8,3
|
||||
c-0.7,1.4-0.7,2,0.2,3.3c0.8,1.1,1.3,1.6,1.6,2.7c-0.3,0.6-0.4,1.1-0.5,1.9c1,1.1,1.7,1.8,2.7,2.1c0.9,0.2,1.7,0.2,2.6-0.3
|
||||
c1.9-1,3.6-2.2,5.8-2.3c1-2.4,0.9-4.4,0.4-6.8c-0.3-1.6-0.5-3.1-0.6-4.7c-0.4,1.7-0.5,3.2-0.2,4.8c0.4,2,0.6,4.2-0.4,6
|
||||
c-1.9,0.1-3.6,1.3-5.3,2.2c-0.7,0.4-1.4,0.4-2.2,0.2c-0.7-0.2-1.2-0.7-2-1.6c0-0.9,0.2-1.3,0.6-2.1c0.7-1.3,1.4-2.5,2.2-3.8
|
||||
c-1,1.2-1.9,2.2-2.7,3.4c-0.3-0.8-0.7-1.3-1.4-2.2c-0.7-0.9-0.8-1.3-0.2-2.4c0.5-1.1,0.9-2,1.8-3c1.5-1.6,2.9-3.4,4.5-5
|
||||
c0.9-0.9,1.3-0.8,2.4-1c1.1-0.2,2.1-0.4,3.2-0.6c-1.1,0.1-2.1,0.1-3.1,0.2l0,0c1-1.3,1.6-2,3.2-2.7c4-1.8,6.6-1.9,9.8,0.7
|
||||
c0.8,0.7,1.5,1.4,2.4,2c-0.3,0-0.6,0.1-0.9,0.2c0.4-0.1,0.9,0,1.3,0.1c0.1,0.1,0.2,0.2,0.4,0.2c0.6,0.3,0.9,0.5,1.3,1.1
|
||||
c0.4,0.6,0.8,1.2,1.1,1.8c-0.2-0.1-0.4-0.1-0.5-0.2c-0.3-0.2-0.7-0.1-1.1,0.1l0,0c-0.3,0.2-0.8,0.3-1.2,0.4c0.2,0.1,0.6,0.1,0.7,0
|
||||
c0,0,0,0,0.1,0c-0.1,0.1-0.1,0.3-0.2,0.5c0,0.2,0,0.4,0.1,0.6l0,0c0,0.1,0.1,0.1,0.1,0.2c-0.2,0.1-0.3,0.1-0.5,0.2
|
||||
c0.8-0.1,1.4-0.1,2.2,0c0,0.2,0.1,0.5,0.1,0.7l-0.3,0c0,0,0,0,0,0c-0.3-0.3-0.7-0.2-1.3-0.1c-1.6,0.4-1.2,1.3-2,2.6
|
||||
c0.8-0.9,0.7-1.9,2-2.2c0.3-0.1,0.5-0.2,0.7-0.1c-0.4,0.2-0.7,0.5-0.8,0.8c-0.3,1-0.1,1.8-0.5,2.7c0.5-0.8,0.5-1.6,0.9-2.5
|
||||
c0.2-0.3,0.7-0.8,1.1-0.8l0.3,0c0.1,0.5,0.1,1.1,0.1,1.5c-0.1,0.8-0.3,2-0.4,2.5c0.4-0.5,0.6-1.7,0.8-2.5c0.2-0.8,0.1-1.9,0-2.8
|
||||
c-0.2-1.2,1.1-1,1.8-1.6c0.5-0.4,0.9-1.1,1.4-1.6c0.5-0.5,1.3,0.2,1.5,0.7c0.9,2.1,1.2,5.3,1,7.4c-0.3,2.3-1.4,4.9-3.4,6
|
||||
C40.9,28.4,37.8,27.5,35.2,26.6L35.2,26.6z M31.5,37c-0.1,1-0.4,1-1.3,1c-0.4,0-1.9,0-2.3,0c-0.5,0-0.9-0.1-1-0.2
|
||||
c0.9-0.6,2.3-3.2,2.6-4.1c0.3-0.9,0.6-1.8,0.9-2.7c0.1,0.4,0.2,0.7,0.4,1.1c0.3,0.7,0.4,1.1,0.4,1.7l0.1,2.2
|
||||
C31.5,36.4,31.6,36.5,31.5,37L31.5,37z M5.6,29.7c0.5,1.9,1.5,3.7,2.5,5.3v0c-0.1,0.3-0.1,0.5-0.3,0.7c-0.7,1-2.6-0.5-3.2-1
|
||||
c-0.6-0.6-1-1.3-1.1-2c-0.1-0.5,0-0.5,0.3-0.9l1.4-1.4C5.3,30.5,5.6,29.7,5.6,29.7z M4.6,17.8c-0.1,0.3-0.2,0.5-0.3,0.8
|
||||
c-0.3,1,0.1,1.9-0.8,2.7c0.4,0.9,0.4,1.2,1.4,0.8c0.4-0.2,0.7-0.4,1-0.6c-0.1,0.4-0.3,0.7-0.4,1.1c0,0.1,0,0.1-0.1,0.2
|
||||
c-0.7,0.3-1.7,0.5-2-0.3c-0.2-0.4-0.3-0.7-0.4-1.2C1.8,20,3.6,18.4,4.6,17.8z M5.2,19.1C5,19,4.9,18.9,4.7,18.9c0-0.1,0-0.2,0.1-0.4
|
||||
c0-0.1,0-0.1,0-0.2C5.1,18.5,5.1,18.8,5.2,19.1L5.2,19.1z M40.8,14.5c0,0.1,0.1,0.2,0.1,0.3c0,0-0.1,0.1-0.1,0.1
|
||||
c-0.1-0.1-0.1-0.3-0.2-0.4C40.6,14.5,40.7,14.5,40.8,14.5L40.8,14.5z M6.5,20.1L6.5,20.1L6.5,20.1L6.5,20.1z M15.6,35L15.6,35
|
||||
L15.6,35z M26.3,38.2L26.3,38.2L26.3,38.2z M30.7,29.9L30.7,29.9L30.7,29.9L30.7,29.9z M4.7,21.6L4.7,21.6L4.7,21.6L4.7,21.6
|
||||
L4.7,21.6z M46.5,25L46.5,25L46.5,25z M0.5,21.3c0.2-2.1,0.6-3.1,2.1-4.7C0.7,17.9,0.3,18.6,0.5,21.3"/>
|
||||
<path d="M0,19.5c0.2-1,0.4-1.3,1-2.1C0.1,18.1-0.1,18.4,0,19.5 M22.4,6.1c-1.1,0.3-1.4,0.5-1.7,1.6C21.2,6.9,21.5,6.6,22.4,6.1"/>
|
||||
<path d="M24.2,5.9c-2.3,0.6-2.9,1-3.7,3.6C21.5,7.6,22.2,6.9,24.2,5.9 M29.1,15.5c0.2-1.1,0.7-2.1,2.3-2.9
|
||||
C29.2,13.2,28.8,14.1,29.1,15.5 M43.1,15.6c1.3-0.5,1.9-1.5,2.2-2.7c-0.5,1-1.3,1.9-2.4,2.4c-0.6,0.3-0.9,0.2-1.6,0.1
|
||||
C42,15.6,42.4,15.8,43.1,15.6 M34.2,16.6c-0.2-0.4-0.5-0.6-0.8-0.8c0.3-0.2,0.6-0.4,0.9-0.6c-0.7,0.3-1.6,0.3-2.2,0.7
|
||||
c-0.5,0.4-1.3,1.5-1.8,2c0.4-0.2,0.8-0.4,1.1-0.7c0,0.5,0.3,1,0.8,1.3c-0.2,0.3-0.4,0.6-0.5,0.9c1-1.2,2.6-2.2,4-2.6
|
||||
c-0.4,0-0.9,0.1-1.4,0.2C34.3,16.9,34.3,16.8,34.2,16.6 M32.7,26c-0.1,0.3-0.1,0.7-0.2,1c0.1-0.4,0.3-0.8,0.5-1.1
|
||||
c0.2-0.4,0.3-0.4,0.6-0.6c0.3-0.1,0.7-0.3,1-0.5c-0.3,0-0.7,0.1-1,0.2C32.9,25.2,32.8,25.4,32.7,26 M20.8,13.6
|
||||
c-0.8,0.8-1.6,3.5-1.8,4.6c0.4-0.9,1.4-3.5,2.1-4.1c0.2-0.2,0.4-0.3,0.5-0.4c-0.5,0.9-0.5,1.1-0.3,2.4c0.2-1.2,0.6-1.7,1.3-2.6
|
||||
c0.8-0.2,1.5-0.4,2.3-0.7c-0.9,0.1-1.8,0.2-2.7,0.3C21.5,13.1,21.3,13.1,20.8,13.6"/>
|
||||
<path class="st1" d="M31.8,18.3c-0.1-0.3,0-0.7,0.3-0.8c0.3-0.1,0.7,0,0.8,0.3c0,0,0,0.1,0,0.1c-0.3,0.2-0.6,0.5-0.8,0.8
|
||||
C32,18.5,31.9,18.4,31.8,18.3 M38.7,15.6c0-0.3,0.2-0.4,0.5-0.4c0.3,0,0.4,0.3,0.4,0.5c0,0.1,0,0.1,0,0.2c-0.2,0-0.5,0.1-0.7,0.2
|
||||
C38.8,15.9,38.7,15.7,38.7,15.6"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<path d="M32.5,26.6c-1.9,0-3.5,0.8-4.7,2.1l-2.9-2.1c0.3-0.9,0.5-1.8,0.5-2.7c0-0.9-0.2-1.9-0.5-2.7l2.9-2.1
|
||||
c1.1,1.3,2.8,2.1,4.7,2.1c3.4,0,6.3-2.8,6.3-6.3S36,8.7,32.5,8.7s-6.3,2.8-6.3,6.3c0,0.6,0.1,1.2,0.3,1.8l-2.9,2.1
|
||||
c-1.2-1.5-3-2.6-5-2.9v-3.5c2.8-0.6,5-3.1,5-6.1c0-3.4-2.8-6.3-6.3-6.3s-6.3,2.8-6.3,6.3c0,3,2.1,5.5,4.9,6.1v3.6
|
||||
c-3.8,0.7-6.7,4-6.7,7.9c0,4,2.9,7.3,6.7,8v3.8c-2.8,0.6-4.9,3.1-4.9,6.1c0,3.4,2.8,6.3,6.3,6.3s6.3-2.8,6.3-6.3
|
||||
c0-3-2.1-5.5-4.9-6.1v-3.8c1.9-0.3,3.7-1.3,4.9-2.9l3,2.1c-0.2,0.6-0.3,1.1-0.3,1.8c0,3.4,2.8,6.3,6.3,6.3s6.3-2.8,6.3-6.3
|
||||
S36,26.6,32.5,26.6z M32.5,12c1.7,0,3,1.4,3,3s-1.4,3-3,3s-3-1.4-3-3S30.8,12,32.5,12z M14.3,6.3c0-1.7,1.4-3,3-3s3,1.4,3,3
|
||||
s-1.4,3-3,3S14.3,7.9,14.3,6.3z M20.3,41.7c0,1.7-1.4,3-3,3s-3-1.4-3-3s1.4-3,3-3S20.3,40.1,20.3,41.7z M17.3,28.1
|
||||
c-2.3,0-4.2-1.9-4.2-4.2c0-2.3,1.9-4.2,4.2-4.2c2.3,0,4.2,1.9,4.2,4.2C21.5,26.2,19.6,28.1,17.3,28.1z M32.5,35.9c-1.7,0-3-1.4-3-3
|
||||
s1.4-3,3-3c1.7,0,3,1.4,3,3S34.2,35.9,32.5,35.9z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#009438;}
|
||||
.st1{fill:#FEFEFE;}
|
||||
</style>
|
||||
<path class="st0" d="M3,24V12.6c0-0.4,0.2-0.8,0.6-1L23.3,0.2c0.4-0.2,0.8-0.3,1.1,0l19.8,11.5c0.3,0.2,0.6,0.6,0.5,1v22.9
|
||||
c0,0.4-0.2,0.8-0.5,1l-17.1,9.9c-0.9,0.5-1.8,1.1-2.7,1.6c-0.4,0.2-0.8,0.2-1.2,0L3.5,36.4C3.2,36.2,3,35.9,3,35.5V24L3,24z"/>
|
||||
<path class="st1" d="M17.2,19.8v13.4c0,1.5-1.2,2.8-2.8,2.8c-1,0-1.7-0.4-2.2-1.3c-0.3-0.4-0.4-0.8-0.4-1.3V14.8
|
||||
c0-1.2,0.8-2.1,1.7-2.5s2-0.3,2.9,0c0.9,0.3,1.6,0.8,2.2,1.6L30.5,28c0,0,0.1,0.1,0.2,0.2V14.7c0-1.4,1-2.5,2.4-2.7
|
||||
c1.7-0.2,2.9,1,3.1,2.3v18.9c0,1.1-0.5,1.8-1.4,2.3c-0.7,0.4-1.4,0.4-2.1,0.4c-1.1-0.1-2.1-0.5-2.9-1.2c-0.4-0.4-0.8-0.9-1.2-1.3
|
||||
L17.2,19.9C17.2,19.9,17.2,19.8,17.2,19.8L17.2,19.8z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#539E43;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M24,47.9c-0.7,0-1.3-0.2-1.8-0.5l-5.9-3.5c-0.9-0.5-0.4-0.7-0.2-0.7c1.2-0.4,1.4-0.5,2.6-1.2
|
||||
c0.1-0.1,0.3,0,0.4,0l4.5,2.7c0.2,0.1,0.4,0.1,0.5,0l17.6-10.2c0.2-0.1,0.3-0.3,0.3-0.5V13.8c0-0.2-0.1-0.4-0.3-0.5L24.2,3.2
|
||||
c-0.2-0.1-0.4-0.1-0.5,0L6.1,13.3c-0.2,0.1-0.3,0.3-0.3,0.5v20.3c0,0.2,0.1,0.4,0.3,0.5l4.8,2.8c2.6,1.3,4.2-0.2,4.2-1.8v-20
|
||||
c0-0.3,0.2-0.5,0.5-0.5h2.2c0.3,0,0.5,0.2,0.5,0.5v20c0,3.5-1.9,5.5-5.2,5.5c-1,0-1.8,0-4-1.1l-4.6-2.6c-1.1-0.7-1.8-1.9-1.8-3.2
|
||||
V13.8c0-1.3,0.7-2.6,1.8-3.2L22.2,0.5c1.1-0.6,2.6-0.6,3.7,0l17.6,10.2c1.1,0.7,1.8,1.9,1.8,3.2v20.3c0,1.3-0.7,2.6-1.8,3.2
|
||||
L25.8,47.5C25.3,47.8,24.6,47.9,24,47.9L24,47.9z M29.4,34c-7.7,0-9.3-3.5-9.3-6.5c0-0.3,0.2-0.5,0.5-0.5h2.3
|
||||
c0.3,0,0.5,0.2,0.5,0.4c0.4,2.3,1.4,3.5,6,3.5c3.7,0,5.3-0.8,5.3-2.8c0-1.1-0.4-2-6.2-2.6c-4.8-0.5-7.8-1.5-7.8-5.4
|
||||
c0-3.6,3-5.7,8-5.7c5.6,0,8.4,1.9,8.8,6.2c0,0.1,0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.4,0.2h-2.3c-0.2,0-0.4-0.2-0.5-0.4
|
||||
c-0.5-2.4-1.9-3.2-5.5-3.2c-4,0-4.5,1.4-4.5,2.5c0,1.3,0.6,1.7,6,2.4c5.4,0.7,8,1.7,8,5.5C38.2,31.8,35,34,29.4,34L29.4,34z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#B1DB9E;stroke:#B1DB9E;stroke-width:0.5;stroke-linecap:round;}
|
||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#85CB65;stroke:#85CB65;stroke-width:0.5;stroke-linecap:round;}
|
||||
.st2{fill-rule:evenodd;clip-rule:evenodd;fill:#75B35B;stroke:#75B35B;stroke-width:0.5;stroke-linecap:round;}
|
||||
.st3{fill-rule:evenodd;clip-rule:evenodd;fill:#6FB950;stroke:#6FB950;stroke-width:0.5;stroke-linecap:round;}
|
||||
.st4{fill-rule:evenodd;clip-rule:evenodd;fill:#6FB850;stroke:#6FB850;stroke-width:0.5;stroke-linecap:round;}
|
||||
.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#77C656;stroke:#77C656;stroke-width:0.5;stroke-linecap:round;}
|
||||
.st6{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
||||
</style>
|
||||
<symbol id="A" viewBox="-45.2 -46.2 90.5 92.5">
|
||||
<g>
|
||||
<path class="st0" d="M-40.4-0.6c12.6,0.3,17,0.9,26.3,1.8C-9,11.6-9.2,9.4-7,21.7c-8.3-9.5-20.9-19.5-33.8-22.3"/>
|
||||
<path class="st1" d="M-39-46c11.1,5.7,38.8,24.2,46.4,27.9c4-1,9.8-3.6,17.8-0.5C16.3-17.6,8.7-7.7-0.2-0.9
|
||||
c-8-20.3-21.4-32-27.2-38.3"/>
|
||||
<path class="st2" d="M-44.8-19.4c15.4,3.1,20.6,4.9,31.7,8C-6,3.5-8,10.5-9.5,19.9C-16.7,2.7-29.8-13.2-45-19.4"/>
|
||||
<path class="st3" d="M-38.8-45.9c8.9,5.2,20.7,21,25.6,34c1.8,5.2,4.5,17.7,3.6,31.8C-8,28.7,3.4,54.3,28.8,43.3
|
||||
c-12.9,0-19.2-4.9-25.9-15.9C2.5,27.2-3.8,8.9-0.2-0.9C-8.7-29.1-32.1-42.9-39-46"/>
|
||||
<path class="st0" d="M24.3,36.6c10.3,0,18.5-7,20.5-18.2c0.1-0.7,1.6,8.3-8.2,19.3c-0.7,0.7-6.7,1.6-12.1-1"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st4" d="M31.5-3c2.2,1.6,3.6,2.9,4.9,4.4c1.3,1-0.9-3.6-1.3-4.2c0.7-3.4-1.4-8.5-1.7-8.6c-1.6-1.6-30,9.4-20.2,35.4
|
||||
C12.3,2.2,22.5-2,31.5-3L31.5-3z"/>
|
||||
<path class="st5" d="M28.8,43.3c3.1-1.3,5.1-3.6,7.8-5.7c0.1-0.1-18.1,2.5-23.4-13.7c-1.8-2.9-8.3-26.7,20.1-35.5
|
||||
c-1.3-2.9-6.7-6.6-8.1-7.1c-8.9,1-19,6.1-25.2,17.2C-5,7.5-2.4,45.1,28.8,43.3L28.8,43.3z"/>
|
||||
</g>
|
||||
<ellipse class="st6" cx="31" cy="-8.8" rx="1.3" ry="1.6"/>
|
||||
</symbol>
|
||||
<use xlink:href="#A" width="90.5" height="92.5" x="-45.2" y="-46.2" transform="matrix(0.5162 0 0 0.5162 24.004 24.0041)" style="overflow:visible;"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FF6600;}
|
||||
</style>
|
||||
<path class="st0" d="M44.8,19.2H29.7c-0.8,0-1.4-0.6-1.4-1.4l0,0V2.1c0-1.2-0.9-2.1-2.1-2.1h-5.4c-1.2,0-2.1,0.9-2.1,2.1v15.6
|
||||
c0,0.8-0.7,1.5-1.5,1.5l-4.9,0c-0.8,0-1.5-0.7-1.5-1.5l0-15.6C10.9,0.9,10,0,8.8,0H3.4C2.2,0,1.3,0.9,1.3,2.1v44
|
||||
c0,1,0.8,1.9,1.9,1.9h41.6c1,0,1.9-0.8,1.9-1.9v-25C46.7,20,45.9,19.2,44.8,19.2C44.8,19.2,44.8,19.2,44.8,19.2L44.8,19.2z
|
||||
M37.7,35.7c0,1.3-1.1,2.4-2.4,2.4H31c-1.3,0-2.4-1.1-2.4-2.4v-4.3c0-1.3,1.1-2.4,2.4-2.4h4.3c1.3,0,2.4,1.1,2.4,2.4L37.7,35.7z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 887 B |
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#C7402B;}
|
||||
</style>
|
||||
<path class="st0" d="M41.5,7.6L17.8,33.1l29.7-13.7C46.7,15,44.6,10.9,41.5,7.6L41.5,7.6z M23.9,0c-3.2,0-6.3,0.6-9.2,1.8l-3.2,26.7
|
||||
L27.4,0.3C26.3,0.1,25.1,0,23.9,0L23.9,0z M47.8,20.9L19.6,36.7L46,33.5c1.3-3,2-6.2,1.9-9.5C48,23,47.9,22,47.8,20.9L47.8,20.9z
|
||||
M37.4,44c3.2-2.1,5.8-5,7.6-8.3l-24.8,4.9L37.4,44z M28.8,0.5L15.1,30.4L40.6,6.7C37.4,3.6,33.3,1.4,28.8,0.5L28.8,0.5z M26,48
|
||||
c2.6-0.2,5.1-0.9,7.5-1.9l-13.9-1.6L26,48L26,48z M2,14.2c-1.1,2.4-1.8,5.1-2,7.7l3.7,6.6L2,14.2z M12.6,2.8
|
||||
c-3.4,1.8-6.3,4.4-8.5,7.6l3.5,17.5L12.6,2.8z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 941 B |
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#6DB33F;}
|
||||
</style>
|
||||
<g id="Layer_2_1_">
|
||||
<g id="logos">
|
||||
<path class="st0" d="M43.7,2.8c-0.7,1.6-1.5,3.1-2.6,4.5C31.9-2.2,16.8-2.5,7.3,6.7s-9.8,24.4-0.6,33.9c0.3,0.3,0.6,0.6,1,1
|
||||
l0.9,0.8c10.1,8.5,25.2,7.2,33.7-2.9c3.3-3.9,5.2-8.7,5.6-13.7C48.5,19.7,46.7,12,43.7,2.8z M11.1,41.7c-0.7,0.9-2,1-2.9,0.3
|
||||
c-0.9-0.7-1-2-0.3-2.9c0.7-0.9,2-1,2.9-0.3C11.7,39.6,11.8,40.9,11.1,41.7z M43.6,34.6C37.7,42.4,25,39.8,17,40.2
|
||||
c0,0-1.4,0.1-2.9,0.3c0,0,0.5-0.2,1.2-0.5c5.7-2,8.4-2.4,11.8-4.2c6.5-3.3,13-10.6,14.2-18.1c-2.5,7.2-10,13.4-16.8,16
|
||||
c-4.7,1.7-13.1,3.4-13.1,3.4l-0.3-0.2c-5.7-2.8-5.9-15.3,4.5-19.3c4.6-1.8,8.9-0.8,13.9-2c5.3-1.2,11.4-5.2,13.9-10.4
|
||||
C46.2,13.6,49.6,26.6,43.6,34.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,97 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
.st1{fill:#221F1F;}
|
||||
.st2{fill:#5077B6;}
|
||||
.st3{fill:#DE4032;}
|
||||
.st4{fill:#30A14E;}
|
||||
.st5{fill:#ECB215;}
|
||||
</style>
|
||||
<rect y="14.1" class="st0" width="48" height="19.8"/>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st1" d="M15,25.6c-0.2,0.3-0.5,0.5-0.8,0.6c-0.3,0.1-0.7,0.2-1,0.2c-0.3,0-0.7-0.1-1-0.2c-0.3-0.1-0.6-0.3-0.8-0.5
|
||||
S11,25.3,10.9,25c-0.1-0.3-0.2-0.6-0.2-1c0-0.3,0.1-0.7,0.2-1c0.1-0.3,0.3-0.6,0.5-0.8c0.2-0.2,0.5-0.4,0.8-0.5
|
||||
c0.3-0.1,0.6-0.2,1-0.2c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.6,0.3,0.8,0.6l-0.8,0.8c-0.1-0.2-0.3-0.3-0.4-0.4
|
||||
c-0.2-0.1-0.4-0.2-0.6-0.2c-0.2,0-0.3,0-0.5,0.1s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.3-0.3,0.4c-0.1,0.2-0.1,0.4-0.1,0.5
|
||||
c0,0.2,0,0.4,0.1,0.5c0.1,0.2,0.2,0.3,0.3,0.4c0.1,0.1,0.3,0.2,0.4,0.3c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.4-0.1,0.6-0.2
|
||||
c0.2-0.1,0.3-0.2,0.4-0.4L15,25.6z"/>
|
||||
<path class="st1" d="M19.4,26.3h-1.2v-0.2c-0.2,0.1-0.4,0.2-0.6,0.3c-0.2,0.1-0.5,0.1-0.7,0.1c-0.2,0-0.4,0-0.6-0.1
|
||||
c-0.2-0.1-0.3-0.2-0.5-0.3s-0.2-0.3-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.5,0.2-0.7c0.1-0.2,0.3-0.4,0.5-0.5
|
||||
c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.9-0.1h0.7c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.2-0.4-0.2-0.8-0.2c-0.2,0-0.3,0-0.5,0.1
|
||||
c-0.2,0.1-0.3,0.2-0.5,0.3l-0.7-0.7c0.2-0.2,0.5-0.4,0.9-0.5c0.3-0.1,0.7-0.2,1-0.2c0.3,0,0.6,0.1,0.9,0.2
|
||||
c0.3,0.1,0.5,0.2,0.6,0.4c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,1L19.4,26.3L19.4,26.3z M18.2,25.1v-0.9h-0.5
|
||||
c-0.2,0-0.3,0-0.5,0c-0.1,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.2,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.3,0.2,0.4
|
||||
c0.1,0.1,0.3,0.2,0.5,0.2c0.2,0,0.3,0,0.5-0.1C17.9,25.3,18,25.2,18.2,25.1z"/>
|
||||
<path class="st1" d="M24.5,26.3h-1.2v-2.8c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.1-0.2-0.2-0.3c-0.1-0.1-0.2-0.1-0.3-0.2
|
||||
c-0.1,0-0.2-0.1-0.3-0.1c-0.2,0-0.4,0-0.5,0.1s-0.3,0.2-0.5,0.3v3.4h-1.2v-4.6h1.2l0,0.3c0.1-0.1,0.2-0.1,0.3-0.2
|
||||
c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.3-0.1c0.1,0,0.2,0,0.3,0c0.2,0,0.5,0,0.7,0.1c0.2,0.1,0.4,0.2,0.6,0.3
|
||||
c0.2,0.2,0.3,0.4,0.4,0.6c0.1,0.2,0.2,0.5,0.2,0.9L24.5,26.3L24.5,26.3z"/>
|
||||
<path class="st1" d="M29.6,21.7l-1.7,4.6h-1.1L25,21.7h1.3l1,3.1l1-3.1H29.6z"/>
|
||||
<path class="st1" d="M33.9,26.3h-1.2v-0.2c-0.2,0.1-0.4,0.2-0.6,0.3c-0.2,0.1-0.5,0.1-0.7,0.1c-0.2,0-0.4,0-0.6-0.1
|
||||
c-0.2-0.1-0.3-0.2-0.5-0.3c-0.1-0.1-0.2-0.3-0.3-0.4s-0.1-0.4-0.1-0.6c0-0.3,0.1-0.5,0.2-0.7c0.1-0.2,0.3-0.4,0.5-0.5
|
||||
c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.9-0.1h0.7c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.2-0.4-0.2-0.8-0.2c-0.2,0-0.3,0-0.5,0.1
|
||||
c-0.2,0.1-0.3,0.2-0.5,0.3L30,22.3c0.2-0.2,0.5-0.4,0.9-0.5c0.3-0.1,0.7-0.2,1-0.2c0.3,0,0.6,0.1,0.9,0.2
|
||||
c0.2,0.1,0.5,0.2,0.6,0.4c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,1L33.9,26.3L33.9,26.3z M32.8,25.1v-0.9h-0.5
|
||||
c-0.2,0-0.3,0-0.5,0c-0.1,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.2,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.3,0.2,0.4
|
||||
c0.1,0.1,0.3,0.2,0.5,0.2c0.2,0,0.3,0,0.5-0.1C32.4,25.3,32.6,25.2,32.8,25.1z"/>
|
||||
<path class="st1" d="M38.2,25c0,0.2-0.1,0.4-0.2,0.6c-0.1,0.2-0.2,0.3-0.4,0.4c-0.2,0.1-0.4,0.2-0.6,0.3
|
||||
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.4,0-0.7-0.1-1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6l0.7-0.7c0.1,0.2,0.3,0.3,0.5,0.4
|
||||
c0.2,0.1,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5-0.1c0.1-0.1,0.2-0.2,0.2-0.3c0-0.1-0.1-0.3-0.3-0.3c-0.2-0.1-0.4-0.2-0.7-0.3
|
||||
c-0.2-0.1-0.4-0.1-0.5-0.2c-0.2-0.1-0.3-0.2-0.5-0.3c-0.1-0.1-0.2-0.3-0.3-0.4c-0.1-0.2-0.1-0.3-0.1-0.5c0-0.2,0.1-0.4,0.2-0.6
|
||||
c0.1-0.2,0.2-0.3,0.4-0.4c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.7-0.1c0.7,0,1.3,0.3,1.7,0.8L37.5,23
|
||||
c-0.1-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.4-0.1-0.6-0.1c-0.1,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0.1c-0.1,0-0.1,0.1-0.2,0.1
|
||||
c0,0.1-0.1,0.1-0.1,0.2c0,0.1,0.1,0.2,0.2,0.3c0.2,0.1,0.4,0.2,0.7,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.2,0.5,0.3
|
||||
c0.1,0.1,0.2,0.3,0.3,0.4C38.2,24.6,38.2,24.8,38.2,25z"/>
|
||||
<path class="st1" d="M42.6,24.2c0,0.4-0.1,0.8-0.2,1.1c-0.2,0.3-0.3,0.5-0.6,0.7c-0.2,0.2-0.5,0.3-0.7,0.4
|
||||
c-0.2,0.1-0.5,0.1-0.7,0.1c-0.4,0-0.7-0.1-1-0.3c-0.3-0.2-0.6-0.4-0.8-0.7l0.8-0.8c0.1,0.2,0.2,0.3,0.4,0.4
|
||||
c0.2,0.1,0.3,0.1,0.5,0.1c0.1,0,0.2,0,0.4-0.1c0.1,0,0.2-0.1,0.3-0.2c0.1-0.1,0.2-0.2,0.2-0.3c0.1-0.1,0.1-0.3,0.1-0.4v-4.3h1.3
|
||||
L42.6,24.2L42.6,24.2z"/>
|
||||
<path class="st1" d="M48,24.6c0,0.2-0.1,0.5-0.2,0.7c-0.1,0.2-0.2,0.4-0.4,0.6c-0.2,0.2-0.4,0.3-0.7,0.4
|
||||
c-0.3,0.1-0.5,0.1-0.8,0.1c-0.3,0-0.5,0-0.7,0c-0.2,0-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.6-0.3c-0.2-0.1-0.4-0.2-0.6-0.4
|
||||
l0.9-0.9c0.3,0.2,0.5,0.4,0.8,0.5c0.2,0.1,0.5,0.1,0.8,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.1-0.1,0.2-0.2
|
||||
c0-0.1,0.1-0.2,0.1-0.3c0-0.1,0-0.2-0.1-0.3c0-0.1-0.1-0.2-0.2-0.2c-0.1-0.1-0.2-0.2-0.4-0.2c-0.2-0.1-0.4-0.2-0.7-0.3
|
||||
c-0.2-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.2-0.6-0.4c-0.2-0.2-0.3-0.3-0.4-0.5c-0.1-0.2-0.1-0.5-0.1-0.7c0-0.3,0.1-0.5,0.2-0.8
|
||||
c0.1-0.2,0.3-0.4,0.4-0.6c0.2-0.2,0.4-0.3,0.7-0.4c0.3-0.1,0.5-0.1,0.8-0.1c0.5,0,0.9,0.1,1.2,0.2c0.3,0.1,0.6,0.3,0.9,0.6
|
||||
L47,21.4c-0.2-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0-0.2,0.1-0.3,0.1
|
||||
c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.1-0.1,0.2-0.1,0.3c0,0.1,0,0.2,0.1,0.3s0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.2,0.4,0.2
|
||||
c0.2,0.1,0.4,0.2,0.6,0.3c0.3,0.1,0.6,0.2,0.8,0.4c0.2,0.1,0.4,0.3,0.6,0.4c0.1,0.2,0.3,0.3,0.3,0.5C48,24.1,48,24.4,48,24.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M10.8,16.1c0,0-0.3,0.1-0.5,0.2c-0.1,0-0.3,0.1-0.3,0.1c-0.1,0-0.2,0.1-0.2,0.1l1.6,3.6
|
||||
c0.2-0.1,0.3-0.1,0.5-0.2L10.8,16.1z"/>
|
||||
<path class="st2" d="M13,17.5c0,0-0.1,0-0.1,0c-0.1,0-0.2,0-0.3,0c-0.2,0-0.4,0.1-0.4,0.1l0.4,2.2c0.2,0,0.4,0,0.6-0.1L13,17.5z"
|
||||
/>
|
||||
<path class="st2" d="M15.4,14.3c0,0-0.1,0-0.2,0c-0.1,0-0.3,0-0.4-0.1c-0.2,0-0.3,0-0.4-0.1c-0.1,0-0.2,0-0.2,0l-0.5,5.6
|
||||
c0.2,0,0.4,0,0.6,0.1L15.4,14.3z"/>
|
||||
<path class="st2" d="M16.9,16.7c0,0-0.2-0.1-0.5-0.2c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.2-0.1l-1.3,3.6
|
||||
c0.2,0.1,0.3,0.1,0.5,0.2L16.9,16.7z"/>
|
||||
<path class="st3" d="M14.7,28l1.2,3.2c0,0,0.1,0,0.2-0.1c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.1-0.1,0.1-0.1
|
||||
l-1.6-3C15.1,27.9,14.9,28,14.7,28z"/>
|
||||
<path class="st3" d="M14,32.5c0,0,0.3,0,0.6-0.1c0.1,0,0.3-0.1,0.4-0.1c0.1,0,0.2,0,0.2,0l-1-4.1c-0.2,0-0.4,0.1-0.6,0.1L14,32.5z
|
||||
"/>
|
||||
<path class="st3" d="M12.2,29.9c0,0,0,0,0.1,0c0.1,0,0.2,0,0.3,0c0.2,0,0.4,0,0.4,0l0-1.6c-0.2,0-0.4,0-0.6-0.1L12.2,29.9z"/>
|
||||
<path class="st3" d="M9,33.4c0,0,0.1,0,0.2,0.1c0.1,0,0.3,0.1,0.4,0.2c0.2,0.1,0.3,0.1,0.4,0.2c0.1,0,0.2,0.1,0.2,0.1l1.6-5.7
|
||||
c-0.2-0.1-0.4-0.1-0.5-0.2L9,33.4z"/>
|
||||
<path class="st4" d="M6.1,32.9c0,0,0.3,0.2,0.6,0.5c0.1,0.1,0.3,0.2,0.4,0.3c0.1,0.1,0.2,0.1,0.2,0.1l3.6-6.1
|
||||
c-0.2-0.1-0.3-0.2-0.5-0.3L6.1,32.9z"/>
|
||||
<path class="st4" d="M7.1,28.5c0,0,0.7,0.8,0.7,0.8l2.3-2.3c-0.1-0.1-0.3-0.3-0.4-0.4L7.1,28.5z"/>
|
||||
<path class="st4" d="M4.7,27.4c0,0,0.1,0.3,0.2,0.5c0.1,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.1,0.2,0.1,0.2l4.1-2.4
|
||||
c-0.1-0.2-0.2-0.3-0.2-0.5L4.7,27.4z"/>
|
||||
<path class="st4" d="M2.1,25.4c0,0,0,0.1,0,0.2c0,0.1,0,0.3,0.1,0.5c0.1,0.4,0.2,0.7,0.2,0.7L9,25.1c0-0.2-0.1-0.4-0.1-0.6
|
||||
L2.1,25.4z"/>
|
||||
<path class="st5" d="M0.1,22.3c0,0,0,0.1,0,0.3c0,0.2,0,0.4,0,0.6c0,0.2,0,0.4,0,0.6C0,23.9,0,24,0,24L8.9,24c0-0.2,0-0.4,0-0.6
|
||||
L0.1,22.3z"/>
|
||||
<path class="st5" d="M6.2,21.2c0,0-0.1,0.2-0.2,0.5C6,21.7,6,21.9,6,21.9c0,0.1,0,0.1,0,0.1L9,22.9c0-0.2,0.1-0.4,0.2-0.5
|
||||
L6.2,21.2z"/>
|
||||
<path class="st5" d="M4.8,17.7c0,0-0.1,0.1-0.1,0.2c-0.1,0.1-0.2,0.2-0.3,0.4C4.2,18.6,4,18.9,4,18.9l5.4,3
|
||||
c0.1-0.2,0.2-0.3,0.3-0.5L4.8,17.7z"/>
|
||||
<path class="st5" d="M6.5,14.5c0,0-0.3,0.2-0.6,0.5c-0.3,0.2-0.6,0.5-0.6,0.5l5,5.4c0.1-0.1,0.3-0.3,0.5-0.4L6.5,14.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.7 KiB |
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#36A2EB;}
|
||||
.st1{fill:#FFCE56;}
|
||||
.st2{opacity:0.8;fill:#FE6184;enable-background:new ;}
|
||||
.st3{fill:#E7E9ED;}
|
||||
</style>
|
||||
<path class="st0" d="M43.6,24.2c-6.7,0.1-5.3,4.4-10,5.5c-4.8,1.1-5.6-11.7-10.4-11.7c-4.8,0-5.9,12.5-11.9,21l-0.2,0.2L24,46.6
|
||||
l19.6-11.3V24.2z"/>
|
||||
<path class="st1" d="M43.6,23.8c-2.2-2.9-3.8-6.2-7-6.2c-5.8,0-4.3,9.5-10.7,9.5c-6.4,0-7.1-10.2-14.3-0.6c-2.3,3-4.2,6.4-5.6,9.7
|
||||
L24,46.6l19.6-11.3V23.8z"/>
|
||||
<path class="st2" d="M4.4,27.7c2.2-6.1,3.2-11,7.4-11c6.4,0,7.9,18,13.4,16.2c5.5-1.8,4.9-11.6,13.4-11.6c1.6,0,3.3,1,4.9,2.6v11.4
|
||||
L24,46.6L4.4,35.3L4.4,27.7L4.4,27.7z"/>
|
||||
<path class="st3" d="M24,48L3.2,36V12L24,0l20.8,12v24L24,48z M5.7,34.6L24,45.2l18.3-10.6V13.4L24,2.8L5.7,13.4V34.6z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{clip-path:url(#SVGID_2_);}
|
||||
.st1{fill:url(#SVGID_3_);}
|
||||
.st2{fill:url(#SVGID_4_);}
|
||||
.st3{fill:none;stroke:url(#SVGID_5_);stroke-width:16.5517;stroke-miterlimit:1.6552;}
|
||||
</style>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_1_" d="M0,1.3h3.9c12.6,0,22.7,10.2,22.7,22.7S16.4,46.7,3.9,46.7H0v-10h3.9c7,0,12.7-5.7,12.7-12.7
|
||||
S10.9,11.3,3.9,11.3H0V1.3z M18.1,1.3h16C41.8,1.3,48,7.5,48,15.1c0,3.2-1.1,6.4-3.2,8.9c4.9,5.9,4.1,14.6-1.8,19.5
|
||||
c-2.5,2.1-5.6,3.2-8.9,3.2h-16c3.9-2.5,7.2-5.9,9.4-10h6.6c2.1,0,3.9-1.7,3.9-3.9S36.3,29,34.1,29h-3.9c0.6-3.3,0.6-6.7,0-10h3.9
|
||||
c2.1,0,3.9-1.7,3.9-3.9s-1.7-3.9-3.9-3.9h-6.6C25.3,7.2,22.1,3.7,18.1,1.3z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st0">
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="337.4835" y1="-678.44" x2="389.4399" y2="-730.3964" gradientTransform="matrix(0.4138 0 0 -0.4138 -165.8965 -217.7353)">
|
||||
<stop offset="0" style="stop-color:#F9A03C"/>
|
||||
<stop offset="1" style="stop-color:#F7974E"/>
|
||||
</linearGradient>
|
||||
<path class="st1" d="M-64-49.7v150H86L-64-49.7z"/>
|
||||
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="530.8096" y1="-441.6156" x2="606.9317" y2="-517.7377" gradientTransform="matrix(0.4138 0 0 -0.4138 -165.8965 -217.7353)">
|
||||
<stop offset="0" style="stop-color:#B84E51"/>
|
||||
<stop offset="1" style="stop-color:#F68E48"/>
|
||||
</linearGradient>
|
||||
<path class="st2" d="M-36-49.7h150v150L-36-49.7z"/>
|
||||
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="402.4705" y1="-527.6592" x2="505.1709" y2="-631.5679" gradientTransform="matrix(0.4138 0 0 -0.4138 -165.8965 -217.7353)">
|
||||
<stop offset="0" style="stop-color:#F26D58"/>
|
||||
<stop offset="1" style="stop-color:#F9A03C"/>
|
||||
</linearGradient>
|
||||
<path class="st3" d="M-50-49.7l150,150"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1,59 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{clip-path:url(#SVGID_2_);fill:url(#SVGID_3_);}
|
||||
</style>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_1_" d="M21.6,5.5c0,0,0,0.1,0,0.2c-0.2,0.1-0.4,0.1-0.6,0.2c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.8,0.3
|
||||
c-0.5,0.2-1.1,0.5-1.6,0.8c-0.5,0.3-1,0.6-1.5,0.9c-0.1,0-0.1-0.1-0.1-0.1c-5-1.9-9.4,0.4-9.4,0.4c-0.4,5.3,2,8.7,2.5,9.3
|
||||
c-0.1,0.3-0.2,0.7-0.3,1C8.4,20,8.1,21.2,8,22.5c0,0.2,0,0.4-0.1,0.6c-4.6,2.3-6,7-6,7c3.9,4.4,8.3,4.7,8.3,4.7c0,0,0,0,0,0
|
||||
c0.6,1,1.2,2,2,2.9c0.3,0.4,0.6,0.7,1,1.1c-1.4,4,0.2,7.4,0.2,7.4c4.3,0.2,7.1-1.9,7.7-2.3c0.4,0.1,0.9,0.3,1.3,0.4
|
||||
c1.3,0.3,2.7,0.5,4,0.6c0.3,0,0.7,0,1,0h0.2l0.1,0l0.2,0l0.2,0l0,0c2,2.9,5.6,3.3,5.6,3.3c2.5-2.7,2.7-5.3,2.7-5.9c0-0.6,0,0,0,0
|
||||
c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0.5-0.4,1-0.8,1.5-1.2c1-0.9,1.9-2,2.6-3.1c0.1-0.1,0.1-0.2,0.2-0.3c2.9,0.2,4.9-1.8,4.9-1.8
|
||||
c-0.5-3-2.2-4.4-2.5-4.7s0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0-0.2,0-0.4,0-0.5c0-0.3,0-0.6,0-1l0-0.2l0-0.1v-0.1
|
||||
c0-0.1,0-0.1,0-0.1l0-0.2l0-0.3c0-0.1,0-0.2,0-0.3c0-0.1,0-0.2,0-0.2l0-0.2l0-0.2c0-0.3-0.1-0.7-0.2-1c-0.3-1.3-0.8-2.5-1.5-3.6
|
||||
c-0.7-1.1-1.5-2.1-2.4-2.9c-0.9-0.8-2-1.5-3.1-2c-1.1-0.5-2.2-0.8-3.4-1c-0.6-0.1-1.1-0.1-1.7-0.1l-0.2,0l-0.1,0c0,0-0.1,0-0.1,0
|
||||
l-0.1,0l-0.2,0c-0.1,0-0.2,0-0.2,0c-0.3,0-0.6,0.1-0.9,0.1c-1.1,0.2-2.2,0.6-3.1,1.2c-0.9,0.6-1.8,1.3-2.4,2.1
|
||||
c-0.7,0.8-1.2,1.7-1.5,2.6c-0.4,0.9-0.6,1.9-0.6,2.8c0,0.2,0,0.5,0,0.7c0,0.1,0,0.1,0,0.2l0,0.2c0,0.1,0,0.2,0,0.3
|
||||
c0,0.5,0.1,0.9,0.3,1.3c0.2,0.9,0.6,1.6,1.1,2.3c0.5,0.7,1.1,1.2,1.7,1.6c0.6,0.4,1.3,0.7,2,0.9c0.7,0.2,1.3,0.3,1.9,0.3
|
||||
c0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0l0.1,0c0.1,0,0.1,0,0.2,0c0,0,0,0,0.1,0l0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0,0.2,0
|
||||
c0.1,0,0.1,0,0.2,0c0.1,0,0.3-0.1,0.4-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.2-0.1,0.5-0.3,0.7-0.4c0.1,0,0.1-0.1,0.2-0.1
|
||||
c0.2-0.2,0.3-0.5,0.1-0.7c-0.2-0.2-0.4-0.2-0.6-0.1c-0.1,0-0.1,0.1-0.2,0.1c-0.2,0.1-0.4,0.2-0.6,0.2c-0.2,0.1-0.4,0.1-0.6,0.2
|
||||
c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0c0,0,0,0,0,0l0,0l0,0
|
||||
c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.2,0c-0.5-0.1-1-0.2-1.4-0.4c-0.5-0.2-0.9-0.5-1.3-0.9c-0.4-0.4-0.8-0.8-1-1.3
|
||||
c-0.3-0.5-0.5-1.1-0.6-1.6c0-0.3-0.1-0.6-0.1-0.9c0-0.1,0-0.2,0-0.2c0,0,0,0,0,0l0,0l0-0.1c0,0,0-0.1,0-0.1c0-0.2,0-0.3,0.1-0.5
|
||||
c0.2-1.3,0.9-2.5,1.8-3.5c0.2-0.2,0.5-0.5,0.8-0.6c0.3-0.2,0.6-0.4,0.9-0.5s0.6-0.3,1-0.4c0.3-0.1,0.7-0.1,1-0.2
|
||||
c0.2,0,0.3,0,0.5,0c0,0,0.1,0,0.1,0l0.1,0l0.1,0c0,0,0,0,0,0l0,0l0.1,0c0.4,0,0.8,0.1,1.1,0.2c0.7,0.2,1.5,0.4,2.1,0.8
|
||||
c1.3,0.7,2.5,1.9,3.2,3.3c0.4,0.7,0.6,1.5,0.7,2.2c0,0.2,0.1,0.4,0.1,0.6l0,0.1l0,0.1c0,0.1,0,0.1,0,0.1c0,0,0,0.1,0,0.1v0.1
|
||||
l0,0.1c0,0.1,0,0.3,0,0.3c0,0.2,0,0.4-0.1,0.6c0,0.2-0.1,0.4-0.1,0.6c0,0.2-0.1,0.4-0.1,0.6c-0.1,0.4-0.2,0.8-0.4,1.2
|
||||
c-0.3,0.8-0.7,1.6-1.2,2.3c-1,1.4-2.4,2.5-4,3.3c-0.8,0.4-1.6,0.6-2.5,0.8c-0.4,0.1-0.9,0.1-1.3,0.1l-0.1,0H28l-0.1,0h-0.2h-0.1
|
||||
c0.1,0,0,0,0,0l0,0c-0.2,0-0.5,0-0.7,0c-0.9-0.1-1.8-0.2-2.7-0.5c-0.9-0.3-1.8-0.6-2.6-1c-1.6-0.9-3.1-2.1-4.2-3.5
|
||||
c-0.6-0.7-1.1-1.5-1.5-2.3c-0.4-0.8-0.7-1.7-1-2.5c-0.2-0.9-0.4-1.8-0.4-2.7l0-0.2l0,0v0l0-0.1l0-0.1l0,0v-0.1v-0.1l0-0.2v0
|
||||
c0,0,0,0,0,0V25c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.9,0.1-1.4c0.1-0.5,0.1-0.9,0.2-1.4c0.1-0.5,0.2-0.9,0.3-1.3
|
||||
c0.3-0.9,0.6-1.7,0.9-2.6c0.7-1.6,1.7-3.1,2.9-4.2c0.3-0.3,0.6-0.6,0.9-0.8c0.3-0.3,0.6-0.5,1-0.7c0.3-0.2,0.7-0.4,1-0.6
|
||||
c0.2-0.1,0.4-0.2,0.5-0.3c0.1,0,0.2-0.1,0.3-0.1s0.2-0.1,0.3-0.1c0.4-0.2,0.8-0.3,1.1-0.4c0.1,0,0.2-0.1,0.3-0.1
|
||||
c0.1,0,0.2-0.1,0.3-0.1c0.2-0.1,0.4-0.1,0.6-0.2c0.1,0,0.2,0,0.3-0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.2,0,0.3-0.1l0.2,0l0.2,0
|
||||
c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0l0.1,0l0.1,0l0.1,0c0.1,0,0.2,0,0.3,0l0.2,0
|
||||
c0,0,0.1,0,0,0l0,0l0.1,0c0.1,0,0.2,0,0.3,0c0.4,0,0.8,0,1.2,0c0.8,0,1.5,0.1,2.3,0.3c1.5,0.3,2.8,0.7,4.1,1.4
|
||||
c1.3,0.6,2.4,1.4,3.3,2.2c0.1,0.1,0.1,0.1,0.2,0.2c0.1,0.1,0.1,0.1,0.2,0.2c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.2,0.3,0.3
|
||||
c0.1,0.1,0.2,0.2,0.3,0.3c0.4,0.4,0.8,0.9,1.1,1.3c0.7,0.9,1.2,1.8,1.7,2.6c0,0.1,0.1,0.1,0.1,0.2s0.1,0.1,0.1,0.2
|
||||
c0.1,0.1,0.1,0.2,0.1,0.3c0,0.1,0.1,0.2,0.1,0.3c0,0.1,0.1,0.2,0.1,0.3c0.2,0.4,0.3,0.8,0.4,1.1c0.2,0.6,0.3,1.1,0.5,1.5
|
||||
c0,0.2,0.2,0.3,0.4,0.3c0.2,0,0.3-0.2,0.3-0.4c0-0.5,0-1.1-0.1-1.7c-0.1-0.8-0.2-1.7-0.5-2.8c-0.3-1-0.7-2.1-1.2-3.3
|
||||
c-0.6-1.2-1.3-2.4-2.3-3.5c-0.4-0.5-0.8-0.9-1.3-1.4c0.7-2.7-0.8-5-0.8-5C37.3,5,35.7,6,35.1,6.4c-0.1,0-0.2-0.1-0.3-0.1
|
||||
c-0.4-0.2-0.9-0.3-1.4-0.5S32.5,5.5,32,5.4c-0.5-0.1-1-0.2-1.5-0.3c-0.1,0-0.2,0-0.3,0C29.1,1.5,25.9,0,25.9,0
|
||||
C22.3,2.3,21.6,5.5,21.6,5.5"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-1157.1758" y1="-7712.5269" x2="-1150.0594" y2="-7712.5269" gradientTransform="matrix(0 -6.1635 6.1635 0 47560.4922 -7073.5063)">
|
||||
<stop offset="0" style="stop-color:#FFF200"/>
|
||||
<stop offset="1" style="stop-color:#F15A29"/>
|
||||
</linearGradient>
|
||||
<path class="st0" d="M1.9,0h44.2v48H1.9L1.9,0z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.2 KiB |
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#E9478B;}
|
||||
.st1{fill:#3EBEB0;}
|
||||
.st2{fill:#37A595;}
|
||||
.st3{fill:#353535;}
|
||||
</style>
|
||||
<path class="st0" d="M6.2,18c6.4,0,12.4,1.7,17.6,4.5L42.5,0h-37v44.5V18C5.5,18,6.2,18,6.2,18z"/>
|
||||
<path class="st1" d="M23.8,22.4L5.5,44.5V48h36.9C40.3,37,33.3,27.7,23.8,22.4z"/>
|
||||
<path class="st2" d="M23.8,22.4L5.5,44.5V48H12l17.8-21.5c0,0-1.2-1-2.9-2.2C25.7,23.5,23.8,22.4,23.8,22.4z"/>
|
||||
<path class="st3" d="M6.2,18H5.5v26.5l18.3-22.1C18.6,19.6,12.6,18,6.2,18z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 833 B |
|
After Width: | Height: | Size: 10 KiB |
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#151F34;}
|
||||
.st1{fill:#348540;}
|
||||
.st2{fill:#7DBC42;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M29.3,13.8c-1.7,0.4-3.5,0.6-5.3,0.6c-1.8,0-3.5-0.2-5.3-0.6c1.4-2.2,3.2-4.2,5.3-5.9
|
||||
C26.1,9.5,27.9,11.5,29.3,13.8z M45.1,0.9C43,0.3,40.8,0,38.5,0C33.4,0,28.3,1.5,24,4.4C19.7,1.5,14.7,0,9.5,0C7.2,0,5,0.3,2.8,0.9
|
||||
C1.9,1.1,1,1.4,0.1,1.7c0,0,0,0.1,0,0.1c0.4,0.8,0.8,1.6,1.2,2.4c0,0,0.1,0,0.1,0c0.9-0.3,1.8-0.6,2.7-0.8C10.2,2,16.4,3,21.6,6.2
|
||||
c-2.3,1.9-4.2,4.2-5.7,6.7c-0.3,0.5-0.6,1-0.8,1.5s-0.3,0.7-0.5,1c-0.2,0.4-0.5,1.1-0.7,1.6c-3.6,9.8-1.1,20.8,6.4,28.1
|
||||
c0.4,0.4,0.8,0.7,1.2,1.1c0.4,0.4,0.7,0.6,1,0.8s0.9,0.7,1.3,1c0,0,0.1,0,0.1,0c0.4-0.3,0.9-0.6,1.3-1c0.4-0.3,0.7-0.5,1-0.8
|
||||
c0.3-0.3,0.8-0.7,1.2-1.1c5.2-4.9,8.1-11.8,8.1-18.9c0-3.1-0.5-6.2-1.6-9.1c-0.2-0.6-0.4-1.1-0.7-1.6c-0.2-0.5-0.3-0.7-0.5-1
|
||||
s-0.5-1-0.8-1.5c-1.5-2.5-3.4-4.8-5.7-6.7C31.6,3,37.9,2,43.8,3.4c0.9,0.2,1.8,0.5,2.7,0.8c0,0,0.1,0,0.1,0
|
||||
c0.4-0.8,0.8-1.5,1.2-2.3c0,0,0-0.1,0-0.1C47,1.4,46.1,1.1,45.1,0.9z"/>
|
||||
<path class="st1" d="M32.9,26.2c0,6-2.3,11.7-6.4,16c-0.7-2.3-1.1-4.6-1.1-7c0-6,2.3-11.7,6.4-16C32.5,21.5,32.9,23.8,32.9,26.2"/>
|
||||
<path class="st2" d="M22.6,35.2c0,2.4-0.4,4.7-1.1,7c-5.8-6.2-7.9-15-5.3-23.1C20.4,23.5,22.7,29.3,22.6,35.2"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#E42528;}
|
||||
</style>
|
||||
<path class="st0" d="M39,29.3c0,2-1.1,3-3,3.1H12c-2,0-3-1-3-3.1c0-2,1.1-3,3-3.1H36C38,26.3,39,27.3,39,29.3z M36,33.9H12
|
||||
c-2,0-3,1-3,3.1c0,2,1.1,3,3,3.1H36c2,0,3-1,3-3.1C39,34.8,38,33.9,36,33.9z M43.5,17L43.5,17c-2,0-3,1-3,3v16.8c0,2,1.1,3,3,3.1
|
||||
l0,0c3-0.1,4.5-3.1,4.5-9.2v-7.6C48,19.1,46.4,17.1,43.5,17z M4.5,17L4.5,17c-3,0.1-4.5,2.1-4.5,6.2v7.6c0,6.1,1.6,9.1,4.5,9.2l0,0
|
||||
c2,0,3-1,3-3.1V20.1C7.5,18.1,6.5,17.1,4.5,17z M43.5,15.5c0-5.1-2.6-7.5-7.4-7.6H12C7.1,8,4.5,10.6,4.5,15.5l0,0
|
||||
c3,0,4.5,1.6,4.5,4.6s1.6,4.6,4.5,4.6h21c2.9,0,4.5-1.6,4.5-4.6C39,17,40.6,15.6,43.5,15.5z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 984 B |
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#00A9E5;}
|
||||
.st1{fill:#353535;}
|
||||
.st2{fill:#00BFB3;}
|
||||
.st3{fill:#019B8F;}
|
||||
.st4{fill:#F9B110;}
|
||||
.st5{fill:#FED10A;}
|
||||
</style>
|
||||
<g id="Elasticsearch_1_">
|
||||
<g>
|
||||
<path class="st0" d="M35,16.8H22.5c0.1,0.3,0.2,0.6,0.2,0.8c0.4,1.4,0.7,2.9,0.8,4.5c0.1,0.6,0.1,1.3,0.1,1.9c0,0.6,0,1.3-0.1,1.9
|
||||
c-0.1,1.6-0.4,3.1-0.8,4.5c-0.1,0.3-0.2,0.6-0.2,0.8H35c4,0,7.1-3.2,7.1-7.2S39,16.8,35,16.8z"/>
|
||||
<path class="st1" d="M23.5,25.9c0.1-0.6,0.1-1.3,0.1-1.9c0-0.6,0-1.3-0.1-1.9c-0.1-1.6-0.4-3.1-0.8-4.5c-0.1-0.3-0.2-0.6-0.2-0.8
|
||||
H3.1C2.4,19.1,2,21.5,2,24c0,2.5,0.4,4.9,1.1,7.2h19.4c0.1-0.3,0.2-0.6,0.2-0.8C23.2,28.9,23.4,27.4,23.5,25.9z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M37.2,33.6H21.6c-0.5,1.1-1,2.1-1.6,3.1c-0.9,1.5-2,2.8-3.2,4.1c-0.4,0.4-0.8,0.8-1.3,1.2
|
||||
c-0.8,0.8-1.8,1.4-2.8,2.1c3.8,2.5,8.3,4,13.2,4c8.3,0,15.7-4.3,20-10.7C43.7,35,40.6,33.6,37.2,33.6z"/>
|
||||
<path class="st3" d="M20,36.7c0.6-1,1.1-2,1.6-3.1H4c1.9,4.3,4.9,7.9,8.8,10.4c1-0.7,1.9-1.3,2.8-2.1c0.4-0.4,0.8-0.8,1.3-1.2
|
||||
C18,39.5,19.1,38.2,20,36.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st4" d="M16.8,7.3c-0.4-0.4-0.8-0.8-1.3-1.2c-0.8-0.8-1.8-1.4-2.8-2.1C8.9,6.5,5.9,10.1,4,14.4h17.6
|
||||
c-0.5-1.1-1-2.1-1.6-3.1C19.1,9.8,18,8.5,16.8,7.3z"/>
|
||||
<path class="st5" d="M26,0c-4.9,0-9.4,1.4-13.2,4c1,0.7,1.9,1.3,2.8,2.1c0.4,0.4,0.8,0.8,1.3,1.2c1.2,1.3,2.3,2.6,3.2,4.1
|
||||
c0.6,1,1.1,2,1.6,3.1h15.6c3.4,0,6.5-1.4,8.8-3.7C41.6,4.3,34.3,0,26,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,95 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FDEE21;}
|
||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#C8C037;}
|
||||
.st2{fill-rule:evenodd;clip-rule:evenodd;fill:#FCF6A0;}
|
||||
.st3{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st4{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
||||
.st5{fill-rule:evenodd;clip-rule:evenodd;stroke:#000000;stroke-width:8.298515e-03;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<g transform="matrix(.072794 0 0 .072794 -.000407 .634153)">
|
||||
<path class="st0" d="M377.3,87.6C371.6,71.8,172.6-5.6,170.1,2.9c-36.5,9.5-51.4,51.6-76.5,78.3L37.8,78
|
||||
c-24.6,31.6-37.5,63.9-28.7,97.5c31.5,42.7,68.1,79,90.9,132.6c1.8,25.3,109.4,2.6,132.4-2.4c-31.5,22.5-58.9,57.5-47.1,158.1
|
||||
c10.8,47.3,18.1,100,113.6,153.5c12.6,7,38.6,15.2,54.6,21.1c15.4,7.1,33.3,9.9,84.1-5.6c29.3-12.6,61-20.3,89.7-32.9l-34.5,1.6
|
||||
c-47.5,1-84.2,4.6-95.5-8.7l-43.7-75.5l25.5-49.5c35.3,3.6,47,32.2,78.1,43.1l36.7-27.2c106.5,62.9,148.9-39.8,161-119.8
|
||||
c-1.3-32.5-70.5,10.2-66.3-5c1.6-35-26.9-80.8-45.3-116.4l21.3-82.5c9.7-8.6-44.8-100.4-89.3-111.8
|
||||
C436.2,38.2,377.3,87.6,377.3,87.6L377.3,87.6z"/>
|
||||
<g>
|
||||
<path class="st1" d="M552.3,263c0.4,8.9,0.3,19.6,1.2,26.4c-0.1,5.1-4,5.3-7.2,6.4l20.7,7.6c4.1,6.9,7.4,13.8,10.8,20.8
|
||||
c3.9,17,1,17.5-1.6,18.8c-7.5,0.1-15,0.1-22-1.4c3.1,1.7,3.8,2.9,4.2,5c0.6,3.9-1.9,9.2-6.1,14.4c6.1,3.4,17.3,6.7,25.6,9.9
|
||||
l9.5-21.1C583.1,318.7,570.1,290.2,552.3,263L552.3,263z M591,366.8c11.5,4.8,27.4,3.4,49.4-8c3.3-2.3,6.3-0.9,0.5,2.9
|
||||
C611.9,387.6,598.1,374.7,591,366.8L591,366.8z"/>
|
||||
<path class="st1" d="M642.6,355.4c3.4,6.5,1.3,11.9,0.2,17.4c-3.6,28.1-12.3,50.3-29.5,73.5c-55.9,89.8-112.3,33.6-157.2-3
|
||||
L437.4,490c-1,4.1-5.1,7.3,24,20.1l29.6-20.9C603.8,575,683.8,368.9,642.6,355.4L642.6,355.4z M469.7,435.7
|
||||
c-7.6,0.5-30.3,8.2-31.3,12.7l10.4-15.5L469.7,435.7z M454.9,340.5c1.4,0,8.1,1.8,7.4,1.4c-1-0.6-0.1,9.4,2,14.6l-8.2,17.8
|
||||
c15.6-18,40.4-16.8,63.4-19.2l-11-6.8c1.9-6.3-0.3-11.4-1.4-16.8L454.9,340.5z M493.3,286.9c-16.8,5.1-32.9,13.6-43.7,31.5
|
||||
c8.2-29.5,9.9-28.4,12.6-29.9C473.7,283.4,483.2,286.6,493.3,286.9z"/>
|
||||
</g>
|
||||
<path class="st2" d="M403.6,633.3c-20.3,22.4-65.6-1.7-103.2-14c-95.6-60.8-114.3-118-115.6-174.2c-4.9-80.4,19.8-127.1,51-138.2
|
||||
c-20.7,39.9-30.3,111.4-20.7,164.6c7.7,29.6,7.9,79.5,57.4,106.2c24.2,13.7,17.7,24.3,34.1,37.1
|
||||
C324.6,628.8,374.7,642.1,403.6,633.3L403.6,633.3z M434,261.6c-34.4-48.8-82.7-67-137.2-69c10.9-3.6,21.9-5.4,32.8-10.7
|
||||
c2.7-2.8,1.8-7.8,0.8-12.8c-52.5-13.7-85.6-30.6-127.5-46.3L316,149.9C392.4,152.8,385.8,171.7,434,261.6L434,261.6z M470.8,238.1
|
||||
c-25.4-36.3-50-80.3-83.5-108.3c-80.7-36.4-160.6-63.5-254.2-88.1L163,3.3C262.3,26,355.6,63.9,439.1,126.5
|
||||
C453.3,162.2,462.7,198,470.8,238.1L470.8,238.1z M522,174c0,0-14.2-32-21.2-44.2c-16.1-17.8-24.2-51-57.2-66.7
|
||||
c10.4,2.8,17.6-0.5,38.8,18.7l33.5,63.6L522,174z M539.7,229.4c3.3-27.7,9.5-72.1,2.4-89.6l-60-80c-3.3-3.1-5.7-7.3-8.3-10.6
|
||||
c28.2,7.3,57.6,26.9,97.4,104.4L539.7,229.4z"/>
|
||||
<path class="st3" d="M421.1,232.6c-11.2-8.9-21.2-40.1-38.3-46.6c-15.8-1.3-21.5-6.3-42.3-2.1c7.5-3.8,14.6-8.6,22.6-11.2
|
||||
c5.4-1.3,10.5,0.1,15.7,0.8c1.3-0.6,2.1-1.4,1.8-2.5c-20.9-12.9-63.7-13.1-92.5-20.4c33.5,1.1,70.6-0.7,95.8,7.4
|
||||
C404.2,176.1,410.7,209.9,421.1,232.6L421.1,232.6z M482.5,81.8c4.7,0.4,29.7,40,30.9,46.6c2.1,14.4,7.2,30.5,8.6,45.6
|
||||
c-4.1-14.5-8.6-28.9-14.2-43.4c-1.7-4-5.8-13-17.3-25.7C485.1,96,483.9,89,482.5,81.8L482.5,81.8z M567.4,297.5h-10.7l11.8,3.1
|
||||
L567.4,297.5z M494.3,286.8c-10.8-1.3-21.8-1.5-32.6,0.9c-4.4,5.9-4.7,11.9-6.6,17.4C468.2,290.7,473.4,289.8,494.3,286.8
|
||||
L494.3,286.8z M641.2,361.2c-6,4.8-6.6,9.3-24.3,14.7c-12.9,3.1-20.2-2.1-26.3-9.1c9.2,2.6,10.7,9.6,35.4,1.8L641.2,361.2z
|
||||
M587.5,364.2c-4.3,11.9-9,23.9-13.7,35c-11.2,13.1-6.4,5.6-23.1,26c5.3-8.2,12.3-16.2,15.9-24.8c2.6-5.7,5.7-11.7,7.1-16.7
|
||||
c-4.4-2.2-13.5-2.4-14.7-1.6c-14.9,8.8-17.5,18-26.3,27.1c6.3-10.1,11.8-21.2,19.1-30.4c0.8-1.2,6.3-1.4,9.6-2.1
|
||||
c-5.2-0.9-14.8-2.8-15.6-2.7c-9.7,2.3-15.1,10.8-22.3,16.4c5.2-7.6,10.1-15.5,16.7-22c0.7-0.8,18.7,0.8,28,4.5l0.2,3.7l5.3,2.1
|
||||
l4-10L587.5,364.2z M469.9,435.7c-2.4-0.8-23.5-3.5-23.5-2.9c-8.1,5.8-9.3,11.3-9.2,16.1C450.7,435.7,450.2,435.6,469.9,435.7
|
||||
L469.9,435.7z M453.8,340.3c0,0,15.2-2.2,14.9-0.8c-1.1,5.3,1.9,18.2,2.2,16.4l-8.6,7c17.9-9,36.8-7.2,56-8.6
|
||||
c0,0-16.1-4.5-15.1-4.6c3.6-0.5-1-16.8-2.2-17.2c3.1-1,6.1-1.8,9.2-2.6C487.2,323.8,473.8,327.4,453.8,340.3L453.8,340.3z"/>
|
||||
<path class="st3" d="M585.8,351.7l-3.4,1.7c-0.5-9.9-11.1-9.2-20.1-9.3l-7.4-1.8c2.3,2.1,9.2,1.9,6.4,6.4
|
||||
c-2.4,1.3-3.4,6.7-4.8,11.2l-4,0.2l21.3,8.4l4.6,0.7l11-5.9L585.8,351.7z"/>
|
||||
<path class="st4" d="M484.7,345c-1.7-3.4-10.3-2.9-12.2-0.7c-1.5,1.8-0.1,13.2,1.8,11.3c2.8-2.5,6.5-3.5,10.9-3.3
|
||||
C485.8,350.1,485.6,347.9,484.7,345L484.7,345z M567.5,362c0.8-0.6,2.5-6.3,2-8.1c-1.1-4.1-9.2-3.2-9.2-3.2c-2,1.2-3.7,7.5-3,9.6
|
||||
C557.7,362.1,566.2,362.7,567.5,362L567.5,362z"/>
|
||||
<path class="st3" d="M224.3,560.1l5.1,0.5c30.1,14.8,79.5,36.6,151.2,24.9l11.2,17.7c-31.6,15.3-65.5,11.8-97.3,12.9L224.3,560.1z
|
||||
M181.2,443.4l15.1,63.2c40.3,25.2,109.2,54.1,166.6,51.7l-12.7-29.1C230.3,503.8,220.2,471.6,181.2,443.4L181.2,443.4z
|
||||
M218.6,313.9c7.4,49,17.2,86.1,59.8,117.2c26.1,18.8,52,37.5,83.5,52.9c0,0-2.8,14.4-5.1,14.1c-93.8-10.4-162.5-88.2-170.8-123.7
|
||||
C194.1,347.2,205.7,330.2,218.6,313.9L218.6,313.9z M263.7,286.2c12.5,54.3,42.3,109.3,71.9,159.1c10.9,13.8,13.7,19.9,30.4,28.2
|
||||
c22.6,7.2,38.6,5.3,55,4.3c-4.5-8.3-8.5-17-13.7-24.9c-36.8-29.1-19.8-55.5-10-72.3c-20.4-5.2-47.5-16.1-51.3-30.6
|
||||
c-6-46.7-3-61.5,3.1-85.5C321.5,270.4,293.5,276.2,263.7,286.2L263.7,286.2z"/>
|
||||
<path class="st5" d="M162.2-2.2c-9.1,5.9-17.9,14.4-27.3,24.1c-15.6,16.2-26,32-41.9,43.7c-3.2,2.7-12.1,7.2-23.3,7.8
|
||||
c-5.3,0.3-8.7,1.1-18.5-0.1c-8.6-4.6-16.7-1.6-24.7,7.9c-8.7,12.5-19.8,36.3-24.3,51.3c-9.5,38.2,14.7,69.7,37.8,93.9
|
||||
c20.6,20.1,32.4,32.7,40.9,51.1c6.4,12,11.1,28.4,16.3,39.9c1.8,3.6,1.5,3.6,6.5,4.7c10.8,2.3,25.7,2.3,38.9,3.5
|
||||
c5.7,0.1,13.6-0.1,21.1-0.9c10.3-1.9,22.4-3.9,32.5-7.4c9.9-2.4,18.7-5.8,26.7-8.9c-1,3.5-8.6,6.8-11.5,11.3
|
||||
c-27,38.6-34.4,73-29.7,127.2c2.7,24,8.2,44,16.5,66.8c3.8,10.4,11.9,27,19.7,37.9c23.1,32.6,74.8,74.5,146.7,90.7
|
||||
c12.5,1.7,26.8,0.8,40.2-2.8c35.5-10.8,107.8-36.2,107.8-36.2s-64.2,5.3-93.6,2.4c-6.8-1.1-14.3-1.4-19.1-6.1
|
||||
c-0.8-1-3.7-6.8-1.8-6.9c2.5-0.1,9.9-3.1,21.2-4.1c-24.1-2.6-23.8-2.6-25.5-7c-2.7-6.8-6.9-16.1-11.2-24.3c10.6,0.9,34,2.2,42-6
|
||||
c0,0-13.9,1.6-26.1,0.2c-4.1-0.5-11.2-3-13.3-3.8c-5.5-2.1-10-2.8-11.1-4.2c-1.9-4.9-3.2-6.5-5.5-13c-3.1-8.6-3.4-18.3-4-27.1
|
||||
c8,9.9,18.2,18.2,31.8,22.5c0.2-0.4,17.6,7.6,30.2,3.5l2.6-0.8c0,0.2-8.4,0.7-11.4-0.8c-25.7-10.9-29.5-20.5-33.7-25.2l-11.1-16.6
|
||||
c3.4-6.7,5.3-7,9.8-7c13.5,1.5,19.4,2.7,27.6,0.7c5.6,11.4,7.1,22.9,19.7,31.2c42.1,12.5,51.3-3.7,61.5-18
|
||||
c30.3,22.2,79.7,29.1,113.9,0.4c43.6-50.4,57.4-129.9,53.5-134.4c-5.4-9.2-12.6-18.8-18.7-17.4c-21.8,6-29.9,17-51.6,14.5
|
||||
c2.6-0.1,6.9-0.2,6.9-0.5c1.7-18.3-0.1-27.2-0.9-28.7c-6.6-14.5-15.2-29.7-21.2-41.2c-1.6-2.4-6.1-20.4-13.7-27.5
|
||||
c-3.3-2.8-11.3-10.2-11.3-10.2l-0.7,7.8c0,0,3.1,0.5,4.3,5.3c4.5,18.4,27.5,61.9,29.2,64c8.2,13.2,0.8,29.6,7,38.7
|
||||
c0.6,1.2,12.6-0.1,22,0.5c15.4-3.3,14.7-10.1,28-11.1c8.9-0.7,9.8,16.1,9.7,17.4c-1.7,18.5-7.3,40.1-15.9,59.7
|
||||
c-17.9,34.6-38,65.6-66.5,69.9c-34.7,6.1-52.8-9.1-71.6-18.8l-7.2,6.1c-24.5,24.4-53.6,22.2-65.4-9.6
|
||||
c-5.9-12.4-13.6-19.9-20.2-30.5l-35,25.2c-2.9,6-6.5,15.4-10.9,25.9c-3,7.3-5.6,19.9-5.4,30.3c-4.5,7.6,15.5,38.7,28.2,57.5
|
||||
l11,15.9c2.5,6.5,8,12.3,8.3,13c23.5,30.7-29.6,23.6-40.6,21.8c-21.7-3.5-42.8-12.5-62.8-24.6l-3.5-2.1c-23.7-14.9-45.4-34-64-52.8
|
||||
c-11-12.5-21.6-38.1-29.3-56.3c-11.6-43.7-28.3-119.4,16.9-176.7c2.9-3.3,6-8.7,8.6-9.8c13.4-9.1,28-15.3,43.7-18.7l-1.6-10.2
|
||||
c-7.8,1.8-34.2,11.4-41.7,15.5c-17,4.9-31,10.1-52.7,15.5c-7,0.9-13.9,0.9-20.7,0c-15.6-2.1-42.1-0.2-43.8-1.8
|
||||
c-10.5-14.7-13.4-41-23-55.1l-0.1-0.1l-0.1-0.1c-5.6-7.5-12.1-13.7-18.6-20.1c-23-22.9-42.8-45-48.3-68.5c-1.4-6.9-5-14.1-3.1-34.6
|
||||
l0-0.1l0-0.1c5.5-19.1,14.6-34.7,29.9-50.4c15.9,0.3,31.7,0.6,44,3c5.6,0.9,17.3,2.5,29.4,7c30.6,11.4,71.1,30.2,71.1,30.2
|
||||
c-30.4-16.7-64.3-38.3-85.8-42.7c-3.2-0.5-5.2-1.9-6.1-4.4c32.3-18.9,38.2-41.3,59.4-61.3c9.7-4.2,13.5-6.4,21.7-7.3
|
||||
c76.2,12,124.1,42.4,162.1,62.7c15.4,8.4,29.4,14.7,42.8,22.3c11.7,3.9,47.1,30.6,57.4,44.9c10.5,22.2,18.2,46.2,25.2,69.3
|
||||
c5,23.5,9.4,33.1,9.4,33.1s-4.3-19.7-3.6-23.2c4.4,1.7,14.9,4.9,19.2,4.4c0,0-19.4-10-21.9-18.9c-8.1-28.4-16.3-72.6-18.5-74.9
|
||||
c-6.2-7.8-32.1-27.6-48-36.8c-6-3.5-9.3-5.6-9.5-7.1c5.1-5.1,11.3-11.9,16.9-16.2c5.4-4.1,10.3-8.8,17.8-11.6
|
||||
c33-14.9,51.8,5.7,56.3,1.5c0,0-7.1-8.1-3.9-6.8c3.2,1.7,13.7,3.8,14.9,4.9c12,9.4,43.4,43.8,62.4,80c4.5,8.9,6.4,14.7,4.3,25.4
|
||||
c-2.1,10.7-3.8,16.6-6.1,23.7c-2.1,4.8-13.9,37.5-13.8,41.9c-2.4,18,7.7,40.4,7.7,40.4c0.1-6.1-0.4-9.4,0.2-13.7l0.7-7.8
|
||||
c0,0-0.4-2.1-0.4-2.9c0.5-5.4,1.8-9.9,2.2-13c3.8-23.4,10.4-40.3,17.8-60.9c2.2-5.2,5.1-8.1,5-12c0.1-7-6.2-16.4-10.7-25.6
|
||||
c-4.6-9.3-10.1-19.7-17.2-30.6c-16.4-23.5-30.3-41.9-55.9-53.5c-7.1-3.1-35.3-6.2-45-4.4c-11.8,2.5-21.9,4.9-30,10
|
||||
c-12.7,8.1-22.7,20.7-34.4,28.2c-25.9-13-38.4-22.7-40.8-24c-15.4-8.3-33.9-17.8-53.8-26.9C275.7,23.3,216.4,2,162.2-2.2L162.2-2.2
|
||||
z M493.7,481.3c-16-12.5-29.4-25.4-38.3-38.6c-2.9,15.6-13.4,26.7-21.5,37.6c-1.6,2.6-2.8,6,5.2,17.2c2.1,3,9.9,3.5,15.1,3.2
|
||||
c-5.3-4-13.4-8.3-14.7-12c9.4,6.4,18.1,8.2,25.9,7.2c1.8-0.2,4-2.1,5.7-5c3.5-7.5,6.2-9.3,9-11.3l6.4,8L493.7,481.3z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.4 KiB |
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{clip-path:url(#SVGID_2_);fill:#444B5E;}
|
||||
</style>
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" y="8.1" width="106.1" height="31.8"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path class="st0" d="M41.7,11.1c-1,0-1.7,0.5-1.9,1.3c0.3,0.2,0.6,0.3,1,0.3c0.8,0,1.6-0.6,1.3-1.6C42,11.1,41.8,11.1,41.7,11.1
|
||||
M47,8.1L47,8.1c-0.8,0-0.9,0.4-2.5,0.8c-1.6,0.4-3.2,0-4.9,0.7c-5.2,2.2-6.3,9.7-11,12.4c-3.5,2-6.9,2.9-10.1,3.9
|
||||
c-2.1,0.7-4.2,1.4-6.1,3.1c-1.5,1.3-1.9,2.3-3.4,3.9c-1.6,1.6-6.4-1.3-8.8,0.9c-0.2,0.2-0.2,0.5,0,0.7c0,0,0,0,0,0
|
||||
c0.5,0.4,1.5,1.5,2.4,1.8c-0.3,0.6-1.9,2.2-1.6,3c0.4,0.9,4.5,0.3,8.3-2c1.8-1.1,3.2-2.6,5.9-3c3.6-0.5,7.7,0.3,11.8,0.9
|
||||
c-0.6,1.8-1.8,3-2.8,4.5c-0.3,0.3,0.6,0.4,1.7,0.2c1.9-0.5,3.2-0.8,4.7-1.7c1.7-1,2-3.6,4.1-4.2c1,1.6,3.6,2.1,5.6,1.3
|
||||
c0.1,0,0.2-0.1,0.3-0.2c0.2-0.2,0.1-0.5,0-0.6c-0.1-0.1-0.1-0.1-0.2-0.2c-1.1-1.2-1.4-4-0.9-5.4c0.6-1.6,1.1-4.1,1.7-6.1
|
||||
c0.6-2.2,0.8-5,1.6-6.2c1.1-1.7,2.3-2.3,3.4-3.2c1.1-1,2-1.9,2-4.1C48,8.5,47.7,8.1,47,8.1 M47.2,10.4c-0.2,1.5-1.2,2.3-2.3,3.2
|
||||
c-1,0.7-2.1,1.4-2.8,2.5c-0.7,1.1-1.2,5-2.3,8.8c-0.9,3.2-2.3,6.3-4.7,7.8c-0.2,0.1-0.4,0-0.4-0.2c-0.2-0.9-0.1-2.5-0.4-2
|
||||
c-0.3,1-0.7,1.9-1.2,2.8c-1.4,2.7-3.4,4.7-6.7,5.5c-0.2,0-0.3-0.1-0.4-0.2c0-0.1,0-0.2,0-0.2c1.5-2.1,2.9-4.3,3-7.8
|
||||
c0-0.3-0.4-0.4-0.5-0.2c-0.7,0.9-0.9,3-1.9,3.6c-0.8,0.1-1.6,0.1-2.5,0c-3.4-0.2-6.9-1.2-10.1-0.2c-2.2,0.7-4.5,2.7-6.3,3.5
|
||||
c-2.2,0.9-3.2,1.8-5.9,1.8c-0.3-0.4,1.1-2,1.6-2.7c0.2-0.2-0.2-0.5-0.5-0.6c-0.7-0.3-1.5-1.3-2.3-1.6c0.1-0.2,0.5-0.4,0.7-0.5
|
||||
c1.8-1,6.6,1.2,7.8-0.1c0.8-0.8,1.3-1.5,1.9-2.2c0.5-0.8,1.3-1.6,2.1-2.2c0.3-0.3,0.7-0.5,1.1-0.8c1.4-1,2.2-1,4-1.7
|
||||
c2.3-0.9,5.2-1.6,7.6-2.6c1.5-0.6,3.2-1.3,4.5-2.3c0.3-0.2,0.6-0.5,0.9-0.8c3.9-3.8,4.6-10.4,10.6-11c0.7-0.1,1.2-0.1,1.8-0.1
|
||||
c0.6,0,1.2-0.2,1.8-0.5c0.2-0.1,1.3-0.7,1.7-0.4C47.3,9.1,47.2,10.3,47.2,10.4"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1,60 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#439934;}
|
||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#45A538;}
|
||||
.st2{fill-rule:evenodd;clip-rule:evenodd;fill:#46A037;}
|
||||
.st3{fill-rule:evenodd;clip-rule:evenodd;fill:#409433;}
|
||||
.st4{fill-rule:evenodd;clip-rule:evenodd;fill:#4FAA41;}
|
||||
.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#4AA73C;}
|
||||
.st6{fill-rule:evenodd;clip-rule:evenodd;fill:#57AE47;}
|
||||
.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#60B24F;}
|
||||
.st8{fill-rule:evenodd;clip-rule:evenodd;fill:#A9AA88;}
|
||||
.st9{fill-rule:evenodd;clip-rule:evenodd;fill:#B6B598;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;fill:#C2C1A7;}
|
||||
.st11{fill-rule:evenodd;clip-rule:evenodd;fill:#CECDB7;}
|
||||
.st12{fill-rule:evenodd;clip-rule:evenodd;fill:#DBDAC7;}
|
||||
.st13{fill-rule:evenodd;clip-rule:evenodd;fill:#EBE9DC;}
|
||||
</style>
|
||||
<path class="st0" d="M33.5,15.7c0.6,1.8,1.1,3.7,1.2,5.6c0.2,2.4,0.1,4.8-0.4,7.1c0,0.1,0,0.1-0.1,0.2c-0.2,0-0.3,0-0.5,0
|
||||
c-1.3,0.2-2.6,0.4-3.9,0.6c-1.4,0.2-2.7,0.4-4.1,0.7c-0.5,0.1-1.1,0-1.3,0.6c0,0-0.1,0-0.1,0l0.1-4c0-3.2,0-6.4-0.1-9.5L25,17
|
||||
c1-0.2,2.1-0.3,3.1-0.5c1.2-0.2,2.5-0.4,3.7-0.6C32.4,15.8,32.9,15.7,33.5,15.7z"/>
|
||||
<path class="st1" d="M23.1,42.1c-0.7-0.6-1.4-1.1-2-1.7c-3.4-3.2-5.9-7-7.2-11.6c-0.3-1.3-0.6-2.5-0.6-3.9c-0.1-0.9-0.1-1.8-0.1-2.7
|
||||
c0.2-2.4,0.5-4.8,1.2-7.1l0-0.1c0.1,0.1,0.2,0.2,0.2,0.3c0.7,2,1.4,4.1,2.1,6.1c2.1,6.4,4.3,12.8,6.4,19.2c0,0.1,0.2,0.2,0.2,0.3
|
||||
C23.4,41,23.1,42.1,23.1,42.1z"/>
|
||||
<path class="st2" d="M33.5,15.7c-0.5,0.1-1.1,0.2-1.6,0.2c-1.2,0.2-2.5,0.4-3.7,0.6c-1,0.2-2.1,0.3-3.1,0.5l-0.6,0.1l0-0.4
|
||||
c0-0.3-0.1-0.7-0.1-1c0-2.2,0-4.3-0.1-6.5c0-1.3,0-2.7-0.1-4c0-0.8,0-1.7-0.1-2.5c0-0.4-0.1-0.9-0.1-1.3c0-0.3,0-0.5,0-0.8
|
||||
c0.3,0.6,0.6,1.3,1,1.9c0.5,1,1.4,1.7,2.1,2.5C30,8,32.1,11.6,33.5,15.7z"/>
|
||||
<path class="st3" d="M24.4,30.6C24.4,30.6,24.5,30.6,24.4,30.6c0.3-0.7,0.9-0.6,1.4-0.7c1.4-0.2,2.7-0.4,4.1-0.7
|
||||
c1.3-0.2,2.6-0.4,3.9-0.6c0.2,0,0.3,0,0.5,0c-0.2,0.9-0.4,1.8-0.7,2.6c-0.4,1-0.8,1.9-1.2,2.8c-0.7,1.4-1.5,2.7-2.5,3.8
|
||||
c-0.8,0.9-1.6,1.7-2.4,2.6c-0.5,0.5-1,0.8-1.5,1.2l-0.1-0.1l-0.5-0.4l-0.5-1.1c-0.3-1.3-0.5-2.6-0.5-3.9l0-0.2l0.1-1
|
||||
c0-0.3,0.1-0.7,0.1-1C24.3,32.9,24.4,31.8,24.4,30.6z"/>
|
||||
<path class="st4" d="M24.4,30.6c0,1.2-0.1,2.3-0.1,3.5c0,0.3,0,0.7-0.1,1l-0.3,0.1c-0.7-2-1.3-3.9-2-5.9c-1.1-3.2-2.2-6.5-3.2-9.7
|
||||
c-0.9-2.6-1.8-5.2-2.6-7.8c0-0.1-0.2-0.2-0.2-0.3L17.7,8c0.1,0.1,0.2,0.2,0.2,0.3c0.9,2.6,1.8,5.3,2.7,7.9c1.1,3.4,2.3,6.9,3.4,10.3
|
||||
c0,0.1,0.1,0.3,0.2,0.4l0.3-0.3C24.5,28,24.4,29.3,24.4,30.6z"/>
|
||||
<path class="st5" d="M15.8,11.5c0.1,0.1,0.2,0.2,0.2,0.3c0.9,2.6,1.8,5.2,2.6,7.8c1.1,3.2,2.1,6.5,3.2,9.7c0.7,2,1.3,3.9,2,5.9
|
||||
l0.3-0.1l-0.1,1l-0.1,0.2c-0.1,1-0.2,2.1-0.3,3.1c-0.1,0.5-0.2,1-0.3,1.6c-0.1-0.1-0.2-0.2-0.2-0.3c-2.2-6.4-4.3-12.8-6.4-19.2
|
||||
c-0.7-2-1.4-4.1-2.1-6.1c0-0.1-0.1-0.2-0.2-0.3C14.9,13.8,15.4,12.7,15.8,11.5z"/>
|
||||
<path class="st6" d="M24.5,26.6l-0.3,0.3c-0.1-0.2-0.1-0.3-0.2-0.4c-1.1-3.4-2.3-6.9-3.4-10.3c-0.9-2.6-1.8-5.3-2.7-7.9
|
||||
c0-0.1-0.1-0.2-0.2-0.3l2.4-3.1c0.1,0.1,0.2,0.2,0.2,0.3c0.7,1.9,1.3,3.9,2,5.8c0.6,1.8,1.2,3.6,1.8,5.4c0,0.1,0.2,0.2,0.3,0.3
|
||||
l0,0.4C24.4,20.3,24.5,23.5,24.5,26.6z"/>
|
||||
<path class="st7" d="M24.4,16.7c-0.1-0.1-0.2-0.2-0.3-0.3c-0.6-1.8-1.2-3.6-1.8-5.4c-0.7-1.9-1.3-3.9-2-5.8c0-0.1-0.1-0.2-0.2-0.3
|
||||
c0.8-0.8,1.5-1.5,2.3-2.3c0.7-0.6,1.3-1.3,1.3-2.3c0,0,0-0.1,0.1-0.2L24,0.5c0,0.3,0,0.5,0,0.8c0,0.4,0.1,0.9,0.1,1.3
|
||||
c0,0.8,0.1,1.7,0.1,2.5c0,1.3,0.1,2.7,0.1,4c0,2.2,0,4.3,0.1,6.5C24.3,16,24.4,16.3,24.4,16.7z"/>
|
||||
<path class="st8" d="M23.4,41c0.1-0.5,0.2-1,0.3-1.6c0.1-1,0.2-2.1,0.3-3.1l0,0l0,0c0,1.3,0.2,2.6,0.5,3.9c-0.1,0.1-0.2,0.2-0.2,0.3
|
||||
c-0.3,0.8-0.6,1.6-0.8,2.4c0,0.1-0.1,0.2-0.2,0.3l-0.3-1C23.1,42.1,23.4,41,23.4,41z"/>
|
||||
<path class="st9" d="M23.4,43.1c0.1-0.1,0.2-0.2,0.2-0.3c0.3-0.8,0.6-1.6,0.8-2.4c0-0.1,0.1-0.2,0.2-0.3l0.5,1.1
|
||||
c-0.1,0.1-0.2,0.3-0.3,0.4l-0.9,2.8c0,0.1-0.2,0.2-0.3,0.3C23.7,44.7,23.4,43.1,23.4,43.1z"/>
|
||||
<path class="st10" d="M23.7,44.7c0.1-0.1,0.2-0.2,0.3-0.3l0.9-2.8c0.1-0.2,0.2-0.3,0.3-0.4l0.5,0.4c-0.2,0.2-0.4,0.5-0.3,0.8
|
||||
l-0.1,0.5c-0.1,0.1-0.2,0.2-0.2,0.2c-0.3,0.9-0.6,1.9-1,2.8c0,0.1-0.2,0.2-0.2,0.3C23.8,45.8,23.7,45.2,23.7,44.7z"/>
|
||||
<path class="st11" d="M23.8,46.3c0.1-0.1,0.2-0.2,0.2-0.3c0.3-0.9,0.6-1.9,1-2.8c0-0.1,0.1-0.2,0.2-0.2L25,45.1
|
||||
c-0.1,0.1-0.1,0.1-0.2,0.2c-0.2,0.6-0.4,1.3-0.7,1.9c0,0.1-0.1,0.2-0.2,0.4c-0.1-0.1-0.2-0.2-0.2-0.2C23.8,47,23.8,46.7,23.8,46.3z"
|
||||
/>
|
||||
<path class="st12" d="M24,47.6c0.1-0.1,0.2-0.2,0.2-0.4c0.2-0.6,0.4-1.3,0.7-1.9c0-0.1,0.1-0.1,0.2-0.2l0,1.4l-0.5,1.2
|
||||
C24.5,47.8,24,47.6,24,47.6z"/>
|
||||
<path class="st13" d="M24.5,47.8l0.5-1.2l0.1,1.5L24.5,47.8z"/>
|
||||
<path class="st11" d="M25.4,42.5c-0.1-0.3,0.1-0.6,0.3-0.8l0.1,0.1L25.4,42.5z"/>
|
||||
<path class="st4" d="M24.1,36.3L24.1,36.3L24.1,36.3l0-0.2C24.1,36,24.1,36.3,24.1,36.3z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#00546B;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M44.2,36.9c-2.6-0.1-4.6,0.2-6.3,0.9c-0.5,0.2-1.3,0.2-1.3,0.8c0.3,0.3,0.3,0.7,0.5,1c0.4,0.7,1.1,1.5,1.7,2
|
||||
c0.7,0.5,1.4,1,2.1,1.5c1.3,0.8,2.7,1.2,3.9,2c0.7,0.5,1.4,1,2.2,1.5c0.4,0.3,0.6,0.7,1,0.8v-0.1c-0.2-0.3-0.3-0.7-0.5-1
|
||||
c-0.3-0.3-0.7-0.6-1-0.9c-0.9-1.3-2.1-2.4-3.4-3.3c-1-0.7-3.3-1.7-3.8-2.9c0,0,0,0-0.1-0.1c0.7-0.1,1.6-0.3,2.3-0.5
|
||||
c1.1-0.3,2.1-0.2,3.3-0.5c0.5-0.1,1-0.3,1.6-0.5v-0.3c-0.6-0.6-1-1.4-1.6-1.9c-1.7-1.4-3.5-2.8-5.4-4c-1-0.7-2.3-1.1-3.4-1.6
|
||||
c-0.4-0.2-1-0.3-1.3-0.6c-0.6-0.7-0.9-1.7-1.3-2.5c-0.9-1.8-1.9-3.8-2.7-5.7c-0.6-1.3-0.9-2.5-1.7-3.7c-3.4-5.5-7-8.9-12.6-12.2
|
||||
c-1.2-0.7-2.6-1-4.2-1.3c-0.8,0-1.6-0.1-2.4-0.1c-0.5-0.2-1-0.8-1.5-1.1c-1.9-1.2-6.7-3.7-8-0.4c-0.9,2.1,1.3,4.2,2.1,5.3
|
||||
C2.8,8.2,3.5,9,3.9,9.9c0.2,0.6,0.3,1.1,0.5,1.7c0.5,1.4,1,3,1.7,4.4c0.4,0.7,0.8,1.4,1.2,2c0.3,0.4,0.7,0.5,0.8,1.1
|
||||
c-0.5,0.7-0.5,1.6-0.8,2.4c-1.2,3.7-0.7,8.3,0.9,11c0.5,0.8,1.8,2.6,3.4,1.9c1.5-0.6,1.1-2.4,1.6-4.1c0.1-0.4,0-0.7,0.2-0.9v0.1
|
||||
c0.5,0.9,0.9,1.8,1.3,2.7c1,1.6,2.8,3.3,4.2,4.4c0.8,0.6,1.4,1.6,2.4,2v-0.1h-0.1c-0.2-0.3-0.5-0.4-0.8-0.7c-0.6-0.6-1.2-1.3-1.7-2
|
||||
c-1.4-1.8-2.6-3.8-3.7-5.9c-0.5-1-1-2.1-1.4-3.1c-0.2-0.4-0.2-1-0.5-1.2c-0.5,0.7-1.2,1.3-1.6,2.2c-0.6,1.4-0.7,3.1-0.9,4.9
|
||||
c-0.1,0-0.1,0-0.1,0.1c-1-0.3-1.4-1.3-1.8-2.3c-1-2.3-1.1-6-0.3-8.7C9,21.2,10,19,9.6,18.3c-0.2-0.6-0.8-1-1.2-1.5
|
||||
c-0.4-0.6-0.9-1.4-1.2-2.1C6.4,13,6,10.9,5.2,9.1C4.8,8.3,4.1,7.4,3.5,6.6C2.9,5.7,2.2,5.1,1.7,4.1C1.6,3.7,1.4,3.1,1.6,2.7
|
||||
c0.1-0.3,0.2-0.4,0.5-0.4c0.4-0.4,1.6,0.1,2.1,0.3c1.2,0.5,2.2,0.9,3.2,1.6c0.5,0.3,0.9,0.9,1.5,1.1h0.7c1,0.2,2.2,0.1,3.2,0.4
|
||||
c1.7,0.6,3.3,1.4,4.7,2.3c4.3,2.7,7.8,6.6,10.2,11.2c0.4,0.8,0.6,1.4,0.9,2.2c0.7,1.6,1.5,3.2,2.2,4.8c0.7,1.5,1.3,3.1,2.3,4.4
|
||||
c0.5,0.7,2.4,1,3.3,1.4c0.7,0.3,1.7,0.6,2.3,0.9c1.1,0.7,2.2,1.5,3.3,2.2C42.5,35.4,44.1,36.2,44.2,36.9z"/>
|
||||
<path class="st0" d="M10.9,8.5c-0.6,0-0.9,0.1-1.3,0.2v0.1h0.1c0.3,0.5,0.7,0.9,1,1.3c0.3,0.5,0.5,1,0.8,1.6c0,0,0.1-0.1,0.1-0.1
|
||||
c0.5-0.3,0.7-0.8,0.7-1.6C12,9.7,12,9.5,11.8,9.3C11.6,8.9,11.2,8.8,10.9,8.5z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#C74634;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M15.1,39.1C6.7,39.1,0,32.4,0,24S6.7,8.9,15.1,8.9h17.7C41.3,8.9,48,15.6,48,24s-6.7,15.1-15.1,15.1H15.1
|
||||
M32.4,33.8c5.5,0,9.8-4.4,9.8-9.8c0-5.5-4.4-9.8-9.8-9.8H15.6c-5.5,0-9.8,4.4-9.8,9.8s4.4,9.8,9.8,9.8H32.4"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 649 B |
@@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#336791;}
|
||||
.st1{fill:#FFFFFF;}
|
||||
</style>
|
||||
<path d="M46.4,28.7c-0.3-0.8-1-1.4-2-1.6c-0.4-0.1-1,0-1.6,0.1c-1.1,0.2-1.8,0.3-2.4,0.3c2.2-3.6,3.9-7.8,4.9-11.7
|
||||
c1.6-6.3,0.8-9.2-0.3-10.5C42.4,2,38.5,0.1,33.7,0.1c-2.5,0-4.7,0.5-5.9,0.8c-1.1-0.2-2.2-0.3-3.5-0.3c-2.3,0-4.3,0.5-6,1.5
|
||||
c-1-0.3-2.5-0.8-4.2-1.1C10,0.3,6.6,0.8,4.2,2.6c-3,2.1-4.3,5.7-4.1,10.8c0.1,1.6,1,6.5,2.4,11.2c0.8,2.7,1.7,4.9,2.6,6.6
|
||||
c1.3,2.4,2.6,3.8,4.2,4.4c0.9,0.3,2.4,0.5,4.1-0.9c0.2,0.3,0.5,0.5,0.9,0.7c0.5,0.3,1,0.5,1.6,0.7c2.1,0.5,4,0.4,5.6-0.3
|
||||
c0,0.3,0,0.6,0,0.8c0,0.4,0,0.8,0,1.1c0.1,2.4,0.3,4.3,0.8,5.6c0,0.1,0.1,0.2,0.1,0.3c0.2,0.7,0.7,2,1.7,3c1.1,1,2.4,1.3,3.6,1.3
|
||||
c0.6,0,1.2-0.1,1.7-0.2c1.8-0.4,3.8-1,5.3-3.1c1.4-2,2.1-4.9,2.2-9.6c0-0.1,0-0.3,0-0.4l0-0.2l0.3,0l0.1,0c1.8,0.1,4-0.3,5.4-0.9
|
||||
C43.7,33,47.2,31.2,46.4,28.7"/>
|
||||
<path class="st0" d="M43.3,29.2c-5.4,1.1-5.8-0.7-5.8-0.7c5.7-8.5,8.1-19.2,6-21.9C37.9-0.5,28.2,2.9,28,3L28,3
|
||||
c-1.1-0.2-2.3-0.4-3.6-0.4c-2.4,0-4.3,0.6-5.7,1.7c0,0-17.4-7.1-16.5,9c0.2,3.4,4.9,26,10.6,19.2c2.1-2.5,4.1-4.6,4.1-4.6
|
||||
c1,0.7,2.2,1,3.4,0.9l0.1-0.1c0,0.3,0,0.6,0,1c-1.5,1.6-1,1.9-3.9,2.5c-3,0.6-1.2,1.7-0.1,2c1.4,0.3,4.5,0.8,6.7-2.2l-0.1,0.3
|
||||
c0.6,0.5,1,3,0.9,5.3c-0.1,2.3-0.1,3.9,0.3,5.1c0.5,1.2,0.9,4,4.7,3.2c3.2-0.7,4.9-2.5,5.1-5.4c0.2-2.1,0.5-1.8,0.6-3.7l0.3-0.9
|
||||
c0.3-2.9,0.1-3.8,2-3.4l0.5,0c1.5,0.1,3.4-0.2,4.5-0.8C44.2,30.6,45.6,28.7,43.3,29.2L43.3,29.2"/>
|
||||
<path class="st1" d="M19.7,14.8c-0.5-0.1-0.9,0-1.2,0.2c-0.1,0.1-0.2,0.2-0.2,0.3c0,0.2,0.1,0.4,0.2,0.5c0.2,0.3,0.6,0.5,1,0.6
|
||||
c0.1,0,0.1,0,0.2,0c0.6,0,1.1-0.5,1.2-0.8C20.9,15.2,20.2,14.9,19.7,14.8 M35.8,14.8c0-0.3-0.6-0.4-1.2-0.3
|
||||
c-0.6,0.1-1.1,0.3-1.1,0.7c0,0.3,0.5,0.7,1.1,0.7c0,0,0.1,0,0.1,0c0.4-0.1,0.6-0.3,0.8-0.4C35.7,15.2,35.8,15,35.8,14.8"/>
|
||||
<path class="st1" d="M45.1,29.1c-0.2-0.6-0.9-0.8-2-0.6c-3.3,0.7-4.4,0.2-4.8-0.1c2.5-3.9,4.6-8.6,5.8-12.9c0.5-2.1,0.8-4,0.9-5.6
|
||||
c0-1.7-0.3-3-0.9-3.8c-2.4-3.1-6-4.8-10.3-4.8c-3,0-5.5,0.7-6,0.9c-1-0.3-2.1-0.4-3.4-0.4c-2.2,0-4.2,0.5-5.8,1.6
|
||||
c-0.7-0.3-2.5-0.9-4.7-1.2c-3.8-0.6-6.8-0.1-9,1.4c-2.6,1.8-3.8,5.1-3.5,9.7c0.1,1.5,1,6.3,2.3,10.9c1.8,6,3.8,9.4,5.9,10.1
|
||||
c0.2,0.1,0.5,0.1,0.8,0.1c0.8,0,1.7-0.3,2.7-1.5c1.2-1.4,2.4-2.8,3.7-4.2c0.8,0.4,1.7,0.7,2.7,0.7c0,0,0,0,0,0.1
|
||||
c-0.2,0.2-0.3,0.4-0.5,0.6c-0.6,0.8-0.8,1-2.8,1.4C15.6,31.5,14,31.9,14,33c0,1.2,1.8,1.7,2.1,1.7c0.7,0.2,1.5,0.3,2.1,0.3
|
||||
c1.7,0,3.1-0.5,4.3-1.6c0,4.3,0.1,8.4,0.7,9.7c0.4,1,1.4,3.6,4.7,3.6c0.5,0,1-0.1,1.6-0.2c3.4-0.7,4.8-2.2,5.4-5.5
|
||||
c0.3-1.8,0.8-5.9,1.1-8.2c0.5,0.2,1.2,0.2,1.9,0.2c1.5,0,3.2-0.3,4.3-0.8C43.3,31.7,45.5,30.3,45.1,29.1z M37,13.9
|
||||
c0,0.7-0.1,1.3-0.2,1.9c-0.1,0.7-0.2,1.4-0.2,2.2c0,0.8,0.1,1.7,0.2,2.5c0.2,1.7,0.4,3.4-0.4,5.1c-0.1-0.2-0.3-0.5-0.4-0.7
|
||||
c-0.1-0.2-0.3-0.6-0.6-1.2c-1.2-2.1-3.9-7-2.5-9C33.3,14.2,34.4,13.6,37,13.9z M33.8,2.7c3.9,0.1,6.9,1.5,9.1,4.3
|
||||
c1.7,2.1-0.2,11.8-5.5,20.2c-0.1-0.1-0.1-0.1-0.2-0.2l-0.1-0.1c1.4-2.3,1.1-4.5,0.9-6.5c-0.1-0.8-0.2-1.6-0.2-2.3
|
||||
c0-0.8,0.1-1.4,0.2-2.1c0.1-0.8,0.2-1.6,0.2-2.6c0-0.1,0-0.2,0-0.4c-0.1-0.9-1.1-3.7-3.3-6.1C34,5.6,32.3,4.1,29.9,3
|
||||
C30.9,2.8,32.3,2.6,33.8,2.7z M12.1,32c-1.1,1.3-1.8,1-2.1,1C8.5,32.4,6.6,29,5,23.7c-1.4-4.6-2.2-9.2-2.3-10.5
|
||||
c-0.2-4.1,0.8-7,3-8.5c3.5-2.5,9.3-1,11.7-0.2c0,0-0.1,0.1-0.1,0.1c-3.8,3.9-3.7,10.5-3.7,10.9c0,0.2,0,0.4,0,0.7
|
||||
c0.1,1.1,0.2,3.2-0.1,5.5c-0.3,2.2,0.4,4.3,1.8,5.8c0.2,0.2,0.3,0.3,0.5,0.4C15.1,28.6,13.6,30.1,12.1,32z M16.2,26.5
|
||||
c-1.2-1.2-1.7-3-1.5-4.7c0.3-2.5,0.2-4.6,0.1-5.8c0-0.2,0-0.3,0-0.4c0.6-0.5,3.1-1.9,5-1.5c0.8,0.2,1.4,0.8,1.6,1.8
|
||||
c1.1,5.1,0.1,7.2-0.6,9c-0.2,0.4-0.3,0.7-0.4,1l-0.1,0.3c-0.3,0.7-0.5,1.3-0.6,1.9C18.4,28,17.1,27.5,16.2,26.5L16.2,26.5z
|
||||
M16.4,33.4c-0.4-0.1-0.7-0.3-0.9-0.4c0.2-0.1,0.5-0.2,1-0.3c2.4-0.5,2.8-0.9,3.6-1.9c0.2-0.2,0.4-0.5,0.7-0.8l0,0
|
||||
c0.4-0.5,0.6-0.4,1-0.3c0.3,0.1,0.6,0.5,0.7,0.9c0.1,0.2,0.1,0.6-0.1,0.8C20.7,33.9,18.2,33.8,16.4,33.4z M29.1,45.2
|
||||
c-3,0.6-4-0.9-4.7-2.6c-0.4-1.1-0.7-6.2-0.5-11.7c0-0.1,0-0.1,0-0.2c0-0.1,0-0.3-0.1-0.4c-0.2-0.8-0.8-1.5-1.5-1.8
|
||||
c-0.3-0.1-0.8-0.3-1.4-0.2c0.1-0.5,0.3-1.1,0.6-1.7l0.1-0.3c0.1-0.3,0.3-0.6,0.4-0.9c0.8-1.8,1.9-4.2,0.7-9.8
|
||||
c-0.4-2.1-1.9-3.1-4.2-2.9c-1.4,0.1-2.6,0.7-3.2,1c-0.1,0.1-0.3,0.1-0.4,0.2c0.2-2.1,0.8-6,3.3-8.5c1.5-1.6,3.6-2.3,6.1-2.3
|
||||
c4.9,0.1,8.1,2.6,9.9,4.7c1.5,1.8,2.4,3.7,2.7,4.6c-2.5-0.3-4.2,0.2-5.1,1.5c-1.9,2.7,1,7.9,2.4,10.4c0.3,0.5,0.5,0.9,0.5,1
|
||||
c0.5,1.1,1,1.8,1.5,2.4c0.1,0.2,0.3,0.3,0.4,0.5c-0.8,0.2-2.1,0.7-2,3.2c-0.1,1.3-0.8,7.2-1.2,9.3C33,43.6,32,44.6,29.1,45.2
|
||||
L29.1,45.2z M41.5,31c-0.8,0.4-2.1,0.6-3.3,0.7c-1.4,0.1-2.1-0.2-2.2-0.3c-0.1-1.6,0.5-1.7,1.1-1.9c0.1,0,0.2-0.1,0.3-0.1
|
||||
c0.1,0,0.1,0.1,0.2,0.1c1.1,0.7,3,0.8,5.8,0.2l0,0C43,30.2,42.4,30.6,41.5,31z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.8 KiB |
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
.st1{filter:url(#Adobe_OpacityMaskFilter);}
|
||||
.st2{mask:url(#mask-2_1_);}
|
||||
.st3{fill:#FCC397;}
|
||||
.st4{fill:#FC9F95;}
|
||||
.st5{fill:#F77C88;}
|
||||
.st6{fill:#F25192;}
|
||||
.st7{fill:#D34CA3;}
|
||||
.st8{fill:#9A50A5;}
|
||||
.st9{fill:#59569E;}
|
||||
.st10{fill:#39477F;}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
<circle id="path-1_1_" class="st0" cx="24" cy="24" r="24"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="-0.4" y="-0.2" width="48.6" height="48.4">
|
||||
<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.4" y="-0.2" width="48.6" height="48.4" id="mask-2_1_">
|
||||
<g class="st1">
|
||||
<circle id="path-1_2_" class="st0" cx="24" cy="24" r="24"/>
|
||||
</g>
|
||||
</mask>
|
||||
<g class="st2">
|
||||
<g transform="translate(-2.000000, -1.000000)">
|
||||
<path class="st3" d="M36.4,3.2C33.3,1.7,29.7,0.8,26,0.8c-6.5,0-12.4,2.6-16.8,6.7C4.6,12,44.6,7.1,36.4,3.2z"/>
|
||||
<path class="st4" d="M45,9.9c0,0-2,2.7-8,3.5C24.8,15,3.9,15.1,3.9,15.1C5.2,12.2,7,9.7,9.3,7.5c2.6,0.8,5.5,1,8.2,0.5
|
||||
c4.5-0.8,8.4-3.4,12.9-4.5c2-0.5,4.1-0.6,6.1-0.4C39.8,4.8,42.7,7.1,45,9.9z"/>
|
||||
<path class="st5" d="M50,21.3c0,0.1-27.5,2.7-40.9,1.9c-4.4-0.2-6.9-2.9-6.9-3c0.4-1.8,0.9-3.5,1.7-5.1c3.9-2.1,8.4-3.3,12.8-3.3
|
||||
c5.5,0.1,11,1.9,16.5,1.8c4.1-0.1,8.3-1.4,11.8-3.6C47.5,13.2,49.3,17.1,50,21.3z"/>
|
||||
<path class="st6" d="M50.2,25c0,0.1,0,0.4,0,0.4s-7.6,1.9-17.5,1.8C19,27,1.6,24.8,1.6,24.8c0-1.6,0.2-3.2,0.5-4.7
|
||||
c3.3,2,7.3,3,11.2,2.6c3.1-0.3,6-1.5,8.8-2.7s5.7-2.5,8.7-3.2c4.4-1,9.1-0.7,13.3,1c2,0.8,4.1,2,5.8,3.4
|
||||
C50.1,22.4,50.2,23.7,50.2,25z"/>
|
||||
<path class="st7" d="M22.7,32.9c-7.3,1.3-19.8-0.2-19.8-0.3C2,30.2,1.6,27.6,1.6,25c0-0.1,0-0.1,0-0.2c1.1-0.9,2.4-1.7,3.7-2.3
|
||||
c3.1-1.5,6.7-2.1,10.1-1.8c3.4,0.3,6.7,1.6,9.8,3c2.7,1.1,5.3,2.4,8.1,3.2C33.5,27,30.7,31.4,22.7,32.9z"/>
|
||||
<path class="st8" d="M49.4,31.5c-0.5,0.9-5.3,3.8-11.9,4.3c-8.7,0.7-19-2-15.5-3.3c5.4-2.1,10-5.9,15.5-7.5
|
||||
c4.1-1.2,8.7-1,12.8,0.4C50.2,27.6,49.9,29.6,49.4,31.5z"/>
|
||||
<path class="st9" d="M47.1,37.1c-4.2,7.3-34.6,9.1-39.1,4.2c-2.3-2.5-4-5.5-5.1-8.7c3.7-2.1,8.1-3,12.3-2.5
|
||||
c5.4,0.7,10.3,3.8,15.7,5c4.3,1,8.9,0.7,13.1-0.9c1.9-0.7,3.8-1.6,5.4-2.7C48.9,33.5,48.1,35.4,47.1,37.1z"/>
|
||||
<path class="st10" d="M47,37c-4.2,7.3-12.1,12.2-21.1,12.2c-7.1,0-13.6-3.1-18-8c0.7,0.3,1.6,0.5,2.3,0.7c4.2,1.2,8.8,1.1,13-0.1
|
||||
c2.7-0.8,5.2-2.1,7.9-3C36.1,37.1,41.7,36.4,47,37z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#A41E11;}
|
||||
.st1{fill:#D82C20;}
|
||||
.st2{fill:#FFFFFF;}
|
||||
.st3{fill:#7A0C00;}
|
||||
.st4{fill:#AD2115;}
|
||||
</style>
|
||||
<path class="st0" d="M46.1,35.1c-2.6,1.3-15.8,6.8-18.7,8.3c-2.8,1.5-4.4,1.5-6.6,0.4c-2.2-1.1-16.3-6.7-18.9-8
|
||||
C0.7,35.2,0,34.7,0,34.2v-4.9c0,0,18.4-4,21.3-5.1c3-1.1,4-1.1,6.5-0.2s17.6,3.6,20.1,4.6v4.8C48,33.9,47.4,34.5,46.1,35.1z"/>
|
||||
<path class="st1" d="M46.1,30.3c-2.6,1.3-15.8,6.8-18.7,8.3S23,40,20.8,39S4.5,32.2,1.9,31c-2.5-1.2-2.6-2.1-0.1-3
|
||||
c2.5-1,16.5-6.5,19.5-7.5c3-1.1,4-1.1,6.5-0.2c2.5,0.9,15.7,6.2,18.2,7.1C48.6,28.2,48.7,29,46.1,30.3z"/>
|
||||
<path class="st0" d="M46.1,27.3c-2.6,1.3-15.8,6.8-18.7,8.3C24.6,37,23,37,20.8,35.9c-2.2-1.1-16.3-6.8-18.9-8
|
||||
C0.7,27.3,0,26.8,0,26.3v-4.9c0,0,18.4-4,21.3-5.1c3-1.1,4-1.1,6.5-0.2c2.5,0.9,17.6,3.6,20.1,4.6v4.8C48,26,47.4,26.6,46.1,27.3z"
|
||||
/>
|
||||
<path class="st1" d="M46.1,22.4c-2.6,1.3-15.8,6.8-18.7,8.3c-2.8,1.5-4.4,1.5-6.6,0.4C18.6,30,4.5,24.3,1.9,23
|
||||
c-2.6-1.2-2.6-2.1-0.1-3c2.5-1,16.5-6.5,19.5-7.5c3-1.1,4-1.1,6.5-0.2c2.5,0.9,15.7,6.2,18.2,7.1C48.6,20.3,48.7,21.1,46.1,22.4z"/>
|
||||
<path class="st0" d="M46.1,19c-2.6,1.3-15.8,6.8-18.7,8.3c-2.8,1.5-4.4,1.5-6.6,0.4c-2.2-1-16.3-6.7-18.9-8c-1.3-0.6-2-1.1-2-1.6
|
||||
v-4.9c0,0,18.4-4,21.3-5.1c3-1.1,4-1.1,6.5-0.2c2.5,0.9,17.6,3.6,20.1,4.6v4.8C48,17.8,47.4,18.3,46.1,19z"/>
|
||||
<path class="st1" d="M46.1,14.2c-2.6,1.3-15.8,6.8-18.7,8.3c-2.8,1.5-4.4,1.5-6.6,0.4c-2.2-1.1-16.3-6.7-18.9-8s-2.6-2.1-0.1-3
|
||||
c2.5-1,16.5-6.5,19.5-7.5c3-1.1,4-1.1,6.5-0.2s15.7,6.2,18.2,7.1C48.6,12.1,48.7,12.9,46.1,14.2z"/>
|
||||
<path class="st2" d="M30.3,9.5L26.1,10l-1,2.2l-1.5-2.5l-4.8-0.4L22.5,8l-1.1-2l3.4,1.3l3.1-1l-0.8,2.1L30.3,9.5z M25,20.4l-7.8-3.2
|
||||
l11.1-1.7L25,20.4z"/>
|
||||
<ellipse class="st2" cx="14.2" cy="13.1" rx="5.9" ry="2.3"/>
|
||||
<path class="st3" d="M35.2,10.1l6.6,2.6l-6.6,2.6V10.1z"/>
|
||||
<path class="st4" d="M27.9,13l7.3-2.9v5.2l-0.7,0.3L27.9,13z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6.554 6.555" preserveAspectRatio="xMidYMid"><defs><linearGradient x1="2.983" y1=".53" x2="2.983" y2="4.744" id="A" gradientUnits="userSpaceOnUse"><stop stop-color="#97d9f6" offset="0%"/><stop stop-color="#0f80cc" offset="92.024%"/><stop stop-color="#0f80cc" offset="100%"/></linearGradient></defs><path d="M4.96.29H.847c-.276 0-.5.226-.5.5v4.536c0 .276.226.5.5.5h2.71c-.03-1.348.43-3.964 1.404-5.54z" fill="#0f80cc"/><path d="M4.81.437H.847c-.196 0-.355.16-.355.355v4.205c.898-.345 2.245-.642 3.177-.628A28.93 28.93 0 0 1 4.811.437z" fill="url(#A)"/><path d="M5.92.142c-.282-.25-.623-.15-.96.148l-.15.146c-.576.61-1.1 1.742-1.276 2.607a2.38 2.38 0 0 1 .148.426l.022.1.022.102s-.005-.02-.026-.08l-.014-.04a.461.461 0 0 0-.009-.022c-.038-.087-.14-.272-.187-.352a8.789 8.789 0 0 0-.103.321c.132.242.212.656.212.656s-.007-.027-.04-.12c-.03-.083-.176-.34-.21-.4-.06.22-.083.368-.062.404.04.07.08.2.115.324a7.52 7.52 0 0 1 .132.666l.005.062a6.11 6.11 0 0 0 .015.75c.026.313.075.582.137.726l.042-.023c-.09-.284-.128-.655-.112-1.084.025-.655.175-1.445.454-2.268C4.548 1.938 5.2.94 5.798.464c-.545.492-1.282 2.084-1.502 2.673-.247.66-.422 1.28-.528 1.873.182-.556.77-.796.77-.796s.29-.356.626-.865l-.645.172-.208.092s.53-.323.987-.47c.627-.987 1.31-2.39.622-3.002" fill="#003b57"/></svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#252F3E;}
|
||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M13.5,20.1c0,0.6,0.1,1.1,0.2,1.4c0.1,0.4,0.3,0.7,0.5,1.1c0.1,0.1,0.1,0.3,0.1,0.4c0,0.2-0.1,0.3-0.3,0.5
|
||||
l-1,0.7c-0.1,0.1-0.3,0.1-0.4,0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.2-0.2-0.4-0.5-0.6-0.8c-0.2-0.3-0.3-0.6-0.5-0.9
|
||||
c-1.2,1.5-2.8,2.2-4.7,2.2c-1.3,0-2.4-0.4-3.2-1.1C2.4,22.7,2,21.7,2,20.4c0-1.4,0.5-2.5,1.5-3.3c1-0.8,2.3-1.2,3.9-1.2
|
||||
c0.5,0,1.1,0,1.7,0.1c0.6,0.1,1.2,0.2,1.8,0.4v-1.2c0-1.2-0.3-2.1-0.8-2.6c-0.5-0.5-1.4-0.7-2.6-0.7c-0.6,0-1.1,0.1-1.7,0.2
|
||||
c-0.6,0.1-1.2,0.3-1.7,0.5c-0.3,0.1-0.4,0.2-0.6,0.2c-0.1,0-0.2,0-0.3,0c-0.2,0-0.3-0.2-0.3-0.5v-0.8c0-0.3,0-0.4,0.1-0.6
|
||||
c0.1-0.1,0.2-0.2,0.4-0.3c0.6-0.3,1.2-0.5,2-0.7C6.3,9.8,7.1,9.7,8,9.7c1.9,0,3.3,0.4,4.2,1.3c0.9,0.9,1.3,2.2,1.3,3.9L13.5,20.1
|
||||
L13.5,20.1z M7,22.5c0.5,0,1.1-0.1,1.6-0.3c0.6-0.2,1.1-0.5,1.5-1c0.3-0.3,0.4-0.6,0.5-1c0.1-0.4,0.2-0.8,0.2-1.4v-0.7
|
||||
c-0.5-0.1-1-0.2-1.5-0.3c-0.5-0.1-1-0.1-1.5-0.1c-1.1,0-1.9,0.2-2.4,0.6s-0.8,1-0.8,1.8c0,0.8,0.2,1.3,0.6,1.7
|
||||
C5.8,22.3,6.3,22.5,7,22.5z M19.9,24.2c-0.3,0-0.5,0-0.6-0.2c-0.1-0.1-0.2-0.3-0.3-0.6l-3.8-12.3c-0.1-0.3-0.1-0.5-0.1-0.6
|
||||
c0-0.3,0.1-0.4,0.4-0.4H17c0.3,0,0.5,0,0.6,0.2c0.1,0.1,0.2,0.3,0.3,0.6l2.7,10.6l2.5-10.6c0.1-0.3,0.2-0.5,0.3-0.6
|
||||
c0.1-0.1,0.4-0.2,0.6-0.2h1.3c0.3,0,0.5,0,0.6,0.2c0.1,0.1,0.2,0.3,0.3,0.6l2.5,10.7l2.8-10.7c0.1-0.3,0.2-0.5,0.3-0.6
|
||||
c0.1-0.1,0.3-0.2,0.6-0.2H34c0.3,0,0.4,0.1,0.4,0.4c0,0.1,0,0.2,0,0.3s0,0.2-0.1,0.4l-3.8,12.3c-0.1,0.3-0.2,0.5-0.3,0.6
|
||||
s-0.3,0.2-0.6,0.2h-1.4c-0.3,0-0.5,0-0.6-0.2s-0.2-0.3-0.3-0.6l-2.5-10.3l-2.5,10.3c-0.1,0.3-0.2,0.5-0.3,0.6
|
||||
c-0.1,0.1-0.4,0.2-0.6,0.2H19.9z M40.4,24.7c-0.8,0-1.7-0.1-2.5-0.3c-0.8-0.2-1.4-0.4-1.8-0.6c-0.3-0.1-0.4-0.3-0.5-0.4
|
||||
c-0.1-0.1-0.1-0.3-0.1-0.4V22c0-0.3,0.1-0.5,0.4-0.5c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0.1,0.4,0.2c0.5,0.2,1.1,0.4,1.8,0.6
|
||||
c0.6,0.1,1.3,0.2,1.9,0.2c1,0,1.8-0.2,2.3-0.5c0.5-0.4,0.8-0.9,0.8-1.5c0-0.4-0.1-0.8-0.4-1.1c-0.3-0.3-0.8-0.6-1.6-0.8L39,17.8
|
||||
c-1.2-0.4-2-0.9-2.6-1.6c-0.5-0.7-0.8-1.5-0.8-2.3c0-0.7,0.1-1.3,0.4-1.8c0.3-0.5,0.7-1,1.1-1.3c0.5-0.4,1-0.6,1.7-0.8
|
||||
c0.6-0.2,1.3-0.3,2-0.3c0.4,0,0.7,0,1.1,0.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.6,0.2,0.9,0.3c0.3,0.1,0.5,0.2,0.7,0.3
|
||||
c0.2,0.1,0.4,0.3,0.5,0.4c0.1,0.1,0.1,0.3,0.1,0.5v0.8c0,0.3-0.1,0.5-0.4,0.5c-0.1,0-0.3-0.1-0.6-0.2c-0.9-0.4-1.9-0.6-3.1-0.6
|
||||
c-0.9,0-1.6,0.1-2.1,0.4c-0.5,0.3-0.8,0.8-0.8,1.4c0,0.4,0.2,0.8,0.5,1.1c0.3,0.3,0.9,0.6,1.8,0.9l2.3,0.7c1.1,0.4,2,0.9,2.5,1.5
|
||||
c0.5,0.7,0.7,1.4,0.7,2.2c0,0.7-0.1,1.3-0.4,1.9c-0.3,0.5-0.7,1-1.2,1.4c-0.5,0.4-1.1,0.7-1.8,0.9C41.9,24.5,41.2,24.7,40.4,24.7z"
|
||||
/>
|
||||
<g>
|
||||
<path class="st1" d="M43.4,32.4c-5.3,3.9-12.9,5.9-19.4,5.9c-9.2,0-17.5-3.4-23.7-9.1c-0.5-0.4,0-1.1,0.5-0.7
|
||||
c6.8,3.9,15.1,6.3,23.8,6.3c5.8,0,12.2-1.2,18.1-3.7C43.5,30.8,44.3,31.8,43.4,32.4z"/>
|
||||
<path class="st1" d="M45.6,29.9c-0.7-0.9-4.4-0.4-6.1-0.2c-0.5,0.1-0.6-0.4-0.1-0.7c3-2.1,7.9-1.5,8.5-0.8c0.6,0.7-0.2,5.7-3,8
|
||||
c-0.4,0.4-0.8,0.2-0.7-0.3C44.8,34.3,46.3,30.8,45.6,29.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#035BDA;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M29.8,10.9l-7.1,14.3l12.5,14.5L12,42.3l36,0.4L29.8,10.9z M28.4,5.3L12.1,18.9L0,39.3l10.3-1L28.4,5.3z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 577 B |
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#1B1B1F;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M42.1,9.8l-15.2-9c-1.8-1.1-4-1.1-5.8,0L6,9.8C4.1,10.9,3,12.9,3,15v18c0,2.1,1.1,4.1,2.9,5.2l15.2,9
|
||||
c1.8,1.1,4,1.1,5.8,0l15.2-9c1.8-1.1,2.9-3.1,2.9-5.2V15C45,12.9,43.9,10.9,42.1,9.8L42.1,9.8z M30.4,37.9v1.3
|
||||
c0,0.2-0.1,0.3-0.2,0.4L29.4,40c-0.1,0.1-0.2,0-0.2-0.2v-1.3c-0.5,0.3-1.2,0.3-1.7,0.2c-0.1-0.1-0.1-0.2-0.1-0.3l0.3-1.2
|
||||
c0-0.1,0.1-0.2,0.2-0.3c0,0,0,0,0.1-0.1c0,0,0.1,0,0.1,0c0.5,0.1,1.1,0.1,1.6-0.2c0.7-0.3,1.2-1,1.2-1.8c0-0.7-0.4-0.9-1.2-0.9
|
||||
c-1.1,0-2.1-0.2-2.1-1.8c0-1.4,0.7-2.7,1.8-3.6v-1.3c0-0.2,0.1-0.3,0.2-0.4l0.7-0.5c0.1-0.1,0.2,0,0.2,0.2v1.3
|
||||
c0.5-0.2,1-0.3,1.5-0.2c0.1,0.1,0.1,0.2,0.1,0.3l-0.3,1.2c0,0.1-0.1,0.2-0.1,0.2c0,0,0,0-0.1,0.1c0,0-0.1,0-0.1,0
|
||||
c-0.5-0.1-1,0-1.4,0.2c-0.6,0.3-1,0.9-1.1,1.6c0,0.6,0.3,0.8,1.4,0.8c1.4,0,2,0.6,2,2C32.2,35.6,31.5,36.9,30.4,37.9L30.4,37.9z
|
||||
M38.3,35.7c0,0.1,0,0.2-0.1,0.3l-3.8,2.3c0,0-0.1,0-0.1,0c0,0-0.1-0.1,0-0.1v-1c0-0.1,0.1-0.2,0.2-0.2l3.8-2.3c0,0,0.1,0,0.1,0
|
||||
c0,0,0.1,0.1,0,0.1L38.3,35.7L38.3,35.7z M40.9,13.6l-14.3,8.9c-1.8,1.1-3.1,2.2-3.1,4.4v17.7c0,1.3,0.5,2.1,1.3,2.4
|
||||
c-0.3,0-0.5,0.1-0.8,0.1c-0.8,0-1.7-0.2-2.4-0.7l-15.2-9C5,36.4,4.1,34.7,4.1,33V15c0-1.8,0.9-3.4,2.4-4.3l15.2-9
|
||||
c1.5-0.9,3.3-0.9,4.8,0l15.2,9c1.2,0.8,2.1,2,2.3,3.4C43.4,13.1,42.3,12.8,40.9,13.6L40.9,13.6L40.9,13.6z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#161616;}
|
||||
</style>
|
||||
<g transform="matrix(2.791226 0 0 2.791226 71.368826 91.588681)">
|
||||
<circle class="st0" cx="-17.1" cy="-24.2" r="2"/>
|
||||
<path class="st0" d="M-17.1-32.8c-4,0-7.4,2.7-8.3,6.4c0,0,0,0.1,0,0.1c0,0.2,0.2,0.4,0.4,0.4h3.5c0.2,0,0.3-0.1,0.4-0.2
|
||||
c0,0,0,0,0,0c0.7-1.5,2.3-2.6,4.1-2.6c2.5,0,4.5,2,4.5,4.5s-2,4.5-4.5,4.5c-1.8,0-3.4-1.1-4.1-2.6c0,0,0,0,0,0
|
||||
c-0.1-0.1-0.2-0.2-0.4-0.2H-25c-0.2,0-0.4,0.2-0.4,0.4c0,0,0,0.1,0,0.1c1,3.7,4.3,6.4,8.3,6.4c4.7,0,8.6-3.8,8.6-8.6
|
||||
S-12.3-32.8-17.1-32.8L-17.1-32.8z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 910 B |
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#03A9F4;}
|
||||
.st1{fill:#0288D1;}
|
||||
.st2{fill:#81D4FA;}
|
||||
.st3{fill:#FFFFFF;}
|
||||
.st4{fill:#37474F;}
|
||||
.st5{fill:#01579B;}
|
||||
</style>
|
||||
<path class="st0" d="M41.5,19.6c0.4-1.9-0.1-4.1-2.7-6.5c-4.3,3.9-3,7.9-1.6,9.8c0,0-0.2,1.1-4.4,1.1S0,24,0,24s-2,17.5,17.5,17.5
|
||||
c17,0,21.8-13.1,22.7-16.4C40.6,25,41,25,41.5,25c2.3,0,5.4-1.3,6.5-6C44.9,18,42.9,18.5,41.5,19.6z"/>
|
||||
<path class="st1" d="M0.2,28.3C1,33.5,4.3,41.4,17.5,41.4c13.3,0,19.1-8,21.5-13.1H0.2z"/>
|
||||
<path class="st2" d="M19.4,41.3c-1-0.4-5.5-1.2-6.3-7.6c-4.6,2-8.7,1.5-10.4,1.1c2.4,3.5,6.7,6.5,14.8,6.5
|
||||
C18.1,41.4,18.8,41.4,19.4,41.3z"/>
|
||||
<path class="st3" d="M17.5,30.5c-1.2,0-2.2,1-2.2,2.2c0,1.2,1,2.2,2.2,2.2s2.2-1,2.2-2.2C19.6,31.5,18.7,30.5,17.5,30.5z"/>
|
||||
<path class="st4" d="M14.1,34.4c0.2,0.6,0,1.3-0.6,1.4c-3.6,1.1-6.7,1.2-9.1,1.2c-0.7-0.7-1.3-1.4-1.8-2.1c2.8,0,7.3-0.1,10-1.1
|
||||
C13.2,33.7,13.8,33.9,14.1,34.4z M0,27.2c0,0,2,0.1,3.3-1.1c2,1.8,6.5,1.2,7.6,0c1.2,1.8,7.6,1.5,8.7,0c1.4,1.6,7.2,1.9,8.7,0
|
||||
c0.5,1.6,7.4,2,8.7,0c1.2,1.2,5.5,2.1,8,0c0.6,1.3,2.9,1.1,2.9,1.1v1.1H0 M16.4,32.7c0,0.6,0.5,1.1,1.1,1.1s1.1-0.5,1.1-1.1
|
||||
c0-0.6-0.5-1.1-1.1-1.1S16.4,32.1,16.4,32.7z"/>
|
||||
<path class="st5" d="M9.8,24H4.4v-5.5h5.5V24z M20.7,18.5h-5.5V24h5.5V18.5z M31.6,18.5h-5.5V24h5.5V18.5z M15.3,13H9.8v5.5h5.5V13z
|
||||
M26.2,13h-5.5v5.5h5.5V13z"/>
|
||||
<path class="st1" d="M15.3,24H9.8v-5.5h5.5V24z M26.2,18.5h-5.5V24h5.5V18.5z M26.2,7.6h-5.5V13h5.5V7.6z M20.7,13h-5.5v5.5h5.5V13z
|
||||
"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#EA4335;}
|
||||
.st1{fill:#4285F4;}
|
||||
.st2{fill:#34A853;}
|
||||
.st3{fill:#FBBC05;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M30.5,15.4l1.5,0l4.2-4.2l0.2-1.8c-3.3-3-7.7-4.8-12.5-4.8c-8.7,0-16,5.9-18.1,13.9c0.5-0.3,1.4-0.1,1.4-0.1
|
||||
l8.4-1.4c0,0,0.4-0.7,0.6-0.7c2-2.2,4.8-3.4,7.7-3.4C26.5,13,28.8,13.9,30.5,15.4L30.5,15.4z"/>
|
||||
<path class="st1" d="M42.1,18.6c-1-3.6-3-6.7-5.7-9.1l-5.9,5.9c2.4,1.9,3.9,4.8,3.9,8.1v1c2.9,0,5.2,2.3,5.2,5.2
|
||||
c0,2.9-2.3,5.2-5.2,5.2H24L23,36v6.3l1,1h10.4c7.5,0,13.6-6.1,13.6-13.6C48,25.1,45.7,21,42.1,18.6L42.1,18.6z"/>
|
||||
<path class="st2" d="M13.6,43.3H24V35H13.6c-0.7,0-1.5-0.2-2.1-0.5l-1.5,0.5l-4.2,4.2l-0.4,1.4C7.7,42.3,10.6,43.3,13.6,43.3
|
||||
L13.6,43.3z"/>
|
||||
<path class="st3" d="M13.6,16.2C6.1,16.2,0,22.3,0,29.7c0,4.4,2.1,8.3,5.4,10.8l6-6c-1.9-0.8-3.1-2.7-3.1-4.8
|
||||
c0-2.9,2.3-5.2,5.2-5.2c2.1,0,3.9,1.3,4.8,3.1l6-6C21.9,18.3,18,16.2,13.6,16.2L13.6,16.2z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,144 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#D33833;}
|
||||
.st1{fill:#EF3D3A;}
|
||||
.st2{fill:#231F20;}
|
||||
.st3{fill-rule:evenodd;clip-rule:evenodd;fill:#F0D6B7;}
|
||||
.st4{fill-rule:evenodd;clip-rule:evenodd;fill:#335061;}
|
||||
.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#6D6B6D;}
|
||||
.st6{fill-rule:evenodd;clip-rule:evenodd;fill:#DCD9D8;}
|
||||
.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#F7E4CD;}
|
||||
.st8{fill:#F7E4CD;}
|
||||
.st9{fill-rule:evenodd;clip-rule:evenodd;fill:#49728B;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
||||
.st11{fill:#FFFFFF;}
|
||||
.st12{fill:none;stroke:#D33833;stroke-width:0.3855;stroke-miterlimit:6;}
|
||||
.st13{fill-rule:evenodd;clip-rule:evenodd;fill:#EF3D3A;}
|
||||
.st14{fill-rule:evenodd;clip-rule:evenodd;fill:#231F20;}
|
||||
.st15{fill-rule:evenodd;clip-rule:evenodd;fill:#81B0C4;}
|
||||
.st16{fill-rule:evenodd;clip-rule:evenodd;fill:#1D1919;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M40.8,23.1c0,9.5-7.5,17.2-16.8,17.2S7.2,32.6,7.2,23.1S14.7,5.9,24,5.9S40.8,13.6,40.8,23.1"/>
|
||||
<path class="st1" d="M7.9,27.4c0,0-1.2-18,15.3-18.5L22,7l-9,3l-2.5,3l-2.2,4.3l-1.3,5l0.4,3.3"/>
|
||||
<path class="st2" d="M12.5,11.4c-3,3-4.8,7.2-4.8,11.8S9.5,32,12.5,35s7,4.9,11.5,4.9S32.6,38,35.5,35s4.8-7.2,4.8-11.8
|
||||
s-1.8-8.8-4.8-11.8s-7-4.9-11.5-4.9S15.4,8.4,12.5,11.4z M11.7,35.7c-3.1-3.2-5.1-7.6-5.1-12.5s1.9-9.3,5.1-12.5S19.2,5.5,24,5.5
|
||||
c4.8,0,9.1,2,12.3,5.2c3.1,3.2,5.1,7.6,5.1,12.5s-1.9,9.3-5.1,12.5s-7.5,5.2-12.3,5.2S14.9,38.9,11.7,35.7"/>
|
||||
<g>
|
||||
<path class="st3" d="M31.1,23.2l-2.6,0.4L25.1,24l-2.2,0.1L20.6,24L19,23.5l-1.5-1.6l-1.2-3.3l-0.3-0.7l-1.5-0.5l-0.9-1.5L13,13.8
|
||||
l0.7-1.9l1.7-0.6l1.3,0.6l0.6,1.4l0.8-0.1l0.3-0.3l-0.3-1.5l-0.1-1.9l0.4-2.6l0-1.5l1.2-1.9l2.1-1.5l3.6-1.6l4,0.6l3.5,2.5
|
||||
l1.6,2.5l1,1.9l0.3,4.6l-0.8,4l-1.4,3.5L32,22.2"/>
|
||||
<path class="st4" d="M28.9,34.3l-9.2,0.4v1.5l0.8,5.4l-0.4,0.5l-6.4-2.2l-0.5-0.8l-0.6-7.2l-1.5-4.4l-0.3-1l5.1-3.5l1.6-0.6
|
||||
l1.4,1.7l1.2,1.1l1.4,0.4l0.6,0.2l0.8,3.3l0.6,0.7l1.5-0.5l-1,2l5.6,2.6L28.9,34.3"/>
|
||||
<path class="st5" d="M13.7,11.9l1.7-0.6l1.3,0.6l0.6,1.4l0.8-0.1l0.2-0.8L17.9,11l0.4-3.5L18,5.6l1.2-1.3l2.5-2l-0.7-1L17.4,3
|
||||
L16,4.2L15.1,6l-1.3,1.7l-0.4,2.1L13.7,11.9"/>
|
||||
<path class="st6" d="M16.3,5.9c0,0,1-2.4,4.8-3.5s0.2-0.8,0.2-0.8l-4.2,1.6l-1.6,1.6L14.9,6L16.3,5.9 M14.4,11.5
|
||||
c0,0-1.3-4.5,3.8-5.1L18,5.6l-3.5,0.8l-1,3.3l0.3,2.2L14.4,11.5"/>
|
||||
<path class="st7" d="M16.5,17.5l0.8-0.8c0,0.2,0.2,0.4,0.4,0.5c0.1,0.5,0.3,4.5,3,6.7c0.3,0.2-2.1-0.3-2.1-0.3l-2.1-3.2
|
||||
M28.2,16.2c0,0,0.1-1.9,0.7-1.8c0.5,0.1,0.5,0.7,0.5,0.7S28.2,15.9,28.2,16.2"/>
|
||||
</g>
|
||||
<path class="st8" d="M33.6,9.1c0,0-1.1,0.2-1.2,1.2c-0.1,0.9,1.2,0.2,1.3,0.1 M25.8,9.2c0,0-1.4,0.2-1.4,1.1c0,0.9,1.6,0.8,2.1,0.4
|
||||
"/>
|
||||
<g>
|
||||
<path class="st7" d="M17.1,13.4c0,0-2.4-1.5-2.7-0.1s-0.8,2.4,0.4,3.9L14,16.9l-0.8-2L12.9,13l1.5-1.5l1.7,0.1l1,0.8L17.1,13.4
|
||||
M18.3,9.3c0,0,1.1-5.6,6.6-6.8c4.5-0.9,6.9,0.2,7.8,1.2c0,0-4-4.8-7.9-3.3s-6.7,4.2-6.6,5.9L18.3,9.3 M33.1,4.4
|
||||
c0,0-1.9-0.1-1.9,1.6c0,0.2,0.1,0.4,0.1,0.5c0,0,1.5-1.7,2.4-0.8 M25,6.7c0,0-0.3-2.6-2.5-1.1c-1.4,1-1.3,2.3-1,2.6
|
||||
c0.3,0.2,0.2,0.8,0.4,0.4C22,8.3,22,7.1,22.7,6.8S24.5,6.1,25,6.7"/>
|
||||
<path class="st9" d="M19,24.1l-6,2.7c0,0,2.5,9.9,1.2,13l-0.9-0.3l-0.1-3.8l-1.7-7.2l-0.7-2l6.3-4.2L19,24.1 M19.6,29.6l0.9,1v3.8
|
||||
h-1l-0.1-3c0-0.3,0.1-1.5,0.1-1.5 M19.6,35l-2.9,0.1l0.8,0.6l2.1,0.3"/>
|
||||
<g>
|
||||
<path class="st4" d="M29.5,34.4l2.4-0.1l0.6,5.9L30,40.5L29.5,34.4"/>
|
||||
<path class="st4" d="M30.1,34.4l3.6-0.2l1.5-3.9c0-0.2,1.3-5.4,1.3-5.4l-2.9-3L33,21.4l-1.5,1.5v6L30.1,34.4"/>
|
||||
</g>
|
||||
<path class="st9" d="M31.7,33.9l-2.2,0.5l0.3,1.8c0.8,0.4,2.2-0.6,2.2-0.6 M31.8,22.7l4.5,3.3l0.1-1.5L33,21.4L31.8,22.7"/>
|
||||
<path class="st10" d="M21.8,47l-1.3-5.4l-0.7-4l-0.1-3l6-0.3h3.7l-0.3,6.8l0.6,5.2l-0.1,1l-4.9,0.4L21.8,47"/>
|
||||
<path class="st6" d="M28.6,34.3c0,0-0.3,6.7,0.6,11.4c0,0-1.9,1.2-4.7,1.5l5.4-0.2l0.6-0.4l-0.8-10.5l-0.2-2.2"/>
|
||||
<path class="st10" d="M32.5,39.7L35,39l4.7-0.3l0.7-2.2l-1.3-3.8l-1.5-0.2l-2.1,0.6l-2,1l-1-0.2l-0.8,0.3"/>
|
||||
<path class="st6" d="M32.5,38.4c0,0,1.7-0.8,1.9-0.7l-0.7-3.5l0.8-0.3l0.6,3.7l3.9,0.2c0,0,0.8-1.5,0.6-3l0.7,2.1l0.1,1.2l-1,1.5
|
||||
l-1.2,0.3l-1.9-0.1l-0.6-0.8l-2.2,0.3l-0.7,0.3"/>
|
||||
</g>
|
||||
<path class="st11" d="M30,33.9l-1.4-3.6l-1.5-2.1c0,0,0.3-0.9,0.8-0.9h1.5l1.4,0.5l-0.1,2.4L30,33.9"/>
|
||||
<path class="st6" d="M30.3,32.7c0,0-1.8-3.5-1.8-4c0,0,0.3-0.8,0.8-0.6c0.4,0.2,1.4,0.7,1.4,0.7v-1.2l-2.2-0.4L27,27.3l2.5,5.9
|
||||
l0.5,0.1"/>
|
||||
<path class="st11" d="M22.4,24.2L20.6,24L19,23.5v0.6l0.8,0.9l2.5,1.2"/>
|
||||
<g>
|
||||
<path class="st6" d="M19.5,24.4c0,0,2,0.8,2.6,0.6l0.1,0.8l-1.8-0.4l-1.1-0.8L19.5,24.4"/>
|
||||
<path class="st0" d="M32.5,27.5c-1.1,0-2.1-0.2-2.9-0.4c0.1-0.4-0.1-0.7,0-1c0.2-0.2,0.6-0.2,1-0.2c-0.3-0.2-0.8-0.2-1.1-0.1
|
||||
c0-0.2-0.1-0.4-0.2-0.6c0.6-0.2,2.1-1.7,2.9-1.2c0.4,0.2,0.6,1.5,0.6,2.1C32.8,26.7,32.7,27.2,32.5,27.5"/>
|
||||
</g>
|
||||
<path class="st12" d="M32.5,27.5c-1.1,0-2.1-0.2-2.9-0.4c0.1-0.4-0.1-0.7,0-1c0.2-0.2,0.6-0.2,1-0.2c-0.3-0.2-0.8-0.2-1.1-0.1
|
||||
c0-0.2-0.1-0.4-0.2-0.6c0.6-0.2,2.1-1.7,2.9-1.2c0.4,0.2,0.6,1.5,0.6,2.1C32.8,26.7,32.7,27.2,32.5,27.5z"/>
|
||||
<path class="st0" d="M27.3,25.7l0,0.2c-0.3,0.2-0.9,0.2-1.3,0.4c0.5,0,1,0.2,1.4,0.3l0,0.6c-0.6,0.4-1.2,1.1-1.9,1.5
|
||||
c-0.3,0.2-1.6,0.7-1.9,0.6c-0.2,0-0.2-0.3-0.3-0.6c-0.2-0.5-0.6-1.4-0.6-2.1c0-1-0.1-2.7,0.9-2.5c0.9,0.2,1.7,0.5,2.5,0.9
|
||||
C26.5,25.4,26.7,25.7,27.3,25.7"/>
|
||||
<path class="st12" d="M27.3,25.7l0,0.2c-0.3,0.2-0.9,0.2-1.3,0.4c0.5,0,1,0.2,1.4,0.3l0,0.6c-0.6,0.4-1.2,1.1-1.9,1.5
|
||||
c-0.3,0.2-1.6,0.7-1.9,0.6c-0.2,0-0.2-0.3-0.3-0.6c-0.2-0.5-0.6-1.4-0.6-2.1c0-1-0.1-2.7,0.9-2.5c0.9,0.2,1.7,0.5,2.5,0.9
|
||||
C26.5,25.4,26.7,25.7,27.3,25.7L27.3,25.7z"/>
|
||||
<path class="st0" d="M27.9,26.9c-0.1-0.5-0.2-0.7-0.2-1.2C29.2,24.8,29.5,27.4,27.9,26.9"/>
|
||||
<path class="st12" d="M27.9,26.9c-0.1-0.5-0.2-0.7-0.2-1.2C29.2,24.8,29.5,27.4,27.9,26.9z"/>
|
||||
<path class="st13" d="M30,27.3c0,0-0.4-0.6-0.1-0.8c0.3-0.2,0.6,0,0.8-0.3c0.2-0.3,0-0.5,0.1-0.9s0.4-0.4,0.7-0.5
|
||||
c0.3-0.1,1.2-0.2,1.3,0.1l-0.4-1.2l-0.8-0.3l-2.4,1.4l-0.1,0.7V27 M23.3,29.4l-0.2-3c-0.1-1.5,0.4-1.2,1.7-1.2
|
||||
c0.2,0,1.2,0.2,1.3,0.4c0.3,0.7-0.6,0.6,0.4,1.1c0.8,0.5,2.3-0.3,2-1.3c-0.2-0.2-1-0.1-1.3-0.2l-1.5-0.8c-0.6-0.3-2.1-0.8-2.8-0.4
|
||||
c-1.7,1.2,0.1,4.1,0.7,5.3"/>
|
||||
<path class="st14" d="M25,6.7c-1.7-0.4-2.6,0.7-3.1,1.9c-0.5-0.1-0.3-0.8-0.1-1.1c0.3-0.9,1.6-2,2.6-1.9C24.7,5.8,25.3,6.2,25,6.7
|
||||
M33.5,8.7L33.5,8.7c0.5,0.8,0.8,1.7,1.3,2.4c-0.3,0.8-2.5,1.5-2.5,0.1c0.5-0.2,1.3,0,1.7-0.3C33.8,10.2,33.5,9.6,33.5,8.7
|
||||
M25.9,8.7c0.4,0.7,0.5,1.4,1,1.9c0.2,0.2,0.7,0.5,0.5,1.2c-0.2,0.3-0.4,0.4-0.7,0.6c-0.8,0.2-2.8,0.1-2.1-1c0.7,0,1.6,0.4,2.1-0.1
|
||||
C26.4,10.7,25.6,9.5,25.9,8.7 M33.2,15.7c-1.3,0.8-2.7,1.7-4.7,1.5c-0.4-0.4-0.6-1.2-0.2-1.8c0.2,0.4,0.1,1.1,0.7,1.2
|
||||
c1.2,0.2,2.5-0.7,3.4-1c0.5-0.9,0-1.2-0.5-1.8c-1-1.2-2.2-2.6-2.2-4.3c0.4-0.3,0.4,0.4,0.5,0.6c0.5,1.2,1.8,2.7,2.7,3.7
|
||||
c0.2,0.2,0.6,0.5,0.6,0.6C33.6,14.8,33.2,15.4,33.2,15.7 M16.7,14.9c-0.4-0.2-0.5-1.2-0.9-1.2c-0.7,0-0.5,1.3-0.5,2.1
|
||||
c-0.5-0.4-0.5-1.7-0.2-2.3c-0.4-0.2-0.6,0.2-0.8,0.3C14.5,11.7,17.1,12.8,16.7,14.9 M34,16.5c-0.6,1.1-1.4,2.3-3.1,2.4
|
||||
c0-0.4-0.1-0.9,0-1.1C32.2,17.6,33,17,34,16.5 M25.8,17.2c1.1,0.6,3.1,0.6,4.6,0.6c0.1,0.3,0.1,0.7,0.1,1.1
|
||||
C28.5,19.1,26.3,18.6,25.8,17.2 M25.6,18.3c0.8,1.9,3.4,1.7,5.5,1.6c-0.1,0.2-0.3,0.5-0.6,0.6c-0.7,0.3-2.6,0.5-3.6,0
|
||||
c-0.6-0.3-1-1.1-1.4-1.5C25.5,18.9,24.6,18.3,25.6,18.3"/>
|
||||
<path class="st15" d="M33.1,28.8l-2.8,4.4c0.4-1.3,0.6-3.5,0.7-5.1C31.9,27.7,32.7,28.2,33.1,28.8"/>
|
||||
<path class="st14" d="M37.9,34.3c-1,0.2-1.7,1.2-2.7,1.1C35.8,34.6,36.7,34.3,37.9,34.3 M38.3,35.8c-0.8,0.1-1.8,0.2-2.6,0.1
|
||||
C36.1,35.4,37.6,35.6,38.3,35.8 M38.6,37.1c-0.9,0-2,0-2.9-0.1C36.2,36.5,38,36.9,38.6,37.1"/>
|
||||
<path class="st6" d="M31.4,40.8c0.1,1.1,0.6,2.3,0.5,3.5c-0.5,0.2-0.8,0.3-1.5,0.3L30.3,41C30.6,41,31.1,40.7,31.4,40.8"/>
|
||||
<path class="st3" d="M29.9,24c-0.5,0.3-0.8,0.7-1.3,1c-1,0-1.5-0.1-2.2-0.6c0,0,0.1,0,0.1-0.1C27.6,24.7,28.9,24.1,29.9,24"/>
|
||||
<path class="st15" d="M24.5,31.1c0.3-1.2,1.4-1.9,2.4-2.6c1.1,1.3,1.7,3,2.4,4.7C27.6,32.7,25.9,31.9,24.5,31.1"/>
|
||||
<path class="st14" d="M30.3,41c0,1,0.1,2.6,0.1,3.7c0.7,0,1-0.1,1.5-0.3c0.1-1.3-0.4-2.4-0.5-3.5C31.1,40.7,30.6,41,30.3,41
|
||||
L30.3,41z M19.8,35.2c0.4,4.1,1.1,7.5,2.3,11.1c2.6,0.8,5.8,0.9,8.1,0.1c-0.4-2-0.2-4.5-0.5-6.7l-0.3-5
|
||||
C26.5,34.2,22.6,34.7,19.8,35.2L19.8,35.2z M30,34.9c0,1.8,0.1,3.5,0.2,5.2l1.8-0.3c-0.2-1.7-0.2-3.6-0.6-5.1
|
||||
C30.9,34.7,30.5,34.7,30,34.9L30,34.9z M33.4,34.6c-0.3-0.1-0.7,0-1,0l0.6,4.5c0.5,0,0.7-0.2,1.1-0.3
|
||||
C34.2,37.5,34.1,35.7,33.4,34.6L33.4,34.6z M38.6,39.3c1-0.2,1.6-1.5,1.3-2.7c-0.2-0.8-0.5-2.4-0.9-3c-0.3-0.4-1-0.9-1.6-0.6
|
||||
c-0.9,0.6-2.6,0.8-3.3,1.5c0.3,1.1,0.4,2.7,0.6,4.1c1.2,0.1,2.6-0.3,3.6,0.1c-0.7,0.2-1.6,0.2-2.1,0.5
|
||||
C36.8,39.5,37.9,39.5,38.6,39.3L38.6,39.3z M29.3,33.2c-0.7-1.7-1.3-3.4-2.4-4.7c-1,0.7-2.1,1.3-2.4,2.6
|
||||
C25.9,31.9,27.6,32.7,29.3,33.2L29.3,33.2z M31,28.1c-0.1,1.7-0.3,3.8-0.7,5.1c1.1-1.3,1.9-2.9,2.8-4.4C32.7,28.2,32,27.7,31,28.1
|
||||
L31,28.1z M29.1,27.4c-0.4,0-0.7,0.5-1.3,0.2L27.5,28c1.1,1.4,1.7,3.3,2.6,5c0.5-1.6,0.4-3.3,0.5-5C29.9,28.1,29.5,27.4,29.1,27.4
|
||||
L29.1,27.4z M27.8,25.7c0,0.5,0.1,0.6,0.2,1.2C29.5,27.4,29.3,24.8,27.8,25.7z M26.1,25.2c-0.8-0.4-1.7-0.7-2.5-0.9
|
||||
c-1.1-0.2-1,1.5-0.9,2.5c0,0.8,0.4,1.6,0.6,2.1c0.1,0.2,0.1,0.5,0.3,0.6c0.4,0.1,1.6-0.4,1.9-0.6c0.7-0.4,1.3-1.1,1.9-1.5l0-0.6
|
||||
c-0.4-0.2-0.8-0.3-1.4-0.3c0.4-0.2,0.9-0.2,1.3-0.4l0-0.2C26.7,25.7,26.5,25.4,26.1,25.2L26.1,25.2z M19.7,24
|
||||
c-0.6,0.6,1.6,1.3,2.2,1.4c0-0.4,0.2-0.7,0.2-0.9C21.3,24.3,20.2,24.4,19.7,24L19.7,24z M26.5,24.3C26.5,24.3,26.5,24.3,26.5,24.3
|
||||
c0.6,0.6,1.2,0.8,2.1,0.7l1.3-1C28.9,24.1,27.6,24.7,26.5,24.3z M32.8,26.2c0-0.6-0.2-1.9-0.6-2.1c-0.8-0.5-2.3,1-2.9,1.2
|
||||
c0.1,0.2,0.2,0.3,0.2,0.6c0.4-0.1,0.8,0,1.1,0.1c-0.4,0-0.8,0-1,0.2c-0.1,0.3,0,0.6,0,1c0.9,0.2,1.8,0.4,2.9,0.4
|
||||
C32.8,27.2,32.9,26.7,32.8,26.2z M18.8,24.5c-0.2-0.1-1.4-1.7-1.5-1.6c-2.1,0.8-4.1,2.3-5.9,3.7c1.7,3.6,2.4,8.1,2.5,12.4
|
||||
c2,0.9,3.7,2.2,6.3,2.4l-0.8-6.1c-0.7-0.3-1.6,0-2.2-0.1c0-0.8,0.9-0.3,1-0.8c0.1-0.4-0.5-0.4-0.3-1c0.5,0.2,0.7,0.6,1.3,0.7
|
||||
c0.5-1,0-2.9,0.1-3.8c0-0.2,0.1-0.9,0.4-0.8c0.3,0.1,0,2,0,2.8c0,0.8-0.1,1.5,0.2,2c2.6-0.3,5.1-0.6,7.9-0.6
|
||||
c-0.6-0.3-1.3-0.5-2.1-1c-0.4-0.2-1.8-0.7-1.9-1.2c-0.2-0.6,0.5-1,0.6-1.6c-1.3,0.7-1.5-0.7-1.8-1.7c-0.3-0.9-0.4-1.5-0.5-2.1
|
||||
C20.9,25.7,19.7,25.2,18.8,24.5L18.8,24.5z M31.7,23.1c1.8-0.9,2.1,3.2,1.4,4.5c0.1,0.4,0.5,0.5,0.6,0.9l-3.1,5.2
|
||||
c0.8-0.5,1.8-0.1,2.7-0.4c0.3-0.1,0.6-0.9,0.8-1.5c0.7-1.6,1.4-3.7,1.7-5.2c0.1-0.4,0.3-1.1,0.2-1.4c-0.1-0.6-0.8-1-1.2-1.4
|
||||
L32.9,22C32.6,22.4,31.9,22.7,31.7,23.1L31.7,23.1z M14.7,7.4c-0.8,0.9-0.7,2.7-0.6,3.9c1.5-1,3.6,0.1,3.5,1.7
|
||||
c0.7,0,0.3-0.9,0.1-1.5c-0.4-1.9,0.7-3.9,0.1-5.6C16.5,6,15.5,6.5,14.7,7.4L14.7,7.4z M20.7,2c-1.9,0.5-4.4,1.9-5.2,3.7
|
||||
c0.6-0.1,1-0.4,1.6-0.4c0.2,0,0.5,0.1,0.8,0c0.5-0.1,1-1.3,1.4-1.7c0.4-0.4,0.8-0.6,1.2-1C20.7,2.4,21,2.4,21,2.1
|
||||
C20.9,2,20.8,1.9,20.7,2L20.7,2z M30.7,2.5c-2-1.1-5.4-2-7.5-0.9c-1.7,0.9-4,2.3-4.8,4.1c0.7,1.7-0.2,3.3-0.3,5.1
|
||||
c0,0.9,0.4,1.7,0.5,2.8c-0.3,0.4-1,0.5-1.6,0.4c-0.2-0.9-0.5-1.9-1.4-2c-1.3-0.1-2.3,0.9-2.3,2.1c-0.1,1.3,1,3.5,2.6,3.4
|
||||
c0.6-0.1,0.7-0.7,1.4-0.7c0.4,0.7-0.5,0.9-0.6,1.4c0,0.1,0.1,0.6,0.1,0.9c0.3,1.2,0.9,2.7,1.5,3.5c0.8,1.1,2.3,1.3,4,1.4
|
||||
c0.3-0.6,1.4-0.6,2.1-0.4c-0.8-0.3-1.6-1.2-2.3-1.9c-0.8-0.8-1.5-1.7-1.6-2.8c1.4,2,2.6,3.7,5.2,4.6c2,0.7,4.2-0.3,5.7-1.4
|
||||
c0.6-0.4,1-1.1,1.4-1.8c1.7-2.4,2.4-5.8,2.3-9.1c-0.1-1.4-0.1-2.7-0.5-3.6c-0.5-1-2.1-1.8-3-0.9c-0.2-0.9,0.8-1.5,1.9-1.2
|
||||
C32.7,4.4,31.9,3.1,30.7,2.5L30.7,2.5z M34.4,33.2c1.6-0.8,4.5-2.1,5.4,0c0.4,0.8,0.8,2.1,1,2.9c0.3,1.1-0.3,3.5-1.4,3.8
|
||||
c-1,0.3-2.2,0.3-3.4,0.1c-0.1-0.1-0.3-0.3-0.4-0.5c-0.9,0-1.7,0-2.4,0.4c0.1,0.6-0.4,0.8-0.8,0.9c-0.3,1.2,0.6,2.8,0.4,3.9
|
||||
c-0.2,0.8-1.1,0.9-1.8,1.1c0,0.4,0,0.8,0.1,1.2c-0.2,0.6-0.9,0.9-1.6,1c-2.3,0.3-5.7,0.4-7.9-0.4c-0.6-1.5-1.1-3.3-1.6-5
|
||||
c-2.1,0.2-3.8-0.9-5.5-1.7c-0.6-0.3-1.3-0.4-1.5-0.8c-0.2-0.4-0.1-1.3-0.2-2c-0.1-2-0.2-3.9-0.8-6c-0.2-0.9-0.6-1.7-0.9-2.6
|
||||
c-0.3-0.8-0.7-1.8-0.9-2.6c-0.2-1.2,1-1.3,1.7-1.8c1.1-0.8,2-1.3,3.2-2c0.4-0.2,1.5-0.8,1.6-1c0.2-0.5-0.4-1.2-0.6-1.6
|
||||
c-0.3-0.6-0.4-1.1-0.5-1.8c-1-0.2-1.8-0.8-2.3-1.5c-0.8-1.1-1.3-3.2-0.6-4.8c0.1-0.1,0.3-0.4,0.4-0.6c0.1-0.4-0.1-0.9-0.2-1.3
|
||||
c-0.1-2.1,0.4-3.9,1.8-4.5c0.6-2.2,2.6-3,4.5-4.1c0.7-0.4,1.5-0.7,2.3-1c2.9-1.1,7.4-0.9,9.8,1c1,0.8,2.7,2.4,3.3,3.6
|
||||
c1.6,3.1,1.4,8.4,0.4,12.2c-0.1,0.5-0.4,1.3-0.7,1.9c-0.2,0.4-0.8,1.3-0.8,1.7c0.1,0.4,1.5,1.4,1.8,1.7c0.5,0.5,1.5,1.2,1.6,1.8
|
||||
c0.1,0.7-0.3,1.6-0.5,2.3L34.4,33.2"/>
|
||||
<path class="st7" d="M24.1,17.7c0.1-0.1,0.5-0.3,1.2,0c0,0-0.8,0.1-0.7,1.4l-0.3-0.1C24.2,19.1,23.9,18,24.1,17.7"/>
|
||||
<path class="st16" d="M29.7,28.8c0,0.2-0.2,0.4-0.4,0.4S29,29,29,28.8s0.2-0.4,0.4-0.4S29.7,28.6,29.7,28.8 M30,30.4
|
||||
c0,0.2-0.2,0.4-0.4,0.4s-0.4-0.2-0.4-0.4s0.2-0.4,0.4-0.4S30,30.2,30,30.4"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#326CE5;}
|
||||
.st1{fill:#FFFFFF;stroke:#FFFFFF;stroke-width:8.250000e-02;stroke-miterlimit:6;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M23.8,0.7c-0.4,0-0.8,0.1-1.2,0.3L5.9,9C5,9.4,4.4,10.2,4.2,11.2L0.1,29.1c-0.2,0.8,0,1.7,0.5,2.4
|
||||
c0.1,0.1,0.1,0.2,0.2,0.3l11.6,14.4c0.6,0.8,1.5,1.2,2.5,1.2h18.5c1,0,1.9-0.4,2.5-1.2l11.5-14.4c0.6-0.8,0.8-1.7,0.6-2.7
|
||||
l-4.1-17.9c-0.2-0.9-0.9-1.7-1.7-2.1L25.4,1C24.9,0.8,24.4,0.7,23.8,0.7L23.8,0.7z"/>
|
||||
<path class="st1" d="M24,6.8c-0.6,0-1,0.5-1,1.1v0.3c0,0.3,0.1,0.6,0.1,0.9c0.1,0.6,0.1,1.2,0.1,1.8c-0.1,0.2-0.2,0.4-0.3,0.5
|
||||
l0,0.4c-0.6,0.1-1.2,0.1-1.8,0.3c-2.5,0.6-4.8,1.9-6.5,3.7l-0.4-0.3c-0.2,0.1-0.4,0-0.6-0.1c-0.5-0.4-0.9-0.8-1.3-1.2
|
||||
c-0.2-0.2-0.4-0.5-0.7-0.7l-0.2-0.2c-0.2-0.2-0.4-0.3-0.7-0.3c-0.3,0-0.6,0.1-0.8,0.4c-0.3,0.5-0.2,1.1,0.2,1.5l0.2,0.2
|
||||
c0.3,0.2,0.5,0.3,0.8,0.5c0.5,0.3,1,0.6,1.5,1c0.1,0.2,0.2,0.4,0.2,0.6l0.3,0.3c-1.8,2.6-2.5,5.9-2,9l-0.4,0.1
|
||||
c-0.1,0.2-0.3,0.3-0.4,0.4c-0.6,0.2-1.2,0.3-1.8,0.3c-0.3,0-0.6,0-1,0.1l-0.3,0.1h0c-0.5,0.1-0.9,0.6-0.9,1.1
|
||||
c0,0.2,0.1,0.4,0.3,0.6c0.3,0.3,0.7,0.4,1,0.2h0l0.3,0c0.3-0.1,0.6-0.2,0.9-0.3c0.6-0.2,1.1-0.4,1.7-0.5c0.2,0,0.4,0.1,0.6,0.2
|
||||
l0.5-0.1c1,3,3,5.6,5.8,7.2l-0.2,0.4c0.1,0.2,0.1,0.4,0.1,0.6c-0.2,0.6-0.6,1.1-0.9,1.6c-0.2,0.3-0.4,0.5-0.5,0.8l-0.1,0.3
|
||||
c-0.3,0.5-0.1,1.1,0.4,1.4c0.2,0.1,0.4,0.2,0.6,0.1c0.4,0,0.7-0.3,0.8-0.6l0.1-0.3c0.1-0.3,0.2-0.6,0.3-0.9
|
||||
c0.3-0.7,0.4-1.4,0.8-1.8c0.1-0.1,0.3-0.2,0.4-0.2l0.2-0.4c3,1.1,6.2,1.1,9.2,0l0.2,0.4c0.2,0,0.4,0.1,0.5,0.3
|
||||
c0.3,0.5,0.5,1.1,0.7,1.7c0.1,0.3,0.2,0.6,0.3,0.9l0.1,0.3c0.2,0.5,0.8,0.8,1.3,0.6c0.2-0.1,0.4-0.2,0.5-0.4c0.2-0.3,0.2-0.7,0-1.1
|
||||
l-0.1-0.3c-0.2-0.3-0.3-0.5-0.5-0.8c-0.3-0.5-0.6-1-0.9-1.6c0-0.2,0-0.4,0.1-0.6c-0.1-0.1-0.1-0.3-0.2-0.4c2.7-1.6,4.8-4.2,5.7-7.2
|
||||
l0.4,0.1c0.2-0.1,0.4-0.2,0.6-0.2c0.6,0.1,1.2,0.3,1.7,0.5c0.3,0.1,0.6,0.2,0.9,0.3c0.1,0,0.2,0,0.3,0.1h0c0.5,0.2,1.1-0.1,1.3-0.6
|
||||
c0.1-0.2,0.1-0.4,0-0.6c-0.1-0.4-0.4-0.6-0.8-0.7l-0.3-0.1c-0.3,0-0.6-0.1-1-0.1c-0.6,0-1.2-0.1-1.8-0.3c-0.2-0.1-0.3-0.3-0.4-0.4
|
||||
l-0.4-0.1c0.4-3.2-0.3-6.3-2.1-9l0.4-0.3c0-0.2,0.1-0.4,0.2-0.6c0.5-0.4,1-0.7,1.5-1c0.3-0.1,0.6-0.3,0.8-0.5l0.2-0.2
|
||||
c0.5-0.3,0.6-0.9,0.3-1.4c-0.1-0.2-0.3-0.3-0.5-0.4c-0.4-0.1-0.8,0-1,0.2l-0.2,0.2c-0.2,0.2-0.5,0.5-0.7,0.7
|
||||
c-0.4,0.5-0.8,0.9-1.3,1.2c-0.2,0.1-0.4,0.1-0.6,0.1l-0.4,0.3c-2.2-2.3-5.1-3.7-8.3-4c0-0.1,0-0.4,0-0.4c-0.2-0.1-0.3-0.3-0.3-0.5
|
||||
c0-0.6,0-1.2,0.1-1.8C24.9,8.9,25,8.5,25,8.2V7.9C25,7.4,24.6,6.9,24,6.8L24,6.8z M22.7,14.6l-0.3,5.2h0c0,0.3-0.2,0.6-0.5,0.8
|
||||
s-0.6,0.1-0.9-0.1l-4.3-3c1.4-1.3,3.1-2.3,5-2.7C22,14.7,22.4,14.6,22.7,14.6L22.7,14.6z M25.2,14.6c2.3,0.3,4.4,1.3,6,2.9l-4.3,3
|
||||
c-0.3,0.2-0.6,0.3-0.9,0.1s-0.5-0.4-0.5-0.8L25.2,14.6z M15.2,19.4l3.9,3.5v0c0.2,0.2,0.4,0.5,0.3,0.9c-0.1,0.3-0.3,0.6-0.6,0.7v0
|
||||
l-5,1.5C13.5,23.6,14,21.3,15.2,19.4L15.2,19.4z M32.8,19.4c1.2,1.9,1.7,4.2,1.5,6.5l-5.1-1.5v0c-0.3-0.1-0.6-0.3-0.6-0.7
|
||||
c-0.1-0.3,0-0.6,0.3-0.9L32.8,19.4L32.8,19.4z M23.2,23.2h1.6l1,1.2L25.4,26L24,26.7L22.5,26l-0.3-1.6L23.2,23.2z M28.3,27.4
|
||||
c0.1,0,0.1,0,0.2,0l5.2,0.9c-0.8,2.2-2.2,4-4.2,5.2l-2-4.9c-0.2-0.5,0-1,0.5-1.2C28.1,27.5,28.2,27.5,28.3,27.4L28.3,27.4z
|
||||
M19.6,27.5c0.3,0,0.6,0.2,0.7,0.4c0.2,0.2,0.2,0.6,0.1,0.8v0l-2,4.8c-1.9-1.2-3.4-3-4.1-5.2l5.2-0.9
|
||||
C19.5,27.5,19.5,27.5,19.6,27.5L19.6,27.5z M24,29.6c0.3,0,0.6,0.2,0.8,0.5h0l2.5,4.6l-1,0.3c-1.9,0.4-3.8,0.3-5.6-0.3l2.6-4.6
|
||||
C23.4,29.8,23.7,29.6,24,29.6L24,29.6z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 20 KiB |
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#1159CC;}
|
||||
.st1{fill:#127EFF;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M28.2,31.8L24,34.7V48l9-5.2L47.2,8.1V3.7L36.7,9.8v3.7L28.2,31.8z M11.3,9.8v3.7l8.4,19l4.2-2.1v-5.3
|
||||
l-6.3-14.8V6.2l0,0L11.3,9.8z"/>
|
||||
<path class="st1" d="M30.3,6.2v4.2L24,25.2v4.9l-4.2,2.4l-8.4-19V9.8l6.3-3.6L7.1,0L0.8,3.7v4.5L15,42.8l9,5.2V35l4.2-2.4l0,0
|
||||
l8.5-19V9.8l10.6-6.1L40.9,0L30.3,6.2L30.3,6.2z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 767 B |
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#EE4323;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M16.9,48c-2.9-1.2-5.6-4.4-5.6-7.6c0-3.5,2.2-6.5,5-8.5c-0.3,1.3-0.5,2.4,0.3,3.6c0.8,1.1,2.1,1.6,3.4,1.3
|
||||
c3-0.7,3.1-3.9,1.3-5.8c-1.7-1.9-3.4-4-2.8-6.8c0.3-1.4,1.2-2.7,2.2-3.6c-0.8,2.2,1.5,4.3,3,5.3c2.7,1.8,5.6,3.2,8,5.4
|
||||
c2.6,2.3,4.5,5.3,4.1,8.9c-0.4,3.8-3.5,6.5-6.9,7.9c7.2-1.6,14.7-7.2,14.9-15.2c0.1-6.6-4.4-11.7-10-14.6L33.7,18
|
||||
c0.2,0.4,0.2,0.7,0.2,1c0-0.2,0.1-0.4,0.1-0.7c0,0.3,0,0.5-0.1,0.8l0-0.1c-0.1,0.4-0.2,0.7-0.4,1l0.1-0.1c-1.1,1.9-4.2,2.3-5.6,0.3
|
||||
c-2.4-3.1,0-6.4,0.4-9.7c0.4-4.1-2.1-8.1-5.3-10.5c1.8,2.8-0.6,6.6-2.4,8.7c-1.8,2-4,3.7-6,5.6c-2.1,2-4.2,4.1-5.9,6.4
|
||||
C5.1,25.4,3,31.3,4.5,37.1C6.1,43,11.2,46.7,16.9,48L16.9,48z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#092E20;}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M5.7,15.6h2.6v12.2c-1.3,0.3-2.3,0.4-3.4,0.4c-3.2,0-4.9-1.4-4.9-4.2c0-2.7,1.8-4.4,4.5-4.4
|
||||
c0.4,0,0.7,0,1.1,0.1C5.7,19.6,5.7,15.6,5.7,15.6z M5.7,21.7c-0.3-0.1-0.6-0.1-0.9-0.1c-1.3,0-2.1,0.8-2.1,2.2
|
||||
c0,1.4,0.7,2.2,2.1,2.2c0.3,0,0.5,0,0.9-0.1V21.7z"/>
|
||||
<path class="st0" d="M12.5,19.7v6.1c0,2.1-0.2,3.1-0.6,4c-0.4,0.8-1,1.4-2.1,1.9l-2.4-1.2c1.2-0.5,1.7-1,2.1-1.8
|
||||
c0.4-0.7,0.5-1.6,0.5-3.9v-5.2H12.5z M9.8,15.6h2.6v2.7H9.8V15.6z"/>
|
||||
<path class="st0" d="M14,20.3c1.2-0.5,2.3-0.8,3.5-0.8c1.3,0,2.2,0.4,2.6,1.1c0.2,0.4,0.3,0.9,0.3,2v5.3c-1.2,0.2-2.7,0.3-3.8,0.3
|
||||
c-2.2,0-3.2-0.8-3.2-2.5c0-1.8,1.3-2.7,4.5-3v-0.6c0-0.5-0.2-0.6-0.9-0.6c-1,0-2.1,0.3-3.1,0.8L14,20.3L14,20.3z M18.2,24.4
|
||||
c-1.7,0.2-2.3,0.4-2.3,1.1c0,0.5,0.3,0.7,1,0.7c0.4,0,0.7,0,1.3-0.1C18.2,26.2,18.2,24.4,18.2,24.4z"/>
|
||||
<path class="st0" d="M21.7,20.1c1.6-0.4,2.8-0.6,4.1-0.6c1.3,0,2.3,0.3,2.9,0.9c0.5,0.6,0.7,1.2,0.7,2.5V28h-2.6v-5
|
||||
c0-1-0.3-1.4-1.3-1.4c-0.4,0-0.7,0-1.2,0.2V28h-2.6V20.1z"/>
|
||||
<path class="st0" d="M30.5,29.5c0.9,0.5,1.8,0.7,2.8,0.7c1.7,0,2.5-0.7,2.5-2.4c0,0,0,0,0-0.1c-0.5,0.3-1,0.4-1.7,0.4
|
||||
c-2.3,0-3.8-1.5-3.8-3.9c0-3,2.2-4.7,6-4.7c1.1,0,2.2,0.1,3.4,0.4l-0.9,1.9c-0.7-0.1-0.1,0-0.6-0.1V22l0,1.1l0,1.4
|
||||
c0,0.4,0,0.7,0,1.1c0,0.3,0,0.5,0,0.7c0,2.3-0.2,3.3-0.7,4.2c-0.8,1.3-2.2,1.9-4.2,1.9c-1,0-1.9-0.2-2.8-0.5L30.5,29.5L30.5,29.5z
|
||||
M35.7,21.6C35.7,21.6,35.6,21.6,35.7,21.6h-0.3c-0.5,0-1.1,0.1-1.5,0.4c-0.6,0.4-1,1-1,1.9c0,1.3,0.6,2.1,1.8,2.1
|
||||
c0.4,0,0.6-0.1,1-0.2v-0.2v-0.7c0-0.3,0-0.6,0-1l0-1.2l0-0.9L35.7,21.6L35.7,21.6z"/>
|
||||
<path class="st0" d="M43.8,19.4c2.6,0,4.2,1.7,4.2,4.3c0,2.7-1.7,4.5-4.3,4.5c-2.6,0-4.2-1.7-4.2-4.3
|
||||
C39.4,21.2,41.1,19.4,43.8,19.4z M43.7,26.1c1,0,1.6-0.8,1.6-2.3c0-1.4-0.6-2.3-1.6-2.3c-1,0-1.6,0.8-1.6,2.3
|
||||
C42.1,25.3,42.7,26.1,43.7,26.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#672A7A;}
|
||||
.st1{fill:#FFFFFF;}
|
||||
</style>
|
||||
<g id="XMLID_1_">
|
||||
<rect id="XMLID_5_" class="st0" width="48" height="48"/>
|
||||
<g id="XMLID_3_">
|
||||
<path id="XMLID_4_" class="st1" d="M30.9,18.3c0.2-0.2,0.4-0.5,0.4-0.8c0-0.3-0.1-0.5-0.3-0.7c-0.1-0.2-0.4-0.3-0.7-0.4
|
||||
c-0.3-0.1-0.5-0.2-0.6-0.3c-0.1-0.1-0.2-0.2-0.2-0.4c0-0.2,0.1-0.3,0.2-0.4c0.1-0.1,0.3-0.2,0.5-0.2c0.3,0,0.6,0.1,0.9,0.3v-0.6
|
||||
c-0.2-0.1-0.5-0.2-0.9-0.2c-0.4,0-0.7,0.1-1,0.3c-0.3,0.2-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.2,0.7c0.1,0.2,0.4,0.3,0.7,0.5
|
||||
c0.3,0.1,0.6,0.3,0.7,0.4c0.1,0.1,0.2,0.2,0.2,0.4c0,0.4-0.2,0.6-0.8,0.6c-0.4,0-0.7-0.1-1-0.4v0.7c0.3,0.2,0.6,0.2,1,0.2
|
||||
C30.2,18.7,30.6,18.6,30.9,18.3z"/>
|
||||
<path id="XMLID_29_" class="st1" d="M36.9,18.6h0.6v-3.5h0.9v-0.5h-0.9V14c0-0.6,0.2-0.9,0.7-0.9c0.2,0,0.3,0,0.4,0.1v-0.6
|
||||
c-0.1-0.1-0.3-0.1-0.5-0.1c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.4,0.6-0.4,1v0.7h-0.7v0.5h0.7V18.6z"/>
|
||||
<path id="XMLID_30_" class="st1" d="M16.4,13.6c0.1,0,0.2,0,0.3-0.1c0.1-0.1,0.1-0.2,0.1-0.3c0-0.1,0-0.2-0.1-0.3
|
||||
c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1C16.1,12.9,16,13,16,13.1c0,0.1,0,0.2,0.1,0.3C16.2,13.5,16.3,13.6,16.4,13.6z"/>
|
||||
<path id="XMLID_31_" class="st1" d="M19.7,18.7c0.4,0,0.8-0.1,1.1-0.3v-0.6c-0.3,0.2-0.6,0.3-1,0.3c-0.4,0-0.7-0.1-1-0.4
|
||||
c-0.2-0.3-0.4-0.6-0.4-1.1c0-0.5,0.1-0.9,0.4-1.2c0.3-0.3,0.6-0.4,1-0.4c0.3,0,0.7,0.1,1,0.3v-0.7c-0.3-0.1-0.6-0.2-0.9-0.2
|
||||
c-0.6,0-1.1,0.2-1.5,0.6c-0.4,0.4-0.6,0.9-0.6,1.6c0,0.6,0.2,1.1,0.5,1.4C18.6,18.5,19.1,18.7,19.7,18.7z"/>
|
||||
<path id="XMLID_34_" class="st1" d="M42.5,14.9h0.1c0.1,0,0.2,0.1,0.2,0.2l0.1,0.3h0.2l-0.2-0.4c-0.1-0.1-0.1-0.2-0.2-0.2l0,0
|
||||
c0.1,0,0.2-0.1,0.2-0.1c0.1-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.2-0.1-0.3c-0.1-0.1-0.2-0.1-0.4-0.1h-0.4v1.4h0.2L42.5,14.9L42.5,14.9z
|
||||
M42.5,14.3h0.2c0.1,0,0.2,0,0.2,0.1c0,0,0.1,0.1,0.1,0.2c0,0.2-0.1,0.2-0.3,0.2h-0.2C42.5,14.8,42.5,14.3,42.5,14.3z"/>
|
||||
<path id="XMLID_35_" class="st1" d="M39.6,17.5c0,0.8,0.4,1.2,1.1,1.2c0.2,0,0.4,0,0.6-0.1V18c-0.1,0.1-0.2,0.1-0.4,0.1
|
||||
c-0.2,0-0.4-0.1-0.5-0.2c-0.1-0.1-0.1-0.3-0.1-0.6v-2.3h1v-0.5h-1v-1.2c-0.2,0.1-0.4,0.1-0.6,0.2v1h-0.7v0.5h0.7V17.5z"/>
|
||||
<path id="XMLID_40_" class="st1" d="M42.7,15.9c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.5,0.3-0.8s-0.1-0.6-0.3-0.8
|
||||
c-0.2-0.2-0.5-0.3-0.7-0.3c-0.3,0-0.6,0.1-0.8,0.3c-0.2,0.2-0.3,0.5-0.3,0.7c0,0.3,0.1,0.6,0.3,0.8C42.2,15.8,42.4,15.9,42.7,15.9
|
||||
z M42.1,14.1c0.2-0.2,0.4-0.3,0.7-0.3c0.3,0,0.5,0.1,0.7,0.3c0.2,0.2,0.3,0.4,0.3,0.7s-0.1,0.5-0.3,0.7c-0.2,0.2-0.4,0.3-0.7,0.3
|
||||
c-0.3,0-0.5-0.1-0.7-0.3c-0.2-0.2-0.3-0.4-0.3-0.7C41.8,14.5,41.9,14.3,42.1,14.1z"/>
|
||||
<rect id="XMLID_41_" x="16.1" y="14.6" class="st1" width="0.6" height="4"/>
|
||||
<path id="XMLID_44_" class="st1" d="M26.1,18.7c0.6,0,1.1-0.2,1.5-0.6c0.4-0.4,0.5-0.9,0.5-1.5c0-0.6-0.2-1.2-0.5-1.5
|
||||
c-0.3-0.4-0.8-0.6-1.4-0.6s-1.1,0.2-1.5,0.5c-0.4,0.4-0.6,0.9-0.6,1.6c0,0.6,0.2,1.1,0.5,1.5C25,18.5,25.5,18.7,26.1,18.7z
|
||||
M25.2,15.4c0.2-0.3,0.6-0.4,1-0.4c0.4,0,0.7,0.1,0.9,0.4c0.2,0.3,0.3,0.7,0.3,1.2c0,0.5-0.1,0.9-0.3,1.1c-0.2,0.3-0.5,0.4-1,0.4
|
||||
c-0.4,0-0.7-0.1-1-0.4c-0.2-0.3-0.4-0.6-0.4-1.1C24.8,16.1,24.9,15.7,25.2,15.4z"/>
|
||||
<path id="XMLID_47_" class="st1" d="M35.3,18.1c0.4-0.4,0.5-0.9,0.5-1.5s-0.2-1.2-0.5-1.5c-0.3-0.4-0.8-0.6-1.4-0.6
|
||||
c-0.6,0-1.1,0.2-1.5,0.5c-0.4,0.4-0.6,0.9-0.6,1.6c0,0.6,0.2,1.1,0.5,1.5c0.4,0.4,0.8,0.6,1.4,0.6C34.5,18.7,34.9,18.5,35.3,18.1z
|
||||
M32.5,16.6c0-0.5,0.1-0.9,0.4-1.2c0.2-0.3,0.6-0.4,1-0.4c0.4,0,0.7,0.1,0.9,0.4c0.2,0.3,0.4,0.7,0.4,1.2c0,0.5-0.1,0.9-0.3,1.1
|
||||
c-0.2,0.3-0.5,0.4-1,0.4c-0.4,0-0.7-0.1-1-0.4C32.7,17.5,32.5,17.1,32.5,16.6z"/>
|
||||
<polygon id="XMLID_48_" class="st1" points="25.9,28.5 31.2,28.5 31.2,26.9 25.9,26.9 25.9,22 31.6,22 31.6,20.4 24.1,20.4
|
||||
24.1,35.2 31.9,35.2 31.9,33.6 25.9,33.6 "/>
|
||||
<polygon id="XMLID_49_" class="st1" points="33.6,22 37.8,22 37.8,35.2 39.5,35.2 39.5,22 43.8,22 43.8,20.4 33.6,20.4 "/>
|
||||
<path id="XMLID_50_" class="st1" d="M5.3,33.1c-0.3,0-0.6,0.1-0.8,0.3S4.2,34,4.2,34.3c0,0.3,0.1,0.6,0.3,0.8
|
||||
c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.5,0.3-0.8c0-0.3-0.1-0.6-0.3-0.8C5.9,33.2,5.6,33.1,5.3,33.1z"/>
|
||||
<path id="XMLID_51_" class="st1" d="M22.8,14.7c-0.2,0.2-0.3,0.4-0.4,0.7h0v-0.8h-0.6v4h0.6v-2.1c0-0.5,0.1-0.8,0.3-1.1
|
||||
c0.2-0.2,0.4-0.4,0.7-0.4c0.2,0,0.4,0,0.5,0.1v-0.7c-0.1,0-0.2-0.1-0.4-0.1C23.2,14.5,23,14.6,22.8,14.7z"/>
|
||||
<polygon id="XMLID_52_" class="st1" points="9.6,13.7 9.6,13.7 11.7,18.6 12,18.6 14.1,13.7 14.1,13.7 14.1,18.6 14.7,18.6
|
||||
14.7,13 13.9,13 11.9,17.6 11.8,17.6 9.9,13 9,13 9,18.6 9.6,18.6 "/>
|
||||
<polygon id="XMLID_53_" class="st1" points="19.1,32.9 11.2,20.4 9,20.4 9,35.2 10.7,35.2 10.7,22.6 18.8,35.2 20.9,35.2
|
||||
20.9,20.4 19.1,20.4 "/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#2B2E3A;}
|
||||
.st1{fill:#9FEAF9;}
|
||||
</style>
|
||||
<g>
|
||||
<circle class="st0" cx="24" cy="24" r="24"/>
|
||||
<g>
|
||||
<path class="st1" d="M18.8,13.4c-4.9-0.9-8.7,0-10.3,2.7c-1.1,2-0.8,4.6,0.8,7.4c0.1,0.2,0.4,0.3,0.7,0.2c0.2-0.1,0.3-0.4,0.2-0.7
|
||||
c0,0,0,0,0,0c-1.5-2.5-1.7-4.8-0.8-6.4c1.3-2.2,4.7-3,9.2-2.2c0.3,0,0.5-0.1,0.6-0.4C19.3,13.7,19.1,13.5,18.8,13.4z M11.9,27
|
||||
c2,2.2,4.5,4.2,7.5,5.9c7.1,4.1,14.6,5.2,18.3,2.6c0.2-0.2,0.3-0.5,0.1-0.7c-0.2-0.2-0.5-0.3-0.7-0.1c0,0,0,0,0,0
|
||||
C33.8,37,26.6,35.9,19.9,32c-2.8-1.6-5.3-3.6-7.2-5.7c-0.2-0.2-0.5-0.2-0.7,0C11.7,26.5,11.7,26.8,11.9,27
|
||||
C11.9,27,11.9,27,11.9,27z"/>
|
||||
<path class="st1" d="M36.5,26.4c3.2-3.8,4.3-7.6,2.8-10.2c-1.1-2-3.5-3-6.7-3c-0.3,0-0.5,0.2-0.5,0.5c0,0.3,0.2,0.5,0.5,0.5
|
||||
c2.9,0,4.9,0.9,5.8,2.5c1.3,2.2,0.3,5.6-2.7,9.1c-0.2,0.2-0.2,0.5,0.1,0.7C36,26.6,36.3,26.6,36.5,26.4
|
||||
C36.5,26.4,36.5,26.4,36.5,26.4z M28.3,13.6c-2.9,0.6-6,1.8-8.9,3.5C12.1,21.4,7.3,27.6,8,32.1c0,0.3,0.3,0.5,0.6,0.4
|
||||
c0.3,0,0.5-0.3,0.4-0.6c0,0,0,0,0,0c-0.6-4,3.9-9.9,10.9-13.9c2.9-1.7,5.8-2.8,8.6-3.4c0.3-0.1,0.4-0.3,0.4-0.6
|
||||
C28.8,13.7,28.6,13.6,28.3,13.6C28.3,13.6,28.3,13.6,28.3,13.6L28.3,13.6z"/>
|
||||
<path class="st1" d="M16.5,35.2c1.7,4.7,4.4,7.5,7.5,7.5c2.2,0,4.3-1.5,5.9-4.2c0.1-0.2,0.1-0.5-0.2-0.7c-0.2-0.1-0.5-0.1-0.7,0.2
|
||||
c0,0,0,0,0,0c-1.5,2.4-3.2,3.7-5.1,3.7c-2.6,0-5-2.6-6.5-6.9c-0.1-0.3-0.4-0.4-0.6-0.3C16.5,34.6,16.4,34.9,16.5,35.2
|
||||
C16.5,35.2,16.5,35.2,16.5,35.2L16.5,35.2z M31.7,34.3c0.9-2.8,1.3-5.9,1.3-9.3c0-8.3-2.9-15.4-7-17.3c-0.3-0.1-0.5,0-0.7,0.3
|
||||
c-0.1,0.2,0,0.5,0.2,0.6C29.3,10.3,32,17.1,32,25c0,3.2-0.4,6.3-1.3,9c-0.1,0.3,0.1,0.5,0.3,0.6C31.3,34.7,31.6,34.6,31.7,34.3
|
||||
C31.7,34.3,31.7,34.3,31.7,34.3L31.7,34.3z M41.1,33.8c0-1.3-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4c0,1.3,1.1,2.4,2.4,2.4
|
||||
S41.1,35.1,41.1,33.8z M40.1,33.8c0,0.8-0.6,1.4-1.4,1.4c-0.8,0-1.4-0.6-1.4-1.4s0.6-1.4,1.4-1.4C39.5,32.4,40.1,33,40.1,33.8z
|
||||
M9.1,36.2c1.3,0,2.4-1.1,2.4-2.4c0-1.3-1.1-2.4-2.4-2.4c-1.3,0-2.4,1.1-2.4,2.4C6.7,35.1,7.8,36.2,9.1,36.2z M9.1,35.2
|
||||
c-0.8,0-1.4-0.6-1.4-1.4c0-0.8,0.6-1.4,1.4-1.4c0.8,0,1.4,0.6,1.4,1.4C10.5,34.6,9.9,35.2,9.1,35.2z"/>
|
||||
<path class="st1" d="M23.9,10.2c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4c-1.3,0-2.4,1.1-2.4,2.4S22.6,10.2,23.9,10.2z M23.9,9.2
|
||||
c-0.8,0-1.4-0.6-1.4-1.4s0.6-1.4,1.4-1.4s1.4,0.6,1.4,1.4S24.7,9.2,23.9,9.2z M24.3,26.7c-0.9,0.2-1.9-0.4-2.1-1.3
|
||||
c-0.2-0.9,0.4-1.9,1.3-2.1c0.9-0.2,1.9,0.4,2.1,1.3C25.8,25.6,25.2,26.5,24.3,26.7z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
@@ -0,0 +1,84 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<path d="M14.3,40.7c-1.8-1.4-3.8-2.8-5.1-4.8c-2.8-3.4-5-7.4-6.4-11.6c-0.9-2.7-1.2-5.6-2.3-8.2c-1.2-1.9,0.2-4,2.3-4.6
|
||||
c0.9-0.2,2.5-1.1,0.6-0.4C1.6,12.5,1.4,10,3.2,9.9c1.2-0.2,1.7-1.2,1.3-2.1C3.1,6.9,7.6,6,5.4,4.7C3,2.2,8.7,1.7,7.3,4.6
|
||||
c-0.3,2.2,4-0.4,3,2.2c1,1.2,3.8,0.3,3.7,2c1.5,0.1,2,1.3,3.4,1.4c1.4,0.6,4,1.2,4.5,2.8c-1.4,1.1-4.7-2.3-4.9,0.8
|
||||
c0.4,4.6,0.3,9.4,2,13.8c0.8,2.7,2.7,4.8,4.5,6.8c1.7,2,3.9,3.5,6.3,4.7c2,1,4.2,1.6,6.4,2c0.9-0.7,2.5-3.2,3.9-2.2
|
||||
c0.1,1.2-2.8,2.5-0.1,2.4c1.6-0.5,2.6,1.2,3.9-0.3c1.2,1.4,4.9-0.9,4.1,2c-1.1,0.7-2.8,0.3-3.9,1.3c-1.9-0.9-3.4,0.8-5.4,0.6
|
||||
c-2.3,0.4-4.6,0.6-7,0.6c-3.8-0.3-7.7-0.4-11.4-1.8C18.1,43.1,16.1,41.9,14.3,40.7L14.3,40.7z M17.6,42.1c2,0.9,4,1.8,6.1,2.1
|
||||
c3.5,0.5,7.1,1.2,10.6,0.5c-1.6-0.7-3.2,0.3-4.8-0.5c-1.9,0.4-3.9-0.1-5.9-0.4c-2.2-1-4.5-1.6-6.6-2.9c-2.6-0.9,1.3,1.2,2,1.4
|
||||
c1.6,0.9-1.8-0.4-2.2-0.8c-1.3-0.8-1.5-0.6-0.1,0.2L17.6,42.1L17.6,42.1z M13.8,39.4c1.9,0.7,0-1.4-0.9-1.2
|
||||
c-0.4-0.7-1.5-1.1-0.7-1.5c-1.4,0.5-1.5-1.9-2.1-1.5C8.5,34.7,9.4,33,7.7,32c-0.2-1.1-1.8-2-2.3-3.6c-0.2-0.8-1.8-3.2-0.8-1
|
||||
c0.8,2.1,2.3,4,3.5,5.8c0.9,1.7,2.1,3.6,3.8,4.7C12.4,38.4,13,39.3,13.8,39.4L13.8,39.4z M8.2,33.3C8.2,33,8.5,33.9,8.2,33.3z
|
||||
M16.1,40.3C16.5,40.1,15.5,40,16.1,40.3z M17.1,40.7C17,40.1,16.7,41,17.1,40.7z M18.5,41.2C19.1,40.6,17.5,40.8,18.5,41.2z
|
||||
M20.7,42.5C21.1,41.9,19.5,42.3,20.7,42.5z M16.4,39.5C17.4,38.8,15.1,39.4,16.4,39.5z M17.4,40C17.3,39.6,17,40.1,17.4,40z
|
||||
M22.3,43c0.8,0.5,4.6,1.1,2.2,0.2C24.1,43.3,20.1,42.1,22.3,43z M14.5,36.9C14.4,36.6,13.2,36.6,14.5,36.9z M16.8,38.3
|
||||
C17.4,37.8,15.5,37.9,16.8,38.3z M18.7,39.5C19.6,39.1,17.3,39.1,18.7,39.5z M13.5,35.9c0.9,0.7,3.8,0.1,1.4-0.4
|
||||
c-1.1-0.6-3.4-1-1.8,0.3L13.5,35.9L13.5,35.9z M20,39.9C20.4,39.2,18.4,39.5,20,39.9z M18,38.3c2.3,0.6-1.9-1.4-0.6-0.2l0.3,0.1
|
||||
L18,38.3L18,38.3z M22,40.6C24.2,40.6,20,40.3,22,40.6z M12.7,34.7C12.6,34.3,12.2,34.7,12.7,34.7z M25.6,42.6
|
||||
C25.7,41.9,24.9,43.2,25.6,42.6z M16.4,36.9C16.3,36.5,15.7,36.9,16.4,36.9z M12.9,34.4C14.1,34.3,11.2,33.9,12.9,34.4z M8.8,31.7
|
||||
C8.6,31.2,7.4,30.7,8.8,31.7z M19.6,38.6C19.4,38.4,19.5,38.7,19.6,38.6z M26.3,42.7C26.3,42.3,26,42.9,26.3,42.7z M19,38
|
||||
C19.1,37.5,18,37.8,19,38z M14,34.8C14.9,34.7,12.5,34.2,14,34.8z M22.5,40.1C23.9,39.5,21.1,39.8,22.5,40.1z M18.1,37.1
|
||||
c1.7,0.2-2-1.1-0.4-0.1L18.1,37.1z M23.8,40.6c1.5-0.9,1,2.2,2.6,0.3c1.6-1.1-1.4,1.4,0.6,0.2c1.4-0.9,3.5,0.4,4.8,0.9
|
||||
c0.9,0,1.8,0.8,2.8,0.3c1.8-0.5-3.6-0.7-2.2-1.6c-1.7,0.5-2.9-0.6-3.8-1.7c-1.9-0.4-4.1-1.4-5-3.1c-0.4-0.6,0.6,0.1-0.3-0.9
|
||||
c-1.1-1-1.7-2.2-2.5-3.4c-0.9-0.5-1-1.9-1.1,0c0-1.2-1.1-2-1.4-1.7c0-1.1,1.2-0.6,0.4-1.4c-0.2-1.2-0.8-2.4-1-3.8
|
||||
c-0.3-0.6,0-2-0.9-0.6c-0.3,1.5-0.1-1.9,0.4-0.8c0.7-1.2-0.2-1-0.3-0.9c0.4-1,0.3-2.4-0.1-1.8c0.2-1,0.4-3.8-0.3-3.3
|
||||
c0.4-1.1,0.8-4.9-1.1-3.5c-0.8,0-2.1,0.3-2.7,0.6c2,1.1-0.2,0.4-1,0.2c-0.1,1-0.9,0.6-1.9,0.6c1.6,0.2-0.8,1.6-1.7,1.1
|
||||
c-1.2,0.6,1,2,0,2.4c0.1,0.7-1.8-0.2-1.7,1.3c-1.1-0.5-0.2,1.8,0.4,1c1.9,0.5,1.4,1.7,1.4,2.9c-0.3,0.7-1.6-1.6-0.3-1.5
|
||||
c-1-1.7-1.1-0.6-2,0.2c-0.2,0.1,2.2,1.1,0.7,1.6C8,24.5,8,25.6,8.3,26.3c0.8,0.8,0.6-0.9,1.6,0.1c-0.6-0.9-3.1-2.5-1.1-1.9
|
||||
c0-0.9-0.4-1.6,0.3-1.6c0.6-1.1-0.7,2.8,0.8,1.3c0.4-0.2,0.5-1.1,1.2,0.1c1,1,0.4,1.7-1.1,0.8c0.3,0.9,1.9,1.2,1.6,2.5
|
||||
c0.3,1.2,0.8,0.8,1.2,0.7c0.3,1.2,0.5,0.3,0.5-0.2c1.4,0.3,1.1,1.2,1.6,1.8c1,0.4-1.4-3,0.3-1.1c1.8,1.6,0.7,2.3-0.9,2
|
||||
c1-0.1,1.3,1.4,2.6,1.3c1.2,0.6,2,2.7-0.1,1.8c-0.7-0.6-3.2-1.4-1.1-0.2c1.9,0.9,3.3,1.4,5.1,2.5c1.3,0.9,1.8,2,2.3,2.2
|
||||
c-1.1,0.5-3.2-0.4-1.7-0.7c-1-0.2-2.1-0.7-1.2,0.6c0.8,0.7,2.9,0.6,3.3,0.7c-0.3,0.7-0.9,0.8,0,0.8C22.4,40.2,23.7,40.3,23.8,40.6
|
||||
L23.8,40.6z M21.8,35c-0.6-0.6-0.7-1.8-0.1-0.8C22.1,34.4,22.8,36.1,21.8,35z M28.3,39.1C28.7,39.1,28.3,39.4,28.3,39.1z M20.9,33.5
|
||||
C20.9,32.5,21.1,34.2,20.9,33.5z M20.3,32.6C19.5,31.2,21.2,33,20.3,32.6z M12.5,27.2C12.9,27.1,12.7,28,12.5,27.2z M18.7,30.6
|
||||
C18.9,29.6,19,31.4,18.7,30.6z M14.3,27.5C14,27,14.9,28,14.3,27.5z M18,28.7c-0.7-1.6,0.5-0.9,0.2,0.3L18,28.7z M11.5,24.4
|
||||
c-0.3-0.5-0.8-2-0.7-2.5c0.1,0.8,1.6,3.3,0.7,1c-1-1.9,1.2,0.6,1.4,1.1c0.1,0.5-0.6-0.1-0.1,1C12,23.7,12.3,25.7,11.5,24.4
|
||||
L11.5,24.4z M9.5,23C9.6,21.8,10,23.8,9.5,23z M10.4,23.3C10.9,22.4,11.2,24.6,10.4,23.3z M8.3,21.7c-0.7-0.7-1.3-1.4,0-0.5
|
||||
c0.5,0-1.1-1.6,0.1-0.5C9.7,21,9.1,22.9,8.3,21.7L8.3,21.7z M9.4,21.7C9.8,21.2,9.6,22.1,9.4,21.7z M10.1,21.9
|
||||
C9.4,20.6,10.9,22.4,10.1,21.9z M8.7,20.5c-2.2-1.9,2.7,1,0.4,0.4L8.7,20.5z M14.9,24.2c-0.9-0.6-0.3-4,0.1-1.6
|
||||
c0.9-0.3-0.1,1.2,0.6,1.2C15.5,24.7,15.2,25,14.9,24.2L14.9,24.2z M17.2,25.5C17.3,24.5,17.4,26.2,17.2,25.5z M16.8,25.1
|
||||
C16.9,24.7,16.8,25.6,16.8,25.1z M9.1,19.9c-1.4-1.9,4.1,1.9,0.9,0.5C9.7,20.3,9.3,20.3,9.1,19.9z M13.6,22.3
|
||||
C13.4,20.6,13.9,22.5,13.6,22.3z M16.9,24.4C17.2,23.5,17,25,16.9,24.4z M9.4,19.2c0.8-0.2,3.4,1.5,1,0.5
|
||||
C10.1,19.3,9.6,19.5,9.4,19.2z M16.5,22.7c0.1-1.7,0.5-1,0,0.2L16.5,22.7z M10,18.6c0.3-0.5-0.9-2.2,0.2-0.6
|
||||
c0.5,0.4,1.3,0.6,0.6,0.8C11.9,19.8,10.4,19,10,18.6L10,18.6z M16.1,22.2C16.4,20.3,16.3,23.3,16.1,22.2z M9.3,16.9
|
||||
C9.5,16.7,9.4,17.2,9.3,16.9z M10.9,17.8C11.3,16.9,11.6,18.8,10.9,17.8z M15.4,20.3C15.4,20,15.5,20.8,15.4,20.3z M15.1,19.7
|
||||
C14.5,18.2,15.7,20.6,15.1,19.7z M14.7,18.7C14.6,18.1,15.1,19.5,14.7,18.7z M15.4,17.7C14.9,17,15.9,14.4,16,16
|
||||
c-0.5,1.3-0.1,2,0.2,0.3C16.8,14.9,16.1,18.8,15.4,17.7L15.4,17.7z M16,13.9C16.2,13.6,16.1,14.1,16,13.9z M14.9,35.1
|
||||
C14.7,34.9,15,35.2,14.9,35.1z M17.2,36.2c1.2,0.3,1.2-0.2,0.1-0.3c-0.6-0.6-2.5-1.2-0.8-0.1C16.6,36.1,16.9,36.1,17.2,36.2
|
||||
L17.2,36.2z M12.8,33.3c0.7,0.5,2.6,1.4,1,0.2c0.5-0.6-1-1-0.5-1.4c-1.3-0.8-1-0.8-0.1-0.7c-1.6-0.7,0.2-0.7,0.1-1
|
||||
c-0.6-0.1-3-1.1-1.6,0.1c-1.5-0.7-0.3,0.3-0.8,0.2c-1.5-0.4,1.3,1.1-0.2,0.8c0.9,0.7,2.3,1.7,0.4,0.7C10.7,32.5,12.4,33,12.8,33.3
|
||||
L12.8,33.3z M15.1,34.6C17.9,35.5,13.7,33.5,15.1,34.6z M27,41.8C27,41.3,26.6,42.3,27,41.8z M28.2,42.3c0.7-0.6,0,1,1.1-0.2
|
||||
c0-0.8,0-1.3-1.2-0.3C27.8,42.1,27.6,42.8,28.2,42.3L28.2,42.3z M8.8,30.2C8.6,29.4,7.4,29.4,8.8,30.2z M10.1,31
|
||||
C9.6,30.2,8.4,30.3,10.1,31z M17.5,35.5c0.7,0.6,3.3,0.5,0.9,0.1C18.1,35,16.1,35.2,17.5,35.5z M27.7,41.8
|
||||
C28.9,40.9,26.7,42.2,27.7,41.8z M30.1,43.4C30.1,43.1,29.6,43.5,30.1,43.4z M30.1,43C31.3,41.7,28.9,43,30.1,43z M5.6,27.5
|
||||
C4.6,26,5,25.3,3.9,24.1c-0.2-0.9-1.7-3.1-0.8-0.8C4,24.6,4.3,26.6,5.6,27.5L5.6,27.5z M29.7,42.6C31.9,41.1,28.7,41.9,29.7,42.6z
|
||||
M31.4,43.2C32.5,42.3,30.7,43,31.4,43.2z M8.4,28.5C8.8,28,7.6,28.4,8.4,28.5z M31,42.8c1.1-0.7-0.3-0.6-0.2,0.1L31,42.8z
|
||||
M16.1,33.3C16.1,32.9,15.5,33.4,16.1,33.3z M17,33.9C16.7,33.3,16.6,34,17,33.9z M32.8,43.2c1.4-1-0.9-0.2-0.3,0.2L32.8,43.2z
|
||||
M32.3,43C33.4,42,31.1,43.4,32.3,43z M35,44.8C35.8,44.3,34.1,44.7,35,44.8z M9.1,28.2c1,0.2,4.1,2.5,2.3,0.2
|
||||
c-0.9-0.3-0.4-2.6-1.3-2.2c0.6,1.1,0.5,1.5-0.8,0.9c-1.7-0.8-0.9,0.4-0.6,0.8C8.2,27.9,9.3,28.2,9.1,28.2L9.1,28.2z M4.4,24.4
|
||||
c0.2-0.8-1.7-4.2-0.9-1.7C3.8,23.2,3.8,24.2,4.4,24.4z M13.1,29.8C12.5,29.3,13.1,29.7,13.1,29.8z M14.4,30.1
|
||||
C14.4,29.3,12.9,29.7,14.4,30.1z M25.8,37.2C25.5,36.7,24.9,37.2,25.8,37.2z M26.3,37.6C26.2,37.3,26,37.7,26.3,37.6z M30.8,40.5
|
||||
C31.2,40.2,30.3,40.4,30.8,40.5z M6.8,25C8,24.6,5.5,24.7,6.8,25z M24.8,36.4C24.7,35.6,24,36.6,24.8,36.4z M6.3,23.9
|
||||
C7.1,23.6,5.6,23.7,6.3,23.9z M8.6,25C8.6,24.8,8.4,25.1,8.6,25z M36.8,42.3c1-0.2,3.4,0.5,3.7-0.3c-1.2,0-4.3-0.9-4.4,0.2l0.3,0
|
||||
L36.8,42.3L36.8,42.3z M9.3,25.2C9.4,24.4,8.7,25.2,9.3,25.2z M3.3,21C3,19.4,2.2,20.8,3.3,21z M4.7,21.4
|
||||
C4.7,20.9,3.4,20.9,4.7,21.4z M5.5,21.8C5.3,21.6,5.4,22,5.5,21.8z M10.7,25.1C11,24.9,10.2,24.9,10.7,25.1z M5,20.8
|
||||
C4.8,19.7,3.3,20.7,5,20.8z M2,18.9C2,18.4,1.7,19.1,2,18.9z M2.5,18.6C2.4,17.9,2.1,18.7,2.5,18.6z M4.9,20c1-0.4-1.9-0.8-0.2-0.1
|
||||
L4.9,20z M37.6,40.2C38.2,39.6,36.7,40,37.6,40.2z M41.5,42.3C41.8,41.5,40.8,42.4,41.5,42.3z M5.1,18.8C5.3,18,4.3,18.9,5.1,18.8z
|
||||
M1.7,16.4c-0.2-1.1-0.2-2.9,1.6-2.3c-2.4,0.5,1.6,3,1.1,1c1,0,2-0.6,1.4,0.4c2-0.2,3.3-1.9,5.2-1.7c1.5-0.2,3.1-0.3,4.7-0.9
|
||||
c1.3-0.1,2.6-1.5,1.9-2.4C15.9,10.4,14,10.6,12,11c-2.2,0.5-4.2,1.3-6.4,1.7c-2.2,0.3,0.4,0.8-0.2,0.9c-1.1,0.4,1.3,0.7-0.1,1.1
|
||||
c-0.9-0.2-1.9-0.5-1.5-1.5c-2.1,0.3-3.9,1.1-2.3,3.2L1.7,16.4L1.7,16.4z M6.7,13.9c0.5-1.8,2.6,1.5,0.8,0.2
|
||||
C7.2,14,6.9,13.9,6.7,13.9z M6.8,13C7.5,12.5,7.1,13.3,6.8,13z M7.7,13.1c0.1-0.8,2,0.4,0.3,0.3L7.7,13.1z M8.9,12.6
|
||||
C9.3,12,9,13,8.9,12.6z M9.2,12.4c0.7-0.9,4.2-0.6,1.6-0.1C10.2,11.8,9.6,12.6,9.2,12.4z M13.7,11.7C13.6,9.2,15.9,12.5,13.7,11.7z
|
||||
M15,11.7c0.5-1.2,1.8-0.5,0.2-0.2C15.2,11.5,15.1,12,15,11.7z M4.6,18.1C6,17.3,3.2,17.4,4.6,18.1z M5.7,18.4
|
||||
C6.2,17.9,4.6,18.2,5.7,18.4z M2.6,16.3C3.4,15.6,1.7,16,2.6,16.3z M43.8,42C43.9,41.3,43.2,42.4,43.8,42z M39.7,39.2
|
||||
C39.8,38.4,39.1,39.3,39.7,39.2z M45,42.3c1.1,0,3.4-0.3,1-0.3C45.6,42,43.7,42,45,42.3z M6.6,17.9c0.9-0.1,1.4-1-0.2-0.9
|
||||
c-2.5-0.3,2.2,0.8-0.3,0.5C5.8,17.7,6.6,18,6.6,17.9L6.6,17.9z M7.4,18.3C7.3,17.7,7.1,18.6,7.4,18.3z M8.3,15.8
|
||||
C8.7,15.3,7.8,15.7,8.3,15.8z M5.3,10.8c1.6-0.5,3.8-1.2,4.6,0.3c-0.8-0.9-0.3-1.8,0.4-0.5c1,1.4,1.6-0.6,0.9-1.1
|
||||
c0.8,1,1.6,1.4,0.5,0.1c1.2-1.5-2.4,0.2-3.3,0.2C8,9.9,4.3,10.7,5.3,10.8L5.3,10.8z M6.3,9C7.2,8.3,9.5,9.4,8,8.3
|
||||
C7.9,8.2,4.8,9.1,6.3,9z M9.6,9.1c1.1,0-0.5-1.4,0.8-0.8c-0.2-0.7-1.5-0.8-2.1-1.1C8,7.9,9,9.1,9.6,9.1L9.6,9.1z M6.9,6.1
|
||||
C7.2,5.6,6.2,6.3,6.9,6.1z M8.2,6.4c1.7-0.2-0.4-0.7-0.3,0L8.2,6.4z M5.7,4.4C4.4,2.8,8,4.7,6.7,3C5.7,2.2,4.7,4,5.7,4.4z
|
||||
M21.3,12.8c0.6-1-2.3-1.3-0.4-0.4C21.1,12.6,21.1,12.9,21.3,12.8z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.3 KiB |
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FF2D20;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M47.3,10.9c0,0.1,0,0.1,0,0.2v10.3c0,0.3-0.1,0.5-0.4,0.7l-8.6,5v9.9c0,0.3-0.1,0.5-0.4,0.7L19.9,47.9
|
||||
c0,0-0.1,0-0.1,0.1c0,0,0,0-0.1,0c-0.1,0-0.3,0-0.4,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1-0.1l-18-10.4c-0.2-0.1-0.4-0.4-0.4-0.7V5.9
|
||||
c0-0.1,0-0.1,0-0.2c0,0,0,0,0-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0.1-0.1c0,0,0-0.1,0.1-0.1c0,0,0,0,0.1-0.1c0,0,0.1,0,0.1-0.1h0l9-5.2
|
||||
c0.2-0.1,0.5-0.1,0.8,0l9,5.2h0c0,0,0.1,0,0.1,0.1c0,0,0.1,0,0.1,0.1c0,0,0,0.1,0.1,0.1c0,0,0,0,0.1,0.1c0,0,0,0.1,0,0.1
|
||||
c0,0,0,0,0,0.1c0,0.1,0,0.1,0,0.2v19.3l7.5-4.3v-9.9c0-0.1,0-0.1,0-0.2c0,0,0,0,0-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0.1-0.1
|
||||
c0,0,0-0.1,0.1-0.1c0,0,0,0,0.1-0.1c0,0,0.1,0,0.1-0.1h0l9-5.2c0.2-0.1,0.5-0.1,0.8,0l9,5.2c0,0,0.1,0,0.1,0.1c0,0,0.1,0,0.1,0.1
|
||||
c0,0,0,0.1,0.1,0.1c0,0,0,0,0.1,0.1C47.2,10.7,47.2,10.8,47.3,10.9C47.3,10.8,47.3,10.8,47.3,10.9z M45.8,20.9v-8.6l-3.2,1.8
|
||||
l-4.4,2.5v8.6L45.8,20.9L45.8,20.9z M36.8,36.4v-8.6l-4.3,2.5l-12.3,7v8.7C20.2,45.9,36.8,36.4,36.8,36.4z M2.2,7.2v29.2l16.5,9.5
|
||||
v-8.7l-8.6-4.9l0,0l0,0c0,0-0.1,0-0.1-0.1c0,0-0.1,0-0.1-0.1l0,0c0,0,0-0.1-0.1-0.1c0,0,0,0-0.1-0.1l0,0c0,0,0-0.1,0-0.1
|
||||
c0,0,0-0.1,0-0.1v0c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1v0V11.6L5.3,9.1L2.2,7.2L2.2,7.2z M10.5,1.6L2.9,5.9l7.5,4.3L18,5.9L10.5,1.6
|
||||
L10.5,1.6z M14.4,28.6l4.4-2.5V7.2l-3.2,1.8l-4.4,2.5v18.9C11.2,30.4,14.4,28.6,14.4,28.6z M37.5,6.7L30,11.1l7.5,4.3l7.5-4.3
|
||||
C45.1,11.1,37.5,6.7,37.5,6.7z M36.8,16.7l-4.4-2.5l-3.2-1.8v8.6l4.4,2.5l3.2,1.8C36.8,25.3,36.8,16.7,36.8,16.7z M19.5,36l11-6.3
|
||||
l5.5-3.1l-7.5-4.3l-8.6,5L12,31.7C12,31.7,19.5,36,19.5,36z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="svg2" xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 48 48"
|
||||
style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#263238;}
|
||||
.st1{fill:#42A5F5;}
|
||||
.st2{fill:#FFFFFF;}
|
||||
.st3{fill:#1976D2;}
|
||||
</style>
|
||||
<g id="g4" transform="matrix(0.01712,0,0,0.01712,-116.963,48.724999)">
|
||||
<path id="path8" class="st0" d="M8463.7-1444.3"/>
|
||||
<path id="path10" class="st1" d="M9252.1-2032.1"/>
|
||||
<g id="g8856-6" transform="matrix(1.0887031,0,0,1.0887031,-870.07715,252.64209)">
|
||||
<circle id="circle8858-1" class="st2" cx="8362.1" cy="-1558.6" r="1287.3"/>
|
||||
<path id="path8860-5" class="st0" d="M8572.8-1558.6c0,116.4-94.2,210.6-210.6,210.6l0,0c-116.3,0-210.6-94.3-210.6-210.6l0,0
|
||||
c0-116.4,94.3-210.6,210.6-210.6S8572.8-1675,8572.8-1558.6z"/>
|
||||
<path id="path8862-5" class="st3" d="M9297-2098.4c-45.8-78.7-101.4-151.4-165.5-216.2l-243.4,140.6
|
||||
c-75.9-64.8-162.1-114.5-254.2-147.3c-83.2,84.3-149.2,178.4-196.8,280.7c271-18.5,550.9,79.6,810.7,282.7l153.2-88.5
|
||||
C9377.2-1934.5,9342.3-2019.1,9297-2098.4L9297-2098.4z"/>
|
||||
<path id="path8864-4" class="st1" d="M9297-1018.9c45.3-79.1,80.5-163.6,104.6-251.4l-243.4-140.6c18.2-98.1,18-197.6,0.4-293.8
|
||||
c-114.5-29.9-229-40-341.5-30c151.5,225.5,206.5,516.9,160.6,843.4l153.2,88.5C9195.3-867.6,9251.1-940.1,9297-1018.9z"/>
|
||||
<path id="path8866-7" class="st3" d="M8362.3-479.2c91.1-0.2,181.8-12.1,270-35.2v-281.1c94.1-33.3,180.2-83.2,254.7-146.4
|
||||
c-31.4-114.1-79.9-218.3-144.8-310.8c-119.6,243.9-344.4,437.3-650.1,560.8v177C8180.2-491.5,8271-479.6,8362.3-479.2z"/>
|
||||
<path id="path8868-6" class="st1" d="M7427.4-1018.8c45.8,78.7,101.4,151.4,165.5,216.2l243.4-140.6
|
||||
c75.9,64.8,162.1,114.5,254.2,147.3c83.2-84.3,149.2-178.4,196.8-280.7c-271,18.5-550.9-79.6-810.7-282.7l-153.2,88.5
|
||||
C7347.2-1182.7,7382.1-1098.1,7427.4-1018.8z"/>
|
||||
<path id="path8870-5" class="st3" d="M7427.3-2098.3c-45.3,79.1-80.5,163.6-104.6,251.4l243.4,140.6
|
||||
c-18.2,98.1-18,197.6-0.4,293.8c114.5,29.9,229.1,40,341.5,30c-151.5-225.5-206.5-516.9-160.6-843.4l-153.2-88.5
|
||||
C7529.1-2249.7,7473.3-2177.1,7427.3-2098.3z"/>
|
||||
<path id="path8872-6" class="st1" d="M8362.1-2638.1c-91.1,0.2-181.8,12.1-270,35.2v281.1c-94.1,33.3-180.2,83.2-254.7,146.4
|
||||
c31.4,114.1,79.9,218.3,144.8,310.8c119.6-243.9,344.4-437.3,650.1-560.8v-177C8544.2-2625.7,8453.4-2637.6,8362.1-2638.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#CC0000;}
|
||||
</style>
|
||||
<g transform="translate(8 8)">
|
||||
<path class="st0" d="M33.8,22.2v2.2h4c0.8,0,2.2-0.6,2.3-2.3v-0.8c0-1.4-1.2-2.3-2.3-2.3h-2v-1h3.9v-2.2h-3.8c-1,0-2.3,0.8-2.3,2.3
|
||||
v0.8c0,1.5,1.3,2.3,2.3,2.3c2.7,0-0.7,0,1.9,0v1.1 M12.5,21.7c0,0,2.1-0.2,2.1-2.9s-2.6-3-2.6-3H7.5v8.6h2.3v-2.1l2,2.1h3.4
|
||||
L12.5,21.7z M11.6,19.9H9.8v-2h1.9c0,0,0.5,0.2,0.5,1C12.2,19.7,11.6,19.9,11.6,19.9z M20.4,15.9H18c-1.7,0-2.3,1.5-2.3,2.3v6.3
|
||||
h2.4v-1.5h2.2v1.5h2.3v-6.3C22.7,16.3,21,15.9,20.4,15.9z M20.4,20.5h-2.2v-2.1c0,0,0-0.5,0.7-0.5h0.8c0.7,0,0.7,0.5,0.7,0.5
|
||||
L20.4,20.5L20.4,20.5z"/>
|
||||
<rect x="23.7" y="15.9" class="st0" width="2.5" height="8.6"/>
|
||||
<polygon class="st0" points="29.7,22.2 29.7,15.9 27.2,15.9 27.2,22.2 27.2,24.4 29.7,24.4 33,24.4 33,22.2 "/>
|
||||
<path class="st0" d="M-7.2,24.4h9.6c0,0-1.8-8.4,4.2-11.7c1.3-0.6,5.5-3,12.4,2c0.2-0.2,0.4-0.3,0.4-0.3S13.2,8.1,6.2,8.8
|
||||
c-3.5,0.3-7.9,3.5-10.4,7.8S-7.2,24.4-7.2,24.4z"/>
|
||||
<path class="st0" d="M-7.2,24.4h9.6c0,0-1.8-8.4,4.2-11.7c1.3-0.6,5.5-3,12.4,2c0.2-0.2,0.4-0.3,0.4-0.3S13.2,8.1,6.2,8.8
|
||||
c-3.5,0.3-7.9,3.5-10.4,7.8S-7.2,24.4-7.2,24.4z"/>
|
||||
<path class="st0" d="M-7.2,24.4h9.6c0,0-1.8-8.4,4.2-11.7c1.3-0.6,5.5-3,12.4,2c0.2-0.2,0.4-0.3,0.4-0.3S13.2,8.1,6.2,8.8
|
||||
c-3.5,0.3-7.9,3.5-10.4,7.8S-7.2,24.4-7.2,24.4z M12.8,9.5l0-0.8c-0.1-0.1-0.4-0.2-1.2-0.4l0,0.8C12,9.2,12.4,9.4,12.8,9.5z"/>
|
||||
<path class="st0" d="M11.7,12.1l0,0.8c0.4,0,0.8,0.1,1.2,0.1l0-0.8C12.4,12.2,12,12.1,11.7,12.1z M7.2,8.3h0.1L7,7.6
|
||||
c-0.4,0-0.8,0-1.2,0.1l0.2,0.7C6.5,8.3,6.8,8.3,7.2,8.3z M7.7,12.8L8,13.6c0.4-0.2,0.7-0.3,1.1-0.4l-0.3-0.8
|
||||
C8.4,12.5,8.1,12.6,7.7,12.8z M2.2,9.6L1.7,8.7C1.4,8.9,1.1,9.1,0.8,9.3l0.6,0.8C1.6,9.9,1.9,9.7,2.2,9.6z M4.7,15l0.6,0.9
|
||||
C5.5,15.6,5.8,15.3,6,15l-0.5-0.8C5.2,14.5,4.9,14.8,4.7,15z M3,18.9l1,0.8c0-0.5,0.1-0.9,0.3-1.4l-0.9-0.7C3.2,18,3.1,18.5,3,18.9
|
||||
z M-2.3,13.2l-0.9-0.8c-0.3,0.3-0.6,0.6-0.9,0.9l0.9,0.8C-2.9,13.8-2.6,13.5-2.3,13.2z M-6,18.6l-1.4-0.5c-0.2,0.5-0.5,1.1-0.6,1.5
|
||||
l1.4,0.5C-6.4,19.6-6.2,19-6,18.6z M2.8,22c0,0.6,0.1,1.2,0.1,1.5l1.5,0.5c-0.1-0.5-0.2-1-0.3-1.6L2.8,22z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
</style>
|
||||
<g>
|
||||
<path d="M48,24c0,13.3-10.7,24-24,24C10.7,48,0,37.3,0,24C0,10.7,10.7,0,24,0C37.3,0,48,10.7,48,24z"/>
|
||||
<path class="st0" d="M34.5,8.9c-2.4,0.1-4.6,1.4-6.2,3.3c-1.8,2-2.9,4.5-3.8,6.9c-1.5-1.2-2.7-2.8-5.1-3.5c-1.9-0.5-3.8-0.3-5.6,1
|
||||
c-0.9,0.6-1.4,1.6-1.7,2.5c-0.7,2.4,0.8,4.4,1.4,5.2l1.5,1.6c0.3,0.3,1,1.1,0.7,2.3c-0.4,1.3-1.9,2.1-3.5,1.6
|
||||
c-0.7-0.2-1.7-0.7-1.5-1.5c0.1-0.3,0.3-0.5,0.4-0.8c0.1-0.2,0.2-0.4,0.2-0.5c0.3-0.9-0.1-2.1-1.1-2.4c-0.9-0.3-1.9-0.1-2.2,1.1
|
||||
c-0.4,1.4,0.2,3.8,3.7,4.9c4.1,1.3,7.5-1,8-3.9c0.3-1.8-0.5-3.2-2-4.9l-1.2-1.4c-0.7-0.7-1-2-0.2-3c0.6-0.8,1.6-1.2,3.1-0.8
|
||||
c2.2,0.6,3.2,2.1,4.8,3.4c-0.7,2.2-1.1,4.4-1.5,6.4l-0.2,1.5c-1.2,6.1-2.1,9.5-4.4,11.5c-0.5,0.3-1.1,0.8-2.1,0.9
|
||||
c-0.5,0-0.7-0.3-0.7-0.5c0-0.4,0.3-0.5,0.5-0.7c0.3-0.2,0.8-0.5,0.7-1.4c0-1.1-0.9-2-2.2-1.9c-1,0-2.4,0.9-2.4,2.6
|
||||
c0.1,1.7,1.6,3,4,2.9c1.3,0,4.1-0.6,6.9-3.9c3.3-3.8,4.2-8.2,4.9-11.4l0.8-4.2c0.4,0.1,0.9,0.1,1.4,0.1c4.1,0.1,6.1-2,6.1-3.6
|
||||
c0-0.9-0.6-1.8-1.5-1.8c-0.6,0-1.4,0.4-1.6,1.3c-0.2,0.9,1.3,1.6,0.1,2.4c-0.8,0.5-2.3,0.9-4.4,0.6l0.4-2.1c0.8-4,1.7-8.8,5.3-8.9
|
||||
c0.3,0,1.2,0,1.2,0.6c0,0.2,0,0.3-0.3,0.8c-0.3,0.4-0.3,0.7-0.3,1.1c0,1,0.8,1.7,1.9,1.6c1.5,0,1.9-1.5,1.9-2.2
|
||||
C38.8,9.9,36.9,8.8,34.5,8.9z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#DD0031;}
|
||||
.st1{fill:#C3002F;}
|
||||
.st2{fill:#FFFFFF;}
|
||||
</style>
|
||||
<polygon class="st0" points="24,0 24,0 24,0 1.7,8 5.1,37.5 24,48 24,48 24,48 42.9,37.5 46.3,8 "/>
|
||||
<polygon class="st1" points="24,0 24,5.3 24,5.3 24,29.6 24,29.6 24,48 24,48 42.9,37.5 46.3,8 "/>
|
||||
<path class="st2" d="M24,5.3L10,36.6l0,0h5.2l0,0l2.8-7h11.9l2.8,7l0,0h5.2l0,0L24,5.3L24,5.3L24,5.3L24,5.3L24,5.3z M28.1,25.3
|
||||
h-8.2l4.1-9.8L28.1,25.3z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 797 B |
@@ -0,0 +1,77 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns:serif="http://www.serif.com/"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 48 48"
|
||||
style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#050507;}
|
||||
.st1{fill:#F9DC3E;}
|
||||
</style>
|
||||
<g id="B" transform="matrix(1,0,0,1,2432.3,329.575)">
|
||||
<g id="Shadow" transform="matrix(1,0,0,1,4.5,8)">
|
||||
<path class="st0" d="M-2398.4-311.8c0.2,0,0.8-2.2,0.8-2.1l-0.2-1.2c-0.1-0.4-1.1-1.6-3.1-3.9c0-0.4,0.7-1.1,2.1-1.9l4.1-3.6
|
||||
c0.9-1.2,1.5-3.1,1.6-5.7l-0.1-0.6c-0.2-1.8-1.5-3.3-4-4.5c-1.5-1-4.1-1.5-8-1.6c-3.2,0.3-7.3,1.4-12.5,3.4c-1.4,1-3,2-4.8,3
|
||||
l0,0.3c0.1,0,0.3-0.1,0.5-0.2c0.2,0,0.3,0.1,0.3,0.3l0.3-0.2l0.2,0l0,0.1c0,0.1-1.1,1-3.4,2.6l0.2,0.3l-0.2,0l-0.3-0.1
|
||||
c0,0.1-0.1,0.2-0.5,0.2l0,0.2l0.4,0.4c-0.1,0-0.3,0-0.5-0.1c-0.7,0.1-1.4,0.6-2.1,1.6l0.2,0.3c0.6-0.6,1-0.8,1.1-0.9l0,0.5
|
||||
c-0.1,0-0.3,0.1-0.5,0.2l0.4,0.6c0.7-0.8,1.6-1.5,2.4-2.1c0.4,0.1,0.7,0.3,0.7,0.4l0.3,0c2.4-1.8,4.8-3.1,7.2-3.9l0,0.3
|
||||
c-0.4,0.7-0.7,1-0.9,1c0,0.2,0.1,0.4,0.2,0.6c0,0.4-1,3.1-3.2,8.1c-5,11.7-9.1,20.3-12.5,25.9c0,0.1,0.1,0.3,0.2,0.4
|
||||
c0.8-0.2,1.4-0.4,1.6-0.6l0.2,0l0,0.3l0.3,0l0.3-0.2c0,0.1,0.1,0.1,0.3,0.1l0,0.3c0,0.3-0.1,0.8-0.5,1.4c-0.3,0.4-0.7,1.2-1.1,2.4
|
||||
l0,0.1l0.3,0c1.3-1.5,2.4-3,3.1-4.4c3.9-1.2,6.9-2.3,9-3.4c2.1-0.2,3.7-0.7,4.8-1.6l0-0.2l-0.8,0.2l-0.2,0l0-0.2
|
||||
c1.5-0.2,2.6-0.6,3.2-1c3-2.3,5.2-3.9,6.8-4.9C-2401.4-307.4-2399.4-309.7-2398.4-311.8z M-2425.6-326l-0.2,0l0-0.3l0.6-0.1l0,0.1
|
||||
C-2425.3-326.2-2425.4-326.1-2425.6-326z M-2428.8-294.4c-0.4-0.2-0.7-0.2-1-0.2l0-0.5c0-0.2,0.1-0.3,0.3-0.3
|
||||
c0.2,0,0.3,0.1,0.3,0.4c0.5-0.7,0.8-1,0.9-1l0.3,0.1C-2428-294.9-2428.3-294.4-2428.8-294.4z M-2395-329.7c-0.2,0-0.5-0.5-0.9-1.5
|
||||
l0-0.3c0.3,0,0.6,0.5,0.9,1.5L-2395-329.7z M-2395.5-333.2l-0.1,0.3l-4.6-1.9C-2397.1-334.7-2395.6-334.2-2395.5-333.2z
|
||||
M-2414.8-316.6l-0.6,0.1l0-0.3l0.6-0.1L-2414.8-316.6z M-2415.4-326.6l0.2,0l0,0.5c-0.1,0-0.3,0.2-0.6,0.7l0-0.3
|
||||
C-2415.5-326.1-2415.3-326.4-2415.4-326.6z M-2416.7-323.3l0.1,0.6l-0.2,0l-0.1-0.6L-2416.7-323.3z M-2417.4-322.2l0.3,0
|
||||
c0,0.5-0.2,0.8-0.4,0.8l-0.2,0C-2417.5-321.8-2417.4-322-2417.4-322.2z M-2418-320.6l0.2,0l0,0.1l-0.3,0.5l-0.3,0l0-0.1
|
||||
C-2418.1-320.1-2417.9-320.3-2418-320.6z M-2418.5-319.2l-0.1,0.8l-0.2,0l-0.1-0.8L-2418.5-319.2z M-2423.8-304.2
|
||||
c-0.2,1-0.4,1.6-0.7,1.6l0-0.1C-2424.5-303.3-2424.3-303.8-2423.8-304.2z M-2424.7-302.1l0,0.1c0,0.2-0.1,0.3-0.3,0.3l0-0.1
|
||||
C-2425-302-2424.9-302.1-2424.7-302.1z M-2425-297.8l0.5,0l0,0.2c-0.1,0-0.3,0.1-0.5,0.2l-0.3,0
|
||||
C-2425.3-297.6-2425.2-297.7-2425-297.8z M-2411.1-302.1c-2.7,1.3-4.3,2.3-4.8,2.7c-3,1-4.4,1.7-4.4,1.9c-2.6,1-4.4,1.8-5.2,2.3
|
||||
c-0.2,0-0.5-0.1-0.9-0.2c0-0.5,0.2-1,0.7-1.3c0.5,0,0.9,0,1.3,0.2c0.5-0.3,1.3-0.5,2.5-0.8l0-0.3l-1,0.1c0.1-0.2,1.1-0.6,2.8-1.3
|
||||
l0.5,0l0,0.1c-0.8,0.1-1.3,0.3-1.4,0.8c0,0.2,0.1,0.3,0.3,0.3c0.6-0.4,0.9-0.6,0.9-0.7c1.2-0.2,4.5-1.9,9.9-5.2l0,0.3
|
||||
C-2409.7-303.2-2410.2-302.8-2411.1-302.1z M-2419.4-299.4c0.8-0.1,1.5-0.4,2-0.9c0.2,0,0.3,0.1,0.4,0.3c-0.4,0-1.1,0.4-2.2,1
|
||||
l-0.2,0L-2419.4-299.4z M-2406.1-309.6l-4.1,3.3c-3.1,2-4.7,3-5,3c-4.9,2.7-7.9,4.1-9.1,4.2l-0.2,0c0.1-0.6,2.3-5,6.5-13.4
|
||||
c1.9-0.2,4.8-1,8.8-2.6l1-0.1c2-0.2,3.5,0.2,4.5,1.2l0.1,0.6C-2404.3-311.2-2405.2-310-2406.1-309.6z M-2414.1-314.2l0.7-0.1
|
||||
l0,0.1l-0.7,0.1L-2414.1-314.2z M-2404.8-315.7l0.5,0c0.4,0.2,0.7,0.4,0.7,0.6l0,0.1C-2404-315-2404.4-315.3-2404.8-315.7z
|
||||
M-2403.5-323.3c-0.4,0.5-1.6,1.4-3.5,2.6c-0.6,0.1-3,1-7.1,2.8c-0.2-0.1-0.4-0.1-0.7-0.1l0-0.3c0-0.6,0.2-1.3,0.8-2.2
|
||||
c0.3-1.7,0.7-2.7,1-2.9l3.4-7.7c0-0.5,0.7-0.8,2.2-1.1l0.5,0l0,0.4c1.5-0.2,2.4-0.4,2.7-0.4c2.7-0.2,4.1,0.3,4.2,1.6l0.3,0
|
||||
l-0.1-0.8l0.3,0c0.8,0.4,1.2,1,1.3,1.6c0,0.4-0.2,1-0.7,1.6c-0.2,0-0.3-0.1-0.3-0.4l-0.3,0l-0.1,0.9c-1.4,2.1-2.4,3.1-3,3.2
|
||||
C-2403-323.7-2403.3-323.3-2403.5-323.3z M-2401.4-317.9c-0.3-0.2-0.5-0.3-0.7-0.3l0-0.5l0.3,0l0.7,0.4
|
||||
C-2401.1-318-2401.2-317.9-2401.4-317.9z M-2399.2-315.3c0.3,0.1,0.5,0.3,0.5,0.4l-0.1,0l0,0c0,0-0.1,0-0.1,0l-0.2,0.2
|
||||
L-2399.2-315.3z M-2399-314l0-0.1l0.4-0.1l0,0.1L-2399-314z M-2398-312.9c0,0,0,0.2,0,0.2C-2398.1-312.8-2398.1-312.9-2398-312.9z
|
||||
"/>
|
||||
</g>
|
||||
<path id="Babel-B" serif:id="Babel B" class="st1" d="M-2394.4-304.6c0.2,0,0.8-2.2,0.8-2.1l-0.2-1.2c-0.1-0.4-1.1-1.6-3.1-3.9
|
||||
c0-0.4,0.7-1.1,2.1-1.9l4.1-3.6c0.9-1.2,1.5-3.1,1.6-5.7l-0.1-0.6c-0.2-1.8-1.5-3.3-4-4.5c-1.5-1-4.1-1.5-8-1.6
|
||||
c-3.2,0.3-7.3,1.4-12.5,3.4c-1.4,1-3,2-4.8,3l0,0.3c0.1,0,0.3-0.1,0.5-0.2c0.2,0,0.3,0.1,0.3,0.3l0.3-0.2l0.2,0l0,0.1
|
||||
c0,0.1-1.1,1-3.4,2.6l0.2,0.3l-0.2,0l-0.3-0.1c0,0.1-0.1,0.2-0.5,0.2l0,0.2l0.4,0.4c-0.1,0-0.3,0-0.5-0.1c-0.7,0.1-1.4,0.6-2.1,1.6
|
||||
l0.2,0.3c0.6-0.6,1-0.8,1.1-0.9l0,0.5c-0.1,0-0.3,0.1-0.5,0.2l0.4,0.6c0.7-0.8,1.6-1.5,2.4-2.1c0.4,0.1,0.7,0.3,0.7,0.4l0.3,0
|
||||
c2.4-1.8,4.8-3.1,7.2-3.9l0,0.3c-0.4,0.7-0.7,1-0.9,1c0,0.2,0.1,0.4,0.2,0.6c0,0.4-1,3.1-3.2,8.1c-5,11.7-9.1,20.3-12.5,25.9
|
||||
c0,0.1,0.1,0.3,0.2,0.4c0.8-0.2,1.4-0.4,1.6-0.6l0.2,0l0,0.3l0.3,0l0.3-0.2c0,0.1,0.1,0.1,0.3,0.1l0,0.3c0,0.3-0.1,0.8-0.5,1.4
|
||||
c-0.3,0.4-0.7,1.2-1.1,2.4l0,0.1l0.3,0c1.3-1.5,2.4-3,3.1-4.4c3.9-1.2,6.9-2.3,9-3.4c2.1-0.2,3.7-0.7,4.8-1.6l0-0.2l-0.8,0.2
|
||||
l-0.2,0l0-0.2c1.5-0.2,2.6-0.6,3.2-1c3-2.3,5.2-3.9,6.8-4.9C-2397.3-300.2-2395.3-302.4-2394.4-304.6z M-2421.5-318.7l-0.2,0l0-0.3
|
||||
l0.6-0.1l0,0.1C-2421.2-318.9-2421.3-318.9-2421.5-318.7z M-2424.7-287.1c-0.4-0.2-0.7-0.2-1-0.2l0-0.5c0-0.2,0.1-0.3,0.3-0.3
|
||||
c0.2,0,0.3,0.1,0.3,0.4c0.5-0.7,0.8-1,0.9-1l0.3,0.1C-2424-287.7-2424.2-287.2-2424.7-287.1z M-2391-322.4c-0.2,0-0.5-0.5-0.9-1.5
|
||||
l0-0.3c0.3,0,0.6,0.5,0.9,1.5L-2391-322.4z M-2391.4-325.9l-0.1,0.3l-4.6-1.9C-2393.1-327.4-2391.5-326.9-2391.4-325.9z
|
||||
M-2410.8-309.3l-0.6,0.1l0-0.3l0.6-0.1L-2410.8-309.3z M-2411.3-319.3l0.2,0l0,0.5c-0.1,0-0.3,0.2-0.6,0.7l0-0.3
|
||||
C-2411.4-318.9-2411.3-319.1-2411.3-319.3z M-2412.6-316.1l0.1,0.6l-0.2,0l-0.1-0.6L-2412.6-316.1z M-2413.4-315l0.3,0
|
||||
c0,0.5-0.2,0.8-0.4,0.8l-0.2,0C-2413.4-314.5-2413.3-314.8-2413.4-315z M-2413.9-313.4l0.2,0l0,0.1l-0.3,0.5l-0.3,0l0-0.1
|
||||
C-2414-312.9-2413.9-313.1-2413.9-313.4z M-2414.4-311.9l-0.1,0.8l-0.2,0l-0.1-0.8L-2414.4-311.9z M-2419.7-297
|
||||
c-0.2,1-0.4,1.6-0.7,1.6l0-0.1C-2420.4-296-2420.2-296.5-2419.7-297z M-2420.6-294.9l0,0.1c0,0.2-0.1,0.3-0.3,0.3l0-0.1
|
||||
C-2420.9-294.7-2420.8-294.8-2420.6-294.9z M-2420.9-290.6l0.5,0l0,0.2c-0.1,0-0.3,0.1-0.5,0.2l-0.3,0
|
||||
C-2421.2-290.4-2421.1-290.5-2420.9-290.6z M-2407-294.8c-2.7,1.3-4.3,2.3-4.8,2.7c-3,1-4.4,1.7-4.4,1.9c-2.6,1-4.4,1.8-5.2,2.3
|
||||
c-0.2,0-0.5-0.1-0.9-0.2c0-0.5,0.2-1,0.7-1.3c0.5,0,0.9,0,1.3,0.2c0.5-0.3,1.3-0.5,2.5-0.8l0-0.3l-1,0.1c0.1-0.2,1.1-0.6,2.8-1.3
|
||||
l0.5,0l0,0.1c-0.8,0.1-1.3,0.3-1.4,0.8c0,0.2,0.1,0.3,0.3,0.3c0.6-0.4,0.9-0.6,0.9-0.7c1.2-0.2,4.5-1.9,9.9-5.2l0,0.3
|
||||
C-2405.7-295.9-2406.1-295.5-2407-294.8z M-2415.3-292.1c0.8-0.1,1.5-0.4,2-0.9c0.2,0,0.3,0.1,0.4,0.3c-0.4,0-1.1,0.4-2.2,1l-0.2,0
|
||||
L-2415.3-292.1z M-2402-302.4l-4.1,3.3c-3.1,2-4.7,3-5,3c-4.9,2.7-7.9,4.1-9.1,4.2l-0.2,0c0.1-0.6,2.3-5,6.5-13.4
|
||||
c1.9-0.2,4.8-1,8.8-2.6l1-0.1c2-0.2,3.5,0.2,4.5,1.2l0.1,0.6C-2400.3-304-2401.1-302.7-2402-302.4z M-2410.1-306.9l0.7-0.1l0,0.1
|
||||
l-0.7,0.1L-2410.1-306.9z M-2400.7-308.5l0.5,0c0.4,0.2,0.7,0.4,0.7,0.6l0,0.1C-2399.9-307.8-2400.3-308-2400.7-308.5z
|
||||
M-2399.4-316c-0.4,0.5-1.6,1.4-3.5,2.6c-0.6,0.1-3,1-7.1,2.8c-0.2-0.1-0.4-0.1-0.7-0.1l0-0.3c0-0.6,0.2-1.3,0.8-2.2
|
||||
c0.3-1.7,0.7-2.7,1-2.9l3.4-7.7c0-0.5,0.7-0.8,2.2-1.1l0.5,0l0,0.4c1.5-0.2,2.4-0.4,2.7-0.4c2.7-0.2,4.1,0.3,4.2,1.6l0.3,0
|
||||
l-0.1-0.8l0.3,0c0.8,0.4,1.2,1,1.3,1.6c0,0.4-0.2,1-0.7,1.6c-0.2,0-0.3-0.1-0.3-0.4l-0.3,0l-0.1,0.9c-1.4,2.1-2.4,3.1-3,3.2
|
||||
C-2398.9-316.4-2399.3-316-2399.4-316z M-2397.3-310.6c-0.3-0.2-0.5-0.3-0.7-0.3l0-0.5l0.3,0l0.7,0.4
|
||||
C-2397-310.8-2397.1-310.6-2397.3-310.6z M-2395.1-308c0.3,0.1,0.5,0.3,0.5,0.4l-0.1,0l0,0c0,0-0.1,0-0.1,0l-0.2,0.2L-2395.1-308z
|
||||
M-2394.9-306.8l0-0.1l0.4-0.1l0,0.1L-2394.9-306.8z M-2394-305.7c0,0,0,0.2,0,0.2C-2394-305.6-2394-305.6-2394-305.7z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.8 KiB |
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#002A41;}
|
||||
.st1{fill:#0071B5;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M4.7,0v26L24,37v-7.5l-12.9-7.4V10.5L24,17.9V11L4.7,0L4.7,0z"/>
|
||||
<path class="st1" d="M43.3,0v26L24,37v-7.5l12.9-7.4V10.5L24,17.9V11L43.3,0L43.3,0z"/>
|
||||
<path class="st1" d="M4.7,48V22L24,11v7.5l-12.9,7.4v11L24,29.5V37L4.7,48L4.7,48z"/>
|
||||
<path class="st0" d="M43.3,48V22L24,11v7.5l12.9,7.4v11L24,29.5V37L43.3,48L43.3,48z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 780 B |
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" focusable="false" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
x="0px" y="0px" viewBox="0 0 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#563D7C;}
|
||||
.st1{fill:#FFFFFF;}
|
||||
</style>
|
||||
<path class="st0" d="M48,40c0,4.4-3.6,8-8,8H8c-4.4,0-8-3.6-8-8V8c0-4.4,3.6-8,8-8h32c4.4,0,8,3.6,8,8V40z"/>
|
||||
<path class="st1" d="M13,10.4h13.6c2.5,0,4.5,0.6,6,1.7S35,15,35,17.4c0,1.4-0.3,2.6-1,3.6s-1.7,1.8-3,2.3v0.1
|
||||
c1.7,0.4,3,1.2,3.9,2.4c0.9,1.3,1.3,2.9,1.3,4.8c0,1.1-0.2,2.1-0.6,3.1c-0.4,1-1,1.8-1.8,2.5c-0.8,0.7-1.9,1.2-3.2,1.6
|
||||
s-2.9,0.6-4.7,0.6H13C13,38.4,13,10.4,13,10.4z M17.9,22.2h8c1.2,0,2.2-0.3,2.9-1c0.8-0.7,1.2-1.6,1.2-2.9c0-1.4-0.4-2.4-1.1-3
|
||||
c-0.7-0.6-1.7-0.9-3.1-0.9h-8C17.9,14.4,17.9,22.2,17.9,22.2z M17.9,34.4h8.7c1.5,0,2.7-0.4,3.5-1.2c0.8-0.8,1.2-1.9,1.2-3.3
|
||||
c0-1.4-0.4-2.4-1.2-3.2c-0.8-0.8-2-1.1-3.5-1.1h-8.7V34.4z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#00D1B2;}
|
||||
</style>
|
||||
<g>
|
||||
<polygon class="st0" points="7.5,32.9 10.5,12 22.5,0 37.5,15 28.5,24 40.5,35.9 22.5,47.9 "/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 510 B |
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#0277BD;}
|
||||
.st1{fill:#039BE5;}
|
||||
.st2{fill:#FFFFFF;}
|
||||
.st3{fill:#EEEEEE;}
|
||||
</style>
|
||||
<path class="st0" d="M45.5,0H2.5l3.8,42.9L24,48l17.7-5.1L45.5,0L45.5,0z"/>
|
||||
<path class="st1" d="M24,3.8v40.3l14.1-4l3.2-36.3H24z"/>
|
||||
<path class="st2" d="M35.5,10.1H24v5.1h6.2l-0.4,5.1H24v5.1h5.6l-0.4,5.7L24,32.7V38l10-3.3l0.9-14.5l0,0L35.5,10.1z"/>
|
||||
<path class="st3" d="M24,10.1v5.1H12.8l-0.4-5.1H24z M18.2,20.2l0.3,5.1H24v-5.1H18.2z M18.7,27.8h-5.1l0.4,6.9L24,38v-5.3l-5.2-1.8
|
||||
L18.7,27.8z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 863 B |
|
After Width: | Height: | Size: 51 KiB |
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="svg6843" xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 48 48"
|
||||
style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#729FCF;stroke:#FFFFFF;stroke-width:2.1236;stroke-linejoin:round;}
|
||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#E40000;stroke:#FFFFFF;stroke-width:2.1236;stroke-linejoin:round;}
|
||||
.st2{fill-rule:evenodd;clip-rule:evenodd;fill:#7FE719;stroke:#FFFFFF;stroke-width:2.1236;stroke-linejoin:round;}
|
||||
.st3{fill:none;stroke:#FFFFFF;stroke-width:1.25;}
|
||||
.st4{fill-rule:evenodd;clip-rule:evenodd;fill:#BABDB6;stroke:#FFFFFF;stroke-width:1.25;}
|
||||
</style>
|
||||
<path id="path6976" class="st0" d="M2.8,7.7L19,19.8l26.2-8.1L27.2,1L2.8,7.7z"/>
|
||||
<path id="path6978" class="st1" d="M3.9,32.9l-1-25.2L19,19.8V47L3.9,32.9z"/>
|
||||
<path id="path6980" class="st2" d="M19,47l24.2-10.1l2-25.2L19,19.8C19,19.8,19,47,19,47z"/>
|
||||
<path id="path6982" class="st3" d="M4,32.4l23.1-6.8l16.1,11.3"/>
|
||||
<path id="path6984" class="st4" d="M27.1,1.4v24"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,68 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 48 48"
|
||||
style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#DA4648;}
|
||||
</style>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="gulp" sketch:type="MSArtboardGroup">
|
||||
<g id="Gulp-Logo" transform="translate(0.000000, 1.000000)" sketch:type="MSLayerGroup">
|
||||
<path id="Cup" sketch:type="MSShapeGroup" class="st0" d="M23.9,36.9c-2.8,0-5-0.4-6-0.7c-0.7-0.2-1.3-0.4-1.7-0.5l1.4,2.4
|
||||
l0.5,7.4c0,0.8,2.6,1.5,5.9,1.5s5.9-0.7,5.9-1.5l0.4-7.5l1.3-2.3c-0.4,0.2-1,0.4-1.7,0.5C28.9,36.4,26.7,36.9,23.9,36.9z
|
||||
M31.7,12.7c-2.1,0.3-4.8,0.4-7.7,0.4s-5.6-0.2-7.7-0.4c-1-0.1-1.8-0.3-2.4-0.5c-0.1,0-0.4-0.1-0.6-0.2l1.3,11.8
|
||||
c0.1-0.2,0.1-0.4,0.2-0.6c0.2-0.4,0.3-0.8,0.5-1.2c0.2-0.4,0.4-0.8,0.6-1.1c0.2-0.4,0.5-0.7,0.7-1c0.3-0.3,0.5-0.5,0.8-0.8
|
||||
c0.3-0.2,0.6-0.4,0.8-0.5c0.3-0.1,0.6-0.2,0.8-0.2c0.3,0,0.6,0.1,0.9,0.3c0.3,0.2,0.6,0.5,0.8,0.8c0.1,0.1,0.1,0.2,0.1,0.3
|
||||
c0,0.1,0,0.2,0,0.3c0,0.2,0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.3,0.2c-0.1,0-0.2-0.1-0.3-0.2c-0.1-0.1-0.2-0.3-0.3-0.5
|
||||
c-0.1-0.2-0.2-0.3-0.4-0.4c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.5,0.1-0.8,0.3c-0.3,0.2-0.6,0.5-0.8,0.8c-0.3,0.3-0.5,0.7-0.8,1.1
|
||||
c-0.2,0.4-0.5,0.9-0.7,1.3c-0.2,0.4-0.3,0.9-0.5,1.3c-0.1,0.4-0.2,0.8-0.2,1.2c0,0.1,0,0.2,0,0.4c0,0.1,0,0.2,0.1,0.3
|
||||
c0,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.3,0,0.4-0.1c0.2-0.1,0.3-0.2,0.5-0.3c0.2-0.1,0.4-0.3,0.5-0.5
|
||||
c0.2-0.2,0.3-0.4,0.5-0.5c0.2-0.2,0.3-0.4,0.4-0.5c0.1-0.2,0.2-0.3,0.3-0.4l0.5-1.5c0.1-0.2,0.1-0.3,0.2-0.3
|
||||
c0.1-0.1,0.2-0.1,0.3-0.1c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0.1c0,0,0.1,0.1,0.1,0.1c0,0.1,0,0.1,0,0.2c0,0.2,0,0.4-0.1,0.6
|
||||
c0,0.2-0.1,0.3-0.1,0.5c-0.1,0.2-0.1,0.3-0.2,0.5c-0.1,0.2-0.1,0.3-0.2,0.5c0,0,0,0.1-0.1,0.2c0,0.1-0.1,0.2-0.1,0.4
|
||||
c-0.1,0.2-0.1,0.4-0.2,0.6c-0.1,0.2-0.1,0.4-0.2,0.6c-0.1,0.2-0.1,0.4-0.2,0.6c-0.1,0.2-0.1,0.4-0.2,0.6c0,0.2-0.1,0.3-0.1,0.4
|
||||
c0,0.1-0.1,0.2-0.1,0.2c0,0.1,0,0.1-0.1,0.2c0,0.1-0.1,0.2-0.1,0.2c-0.1,0.1-0.1,0.1-0.2,0.2c-0.1,0-0.1,0.1-0.2,0.1
|
||||
c-0.1,0-0.2,0-0.2-0.1c-0.1-0.1-0.1-0.2-0.1-0.4v-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.2,0.1-0.4c0-0.2,0.1-0.4,0.2-0.6
|
||||
c0.1-0.2,0.1-0.5,0.2-0.7c0.1-0.2,0.1-0.5,0.2-0.7c-0.2,0.2-0.4,0.4-0.6,0.6c-0.2,0.2-0.4,0.4-0.7,0.6c-0.2,0.2-0.5,0.3-0.7,0.4
|
||||
c-0.2,0.1-0.5,0.2-0.7,0.2c-0.2,0-0.5-0.1-0.6-0.2c0,0-0.1,0-0.1-0.1l0.7,7.5c0.2,0.5,3.7,1.6,8.3,1.6c4.6,0,8.1-1.1,8.3-1.6
|
||||
l1-8.9c-0.1,0.1-0.2,0.2-0.2,0.2c-0.3,0.3-0.6,0.5-0.8,0.7c-0.3,0.2-0.5,0.3-0.8,0.5c-0.2,0.1-0.5,0.2-0.8,0.2
|
||||
c-0.3,0-0.5-0.1-0.6-0.2c-0.1-0.1-0.2-0.3-0.2-0.5v0c0,0,0,0,0-0.1c0-0.1,0.1-0.3,0.2-0.4c0.1-0.2,0.2-0.3,0.3-0.5
|
||||
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.2,0.3-0.3,0.4-0.5c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.1-0.2,0.1-0.3c0,0,0-0.1-0.1-0.1
|
||||
c0,0-0.1,0-0.2,0c-0.1,0-0.3,0-0.4,0.1c-0.1,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.3,0.3-0.4,0.4c-0.1,0.2-0.3,0.3-0.4,0.5
|
||||
c-0.1,0.2-0.2,0.3-0.3,0.5c-0.1,0.2-0.2,0.3-0.3,0.5c0,0-0.1,0.1-0.1,0.2c0,0.1-0.1,0.2-0.1,0.3c0,0.1-0.1,0.2-0.1,0.3
|
||||
c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1-0.1,0.2-0.1,0.3c0,0.1-0.1,0.1-0.1,0.2c0,0,0,0.1-0.1,0.2c0,0.1-0.1,0.2-0.1,0.4
|
||||
c-0.1,0.1-0.1,0.3-0.2,0.4c-0.1,0.2-0.1,0.3-0.2,0.4c-0.1,0.1-0.1,0.3-0.1,0.4c0,0.1-0.1,0.2-0.1,0.2c0,0.1-0.1,0.2-0.1,0.3
|
||||
c0,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.1,0.1-0.2,0.2c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3
|
||||
c0-0.1,0-0.2,0-0.3c0-0.1,0-0.2,0.1-0.3c0-0.1,0.1-0.2,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2c0.2-0.4,0.4-0.8,0.6-1.2
|
||||
c0.2-0.4,0.4-0.8,0.6-1.2c0-0.1,0.1-0.2,0.1-0.3c0,0,0,0,0,0c-0.2,0.2-0.5,0.4-0.7,0.6c-0.2,0.2-0.4,0.3-0.7,0.4
|
||||
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.1,0-0.3,0-0.4-0.1c-0.1,0-0.2-0.1-0.2-0.2c-0.1-0.1-0.1-0.2-0.1-0.3c0,0,0-0.1,0-0.1
|
||||
c-0.1,0-0.1,0.1-0.2,0.1c-0.2,0.2-0.4,0.3-0.6,0.4c-0.2,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.3-0.1-0.4-0.2c-0.1-0.1-0.2-0.3-0.2-0.6
|
||||
c0-0.2,0-0.4,0.1-0.7c-0.1,0.2-0.2,0.3-0.3,0.5c-0.1,0.2-0.3,0.3-0.5,0.5c-0.2,0.1-0.4,0.2-0.6,0.3c-0.2,0.1-0.5,0.1-0.7,0.1
|
||||
c-0.1,0-0.2,0-0.3,0c-0.1,0-0.2-0.1-0.3-0.1c-0.1-0.1-0.1-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.4c0,0,0-0.1,0-0.2
|
||||
c0-0.1,0.1-0.3,0.1-0.6c0.1-0.3,0.2-0.6,0.3-1c0.2-0.4,0.4-0.9,0.7-1.5c0.1-0.2,0.2-0.3,0.3-0.3c0.1-0.1,0.2-0.1,0.3-0.1
|
||||
c0,0,0.1,0,0.2,0c0.1,0,0.1,0,0.1,0.1c0,0,0.1,0.1,0.1,0.1c0,0,0,0.1,0,0.2c0,0,0,0.1,0,0.1c0,0.1-0.1,0.2-0.1,0.3
|
||||
c-0.1,0.1-0.1,0.2-0.2,0.4c-0.1,0.1-0.2,0.3-0.2,0.5c-0.1,0.2-0.2,0.3-0.2,0.5s-0.1,0.4-0.2,0.6c-0.1,0.2-0.1,0.4-0.1,0.5
|
||||
c0,0.1,0,0.1,0.1,0.2c0,0.1,0.1,0.1,0.2,0.1c0.2,0,0.4-0.1,0.6-0.2c0.2-0.1,0.4-0.3,0.6-0.6c0.2-0.2,0.3-0.5,0.5-0.7
|
||||
c0.1-0.3,0.3-0.5,0.4-0.7c0.1-0.1,0.1-0.3,0.2-0.5c0.1-0.2,0.1-0.3,0.2-0.4c0.1-0.1,0.1-0.2,0.2-0.3c0.1-0.1,0.2-0.1,0.3-0.1
|
||||
c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.2-0.1,0.3-0.2,0.5
|
||||
c-0.1,0.2-0.2,0.4-0.2,0.6c-0.1,0.2-0.1,0.4-0.2,0.6c0,0.2-0.1,0.4-0.1,0.5c0,0.1,0.1,0.2,0.2,0.2c0.1,0,0.2,0,0.4-0.1
|
||||
c0.2-0.1,0.3-0.2,0.5-0.3c0,0,0.1-0.1,0.1-0.1c0-0.2,0.1-0.4,0.2-0.6c0.1-0.3,0.2-0.6,0.4-1c0.1-0.3,0.2-0.6,0.3-0.9l1.6-4
|
||||
c0.1-0.2,0.1-0.3,0.3-0.3c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3c0,0.1,0,0.2,0,0.2
|
||||
c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.2-0.2,0.4-0.3,0.7c-0.1,0.3-0.2,0.6-0.4,0.9c-0.1,0.3-0.3,0.7-0.4,1c-0.1,0.4-0.3,0.7-0.4,1
|
||||
c-0.1,0.3-0.3,0.7-0.4,1c-0.1,0.3-0.2,0.6-0.3,0.8c0,0.1-0.1,0.2-0.1,0.3c0,0.1-0.1,0.2-0.1,0.3c0,0.1,0,0.1,0,0.1
|
||||
c0,0,0.1,0.1,0.1,0.1c0.1,0,0.2,0,0.3-0.1c0.1-0.1,0.2-0.1,0.4-0.2c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.3-0.2,0.4-0.3
|
||||
c0.1-0.1,0.3-0.2,0.4-0.4c0.1-0.1,0.2-0.2,0.3-0.3c0,0,0.1,0,0.1-0.1c0.1-0.2,0.1-0.3,0.2-0.5c0-0.1,0.1-0.2,0.1-0.3
|
||||
c0-0.1,0.1-0.3,0.2-0.4c0.1-0.1,0.1-0.2,0.2-0.3c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3
|
||||
c0,0,0,0.1,0,0.1c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.1c0.1-0.1,0.3-0.3,0.4-0.4c0.1-0.1,0.3-0.3,0.5-0.4
|
||||
c0.2-0.1,0.3-0.2,0.5-0.3c0.2-0.1,0.3-0.1,0.5-0.1c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0.1,0.3,0.1c0.1,0.1,0.2,0.1,0.2,0.2
|
||||
c0.1,0.1,0.1,0.2,0.1,0.3c0,0.2,0,0.4-0.1,0.5c-0.1,0.2-0.2,0.4-0.3,0.6c-0.1,0.2-0.3,0.4-0.4,0.6c-0.1,0.2-0.3,0.4-0.4,0.5
|
||||
C31.2,25.9,31,26,31,26.1c-0.1,0.1-0.1,0.2-0.1,0.2c0,0,0,0.1,0,0.1c0,0,0.1,0,0.2,0c0.1,0,0.1,0,0.3-0.1c0.1-0.1,0.3-0.2,0.5-0.3
|
||||
c0.2-0.2,0.5-0.4,0.8-0.7c0.2-0.2,0.5-0.4,0.8-0.7l1.4-12.8c-0.2,0.1-0.5,0.2-0.6,0.2C33.5,12.4,32.7,12.5,31.7,12.7z M24,9.6
|
||||
c-6,0-10.8,0.7-10.8,1.5c0,0.8,4.8,1.5,10.8,1.5s10.8-0.7,10.8-1.5C34.8,10.3,30,9.6,24,9.6z M28.3,11.6c0,0.2-0.6,0.4-1.3,0.4
|
||||
c-0.7,0-1.3-0.2-1.3-0.4c0-0.2,0.6-0.4,1.3-0.4C27.7,11.2,28.3,11.4,28.3,11.6z"/>
|
||||
<path id="Straw" sketch:type="MSShapeGroup" class="st0" d="M26,11.4C26,11.4,26,11.4,26,11.4c0,0.2,0.5,0.3,1,0.3
|
||||
c0.6,0,1-0.1,1-0.2L29.4,6l5.4-5.7c0,0,0,0,0,0c0.1-0.1-0.1-0.5-0.5-0.9c-0.4-0.3-0.8-0.5-0.9-0.3c0,0,0,0,0,0l-5.7,6L26,11.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.9 KiB |
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#E65100;}
|
||||
.st1{fill:#FF6D00;}
|
||||
.st2{fill:#FFFFFF;}
|
||||
.st3{fill:#EEEEEE;}
|
||||
</style>
|
||||
<path class="st0" d="M45.5,0H2.5l3.8,42.9L24,48l17.7-5.1L45.5,0L45.5,0z"/>
|
||||
<path class="st1" d="M24,3.8v40.3l14.1-4l3.2-36.3H24z"/>
|
||||
<path class="st2" d="M24,25.3v-5.1h10.9L34,34.7L24,38v-5.3l5.2-1.8l0.4-5.7C29.6,25.3,24,25.3,24,25.3z M35.2,15.2l0.4-5.1H24v5.1
|
||||
H35.2z"/>
|
||||
<path class="st3" d="M24,32.7V38l-10-3.3l-0.5-6.9h5.1l0.3,3.2L24,32.7z M17.8,15.2H24v-5.1H12.5l0.9,15.2H24v-5.1h-5.8L17.8,15.2z"
|
||||
/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 873 B |
@@ -0,0 +1,95 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1"
|
||||
id="Layer_1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 48 48"
|
||||
style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{enable-background:new ;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;}
|
||||
.st3{clip-path:url(#SVGID_4_);}
|
||||
.st4{fill:#EB7077;}
|
||||
.st5{fill:#F6A2AD;}
|
||||
.st6{clip-path:url(#SVGID_6_);}
|
||||
.st7{clip-path:url(#SVGID_8_);}
|
||||
</style>
|
||||
<g class="st0">
|
||||
<g class="st0">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<defs>
|
||||
<polygon id="SVGID_3_" points="-161.3,36.1 -161.3,24 -161.3,11.8 232.3,11.8 232.3,24 232.3,36.1 "/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<path class="st4" d="M41,24.9h7c-2.5,0.8-3.2,2.5-3.7,7.1c-0.3,3.3-1.8,4.2-1.8,4.2c-1.1,0-2.2-4.8-3.2-9.9
|
||||
C39.7,25.4,40.2,25,41,24.9z"/>
|
||||
<path class="st4" d="M42.5,36.1h-7c1.3,0,2.1-2.4,2.6-5.4c0.3-2,0.7-3.5,1.2-4.5C40.3,31.4,41.4,36.1,42.5,36.1z"/>
|
||||
<path class="st5" d="M39.3,26.3c-0.5,0.9-0.9,2.5-1.2,4.5c-0.5,3-1.4,5.4-2.6,5.4c-1.3-0.3-2.4-5.4-3.8-13.2
|
||||
c0-0.3-0.1-0.5-0.1-0.7c1.1-5.6,2.2-10.4,3.3-10.4h0.4c1.3,0.3,2.4,5.4,3.8,13.2C39.2,25.4,39.2,25.8,39.3,26.3z"/>
|
||||
<g>
|
||||
<path class="st4" d="M28.2,11.9h6.6c-1.1,0-2.3,4.8-3.3,10.4C30.5,17,29.4,11.9,28.2,11.9z"/>
|
||||
<path class="st4" d="M31.5,22.3c-0.1,0.6-0.2,1.1-0.3,1.7c-1.6,8.7-2.5,11.9-3.7,12.2c-1.3,0-2.5-5.6-3.4-11.2
|
||||
c0-0.1,0-0.2,0-0.3c0-0.3,0.1-0.5,0.1-0.7c1.6-8.8,2.5-11.9,3.6-12.2h0.4C29.4,11.9,30.5,17,31.5,22.3z"/>
|
||||
<path class="st4" d="M27.6,36.1h-7c1.2,0,2.4-5.4,3.5-11.4c0,0.1,0,0.2,0,0.3C25.1,30.5,26.3,36.1,27.6,36.1z"/>
|
||||
</g>
|
||||
<path class="st5" d="M24.1,24.8c-1.1,6-2.3,11.4-3.5,11.4c-1.4-0.3-2.4-5.4-3.9-13.2c0-0.3-0.1-0.5-0.1-0.7
|
||||
c1.1-5.6,2.2-10.4,3.3-10.4h0.4C21.6,12.2,22.6,17.2,24.1,24.8z"/>
|
||||
<g>
|
||||
<path class="st4" d="M13.2,11.9h6.6c-1.1,0-2.2,4.8-3.3,10.4C15.6,17,14.4,11.9,13.2,11.9z"/>
|
||||
<path class="st4" d="M16.6,22.3c-0.1,0.6-0.2,1.1-0.3,1.7c-1.6,8.7-2.5,11.9-3.7,12.2c-1.3,0-0.8-0.2-1.6-3.7
|
||||
s-1.4-5.6-2.2-6.6C9,25.2,9.1,24.6,9.2,24c1.6-8.8,2.6-11.9,3.7-12.2h0.4C14.4,11.9,15.6,17,16.6,22.3z"/>
|
||||
<path class="st4" d="M12.6,36.1h-7c1.1,0,2.2-4.8,3.3-10.3c0.8,1.1,1.4,3.1,2.2,6.6C11.9,35.9,11.3,36.1,12.6,36.1z"/>
|
||||
</g>
|
||||
<path class="st5" d="M8.9,25.8c-1.1,5.6-2.2,10.3-3.3,10.3c-0.1-0.2-0.9,0-1.6-4.3c-0.6-4-1.8-6.5-3.7-6.9h7
|
||||
C7.9,24.9,8.4,25.2,8.9,25.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g class="st0">
|
||||
<g class="st0">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<defs>
|
||||
<polygon id="SVGID_7_" points="-161.3,36.1 -161.3,24 -161.3,11.8 232.3,11.8 232.3,24 232.3,36.1 "/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_7_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st3">
|
||||
<path class="st4" d="M41,24.9h7c-2.5,0.8-3.2,2.5-3.7,7.1c-0.3,3.3-1.8,4.2-1.8,4.2c-1.1,0-2.2-4.8-3.2-9.9
|
||||
C39.7,25.4,40.2,25,41,24.9z"/>
|
||||
<path class="st4" d="M42.5,36.1h-7c1.3,0,2.1-2.4,2.6-5.4c0.3-2,0.7-3.5,1.2-4.5C40.3,31.4,41.4,36.1,42.5,36.1z"/>
|
||||
<path class="st5" d="M39.3,26.3c-0.5,0.9-0.9,2.5-1.2,4.5c-0.5,3-1.4,5.4-2.6,5.4c-1.3-0.3-2.4-5.4-3.8-13.2
|
||||
c0-0.3-0.1-0.5-0.1-0.7c1.1-5.6,2.2-10.4,3.3-10.4h0.4c1.3,0.3,2.4,5.4,3.8,13.2C39.2,25.4,39.2,25.8,39.3,26.3z"/>
|
||||
<g>
|
||||
<path class="st4" d="M28.2,11.9h6.6c-1.1,0-2.3,4.8-3.3,10.4C30.5,17,29.4,11.9,28.2,11.9z"/>
|
||||
<path class="st4" d="M31.5,22.3c-0.1,0.6-0.2,1.1-0.3,1.7c-1.6,8.7-2.5,11.9-3.7,12.2c-1.3,0-2.5-5.6-3.4-11.2
|
||||
c0-0.1,0-0.2,0-0.3c0-0.3,0.1-0.5,0.1-0.7c1.6-8.8,2.5-11.9,3.6-12.2h0.4C29.4,11.9,30.5,17,31.5,22.3z"/>
|
||||
<path class="st4" d="M27.6,36.1h-7c1.2,0,2.4-5.4,3.5-11.4c0,0.1,0,0.2,0,0.3C25.1,30.5,26.3,36.1,27.6,36.1z"/>
|
||||
</g>
|
||||
<path class="st5" d="M24.1,24.8c-1.1,6-2.3,11.4-3.5,11.4c-1.3-0.3-2.4-5.4-3.8-13.2c0-0.3-0.1-0.5-0.1-0.7
|
||||
c1-5.6,2.2-10.4,3.3-10.4h0.4C21.6,12.2,22.6,17.1,24.1,24.8z"/>
|
||||
<g>
|
||||
<path class="st4" d="M13.2,11.9h6.6c-1.1,0-2.2,4.8-3.3,10.4C15.6,17,14.4,11.9,13.2,11.9z"/>
|
||||
<path class="st4" d="M16.6,22.3c-0.1,0.6-0.2,1.1-0.3,1.7c-1.6,8.7-2.5,11.9-3.7,12.2c-1.3,0-0.8-0.2-1.6-3.7
|
||||
s-1.4-5.6-2.2-6.6C9,25.2,9.1,24.6,9.2,24c1.6-8.8,2.6-11.9,3.7-12.2h0.4C14.4,11.9,15.6,17,16.6,22.3z"/>
|
||||
<path class="st4" d="M12.6,36.1h-7c1.1,0,2.2-4.8,3.3-10.3c0.8,1.1,1.4,3.1,2.2,6.6C11.9,35.9,11.3,36.1,12.6,36.1z"/>
|
||||
</g>
|
||||
<path class="st5" d="M8.9,25.8c-1.1,5.6-2.2,10.3-3.3,10.3c-0.1-0.2-0.9,0-1.6-4.3c-0.6-4-1.8-6.5-3.7-6.9h7
|
||||
C7.9,24.9,8.4,25.2,8.9,25.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 128 128" style="enable-background:new 0 0 128 128;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#DF5052;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M122,65.3c1.3,0,2.2-0.9,2.2-2.2c0-0.4,0-0.9-0.4-1.3L94.8,35.1L120.2,64C120.7,64.9,121.1,65.3,122,65.3z
|
||||
M128.1,80.2L65,22.8l57.4,62.7c0.9,0.4,1.8,0.9,2.6,0.9c2.2,0,3.5-1.8,3.5-3.5C129,81.5,128.6,80.7,128.1,80.2z M100.5,118.8
|
||||
L9.8,35.1l83.7,91.2c0.9,0.9,2.2,1.8,3.9,1.8c2.6,0,5.3-2.2,5.3-5.3C102.3,121.4,101.4,119.7,100.5,118.8z M-0.7,0l110.9,118.4
|
||||
c0.9,0.9,2.2,1.3,3.5,1.3c2.6,0,5.3-2.2,5.3-5.3c0-0.9-0.4-2.2-0.9-3.1C117.6,111.3-0.7,0-0.7,0z M125.5,95.6L34.8,11.8l83.7,91.2
|
||||
c0.9,0.9,2.2,1.8,3.9,1.8c2.6,0,5.3-2.2,5.3-5.3C127.3,98.2,126.4,96.4,125.5,95.6z M81.7,121.4C81.7,121,81.2,121,81.7,121.4
|
||||
L18.5,64L76,126.7c0.9,0.4,1.8,0.9,2.6,0.9c2.2,0,3.5-1.8,3.5-3.5C82.5,122.7,82.1,121.9,81.7,121.4z M33.4,92.5l25.4,28.9
|
||||
c0.4,0.4,0.9,1.3,1.8,1.3c1.3,0,2.2-0.9,2.2-2.2c0-0.4,0-0.9-0.4-1.3C61.9,118.8,33.4,92.5,33.4,92.5z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,77 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#EFCCA3;}
|
||||
.st1{fill:#CCAC8D;}
|
||||
.st2{fill:#FFFFFF;}
|
||||
.st3{fill:#56332B;}
|
||||
.st4{fill:#442823;}
|
||||
.st5{fill:#7F4A41;}
|
||||
.st6{fill:#331712;}
|
||||
</style>
|
||||
<path class="st0" d="M40.3,19.1c-0.1-1.7,0.2-3.1-0.6-4.3c-1.8-3.1-6.3-4.9-15.3-4.9v0.3h-0.2h0.2V9.9c-9,0-13.7,1.8-15.5,4.9
|
||||
c-0.7,1.3-0.6,2.7-0.8,4.3c-0.1,1.3-0.7,2.7-0.4,4.2c0.3,2,0.4,3.9,0.7,5.7c0.2,1.5,2.2,2.7,2.4,4.1c0.5,3.8,4.5,5.6,13.5,5.6V39
|
||||
h-0.2h0.3v-0.3c9,0,12.8-1.8,13.3-5.6c0.2-1.4,2.1-2.6,2.3-4.1c0.3-1.8,0.4-3.8,0.7-5.7C40.9,21.8,40.3,20.4,40.3,19.1z"/>
|
||||
<path class="st1" d="M24.2,20.4c1.6,0,2.7,1.1,3.8,2c1.2,1.1,3.3,1.8,4.2,2.8s2,1.9,2.4,3.3c0.4,1.5,0.5,3.3,0.5,3.8s0.3,0.4,1,0
|
||||
c1.8-0.9,3.7-3.2,3.7-3.2c-0.2,1.5-2.1,2.8-2.3,4.2c-0.4,3.8-4.2,5.7-13.3,5.7h0h0.2"/>
|
||||
<path class="st1" d="M30.2,17.5c0.3,1.2,1.5,5.1-0.8,3.8c0,0,1,0.6,1.6,2.7c0.6,2.1,2.2,2.4,2.2,2.4s2.5,0.5,4.4-1.1
|
||||
c1.6-1.4,1.8-3.8,1.2-5.6c-0.7-1.8-1.9-2.4-3.6-2.7C33.3,16.5,29.7,16.2,30.2,17.5z"/>
|
||||
<circle cx="34.6" cy="21.8" r="3.3"/>
|
||||
<circle class="st2" cx="33.8" cy="20.3" r="0.9"/>
|
||||
<path class="st0" d="M29.6,21.6c0,0,3,2,4.6,4c1.6,2,1.6,2.4,1.6,2.4l-1.2,0.5c0,0-1.6-3.1-3.7-4.3c-2.1-1.2-2.3-2.1-2.3-2.1
|
||||
S29.6,21.6,29.6,21.6z"/>
|
||||
<path class="st1" d="M24.3,20.4c-1.6,0-2.8,1.1-3.9,2c-1.2,1.1-3.4,1.8-4.3,2.8c-0.9,0.9-2,1.9-2.4,3.3c-0.4,1.5-0.6,3.3-0.6,3.8
|
||||
s0.1,0.5-1,0c-1.8-0.8-3.7-3.2-3.7-3.2c0.2,1.5,2.1,2.8,2.3,4.2C11.3,37.2,15,39,24.2,39h0.2"/>
|
||||
<path class="st3" d="M33,26.8c-1.8-2.2-4.7-4.3-8.7-4.3h0c-4,0-6.9,2.1-8.7,4.3c-1.9,2.3-1.7,3.2-1.7,5.4c0,7.9,2.8,5.6,4.6,6.6
|
||||
c1.9,0.9,3.8,0.6,5.8,0.6h0c2,0,3.9,0.3,5.8-0.7c1.8-0.9,4.6,1.4,4.6-6.5C34.8,30,34.9,29.1,33,26.8z"/>
|
||||
<path class="st4" d="M24.2,24.4c0,0-0.3,3.6-0.8,4.4l1-0.2L24.2,24.4z"/>
|
||||
<path class="st4" d="M24.4,24.4c0,0,0.3,3.6,0.8,4.4l-1-0.2L24.4,24.4z"/>
|
||||
<path class="st3" d="M21.3,23.6c-0.4-0.9,1-2.2,3.1-2.3c2.1,0,3.5,1.4,3.1,2.3s-1.7,1.2-3.1,1.2C23,24.7,21.6,24.5,21.3,23.6z"/>
|
||||
<path d="M24.4,24.4c0-0.1,1.3-0.2,1.9-0.6c0,0-1.4,0.4-1.7,0.3c-0.3-0.1-0.4-0.6-0.4-0.6s-0.1,0.5-0.3,0.6c-0.3,0.2-1.8-0.3-1.8-0.3
|
||||
s2.1,0.5,2.1,0.6s0,0.5,0,0.8c0,0.9,0,3.3,0.2,3.4c0.2,0.3,0.1-2.5,0.1-3.4C24.4,24.9,24.4,24.6,24.4,24.4z"/>
|
||||
<path class="st5" d="M24.4,29.5c0.6,0,1.8,0.4,2.8,1.2c-1-1.1-2.1-1.8-2.8-1.8c-0.7,0-2.1,0.8-3.1,2C22.4,30,23.7,29.5,24.4,29.5z"
|
||||
/>
|
||||
<path class="st4" d="M24.2,36.1c-1.4,0-2.8-0.5-4.1-0.8c-0.3-0.1-0.5,0.1-0.8,0c-2.4-0.8-4.3-2-5.4-3.6v0.4c0,7.9,2.8,5.7,4.6,6.6
|
||||
c1.9,0.9,3.8,0.6,5.8,0.6h0c2,0,3.9,0.3,5.8-0.7c1.8-0.9,4.6,1.4,4.6-6.5c0-0.3,0-0.6,0-0.9c-1.1,1.8-3.1,3.2-5.6,4
|
||||
c-0.2,0.1-0.8-0.1-1-0.1C26.9,35.6,25.7,36.1,24.2,36.1z"/>
|
||||
<path class="st4" d="M20.6,31.9c0,0-0.9,2.8-0.3,4.1l-0.9-0.4C19.5,35.5,20.1,32.7,20.6,31.9z M28.1,31.9c0,0,0.9,2.8,0.3,4.1
|
||||
l0.9-0.4C29.2,35.5,28.5,32.7,28.1,31.9z"/>
|
||||
<path class="st1" d="M18.2,17.5c-0.3,1.2-1.5,5.1,0.8,3.8c0,0-1,0.6-1.6,2.7s-2.2,2.4-2.2,2.4s-2.5,0.5-4.4-1.1
|
||||
c-1.6-1.4-1.8-3.8-1.2-5.6c0.7-1.8,1.9-2.4,3.6-2.7C15.1,16.5,18.6,16.2,18.2,17.5z"/>
|
||||
<path d="M24.3,28.8c1,0,4.2,2.2,4.2,4.8v-0.1c0-2.8-2.5-5-4.2-5c-1.7,0-4.2,2.2-4.2,5v0.1C20.2,31,23.3,28.8,24.3,28.8z"/>
|
||||
<ellipse transform="matrix(0.9683 -0.2498 0.2498 0.9683 -4.9679 6.9797)" class="st6" cx="25" cy="23.1" rx="0.3" ry="0.6"/>
|
||||
<ellipse transform="matrix(0.2963 -0.9551 0.9551 0.2963 -5.5659 38.5759)" class="st6" cx="23.4" cy="23.1" rx="0.6" ry="0.3"/>
|
||||
<circle cx="14" cy="21.8" r="3.3"/>
|
||||
<circle class="st2" cx="14.8" cy="20.3" r="0.9"/>
|
||||
<path class="st5" d="M25.3,21.8c0,0-0.9,0.4-1.1,0.4c-0.2,0-1.1-0.5-1.1-0.4H25.3z"/>
|
||||
<path class="st0" d="M18.8,21.6c0,0-3,2-4.6,4S12.6,28,12.6,28l1.2,0.5c0,0,1.7-3.1,3.7-4.3c2-1.2,2.3-2.1,2.3-2.1L18.8,21.6z"/>
|
||||
<path class="st1" d="M12.3,15.6c0,0-1,2.8-3.3,3.9C9,19.6,12.5,19.2,12.3,15.6z M35.9,15.6c0,0,1,2.8,3.3,3.9
|
||||
C39.2,19.6,35.7,19.2,35.9,15.6z M29.5,20.8c0,0-2.2-2.3-5.2-2.4h0h0c-3,0.1-5.2,2.4-5.2,2.4C21.8,19,24,19,24.4,19
|
||||
C24.4,19,26.9,19,29.5,20.8z M26.9,15.9c0,0-1.1-1.6-2.6-1.6h0.1c-1.1,0-2.6,1.6-2.6,1.6c1.3-1.2,2.6-1.2,2.6-1.2
|
||||
S25.6,14.7,26.9,15.9z M14,27.4c0,0-1.8,0.9-3,0.3h0c-1.1-0.6-1.7-2.6-1.7-2.6S10.3,28.6,14,27.4z M34.5,27.4c0,0,1.8,0.9,3,0.3
|
||||
c1.5-0.6,1.7-2.6,1.7-2.6S38.1,28.6,34.5,27.4z"/>
|
||||
<path class="st1" d="M16,15.4c1-0.2,2.6-0.2,3.9,0.2c1.6,0.6,0.3,2.6,0.6,2.7c0.3,0.1,0.8-1.4,3.8-1.3c3,0.1,3.4,1.5,3.8,1.3
|
||||
c0.4-0.2-0.4-3.7,4.1-2.9c0,0-4.8-1.3-4.5,2.2c0,0-2.7-2.1-6.6-0.2C21.1,17.4,22.1,14.2,16,15.4z M32.6,15.4c0.1,0,0.1,0,0.2,0
|
||||
C32.8,15.5,32.7,15.4,32.6,15.4z M14.7,10.8c0,0-4.1,5.1-4.6,7.1C9.4,19.9,9,28,8.4,29.2l-1.9-8l3.5-8.4
|
||||
C10,12.8,14.7,10.8,14.7,10.8z M33.7,10.8c0,0,4,5.1,4.7,7c0.6,2,1,10.1,1.6,11.3l1.9-8l-3.4-8.4C38.4,12.8,33.7,10.8,33.7,10.8z"/>
|
||||
<path class="st3" d="M33.5,10.8c0,0,4.3,3.6,5.6,7.8s0.8,9.3,1.7,9.9c1.4,0.9,3-4.5,3.5-5c0.8-0.9,3.6-3.2,3.8-3.6
|
||||
c0.2-0.4-5.6-6.7-8.1-7.9C37,10.6,33.3,10.5,33.5,10.8z"/>
|
||||
<path class="st4" d="M37.2,13.1c0,0,5.1,6.6,5.1,14.7l2.1-4.2C44.3,23.6,42.5,18.3,37.2,13.1z"/>
|
||||
<path class="st3" d="M14.7,10.8c0,0-4.4,3.6-5.6,7.8S8.3,28,7.3,28.6c-1.4,0.9-3-4.5-3.5-5C3,22.7,0.3,20.4,0.1,20s5.6-6.7,8.1-7.9
|
||||
C11.2,10.6,14.9,10.5,14.7,10.8z"/>
|
||||
<path class="st4" d="M11,13.1c0,0-5.1,6.6-5.1,14.7l-2-4.2C3.9,23.6,5.7,18.3,11,13.1z"/>
|
||||
<path class="st1" d="M8.2,28c0,0,0.4,2,1,2.7s0.2-0.5,0.2-0.5s-0.6-0.3-0.5-2.9S8.2,28,8.2,28z M40.2,28c0,0-0.4,2-1,2.7
|
||||
S39,30.1,39,30.1s0.6-0.3,0.5-2.9C39.4,24.6,40.2,28,40.2,28z"/>
|
||||
<g>
|
||||
<circle class="st4" cx="20.4" cy="26.4" r="0.3"/>
|
||||
<circle class="st4" cx="18.7" cy="28.2" r="0.3"/>
|
||||
<circle class="st4" cx="18.2" cy="26.4" r="0.3"/>
|
||||
</g>
|
||||
<g>
|
||||
<circle class="st4" cx="27.8" cy="26.4" r="0.3"/>
|
||||
<circle class="st4" cx="29.5" cy="28.2" r="0.3"/>
|
||||
<circle class="st4" cx="30" cy="26.4" r="0.3"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.8 KiB |
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="svg2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#41CD52;}
|
||||
.st1{fill:#FFFFFF;}
|
||||
</style>
|
||||
<path id="path6" class="st0" d="M6.6,6.4H48v28.5l-6.7,6.7H0V13L6.6,6.4z"/>
|
||||
<path id="path8" class="st1" d="M12.7,13.8c1.6-1,3.5-1.3,5.4-1.3c1.8,0,3.6,0.3,5.1,1.4c1.1,0.7,1.7,1.9,2.2,3.1c0.7,2,1,4.1,1,6.1
|
||||
c0,2.1-0.1,4.2-0.8,6.2c-0.5,1.4-1.3,2.6-2.5,3.4c0.8,1.4,1.7,2.7,2.5,4.1c-1.1,0.5-2.1,1-3.2,1.5c-0.9-1.5-1.8-3-2.7-4.4
|
||||
c-1.2,0.2-2.5,0.2-3.7,0c-1.5-0.2-3-0.6-4.1-1.6c-0.9-0.8-1.4-1.8-1.8-2.9c-0.6-1.8-0.8-3.7-0.8-5.6c0-2.1,0.1-4.1,0.7-6.1
|
||||
C10.6,16.1,11.4,14.7,12.7,13.8z"/>
|
||||
<path id="path10" class="st1" d="M30.6,13.7h3.3v4.4h4.2c0,0.9,0,1.9-0.1,2.8h-4.2v7.2c0,0.7,0,1.3,0.3,1.9c0.2,0.5,0.8,0.6,1.2,0.6
|
||||
c0.9,0,1.7-0.1,2.6-0.1c0.1,0.9,0.1,1.7,0.2,2.6c-1.7,0.3-3.5,0.6-5.3,0.1c-0.7-0.2-1.4-0.7-1.7-1.4c-0.5-1.2-0.6-2.6-0.6-3.9v-7.1
|
||||
h-2.3V18h2.3C30.6,16.6,30.6,15.2,30.6,13.7z"/>
|
||||
<path id="path12" class="st0" d="M16.7,15.5c1.1-0.1,2.2-0.1,3.2,0.3c0.8,0.3,1.5,1,1.9,1.8c0.6,1.2,0.8,2.6,0.9,3.9
|
||||
c0.1,1.8,0.1,3.6-0.1,5.3c-0.2,1-0.4,2.1-1.1,3c-0.7,0.8-1.8,1.2-2.9,1.3c-1.1,0.1-2.3,0-3.3-0.5c-0.6-0.3-1.1-0.8-1.4-1.4
|
||||
c-0.4-0.7-0.6-1.5-0.7-2.3c-0.4-2.5-0.5-5.1,0.1-7.6c0.2-0.9,0.6-1.9,1.3-2.6C15,15.9,15.8,15.6,16.7,15.5z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_2_1_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#00D8FF;}
|
||||
</style>
|
||||
<circle class="st0" cx="24" cy="24" r="4.3"/>
|
||||
<g>
|
||||
<path class="st0" d="M24,33.8c-6,0-11.3-0.7-15.3-2.1c-2.6-0.9-4.7-2-6.3-3.4C0.8,27,0,25.4,0,24c0-2.8,3.1-5.6,8.3-7.4
|
||||
c4.3-1.5,9.9-2.3,15.7-2.3c5.7,0,11.2,0.8,15.5,2.3c2.5,0.9,4.6,2,6.1,3.2C47.2,21,48,22.5,48,24c0,3-3.5,5.9-9.1,7.8
|
||||
C35,33.1,29.7,33.8,24,33.8z M24,16.3c-5.5,0-11,0.8-15,2.2c-4.8,1.7-7,4-7,5.5c0,1.6,2.3,4.1,7.4,5.8c3.7,1.3,8.8,2,14.6,2
|
||||
c5.4,0,10.5-0.7,14.3-1.9C43.6,28,46,25.5,46,24c0-0.8-0.6-1.8-1.7-2.7c-1.3-1.1-3.2-2.1-5.4-2.8C34.8,17,29.5,16.3,24,16.3z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M14.3,45.4c-0.9,0-1.6-0.2-2.3-0.6c-2.5-1.4-3.3-5.5-2.3-10.9c0.8-4.5,2.9-9.7,5.8-14.8
|
||||
c2.9-5,6.3-9.3,9.7-12.3c2-1.7,4-3,5.8-3.7c2-0.7,3.7-0.7,4.9,0c2.6,1.5,3.4,6,2.2,11.8c-0.8,4.1-2.9,9.1-5.7,14
|
||||
c-3,5.2-6.3,9.4-9.4,12.2c-2,1.8-4.1,3.1-6.1,3.8C16,45.2,15.1,45.4,14.3,45.4z M17.3,20.1c-2.8,4.8-4.8,9.9-5.6,14.1
|
||||
c-1,5,0,8,1.3,8.8c0.3,0.2,0.8,0.3,1.3,0.3c1.7,0,4.4-1.1,7.5-3.8c3-2.6,6.1-6.6,9-11.7c2.7-4.7,4.7-9.5,5.5-13.4
|
||||
c1.1-5.5,0.2-8.8-1.2-9.6c-0.7-0.4-1.8-0.4-3.2,0.2c-1.6,0.6-3.4,1.7-5.2,3.3C23.4,11.2,20.1,15.4,17.3,20.1"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M33.7,45.4c-2.3,0-5.3-1.4-8.4-4.1c-3.4-3-6.9-7.4-9.9-12.4l0,0c-2.9-5-4.9-10.1-5.8-14.6
|
||||
c-0.5-2.6-0.6-5-0.3-6.9c0.4-2.1,1.2-3.6,2.5-4.3c2.6-1.5,6.9,0,11.3,4c3.1,2.8,6.4,7,9.3,11.9c3,5.2,5.1,10.1,5.9,14.2
|
||||
c0.5,2.7,0.6,5.1,0.2,7.1c-0.4,2.1-1.3,3.6-2.6,4.4C35.3,45.2,34.6,45.4,33.7,45.4z M17.3,27.9c2.8,4.8,6.2,9.1,9.4,11.9
|
||||
c3.9,3.3,6.9,4,8.3,3.3c1.4-0.8,2.4-4.1,1.3-9.3c-0.8-3.9-2.7-8.6-5.6-13.6c-2.7-4.7-5.9-8.8-8.8-11.4C17.7,5,14.3,4.2,12.9,5
|
||||
c-0.7,0.4-1.2,1.4-1.5,2.9c-0.3,1.7-0.2,3.8,0.3,6.1C12.5,18.1,14.5,23.1,17.3,27.9L17.3,27.9z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#764ABC;}
|
||||
</style>
|
||||
<path class="st0" d="M33.3,32.9c1.8-0.2,3.1-1.7,3.1-3.5c-0.1-1.8-1.6-3.3-3.4-3.3h-0.1c-1.9,0.1-3.4,1.6-3.3,3.5
|
||||
c0.1,0.9,0.4,1.7,1,2.3c-2.1,4.1-5.3,7.1-10,9.6c-3.2,1.7-6.6,2.3-10,1.9c-2.7-0.4-4.9-1.6-6.2-3.6c-2-3-2.1-6.2-0.5-9.5
|
||||
c1.2-2.3,3-4,4.2-4.9c-0.2-0.8-0.6-2.1-0.8-3.1c-8.9,6.4-7.9,15.1-5.3,19.2c2,3.1,6.1,4.9,10.6,4.9c1.2,0,2.4-0.1,3.7-0.4
|
||||
C24,44.5,29.9,39.9,33.3,32.9z M44,25.4c-4.6-5.4-11.5-8.4-19.3-8.4h-1c-0.5-1.1-1.7-1.8-3-1.8h-0.1c-1.9,0.1-3.4,1.6-3.3,3.5
|
||||
c0.1,1.8,1.6,3.3,3.4,3.3h0.1c1.3-0.1,2.5-0.9,3-2.1H25c4.6,0,9,1.3,13,4c3.1,2,5.3,4.6,6.5,7.8c1,2.6,1,5.1-0.1,7.2
|
||||
c-1.7,3.2-4.6,5-8.4,5c-2.4,0-4.8-0.7-6-1.3c-0.7,0.6-1.9,1.6-2.7,2.2c2.6,1.2,5.3,1.9,7.9,1.9c5.9,0,10.2-3.2,11.9-6.5
|
||||
C48.7,36.7,48.6,30.6,44,25.4z M13,34c0.1,1.8,1.6,3.3,3.4,3.3h0.1c1.9-0.1,3.4-1.6,3.3-3.5c-0.1-1.8-1.6-3.3-3.4-3.3h-0.1
|
||||
c-0.1,0-0.3,0-0.4,0.1c-2.5-4.2-3.5-8.7-3.2-13.6c0.2-3.7,1.5-6.8,3.6-9.5c1.8-2.3,5.2-3.4,7.5-3.4c6.5-0.1,9.2,7.9,9.4,11.2
|
||||
c0.8,0.2,2.1,0.6,3.1,0.9c-0.7-9.9-6.8-15-12.7-15C18,1.1,13,5.1,11,11c-2.8,7.8-1,15.3,2.4,21.3C13.1,32.6,12.9,33.3,13,34L13,34z"
|
||||
/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#CF649A;}
|
||||
</style>
|
||||
<path class="st0" d="M41.3,26.7c-1.7,0-3.1,0.4-4.3,1c-0.5-0.9-0.9-1.7-1-2.2c-0.1-0.7-0.2-1.1-0.1-1.9c0.1-0.8,0.6-1.9,0.6-2
|
||||
c0-0.1-0.1-0.5-1.1-0.5c-1,0-1.8,0.2-1.9,0.4c-0.1,0.3-0.3,0.8-0.4,1.4c-0.2,0.9-1.9,4-2.9,5.6c-0.3-0.6-0.6-1.2-0.7-1.6
|
||||
c-0.1-0.7-0.2-1.1-0.1-1.9c0.1-0.8,0.6-2,0.6-2c0-0.1-0.1-0.5-1.1-0.5s-1.8,0.2-1.9,0.4c-0.1,0.3-0.2,0.9-0.4,1.4
|
||||
c-0.2,0.6-2.5,5.8-3.1,7.2c-0.3,0.7-0.6,1.2-0.8,1.6c-0.2,0.4,0,0,0,0.1c-0.2,0.3-0.3,0.5-0.3,0.5v0c-0.1,0.2-0.3,0.5-0.3,0.5
|
||||
c0,0-0.1-0.6,0-1.5c0.3-1.8,1.2-4.6,1.2-4.7c0,0,0.2-0.5-0.5-0.8c-0.7-0.3-0.9,0.2-1,0.2c-0.1,0-0.1,0.1-0.1,0.1s0.8-3.2-1.5-3.2
|
||||
c-1.4,0-3.3,1.5-4.2,2.9c-0.6,0.3-1.9,1-3.2,1.8c-0.5,0.3-1,0.6-1.6,0.9l-0.1-0.1c-2.7-2.9-7.6-4.9-7.4-8.7c0.1-1.4,0.6-5.1,9.5-9.5
|
||||
c7.3-3.7,13.2-2.7,14.2-0.4c1.5,3.2-3.1,9.1-10.8,10c-2.9,0.3-4.4-0.8-4.8-1.2c-0.4-0.4-0.5-0.5-0.6-0.4c-0.2,0.1-0.1,0.5,0,0.8
|
||||
c0.2,0.6,1.2,1.6,2.8,2.2c1.4,0.5,4.8,0.7,8.9-0.9c4.6-1.8,8.2-6.8,7.2-10.9C29,6.2,22,4.8,15.3,7.2C11.4,8.6,7.1,10.8,4,13.6
|
||||
c-3.7,3.4-4.2,6.4-4,7.6c0.9,4.4,6.9,7.3,9.4,9.4c-0.1,0.1-0.2,0.1-0.3,0.2c-1.2,0.6-5.9,3-7,5.6c-1.3,2.9,0.2,5,1.2,5.3
|
||||
c3.1,0.9,6.3-0.7,8.1-3.3c1.7-2.6,1.5-5.9,0.7-7.5l0-0.1l1-0.6c0.6-0.4,1.2-0.7,1.8-1c-0.3,0.8-0.5,1.8-0.6,3.2
|
||||
c-0.1,1.7,0.5,3.8,1.4,4.6c0.4,0.4,0.9,0.4,1.2,0.4c1,0,1.5-0.9,2-1.9c0.6-1.2,1.2-2.7,1.2-2.7S19.2,37,21.2,37
|
||||
c0.7,0,1.4-0.9,1.7-1.4v0c0,0,0,0,0.1-0.1c0.1-0.1,0.1-0.2,0.1-0.2v0c0.3-0.5,0.9-1.6,1.8-3.4c1.2-2.4,2.4-5.4,2.4-5.4
|
||||
s0.1,0.7,0.5,1.9c0.2,0.7,0.7,1.5,1,2.2c-0.3,0.4-0.5,0.6-0.5,0.6l0,0c-0.2,0.3-0.5,0.6-0.7,0.9c-1,1.1-2.1,2.4-2.2,2.8
|
||||
c-0.2,0.4-0.1,0.8,0.2,1c0.3,0.2,0.7,0.2,1.2,0.2c0.9-0.1,1.5-0.3,1.8-0.4c0.5-0.2,1-0.4,1.5-0.8c0.9-0.7,1.5-1.7,1.5-3
|
||||
c0-0.7-0.3-1.4-0.6-2.1c0.1-0.1,0.2-0.2,0.3-0.4c1.5-2.2,2.6-4.5,2.6-4.5s0.1,0.7,0.5,1.9c0.2,0.6,0.5,1.3,0.9,1.9
|
||||
c-1.4,1.1-2.3,2.4-2.6,3.3c-0.6,1.6-0.1,2.3,0.7,2.5c0.4,0.1,0.9-0.1,1.3-0.3c0.5-0.2,1.1-0.4,1.6-0.8c0.9-0.7,1.8-1.7,1.8-3
|
||||
c0-0.6-0.2-1.2-0.4-1.8c1.2-0.5,2.7-0.8,4.7-0.5c4.2,0.5,5,3.1,4.8,4.2c-0.2,1.1-1,1.7-1.3,1.9c-0.3,0.2-0.4,0.2-0.4,0.4
|
||||
c0,0.2,0.2,0.2,0.4,0.2c0.3-0.1,2.2-0.9,2.3-2.9C48.1,29.5,45.6,26.7,41.3,26.7L41.3,26.7z M9.1,37.5C7.8,39,5.8,39.6,5,39.1
|
||||
c-0.9-0.5-0.5-2.7,1.2-4.3c1-1,2.4-1.9,3.3-2.4c0.2-0.1,0.5-0.3,0.9-0.5c0.1,0,0.1-0.1,0.1-0.1c0.1,0,0.1-0.1,0.2-0.1
|
||||
C11.2,33.9,10.6,35.9,9.1,37.5z M19.2,30.7c-0.5,1.2-1.5,4.2-2.1,4c-0.5-0.1-0.8-2.4-0.1-4.7c0.4-1.1,1.2-2.5,1.6-3
|
||||
c0.8-0.8,1.6-1.1,1.8-0.8C20.7,26.7,19.5,29.9,19.2,30.7z M27.5,34.6c-0.2,0.1-0.4,0.2-0.5,0.1c-0.1,0,0.1-0.2,0.1-0.2
|
||||
s1-1.1,1.5-1.6c0.2-0.3,0.5-0.6,0.8-1V32C29.4,33.4,28.1,34.3,27.5,34.6z M33.9,33.2c-0.1-0.1-0.1-0.5,0.4-1.5
|
||||
c0.2-0.4,0.6-1.2,1.4-1.8c0.1,0.3,0.1,0.6,0.1,0.8C35.9,32.3,34.7,32.9,33.9,33.2z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FF3E00;}
|
||||
.st1{fill:#FFFFFF;}
|
||||
</style>
|
||||
<path class="st0" d="M41.4,6.4C37,0,28.2-1.9,21.8,2.1L10.6,9.3c-3.1,1.9-5.2,5-5.8,8.6c-0.5,3-0.1,6,1.3,8.7
|
||||
c-1,1.5-1.6,3.1-1.9,4.8c-0.6,3.6,0.2,7.3,2.3,10.3c4.5,6.4,13.3,8.3,19.6,4.2l11.2-7.1c3.1-1.9,5.2-5,5.8-8.6c0.5-3,0.1-6-1.3-8.7
|
||||
c1-1.5,1.6-3.1,1.9-4.8C44.4,13.1,43.6,9.3,41.4,6.4"/>
|
||||
<path class="st1" d="M20.7,42.2c-3.6,0.9-7.4-0.5-9.5-3.5c-1.3-1.8-1.8-4-1.4-6.2c0.1-0.4,0.2-0.7,0.3-1l0.2-0.6l0.6,0.4
|
||||
c1.3,1,2.8,1.7,4.4,2.2l0.4,0.1l0,0.4c-0.1,0.6,0.1,1.2,0.5,1.7c0.6,0.9,1.8,1.3,2.9,1.1c0.2-0.1,0.5-0.2,0.7-0.3l11.2-7.1
|
||||
c0.6-0.3,0.9-0.9,1.1-1.6c0.1-0.7,0-1.3-0.4-1.9c-0.6-0.9-1.8-1.3-2.9-1.1c-0.2,0.1-0.5,0.2-0.7,0.3l-4.3,2.7
|
||||
c-0.7,0.4-1.5,0.8-2.3,1c-3.6,0.9-7.4-0.5-9.5-3.5c-1.3-1.8-1.8-4-1.4-6.2c0.4-2.1,1.6-4,3.5-5.2L25,6.7c0.7-0.4,1.5-0.8,2.3-1
|
||||
c3.6-0.9,7.4,0.5,9.5,3.5c1.3,1.8,1.8,4,1.4,6.2c-0.1,0.4-0.2,0.7-0.3,1l-0.2,0.6l-0.6-0.4c-1.3-1-2.8-1.7-4.4-2.2l-0.4-0.1l0-0.4
|
||||
c0.1-0.6-0.1-1.2-0.5-1.7c-0.6-0.9-1.8-1.3-2.9-1.1c-0.2,0.1-0.5,0.2-0.7,0.3l-11.2,7.1c-0.6,0.3-0.9,0.9-1,1.6
|
||||
c-0.1,0.7,0,1.3,0.4,1.9c0.6,0.9,1.8,1.3,2.9,1.1c0.2-0.1,0.5-0.2,0.7-0.3l4.3-2.7c0.7-0.4,1.5-0.8,2.3-1c3.6-0.9,7.4,0.5,9.5,3.5
|
||||
c1.3,1.8,1.8,4,1.4,6.2c-0.4,2.1-1.6,4-3.5,5.2L23,41.3C22.3,41.7,21.5,42,20.7,42.2"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_1_);}
|
||||
</style>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="1.024037e-06" y1="63.8895" x2="48" y2="-16.11" gradientTransform="matrix(1 0 0 -1 0 47.8898)">
|
||||
<stop offset="0" style="stop-color:#2383AE"/>
|
||||
<stop offset="1" style="stop-color:#6DD7B9"/>
|
||||
</linearGradient>
|
||||
<path class="st0" d="M12,19.2c1.6-6.4,5.6-9.6,12-9.6c9.6,0,10.8,7.2,15.6,8.4c3.2,0.8,6-0.4,8.4-3.6c-1.6,6.4-5.6,9.6-12,9.6
|
||||
c-9.6,0-10.8-7.2-15.6-8.4C17.2,14.8,14.4,16,12,19.2z M0,33.6C1.6,27.2,5.6,24,12,24c9.6,0,10.8,7.2,15.6,8.4
|
||||
c3.2,0.8,6-0.4,8.4-3.6c-1.6,6.4-5.6,9.6-12,9.6c-9.6,0-10.8-7.2-15.6-8.4C5.2,29.2,2.4,30.4,0,33.6z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#41B883;}
|
||||
.st1{fill:#34495E;}
|
||||
</style>
|
||||
<g transform="translate(178.06 235.01)">
|
||||
<path class="st0" d="M-148.5-231.8l-5.5,9.6l-5.5-9.6h-18.5l24,41.6l24-41.6H-148.5z"/>
|
||||
</g>
|
||||
<g transform="translate(178.06 235.01)">
|
||||
<path class="st1" d="M-148.5-231.8l-5.5,9.6l-5.5-9.6h-8.9l14.4,24.9l14.4-24.9H-148.5z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 696 B |
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#1697F6;}
|
||||
.st1{fill:#1867C0;}
|
||||
.st2{fill:#7BC6FF;}
|
||||
.st3{fill:#AEDDFF;}
|
||||
</style>
|
||||
<polyline class="st0" points="24,0 14.2,0 24,23.3 "/>
|
||||
<polyline class="st1" points="24,0 33.8,0 24,23.3 "/>
|
||||
<polyline class="st2" points="24,30 24,48 3,7 14,7 "/>
|
||||
<polyline class="st3" points="24,30 24,48 45,7 34,7 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 688 B |
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
.st1{fill:#8ED6FB;}
|
||||
.st2{fill:#1C78C0;}
|
||||
</style>
|
||||
<path class="st0" d="M24,0l21.2,12v24L24,48L2.8,36V12L24,0z"/>
|
||||
<path class="st1" d="M41.4,35.2l-16.7,9.5v-7.4l10.4-5.7C35.1,31.5,41.4,35.2,41.4,35.2z M42.6,34.1V14.4l-6.1,3.5v12.7
|
||||
C36.5,30.6,42.6,34.1,42.6,34.1z M6.5,35.2l16.7,9.5v-7.4l-10.4-5.7L6.5,35.2z M5.4,34.1V14.4l6.1,3.5v12.7L5.4,34.1z M6.1,13.1
|
||||
l17.2-9.7v7.1l-11,6l-0.1,0C12.2,16.6,6.1,13.1,6.1,13.1z M41.9,13.1L24.7,3.4v7.1l11,6l0.1,0C35.8,16.6,41.9,13.1,41.9,13.1z"/>
|
||||
<path class="st2" d="M23.2,35.6l-10.3-5.7V18.7l10.3,5.9V35.6z M24.7,35.6L35,29.9V18.7l-10.3,5.9V35.6z M13.6,17.4L24,11.8
|
||||
l10.3,5.7l-10.3,6C24,23.4,13.6,17.4,13.6,17.4z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
@@ -0,0 +1,81 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 475 474.9" style="enable-background:new 0 0 475 474.9;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:url(#SVGID_1_);}
|
||||
.st1{opacity:0.25;fill-rule:evenodd;clip-rule:evenodd;fill:#FF0000;enable-background:new ;}
|
||||
.st2{fill:url(#SVGID_2_);}
|
||||
.st3{fill:none;stroke:#800000;stroke-width:12.686;stroke-linejoin:round;stroke-miterlimit:20;stroke-opacity:0.502;}
|
||||
.st4{fill:url(#SVGID_3_);}
|
||||
.st5{opacity:0.25;fill-rule:evenodd;clip-rule:evenodd;fill:#0000FF;enable-background:new ;}
|
||||
.st6{fill:url(#SVGID_4_);}
|
||||
.st7{fill:none;stroke:#000080;stroke-width:12.686;stroke-linejoin:round;stroke-miterlimit:20;stroke-opacity:0.502;}
|
||||
.st8{fill:url(#SVGID_5_);}
|
||||
.st9{opacity:0.25;fill-rule:evenodd;clip-rule:evenodd;fill:#C0C000;enable-background:new ;}
|
||||
.st10{fill:url(#SVGID_6_);}
|
||||
.st11{fill:none;stroke:#808000;stroke-width:12.686;stroke-linejoin:round;stroke-miterlimit:20;stroke-opacity:0.502;}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="195.6442" y1="70.1744" x2="94.5518" y2="270.1683" gradientTransform="matrix(1 0 0 -1 -45.0075 472.8094)">
|
||||
<stop offset="0" style="stop-color:#FF0000"/>
|
||||
<stop offset="1" style="stop-color:#FFE0E0"/>
|
||||
</linearGradient>
|
||||
<path class="st0" d="M44.3,202.4h111.3c24.6,0,44.3,19.8,44.3,44.3v111.3c0,24.6-19.8,44.3-44.3,44.3H44.3
|
||||
C19.8,402.4,0,382.7,0,358.1V246.8C0,222.2,19.8,202.4,44.3,202.4z"/>
|
||||
<path class="st1" d="M157.1,277.5c-48.5,0.5-61.8,56.7-104.9,57.2C33.5,334.9,17.6,322.1,0,307v51.7c0,24.2,19.8,43.8,44.4,43.8
|
||||
h111.3c24.6,0,44.3-19.5,44.3-43.8v-70.3C188,281.8,174,277.3,157.1,277.5z"/>
|
||||
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="114.4311" y1="89.3125" x2="197.7391" y2="89.3125" gradientTransform="matrix(0.5456 0 0 -0.3503 -49.8778 333.7271)">
|
||||
<stop offset="0" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<path class="st2" d="M41.5,227.4L41.5,227.4c9.1,0,16.5,7.6,16.5,17v115.9c0,9.4-7.4,17-16.5,17l0,0c-9.1,0-16.5-7.6-16.5-17
|
||||
V244.5C25,235.1,32.4,227.4,41.5,227.4z"/>
|
||||
<path class="st3" d="M44.5,208.8h111.2c21.1,0,38,16.9,38,38v111.3c0,21.1-16.9,38-38,38H44.3c-21.1,0-38-16.9-38-38V246.8
|
||||
C6.3,225.6,23.3,208.8,44.5,208.8z"/>
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="271.4243" y1="191.1716" x2="196.0659" y2="341.0782" gradientTransform="matrix(1.3342 0 0 -1.3342 -81.9289 527.351)">
|
||||
<stop offset="0" style="stop-color:#0000FF"/>
|
||||
<stop offset="1" style="stop-color:#E0E0FF"/>
|
||||
</linearGradient>
|
||||
<path class="st4" d="M174.3,72.4h111.3c24.6,0,44.3,19.8,44.3,44.3v111.3c0,24.6-19.8,44.3-44.3,44.3H174.3
|
||||
c-24.6,0-44.3-19.8-44.3-44.3V116.8C130,92.2,149.8,72.4,174.3,72.4z"/>
|
||||
<path class="st5" d="M287.1,147.5c-48.5,0.5-61.8,56.7-104.9,57.2c-18.6,0.2-34.5-12.6-52.2-27.7v51.7c0,24.2,19.8,43.8,44.4,43.8
|
||||
h111.3c24.6,0,44.3-19.5,44.3-43.8v-70.3C318,151.8,304,147.3,287.1,147.5z"/>
|
||||
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="114.6297" y1="89.3128" x2="197.7382" y2="89.3128" gradientTransform="matrix(0.5456 0 0 -0.3503 80.1223 203.7272)">
|
||||
<stop offset="0" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<path class="st6" d="M171.5,97.4L171.5,97.4c9.1,0,16.5,7.6,16.5,17v115.9c0,9.4-7.4,17-16.5,17l0,0c-9.1,0-16.5-7.6-16.5-17
|
||||
V114.5C155,105.1,162.4,97.4,171.5,97.4z"/>
|
||||
<path class="st7" d="M174.5,78.8h111.2c21.1,0,38,16.9,38,38v111.3c0,21.1-16.9,38-38,38H174.3c-21.1,0-38-16.9-38-38V116.8
|
||||
C136.3,95.6,153.3,78.8,174.5,78.8z"/>
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="195.964" y1="340.9379" x2="271.6675" y2="191.0312" gradientTransform="matrix(1.3342 0 0 -1.3342 63.0711 622.351)">
|
||||
<stop offset="0" style="stop-color:#FFFFE0"/>
|
||||
<stop offset="1" style="stop-color:#FFFF00"/>
|
||||
</linearGradient>
|
||||
<path class="st8" d="M319.3,167.4h111.3c24.6,0,44.3,19.8,44.3,44.3v111.3c0,24.6-19.8,44.3-44.3,44.3H319.3
|
||||
c-24.6,0-44.3-19.8-44.3-44.3V211.8C275,187.2,294.8,167.4,319.3,167.4z"/>
|
||||
<path class="st9" d="M432.1,242.5c-48.5,0.5-61.8,56.7-104.9,57.2c-18.6,0.2-34.5-12.6-52.2-27.7v51.7c0,24.2,19.8,43.8,44.4,43.8
|
||||
h111.3c24.6,0,44.3-19.5,44.3-43.8v-70.3C463,246.8,449,242.3,432.1,242.5z"/>
|
||||
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="114.431" y1="89.3128" x2="197.7384" y2="89.3128" gradientTransform="matrix(0.5456 0 0 -0.3503 225.1222 298.7272)">
|
||||
<stop offset="0" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<path class="st10" d="M316.5,192.4L316.5,192.4c9.1,0,16.5,7.6,16.5,17v115.9c0,9.4-7.4,17-16.5,17l0,0c-9.1,0-16.5-7.6-16.5-17
|
||||
V209.5C300,200.1,307.4,192.4,316.5,192.4z"/>
|
||||
<path class="st11" d="M319.5,173.8h111.2c21.1,0,38,16.9,38,38v111.3c0,21.1-16.9,38-38,38H319.3c-21.1,0-38-16.9-38-38V211.8
|
||||
C281.3,190.6,298.3,173.8,319.5,173.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.2 KiB |
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#222C37;}
|
||||
</style>
|
||||
<path class="st0" d="M47.4,19.1L42.3,0L23.2,5.1l-2.8,5l-5.7,0l-14,14l14,14l5.7,0l2.8,5L42.3,48l5.1-19.1L44.5,24L47.4,19.1z
|
||||
M35.4,7.1L27,21.6H10.2l10.6-10.8L35.4,7.1z M27,26.4l8.4,14.5l-14.6-3.8L10.2,26.4L27,26.4L27,26.4z M31.1,24l8.4-14.5L43.6,24
|
||||
l-4.1,14.5L31.1,24z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 679 B |
@@ -0,0 +1 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12c0-6.627-5.373-12-12-12zm0 1.846c5.595.007 10.128 4.545 10.128 10.141 0 5.601-4.54 10.141-10.141 10.141s-10.141-4.54-10.141-10.141c0-2.8 1.135-5.335 2.97-7.17 1.837-1.835 4.374-2.97 7.176-2.97h.007zm0 2.77c-4.392.774-8.308 4.824-8.308 9.23 2.149-3.794 3.584-4.067 3.981-4.067s.606.206.606.663v5.654c0 .703-1.366.588-1.818.519 1.67 2.485 5.539 2.77 5.539 2.77l1.846-1.846 1.846.923c2.914-1.334 4.615-4.19 4.615-4.615-.701.868-1.646 1.515-2.731 1.836l-.039.01c-.245 0-.923-.126-.923-.462v-6.693c0-.581 1.342-2.354 1.846-3-3.332.873-4.298 2.394-4.298 2.394s-.253-.548-1.24-.548c.501.473.838 1.114.922 1.832l.001.014v5.654c-.525.373-1.144.653-1.813.801l-.034.006c-.64 0-.952-.26-.952-.75s.029-6.634.029-6.634-.923.339-.923-1.558c0-.949 1.846-2.135 1.846-2.135z"/></svg>
|
||||
|
After Width: | Height: | Size: 893 B |
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#30DC80;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M24,15.8c-12.6,0-22.9,9.6-24,21.9h48C46.9,25.4,36.6,15.8,24,15.8z M33.2,28.7c0-1.1,0.9-2,2-2s2,0.9,2,2
|
||||
s-0.9,2-2,2C34.1,30.7,33.2,29.9,33.2,28.7z M12.8,30.7c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2C14.8,29.9,13.9,30.7,12.8,30.7z"/>
|
||||
<path class="st0" d="M34,21c-0.1,0-0.3,0-0.4-0.1c-0.4-0.2-0.5-0.7-0.3-1.1l5.2-9c0.2-0.4,0.7-0.5,1.1-0.3c0.4,0.2,0.5,0.7,0.3,1.1
|
||||
l-5.2,9C34.6,20.8,34.3,21,34,21z"/>
|
||||
<path class="st0" d="M14,21c-0.3,0-0.6-0.1-0.7-0.4l-5.2-9c-0.2-0.4-0.1-0.9,0.3-1.1c0.4-0.2,0.9-0.1,1.1,0.3l5.2,9
|
||||
c0.2,0.4,0.1,0.9-0.3,1.1C14.2,20.9,14.1,21,14,21z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1003 B |
|
After Width: | Height: | Size: 5.0 KiB |
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#00C4B3;}
|
||||
.st1{fill:#22D3C5;}
|
||||
.st2{fill:#0075C9;}
|
||||
.st3{fill:#00A8E1;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M13.2,13.1L10.1,10l0,22.4l0,1c0,0.5,0.1,1.1,0.3,1.6L35,43.7l6.2-2.7l0,0L13.2,13.1L13.2,13.1z"/>
|
||||
<path class="st1" d="M10.4,35.1L10.4,35.1C10.4,35.1,10.4,35,10.4,35.1C10.4,35,10.4,35.1,10.4,35.1L10.4,35.1z M41.1,41L35,43.7
|
||||
l-24.6-8.7c0.5,1.8,1.5,3.8,2.6,4.9l8,8l17.8,0L41.1,41L41.1,41z"/>
|
||||
<g>
|
||||
<path class="st2" d="M10.2,10L0.6,24.4c-0.8,0.8-0.4,2.6,0.9,3.9L7,33.8l3.5,1.2c-0.2-0.6-0.2-1.1-0.3-1.6l0-1L10.2,10L10.2,10z"
|
||||
/>
|
||||
<path class="st2" d="M35.2,10.3C34.6,10.1,34,10,33.5,10l-1.1,0l-22.4,0l31,31l2.7-6.2L35.2,10.3L35.2,10.3z"/>
|
||||
</g>
|
||||
<path class="st3" d="M35.1,10.2C35.2,10.3,35.2,10.3,35.1,10.2L35.1,10.2C35.2,10.2,35.2,10.2,35.1,10.2L35.1,10.2z M40.1,12.9
|
||||
c-1.1-1.1-3.1-2.2-4.9-2.6l8.7,24.6L41.1,41l6.7-2.1l0-18.3L40.1,12.9L40.1,12.9z"/>
|
||||
<path class="st0" d="M34,6.8l-5.6-5.5c-1.3-1.3-3-1.7-3.9-0.9L10.1,10l22.4,0l1.1,0c0.5,0,1.1,0.1,1.6,0.3L34,6.8L34,6.8z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{clip-path:url(#SVGID_2_);}
|
||||
.st1{fill:#39CEFD;}
|
||||
.st2{clip-path:url(#SVGID_4_);fill:#39CEFD;}
|
||||
.st3{clip-path:url(#SVGID_6_);fill:#03569B;}
|
||||
.st4{clip-path:url(#SVGID_8_);fill:url(#SVGID_9_);}
|
||||
.st5{clip-path:url(#SVGID_11_);}
|
||||
.st6{fill:#16B9FD;}
|
||||
.st7{fill:url(#SVGID_12_);}
|
||||
</style>
|
||||
<g transform="matrix(.061615 0 0 .061615 -1.430818 -1.2754)">
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_1_" d="M727.3,380.2L517.6,590l209.7,209.8H487.7L277.9,590l209.8-209.8H727.3z M487.7,20.7L98.2,410.2L218,530
|
||||
L727.3,20.7H487.7z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st0">
|
||||
<path class="st1" d="M278,590l119.8,119.9l329.6-329.6H487.7L278,590z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_3_" d="M727.3,380.2L517.6,590l209.7,209.8H487.7L277.9,590l209.8-209.8H727.3z M487.7,20.7L98.2,410.2L218,530
|
||||
L727.3,20.7H487.7z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path class="st2" d="M487.7,20.7h239.6L218,530L98.2,410.2L487.7,20.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_5_" d="M727.3,380.2L517.6,590l209.7,209.8H487.7L277.9,590l209.8-209.8H727.3z M487.7,20.7L98.2,410.2L218,530
|
||||
L727.3,20.7H487.7z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_6_">
|
||||
<use xlink:href="#SVGID_5_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path class="st3" d="M397.7,709.8l89.9,89.9h239.6L517.6,590L397.7,709.8z"/>
|
||||
</g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_7_" d="M727.3,380.2L517.6,590l209.7,209.8H487.7L277.9,590l209.8-209.8H727.3z M487.7,20.7L98.2,410.2L218,530
|
||||
L727.3,20.7H487.7z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_8_">
|
||||
<use xlink:href="#SVGID_7_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="74525.2734" y1="-109226.5859" x2="74614.5391" y2="-109137.3281" gradientTransform="matrix(6.161500e-02 0 0 -6.161500e-02 -4159.1699 -5997.0713)">
|
||||
<stop offset="0" style="stop-color:#1A237E;stop-opacity:0.4"/>
|
||||
<stop offset="1" style="stop-color:#1A237E;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<path class="st4" d="M575.5,648.2L517.6,590L397.7,709.8L575.5,648.2z"/>
|
||||
</g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_10_" d="M727.3,380.2L517.6,590l209.7,209.8H487.7L277.9,590l209.8-209.8H727.3z M487.7,20.7L98.2,410.2L218,530
|
||||
L727.3,20.7H487.7z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_11_">
|
||||
<use xlink:href="#SVGID_10_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st5">
|
||||
<path class="st6" d="M277.9,589.9l119.9-119.9l119.9,119.9L397.8,709.8L277.9,589.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
|
||||
<radialGradient id="SVGID_12_" cx="408387.9375" cy="470734.3125" r="3812.1965" gradientTransform="matrix(1.540375e-02 0 0 1.540375e-02 -6174.8472 -7177.2778)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.1"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</radialGradient>
|
||||
<path class="st7" d="M727.3,380.2L517.6,590l209.7,209.8H487.7L277.9,590l209.8-209.8H727.3z M487.7,20.7L98.2,410.2L218,530
|
||||
L727.3,20.7H487.7z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.4 KiB |
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#478AFF;}
|
||||
</style>
|
||||
<path class="st0" d="M24,13.6c-5.8,0-10.4,4.7-10.4,10.4S18.2,34.4,24,34.4S34.4,29.8,34.4,24S29.8,13.6,24,13.6z"/>
|
||||
<path class="st0" d="M45.8,14c-1,1.6-2.5,2.8-4.3,3.4c0.8,2.1,1.2,4.3,1.2,6.6c0,10.4-8.4,18.8-18.8,18.8S5.2,34.4,5.2,24
|
||||
S13.6,5.2,24,5.2c2.8,0,5.5,0.6,7.9,1.8c0.7-1.7,2-3.2,3.7-4C32.1,1.1,28.2,0,24,0C10.8,0,0,10.8,0,24s10.8,24,24,24s24-10.8,24-24
|
||||
C48,20.4,47.2,17,45.8,14z"/>
|
||||
<path class="st0" d="M39.1,4.2c-3.2,0-5.7,2.6-5.7,5.7s2.6,5.7,5.7,5.7c3.2,0,5.7-2.6,5.7-5.7S42.3,4.2,39.1,4.2z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 911 B |
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:url(#SVGID_1_);}
|
||||
.st1{fill:url(#SVGID_2_);}
|
||||
.st2{fill:url(#SVGID_3_);}
|
||||
</style>
|
||||
<g transform="matrix(1.016327 0 0 1.016327 -3.52726 -3.909123)">
|
||||
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-215.5636" y1="360.9349" x2="-207.6526" y2="368.8459" gradientTransform="matrix(5.6463 0 0 -5.6463 1212.6459 2085.2019)">
|
||||
<stop offset="0.108" style="stop-color:#C757BC"/>
|
||||
<stop offset="0.173" style="stop-color:#CD5CA9"/>
|
||||
<stop offset="0.492" style="stop-color:#E8744F"/>
|
||||
<stop offset="0.716" style="stop-color:#F88316"/>
|
||||
<stop offset="0.823" style="stop-color:#FF8900"/>
|
||||
</linearGradient>
|
||||
<path class="st0" d="M27.2,3.8L3.5,28.8v22.3l23.7-23.7L50.7,3.8L27.2,3.8z"/>
|
||||
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="-211.4857" y1="358.752" x2="-207.6297" y2="362.608" gradientTransform="matrix(5.6463 0 0 -5.6463 1212.6459 2085.2019)">
|
||||
<stop offset="0.296" style="stop-color:#00AFFF"/>
|
||||
<stop offset="0.694" style="stop-color:#5282FF"/>
|
||||
<stop offset="1" style="stop-color:#945DFF"/>
|
||||
</linearGradient>
|
||||
<path class="st1" d="M3.5,51.1l23.7-23.7l23.6,23.7H3.5z"/>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-214.2557" y1="366.3177" x2="-211.5517" y2="369.0227" gradientTransform="matrix(5.6463 0 0 -5.6463 1212.6459 2085.2019)">
|
||||
<stop offset="0.296" style="stop-color:#00AFFF"/>
|
||||
<stop offset="0.694" style="stop-color:#5282FF"/>
|
||||
<stop offset="1" style="stop-color:#945DFF"/>
|
||||
</linearGradient>
|
||||
<path class="st2" d="M3.5,3.8h23.7L3.5,28.8L3.5,3.8z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#3C5AFD;}
|
||||
</style>
|
||||
<path class="st0" d="M44.5,3.5c2.3,2.3,3.4,5.1,3.5,8.5v24c-0.1,3.4-1.3,6.2-3.5,8.5c-2.3,2.3-5.1,3.4-8.5,3.5H12
|
||||
c-3.4-0.1-6.2-1.3-8.5-3.5C1.3,42.2,0.1,39.4,0,36V12c0.1-3.4,1.3-6.2,3.5-8.5C5.8,1.3,8.6,0.1,12,0h24C39.4,0.1,42.2,1.3,44.5,3.5z
|
||||
M41.2,22.8C40.4,22.1,40,21.1,40,20v-8c0-1.1-0.4-2.1-1.2-2.8C38.1,8.4,37.1,8,36,8h-4v20L16,8h-4c-1.1,0-2.1,0.4-2.8,1.2
|
||||
C8.4,9.9,8,10.9,8,12v8c0,1.1-0.4,2.1-1.2,2.8C6.1,23.6,5.1,24,4,24c1.1,0,2.1,0.4,2.8,1.2C7.6,25.9,8,26.9,8,28v8
|
||||
c0,1.1,0.4,2.1,1.2,2.8C9.9,39.6,10.9,40,12,40h4V20l16,20h4c1.1,0,2.1-0.4,2.8-1.2c0.8-0.8,1.1-1.7,1.2-2.8v-8
|
||||
c0-1.1,0.4-2.1,1.2-2.8c0.8-0.7,1.7-1.1,2.8-1.2C42.9,24,41.9,23.6,41.2,22.8L41.2,22.8z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_2_1_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#00D8FF;}
|
||||
</style>
|
||||
<circle class="st0" cx="24" cy="24" r="4.3"/>
|
||||
<g>
|
||||
<path class="st0" d="M24,33.8c-6,0-11.3-0.7-15.3-2.1c-2.6-0.9-4.7-2-6.3-3.4C0.8,27,0,25.4,0,24c0-2.8,3.1-5.6,8.3-7.4
|
||||
c4.3-1.5,9.9-2.3,15.7-2.3c5.7,0,11.2,0.8,15.5,2.3c2.5,0.9,4.6,2,6.1,3.2C47.2,21,48,22.5,48,24c0,3-3.5,5.9-9.1,7.8
|
||||
C35,33.1,29.7,33.8,24,33.8z M24,16.3c-5.5,0-11,0.8-15,2.2c-4.8,1.7-7,4-7,5.5c0,1.6,2.3,4.1,7.4,5.8c3.7,1.3,8.8,2,14.6,2
|
||||
c5.4,0,10.5-0.7,14.3-1.9C43.6,28,46,25.5,46,24c0-0.8-0.6-1.8-1.7-2.7c-1.3-1.1-3.2-2.1-5.4-2.8C34.8,17,29.5,16.3,24,16.3z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M14.3,45.4c-0.9,0-1.6-0.2-2.3-0.6c-2.5-1.4-3.3-5.5-2.3-10.9c0.8-4.5,2.9-9.7,5.8-14.8
|
||||
c2.9-5,6.3-9.3,9.7-12.3c2-1.7,4-3,5.8-3.7c2-0.7,3.7-0.7,4.9,0c2.6,1.5,3.4,6,2.2,11.8c-0.8,4.1-2.9,9.1-5.7,14
|
||||
c-3,5.2-6.3,9.4-9.4,12.2c-2,1.8-4.1,3.1-6.1,3.8C16,45.2,15.1,45.4,14.3,45.4z M17.3,20.1c-2.8,4.8-4.8,9.9-5.6,14.1
|
||||
c-1,5,0,8,1.3,8.8c0.3,0.2,0.8,0.3,1.3,0.3c1.7,0,4.4-1.1,7.5-3.8c3-2.6,6.1-6.6,9-11.7c2.7-4.7,4.7-9.5,5.5-13.4
|
||||
c1.1-5.5,0.2-8.8-1.2-9.6c-0.7-0.4-1.8-0.4-3.2,0.2c-1.6,0.6-3.4,1.7-5.2,3.3C23.4,11.2,20.1,15.4,17.3,20.1"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M33.7,45.4c-2.3,0-5.3-1.4-8.4-4.1c-3.4-3-6.9-7.4-9.9-12.4l0,0c-2.9-5-4.9-10.1-5.8-14.6
|
||||
c-0.5-2.6-0.6-5-0.3-6.9c0.4-2.1,1.2-3.6,2.5-4.3c2.6-1.5,6.9,0,11.3,4c3.1,2.8,6.4,7,9.3,11.9c3,5.2,5.1,10.1,5.9,14.2
|
||||
c0.5,2.7,0.6,5.1,0.2,7.1c-0.4,2.1-1.3,3.6-2.6,4.4C35.3,45.2,34.6,45.4,33.7,45.4z M17.3,27.9c2.8,4.8,6.2,9.1,9.4,11.9
|
||||
c3.9,3.3,6.9,4,8.3,3.3c1.4-0.8,2.4-4.1,1.3-9.3c-0.8-3.9-2.7-8.6-5.6-13.6c-2.7-4.7-5.9-8.8-8.8-11.4C17.7,5,14.3,4.2,12.9,5
|
||||
c-0.7,0.4-1.2,1.4-1.5,2.9c-0.3,1.7-0.2,3.8,0.3,6.1C12.5,18.1,14.5,23.1,17.3,27.9L17.3,27.9z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#3498DB;}
|
||||
</style>
|
||||
<path class="st0" d="M13.8,2.6c-1.3,0-2.6,0.7-3.2,1.9L0.5,22.1c-0.6,1.1-0.6,2.6,0,3.7l10.2,17.6c0.7,1.1,1.9,1.9,3.2,1.9h20.3
|
||||
c1.3,0,2.6-0.7,3.2-1.9l10.2-17.6c0.6-1.1,0.6-2.6,0-3.7L37.4,4.5c-0.7-1.1-1.9-1.9-3.2-1.9H13.8z M14,12.9
|
||||
C14.1,12.9,14.1,12.9,14,12.9h3.6c0.2,0,0.3,0.1,0.4,0.2l5.9,10.6c0,0.1,0,0.1,0.1,0.2c0-0.1,0-0.1,0.1-0.2L30,13.2
|
||||
c0.1-0.1,0.2-0.2,0.4-0.2h3.5c0.3,0,0.5,0.4,0.4,0.7L28.5,24l5.8,10.4c0.2,0.3-0.1,0.7-0.4,0.7h-3.5c-0.2,0-0.3-0.1-0.4-0.2
|
||||
l-5.9-10.6c0-0.1,0-0.1-0.1-0.2c0,0.1,0,0.1-0.1,0.2L18,34.8c-0.1,0.1-0.2,0.2-0.4,0.2h-3.5c-0.3,0-0.6-0.4-0.4-0.7L19.5,24
|
||||
l-5.8-10.4C13.6,13.4,13.8,13,14,12.9L14,12.9z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1372.201 1372.684"><path fill="#00979D" stroke="#81C9CB" stroke-width=".932" stroke-miterlimit="10" d="M1371.701 686.024c0 378.658-306.972 685.605-685.549 685.605C307.451 1371.629.5 1064.682.5 686.024.5 307.455 307.451.483 686.152.483c378.594.001 685.549 306.972 685.549 685.541z"/><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="-16.3" y1="16.071" x2="1354.901" y2="16.071" gradientTransform="matrix(1 0 0 -1 16.8 702.696)"><stop offset=".117" stop-color="#fff" stop-opacity="0"/><stop offset=".252" stop-color="#c0d1d3" stop-opacity=".153"/><stop offset=".387" stop-color="#91b3b7" stop-opacity=".306"/><stop offset=".52" stop-color="#6d9fa3" stop-opacity=".457"/><stop offset=".65" stop-color="#4d9195" stop-opacity=".604"/><stop offset=".776" stop-color="#30888b" stop-opacity=".746"/><stop offset=".895" stop-color="#148386" stop-opacity=".881"/><stop offset="1" stop-color="#008184"/></linearGradient><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="-16.8" y1="16.071" x2="1355.401" y2="16.071" gradientTransform="matrix(1 0 0 -1 16.8 702.696)"><stop offset="0" stop-color="#fff" stop-opacity="0"/><stop offset=".153" stop-color="#c0d1d3" stop-opacity=".153"/><stop offset=".306" stop-color="#91b3b7" stop-opacity=".306"/><stop offset=".457" stop-color="#6d9fa3" stop-opacity=".457"/><stop offset=".604" stop-color="#4d9195" stop-opacity=".604"/><stop offset=".746" stop-color="#30888b" stop-opacity=".746"/><stop offset=".881" stop-color="#148386" stop-opacity=".881"/><stop offset="1" stop-color="#008184"/></linearGradient><path opacity=".5" fill="url(#a)" stroke="url(#b)" stroke-miterlimit="10" d="M1371.701 686.595c0 378.65-306.972 685.606-685.549 685.606C307.451 1372.201.5 1065.23.5 686.595.5 308.019 307.451 1.048 686.152 1.048c378.594.016 685.549 306.97 685.549 685.547z"/><g fill="#FFF"><path d="M947.959 931.196c-12.909 0-26.127-.929-39.127-2.864-108.978-15.554-181.848-93.822-222.665-153.989-40.946 60.166-113.811 138.512-222.74 154.045a275.864 275.864 0 0 1-39.133 2.785c-67.753 0-131.358-25.217-179.201-71.003-48.299-46.165-74.951-108.114-74.951-174.171 0-66.14 26.651-128.004 75.021-174.253 47.797-45.793 111.449-70.936 179.231-70.936 12.918 0 26.067.928 39.023 2.783 108.932 15.535 181.794 93.813 222.743 153.99 40.825-60.177 113.689-138.432 222.658-153.99 13-1.863 26.148-2.783 39.066-2.783 67.753 0 131.401 25.208 179.197 70.936 48.345 46.249 74.937 108.113 74.937 174.253 0 66.057-26.524 128.006-74.868 174.171-47.881 45.785-111.434 71.026-179.191 71.026M734.42 686.024c21.283 40.534 84.067 141.676 186.692 156.375 8.984 1.236 18.028 1.923 26.839 1.923 92.185 0 167.225-71.002 167.225-158.322s-75.023-158.321-167.291-158.321c-8.812 0-17.853.629-26.753 1.921-102.644 14.664-165.428 115.806-186.712 156.424M424.393 527.702c-92.308 0-167.36 70.998-167.36 158.321 0 87.305 75.021 158.322 167.245 158.322 8.852 0 17.897-.688 26.879-1.922 102.629-14.697 165.394-115.783 186.689-156.375-21.237-40.535-84.061-141.761-186.689-156.376-8.877-1.341-17.945-1.97-26.764-1.97"/><path d="M354.37 662.051h152.625v49.181H354.37zM1016.484 662.051h-51.671v-51.747h-49.348v51.747h-51.648v49.181h51.648v51.737h49.348v-51.737h51.671z"/></g></svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#F03C2E;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M62.8,29.2L34.9,1.2c-1.6-1.6-4.2-1.6-5.8,0c0,0,0,0,0,0L23.2,7l7.4,7.4c1.7-0.6,3.7-0.2,5,1.2
|
||||
c1.3,1.3,1.8,3.3,1.2,5.1l7.1,7.1c1.7-0.6,3.7-0.2,5.1,1.2c1.9,1.9,1.9,5,0,6.9c-1.9,1.9-5,1.9-6.9,0c-1.4-1.4-1.8-3.6-1.1-5.3
|
||||
l-6.6-6.6v17.4c0.5,0.2,0.9,0.6,1.3,0.9c1.9,1.9,1.9,5,0,6.9s-5,1.9-6.9,0l0,0c-1.9-1.9-1.9-5,0-6.9c0,0,0,0,0,0
|
||||
c0.5-0.5,1-0.8,1.6-1.1V23.6c-0.6-0.2-1.1-0.6-1.6-1.1c-1.4-1.4-1.8-3.5-1.1-5.4l-7.3-7.3L1.2,29c-1.6,1.6-1.6,4.2,0,5.8
|
||||
c0,0,0,0,0,0l27.9,27.9c1.6,1.6,4.2,1.6,5.8,0c0,0,0,0,0,0L62.8,35C64.4,33.4,64.4,30.8,62.8,29.2C62.8,29.2,62.8,29.2,62.8,29.2"
|
||||
/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1017 B |
|
After Width: | Height: | Size: 159 KiB |
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#283593;}
|
||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#5C6BC0;}
|
||||
.st2{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
||||
.st3{fill-rule:evenodd;clip-rule:evenodd;fill:#3949AB;}
|
||||
</style>
|
||||
<path class="st0" d="M22.7,0.3c0.8-0.4,1.7-0.4,2.5,0C29.1,2.5,40.6,9,44.5,11.1c0.8,0.4,1.3,1.2,1.3,2.1c0,4.3,0,17.3,0,21.6
|
||||
c0,0.9-0.5,1.7-1.3,2.1c-3.8,2.2-15.4,8.6-19.2,10.8c-0.8,0.4-1.7,0.4-2.5,0C18.9,45.5,7.4,39,3.5,36.9c-0.8-0.4-1.3-1.2-1.3-2.1
|
||||
c0-4.3,0-17.3,0-21.6c0-0.9,0.5-1.7,1.3-2.1C7.4,9,18.9,2.5,22.7,0.3z"/>
|
||||
<path class="st1" d="M2.6,35.9c-0.3-0.4-0.3-0.8-0.3-1.3c0-4.3,0-17.2,0-21.4c0-0.9,0.5-1.7,1.3-2.1C7.4,8.9,18.9,2.5,22.7,0.3
|
||||
c0.8-0.4,1.8-0.4,2.6,0C29.1,2.5,40.6,8.9,44.4,11c0.3,0.2,0.5,0.4,0.8,0.7L2.6,35.9z"/>
|
||||
<path class="st2" d="M24,8c8.8,0,16,7.2,16,16s-7.2,16-16,16S8,32.8,8,24S15.2,8,24,8z M24,16c4.4,0,8,3.6,8,8c0,4.4-3.6,8-8,8
|
||||
s-8-3.6-8-8C16,19.6,19.6,16,24,16z"/>
|
||||
<path class="st3" d="M45.1,11.7c0.6,0.6,0.6,1.4,0.6,2c0,4.3,0,16.7,0,21c0,0.5-0.1,0.9-0.4,1.3L23.5,24L45.1,11.7z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
.st1{fill:#466ACD;}
|
||||
.st2{fill:#53A526;}
|
||||
.st3{fill:#71AEFD;}
|
||||
.st4{fill:#81D837;}
|
||||
</style>
|
||||
<path class="st0" d="M7.2,0h33.6c4,0,7.2,3.2,7.2,7.2v33.6c0,4-3.2,7.2-7.2,7.2H7.2c-4,0-7.2-3.2-7.2-7.2V7.2C0,3.2,3.2,0,7.2,0z"/>
|
||||
<path class="st1" d="M4.5,10C12.2-0.7,27.2-3.2,38,4.5C44.3,9,48,16.3,48,24c0,12.7-13.3,10.9-13.3,10.9c5.9-6,5.9-15.7-0.1-21.6
|
||||
c-4.4-4.4-11-5.6-16.7-3.2C10.5,5.8,4.5,10,4.5,10"/>
|
||||
<path class="st2" d="M43.6,37.9c-7.7,10.8-22.7,13.2-33.5,5.5c-6.3-4.5-10-11.8-10-19.5C0.1,11.2,13.4,13,13.4,13
|
||||
c-5.9,6-5.9,15.7,0.1,21.6c4.4,4.4,11,5.6,16.7,3.2C37.6,42.1,43.6,37.9,43.6,37.9"/>
|
||||
<path class="st3" d="M20,12c6.6-2.3,13.8,1.3,16.1,7.9c1.8,5.3,0,11.1-4.5,14.3c-3.5,0.3-6.4-10.1-6.8-11.7S22.9,15.1,20,12"/>
|
||||
<path class="st4" d="M16.5,34.2c-5.7-4.1-6.9-12-2.8-17.7c0.8-1.1,1.8-2.1,3-2.9c3.4,1.8,5.5,8.4,5.5,8.4S17.2,31.6,16.5,34.2
|
||||
M19.6,35.9c0,0,3.6,1.7,8.3,0.2c-2.8-2.3-4.5-10.4-5-11.5C22.3,25.9,18.9,32.7,19.6,35.9"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
|
||||
<path d="M34.4,7.8c-1.3,0.4-2.6,0.9-3.9,1.5l-3.6,2c-2.4,1.4-6.5,1.8-7.6,0.7c-1-1-0.9-1.4,0.2-2c0.6-0.3,1.9-0.4,3.5-0.2
|
||||
c2.1,0.3,2.6,0.2,2.6-0.3c0-0.8-2.2-1.6-3.8-1.3c-3.5,0.5-4,0.7-4.4,1.2c-1,1.3-0.9,2.5,0.4,3.7c2.9,2.7,7.8,2.6,13.6-0.2
|
||||
c4.8-2.3,7.1-3,10.3-2.9c2.8,0,4.3,0.6,4.3,1.8c0,1.8-5.6,2.5-7.3,0.9c-0.9-0.8-1-0.9-2-0.2c-1.3,0.8-1.3,1.2-0.3,2.1
|
||||
c1,1,2.3,1.3,5,1.3c4.6,0.1,8.1-1.6,8.1-3.9C49.5,8,41.7,5.9,34.4,7.8L34.4,7.8z M5.9,11.7c-3.2,1.6-3.6,3.3-1.5,5
|
||||
c1.7,1.5,5,2.6,10.4,3.7c6.4,1.3,9.8,1.5,19.7,1.5c12.3,0,21.2-1.4,26.6-4.1c3.3-1.7,3.7-4.1,0.8-5.8c-1.3-0.7-1.3-0.7-1,0.1
|
||||
c0.4,1.3-0.1,2.2-1.7,3.2c-1.6,1-6.8,2.4-10.1,2.8c-1.2,0.1-2.6,0.3-3.2,0.5c-2.3,0.6-20.6,0.5-24.9-0.1c-7.2-1-12.2-2.6-13.7-4.4
|
||||
c-0.8-1-0.8-1.2-0.2-2.1C8,10.8,7.7,10.8,5.9,11.7L5.9,11.7z M3.7,21.2c0.1,1,0.7,3.3,1.2,5.1l1,3.3L3.6,32c-4.8,5.2-4.8,12,0,16.1
|
||||
c2.8,2.4,7.5,2.9,10.6,1.2c0.7-0.4,0.7-0.5-0.4-0.5c-2.3,0-6-2.5-7.7-5.2c-0.9-1.4-1.6-4.6-1.4-6.2c0.2-1.4,1.7-4.6,2.2-4.6
|
||||
c0.2,0,0.7,1,1.3,2.1c0.6,1.2,2.5,4.2,4.3,6.9c3,4.2,5.3,8.5,5.3,10c0,1.1,3.4,3.2,6.6,4.2c2.9,0.9,4.2,1.1,9.1,1.1
|
||||
c10.5,0,15.4-2.3,17-7.8c0.4-1.3,1.6-3.6,2.6-5c5.3-7.4,6.4-9.1,8.2-14.3c0.6-1.7,1.4-4.4,1.8-6.1l0.9-3.6c0.1-0.3-0.5-0.1-1.4,0.5
|
||||
c-2.3,1.6-6.1,2.8-10.8,3.5c-0.9,0.1-2,0.3-2.5,0.4c-4.2,0.8-21.3,1.2-27.4,0.5c-8.6-1-15.1-2.7-17.5-4.8l-1-0.9L3.7,21.2z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#00549D;}
|
||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#0086D4;}
|
||||
.st2{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
||||
.st3{fill-rule:evenodd;clip-rule:evenodd;fill:#0075C0;}
|
||||
</style>
|
||||
<path class="st0" d="M22.7,0.3c0.8-0.4,1.7-0.4,2.5,0C29.1,2.5,40.6,9,44.5,11.1c0.8,0.4,1.3,1.2,1.3,2.1c0,4.3,0,17.3,0,21.6
|
||||
c0,0.9-0.5,1.7-1.3,2.1c-3.8,2.2-15.4,8.6-19.2,10.8c-0.8,0.4-1.7,0.4-2.5,0C18.9,45.5,7.4,39,3.5,36.9c-0.8-0.4-1.3-1.2-1.3-2.1
|
||||
c0-4.3,0-17.3,0-21.6c0-0.9,0.5-1.7,1.3-2.1C7.4,9,18.9,2.5,22.7,0.3z"/>
|
||||
<path class="st1" d="M2.6,35.9c-0.3-0.4-0.3-0.8-0.3-1.3c0-4.3,0-17.2,0-21.4c0-0.9,0.5-1.7,1.3-2.1C7.4,8.9,18.9,2.5,22.7,0.3
|
||||
c0.8-0.4,1.8-0.4,2.6,0C29.1,2.5,40.6,8.9,44.4,11c0.3,0.2,0.5,0.4,0.8,0.7L2.6,35.9z"/>
|
||||
<path class="st2" d="M24,8c8.8,0,16,7.2,16,16s-7.2,16-16,16S8,32.8,8,24S15.2,8,24,8z M24,16c4.4,0,8,3.6,8,8c0,4.4-3.6,8-8,8
|
||||
s-8-3.6-8-8C16,19.6,19.6,16,24,16z"/>
|
||||
<path class="st3" d="M45.1,11.7c0.6,0.6,0.6,1.4,0.6,2c0,4.3,0,16.7,0,21c0,0.5-0.1,0.9-0.4,1.3L23.5,24L45.1,11.7z"/>
|
||||
<path class="st2" d="M32,20.6h2.3v6.9H32V20.6z M40,20.6h2.3v6.9H40V20.6z"/>
|
||||
<path class="st2" d="M29.7,22.9h6.9v2.3h-6.9V22.9z M37.7,22.9h6.9v2.3h-6.9V22.9z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#37474F;}
|
||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#546E7A;}
|
||||
.st2{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
||||
.st3{fill-rule:evenodd;clip-rule:evenodd;fill:#455A64;}
|
||||
</style>
|
||||
<path class="st0" d="M22.7,0.3c0.8-0.4,1.7-0.4,2.5,0C29.1,2.5,40.6,9,44.5,11.1c0.8,0.4,1.3,1.2,1.3,2.1c0,4.3,0,17.3,0,21.6
|
||||
c0,0.9-0.5,1.7-1.3,2.1c-3.8,2.2-15.4,8.6-19.2,10.8c-0.8,0.4-1.7,0.4-2.5,0C18.9,45.5,7.4,39,3.5,36.9c-0.8-0.4-1.3-1.2-1.3-2.1
|
||||
c0-4.3,0-17.3,0-21.6c0-0.9,0.5-1.7,1.3-2.1C7.4,9,18.9,2.5,22.7,0.3z"/>
|
||||
<path class="st1" d="M2.6,35.9c-0.3-0.4-0.3-0.8-0.3-1.3c0-4.3,0-17.2,0-21.4c0-0.9,0.5-1.7,1.3-2.1C7.4,8.9,18.9,2.5,22.7,0.3
|
||||
c0.8-0.4,1.8-0.4,2.6,0C29.1,2.5,40.6,8.9,44.4,11c0.3,0.2,0.5,0.4,0.8,0.7L2.6,35.9z"/>
|
||||
<path class="st2" d="M24,8c8.8,0,16,7.2,16,16s-7.2,16-16,16S8,32.8,8,24S15.2,8,24,8z M24,16c4.4,0,8,3.6,8,8c0,4.4-3.6,8-8,8
|
||||
s-8-3.6-8-8C16,19.6,19.6,16,24,16z"/>
|
||||
<path class="st3" d="M45.1,11.7c0.6,0.6,0.6,1.4,0.6,2c0,4.3,0,16.7,0,21c0,0.5-0.1,0.9-0.4,1.3L23.5,24L45.1,11.7z"/>
|
||||
<path class="st2" d="M35.4,19.4h1.1v9.1h-1.1V19.4z M38.9,19.4H40v9.1h-1.1V19.4z"/>
|
||||
<path class="st2" d="M33.1,25.1h9.1v1.1h-9.1V25.1z M33.1,21.7h9.1v1.1h-9.1V21.7z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_1_);}
|
||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_2_);}
|
||||
.st2{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_3_);}
|
||||
.st3{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_4_);}
|
||||
.st4{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_5_);}
|
||||
.st5{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_6_);}
|
||||
.st6{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_7_);}
|
||||
.st7{fill-rule:evenodd;clip-rule:evenodd;fill:#330A4C;fill-opacity:0.3163;}
|
||||
.st8{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
||||
.st9{fill-rule:evenodd;clip-rule:evenodd;fill:#EDEDED;fill-opacity:0.6033;}
|
||||
</style>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="1940.9738" y1="-1516.6469" x2="1933.767" y2="-1812.2878" gradientTransform="matrix(0.1297 0 0 -0.2 -219.2176 -298.4317)">
|
||||
<stop offset="0" style="stop-color:#D9D8DC"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0.3853"/>
|
||||
</linearGradient>
|
||||
<path class="st0" d="M33.8,0.2c-4.6,1.6-9.1,6.5-13.5,14.4c-6.5,12-14.9,29-3.3,42.4c5.3,6.2,14.2,9.9,25.7,4.1
|
||||
C52,56.4,54.6,43,51.3,36.7c-6.9-13-13.9-16.2-15.7-24.3C34.3,7,33.7,3,33.8,0.2z"/>
|
||||
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="2233.2703" y1="-1276.9762" x2="2174.3054" y2="-1533.9711" gradientTransform="matrix(0.1142 0 0 -0.2271 -223.3247 -286.1413)">
|
||||
<stop offset="0" style="stop-color:#8D67AF;stop-opacity:0.6719"/>
|
||||
<stop offset="1" style="stop-color:#9F8DAF"/>
|
||||
</linearGradient>
|
||||
<path class="st1" d="M33.8,0c-4.7,1.7-9.2,6.5-13.5,14.4c-6.5,11.9-14.9,29-3.3,42.4c5.3,6.2,14,8.2,18.9,4.5
|
||||
c3.1-2.4,5.3-4.7,6.5-9.5c1.4-5.4,0.3-12.6-0.4-16c-0.9-4.2-1.2-8.8-0.9-13.9c-0.1-0.1-0.2-0.2-0.2-0.3c-2.5-3.1-4.5-5.8-5.3-9.5
|
||||
C34.3,6.9,33.7,2.8,33.8,0z"/>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="2087.4304" y1="-1487.6425" x2="2087.4304" y2="-1681.0366" gradientTransform="matrix(0.1227 0 0 -0.2115 -221.0835 -293.2332)">
|
||||
<stop offset="0" style="stop-color:#26053D;stop-opacity:0.7616"/>
|
||||
<stop offset="1" style="stop-color:#B7B4B4;stop-opacity:0.2777"/>
|
||||
</linearGradient>
|
||||
<path class="st2" d="M29.9,2.1c-4.4,3.4-7.6,9.2-9.7,17.3c-3.2,12.2-3.5,23.4-2.4,29.9c2.2,12.6,13.4,17.4,25,11.5
|
||||
c7.1-3.6,10.1-11.4,9.9-19.8c-0.2-8.7-17-18.6-20-25.9C30.7,10.2,29.8,5.9,29.9,2.1z"/>
|
||||
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="1214.1205" y1="-2478.5728" x2="1303.568" y2="-2658.5779" gradientTransform="matrix(0.1848 0 0 -0.1404 -204.6236 -325.4247)">
|
||||
<stop offset="0" style="stop-color:#91739F;stop-opacity:0.4595"/>
|
||||
<stop offset="1" style="stop-color:#32054F;stop-opacity:0.5399"/>
|
||||
</linearGradient>
|
||||
<path class="st3" d="M40.9,24.9c5.2,6.7,6.4,11.4,3.4,14c-4.4,3.9-15.2,6.5-21.9,1.7c-4.5-3.2-6.2-10-5.1-20.4
|
||||
c-1.8,3.9-3.4,7.8-4.7,11.7S11,40,11.5,44.3c1.6,3.2,5.5,5.4,11.7,6.5c9.3,1.6,18.1,0.8,24-2.1c3.9-2,5.8-4,5.6-5.9
|
||||
c0.1-2.9-0.8-5.7-2.7-8.3C48.1,31.9,45.1,28.7,40.9,24.9z"/>
|
||||
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="1828.0237" y1="-1991.7688" x2="1669.046" y2="-1821.9299" gradientTransform="matrix(0.1418 0 0 -0.1829 -216.0028 -306.178)">
|
||||
<stop offset="0" style="stop-color:#463D49;stop-opacity:0.3312"/>
|
||||
<stop offset="1" style="stop-color:#340A50;stop-opacity:0.8214"/>
|
||||
</linearGradient>
|
||||
<path class="st4" d="M20.5,18.2c0,4.8,1.2,9.4,3.7,13.8c3.8,6.5,8.2,13,14.9,18.3c4.4,3.6,8,4.7,10.6,3.5c-2.2,3.9-4.5,5.8-6.9,5.7
|
||||
c-3.7-0.1-8.1-1.7-15.3-10.3c-4.8-5.7-8-11.2-9.8-16.3c0.3-2,0.6-4.1,0.9-6.1S19.5,21.9,20.5,18.2z"/>
|
||||
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="2469.26" y1="-1221.6234" x2="2421.949" y2="-1387.8733" gradientTransform="matrix(0.106 0 0 -0.2448 -225.5084 -278.1429)">
|
||||
<stop offset="0" style="stop-color:#715383;stop-opacity:0.1452"/>
|
||||
<stop offset="1" style="stop-color:#F4F4F4;stop-opacity:0.2336"/>
|
||||
</linearGradient>
|
||||
<path class="st5" d="M31.8,24.8c0.4,3.9,1.9,10.2,0,14.4S20.9,51,23.3,57.7c2.5,6.7,8.5,5.2,12.3,2.1c3.8-3.1,5.8-8.1,6.2-11.6
|
||||
c0.4-3.5-1.1-10.3-1.6-16.2c-0.3-3.9-0.1-7.3,0.7-10.1l-1.2-1.5l-6.8-2C31.9,20.1,31.5,22.2,31.8,24.8z"/>
|
||||
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="2930.4299" y1="-1023.4922" x2="2779.3169" y2="-995.0559" gradientTransform="matrix(9.173097e-02 0 0 -0.2828 -229.2815 -260.9361)">
|
||||
<stop offset="0" style="stop-color:#A5A1A8;stop-opacity:0.3561"/>
|
||||
<stop offset="1" style="stop-color:#370C50;stop-opacity:0.582"/>
|
||||
</linearGradient>
|
||||
<path class="st6" d="M34.2,5.3c-2.2,0.9-4.3,2.8-6.3,5.5c-3,4.1-4.5,6.6-3.4,14.8c0.7,5.5,1.3,10.5,1.6,15.1l9.5-27.7
|
||||
c-0.4-1.4-0.6-2.7-0.9-3.8S34.4,6.8,34.2,5.3z"/>
|
||||
<path class="st7" d="M35.7,13c-2.4,1.4-4.3,4.3-5.6,8.7s-2.6,10.5-3.7,18.4c1.5-5,2.5-8.6,2.9-10.9c0.7-3.4,1-8.1,2.9-11.4
|
||||
C33.5,15.7,34.7,14.1,35.7,13z"/>
|
||||
<path class="st8" d="M24.5,59.9c4,0.6,6.1,1.1,6.3,1.5c0.3,0.7-0.5,1.3-2.7,0.9C26.5,62,25.4,61.3,24.5,59.9z"/>
|
||||
<path class="st9" d="M26.5,5.3c-2.2,2.6-4.1,5.4-5.7,8.3s-2.8,5.1-3.4,6.6C17.1,21.3,17,22.9,17,25c0,2.1,0.2,4.4,0.5,7
|
||||
c0.3-5,1.3-9.9,2.9-14.7S24.1,8.6,26.5,5.3z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.3 KiB |
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.3.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 256 225" style="enable-background:new 0 0 256 225;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
.st1{fill:#A90533;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M0,0.2h256v224.5H0V0.2z"/>
|
||||
</g>
|
||||
<path class="st1" d="M44.4,160.2c-18.8-20-29.9-47.5-29.8-80.4c0-29.1,9.1-54.1,24.8-73.1l0,0h-33v153.6L44.4,160.2z M218.4,160.2
|
||||
c8.1-8.7,15.4-18.9,22-30.6l-36.6-18.3c-12.8,20.9-31.6,40.1-57.6,40.2c-37.8-0.1-52.6-32.4-52.6-74h141.2c0.2-4.7,0.2-6.9,0-9.1
|
||||
c0.9-24.8-5.6-45.6-17.6-61.8l-0.1,0h31.8v153.6L218.4,160.2L218.4,160.2L218.4,160.2z M96,41.8c1.6-18.8,16.4-31.5,33.8-31.5
|
||||
c17.5,0,30.2,12.7,30.6,31.5H96L96,41.8z"/>
|
||||
<path d="M26.5,217.8v-6.4H14.1v-10.1H26v-6.4H14.1v-8.7h12.3v-6.4H6.8v37.9L26.5,217.8z M59.8,201.8c4.9-0.7,7.6-5.6,7.8-10.5
|
||||
c-0.2-8.1-5.4-11.4-12.8-11.4H44.8v37.9h7.3v-15.1l9.1,15.1h9.1L59.8,201.8z M52.1,185.8H53c4,0.1,7,1.1,6.9,5.9
|
||||
c0.1,4.5-2.8,5.7-6.9,5.5h-0.9V185.8z M103.7,211.4H93.2v-31.5h-7.3v37.9h17.8L103.7,211.4z M141.2,210l3.2,7.8h7.8L138,178.9h-5.9
|
||||
L117,217.8h7.8l3.2-7.8H141.2z M139.4,204.1h-9.1l4.1-14.2L139.4,204.1z M199.3,218.7v-38.9h-7.8v25.6l-20.1-26.5h-5.5v38.9h7.8
|
||||
v-25.6l20.1,26.5L199.3,218.7z M231.3,197.7v5.9h8.2c-0.2,4.8-4.1,8.8-8.7,8.7c-7.3,0.1-10.9-6.9-11-13.3c0.1-6.3,3.6-13.6,11-13.7
|
||||
c3.8,0.1,7.1,2.7,8.7,5.9l6.4-3.2c-2.8-5.9-8.5-9.2-15.1-9.1c-11.3-0.1-18.6,9.3-18.7,20.1c0.1,10.6,7.2,20,18.3,20.1
|
||||
c12-0.1,17.5-9.7,17.4-20.6v-0.9L231.3,197.7L231.3,197.7z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |