1
0
mirror of https://github.com/konpa/devicon.git synced 2025-08-13 18:14:21 +02:00

Merge branch 'develop' into develop

This commit is contained in:
Alex Canales
2024-04-13 20:38:47 -04:00
committed by GitHub
180 changed files with 14236 additions and 11969 deletions

View File

@@ -8,7 +8,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: '3.10'
- name: Install dependencies (python, pip, npm)
run: |
@@ -17,12 +17,13 @@ jobs:
npm install
- name: Executing build and create fonts via icomoon
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: >
python ./.github/scripts/icomoon_build.py
./.github/scripts/build_assets/geckodriver-v0.32.2-linux64/geckodriver ./icomoon.json
./devicon.json ./icons ./ "$GITHUB_TOKEN" --headless
./devicon.json ./icons ./ $GITHUB_TOKEN --headless
- name: Upload geckodriver.log for debugging purposes
uses: actions/upload-artifact@v2
@@ -42,15 +43,15 @@ jobs:
if: success()
run: npm run build-css
- name: Upload screenshot of the newly made icons
id: imgur_step
uses: devicons/public-upload-to-imgur@v2.2.2
if: success()
with:
# will have "new_icons.png" and "new_svgs.png"
# in that order (cause sorted alphabetically)
path: ./screenshots/*.png
client_id: ${{secrets.IMGUR_CLIENT_ID}}
# - name: Upload screenshot of the newly made icons
# id: imgur_step
# uses: devicons/public-upload-to-imgur@v2.2.2
# if: success()
# with:
# # will have "new_icons.png" and "new_svgs.png"
# # in that order (cause sorted alphabetically)
# path: ./screenshots/*.png
# client_id: ${{secrets.IMGUR_CLIENT_ID}}
- name: Get the release message from file
id: release_message_step
@@ -68,14 +69,6 @@ jobs:
I'm Devicon's Build Bot and I just built some new font files and devicon.min.css file.
Here are all the **SVGs** that were uploaded (the new ones are those with highlight):
{0}
Here is what they look like as icons:
{1}
The devicon.min.css file contains:
-The icon content
-The aliases
@@ -83,7 +76,7 @@ jobs:
I also compiled a list of new features and icons that were added since last release.
```
{2}
{0}
```
More information can be found in the GitHub Action logs for this workflow.
@@ -98,8 +91,6 @@ jobs:
${{
format(
env.MESSAGE,
fromJSON(steps.imgur_step.outputs.markdown_urls)[1],
fromJSON(steps.imgur_step.outputs.markdown_urls)[0],
steps.release_message_step.outputs.content
)
}}

View File

@@ -1,223 +1,224 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"definitions": {
"IconVersions": {
"type": "string",
"enum": [
"original",
"plain",
"line",
"original-wordmark",
"plain-wordmark",
"line-wordmark"
]
},
"IconVersionsArray": {
"type": "array",
"items": {
"$ref": "#/definitions/IconVersions"
}
}
},
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"title": "The official name of the technology.",
"description": "Pattern: Only lower-case letters and digits.",
"pattern": "^(dot-net|[0-9a-z]+)$"
},
"altnames": {
"type": "array",
"title": "List of alternative names for this technology.",
"description": "Used for the searchbar on the Devicon website. https://devicon.dev",
"uniqueItems": true,
"items": {
"type": "string"
"$schema": "http://json-schema.org/draft-07/schema",
"definitions": {
"IconVersions": {
"type": "string",
"enum": [
"original",
"plain",
"line",
"original-wordmark",
"plain-wordmark",
"line-wordmark"
]
},
"IconVersionsArray": {
"type": "array",
"items": {
"$ref": "#/definitions/IconVersions"
}
}
},
"tags": {
"type": "array",
"title": "List of tags relating to the technology for categorization/search purpose.",
"$ref": "./tags-enum.json/#/definitions/Tags"
},
"versions": {
"title": "Keeps track of the different versions that you have.",
},
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"svg": {
"title": "List all the SVGs that you have.",
"contains": {
"$ref": "#/definitions/IconVersions"
"name": {
"type": "string",
"title": "The official name of the technology.",
"description": "Pattern: Only lower-case letters and digits.",
"pattern": "^(dot-net|[0-9a-z]+)$"
},
"minItems": 1,
"uniqueItems": true,
"$ref": "#/definitions/IconVersionsArray"
},
"font": {
"title": "List only the SVGs that can be converted to fonts. Usually refers to \"plain\" and \"line\" versions but \"original\" can be accepted.",
"description": "DO NOT list aliases here! In this case use \"aliases\" property!",
"contains": {
"$ref": "#/definitions/IconVersions"
"altnames": {
"type": "array",
"title": "List of alternative names for this technology.",
"description": "Used for the searchbar on the Devicon website. https://devicon.dev",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"minItems": 1,
"uniqueItems": true,
"$ref": "#/definitions/IconVersionsArray"
}
}
},
"color": {
"title": "The official/main hexadecimal color of the logo. [Case insensitive]",
"description": "Pattern example: #FFFFFF",
"type": "string",
"pattern": "^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$"
},
"aliases": {
"title": "Keeps track of the aliases for the font versions ONLY.",
"description": "Can be empty, or contain objects, each with an alias and a base version. More info here: https://github.com/devicons/devicon/wiki/Updating-%60devicon.json%60#aliases-and-aliasobj",
"type": "array",
"items": {
"title": "AliasObj, an object containing an alias and a base version",
"type": "object",
"additionalProperties": false,
"properties": {
"base": {
"title": "The SVG file you are using as source for the alias.",
"$ref": "#/definitions/IconVersions"
"tags": {
"type": "array",
"title": "List of tags relating to the technology for categorization/search purpose.",
"$ref": "./tags-enum.json/#/definitions/Tags"
},
"alias": {
"title": "The new name (alias) that you want to generate.",
"$ref": "#/definitions/IconVersions"
"versions": {
"title": "Keeps track of the different versions that you have.",
"type": "object",
"additionalProperties": false,
"properties": {
"svg": {
"title": "List all the SVGs that you have.",
"contains": {
"$ref": "#/definitions/IconVersions"
},
"minItems": 1,
"uniqueItems": true,
"$ref": "#/definitions/IconVersionsArray"
},
"font": {
"title": "List only the SVGs that can be converted to fonts. Usually refers to \"plain\" and \"line\" versions but \"original\" can be accepted.",
"description": "DO NOT list aliases here! In this case use \"aliases\" property!",
"contains": {
"$ref": "#/definitions/IconVersions"
},
"minItems": 1,
"uniqueItems": true,
"$ref": "#/definitions/IconVersionsArray"
}
}
},
"color": {
"title": "The official/main hexadecimal color of the logo. [Case insensitive]",
"description": "Pattern example: #FFFFFF",
"type": "string",
"pattern": "^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$",
"format": "color"
},
"aliases": {
"title": "Keeps track of the aliases for the font versions ONLY.",
"description": "Can be empty, or contain objects, each with an alias and a base version. More info here: https://github.com/devicons/devicon/wiki/Updating-%60devicon.json%60#aliases-and-aliasobj",
"type": "array",
"items": {
"title": "AliasObj, an object containing an alias and a base version",
"type": "object",
"additionalProperties": false,
"properties": {
"base": {
"title": "The SVG file you are using as source for the alias.",
"$ref": "#/definitions/IconVersions"
},
"alias": {
"title": "The new name (alias) that you want to generate.",
"$ref": "#/definitions/IconVersions"
}
},
"required": [
"base",
"alias"
],
"allOf": [
{
"if": {
"properties": {
"base": {
"const": "original"
}
}
},
"then": {
"not": {
"properties": {
"alias": {
"const": "original"
}
}
}
}
},
{
"if": {
"properties": {
"base": {
"const": "plain"
}
}
},
"then": {
"not": {
"properties": {
"alias": {
"const": "plain"
}
}
}
}
},
{
"if": {
"properties": {
"base": {
"const": "line"
}
}
},
"then": {
"not": {
"properties": {
"alias": {
"const": "line"
}
}
}
}
},
{
"if": {
"properties": {
"base": {
"const": "original-wordmark"
}
}
},
"then": {
"not": {
"properties": {
"alias": {
"const": "original-wordmark"
}
}
}
}
},
{
"if": {
"properties": {
"base": {
"const": "plain-wordmark"
}
}
},
"then": {
"not": {
"properties": {
"alias": {
"const": "plain-wordmark"
}
}
}
}
},
{
"if": {
"properties": {
"base": {
"const": "line-wordmark"
}
}
},
"then": {
"not": {
"properties": {
"alias": {
"const": "line-wordmark"
}
}
}
}
}
]
}
}
},
"required": [
"base",
"alias"
],
"allOf": [
{
"if": {
"properties": {
"base": {
"const": "original"
}
}
},
"then": {
"not": {
"properties": {
"alias": {
"const": "original"
}
}
}
}
},
{
"if": {
"properties": {
"base": {
"const": "plain"
}
}
},
"then": {
"not": {
"properties": {
"alias": {
"const": "plain"
}
}
}
}
},
{
"if": {
"properties": {
"base": {
"const": "line"
}
}
},
"then": {
"not": {
"properties": {
"alias": {
"const": "line"
}
}
}
}
},
{
"if": {
"properties": {
"base": {
"const": "original-wordmark"
}
}
},
"then": {
"not": {
"properties": {
"alias": {
"const": "original-wordmark"
}
}
}
}
},
{
"if": {
"properties": {
"base": {
"const": "plain-wordmark"
}
}
},
"then": {
"not": {
"properties": {
"alias": {
"const": "plain-wordmark"
}
}
}
}
},
{
"if": {
"properties": {
"base": {
"const": "line-wordmark"
}
}
},
"then": {
"not": {
"properties": {
"alias": {
"const": "line-wordmark"
}
}
}
}
}
]
}
}
},
"required": [
"name",
"altnames",
"tags",
"versions",
"color",
"aliases"
]
}
},
"required": [
"name",
"altnames",
"tags",
"versions",
"color",
"aliases"
]
}
}

View File

@@ -20,6 +20,12 @@
<a href="https://devicon.dev/">
<img alt="Registered logos" src="https://img.shields.io/github/directory-file-count/devicons/devicon/icons?color=%2360be86&label=registered%20logos&style=for-the-badge">
</a>
<a href="https://www.npmjs.com/package/devicon">
<img alt="Devicons npm downloads" src="https://img.shields.io/npm/dt/devicon?color=%2360be86&style=for-the-badge">
</a>
<a href="https://www.npmjs.com/package/devicon">
<img alt="Devicons npm downloads/month" src="https://img.shields.io/npm/dm/devicon?color=%2360be86&style=for-the-badge">
</a>
</p>
<br />
<div align="center">
@@ -156,7 +162,7 @@ Add the following CSS rules in your stylesheet:
<h4>You can also use the <code>img</code> tag and reference an SVG directly from the repository:</h4>
```html
<img src='https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/devicon/devicon-original.svg'>
<img src='https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/devicon/devicon-original.svg' />
```
<h2 id="request-icon">Requesting an icon</h2>
@@ -264,6 +270,7 @@ https://www.python.org/downloads/
> Make sure your Python install includes [pip](https://pypi.org/project/pip/)
<h3>Install Selenium</h3>
```bash
python3 -m pip install --upgrade pip && pip install selenium==4.1.0 requests==2.25.1
```

File diff suppressed because it is too large Load Diff

View File

@@ -1482,6 +1482,30 @@
"color": "#AB710A",
"aliases": []
},
{
"name": "chakraui",
"altnames": [
"chakra ui"
],
"tags": [
"ui",
"library"
],
"versions": {
"svg": [
"original",
"plain",
"original-wordmark",
"plain-wordmark"
],
"font": [
"plain",
"plain-wordmark"
]
},
"color": "#52c8c5",
"aliases": []
},
{
"name": "chrome",
"altnames": [
@@ -1858,24 +1882,21 @@
"versions": {
"svg": [
"original",
"original-wordmark"
"original-wordmark",
"plain",
"plain-wordmark",
"line",
"line-wordmark"
],
"font": [
"original",
"original-wordmark"
"plain",
"plain-wordmark",
"line",
"line-wordmark"
]
},
"color": "#205081",
"aliases": [
{
"base": "original",
"alias": "plain"
},
{
"base": "original-wordmark",
"alias": "plain-wordmark"
}
]
"color": "#136be6",
"aliases": []
},
{
"name": "consul",
@@ -3156,15 +3177,21 @@
],
"versions": {
"svg": [
"original",
"original-wordmark",
"plain",
"plain-wordmark"
"plain-wordmark",
"line",
"line-wordmark"
],
"font": [
"plain",
"plain-wordmark"
"plain-wordmark",
"line",
"line-wordmark"
]
},
"color": "#b30000",
"color": "#bb0001",
"aliases": []
},
{
@@ -3178,15 +3205,21 @@
],
"versions": {
"svg": [
"original",
"original-wordmark",
"plain",
"plain-wordmark"
"plain-wordmark",
"line",
"line-wordmark"
],
"font": [
"plain",
"plain-wordmark"
"plain-wordmark",
"line",
"line-wordmark"
]
},
"color": "#f58220",
"color": "#ffa000",
"aliases": []
},
{
@@ -3514,12 +3547,18 @@
],
"versions": {
"svg": [
"original",
"original-wordmark",
"plain",
"plain-wordmark"
"plain-wordmark",
"line",
"line-wordmark"
],
"font": [
"plain",
"plain-wordmark",
"plain"
"line",
"line-wordmark"
]
},
"color": "#9991d9",
@@ -3932,24 +3971,21 @@
"versions": {
"svg": [
"original",
"original-wordmark"
"original-wordmark",
"plain",
"plain-wordmark",
"line",
"line-wordmark"
],
"font": [
"original",
"original-wordmark"
"plain",
"plain-wordmark",
"line",
"line-wordmark"
]
},
"color": "#E78040",
"aliases": [
{
"base": "original",
"alias": "plain"
},
{
"base": "original-wordmark",
"alias": "plain-wordmark"
}
]
"color": "#f7a525",
"aliases": []
},
{
"name": "grails",
@@ -4204,10 +4240,12 @@
"versions": {
"svg": [
"original",
"original-wordmark"
"original-wordmark",
"plain-wordmark"
],
"font": [
"original"
"original",
"plain-wordmark"
]
},
"color": "#00A580",
@@ -4215,10 +4253,6 @@
{
"base": "original",
"alias": "plain"
},
{
"base": "original-wordmark",
"alias": "plain-wordmark"
}
]
},
@@ -5043,11 +5077,17 @@
"versions": {
"svg": [
"original",
"original-wordmark"
"original-wordmark",
"plain",
"plain-wordmark",
"line",
"line-wordmark"
],
"font": [
"original",
"original-wordmark"
"plain",
"plain-wordmark",
"line",
"line-wordmark"
]
},
"color": "#dc514a",
@@ -5089,22 +5129,23 @@
"versions": {
"svg": [
"original",
"original-wordmark"
"original-wordmark",
"plain-wordmark",
"line",
"line-wordmark"
],
"font": [
"original",
"original-wordmark"
"plain-wordmark",
"line",
"line-wordmark"
]
},
"color": "#FD824E",
"color": "#fd824e",
"aliases": [
{
"base": "original",
"alias": "plain"
},
{
"base": "original-wordmark",
"alias": "plain-wordmark"
}
]
},
@@ -5434,15 +5475,21 @@
],
"versions": {
"svg": [
"original",
"original-wordmark",
"plain",
"plain-wordmark"
"plain-wordmark",
"line",
"line-wordmark"
],
"font": [
"plain",
"plain-wordmark"
"plain-wordmark",
"line",
"line-wordmark"
]
},
"color": "#486bb3",
"color": "#326ce5",
"aliases": []
},
{
@@ -5663,6 +5710,25 @@
"color": "#5A90B6",
"aliases": []
},
{
"name": "lodash",
"altnames": [],
"tags": [
"javascript",
"framework"
],
"versions": {
"svg": [
"original",
"plain"
],
"font": [
"plain"
]
},
"color": "#000",
"aliases": []
},
{
"name": "logstash",
"altnames": [],
@@ -5767,16 +5833,24 @@
"svg": [
"original",
"original-wordmark",
"line"
"plain-wordmark",
"line",
"line-wordmark"
],
"font": [
"original",
"original-wordmark",
"line"
"plain-wordmark",
"line",
"line-wordmark"
]
},
"color": "#f26322",
"aliases": []
"aliases": [
{
"base": "original",
"alias": "plain"
}
]
},
{
"name": "mariadb",
@@ -6008,22 +6082,32 @@
{
"name": "microsoftsqlserver",
"altnames": [
"msql"
"msql",
"mssql",
"Microsoft SQL Server"
],
"tags": [
"database"
"database",
"sql",
"db"
],
"versions": {
"svg": [
"original",
"original-wordmark",
"plain",
"plain-wordmark"
"plain-wordmark",
"line",
"line-wordmark"
],
"font": [
"plain",
"plain-wordmark"
"plain-wordmark",
"line",
"line-wordmark"
]
},
"color": "#909DAA",
"color": "#ee352c",
"aliases": []
},
{
@@ -6354,7 +6438,6 @@
"plain-wordmark",
"line",
"line-wordmark"
],
"font": [
"plain",
@@ -6459,23 +6542,20 @@
"versions": {
"svg": [
"original",
"line",
"original-wordmark"
],
"font": [
"original",
"original-wordmark",
"plain",
"line",
"line-wordmark"
],
"font": [
"original-wordmark",
"plain-wordmark"
"plain",
"line",
"line-wordmark"
]
},
"color": "#000000",
"color": "#000",
"aliases": [
{
"base": "original",
"alias": "plain"
},
{
"base": "original-wordmark",
"alias": "plain-wordmark"
@@ -6646,14 +6726,18 @@
"original",
"original-wordmark",
"plain",
"plain-wordmark"
"plain-wordmark",
"line",
"line-wordmark"
],
"font": [
"plain",
"plain-wordmark"
"plain-wordmark",
"line",
"line-wordmark"
]
},
"color": "#83CD29",
"color": "#5fa04e",
"aliases": []
},
{
@@ -7502,6 +7586,7 @@
],
"versions": {
"svg": [
"original",
"plain",
"line"
],
@@ -7510,7 +7595,7 @@
"line"
]
},
"color": "#80b5e2",
"color": "#001e36",
"aliases": []
},
{
@@ -7938,10 +8023,10 @@
"line-wordmark"
],
"font": [
"original",
"plain-wordmark",
"line",
"line-wordmark"
"original",
"plain-wordmark",
"line",
"line-wordmark"
]
},
"color": "#e75225",
@@ -7964,15 +8049,21 @@
],
"versions": {
"svg": [
"original",
"original-wordmark",
"plain",
"plain-wordmark"
"plain-wordmark",
"line",
"line-wordmark"
],
"font": [
"plain",
"plain-wordmark"
"plain-wordmark",
"line",
"line-wordmark"
]
},
"color": "#b7111d",
"color": "#d51c2f",
"aliases": []
},
{
@@ -8498,10 +8589,14 @@
"svg": [
"original",
"original-wordmark",
"plain",
"plain-wordmark",
"line",
"line-wordmark"
],
"font": [
"plain",
"plain-wordmark",
"line",
"line-wordmark"
]
@@ -8843,18 +8938,23 @@
],
"versions": {
"svg": [
"plain"
"original",
"plain",
"line"
],
"font": [
"plain"
"plain",
"line"
]
},
"color": "#f5be17",
"color": "#ffbe00",
"aliases": []
},
{
"name": "rockylinux",
"altnames": ["rocky"],
"altnames": [
"rocky"
],
"tags": [
"os",
"open-source",
@@ -9469,10 +9569,14 @@
"svg": [
"original",
"original-wordmark",
"plain",
"plain-wordmark",
"line",
"line-wordmark"
],
"font": [
"plain",
"plain-wordmark",
"line",
"line-wordmark"
]
@@ -9769,20 +9873,16 @@
"svg": [
"original",
"original-wordmark",
"plain"
"plain",
"plain-wordmark"
],
"font": [
"plain",
"original-wordmark"
"plain-wordmark"
]
},
"color": "#333333",
"aliases": [
{
"base": "original-wordmark",
"alias": "plain-wordmark"
}
]
"aliases": []
},
{
"name": "sqldeveloper",
@@ -9991,10 +10091,12 @@
"versions": {
"svg": [
"original",
"original-wordmark"
"original-wordmark",
"plain-wordmark"
],
"font": [
"original"
"original",
"plain-wordmark"
]
},
"color": "#809cc8",
@@ -10487,15 +10589,21 @@
],
"versions": {
"svg": [
"original",
"original-wordmark",
"plain",
"plain-wordmark"
"plain-wordmark",
"line",
"line-wordmark"
],
"font": [
"plain",
"plain-wordmark"
"plain-wordmark",
"line",
"line-wordmark"
]
},
"color": "#bb2031",
"color": "#2d3136",
"aliases": []
},
{
@@ -10509,15 +10617,21 @@
],
"versions": {
"svg": [
"original",
"original-wordmark",
"plain",
"plain-wordmark"
"plain-wordmark",
"line",
"line-wordmark"
],
"font": [
"plain",
"plain-wordmark"
"plain-wordmark",
"line",
"line-wordmark"
]
},
"color": "#23719f",
"color": "#0052cc",
"aliases": []
},
{
@@ -10926,14 +11040,20 @@
"versions": {
"svg": [
"original",
"original-wordmark"
"original-wordmark",
"plain",
"plain-wordmark",
"line",
"line-wordmark"
],
"font": [
"original",
"original-wordmark"
"plain",
"plain-wordmark",
"line",
"line-wordmark"
]
},
"color": "#623c94",
"color": "#782a91",
"aliases": []
},
{
@@ -10956,6 +11076,29 @@
"color": "#179a33",
"aliases": []
},
{
"name": "visualbasic",
"altnames": [
"vb"
],
"tags": [
"programming",
"language"
],
"versions": {
"svg": [
"original",
"plain",
"line"
],
"font": [
"plain",
"line"
]
},
"color": "#004e8c",
"aliases": []
},
{
"name": "visualstudio",
"altnames": [
@@ -10966,15 +11109,16 @@
],
"versions": {
"svg": [
"original",
"plain",
"plain-wordmark"
"line"
],
"font": [
"plain",
"plain-wordmark"
"line"
]
},
"color": "#68217A",
"color": "#52218a",
"aliases": []
},
{
@@ -11112,24 +11256,21 @@
"versions": {
"svg": [
"original",
"original-wordmark"
"original-wordmark",
"plain",
"plain-wordmark",
"line",
"line-wordmark"
],
"font": [
"original",
"original-wordmark"
"plain",
"plain-wordmark",
"line",
"line-wordmark"
]
},
"color": "#0091DA",
"aliases": [
{
"base": "original",
"alias": "plain"
},
{
"base": "original-wordmark",
"alias": "plain-wordmark"
}
]
"color": "#0091da",
"aliases": []
},
{
"name": "vuejs",
@@ -11509,6 +11650,7 @@
],
"versions": {
"svg": [
"original",
"plain",
"line"
],
@@ -11517,7 +11659,7 @@
"line"
]
},
"color": "#DD80BC",
"color": "#470137",
"aliases": []
},
{
@@ -11697,16 +11839,29 @@
],
"versions": {
"svg": [
"plain",
"plain-wordmark"
"original",
"original-wordmark",
"line",
"line-wordmark"
],
"font": [
"plain",
"plain-wordmark"
"original",
"original-wordmark",
"line",
"line-wordmark"
]
},
"color": "#68b604",
"aliases": []
"aliases": [
{
"base": "original",
"alias": "plain"
},
{
"base": "original-wordmark",
"alias": "plain-wordmark"
}
]
},
{
"name": "zig",

2
devicon.min.css vendored

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 1.8 MiB

After

Width:  |  Height:  |  Size: 5.2 MiB

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="prefix__a" x1="64" x2="64" y1="0" y2="128" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.25859 0 0 .25859 0 47.45)"><stop offset="0" stop-color="#7acbd4"/><stop offset="1" stop-color="#29c6b7"/></linearGradient></defs><path d="M58.382 52.674v22.192h3.556V66.1c.061-1.9 1.134-3.372 3.096-3.372 2.238 0 3.065 1.471 3.065 3.31v8.828h3.556v-9.44c0-3.28-1.778-5.917-5.456-5.917-1.564 0-3.25.552-4.261 1.87v-8.705zm31.463 0v22.192h3.525v-4.168l1.84-1.931 4.383 6.1h4.352l-6.253-8.614 6.13-6.314h-4.72l-5.732 6.038V52.674zm-40.352 6.805c-4.292 0-7.633 3.31-7.633 7.908 0 4.537 3.341 7.94 7.725 7.94 3.923 0 6.16-2.545 6.866-4.875l-3.127-1.134c-.337 1.134-1.41 2.759-3.74 2.759-2.237 0-4.168-1.686-4.168-4.69 0-3.004 1.931-4.628 4.107-4.628 2.269 0 3.28 1.471 3.617 2.789l3.188-1.165c-.613-2.39-2.82-4.904-6.835-4.904zm30.935 0c-3.678 0-6.008 2.299-6.284 4.873l3.25.736c.153-1.502 1.195-2.697 3.065-2.697 1.961 0 2.82 1.011 2.82 2.268 0 .521-.245.95-1.104 1.073l-3.831.582c-2.544.368-4.506 1.84-4.506 4.506 0 2.36 1.93 4.506 5.057 4.506 2.422 0 3.893-1.226 4.598-2.36 0 1.195.123 1.808.154 1.9h3.31c-.03-.153-.184-1.042-.184-2.39v-7.419c0-2.973-1.747-5.578-6.345-5.578zm41.043 0c-3.678 0-6.008 2.299-6.284 4.873l3.25.736c.153-1.502 1.195-2.697 3.065-2.697 1.961 0 2.82 1.011 2.82 2.268 0 .521-.246.95-1.104 1.073l-3.831.582c-2.545.368-4.506 1.84-4.506 4.506 0 2.36 1.93 4.506 5.057 4.506 2.422 0 3.893-1.226 4.598-2.36 0 1.195.123 1.808.153 1.9H128c-.03-.153-.184-1.042-.184-2.39v-7.419c0-2.973-1.747-5.578-6.345-5.578zm-8.393.276c-1.962 0-3.617.95-4.322 2.574v-2.39h-3.464v14.927h3.556v-7.11c0-2.79 1.257-4.384 4.016-4.384.367 0 .766.03 1.164.092v-3.617a5.087 5.087 0 00-.95-.092zM83.278 68v.674c0 2.912-1.716 3.863-3.708 3.863-1.41 0-2.177-.92-2.177-1.931 0-1.227.89-1.84 1.993-2.023zm41.044 0v.674c0 2.912-1.717 3.863-3.71 3.863-1.41 0-2.175-.92-2.175-1.931 0-1.227.888-1.84 1.992-2.023z" fill="#374152"/><circle cx="16.55" cy="64" r="16.55" fill="url(#prefix__a)"/><path fill="#fff" d="M24.194 62.42a.236.236 0 00-.174-.398h-7.245c-.443 0-.37-.238-.212-.528.157-.292 4.165-7.602 4.165-7.602a.28.28 0 00.029-.122.28.28 0 00-.476-.199L8.921 64.892a.248.248 0 00.17.43h7.75c.487 0 .314.279.195.442-.12.162-5.987 8.274-5.987 8.274a.292.292 0 00.233.468c.08 0 .153-.03.204-.082.052-.052 12.705-11.994 12.705-11.994l.003-.002.005-.005z"/></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" x1="64" x2="64" y1="0" y2="128" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#7acbd4"/><stop offset="1" stop-color="#29c6b7"/></linearGradient></defs><circle cx="64" cy="64" r="64" fill="url(#a)"/><path fill="#fff" d="M93.56 57.89a.913.913 0 0 0-.67-1.54H64.87c-1.71 0-1.43-.92-.82-2.04.61-1.13 16.11-29.4 16.11-29.4.07-.15.11-.3.11-.47a1.082 1.082 0 0 0-1.84-.77S34.5 67.45 34.5 67.45c-.19.18-.3.42-.3.7 0 .53.43.96.96.96h29.97c1.88 0 1.21 1.08.75 1.71-.46.63-23.15 32-23.15 32a1.129 1.129 0 0 0 .9 1.81c.31 0 .59-.12.79-.32s49.13-46.38 49.13-46.38l.01-.01.02-.02Z"/></svg>

After

Width:  |  Height:  |  Size: 681 B

View File

@@ -0,0 +1 @@
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="M16.549 47.451A16.55 16.55 0 000 64a16.55 16.55 0 0016.549 16.549A16.55 16.55 0 0033.099 64a16.55 16.55 0 00-16.55-16.549zm41.834 5.223v22.193h3.554V66.1c.062-1.9 1.134-3.371 3.096-3.371 2.238 0 3.067 1.47 3.067 3.31v8.828h3.554v-9.441c0-3.28-1.777-5.916-5.455-5.916-1.563 0-3.25.55-4.261 1.869v-8.705h-3.555zm31.463 0v22.193h3.525v-4.17l1.838-1.931 4.383 6.101h4.353l-6.254-8.613 6.131-6.315h-4.72l-5.73 6.038V52.674h-3.526zm-69.367.816a.28.28 0 01.279.28.287.287 0 01-.03.123s-4.008 7.309-4.166 7.601c-.157.29-.229.527.213.527h7.245a.236.236 0 01.173.399l.006.002-.006.006-.002.002S11.538 74.372 11.486 74.424a.288.288 0 01-.205.082.292.292 0 01-.232-.467l5.986-8.275c.12-.163.293-.442-.193-.442h-7.75a.25.25 0 01-.17-.43l11.36-11.322a.28.28 0 01.197-.08zm29.013 5.989c-4.291 0-7.63 3.31-7.63 7.908 0 4.536 3.339 7.94 7.722 7.94 3.923 0 6.162-2.544 6.867-4.874l-3.127-1.135c-.337 1.134-1.41 2.758-3.74 2.758-2.238 0-4.168-1.685-4.168-4.69 0-3.003 1.931-4.628 4.107-4.628 2.269 0 3.28 1.473 3.618 2.79l3.187-1.165c-.613-2.391-2.82-4.904-6.836-4.904zm30.936 0c-3.679 0-6.008 2.298-6.283 4.873l3.248.736c.153-1.502 1.196-2.697 3.066-2.697 1.962 0 2.82 1.01 2.82 2.267 0 .521-.245.952-1.103 1.074l-3.832.582c-2.544.368-4.506 1.84-4.506 4.506 0 2.36 1.93 4.506 5.057 4.506 2.421 0 3.894-1.225 4.6-2.36 0 1.196.12 1.81.151 1.901h3.311c-.03-.153-.184-1.044-.184-2.392v-7.418c0-2.974-1.747-5.578-6.345-5.578zm41.043 0c-3.679 0-6.008 2.298-6.284 4.873l3.249.736c.153-1.502 1.196-2.697 3.066-2.697 1.962 0 2.82 1.01 2.82 2.267 0 .521-.245.952-1.103 1.074l-3.832.582c-2.544.368-4.506 1.84-4.506 4.506 0 2.36 1.932 4.506 5.058 4.506 2.422 0 3.893-1.225 4.598-2.36 0 1.196.122 1.81.152 1.901H128c-.03-.153-.184-1.044-.184-2.392v-7.418c0-2.974-1.747-5.578-6.345-5.578zm-8.393.275c-1.962 0-3.617.952-4.322 2.576v-2.39h-3.463v14.927h3.555v-7.111c0-2.79 1.257-4.385 4.015-4.385.368 0 .766.03 1.164.092v-3.615a5.036 5.036 0 00-.949-.094zM83.28 68v.674c0 2.912-1.716 3.863-3.709 3.863-1.41 0-2.177-.92-2.177-1.932 0-1.226.89-1.84 1.994-2.023L83.279 68zm41.043 0v.674c0 2.912-1.716 3.863-3.709 3.863-1.41 0-2.177-.92-2.177-1.932 0-1.226.89-1.84 1.994-2.023l3.892-.582z"/></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M64 0C28.65 0 0 28.65 0 64s28.65 64 64 64 64-28.65 64-64S99.35 0 64 0Zm29.56 57.9-.02.02-.01.01-49.13 46.38c-.2.2-.48.32-.79.32a1.129 1.129 0 0 1-.9-1.81s22.69-31.38 23.15-32c.46-.63 1.13-1.71-.75-1.71H35.14a.96.96 0 0 1-.96-.96c0-.27.12-.52.3-.69s43.94-43.77 43.94-43.77a1.082 1.082 0 0 1 1.84.77c0 .17-.04.32-.11.46s-15.5 28.27-16.11 29.4c-.61 1.13-.89 2.04.82 2.04h28.02a.913.913 0 0 1 .67 1.54Z"/></svg>

After

Width:  |  Height:  |  Size: 479 B

BIN
icons/chakraui/chakraui.eps Normal file

Binary file not shown.

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#136be6" d="M96.971 2.649a4.49 4.49 0 0 0-3.664 2.17l-.004.008-.004.006a176.272 176.272 0 0 1-3.826 6.51l-.002.002c-5.138 8.47-10.2 12.11-16.306 12.622-6.107.513-13.38-2.17-22.759-6.672h-.002L24.31 5.013l-.004-.002c-2.345-1.07-4.943.006-6.018 2.148l-.005.011-12.46 28.2c-1.096 2.195-.026 4.96 2.142 6.041l.007.004.01.006c5.548 2.491 16.483 7.673 26.063 12.466l.006.002.003.002c17.798 8.472 34.301 12.498 49.292 9.663 14.924-2.823 28.282-12.48 39.803-31.11h.01l.146-.23a329.925 329.925 0 0 0 4.037-6.535h.002c1.285-2.143.635-4.951-1.512-6.245l-.004-.002L99.549 3.306l-.002-.002a4.609 4.609 0 0 0-2.576-.655Zm.043.992a3.609 3.609 0 0 1 2.021.516l26.278 16.124h.002c1.684 1.012 2.19 3.193 1.174 4.886h.002a329.05 329.05 0 0 1-3.881 6.285h-.004l-.146.236C111.004 50.321 97.852 59.8 83.161 62.578c-14.689 2.779-30.983-1.16-48.672-9.58l-.01-.003C24.896 48.2 13.98 43.027 8.407 40.524l-.004-.004c-1.666-.834-2.516-3.059-1.692-4.708l.006-.01 12.46-28.198c.849-1.694 2.848-2.543 4.718-1.69L49.98 18.193c9.416 4.52 16.813 7.306 23.268 6.764 6.455-.543 11.847-4.485 17.07-13.094l.002-.002a177.156 177.156 0 0 0 3.835-6.529 3.485 3.485 0 0 1 2.859-1.69ZM53.246 63.48c-18.472.425-34.828 9.995-48.55 32.308v.002c0 .002-.003.003-.004.004a329.966 329.966 0 0 0-4.035 6.53H.655v.002c-1.281 2.143-.635 4.951 1.516 6.244l26.278 16.126.002.002c2.143 1.286 4.948.634 6.24-1.515l.004-.006.004-.008a183.88 183.88 0 0 1 3.825-6.51v-.002h.002c5.138-8.47 10.2-12.11 16.307-12.623 6.107-.513 13.382 2.171 22.76 6.673h.002l26.094 12.281.004.002c2.345 1.07 4.948-.005 6.017-2.149l.006-.01 12.466-28.2c1.09-2.194.024-4.955-2.148-6.04l-.008-.005-.01-.006c-5.548-2.49-16.48-7.672-26.064-12.465l-.002-.002-.004-.002c-14.458-6.961-28.06-10.922-40.7-10.631Zm.023.992c12.416-.286 25.875 3.615 40.247 10.535 9.59 4.795 20.5 9.968 26.076 12.471l.004.004c1.673.84 2.517 3.058 1.698 4.708l-.006.01-12.468 28.203c-.844 1.689-2.845 2.535-4.711 1.686l-.006-.002-26.08-12.275-.004-.002c-9.416-4.52-16.812-7.306-23.268-6.764-6.456.543-11.85 4.485-17.074 13.096a184.83 184.83 0 0 0-3.835 6.529c-1.013 1.684-3.187 2.19-4.88 1.174L2.684 107.721h-.002C1 106.709.495 104.528 1.506 102.835l.002-.002a330.226 330.226 0 0 1 4.025-6.514l.002-.002.002-.003C19.142 74.186 35.123 64.89 53.27 64.472Z"/></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="confluence-original-wordmark-a" gradientUnits="userSpaceOnUse" x1="26.791" y1="28.467" x2="11.792" y2="19.855" gradientTransform="translate(5.976 -3.222) scale(3.6229)"><stop offset="0" stop-color="#0052cc"/><stop offset=".918" stop-color="#2380fb"/><stop offset="1" stop-color="#2684ff"/></linearGradient><linearGradient id="confluence-original-wordmark-b" gradientUnits="userSpaceOnUse" x1="5.209" y1="2.523" x2="20.208" y2="11.136" gradientTransform="translate(5.976 -3.222) scale(3.6229)"><stop offset="0" stop-color="#0052cc"/><stop offset=".918" stop-color="#2380fb"/><stop offset="1" stop-color="#2684ff"/></linearGradient></defs><path d="M23.629 74.875a229.944 229.944 0 00-2.758 4.469c-.785 1.312-.394 3.023.922 3.812l17.988 11.035c1.313.79 3.02.395 3.809-.918a118.23 118.23 0 012.625-4.468c7.09-11.696 14.312-10.38 27.183-4.207l17.86 8.41c1.441.66 3.02 0 3.676-1.313l8.535-19.316c.656-1.313 0-3.02-1.313-3.68-3.808-1.707-11.293-5.254-17.86-8.539-24.292-11.695-44.91-10.906-60.667 14.715zm0 0" fill="url(#confluence-original-wordmark-a)"/><path d="M104.258 30.988a230.06 230.06 0 002.758-4.465c.785-1.316.39-3.023-.922-3.812L88.105 11.67c-1.312-.784-3.02-.39-3.808.923a121.42 121.42 0 01-2.625 4.469c-7.094 11.69-14.313 10.378-27.184 4.203l-17.86-8.41c-1.44-.657-3.019 0-3.675 1.316l-8.535 19.312c-.656 1.317 0 3.024 1.312 3.68 3.81 1.711 11.293 5.258 17.86 8.543C67.883 57.27 88.5 56.613 104.258 30.988zm0 0" fill="url(#confluence-original-wordmark-b)"/><path d="M14.953 117.824c-1.078.719-2.785 1.016-4.582 1.016-5.695 0-8.902-3.406-8.902-8.88 0-5.26 3.207-8.937 8.87-8.937 1.68 0 3.388.329 4.614 1.196v2.3c-1.226-.777-2.605-1.195-4.613-1.195-4.078 0-6.473 2.692-6.473 6.668 0 3.977 2.516 6.606 6.621 6.606 1.828 0 3.239-.418 4.496-1.043v2.27zm0 0M16.602 111.996c0-3.95 2.308-6.816 6.265-6.816 3.926 0 6.235 2.867 6.235 6.816 0 3.945-2.309 6.875-6.235 6.875-3.926-.031-6.265-2.93-6.265-6.875zm2.218 0c0 2.512 1.23 4.754 4.078 4.754 2.786 0 4.016-2.273 4.016-4.754 0-2.484-1.2-4.726-4.016-4.726-2.847 0-4.078 2.214-4.078 4.726zm0 0M42.95 118.602h-2.278v-7.954c0-2.359-.961-3.406-3.117-3.406-2.102 0-3.567 1.406-3.567 4.067v7.324h-2.281v-13.156h2.281v2.152c.836-1.555 2.395-2.422 4.164-2.422 3.028 0 4.766 2.094 4.766 5.711v7.684zm0 0M52.688 105.45v2.09H49.27v11.062h-2.215v-11.063h-2.13v-2.09h2.13v-1.437c0-2.45 1.379-4.094 4.195-4.094.688 0 1.137.117 1.527.207v2.094c-.39-.09-.898-.121-1.437-.121-1.41 0-2.098.808-2.098 2.004v1.347zm0 0M58.652 118.66c-2.156 0-3.535-1.015-3.535-3.437V99.945h2.278v15.008c0 1.2.777 1.617 1.77 1.617.237 0 .386 0 .655-.03v2.034c-.207.059-.597.086-1.168.086zm0 0M61.738 105.45h2.278v7.948c0 2.364.96 3.41 3.117 3.41 2.097 0 3.566-1.406 3.566-4.066v-7.293h2.281v13.153H70.7v-2.153c-.84 1.555-2.4 2.422-4.165 2.422-3.027 0-4.765-2.094-4.765-5.71v-7.712zm0 0M82.688 118.84c-4.946 0-7.102-2.84-7.102-6.875 0-3.977 2.219-6.817 6.234-6.817 4.075 0 5.696 2.813 5.696 6.817v1.015h-9.621c.328 2.243 1.765 3.68 4.882 3.68 1.532 0 2.82-.3 4.02-.719v2.094c-1.11.598-2.79.805-4.11.805zm-4.856-7.774h7.375c-.121-2.449-1.23-3.824-3.508-3.824-2.398 0-3.625 1.524-3.867 3.824zm0 0M101.39 118.602h-2.277v-7.954c0-2.359-.96-3.406-3.117-3.406-2.098 0-3.566 1.406-3.566 4.067v7.324h-2.278v-13.156h2.278v2.152c.84-1.555 2.398-2.422 4.164-2.422 3.027 0 4.765 2.094 4.765 5.711v7.684zm0 0M113.887 118.242c-.778.418-2.008.598-3.207.598-4.703 0-6.89-2.84-6.89-6.875 0-3.977 2.187-6.817 6.89-6.817 1.199 0 2.097.149 3.148.63v2.093c-.84-.39-1.738-.629-2.969-.629-3.414 0-4.824 2.153-4.824 4.723s1.442 4.722 4.887 4.722c1.348 0 2.187-.18 2.996-.476v2.031zm0 0M122.758 118.84c-4.942 0-7.102-2.84-7.102-6.875 0-3.977 2.219-6.817 6.235-6.817 4.074 0 5.695 2.813 5.695 6.817v1.015h-9.621c.328 2.243 1.77 3.68 4.887 3.68 1.527 0 2.816-.3 4.015-.719v2.094c-1.11.598-2.758.805-4.11.805zm-4.824-7.774h7.375c-.121-2.449-1.23-3.824-3.508-3.824-2.426 0-3.625 1.524-3.867 3.824zm0 0" fill="#253858"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" x1="26.791" x2="11.792" y1="28.467" y2="19.855" gradientTransform="translate(4.574 -5.311) scale(3.677)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0052cc"/><stop offset=".918" stop-color="#2380fb"/><stop offset="1" stop-color="#2684ff"/></linearGradient><linearGradient id="b" x1="5.209" x2="20.208" y1="2.523" y2="11.136" gradientTransform="translate(4.574 -5.311) scale(3.677)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0052cc"/><stop offset=".918" stop-color="#2380fb"/><stop offset="1" stop-color="#2684ff"/></linearGradient></defs><path fill="url(#a)" d="M22.49 73.952a233.377 233.377 0 0 0-2.798 4.535c-.797 1.332-.4 3.068.935 3.87l18.257 11.199c1.333.802 3.065.4 3.866-.932a119.995 119.995 0 0 1 2.664-4.534c7.196-11.871 14.526-10.535 27.589-4.27l18.127 8.535c1.462.67 3.065 0 3.73-1.332l8.663-19.605c.666-1.332 0-3.065-1.333-3.735-3.865-1.732-11.461-5.332-18.126-8.666-24.655-11.87-45.58-11.069-61.573 14.935Zm0 0"/><path fill="url(#b)" d="M104.324 29.41a233.495 233.495 0 0 0 2.799-4.532c.797-1.336.396-3.068-.936-3.87L87.93 9.804c-1.332-.796-3.066-.396-3.865.937a123.233 123.233 0 0 1-2.665 4.535c-7.2 11.865-14.526 10.533-27.59 4.266l-18.126-8.535c-1.462-.667-3.064 0-3.73 1.335l-8.662 19.6c-.666 1.337 0 3.07 1.331 3.736 3.867 1.736 11.462 5.336 18.127 8.67 24.656 11.737 45.58 11.07 61.574-14.938Zm0 0"/><path fill="#253858" d="M13.685 117.542c-1.094.73-2.826 1.031-4.65 1.031-5.78 0-9.035-3.457-9.035-9.013 0-5.338 3.255-9.07 9.002-9.07 1.706 0 3.439.334 4.683 1.214v2.334c-1.244-.788-2.644-1.213-4.682-1.213-4.138 0-6.57 2.733-6.57 6.768 0 4.036 2.554 6.705 6.72 6.705 1.856 0 3.288-.425 4.564-1.059v2.304zm1.674-5.915c0-4.01 2.342-6.918 6.358-6.918 3.985 0 6.329 2.91 6.329 6.918 0 4.004-2.344 6.978-6.329 6.978-3.984-.032-6.358-2.974-6.358-6.978zm2.251 0c0 2.55 1.248 4.825 4.139 4.825 2.828 0 4.076-2.307 4.076-4.825 0-2.521-1.218-4.797-4.076-4.797-2.89 0-4.139 2.247-4.139 4.797zm24.49 6.704h-2.312v-8.072c0-2.394-.975-3.457-3.163-3.457-2.134 0-3.62 1.427-3.62 4.128v7.433h-2.316V105.01h2.316v2.184c.848-1.579 2.43-2.459 4.226-2.459 3.073 0 4.837 2.126 4.837 5.797v7.798zm9.884-13.348v2.121h-3.47v11.227h-2.247v-11.228h-2.162v-2.12h2.162v-1.46c0-2.486 1.4-4.154 4.257-4.154.699 0 1.154.118 1.55.21v2.125c-.396-.091-.911-.123-1.458-.123-1.431 0-2.13.82-2.13 2.034v1.367zm6.053 13.407c-2.188 0-3.588-1.03-3.588-3.488V99.396h2.312v15.232c0 1.218.789 1.641 1.796 1.641.241 0 .392 0 .665-.03v2.064c-.21.06-.606.087-1.185.087zm3.132-13.407h2.312v8.067c0 2.4.974 3.46 3.163 3.46 2.129 0 3.62-1.426 3.62-4.126v-7.402h2.315v13.35h-2.314v-2.186c-.853 1.579-2.436 2.459-4.228 2.459-3.072 0-4.836-2.126-4.836-5.796v-7.827zm21.263 13.59c-5.02 0-7.208-2.882-7.208-6.978 0-4.036 2.252-6.918 6.327-6.918 4.136 0 5.78 2.855 5.78 6.918v1.03h-9.764c.333 2.277 1.791 3.735 4.955 3.735 1.555 0 2.862-.304 4.08-.73v2.126c-1.127.607-2.832.817-4.171.817zm-4.929-7.89h7.485c-.123-2.486-1.248-3.881-3.56-3.881-2.434 0-3.68 1.547-3.925 3.881zm23.91 7.648h-2.311v-8.072c0-2.394-.974-3.457-3.164-3.457-2.129 0-3.619 1.427-3.619 4.128v7.433h-2.312V105.01h2.312v2.184c.853-1.579 2.434-2.459 4.226-2.459 3.072 0 4.836 2.126 4.836 5.797v7.798zm12.683-.365c-.79.424-2.038.607-3.254.607-4.774 0-6.993-2.882-6.993-6.978 0-4.036 2.22-6.918 6.993-6.918 1.216 0 2.128.15 3.195.639v2.124c-.853-.396-1.764-.638-3.014-.638-3.465 0-4.896 2.185-4.896 4.793 0 2.609 1.464 4.793 4.96 4.793 1.368 0 2.22-.183 3.04-.483v2.061zm9.004.607c-5.016 0-7.208-2.882-7.208-6.978 0-4.036 2.252-6.918 6.328-6.918 4.135 0 5.78 2.855 5.78 6.918v1.03h-9.765c.333 2.277 1.797 3.735 4.96 3.735 1.55 0 2.858-.304 4.075-.73v2.126c-1.126.607-2.799.817-4.171.817zm-4.896-7.89h7.485c-.123-2.486-1.248-3.881-3.56-3.881-2.463 0-3.68 1.547-3.925 3.881zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="confluence-original-a" gradientUnits="userSpaceOnUse" x1="26.791" y1="28.467" x2="11.792" y2="19.855" gradientTransform="scale(4)"><stop offset="0" stop-color="#0052cc"/><stop offset=".918" stop-color="#2380fb"/><stop offset="1" stop-color="#2684ff"/></linearGradient><linearGradient id="confluence-original-b" gradientUnits="userSpaceOnUse" x1="5.209" y1="2.523" x2="20.208" y2="11.136" gradientTransform="scale(4)"><stop offset="0" stop-color="#0052cc"/><stop offset=".918" stop-color="#2380fb"/><stop offset="1" stop-color="#2684ff"/></linearGradient></defs><path d="M19.492 86.227a249.047 249.047 0 00-3.047 4.933c-.867 1.45-.433 3.336 1.016 4.207l19.863 12.188c1.45.87 3.332.433 4.203-1.016a139.349 139.349 0 012.899-4.934c7.832-12.91 15.804-11.46 30.011-4.64l19.72 9.281c1.593.727 3.335 0 4.058-1.45l9.426-21.323c.722-1.453 0-3.336-1.454-4.063-4.203-1.887-12.464-5.805-19.714-9.43-26.82-12.914-49.586-12.043-66.98 16.247zm0 0" fill="url(#confluence-original-a)"/><path d="M108.508 37.773a249.047 249.047 0 003.047-4.933c.87-1.45.433-3.336-1.016-4.207L90.676 16.445c-1.45-.87-3.332-.433-4.203 1.016a133.55 133.55 0 01-2.899 4.934c-7.832 12.91-15.804 11.46-30.011 4.64l-19.72-9.281c-1.593-.727-3.331 0-4.058 1.45l-9.422 21.323c-.726 1.453 0 3.34 1.45 4.063 4.203 1.887 12.468 5.805 19.714 9.43 26.825 12.77 49.586 12.042 66.98-16.247zm0 0" fill="url(#confluence-original-b)"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" x1="26.791" x2="11.792" y1="28.467" y2="19.855" gradientTransform="translate(-21.334 -18.666) scale(5.33331)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0052cc"/><stop offset=".918" stop-color="#2380fb"/><stop offset="1" stop-color="#2684ff"/></linearGradient><linearGradient id="b" x1="5.209" x2="20.208" y1="2.523" y2="11.136" gradientTransform="translate(-21.334 -18.666) scale(5.33331)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0052cc"/><stop offset=".918" stop-color="#2380fb"/><stop offset="1" stop-color="#2684ff"/></linearGradient></defs><path fill="url(#a)" d="M4.655 96.303a332.061 332.061 0 0 0-4.062 6.577c-1.156 1.933-.578 4.448 1.354 5.61l26.484 16.25c1.934 1.16 4.443.577 5.604-1.355a185.798 185.798 0 0 1 3.866-6.579c10.442-17.213 21.071-15.28 40.014-6.186l26.293 12.374c2.124.97 4.447 0 5.41-1.933l12.569-28.43c.963-1.938 0-4.448-1.939-5.418-5.604-2.516-16.618-7.74-26.285-12.573-35.76-17.219-66.114-16.057-89.306 21.663Zm0 0"/><path fill="url(#b)" d="M123.343 31.697a332.061 332.061 0 0 0 4.063-6.577c1.16-1.933.577-4.448-1.355-5.61L99.567 3.26c-1.933-1.16-4.443-.577-5.604 1.355a178.066 178.066 0 0 1-3.865 6.579c-10.443 17.213-21.072 15.28-40.015 6.186L23.79 5.006c-2.124-.97-4.441 0-5.41 1.933L5.816 35.369c-.968 1.938 0 4.454 1.933 5.418 5.604 2.516 16.624 7.74 26.285 12.573 35.767 17.027 66.115 16.056 89.307-21.663zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#136be6" d="M86.332 9.398a2.772 2.772 0 0 0-2.268 1.342 123.233 123.233 0 0 1-2.664 4.535c-7.2 11.865-14.526 10.533-27.59 4.266l-18.126-8.535c-1.462-.667-3.065 0-3.73 1.336l-8.663 19.6c-.666 1.336 0 3.068 1.332 3.734 3.867 1.736 11.462 5.338 18.127 8.672 24.656 11.736 45.581 11.07 61.574-14.938a233.495 233.495 0 0 0 2.8-4.533c.796-1.336.395-3.068-.936-3.87L87.93 9.804a2.863 2.863 0 0 0-1.598-.405zM55.943 51.664c-12.721.293-23.957 6.848-33.453 22.287a233.377 233.377 0 0 0-2.799 4.537c-.796 1.332-.4 3.067.936 3.867l18.258 11.202c1.332.801 3.064.4 3.865-.932a119.995 119.995 0 0 1 2.664-4.535c7.196-11.87 14.527-10.535 27.59-4.27l18.125 8.535c1.462.67 3.067.001 3.732-1.332l8.662-19.605c.666-1.333-.001-3.065-1.334-3.734-3.864-1.733-11.46-5.332-18.125-8.666-10.016-4.822-19.416-7.554-28.12-7.354zm-5.42 47.705c-2.858 0-4.255 1.668-4.255 4.154v1.46h-2.163v2.12h2.163v11.229h2.248v-11.228h3.468v-2.122h-3.498v-1.367c0-1.214.698-2.033 2.13-2.033.546 0 1.062.03 1.458.121v-2.125c-.396-.091-.852-.209-1.55-.209zm3.926.027v15.506c0 2.459 1.4 3.489 3.588 3.489.58 0 .976-.028 1.186-.088v-2.065c-.273.03-.426.032-.666.032-1.008 0-1.795-.423-1.795-1.641V99.396h-2.313zM9.002 100.49c-5.748 0-9.002 3.732-9.002 9.07 0 5.556 3.255 9.012 9.035 9.012 1.824 0 3.556-.301 4.65-1.031l.032.002v-2.305c-1.276.635-2.707 1.059-4.563 1.059-4.166 0-6.72-2.667-6.72-6.703 0-4.036 2.431-6.768 6.57-6.768 2.038 0 3.437.424 4.682 1.213v-2.336c-1.245-.88-2.979-1.213-4.684-1.213zm72.549 4.186c-4.075 0-6.328 2.883-6.328 6.92 0 4.094 2.19 6.975 7.209 6.976 1.34 0 3.044-.21 4.17-.816v-2.125c-1.218.425-2.526.73-4.08.73-3.164 0-4.623-1.46-4.956-3.736h9.766v-1.03c0-4.063-1.645-6.92-5.781-6.92zm29.29 0c-4.772 0-6.991 2.883-6.991 6.92 0 4.095 2.219 6.976 6.992 6.976 1.217 0 2.464-.181 3.254-.605h.033v-2.063c-.821.3-1.673.485-3.041.485-3.497 0-4.961-2.185-4.961-4.793 0-2.609 1.431-4.793 4.896-4.793 1.25 0 2.162.24 3.014.636v-2.123c-1.067-.488-1.978-.64-3.195-.64zm11.38 0c-4.076 0-6.328 2.883-6.328 6.92 0 4.095 2.19 6.976 7.207 6.976 1.372 0 3.043-.21 4.17-.816v-2.125c-1.217.425-2.525.73-4.075.73-3.163 0-4.628-1.46-4.96-3.736H128v-1.03c0-4.063-1.644-6.92-5.78-6.92zm-100.504.033c-4.016 0-6.358 2.909-6.358 6.918 0 4.004 2.373 6.947 6.358 6.978 3.984 0 6.328-2.974 6.328-6.978 0-4.008-2.344-6.918-6.328-6.918zm15.513.027c-1.795 0-3.378.881-4.226 2.46v-2.186h-2.315v13.353h2.315v-7.433c0-2.701 1.488-4.127 3.621-4.127 2.188 0 3.164 1.06 3.164 3.455v8.074h2.28v-7.799c0-3.67-1.765-5.797-4.839-5.797zm59.315 0c-1.792 0-3.374.881-4.227 2.46v-2.186h-2.31v13.353h2.31v-7.433c0-2.701 1.49-4.127 3.62-4.127 2.189 0 3.164 1.06 3.164 3.455v8.074h2.279v-7.799c0-3.67-1.764-5.797-4.836-5.797zm-35.344.246v7.827c0 3.67 1.764 5.796 4.836 5.796 1.791 0 3.376-.88 4.229-2.459v2.186h2.312v-13.35h-2.314v7.403c0 2.7-1.491 4.125-3.62 4.125-2.189 0-3.164-1.062-3.164-3.461v-8.067h-2.279zm20.227 1.82c2.312 0 3.437 1.396 3.56 3.882h-7.484c.246-2.335 1.49-3.881 3.924-3.881zm40.7 0c2.313 0 3.439 1.396 3.561 3.882h-7.486c.246-2.335 1.464-3.881 3.926-3.881zm-100.38.028c2.858 0 4.076 2.276 4.076 4.797 0 2.518-1.248 4.824-4.076 4.824-2.89 0-4.139-2.275-4.139-4.824 0-2.55 1.25-4.797 4.139-4.797z"/></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#136be6" d="M97.25 2.67a4.02 4.02 0 0 0-3.287 1.945 178.066 178.066 0 0 1-3.865 6.578c-10.443 17.214-21.071 15.281-40.014 6.188L23.789 5.006c-2.124-.97-4.44 0-5.41 1.933L5.816 35.37c-.968 1.937 0 4.454 1.934 5.418 5.604 2.516 16.624 7.74 26.285 12.572 35.767 17.027 66.115 16.057 89.307-21.662h.002a332.061 332.061 0 0 0 4.062-6.576c1.16-1.933.577-4.448-1.355-5.61L99.566 3.26a4.14 4.14 0 0 0-2.316-.59zM53.174 63.975c-18.453.424-34.748 9.932-48.518 32.328a332.061 332.061 0 0 0-4.064 6.576c-1.156 1.933-.577 4.448 1.355 5.61l26.485 16.251c1.933 1.16 4.442.577 5.603-1.355a185.798 185.798 0 0 1 3.865-6.578c10.443-17.214 21.073-15.281 40.016-6.188l26.293 12.375c2.124.97 4.446 0 5.41-1.933l12.569-28.43c.962-1.937-.001-4.449-1.94-5.418-5.604-2.516-16.618-7.74-26.285-12.572-14.528-6.995-28.164-10.957-40.79-10.666z"/></svg>

After

Width:  |  Height:  |  Size: 898 B

Binary file not shown.

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 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 128 128"><defs><linearGradient id="a" x1="187.947" x2="187.947" y1="123.859" y2="258.865" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#bf0000"/><stop offset="1" stop-color="#8f0000"/></linearGradient><linearGradient xlink:href="#a" id="b" x1="187.947" x2="187.947" y1="123.859" y2="258.865" gradientTransform="matrix(.73244 0 0 .73242 -73.663 -75.173)" gradientUnits="userSpaceOnUse"/></defs><path fill="url(#b)" d="M0 4.286v5.65a4.29 4.29 0 0 1 4.286 4.286A4.29 4.29 0 0 1 0 18.508v5.65a4.29 4.29 0 0 1 4.286 4.285A4.29 4.29 0 0 1 0 32.729v5.65a4.291 4.291 0 0 1 4.286 4.288A4.291 4.291 0 0 1 0 46.955v5.65a4.29 4.29 0 0 1 4.286 4.285A4.29 4.29 0 0 1 0 61.176v5.65a4.29 4.29 0 0 1 4.286 4.285A4.29 4.29 0 0 1 0 75.398v5.65a4.29 4.29 0 0 1 4.286 4.285A4.29 4.29 0 0 1 0 89.619v5.65a4.29 4.29 0 0 1 4.286 4.285A4.29 4.29 0 0 1 0 103.84v5.65a4.29 4.29 0 0 1 4.286 4.285A4.29 4.29 0 0 1 0 118.062v5.653a4.31 4.31 0 0 1 3.03 1.255A4.315 4.315 0 0 1 4.287 128h5.65a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 18.507 128h5.651a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 32.729 128h5.65a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 46.951 128h5.65a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 61.173 128h5.65a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 75.395 128h5.65a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 89.616 128h5.651a4.29 4.29 0 0 1 4.286-4.285 4.29 4.29 0 0 1 4.285 4.285h5.651a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 118.06 128h5.654a4.31 4.31 0 0 1 1.256-3.03 4.31 4.31 0 0 1 3.03-1.255v-5.65a4.29 4.29 0 0 1-4.286-4.287 4.29 4.29 0 0 1 4.286-4.284v-5.65a4.29 4.29 0 0 1-4.286-4.287A4.29 4.29 0 0 1 128 95.272v-5.65a4.29 4.29 0 0 1-4.286-4.286A4.29 4.29 0 0 1 128 81.05V75.4a4.29 4.29 0 0 1-4.286-4.287A4.29 4.29 0 0 1 128 66.83v-5.65a4.29 4.29 0 0 1-4.286-4.287A4.29 4.29 0 0 1 128 52.608v-5.65a4.291 4.291 0 0 1-4.286-4.288A4.291 4.291 0 0 1 128 38.383v-5.651a4.29 4.29 0 0 1-4.286-4.286A4.29 4.29 0 0 1 128 24.16v-5.65a4.29 4.29 0 0 1-4.286-4.286A4.29 4.29 0 0 1 128 9.94V4.286a4.315 4.315 0 0 1-3.03-1.254A4.316 4.316 0 0 1 123.714 0h-5.651a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 109.492 0h-5.65a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 95.27 0h-5.65a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 81.048 0h-5.65a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 66.826 0h-5.65a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 52.605 0h-5.651a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 38.383 0h-5.65a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 24.16 0h-5.65a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 9.939 0H4.286A4.321 4.321 0 0 1 3.03 3.032 4.32 4.32 0 0 1 0 4.286Z"/><path fill="#fff" d="M109.04 51.217H45.167l3.334-15.596h38.93L91 18.836H35.047l-17.62 83.096h16.906l7.737-36.31h40.549l-35.234 34.88 6.19 10.952c2.857-1.904 7.5-2.143 10.714-2.143 5.716 0 11.31 1.906 17.142 1.906 5.348 0 10.822-.357 19.752-4.643l3.12-14.643c-6.072 2.5-15.057 4.881-22.872 4.881-3.212 0-6.189-.714-9.284-1.19l34.154-33.214z"/></svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="filezilla-plain-a" gradientUnits="userSpaceOnUse" x1="63.997" y1="15.543" x2="63.997" y2="114.424"><stop offset="0" stop-color="#BF0000"/><stop offset="1" stop-color="#8F0000"/></linearGradient></defs><path d="M4.285 0c0 1.129-.457 2.234-1.254 3.031S1.129 4.285 0 4.285v5.652a4.29 4.29 0 014.285 4.285A4.29 4.29 0 010 18.508v5.648c2.363 0 4.285 1.926 4.285 4.285S2.363 32.73 0 32.73v5.648a4.29 4.29 0 014.285 4.289A4.29 4.29 0 010 46.953v5.652a4.29 4.29 0 014.285 4.285A4.29 4.29 0 010 61.176v5.652a4.286 4.286 0 014.285 4.281A4.29 4.29 0 010 75.398v5.648a4.29 4.29 0 014.285 4.283A4.29 4.29 0 010 89.617v5.652a4.29 4.29 0 014.285 4.285A4.29 4.29 0 010 103.84v5.652a4.29 4.29 0 014.285 4.285A4.29 4.29 0 010 118.063v5.652c1.129 0 2.234.457 3.031 1.254s1.254 1.902 1.254 3.031h5.652a4.29 4.29 0 014.285-4.285A4.29 4.29 0 0118.508 128h5.648a4.293 4.293 0 014.289-4.285A4.29 4.29 0 0132.73 128h5.648a4.29 4.29 0 014.283-4.285A4.29 4.29 0 0146.949 128h5.652a4.29 4.29 0 014.285-4.285A4.29 4.29 0 0161.172 128h5.652a4.29 4.29 0 014.285-4.285A4.29 4.29 0 0175.395 128h5.652a4.29 4.29 0 014.285-4.285A4.29 4.29 0 0189.617 128h5.648a4.293 4.293 0 014.289-4.285A4.29 4.29 0 01103.84 128h5.646a4.29 4.29 0 014.285-4.285 4.29 4.29 0 014.285 4.285h5.656c0-1.129.457-2.234 1.254-3.031s1.902-1.254 3.031-1.254v-5.648a4.293 4.293 0 01-4.285-4.289 4.29 4.29 0 014.285-4.285v-5.646a4.29 4.29 0 01-4.285-4.285A4.29 4.29 0 01128 95.273v-5.652a4.29 4.29 0 01-4.285-4.285A4.29 4.29 0 01128 81.051v-5.652a4.29 4.29 0 01-4.285-4.285A4.29 4.29 0 01128 66.828V61.18a4.29 4.29 0 01-4.285-4.285A4.29 4.29 0 01128 52.609v-5.652a4.29 4.29 0 01-4.285-4.285A4.29 4.29 0 01128 38.383V32.73a4.29 4.29 0 01-4.285-4.285A4.29 4.29 0 01128 24.16v-5.648a4.293 4.293 0 01-4.285-4.289A4.29 4.29 0 01128 9.941V4.285c-1.129 0-2.234-.457-3.031-1.254S123.715 1.129 123.715 0h-5.652a4.29 4.29 0 01-4.285 4.285A4.29 4.29 0 01109.492 0h-5.652a4.29 4.29 0 01-4.285 4.285A4.29 4.29 0 0195.27 0h-5.648a4.29 4.29 0 01-4.283 4.285A4.3 4.3 0 0181.047 0h-5.648a4.29 4.29 0 01-4.285 4.285A4.29 4.29 0 0166.828 0h-5.652a4.29 4.29 0 01-4.285 4.285A4.29 4.29 0 0152.605 0h-5.652a4.29 4.29 0 01-4.285 4.285A4.29 4.29 0 0138.383 0H32.73a4.29 4.29 0 01-4.285 4.285A4.29 4.29 0 0124.16 0h-5.648c0 2.363-1.926 4.285-4.285 4.285S9.938 2.363 9.938 0H4.285zm30.762 18.836H91l-3.57 16.785H48.5l-3.332 15.594h63.871l-2.738 11.189-34.152 33.215c3.094.476 6.07 1.191 9.281 1.191 7.816 0 16.801-2.383 22.875-4.883l-3.121 14.645c-8.93 4.286-14.406 4.646-19.754 4.646-5.828 0-11.426-1.906-17.141-1.906-3.215 0-7.856.239-10.715 2.141l-6.191-10.949 35.234-34.883H42.07l-7.738 36.309H17.43l17.617-83.094z" fill="url(#filezilla-plain-a)"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#bb0001" d="M4.285 0a4.32 4.32 0 0 1-1.254 3.031A4.323 4.323 0 0 1 0 4.287v5.65a4.289 4.289 0 0 1 4.285 4.284A4.291 4.291 0 0 1 0 18.508v5.65a4.29 4.29 0 0 1 4.285 4.285A4.29 4.29 0 0 1 0 32.73v5.65a4.292 4.292 0 0 1 4.285 4.289A4.29 4.29 0 0 1 0 46.955v5.65a4.29 4.29 0 0 1 4.285 4.286A4.29 4.29 0 0 1 0 61.176v5.65a4.29 4.29 0 0 1 4.285 4.285A4.291 4.291 0 0 1 0 75.398v5.65a4.288 4.288 0 0 1 4.285 4.284A4.291 4.291 0 0 1 0 89.619v5.65a4.29 4.29 0 0 1 4.285 4.286A4.29 4.29 0 0 1 0 103.84v5.65a4.29 4.29 0 0 1 4.285 4.285A4.291 4.291 0 0 1 0 118.062v5.653c1.128 0 2.233.457 3.031 1.256A4.313 4.313 0 0 1 4.285 128h5.65a4.291 4.291 0 0 1 4.288-4.285A4.29 4.29 0 0 1 18.508 128h5.65a4.29 4.29 0 0 1 4.285-4.285A4.29 4.29 0 0 1 32.73 128h5.652a4.29 4.29 0 0 1 4.285-4.285A4.29 4.29 0 0 1 46.951 128h5.65a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 61.172 128h5.652a4.29 4.29 0 0 1 4.285-4.285A4.29 4.29 0 0 1 75.395 128h5.65a4.29 4.29 0 0 1 4.285-4.285A4.291 4.291 0 0 1 89.617 128h5.65a4.29 4.29 0 0 1 4.286-4.285 4.29 4.29 0 0 1 4.285 4.285h5.65a4.291 4.291 0 0 1 4.287-4.285 4.29 4.29 0 0 1 4.286 4.285h5.652a4.31 4.31 0 0 1 1.258-3.03 4.308 4.308 0 0 1 3.029-1.255v-5.65a4.29 4.29 0 0 1-4.287-4.286 4.29 4.29 0 0 1 4.287-4.285v-5.65a4.292 4.292 0 0 1-4.287-4.287A4.29 4.29 0 0 1 128 95.27v-5.65a4.29 4.29 0 0 1-4.287-4.285A4.29 4.29 0 0 1 128 81.05V75.4a4.29 4.29 0 0 1-4.287-4.286A4.29 4.29 0 0 1 128 66.83v-5.65a4.292 4.292 0 0 1-4.287-4.287A4.29 4.29 0 0 1 128 52.607v-5.65a4.291 4.291 0 0 1-4.287-4.287A4.292 4.292 0 0 1 128 38.383v-5.65a4.292 4.292 0 0 1-4.287-4.288A4.29 4.29 0 0 1 128 24.162V18.51a4.29 4.29 0 0 1-4.287-4.285A4.292 4.292 0 0 1 128 9.939V4.287a4.315 4.315 0 0 1-3.03-1.256A4.317 4.317 0 0 1 123.714 0h-5.65a4.291 4.291 0 0 1-4.286 4.287A4.291 4.291 0 0 1 109.492 0h-5.65a4.293 4.293 0 0 1-4.287 4.287A4.291 4.291 0 0 1 95.27 0h-5.65a4.291 4.291 0 0 1-4.286 4.287A4.291 4.291 0 0 1 81.049 0h-5.65a4.293 4.293 0 0 1-4.288 4.287A4.291 4.291 0 0 1 66.826 0h-5.65a4.291 4.291 0 0 1-4.285 4.287A4.291 4.291 0 0 1 52.605 0h-5.652a4.291 4.291 0 0 1-4.285 4.287A4.291 4.291 0 0 1 38.383 0h-5.65a4.291 4.291 0 0 1-4.286 4.287A4.293 4.293 0 0 1 24.16 0h-5.65a4.291 4.291 0 0 1-4.285 4.287A4.291 4.291 0 0 1 9.939 0H4.285zm30.762 18.836h55.955L87.43 35.62H48.5l-3.332 15.596h63.871l-2.738 11.191L72.146 95.62c3.096.476 6.073 1.192 9.286 1.192 7.814 0 16.798-2.382 22.87-4.881l-3.118 14.642c-8.93 4.286-14.405 4.643-19.752 4.643-5.832 0-11.428-1.906-17.143-1.906-3.215 0-7.858.24-10.715 2.144l-6.19-10.953 35.235-34.88H42.07l-7.736 36.31H17.428l17.619-83.096z"/></svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.8 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#ffa000" d="M35.377 0a2.425 2.425 0 0 0-.383.035 2.423 2.423 0 0 0-1.989 2.014L18.062 97.667l.928.309 9.836-18.723 24.995-47.591L37.5 1.215l-.057-.054.09.12a2.422 2.422 0 0 0-2.156-1.28Zm.01.992a1.422 1.422 0 0 1 1.272.756l.035.066.001.002L52.7 31.668 27.947 78.792l-8.443 16.07 14.482-92.66a1.415 1.415 0 0 1 1.174-1.188 1.429 1.429 0 0 1 .227-.022zm28.165 17.16c-.898 0-1.725.498-2.143 1.294v.002l-6.98 13.29-.007-.014L20.16 97.95l.79.58 10.67-10.682 34.195-34.255L77.489 41.9 65.697 19.449v-.002a2.422 2.422 0 0 0-2.144-1.293zm0 .993c.535 0 1.018.292 1.266.764L76.27 41.713 65.111 52.89 30.916 87.145l-8.356 8.371 31.897-60.724.007.013 7.823-14.896a1.42 1.42 0 0 1 1.265-.764zm31.431 7.227v.072c-.045.008-.093.003-.137.014a2.418 2.418 0 0 0-1.138.641h-.002L79.001 41.83 66.537 54.317l-49.08 49.163 41.979 23.543h.048a8.27 8.27 0 0 0 7.917-.064v.002l41.54-23.097.975-.487L97.803 28.41v-.004h-.002a2.424 2.424 0 0 0-1.65-1.898 2.437 2.437 0 0 0-.654-.116zm.48 1.012c.126.005.257.026.387.068.515.165.884.593.975 1.124h.002l11.993 74.22-41.901 23.296a7.289 7.289 0 0 1-7.111 0l-.112-.062h-.002l-40.61-22.775L67.24 55.018l12.462-12.487 14.705-14.73a1.423 1.423 0 0 1 .672-.378 1.402 1.402 0 0 1 .382-.039z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#fff" d="M26.994 127.655h-2.032v-15.766h9.231v1.937h-7.199v5.176h6.495v1.892h-6.495zm11.022-13.497a1.442 1.442 0 0 1-1.818.182 1.432 1.432 0 0 1-.533-1.742 1.44 1.44 0 0 1 2.77.547 1.374 1.374 0 0 1-.42 1.013zm0 13.497h-2.033v-10.79h2.033zm4.46 0h-2.03v-10.79h1.942v1.762h.088a2.767 2.767 0 0 1 1.27-1.454 3.642 3.642 0 0 1 1.867-.573 3.884 3.884 0 0 1 1.524.266l-.773 1.892a3.082 3.082 0 0 0-1.082-.155 2.66 2.66 0 0 0-1.957.872c-.567.58-.85 1.34-.85 2.28zm10.226.344c-1.635 0-2.963-.543-3.986-1.63-1.023-1.085-1.535-2.458-1.536-4.118a5.93 5.93 0 0 1 1.494-4.042 4.838 4.838 0 0 1 3.81-1.696c1.605 0 2.89.521 3.855 1.563.965 1.043 1.447 2.438 1.446 4.184l-.022.375h-8.55c.058 1.086.423 1.946 1.094 2.58a3.32 3.32 0 0 0 2.352.947c1.457 0 2.444-.617 2.96-1.85l1.81.749a4.84 4.84 0 0 1-1.744 2.102c-.81.557-1.805.836-2.983.836zm2.916-7.053c-.044-.617-.327-1.204-.85-1.762-.524-.557-1.3-.83-2.33-.819a2.92 2.92 0 0 0-1.955.706 3.597 3.597 0 0 0-1.137 1.892zm9.52 7.053a4.61 4.61 0 0 1-2.22-.516 3.746 3.746 0 0 1-1.474-1.325h-.088v1.497h-1.938v-15.766h2.026v4.976l-.088 1.497h.088a3.746 3.746 0 0 1 1.468-1.321 4.612 4.612 0 0 1 2.22-.528c1.398 0 2.606.55 3.623 1.651 1.017 1.101 1.525 2.466 1.523 4.096 0 1.63-.508 2.995-1.523 4.096-1.016 1.101-2.222 1.649-3.617 1.643zm-.331-1.85a3.238 3.238 0 0 0 2.43-1.068c.677-.712 1.016-1.655 1.016-2.83 0-1.174-.34-2.117-1.017-2.83a3.32 3.32 0 0 0-2.432-1.067 3.32 3.32 0 0 0-2.437 1.057c-.67.705-1.006 1.651-1.005 2.84.001 1.19.336 2.137 1.005 2.84a3.242 3.242 0 0 0 2.44 1.067zM75.452 128c-1.15 0-2.111-.33-2.882-.99-.77-.662-1.157-1.535-1.16-2.62 0-1.175.457-2.096 1.37-2.764.914-.667 2.04-1 3.38-1 1.192 0 2.17.22 2.933.66v-.308a2.405 2.405 0 0 0-.818-1.905 2.939 2.939 0 0 0-2.005-.707 3.11 3.11 0 0 0-1.602.419 2.159 2.159 0 0 0-.983 1.145l-1.855-.793c.25-.645.744-1.244 1.48-1.794s1.709-.826 2.916-.826c1.381 0 2.531.402 3.452 1.204.92.803 1.377 1.94 1.37 3.413v6.522h-1.952v-1.497h-.088c-.81 1.227-1.995 1.84-3.556 1.84zm.331-1.85a3.314 3.314 0 0 0 2.286-.935 2.9 2.9 0 0 0 1.036-2.212c-.575-.47-1.438-.706-2.589-.706-.987 0-1.73.213-2.23.638a1.914 1.914 0 0 0-.751 1.497c-.01.511.253.989.69 1.256a2.736 2.736 0 0 0 1.558.471zM87.025 128c-1.208 0-2.205-.294-2.992-.88a5.213 5.213 0 0 1-1.726-2.203l1.812-.748c.575 1.35 1.553 2.026 2.934 2.026a2.688 2.688 0 0 0 1.553-.418 1.28 1.28 0 0 0 .607-1.1c0-.705-.493-1.182-1.48-1.432l-2.187-.528a5.208 5.208 0 0 1-1.965-1.001 2.405 2.405 0 0 1-.927-1.992c0-.954.424-1.729 1.27-2.323a5.112 5.112 0 0 1 3.015-.89 5.039 5.039 0 0 1 2.56.651 3.667 3.667 0 0 1 1.612 1.862l-1.767.719c-.398-.954-1.223-1.432-2.474-1.432a2.893 2.893 0 0 0-1.524.375 1.14 1.14 0 0 0-.618 1.014c0 .617.479 1.035 1.436 1.255l2.143.508c1.016.23 1.767.63 2.254 1.204a2.92 2.92 0 0 1 .735 1.95 2.999 2.999 0 0 1-1.208 2.423c-.79.64-1.811.96-3.063.96zm10.933 0c-1.634 0-2.963-.543-3.986-1.63-1.023-1.085-1.534-2.458-1.536-4.118a5.931 5.931 0 0 1 1.491-4.05 4.838 4.838 0 0 1 3.81-1.697c1.605 0 2.89.521 3.855 1.564.965 1.042 1.447 2.437 1.446 4.184l-.022.375h-8.547c.059 1.086.424 1.946 1.094 2.58a3.32 3.32 0 0 0 2.352.946c1.458 0 2.444-.616 2.96-1.85l1.81.754a4.84 4.84 0 0 1-1.745 2.102c-.81.56-1.804.84-2.982.84zm2.916-7.053c-.043-.617-.327-1.204-.85-1.762-.524-.557-1.3-.83-2.33-.819a2.92 2.92 0 0 0-1.955.706 3.597 3.597 0 0 0-1.137 1.892z"/><path fill="#ffa000" d="M30.916 72.85 42.029 1.736a2.053 2.053 0 0 1 3.838-.652L57.36 22.521l4.581-8.723a2.053 2.053 0 0 1 3.633 0L96.592 72.85Z"/><path fill="#f57c00" d="M69.31 45.148 57.356 22.51l-26.44 50.34Z"/><path fill="#ffca28" d="m96.592 72.85-8.513-52.674a2.055 2.055 0 0 0-1.399-1.613 2.05 2.05 0 0 0-2.074.504L30.916 72.85l29.708 16.66a6.157 6.157 0 0 0 6.003 0z"/><path fill="#fff" fill-opacity=".2" d="M88.08 20.176a2.055 2.055 0 0 0-1.4-1.612 2.05 2.05 0 0 0-2.074.503L73.949 29.75l-8.38-15.953a2.053 2.053 0 0 0-3.632 0l-4.581 8.722L45.862 1.083A2.053 2.053 0 0 0 43.706.03a2.05 2.05 0 0 0-1.682 1.71L30.916 72.85h-.036l.035.042.293.144L84.59 19.59a2.053 2.053 0 0 1 3.479 1.108L96.51 72.9l.082-.051-8.512-52.675ZM31.012 72.753l11.016-70.51A2.053 2.053 0 0 1 43.71.532a2.054 2.054 0 0 1 2.157 1.054L57.36 23.024l4.582-8.723a2.053 2.053 0 0 1 3.633 0l8.21 15.614z"/><path fill="#a52714" d="M66.627 89.007a6.157 6.157 0 0 1-6.003 0L30.986 72.395l-.072.456 29.709 16.655a6.157 6.157 0 0 0 6.003 0l29.966-16.655-.078-.472-29.888 16.63Z" opacity=".2"/></svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#ffa000" d="M17.474 103.276 33.229 2.462a2.91 2.91 0 0 1 5.44-.924l16.294 30.39 6.494-12.366a2.91 2.91 0 0 1 5.15 0l43.97 83.714H17.474Z"/><path fill="#f57c00" d="M71.903 64.005 54.955 31.913l-37.481 71.363Z"/><path fill="#ffca28" d="M110.577 103.276 98.51 28.604a2.913 2.913 0 0 0-1.984-2.286 2.906 2.906 0 0 0-2.94.714l-76.112 76.243 42.115 23.618a8.728 8.728 0 0 0 8.51 0l42.478-23.618Z"/><path fill="#fff" fill-opacity=".2" d="M98.51 28.604a2.913 2.913 0 0 0-1.984-2.286 2.906 2.906 0 0 0-2.94.713L78.479 42.178 66.6 19.562a2.91 2.91 0 0 0-5.15 0l-6.494 12.365L38.662 1.538A2.91 2.91 0 0 0 35.605.044a2.907 2.907 0 0 0-2.384 2.425L17.474 103.276h-.051l.05.058.415.204 75.676-75.764a2.91 2.91 0 0 1 4.932 1.571l11.965 74.003.116-.073L98.51 28.603Zm-80.898 74.534L33.228 3.182A2.91 2.91 0 0 1 35.613.756a2.911 2.911 0 0 1 3.057 1.495l16.292 30.39 6.495-12.366a2.91 2.91 0 0 1 5.15 0L78.245 42.41 17.61 103.138Z"/><path fill="#a52714" d="M68.099 126.18a8.728 8.728 0 0 1-8.51 0l-42.015-23.55-.102.647 42.115 23.61a8.728 8.728 0 0 0 8.51 0l42.48-23.61-.11-.67-42.37 23.575z" opacity=".2"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g fill="#f58220"><path d="M11.4 115.62H8.25v-24.4H22.5v3.01H11.4v8.02h10.04v2.93H11.42v10.44h-.02zM27.92 94.74c-.43.43-.96.64-1.57.64-.61 0-1.15-.21-1.57-.64-.43-.43-.64-.96-.64-1.57s.21-1.15.64-1.57c.43-.43.96-.64 1.57-.64.61 0 1.15.21 1.57.64s.64.96.64 1.57-.22 1.11-.64 1.57zm0 20.88h-3.14v-16.7h3.14v16.7zM34.47 115.62h-3.14v-16.7h3.01v2.72h.13c.32-.91.96-1.65 1.97-2.24.99-.59 1.95-.88 2.88-.88s1.71.13 2.34.4l-1.2 2.93c-.4-.16-.96-.24-1.68-.24-1.15 0-2.13.45-3.01 1.36-.88.91-1.31 2.08-1.31 3.52v9.13zM49.23 116.18c-2.53 0-4.58-.85-6.15-2.53s-2.37-3.81-2.37-6.37c0-2.42.77-4.53 2.29-6.29 1.55-1.76 3.49-2.64 5.89-2.64 2.48 0 4.45.8 5.94 2.42 1.49 1.63 2.24 3.78 2.24 6.47l-.03.59H43.85c.08 1.68.67 3.01 1.68 4 1.04.99 2.24 1.47 3.62 1.47 2.24 0 3.78-.96 4.58-2.88l2.8 1.17c-.53 1.31-1.44 2.37-2.69 3.25-1.25.89-2.8 1.34-4.61 1.34zm4.51-10.92c-.08-.96-.51-1.87-1.31-2.72-.8-.85-2-1.31-3.6-1.31-1.17 0-2.16.37-3.01 1.09-.85.72-1.44 1.71-1.76 2.93l9.68.01zM68.1 116.18c-1.28 0-2.42-.27-3.44-.83-1.01-.53-1.76-1.23-2.26-2.05h-.13v2.32h-3.01v-24.4h3.14v7.7l-.13 2.32h.13c.51-.83 1.25-1.49 2.26-2.05 1.01-.53 2.16-.83 3.44-.83 2.16 0 4.02.85 5.6 2.56 1.57 1.71 2.34 3.81 2.34 6.34s-.77 4.64-2.34 6.34c-1.58 1.73-3.44 2.58-5.6 2.58zm-.54-2.87c1.47 0 2.72-.56 3.76-1.65 1.04-1.09 1.57-2.56 1.57-4.37s-.53-3.28-1.57-4.37c-1.04-1.09-2.29-1.65-3.76-1.65s-2.74.53-3.76 1.63c-1.01 1.09-1.55 2.56-1.55 4.4 0 1.84.51 3.3 1.55 4.4 1.05 1.07 2.3 1.61 3.76 1.61zM83.84 116.18c-1.79 0-3.25-.51-4.45-1.55-1.2-1.01-1.79-2.37-1.79-4.05 0-1.81.69-3.25 2.1-4.29 1.41-1.04 3.14-1.55 5.22-1.55 1.84 0 3.36.35 4.53 1.01v-.48c0-1.23-.43-2.21-1.25-2.96-.85-.75-1.87-1.12-3.09-1.12-.91 0-1.73.21-2.48.64-.75.43-1.25 1.01-1.52 1.79l-2.88-1.23c.4-1.01 1.15-1.92 2.29-2.77 1.15-.85 2.64-1.28 4.5-1.28 2.13 0 3.92.61 5.33 1.87 1.41 1.25 2.1 3.01 2.1 5.28v10.12h-3.01v-2.32h-.13c-1.23 1.93-3.07 2.89-5.47 2.89zm.51-2.87c1.31 0 2.48-.48 3.52-1.44 1.07-.96 1.6-2.1 1.6-3.44-.88-.72-2.21-1.09-4-1.09-1.52 0-2.66.32-3.44.99-.77.67-1.17 1.44-1.17 2.32 0 .83.35 1.47 1.07 1.95.71.47 1.51.71 2.42.71zM101.19 116.18c-1.87 0-3.41-.45-4.61-1.36a7.894 7.894 0 01-2.66-3.41l2.8-1.17c.88 2.1 2.4 3.14 4.53 3.14.99 0 1.79-.21 2.4-.64.61-.43.93-1.01.93-1.71 0-1.09-.77-1.84-2.29-2.21L98.9 108c-1.07-.27-2.08-.8-3.04-1.55-.96-.77-1.44-1.79-1.44-3.09 0-1.47.67-2.66 1.97-3.6 1.31-.93 2.85-1.39 4.66-1.39 1.47 0 2.8.35 3.94 1.01 1.17.67 2 1.63 2.48 2.88l-2.72 1.12c-.61-1.47-1.89-2.21-3.81-2.21-.93 0-1.71.19-2.34.59-.64.4-.96.91-.96 1.57 0 .96.75 1.6 2.21 1.95l3.3.77c1.57.37 2.72.99 3.49 1.87.75.88 1.12 1.89 1.12 3.01 0 1.49-.61 2.74-1.84 3.76-1.21 1.01-2.79 1.49-4.73 1.49zM117.58 116.18c-2.53 0-4.58-.85-6.15-2.53-1.57-1.68-2.37-3.81-2.37-6.37 0-2.42.77-4.53 2.29-6.29 1.55-1.76 3.49-2.64 5.89-2.64 2.48 0 4.45.8 5.94 2.42 1.49 1.63 2.24 3.78 2.24 6.47l-.03.59H112.2c.08 1.68.67 3.01 1.68 4 1.04.99 2.24 1.47 3.62 1.47 2.24 0 3.78-.96 4.58-2.88l2.8 1.17c-.53 1.31-1.44 2.37-2.69 3.25-1.26.89-2.8 1.34-4.61 1.34zm4.5-10.92c-.08-.96-.51-1.87-1.31-2.72-.8-.85-2-1.31-3.6-1.31-1.17 0-2.16.37-3.01 1.09-.85.72-1.44 1.71-1.76 2.93l9.68.01zM39.25 59.42l7.69-49.28c.27-1.68 2.52-2.08 3.31-.57l8.26 15.47-19.26 34.38zm54.67 11.97L86.58 26c-.22-1.41-1.99-1.99-3.01-.97L37.35 71.39l25.59 14.36c1.59.88 3.58.88 5.17 0l25.81-14.36zM73.14 31.8l-5.92-11.27c-.66-1.28-2.47-1.28-3.14 0l-26.03 46.4L73.14 31.8z"/></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#ffa000" d="M43.043 0a1.369 1.369 0 0 0-.216.02A1.363 1.363 0 0 0 41.7 1.157L31.08 69.129l6.99-13.308 17.682-33.665L44.263.725 44.26.724A1.365 1.365 0 0 0 43.043 0Zm20.024 12.905c-.509 0-.973.279-1.21.73l-5.262 10.019-.005-.01L32.536 69.44l7.583-7.595 24.307-24.351 8.114-8.129-8.26-15.73a1.367 1.367 0 0 0-1.213-.73zm22.697 5.855a1.345 1.345 0 0 0-.367.038 1.367 1.367 0 0 0-.644.363L74.298 29.632l-8.858 8.875-34.56 34.62L60.234 89.59h.001a5.535 5.535 0 0 0 5.399 0l30.001-16.681-8.567-53.013v.005a1.366 1.366 0 0 0-.933-1.074 1.38 1.38 0 0 0-.371-.066zm10.537 54.598-.424.035.177.103zm-59.278 38.353a1.44 1.44 0 0 0-1.357.887 1.432 1.432 0 0 0 .532 1.742 1.443 1.443 0 0 0 1.818-.182 1.375 1.375 0 0 0 .419-1.014c0-.684-.486-1.273-1.16-1.406a1.446 1.446 0 0 0-.252-.027zm-12.062.178v15.766h2.033v-6.76h6.496v-1.893h-6.496v-5.176h7.2v-1.937zm34.457 0v15.766h1.938v-1.497h.088a3.743 3.743 0 0 0 1.473 1.325 4.613 4.613 0 0 0 2.222.516c1.395.006 2.6-.542 3.616-1.643s1.524-2.466 1.524-4.096c.001-1.63-.507-2.994-1.524-4.095-1.017-1.101-2.225-1.652-3.624-1.652a4.612 4.612 0 0 0-2.219.528 3.743 3.743 0 0 0-1.468 1.32h-.088l.088-1.496v-4.977zm38.32 4.615a4.839 4.839 0 0 0-3.81 1.697 5.93 5.93 0 0 0-1.49 4.05c0 1.66.512 3.034 1.534 4.12 1.023 1.086 2.352 1.628 3.987 1.628 1.178 0 2.17-.28 2.98-.84a4.842 4.842 0 0 0 1.746-2.102l-1.81-.753c-.515 1.233-1.502 1.85-2.96 1.85a3.319 3.319 0 0 1-2.352-.946c-.67-.634-1.035-1.496-1.094-2.582h8.547l.022-.375c.002-1.746-.48-3.14-1.445-4.183-.965-1.043-2.25-1.564-3.855-1.564zm-10.799.005a5.112 5.112 0 0 0-3.014.891c-.847.594-1.271 1.37-1.271 2.323a2.405 2.405 0 0 0 .927 1.992 5.208 5.208 0 0 0 1.966 1l2.185.53c.987.25 1.48.726 1.48 1.43a1.28 1.28 0 0 1-.606 1.101 2.687 2.687 0 0 1-1.552.418c-1.381 0-2.36-.675-2.934-2.026l-1.812.748a5.211 5.211 0 0 0 1.725 2.202c.787.587 1.784.88 2.992.88 1.252 0 2.273-.318 3.063-.958a3 3 0 0 0 1.209-2.423 2.92 2.92 0 0 0-.736-1.951c-.487-.573-1.238-.974-2.254-1.204l-2.142-.507c-.957-.22-1.436-.64-1.436-1.256a1.138 1.138 0 0 1 .617-1.013 2.895 2.895 0 0 1 1.524-.375c1.251 0 2.076.477 2.475 1.431l1.767-.72a3.666 3.666 0 0 0-1.612-1.86 5.038 5.038 0 0 0-2.56-.653zm-34.454.004a4.839 4.839 0 0 0-3.81 1.697 5.928 5.928 0 0 0-1.495 4.042c.001 1.66.513 3.033 1.536 4.119 1.022 1.086 2.351 1.628 3.986 1.628 1.178 0 2.172-.278 2.983-.835a4.842 4.842 0 0 0 1.745-2.103l-1.812-.748c-.515 1.233-1.502 1.85-2.96 1.85a3.32 3.32 0 0 1-2.351-.948c-.671-.634-1.035-1.494-1.094-2.58h8.55l.022-.375c.001-1.746-.48-3.14-1.446-4.183s-2.25-1.564-3.854-1.564zm23.741.004c-1.208 0-2.179.275-2.915.825-.736.55-1.23 1.15-1.48 1.795l1.854.793a2.16 2.16 0 0 1 .984-1.145 3.112 3.112 0 0 1 1.6-.419 2.94 2.94 0 0 1 2.006.708 2.404 2.404 0 0 1 .818 1.904v.307c-.763-.44-1.74-.66-2.934-.66-1.339 0-2.464.334-3.378 1.002-.913.667-1.37 1.588-1.37 2.762.002 1.086.388 1.96 1.16 2.62.77.66 1.73.99 2.88.99 1.562 0 2.748-.613 3.558-1.84h.088v1.497h1.95v-6.522c.008-1.473-.449-2.61-1.37-3.413-.92-.803-2.07-1.204-3.45-1.204zm-30.613.085a3.64 3.64 0 0 0-1.867.572 2.768 2.768 0 0 0-1.27 1.454h-.087v-1.762h-1.944v10.79h2.032l-.003-5.9c0-.94.284-1.7.852-2.28a2.658 2.658 0 0 1 1.955-.873 3.083 3.083 0 0 1 1.083.155l.773-1.892a3.884 3.884 0 0 0-1.524-.265zm-9.63.264v10.79h2.033v-10.79zm28.82 1.489a3.32 3.32 0 0 1 2.433 1.067c.678.712 1.016 1.655 1.016 2.83 0 1.174-.338 2.117-1.016 2.83a3.235 3.235 0 0 1-2.429 1.068v.009a3.241 3.241 0 0 1-2.44-1.066c-.668-.704-1.004-1.652-1.005-2.84-.001-1.19.335-2.136 1.005-2.84a3.318 3.318 0 0 1 2.437-1.058zm-12.366.011c1.03-.011 1.807.262 2.33.82.523.557.808 1.143.851 1.76l-6.272.018a3.597 3.597 0 0 1 1.137-1.893 2.919 2.919 0 0 1 1.955-.705zm45.257 0c1.03-.011 1.806.262 2.33.82.523.557.807 1.143.851 1.76l-6.272.018a3.597 3.597 0 0 1 1.137-1.893 2.919 2.919 0 0 1 1.954-.705zm-21.177 3.93c1.15 0 2.012.237 2.587.707a2.899 2.899 0 0 1-1.035 2.211 3.312 3.312 0 0 1-2.286.936v.009a2.742 2.742 0 0 1-1.559-.472 1.44 1.44 0 0 1-.69-1.256 1.915 1.915 0 0 1 .751-1.496c.5-.426 1.245-.638 2.232-.638z"/></svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f58220" d="M27.35 80.52l10.68-68.44c.37-2.33 3.5-2.89 4.6-.8l11.48 21.48-26.76 47.76zm75.94 16.63L93.1 34.11c-.31-1.96-2.76-2.76-4.17-1.35L24.71 97.15l35.54 19.95a7.447 7.447 0 007.18 0l35.86-19.95zm-28.85-55L66.21 26.5c-.92-1.78-3.44-1.78-4.36 0L25.7 90.95l48.74-48.8z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#ffa000" d="M34.872 0a1.94 1.94 0 0 0-.307.028A1.933 1.933 0 0 0 32.97 1.64L17.911 98l9.911-18.867 25.066-47.724L36.6 1.028l-.002-.002A1.935 1.935 0 0 0 34.872 0Zm28.387 18.294c-.722 0-1.38.396-1.716 1.035l-7.459 14.203-.008-.014-34.1 64.922 10.75-10.767 34.46-34.52 11.503-11.524-11.712-22.3a1.938 1.938 0 0 0-1.718-1.035zm32.175 8.301a1.907 1.907 0 0 0-.52.054 1.938 1.938 0 0 0-.913.514L79.18 42.006 66.623 54.589l-48.994 49.078 41.613 23.337h.002a7.846 7.846 0 0 0 7.653 0l42.532-23.647-12.145-75.153v.008a1.937 1.937 0 0 0-1.324-1.524 1.957 1.957 0 0 0-.526-.093Zm14.938 77.4-.6.049.249.146z"/></svg>

Before

Width:  |  Height:  |  Size: 353 B

After

Width:  |  Height:  |  Size: 680 B

Binary file not shown.

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 20 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="url(#a)" d="M2.876 102.069c.014-5.4 4.604-12.939 11.127-19.788 4.358-4.577 8.785-8.594 18.435-16.822-6.675-3.663-17.057-8.082-22.265-13.87-1.928-2.14-5.421-6.992-4.744-13.473C6.81 24.905 23.116 4.857 46.293.619c7.711-1.41 16.565-.393 23.852 2.883 22.861 10.278 50.819 35.812 54.259 48.28 1.21 4.387.978 11.382-1.11 15.28-2.586 4.833-11.542 14.646-23.795 24.773-19.225 15.889-46.166 32.95-66.282 35.82-6.5.929-13.141-.039-17.801-2.668-7.292-4.115-9.713-9.608-10.563-11.254-2.263-4.378-1.982-9.925-1.977-11.664Zm54.108-60.667c.248-3.061 12.253-.013 11.495 2.411-.8 2.558-11.78 1.101-11.495-2.41z"/><path fill="url(#b)" d="M38.935 60.4c-6.317 5.334-10.518 8.93-15.784 13.744C10.47 85.734 1.852 94.557 6.295 106.618c5.125 13.912 16.358 13.207 29.532 10.621 33.956-6.697 89.772-49.608 86.927-65.458-2.302-12.825-33.486-38.322-51.95-47.395C65.036 1.55 58.39.085 51.721.399 26.333 1.597 6.506 24.712 7.519 37.236c.985 12.184 31.78 22.8 31.416 23.164Zm-3.81-42.535c-7.64 8.5-2.756 24.944 9.913 33.907 14.825 10.488 38.83 12.387 43.608 4.299 8.91-15.087-.819-31.04-15.342-38.156-14.351-7.032-33.417-5.349-38.18-.05Z"/><path fill="url(#c)" d="M61.177 51.415c10.725 1.491 19.97-2.804 21.415-13.395 1.102-8.067-11.245-16.881-18.668-18.914-6.199-1.697-19.656.486-20.564 12.21-.943 12.187 11.564 19.23 17.817 20.1Zm-5.252-20.27c-7.048 10.92 10.234 14.276 12.88 12.285 11.407-8.585-9.774-17.096-12.88-12.285Z"/><path fill="url(#d)" d="M49.675 3.3c-12.468 1.314-14.856 2.918-26.15 11.464-3.786 2.864-10.753 9.833-12.538 18.1-.68 3.148.124 5.867 2.391 7.773 7.261 6.105 19.414 11.057 29.384 15.845 2.92 1.402.987 3.945-3.722 8.021C27.156 74.791 11.09 87.314 9.969 96.856c-.529 4.497 1.01 10.607 6.468 13.734 6.376 3.652 19.61 1.268 28.448-2.023 12.915-4.809 29.879-15.422 43.347-25.855 14.004-10.848 27.026-24.628 27.67-26.875.79-2.76.712-5.309-.814-8.24-2.397-4.602-5.602-8.021-9.043-11.849-9.233-9.734-19.002-18.287-30.69-24.841-8.44-4.733-15.867-8.641-25.68-7.607Zm18.314 21.823c9.007 4.354 18.257 15.793-.08 22.376-4.987 1.79-20.8-4.397-20.317-12.84.706-12.472 9.399-14.854 20.397-9.536z"/><defs><radialGradient id="c" cx="0" cy="0" r="1" gradientTransform="matrix(21.5958 0 0 16.55244 54.025 28.43)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-color="#fff"/><stop offset="34%" stop-color="#fff"/><stop offset="51%" stop-color="#bebbdb"/><stop offset="75%" stop-color="#928bbe"/><stop offset="87%" stop-color="#9f99c7"/><stop offset="100%" stop-color="#524c76"/></radialGradient><radialGradient id="d" cx="0" cy="0" r="1" gradientTransform="matrix(-2.96054 187.84913 -160.21079 -2.5225 4.891 33.727)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-color="#fff"/><stop offset="34%" stop-color="#fff"/><stop offset="51%" stop-color="#bebbdb"/><stop offset="75%" stop-color="#928bbe"/><stop offset="87%" stop-color="#9f99c7"/><stop offset="100%" stop-color="#524c76"/></radialGradient><linearGradient id="a" x1="0" x2="1" y1="0" y2="0" gradientTransform="rotate(79.19 168.776 -156.268) scale(428.36508)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-color="#fff"/><stop offset="34%" stop-color="#fff"/><stop offset="51%" stop-color="#bebdf3"/><stop offset="75%" stop-color="#867fb7"/><stop offset="87%" stop-color="#9f99c7"/><stop offset="100%" stop-color="#524c76"/></linearGradient><linearGradient id="b" x1="0" x2="1" y1="0" y2="0" gradientTransform="rotate(-102.573 79.15 14.225) scale(111.47795)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-color="#fff"/><stop offset="34%" stop-color="#fff"/><stop offset="51%" stop-color="#bebbdb"/><stop offset="75%" stop-color="#928bbe"/><stop offset="87%" stop-color="#9f99c7"/><stop offset="100%" stop-color="#524c76"/></linearGradient></defs></svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M54.926 6.137C45.937 6.012 35.82 9.699 27.68 16.145c-8.594 6.804-14.575 16.003-15.383 23.671-.266 2.528.262 5.125 1.578 7.786.879 1.77 1.758 2.972 3.32 4.535 2.89 2.89 5.957 4.84 14.668 9.324 3.184 1.637 4.235 2.2 4.235 2.262 0 .015-.559.5-1.235 1.074-6.89 5.832-13 11.508-16.152 15.008-4.57 5.07-7.727 10.422-8.469 14.347-.18.946-.207 4.7-.043 6.192.258 2.379.793 4.219 1.82 6.238 1.247 2.461 2.458 4.113 4.34 5.934 3.864 3.738 8.246 5.648 14.043 6.132 1.004.082 4.766-.039 5.895-.187 6.648-.89 14.648-3.664 23.586-8.172 17.785-8.973 38.715-24.738 50.847-38.297 2.36-2.637 4.672-5.738 5.372-7.21.972-2.04 1.433-4.532 1.433-7.778.004-2.922-.37-5.055-1.25-7.09-4.012-9.348-20.105-24.793-36.344-34.89-3.933-2.446-9.27-5.247-12.129-6.368-3.515-1.379-6.992-2.144-11.105-2.441-.586-.043-1.18-.07-1.781-.078zm-.34.254c1.441.004 2.871.062 3.836.18 4.621.562 8.387 1.742 12.7 3.98 10.624 5.515 24.636 16.082 33.905 25.562 6.434 6.586 10.188 12.2 10.578 15.832.395 3.668-2.199 8.692-7.777 15.059-1.488 1.7-6.39 6.566-8.484 8.422-15.094 13.386-34.54 25.37-50.496 31.117a72.538 72.538 0 01-16.38 3.852c-1.644.195-5.37.277-6.55.144-2.234-.246-3.828-.684-5.496-1.508-2.149-1.058-3.805-2.527-5.195-4.605a20.658 20.658 0 01-3.082-7.54c-.262-1.359-.239-3.706.046-5.16.653-3.316 2.371-6.535 5.496-10.296 3.47-4.18 10.977-11.164 22.57-21l1.391-1.18-.382-.195c-.211-.106-1.29-.578-2.399-1.051C28.66 53.656 21.883 49.672 17.84 45.64c-1.82-1.813-2.969-3.543-3.512-5.297-.629-2.02-.242-5.223 1.012-8.383 2.215-5.586 7.297-11.813 13.39-16.402 6.692-5.043 14.149-8.102 21.93-8.993 1.024-.117 2.48-.175 3.926-.175zm-1.344 2.55c-1.195.036-2.457.141-3.828.309-6.934.852-10.262 2.055-15.27 5.52-1.851 1.28-6.308 4.64-7.32 5.52-4.152 3.6-7.547 8.343-8.988 12.542-.91 2.656-1.05 4.469-.484 6.16.562 1.684 1.648 2.805 4.785 4.953 3.73 2.559 8.027 4.813 18.16 9.54 5.27 2.456 5.77 2.734 5.992 3.316.266.707-.039 1.558-.988 2.742-.934 1.168-2.11 2.242-7.395 6.77-7.457 6.39-10.195 8.87-13.148 11.894-5.106 5.223-7.758 9.238-8.375 12.684-.508 2.82.23 6.414 1.828 8.89 1.965 3.051 4.879 4.684 9.117 5.11 5.602.558 14.024-1.004 21.367-3.973 13.242-5.352 31.754-17.406 45.356-29.54 6.531-5.827 13.793-13.343 15.172-15.706.402-.692.683-2.336.62-3.637-.077-1.695-.491-2.957-1.593-4.875-1.82-3.168-4.43-6.39-9.129-11.281-6.101-6.344-12.875-12.11-19.281-16.402-5.352-3.586-12.387-7.348-16.57-8.86-3.47-1.254-6.446-1.777-10.028-1.676zM58.84 25.84c.914.015 1.863.11 2.656.273 6.961 1.446 13.324 6.192 14.832 11.055.348 1.125.332 2.785-.039 3.812a9.265 9.265 0 01-.598 1.31c-.504.855-2.093 2.41-3.207 3.144-1.921 1.257-4.8 2.52-6.183 2.71-.434.063-.91.106-1.059.098-4.484-.222-9.972-2.59-13.094-5.648-2.09-2.043-2.945-3.942-2.804-6.223.36-5.797 2.836-9.43 7.062-10.348.645-.14 1.52-.199 2.434-.183zm.972 6.504c-1.32.023-2.367.367-2.93 1.047-.343.418-1.038 1.78-1.273 2.492-.597 1.816-.347 3.476.75 4.933.282.371.688.817.907.993l.402.316.305-.258c.43-.363.953-.476 2.16-.472 1.09 0 1.996.113 3.027.37 2.32.579 4.035 1.426 4.504 2.22.18.3.223.324.418.218.121-.062.606-.504 1.082-.98.965-.965 1.527-1.934 1.711-2.957.402-2.215-1.625-4.782-5.086-6.434-2.133-1.016-4.277-1.52-5.977-1.488zm0 0" fill="#9991d9" stroke-width=".10075" stroke="#9991d9"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#9991d9" d="M53.902.06C43.687-.08 32.19 4.109 22.94 11.434 13.175 19.165 6.379 29.618 5.46 38.332c-.303 2.872.297 5.823 1.793 8.847.999 2.012 1.997 3.377 3.772 5.154 3.284 3.284 6.77 5.5 16.668 10.595 3.618 1.86 4.813 2.5 4.813 2.57 0 .017-.636.568-1.404 1.22-7.83 6.628-14.772 13.078-18.354 17.055-5.193 5.761-8.78 11.843-9.624 16.303-.204 1.075-.235 5.341-.049 7.036.294 2.704.901 4.795 2.069 7.089 1.417 2.796 2.793 4.674 4.931 6.743 4.391 4.248 9.37 6.418 15.958 6.968 1.14.093 5.416-.044 6.699-.212 7.554-1.012 16.645-4.164 26.802-9.287 20.21-10.196 43.993-28.11 57.78-43.518 2.681-2.997 5.308-6.52 6.104-8.193 1.104-2.318 1.628-5.15 1.628-8.839.005-3.32-.42-5.744-1.42-8.057-4.56-10.622-22.846-28.173-41.3-39.647-4.469-2.78-10.533-5.962-13.782-7.236C64.55 1.356 60.599.487 55.925.15a33.799 33.799 0 0 0-2.023-.088Zm-.387.29c1.638.004 3.263.07 4.36.204 5.25.638 9.53 1.98 14.431 4.523 12.072 6.267 27.995 18.274 38.528 29.047 7.311 7.484 11.577 13.863 12.02 17.99.449 4.169-2.499 9.878-8.837 17.113-1.691 1.932-7.262 7.46-9.641 9.57-17.152 15.211-39.25 28.829-57.381 35.36a82.428 82.428 0 0 1-18.613 4.377c-1.868.221-6.102.315-7.443.163-2.539-.279-4.35-.777-6.246-1.713-2.442-1.202-4.323-2.872-5.903-5.233a23.475 23.475 0 0 1-3.502-8.568c-.298-1.544-.272-4.211.052-5.864.742-3.768 2.694-7.426 6.245-11.7 3.943-4.75 12.474-12.686 25.648-23.863l1.58-1.34-.434-.222c-.24-.12-1.466-.657-2.726-1.194-11.598-4.941-19.3-9.468-23.894-14.05-2.068-2.06-3.374-4.026-3.99-6.02-.715-2.295-.276-5.935 1.15-9.525 2.516-6.348 8.291-13.424 15.215-18.639C31.738 5.036 40.212 1.56 49.054.547c1.164-.133 2.818-.199 4.461-.199zm-1.527 2.897a47.58 47.58 0 0 0-4.35.351c-7.88.968-11.661 2.335-17.352 6.273-2.103 1.454-7.168 5.272-8.318 6.272-4.718 4.091-8.576 9.481-10.213 14.252-1.034 3.019-1.194 5.079-.55 7 .638 1.914 1.872 3.188 5.437 5.629 4.239 2.908 9.121 5.469 20.636 10.84 5.989 2.791 6.557 3.107 6.809 3.769.302.803-.044 1.77-1.123 3.115-1.061 1.328-2.397 2.548-8.403 7.694-8.474 7.26-11.585 10.079-14.94 13.515-5.803 5.935-8.816 10.498-9.518 14.414-.577 3.204.262 7.288 2.078 10.102 2.233 3.467 5.544 5.322 10.36 5.806 6.366.634 15.936-1.14 24.28-4.514 15.048-6.082 36.084-19.78 51.54-33.568 7.422-6.621 15.674-15.162 17.24-17.847.458-.787.777-2.655.705-4.133-.087-1.926-.558-3.36-1.81-5.54-2.068-3.6-5.034-7.261-10.374-12.819-6.932-7.209-14.63-13.761-21.91-18.638-6.081-4.075-14.075-8.35-18.829-10.068-3.943-1.425-7.325-2.02-11.395-1.905Zm6.361 19.203a16.95 16.95 0 0 1 3.018.31c7.91 1.643 15.141 7.037 16.855 12.563.395 1.278.377 3.164-.045 4.331a10.528 10.528 0 0 1-.68 1.489c-.572.972-2.378 2.739-3.643 3.573-2.183 1.428-5.455 2.863-7.026 3.08-.494.07-1.035.12-1.204.11-5.095-.252-11.331-2.943-14.88-6.418-2.374-2.321-3.346-4.479-3.185-7.071.409-6.587 3.222-10.716 8.024-11.759.733-.159 1.728-.226 2.766-.208zm1.105 7.39c-1.5.027-2.69.418-3.33 1.19-.39.476-1.18 2.023-1.446 2.832-.679 2.064-.394 3.95.852 5.606.32.422.782.928 1.03 1.128l.458.36.346-.294c.489-.412 1.083-.54 2.455-.536 1.238 0 2.268.128 3.44.42 2.636.658 4.585 1.62 5.117 2.523.205.341.254.368.475.248.138-.07.689-.573 1.23-1.114 1.097-1.096 1.735-2.197 1.944-3.36.457-2.517-1.846-5.434-5.78-7.311-2.423-1.155-4.86-1.727-6.791-1.691zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><linearGradient id="grafana-original-a" gradientUnits="userSpaceOnUse" x1="45.842" y1="89.57" x2="45.842" y2="8.802" gradientTransform="translate(-.23 28.462) scale(1.4011)"><stop offset="0" stop-color="#fcee1f"/><stop offset="1" stop-color="#f15b2a"/></linearGradient><path fill="url(#grafana-original-a)" d="M120.8 56.9c-.2-2.1-.6-4.5-1.2-7.2s-1.8-5.5-3.2-8.6c-1.5-3-3.4-6.2-5.9-9.1-1-1.2-2.1-2.3-3.2-3.5 1.8-6.9-2.1-13-2.1-13-6.7-.4-10.9 2.1-12.4 3.2-.2-.1-.6-.2-.8-.3-1.1-.4-2.3-.9-3.5-1.3-1.2-.3-2.4-.8-3.6-1-1.2-.3-2.5-.6-3.9-.8-.2 0-.4-.1-.7-.1C77.5 6 69.1 2 69.1 2c-9.6 6.2-11.4 14.4-11.4 14.4s0 .2-.1.4c-.6.1-1 .3-1.5.4-.7.2-1.4.4-2.1.8l-2.1.9c-1.4.7-2.8 1.3-4.2 2.1-1.3.8-2.6 1.5-3.9 2.4-.2-.1-.3-.2-.3-.2-12.9-5-24.3 1-24.3 1-1 13.8 5.2 22.3 6.4 23.9-.3.9-.6 1.7-.9 2.5-1 3.1-1.7 6.3-2.1 9.6-.1.4-.1 1-.2 1.4C10.5 67.5 7 79.6 7 79.6 16.9 91 28.5 91.7 28.5 91.7c1.4 2.6 3.2 5.2 5.1 7.5.8 1 1.7 1.9 2.5 2.9-3.6 10.3.6 19 .6 19 11.1.4 18.4-4.8 19.9-6.1 1.1.3 2.2.7 3.3 1 3.4.9 6.9 1.4 10.3 1.5h4.5c5.2 7.5 14.4 8.5 14.4 8.5 6.5-6.9 6.9-13.6 6.9-15.2v-.6c1.3-1 2.6-2 4-3.1 2.6-2.3 4.8-5.1 6.8-7.9.2-.2.3-.6.6-.8 7.4.4 12.5-4.6 12.5-4.6-1.2-7.7-5.6-11.4-6.5-12.1l-.1-.1-.1-.1-.1-.1c0-.4.1-.9.1-1.4.1-.9.1-1.7.1-2.5v-3.3c0-.2 0-.4-.1-.7l-.1-.7-.1-.7c-.1-.9-.3-1.7-.4-2.5-.8-3.3-2.1-6.5-3.7-9.2-1.8-2.9-3.9-5.3-6.3-7.5-2.4-2.1-5.1-3.9-7.9-5.1-2.9-1.3-5.7-2.1-8.7-2.4-1.4-.2-3-.2-4.4-.2h-2.3c-.8.1-1.5.2-2.2.3-3 .6-5.7 1.7-8.1 3.1-2.4 1.4-4.5 3.3-6.3 5.4-1.8 2.1-3.1 4.3-4 6.7-.9 2.3-1.4 4.8-1.5 7.2v2.6c0 .3 0 .6.1.9.1 1.2.3 2.3.7 3.4.7 2.2 1.7 4.2 3 5.9s2.8 3.1 4.4 4.2c1.7 1.1 3.3 1.9 5.1 2.4s3.4.8 5 .7h2.3c.2 0 .4-.1.6-.1.2 0 .3-.1.6-.1.3-.1.8-.2 1.1-.3.7-.2 1.3-.6 2-.8.7-.3 1.2-.7 1.7-1 .1-.1.3-.2.4-.3.6-.4.7-1.2.2-1.8-.4-.4-1.1-.6-1.7-.3-.1.1-.2.1-.4.2-.4.2-1 .4-1.4.6-.6.1-1.1.3-1.7.4-.3 0-.6.1-.9.1h-1.8s-.1 0 0 0h-.7c-.1 0-.3 0-.4-.1-1.2-.2-2.5-.6-3.7-1.1-1.2-.6-2.4-1.3-3.4-2.3-1.1-1-2-2.1-2.8-3.4-.8-1.3-1.2-2.8-1.4-4.2-.1-.8-.2-1.5-.1-2.3v-.7c0 .1 0 0 0 0V70c0-.4.1-.8.2-1.2.6-3.3 2.2-6.5 4.7-8.9.7-.7 1.3-1.2 2.1-1.7.8-.6 1.5-1 2.3-1.3.8-.3 1.7-.7 2.5-.9.9-.2 1.8-.4 2.6-.4.4 0 .9-.1 1.3-.1h.8c.1 0 0 0 0 0h.4c1 .1 2 .2 2.9.4 1.9.4 3.7 1.1 5.5 2.1 3.5 2 6.5 5 8.3 8.6.9 1.8 1.5 3.7 1.9 5.8.1.6.1 1 .2 1.5v2.7c0 .6-.1 1.1-.1 1.7-.1.6-.1 1.1-.2 1.7s-.2 1.1-.3 1.7c-.2 1.1-.7 2.1-1 3.2-.8 2.1-1.9 4.1-3.2 5.8-2.6 3.6-6.3 6.6-10.3 8.5-2.1.9-4.2 1.7-6.4 2-1.1.2-2.2.3-3.3.3h-1.6c.1 0 0 0 0 0h-.1c-.6 0-1.2 0-1.8-.1-2.4-.2-4.7-.7-7-1.3-2.3-.7-4.5-1.5-6.6-2.6-4.2-2.2-7.9-5.4-10.9-9-1.4-1.9-2.8-3.9-3.9-5.9s-1.9-4.3-2.5-6.5c-.7-2.2-1-4.5-1.1-6.8v-3.5c0-1.1.1-2.3.3-3.5.1-1.2.3-2.3.6-3.5.2-1.2.6-2.3.9-3.5.7-2.3 1.4-4.5 2.4-6.6 2-4.2 4.5-7.9 7.5-10.9.8-.8 1.5-1.4 2.4-2.1.3-.3 1.1-1 2-1.5s1.8-1.1 2.8-1.5c.4-.2.9-.4 1.4-.7.2-.1.4-.2.8-.3.2-.1.4-.2.8-.3 1-.4 2-.8 3-1.1.2-.1.6-.1.8-.2.2-.1.6-.1.8-.2.6-.1 1-.2 1.5-.4.2-.1.6-.1.8-.2.2 0 .6-.1.8-.1.2 0 .6-.1.8-.1l.4-.1.4-.1c.2 0 .6-.1.8-.1.3 0 .6-.1.9-.1.2 0 .7-.1.9-.1.2 0 .3 0 .6-.1h.7c.3 0 .6 0 .9-.1h.4s.1 0 0 0h4.1c2 .1 4 .3 5.8.7 3.7.7 7.4 1.9 10.6 3.5 3.2 1.5 6.2 3.5 8.6 5.6.1.1.3.2.4.4.1.1.3.2.4.4.3.2.6.6.9.8.3.2.6.6.9.8.2.3.6.6.8.9 1.1 1.1 2.1 2.3 3 3.4 1.8 2.3 3.2 4.6 4.3 6.8.1.1.1.2.2.4.1.1.1.2.2.4s.2.6.4.8c.1.2.2.6.3.8.1.2.2.6.3.8.4 1 .8 2 1.1 3 .6 1.5.9 2.9 1.2 4 .1.4.6.8 1 .8.6 0 .9-.4.9-1-.3-1.7-.3-3.1-.4-4.8z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><linearGradient id="a" x1="45.842" x2="45.842" y1="89.57" y2="8.802" gradientTransform="translate(-2.405 27.316) scale(1.4463)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fcee1f"/><stop offset="1" stop-color="#f15b2a"/></linearGradient><path fill="url(#a)" d="M69.162 0c-9.91 6.4-11.77 14.865-11.77 14.865s.002.206-.101.412c-.62.104-1.033.31-1.549.413-.722.206-1.445.413-2.168.826l-2.168.93c-1.445.722-2.89 1.341-4.336 2.167-1.342.826-2.683 1.548-4.025 2.477a1.266 1.266 0 0 1-.309-.205c-13.316-5.161-25.084 1.031-25.084 1.031-1.032 14.245 5.367 23.02 6.606 24.672-.31.929-.62 1.754-.93 2.58a52.973 52.973 0 0 0-2.166 9.91c-.103.413-.104 1.033-.207 1.445C8.671 67.613 5.06 80.103 5.06 80.103c10.219 11.768 22.193 12.49 22.193 12.49 1.445 2.685 3.302 5.369 5.264 7.743.825 1.032 1.756 1.96 2.582 2.992-3.716 10.632.619 19.613.619 19.613 11.458.413 18.992-4.955 20.54-6.297 1.136.31 2.272.724 3.407 1.034a47.25 47.25 0 0 0 10.633 1.549h4.644C80.31 126.969 89.807 128 89.807 128c6.71-7.123 7.123-14.038 7.123-15.69v-.62c1.342-1.033 2.683-2.064 4.129-3.2 2.684-2.374 4.955-5.264 7.02-8.154.206-.207.309-.62.618-.826 7.639.413 12.903-4.748 12.903-4.748-1.24-7.949-5.78-11.768-6.71-12.49l-.103-.104-.103-.104-.104-.103c0-.413.104-.93.104-1.445.103-.93.103-1.755.103-2.58v-3.407c0-.206 0-.413-.103-.722l-.104-.723-.103-.723c-.104-.929-.31-1.754-.413-2.58-.825-3.406-2.166-6.71-3.818-9.498-1.858-2.993-4.026-5.471-6.504-7.742-2.477-2.168-5.264-4.025-8.154-5.264-2.994-1.342-5.884-2.167-8.98-2.476-1.446-.207-3.098-.207-4.544-.207H79.69c-.825.103-1.546.205-2.27.308-3.096.62-5.883 1.756-8.36 3.201-2.478 1.446-4.646 3.407-6.504 5.575-1.858 2.167-3.2 4.438-4.13 6.916a23.313 23.313 0 0 0-1.548 7.431v2.684c0 .31 0 .62.104.93.103 1.238.31 2.374.722 3.51.723 2.27 1.756 4.334 3.098 6.09a19.973 19.973 0 0 0 4.54 4.335c1.756 1.136 3.408 1.96 5.266 2.477 1.858.516 3.509.826 5.16.722h2.376c.206 0 .412-.101.619-.101.206 0 .31-.104.619-.104.31-.103.825-.207 1.135-.31.722-.207 1.342-.62 2.064-.826.723-.31 1.24-.722 1.756-1.032.103-.103.309-.207.412-.31.62-.413.723-1.238.207-1.858-.413-.413-1.136-.62-1.756-.31-.103.103-.205.104-.412.207-.413.206-1.032.413-1.445.619-.62.103-1.135.31-1.754.414-.31 0-.62.102-.93.102h-2.58c-.103 0-.31.001-.414-.102-1.239-.206-2.58-.62-3.818-1.137-1.239-.619-2.478-1.34-3.51-2.373a15.894 15.894 0 0 1-2.89-3.51c-.826-1.341-1.24-2.89-1.446-4.335-.103-.826-.207-1.55-.103-2.375v-1.239c0-.413.103-.825.207-1.238.619-3.406 2.27-6.71 4.851-9.187.723-.723 1.342-1.238 2.168-1.754.826-.62 1.547-1.032 2.373-1.342.826-.31 1.756-.723 2.582-.93.93-.206 1.858-.414 2.684-.414.413 0 .929-.101 1.342-.101h1.238c1.032.103 2.065.205 2.994.412 1.961.413 3.82 1.135 5.678 2.168 3.613 2.064 6.708 5.16 8.566 8.877.93 1.858 1.548 3.82 1.961 5.988.103.62.104 1.03.207 1.547v2.787c0 .62-.103 1.136-.103 1.756-.104.62-.102 1.134-.205 1.754-.104.619-.208 1.136-.311 1.755-.206 1.136-.722 2.168-1.031 3.303-.826 2.168-1.963 4.232-3.305 5.986-2.684 3.717-6.502 6.815-10.63 8.776-2.169.929-4.337 1.755-6.608 2.064a19.003 19.003 0 0 1-3.407.309h-1.755c-.62 0-1.238.002-1.858-.102-2.477-.206-4.85-.724-7.224-1.343-2.375-.723-4.647-1.548-6.815-2.684-4.335-2.27-8.153-5.573-11.25-9.289-1.445-1.961-2.892-4.027-4.027-6.092-1.136-2.064-1.961-4.438-2.58-6.709-.723-2.27-1.032-4.645-1.135-7.02v-3.613c0-1.135.102-2.372.309-3.61.103-1.24.309-2.376.619-3.614.206-1.239.62-2.375.93-3.614.722-2.374 1.444-4.644 2.476-6.812 2.064-4.335 4.645-8.155 7.742-11.252a24.86 24.86 0 0 1 2.479-2.168c.31-.31 1.135-1.033 2.064-1.549s1.858-1.136 2.89-1.549c.414-.206.93-.413 1.446-.722.206-.103.411-.206.824-.309.207-.103.414-.207.826-.31 1.033-.413 2.066-.825 3.098-1.135.207-.103.62-.104.826-.207.207-.103.618-.102.824-.205.62-.103 1.033-.208 1.55-.414.206-.104.619-.104.825-.207.207 0 .62-.102.827-.102.206 0 .62-.103.826-.103l.412-.104.412-.103c.206 0 .62-.104.826-.104.31 0 .62-.104.93-.104.206 0 .721-.101.928-.101.206 0 .311 0 .62-.104h.723c.31 0 .618 0 .928-.103h4.647c2.064.103 4.128.31 5.986.723 3.82.722 7.638 1.961 10.941 3.613 3.304 1.548 6.4 3.611 8.877 5.78.104.102.311.207.414.413.104.103.31.206.412.412.31.207.62.62.93.826.31.207.62.62.93.827.206.31.618.618.824.927 1.136 1.136 2.169 2.375 3.098 3.51a41.422 41.422 0 0 1 4.44 7.02c.102.103.1.207.204.414.103.103.104.205.207.412.103.206.206.62.412.826.104.206.208.62.31.826.104.207.208.62.311.826.413 1.033.826 2.064 1.135 3.096.62 1.548.929 2.993 1.239 4.13.103.412.62.825 1.033.825.619 0 .927-.414.927-1.033-.31-1.755-.308-3.198-.412-4.953-.206-2.168-.619-4.647-1.238-7.434-.62-2.787-1.86-5.677-3.305-8.877-1.548-3.096-3.509-6.4-6.09-9.394-1.032-1.239-2.167-2.373-3.302-3.612 1.858-7.122-2.168-13.42-2.168-13.42-6.916-.412-11.253 2.168-12.801 3.303-.206-.103-.618-.205-.824-.308-1.136-.413-2.375-.93-3.613-1.342-1.24-.31-2.478-.827-3.717-1.033-1.239-.31-2.58-.62-4.026-.827-.206 0-.413-.103-.722-.103C77.833 4.128 69.162 0 69.162 0z"/></svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f7a525" d="M69.162 0c-9.91 6.4-11.77 14.865-11.77 14.865s.002.206-.101.412c-.62.104-1.033.31-1.549.413-.722.206-1.445.413-2.168.826l-2.168.93c-1.445.722-2.89 1.341-4.336 2.167-1.342.826-2.683 1.548-4.025 2.477a1.266 1.266 0 0 1-.309-.205c-13.316-5.161-25.084 1.031-25.084 1.031-1.032 14.245 5.367 23.02 6.606 24.672-.31.929-.62 1.754-.93 2.58a52.973 52.973 0 0 0-2.166 9.91c-.103.413-.104 1.033-.207 1.445C8.671 67.613 5.06 80.103 5.06 80.103c10.219 11.768 22.193 12.49 22.193 12.49 1.445 2.685 3.302 5.369 5.264 7.743.825 1.032 1.756 1.96 2.582 2.992-3.716 10.632.619 19.613.619 19.613 11.458.413 18.992-4.955 20.54-6.297 1.136.31 2.272.724 3.407 1.034a47.25 47.25 0 0 0 10.633 1.549h4.644C80.31 126.969 89.807 128 89.807 128c6.71-7.123 7.123-14.038 7.123-15.69v-.62c1.342-1.033 2.683-2.064 4.129-3.2 2.684-2.374 4.955-5.264 7.02-8.154.206-.207.309-.62.618-.826 7.639.413 12.903-4.748 12.903-4.748-1.24-7.949-5.78-11.768-6.71-12.49l-.103-.104-.103-.104-.104-.103c0-.413.104-.93.104-1.445.103-.93.103-1.755.103-2.58v-3.407c0-.206 0-.413-.103-.722l-.104-.723-.103-.723c-.104-.929-.31-1.754-.413-2.58-.825-3.406-2.166-6.71-3.818-9.498-1.858-2.993-4.026-5.471-6.504-7.742-2.477-2.168-5.264-4.025-8.154-5.264-2.994-1.342-5.884-2.167-8.98-2.476-1.446-.207-3.098-.207-4.544-.207H79.69c-.825.103-1.546.205-2.27.308-3.096.62-5.883 1.756-8.36 3.201-2.478 1.446-4.646 3.407-6.504 5.575-1.858 2.167-3.2 4.438-4.13 6.916a23.313 23.313 0 0 0-1.548 7.431v2.684c0 .31 0 .62.104.93.103 1.238.31 2.374.722 3.51.723 2.27 1.756 4.334 3.098 6.09a19.973 19.973 0 0 0 4.54 4.335c1.756 1.136 3.408 1.96 5.266 2.477 1.858.516 3.509.826 5.16.722h2.376c.206 0 .412-.101.619-.101.206 0 .31-.104.619-.104.31-.103.825-.207 1.135-.31.722-.207 1.342-.62 2.064-.826.723-.31 1.24-.722 1.756-1.032.103-.103.309-.207.412-.31.62-.413.723-1.238.207-1.858-.413-.413-1.136-.62-1.756-.31-.103.103-.205.104-.412.207-.413.206-1.032.413-1.445.619-.62.103-1.135.31-1.754.414-.31 0-.62.102-.93.102h-2.58c-.103 0-.31.001-.414-.102-1.239-.206-2.58-.62-3.818-1.137-1.239-.619-2.478-1.34-3.51-2.373a15.894 15.894 0 0 1-2.89-3.51c-.826-1.341-1.24-2.89-1.446-4.335-.103-.826-.207-1.55-.103-2.375v-1.239c0-.413.103-.825.207-1.238.619-3.406 2.27-6.71 4.851-9.187.723-.723 1.342-1.238 2.168-1.754.826-.62 1.547-1.032 2.373-1.342.826-.31 1.756-.723 2.582-.93.93-.206 1.858-.414 2.684-.414.413 0 .929-.101 1.342-.101h1.238c1.032.103 2.065.205 2.994.412 1.961.413 3.82 1.135 5.678 2.168 3.613 2.064 6.708 5.16 8.566 8.877.93 1.858 1.548 3.82 1.961 5.988.103.62.104 1.03.207 1.547v2.787c0 .62-.103 1.136-.103 1.756-.104.62-.102 1.134-.205 1.754-.104.619-.208 1.136-.311 1.755-.206 1.136-.722 2.168-1.031 3.303-.826 2.168-1.963 4.232-3.305 5.986-2.684 3.717-6.502 6.815-10.63 8.776-2.169.929-4.337 1.755-6.608 2.064a19.003 19.003 0 0 1-3.407.309h-1.755c-.62 0-1.238.002-1.858-.102-2.477-.206-4.85-.724-7.224-1.343-2.375-.723-4.647-1.548-6.815-2.684-4.335-2.27-8.153-5.573-11.25-9.289-1.445-1.961-2.892-4.027-4.027-6.092-1.136-2.064-1.961-4.438-2.58-6.709-.723-2.27-1.032-4.645-1.135-7.02v-3.613c0-1.135.102-2.372.309-3.61.103-1.24.309-2.376.619-3.614.206-1.239.62-2.375.93-3.614.722-2.374 1.444-4.644 2.476-6.812 2.064-4.335 4.645-8.155 7.742-11.252a24.86 24.86 0 0 1 2.479-2.168c.31-.31 1.135-1.033 2.064-1.549s1.858-1.136 2.89-1.549c.414-.206.93-.413 1.446-.722.206-.103.411-.206.824-.309.207-.103.414-.207.826-.31 1.033-.413 2.066-.825 3.098-1.135.207-.103.62-.104.826-.207.207-.103.618-.102.824-.205.62-.103 1.033-.208 1.55-.414.206-.104.619-.104.825-.207.207 0 .62-.102.827-.102.206 0 .62-.103.826-.103l.412-.104.412-.103c.206 0 .62-.104.826-.104.31 0 .62-.104.93-.104.206 0 .721-.101.928-.101.206 0 .311 0 .62-.104h.723c.31 0 .618 0 .928-.103h4.647c2.064.103 4.128.31 5.986.723 3.82.722 7.638 1.961 10.941 3.613 3.304 1.548 6.4 3.611 8.877 5.78.104.102.311.207.414.413.104.103.31.206.412.412.31.207.62.62.93.826.31.207.62.62.93.827.206.31.618.618.824.927 1.136 1.136 2.169 2.375 3.098 3.51a41.422 41.422 0 0 1 4.44 7.02c.102.103.1.207.204.414.103.103.104.205.207.412.103.206.206.62.412.826.104.206.208.62.31.826.104.207.208.62.311.826.413 1.033.826 2.064 1.135 3.096.62 1.548.929 2.993 1.239 4.13.103.412.62.825 1.033.825.619 0 .927-.414.927-1.033-.31-1.755-.308-3.198-.412-4.953-.206-2.168-.619-4.647-1.238-7.434-.62-2.787-1.86-5.677-3.305-8.877-1.548-3.096-3.509-6.4-6.09-9.394-1.032-1.239-2.167-2.373-3.302-3.612 1.858-7.122-2.168-13.42-2.168-13.42-6.916-.412-11.253 2.168-12.801 3.303-.206-.103-.618-.205-.824-.308-1.136-.413-2.375-.93-3.613-1.342-1.24-.31-2.478-.827-3.717-1.033-1.239-.31-2.58-.62-4.026-.827-.206 0-.413-.103-.722-.103C77.833 4.128 69.162 0 69.162 0z"/></svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

View File

@@ -1,43 +1 @@
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" width="128px" height="128px">
<g fill="#00A580">
<polygon points="66.6,45.8 70.3,45.8 72,42.9 70.2,39.7 " />
<path d="M89.5,21.2h-51c-3.5,0-6.4,2.8-6.4,6.3v39.9c0,3.5,2.9,6.4,6.4,6.4h51c3.5,0,6.4-2.9,6.4-6.4V27.6
C95.9,24.1,93,21.2,89.5,21.2z M90.6,47c0,0.2,0,0.4,0,0.6c0,0.1,0,0.1,0,0.1c0,0.1-0.1,0.2-0.1,0.3s0,0.2-0.2,0.2L84,59.1
l-0.1,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c-0.1,0-0.1,0-0.1,0c0,0.1-0.1,0.2-0.2,0.2c-0.1,0-0.1,0.1-0.2,0.1c0,0.1-0.1,0.1-0.1,0.1
c-0.1,0.1-0.3,0.1-0.4,0.1H70.1c-0.1,0-0.3-0.1-0.4-0.1c0-0.1-0.1-0.1-0.1-0.1c-0.1,0-0.1-0.1-0.2-0.1c-0.1-0.1-0.1-0.1-0.2-0.2
c-0.1,0-0.1,0-0.1,0c-0.1-0.1-0.1-0.1-0.2-0.2l-0.1-0.1L63,49h-4.7l4.5,7.7h2.1c0.9,0,1.6,0.7,1.6,1.6c0,0.9-0.7,1.6-1.6,1.6h-3
c-0.6,0-1.1-0.3-1.4-0.8L54.7,49H50l4.5,7.7h2.1c0.9,0,1.6,0.7,1.6,1.6c0,0.9-0.7,1.6-1.6,1.6h-3c-0.6,0-1.1-0.3-1.4-0.8L46.4,49
h-4.7l4.5,7.7h2.1c0.9,0,1.6,0.7,1.6,1.6c0,0.9-0.7,1.6-1.6,1.6h-3c-0.6,0-1.1-0.3-1.4-0.8l-6.3-10.9c-0.1,0-0.1,0-0.1-0.1
c-0.1-0.1-0.1-0.2-0.1-0.3c0-0.1,0-0.1,0-0.1c0-0.2,0-0.4,0-0.6c0-0.1,0-0.1,0-0.1c0-0.1,0.1-0.2,0.1-0.3l0.1-0.1l6.3-10.9
c0.3-0.5,0.8-0.8,1.4-0.8h3c0.9,0,1.6,0.7,1.6,1.6s-0.7,1.6-1.6,1.6h-2.1l-4.5,7.7h4.7l5.8-10.1c0.3-0.5,0.8-0.8,1.4-0.8h3
c0.9,0,1.6,0.7,1.6,1.6s-0.7,1.6-1.6,1.6h-2.1L50,45.8h4.7l5.8-10.1c0.3-0.5,0.8-0.8,1.4-0.8h3c0.9,0,1.6,0.7,1.6,1.6
s-0.7,1.6-1.6,1.6h-2.1l-4.5,7.7H63l5.7-10.3l0.1-0.1c0.1-0.1,0.1-0.1,0.2-0.2c0.1,0,0.1,0,0.1,0c0-0.1,0.1-0.2,0.2-0.2
c0.1,0,0.2-0.1,0.3-0.1c0.1,0,0.1,0,0.1,0c0.1-0.1,0.2-0.1,0.3-0.1s0.1,0,0.2,0h12.4c0.1,0,0.1,0,0.2,0c0.1,0.1,0.2,0.1,0.3,0.1
c0.1,0,0.1,0,0.1,0c0.1,0,0.2,0.1,0.3,0.1c0.1,0.1,0.1,0.1,0.2,0.2c0.1,0,0.1,0,0.1,0c0.1,0.1,0.1,0.1,0.2,0.2l0.1,0.1l6.3,10.9
c0.1,0.1,0.1,0.1,0.1,0.2C90.6,46.7,90.6,46.8,90.6,47C90.6,47,90.6,47,90.6,47z" />
<polygon points="74.8,53.6 72.9,56.8 80,56.8 78.2,53.6 " />
<polygon points="86.2,45.8 82.7,39.7 80.9,42.9 82.6,45.8 " />
<polygon points="66.6,49 70.2,55.2 72,52 70.3,49 " />
<polygon points="80.9,52 82.8,55.2 86.3,49.1 82.6,49.1 " />
<polygon points="78.2,50.4 79.9,47.5 78.2,44.6 74.8,44.6 73.1,47.5 74.8,50.4 " />
<polygon points="74.8,41.3 78.2,41.3 80,38.1 73,38.1 " />
</g>
<g fill="#344845">
<path d="M1,90.4h4v6.1h4.9v-6.1h4v16.1h-4v-6.8H5v6.8H1V90.4z" />
<path d="M20.8,90.4h4l5.4,16.1h-4l-1-3.1h-5.4l-1,3.1h-3.5L20.8,90.4z M20.8,100.5h3.5l-1.1-3.4
c-0.3-0.9-0.4-1.8-0.5-2.8h-0.1c-0.1,0.9-0.3,1.8-0.6,2.7L20.8,100.5z" />
<path d="M31.8,90.4h6.6c3.2,0,5.3,1.5,5.3,4.5c0,2-1.3,3.8-3.2,4.4c0.5,0.4,0.9,0.9,1.1,1.5c0.7,1.4,1.1,2.9,2.5,2.9
c0.2,0,0.4,0,0.6-0.1l-0.3,2.8c-0.5,0.1-1.1,0.2-1.6,0.2c-1.9,0-3-0.7-4.1-3.3c-0.5-1.1-1.1-3.2-2-3.2h-0.9v6.4h-4
C31.8,106.5,31.8,90.4,31.8,90.4z M35.8,93.3v4h1.4c1.1,0,2.5-0.4,2.5-2.1c0-1.4-0.9-1.9-2-1.9H35.8z" />
<path d="M44.4,90.4h4.1l3,9.1c0.3,1,0.4,1.9,0.5,2.9h0.1c0.1-1,0.3-1.9,0.5-2.9l3-9.1h3.6l-5.5,16.1H50L44.4,90.4z" />
<path d="M60.8,90.4h10.7v3h-6.7v3.5h5.6v3h-5.6v3.8h6.9v3H60.8V90.4z" />
<path d="M76.5,101.3c-0.3,1.3,0.2,2.8,2.7,2.8c1.7,0,2.2-0.7,2.2-1.6c0-1.3-1.3-1.7-2.9-2.2c-2.4-0.8-5.3-2-5.3-5.3
c0-3,2.3-4.8,6.3-4.8c4.8,0.1,6.2,2.9,5.7,5.4l-3.7,0.3c0.2-1.9-0.4-2.9-2.3-2.9c-1.3,0-2,0.5-2,1.5c0,1.3,1.3,1.7,2.9,2.3
c2.4,0.8,5.3,1.8,5.3,5.1c0,2.9-2.1,5-6.4,5c-3.9,0-6.6-1.8-6.1-5.3L76.5,101.3z" />
<path d="M86.4,90.4h12.9v3h-4.5v13.2h-4V93.4h-4.4V90.4z" />
<path d="M101,90.4h10.7v3H105v3.5h5.6v3H105v3.8h6.9v3H101V90.4z" />
<path d="M114,90.4h6.6c3.2,0,5.3,1.5,5.3,4.5c0,2-1.3,3.8-3.2,4.4c0.5,0.4,0.9,0.9,1.1,1.5c0.7,1.4,1.1,2.9,2.5,2.9
c0.2,0,0.4,0,0.6-0.1l-0.3,2.8c-0.5,0.1-1.1,0.2-1.6,0.2c-1.9,0-3-0.7-4.1-3.3c-0.5-1.1-1.1-3.2-2-3.2H118v6.4h-4V90.4z M118,93.3
v4h1.4c1.1,0,2.5-0.4,2.5-2.1c0-1.4-0.9-1.9-2-1.9H118z" />
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#00a580" d="M38.125 20.435c-3.558 0-6.507 2.847-6.507 6.406v40.565c0 3.559 2.949 6.508 6.507 6.508h51.85c3.56 0 6.508-2.95 6.508-6.508V26.942c0-3.558-2.949-6.507-6.507-6.507zm32.026 13.828h13.014c.102.102.202.101.304.101h.101c.102 0 .204.102.306.102l.202.202h.104l.202.205.101.101 6.406 11.082c.102.102.102.101.102.203.101.101.1.204.1.407v.71c0 .102-.1.205-.1.307 0 .101 0 .202-.203.202l-6.406 11.082-.101.102-.205.204h-.1a.218.218 0 0 1-.203.203c-.102 0-.103.1-.205.1 0 .103-.101.104-.101.104-.102.102-.306.101-.407.101h-12.81c-.102 0-.305-.1-.407-.1 0-.103-.101-.104-.101-.104-.102 0-.101-.101-.203-.101l-.204-.203h-.102l-.202-.204-.102-.102L63.034 48.7h-4.778l4.575 7.828h2.135c.915 0 1.626.713 1.626 1.628 0 .915-.71 1.626-1.626 1.626h-3.05c-.61 0-1.119-.305-1.424-.814L54.595 48.7h-4.778l4.575 7.828h2.135c.915 0 1.626.713 1.626 1.628 0 .915-.711 1.626-1.626 1.626h-3.05c-.61 0-1.119-.305-1.424-.814L46.158 48.7h-4.78l4.575 7.828h2.137c.915 0 1.626.713 1.626 1.628 0 .915-.711 1.626-1.626 1.626h-3.05c-.61 0-1.12-.305-1.424-.814L37.21 47.885c-.102 0-.101 0-.101-.101-.102-.102-.102-.202-.102-.304v-.814c0-.102.102-.204.102-.306l.101-.101 6.406-11.082a1.622 1.622 0 0 1 1.424-.813h3.05c.915 0 1.626.712 1.626 1.627s-.711 1.626-1.626 1.626h-2.137l-4.575 7.83h4.78l5.895-10.27a1.622 1.622 0 0 1 1.424-.813h3.05c.915 0 1.626.712 1.626 1.627s-.711 1.626-1.626 1.626h-2.135l-4.575 7.83h4.778l5.897-10.27a1.622 1.622 0 0 1 1.424-.813h3.05c.915 0 1.626.712 1.626 1.627s-.711 1.626-1.626 1.626h-2.135l-4.575 7.83h4.778l5.794-10.473.103-.101.203-.205h.101c0-.101.103-.202.205-.202.101 0 .202-.102.304-.102h.1c.103-.101.205-.1.307-.1zm3.05 3.354 1.83 3.255h3.456l1.83-3.255zm-2.848 1.626-3.66 6.204h3.763l1.728-2.95zm12.709 0-1.83 3.255 1.728 2.949h3.66zm-8.03 4.982-1.73 2.95 1.73 2.948h3.455l1.73-2.949-1.73-2.949zM66.694 48.7l3.66 6.303 1.83-3.253-1.728-3.05zm16.266.101-1.727 2.95 1.932 3.252 3.558-6.202zm-7.928 4.576-1.933 3.254h7.218l-1.83-3.254Z"/><path fill="#344845" d="M79.81 90.586c-4.068 0-6.407 1.83-6.407 4.88 0 3.355 2.95 4.576 5.39 5.39 1.626.508 2.948.914 2.948 2.235 0 .915-.51 1.627-2.238 1.627-2.541 0-3.049-1.524-2.744-2.846l-3.66.304c-.508 3.558 2.237 5.39 6.202 5.39 4.371 0 6.507-2.136 6.507-5.084 0-3.355-2.95-4.372-5.39-5.185-1.626-.61-2.948-1.017-2.948-2.339 0-1.017.712-1.525 2.033-1.525 1.932 0 2.543 1.017 2.34 2.949l3.76-.306c.509-2.542-.914-5.389-5.794-5.49zM0 90.79v16.368h4.067v-6.914h4.982v6.914h4.067V90.79H9.049v6.201H4.067V90.79Zm20.131 0-5.592 16.368h3.559l1.016-3.151h5.489l1.016 3.151h4.067L24.198 90.79zm11.183 0v16.368h4.067v-6.507h.914c.915 0 1.525 2.136 2.033 3.255 1.118 2.643 2.238 3.353 4.17 3.353.508 0 1.118-.1 1.626-.202l.304-2.848c-.203.102-.406.102-.61.102-1.423 0-1.83-1.524-2.541-2.947-.204-.61-.61-1.118-1.118-1.525 1.931-.61 3.252-2.44 3.252-4.474 0-3.05-2.134-4.575-5.387-4.575zm12.81 0 5.693 16.368h3.761L59.17 90.79h-3.66l-3.05 9.251c-.203 1.017-.407 1.932-.508 2.95h-.101c-.102-1.018-.204-1.933-.509-2.95l-3.05-9.251zm16.674 0v16.57h11.08v-3.05h-7.013v-3.862h5.693v-3.05h-5.693V93.84h6.81v-3.05zm26.027 0v3.05h4.473v13.42h4.067V93.84h4.575v-3.05zm14.843 0v16.57h11.082v-3.05h-7.016v-3.862h5.693v-3.05h-5.693V93.84h6.811v-3.05zm13.216 0v16.368h4.067v-6.507h.916c.915 0 1.525 2.136 2.033 3.255 1.118 2.643 2.236 3.353 4.168 3.353.508 0 1.118-.1 1.626-.202l.306-2.848c-.203.102-.406.102-.61.102-1.423 0-1.83-1.524-2.541-2.947-.204-.61-.612-1.118-1.12-1.525 1.931-.61 3.254-2.44 3.254-4.474 0-3.05-2.135-4.575-5.389-4.575zm-79.503 2.949h1.93c1.119 0 2.034.507 2.034 1.93 0 1.728-1.424 2.136-2.542 2.136H35.38zm83.57 0h1.932c1.119 0 2.034.507 2.034 1.93 0 1.728-1.424 2.136-2.542 2.136h-1.424zM21.96 94.755h.101c.102 1.017.203 1.931.508 2.846l1.12 3.457h-3.558l1.22-3.558c.304-.915.507-1.83.609-2.745z"/></svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -1,20 +1 @@
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" width="128px" height="128px" fill="#00A580">
<polygon points="76.4,60.9 79.7,55.1 76.1,48.9 69.2,60.9 " />
<polygon points="95.1,64 91.8,58.2 85.1,58.2 81.8,64 85.1,69.8 91.8,69.8 " />
<polygon points="76.4,67.1 69.2,67.1 76.1,79.1 79.7,72.8 " />
<polygon points="85,51.9 91.7,51.9 95.2,45.8 81.6,45.8 " />
<polygon points="100.5,67.1 97.1,72.9 100.7,79.2 107.7,67.1 " />
<polygon points="91.8,76 85.2,76 81.6,82.2 95.4,82.2 " />
<path d="M113.9,12.6H14.1C7.2,12.6,1.6,18.1,1.6,25v78c0,6.9,5.6,12.5,12.5,12.5h99.8c6.9,0,12.5-5.6,12.5-12.5V25.1
C126.4,18.2,120.8,12.6,113.9,12.6z M115.8,65.6l-12.3,21.3c-0.3,0.5-0.7,0.9-1.2,1.2c0,0,0,0,0,0c-0.1,0-0.2,0.1-0.2,0.1
c-0.2,0.1-0.5,0.2-0.7,0.2c-0.2,0-0.4,0.1-0.5,0.1H76.1c-0.3,0-0.5,0-0.7-0.1c-0.1,0-0.1,0-0.2,0c-0.2-0.1-0.4-0.2-0.6-0.3
c0,0,0,0,0,0c-0.5-0.3-0.8-0.7-1.1-1.1c0,0,0,0,0,0L62,67.1h-9.1l8.7,15.1h4.1c1.7,0,3.1,1.4,3.1,3.1c0,1.8-1.4,3.2-3.2,3.2h-5.9
c-1.1,0-2.1-0.6-2.7-1.6L45.7,67.1h-9.1l8.7,15.1h4.1c1.7,0,3.1,1.4,3.1,3.1c0,1.8-1.4,3.2-3.2,3.2h-5.9c-1.1,0-2.1-0.6-2.7-1.6
L29.4,67.1h-9.1L29,82.2h4c1.7,0,3.1,1.4,3.1,3.1c0.1,1.8-1.3,3.2-3.1,3.2h-5.9c-1.1,0-2.1-0.6-2.7-1.6L12.2,65.6
c-0.5-0.9-0.6-1.9-0.2-2.7c0-0.1,0.1-0.2,0.1-0.3c0,0,0-0.1,0-0.1l12.3-21.3c0.6-1,1.6-1.6,2.7-1.6H33c1.7,0,3.1,1.4,3.1,3.1
s-1.4,3.1-3.1,3.1h-4l-8.7,15.1h9.1l11.4-19.7c0.6-1,1.6-1.6,2.7-1.6h5.9c1.7,0,3.1,1.4,3.1,3.1s-1.4,3.1-3.1,3.1h-4.1l-8.7,15.1
h9.1l11.4-19.7c0.6-1,1.6-1.6,2.7-1.6h5.9c1.7,0,3.1,1.4,3.1,3.1s-1.4,3.1-3.1,3.1h-4.1l-8.7,15.1H62l11-19.1
c0.2-0.8,0.7-1.6,1.5-2c0.9-0.5,1.9-0.6,2.8-0.2h22.5c0.8-0.3,1.7-0.2,2.5,0.2c0.7,0.4,1.1,1,1.4,1.7l12.1,21c0,0,0,0,0,0.1
c0.1,0.1,0.1,0.3,0.2,0.4C116.4,63.9,116.3,64.8,115.8,65.6z" />
<polygon points="97.2,55.1 100.5,60.9 107.7,60.9 100.8,48.9 " />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" fill="#00A580" viewBox="0 0 128 128"><path d="M12.82 11.23C5.744 11.23 0 16.873 0 23.95v79.999c0 7.077 5.744 12.82 12.82 12.82h102.36c7.076 0 12.82-5.743 12.82-12.82V24.05c0-7.077-5.744-12.82-12.82-12.82Zm63.385 27.45c.488-.038.975.038 1.437.243h23.077c.82-.308 1.743-.204 2.564.206.718.41 1.126 1.025 1.434 1.743l12.412 21.538v.103c.102.102.101.308.204.41.41.923.308 1.846-.204 2.667l-12.616 21.846a3.531 3.531 0 0 1-1.23 1.23c-.103 0-.207.102-.207.102-.205.103-.512.207-.717.207-.205 0-.41.102-.513.102H76.41c-.308 0-.512 0-.717-.102h-.207l-.615-.309c-.512-.307-.82-.717-1.127-1.127L61.949 67.128h-9.333l8.922 15.487h4.205a3.198 3.198 0 0 1 3.18 3.18c0 1.847-1.436 3.282-3.282 3.282h-6.052c-1.128 0-2.153-.615-2.768-1.64L45.23 67.127h-9.334l8.924 15.487h4.205a3.197 3.197 0 0 1 3.18 3.18c0 1.847-1.436 3.282-3.282 3.282h-6.052c-1.128 0-2.155-.615-2.77-1.64L28.513 67.127h-9.332l8.922 15.487h4.102a3.197 3.197 0 0 1 3.18 3.18c.102 1.847-1.334 3.282-3.18 3.282h-6.051c-1.129 0-2.153-.615-2.769-1.64L10.871 65.59c-.512-.924-.614-1.948-.204-2.769 0-.102.102-.206.102-.308v-.103l12.616-21.846c.616-1.026 1.64-1.641 2.769-1.641h6.051a3.195 3.195 0 0 1 3.18 3.18 3.197 3.197 0 0 1-3.18 3.18h-4.102L19.18 60.77h9.332l11.693-20.206c.615-1.026 1.64-1.641 2.768-1.641h6.052a3.195 3.195 0 0 1 3.18 3.18 3.197 3.197 0 0 1-3.18 3.18H44.82L35.897 60.77h9.333l11.693-20.206c.615-1.026 1.642-1.641 2.77-1.641h6.05a3.197 3.197 0 0 1 3.18 3.18 3.198 3.198 0 0 1-3.18 3.18h-4.205L52.616 60.77h9.333L73.23 41.18c.205-.82.718-1.64 1.538-2.05.462-.257.95-.41 1.436-.45zm5.846 6.603 3.487 6.256h6.871L96 45.283zm-5.641 3.18L69.332 60.77h7.386l3.384-5.95zm25.334 0L98.05 54.82l3.386 5.95h7.383zM85.64 57.998l-3.383 5.95 3.383 5.95h6.873l3.384-5.95-3.384-5.95zm-16.308 9.129 7.078 12.308 3.692-6.46-3.384-5.848zm32.104 0-3.488 5.95 3.692 6.46 7.18-12.41zm-15.693 9.129-3.692 6.358h14.154l-3.692-6.358z"/></svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#00A580" d="M38.125 20.436c-3.558 0-6.506 2.845-6.506 6.404v40.566c0 3.559 2.948 6.508 6.506 6.508h51.852c3.558 0 6.505-2.95 6.505-6.508V26.941c0-3.558-2.947-6.505-6.505-6.505H38.125zM70.15 34.264h13.014c.102.101.203.101.305.101h.101c.102 0 .203.1.305.1l.203.203h.104l.203.205.101.102 6.405 11.082c.101.101.101.101.101.203.102.101.102.203.102.406v.711c0 .102-.102.203-.102.305 0 .101 0 .203-.203.203l-6.404 11.082-.102.101-.205.205h-.101c0 .102-.1.204-.202.204-.101 0-.103.1-.205.1 0 .1-.101.103-.101.103-.102.101-.305.101-.406.101H70.251c-.102 0-.305-.101-.406-.101 0-.102-.102-.104-.102-.104-.102 0-.101-.1-.203-.1l-.205-.203h-.102l-.2-.205-.102-.101-5.899-10.268h-4.777l4.576 7.828h2.135c.915 0 1.625.712 1.625 1.627s-.71 1.627-1.625 1.627h-3.051c-.61 0-1.119-.306-1.424-.814l-5.896-10.268h-4.78l4.577 7.828h2.134c.915 0 1.625.712 1.625 1.627s-.71 1.627-1.625 1.627h-3.05c-.61 0-1.12-.306-1.424-.814l-5.895-10.268h-4.78l4.575 7.828h2.137c.915 0 1.627.712 1.627 1.627s-.712 1.627-1.627 1.627h-3.05c-.61 0-1.12-.306-1.425-.814L37.21 47.885c-.102 0-.102 0-.102-.102-.101-.101-.101-.2-.101-.303v-.814c0-.102.101-.205.101-.307l.102-.1 6.404-11.083a1.62 1.62 0 0 1 1.424-.81h3.05c.916 0 1.628.71 1.628 1.624 0 .915-.712 1.627-1.627 1.627h-2.137l-4.574 7.83h4.78l5.894-10.271a1.62 1.62 0 0 1 1.424-.81h3.05c.915 0 1.625.71 1.625 1.624 0 .915-.71 1.627-1.625 1.627h-2.134l-4.577 7.83h4.78l5.896-10.271a1.62 1.62 0 0 1 1.424-.81h3.05c.916 0 1.626.71 1.626 1.624 0 .915-.71 1.627-1.625 1.627h-2.135l-4.576 7.83h4.777l5.795-10.472.104-.102.203-.205h.1c0-.102.103-.203.204-.203.102 0 .203-.1.305-.1h.102c.101-.101.203-.101.304-.101zm3.051 3.353 1.83 3.254h3.455l1.832-3.254h-7.117zm-2.847 1.627-3.66 6.203h3.763l1.727-2.949-1.83-3.254zm12.709 0-1.83 3.254 1.728 2.95h3.658l-3.556-6.204zm-8.032 4.98-1.728 2.95 1.728 2.949h3.455l1.73-2.95-1.73-2.948h-3.455zM66.693 48.7l3.66 6.303 1.83-3.252-1.726-3.05h-3.764zm16.268.102-1.729 2.949 1.932 3.252 3.559-6.201H82.96zm-7.93 4.574L73.1 56.631h7.218l-1.832-3.256h-3.455zm4.778 37.21c-4.067 0-6.407 1.832-6.407 4.882 0 3.355 2.95 4.575 5.391 5.388 1.627.509 2.947.915 2.947 2.237 0 .915-.508 1.625-2.236 1.625-2.542 0-3.05-1.522-2.744-2.844l-3.66.303c-.509 3.558 2.236 5.388 6.2 5.388 4.372 0 6.509-2.133 6.509-5.082 0-3.355-2.951-4.372-5.391-5.185-1.627-.61-2.947-1.018-2.947-2.34 0-1.017.711-1.523 2.033-1.523 1.932 0 2.541 1.015 2.338 2.947l3.762-.305c.508-2.542-.915-5.388-5.795-5.49zM0 90.79v16.37h4.066v-6.915H9.05v6.914h4.066V90.79H9.05v6.203H4.066V90.79H0zm20.13 0-5.59 16.37h3.558l1.017-3.153h5.489l1.015 3.152h4.067L24.197 90.79h-4.066zm11.184 0v16.37h4.067v-6.509h.914c.915 0 1.525 2.138 2.033 3.256 1.118 2.644 2.238 3.354 4.17 3.354.508 0 1.119-.102 1.627-.203l.303-2.848c-.204.102-.406.102-.61.102-1.423 0-1.829-1.524-2.54-2.948-.204-.61-.611-1.118-1.12-1.525 1.932-.61 3.254-2.44 3.254-4.473 0-3.05-2.135-4.576-5.389-4.576h-6.709zm12.811 0 5.691 16.37h3.762l5.592-16.37h-3.66l-3.05 9.252c-.202 1.017-.407 1.933-.509 2.95h-.101c-.102-1.017-.203-1.933-.508-2.95l-3.049-9.252h-4.168zm16.674 0v16.572h11.08v-3.05h-7.014v-3.862h5.694V97.4h-5.694v-3.56h6.81v-3.05H60.8zm26.025 0v3.05H91.3v13.42h4.066V93.84h4.574v-3.05H86.824zm14.844 0v16.572h11.082v-3.05h-7.016v-3.862h5.694V97.4h-5.694v-3.56h6.81v-3.05h-10.876zm13.217 0v16.37h4.066v-6.509h.916c.915 0 1.525 2.138 2.033 3.256 1.119 2.644 2.237 3.354 4.168 3.354.509 0 1.117-.102 1.625-.203l.307-2.848c-.203.102-.406.102-.61.102-1.423 0-1.829-1.524-2.54-2.948-.204-.61-.613-1.118-1.121-1.525 1.931-.61 3.253-2.44 3.253-4.473 0-3.05-2.135-4.576-5.388-4.576h-6.71zM35.38 93.74h1.93c1.118 0 2.033.506 2.033 1.929 0 1.728-1.423 2.137-2.541 2.137H35.38v-4.067zm83.57 0h1.932c1.118 0 2.033.506 2.033 1.929 0 1.728-1.423 2.137-2.541 2.137h-1.424v-4.067zm-96.99 1.015h.102c.101 1.017.204 1.93.51 2.846l1.118 3.457h-3.558L21.35 97.5c.305-.915.507-1.83.609-2.744z"/></svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#dc514a" d="M63.793.432v.011a80.38 80.38 0 0 0-2.43-.004C46.716.691 32.73 5.05 20.684 16.184c-26.88 24.862-27.679 67.44-1.715 93.22 4.67 4.636 10.23 8.933 16.37 11.562l.512.22.008-.024c34.056 17.25 76.862-2.058 89.013-37.31 5.173-15.006 3.774-33.062-3.06-48.408-6.78-15.227-18.952-27.783-35.415-31.956v-.103l-.386-.09C78.723 1.633 71.44.58 64.299.442Zm-2.415 1a79.944 79.944 0 0 1 2.901.004h.033c6.922.137 13.997 1.16 21.093 2.76v.044l.378.093c16.31 3.986 28.388 16.386 35.125 31.514 6.736 15.128 8.102 32.962 3.027 47.682-12.016 34.862-54.588 53.945-88.162 36.51l-.533-.276-.012.038c-5.78-2.578-11.085-6.66-15.56-11.103-25.57-25.387-24.781-67.3 1.692-91.785C33.218 5.948 46.917 1.68 61.378 1.431ZM40.164 18.986v.496c0 9.216-1.235 18.558-1.982 27.83-.074.75-.154 1.514-.225 2.266-.138 1.427-.653 3.808-.92 6.16-.268 2.353-.345 4.7.656 6.239 1.542 2.373 3.791 3.188 6.088 3.3 2.297.112 4.687-.416 6.756-.666 6.986-.842 15.661-1.414 21.397 3.03 4.756 3.683 6.001 9.382 4.712 14.62-1.29 5.236-5.132 9.947-10.52 11.555-5.594 1.67-10.498 1.071-15.382-.193-4.884-1.265-9.73-3.208-15.12-4.163l-.584-.103v.591c0 1.43-.31 3.845-.414 6.212-.104 2.366-.054 4.701.936 6.176.088.132.177.214.265.306l.027.34.353.075c1.435 1.009 3.443 1.517 4.73 1.878v.002c5.33 1.49 10.857 2.207 16.38 2.207a73.05 73.05 0 0 0 3.79-.104c3.555-.033 7.11-.513 10.649-1.642h.002c3.83-1.086 7.475-2.78 10.669-5.366 5.697-4.612 9.002-12.005 9.668-19.6.667-7.593-1.303-15.417-6.267-20.887-3.557-3.925-8.35-6.329-13.43-7.525-7.22-1.697-13.9-.506-20.952.085l1.628-20.218H86.03v-12.9Zm.967.992H85.04v10.917H52.16L50.364 53.19l.58-.046c7.339-.576 14.045-1.847 21.225-.16 4.928 1.161 9.528 3.482 12.922 7.227 4.735 5.218 6.66 12.772 6.014 20.136-.647 7.365-3.864 14.51-9.302 18.913-3.073 2.488-6.589 4.127-10.318 5.184l-.008.003-.008.001c-3.437 1.1-6.892 1.567-10.37 1.6h-.023a71.87 71.87 0 0 1-3.758.104c-5.438 0-10.876-.707-16.113-2.172v.001c-1.309-.366-3.223-.898-4.41-1.722l-.003-.031-.124-.128a2.82 2.82 0 0 1-.28-.316v-.002c-.704-1.05-.873-3.272-.772-5.58.09-2.077.322-4.078.374-5.628 5.046.966 9.714 2.77 14.506 4.01 4.968 1.286 10.104 1.916 15.913.182 5.771-1.722 9.834-6.723 11.2-12.27 1.366-5.546.016-11.701-5.066-15.637-6.147-4.762-15.1-4.08-22.126-3.233-2.14.259-4.48.762-6.588.66-2.108-.104-3.938-.749-5.302-2.85v-.002c-.714-1.096-.764-3.299-.504-5.583.26-2.284.773-4.626.922-6.179v-.002c.072-.748.15-1.513.225-2.269v-.008c.732-9.074 1.919-18.273 1.962-27.415z"/></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -1,5 +1 @@
<svg width="128" height="128" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg">
<path style="fill:#dc514a;fill-opacity:1;fill-rule:nonzero;stroke:none" d="M107.92 41.516c-4.688-.09-9.16 1.147-12.986 4.683-8.004 7.406-8.243 20.082-.512 27.762 1.394 1.383 3.05 2.66 4.867 3.437.476-1.597.383-3.527.232-5.423-.035-.038-.071-.074-.1-.116-.507-.754-.132-2.734-.132-3.632 3.2.566 5.8 2.324 9.223 1.304 3.347-1 4.746-5.827 1.793-8.117-1.782-1.379-4.43-1.191-6.532-.937-1.26.152-2.84.617-3.71-.727-.517-.789.015-2.73.101-3.625l.078-.777c.224-2.748.586-5.522.586-8.27h13.578v-4.71c-2.18-.498-4.355-.812-6.486-.852z"/>
<path style="fill:#23a161;fill-opacity:1;fill-rule:nonzero;stroke:none" d="M114.205 42.433v8.282h-9.864l-.511 6.37c2.188-.172 4.215-.558 6.402-.042 1.5.35 2.906 1.058 3.95 2.207 2.905 3.203 2.331 9.214-1.005 11.918-.945.766-2.027 1.267-3.17 1.588a10.59 10.59 0 0 1-3.119.476c-.381.02-.762.033-1.14.033a18.16 18.16 0 0 1-4.868-.656c-.398-.112-1.018-.27-1.41-.56l-.254-.057-.129 5.348c10.164 5.39 23.117-.375 26.762-10.953 3.082-8.941-1.691-21.606-11.644-23.954z"/>
<path style="fill:#737373;fill-opacity:1;fill-rule:nonzero;stroke:none" d="M64.84 66.793c-1.332.52-.98 4.012.762 3.375 1.527-.559 1.027-4.074-.762-3.375m-56.75.285v20.895c0 2.472.707 6.332-.95 8.406-1.562 1.96-3.859 1.238-5.968 1.148 0 .442-.149 1.211.129 1.582.515.692 2.203.457 2.945.457 2.41-.004 4.664-1.12 5.36-3.566.89-3.145.402-6.824.402-10.066V67.078H8.09m8.707 0v13.633c0 2.789-.238 5.71 1.074 8.281 3.117 6.11 14.004 6.008 17.29.125 1.425-2.555 1.234-5.582 1.234-8.406V67.078h-2.047V80.84c0 2.484.312 5.125-.938 7.387-2.68 4.855-11.238 4.683-13.758-.254-1.199-2.348-.933-5.098-.933-7.645v-13.25zm53.031 8.282h2.82v11.464c0 1.864-.054 4.067 1.415 5.465 1.742 1.66 4.53 1.215 6.652.777V91.54c-1.48.063-3.258.68-4.61-.215-1.535-1.02-1.539-2.992-1.539-4.625V75.36h5.637v-1.656h-5.637v-4.586c-2.136.008-.984 2.93-2.015 4.153-.989 1.175-2.719.085-2.723 2.09M44.852 76.38h-.13l-.257-2.676H42.8v19.363h1.922v-9.043c0-2.117-.07-4.332 1-6.242 1.699-3.047 7.523-3.89 9.68-.89 1.066 1.488.976 3.73.976 5.476v10.7h1.793v-10.7c0-2.082.172-4.351-.883-6.242-2.184-3.906-10.414-3.79-12.437.254m19.468-2.676v19.363h1.922V73.703Zm0 0" transform="translate(0 -20)"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#dc514a" d="M108.79 44.601c-4.777-.092-9.332 1.169-13.23 4.77-8.154 7.546-8.398 20.46-.522 28.283 1.42 1.41 3.107 2.71 4.959 3.502.485-1.627.39-3.593.236-5.525-.036-.039-.072-.075-.102-.118-.516-.768-.134-2.785-.134-3.7 3.26.576 5.908 2.367 9.395 1.328 3.41-1.019 4.835-5.936 1.827-8.269-1.815-1.405-4.513-1.213-6.654-.954-1.284.154-2.894.628-3.78-.741-.527-.804.015-2.781.103-3.693l.08-.792c.228-2.8.596-5.625.596-8.425h13.833V45.47c-2.221-.507-4.437-.827-6.608-.868z"/><path fill="#23a161" d="M115.192 45.535v8.438h-10.049l-.52 6.489c2.229-.175 4.294-.569 6.522-.043 1.528.357 2.96 1.078 4.024 2.249 2.96 3.263 2.374 9.386-1.024 12.14-.963.781-2.065 1.292-3.23 1.619a10.789 10.789 0 0 1-3.177.485c-.388.02-.776.033-1.161.033a18.5 18.5 0 0 1-4.96-.668c-.405-.114-1.037-.275-1.436-.57l-.259-.059-.131 5.449c10.354 5.49 23.55-.382 27.263-11.159 3.14-9.108-1.722-22.01-11.862-24.403z"/><path fill="#737373" d="M64.902 49.977c-1.357.53-.998 4.087.776 3.438 1.556-.57 1.047-4.15-.776-3.438m-57.814.29v21.287c0 2.518.72 6.45-.968 8.564-1.59 1.996-3.93 1.26-6.08 1.17 0 .45-.151 1.233.132 1.61.525.706 2.244.466 3 .466 2.455-.004 4.752-1.14 5.46-3.633.907-3.204.41-6.952.41-10.254v-19.21H7.088m8.87 0v13.889c0 2.841-.242 5.817 1.095 8.436 3.175 6.225 14.266 6.12 17.614.128 1.451-2.604 1.257-5.687 1.257-8.564V50.267h-2.086v14.02c0 2.53.318 5.221-.955 7.526-2.73 4.946-11.449 4.77-14.016-.259-1.221-2.392-.95-5.193-.95-7.788V50.267Zm54.025 8.438h2.873v11.679c0 1.898-.055 4.143 1.442 5.567 1.774 1.691 4.615 1.238 6.776.792v-1.555c-1.507.064-3.319.693-4.696-.22-1.564-1.038-1.568-3.047-1.568-4.71V58.704h5.743v-1.687H74.81v-4.672c-2.176.008-1.002 2.985-2.053 4.23-1.007 1.198-2.77.087-2.774 2.13M44.54 59.744h-.132l-.262-2.726H42.45v19.726h1.958V67.53c0-2.157-.071-4.413 1.019-6.359 1.73-3.104 7.664-3.963 9.861-.907 1.086 1.516.994 3.8.994 5.579v10.9h1.827v-10.9c0-2.121.175-4.433-.9-6.359-2.225-3.98-10.609-3.861-12.67.259m19.833-2.726v19.725h1.958V57.016Zm0 0"/></svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -1,4 +1 @@
<svg width="128" height="128" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg">
<path style="fill:#dc514a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.99684" d="M64.166 2.191c-15.303-.292-29.9 3.746-42.39 15.293-26.137 24.174-26.915 65.564-1.67 90.63 4.544 4.512 9.952 8.686 15.89 11.228 1.551-5.215 1.249-11.511.758-17.7-.118-.122-.24-.243-.33-.378-1.659-2.473-.428-8.929-.428-11.866 10.436 1.85 18.936 7.59 30.108 4.256 10.933-3.263 15.49-19.03 5.851-26.494-5.821-4.51-14.457-3.895-21.322-3.068-4.123.498-9.271 2.02-12.117-2.365-1.68-2.581.054-8.916.336-11.836.07-.736.147-1.486.22-2.225.731-9.068 1.944-18.234 1.944-27.307H85.34V4.975C78.224 3.35 71.122 2.325 64.166 2.19z"/>
<path style="display:inline;fill:#23a161;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.998488" d="M84.982 4.947v27.08H52.729l-1.676 20.827c7.157-.561 13.792-1.824 20.944-.143 4.903 1.155 9.505 3.47 12.91 7.227C94.41 70.41 92.54 90.068 81.63 98.9c-3.07 2.486-6.578 4.119-10.282 5.169-3.42 1.093-6.856 1.556-10.304 1.588a70.94 70.94 0 0 1-3.708.104c-5.37 0-10.741-.698-15.917-2.146-1.316-.369-3.352-.882-4.632-1.84-.271-.058-.543-.121-.814-.18l-.417 17.497c33.24 17.626 75.585-1.233 87.508-35.825 10.079-29.233-5.53-70.647-38.082-78.32Z"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#dc514a" d="M64.293.43C48.553.13 33.537 4.285 20.69 16.163c-26.885 24.866-27.686 67.44-1.718 93.224 4.674 4.641 10.237 8.935 16.345 11.55 1.595-5.365 1.285-11.841.78-18.207-.122-.126-.247-.25-.34-.39-1.706-2.543-.44-9.184-.44-12.205 10.735 1.903 19.478 7.808 30.97 4.378 11.246-3.356 15.933-19.575 6.018-27.252-5.987-4.64-14.87-4.007-21.932-3.156-4.24.512-9.536 2.078-12.464-2.433-1.728-2.655.056-9.171.346-12.175.072-.757.151-1.528.226-2.288.752-9.328 2-18.756 2-28.09h45.593V3.295C78.754 1.623 71.449.57 64.294.43Z"/><path fill="#23a161" d="M85.705 3.266V31.12H52.53l-1.724 21.423c7.362-.577 14.187-1.876 21.544-.147 5.043 1.188 9.777 3.57 13.28 7.434 9.774 10.772 7.85 30.992-3.372 40.077-3.158 2.557-6.766 4.237-10.576 5.317-3.518 1.125-7.052 1.6-10.599 1.634a72.97 72.97 0 0 1-3.814.107c-5.524 0-11.049-.718-16.373-2.208-1.354-.38-3.448-.907-4.764-1.893-.28-.06-.559-.124-.838-.185l-.429 17.998c34.192 18.13 77.75-1.268 90.013-36.85 10.368-30.07-5.688-72.67-39.172-80.562z"/></svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#dc514a" d="M107.897 44.6c-4.45.076-8.682 1.394-12.337 4.771-8.153 7.545-8.397 20.46-.52 28.283 1.366 1.357 2.981 2.609 4.751 3.407v.035c10.355 5.49 23.55-.382 27.264-11.158 3.118-9.047-1.66-21.83-11.659-24.348v-.121c-2.22-.508-4.436-.827-6.607-.867a24.596 24.596 0 0 0-.892-.002zm-42.669 5.293a1.347 1.347 0 0 0-.326.084c-1.357.53-.999 4.088.776 3.439 1.458-.534 1.103-3.715-.45-3.523zm-58.14.375v21.287c0 2.518.721 6.45-.967 8.562-1.591 1.997-3.932 1.262-6.08 1.17 0 .45-.152 1.233.13 1.611.525.705 2.245.467 3 .467 2.456-.004 4.753-1.14 5.462-3.633.906-3.204.41-6.953.41-10.255v-19.21H7.088zm8.87 0v13.888c0 2.841-.242 5.817 1.095 8.436 3.175 6.224 14.265 6.12 17.613.127 1.452-2.603 1.258-5.686 1.258-8.563V50.268h-2.086v14.019c0 2.53.318 5.221-.955 7.525-2.73 4.946-11.449 4.772-14.016-.257-1.221-2.392-.951-5.195-.951-7.79V50.268h-1.957zm85.606 0h13.627v3.705h-10.048l-.52 6.49c2.23-.175 4.294-.569 6.522-.043 1.528.356 2.96 1.077 4.023 2.248 2.96 3.263 2.375 9.386-1.024 12.14-.962.78-2.063 1.29-3.228 1.618a10.789 10.789 0 0 1-3.178.486c-.388.02-.777.033-1.162.033a18.5 18.5 0 0 1-4.959-.668c-.388-.109-.976-.265-1.377-.537l-.008-.11c-.035-.038-.072-.074-.101-.116-.517-.769-.135-2.787-.135-3.702 3.26.577 5.91 2.368 9.397 1.329 3.41-1.02 4.834-5.935 1.826-8.268-1.816-1.405-4.513-1.214-6.655-.955-1.283.155-2.893.629-3.779-.74-.526-.804.016-2.782.104-3.694l.078-.79c.228-2.8.597-5.627.597-8.426zm-26.753 2.078c-2.177.008-1.003 2.984-2.053 4.23-1.008 1.197-2.77.086-2.774 2.13h2.871v11.677c0 1.899-.055 4.144 1.442 5.568 1.775 1.691 4.616 1.237 6.777.791v-1.555c-1.507.065-3.318.694-4.695-.218-1.564-1.04-1.569-3.048-1.569-4.711V58.705h5.743v-1.687H74.81v-4.672zm-23.999 4.232c-2.631.047-5.242 1.106-6.273 3.166h-.133l-.262-2.726H42.45v19.726h1.957v-9.213c0-2.157-.07-4.413 1.02-6.36 1.73-3.103 7.664-3.962 9.861-.906 1.086 1.516.994 3.8.994 5.579v10.9h1.826v-10.9c0-2.121.177-4.433-.898-6.36-1.113-1.99-3.765-2.953-6.397-2.906zm15.518.438-1.959.002v19.726h1.96V57.016z"/></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#dc514a" d="M61.352.428C46.685.68 32.734 5.027 20.69 16.162c-26.886 24.866-27.685 67.441-1.717 93.225 4.674 4.64 10.235 8.934 16.343 11.549l.008-.032c34.122 17.719 77.343-1.652 89.553-37.076 10.329-29.957-5.574-72.342-38.803-80.463v-.07C78.754 1.623 71.448.569 64.293.43v.002a81.047 81.047 0 0 0-2.941-.004zM40.48 19.119h45.224v12.002H52.529l-1.724 21.424c7.362-.577 14.188-1.878 21.545-.149 5.043 1.188 9.776 3.57 13.279 7.434 9.775 10.772 7.851 30.993-3.371 40.078-3.158 2.557-6.766 4.237-10.576 5.317-3.518 1.124-7.053 1.602-10.6 1.634a72.97 72.97 0 0 1-3.814.106c-5.524 0-11.05-.718-16.373-2.207-1.354-.38-3.448-.907-4.764-1.893l-.026-.006-.007-.13c-.122-.126-.248-.25-.34-.39-1.707-2.543-.442-9.183-.442-12.204 10.735 1.903 19.48 7.806 30.971 4.377 11.246-3.357 15.933-19.575 6.018-27.252-5.988-4.64-14.87-4.007-21.932-3.156-4.241.512-9.535 2.078-12.463-2.432-1.728-2.655.054-9.172.344-12.176.072-.757.151-1.529.226-2.289.752-9.327 2-18.755 2-28.088z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.2 KiB

1
icons/k3os/k3os-line.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#fd824e" d="M13.876 11.504C6.205 11.504 0 17.816 0 25.483v77.034c0 7.667 6.21 13.874 13.971 13.98h100.052c7.667 0 13.872-6.21 13.977-13.972v-77.05c-.105-7.663-6.305-13.971-13.977-13.971Zm0 .992h100.147c7.128 0 12.887 5.856 12.985 12.992v77.03c-.101 7.237-5.854 12.986-12.985 12.986H13.977C6.74 115.402.992 109.647.992 102.517V25.483c0-7.133 5.756-12.987 12.884-12.987zm52.052 12.14c-4.933-.74-10.076 1.454-12.843 5.959-3.689 6.008-1.788 13.922 4.22 17.61l.755.464V37.24c0-3.283 2.6-5.882 5.876-5.788h.014a5.851 5.851 0 0 1 5.89 5.89V48.75l.747-.44a12.16 12.16 0 0 0 4.332-4.331c3.682-6.007 1.782-13.914-4.223-17.601a12.694 12.694 0 0 0-4.768-1.742Zm-.15.976c1.516.229 3.011.76 4.398 1.61 5.548 3.408 7.298 10.697 3.892 16.245l-.002.004-.002.006c-.81 1.376-1.94 2.486-3.233 3.401v-9.537a6.866 6.866 0 0 0-6.876-6.88c-3.815-.104-6.887 2.97-6.887 6.78v9.414c-4.843-3.607-6.355-10.299-3.136-15.54 2.555-4.162 7.294-6.187 11.845-5.503zm-1.828 8.091c-1.89 0-3.536 1.54-3.537 3.535l-.103 26.559c0 1.89 1.543 3.536 3.539 3.536 1.89 0 3.535-1.54 3.537-3.534l.1-26.559c0-1.89-1.54-3.536-3.536-3.536zm0 .993c1.45 0 2.544 1.191 2.544 2.544l-.1 26.557c0 1.45-1.192 2.544-2.545 2.544a2.55 2.55 0 0 1-2.547-2.542v-.002l.103-26.557c0-1.45 1.191-2.544 2.545-2.544zm8.062 38.831a3.454 3.454 0 0 0-3.526 1.787c-1.033 1.738-.436 3.89 1.29 4.924l.003.002 23.095 13.268c1.654 1.063 3.897.47 4.847-1.281 1.053-1.659.458-3.903-1.302-4.843L73.34 74.024l-.004-.003a3.336 3.336 0 0 0-1.325-.494zm-16.372.045c-.46.057-.92.2-1.351.43l-.008.004L31.362 87.29l-.004.002c-1.737 1.042-2.217 3.19-1.296 4.916l.006.012.006.01c1.042 1.737 3.19 2.219 4.916 1.298l.008-.004L57.9 80.25c1.768-.943 2.356-3.201 1.307-4.95-.782-1.302-2.185-1.9-3.566-1.728zm15.252.99a2.387 2.387 0 0 1 1.912.297l.01.006 23.128 13.389.008.004c1.273.679 1.686 2.273.93 3.45l-.01.017-.01.017c-.679 1.273-2.272 1.69-3.45.932l-.01-.007-23.113-13.28-.002-.001c-1.31-.788-1.724-2.276-.944-3.576l.008-.01.006-.011a2.455 2.455 0 0 1 1.536-1.227zm-14.138.031c.637.158 1.21.565 1.6 1.217.776 1.293.351 2.885-.922 3.564l-.007.006-.008.004-22.894 13.27c-1.31.698-2.802.368-3.587-.923-.693-1.312-.365-2.808.934-3.587l22.888-13.266c.656-.35 1.359-.443 1.996-.285zm-23.518 3.1c-7.057 0-12.862 5.703-12.862 12.863 0 7.063 5.805 12.762 12.862 12.762h.008c6.947-.105 12.649-5.594 12.754-12.55l.012-.875-9.876 5.706h-.002l-.002.002c-2.807 1.588-6.452.652-8.037-2.145-1.591-2.808-.655-6.455 2.143-8.041l.002-.002 9.884-5.71-.765-.426a12.6 12.6 0 0 0-6.12-1.583zm61.427 0a12.6 12.6 0 0 0-6.12 1.584l-.766.427 9.882 5.709.002.002c2.799 1.586 3.736 5.233 2.145 8.04-1.586 2.8-5.233 3.735-8.04 2.144l-9.878-5.705.013.874c.106 6.956 5.806 12.55 12.762 12.55h.008c7.053-.105 12.854-5.8 12.854-12.863 0-7.062-5.804-12.761-12.862-12.761zm-61.427.993c1.63 0 3.234.422 4.748 1.105l-8.24 4.761c-3.28 1.862-4.368 6.12-2.513 9.392 1.86 3.283 6.12 4.374 9.393 2.52l.002-.003 8.165-4.717c-.616 5.916-5.48 10.488-11.558 10.582-6.523-.002-11.867-5.251-11.867-11.77 0-6.625 5.346-11.87 11.87-11.87zm61.427 0c6.525 0 11.87 5.25 11.87 11.77 0 6.518-5.347 11.77-11.874 11.87-6.07-.002-10.936-4.655-11.55-10.582l8.164 4.717.002.002c3.274 1.856 7.533.764 9.394-2.52 1.854-3.272.766-7.53-2.514-9.39l-.004-.003-8.238-4.76c1.515-.682 3.12-1.104 4.75-1.104z"/></svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@@ -1,25 +1 @@
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" width="128px" height="128px">
<g fill="#384745">
<path d="M16.4,97.6h7.1v8c0,0.9-0.1,2.2-0.2,3.2h0.2c0.5-0.9,1.1-1.8,1.8-2.7l7-8.5h7.6l-9.3,11.2l9.8,17.4h-8.1
l-6.6-12l-2.1,2.6v9.4h-7.1V97.6z" />
<path d="M47.2,117.2c-0.8,2.8,0.8,4.5,3.2,4.5c2.7,0,4-2.1,4-5.1c0-3.2-1.6-4.5-3.8-4.5c-1.3,0-2.6,0.5-3.5,1.4
l-3.1-3.3l8.9-7.3H42.4v-5.3H60v5.6l-6.8,5.6c4.3-0.4,8.4,2.4,8.4,7.9c0,6-4.9,10-11,10c-5.8,0-10.7-3.6-9.4-8.6L47.2,117.2z" />
<path d="M64.5,111.8c0-10.1,4.9-14.2,11.5-14.2c6.6,0,11.3,4,11.3,14.2c0,11.2-4.9,15-11.3,15
C69.4,126.7,64.5,122.7,64.5,111.8z M84.1,111.8c0-9.1-3.7-11.9-8.3-11.9c-4.5,0-8.2,2.8-8.2,11.9c0,9.9,3.7,12.6,8.2,12.6
C80.5,124.4,84.1,121.6,84.1,111.8z" />
<path d="M95.1,117.6c-0.2,0.5-0.3,1.1-0.3,1.6c0,3,2.5,4.9,7.1,4.9c5,0,6.6-2.4,6.6-4.8c0-2.9-2.2-4.4-6.2-5.7
c-3.9-1.3-9.5-2.5-9.5-8.5c0-4.5,3.5-7.5,9.5-7.5c6,0,9.2,2.9,9.2,7.7c0,0.5,0,0.9-0.1,1.4l-3.1,0.3c0.1-0.5,0.1-1.1,0.1-1.6
c0-3.9-2.4-5.5-6.2-5.5c-4.5,0-6.2,2.4-6.2,4.9c0,3.7,3.2,4.7,6.8,5.9c4.3,1.4,9,2.9,9,8.3c0,4.2-3.3,7.8-9.9,7.8
c-5.5,0-9.8-2.5-9.8-7.2c0-0.5,0.1-1,0.2-1.5L95.1,117.6z" />
</g>
<path fill="#FD824E" d="M103,1.3H25c-5.8,0-10.5,4.7-10.5,10.5v60.1c0,5.8,4.7,10.5,10.5,10.5H103c5.8,0,10.5-4.7,10.5-10.5V11.8
C113.5,6,108.8,1.3,103,1.3z M40,72.1c-5.3,0-9.6-4.3-9.6-9.6s4.3-9.6,9.6-9.6c0,0,0,0,0,0c1.6,0,3.2,0.4,4.6,1.2l-7.1,4.1
c-2.4,1.4-3.2,4.4-1.8,6.8c1.4,2.4,4.4,3.2,6.8,1.8c0,0,0,0,0,0l7.1-4.1C49.5,67.9,45.3,72.1,40,72.1z M59.1,54.2L41.3,64.6
c-1.1,0.7-2.6,0.3-3.3-0.9c-0.7-1.1-0.3-2.6,0.9-3.3L56.7,50c1.1-0.7,2.6-0.3,3.3,0.9C60.7,52,60.3,53.5,59.1,54.2z M59,21l0,8.2
c-4.5-2.8-5.9-8.7-3.2-13.2c2.8-4.5,8.7-5.9,13.2-3.2c4.5,2.8,5.9,8.7,3.2,13.2c-0.8,1.3-1.9,2.4-3.2,3.2l0-8.2c0-2.8-2.2-5-5-5
C61.3,16,59,18.2,59,21C59,21,59,21,59,21L59,21z M66.3,41.7c0,1.3-1.1,2.4-2.4,2.4h0c-1.3,0-2.4-1.1-2.4-2.4L61.6,21
c0-1.3,1.1-2.4,2.4-2.4h0c1.3,0,2.4,1.1,2.4,2.4L66.3,41.7z M67.9,50.9c0.7-1.1,2.1-1.5,3.3-0.9c0,0,0,0,0,0l18,10.4
c1.1,0.7,1.5,2.1,0.9,3.3c-0.7,1.1-2.1,1.5-3.3,0.9l0,0l-18-10.4C67.6,53.5,67.2,52,67.9,50.9C67.9,50.9,67.9,50.9,67.9,50.9
L67.9,50.9z M88,72.1c-5.2,0-9.5-4.2-9.6-9.4l7.1,4.1c2.4,1.4,5.4,0.6,6.8-1.8c1.4-2.4,0.6-5.4-1.8-6.8l-7.1-4.1
c1.4-0.8,3-1.2,4.6-1.2c5.3,0,9.6,4.3,9.6,9.6C97.6,67.8,93.3,72.1,88,72.1C88,72.1,88,72.1,88,72.1L88,72.1z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#384745" d="M15.451 98.219v29.17h7.242V117.8l2.143-2.653 6.73 12.24h8.262l-9.996-17.747 9.486-11.422h-7.752l-7.138 8.668a21.52 21.52 0 0 0-1.836 2.754h-.205c.102-1.02.205-2.346.205-3.264v-8.158h-7.14zm26.416 0v5.404h10.71l-9.077 7.445 3.162 3.368c.918-.918 2.243-1.428 3.569-1.428 2.243 0 3.876 1.326 3.876 4.59 0 3.06-1.326 5.2-4.08 5.2-2.447 0-4.08-1.733-3.263-4.589l-6.12.918c-1.325 5.1 3.67 8.771 9.587 8.771 6.221 0 11.22-4.08 11.22-10.199 0-5.61-4.182-8.466-8.568-8.058l6.935-5.711v-5.711h-17.95zm34.27 0c-6.732 0-11.729 4.181-11.729 14.482 0 11.117 4.997 15.197 11.729 15.299 6.527 0 11.525-3.876 11.525-15.299 0-10.403-4.794-14.482-11.525-14.482zm26.824 0c-6.12 0-9.69 3.059-9.69 7.648 0 6.12 5.712 7.344 9.69 8.67 4.08 1.326 6.324 2.857 6.324 5.815 0 2.447-1.633 4.894-6.732 4.894-4.692 0-7.24-1.938-7.24-4.998 0-.51.1-1.12.304-1.63l-2.855.509c-.102.51-.203 1.02-.203 1.53 0 4.793 4.384 7.343 9.994 7.343 6.731 0 10.097-3.671 10.097-7.955 0-5.508-4.794-7.037-9.18-8.465-3.671-1.224-6.935-2.244-6.935-6.018 0-2.55 1.735-4.997 6.324-4.997 3.876 0 6.323 1.631 6.323 5.609 0 .51 0 1.12-.102 1.63l3.162-.304c.102-.51.102-.918.102-1.428 0-4.895-3.264-7.853-9.383-7.853zm-27.027 2.345c4.691 0 8.464 2.856 8.464 12.137 0 9.995-3.67 12.852-8.464 12.852-4.59 0-8.364-2.755-8.364-12.852 0-9.281 3.774-12.137 8.364-12.137z"/><path fill="#fd824e" d="M103.777 0H24.223c-5.915 0-10.709 4.794-10.709 10.71v61.296c0 5.916 4.794 10.71 10.71 10.71h79.553c5.915 0 10.71-4.794 10.71-10.71V10.71C114.485 4.794 109.691 0 103.776 0ZM39.522 72.21c-5.406 0-9.791-4.385-9.791-9.79s4.385-9.792 9.79-9.792c1.633 0 3.265.408 4.693 1.224l-7.242 4.182c-2.448 1.427-3.264 4.487-1.836 6.935 1.428 2.448 4.488 3.264 6.936 1.836l7.241-4.182a9.752 9.752 0 0 1-9.791 9.587zm19.48-18.256L40.848 64.56c-1.122.714-2.652.306-3.366-.918-.714-1.122-.306-2.652.918-3.366L56.555 49.67c1.122-.714 2.651-.306 3.365.918.714 1.122.306 2.652-.918 3.366zM58.9 20.092v8.364c-4.59-2.856-6.017-8.873-3.263-13.463 2.855-4.59 8.873-6.018 13.463-3.264 4.59 2.856 6.017 8.873 3.263 13.463a9.982 9.982 0 0 1-3.263 3.264v-8.364c0-2.855-2.244-5.1-5.1-5.1-2.754 0-5.1 2.245-5.1 5.1zm7.446 21.113c0 1.326-1.122 2.448-2.448 2.448s-2.448-1.122-2.448-2.448l.102-21.113c0-1.325 1.122-2.447 2.448-2.447s2.448 1.122 2.448 2.447zm1.632 9.383a2.584 2.584 0 0 1 3.365-.918l18.359 10.607a2.584 2.584 0 0 1 .918 3.366 2.584 2.584 0 0 1-3.366.918L68.896 53.954c-1.224-.714-1.632-2.244-.918-3.366Zm20.5 21.622c-5.304 0-9.69-4.283-9.791-9.587l7.241 4.182c2.448 1.428 5.508.612 6.936-1.836s.612-5.508-1.836-6.935l-7.242-4.182a9.475 9.475 0 0 1 4.692-1.224c5.406 0 9.791 4.386 9.791 9.791s-4.385 9.791-9.791 9.791z"/></svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -1,12 +1 @@
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" width="128px" height="128px" fill="#FD824E">
<path d="M113.4,12.7H14.6C7.3,12.7,1.4,18.7,1.4,26v76c0,7.3,5.9,13.2,13.3,13.3h98.7c7.3,0,13.2-5.9,13.3-13.3V26
C126.6,18.7,120.7,12.7,113.4,12.7z M33.7,102.3c-6.7,0-12.2-5.4-12.2-12.1C21.5,83.4,27,78,33.7,78c0,0,0,0,0,0c2,0,4,0.5,5.8,1.5
l-9,5.2c-3,1.7-4,5.6-2.3,8.6c1.7,3,5.6,4,8.6,2.3c0,0,0,0,0,0l9-5.2C45.7,97,40.3,102.2,33.7,102.3z M57.8,79.6L35.2,92.7
c-1.5,0.8-3.3,0.4-4.2-1.1c-0.8-1.5-0.4-3.3,1.1-4.2l22.6-13.1c1.5-0.8,3.3-0.4,4.2,1.1S59.3,78.8,57.8,79.6z M57.7,37.6l0,10.4
c-5.7-3.5-7.5-11-4-16.7s11-7.5,16.7-4c5.7,3.5,7.5,11,4,16.7c-1,1.7-2.4,3.1-4.1,4.1l0-10.4c0-3.5-2.8-6.3-6.3-6.3
C60.5,31.3,57.7,34.1,57.7,37.6C57.7,37.6,57.7,37.6,57.7,37.6L57.7,37.6z M66.9,63.8c0,1.7-1.4,3-3,3h0c-1.7,0-3-1.4-3-3L61,37.6
c0-1.7,1.4-3,3-3h0c1.7,0,3,1.4,3,3L66.9,63.8z M68.9,75.4c0.8-1.5,2.7-2,4.1-1.1c0,0,0,0,0,0l22.8,13.2c1.5,0.8,2,2.7,1.1,4.1
c-0.8,1.5-2.7,2-4.1,1.1c0,0,0,0,0,0L70,79.6C68.5,78.7,68,76.9,68.9,75.4C68.9,75.4,68.9,75.4,68.9,75.4z M94.3,102.3
c-6.6,0-12-5.3-12.1-11.9l9,5.2c3,1.7,6.9,0.7,8.6-2.3c1.7-3,0.7-6.9-2.3-8.6l0,0l-9-5.2c1.8-1,3.8-1.5,5.8-1.5
c6.7,0,12.2,5.4,12.2,12.1C106.5,96.8,101,102.2,94.3,102.3C94.3,102.3,94.3,102.3,94.3,102.3L94.3,102.3z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#fd824e" d="M114.413 11.595H13.484C6.027 11.595 0 17.724 0 25.18v77.638c0 7.457 6.027 13.484 13.587 13.586h100.826c7.458 0 13.485-6.027 13.587-13.586V25.18c-.102-7.457-6.13-13.586-13.587-13.586zm-81.417 91.53c-6.844 0-12.463-5.516-12.463-12.36 0-6.947 5.619-12.463 12.463-12.463 2.043 0 4.086.51 5.925 1.532l-9.194 5.312c-3.065 1.737-4.086 5.72-2.35 8.785 1.737 3.065 5.721 4.087 8.786 2.35l9.194-5.312c-.102 6.742-5.619 12.054-12.361 12.156Zm24.62-23.189L34.527 93.318c-1.532.818-3.37.41-4.29-1.123-.817-1.533-.409-3.371 1.124-4.29l23.087-13.383c1.532-.817 3.37-.409 4.29 1.124.92 1.532.409 3.473-1.124 4.29zm-.103-42.905v10.624c-5.823-3.575-7.661-11.237-4.086-17.06 3.575-5.822 11.237-7.661 17.06-4.086 5.823 3.576 7.661 11.237 4.086 17.06a11.754 11.754 0 0 1-4.188 4.188V37.133a6.41 6.41 0 0 0-6.436-6.436c-3.575-.102-6.436 2.759-6.436 6.334zm9.398 26.765c0 1.736-1.43 3.064-3.064 3.064-1.737 0-3.065-1.43-3.065-3.064l.102-26.765c0-1.737 1.43-3.065 3.065-3.065 1.737 0 3.065 1.43 3.065 3.065zm2.043 11.85c.818-1.533 2.759-2.043 4.189-1.124l23.291 13.484c1.533.818 2.043 2.759 1.124 4.189-.817 1.532-2.758 2.043-4.189 1.123L70.08 79.936c-1.533-.92-2.044-2.758-1.124-4.29Zm25.948 27.48c-6.742 0-12.259-5.415-12.36-12.157l9.193 5.312c3.065 1.737 7.049.715 8.785-2.35 1.737-3.064.715-7.048-2.35-8.785l-9.193-5.312a12.198 12.198 0 0 1 5.925-1.532c6.844 0 12.463 5.516 12.463 12.36 0 6.845-5.619 12.361-12.463 12.463z"/></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#fd824e" d="M24.223 0c-5.916 0-10.71 4.793-10.71 10.709v61.297c0 5.915 4.794 10.709 10.71 10.709h79.554c5.916 0 10.71-4.794 10.71-10.71V10.71c0-5.915-4.794-10.709-10.71-10.709H24.223zm39.353 10.342a9.798 9.798 0 0 1 5.524 1.386c4.59 2.856 6.017 8.874 3.263 13.463a9.982 9.982 0 0 1-3.263 3.264v-8.363c0-2.856-2.244-5.1-5.1-5.1-2.754 0-5.1 2.244-5.1 5.1v8.363c-4.59-2.856-6.017-8.873-3.263-13.463a9.884 9.884 0 0 1 7.94-4.65zM64 17.645c1.326 0 2.447 1.12 2.447 2.447l-.101 21.113c0 1.326-1.122 2.447-2.448 2.447-1.326 0-2.447-1.121-2.447-2.447l.102-21.113c0-1.326 1.121-2.447 2.447-2.447zm-6.076 31.68c.785.052 1.55.498 1.996 1.263.714 1.122.306 2.651-.918 3.365L40.848 64.561c-1.122.713-2.651.305-3.365-.919-.714-1.121-.306-2.65.918-3.365L56.555 49.67c.42-.268.898-.377 1.369-.346zm12.006.072a2.63 2.63 0 0 1 1.414.273L89.7 60.277a2.583 2.583 0 0 1 .918 3.366 2.583 2.583 0 0 1-3.365.918L68.896 53.953c-1.223-.714-1.631-2.243-.917-3.365a2.574 2.574 0 0 1 1.95-1.192zm-30.409 3.23c1.632 0 3.264.409 4.692 1.225l-7.24 4.181c-2.448 1.428-3.264 4.488-1.836 6.936 1.428 2.448 4.488 3.264 6.935 1.836l7.24-4.182a9.753 9.753 0 0 1-9.79 9.588c-5.406 0-9.791-4.385-9.791-9.791 0-5.406 4.385-9.793 9.79-9.793zm48.958 0c5.405 0 9.79 4.387 9.79 9.793 0 5.405-4.385 9.791-9.79 9.791-5.304 0-9.69-4.284-9.792-9.588l7.24 4.182c2.448 1.428 5.508.612 6.936-1.836s.612-5.508-1.836-6.936l-7.24-4.181a9.475 9.475 0 0 1 4.691-1.225zM15.45 98.219v29.17h7.242V117.8l2.143-2.653 6.73 12.24h8.262l-9.996-17.747 9.486-11.422h-7.752l-7.138 8.668a21.52 21.52 0 0 0-1.836 2.754h-.205c.102-1.02.205-2.346.205-3.264v-8.158h-7.14zm26.416 0v5.404h10.71l-9.077 7.445 3.162 3.368c.918-.918 2.243-1.428 3.569-1.428 2.243 0 3.876 1.326 3.876 4.59 0 3.06-1.326 5.2-4.08 5.2-2.447 0-4.08-1.733-3.263-4.589l-6.12.918c-1.325 5.1 3.67 8.771 9.587 8.771 6.221 0 11.22-4.08 11.22-10.199 0-5.61-4.182-8.466-8.568-8.058l6.935-5.711v-5.711h-17.95zm34.27 0c-6.732 0-11.729 4.181-11.729 14.482 0 11.117 4.997 15.197 11.729 15.299 6.527 0 11.525-3.876 11.525-15.299 0-10.403-4.794-14.482-11.525-14.482zm26.824 0c-6.12 0-9.69 3.059-9.69 7.648 0 6.12 5.712 7.344 9.69 8.67 4.08 1.326 6.324 2.857 6.324 5.815 0 2.447-1.633 4.894-6.732 4.894-4.692 0-7.24-1.938-7.24-4.998 0-.51.1-1.12.304-1.63l-2.855.509c-.102.51-.203 1.02-.203 1.53 0 4.793 4.384 7.343 9.994 7.343 6.731 0 10.097-3.671 10.097-7.955 0-5.508-4.794-7.037-9.18-8.465-3.671-1.224-6.935-2.244-6.935-6.018 0-2.55 1.735-4.997 6.324-4.997 3.876 0 6.323 1.631 6.323 5.609 0 .51 0 1.12-.102 1.63l3.162-.304c.102-.51.102-.918.102-1.428 0-4.895-3.264-7.853-9.383-7.853zm-27.027 2.345c4.691 0 8.464 2.856 8.464 12.137 0 9.995-3.67 12.852-8.464 12.852-4.59 0-8.364-2.755-8.364-12.852 0-9.281 3.774-12.137 8.364-12.137z"/></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 24 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 10 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.7 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.7 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8.1 KiB

After

Width:  |  Height:  |  Size: 9.6 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g fill="#486bb3"><path d="M56.484 55.098c.37.27.82.43 1.31.43 1.2 0 2.18-.95 2.23-2.13l.05-.03.75-13.26c-.9.11-1.8.26-2.7.46-4.93 1.12-9.2 3.55-12.54 6.83l10.87 7.71.03-.01zM55.034 74.528a2.218 2.218 0 00-2.58-1.69l-.02-.03-13.05 2.21a26.15 26.15 0 0010.51 13.15l5.06-12.22-.04-.05c.17-.42.23-.89.12-1.37zM50.694 65.118c.44-.12.85-.38 1.16-.76.75-.94.62-2.29-.28-3.07l.01-.05-9.93-8.88a26.07 26.07 0 00-3.7 16.48l12.73-3.67.01-.05zM60.334 69.018l3.66 1.76 3.66-1.75.9-3.95-2.53-3.16h-4.06l-2.54 3.16zM67.934 53.348c.02.46.18.91.49 1.29.75.94 2.1 1.11 3.06.41l.04.02 10.8-7.66c-4.08-3.99-9.4-6.6-15.15-7.3l.75 13.24h.01zM75.514 72.778c-.17-.03-.34-.05-.51-.04-.29.01-.58.09-.85.22a2.23 2.23 0 00-1.08 2.89l-.02.02 5.11 12.34c4.93-3.14 8.61-7.83 10.54-13.24l-13.16-2.23-.03.04zM65.954 79.318a2.246 2.246 0 00-2.04-1.17c-.77.03-1.5.46-1.89 1.18h-.01l-6.42 11.6a26.16 26.16 0 0014.27.73c.88-.2 1.74-.44 2.57-.72l-6.43-11.63h-.05z"/><path d="M124.544 76.788l-10.44-45.33a8.012 8.012 0 00-4.37-5.43l-42.24-20.18a8.157 8.157 0 00-3.92-.78 8.15 8.15 0 00-3.1.78l-42.24 20.18a8.055 8.055 0 00-4.37 5.43l-10.41 45.34a7.92 7.92 0 001.1 6.14c.14.22.3.43.46.64l29.24 36.35a8.087 8.087 0 006.32 3.01l46.89-.01c2.46 0 4.78-1.11 6.32-3.01l29.23-36.36a7.981 7.981 0 001.53-6.77zm-16.07-.55c-.31 1.35-1.76 2.17-3.26 1.85-.01 0-.03 0-.04-.01-.02 0-.03-.01-.05-.02-.21-.05-.47-.09-.65-.14-.86-.23-1.49-.58-2.27-.88-1.67-.6-3.06-1.1-4.41-1.3-.69-.05-1.04.27-1.42.52-.18-.04-.75-.14-1.08-.19-2.42 7.61-7.58 14.21-14.57 18.33.12.29.33.91.42 1.02-.16.43-.4.83-.19 1.49.49 1.27 1.28 2.52 2.24 4.01.46.69.94 1.22 1.36 2.02.1.19.23.48.33.68.65 1.39.17 2.99-1.08 3.59-1.26.61-2.82-.03-3.5-1.43-.1-.2-.23-.46-.31-.65-.36-.82-.48-1.52-.73-2.32-.57-1.68-1.05-3.07-1.73-4.25-.39-.57-.86-.64-1.29-.78-.08-.14-.38-.69-.54-.97-1.4.53-2.84.97-4.34 1.31-6.56 1.49-13.13.89-18.99-1.37l-.57 1.04c-.43.11-.84.23-1.09.53-.92 1.1-1.29 2.86-1.96 4.54-.25.79-.37 1.5-.73 2.32-.08.19-.22.45-.31.64v.01l-.01.01c-.67 1.39-2.23 2.03-3.49 1.43-1.25-.6-1.72-2.2-1.08-3.59.1-.2.22-.49.32-.68.42-.79.89-1.33 1.36-2.02.96-1.5 1.8-2.84 2.29-4.11.12-.42-.06-1-.22-1.43l.46-1.1c-6.73-3.99-12.04-10.34-14.58-18.21l-1.1.19c-.3-.17-.89-.56-1.45-.51-1.35.2-2.74.7-4.41 1.3-.78.3-1.4.64-2.27.87-.18.05-.44.1-.65.15-.02 0-.03.01-.05.02-.01 0-.03 0-.04.01-1.5.32-2.95-.5-3.26-1.85-.31-1.35.65-2.72 2.14-3.08.01 0 .03-.01.04-.01.01 0 .01 0 .02-.01.21-.05.48-.12.68-.16.88-.17 1.6-.13 2.43-.19 1.77-.19 3.23-.34 4.53-.75.41-.17.81-.74 1.09-1.1l1.06-.31c-1.19-8.22.82-16.28 5.16-22.81l-.81-.72c-.05-.32-.12-1.04-.51-1.46-.99-.93-2.25-1.71-3.76-2.64-.72-.42-1.38-.69-2.1-1.23-.15-.11-.36-.29-.52-.42-.01-.01-.03-.02-.04-.03-1.21-.97-1.49-2.64-.62-3.73.49-.61 1.24-.92 2.01-.89.6.02 1.23.24 1.76.66.17.14.41.32.56.45.68.58 1.09 1.16 1.66 1.77 1.25 1.27 2.28 2.32 3.41 3.08.59.35 1.05.21 1.5.15.15.11.63.46.91.65 4.3-4.57 9.96-7.95 16.52-9.44 1.53-.35 3.05-.58 4.57-.7l.06-1.07c.34-.33.71-.79.82-1.31.11-1.36-.07-2.82-.28-4.59-.12-.82-.31-1.51-.35-2.4-.01-.18 0-.44.01-.65 0-.02-.01-.05-.01-.07 0-1.55 1.13-2.81 2.53-2.81s2.53 1.26 2.53 2.81c0 .22.01.52.01.72-.03.89-.23 1.58-.35 2.4-.21 1.76-.4 3.23-.29 4.59.1.68.5.95.83 1.26.01.18.04.79.06 1.13 8.04.71 15.5 4.39 20.99 10.14l.96-.69c.33.02 1.04.12 1.53-.17 1.13-.76 2.16-1.82 3.41-3.08.57-.61.99-1.18 1.67-1.77.15-.13.39-.31.56-.45 1.21-.97 2.9-.86 3.77.23s.59 2.76-.62 3.73c-.17.14-.39.33-.56.45-.72.53-1.38.8-2.1 1.23-1.51.93-2.77 1.71-3.76 2.64-.47.5-.43.98-.48 1.43-.14.13-.63.57-.9.8a32.75 32.75 0 014.74 10.95c.92 3.99 1.06 7.97.53 11.8l1.02.3c.18.26.56.89 1.09 1.1 1.3.41 2.76.56 4.53.75.83.07 1.55.03 2.43.19.21.04.52.12.73.17 1.5.37 2.45 1.74 2.14 3.09z"/><path d="M86.274 52.358l-9.88 8.84.01.03c-.34.3-.6.7-.71 1.18-.27 1.17.44 2.33 1.58 2.65l.01.05 12.79 3.68c.27-2.76.11-5.62-.55-8.48-.66-2.89-1.77-5.56-3.25-7.95z"/></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#326ce5" d="M63.556 1.911a8.51 8.44 0 0 0-3.26.826L15.794 24a8.51 8.44 0 0 0-4.603 5.725L.214 77.484a8.51 8.44 0 0 0 1.154 6.47 8.51 8.44 0 0 0 .485.673l30.799 38.297a8.51 8.44 0 0 0 6.654 3.175l49.393-.011a8.51 8.44 0 0 0 6.654-3.17l30.79-38.303a8.51 8.44 0 0 0 1.644-7.14l-10.996-47.76a8.51 8.44 0 0 0-4.604-5.727L67.681 2.738a8.51 8.44 0 0 0-4.125-.827Zm.44 16.252c1.47 0 2.664 1.327 2.664 2.961 0 .232.014.544.006.758-.034.943-.24 1.662-.364 2.531-.224 1.858-.417 3.4-.3 4.832.105.717.522 1 .869 1.332a63.624 63.624 0 0 0 .062 1.19c8.468.751 16.335 4.625 22.112 10.682l1.011-.723c.343.021 1.1.124 1.618-.176 1.19-.802 2.276-1.915 3.59-3.25.601-.638 1.044-1.245 1.76-1.861.162-.14.409-.328.59-.473 1.278-1.018 3.057-.912 3.974.238.917 1.15.622 2.908-.655 3.928-.18.145-.416.346-.588.473-.758.56-1.456.846-2.212 1.29-1.593.984-2.913 1.8-3.961 2.784-.494.53-.457 1.03-.5 1.508-.148.136-.67.598-.946.848a34.478 34.478 0 0 1 4.99 11.537 34.398 34.398 0 0 1 .56 12.435l1.073.313c.194.274.592.94 1.15 1.156 1.372.431 2.914.59 4.776.785.875.073 1.628.03 2.555.205.222.042.545.13.773.182 1.57.379 2.578 1.822 2.254 3.244-.324 1.422-1.857 2.286-3.437 1.946l-.04-.006c-.016-.004-.033-.012-.05-.016-.221-.048-.497-.098-.69-.148-.91-.245-1.57-.61-2.388-.922-1.763-.632-3.224-1.16-4.647-1.366-.72-.058-1.09.287-1.49.551a39.835 39.835 0 0 0-1.139-.199c-2.552 8.02-7.985 14.966-15.353 19.317.127.306.342.958.443 1.074-.17.449-.421.88-.205 1.572.517 1.34 1.354 2.652 2.363 4.229.488.728.988 1.288 1.428 2.122.105.2.244.507.346.717.685 1.465.183 3.151-1.131 3.785-1.326.639-2.974-.037-3.684-1.51-.1-.208-.244-.485-.33-.683-.377-.864-.507-1.604-.773-2.44-.604-1.772-1.102-3.24-1.827-4.48-.406-.6-.903-.676-1.359-.824-.085-.146-.4-.724-.57-1.024a34.56 34.56 0 0 1-4.57 1.377 34.413 34.413 0 0 1-20.01-1.44l-.604 1.09c-.449.12-.882.244-1.148.561-.97 1.157-1.356 3.016-2.061 4.786-.265.836-.393 1.577-.77 2.441-.086.196-.229.468-.33.676v.008l-.006.006c-.71 1.468-2.352 2.139-3.675 1.502-1.315-.633-1.818-2.32-1.133-3.785.102-.211.236-.517.342-.717.44-.834.94-1.398 1.427-2.127 1.008-1.578 1.895-2.994 2.413-4.334.13-.446-.063-1.057-.237-1.508l.483-1.159c-7.09-4.2-12.688-10.897-15.36-19.181l-1.162.199c-.31-.174-.937-.586-1.531-.539-1.422.206-2.88.733-4.643 1.365-.82.314-1.48.672-2.39.916-.193.052-.47.105-.69.154-.017.004-.034.014-.05.018l-.04.004c-1.58.341-3.112-.523-3.437-1.945-.325-1.422.684-2.865 2.254-3.245l.039-.011.021-.006c.224-.052.51-.125.713-.164.927-.175 1.68-.132 2.555-.205 1.862-.195 3.405-.354 4.775-.785.434-.18.85-.775 1.145-1.155l1.115-.326c-1.25-8.655.864-17.15 5.434-24.027l-.852-.762c-.055-.333-.127-1.101-.537-1.537-1.047-.983-2.366-1.8-3.959-2.783-.756-.445-1.449-.733-2.209-1.293-.16-.12-.376-.3-.55-.444l-.042-.027c-1.278-1.019-1.571-2.778-.654-3.928.516-.647 1.304-.967 2.123-.94a3.168 3.168 0 0 1 1.854.702c.182.143.431.333.593.473.715.614 1.15 1.221 1.752 1.859 1.314 1.334 2.4 2.442 3.592 3.244.626.364 1.107.218 1.582.154.153.113.667.483.961.684a34.262 34.262 0 0 1 17.404-9.943 34.663 34.663 0 0 1 4.815-.74l.062-1.128c.355-.344.753-.837.866-1.377.116-1.43-.073-2.974-.297-4.832-.124-.869-.329-1.588-.364-2.53-.007-.194.004-.462.006-.684 0-.025-.006-.05-.006-.075 0-1.634 1.193-2.959 2.663-2.959zm-3.334 20.66a28.076 28.076 0 0 0-2.84.489 27.438 27.438 0 0 0-13.215 7.201l11.457 8.121.021-.011a2.334 2.334 0 0 0 1.383.449 2.348 2.348 0 0 0 2.346-2.248l.057-.028zm6.675 0 .791 13.95.012.006a2.35 2.35 0 0 0 3.733 1.793l.04.017 11.383-8.07a27.668 27.668 0 0 0-15.959-7.695ZM40.452 51.73a27.432 27.432 0 0 0-3.892 17.365l13.408-3.87.012-.046a2.348 2.348 0 0 0 1.217-.803 2.345 2.345 0 0 0-.295-3.232l.01-.057zm47.014.008-10.402 9.308.006.03a2.329 2.329 0 0 0-.746 1.246 2.35 2.35 0 0 0 1.668 2.789l.011.056L91.48 69.05a27.703 27.703 0 0 0-.58-8.931 27.774 27.774 0 0 0-3.434-8.381ZM61.853 61.81l-2.67 3.324.957 4.153 3.857 1.857 3.848-1.85.957-4.154-2.664-3.33zm13.736 11.395a2.333 2.333 0 0 0-.898.232 2.351 2.351 0 0 0-1.139 3.045l-.017.023L78.92 89.51a27.466 27.466 0 0 0 11.102-13.95l-13.871-2.344-.021.028a2.276 2.276 0 0 0-.542-.04zm-23.293.056a2.378 2.378 0 0 0-.46.04l-.024-.028-13.75 2.332a27.58 27.58 0 0 0 11.07 13.854l5.326-12.873-.039-.053a2.326 2.326 0 0 0 .131-1.446 2.349 2.349 0 0 0-2.254-1.826zm11.616 5.64a2.351 2.351 0 0 0-1.987 1.241h-.012l-6.761 12.225a27.542 27.542 0 0 0 15.031.773 28.056 28.056 0 0 0 2.71-.756l-6.78-12.248h-.051a2.337 2.337 0 0 0-1.053-1.002 2.32 2.32 0 0 0-1.097-.232z"/></svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M0 6.418h11.914v79.074h47.121v9.754H0zm96.191 21.449c-12.187-.164-24.371 7.582-28.168 19.332-5.414 13.543-2.926 30.551 7.691 40.895 10.293 8.555 25.781 9.207 37.371 3.145 7.965-4.227 13-12.621 14.086-21.453 1.406-9.203.707-19.281-3.789-27.621-5.312-8.883-15.707-14.621-26-14.246l-1.191-.16zm1.082 9.422c8.938 0 16.953 6.824 18.414 15.602 2.711 9.906 1.086 22.039-7.039 29.027-7.582 6.176-19.773 5.313-26-2.324-7.582-8.129-7.582-20.586-3.68-30.332 2.707-7.043 9.906-12.078 17.492-11.918h.973zm0 0"/><path d="M0 107.863h127.816v13.539H0zm0 0" fill="#3492ff"/></svg>

After

Width:  |  Height:  |  Size: 635 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M0 6.207v88.828h59.031v-9.754H11.914V6.207zm96.191 21.34v.105c-12.187-.16-24.375 7.582-28.168 19.336-5.414 13.539-2.926 30.551 7.691 40.891 10.293 8.559 25.781 9.211 37.371 3.145 7.965-4.227 13.004-12.621 14.086-21.449 1.41-9.207.707-19.281-3.789-27.621-5.312-8.883-15.707-14.621-26-14.246zm1.082 9.531c8.938 0 16.953 6.824 18.414 15.598 2.711 9.91 1.086 22.043-7.039 29.031-7.582 6.172-19.773 5.309-26-2.328-7.582-8.129-7.582-20.582-3.68-30.328 2.707-7.043 9.906-12.078 17.488-11.918h.977zM0 107.652v13.539h127.816v-13.539zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 609 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1" d="M64.05.457L8.98 32.247v63.507l16.57 9.578-.099-63.508L63.95 19.592l38.48 22.242v63.477l16.59-9.557V32.195l-.25-.142L64.052.457zm0 1.154l53.97 31.162v62.403l-14.59 8.404V41.256L63.95 18.437l-39.5 22.81.099 62.35L9.98 95.177V32.824L64.05 1.611zm7.22 39.037v63.51l-7.272 4.229-7.318-4.192V40.668l-16.57 9.578.02 63.508 23.84 13.789 23.89-13.79V50.228l-16.59-9.579zm1 1.733l14.59 8.422v62.373l-22.89 13.21-22.84-13.21-.02-62.352 14.57-8.422v62.373l8.322 4.768 8.268-4.81V42.38z" color="#000" font-weight="400" font-family="sans-serif" overflow="visible" fill="#f26322"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f26322" d="M64.044 0 8.586 32.02v63.959l16.67 9.643-.1-63.961 38.789-22.41 38.77 22.41v63.928l16.7-9.608V31.97l-.248-.143zm0 1.146 54.38 31.396v62.866l-14.717 8.466V41.088l-39.762-22.98-39.781 22.98.098 62.813-14.685-8.493V32.592Zm7.285 39.34v63.961l-7.336 4.272-7.382-4.225v-63.98l-16.67 9.642.031 63.96L63.974 128l24.054-13.884V50.127Zm.991 1.717 14.717 8.495v62.847l-23.061 13.309-23.013-13.31-.029-62.817 14.686-8.491v62.833l8.377 4.794 8.323-4.847v-.284z"/></svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 544 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#F26322" d="M119.82 31.97v64.01l-15.85 9.12V41.17l-39.62-22.9-39.64 22.9.1 63.96-15.82-9.15V32.02L64.45 0l55.37 31.97zM72.3 105.1l-7.9 4.6-7.95-4.55V41.17l-15.82 9.15.03 63.96L64.38 128l23.77-13.72V50.29L72.3 41.14v63.96z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f26322" d="M119.82 31.97v64.01l-15.85 9.12V41.17l-39.62-22.9-39.64 22.9.1 63.96-15.82-9.15V32.02L64.45 0l55.37 31.97zM72.3 105.1l-7.9 4.6-7.95-4.55V41.17l-15.82 9.15.03 63.96L64.38 128l23.77-13.72V50.29L72.3 41.14v63.96z"/></svg>

Before

Width:  |  Height:  |  Size: 304 B

After

Width:  |  Height:  |  Size: 305 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 52 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 41 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 18 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M0 50.702v26.556h5.38V58.07l15.448 19.2H49.04v-5.076H31.306V66.44h14.262v-5.076H31.306v-5.577h17.735V50.71H25.925v5.076h.001v19.387L6.22 50.702Zm84.43.01v5.075h8.96v21.482h5.38V55.787h8.777V50.71zm-31.618.01L74.178 77.28h7.033L70.527 64.01l10.669-13.27-7.018.012-7.162 8.895-7.188-8.924h-.237Zm-51.82.972h4.752l19.797 24.583h-4.239L4.388 55.254v21.011H.992Zm25.925.01h21.131v3.09H30.314v7.563h14.262v3.09H30.314v7.74h17.734v3.09h-21.13V54.795h-.001zm58.505 0h21.132v3.09h-8.777v21.483h-3.395V54.795h-8.96zm-30.538.011h4.469l7.663 9.516 7.637-9.489 4.467-.006-9.866 12.274 9.884 12.277h-4.485zm7.723 13.397-9.812 12.186h7.033l6.292-7.82-.25-.31zm60.852.095c-.811 0-1.56.14-2.232.434-.664.29-1.215.712-1.615 1.258a3.23 3.23 0 0 0-.618 1.944c0 .875.321 1.655.94 2.205.591.529 1.371.9 2.316 1.14l1.233.31c.365.091.679.195.941.306.239.102.4.218.504.334.076.086.115.183.119.358a.712.712 0 0 1-.165.483l-.004.004-.002.001c-.12.15-.29.277-.547.378v-.002a2.59 2.59 0 0 1-.944.157c-.355 0-.661-.052-.93-.149l-.002-.002a1.361 1.361 0 0 1-.589-.4 1.096 1.096 0 0 1-.236-.646l-.035-.46h-2.903l.02.514c.029.783.243 1.487.652 2.066.404.572.972 1.009 1.665 1.295.69.288 1.486.424 2.374.424.92 0 1.724-.14 2.41-.438h.003v-.002c.681-.297 1.233-.726 1.614-1.28.382-.56.572-1.218.572-1.927 0-.527-.104-1.013-.32-1.434a3.214 3.214 0 0 0-.843-1.04 4.67 4.67 0 0 0-1.14-.674 7.513 7.513 0 0 0-1.253-.405l-.008-.002-1.008-.248a6.543 6.543 0 0 1-.612-.18h-.002a2.336 2.336 0 0 1-.489-.232l-.006-.002-.004-.004a.776.776 0 0 1-.265-.256v-.002l-.002-.002a.54.54 0 0 1-.076-.302.68.68 0 0 1 .138-.42c.09-.123.236-.237.465-.334.217-.09.502-.143.858-.143.508 0 .87.106 1.134.29v.002c.257.178.374.372.409.704l.047.445h2.835l-.008-.504a3.275 3.275 0 0 0-.603-1.874c-.383-.538-.916-.96-1.564-1.252h-.002c-.655-.297-1.4-.436-2.223-.436zm-8.43.144v7.986c-.003.322-.057.572-.134.746a.725.725 0 0 1-.298.355l-.002.002h-.002c-.124.075-.295.124-.539.124-.224 0-.4-.041-.546-.114a.722.722 0 0 1-.314-.29.95.95 0 0 1-.122-.493l-.004-.49h-2.936v.495c0 .73.166 1.385.529 1.921.345.515.827.915 1.41 1.172.574.253 1.214.38 1.907.38.758 0 1.448-.15 2.047-.453h.002a3.472 3.472 0 0 0 1.426-1.328v-.002c.341-.58.509-1.262.512-2.02V65.35zm8.43.849c.712 0 1.31.117 1.814.347l.002.001c.511.23.89.536 1.165.923.169.236.19.533.258.81h-.994c-.14-.36-.247-.75-.568-.973-.468-.325-1.05-.469-1.702-.469-.457 0-.872.068-1.238.22h-.002l-.002.001c-.353.149-.66.362-.878.655v.002c-.215.29-.327.64-.335.996v.01c0 .3.075.595.234.843l.002.002c.144.225.343.42.582.568l.002.001c.213.136.445.244.69.33h.001c.235.081.47.15.706.207l-.002-.002 1.017.25.004.002a6.51 6.51 0 0 1 1.097.353v.002h.002c.337.141.638.32.9.53.248.202.44.437.585.72.135.264.209.583.209.982 0 .54-.132.976-.4 1.367-.266.387-.647.696-1.19.932-.531.23-1.2.356-2.017.356-.787 0-1.453-.12-1.994-.346v-.002h-.002c-.544-.225-.94-.537-1.232-.95-.19-.269-.236-.654-.312-1.015h.951c.078.258.118.538.283.742l.002.002.002.002c.264.317.612.549 1.006.697l.004.002h.002c.39.142.818.211 1.275.211.475 0 .913-.072 1.304-.224h.002a2.26 2.26 0 0 0 .96-.683c.252-.31.385-.7.39-1.1v-.012a1.552 1.552 0 0 0-.373-1.014v-.001l-.002-.002a2.384 2.384 0 0 0-.853-.582h-.002a7.43 7.43 0 0 0-1.087-.356h-.002l-1.228-.31c-.834-.212-1.462-.525-1.9-.917h-.002c-.415-.37-.606-.811-.606-1.465 0-.536.14-.969.424-1.355l.002-.002c.29-.396.684-.705 1.213-.936.53-.232 1.135-.35 1.834-.35zm-7.438.143h.952v6.994c-.003.617-.133 1.111-.374 1.522a2.428 2.428 0 0 1-1.023.95c-.442.222-.97.344-1.597.344a3.678 3.678 0 0 1-1.506-.294 2.23 2.23 0 0 1-.988-.82h-.002v-.002c-.148-.219-.173-.56-.23-.868h.956c.044.169.045.354.134.502.171.285.423.517.719.666h.002c.3.15.638.22.99.22.379 0 .74-.08 1.049-.266.308-.183.548-.467.7-.803v-.001l.001-.002c.148-.335.214-.718.217-1.144v-.002zm-53.414.353 2.24 2.783-5.494 6.827h-4.485zm45.43 7.145c-.436 0-.86.172-1.17.475-.312.303-.49.723-.487 1.155-.003.437.174.862.486 1.167.311.302.735.474 1.17.474.29 0 .574-.078.819-.222.246-.141.45-.342.597-.578l.002-.002c.155-.25.234-.54.238-.831v-.014a1.626 1.626 0 0 0-.502-1.15 1.662 1.662 0 0 0-1.153-.474zm0 .992c.19 0 .313.05.461.194h.002v.002a.55.55 0 0 1 .198.442.661.661 0 0 1-.335.558l-.007.004-.004.002a.575.575 0 0 1-.315.085.603.603 0 0 1-.48-.194.536.536 0 0 1-.187-.451v-.008a.525.525 0 0 1 .188-.44.603.603 0 0 1 .479-.194z"/></svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M64 0C28.7 0 0 28.7 0 64s28.7 64 64 64 64-28.7 64-64S99.3 0 64 0zm32.7 114.4L48.4 41.8h-6.8v50.1h6.8V55.3l44.2 61.5c-8.5 4.6-18.2 7.2-28.6 7.2-33.2.1-60.1-26.8-60.1-60S30.8 3.9 64 3.9s60.1 26.9 60.1 60.1c0 21.1-10.9 39.7-27.4 50.4z"/><path d="M78.6 73.3l7.5 11.3V41.8h-7.5z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M64 0C28.66 0 0 28.66 0 64s28.66 64 64 64h.002a63.994 63.994 0 0 0 35.506-10.838l.014-.008.37-.283-.568-.815-52.676-68.054v40.88h-7.552V39.097h9.943l56.229 72.425.64.819.371-.344.014-.012A64.002 64.002 0 0 0 128 64c0-35.34-28.66-64-64-64Zm0 .992c34.804 0 63.008 28.204 63.008 63.008a62.999 62.999 0 0 1-20.983 46.879l-56.5-72.775H38.104v51.771h9.537v-38.97l50.863 65.712A63 63 0 0 1 64 127.007C29.196 127.008.992 98.805.992 64S29.196.992 64 .992Zm17.143 37.112v37.94l9.46 12.423V38.104Zm.992.992h7.476v46.43l-7.476-9.815z"/></svg>

Before

Width:  |  Height:  |  Size: 353 B

After

Width:  |  Height:  |  Size: 602 B

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M30.2 45.9h24.1v1.9H32.4v14.4H53v1.9H32.4v15.8h22.2v1.9H30.2V45.9zm26.3 0h2.6l11.4 15.8L82 45.9l15.8-20-26 37.5 13.4 18.4h-2.7L70.4 65 58.2 81.8h-2.6l13.5-18.4-12.6-17.5zm29.7 1.9v-1.9h27.5v1.9H101v34h-2.2v-34H86.2zM0 45.9h2.7l38.2 56.8-15.8-20.9L2.3 48.6l-.1 33.2H0zm113.5 33.4c.5 0 .8-.3.8-.8s-.3-.8-.8-.8-.8.3-.8.8.4.8.8.8zm2.2-2.1c0 1.3 1 2.2 2.4 2.2 1.5 0 2.4-.9 2.4-2.5v-5.5h-1.2v5.5c0 .9-.4 1.3-1.2 1.3-.7 0-1.2-.4-1.2-1.1h-1.2zm6.3-.1c.1 1.4 1.2 2.3 3 2.3s3-.9 3-2.4c0-1.2-.7-1.8-2.2-2.2l-.9-.2c-1-.2-1.4-.6-1.4-1.1 0-.7.6-1.2 1.6-1.2.9 0 1.5.4 1.6 1.2h1.2c-.1-1.3-1.2-2.2-2.8-2.2-1.7 0-2.8.9-2.8 2.3 0 1.1.6 1.8 2 2.1l1 .2c1 .2 1.5.6 1.5 1.2 0 .7-.7 1.2-1.7 1.2s-1.8-.5-1.9-1.2H122z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M0 51.098V76.86h4.422V56.604L20.73 76.87h27.694v-4.113H30.553v-6.801h14.37v-4.113h-14.37v-6.621h17.87v-4.116H26.13v4.116h.002V76.68L5.527 51.098H0zm85.09.01v4.115h9.03v21.65h4.42v-21.65h8.847v-4.116H85.09zm-31.322.011 20.73 25.764h5.803L69.936 64.01l10.35-12.871-5.79.01-7.459 9.261-7.48-9.29h-5.79zm70.158 14.598c-.761 0-1.445.128-2.051.394-.602.263-1.078.633-1.426 1.108-.35.476-.525 1.032-.525 1.664 0 .77.258 1.384.78 1.847.517.464 1.227.809 2.124 1.036l1.24.312a7.02 7.02 0 0 1 1.026.334 1.91 1.91 0 0 1 .683.461 1.034 1.034 0 0 1 .248.697 1.25 1.25 0 0 1-.283.803 1.77 1.77 0 0 1-.76.535 3.11 3.11 0 0 1-1.132.192 3.24 3.24 0 0 1-1.116-.182 1.902 1.902 0 0 1-.804-.557 1.63 1.63 0 0 1-.352-.931h-1.941c.027.71.216 1.316.566 1.812s.836.873 1.46 1.13c.62.26 1.357.39 2.202.39.875 0 1.619-.136 2.233-.4.617-.27 1.088-.643 1.414-1.118.327-.479.488-1.028.488-1.658 0-.466-.09-.872-.266-1.217a2.726 2.726 0 0 0-.72-.887 4.227 4.227 0 0 0-1.028-.607 7.09 7.09 0 0 0-1.19-.385l-1.02-.25a6.975 6.975 0 0 1-.667-.195 2.82 2.82 0 0 1-.597-.285 1.304 1.304 0 0 1-.43-.418 1.037 1.037 0 0 1-.158-.58 1.21 1.21 0 0 1 .238-.717c.156-.21.385-.376.678-.5a2.771 2.771 0 0 1 1.056-.184c.585 0 1.062.126 1.43.383a1.424 1.424 0 0 1 .623 1.07h1.9a2.775 2.775 0 0 0-.513-1.607c-.333-.466-.792-.833-1.377-1.096-.584-.265-1.26-.394-2.033-.394zm-7.998.144v7.55c-.003.377-.062.697-.176.954a1.25 1.25 0 0 1-.506.584c-.218.133-.488.2-.803.2-.29 0-.546-.057-.771-.17a1.247 1.247 0 0 1-.522-.481 1.474 1.474 0 0 1-.195-.75h-1.963c0 .661.147 1.213.447 1.656a2.768 2.768 0 0 0 1.211 1.002 4.22 4.22 0 0 0 1.72.34c.697 0 1.311-.134 1.835-.4a2.97 2.97 0 0 0 1.236-1.149c.293-.499.444-1.093.448-1.787v-7.549h-1.961zm-53.332.059-8.844 10.982h5.805l5.937-7.38-2.898-3.602zm45.785 8.498c-.324 0-.6.112-.83.336a1.07 1.07 0 0 0-.344.807 1.082 1.082 0 0 0 .344.818c.23.225.506.336.83.336a1.105 1.105 0 0 0 .574-.156c.177-.101.318-.24.428-.416a1.115 1.115 0 0 0 .166-.582 1.097 1.097 0 0 0-.354-.807 1.133 1.133 0 0 0-.814-.336z"/></svg>

Before

Width:  |  Height:  |  Size: 771 B

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M64 0C28.7 0 0 28.7 0 64s28.7 64 64 64c11.2 0 21.7-2.9 30.8-7.9L48.4 55.3v36.6h-6.8V41.8h6.8l50.5 75.8C116.4 106.2 128 86.5 128 64c0-35.3-28.7-64-64-64zm22.1 84.6l-7.5-11.3V41.8h7.5v42.8z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><circle cx="64" cy="64" r="64"/><path fill="url(#a)" d="M106.317 112.014 49.167 38.4H38.4v51.179h8.614v-40.24l52.54 67.884a64.216 64.216 0 0 0 6.763-5.209z"/><path fill="url(#b)" d="M81.778 38.4h8.533v51.2h-8.533z"/><defs><linearGradient id="a" x1="109" x2="144.5" y1="116.5" y2="160.5" gradientTransform="scale(.71111)" gradientUnits="userSpaceOnUse"><stop stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="b" x1="121" x2="120.799" y1="54" y2="106.875" gradientTransform="scale(.71111)" gradientUnits="userSpaceOnUse"><stop stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient></defs></svg>

Before

Width:  |  Height:  |  Size: 267 B

After

Width:  |  Height:  |  Size: 749 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M64 0A64 64 0 0 0 0 64a64 64 0 0 0 64 64 64 64 0 0 0 35.508-10.838L47.014 49.34v40.238H38.4V38.4h10.768l57.125 73.584A64 64 0 0 0 128 64 64 64 0 0 0 64 0Zm17.777 38.4h8.534v48.776L81.777 75.97Zm24.18 73.92-.111.096a64 64 0 0 0 .111-.096z"/></svg>

After

Width:  |  Height:  |  Size: 318 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#5fa04e" d="M63.974.003c-.388-.01-.779.01-1.168.065-.78.113-1.55.372-2.261.828L10.846 29.709l.062.114c-1.81 1.2-2.828 3.24-2.828 5.39V92.73c0 1.294.407 2.534 1.092 3.584l-.14.242.218.266a6.696 6.696 0 0 0 1.774 1.532l.002.002 49.246 28.464.407.237h.001a6.5 6.5 0 0 0 .944.435c.183.072.368.132.556.186.078.022.157.038.236.057.646.161 1.303.252 1.965.2l.036.065.35-.06c.747-.126 1.609-.37 2.372-.754l.014-.008 49.546-28.826c1.528-.897 2.652-2.41 3.157-4.063l.064-.207-.234-.403c.044-.314.072-.63.072-.951V35.212c0-1.517-.552-2.963-1.469-4.109l.039-.071-.196-.254c-.39-.51-.89-.923-1.464-1.207l.027.014-25.721-14.869L67.16.886V.884a6.495 6.495 0 0 0-1.786-.688l-.026-.042-.23-.04c-.106-.017-.218-.016-.326-.03-.045-.006-.09-.009-.135-.014-.227-.025-.453-.061-.684-.067Zm-.058 1.01h.006c.192.01.385.03.577.053L29.347 61.583l-17.12-31.411L61.175 1.746a5.524 5.524 0 0 1 2.74-.732zm2.28.6c.123.05.253.083.372.143.002 0 .004 0 .006.002L90.848 15.79l25.222 14.65c.369.223.706.497 1.013.804l-16.273 29.95Zm-1.007.242 35.068 60.357-35.066 64.544c-.098.027-.197.028-.295.049L29.903 62.602Zm-53.806 28.84 17.383 31.891L9.744 95.332a5.545 5.545 0 0 1-.672-2.602V35.212c0-1.812.834-3.503 2.31-4.517zm106.381 1.373c.626.916 1.002 2.012 1.002 3.144v56.883l-17.37-29.898Zm-16.922 31.15 17.804 30.643c-.299 1.513-1.183 2.853-2.561 3.633l-.004.002-49.418 28.702c-.018.01-.037.017-.055.027zm-71.522.387 34.505 63.306a4.9 4.9 0 0 1-.364-.011 5.507 5.507 0 0 1-.7-.107c-.124-.027-.247-.05-.37-.087a5.537 5.537 0 0 1-.426-.143 5.436 5.436 0 0 1-.785-.365h-.002l-.005-.002-.521-.302-48.886-28.39-.001-.005a5.493 5.493 0 0 1-1.407-1.245z"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#83CD29" d="M112.771 30.334L68.674 4.729c-2.781-1.584-6.402-1.584-9.205 0L14.901 30.334C12.031 31.985 10 35.088 10 38.407v51.142c0 3.319 2.084 6.423 4.954 8.083l11.775 6.688c5.628 2.772 7.617 2.772 10.178 2.772 8.333 0 13.093-5.039 13.093-13.828v-50.49c0-.713-.371-1.774-1.071-1.774h-5.623C42.594 41 41 42.061 41 42.773v50.49c0 3.896-3.524 7.773-10.11 4.48L18.723 90.73c-.424-.23-.723-.693-.723-1.181V38.407c0-.482.555-.966.982-1.213l44.424-25.561c.415-.235 1.025-.235 1.439 0l43.882 25.555c.42.253.272.722.272 1.219v51.142c0 .488.183.963-.232 1.198l-44.086 25.576c-.378.227-.847.227-1.261 0l-11.307-6.749c-.341-.198-.746-.269-1.073-.086-3.146 1.783-3.726 2.02-6.677 3.043-.726.253-1.797.692.41 1.929l14.798 8.754a9.294 9.294 0 004.647 1.246c1.642 0 3.25-.426 4.667-1.246l43.885-25.582c2.87-1.672 4.23-4.764 4.23-8.083V38.407c0-3.319-1.36-6.414-4.229-8.073zM77.91 81.445c-11.726 0-14.309-3.235-15.17-9.066-.1-.628-.633-1.379-1.272-1.379h-5.731c-.709 0-1.279.86-1.279 1.566 0 7.466 4.059 16.512 23.453 16.512 14.039 0 22.088-5.455 22.088-15.109 0-9.572-6.467-12.084-20.082-13.886-13.762-1.819-15.16-2.738-15.16-5.962 0-2.658 1.184-6.203 11.374-6.203 9.105 0 12.461 1.954 13.842 8.091.118.577.645.991 1.24.991h5.754c.354 0 .692-.143.94-.396.24-.272.367-.613.335-.979-.891-10.568-7.912-15.493-22.112-15.493-12.631 0-20.166 5.334-20.166 14.275 0 9.698 7.497 12.378 19.622 13.577 14.505 1.422 15.633 3.542 15.633 6.395 0 4.955-3.978 7.066-13.309 7.066z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="url(#a)" d="M66.958.825a6.07 6.07 0 0 0-6.035 0L11.103 29.76c-1.895 1.072-2.96 3.095-2.96 5.24v57.988c0 2.143 1.183 4.167 2.958 5.24l49.82 28.934a6.07 6.07 0 0 0 6.036 0l49.82-28.935c1.894-1.072 2.958-3.096 2.958-5.24V35c0-2.144-1.183-4.167-2.958-5.24z"/><path fill="url(#b)" d="M116.897 29.76 66.841.825A8.161 8.161 0 0 0 65.302.23L9.21 96.798a6.251 6.251 0 0 0 1.657 1.43l50.057 28.934c1.42.833 3.076 1.072 4.615.595l52.66-96.925a3.702 3.702 0 0 0-1.302-1.072z"/><path fill="url(#c)" d="M116.898 98.225c1.42-.833 2.485-2.262 2.958-3.81L65.066.108c-1.42-.238-2.959-.119-4.26.715L11.104 29.639l53.606 98.355c.71-.12 1.54-.358 2.25-.715z"/><defs><linearGradient id="a" x1="34.513" x2="27.157" y1="15.535" y2="30.448" gradientTransform="translate(-129.242 -73.715) scale(6.18523)" gradientUnits="userSpaceOnUse"><stop stop-color="#3F873F"/><stop offset=".33" stop-color="#3F8B3D"/><stop offset=".637" stop-color="#3E9638"/><stop offset=".934" stop-color="#3DA92E"/><stop offset="1" stop-color="#3DAE2B"/></linearGradient><linearGradient id="b" x1="30.009" x2="50.533" y1="23.359" y2="8.288" gradientTransform="translate(-129.242 -73.715) scale(6.18523)" gradientUnits="userSpaceOnUse"><stop offset=".138" stop-color="#3F873F"/><stop offset=".402" stop-color="#52A044"/><stop offset=".713" stop-color="#64B749"/><stop offset=".908" stop-color="#6ABF4B"/></linearGradient><linearGradient id="c" x1="21.917" x2="40.555" y1="22.261" y2="22.261" gradientTransform="translate(-129.242 -73.715) scale(6.18523)" gradientUnits="userSpaceOnUse"><stop offset=".092" stop-color="#6ABF4B"/><stop offset=".287" stop-color="#64B749"/><stop offset=".598" stop-color="#52A044"/><stop offset=".862" stop-color="#3F873F"/></linearGradient></defs></svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#83CD29" d="M114.325 80.749c-.29 0-.578-.076-.832-.224l-2.65-1.568c-.396-.221-.203-.3-.072-.345.528-.184.635-.227 1.198-.545.059-.033.136-.021.197.015l2.035 1.209a.261.261 0 00.246 0l7.937-4.581a.248.248 0 00.122-.215v-9.16a.256.256 0 00-.123-.219l-7.934-4.577a.254.254 0 00-.245 0l-7.933 4.578a.259.259 0 00-.125.218v9.16c0 .088.049.171.125.212l2.174 1.257c1.18.589 1.903-.105 1.903-.803v-9.045c0-.127.103-.228.23-.228h1.007c.125 0 .229.101.229.228v9.045c0 1.574-.857 2.477-2.35 2.477-.459 0-.82 0-1.828-.496l-2.081-1.198a1.676 1.676 0 01-.832-1.448v-9.16c0-.595.317-1.15.832-1.446l7.937-4.587a1.743 1.743 0 011.667 0l7.937 4.587c.514.297.833.852.833 1.446v9.16a1.68 1.68 0 01-.833 1.448l-7.937 4.582a1.651 1.651 0 01-.834.223m2.453-6.311c-3.475 0-4.202-1.595-4.202-2.932a.23.23 0 01.23-.229h1.026a.23.23 0 01.228.194c.154 1.045.617 1.572 2.718 1.572 1.671 0 2.383-.378 2.383-1.266 0-.512-.202-.891-2.8-1.146-2.172-.215-3.515-.694-3.515-2.433 0-1.601 1.35-2.557 3.612-2.557 2.543 0 3.801.883 3.96 2.777a.235.235 0 01-.06.176.236.236 0 01-.168.073h-1.031a.228.228 0 01-.223-.179c-.248-1.1-.848-1.451-2.479-1.451-1.825 0-2.037.637-2.037 1.112 0 .577.25.745 2.715 1.071 2.439.323 3.598.779 3.598 2.494.001 1.733-1.441 2.724-3.955 2.724M97.982 68.43c.313-.183.506-.517.506-.88v-2.354c0-.362-.192-.696-.506-.879l-8.364-4.856a1.017 1.017 0 00-1.019-.002l-8.416 4.859a1.018 1.018 0 00-.508.88v9.716c0 .365.196.703.514.884l8.363 4.765c.308.177.686.178.997.006l5.058-2.812a.508.508 0 00.006-.885l-8.468-4.86a.507.507 0 01-.256-.44v-3.046c0-.182.097-.349.254-.439l2.637-1.52a.505.505 0 01.507 0l2.637 1.52a.507.507 0 01.255.439v2.396a.507.507 0 00.764.44l5.039-2.932m-8.998-.456a.2.2 0 01.195 0l1.615.933c.06.035.097.1.097.169v1.865c0 .07-.037.134-.097.169l-1.615.932a.194.194 0 01-.195 0l-1.614-.932a.194.194 0 01-.098-.169v-1.865c0-.069.037-.134.098-.169l1.614-.933m-21.901 3.88c0 .09-.048.174-.127.22l-2.89 1.666a.251.251 0 01-.254 0l-2.89-1.666a.255.255 0 01-.127-.22v-3.338c0-.09.049-.175.127-.221l2.89-1.668a.248.248 0 01.255 0l2.891 1.668a.258.258 0 01.126.221v3.338zm.781-24.716a.511.511 0 00-.756.444v12.915a.359.359 0 01-.177.308.359.359 0 01-.356 0l-2.108-1.215a1.017 1.017 0 00-1.015 0l-8.418 4.858a1.018 1.018 0 00-.509.881v9.719c0 .363.194.698.508.881l8.418 4.861c.314.182.702.182 1.017 0l8.42-4.861a1.02 1.02 0 00.508-.881V50.821c0-.368-.2-.708-.521-.888l-5.011-2.795M38.238 59.407a1.014 1.014 0 011.016 0l8.418 4.857c.314.182.508.518.508.881v9.722c0 .363-.194.699-.508.881l-8.417 4.861a1.02 1.02 0 01-1.017 0l-8.415-4.861a1.02 1.02 0 01-.508-.881v-9.723c0-.362.194-.698.508-.88l8.415-4.857M22.93 65.064c0-.366-.192-.702-.508-.883l-8.415-4.843a.99.99 0 00-.464-.133h-.087a.993.993 0 00-.464.133l-8.416 4.843a1.02 1.02 0 00-.509.883l.018 13.04c0 .182.095.351.254.439a.487.487 0 00.505 0l5-2.864c.316-.188.509-.519.509-.882v-6.092c0-.364.192-.699.507-.881l2.13-1.226a.994.994 0 01.508-.137c.174 0 .352.044.507.137l2.128 1.226c.315.182.509.517.509.881v6.092c0 .363.195.696.509.882l5 2.864a.508.508 0 00.76-.439l.019-13.04"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#5fa04e" d="M86.072 24.664a.71.71 0 0 0-.351.09.755.755 0 0 0-.375.637v18.93a.564.564 0 0 1-.264.464.549.549 0 0 1-.52 0l-3.066-1.773a1.486 1.486 0 0 0-1.478 0L67.75 50.146a1.48 1.48 0 0 0-.754 1.28v14.238c0 .524.291 1.021.754 1.283l12.27 7.135a1.486 1.486 0 0 0 1.476 0l12.27-7.135c.463-.262.754-.759.754-1.283V30.168c0-.553-.291-1.05-.754-1.31l-7.32-4.104a.836.836 0 0 0-.374-.09zM13.686 42.43c-.23 0-.461.086-.663.2L.753 49.739A1.493 1.493 0 0 0 0 51.047l.03 19.101c0 .263.142.526.374.643a.656.656 0 0 0 .725 0l7.295-4.193a1.48 1.48 0 0 0 .75-1.282v-8.939c0-.524.29-1.021.754-1.283l3.095-1.805a1.39 1.39 0 0 1 .752-.203c.26 0 .522.057.725.203l3.096 1.805c.463.262.754.759.754 1.283v8.94c0 .522.288 1.02.75 1.28l7.236 4.194a.704.704 0 0 0 .752 0 .724.724 0 0 0 .377-.643V51.047c0-.524-.29-1.02-.754-1.283L14.47 42.63a1.763 1.763 0 0 0-.664-.201h-.121zm100.67.207v.002l-.002.002c-.253 0-.505.065-.737.197l-12.271 7.13c-.463.264-.75.759-.75 1.284v14.24c0 .524.287 1.02.75 1.281l12.183 6.989a1.43 1.43 0 0 0 1.448 0l7.38-4.133a.724.724 0 0 0 .375-.643.724.724 0 0 0-.375-.64L110.03 61.21a.76.76 0 0 1-.375-.645V56.11a.72.72 0 0 1 .375-.638l3.854-2.213a.705.705 0 0 1 .752 0l3.845 2.213a.762.762 0 0 1 .377.638v3.494c0 .263.144.525.375.641a.704.704 0 0 0 .754 0l7.291-4.28a1.46 1.46 0 0 0 .727-1.28V51.22c0-.524-.292-1.019-.727-1.282l-12.181-7.101a1.499 1.499 0 0 0-.74-.201zm-67.043.049a1.374 1.374 0 0 0-.682.183l-12.17 7.067 4.258 7.81L47.457 42.7a2 2 0 0 0-.143-.013h-.002zm.566.148 8.607 14.814 4.045-7.445a1.34 1.34 0 0 0-.25-.201l-6.271-3.643-6.037-3.488c-.03-.015-.063-.025-.094-.037zm-.25.06-8.774 15.104 8.702 15.965c.024-.005.048-.007.072-.014l8.719-16.047-8.72-15.007zm-13.377 7.172a1.35 1.35 0 0 0-.576 1.123V65.49c0 .228.062.45.168.647l4.728-8.143-4.32-7.928zm26.45.342-4.071 7.49 4.318 7.434V51.189c0-.28-.092-.553-.248-.78zm20.056 2.865c.065 0 .13.015.19.045l4.193 2.448c.116.058.175.201.175.318v4.893c0 .146-.06.264-.175.322l-4.196 2.445a.431.431 0 0 1-.377 0l-4.195-2.443c-.116-.058-.176-.205-.176-.322v-4.893c0-.146.061-.261.176-.32l4.195-2.448a.425.425 0 0 1 .19-.045zm33.555 1.98a.26.26 0 0 0-.145.046l-2.346 1.369a.3.3 0 0 0-.142.26v2.74c0 .116.055.204.142.262l2.346 1.369a.262.262 0 0 0 .289 0l2.344-1.37a.308.308 0 0 0 .144-.261V56.93a.303.303 0 0 0-.144-.26l-2.344-1.371a.26.26 0 0 0-.144-.043v-.002zm-57.819 2.9-8.512 15.665.014-.007 12.287-7.137c.343-.194.563-.526.637-.903l-4.426-7.619zm-17.783.095-4.715 8.117c.1.123.217.23.35.31L46.5 73.737l.13.075h.003a1.377 1.377 0 0 0 .3.126c.031.01.062.015.092.022.06.013.118.022.178.027.029.003.057.002.086.002l-8.578-15.74zm24.51 13.393c-.427 0-.853.1-1.215.304l-11.55 6.73A2.457 2.457 0 0 0 49.24 80.8v13.42c0 .874.463 1.689 1.215 2.127l3.041 1.746c1.475.728 1.995.724 2.66.724 2.17 0 3.416-1.338 3.416-3.638V81.936a.356.356 0 0 0-.345-.352h-1.475a.356.356 0 0 0-.352.352v13.248c0 1.019-1.066 2.039-2.773 1.166l-3.156-1.834c-.116-.058-.174-.207-.174-.323V80.768c0-.116.058-.263.174-.32l11.545-6.696c.087-.058.232-.058.35 0l11.544 6.695c.115.06.176.176.176.32v13.424c0 .145-.06.265-.176.323l-11.547 6.726c-.087.058-.232.058-.35 0l-2.949-1.777c-.088-.058-.204-.086-.29-.03-.81.468-.953.528-1.735.79-.174.058-.463.172.115.492l3.852 2.303c.376.203.78.318 1.215.318.434 0 .866-.115 1.213-.26L75.98 96.35a2.463 2.463 0 0 0 1.215-2.13V80.8c0-.874-.463-1.686-1.215-2.123l-11.546-6.73a2.488 2.488 0 0 0-1.213-.305zm18.027 6.129a2.236 2.236 0 0 0-2.227 2.244 2.236 2.236 0 0 0 2.227 2.242c1.217 0 2.23-1.02 2.23-2.242a2.254 2.254 0 0 0-2.23-2.243v-.001zm-.03.376h.003a1.86 1.86 0 0 1 1.883 1.868c0 1.02-.841 1.89-1.883 1.89-1.012 0-1.854-.842-1.854-1.89s.87-1.866 1.852-1.868zm-.81.614v2.56h.494v-1.013h.438c.174 0 .23.058.26.203 0 .03.086.669.086.785h.52c-.06-.116-.087-.468-.116-.672-.028-.32-.056-.551-.404-.58.174-.059.46-.145.46-.611 0-.67-.58-.67-.869-.67l-.869-.002zm.438.408h.402c.146 0 .379 0 .379.35 0 .116-.059.35-.379.35h-.402v-.7zm-14.469 2.01c-3.3 0-5.272 1.399-5.272 3.758 0 2.534 1.969 3.228 5.124 3.548 3.79.38 4.08.935 4.08 1.692 0 1.31-1.042 1.861-3.473 1.861-3.068 0-3.735-.757-3.967-2.299 0-.176-.14-.29-.314-.29H61.05a.35.35 0 0 0-.35.35c0 1.98 1.044 4.307 6.11 4.307 3.645 0 5.755-1.456 5.755-4.02 0-2.503-1.68-3.174-5.238-3.64-3.59-.466-3.965-.728-3.965-1.572 0-.699.32-1.629 2.98-1.629 2.375 0 3.272.524 3.62 2.125a.34.34 0 0 0 .316.264h1.534c.087 0 .177-.057.236-.115a.476.476 0 0 0 .086-.264c-.231-2.795-2.053-4.076-5.758-4.076z"/></svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#83CD29" d="M112.678 30.334L68.535 4.729c-2.781-1.584-6.424-1.584-9.227 0L14.82 30.334C11.951 31.985 10 35.088 10 38.407v51.142c0 3.319 1.992 6.423 4.862 8.083l11.729 6.688c5.627 2.772 7.186 2.772 9.746 2.772 8.334 0 12.662-5.039 12.662-13.828v-50.49C49 42.061 49.445 41 48.744 41h-5.622C42.41 41 41 42.061 41 42.773v50.49c0 3.896-3.616 7.773-10.202 4.48L18.676 90.73c-.422-.23-.676-.693-.676-1.181V38.407c0-.482.463-.966.891-1.213l44.378-25.561a1.508 1.508 0 011.415 0l43.963 25.555c.421.253.354.722.354 1.219v51.142c0 .488.092.963-.323 1.198l-44.133 25.576c-.378.227-.87.227-1.285 0l-11.317-6.749c-.341-.198-.752-.269-1.08-.086-3.145 1.783-3.729 2.02-6.679 3.043-.727.253-1.799.692.408 1.929l14.798 8.754a9.29 9.29 0 004.647 1.246 9.303 9.303 0 004.666-1.246l43.976-25.582c2.871-1.672 4.322-4.764 4.322-8.083V38.407c-.001-3.319-1.452-6.414-4.323-8.073zM77.727 81.445c-11.727 0-14.309-3.235-15.17-9.066-.102-.628-.634-1.379-1.274-1.379h-5.73c-.709 0-1.28.86-1.28 1.566 0 7.466 4.06 16.512 23.454 16.512 14.038 0 22.088-5.455 22.088-15.109 0-9.572-6.467-12.084-20.082-13.886-13.762-1.819-15.16-2.738-15.16-5.962 0-2.658 1.184-6.203 11.374-6.203 9.104 0 12.46 1.954 13.841 8.091.119.577.646.991 1.241.991h5.754c.354 0 .691-.143.939-.396.241-.272.367-.613.336-.979-.893-10.569-7.913-15.494-22.112-15.494-12.632 0-20.166 5.334-20.166 14.275 0 9.698 7.497 12.378 19.622 13.577 14.505 1.422 15.633 3.542 15.633 6.395 0 4.956-3.978 7.067-13.308 7.067z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#5fa04e" d="M63.999 0a5.617 5.617 0 0 0-2.789.744L11.445 29.646 28.852 61.58 64.592.053A8.177 8.177 0 0 0 64.003 0Zm2.316.605v.002l35.194 60.577 16.545-30.449a5.483 5.483 0 0 0-1.028-.817L91.38 15.024 66.7.754h-.007c-.12-.061-.252-.099-.378-.15Zm-1.024.248L29.417 62.616l35.579 65.278c.1-.02.198-.023.297-.05l35.653-65.624ZM10.586 30.176c-1.502 1.031-2.35 2.752-2.35 4.595v58.478c0 .93.254 1.838.684 2.645l19.34-33.293Zm108.161 1.4-16.643 30.629 17.66 30.398V34.77c0-1.15-.382-2.265-1.017-3.195zm-17.204 31.667-34.808 64.062.055-.028 50.243-29.183.004-.002c1.402-.793 2.3-2.155 2.604-3.693zm-72.718.394L9.545 96.832c.406.5.885.936 1.43 1.266l.001.004 49.702 28.866.53.305.006.002h.002c.257.151.528.266.798.372.144.054.288.104.433.146.125.037.251.062.376.089.242.051.483.088.727.108.118.01.237.01.355.01z"/></svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 887 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#001e36" d="M22.667 1.6h82.666C117.867 1.6 128 11.733 128 24.267v79.466c0 12.534-10.133 22.667-22.667 22.667H22.667C10.133 126.4 0 116.267 0 103.733V24.267C0 11.733 10.133 1.6 22.667 1.6Z"/><path fill="#31a8ff" d="M45.867 33.333c-1.6 0-3.2 0-4.853.054-1.654.053-3.201.053-4.641.107-1.44.053-2.773.053-4.053.106-1.227.053-2.08.053-2.987.053-.373 0-.533.213-.533.587v54.88c0 .48.213.694.64.694h10.347c.373-.054.64-.374.586-.747v-17.12c1.013 0 1.76 0 2.294.053.533.053 1.386.053 2.666.053 4.374 0 8.374-.48 12-1.813 3.467-1.28 6.454-3.52 8.587-6.507 2.133-2.986 3.2-6.773 3.2-11.36 0-2.4-.426-4.693-1.226-6.933A16.98 16.98 0 0 0 64 39.36a19.049 19.049 0 0 0-7.147-4.374c-2.987-1.12-6.613-1.653-10.986-1.653Zm1.19 10.505c1.9.036 3.75.368 5.476 1.068 1.547.587 2.827 1.654 3.734 3.04a8.779 8.779 0 0 1 1.227 4.748c0 2.346-.534 4.16-1.654 5.493-1.174 1.333-2.667 2.347-4.373 2.827-1.974.64-4.054.959-6.134.959h-2.827c-.64 0-1.332-.053-2.079-.106v-17.92c.373-.054 1.12-.107 2.187-.053 1.013-.054 2.239-.054 3.626-.054.273-.007.546-.008.817-.002zm44.73 2.723c-3.787 0-6.934.586-9.44 1.866-2.293 1.067-4.267 2.773-5.6 4.906-1.173 1.974-1.814 4.16-1.814 6.454a11.447 11.447 0 0 0 1.227 5.44 13.809 13.809 0 0 0 4.054 4.533 32.629 32.629 0 0 0 7.573 3.84c2.613 1.013 4.373 1.813 5.227 2.506.853.694 1.28 1.387 1.28 2.134 0 .96-.587 1.867-1.44 2.24-.96.48-2.4.747-4.427.747-2.133 0-4.267-.267-6.294-.8a22.834 22.834 0 0 1-6.613-2.613c-.16-.107-.32-.16-.48-.053-.16.106-.213.319-.213.479v9.28c-.053.427.213.8.587 1.013a21.49 21.49 0 0 0 5.44 1.707c2.4.48 4.799.693 7.252.693 3.84 0 7.041-.586 9.654-1.706 2.4-.96 4.48-2.613 5.973-4.747a12.41 12.41 0 0 0 2.08-7.093 11.512 11.512 0 0 0-1.226-5.493c-1.014-1.814-2.454-3.307-4.214-4.427a38.625 38.625 0 0 0-8.213-3.894 48.784 48.784 0 0 1-3.787-1.76c-.693-.373-1.333-.853-1.813-1.44-.32-.427-.533-.906-.533-1.386 0-.48.16-1.013.426-1.44.374-.533.96-.907 1.653-1.067 1.014-.266 2.134-.427 3.2-.374 2.027 0 4 .267 5.974.694 1.814.373 3.52.96 5.12 1.814.213.106.48.106.96 0a.656.656 0 0 0 .267-.534v-8.693c0-.214-.054-.427-.107-.64-.107-.213-.32-.427-.533-.48A18.762 18.762 0 0 0 98.4 47.04a45.98 45.98 0 0 0-6.613-.48z"/></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill-rule="evenodd" clip-rule="evenodd" fill="#80B5E2" d="M50.246 41.616c-3.682-.925-7.369-.628-11.26-.022 0 6.805-.014 13.427.037 20.05.002.339.511.929.841.974 4.243.573 8.463.619 12.431-1.315 4.105-2 6.196-6.182 5.654-11.092-.492-4.471-3.139-7.448-7.703-8.595zM127 63.963V3.285c0-2.096.023-2.285-2.012-2.285H3.479C1.5 1 1 1.19 1 3.186v121.509c0 2.018.252 2.021 2.209 2.021 40.555.001 81.231-.009 121.786.037 1.573.002 1.995-.417 1.991-1.959-.054-20.277.014-40.556.014-60.831zm-70.648 5.84C50.795 71.785 45 71.896 39 71.431V94H28v-1.402c0-18.895-.087-37.788-.14-56.682-.006-1.569.243-2.327 2.011-2.507 8.332-.852 16.617-1.81 24.902.133 8.906 2.087 14.041 7.975 14.431 16.11.483 10.074-3.944 16.974-12.852 20.151zm44.31 12.754c-.424 5.771-3.678 9.56-9.015 11.392-7.142 2.452-14.245 1.883-21.225-.891-1.143-.455-1.364-1.031-.987-2.196.687-2.126 1.19-4.312 1.72-6.286 2.951.866 5.757 1.947 8.664 2.458 2.053.361 4.272.149 6.359-.178 1.871-.294 3.217-1.564 3.524-3.572.312-2.041-.303-3.809-2.105-4.895-1.432-.862-3.01-1.479-4.523-2.202-2.433-1.163-5.026-2.075-7.27-3.53-8.831-5.727-5.956-16.383-.063-20.396 3.153-2.146 6.642-3.098 10.377-3.229 4.393-.154 8.623.604 12.778 2.623l-2.195 7.789c-1.74-.616-3.36-1.416-5.07-1.734-2.029-.378-4.157-.589-6.205-.422-2.746.225-4.354 2.12-4.354 4.47 0 1.392.528 2.57 1.689 3.245 1.666.969 3.434 1.768 5.186 2.579 1.896.877 3.898 1.551 5.723 2.552 4.87 2.67 7.405 6.8 6.992 12.423z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#001e36" d="M22.666 1.6C10.133 1.6 0 11.734 0 24.268v79.464C0 116.266 10.133 126.4 22.666 126.4h82.668c12.533 0 22.666-10.134 22.666-22.668V24.268C128 11.734 117.867 1.6 105.334 1.6H22.666zm23.201 31.734c4.373 0 8 .532 10.986 1.652A19.05 19.05 0 0 1 64 39.361a16.976 16.976 0 0 1 3.894 6.079c.8 2.24 1.225 4.533 1.225 6.933 0 4.587-1.066 8.373-3.2 11.36-2.132 2.986-5.118 5.227-8.585 6.507-3.627 1.334-7.627 1.813-12 1.813-1.28 0-2.135 0-2.668-.053-.533-.053-1.28-.053-2.293-.053v17.12c.053.373-.213.694-.586.747H29.44c-.426 0-.638-.215-.638-.695V34.24c0-.373.16-.588.533-.588.907 0 1.76 0 2.986-.052 1.28-.054 2.613-.052 4.053-.106 1.44-.053 2.987-.054 4.64-.107 1.654-.054 3.254-.053 4.854-.053zm1.19 10.504a18.68 18.68 0 0 0-.817.002c-1.386 0-2.613.001-3.627.055-1.066-.054-1.812-.001-2.185.052v17.92c.746.054 1.438.106 2.078.106h2.828c2.08 0 4.16-.32 6.133-.96 1.707-.48 3.2-1.494 4.373-2.827 1.12-1.334 1.654-3.146 1.654-5.493a8.776 8.776 0 0 0-1.226-4.746c-.907-1.386-2.188-2.454-3.735-3.04-1.727-.7-3.576-1.033-5.476-1.07zm44.73 2.723c2.187 0 4.427.158 6.613.478 1.6.213 3.146.642 4.586 1.229.214.053.427.265.533.478.054.213.108.427.108.64v8.694a.655.655 0 0 1-.266.533c-.48.107-.747.107-.96 0-1.6-.853-3.308-1.439-5.122-1.812-1.973-.427-3.946-.695-5.972-.695-1.067-.054-2.188.108-3.201.374-.694.16-1.28.534-1.653 1.067-.266.427-.426.96-.426 1.44s.214.96.534 1.386c.48.587 1.119 1.068 1.812 1.442a48.8 48.8 0 0 0 3.787 1.757c2.88.96 5.653 2.295 8.213 3.895 1.76 1.12 3.2 2.614 4.213 4.427a11.509 11.509 0 0 1 1.228 5.493 12.412 12.412 0 0 1-2.082 7.093 13.362 13.362 0 0 1-5.972 4.746c-2.614 1.12-5.814 1.707-9.654 1.707-2.454 0-4.852-.213-7.252-.693a21.51 21.51 0 0 1-5.44-1.707c-.373-.213-.641-.587-.588-1.014V78.24c0-.16.053-.374.213-.48.16-.107.32-.052.48.054a22.83 22.83 0 0 0 6.614 2.614c2.027.533 4.161.799 6.295.799 2.026 0 3.466-.267 4.426-.747.853-.373 1.439-1.28 1.439-2.24 0-.746-.426-1.441-1.28-2.135-.853-.693-2.613-1.492-5.226-2.505a32.638 32.638 0 0 1-7.574-3.84 13.81 13.81 0 0 1-4.053-4.533 11.44 11.44 0 0 1-1.226-5.44c0-2.293.639-4.48 1.812-6.453 1.333-2.133 3.308-3.84 5.602-4.906 2.506-1.28 5.652-1.867 9.44-1.867z"/></svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

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