Signed-off-by: Francesco Torchia <francesco.torchia@suse.com>
This commit is contained in:
Francesco Torchia 2024-11-13 11:30:25 +01:00
parent 0e354eecfa
commit 1cb57b8998
No known key found for this signature in database
GPG Key ID: E6D011B7415D4393
510 changed files with 6937 additions and 70339 deletions

View File

@ -1,15 +0,0 @@
assets/fonts
coverage
.nyc_output
node_modules/
.npm
.eslintcache
.env
.cache
.next
.nuxt
dist
dist-pkg
.DS_Store
pkg/harvester/index.ts
pkg/harvester/store/*

View File

@ -1,225 +0,0 @@
module.exports = {
env: {
browser: true,
node: true
},
globals: {
NodeJS: true,
Timer: true
},
plugins: [
'jest',
'@typescript-eslint'
],
extends: [
'standard',
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:vue/vue3-recommended',
],
rules: {
'semi-spacing': 'off',
'space-in-parens': 'off',
'array-bracket-spacing': 'warn',
'arrow-parens': 'warn',
'arrow-spacing': [
'warn',
{
before: true,
after: true
}
],
'block-spacing': [
'warn',
'always'
],
'brace-style': [
'warn',
'1tbs'
],
'comma-dangle': [
'warn',
'only-multiline'
],
'comma-spacing': 'warn',
indent: [
'warn',
2
],
'keyword-spacing': 'warn',
'newline-per-chained-call': [
'warn',
{ ignoreChainWithDepth: 4 }
],
'no-trailing-spaces': 'warn',
'func-call-spacing': [
'warn',
'never'
],
'wrap-iife': 'off',
'lines-between-class-members': [
'warn',
'always',
{ exceptAfterSingleLine: true }
],
'multiline-ternary': [
'warn',
'never'
],
'no-whitespace-before-property': 'warn',
'object-curly-spacing': [
'warn',
'always'
],
'object-property-newline': 'warn',
'object-shorthand': 'warn',
'padded-blocks': [
'warn',
'never'
],
'quote-props': 'warn',
'rest-spread-spacing': 'warn',
semi: [
'warn',
'always'
],
'space-before-function-paren': [
'warn',
'never'
],
'space-infix-ops': 'warn',
'spaced-comment': 'warn',
'switch-colon-spacing': 'warn',
'template-curly-spacing': [
'warn',
'always'
],
'yield-star-spacing': [
'warn',
'both'
],
'key-spacing': [
'warn',
{
align: {
beforeColon: false,
afterColon: true,
on: 'value',
mode: 'strict'
},
multiLine: {
beforeColon: false,
afterColon: true
}
}
],
'object-curly-newline': [
'warn',
{
ObjectExpression: {
multiline: true,
minProperties: 3
},
ObjectPattern: {
multiline: true,
minProperties: 4
},
ImportDeclaration: {
multiline: true,
minProperties: 5
},
ExportDeclaration: {
multiline: true,
minProperties: 3
}
}
],
'padding-line-between-statements': [
'warn',
{
blankLine: 'always',
prev: '*',
next: 'return'
},
{
blankLine: 'always',
prev: 'function',
next: 'function'
},
{
blankLine: 'always',
prev: [
'const',
'let',
'var'
],
next: '*'
},
{
blankLine: 'any',
prev: [
'const',
'let',
'var'
],
next: [
'const',
'let',
'var'
]
}
],
quotes: [
'warn',
'single',
{
avoidEscape: true,
allowTemplateLiterals: true
}
],
'space-unary-ops': [
'warn',
{
words: true,
nonwords: false
}
],
'vue/one-component-per-file': 'off',
'vue/no-deprecated-slot-attribute': 'off',
'vue/require-explicit-emits': 'error',
'vue/v-on-event-hyphenation': 'off'
},
overrides: [
{
files: [
'**/*.{js,ts,vue}'
],
rules: {
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/ban-types': 'off'
}
},
{
files: [
'**/*.test.{js,ts}',
'**/__tests__/**/*.{js,ts}',
'**/__mocks__/**/*.{js,ts}'
],
rules: {
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'jest/prefer-expect-assertions': 'off'
},
extends: [
'plugin:jest/all'
]
},
{
files: [
'**/*.{js,vue}'
],
rules: { '@typescript-eslint/explicit-module-boundary-types': 'off' }
}
]
};

View File

@ -1,244 +0,0 @@
module.exports = {
root: true,
env: {
browser: true,
node: true
},
globals: {
NodeJS: true,
Timer: true
},
extends: [
'.eslintrc.default.js'
],
rules: {
'dot-notation': 'off',
'generator-star-spacing': 'off',
'guard-for-in': 'off',
'linebreak-style': 'off',
'new-cap': 'off',
'no-empty': 'off',
'no-extra-boolean-cast': 'off',
'no-new': 'off',
'no-plusplus': 'off',
'no-useless-escape': 'off',
'nuxt/no-cjs-in-config': 'off',
'semi-spacing': 'off',
'space-in-parens': 'off',
strict: 'off',
'unicorn/no-new-buffer': 'off',
'vue/html-self-closing': 'off',
'vue/multi-word-component-names': 'off',
'vue/no-reserved-component-names': 'off',
'vue/no-deprecated-v-on-native-modifier': 'off',
'vue/no-useless-template-attributes': 'off',
'vue/no-unused-components': 'warn',
'vue/no-v-html': 'error',
'wrap-iife': 'off',
'array-bracket-spacing': 'warn',
'arrow-parens': 'warn',
'arrow-spacing': [
'warn',
{
before: true,
after: true
}
],
'block-spacing': [
'warn',
'always'
],
'brace-style': [
'warn',
'1tbs'
],
'comma-dangle': [
'warn',
'only-multiline'
],
'comma-spacing': 'warn',
curly: 'warn',
eqeqeq: 'warn',
'func-call-spacing': [
'warn',
'never'
],
'implicit-arrow-linebreak': 'warn',
indent: [
'warn',
2
],
'keyword-spacing': 'warn',
'lines-between-class-members': [
'warn',
'always',
{ exceptAfterSingleLine: true }
],
'multiline-ternary': [
'warn',
'never'
],
'newline-per-chained-call': [
'warn',
{ ignoreChainWithDepth: 4 }
],
'no-caller': 'warn',
'no-cond-assign': [
'warn',
'except-parens'
],
'no-console': 'warn',
'no-debugger': 'warn',
'no-eq-null': 'warn',
'no-eval': 'warn',
'no-trailing-spaces': 'warn',
'no-undef': 'warn',
'no-unused-vars': 'warn',
'no-whitespace-before-property': 'warn',
'object-curly-spacing': [
'warn',
'always'
],
'object-property-newline': 'warn',
'object-shorthand': 'warn',
'padded-blocks': [
'warn',
'never'
],
'prefer-arrow-callback': 'warn',
'prefer-template': 'warn',
'quote-props': 'warn',
'rest-spread-spacing': 'warn',
semi: [
'warn',
'always'
],
'space-before-function-paren': [
'warn',
'never'
],
'space-infix-ops': 'warn',
'spaced-comment': 'warn',
'switch-colon-spacing': 'warn',
'template-curly-spacing': [
'warn',
'always'
],
'yield-star-spacing': [
'warn',
'both'
],
'key-spacing': [
'warn',
{
align: {
beforeColon: false,
afterColon: true,
on: 'value',
mode: 'minimum'
},
multiLine: {
beforeColon: false,
afterColon: true
}
}
],
'object-curly-newline': [
'warn',
{
ObjectExpression: {
multiline: true,
minProperties: 3
},
ObjectPattern: {
multiline: true,
minProperties: 4
},
ImportDeclaration: {
multiline: true,
minProperties: 5
},
ExportDeclaration: {
multiline: true,
minProperties: 3
}
}
],
'padding-line-between-statements': [
'warn',
{
blankLine: 'always',
prev: '*',
next: 'return'
},
{
blankLine: 'always',
prev: 'function',
next: 'function'
},
{
blankLine: 'always',
prev: [
'const',
'let',
'var'
],
next: '*'
},
{
blankLine: 'any',
prev: [
'const',
'let',
'var'
],
next: [
'const',
'let',
'var'
]
}
],
quotes: [
'warn',
'single',
{
avoidEscape: true,
allowTemplateLiterals: true
}
],
'space-unary-ops': [
'warn',
{
words: true,
nonwords: false
}
],
'vue/order-in-components': 'off',
'vue/no-lone-template': 'off',
'vue/v-slot-style': 'off',
'vue/component-tags-order': 'off',
'vue/no-mutating-props': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-this-alias': 'off',
'array-callback-return': 'off',
'vue/one-component-per-file': 'off',
'vue/no-deprecated-slot-attribute': 'off',
'vue/require-explicit-emits': 'off',
'vue/v-on-event-hyphenation': 'off'
},
overrides: [
{
files: [
'*.js'
],
rules: {
'prefer-regex-literals': 'off',
'vue/component-definition-name-casing': 'off',
'no-unreachable-loop': 'off',
'computed-property-spacing': 'off'
}
}
]
};

View File

@ -1,12 +0,0 @@
name: Run Lint
description: Run Lint
runs:
using: 'composite'
steps:
- name: Setup env
uses: ./.github/actions/setup
- name: Run linters
shell: bash
run: yarn lint

View File

@ -1,14 +0,0 @@
name: Setup UI Env
description: Setup node and install dependencies
runs:
using: 'composite'
steps:
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install packages
shell: bash
run: yarn install

View File

@ -1,19 +0,0 @@
<!-- This template is for Devs to give QA details before moving the issue To-Test -->
### Summary
### PR Checklists
- Do we need to backport this PR change to the [Harvester Dashboard](https://github.com/harvester/dashboard)?
- [ ] Yes, the relevant PR is at:
- Are backend engineers aware of UI changes?
- [ ] Yes, the backend owner is:
### Related Issue #
<!-- Define findings related to the feature or bug issue. -->
### Test screenshot/video
<!-- Attach screenshot or video of the changes and eventual comparison if you find it necessary -->
### Extra technical notes summary
<!-- Outline technical changes which may pass unobserved or may help to understand the process of solving the issue -->

View File

@ -1,34 +0,0 @@
name: Build and Release Extension Charts
on:
workflow_dispatch:
release:
types: [released]
defaults:
run:
shell: bash
working-directory: ./
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Run tests
uses: ./.github/actions/lint
build-extension-charts:
needs:
- lint
uses: rancher/dashboard/.github/workflows/build-extension-charts.yml@master
permissions:
actions: write
contents: write
deployments: write
pages: write
with:
target_branch: gh-pages
tagged_release: ${{ github.ref_name }}

View File

@ -1,21 +0,0 @@
name: Tests
on:
push:
branches:
- main
- 'release-*'
pull_request:
branches:
- main
- 'release-*'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Run tests
uses: ./.github/actions/lint

74
.gitignore vendored
View File

@ -1,74 +0,0 @@
# rancher shell
.shell
# compiled output
/dist
/dist-pkg
/tmp
/out-tsc
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# nyc test coverage
.nyc_output
# IDEs and editors
.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
# misc
.sass-cache
connect.lock
typings
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Dependency directories
node_modules/
jspm_packages/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
# System Files
.DS_Store
Thumbs.db

1
.nvmrc
View File

@ -1 +0,0 @@
20

View File

@ -1,9 +0,0 @@
{
"files.exclude": {
".ackrc": true,
".editorconfig": true,
".eslintcache": true,
".nyc_output": true,
"yarn-error.log": true
}
}

201
LICENSE
View File

@ -1,201 +0,0 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Binary file not shown.

26
assets/index.yaml Normal file
View File

@ -0,0 +1,26 @@
apiVersion: v1
entries:
harvester:
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Harvester
catalog.cattle.io/kube-version: '>= 1.16.0-0'
catalog.cattle.io/namespace: cattle-ui-plugin-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux, windows
catalog.cattle.io/rancher-version: '>= 2.10.0-0'
catalog.cattle.io/scope: management
catalog.cattle.io/ui-component: plugins
catalog.cattle.io/ui-extensions-version: '>= 3.0.0-0'
apiVersion: v2
appVersion: 1.0.0
created: "2024-11-13T11:27:26.937492322+01:00"
description: Rancher UI Extension for Harvester
digest: b691182ce8f2604ea9afa7457979a46bf479cc931e1b5a9edbd39976ca709394
icon: https://raw.githubusercontent.com/harvester/harvester-ui-extension/main/pkg/harvester/icon.svg
name: harvester
type: application
urls:
- assets/harvester/harvester-1.0.0.tgz
version: 1.0.0
generated: "2024-11-13T11:27:26.937153982+01:00"

View File

@ -1 +0,0 @@
module.exports = require('@rancher/shell/babel.config.js');

View File

@ -0,0 +1,19 @@
annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/kube-version: '>= 1.16.0-0'
catalog.cattle.io/namespace: cattle-ui-plugin-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux, windows
catalog.cattle.io/rancher-version: '>= 2.10.0-0'
catalog.cattle.io/scope: management
catalog.cattle.io/ui-component: plugins
catalog.cattle.io/display-name: Harvester
catalog.cattle.io/ui-extensions-version: '>= 3.0.0-0'
apiVersion: v2
appVersion: 1.0.0
description: Rancher UI Extension for Harvester
name: harvester
type: application
version: 1.0.0
icon: >-
https://raw.githubusercontent.com/harvester/harvester-ui-extension/main/pkg/harvester/icon.svg

View File

@ -0,0 +1,63 @@
{{/*
Expand the name of the chart.
*/}}
{{- define "extension-server.name" -}}
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
{{- end }}
{{/*
Create a default fully qualified app name.
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
If release name contains chart name it will be used as a full name.
*/}}
{{- define "extension-server.fullname" -}}
{{- if .Values.fullnameOverride }}
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
{{- else }}
{{- $name := default .Chart.Name .Values.nameOverride }}
{{- if contains $name .Release.Name }}
{{- .Release.Name | trunc 63 | trimSuffix "-" }}
{{- else }}
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }}
{{- end }}
{{- end }}
{{- end }}
{{/*
Create chart name and version as used by the chart label.
*/}}
{{- define "extension-server.chart" -}}
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
{{- end }}
{{/*
Common labels
*/}}
{{- define "extension-server.labels" -}}
helm.sh/chart: {{ include "extension-server.chart" . }}
{{ include "extension-server.selectorLabels" . }}
{{- if .Chart.AppVersion }}
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
{{- end }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- end }}
{{/*
Selector labels
*/}}
{{- define "extension-server.selectorLabels" -}}
app.kubernetes.io/name: {{ include "extension-server.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{- end }}
{{/*
Pkg annotations
*/}}
{{- define "extension-server.pluginMetadata" -}}
{{- with .Values.plugin.metadata }}
{{- range $key, $value := . }}
{{ $key }}: {{ $value | quote }}
{{- end }}
{{- end }}
{{- end }}

View File

@ -0,0 +1,14 @@
apiVersion: catalog.cattle.io/v1
kind: UIPlugin
metadata:
name: {{ include "extension-server.fullname" . }}
namespace: {{ .Release.Namespace }}
labels: {{ include "extension-server.labels" . | nindent 4 }}
spec:
plugin:
name: {{ include "extension-server.fullname" . }}
version: {{ (semver (default .Chart.AppVersion .Values.plugin.versionOverride)).Original }}
endpoint: https://raw.githubusercontent.com/harvester/harvester-ui-extension/release-test/extensions/harvester/1.0.0
noCache: {{ .Values.plugin.noCache }}
noAuth: {{ .Values.plugin.noAuth }}
metadata: {{ include "extension-server.pluginMetadata" . | indent 6 }}

View File

@ -0,0 +1,12 @@
nameOverride: ""
fullnameOverride: ""
plugin:
enabled: true
versionOverride: ""
noCache: false
noAuth: false
metadata:
catalog.cattle.io/display-name: Harvester
catalog.cattle.io/kube-version: ">= 1.16.0-0"
catalog.cattle.io/rancher-version: ">= 2.10.0-0"
catalog.cattle.io/ui-extensions-version: ">= 3.0.0-0"

View File

@ -0,0 +1,167 @@
plugin/harvester-1.0.0.umd.min.276.js
plugin/harvester-1.0.0.umd.min.276.js.map
plugin/harvester-1.0.0.umd.min.37.js
plugin/harvester-1.0.0.umd.min.37.js.map
plugin/harvester-1.0.0.umd.min.404.js
plugin/harvester-1.0.0.umd.min.404.js.map
plugin/harvester-1.0.0.umd.min.460.js
plugin/harvester-1.0.0.umd.min.460.js.map
plugin/harvester-1.0.0.umd.min.52.js
plugin/harvester-1.0.0.umd.min.52.js.map
plugin/harvester-1.0.0.umd.min.588.js
plugin/harvester-1.0.0.umd.min.588.js.map
plugin/harvester-1.0.0.umd.min.723.js
plugin/harvester-1.0.0.umd.min.723.js.map
plugin/harvester-1.0.0.umd.min.765.js
plugin/harvester-1.0.0.umd.min.765.js.map
plugin/harvester-1.0.0.umd.min.851.js
plugin/harvester-1.0.0.umd.min.851.js.map
plugin/harvester-1.0.0.umd.min.90.js
plugin/harvester-1.0.0.umd.min.90.js.map
plugin/harvester-1.0.0.umd.min.990.js
plugin/harvester-1.0.0.umd.min.990.js.map
plugin/harvester-1.0.0.umd.min.csv.js
plugin/harvester-1.0.0.umd.min.csv.js.map
plugin/harvester-1.0.0.umd.min.detail.js
plugin/harvester-1.0.0.umd.min.detail.js.map
plugin/harvester-1.0.0.umd.min.dialog.js
plugin/harvester-1.0.0.umd.min.dialog.js.map
plugin/harvester-1.0.0.umd.min.edit.js
plugin/harvester-1.0.0.umd.min.edit.js.map
plugin/harvester-1.0.0.umd.min.formatters.js
plugin/harvester-1.0.0.umd.min.formatters.js.map
plugin/harvester-1.0.0.umd.min.js
plugin/harvester-1.0.0.umd.min.js.map
plugin/harvester-1.0.0.umd.min.list.js
plugin/harvester-1.0.0.umd.min.list.js.map
plugin/harvester-1.0.0.umd.min.promptRemove.js
plugin/harvester-1.0.0.umd.min.promptRemove.js.map
plugin/harvester-1.0.0.umd.min.xterm.js
plugin/harvester-1.0.0.umd.min.xterm.js.map
plugin/img/activedirectory.0baa2998.svg
plugin/img/adfs.6e70726e.svg
plugin/img/aliyun-black.a9967561.svg
plugin/img/aliyun.d05bff3f.svg
plugin/img/aliyunecs.b57b715b.svg
plugin/img/aliyunecs-black.93dd5b27.svg
plugin/img/amazonec2.259f7435.svg
plugin/img/amazonec2-black.5d49a518.svg
plugin/img/amazoneks.44a8a254.svg
plugin/img/amazoneks-black.e3999509.svg
plugin/img/aws.988ade4f.svg
plugin/img/azure.7d30d447.svg
plugin/img/azuread.774efe5f.svg
plugin/img/azuread.7914bb78.svg
plugin/img/azuread-black.d272db7e.svg
plugin/img/azureaks.239d69fb.svg
plugin/img/azureaks-black.09cdc074.svg
plugin/img/azure-black.4bcdbe6b.svg
plugin/img/baidu.063c3510.svg
plugin/img/baidu-black.32fb0569.svg
plugin/img/banner.00f803a6.svg
plugin/img/banner.e66743c3.svg
plugin/img/cloudca-black.2c8fc541.svg
plugin/img/cloudca.fb088dd5.svg
plugin/img/cloudscale-black.87d94917.svg
plugin/img/cloudscale.dd348191.svg
plugin/img/custom.2ff19310.svg
plugin/img/custom.6f45244d.svg
plugin/img/decoration-cloud-big-white.4229596e.svg
plugin/img/decoration-ground.3f64fcbb.svg
plugin/img/digitalocean.b0aa5786.svg
plugin/img/digitalocean-black.3d5310a1.svg
plugin/img/email.b67ceff2.svg
plugin/img/equinix-black.0870820e.svg
plugin/img/equinix.c112c186.svg
plugin/img/error-desert-landscape.2a9d44f4.svg
plugin/img/exoscale.af115826.svg
plugin/img/favicon.20240f8a.png
plugin/img/freeipa.ef110cc0.svg
plugin/img/gcp.f7a1243c.svg
plugin/img/generic-catalog.1842a50e.svg
plugin/img/github.9c864145.svg
plugin/img/gke.4c1ecbcd.svg
plugin/img/gke-black.64bdd882.svg
plugin/img/google.789cf860.svg
plugin/img/googlegke.4c1ecbcd.svg
plugin/img/googlegke-black.64bdd882.svg
plugin/img/googleoauth.4619a2a5.svg
plugin/img/grafana.2db31bb8.svg
plugin/img/half-logo.1bc560ee.svg
plugin/img/harvester.0168283e.svg
plugin/img/harvester.20240f8a.png
plugin/img/huaweicce.22b4ecea.svg
plugin/img/huaweicce-black.d378b855.svg
plugin/img/icon.42954c0f.svg
plugin/img/import.ac396542.svg
plugin/img/jaeger.1c7d1266.svg
plugin/img/k3s-black.b4765216.svg
plugin/img/k3s.f0881505.svg
plugin/img/keycloak.ca7b4848.svg
plugin/img/kiali.d0e257dd.svg
plugin/img/kubernetes.ac396542.svg
plugin/img/kubernetes-black.2ade6358.svg
plugin/img/linode.642005fe.svg
plugin/img/linodelke.642005fe.svg
plugin/img/linodelke-black.81aa799d.svg
plugin/img/linux.a96776e5.svg
plugin/img/local-cluster.272d4fc9.svg
plugin/img/login-landscape.60cd520b.svg
plugin/img/login-landscape.6e1253bb.svg
plugin/img/longhorn.4809470b.svg
plugin/img/minikube.117e4a38.svg
plugin/img/minikube-black.94055a38.svg
plugin/img/neuvector.513801d3.svg
plugin/img/nutanix.b10c401f.svg
plugin/img/oci.3a81eed0.svg
plugin/img/oci-black.cd3524de.svg
plugin/img/okta.58a2aa35.svg
plugin/img/openid.451743dd.svg
plugin/img/openldap.59040f23.svg
plugin/img/openstack.475580f8.svg
plugin/img/openstack-black.af3ac5a0.svg
plugin/img/oracle.74aae75e.svg
plugin/img/oracleoke.64fac528.svg
plugin/img/oracleoke-black.ec0a34a2.svg
plugin/img/otc.1b7d926f.svg
plugin/img/otc-black.5629758c.svg
plugin/img/otccce.1b7d926f.svg
plugin/img/outscale.d0d823da.svg
plugin/img/ovhcloudmks.612c966f.svg
plugin/img/ovhcloudpubliccloud.612c966f.svg
plugin/img/packet-black.5fc90c03.svg
plugin/img/packet.ef1f45fa.svg
plugin/img/pagerduty.9871fbd3.svg
plugin/img/ping.5b5afc6e.svg
plugin/img/pinganyunecs.b74db865.svg
plugin/img/pinganyunecs-black.bf0b3440.svg
plugin/img/pnap.81704b7a.svg
plugin/img/pnap-black.a7948015.svg
plugin/img/prometheus.be8ac54d.svg
plugin/img/rackspace.5e8dcb5a.svg
plugin/img/rackspace-black.0e8f8bc4.svg
plugin/img/rancher-logo.3680d0eb.svg
plugin/img/rancher-logo.487fcd1d.svg
plugin/img/rancher-logo.788ed883.svg
plugin/img/rancher-logo.8d98c901.svg
plugin/img/rancher-logo.920195b3.svg
plugin/img/rancher-logo.b8492368.svg
plugin/img/rancher-logo.d773077a.svg
plugin/img/rancher-logo.ef1ab5b0.svg
plugin/img/rancher-logo.f190bd21.svg
plugin/img/rancher-logo.fd684d42.svg
plugin/img/rke2.a01f31e7.svg
plugin/img/rke.a01f31e7.svg
plugin/img/setup-step-one.7b236b40.svg
plugin/img/shibboleth.35ea1d68.svg
plugin/img/slack.34dfd73f.svg
plugin/img/softlayer.5d9a5c2a.svg
plugin/img/sunglasses.157dca2a.svg
plugin/img/tencenttke.42042615.svg
plugin/img/tencenttke-black.140c30e5.svg
plugin/img/vmwarevsphere.94d59db3.svg
plugin/img/vmwarevsphere-black.454d68ed.svg
plugin/img/webhook.f86c012b.svg
plugin/img/wechat-qr-code.c0468b45.jpg
plugin/img/windows.f862ed7d.svg
plugin/package.json

View File

@ -0,0 +1,2 @@
(("undefined"!==typeof self?self:this)["webpackChunkharvester_1_0_0"]=("undefined"!==typeof self?self:this)["webpackChunkharvester_1_0_0"]||[]).push([[276],{69276:function(e,t,n){var o,a,i,r=n(54804);(function(n,r){a=[],o=r,i="function"===typeof o?o.apply(t,a):o,void 0===i||(e.exports=i)})(0,(function(){"use strict";function t(e,t){return"undefined"==typeof t?t={autoBom:!1}:"object"!=typeof t&&(r.warn("Deprecated: Expected third argument to be a object"),t={autoBom:!t}),t.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(e.type)?new Blob(["\ufeff",e],{type:e.type}):e}function o(e,t,n){var o=new XMLHttpRequest;o.open("GET",e),o.responseType="blob",o.onload=function(){s(o.response,t,n)},o.onerror=function(){r.error("could not download file")},o.send()}function a(e){var t=new XMLHttpRequest;t.open("HEAD",e,!1);try{t.send()}catch(e){}return 200<=t.status&&299>=t.status}function i(e){try{e.dispatchEvent(new MouseEvent("click"))}catch(o){var t=document.createEvent("MouseEvents");t.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),e.dispatchEvent(t)}}var c="object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof n.g&&n.g.global===n.g?n.g:void 0,s=c.saveAs||("object"!=typeof window||window!==c?function(){}:"download"in HTMLAnchorElement.prototype?function(e,t,n){var r=c.URL||c.webkitURL,s=document.createElement("a");t=t||e.name||"download",s.download=t,s.rel="noopener","string"==typeof e?(s.href=e,s.origin===location.origin?i(s):a(s.href)?o(e,t,n):i(s,s.target="_blank")):(s.href=r.createObjectURL(e),setTimeout((function(){r.revokeObjectURL(s.href)}),4e4),setTimeout((function(){i(s)}),0))}:"msSaveOrOpenBlob"in navigator?function(e,n,r){if(n=n||e.name||"download","string"!=typeof e)navigator.msSaveOrOpenBlob(t(e,r),n);else if(a(e))o(e,n,r);else{var c=document.createElement("a");c.href=e,c.target="_blank",setTimeout((function(){i(c)}))}}:function(e,t,n,a){if(a=a||open("","_blank"),a&&(a.document.title=a.document.body.innerText="downloading..."),"string"==typeof e)return o(e,t,n);var i="application/octet-stream"===e.type,r=/constructor/i.test(c.HTMLElement)||c.safari,s=/CriOS\/[\d]+/.test(navigator.userAgent);if((s||i&&r)&&"object"==typeof FileReader){var f=new FileReader;f.onloadend=function(){var e=f.result;e=s?e:e.replace(/^data:[^;]*;/,"data:attachment/file;"),a?a.location.href=e:location=e,a=null},f.readAsDataURL(e)}else{var l=c.URL||c.webkitURL,u=l.createObjectURL(e);a?a.location=u:location.href=u,a=null,setTimeout((function(){l.revokeObjectURL(u)}),4e4)}});c.saveAs=s.saveAs=s,e.exports=s}))}}]);
//# sourceMappingURL=harvester-1.0.0.umd.min.276.js.map

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,2 @@
"use strict";(("undefined"!==typeof self?self:this)["webpackChunkharvester_1_0_0"]=("undefined"!==typeof self?self:this)["webpackChunkharvester_1_0_0"]||[]).push([[973],{51597:function(e,t,r){r.r(t),r.d(t,{default:function(){return g}});var o=r(9274);const l={class:"mt-10"},c={class:"mt-10"},a={key:0},n={class:"checkbox-container mr-15"},s=["label","value"],i=(0,o.createElementVNode)("span",{class:"checkbox-custom mr-5",role:"checkbox"},null,-1),m={key:1},h={class:"checkbox-container mr-15"},u=(0,o.createElementVNode)("span",{class:"checkbox-custom mr-5",role:"checkbox"},null,-1);function p(e,t,r,p,d,v){const k=(0,o.resolveDirective)("clean-html");return(0,o.openBlock)(),(0,o.createElementBlock)("div",l,[(0,o.createTextVNode)((0,o.toDisplayString)(e.t("promptRemove.attemptingToRemove",{type:r.type}))+" ",1),(0,o.withDirectives)((0,o.createElementVNode)("span",null,null,512),[[k,v.resourceNames(r.names,v.plusMore,e.t)]]),(0,o.createElementVNode)("div",c,(0,o.toDisplayString)(e.t("harvester.virtualMachine.promptRemove.title")),1),1===r.value.length?((0,o.openBlock)(),(0,o.createElementBlock)("div",a,[((0,o.openBlock)(!0),(0,o.createElementBlock)(o.Fragment,null,(0,o.renderList)(v.removeNameArr[r.value[0].id],((e,r)=>((0,o.openBlock)(),(0,o.createElementBlock)("span",{key:r},[(0,o.createElementVNode)("label",n,[(0,o.withDirectives)((0,o.createElementVNode)("input",{"onUpdate:modelValue":t[0]||(t[0]=e=>d.checkedList=e),type:"checkbox",label:e,value:e},null,8,s),[[o.vModelCheckbox,d.checkedList]]),i,(0,o.createTextVNode)(" "+(0,o.toDisplayString)(e),1)])])))),128))])):((0,o.openBlock)(),(0,o.createElementBlock)("div",m,[(0,o.createElementVNode)("label",h,[(0,o.withDirectives)((0,o.createElementVNode)("input",{"onUpdate:modelValue":t[1]||(t[1]=e=>d.checkAll=e),type:"checkbox"},null,512),[[o.vModelCheckbox,d.checkAll]]),u,(0,o.createTextVNode)(" "+(0,o.toDisplayString)(e.t("harvester.virtualMachine.promptRemove.deleteAll")),1)])]))])}var d=r(65359),v=r(38228),k=r(52225),f=r.n(k),y=r(13451),b=r(32766),N={name:"HarvesterPromptRemove",props:{value:{type:Array,default:()=>[]},names:{type:Array,default:()=>[]},type:{type:String,required:!0},close:{type:Function,required:!0},doneLocation:{type:Object,default:()=>{}}},data(){return{checkedList:[],checkAll:!0}},computed:{...(0,d.aH)("action-menu",["toRemove"]),...(0,d.L8)({t:"i18n/t"}),removeNameArr(){const e={};return this.value.forEach((t=>{if(t.type!==b.rk.VM)return;const r=t.spec.template.spec?.volumes||[],o=r.filter((e=>e.persistentVolumeClaim)).map((e=>{if(e.persistentVolumeClaim)return e.name}));e[t.id]=o})),e},plusMore(){const e=this.toRemove.length-this.names.length;return this.t("promptRemove.andOthers",{count:e})}},watch:{removeNameArr:{handler(e){if(1===this.value.length){const t=Object.values(e[this.value[0].id]);this.checkedList.unshift(t[0])}},deep:!0,immediate:!0}},methods:{resourceNames:y.Nr,remove(){let e;this.doneLocation&&(e={...this.doneLocation}),Promise.all(this.value.map((e=>{if(e.type!==b.rk.VM)return void e.remove();let t="";this.value.length>1?this.checkAll&&this.removeNameArr[e.id].forEach((e=>{t+=`removedDisks=${e}&`})):(this.checkedList.forEach((e=>{t+=`removedDisks=${e}&`})),t.replace(/&$/,""));const r=f()(e.links.self);e.remove({url:`${r.pathname}?${t}propagationPolicy=Foreground`})}))).then((t=>{e&&!(0,v.Im)(e)&&this.value?.[0]?.currentRouter().push(e),this.close()})).catch((e=>{this.$emit("errors",e)}))}}},V=r(47433);const E=(0,V.A)(N,[["render",p]]);var g=E}}]);
//# sourceMappingURL=harvester-1.0.0.umd.min.promptRemove.js.map

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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 60 60" style="enable-background:new 0 0 60 60;" xml:space="preserve">
<style type="text/css">
.st0{fill:#00AAF2;}
</style>
<g>
<path class="st0" d="M55,43.1c0,3.5,0,7,0,10.5c0,1.2-0.4,1.5-1.5,1.3c-7.9-1.2-15.7-2.3-23.6-3.3c-1.4-0.2-1.9-0.7-1.9-2.2
c0.1-5.6,0.1-11.2,0-16.8c0-1.2,0.4-1.6,1.6-1.6c8,0,15.9,0,23.9,0c1.3,0,1.6,0.5,1.6,1.6C55,36.1,55,39.6,55,43.1z"/>
<path class="st0" d="M41.6,28.9c-4,0-8,0-11.9,0c-1.2,0-1.7-0.3-1.7-1.7c0.1-5.7,0.1-11.3,0-17c-0.2-0.7,0.3-1.5,1.1-1.6
c0.1,0,0.3,0,0.4,0c8.1-1.1,16.3-2.3,24.4-3.5c1.4-0.2,1.2,0.8,1.2,1.5c0,5.1,0,10.2,0,15.3c0,1.9,0,3.7,0,5.6
c0,1.1-0.4,1.5-1.5,1.5C49.5,28.9,45.6,28.9,41.6,28.9z"/>
<path class="st0" d="M15.3,31c3,0,6,0,8.9,0c0.6-0.2,1.2,0.2,1.4,0.8c0,0.2,0.1,0.4,0,0.5c0,5.8,0,11.7,0,17.5c0,1-0.5,1.1-1.3,1
c-5.9-0.9-11.8-1.7-17.7-2.5c-0.8,0.1-1.5-0.6-1.6-1.4c0-0.1,0-0.3,0-0.4c0.1-4.7,0.1-9.3,0-14C5,31.4,5.3,31,6.5,31
C9.4,31.1,12.4,31,15.3,31z"/>
<path class="st0" d="M15.3,28.9c-2.9,0-5.8,0-8.8,0c-1.1,0-1.5-0.4-1.5-1.5c0-4.6,0-9.2,0-13.8c-0.2-0.7,0.3-1.5,1-1.6
c0.1,0,0.3,0,0.4,0c5.9-0.8,11.8-1.6,17.7-2.6c1.4-0.2,1.5,0.3,1.5,1.3c0,5.6,0,11.2,0,16.8c0,1.2-0.5,1.4-1.6,1.4H15.3z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -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 60 60" style="enable-background:new 0 0 60 60;" xml:space="preserve">
<style type="text/css">
.st0{fill:#F25022;}
.st1{fill:#80BA01;}
.st2{fill:#02A4EF;}
.st3{fill:#FFB902;}
</style>
<g>
<g>
<path class="st0" d="M5,5h23.8c0,7.9,0,15.9,0,23.8c-7.9,0-15.9,0-23.8,0V5L5,5z"/>
<path class="st1" d="M31.2,5H55c0,7.9,0,15.9,0,23.8c-7.9,0-15.9,0-23.8,0C31.2,20.7,31.2,12.7,31.2,5L31.2,5z"/>
<path class="st2" d="M5,31.2c7.9,0,15.9,0,23.8,0c0,7.9,0,15.9,0,23.8H5V31.2L5,31.2z"/>
<path class="st3" d="M31.2,31.2c7.9,0,15.9,0,23.8,0c0,7.9,0,15.9,0,23.8H31.2C31.2,46.8,31.2,38.9,31.2,31.2L31.2,31.2z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 898 B

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.3, 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 101 101" style="enable-background:new 0 0 101 101;" xml:space="preserve">
<path d="M18.4243984,67.0989532c-2.0441589-0.4743652-3.6163034-2.2131424-3.6163034-4.426281V38.327774
c0.1572266-2.213253,1.5723696-3.9520264,3.6163034-4.4263954l22.4841671-4.900425l2.3586082-9.6431732H17.1665936
C7.8899436,19.3577805,0.5,26.7875862,0.5,35.9566231v28.7712898c0,9.168808,7.5471687,16.7568512,16.6665936,16.7568512h26.1005802
l-2.3584976-9.6431732C40.9086761,71.8415909,18.4243984,67.0989456,18.4243984,67.0989532z M83.8334122,19.3575611h-26.258255
l2.3586121,9.6430607l22.484726,4.9005394c2.0440445,0.4744759,3.6156235,2.213253,3.6156235,4.426281v24.3451157
c-0.1567764,2.2131386-1.5716934,3.9519157-3.6156235,4.426281l-22.4847336,4.90065l-2.3586082,9.642952h26.2582512
c9.1195374,0,16.6665955-7.4298096,16.6665955-16.7567444V35.9562912
C100.3421021,26.7873688,92.9529495,19.3575611,83.8334122,19.3575611z M40.9085655,49.2355843h19.1822014v2.3711548H40.9085655
V49.2355843z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.3, 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 101 101" style="enable-background:new 0 0 101 101;" xml:space="preserve">
<style type="text/css">
.st0{fill:#333333;}
</style>
<path class="st0" d="M18.4243984,67.0989532c-2.0441589-0.4743652-3.6163034-2.2131424-3.6163034-4.426281V38.327774
c0.1572266-2.213253,1.5723696-3.9520264,3.6163034-4.4263954l22.4841671-4.900425l2.3586082-9.6431732H17.1665936
C7.8899436,19.3577805,0.5,26.7875862,0.5,35.9566231v28.7712898c0,9.168808,7.5471687,16.7568512,16.6665936,16.7568512h26.1005802
l-2.3584976-9.6431732C40.9086761,71.8415909,18.4243984,67.0989456,18.4243984,67.0989532z M83.8334122,19.3575611h-26.258255
l2.3586121,9.6430607l22.484726,4.9005394c2.0440445,0.4744759,3.6156235,2.213253,3.6156235,4.426281v24.3451157
c-0.1567764,2.2131386-1.5716934,3.9519157-3.6156235,4.426281l-22.4847336,4.90065l-2.3586082,9.642952h26.2582512
c9.1195374,0,16.6665955-7.4298096,16.6665955-16.7567444V35.9562912
C100.3421021,26.7873688,92.9529495,19.3575611,83.8334122,19.3575611z M40.9085655,49.2355843h19.1822014v2.3711548H40.9085655
V49.2355843z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<path d="M94.9,15.4C93.3,10.8,89.5,6.8,84.5,5c-22.4-6.6-46.4-6.6-69,0c-4.8,1.8-8.6,5.6-10.4,10.6C-1.7,38-1.7,62,5.1,84.4
c1.8,4.8,5.6,8.6,10.4,10.4c22.4,6.8,46.4,6.8,69,0c4.8-1.8,8.6-5.6,10.4-10.4C101.7,62,101.7,38,94.9,15.4z M25.1,18.4
c2.4-4.8,8.4-6.8,13.2-4.4c4.8,2,9.2,6.4,12.4,6.4S56.9,16,61.3,14c1.2-0.6,2.4-1,3.8-1h0.6c5.4,0,9.8,4.4,9.8,9.8
c0,5.4-4.4,9.8-9.8,9.8h-0.6c-8-0.2-7.4-7-14.6-7s-8.2,6.6-15.8,7h-0.6c-1.6,0-3-0.2-4.6-1C24.7,29.2,22.7,23.2,25.1,18.4z
M71.5,85.8c-4.6,2.4-10.6,0.6-13-4.2c-1-2-1.8-4.4-2-6.8c-3.8-3.6-21.4,19.6-30.8,6.6c-9.4-13,20.6-20,17.6-27.4
c-2-4.4-9.4-3.2-15.8,1.4c-0.4,0.6-0.8,1-1.4,1.6c-3.8,3.8-10,3.8-13.8,0s-3.8-10,0-13.8s10-3.8,13.8,0C40.9,54,46.7,34,55.9,45
c8.8,10.6-14.2,17.6-14.2,24.8c0,5.6,13.2,1.4,14.6,1c0.2-4.8,1.4-8.8,2.4-9.2c1.8-1,13.2,4,17,11.2C78.1,77.4,76.3,83.4,71.5,85.8z
M81.7,59.4c-8.2,0-16.8-9.2-16.8-9.2S74.1,41,81.7,41c5,0,9.2,4.2,9.2,9.2S86.7,59.4,81.7,59.4z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{fill:#F8982A;}
.st1{fill:#FFFFFF;}
</style>
<g>
<path class="st0" d="M84.5,5c-22.4-6.6-46.4-6.6-69,0c-4.8,1.8-8.6,5.6-10.4,10.6C-1.7,38-1.7,62,5.1,84.4
c1.8,4.8,5.6,8.6,10.4,10.4c22.4,6.8,46.4,6.8,69,0c4.8-1.8,8.6-5.6,10.4-10.4c6.8-22.4,6.8-46.4,0-69C93.3,10.8,89.5,6.8,84.5,5z"
/>
<path class="st1" d="M81.7,41c-7.6,0-16.8,9.2-16.8,9.2s8.6,9.2,16.8,9.2c5,0,9.2-4.2,9.2-9.2S86.7,41,81.7,41L81.7,41z"/>
<path class="st1" d="M58.7,61.6c-1,0.4-2.2,4.4-2.4,9.2c-1.4,0.4-14.6,4.6-14.6-1c0-7.2,23-14.2,14.2-24.8c-9.2-11-15,9-29.8-1.8
l0,0c-3.8-3.8-10-3.8-13.8,0s-3.8,10,0,13.8s10,3.8,13.8,0c0.6-0.6,1-1,1.4-1.6c6.4-4.6,13.8-5.8,15.8-1.4c3,7.4-27,14.4-17.6,27.4
s27-10.2,30.8-6.6l0,0c0.2,2.4,1,4.8,2,6.8c2.4,4.8,8.4,6.6,13,4.2c4.8-2.4,6.6-8.4,4.2-13C71.9,65.6,60.5,60.6,58.7,61.6z"/>
<path class="st1" d="M34.1,32.6h0.6c7.6-0.4,8.6-7,15.8-7s6.6,6.8,14.6,7h0.6c5.4,0,9.8-4.4,9.8-9.8S71.1,13,65.7,13h-0.6
c-1.4,0-2.6,0.4-3.8,1c-4.4,2-7.4,6.4-10.6,6.4S43.1,16,38.3,14c-4.8-2.4-10.8-0.4-13.2,4.4s-0.4,10.8,4.4,13.2
C31.1,32.4,32.5,32.6,34.1,32.6z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<path d="M50,0l-8.2,4.2v6.2l-7.2-2.6L28.2,11v4.4l-5.8-1.6l-5,2.6v3.3l-4.6-1.1l-4.2,2.2v58.4l4.2,2.2v-0.2l4.6-1v3.4l5,2.6l5.8-1.6
V89l6.4,3.2l7.2-2.6v6.2L50,100l41.4-20.8V20.8L50,0z M14.8,78.7V21.1l2.6,0.6v56.5L14.8,78.7z M24.4,83.6V16.4l3.8,1.1v65
L24.4,83.6z M36.6,89.3V10.7l5.2,1.9v74.9L36.6,89.3z M89.4,78L52,96.8V3.2L89.4,22V78z"/>
</svg>

After

Width:  |  Height:  |  Size: 694 B

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{fill:#F58536;}
.st1{fill:#9D5025;}
</style>
<g id="Layer_1-2">
<polygon class="st0" points="22.4,79.2 12.8,81.2 12.8,18.6 22.4,20.8 "/>
<polygon class="st0" points="34.6,82.8 22.4,86.2 22.4,13.8 34.6,17.2 "/>
<polygon class="st0" points="50,86.6 34.6,92.2 34.6,7.8 50,13.4 "/>
<polygon class="st0" points="91.4,79.2 50,100 50,0 91.4,20.8 "/>
<polygon class="st1" points="41.8,4.2 50,0 50,100 41.8,95.8 "/>
<polygon class="st1" points="28.2,11 34.6,7.8 34.6,92.2 28.2,89 "/>
<polygon class="st1" points="17.4,16.4 22.4,13.8 22.4,86.2 17.4,83.6 "/>
<polygon class="st1" points="12.8,18.6 8.6,20.8 8.6,79.2 12.8,81.4 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<g>
<polygon points="73.6,58.2 94,71.2 94,23.8 54,0.8 54,24.2 73.6,35.6 "/>
<polygon points="69.2,65 49.8,76.4 26.2,62.6 26.2,35 45.8,23.6 45.8,0 6,23.2 6,74.4 49.8,100 88.4,77.4 "/>
<path d="M59.8,62.4h-3.6l-9.6-12.8L43.8,52v10.4h-3V36h3v13l12-13h3.6L48.8,47.4L59.8,62.4z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 642 B

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{fill:#4052D7;}
.st1{fill:#387EFA;}
</style>
<g>
<polygon class="st0" points="73.6,58.2 94,71.2 94,23.8 54,0.8 54,24.2 73.6,35.6 "/>
<polygon class="st1" points="69.2,65 49.8,76.4 26.2,62.6 26.2,35 45.8,23.6 45.8,0 6,23.2 6,74.4 49.8,100 88.4,77.4 "/>
<path class="st0" d="M59.8,62.4h-3.6l-9.6-12.8L43.8,52v10.4h-3V36h3v13l12-13h3.6L48.8,47.4L59.8,62.4z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 753 B

View File

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.1, 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 304 182" style="enable-background:new 0 0 304 182;" 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="M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3l-6.3,4.2
c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8
c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6c6.1-5.2,14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8
c3.7,0.5,7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3c-3.7,0.9-7.3,2-10.8,3.4
c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5c0.5-0.7,1.4-1.4,2.8-2.1
c3.5-1.8,7.7-3.3,12.6-4.5c4.9-1.3,10.1-1.9,15.6-1.9c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6V66.4z M45.8,81.6
c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4c0.6-2.4,1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7
c-3.2-0.4-6.3-0.6-9.4-0.6c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6
C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4
c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1
h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5
c0,0.5-0.1,1-0.2,1.6c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9c-0.8,0.6-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1
c-0.8-0.7-1.5-2-1.9-4L156,23l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8
c-5-1.2-8.9-2.5-11.5-4c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3
c0.6,0.2,1.5,0.6,2.5,1c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5
c0-2.8-0.9-5.1-2.7-7c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1
c1.8-3.2,4.2-6,7.2-8.2c3-2.3,6.4-4,10.4-5.2c4-1.2,8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1
c2,0.5,3.9,1,5.7,1.6c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2
c-0.8,0-2.1-0.4-3.8-1.2c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8c-3.1,1.9-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1
c2,1.9,5.7,3.8,11,5.5l14.2,4.5c7.2,2.3,12.4,5.5,15.5,9.6c3.1,4.1,4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6
c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6C264.4,94.4,259.7,95.1,254.6,95.1z"/>
<g>
<path class="st1" d="M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4
c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z"/>
<path class="st1" d="M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5
c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.3, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<g>
<path d="M99.7962494,76.143692c0,6.9666519,0,13.9333115,0,20.899971c0,2.3885574-0.7961884,2.9857101-2.9857101,2.5876236
c-15.7247467-2.3885651-31.2504425-4.5781021-46.9751778-6.568573c-2.7866669-0.3980865-3.7819023-1.3933258-3.7819023-4.3790359
c0.1990433-11.1466522,0.1990433-22.2933121,0-33.4399605c0-2.3885689,0.7961922-3.1847534,3.1847534-3.1847534
c15.7247467,0,31.6485367,0,47.3732681,0c2.5876236,0,3.1847534,0.9952354,3.1847534,3.1847534
C99.7962494,62.0113258,99.7962494,68.9779816,99.7962494,76.143692z"/>
<path d="M73.1239014,47.6799202c-7.9618988,0-15.9237938,0-23.6866455,0c-2.3885689,0-3.3838043-0.5971413-3.3838043-3.3838081
c0.1990433-11.3457031,0.1990433-22.4923515,0-33.8380547c-0.398098-1.3933334,0.5971413-2.9857106,1.9904709-3.1847591
c0.1990471,0,0.5971413,0,0.796196,0c16.1228409-2.1895218,32.4447174-4.5780878,48.5675583-6.9666581
c2.7866592-0.3980963,2.3885574,1.5923775,2.3885574,2.9857106c0,10.1514168,0,20.3028297,0,30.2551994
c0,3.7819061,0,7.3647575,0,11.1466522c0,2.189518-0.7961884,2.9857101-2.9857101,2.9857101
C88.8486481,47.6799202,81.0857925,47.6799202,73.1239014,47.6799202z"/>
<path d="M20.7744389,51.8599129c5.9714222,0,11.9428425,0,17.7152119,0
c1.1942825-0.398098,2.3885689,0.3980942,2.7866669,1.5923767c0,0.398098,0.1990433,0.7961922,0,0.9952354
c0,11.5447464,0,23.2885437,0,34.8332977c0,1.9904785-0.9952354,2.1895218-2.587616,1.9904785
c-11.7437973-1.7914276-23.487587-3.3838043-35.2313843-4.9761887c-1.5923777,0.1990433-2.9857109-1.1942825-3.1847589-2.7866669
c0-0.1990433,0-0.5971451,0-0.7961884c0.1990481-9.3552322,0.1990481-18.5114059,0-27.8666344
c0-2.189518,0.5971407-2.9857101,2.9857106-2.9857101C9.0306444,52.0589561,15.0020695,51.8599129,20.7744389,51.8599129z"/>
<path d="M20.7744389,47.6799202c-5.772377,0-11.5447464,0-17.5161686,0c-2.1895218,0-2.9857106-0.7961922-2.9857106-2.9857101
c0-9.1561775,0-18.3123608,0-27.4685383c-0.3980963-1.3933325,0.5971406-2.9857101,1.9904737-3.1847544
c0.199048,0,0.5971406,0,0.7961888,0c11.7437944-1.5923777,23.4875927-3.1847591,35.032341-5.1752329
c2.7866631-0.3980961,2.9857101,0.5971403,2.9857101,2.5876141c0,11.1466541,0,22.2933064,0,33.4399567
c0,2.3885689-0.9952393,2.7866669-3.1847572,2.7866669H20.7744389z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.3, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{fill:#00AAF2;}
</style>
<g>
<path class="st0" d="M99.7962494,76.143692c0,6.9666519,0,13.9333115,0,20.899971
c0,2.3885574-0.7961884,2.9857101-2.9857101,2.5876236c-15.7247467-2.3885651-31.2504425-4.5781021-46.9751778-6.568573
c-2.7866669-0.3980865-3.7819023-1.3933258-3.7819023-4.3790359c0.1990433-11.1466522,0.1990433-22.2933121,0-33.4399605
c0-2.3885689,0.7961922-3.1847534,3.1847534-3.1847534c15.7247467,0,31.6485367,0,47.3732681,0
c2.5876236,0,3.1847534,0.9952354,3.1847534,3.1847534C99.7962494,62.0113258,99.7962494,68.9779816,99.7962494,76.143692z"/>
<path class="st0" d="M73.1239014,47.6799202c-7.9618988,0-15.9237938,0-23.6866455,0
c-2.3885689,0-3.3838043-0.5971413-3.3838043-3.3838081c0.1990433-11.3457031,0.1990433-22.4923515,0-33.8380547
c-0.398098-1.3933334,0.5971413-2.9857106,1.9904709-3.1847591c0.1990471,0,0.5971413,0,0.796196,0
c16.1228409-2.1895218,32.4447174-4.5780878,48.5675583-6.9666581c2.7866592-0.3980963,2.3885574,1.5923775,2.3885574,2.9857106
c0,10.1514168,0,20.3028297,0,30.2551994c0,3.7819061,0,7.3647575,0,11.1466522
c0,2.189518-0.7961884,2.9857101-2.9857101,2.9857101C88.8486481,47.6799202,81.0857925,47.6799202,73.1239014,47.6799202z"/>
<path class="st0" d="M20.7744389,51.8599129c5.9714222,0,11.9428425,0,17.7152119,0
c1.1942825-0.398098,2.3885689,0.3980942,2.7866669,1.5923767c0,0.398098,0.1990433,0.7961922,0,0.9952354
c0,11.5447464,0,23.2885437,0,34.8332977c0,1.9904785-0.9952354,2.1895218-2.587616,1.9904785
c-11.7437973-1.7914276-23.487587-3.3838043-35.2313843-4.9761887c-1.5923777,0.1990433-2.9857109-1.1942825-3.1847589-2.7866669
c0-0.1990433,0-0.5971451,0-0.7961884c0.1990481-9.3552322,0.1990481-18.5114059,0-27.8666344
c0-2.189518,0.5971407-2.9857101,2.9857106-2.9857101C9.0306444,52.0589561,15.0020695,51.8599129,20.7744389,51.8599129z"/>
<path class="st0" d="M20.7744389,47.6799202c-5.772377,0-11.5447464,0-17.5161686,0
c-2.1895218,0-2.9857106-0.7961922-2.9857106-2.9857101c0-9.1561775,0-18.3123608,0-27.4685383
c-0.3980963-1.3933325,0.5971406-2.9857101,1.9904737-3.1847544c0.199048,0,0.5971406,0,0.7961888,0
c11.7437944-1.5923777,23.4875927-3.1847591,35.032341-5.1752329c2.7866631-0.3980961,2.9857101,0.5971403,2.9857101,2.5876141
c0,11.1466541,0,22.2933064,0,33.4399567c0,2.3885689-0.9952393,2.7866669-3.1847572,2.7866669H20.7744389z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.3, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<g>
<path d="M54.5,37.8000031C53.9000015,38,53.5,38.2000046,52.9000015,38.2000046v30.5999985
c0.4000015,0,0.8000031,0.1999969,1.1999969,0.4000015l15.5999985-10
c-0.4000015-0.8000031-0.4000015-1.8000031-0.4000015-2.8000031c0-1.4000015,0.4000015-3,1.1999969-4.1999969L54.5,37.8000031z"/>
<path d="M50.0999947,0L0.2999973,58.8000031L50.0999947,100l49.6000099-41.1999969L50.0999947,0z M76.9000015,64.5999985
c-1.8000031,0-3.5999985-0.5999985-5-1.8000031L57.2999954,72c1,1.4000015,1.4000015,3,1.5999985,4.5999985
C59.4999924,81,56.6999969,85,52.2999954,85.8000031c-4.4000015,0.6000061-8.4000015-2.1999969-9.1999969-6.6000061
c-0.1999969-0.8000031-0.1999969-1.5999985,0-2.5999985C43.0999985,75,43.5,73.4000015,44.5,72.1999969l-15.4000034-10
c-3,3-8,3-11,0c-1.4000015-1.4000015-2.4000015-3.5999985-2.4000015-5.5999985c0-4.4000015,3.5999985-8,8-8
C25.2999935,48.5999985,26.899992,49,28.0999966,50l16.0000019-14.8000031c-1.1999969-1.5999985-2-3.5999985-2-5.5999985
c0-5,4-8.8000031,9-8.8000031s8.8000031,4,8.8000031,8.8000031c0,2-0.8000031,4-2,5.5999985l15.4000015,14.4000015
c4-2,8.7999954-0.5999985,10.7999954,3.4000015s0.6000061,8.8000031-3.3999939,10.8000031
C79.2999954,64.1999969,78.0999985,64.5999985,76.9000015,64.5999985z"/>
<path d="M30.4999981,53.1999969C31.3000011,55,31.4999981,57,30.8999996,58.7999954l16.4000034,10.5999985
c0.4000015-0.1999969,0.8000031-0.4000015,1.4000015-0.4000015V38.4000015c-0.5999985,0-1.1999969-0.1999969-1.5999985-0.5999985
L30.4999981,53.1999969z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -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 60 60" style="enable-background:new 0 0 60 60;" xml:space="preserve">
<style type="text/css">
.st0{fill:#00AAF2;}
</style>
<g>
<path class="st0" d="M32.2,23.9c-0.3,0.1-0.5,0.2-0.8,0.2v15.3c0.2,0,0.4,0.1,0.6,0.2l7.8-5c-0.2-0.4-0.2-0.9-0.2-1.4
c0-0.7,0.2-1.5,0.6-2.1L32.2,23.9z"/>
<path class="st0" d="M30,5L5.1,34.4L30,55l24.8-20.6L30,5z M43.4,37.3c-0.9,0-1.8-0.3-2.5-0.9L33.6,41c0.5,0.7,0.7,1.5,0.8,2.3
c0.3,2.2-1.1,4.2-3.3,4.6c-2.2,0.3-4.2-1.1-4.6-3.3c-0.1-0.4-0.1-0.8,0-1.3c0-0.8,0.2-1.6,0.7-2.2l-7.7-5c-1.5,1.5-4,1.5-5.5,0
c-0.7-0.7-1.2-1.8-1.2-2.8c0-2.2,1.8-4,4-4c0.8,0,1.6,0.2,2.2,0.7l8-7.4c-0.6-0.8-1-1.8-1-2.8c0-2.5,2-4.4,4.5-4.4s4.4,2,4.4,4.4
c0,1-0.4,2-1,2.8l7.7,7.2c2-1,4.4-0.3,5.4,1.7s0.3,4.4-1.7,5.4C44.6,37.1,44,37.3,43.4,37.3z"/>
<path class="st0" d="M20.2,31.6c0.4,0.9,0.5,1.9,0.2,2.8l8.2,5.3c0.2-0.1,0.4-0.2,0.7-0.2V24.2c-0.3,0-0.6-0.1-0.8-0.3L20.2,31.6z"
/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.3, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{fill:#00AAF2;}
</style>
<g>
<path class="st0" d="M54.5,37.8000031C53.9000015,38,53.5,38.2000046,52.9000015,38.2000046v30.5999985
c0.4000015,0,0.8000031,0.1999969,1.1999969,0.4000015l15.5999985-10
c-0.4000015-0.8000031-0.4000015-1.8000031-0.4000015-2.8000031c0-1.4000015,0.4000015-3,1.1999969-4.1999969L54.5,37.8000031z"/>
<path class="st0" d="M50.0999947,0L0.2999973,58.8000031L50.0999947,100l49.6000099-41.1999969L50.0999947,0z
M76.9000015,64.5999985c-1.8000031,0-3.5999985-0.5999985-5-1.8000031L57.2999954,72c1,1.4000015,1.4000015,3,1.5999985,4.5999985
C59.4999924,81,56.6999969,85,52.2999954,85.8000031c-4.4000015,0.6000061-8.4000015-2.1999969-9.1999969-6.6000061
c-0.1999969-0.8000031-0.1999969-1.5999985,0-2.5999985C43.0999985,75,43.5,73.4000015,44.5,72.1999969l-15.4000034-10
c-3,3-8,3-11,0c-1.4000015-1.4000015-2.4000015-3.5999985-2.4000015-5.5999985c0-4.4000015,3.5999985-8,8-8
C25.2999935,48.5999985,26.899992,49,28.0999966,50l16.0000019-14.8000031c-1.1999969-1.5999985-2-3.5999985-2-5.5999985
c0-5,4-8.8000031,9-8.8000031s8.8000031,4,8.8000031,8.8000031c0,2-0.8000031,4-2,5.5999985l15.4000015,14.4000015
c4-2,8.7999954-0.5999985,10.7999954,3.4000015s0.6000061,8.8000031-3.3999939,10.8000031
C79.2999954,64.1999969,78.0999985,64.5999985,76.9000015,64.5999985z"/>
<path class="st0" d="M30.4999981,53.1999969C31.3000011,55,31.4999981,57,30.8999996,58.7999954l16.4000034,10.5999985
c0.4000015-0.1999969,0.8000031-0.4000015,1.4000015-0.4000015V38.4000015c-0.5999985,0-1.1999969-0.1999969-1.5999985-0.5999985
L30.4999981,53.1999969z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<g>
<polygon points="49.9,37.8 49.9,62.2 64.6,56.3 64.6,43.2 "/>
<path d="M35.4,41.3V58l11.5,4.1V37.8L35.4,41.3z M38.1,57.2l-1.8-0.7V43.2l1.8-0.5V57.2z M41.4,58.4l-2.5-0.9V42.4l2.5-0.8V58.4z
M45.5,59.7l-3.3-1V41.3l3.3-1V59.7z"/>
<polygon points="14.5,37.8 14.5,62.2 29.2,56.3 29.2,43.2 "/>
<path d="M0,41.3V58l11.5,4.1V37.8L0,41.3z M2.8,57.2L1,56.5V43.2l1.8-0.5V57.2z M6,58.4l-2.5-0.9V42.4L6,41.6V58.4z M10.1,59.7
l-3.3-1V41.3l3.3-1V59.7z"/>
<polygon points="85.3,37.8 85.3,62.2 100,56.3 100,43.2 "/>
<path d="M70.8,41.3V58l11.5,4.1V37.8L70.8,41.3z M73.4,57.2l-1.8-0.7V43.2l1.8-0.5V57.2z M76.8,58.4l-2.5-0.9V42.4l2.5-0.8V58.4z
M80.9,59.7l-3.3-1V41.3l3.3-1V59.7z"/>
<polygon points="31.1,62.6 31.1,87 45.7,81.1 45.7,68 "/>
<path d="M16.5,66.3v16.6L28,87V62.6L16.5,66.3z M19.1,82l-1.8-0.7V68.1l1.8-0.5V82z M22.5,83.2L20,82.3V67.2l2.5-0.8V83.2z
M26.6,84.6l-3.3-1V66.1l3.3-1V84.6z"/>
<polygon points="67.1,62.6 67.1,87 81.8,81.1 81.8,68 "/>
<path d="M52.4,66.3v16.6L64,87V62.6L52.4,66.3z M55.2,82l-1.8-0.7V68.1l1.8-0.5V82z M58.5,83.2l-2.5-1v-15l2.5-0.8V83.2z
M62.6,84.6l-3.3-1V66.1l3.3-1V84.6z"/>
<polygon points="31.1,13 31.1,37.3 45.7,31.5 45.7,18.4 "/>
<path d="M16.5,16.6v16.6L28,37.3V13L16.5,16.6z M19.1,32.3l-1.8-0.7V18.4l1.8-0.5V32.3z M22.5,33.5L20,32.7V17.6l2.5-0.8V33.5z
M26.6,34.9l-3.3-1V16.6l3.3-1V34.9z"/>
<polygon points="67.1,13 67.1,37.3 81.8,31.5 81.8,18.4 "/>
<path d="M52.4,16.6v16.6L64,37.3V13L52.4,16.6z M55.2,32.3l-1.8-0.7V18.4l1.8-0.5V32.3z M58.5,33.5L56,32.7V17.6l2.5-0.8
C58.5,16.8,58.5,33.5,58.5,33.5z M62.6,34.9l-3.3-1V16.6l3.3-1V34.9z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{fill:#0079D6;}
</style>
<g>
<polygon class="st0" points="49.9,37.8 49.9,62.2 64.6,56.3 64.6,43.2 "/>
<path class="st0" d="M35.4,41.3V58l11.5,4.1V37.8L35.4,41.3z M38.1,57.2l-1.8-0.7V43.2l1.8-0.5V57.2z M41.4,58.4l-2.5-0.9V42.4
l2.5-0.8V58.4z M45.5,59.7l-3.3-1V41.3l3.3-1V59.7z"/>
<polygon class="st0" points="14.5,37.8 14.5,62.2 29.2,56.3 29.2,43.2 "/>
<path class="st0" d="M0,41.3V58l11.5,4.1V37.8L0,41.3z M2.8,57.2l-1.8-0.7V43.2l1.8-0.5V57.2z M6,58.4l-2.5-0.9V42.4L6,41.6V58.4z
M10.1,59.7l-3.3-1V41.3l3.3-1V59.7z"/>
<polygon class="st0" points="85.3,37.8 85.3,62.2 100,56.3 100,43.2 "/>
<path class="st0" d="M70.8,41.3V58l11.5,4.1V37.8L70.8,41.3z M73.4,57.2l-1.8-0.7V43.2l1.8-0.5V57.2z M76.8,58.4l-2.5-0.9V42.4
l2.5-0.8V58.4z M80.9,59.7l-3.3-1V41.3l3.3-1V59.7z"/>
<polygon class="st0" points="31.1,62.6 31.1,87 45.7,81.1 45.7,68 "/>
<path class="st0" d="M16.5,66.3v16.6L28,87V62.6L16.5,66.3z M19.1,82l-1.8-0.7V68.1l1.8-0.5V82z M22.5,83.2l-2.5-0.9V67.2l2.5-0.8
V83.2z M26.6,84.6l-3.3-1V66.1l3.3-1V84.6z"/>
<polygon class="st0" points="67.1,62.6 67.1,87 81.8,81.1 81.8,68 "/>
<path class="st0" d="M52.4,66.3v16.6L64,87V62.6L52.4,66.3z M55.2,82l-1.8-0.7V68.1l1.8-0.5V82z M58.5,83.2L56,82.2V67.2l2.5-0.8
V83.2z M62.6,84.6l-3.3-1V66.1l3.3-1V84.6z"/>
<polygon class="st0" points="31.1,13 31.1,37.3 45.7,31.5 45.7,18.4 "/>
<path class="st0" d="M16.5,16.6v16.6L28,37.3V13L16.5,16.6z M19.1,32.3l-1.8-0.7V18.4l1.8-0.5V32.3z M22.5,33.5l-2.5-0.8V17.6
l2.5-0.8V33.5z M26.6,34.9l-3.3-1V16.6l3.3-1V34.9z"/>
<polygon class="st0" points="67.1,13 67.1,37.3 81.8,31.5 81.8,18.4 "/>
<path class="st0" d="M52.4,16.6v16.6L64,37.3V13L52.4,16.6z M55.2,32.3l-1.8-0.7V18.4l1.8-0.5V32.3z M58.5,33.5L56,32.7V17.6
l2.5-0.8C58.5,16.8,58.5,33.5,58.5,33.5z M62.6,34.9l-3.3-1V16.6l3.3-1V34.9z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.3, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<g>
<path d="M71.3166656,31.7333336c1.1500015,0.6666641,2.5833359,0.6666641,3.7333374,0l15.3000031-8.7000008l-8.25-4.6999989
c0,0,0,0,0.0166626-0.0166664L50.1166649,0l-5.3999977,3.0666668C44.4333344,3.2,44.1666679,3.3333335,43.8833313,3.5
L9.5499992,23.083334l15.2666664,8.7166672c1.166666,0.666666,2.5833321,0.666666,3.75,0l7.6666679-4.3666649l10-5.7000008
c2.3333321-1.333334,5.2166634-1.333334,7.5666656,0l7.8666687,4.4833336L71.3166656,31.7333336z"/>
<path d="M77.8499985,42.6500015v20.0500031c0,2.6666641-1.4499969,5.1333389-3.7833328,6.4833298L56.1666679,79.3833313
C55,80.0500031,54.2833366,81.2666702,54.2833366,82.5999985V100l34.6000023-19.7166672
c0.0499954-0.0333405,0.0999985-0.0500031,0.1333313-0.0833359L95,76.8000031v-4.6999969v-2.2666702V30.7333355
l-15.2666626,8.6999989C78.5666656,40.1000023,77.8499985,41.3166656,77.8499985,42.6500015z"/>
<path d="M43.2999992,79.1166687l-17.3666668-9.9000015c-2.3500004-1.3333282-3.7833347-3.7999954-3.7833347-6.4833298V42.6833344
c0-1.3333321-0.7166672-2.5499992-1.8833332-3.2166672L4.9999986,30.7666664v-0.0333347V30.75v39.1166611l0,0v2.2166748v4.6999969
l5.3499999,3.0666656c0.250001,0.1666641,0.5,0.3166656,0.750001,0.4666672l34.0666695,19.4166641V82.3333359
C45.1833344,81,44.4666672,79.7833405,43.2999992,79.1166687z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.3, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{fill:#21CF68;}
.st1{fill:#FB5138;}
.st2{fill:#1267FA;}
</style>
<g>
<path class="st0" d="M71.3166656,31.7333336c1.1500015,0.6666641,2.5833359,0.6666641,3.7333374,0l15.3000031-8.7000008
l-8.25-4.6999989c0,0,0,0,0.0166626-0.0166664L50.1166649,0l-5.3999977,3.0666668
C44.4333344,3.2,44.1666679,3.3333335,43.8833313,3.5L9.5499992,23.083334l15.2666664,8.7166672
c1.166666,0.666666,2.5833321,0.666666,3.75,0l7.6666679-4.3666649l10-5.7000008
c2.3333321-1.333334,5.2166634-1.333334,7.5666656,0l7.8666687,4.4833336L71.3166656,31.7333336z"/>
<path class="st1" d="M77.8499985,42.6500015v20.0500031c0,2.6666641-1.4499969,5.1333389-3.7833328,6.4833298
L56.1666679,79.3833313C55,80.0500031,54.2833366,81.2666702,54.2833366,82.5999985V100l34.6000023-19.7166672
c0.0499954-0.0333405,0.0999985-0.0500031,0.1333313-0.0833359L95,76.8000031v-4.6999969v-2.2666702V30.7333355
l-15.2666626,8.6999989C78.5666656,40.1000023,77.8499985,41.3166656,77.8499985,42.6500015z"/>
<path class="st2" d="M43.2999992,79.1166687l-17.3666668-9.9000015c-2.3500004-1.3333282-3.7833347-3.7999954-3.7833347-6.4833298
V42.6833344c0-1.3333321-0.7166672-2.5499992-1.8833332-3.2166672L4.9999986,30.7666664v-0.0333347V30.75v39.1166611l0,0v2.2166748
v4.6999969l5.3499999,3.0666656c0.250001,0.1666641,0.5,0.3166656,0.750001,0.4666672l34.0666695,19.4166641V82.3333359
C45.1833344,81,44.4666672,79.7833405,43.2999992,79.1166687z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.3, 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 4197.2836914 633.0073853" style="enable-background:new 0 0 4197.2836914 633.0073853;" xml:space="preserve">
<style type="text/css">
.st0{fill:#D9EDEF;}
.st1{fill:#8DC63F;}
.st2{fill:#6BA939;}
.st3{fill:#5C9531;}
.st4{fill:#594A41;}
.st5{fill:#DBE13A;}
.st6{fill:#BBD644;}
.st7{fill:#ABC53E;}
.st8{opacity:0.5;}
.st9{fill:#FFFFFF;}
</style>
<rect class="st0" width="4197.2836914" height="633.0073853"/>
<g>
<path id="path598" class="st1" d="M3443.8837891,580.0073853
c-175.1999512-106.2000122-400.3000488-170.1000061-645.8999023-170.1000061c-284.1999512,0-541,85.5-724.6000977,223.1000061
h1370.5V580.0073853z"/>
<g>
<path id="path600" class="st2" d="M2780.0837402,473.9074097c0,22.9000244-18.5998535,41.5-41.5,41.5
c-22.8999023,0-41.5-18.5999756-41.5-41.5c0-22.8999939,18.6000977-41.5,41.5-41.5
C2761.5837402,432.4074097,2780.0837402,451.0074158,2780.0837402,473.9074097z"/>
<path id="path602" class="st3" d="M2780.0837402,473.9074097c0-22.8999939-18.5998535-41.5-41.5-41.5v82.9000244
C2761.5837402,515.3074341,2780.0837402,496.8074341,2780.0837402,473.9074097z"/>
<path id="path604" class="st4" d="M2738.6838379,540.0073853c-1.0998535,0-2.0998535-0.9000244-2.0998535-2.0999756v-58
c0-1.0999756,0.8999023-2.0999756,2.0998535-2.0999756c1.1000977,0,2.1000977,0.9000244,2.1000977,2.0999756v58
C2740.7839355,539.1074219,2739.7839355,540.0073853,2738.6838379,540.0073853z"/>
<path id="path606" class="st4" d="M2738.6838379,503.1074219c-0.5,0-1.0998535-0.2000122-1.5-0.5999756
c-0.8000488-0.7999878-0.8000488-2.0999756,0-2.9000244l8.6000977-8.5999756c0.8000488-0.7999878,2.0998535-0.7999878,2.8999023,0
s0.8000488,2.0999756,0,2.9000244l-8.5998535,8.5999756
C2739.6838379,502.9074707,2739.1838379,503.1074219,2738.6838379,503.1074219z"/>
<path id="path608" class="st4" d="M2738.6838379,495.6074219c-0.5,0-1.0998535-0.2000122-1.5-0.5999756l-11.5-11.5
c-0.8000488-0.7999878-0.8000488-2.0999756,0-2.9000244c0.8000488-0.7999878,2.1000977-0.7999878,2.9001465,0l11.5,11.5
c0.8000488,0.7999878,0.8000488,2.0999756,0,2.9000244
C2739.6838379,495.4074707,2739.1838379,495.6074219,2738.6838379,495.6074219z"/>
</g>
<path id="path610" class="st5" d="M2386.8837891,506.1073914c0-26-7.3999023-56.1000061-22.3999023-56.1000061
s-22.4001465,30.1000061-22.4001465,56.1000061c0,9.4999695,7.4001465,17.1999817,22.4001465,17.1999817
C2379.4838867,523.4074097,2386.8837891,515.7073975,2386.8837891,506.1073914z"/>
<path id="path612" class="st6" d="M2386.8837891,506.1073914c0-26-7.3999023-56.1000061-22.3999023-56.1000061v73.2999878
c15,0.0999756,22.3999023-7.6000366,22.3999023-17.2000122V506.1073914z"/>
<path id="path614" class="st4" d="M2364.4838867,550.4074097c-1.1000977,0-2.1000977-0.9000244-2.1000977-2.1000366v-64.1999512
c0-1.1000061,0.9001465-2.1000061,2.1000977-2.1000061c1.0998535,0,2.0998535,0.8999939,2.0998535,2.1000061v64.2000122
C2366.5837402,549.5074463,2365.6838379,550.4074097,2364.4838867,550.4074097L2364.4838867,550.4074097z"/>
<path id="path616" class="st4" d="M2364.4838867,509.7073975c-0.5,0-1.1000977-0.2000122-1.5-0.6000061l-9.5-9.5
c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939s2.0998535-0.7999878,2.8999023,0l9.5,9.5
c0.8000488,0.7999878,0.8000488,2.1000061,0,2.8999939
C2365.5837402,509.5073853,2365.0837402,509.7073975,2364.4838867,509.7073975z"/>
<path id="path618" class="st4" d="M2364.4838867,501.3074036c-0.5,0-1.1000977-0.2000122-1.5-0.6000061
c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939l12.6999512-12.7000122
c0.8000488-0.7999878,2.0998535-0.7999878,2.8999023,0s0.8000488,2.1000061,0,2.8999939l-12.6999512,12.7000122
C2365.5837402,501.1073914,2365.0837402,501.3074036,2364.4838867,501.3074036z"/>
<path id="path620" class="st6" d="M3489.7836914,322.4074402c-301.3999023,0-562.1999512,126.5-688,310.6000061h653.3000488
h88.8999023h653.3000488c-125.8999023-184.1000366-386.6999512-310.6000366-688.3000488-310.6000366
c-3.1999512,0-6.3999023,0.1000061-9.5998535,0.1000061c-3.1999512-0.1000061-6.3999023-0.1000061-9.6000977-0.1000061V322.4074402
z"/>
<g id="g642" transform="translate(0,150.9074)">
<path id="path622" class="st7" d="M3340.7836914,335.4000244c0-9-7.2998047-16.2999878-16.2998047-16.2999878
s-16.3000488,7.2999878-16.3000488,16.2999878s7.3000488,16.2999878,16.3000488,16.2999878
S3340.7836914,344.4000244,3340.7836914,335.4000244z"/>
<path id="path624" class="st7" d="M3475.1838379,270.2000122c0-9-7.3000488-16.3000031-16.3000488-16.3000031
s-16.3000488,7.3000031-16.3000488,16.3000031S3449.8837891,286.5,3458.8837891,286.5
S3475.1838379,279.2000122,3475.1838379,270.2000122z"/>
<path id="path626" class="st7" d="M3298.7839355,384.2999878c-9,0-16.3000488,7.2999878-16.3000488,16.2999878
s7.2998047,16.2999878,16.3000488,16.2999878h97.0998535c9,0,16.3000488,7.2999878,16.3000488,16.2999878
s-7.3000488,16.2999878-16.3000488,16.2999878h-21.3999023c-9,0-16.3000488,7.2999878-16.3000488,16.2999878
s7.3000488,16.2999878,16.3000488,16.2999878h289.5h52c9,0,16.2998047-7.2999878,16.2998047-16.2999878
s-7.2998047-16.2999878-16.2998047-16.2999878h-56.7001953c-9,0-16.2998047-7.2999878-16.2998047-16.2999878
s7.2998047-16.2999878,16.2998047-16.2999878h110c9,0,16.3000488-7.2999878,16.3000488-16.2999878
s-7.3000488-16.2999878-16.3000488-16.2999878h-68.5998535c-9,0-16.3000488-7.2999878-16.3000488-16.2999878
s7.3000488-16.2999878,16.3000488-16.2999878h104.2998047c9,0,16.3000488-7.2999878,16.3000488-16.2999878
s-7.3000488-16.2999878-16.3000488-16.2999878h-57.0998535c-9,0-16.3000488-7.2999878-16.3000488-16.2999878
s7.3000488-16.2999878,16.3000488-16.2999878h21.3999023c9,0,16.3000488-7.2999878,16.3000488-16.2999878
s-7.3000488-16.3000031-16.3000488-16.3000031h-119.5h-142c-9,0-16.2998047,7.3000031-16.2998047,16.3000031
s7.2998047,16.2999878,16.2998047,16.2999878h56.7001953c9,0,16.2998047,7.2999878,16.2998047,16.2999878
s-7.2998047,16.2999878-16.2998047,16.2999878h-190c-9,0-16.3000488,7.2999878-16.3000488,16.2999878
s7.3000488,16.2999878,16.3000488,16.2999878h68.5998535c9,0,16.3000488,7.2999878,16.3000488,16.2999878
s-7.3000488,16.2999878-16.3000488,16.2999878h-144.3000488H3298.7839355z"/>
<path id="path628" class="st7" d="M3802.9838867,400.5999756c0,9,7.2998047,16.2999878,16.2998047,16.2999878
s16.3000488-7.2999878,16.3000488-16.2999878s-7.3000488-16.2999878-16.3000488-16.2999878
S3802.9838867,391.5999756,3802.9838867,400.5999756z"/>
<path id="path630" class="st7" d="M3748.5837402,465.7999878c0,9,7.3000488,16.2999878,16.3000488,16.2999878
s16.3000488-7.2999878,16.3000488-16.2999878S3773.8837891,449.5,3764.8837891,449.5
S3748.5837402,456.7999878,3748.5837402,465.7999878z"/>
</g>
<g>
<path id="path654" class="st1" d="M3159.2836914,303.9074097c25.6000977,0,46.4001465,20.6999817,46.4001465,46.3999939
c0,25.6000061-20.6999512,46.3999939-46.4001465,46.3999939c-25.5998535,0-46.3999023-20.6999817-46.3999023-46.3999939
C3112.8837891,324.6074219,3133.6838379,303.8074036,3159.2836914,303.9074097z"/>
<path id="path656" class="st2" d="M3159.2836914,396.8074036v-92.8999939
c-25.5998535,0-46.3999023,20.6999817-46.3999023,46.3999939
C3112.8837891,375.9074097,3133.6838379,396.7073975,3159.2836914,396.8074036z"/>
<path id="path658" class="st4" d="M3157.2836914,422.0073853v-65.1000061c0-1.2000122,1-2.1000061,2.1000977-2.1000061
c1.1999512,0,2.0998535,1,2.0998535,2.1000061v65.1000061c0,1.2000122-1,2.1000061-2.0998535,2.1000061
C3158.1838379,424.1073914,3157.2836914,423.2073975,3157.2836914,422.0073853z"/>
<path id="path660" class="st4" d="M3157.9836426,382.2073975l-9.6999512-9.7000122
c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939s2.1000977-0.7999878,2.9001465,0l9.6999512,9.7000122
c0.8000488,0.7999878,0.8000488,2.1000061,0,2.8999939c-0.4001465,0.3999939-1,0.6000061-1.5,0.6000061
S3158.2836914,382.6073914,3157.9836426,382.2073975z"/>
<path id="path662" class="st4" d="M3157.9836426,373.7073975c-0.7998047-0.7999878-0.7998047-2.1000061,0-2.8999939
l12.8000488-12.7999878c0.8000488-0.7999878,2.1000977-0.7999878,2.9001465,0
c0.7998047,0.7999878,0.7998047,2.1000061,0,2.8999939l-12.8000488,12.7999878c-0.4001465,0.3999939-1,0.6000061-1.5,0.6000061
S3158.2836914,374.1073914,3157.9836426,373.7073975z"/>
</g>
<g>
<path id="path694" class="st5" d="M3559.3447266,517.8883667c-17.3000488,0-31.3000488-14-31.3000488-31.2999878
c0-47.2000122,14-125.6000061,31.3000488-125.6000061c17.2998047,0,31.2998047,78.4000244,31.2998047,125.6000061
C3590.6445312,503.8883667,3576.6445312,517.8883667,3559.3447266,517.8883667z"/>
<path id="path696" class="st6" d="M3559.3447266,517.8883667V360.9883728
c17.2998047,0,31.2998047,78.4000244,31.2998047,125.6000061
C3590.6445312,503.8883667,3576.6445312,517.8883667,3559.3447266,517.8883667z"/>
<path id="path698" class="st4" d="M3557.2446289,550.9884033v-85.1000366c0-1.2000122,1-2.1000061,2.1000977-2.1000061
c1.1999512,0,2.0998535,1,2.0998535,2.1000061v85.1000366c0,1.2000122-1,2.0999756-2.0998535,2.0999756
C3558.1447754,553.0883789,3557.2446289,552.0883789,3557.2446289,550.9884033z"/>
<path id="path700" class="st4" d="M3557.9445801,498.2883911l-12.5998535-12.6000061
c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939s2.0998535-0.7999878,2.8999023,0l12.6000977,12.7000122
c0.7998047,0.7999878,0.7998047,2.1000061,0,2.8999939c-0.4001465,0.3999939-1,0.6000061-1.5,0.6000061
S3558.2446289,498.7883911,3557.9445801,498.2883911z"/>
<path id="path702" class="st4" d="M3557.8447266,487.3883972c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939
l16.7998047-16.7999878c0.8000488-0.7999878,2.1000977-0.7999878,2.9001465,0s0.8000488,2.1000061,0,2.8999939
l-16.6999512,16.7999878c-0.4001465,0.3999939-1,0.6000061-1.5,0.6000061S3558.2446289,487.7883911,3557.8447266,487.3883972z"/>
</g>
<g>
<path id="path714" class="st1" d="M3404.1896973,333.3871155c-19.8999023,0-29.6999512-10.3000488-29.6999512-22.9000244
c0-34.5,9.7998047-74.4000092,29.6999512-74.4000092c19.8999023,0,29.6999512,39.9000092,29.6999512,74.4000092
C3433.8896484,323.1871033,3424.0895996,333.3871155,3404.1896973,333.3871155z"/>
<path id="path716" class="st2" d="M3404.1896973,333.2870789v-97.1999969
c19.8999023,0,29.6999512,39.9000092,29.6999512,74.4000092
C3433.8896484,323.1871033,3424.0895996,333.3870544,3404.1896973,333.2870789z"/>
<path id="path718" class="st4" d="M3402.0895996,366.4870911v-85.0999756c0-1.1999512,1-2.0999756,2.1000977-2.0999756
c1.1999512,0,2.0998535,1,2.0998535,2.0999756v85.0999756c0,1.1999512-1,2.0999756-2.0998535,2.0999756
C3403.0895996,368.5870667,3402.1896973,367.6871033,3402.0895996,366.4870911z"/>
<path id="path720" class="st4" d="M3402.7895508,313.7870789l-12.5998535-12.5999756
c-0.8000488-0.8000488-0.8000488-2.1000366,0-2.9000244s2.0998535-0.7999878,2.8999023,0l12.6000977,12.7000122
c0.8000488,0.8000488,0.8000488,2.1000366,0,2.9000244c-0.4001465,0.3999634-1,0.5999756-1.5,0.5999756
S3403.1896973,314.2870789,3402.7895508,313.7870789z"/>
<path id="path722" class="st4" d="M3402.7895508,302.8871155c-0.8000488-0.8000488-0.8000488-2.1000366,0-2.9000244
l16.8000488-16.7999878c0.8000488-0.7999878,2.1000977-0.7999878,2.9001465,0
c0.8000488,0.8000488,0.8000488,2.1000366,0,2.9000244l-16.8000488,16.7999878c-0.4001465,0.3999634-1,0.5999756-1.5,0.5999756
S3403.1896973,303.2871399,3402.7895508,302.8871155z"/>
</g>
</g>
<g class="st8">
<path class="st9" d="M2760.2143555,182.9998169h30.456543c7.9172363,0,14.3356934-6.4185791,14.3356934-14.3361053
c0-7.9173431-6.418457-14.3357544-14.3356934-14.3357544h-5.9523926c-7.9174805,0-14.3359375-6.4184113-14.3359375-14.3359375
v-0.0001831c0-7.9173431,6.418457-14.3357544,14.3359375-14.3357544h133.5310059
c7.9174805,0,14.3359375,6.4184113,14.3359375,14.3357544v0.0001831c0,7.9175262-6.418457,14.3359375-14.3359375,14.3359375
h-7.0739746h-61.7858887c-7.9174805,0-14.3359375,6.4184113-14.3359375,14.3357544v0.0001678
c0,7.9175262,6.418457,14.3359375,14.3359375,14.3359375h61.7858887h64.6325684h7.1123047h24.9370117
c7.9174805,0,14.3359375,6.4184113,14.3359375,14.3357697c0,7.917511-6.418457,14.3359222-14.3359375,14.3359222h-20.9790039
c-0.0693359,0.0010529-0.1362305,0.0104523-0.2055664,0.0104523h-7.0739746h-61.7858887
c-7.9177246,0-14.3359375,6.4184113-14.3359375,14.3359375c0,7.917511,6.4182129,14.3359222,14.3359375,14.3359222h61.7858887
h64.6323242h7.1125488h42.3581543c7.9174805,0,14.3359375,6.4184113,14.3359375,14.3359375
c0,7.9173584-6.418457,14.3359375-14.3359375,14.3359375h-131.5332031h-41.6860352h-91.8449707
c-7.9174805,0-14.3356934-6.4185791-14.3356934-14.3359375c0-7.9175262,6.4182129-14.3359375,14.3356934-14.3359375h30.456543
c7.9172363,0,14.3359375-6.4184113,14.3359375-14.3359222c0-7.9175262-6.4187012-14.3359375-14.3359375-14.3359375h-5.9523926
c-0.0693359,0-0.1364746-0.0093994-0.2055664-0.0104523h-0.8769531h-91.8449707
c-7.9174805,0-14.3356934-6.4184113-14.3356934-14.3359222
C2745.8786621,189.4182281,2752.296875,182.9998169,2760.2143555,182.9998169z"/>
<ellipse transform="matrix(0.7071068 -0.7071068 0.7071068 0.7071068 656.4876099 1979.5828857)" class="st9" cx="2717.8117676" cy="197.3408508" rx="14.3364344" ry="14.3363905"/>
<ellipse transform="matrix(0.2305667 -0.9730566 0.9730566 0.2305667 2145.1455078 2992.8227539)" class="st9" cx="2964.9951172" cy="139.9924927" rx="14.3363209" ry="14.3364172"/>
<ellipse transform="matrix(0.1605944 -0.9870205 0.9870205 0.1605944 2301.5793457 2846.4716797)" class="st9" cx="2824.310791" cy="70.0723495" rx="14.3363218" ry="14.3364592"/>
<ellipse transform="matrix(0.8951613 -0.4457424 0.4457424 0.8951613 216.8301849 1430.5336914)" class="st9" cx="3149.512207" cy="254.3188477" rx="14.3364563" ry="14.3364019"/>
<circle class="st9" cx="2905.8103027" cy="319.886261" r="14.3364344"/>
</g>
<g class="st8">
<path class="st9" d="M4197.2836914,119.5879898h-124.1401367h-36.2236328h-3.1196289h-86.6828613h-16.2521973
c-6.9624023-0.5554581-12.442627-6.3699799-12.442627-13.4754791c0-7.4723663,6.0576172-13.5300293,13.5300293-13.5300293
h5.6179199c7.4726562,0,13.5300293-6.0576706,13.5300293-13.5301895l0,0c0-7.4725266-6.057373-13.5301971-13.5300293-13.5301971
h-126.0258789c-7.4726562,0-13.5302734,6.0576706-13.5302734,13.5301971l0,0
c0,7.4725189,6.0576172,13.5301895,13.5302734,13.5301895h6.6762695h58.3132324
c7.4726562,0,13.5302734,6.057663,13.5302734,13.5300293v0.0001602c0,7.4725266-6.0576172,13.5301895-13.5302734,13.5301895
h-58.3132324h-61h-6.7126465h-39.9772949c-7.4726562,0-13.5302734,6.0576706-13.5302734,13.5300369
c0,7.4726868,6.0576172,13.5301819,13.5302734,13.5301819h124.1403809h39.3432617h86.6828613
c0.3662109,0,0.7263184-0.026123,1.0852051-0.0547028h14.0793457c7.4724121,0,13.5300293,6.057663,13.5300293,13.5301819
c0,7.4725342-6.0576172,13.5301971-13.5300293,13.5301971h-5.6179199h-52.6738281h-61h-6.7126465h-39.9772949
c-7.4724121,0-13.5302734,6.057663-13.5302734,13.5300293c0,7.4725189,6.0578613,13.5303497,13.5302734,13.5303497h38.7426758
c0.4528809,0.0458374,0.9123535,0.0695038,1.3774414,0.0695038h6.6760254h58.3137207
c7.4724121,0,13.5302734,6.057663,13.5302734,13.530014v0.0001678c0,7.4725342-6.0578613,13.5301971-13.5302734,13.5301971
h-58.3137207h-60.9995117h-6.7128906h-39.9770508c-7.4726562,0-13.5302734,6.057663-13.5302734,13.5300293
c0,7.4725189,6.0576172,13.5303497,13.5302734,13.5303497h124.1401367h39.3432617h86.6828613
c7.4724121,0,13.5300293-6.0578308,13.5300293-13.5303497c0-7.4723663-6.0576172-13.5300293-13.5300293-13.5300293h-28.7446289
c-7.4724121,0-13.5302734-6.0578308-13.5302734-13.530365c0-7.4723511,6.0578613-13.530014,13.5302734-13.530014h5.6176758
c0.4650879,0,0.9245605-0.0236664,1.3774414-0.0695038h82.6430664h36.2231445
c7.4726562,0,13.5302734-6.057663,13.5302734-13.5301819l0,0c0-7.4725342-6.0576172-13.5301971-13.5302734-13.5301971h-6.6762695
h-29.546875h-28.744873c-7.4724121,0-13.5300293-6.0578308-13.5300293-13.5301971
c0-7.4725189,6.0576172-13.5301819,13.5300293-13.5301819h5.6179199h52.6738281h61h6.7128906h39.9770508"/>
<ellipse transform="matrix(0.2400311 -0.9707652 0.9707652 0.2400311 2857.5102539 4130.8178711)" class="st9" cx="4067.0566406" cy="240.352829" rx="13.5306482" ry="13.5305595"/>
<ellipse transform="matrix(0.6751397 -0.7376899 0.7376899 0.6751397 1235.9562988 2964.7043457)" class="st9" cx="3984.0908203" cy="79.052742" rx="13.5305424" ry="13.5305834"/>
<ellipse transform="matrix(0.2305667 -0.9730565 0.9730565 0.2305667 2966.0673828 3778.0703125)" class="st9" cx="3871.9841309" cy="13.5306435" rx="13.5305557" ry="13.5306473"/>
<ellipse transform="matrix(0.153126 -0.9882067 0.9882067 0.153126 2996.0073242 4081.1125488)" class="st9" cx="3879.1032715" cy="292.5545959" rx="13.5305576" ry="13.5306931"/>
<ellipse transform="matrix(0.1547078 -0.9879603 0.9879603 0.1547078 3000.173584 3878.3676758)" class="st9" cx="3766.5651855" cy="185.9130859" rx="13.5305576" ry="13.5306921"/>
<ellipse transform="matrix(0.7071068 -0.7071068 0.7071068 0.7071068 964.4237671 2595.8608398)" class="st9" cx="3615.6931152" cy="133.7679901" rx="13.5306635" ry="13.5306225"/>
</g>
<g class="st8">
<path class="st9" d="M0,103.1459427h99.549469h36.2236176h3.1195221h168.8931274h16.2521057
c6.9625854-0.5554657,12.4425964-6.3699799,12.4425964-13.4754868c0-7.4723587-6.0574951-13.5300293-13.5299988-13.5300293
h-5.6177368c-7.4726562,0-13.5301819-6.057663-13.5301819-13.5301895l0,0c0-7.4725227,6.0575256-13.5301895,13.5301819-13.5301895
h158.9099426c7.4725342,0,13.5301819,6.0576668,13.5301819,13.5301895l0,0c0,7.4725266-6.0576477,13.5301895-13.5301819,13.5301895
h-6.6762085h-58.3134155c-7.4725342,0-13.5302124,6.0576706-13.5302124,13.5300293v0.0001678
c0,7.4725189,6.0576782,13.5301895,13.5302124,13.5301895h58.3134155h60.9998474h6.7127075h39.9772949
c7.4725342,0,13.5301514,6.057663,13.5301514,13.5300293c0,7.4726868-6.0576172,13.5301895-13.5301514,13.5301895H453.1159973
h-39.3432922H294.2057495c-0.3663635,0-0.7263184-0.026123-1.0852966-0.0547028h-14.0792542
c-7.4725037,0-13.5301819,6.057663-13.5301819,13.5301819s6.0576782,13.5301971,13.5301819,13.5301971h5.6177063h52.6740417
h93.8839722h6.7127075h39.9772644c7.4725342,0,13.5301819,6.057663,13.5301819,13.5300293
c0,7.4725189-6.0576477,13.5303497-13.5301819,13.5303497h-38.7426453
c-0.4529419,0.0458374-0.9124756,0.0694885-1.3774109,0.0694885h-6.6762085h-91.1976929
c-7.4725037,0-13.5301819,6.0576782-13.5301819,13.5300293v0.0001678c0,7.4725189,6.0576782,13.5301971,13.5301819,13.5301971
h58.3135986h60.9995422h6.7128601h39.9772644c7.4725342,0,13.5302124,6.057663,13.5302124,13.530014
c0,7.4725342-6.0576782,13.530365-13.5302124,13.530365H381.7759399h-39.3432922h-70.2406311
c-7.4725342,0-13.5302124-6.0578308-13.5302124-13.530365c0-7.4723511,6.0576782-13.530014,13.5302124-13.530014h12.3024292
c7.4725342,0,13.5302124-6.0578308,13.5302124-13.530365c0-7.4723511-6.0576782-13.5300293-13.5302124-13.5300293H278.87677
c-0.4649353,0-0.924469-0.0236511-1.3774109-0.0694885h-164.853241H76.4226761
c-7.4725266,0-13.5301895-6.057663-13.5301895-13.5301971l0,0c0-7.4725189,6.057663-13.5301819,13.5301895-13.5301819h6.6763763
h29.5470657h28.7446747c7.4725189,0,13.5300293-6.0578308,13.5300293-13.5301971
c0-7.4725189-6.0575104-13.5301819-13.5300293-13.5301819h-5.6177063H83.0990524H22.0991802h-6.7126875H0"/>
<ellipse transform="matrix(0.7376898 -0.6751398 0.6751398 0.7376898 28.7658882 199.2596588)" class="st9" cx="270.8124084" cy="62.6106911" rx="13.5305834" ry="13.5305424"/>
<ellipse transform="matrix(0.9730566 -0.2305667 0.2305667 0.9730566 8.0834675 96.2349319)" class="st9" cx="415.8031921" cy="13.5306435" rx="13.5306473" ry="13.5305557"/>
<ellipse transform="matrix(0.9882067 -0.153126 0.153126 0.9882067 -37.8480759 60.8010101)" class="st9" cx="375.7999268" cy="276.1125488" rx="13.5306931" ry="13.5305576"/>
<ellipse transform="matrix(0.9879603 -0.1547078 0.1547078 0.9879603 -19.9431171 82.6774826)" class="st9" cx="521.2220459" cy="169.4710388" rx="13.5306921" ry="13.5305576"/>
<ellipse transform="matrix(0.7071068 -0.7071068 0.7071068 0.7071068 113.8898544 509.6062927)" class="st9" cx="672.0941772" cy="117.3259354" rx="13.5306225" ry="13.5306635"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,242 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.3, 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 4197.2836914 633.0073853" style="enable-background:new 0 0 4197.2836914 633.0073853;" xml:space="preserve">
<style type="text/css">
.st0{fill:#2C3E50;}
.st1{fill:#8DC63F;}
.st2{fill:#6BA939;}
.st3{fill:#5C9531;}
.st4{fill:#594A41;}
.st5{fill:#DBE13A;}
.st6{fill:#BBD644;}
.st7{fill:#ABC53E;}
.st8{fill:#34495E;}
.st9{opacity:0.5;fill:#2C3E50;}
</style>
<rect class="st0" width="4197.2836914" height="633.0073853"/>
<g>
<path id="path598" class="st1" d="M3443.8837891,580.0073853
c-175.1999512-106.2000122-400.3000488-170.1000061-645.8999023-170.1000061c-284.1999512,0-541,85.5-724.6000977,223.1000061
h1370.5V580.0073853z"/>
<g>
<path id="path600" class="st2" d="M2780.0837402,473.9074097c0,22.9000244-18.5998535,41.5-41.5,41.5
c-22.8999023,0-41.5-18.5999756-41.5-41.5c0-22.8999939,18.6000977-41.5,41.5-41.5
C2761.5837402,432.4074097,2780.0837402,451.0074158,2780.0837402,473.9074097z"/>
<path id="path602" class="st3" d="M2780.0837402,473.9074097c0-22.8999939-18.5998535-41.5-41.5-41.5v82.9000244
C2761.5837402,515.3074341,2780.0837402,496.8074341,2780.0837402,473.9074097z"/>
<path id="path604" class="st4" d="M2738.6838379,540.0073853c-1.0998535,0-2.0998535-0.9000244-2.0998535-2.0999756v-58
c0-1.0999756,0.8999023-2.0999756,2.0998535-2.0999756c1.1000977,0,2.1000977,0.9000244,2.1000977,2.0999756v58
C2740.7839355,539.1074219,2739.7839355,540.0073853,2738.6838379,540.0073853z"/>
<path id="path606" class="st4" d="M2738.6838379,503.1074219c-0.5,0-1.0998535-0.2000122-1.5-0.5999756
c-0.8000488-0.7999878-0.8000488-2.0999756,0-2.9000244l8.6000977-8.5999756c0.8000488-0.7999878,2.0998535-0.7999878,2.8999023,0
s0.8000488,2.0999756,0,2.9000244l-8.5998535,8.5999756
C2739.6838379,502.9074707,2739.1838379,503.1074219,2738.6838379,503.1074219z"/>
<path id="path608" class="st4" d="M2738.6838379,495.6074219c-0.5,0-1.0998535-0.2000122-1.5-0.5999756l-11.5-11.5
c-0.8000488-0.7999878-0.8000488-2.0999756,0-2.9000244c0.8000488-0.7999878,2.1000977-0.7999878,2.9001465,0l11.5,11.5
c0.8000488,0.7999878,0.8000488,2.0999756,0,2.9000244
C2739.6838379,495.4074707,2739.1838379,495.6074219,2738.6838379,495.6074219z"/>
</g>
<path id="path610" class="st5" d="M2386.8837891,506.1073914c0-26-7.3999023-56.1000061-22.3999023-56.1000061
s-22.4001465,30.1000061-22.4001465,56.1000061c0,9.4999695,7.4001465,17.1999817,22.4001465,17.1999817
C2379.4838867,523.4074097,2386.8837891,515.7073975,2386.8837891,506.1073914z"/>
<path id="path612" class="st6" d="M2386.8837891,506.1073914c0-26-7.3999023-56.1000061-22.3999023-56.1000061v73.2999878
c15,0.0999756,22.3999023-7.6000366,22.3999023-17.2000122V506.1073914z"/>
<path id="path614" class="st4" d="M2364.4838867,550.4074097c-1.1000977,0-2.1000977-0.9000244-2.1000977-2.1000366v-64.1999512
c0-1.1000061,0.9001465-2.1000061,2.1000977-2.1000061c1.0998535,0,2.0998535,0.8999939,2.0998535,2.1000061v64.2000122
C2366.5837402,549.5074463,2365.6838379,550.4074097,2364.4838867,550.4074097L2364.4838867,550.4074097z"/>
<path id="path616" class="st4" d="M2364.4838867,509.7073975c-0.5,0-1.1000977-0.2000122-1.5-0.6000061l-9.5-9.5
c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939s2.0998535-0.7999878,2.8999023,0l9.5,9.5
c0.8000488,0.7999878,0.8000488,2.1000061,0,2.8999939
C2365.5837402,509.5073853,2365.0837402,509.7073975,2364.4838867,509.7073975z"/>
<path id="path618" class="st4" d="M2364.4838867,501.3074036c-0.5,0-1.1000977-0.2000122-1.5-0.6000061
c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939l12.6999512-12.7000122
c0.8000488-0.7999878,2.0998535-0.7999878,2.8999023,0s0.8000488,2.1000061,0,2.8999939l-12.6999512,12.7000122
C2365.5837402,501.1073914,2365.0837402,501.3074036,2364.4838867,501.3074036z"/>
<path id="path620" class="st6" d="M3489.7836914,322.4074402c-301.3999023,0-562.1999512,126.5-688,310.6000061h653.3000488
h88.8999023h653.3000488c-125.8999023-184.1000366-386.6999512-310.6000366-688.3000488-310.6000366
c-3.1999512,0-6.3999023,0.1000061-9.5998535,0.1000061c-3.1999512-0.1000061-6.3999023-0.1000061-9.6000977-0.1000061V322.4074402
z"/>
<g id="g642" transform="translate(0,150.9074)">
<path id="path622" class="st7" d="M3340.7836914,335.4000244c0-9-7.2998047-16.2999878-16.2998047-16.2999878
s-16.3000488,7.2999878-16.3000488,16.2999878s7.3000488,16.2999878,16.3000488,16.2999878
S3340.7836914,344.4000244,3340.7836914,335.4000244z"/>
<path id="path624" class="st7" d="M3475.1838379,270.2000122c0-9-7.3000488-16.3000031-16.3000488-16.3000031
s-16.3000488,7.3000031-16.3000488,16.3000031S3449.8837891,286.5,3458.8837891,286.5
S3475.1838379,279.2000122,3475.1838379,270.2000122z"/>
<path id="path626" class="st7" d="M3298.7839355,384.2999878c-9,0-16.3000488,7.2999878-16.3000488,16.2999878
s7.2998047,16.2999878,16.3000488,16.2999878h97.0998535c9,0,16.3000488,7.2999878,16.3000488,16.2999878
s-7.3000488,16.2999878-16.3000488,16.2999878h-21.3999023c-9,0-16.3000488,7.2999878-16.3000488,16.2999878
s7.3000488,16.2999878,16.3000488,16.2999878h289.5h52c9,0,16.2998047-7.2999878,16.2998047-16.2999878
s-7.2998047-16.2999878-16.2998047-16.2999878h-56.7001953c-9,0-16.2998047-7.2999878-16.2998047-16.2999878
s7.2998047-16.2999878,16.2998047-16.2999878h110c9,0,16.3000488-7.2999878,16.3000488-16.2999878
s-7.3000488-16.2999878-16.3000488-16.2999878h-68.5998535c-9,0-16.3000488-7.2999878-16.3000488-16.2999878
s7.3000488-16.2999878,16.3000488-16.2999878h104.2998047c9,0,16.3000488-7.2999878,16.3000488-16.2999878
s-7.3000488-16.2999878-16.3000488-16.2999878h-57.0998535c-9,0-16.3000488-7.2999878-16.3000488-16.2999878
s7.3000488-16.2999878,16.3000488-16.2999878h21.3999023c9,0,16.3000488-7.2999878,16.3000488-16.2999878
s-7.3000488-16.3000031-16.3000488-16.3000031h-119.5h-142c-9,0-16.2998047,7.3000031-16.2998047,16.3000031
s7.2998047,16.2999878,16.2998047,16.2999878h56.7001953c9,0,16.2998047,7.2999878,16.2998047,16.2999878
s-7.2998047,16.2999878-16.2998047,16.2999878h-190c-9,0-16.3000488,7.2999878-16.3000488,16.2999878
s7.3000488,16.2999878,16.3000488,16.2999878h68.5998535c9,0,16.3000488,7.2999878,16.3000488,16.2999878
s-7.3000488,16.2999878-16.3000488,16.2999878h-144.3000488H3298.7839355z"/>
<path id="path628" class="st7" d="M3802.9838867,400.5999756c0,9,7.2998047,16.2999878,16.2998047,16.2999878
s16.3000488-7.2999878,16.3000488-16.2999878s-7.3000488-16.2999878-16.3000488-16.2999878
S3802.9838867,391.5999756,3802.9838867,400.5999756z"/>
<path id="path630" class="st7" d="M3748.5837402,465.7999878c0,9,7.3000488,16.2999878,16.3000488,16.2999878
s16.3000488-7.2999878,16.3000488-16.2999878S3773.8837891,449.5,3764.8837891,449.5
S3748.5837402,456.7999878,3748.5837402,465.7999878z"/>
</g>
<g>
<path id="path654" class="st1" d="M3159.2836914,303.9074097c25.6000977,0,46.4001465,20.6999817,46.4001465,46.3999939
c0,25.6000061-20.6999512,46.3999939-46.4001465,46.3999939c-25.5998535,0-46.3999023-20.6999817-46.3999023-46.3999939
C3112.8837891,324.6074219,3133.6838379,303.8074036,3159.2836914,303.9074097z"/>
<path id="path656" class="st2" d="M3159.2836914,396.8074036v-92.8999939
c-25.5998535,0-46.3999023,20.6999817-46.3999023,46.3999939
C3112.8837891,375.9074097,3133.6838379,396.7073975,3159.2836914,396.8074036z"/>
<path id="path658" class="st4" d="M3157.2836914,422.0073853v-65.1000061c0-1.2000122,1-2.1000061,2.1000977-2.1000061
c1.1999512,0,2.0998535,1,2.0998535,2.1000061v65.1000061c0,1.2000122-1,2.1000061-2.0998535,2.1000061
C3158.1838379,424.1073914,3157.2836914,423.2073975,3157.2836914,422.0073853z"/>
<path id="path660" class="st4" d="M3157.9836426,382.2073975l-9.6999512-9.7000122
c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939s2.1000977-0.7999878,2.9001465,0l9.6999512,9.7000122
c0.8000488,0.7999878,0.8000488,2.1000061,0,2.8999939c-0.4001465,0.3999939-1,0.6000061-1.5,0.6000061
S3158.2836914,382.6073914,3157.9836426,382.2073975z"/>
<path id="path662" class="st4" d="M3157.9836426,373.7073975c-0.7998047-0.7999878-0.7998047-2.1000061,0-2.8999939
l12.8000488-12.7999878c0.8000488-0.7999878,2.1000977-0.7999878,2.9001465,0
c0.7998047,0.7999878,0.7998047,2.1000061,0,2.8999939l-12.8000488,12.7999878c-0.4001465,0.3999939-1,0.6000061-1.5,0.6000061
S3158.2836914,374.1073914,3157.9836426,373.7073975z"/>
</g>
<g>
<path id="path694" class="st5" d="M3559.3447266,517.8883667c-17.3000488,0-31.3000488-14-31.3000488-31.2999878
c0-47.2000122,14-125.6000061,31.3000488-125.6000061c17.2998047,0,31.2998047,78.4000244,31.2998047,125.6000061
C3590.6445312,503.8883667,3576.6445312,517.8883667,3559.3447266,517.8883667z"/>
<path id="path696" class="st6" d="M3559.3447266,517.8883667V360.9883728
c17.2998047,0,31.2998047,78.4000244,31.2998047,125.6000061
C3590.6445312,503.8883667,3576.6445312,517.8883667,3559.3447266,517.8883667z"/>
<path id="path698" class="st4" d="M3557.2446289,550.9884033v-85.1000366c0-1.2000122,1-2.1000061,2.1000977-2.1000061
c1.1999512,0,2.0998535,1,2.0998535,2.1000061v85.1000366c0,1.2000122-1,2.0999756-2.0998535,2.0999756
C3558.1447754,553.0883789,3557.2446289,552.0883789,3557.2446289,550.9884033z"/>
<path id="path700" class="st4" d="M3557.9445801,498.2883911l-12.5998535-12.6000061
c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939s2.0998535-0.7999878,2.8999023,0l12.6000977,12.7000122
c0.7998047,0.7999878,0.7998047,2.1000061,0,2.8999939c-0.4001465,0.3999939-1,0.6000061-1.5,0.6000061
S3558.2446289,498.7883911,3557.9445801,498.2883911z"/>
<path id="path702" class="st4" d="M3557.8447266,487.3883972c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939
l16.7998047-16.7999878c0.8000488-0.7999878,2.1000977-0.7999878,2.9001465,0s0.8000488,2.1000061,0,2.8999939
l-16.6999512,16.7999878c-0.4001465,0.3999939-1,0.6000061-1.5,0.6000061S3558.2446289,487.7883911,3557.8447266,487.3883972z"/>
</g>
<g>
<path id="path714" class="st1" d="M3404.1896973,333.3871155c-19.8999023,0-29.6999512-10.3000488-29.6999512-22.9000244
c0-34.5,9.7998047-74.4000092,29.6999512-74.4000092c19.8999023,0,29.6999512,39.9000092,29.6999512,74.4000092
C3433.8896484,323.1871033,3424.0895996,333.3871155,3404.1896973,333.3871155z"/>
<path id="path716" class="st2" d="M3404.1896973,333.2870789v-97.1999969
c19.8999023,0,29.6999512,39.9000092,29.6999512,74.4000092
C3433.8896484,323.1871033,3424.0895996,333.3870544,3404.1896973,333.2870789z"/>
<path id="path718" class="st4" d="M3402.0895996,366.4870911v-85.0999756c0-1.1999512,1-2.0999756,2.1000977-2.0999756
c1.1999512,0,2.0998535,1,2.0998535,2.0999756v85.0999756c0,1.1999512-1,2.0999756-2.0998535,2.0999756
C3403.0895996,368.5870667,3402.1896973,367.6871033,3402.0895996,366.4870911z"/>
<path id="path720" class="st4" d="M3402.7895508,313.7870789l-12.5998535-12.5999756
c-0.8000488-0.8000488-0.8000488-2.1000366,0-2.9000244s2.0998535-0.7999878,2.8999023,0l12.6000977,12.7000122
c0.8000488,0.8000488,0.8000488,2.1000366,0,2.9000244c-0.4001465,0.3999634-1,0.5999756-1.5,0.5999756
S3403.1896973,314.2870789,3402.7895508,313.7870789z"/>
<path id="path722" class="st4" d="M3402.7895508,302.8871155c-0.8000488-0.8000488-0.8000488-2.1000366,0-2.9000244
l16.8000488-16.7999878c0.8000488-0.7999878,2.1000977-0.7999878,2.9001465,0
c0.8000488,0.8000488,0.8000488,2.1000366,0,2.9000244l-16.8000488,16.7999878c-0.4001465,0.3999634-1,0.5999756-1.5,0.5999756
S3403.1896973,303.2871399,3402.7895508,302.8871155z"/>
</g>
</g>
<g>
<path class="st8" d="M2760.2143555,182.9998169h30.456543c7.9172363,0,14.3356934-6.4185791,14.3356934-14.3361053
c0-7.9173431-6.418457-14.3357544-14.3356934-14.3357544h-5.9523926c-7.9174805,0-14.3359375-6.4184113-14.3359375-14.3359375
v-0.0001831c0-7.9173431,6.418457-14.3357544,14.3359375-14.3357544h133.5310059
c7.9174805,0,14.3359375,6.4184113,14.3359375,14.3357544v0.0001831c0,7.9175262-6.418457,14.3359375-14.3359375,14.3359375
h-7.0739746h-61.7858887c-7.9174805,0-14.3359375,6.4184113-14.3359375,14.3357544v0.0001678
c0,7.9175262,6.418457,14.3359375,14.3359375,14.3359375h61.7858887h64.6325684h7.1123047h24.9370117
c7.9174805,0,14.3359375,6.4184113,14.3359375,14.3357697c0,7.917511-6.418457,14.3359222-14.3359375,14.3359222h-20.9790039
c-0.0693359,0.0010529-0.1362305,0.0104523-0.2055664,0.0104523h-7.0739746h-61.7858887
c-7.9177246,0-14.3359375,6.4184113-14.3359375,14.3359375c0,7.917511,6.4182129,14.3359222,14.3359375,14.3359222h61.7858887
h64.6323242h7.1125488h42.3581543c7.9174805,0,14.3359375,6.4184113,14.3359375,14.3359375
c0,7.9173584-6.418457,14.3359375-14.3359375,14.3359375h-131.5332031h-41.6860352h-91.8449707
c-7.9174805,0-14.3356934-6.4185791-14.3356934-14.3359375c0-7.9175262,6.4182129-14.3359375,14.3356934-14.3359375h30.456543
c7.9172363,0,14.3359375-6.4184113,14.3359375-14.3359222c0-7.9175262-6.4187012-14.3359375-14.3359375-14.3359375h-5.9523926
c-0.0693359,0-0.1364746-0.0093994-0.2055664-0.0104523h-0.8769531h-91.8449707
c-7.9174805,0-14.3356934-6.4184113-14.3356934-14.3359222
C2745.8786621,189.4182281,2752.296875,182.9998169,2760.2143555,182.9998169z"/>
<ellipse transform="matrix(0.7071068 -0.7071068 0.7071068 0.7071068 656.4876099 1979.5828857)" class="st8" cx="2717.8117676" cy="197.3408508" rx="14.3364344" ry="14.3363905"/>
<ellipse transform="matrix(0.2305667 -0.9730566 0.9730566 0.2305667 2145.1455078 2992.8227539)" class="st8" cx="2964.9951172" cy="139.9924927" rx="14.3363209" ry="14.3364172"/>
<ellipse transform="matrix(0.1605944 -0.9870205 0.9870205 0.1605944 2301.5793457 2846.4716797)" class="st8" cx="2824.310791" cy="70.0723495" rx="14.3363218" ry="14.3364592"/>
<ellipse transform="matrix(0.8951613 -0.4457424 0.4457424 0.8951613 216.8301849 1430.5336914)" class="st8" cx="3149.512207" cy="254.3188477" rx="14.3364563" ry="14.3364019"/>
<circle class="st8" cx="2905.8103027" cy="319.886261" r="14.3364344"/>
</g>
<g>
<path class="st8" d="M4197.2836914,119.5879898h-124.1401367h-36.2236328h-3.1196289h-86.6828613h-16.2521973
c-6.9624023-0.5554581-12.442627-6.3699799-12.442627-13.4754791c0-7.4723663,6.0576172-13.5300293,13.5300293-13.5300293
h5.6179199c7.4726562,0,13.5300293-6.0576706,13.5300293-13.5301895l0,0c0-7.4725266-6.057373-13.5301971-13.5300293-13.5301971
h-126.0258789c-7.4726562,0-13.5302734,6.0576706-13.5302734,13.5301971l0,0
c0,7.4725189,6.0576172,13.5301895,13.5302734,13.5301895h6.6762695h58.3132324
c7.4726562,0,13.5302734,6.057663,13.5302734,13.5300293v0.0001602c0,7.4725266-6.0576172,13.5301895-13.5302734,13.5301895
h-58.3132324h-61h-6.7126465h-39.9772949c-7.4726562,0-13.5302734,6.0576706-13.5302734,13.5300369
c0,7.4726868,6.0576172,13.5301819,13.5302734,13.5301819h124.1403809h39.3432617h86.6828613
c0.3662109,0,0.7263184-0.026123,1.0852051-0.0547028h14.0793457c7.4724121,0,13.5300293,6.057663,13.5300293,13.5301819
c0,7.4725342-6.0576172,13.5301971-13.5300293,13.5301971h-5.6179199h-52.6738281h-61h-6.7126465h-39.9772949
c-7.4724121,0-13.5302734,6.057663-13.5302734,13.5300293c0,7.4725189,6.0578613,13.5303497,13.5302734,13.5303497h38.7426758
c0.4528809,0.0458374,0.9123535,0.0695038,1.3774414,0.0695038h6.6760254h58.3137207
c7.4724121,0,13.5302734,6.057663,13.5302734,13.530014v0.0001678c0,7.4725342-6.0578613,13.5301971-13.5302734,13.5301971
h-58.3137207h-60.9995117h-6.7128906h-39.9770508c-7.4726562,0-13.5302734,6.057663-13.5302734,13.5300293
c0,7.4725189,6.0576172,13.5303497,13.5302734,13.5303497h124.1401367h39.3432617h86.6828613
c7.4724121,0,13.5300293-6.0578308,13.5300293-13.5303497c0-7.4723663-6.0576172-13.5300293-13.5300293-13.5300293h-28.7446289
c-7.4724121,0-13.5302734-6.0578308-13.5302734-13.530365c0-7.4723511,6.0578613-13.530014,13.5302734-13.530014h5.6176758
c0.4650879,0,0.9245605-0.0236664,1.3774414-0.0695038h82.6430664h36.2231445
c7.4726562,0,13.5302734-6.057663,13.5302734-13.5301819l0,0c0-7.4725342-6.0576172-13.5301971-13.5302734-13.5301971h-6.6762695
h-29.546875h-28.744873c-7.4724121,0-13.5300293-6.0578308-13.5300293-13.5301971
c0-7.4725189,6.0576172-13.5301819,13.5300293-13.5301819h5.6179199h52.6738281h61h6.7128906h39.9770508"/>
<ellipse transform="matrix(0.2400311 -0.9707652 0.9707652 0.2400311 2857.5102539 4130.8178711)" class="st8" cx="4067.0566406" cy="240.352829" rx="13.5306482" ry="13.5305595"/>
<ellipse transform="matrix(0.6751397 -0.7376899 0.7376899 0.6751397 1235.9562988 2964.7043457)" class="st8" cx="3984.0908203" cy="79.052742" rx="13.5305424" ry="13.5305834"/>
<ellipse transform="matrix(0.2305667 -0.9730565 0.9730565 0.2305667 2966.0673828 3778.0703125)" class="st8" cx="3871.9841309" cy="13.5306435" rx="13.5305557" ry="13.5306473"/>
<ellipse transform="matrix(0.153126 -0.9882067 0.9882067 0.153126 2996.0073242 4081.1125488)" class="st8" cx="3879.1032715" cy="292.5545959" rx="13.5305576" ry="13.5306931"/>
<ellipse transform="matrix(0.1547078 -0.9879603 0.9879603 0.1547078 3000.173584 3878.3676758)" class="st8" cx="3766.5651855" cy="185.9130859" rx="13.5305576" ry="13.5306921"/>
<ellipse transform="matrix(0.7071068 -0.7071068 0.7071068 0.7071068 964.4237671 2595.8608398)" class="st8" cx="3615.6931152" cy="133.7679901" rx="13.5306635" ry="13.5306225"/>
</g>
<g>
<path class="st8" d="M0,103.1459427h99.549469h36.2236176h3.1195221h168.8931274h16.2521057
c6.9625854-0.5554657,12.4425964-6.3699799,12.4425964-13.4754868c0-7.4723587-6.0574951-13.5300293-13.5299988-13.5300293
h-5.6177368c-7.4726562,0-13.5301819-6.057663-13.5301819-13.5301895l0,0c0-7.4725227,6.0575256-13.5301895,13.5301819-13.5301895
h158.9099426c7.4725342,0,13.5301819,6.0576668,13.5301819,13.5301895l0,0c0,7.4725266-6.0576477,13.5301895-13.5301819,13.5301895
h-6.6762085h-58.3134155c-7.4725342,0-13.5302124,6.0576706-13.5302124,13.5300293v0.0001678
c0,7.4725189,6.0576782,13.5301895,13.5302124,13.5301895h58.3134155h60.9998474h6.7127075h39.9772949
c7.4725342,0,13.5301514,6.057663,13.5301514,13.5300293c0,7.4726868-6.0576172,13.5301895-13.5301514,13.5301895H453.1159973
h-39.3432922H294.2057495c-0.3663635,0-0.7263184-0.026123-1.0852966-0.0547028h-14.0792542
c-7.4725037,0-13.5301819,6.057663-13.5301819,13.5301819s6.0576782,13.5301971,13.5301819,13.5301971h5.6177063h52.6740417
h93.8839722h6.7127075h39.9772644c7.4725342,0,13.5301819,6.057663,13.5301819,13.5300293
c0,7.4725189-6.0576477,13.5303497-13.5301819,13.5303497h-38.7426453
c-0.4529419,0.0458374-0.9124756,0.0694885-1.3774109,0.0694885h-6.6762085h-91.1976929
c-7.4725037,0-13.5301819,6.0576782-13.5301819,13.5300293v0.0001678c0,7.4725189,6.0576782,13.5301971,13.5301819,13.5301971
h58.3135986h60.9995422h6.7128601h39.9772644c7.4725342,0,13.5302124,6.057663,13.5302124,13.530014
c0,7.4725342-6.0576782,13.530365-13.5302124,13.530365H381.7759399h-39.3432922h-70.2406311
c-7.4725342,0-13.5302124-6.0578308-13.5302124-13.530365c0-7.4723511,6.0576782-13.530014,13.5302124-13.530014h12.3024292
c7.4725342,0,13.5302124-6.0578308,13.5302124-13.530365c0-7.4723511-6.0576782-13.5300293-13.5302124-13.5300293H278.87677
c-0.4649353,0-0.924469-0.0236511-1.3774109-0.0694885h-164.853241H76.4226761
c-7.4725266,0-13.5301895-6.057663-13.5301895-13.5301971l0,0c0-7.4725189,6.057663-13.5301819,13.5301895-13.5301819h6.6763763
h29.5470657h28.7446747c7.4725189,0,13.5300293-6.0578308,13.5300293-13.5301971
c0-7.4725189-6.0575104-13.5301819-13.5300293-13.5301819h-5.6177063H83.0990524H22.0991802h-6.7126875H0"/>
<ellipse transform="matrix(0.7376898 -0.6751398 0.6751398 0.7376898 28.7658882 199.2596588)" class="st8" cx="270.8124084" cy="62.6106911" rx="13.5305834" ry="13.5305424"/>
<ellipse transform="matrix(0.9730566 -0.2305667 0.2305667 0.9730566 8.0834675 96.2349319)" class="st8" cx="415.8031921" cy="13.5306435" rx="13.5306473" ry="13.5305557"/>
<ellipse transform="matrix(0.9882067 -0.153126 0.153126 0.9882067 -37.8480759 60.8010101)" class="st8" cx="375.7999268" cy="276.1125488" rx="13.5306931" ry="13.5305576"/>
<ellipse transform="matrix(0.9879603 -0.1547078 0.1547078 0.9879603 -19.9431171 82.6774826)" class="st8" cx="521.2220459" cy="169.4710388" rx="13.5306921" ry="13.5305576"/>
<ellipse transform="matrix(0.7071068 -0.7071068 0.7071068 0.7071068 113.8898544 509.6062927)" class="st8" cx="672.0941772" cy="117.3259354" rx="13.5306225" ry="13.5306635"/>
</g>
<rect class="st9" width="4197.2836914" height="633.0073853"/>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.3, 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 101 101" style="enable-background:new 0 0 101 101;" xml:space="preserve">
<g>
<path d="M39.3705597,1.7854722c1.1344261-0.6899865,2.3842545-1.3406845,3.7519493-1.2817521
c1.7875786,0.1694257,3.6316338,1.1982654,4.2528648,2.9661982c1.0754852,2.2025509,0.0122719,5.0803537-2.1362572,6.1902246
c-8.6309509,4.9551239-17.2619019,9.907793-25.9075947,14.8383636c0.0024586,0.1080418,0.0073662,0.3265762,0.0098248,0.4346142
c5.804718,3.3909969,11.5431347,6.8973999,17.3306541,10.3203163c0.9502716,0.5622978,1.9962959,1.0926781,2.6126175,2.0527649
c0.6777115,1.0165634,1.1491547,2.3130455,0.7882004,3.5334129c-0.3707695,1.6721649-1.6721687,3.1675415-3.366436,3.5604172
c-1.06567,0.1276894-2.2393799,0.2087173-3.2068329-0.348671c-6.3547421-3.7200279-12.6284466-7.5775642-18.9930115-11.2853088
c-0.0270071,9.649971-0.0073662,19.2999382-0.0098238,28.949913c0.0270138,1.2645607-0.6777029,2.3989868-1.5002851,3.3025894
c-1.269474,1.2793045-3.2657661,1.6230698-4.9551268,1.0951462c-1.5051961-0.5107422-2.6297984-1.8342361-3.115983-3.3197937
c-0.3192072-0.9920082-0.0564747-2.0355797-0.1006713-3.0496788c-0.1227727-4.0048599-0.0024576-8.0097275-0.0245557-12.0121307
c0.0785766-2.3768845-0.1178613-4.7537727,0.01719-7.1306648c-0.1424174-4.0883484,0.0908508-8.1816025-0.0515666-12.2724056
c-0.0073662-2.0576763,0.0049119-4.1178093,0.01719-6.1754894c-0.0221019-0.3413086,0.1497836-0.6605186,0.4739027-0.790659
C16.605957,14.8018808,28.0140438,8.3366461,39.3705597,1.7854722z"/>
<path d="M53.9584694,4.4692917c0.4198837-2.2492034,2.5782356-3.9729376,4.8519897-3.9680276
c1.7016411,0.0662967,3.1233482,1.1000483,4.5401573,1.9250822c10.9562759,6.4112144,21.9101028,12.8297977,32.8639145,19.2532864
c0.004921,12.9378376-0.0098114,25.87813,0.0073624,38.8159637c0.213623,2.5684128-1.944725,5.0631638-4.5131454,5.2399597
c-2.6469803,0.2479935-5.2718735-2.0724144-5.2006683-4.7660561c0.0024567-7.1945038,0-14.3890152,0.0024567-21.5835228
c-0.0220871-2.1362534,0.0613861-4.2774162-0.0982056-6.4087563c-2.958847,1.6009598-5.7580643,3.4990349-8.6530685,5.2178574
c-3.1012421,1.8686066-6.1656647,3.7986031-9.2595367,5.6794891c-1.4929276,0.8152122-3.4327469,0.7415466-4.817627-0.2676468
c-1.3824196-0.8987007-2.1239738-2.6150703-1.9692802-4.2381325c0.1301384-1.3701477,0.933075-2.6077003,2.0650444-3.373806
c4.4075623-2.7280197,8.8323059-5.4363956,13.2496796-8.1545925c1.6697083-1.07304,3.4302902-2.0134773,5.0386124-3.1822815
c-8.520462-4.9502144-17.0139008-9.9519911-25.5171738-14.9316702C54.7122917,8.7442541,53.4796524,6.5515251,53.9584694,4.4692917
z"/>
<path d="M48.8830223,41.5418777c2.2295647-0.5868607,4.7022133-0.1866188,6.5904617,1.1540642
c3.2240257,2.0969658,4.3191605,6.7132339,2.536499,10.0870438c-1.1123238,2.1215172-3.1896515,3.7519493-5.5616302,4.1791992
c-1.7040825,0.1767921-3.5211334,0.1620598-5.0557976-0.7022591c-2.8999023-1.3382339-4.6457329-4.6432838-4.2749634-7.7936478
C43.2673798,45.225071,45.7891388,42.3595428,48.8830223,41.5418777z"/>
<path d="M47.5988121,64.029007c1.1663475-1.357872,3.1798286-1.8170433,4.8544579-1.242466
c1.7703857,0.6433296,3.1012497,2.4259987,3.0914268,4.3289833c0.0147324,6.4505005-0.017189,12.9010086,0.0147324,19.3515015
c8.7218056-5.2546844,17.3871346-10.600235,26.0991096-15.8696594c0.810318-0.4812622,1.76548-0.6285934,2.6961136-0.5917664
c2.0944977,0.004921,3.9680176,1.6623535,4.4713898,3.6512756c0.3437653,1.5395813-0.0073624,3.2805023-1.151619,4.4100189
c-0.8274841,0.9330673-1.9717255,1.4659119-3.0177536,2.1018753C73.9754028,86.6978455,63.2720375,93.1900864,52.585865,99.7142563
c-0.520565,0.2921982-1.0067406,0.7022552-1.615696,0.7857437c-0.7317314-0.1080399-1.3087616-0.6212311-1.9373589-0.967453
c-10.7451096-6.4701385-21.5172253-12.8887253-32.2574234-19.3637772c-0.9576292-0.567215-1.9717369-1.0804062-2.7574806-1.8808899
c-0.9379883-1.0951309-1.500288-2.5782318-1.2473755-4.0269547c0.2480001-1.2252808,0.8594122-2.4358215,1.9054375-3.1651001
c1.2989426-1.0042801,3.1208916-1.2129974,4.6432819-0.6384201c0.8004837,0.3216705,1.5346642,0.7857513,2.2565708,1.2547455
c6.7181435,3.9876709,13.3994656,8.0367355,20.1053333,12.0489578c1.5616722,0.8962479,3.0595055,1.917717,4.6751976,2.7181931
c0.0098228-6.4505005,0.0049171-12.90345,0.0024567-19.3539505C46.319519,65.9737396,46.8891869,64.8982391,47.5988121,64.029007z"
/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.3, 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 101 101" style="enable-background:new 0 0 101 101;" xml:space="preserve">
<style type="text/css">
.st0{fill:#515254;}
.st1{fill:#DF2D25;}
</style>
<g>
<path class="st0" d="M39.3705597,1.7854722c1.1344261-0.6899865,2.3842545-1.3406845,3.7519493-1.2817521
c1.7875786,0.1694257,3.6316338,1.1982654,4.2528648,2.9661982c1.0754852,2.2025509,0.0122719,5.0803537-2.1362572,6.1902246
c-8.6309509,4.9551239-17.2619019,9.907793-25.9075947,14.8383636c0.0024586,0.1080418,0.0073662,0.3265762,0.0098248,0.4346142
c5.804718,3.3909969,11.5431347,6.8973999,17.3306541,10.3203163c0.9502716,0.5622978,1.9962959,1.0926781,2.6126175,2.0527649
c0.6777115,1.0165634,1.1491547,2.3130455,0.7882004,3.5334129c-0.3707695,1.6721649-1.6721687,3.1675415-3.366436,3.5604172
c-1.06567,0.1276894-2.2393799,0.2087173-3.2068329-0.348671c-6.3547421-3.7200279-12.6284466-7.5775642-18.9930115-11.2853088
c-0.0270071,9.649971-0.0073662,19.2999382-0.0098238,28.949913c0.0270138,1.2645607-0.6777029,2.3989868-1.5002851,3.3025894
c-1.269474,1.2793045-3.2657661,1.6230698-4.9551268,1.0951462c-1.5051961-0.5107422-2.6297984-1.8342361-3.115983-3.3197937
c-0.3192072-0.9920082-0.0564747-2.0355797-0.1006713-3.0496788c-0.1227727-4.0048599-0.0024576-8.0097275-0.0245557-12.0121307
c0.0785766-2.3768845-0.1178613-4.7537727,0.01719-7.1306648c-0.1424174-4.0883484,0.0908508-8.1816025-0.0515666-12.2724056
c-0.0073662-2.0576763,0.0049119-4.1178093,0.01719-6.1754894c-0.0221019-0.3413086,0.1497836-0.6605186,0.4739027-0.790659
C16.605957,14.8018808,28.0140438,8.3366461,39.3705597,1.7854722z"/>
<path class="st0" d="M53.9584694,4.4692917c0.4198837-2.2492034,2.5782356-3.9729376,4.8519897-3.9680276
c1.7016411,0.0662967,3.1233482,1.1000483,4.5401573,1.9250822c10.9562759,6.4112144,21.9101028,12.8297977,32.8639145,19.2532864
c0.004921,12.9378376-0.0098114,25.87813,0.0073624,38.8159637c0.213623,2.5684128-1.944725,5.0631638-4.5131454,5.2399597
c-2.6469803,0.2479935-5.2718735-2.0724144-5.2006683-4.7660561c0.0024567-7.1945038,0-14.3890152,0.0024567-21.5835228
c-0.0220871-2.1362534,0.0613861-4.2774162-0.0982056-6.4087563c-2.958847,1.6009598-5.7580643,3.4990349-8.6530685,5.2178574
c-3.1012421,1.8686066-6.1656647,3.7986031-9.2595367,5.6794891c-1.4929276,0.8152122-3.4327469,0.7415466-4.817627-0.2676468
c-1.3824196-0.8987007-2.1239738-2.6150703-1.9692802-4.2381325c0.1301384-1.3701477,0.933075-2.6077003,2.0650444-3.373806
c4.4075623-2.7280197,8.8323059-5.4363956,13.2496796-8.1545925c1.6697083-1.07304,3.4302902-2.0134773,5.0386124-3.1822815
c-8.520462-4.9502144-17.0139008-9.9519911-25.5171738-14.9316702C54.7122917,8.7442541,53.4796524,6.5515251,53.9584694,4.4692917
z"/>
<path class="st1" d="M48.8830223,41.5418777c2.2295647-0.5868607,4.7022133-0.1866188,6.5904617,1.1540642
c3.2240257,2.0969658,4.3191605,6.7132339,2.536499,10.0870438c-1.1123238,2.1215172-3.1896515,3.7519493-5.5616302,4.1791992
c-1.7040825,0.1767921-3.5211334,0.1620598-5.0557976-0.7022591c-2.8999023-1.3382339-4.6457329-4.6432838-4.2749634-7.7936478
C43.2673798,45.225071,45.7891388,42.3595428,48.8830223,41.5418777z"/>
<path class="st0" d="M47.5988121,64.029007c1.1663475-1.357872,3.1798286-1.8170433,4.8544579-1.242466
c1.7703857,0.6433296,3.1012497,2.4259987,3.0914268,4.3289833c0.0147324,6.4505005-0.017189,12.9010086,0.0147324,19.3515015
c8.7218056-5.2546844,17.3871346-10.600235,26.0991096-15.8696594c0.810318-0.4812622,1.76548-0.6285934,2.6961136-0.5917664
c2.0944977,0.004921,3.9680176,1.6623535,4.4713898,3.6512756c0.3437653,1.5395813-0.0073624,3.2805023-1.151619,4.4100189
c-0.8274841,0.9330673-1.9717255,1.4659119-3.0177536,2.1018753C73.9754028,86.6978455,63.2720375,93.1900864,52.585865,99.7142563
c-0.520565,0.2921982-1.0067406,0.7022552-1.615696,0.7857437c-0.7317314-0.1080399-1.3087616-0.6212311-1.9373589-0.967453
c-10.7451096-6.4701385-21.5172253-12.8887253-32.2574234-19.3637772c-0.9576292-0.567215-1.9717369-1.0804062-2.7574806-1.8808899
c-0.9379883-1.0951309-1.500288-2.5782318-1.2473755-4.0269547c0.2480001-1.2252808,0.8594122-2.4358215,1.9054375-3.1651001
c1.2989426-1.0042801,3.1208916-1.2129974,4.6432819-0.6384201c0.8004837,0.3216705,1.5346642,0.7857513,2.2565708,1.2547455
c6.7181435,3.9876709,13.3994656,8.0367355,20.1053333,12.0489578c1.5616722,0.8962479,3.0595055,1.917717,4.6751976,2.7181931
c0.0098228-6.4505005,0.0049171-12.90345,0.0024567-19.3539505C46.319519,65.9737396,46.8891869,64.8982391,47.5988121,64.029007z"
/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.3, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<g id="_Group_">
<g id="tacho">
<path id="path38" d="M71.6073761,27.1809006c-5.6593628-5.0644836-13.0913887-8.174633-21.2859802-8.174633
c-17.6987305,0-32.0497475,14.3490219-32.0497475,32.0497475c0,1.6329308,0.1237679,3.2419052,0.3593254,4.8069611
c-0.0139732-0.3912697-0.0239582-0.7805367-0.0239582-1.1737938c0-12.6821594,10.2806759-22.9648285,22.9608402-22.9648285
c6.3261032,0,12.0154037,2.5971222,16.1556244,6.7493134L71.6073761,27.1809006"/>
<path id="path40" d="M58.4600945,49.083725l16.6546822-20.4795055c0.6527786-0.6547661,0.6527786-1.7087841,0-2.361557
c-0.652771-0.6507759-1.708786-0.6507759-2.3575668,0L52.2737236,42.9053383
c-2.0421638-0.2215843-4.1641731,0.4411697-5.7292252,2.0082245c-2.7368584,2.7348557-2.7368584,7.1665268,0,9.8993874
c2.7388458,2.7348557,7.1685219,2.7348557,9.8973846,0C58.0089378,53.2439003,58.673687,51.1238861,58.4600945,49.083725z
M48.9958839,52.361557c-1.3794022-1.3794022-1.3794022-3.6171989,0-4.9926109c1.3754196-1.389389,3.619194-1.389389,4.9946136,0
c1.3794022,1.375412,1.3794022,3.6132088,0,4.9926109C52.615078,53.7349739,50.3713036,53.7349739,48.9958839,52.361557"/>
<path id="path42" d="M50.0019951,0C22.4318256,0,0,22.4278355,0,49.9960022C0,77.5721664,22.4318256,100,50.0019951,100
C77.5681686,100,100,77.5721664,100,49.9960022C100,22.4278355,77.5681686,0,50.0019951,0z M50.0019951,87.1162186
c-20.4675255,0-37.1162186-16.6526947-37.1162186-37.1202164c0-20.4635277,16.648695-37.1142235,37.1162186-37.1142235
c20.4635277,0,37.1142235,16.6506958,37.1142235,37.1142235C87.1162186,70.4635239,70.4655228,87.1162186,50.0019951,87.1162186"
/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.3, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{fill:#46AE33;}
.st1{fill:#04517D;}
</style>
<g id="_Group_">
<g id="tacho">
<path id="path38" class="st0" d="M71.6073761,27.1809006c-5.6593628-5.0644836-13.0913887-8.174633-21.2859802-8.174633
c-17.6987305,0-32.0497475,14.3490219-32.0497475,32.0497475c0,1.6329308,0.1237679,3.2419052,0.3593254,4.8069611
c-0.0139732-0.3912697-0.0239582-0.7805367-0.0239582-1.1737938c0-12.6821594,10.2806759-22.9648285,22.9608402-22.9648285
c6.3261032,0,12.0154037,2.5971222,16.1556244,6.7493134L71.6073761,27.1809006"/>
<path id="path40" class="st1" d="M58.4600945,49.083725l16.6546822-20.4795055
c0.6527786-0.6547661,0.6527786-1.7087841,0-2.361557c-0.652771-0.6507759-1.708786-0.6507759-2.3575668,0L52.2737236,42.9053383
c-2.0421638-0.2215843-4.1641731,0.4411697-5.7292252,2.0082245c-2.7368584,2.7348557-2.7368584,7.1665268,0,9.8993874
c2.7388458,2.7348557,7.1685219,2.7348557,9.8973846,0C58.0089378,53.2439003,58.673687,51.1238861,58.4600945,49.083725z
M48.9958839,52.361557c-1.3794022-1.3794022-1.3794022-3.6171989,0-4.9926109c1.3754196-1.389389,3.619194-1.389389,4.9946136,0
c1.3794022,1.375412,1.3794022,3.6132088,0,4.9926109C52.615078,53.7349739,50.3713036,53.7349739,48.9958839,52.361557"/>
<path id="path42" class="st1" d="M50.0019951,0C22.4318256,0,0,22.4278355,0,49.9960022
C0,77.5721664,22.4318256,100,50.0019951,100C77.5681686,100,100,77.5721664,100,49.9960022
C100,22.4278355,77.5681686,0,50.0019951,0z M50.0019951,87.1162186c-20.4675255,0-37.1162186-16.6526947-37.1162186-37.1202164
c0-20.4635277,16.648695-37.1142235,37.1162186-37.1142235c20.4635277,0,37.1142235,16.6506958,37.1142235,37.1142235
C87.1162186,70.4635239,70.4655228,87.1162186,50.0019951,87.1162186"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,85 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.3, 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 101 101" style="enable-background:new 0 0 101 101;" xml:space="preserve">
<style type="text/css">
.st0{fill:#3D98D3;}
</style>
<g>
<path class="st0" d="M98.4683533,46.0753021C99.6990585,45.5087852,100.5,45.118084,100.5,45.118084
s0-0.0781364-0.0195389-0.2148857c-0.0195312-0.1367455-0.0390701-0.3516312-0.0781403-0.6251221
c-0.0195312-0.2734909-0.0781326-0.605587-0.1172104-0.9767532c-0.0390701-0.3907013-0.0781403-0.8009377-0.1758118-1.2697792
c-0.2930298-1.8558311-0.840004-4.2977142-1.5628052-6.7005272c-0.7618637-2.3832779-1.6800156-4.7079525-2.480957-6.4075031
c-0.1953506-0.4297714-0.3907013-0.8204727-0.5665131-1.1525669c-0.1758194-0.3320961-0.3320999-0.644659-0.4493027-0.8790779
c-0.1367493-0.2539577-0.2344284-0.4297714-0.2930298-0.5665169c-0.0586014-0.1367435-0.0976715-0.1953506-0.0976715-0.1953506
s-0.8986206,0.1172123-2.2074661,0.3516331c-1.3088455,0.2148857-3.0279312,0.566515-4.7470169,0.9767532
c-1.5823364,0.3907013-3.1256104,0.8204708-4.3367844,1.1916389c-2.422348-3.633522-5.430748-6.8372726-8.8884583-9.4940414
c0.2148895-0.5665169,0.4688416-1.1721039,0.7032623-1.8362961c0.2734909-0.7618675,0.5469818-1.5823402,0.8204803-2.422348
c0.5469742-1.6800156,1.0353546-3.3991022,1.3479156-4.6884165s0.5079117-2.1683912,0.5079117-2.1683912
s-0.253952-0.1758165-0.7228012-0.4688425c-0.4493027-0.3125606-1.1330261-0.6837273-1.9535065-1.1525688
c-0.2148819-0.1172104-0.4297714-0.2539554-0.6446533-0.3711658c-0.2344208-0.1172109-0.4688416-0.2344213-0.7032623-0.3516312
c-0.4688416-0.2344208-0.9767532-0.4883766-1.5042038-0.7618675c-1.0744247-0.4883766-2.2074585-1.0353587-3.3795624-1.4651299
c-1.152565-0.4883766-2.3442078-0.8595428-3.4577103-1.2307093c-0.5665131-0.1758156-1.1135025-0.312561-1.6214066-0.4688416
c-0.2734909-0.0781403-0.5274506-0.1562805-0.7618675-0.2148857c-0.2344208-0.0586052-0.4688377-0.1172104-0.7032623-0.1758156
c-0.898613-0.2148857-1.6604805-0.4102364-2.2074585-0.4883767c-0.5274506-0.0976753-0.8400078-0.1562805-0.8400078-0.1562805
s-0.4493027,0.7814026-1.0939636,1.9339714c-0.6446533,1.1721039-1.4651299,2.7739794-2.2074585,4.3563194
c-0.7032661,1.5042005-1.3479195,3.0083995-1.7972298,4.2000394c-1.2307053-0.1172104-2.480957-0.1758165-3.7507362-0.1758165
c-3.1842155,0-6.2902908,0.3907013-9.2791557,1.0939636c-0.6446648-1.0939674-1.4651337-2.461422-2.3637505-3.8093414
c-0.9767532-1.4651299-2.0316467-2.9302602-2.8325844-3.9656181c-0.8009377-1.0548937-1.3674545-1.738621-1.3674545-1.738621
s-0.293026,0.0976753-0.8204727,0.2734909c-0.5079117,0.1562805-1.2307091,0.4688416-2.109787,0.8009379
c-0.2148857,0.0976753-0.4493065,0.1758153-0.6837273,0.2734907c-0.2344208,0.0976756-0.4688396,0.1953509-0.7227974,0.3125613
c-0.4883766,0.2148857-1.0158215,0.4493065-1.5432682,0.7032623C27.731884,5.54004,26.6183815,6.0870218,25.5439529,6.731679
C25.270462,6.88796,24.9969711,7.04424,24.7234821,7.2005205c-0.2734928,0.1562805-0.5274467,0.3320961-0.7814026,0.4883766
c-0.5274467,0.3320961-1.0353603,0.6446571-1.523737,0.9767532c-0.9572182,0.6837273-1.8558311,1.3088493-2.5786266,1.8949013
c-0.3516331,0.2734919-0.7032623,0.5469818-0.9962883,0.7814026c-0.293026,0.2539558-0.5274467,0.4688425-0.7423344,0.6446571
c-0.4102364,0.3711672-0.6446571,0.5665178-0.6446571,0.5665178s0.3125629,0.8400068,0.8204727,2.0707169
c0.5274467,1.2502451,1.250246,2.8716545,2.0316486,4.4344597c0.6837273,1.3674545,1.4260597,2.7349091,2.0316467,3.8093376
c-3.0865421,3.1451473-5.6651688,6.8177376-7.56007,10.8614979c-1.2111731-0.1758156-2.715374-0.3711662-4.219574-0.4883766
c-1.7386208-0.1367455-3.4967771-0.2344208-4.844696-0.2539558c-0.6641922-0.0195389-1.2307091-0.0195389-1.6214104-0.0195389
s-0.605587,0-0.605587,0s-0.0976753,0.293026-0.2734909,0.8204727c-0.1562805,0.5274467-0.4493065,1.2697792-0.6837273,2.168396
c-0.1172104,0.4493065-0.2734909,0.9572144-0.4102364,1.4651299c-0.1367456,0.5079117-0.253956,1.0744286-0.3907014,1.6409416
c-0.0586052,0.293026-0.1367455,0.5860519-0.1953506,0.8790779c-0.0781403,0.293026-0.1172104,0.6055908-0.1758156,0.8986168
c-0.0976753,0.605587-0.2148857,1.211174-0.312561,1.8362923c-0.1562806,1.2502441-0.3320962,2.4809532-0.3907014,3.6530571
c-0.0976753,1.1525688-0.1172104,2.2465324-0.1367455,3.1842194C0.5,49.7478943,0.5,49.96278,0.5,50.1776657
c0.0195351,0.2148857,0.0195351,0.4102364,0.0195351,0.605587c0,0.3711624,0.0195351,0.7032623,0.0195351,0.9767532
c0.0195351,0.546978,0.0195351,0.859539,0.0195351,0.859539s0.2148858,0.0586052,0.5860519,0.1758156
c0.3907014,0.1172104,0.918148,0.293026,1.5628054,0.4688416c1.289314,0.3711624,3.0084002,0.8204727,4.7079506,1.1916389
c1.367455,0.293026,2.7544446,0.546978,3.9070134,0.7228012c0.5469818,4.6298103,1.8949003,9.0056686,3.8874779,13.0103531
c-0.8204718,0.7814026-1.7776899,1.7190857-2.715374,2.6958389c-1.211174,1.2697754-2.3637428,2.5981598-3.2232857,3.633522
c-0.4297714,0.5079117-0.7814026,0.9376831-1.0353584,1.2502441c-0.2344208,0.312561-0.3711667,0.4883728-0.3711667,0.4883728
s0.1758161,0.253952,0.468842,0.7228012c0.293026,0.4493027,0.7032623,1.1135025,1.2502441,1.8753662
c0.2734919,0.37117,0.5665178,0.8009415,0.8790779,1.2307053c0.3320961,0.4297791,0.6837273,0.8595428,1.0353584,1.3283844
s0.7423325,0.9181519,1.1525698,1.3869934c0.3907013,0.4493027,0.8009367,0.9376831,1.2307091,1.3869858
c1.6800156,1.855835,3.5749168,3.4967804,5.0009766,4.7079544c0.7423325,0.5860519,1.3479195,1.0744324,1.7776909,1.4065323
c0.4493065,0.3320923,0.7032623,0.5079117,0.7032623,0.5079117s0.7423325-0.5079117,1.8362961-1.269783
c0.5274467-0.3907013,1.1525688-0.840004,1.816761-1.3479156c0.6641941-0.4883804,1.3674545-1.0353546,2.0511818-1.6018829
c1.0158215-0.840004,1.9925747-1.6800156,2.8130474-2.4223404c3.8679428,2.3832779,8.2047272,4.1023636,12.8150063,5.0205078
c0.0976753,1.1330338,0.234417,2.422348,0.4297676,3.7507401c0.2539597,1.7386169,0.5665169,3.4967728,0.8400116,4.786087
c0.2734871,1.2893143,0.4883766,2.168396,0.4883766,2.168396s0.312561,0.0390701,0.859539,0.0976791
c0.5274467,0.0586014,1.3088493,0.0976715,2.2465324,0.1758118c0.4688416,0.0390701,0.9767532,0.0390701,1.5042,0.0586014
c0.5274467,0.0195389,1.0939636,0.0390701,1.6800156,0.0390701c1.152565-0.0390701,2.4028091-0.0390701,3.6530571-0.1562729
c1.2502441-0.058609,2.5004883-0.2344284,3.6530609-0.3907013c0.5665169-0.0976791,1.1330299-0.1953506,1.6604805-0.2930298
c0.5274506-0.0976715,1.0353546-0.1758118,1.4846649-0.2930222c0.9181519-0.2148895,1.6800194-0.3907013,2.2074623-0.5274506
c0.5274467-0.1562805,0.8204765-0.2344208,0.8204765-0.2344208s0.0781403-0.8986206,0.1562729-2.2269974
c0.0781403-1.3088531,0.117218-3.1060791,0.0976791-4.8642349c-0.0195389-1.3674545-0.0586014-2.6763077-0.1367493-3.8288727
c4.3172531-1.6214066,8.2828674-3.9656143,11.7405777-6.9154129c0.9572144,0.6251297,2.109787,1.3674545,3.3014221,2.0707169
c1.523735,0.9181519,3.067009,1.7386246,4.2586441,2.3442078c1.1916428,0.6055908,2.0121078,0.9767532,2.0121078,0.9767532
s0.0586014-0.0586014,0.1562805-0.1562729c0.0976715-0.0976791,0.253952-0.253952,0.4493027-0.4493027
c0.3907013-0.3907013,0.9181519-0.957222,1.5628052-1.6409454c1.2307053-1.4065323,2.8325882-3.320961,4.2391129-5.3916855
c1.4065247-2.0707169,2.6567688-4.2391052,3.4772415-5.9191208c0.1172104-0.2148819,0.2148819-0.4102325,0.312561-0.6055832
c0.0976715-0.1953506,0.1758118-0.37117,0.253952-0.5469818c0.1562805-0.3516312,0.2930222-0.6446533,0.4102402-0.898613
c0.2344208-0.4883804,0.3516235-0.7814026,0.3516235-0.7814026s-0.6641922-0.6251297-1.6604767-1.5042038
c-0.9962921-0.8790817-2.3442078-2.0316467-3.7312012-3.1060715c-1.1721039-0.9181519-2.3637466-1.7776947-3.3600311-2.461422
c1.211174-3.7702675,1.8558273-7.7944908,1.8558273-11.9749985c0-0.3907013,0-0.7814026-0.0195312-1.1721039
c1.1721039-0.3711624,2.5981598-0.859539,4.0437546-1.3869896C95.6357727,47.3255463,97.2571793,46.6222839,98.4683533,46.0753021z
M50.5097694,78.2495575c-7.4037895,0-14.3778114-2.8911896-19.6132069-8.1265945
c-5.2353973-5.2353897-8.1265869-12.2094116-8.1265869-19.6132011s2.8911896-14.3778114,8.1265869-19.613205
c5.2353954-5.2353992,12.2094173-8.1265888,19.6132069-8.1265888s14.3778114,2.8911896,19.6132011,8.1265888
c5.235405,5.2353935,8.1265945,12.2094154,8.1265945,19.613205s-2.8911896,14.3778114-8.1265945,19.6132011
C64.8875732,75.3583603,57.9135551,78.2495575,50.5097694,78.2495575z"/>
<path class="st0" d="M50.5097694,31.8537731c-10.2949791,0-18.6559887,8.3610096-18.6559887,18.6559887
s8.3610096,18.6559868,18.6559887,18.6559868s18.6559868-8.3610039,18.6559868-18.6559868
S60.8047485,31.8537731,50.5097694,31.8537731z M50.5097694,57.4447098c-3.8288765,0-6.934948-3.1060753-6.934948-6.934948
s3.1060715-6.934948,6.934948-6.934948s6.934948,3.1060715,6.934948,6.934948S54.3386421,57.4447098,50.5097694,57.4447098z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.8 KiB

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.1.3, 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 50 50" style="enable-background:new 0 0 50 50;" xml:space="preserve">
<style type="text/css">
.st0{fill:#3D98D3;}
</style>
<path class="st0" d="M44.5300789,20.6782227c-0.1426773-0.6309566-0.6984367-1.0951176-1.3626976-1.0951176
c-0.1240196,0-0.244236,0.0162106-0.3586922,0.046484l0.0096703-0.0022469
c-0.3308601,0.0887699-0.7106476,0.1397476-1.1024437,0.1397476c-2.440136,0-4.4182625-1.9781246-4.4182625-4.4182625
c0-1.2042961,0.481739-2.296093,1.2631836-3.092968l-0.0006828,0.0006838
c0.2468758-0.2515621,0.3993149-0.5965824,0.3993149-0.9772463c0-0.4067383-0.1740227-0.7728519-0.4516602-1.027832
l-0.0009766-0.0009766c-2.0785141-1.9058599-4.5794945-3.3877935-7.3433609-4.2872076l-0.1422844-0.0400391
c-0.125391-0.0409179-0.2697258-0.0645504-0.4197273-0.0645504c-0.6379871,0-1.1758804,0.4281249-1.342186,1.012598
l-0.0023422,0.0097651c-0.5352535,1.8808599-2.2378902,3.234961-4.2569351,3.234961s-3.7215824-1.3541994-4.2493153-3.2038088
l-0.007618-0.0311522c-0.1687489-0.5944333-0.7067375-1.0225587-1.344532-1.0225587
c-0.1499023,0-0.2942371,0.023633-0.4295902,0.0673828l0.0098629-0.0028319
c-2.9060535,0.9396482-5.4071283,2.4213872-7.5004873,4.3408208l0.0149412-0.0134773
c-0.2786131,0.2559576-0.4527349,0.6220713-0.4527349,1.0288086c0,0.3805666,0.152441,0.7255859,0.3995123,0.9773436
l-0.0001955-0.0001945c0.7806644,0.7961903,1.2625008,1.8879881,1.2625008,3.0922852
c0,2.440136-1.9781246,4.4182606-4.4182615,4.4182606c-0.3916993,0-0.7715821-0.0509758-1.1333003-0.1466789l0.0308595,0.0069332
c-0.104785-0.0281239-0.2249026-0.0443344-0.3489256-0.0443344c-0.6641603,0-1.2200193,0.4640617-1.3608398,1.085741
l-0.0017581,0.0092773c-0.2987304,1.2988281-0.4699221,2.7902355-0.4699221,4.3217773
c0,1.5315456,0.1711912,3.0228539,0.4955082,4.4562492l-0.0255861-0.1344738
c0.1426754,0.6309566,0.6984377,1.0951157,1.3625979,1.0951157c0.124023,0,0.2442384-0.0162086,0.3586912-0.0464859
l-0.0097656,0.0021496c0.3308592-0.0887699,0.710742-0.1397457,1.1025391-0.1397457
c2.4401369,0,4.4183598,1.9781265,4.4183598,4.4182625c0,1.2042961-0.4818354,2.296093-1.2631836,3.0930672l0.0006838-0.0006828
c-0.2468748,0.2514648-0.3993158,0.5965843-0.3993158,0.9772453c0,0.4067383,0.1740236,0.77285,0.4517584,1.0279274
l0.0009766,0.0009804c2.078516,1.9058571,4.5794926,3.3876953,7.343359,4.2872047l0.1422844,0.0400391
c0.1254883,0.0410194,0.2697258,0.0645523,0.4197273,0.0645523c0.6378899,0,1.1758785-0.4281235,1.3421879-1.0126953
l0.0023441-0.009861c0.5352535-1.880764,2.2379875-3.2349625,4.2568359-3.2349625s3.7216797,1.3541985,4.2493153,3.2038078
l0.007618,0.0311546c0.1687489,0.5944328,0.7067375,1.0224609,1.3446293,1.0224609
c0.1498051,0,0.2941399-0.0236359,0.4293957-0.0673866l-0.0098648,0.002739
c2.9061527-0.9396515,5.4072247-2.4214859,7.5004864-4.3408241l-0.014843,0.0134773
c0.278614-0.2559547,0.4527321-0.6220703,0.4527321-1.0288086c0-0.3805656-0.1523438-0.7255859-0.3995132-0.9774399
l0.0001984,0.0001945c-0.7806625-0.7962875-1.2625008-1.887989-1.2625008-3.0922852
c0-2.440136,1.9781265-4.4182625,4.4182625-4.4182625c0.3917961,0,0.7715836,0.0509758,1.1333008,0.1466808l-0.0307617-0.0069351
c0.1046867,0.0281239,0.2249031,0.0443363,0.3490257,0.0443363c0.6641579,0,1.2200203-0.4640636,1.3608398-1.085743
l0.0017586-0.0093765c0.2986336-1.2988262,0.4699211-2.7902336,0.4699211-4.3217773s-0.1711884-3.02285-0.4955063-4.4562492
l0.0255852,0.1344719L44.5300789,20.6782227z M25,31.25c-3.4517593,0-6.25-2.7982407-6.25-6.25s2.7982407-6.25,6.25-6.25
s6.25,2.7982407,6.25,6.25l0,0C31.25,28.4517593,28.4517593,31.25,25,31.25L25,31.25z"/>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1 @@
<svg enable-background="new 0 0 1145 110.6" viewBox="0 0 1145 110.6" xmlns="http://www.w3.org/2000/svg"><g fill="#fff"><circle cx="445.2" cy="53.9" r="7.8"/><ellipse cx="156.1" cy="53.9" rx="7.8" ry="7.8"/><path d="m993.6 46.1c-4.3 0-7.8 3.5-7.8 7.8s3.5 7.8 7.8 7.8 7.8-3.5 7.8-7.8-3.5-7.8-7.8-7.8z"/><path d="m467.8 46.1c-4.3 0-7.8 3.5-7.8 7.8s3.5 7.8 7.8 7.8 7.8-3.5 7.8-7.8-3.5-7.8-7.8-7.8z"/><path d="m1012.4 102.9c0-4.2 3.4-7.7 7.7-7.7h43.8c4.2 0 7.7 3.4 7.7 7.7 0 4.2-3.4 7.7-7.7 7.7h-43.9c-4.2 0-7.6-3.5-7.6-7.7z"/><path d="m.1 53.9c0-4.2 3.4-7.7 7.7-7.7h43.8c4.2 0 7.7 3.4 7.7 7.7 0 4.2-3.4 7.7-7.7 7.7h-43.8c-4.2-.1-7.7-3.5-7.7-7.7z"/><path d="m66.8 86.4c0-3.8 3.1-6.8 6.8-6.8h39.6c3.8 0 6.8 3.1 6.8 6.8 0 3.8-3.1 6.8-6.8 6.8h-39.6c-3.8.1-6.8-3-6.8-6.8zm-13 6.9c3.8 0 6.8-3.1 6.8-6.8 0-3.8-3.1-6.8-6.8-6.8-3.8 0-6.8 3.1-6.8 6.8s3.1 6.8 6.8 6.8z"/><path d="m1091.2 63.9c0-3.8 3.1-6.8 6.8-6.8h39.6c3.8 0 6.8 3.1 6.8 6.8 0 3.8-3.1 6.8-6.8 6.8h-39.6c-3.7 0-6.8-3-6.8-6.8zm-12.9 6.8c3.8 0 6.8-3.1 6.8-6.8 0-3.8-3.1-6.8-6.8-6.8s-6.8 3.1-6.8 6.8c0 3.8 3 6.8 6.8 6.8z"/><path d="m555.5 53.4c0 3.8-3.1 6.8-6.8 6.8h-39.7c-3.8 0-6.8-3.1-6.8-6.8 0-3.8 3.1-6.8 6.8-6.8h39.6c3.8 0 6.9 3.1 6.9 6.8zm12.9-6.8c-3.8 0-6.8 3.1-6.8 6.8s3.1 6.8 6.8 6.8c3.8 0 6.8-3.1 6.8-6.8s-3-6.8-6.8-6.8zm19.8 0c-3.8 0-6.8 3.1-6.8 6.8s3.1 6.8 6.8 6.8 6.8-3.1 6.8-6.8-3-6.8-6.8-6.8z"/><path d="m311.9.1c4.2.2 7.5 3.6 7.5 7.8 0 4-3 7.2-6.8 7.7h-258.1c-5 0-9.1 3.5-9.1 7.9 0 4.3 4.1 7.9 9.1 7.9h153.5c4.3 0 7.8 3.3 7.8 7.4s-3.5 7.4-7.8 7.4h-26.5c-4.3 0-7.8 3.5-7.8 7.8s3.5 7.8 7.8 7.8h86.7c2 1.5 3.2 3.8 3.2 6.5 0 4.5-3.7 8.2-8.2 8.2h-23.4c-4.5 0-8.2 3.7-8.2 8.2s3.7 8.2 8.2 8.2h96.7c4.5 0 8.2-3.7 8.2-8.2-.1-4.5-3.8-8.2-8.3-8.2h-4.1-35.5c-4.5 0-8.2-3.7-8.2-8.2 0-2.7 1.3-5 3.2-6.5h125.6c4.3 0 7.8-3.5 7.8-7.8s-3.5-7.8-7.8-7.8h-11.2c-4.3 0-7.8-3.3-7.8-7.4s3.5-7.4 7.8-7.4h299.1c4.3 0 7.8 3.3 7.8 7.4s-3.5 7.4-7.8 7.4h-65.4c-4.3 0-7.8 3.5-7.8 7.8s3.5 7.8 7.8 7.8h248.8c2 1.5 3.2 3.8 3.2 6.5 0 4.5-3.7 8.2-8.2 8.2h-23.4c-4.5 0-8.2 3.7-8.2 8.2s3.7 8.2 8.2 8.2h96.7c4.5 0 8.2-3.7 8.2-8.2-.1-4.5-3.7-8.2-8.3-8.2h-4.1-35.5c-4.5 0-8.2-3.7-8.2-8.2 0-2.7 1.3-5 3.2-6.5h56.8c4.3 0 7.8-3.5 7.8-7.8s-3.5-7.8-7.8-7.8h-25.4c-4.3 0-7.8-3.3-7.8-7.4s3.5-7.4 7.8-7.4h133.5c5 0 9.1-3.5 9.1-7.9s-4.1-7.9-9.1-7.9h-43.4c-3.8-.5-6.8-3.8-6.8-7.7 0-4.2 3.3-7.6 7.5-7.8zm173.3 15.3c-4.3 0-7.7-3.5-7.7-7.7s3.5-7.7 7.7-7.7c4.3 0 7.7 3.5 7.7 7.7 0 4.3-3.5 7.7-7.7 7.7zm22.3.1c-4.3 0-7.7-3.5-7.7-7.7s3.5-7.7 7.7-7.7c4.3 0 7.7 3.5 7.7 7.7s-3.4 7.7-7.7 7.7zm310.7-.1h-228.3c-4.3 0-7.7-3.5-7.7-7.7s3.5-7.7 7.7-7.7h228.3c4.2 0 7.7 3.5 7.7 7.7 0 4.3-3.5 7.7-7.7 7.7z"/></g></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.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 101 101" style="enable-background:new 0 0 101 101;" xml:space="preserve">
<g id="_Group_">
<g id="_Group_2">
<g id="_Group_3">
<g id="_Group_4">
<g id="_Group_5">
<path id="_Path_" d="M50.4,100.5V81.1c17,0,30.8-13.8,30.6-30.8c0-3.8-0.8-7.6-2.2-11.2c-3-8-9.2-14.4-17.2-17.2
C45.8,15.7,28,23.5,21.8,39.5c-1.4,3.6-2,7.4-2,11.2H0.4C0.4,22.9,23,0.5,50.6,0.5c5.4,0,10.6,0.8,15.8,2.6
c15,4.8,26.8,16.6,31.6,31.6c8.8,26.2-5.6,54.6-31.8,63.4C61,99.7,55.6,100.5,50.4,100.5z"/>
</g>
<polygon id="_Path_2" points="50.4,81.3 31,81.3 31,61.9 31,61.9 50.4,61.9 50.4,61.9 "/>
<polygon id="_Path_3" points="31,96.1 16.2,96.1 16.2,96.1 16.2,81.3 31,81.3 "/>
<path id="_Path_4" d="M16.2,81.3H3.8V68.9h12.4L16.2,81.3L16.2,81.3z"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.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 101 101" style="enable-background:new 0 0 101 101;" xml:space="preserve">
<style type="text/css">
.st0{fill:#0080FF;}
</style>
<g id="_Group_">
<g id="_Group_2">
<g id="_Group_3">
<g id="_Group_4">
<g id="_Group_5">
<path id="_Path_" class="st0" d="M50.4,100.5V81.1c17,0,30.8-13.8,30.6-30.8c0-3.8-0.8-7.6-2.2-11.2c-3-8-9.2-14.4-17.2-17.2
C45.8,15.7,28,23.5,21.8,39.5c-1.4,3.6-2,7.4-2,11.2H0.4C0.4,22.9,23,0.5,50.6,0.5c5.4,0,10.6,0.8,15.8,2.6
c15,4.8,26.8,16.6,31.6,31.6c8.8,26.2-5.6,54.6-31.8,63.4C61,99.7,55.6,100.5,50.4,100.5z"/>
</g>
<polygon id="_Path_2" class="st0" points="50.4,81.3 31,81.3 31,61.9 31,61.9 50.4,61.9 50.4,61.9 "/>
<polygon id="_Path_3" class="st0" points="31,96.1 16.2,96.1 16.2,96.1 16.2,81.3 31,81.3 "/>
<path id="_Path_4" class="st0" d="M16.2,81.3H3.8V68.9h12.4L16.2,81.3L16.2,81.3z"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.1.3, 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 51 51" style="enable-background:new 0 0 51 51;" xml:space="preserve">
<style type="text/css">
.st0{fill:#3D98D3;}
</style>
<g>
<path class="st0" d="M7.5491395,26.9503384c0-10.7451725,7.6761146-18.2928314,19.0600967-18.2928314
c10.4466,0,16.8416233,5.3725863,16.8416233,14.7533474c0,6.4384232-2.8989372,11.1288033-8.2281265,11.1288033
c-1.9615593,0-3.9231167-1.0241776-4.6070576-2.6437626c-1.3644123,1.7046452-3.6662045,2.6437626-6.1832485,2.6437626
c-4.3918076,0-7.8010998-2.3451881-7.8010998-7.6327171c0-5.7978802,3.7946606-10.2330837,9.9779091-10.2330837
c2.4302483,0,5.2423935,0.597147,7.1206303,1.6213226l-0.5554886,9.7209969
c-0.1284561,1.7897034,0.725605,2.6854248,1.919899,2.6854248c2.2601318,0,3.0690575-2.942337,3.0690575-7.2907467
c0-6.9505119-3.7529984-10.1480255-11.5540981-10.1480255c-8.1448059,0-13.7725687,4.9889545-13.7725687,13.6875095
c0,7.2907467,4.4751291,10.9152889,12.4914789,10.9152889c2.4753838,0,5.2042046-0.2985725,7.676115-1.1526337v4.3918076
c-2.2601318,0.8540611-4.777174,1.2376938-7.676115,1.2376938C14.7114305,42.342495,7.5491395,36.9265099,7.5491395,26.9503384z
M28.442337,27.1204548l0.3402348-5.8412762c-0.597147-0.2551765-1.4477329-0.3836327-2.3017921-0.3836327
c-2.6455002,0-4.4786015,2.34519-4.4786015,5.6277618c0,2.5587063,1.0241756,3.7946606,2.9440727,3.7946606
C27.2480431,30.3179684,28.3138809,28.8684978,28.442337,27.1204548z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.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 101 101" style="enable-background:new 0 0 101 101;" xml:space="preserve">
<g>
<polygon points="93.8290787,32.9545593 93.8290787,62.1403198 87.1643906,64.4724274 87.1643906,30.6325607 67.1645889,23.6511593
67.1645889,71.4538269 60.4970169,73.7763138 60.4970169,21.3180885 50.5,17.8293133 40.5000992,21.3180885 40.5000992,73.7763138
33.8359032,71.4538269 33.8359032,23.6511593 13.8356133,30.6325607 13.8356133,64.4724274 7.1714168,62.1403198
7.1714168,32.9545593 0.5,35.287632 0.5,66.8786621 20.5036583,73.8600616 20.5036583,35.3641624 27.1712265,33.0383148
27.1712265,76.1859131 47.1676674,83.1706848 47.1676674,26.0569115 50.5,24.8906174 53.8323479,26.0569115 53.8323479,83.1706848
73.8359985,76.1859131 73.8359985,33.0383148 80.5001984,35.3641624 80.5001984,73.8600616 100.5,66.8786621 100.5,35.287632 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.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 101 101" style="enable-background:new 0 0 101 101;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FF0000;}
</style>
<g>
<polygon class="st0" points="93.8,33 93.8,62.1 87.2,64.5 87.2,30.6 67.2,23.7 67.2,71.5 60.5,73.8 60.5,21.3 50.5,17.8 40.5,21.3
40.5,73.8 33.8,71.5 33.8,23.7 13.8,30.6 13.8,64.5 7.2,62.1 7.2,33 0.5,35.3 0.5,66.9 20.5,73.9 20.5,35.4 27.2,33 27.2,76.2
47.2,83.2 47.2,26.1 50.5,24.9 53.8,26.1 53.8,83.2 73.8,76.2 73.8,33 80.5,35.4 80.5,73.9 100.5,66.9 100.5,35.3 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 790 B

View File

@ -0,0 +1,217 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 900 300" style="enable-background:new 0 0 900 300;" xml:space="preserve">
<style type="text/css">
.st0{fill:#D7C0AD;}
.st1{fill:#DE8B59;}
.st2{fill:#BA3700;}
.st3{fill:#D86111;}
.st4{fill:#FF6778;}
.st5{fill:#A43E86;}
.st6{fill:#771774;}
.st7{fill:#FFA694;}
</style>
<path class="st0" d="M540,174.2c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4c1.3,0.7,2.7,1.5,4.5,1.9l-0.4-1.9
c-1.2-0.4-2.3-1-3.4-1.6c-2.4-1.3-4.9-2.6-9.9-2.6c-4.9,0-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-3.4,0-5.5-0.7-7.3-1.5
c-0.2,0.5-0.4,1.1-0.6,1.6c1.9,0.9,4.2,1.7,7.9,1.7C535.1,176.8,537.6,175.5,540,174.2z"/>
<path class="st1" d="M593.8,126.3l-114.9,18.6c-0.5-3-1.5-6-2.9-8.6l103.6-53.2c-7.3-14.3-15.5-25.4-26.9-36.7L470.7,129
c-2.1-2.1-4.6-3.9-7.3-5.3l52.6-104c-14.3-7.3-27.5-11.5-43.3-13.9l-17.8,115.2c-1.5-0.2-2.9-0.4-4.5-0.4s-3.1,0.1-4.5,0.4
l-18.6-115c-15.8,2.6-28.9,6.9-43.2,14.2l53.2,103.6c-2.7,1.4-5.2,3.2-7.3,5.3l-82.7-82c-11.3,11.4-19.3,22.5-26.6,36.9l103.9,52.5
c-1.4,2.7-2.4,5.6-2.8,8.6l-114.9-17.8c-1.2,7.8-1.8,15.2-1.8,22.5h116.4H449h0.9h0.2h0.1h0.1h0.1h0.1h0.1h0.2h0.9h27.7h116.5
C595.8,142.1,595.2,134.5,593.8,126.3z"/>
<g>
<path class="st2" d="M550.5,149.8c20.3-6.8,33.2-12.9,46.9-42.1h48.8c0,0,14.3,33.9,40.7,42.1"/>
<path class="st3" d="M543.5,149.8c20.3-6.8,33.2-12.9,46.9-42.1h48.8c0,0,14.3,33.9,40.7,42.1"/>
</g>
<g>
<polygon class="st2" points="200.1,149.8 256.3,93.6 312.4,149.8 "/>
<polygon class="st0" points="256.3,93.6 256.3,149.8 312.4,149.8 "/>
</g>
<g>
<polygon class="st3" points="284.3,149.8 312.2,121.8 340.1,149.8 "/>
<polygon class="st0" points="312.2,121.8 312.2,149.8 340.1,149.8 "/>
</g>
<g>
<polygon class="st3" points="163.3,149.8 200.2,112.8 237.1,149.8 "/>
<polygon class="st0" points="200.2,112.8 200.2,149.8 237.1,149.8 "/>
</g>
<g>
<polygon class="st4" points="487.3,199.3 468.3,199.3 468.3,194.8 487.3,194.8 484.5,197 "/>
<g>
<path class="st5" d="M428.9,252.7v-55c0-5.4,4.4-9.8,9.8-9.8l0,0c5.4,0,9.8,4.4,9.8,9.8v55c0,5.4-4.4,9.8-9.8,9.8l0,0
C433.3,262.4,428.9,258.1,428.9,252.7z"/>
<g>
<path class="st6" d="M441.5,259.7l1.7,1.7c3.1-1.6,5.3-4.9,5.3-8.6l0,0l0,0v-13.8l0,0V225l0,0v-13.8l0,0v-13.5c0-0.2,0-0.4,0-0.5
l-7,7l7,7l-7,7l7,7l-7,7l7,7l-7,7l7,7L441.5,259.7z"/>
<path class="st1" d="M441.5,190.2l7,7c-0.3-3.6-2.5-6.8-5.6-8.2L441.5,190.2z"/>
</g>
</g>
<path class="st5" d="M491.5,289.9h-82.9c-5.4,0-9.8-4.4-9.8-9.8l0,0c0-5.4,4.4-9.8,9.8-9.8h82.9c5.4,0,9.8,4.4,9.8,9.8l0,0
C501.2,285.6,496.8,289.9,491.5,289.9z"/>
<path class="st5" d="M477.5,250.9h-55c-5.4,0-9.8-4.4-9.8-9.8l0,0c0-5.4,4.4-9.8,9.8-9.8h55c5.4,0,9.8,4.4,9.8,9.8l0,0
C487.3,246.5,482.9,250.9,477.5,250.9z"/>
<path class="st5" d="M484.5,270.4h-69c-5.4,0-9.8-4.4-9.8-9.8l0,0c0-5.4,4.4-9.8,9.8-9.8h69c5.4,0,9.8,4.4,9.8,9.8l0,0
C494.3,266.1,489.9,270.4,484.5,270.4z"/>
<g>
<path class="st6" d="M415,277.4l7-7l7,7l7-7l7,7l7-7l7,7l7-7l7,7l7-7l7,7l7-7h-14l0,0h-13.8l0,0h-13.8l0,0h-13.8l0,0h-13.8l0,0
h-13.3c-0.2,0-0.4,0-0.5,0L415,277.4z"/>
<path class="st6" d="M500.1,275.7c-1.6-3.1-4.9-5.3-8.6-5.3l7,7L500.1,275.7z"/>
<path class="st6" d="M399.8,276.1l1.3,1.3l7-7C404.4,270.7,401.2,273,399.8,276.1z"/>
</g>
<path class="st6" d="M415,257.9l7-7l7,7l7-7l7,7l7-7l7,7l7-7l7,7l7-7l7,7l5.4-5.4c-1.5-1.1-3.4-1.6-5.4-1.6h-7.1l0,0h-13.8l0,0
h-13.8l0,0h-13.8l0,0h-13.8l0,0h-6.4c-2.1,0-4.1,0.7-5.6,1.9L415,257.9z"/>
<g>
<path class="st6" d="M484.5,238.4l1.7-1.7c-1.6-3.1-4.9-5.3-8.6-5.3l0,0l0,0h-13.8l0,0h-13.8l0,0H436l0,0h-13.3
c-0.2,0-0.4,0-0.5,0l7,7l7-7l7,7l7-7l7,7l7-7l7,7l7-7L484.5,238.4z"/>
<path class="st6" d="M415,238.4l7-7c-3.6,0.3-6.8,2.5-8.2,5.6L415,238.4z"/>
</g>
<path class="st5" d="M471.2,197c0,8.3-18.9,15.1-27.2,15.1s-15.1-6.8-15.1-15.1c0-8.3,6.8-15.1,15.1-15.1
C452.3,182,471.2,188.8,471.2,197z"/>
<circle class="st6" cx="448.5" cy="197" r="3.4"/>
<path class="st6" d="M473.6,231.4c0-3.6,2-6.8,4.9-8.6c-1.4-0.8-3.1-1.3-4.9-1.3c-5.4,0-9.8,4.4-9.8,9.8"/>
<g>
<path class="st5" d="M464.7,227.5c-0.1,0.2-0.2,0.4-0.3,0.6l7,3.4h1.6L464.7,227.5z"/>
<path class="st5" d="M465.9,225.5c-0.2,0.2-0.3,0.4-0.4,0.6l8.2,4c0-0.3,0.1-0.4,0.1-0.7L465.9,225.5z"/>
<path class="st5" d="M466.4,231.4h1.6l-4-1.9c-0.1,0.3-0.1,0.4-0.1,0.7L466.4,231.4z"/>
<path class="st5" d="M467.6,223.9c-0.2,0.2-0.4,0.4-0.5,0.5l7.3,3.5c0.1-0.2,0.2-0.4,0.3-0.6L467.6,223.9z"/>
<path class="st5" d="M473.3,221.7c-0.4,0-0.9,0.1-1.3,0.2l4.9,2.4c0.2-0.2,0.4-0.4,0.6-0.5L473.3,221.7z"/>
<path class="st5" d="M469.8,222.4c-0.3,0.1-0.5,0.3-0.8,0.4l6.4,3.1c0.2-0.2,0.3-0.4,0.4-0.5L469.8,222.4z"/>
</g>
</g>
<polygon class="st7" points="84.5,254.5 96.1,246.8 93.4,233 107.1,235.7 114.9,224.1 122.7,235.7 136.4,233 133.7,246.8
145.3,254.5 "/>
<polygon class="st7" points="522.2,224.5 533.8,216.8 531.1,203 544.8,205.7 552.6,194.1 560.4,205.7 574.1,203 571.4,216.8
583.1,224.5 "/>
<polygon class="st7" points="582.4,185 589.9,180 588,171.2 596.8,173 601.9,165.5 606.8,173 615.6,171.2 613.9,180 621.4,185 "/>
<path class="st6" d="M729.2,264.2V138.5c0-4.1,3.4-7.6,7.6-7.6c4.1,0,7.6,3.4,7.6,7.6v125.8L729.2,264.2L729.2,264.2z"/>
<path class="st6" d="M741.6,224.2c-3.1,0-6-1.9-7.1-5c-1.4-4,0.6-8.3,4.6-9.7c5.7-2.1,11.9-5.7,13.1-7.8v-29.5
c0-4.1,3.4-7.6,7.6-7.6c4.1,0,7.6,3.4,7.6,7.6v29.9c0,6.2-4.3,11.8-12.9,16.8c-5,2.9-10.1,4.8-10.3,4.9
C743.3,224,742.5,224.2,741.6,224.2z"/>
<path class="st6" d="M729.9,203.1c-0.9,0-1.7-0.2-2.6-0.4c-5.7-2-19.1-7.9-19.1-18.3v-23.1c0-4.1,3.4-7.6,7.6-7.6s7.6,3.4,7.6,7.6
v22.1c1.3,1.4,5.5,3.7,9,5c3.9,1.4,6,5.7,4.5,9.7C735.9,201.2,733,203.1,729.9,203.1z"/>
<path class="st6" d="M207.3,224.2v-52.3c0-1.8-1.4-3.2-3.2-3.2s-3.2,1.4-3.2,3.2v52.3H207.3z"/>
<path class="st6" d="M202.1,207.5c1.3,0,2.5-0.8,3-2.1c0.6-1.7-0.3-3.4-1.9-4.1c-2.4-0.9-4.9-2.4-5.5-3.3v-12.3
c0-1.8-1.4-3.2-3.2-3.2c-1.8,0-3.2,1.4-3.2,3.2v12.4c0,2.6,1.8,4.9,5.4,7c2.1,1.2,4.2,1.9,4.3,2
C201.4,207.4,201.8,207.5,202.1,207.5z"/>
<path class="st6" d="M207,198.7c0.4,0,0.7-0.1,1.1-0.2c2.4-0.9,7.9-3.4,7.9-7.6v-9.6c0-1.8-1.4-3.2-3.2-3.2s-3.2,1.4-3.2,3.2v9.2
c-0.5,0.6-2.3,1.5-3.8,2.1c-1.6,0.6-2.5,2.4-1.9,4.1C204.5,197.9,205.7,198.7,207,198.7z"/>
<g>
<circle class="st6" cx="48.4" cy="200.3" r="7.6"/>
<path class="st6" d="M71.8,207.9c-4.1,0-7.6-3.4-7.6-7.6s3.4-7.6,7.6-7.6c4.1,0,7.6,3.4,7.6,7.6S76,207.9,71.8,207.9z"/>
<path class="st7" d="M88.9,190.2l1.6-10.1c0-5.6-4.5-10.1-10.1-10.1H51c-5.6,0-10.1,4.5-10.1,10.1l1.6,10.1"/>
<path class="st5" d="M61,180.2c0-5.6-4.5-10.1-10.1-10.1s-10.1,4.5-10.1,10.1l1.6,10.1h17L61,180.2z"/>
<path class="st6" d="M47.5,190.2h6.9l1.3-10.4c-0.2-2.5-2.3-4.4-4.8-4.4c-2.6,0-4.6,1.9-4.8,4.4L47.5,190.2z"/>
<rect x="42.4" y="190.2" class="st6" width="46.5" height="10.1"/>
<rect x="59.4" y="190.2" class="st4" width="29.5" height="10.1"/>
<circle class="st5" cx="59.4" cy="200.3" r="7.6"/>
<circle class="st6" cx="59.4" cy="200.3" r="4.9"/>
<path class="st5" d="M84,207.9c-4.1,0-7.6-3.4-7.6-7.6s3.4-7.6,7.6-7.6c4.1,0,7.6,3.4,7.6,7.6S88.1,207.9,84,207.9z"/>
<circle class="st6" cx="84" cy="200.3" r="4.9"/>
<g>
<path class="st5" d="M79.5,191L79.5,191c-0.4-0.1-0.5-0.4-0.5-0.6l1.7-10.4c0-5.5-4.5-9.9-9.9-9.9c-0.3,0-0.5-0.3-0.5-0.5
c0-0.3,0.3-0.5,0.5-0.5c6.1,0,10.9,4.9,10.9,10.9v0.1L80,190.5C80,190.8,79.7,191,79.5,191z"/>
<path class="st5" d="M69.3,191C69.3,191,69.2,191,69.3,191c-0.4-0.1-0.5-0.4-0.5-0.6l1.7-10.4c0-5.5-4.5-9.9-9.9-9.9
c-0.3,0-0.5-0.3-0.5-0.5c0-0.3,0.3-0.5,0.5-0.5c6.1,0,10.9,4.9,10.9,10.9v0.1l-1.7,10.4C69.7,190.8,69.6,191,69.3,191z"/>
</g>
</g>
<g>
<path class="st3" d="M737.4,242.6h-35.6c-4.9,0-8.8-4-8.8-8.8V229c0-1.1,0.8-1.9,1.9-1.9s1.9,0.8,1.9,1.9v4.8
c0,2.8,2.3,5.1,5.1,5.1h35.6c2.8,0,5.1-2.3,5.1-5.1V229c0-1.1,0.8-1.9,1.9-1.9s1.9,0.8,1.9,1.9v4.8
C746.3,238.6,742.3,242.6,737.4,242.6z"/>
<path class="st0" d="M719.6,235c-4,0-7.5,2-9.6,5l0,0l-7.9,10.1h-10.2c-2.6,0-4.8,2.1-4.8,4.8v3.2c0,2.6,2.1,4.8,4.8,4.8h1.7v0.6
c0,0.4,0.4,0.8,0.8,0.8h1.2c0.4,0,0.8-0.4,0.8-0.8v-0.6h0.3v0.6c0,0.4,0.4,0.8,0.8,0.8h1.2c0.4,0,0.8-0.4,0.8-0.8v-0.6h0.3v0.6
c0,0.4,0.4,0.8,0.8,0.8h1.2c0.4,0,0.8-0.4,0.8-0.8v-0.6h0.3v0.6c0,0.4,0.4,0.8,0.8,0.8h1.2c0.4,0,0.8-0.4,0.8-0.8v-0.6h0.3v0.6
c0,0.4,0.4,0.8,0.8,0.8h1.2c0.4,0,0.8-0.4,0.8-0.8v-0.6h7.8c1.8,0,3.3-1,4.1-2.4l0,0l1.7-2.3c5.3-1.1,9.3-5.8,9.3-11.5
C731.3,240.3,726,235,719.6,235z M689.7,258.2H688V255c0-2.2,1.8-4,4-4h1.7v3.3C693.6,256.5,691.9,258.2,689.7,258.2z M717.5,250.5
c-2.1,0-3.8-1.7-3.8-3.8s1.7-3.8,3.8-3.8s3.8,1.7,3.8,3.8C721.3,248.8,719.6,250.5,717.5,250.5z"/>
</g>
<path class="st0" d="M601.9,282.5c4.9,0,7.4-1.3,9.8-2.6c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4c2.3,1.2,4.6,2.5,8.9,2.6
l-0.4-1.7c-3.7-0.2-5.6-1.2-7.8-2.4c-2.4-1.3-4.9-2.6-9.9-2.6s-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4
c-2.4-1.3-4.9-2.6-9.9-2.6c-0.6,0-1.1,0-1.7,0.1l-3.4,1.9c0.1,0.1,0.2,0.2,0.3,0.4c1.3-0.4,2.8-0.6,4.8-0.6c4.5,0,6.7,1.1,9.1,2.4
C594.4,281.2,597,282.5,601.9,282.5z"/>
<path class="st0" d="M822.9,176.7c4.9,0,7.4-1.3,9.8-2.6c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4c2.3,1.2,4.6,2.5,8.9,2.6
l-0.4-1.7c-3.7-0.2-5.6-1.2-7.8-2.4c-2.4-1.3-4.9-2.6-9.9-2.6s-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4
c-2.4-1.3-4.9-2.6-9.9-2.6c-0.6,0-1.1,0-1.7,0.1l-3.4,1.9c0.1,0.1,0.2,0.2,0.3,0.4c1.3-0.4,2.8-0.6,4.8-0.6c4.5,0,6.7,1.1,9.1,2.4
C815.4,175.4,817.9,176.7,822.9,176.7z"/>
<path class="st0" d="M289.7,277.6c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6s7.4-1.3,9.9-2.6c2.1-1.1,4.1-2.2,7.9-2.4l-0.4-1.7
c-4,0.3-6.2,1.4-8.3,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.9-2.6V277.6L289.7,277.6z"/>
<path class="st0" d="M859.6,236.9c-4.9,0-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4
c-2.4-1.3-4.9-2.6-9.9-2.6c-4.9,0-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.9-2.6
c-1.6,0-3,0.2-4.1,0.4c0,0.5-0.1,1.1-0.2,1.8c1.1-0.3,2.6-0.4,4.3-0.4c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6
c4.9,0,7.4-1.3,9.9-2.6c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6c4.9,0,7.4-1.3,9.9-2.6
c2.3-1.2,4.5-2.4,9.1-2.4V236.9z"/>
<path class="st0" d="M192.7,238.5c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6c4.9,0,7.4-1.3,9.9-2.6c2.2-1.1,4.3-2.3,8.5-2.4
c0.6-0.6,1.1-1.1,1.9-1.7c-0.4,0-0.8,0-1.2,0c-4.9,0-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4
c-2.4-1.3-4.9-2.6-9.9-2.6c-4.9,0-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.9-2.6
c-2.9,0-4.9,0.4-6.6,1.1l-0.4,2c1.8-0.8,3.8-1.4,7.1-1.4c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6c4.9,0,7.4-1.3,9.9-2.6
C186,239.7,188.2,238.5,192.7,238.5z"/>
<path class="st0" d="M271.1,172.7c-2.4-1.3-4.9-2.6-9.9-2.6s-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4
c-2.4-1.3-4.9-2.6-9.9-2.6c-0.7,0-1.3,0-1.9,0.1v1.7c0.6-0.1,1.2-0.1,1.9-0.1c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6
s7.4-1.3,9.9-2.6c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4"/>
<path class="st0" d="M633,171.7c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6s7.4-1.3,9.8-2.6c2.3-1.2,4.5-2.4,9.1-2.4
c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6c3.4,0,5.6-0.6,7.3-1.4c-0.2-0.5-0.4-1.1-0.5-1.6c-1.7,0.8-3.7,1.3-6.9,1.3
c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.9-2.6s-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4
c-2.4-1.3-4.9-2.6-9.9-2.6"/>
<path class="st0" d="M164.8,206.1c-2.4-1.3-4.9-2.6-9.9-2.6c-4.9,0-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4
c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.9-2.6c-0.3,0-0.5,0-0.9,0l1.1,1.7c4.3,0.1,6.5,1.2,8.8,2.4c2.4,1.3,4.9,2.6,9.9,2.6
c4.9,0,7.4-1.3,9.9-2.6c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6c3.8,0,6.1-0.8,8.1-1.8
c-0.4-0.4-0.6-1-0.9-1.4c-1.8,0.9-3.9,1.5-7.2,1.5C169.3,208.5,167.1,207.3,164.8,206.1z"/>
<path class="st0" d="M416.8,170c-4.9,0-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.9-2.6
s-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.9-2.6s-7.4,1.3-9.9,2.6
c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.9-2.6c-4.9,0-7.4,1.3-9.9,2.6c-0.3,0.1-0.5,0.3-0.7,0.4v1.9
c0.5-0.3,1.1-0.5,1.5-0.8c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6c4.9,0,7.4-1.3,9.9-2.6
c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6s7.4-1.3,9.9-2.6c2.3-1.2,4.5-2.4,9.1-2.4
c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6s7.4-1.3,9.8-2.6c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4
c0.4,0.2,0.8,0.4,1.1,0.6c0.2-0.5,0.4-1.1,0.6-1.6c-0.4-0.2-0.6-0.4-1-0.5C424.2,171.3,421.7,170,416.8,170z"/>
<path class="st0" d="M670.8,238.5c1.5,0,2.7,0.2,3.9,0.4v-0.6c0-0.4,0-0.7,0-1.1c-1.1-0.2-2.4-0.4-3.9-0.4c-4.9,0-7.4,1.3-9.9,2.6
c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4c-0.7-0.4-1.4-0.7-2.1-1.1l-1.5,1.2c1,0.4,1.9,0.9,2.8,1.3
c2.4,1.3,4.9,2.6,9.9,2.6s7.4-1.3,9.8-2.6C664,239.6,666.2,238.5,670.8,238.5z"/>
<path class="st0" d="M108.7,277.6c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6c4.9,0,7.4-1.3,9.9-2.6c2.3-1.2,4.5-2.4,9.1-2.4
s6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.8,2.6c4.9,0,7.4-1.3,9.8-2.6c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4
c2.4,1.3,4.9,2.6,9.9,2.6c4.9,0,7.4-1.3,9.9-2.6c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6
s7.4-1.3,9.9-2.6c1.9-1.1,3.8-2,7-2.3l0.8-1.8c-4.1,0.2-6.4,1.4-8.6,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4
c-2.4-1.3-4.9-2.6-9.9-2.6c-4.9,0-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.9-2.6
s-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.8-2.6c-4.9,0-7.4,1.3-9.8,2.6
c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.9-2.6L108.7,277.6L108.7,277.6z"/>
<path class="st0" d="M498.2,240.9c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6s7.4-1.3,9.9-2.6
c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6s7.4-1.3,9.9-2.6c2.3-1.2,4.5-2.4,9.1-2.4
c4.5,0,6.7,1.1,9.1,2.4l0.8-1.5c-2.4-1.3-4.9-2.6-9.9-2.6s-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4
c-2.4-1.3-4.9-2.6-9.9-2.6s-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.9-2.6
s-7.4,1.3-9.9,2.6"/>
<path class="st0" d="M599,207.6c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6s7.4-1.3,9.9-2.6
c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4l0.8-1.5c-2.4-1.3-4.9-2.6-9.9-2.6s-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4
c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.9-2.6s-7.4,1.3-9.9,2.6L599,207.6z"/>
<path class="st0" d="M790.9,207.5c2.4,1.3,4.9,2.6,9.9,2.6s7.4-1.3,9.9-2.6c2.3-1.2,4.5-2.4,9.1-2.4v-1.7c-4.9,0-7.4,1.3-9.9,2.6
c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4"/>
<path class="st0" d="M88.3,278.5c-2.4-1.3-4.9-2.6-9.8-2.6c-4.9,0-7.4,1.3-9.8,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4
c-2.4-1.3-4.9-2.6-9.9-2.6v1.7c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6s7.4-1.3,9.9-2.6c2.3-1.2,4.5-2.4,9.1-2.4
s6.7,1.1,9.1,2.4"/>
<path class="st0" d="M271.2,240.8c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6s7.4-1.3,9.9-2.6
c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6s7.4-1.3,9.9-2.6c2.3-1.2,4.5-2.4,9.1-2.4
c4.5,0,6.7,1.1,9.1,2.4c0.1,0.1,0.3,0.1,0.4,0.2l1.5-1.1c-0.4-0.2-0.7-0.4-1.1-0.5c-2.4-1.3-4.9-2.6-9.9-2.6s-7.4,1.3-9.9,2.6
c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.9-2.6s-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4
c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.9-2.6s-7.4,1.3-9.9,2.6"/>
<path class="st0" d="M380.8,206.1c-2.4-1.3-4.9-2.6-9.9-2.6s-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4
c-2.4-1.3-4.9-2.6-9.9-2.6s-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.8-2.6
c-4.9,0-7.4,1.3-9.8,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.9-2.6v1.7c4.5,0,6.7,1.1,9.1,2.4
c2.4,1.3,4.9,2.6,9.9,2.6c4.9,0,7.4-1.3,9.9-2.6c2.3-1.2,4.5-2.4,9.1-2.4c4.6,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.8,2.6
c4.9,0,7.4-1.3,9.8-2.6c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6s7.4-1.3,9.9-2.6
c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4"/>
<path class="st0" d="M173.8,175.1c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.9-2.6c-4.9,0-7.4,1.3-9.9,2.6
c-2.3,1.2-4.5,2.4-9.1,2.4c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.9-2.6c-4.9,0-7.4,1.3-9.9,2.6c-1.5,0.8-2.9,1.6-5,2
c0.2,0.5,0.3,1.1,0.4,1.7c2.3-0.5,3.9-1.3,5.5-2.2c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6
s7.4-1.3,9.9-2.6c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6s7.4-1.3,9.9-2.6c0.3-0.2,0.6-0.4,0.9-0.4
c1.1-1,2.5-1.8,3.9-2.4c0-0.3,0.1-0.6,0.1-0.9c-2.4,0.5-4,1.3-5.6,2.2C180.5,174,178.3,175.1,173.8,175.1z"/>
<path class="st0" d="M780.7,280.8c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.9-2.6s-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4
c-4.5,0-6.7-1.1-9.1-2.4c-2.4-1.3-4.9-2.6-9.9-2.6c-4.9,0-7.4,1.3-9.9,2.6c-2.3,1.2-4.5,2.4-9.1,2.4c-2.7,0-4.6-0.4-6.2-1.1
l-0.4,1.7c1.7,0.6,3.7,1.1,6.5,1.1c4.9,0,7.4-1.3,9.9-2.6c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6
s7.4-1.3,9.9-2.6c2.3-1.2,4.5-2.4,9.1-2.4c4.5,0,6.7,1.1,9.1,2.4c2.4,1.3,4.9,2.6,9.9,2.6s7.4-1.3,9.9-2.6c2.3-1.2,4.5-2.4,9.1-2.4
v-1.7c-4.9,0-7.4,1.3-9.9,2.6C787.4,279.7,785.2,280.8,780.7,280.8z"/>
<g>
<path class="st0" d="M482.4,74.6c1.5,0,3,0.3,4.3,0.9c2.1-5,7.1-8.5,12.9-8.5c1.5,0,2.9,0.2,4.2,0.7c2.3-9.7,11-17,21.5-17
c10.5,0,19.3,7.4,21.5,17.2c1.5-0.5,3.1-0.8,4.8-0.8c7.7,0,13.9,6.2,13.9,13.9H473C474.5,77.3,478.1,74.6,482.4,74.6z"/>
<path class="st0" d="M417.6,93.8c-1.8,0-3.5,0.4-5,1.1c-2.5-5.9-8.3-10-15.1-10c-1.7,0-3.4,0.3-5,0.8c-2.7-11.5-13-20-25.3-20
c-12.3,0-22.7,8.6-25.3,20.2c-1.8-0.6-3.7-1-5.6-1c-9,0-16.4,7.3-16.4,16.4h108.6C426.9,96.9,422.7,93.8,417.6,93.8z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 66 57" fill="#fff" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="round"><use xlink:href="#A" x=".5" y=".5"/><symbol id="A" overflow="visible"><path d="M32 0L0 55.426h4.44L32 7.963v7.8L9.033 55.426h4.593L32 23.733v7.962l-13.78 23.73h4.593L32 39.656v7.8l-4.593 7.962H64z" stroke="none" fill="#da291c" fill-rule="nonzero"/></symbol></svg>

After

Width:  |  Height:  |  Size: 459 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -0,0 +1,26 @@
<?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 70 70" style="enable-background:new 0 0 70 70;" xml:space="preserve">
<style type="text/css">
.st0{fill:#78BF40;}
.st1{fill:#00689E;}
</style>
<g>
<path id="_120401272" class="st0" d="M61.8,59.4C61.8,59.4,61.6,59.4,61.8,59.4C61.6,59.4,61.8,59.4,61.8,59.4z M61.6,59.4
C61.6,59.4,61.4,59.4,61.6,59.4C61.4,59.4,61.6,59.4,61.6,59.4z M61.4,59.6c0,0-0.2,0-0.2,0.2C61.2,59.6,61.2,59.6,61.4,59.6z
M44.6,47.1L35.5,38c0,0,0,0,0-0.2C38.4,40.9,41.6,44.1,44.6,47.1z M35.9,31.5l6.8-6.8l0,0L35.9,31.5L35.9,31.5z M42.4,24.7
l-8.5-8.5c-1.1-1.1-2.6-0.9-3.4,0l-17,17c-1.1,1.1-0.9,2.6,0,3.4l1.5,1.5l-6.6-6.6l0,0L29,11.3c1.5-1.5,4.5-1.9,6.4-0.2L56.3,32
c0.6,0.6,1.1,1.7,1.1,2.8c0-1.1-0.4-1.9-1.1-2.8L45.9,21.5L42.4,24.7L42.4,24.7z M30.7,53.7l0.2,0.2c0.9,0.6,2.1,0.6,3-0.4l5.1-5.1
l3.4,3.4l-6.8,6.8c-2.3,2.3-5.3,1.5-6.8,0L8.6,38.3c-0.9-0.9-1.5-2.1-1.5-3.2c0,1.3,0.6,2.3,1.5,3.2l20.2,20.2
c1.5,1.5,4.5,2.3,6.8,0C35.6,58.5,30.7,53.7,30.7,53.7z M7.3,34.9v-0.2C7.3,34.9,7.3,34.9,7.3,34.9z M49.3,44.9l7,7l0,0
C53.9,49.6,51.6,47.3,49.3,44.9L49.3,44.9z M45.9,28.1l5.1,5.1c0.4,0.4,0.6,0.6,0.6,1.1c0-0.4-0.4-0.9-0.6-1.1L45.9,28.1z M48.4,39
l-0.9,0.9l0,0l0,0L48.4,39z"/>
<path class="st1" d="M62.9,58.5C58.4,54,54,49.6,49.5,44.9l6.8-6.8c1.9-1.9,1.7-4.7,0.2-6.4L46.1,21.3l-3.4,3.4l0,0l-6.8,6.8
c-1.7,1.7-1.7,4.5-0.4,6.2c6.8,6.8,13.8,13.8,20.6,20.6C58.2,60.7,61.4,60,62.9,58.5L62.9,58.5z M47.6,40c-1.1,1.1-2.6,0.9-3.4,0
l-3.4-3.4c-0.9-0.9-1.1-2.3,0-3.4l5.1-5.1l5.1,5.1c0.9,0.9,1.1,2.3,0,3.4C49.9,37.7,48.8,38.8,47.6,40C47.6,39.8,47.6,40,47.6,40z"
/>
<path id="_120400048" class="st1" d="M35.6,58.5c-2.3,2.3-5.3,1.5-6.8,0L8.6,38.3c-1.9-1.9-1.9-4.7,0-6.8l13.2,13.2l8.7,8.7l0,0
L35.6,58.5L35.6,58.5z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="206" viewBox="0 0 256 206">
<path fill="#EA4335" d="M170.2517,56.8186 L192.5047,34.5656 L193.9877,25.1956 C153.4367,-11.6774 88.9757,-7.4964 52.4207,33.9196 C42.2667,45.4226 34.7337,59.7636 30.7167,74.5726 L38.6867,73.4496 L83.1917,66.1106 L86.6277,62.5966 C106.4247,40.8546 139.8977,37.9296 162.7557,56.4286 L170.2517,56.8186 Z"/>
<path fill="#4285F4" d="M224.2048,73.9182 C219.0898,55.0822 208.5888,38.1492 193.9878,25.1962 L162.7558,56.4282 C175.9438,67.2042 183.4568,83.4382 183.1348,100.4652 L183.1348,106.0092 C198.4858,106.0092 210.9318,118.4542 210.9318,133.8052 C210.9318,149.1572 198.4858,161.2902 183.1348,161.2902 L127.4638,161.2902 L121.9978,167.2242 L121.9978,200.5642 L127.4638,205.7952 L183.1348,205.7952 C223.0648,206.1062 255.6868,174.3012 255.9978,134.3712 C256.1858,110.1682 244.2528,87.4782 224.2048,73.9182"/>
<path fill="#34A853" d="M71.8704,205.7957 L127.4634,205.7957 L127.4634,161.2897 L71.8704,161.2897 C67.9094,161.2887 64.0734,160.4377 60.4714,158.7917 L52.5844,161.2117 L30.1754,183.4647 L28.2234,191.0387 C40.7904,200.5277 56.1234,205.8637 71.8704,205.7957"/>
<path fill="#FBBC05" d="M71.8704,61.4250342 C31.9394,61.6635 -0.2366,94.2275 0.0014,134.1575 C0.1344,156.4555 10.5484,177.4455 28.2234,191.0385 L60.4714,158.7915 C46.4804,152.4705 40.2634,136.0055 46.5844,122.0155 C52.9044,108.0255 69.3704,101.8085 83.3594,108.1285 C89.5244,110.9135 94.4614,115.8515 97.2464,122.0155 L129.4944,89.7685 C115.7734,71.8315 94.4534,61.3445 71.8704,61.4250342"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

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